diff --git a/.editorconfig b/.editorconfig index 58d0d332bb..3e44d1a281 100644 --- a/.editorconfig +++ b/.editorconfig @@ -9,9 +9,10 @@ indent_style = space tab_width = 4 # New line preferences -end_of_line = crlf:suggestion +#end_of_line = crlf insert_final_newline = true trim_trailing_whitespace = true +max_line_length = 120 #### .NET Coding Conventions #### @@ -104,7 +105,6 @@ csharp_preferred_modifier_order = public, private, protected, internal, new, abs # 'using' directive preferences csharp_using_directive_placement = outside_namespace:silent -csharp_style_namespace_declarations = file_scoped:suggestion #### C# Formatting Rules #### @@ -337,7 +337,11 @@ dotnet_naming_symbols.type_parameters_symbols.applicable_kinds = type_parameter # ReSharper properties resharper_braces_for_ifelse = required_for_multiline +resharper_csharp_wrap_arguments_style = chop_if_long +resharper_csharp_wrap_parameters_style = chop_if_long resharper_keep_existing_attribute_arrangement = true +resharper_wrap_chained_binary_patterns = chop_if_long +resharper_wrap_chained_method_calls = chop_if_long [*.{csproj,xml,yml,yaml,dll.config,msbuildproj,targets,props}] indent_size = 2 diff --git a/.github/labeler.yml b/.github/labeler.yml index eb01eeecc4..4cfe775ed4 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,39 +1,56 @@ "Changes: Audio": - - "**/*.ogg" - + - changed-files: + - any-glob-to-any-file: "**/*.ogg" + "Changes: C#": - - "**/*.cs" + - changed-files: + - any-glob-to-any-file: "**/*.cs" "Changes: Config": - - "**/*.toml" - - "**/*.config" - - "*.json" - - ".github/*.yml" - - ".github/*.json" - - ".vscode/*.json" - - ".editorconfig" +- changed-files: + - any-glob-to-any-file: + - "**/*.toml" + - "**/*.config" + - "*.json" + - ".github/*.yml" + - ".github/*.json" + - ".vscode/*.json" + - ".editorconfig" "Changes: Documentation": - - "**/*.xml" - - "**/*.md" + - changed-files: + - any-glob-to-any-file: + - "**/*.xml" + - "**/*.md" "Changes: Localization": -- 'Resources/Locale/**/*.ftl' + - changed-files: + - any-glob-to-any-file: 'Resources/Locale/**/*.ftl' "Changes: Map": - - "Resources/Maps/**/*.yml" - - "Resources/Prototypes/Maps/**/*.yml" + - changed-files: + - any-glob-to-any-file: + - "Resources/Maps/**/*.yml" + - "Resources/Prototypes/Maps/**/*.yml" "Changes: Sprite": - - "**/*.rsi/*.png" - - "**/*.rsi/*.json" + - changed-files: + - any-glob-to-any-file: + - "**/*.rsi/*.png" + - "**/*.rsi/*.json" "Changes: UI": - - "**/*.xaml*" + - changed-files: + - any-glob-to-any-file: "**/*.xaml*" "Changes: YML": - - any: ["**/*.yml"] - all: ["!Resources/Maps/**/*.yml", "!Resources/Prototypes/Maps/**/*.yml"] + - changed-files: + - any-glob-to-any-file: + - "**/*.yml" + - all-globs-to-all-files: + - "!Resources/Maps/**/*.yml" + - "!Resources/Prototypes/Maps/**/*.yml" "Changes: Workflow": - - ".github/workflows/*.yml" + - changed-files: + - any-glob-to-any-file: ".github/workflows/*.yml" diff --git a/.github/workflows/conflict-labeler.yml b/.github/workflows/conflict-labeler.yml index 152d3a9f3c..1bba677022 100644 --- a/.github/workflows/conflict-labeler.yml +++ b/.github/workflows/conflict-labeler.yml @@ -1,18 +1,20 @@ name: Check Merge Conflicts on: - push: - branches: - - master pull_request_target: + types: + - opened + - synchronize + - reopened + - ready_for_review jobs: Label: - if: github.actor != 'PJBot' && github.actor != 'DeltaV-Bot' && github.actor != 'SimpleStation14' + if: ( github.event.pull_request.draft == false ) && ( github.actor != 'PJBot' && github.actor != 'DeltaV-Bot' && github.actor != 'SimpleStation14' ) runs-on: ubuntu-latest steps: - name: Check for Merge Conflicts - uses: ike709/actions-label-merge-conflict@9eefdd17e10566023c46d2dc6dc04fcb8ec76142 + uses: eps1lon/actions-label-merge-conflict@v3.0.0 with: dirtyLabel: "Status: Merge Conflict" repoToken: "${{ secrets.GITHUB_TOKEN }}" diff --git a/.github/workflows/labeler-pr.yml b/.github/workflows/labeler-pr.yml index efb051f4cc..2fd754b15e 100644 --- a/.github/workflows/labeler-pr.yml +++ b/.github/workflows/labeler-pr.yml @@ -6,8 +6,9 @@ on: jobs: labeler: if: github.actor != 'PJBot' && github.actor != 'DeltaV-Bot' && github.actor != 'SimpleStation14' + permissions: + contents: read + pull-requests: write runs-on: ubuntu-latest steps: - - uses: actions/labeler@v3 - with: - repo-token: "${{ secrets.GITHUB_TOKEN }}" + - uses: actions/labeler@v5 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 177e6a0fe6..d9cfd3b25b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -41,39 +41,17 @@ jobs: - name: Package client run: dotnet run --project Content.Packaging client --no-wipe-release - - name: Update Build Info - run: Tools/gen_build_info.py - - - name: Shuffle files around - run: | - mkdir "release/${{ github.sha }}" - mv release/*.zip "release/${{ github.sha }}" - - - name: Upload files to centcomm - uses: appleboy/scp-action@master - with: - host: ${{ secrets.PUBLISH_HOST }} - username: ${{ secrets.PUBLISH_USER }} - key: ${{ secrets.PUBLISH_KEY }} - port: ${{ secrets.PUBLISH_PORT }} - source: "release/${{ github.sha }}" - target: "/var/www/builds.delta-v.org/delta-v/builds/" - strip_components: 1 - - - name: Update manifest JSON - uses: appleboy/ssh-action@master - with: - host: ${{ secrets.PUBLISH_HOST }} - username: ${{ secrets.PUBLISH_USER }} - key: ${{ secrets.PUBLISH_KEY }} - port: ${{ secrets.PUBLISH_PORT }} - script: /home/deltav/publish/push.ps1 ${{ github.sha }} - - - name: Publish changelog (Discord) - run: Tools/actions_changelogs_since_last_run.py + - name: Publish version + run: Tools/publish_multi_request.py env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - DISCORD_WEBHOOK_URL: ${{ secrets.CHANGELOG_DISCORD_WEBHOOK }} + PUBLISH_TOKEN: ${{ secrets.PUBLISH_TOKEN }} + GITHUB_REPOSITORY: ${{ vars.GITHUB_REPOSITORY }} + + # - name: Publish changelog (Discord) + # run: Tools/actions_changelogs_since_last_run.py + # env: + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # DISCORD_WEBHOOK_URL: ${{ secrets.CHANGELOG_DISCORD_WEBHOOK }} - name: Publish changelog (RSS) run: Tools/actions_changelog_rss.py diff --git a/Content.Client/Access/IdCardSystem.cs b/Content.Client/Access/IdCardSystem.cs index fcf2bf57de..e0c02976f7 100644 --- a/Content.Client/Access/IdCardSystem.cs +++ b/Content.Client/Access/IdCardSystem.cs @@ -2,6 +2,4 @@ namespace Content.Client.Access; -public sealed class IdCardSystem : SharedIdCardSystem -{ -} +public sealed class IdCardSystem : SharedIdCardSystem; diff --git a/Content.Client/Access/UI/AgentIDCardBoundUserInterface.cs b/Content.Client/Access/UI/AgentIDCardBoundUserInterface.cs index 73f18aec8d..c3fac8cb92 100644 --- a/Content.Client/Access/UI/AgentIDCardBoundUserInterface.cs +++ b/Content.Client/Access/UI/AgentIDCardBoundUserInterface.cs @@ -40,9 +40,9 @@ private void OnJobChanged(string newJob) SendMessage(new AgentIDCardJobChangedMessage(newJob)); } - public void OnJobIconChanged(string newJobIcon) + public void OnJobIconChanged(string newJobIconId) { - SendMessage(new AgentIDCardJobIconChangedMessage(newJobIcon)); + SendMessage(new AgentIDCardJobIconChangedMessage(newJobIconId)); } /// @@ -57,7 +57,7 @@ protected override void UpdateState(BoundUserInterfaceState state) _window.SetCurrentName(cast.CurrentName); _window.SetCurrentJob(cast.CurrentJob); - _window.SetAllowedIcons(cast.Icons); + _window.SetAllowedIcons(cast.Icons, cast.CurrentJobIconId); } protected override void Dispose(bool disposing) diff --git a/Content.Client/Access/UI/AgentIDCardWindow.xaml.cs b/Content.Client/Access/UI/AgentIDCardWindow.xaml.cs index beca0c41ba..9a38c0c485 100644 --- a/Content.Client/Access/UI/AgentIDCardWindow.xaml.cs +++ b/Content.Client/Access/UI/AgentIDCardWindow.xaml.cs @@ -38,7 +38,7 @@ public AgentIDCardWindow(AgentIDCardBoundUserInterface bui) JobLineEdit.OnFocusExit += e => OnJobChanged?.Invoke(e.Text); } - public void SetAllowedIcons(HashSet icons) + public void SetAllowedIcons(HashSet icons, string currentJobIconId) { IconGrid.DisposeAllChildren(); @@ -79,6 +79,10 @@ public void SetAllowedIcons(HashSet icons) jobIconButton.AddChild(jobIconTexture); jobIconButton.OnPressed += _ => _bui.OnJobIconChanged(jobIcon.ID); IconGrid.AddChild(jobIconButton); + + if (jobIconId.Equals(currentJobIconId)) + jobIconButton.Pressed = true; + i++; } } diff --git a/Content.Client/Access/UI/IdCardConsoleBoundUserInterface.cs b/Content.Client/Access/UI/IdCardConsoleBoundUserInterface.cs index 5b7011c195..a321b4121e 100644 --- a/Content.Client/Access/UI/IdCardConsoleBoundUserInterface.cs +++ b/Content.Client/Access/UI/IdCardConsoleBoundUserInterface.cs @@ -1,6 +1,5 @@ using Content.Shared.Access; using Content.Shared.Access.Components; -using Content.Shared.Access; using Content.Shared.Access.Systems; using Content.Shared.Containers.ItemSlots; using Content.Shared.CrewManifest; diff --git a/Content.Client/Actions/ActionsSystem.cs b/Content.Client/Actions/ActionsSystem.cs index 90158ba81e..0bc65eb935 100644 --- a/Content.Client/Actions/ActionsSystem.cs +++ b/Content.Client/Actions/ActionsSystem.cs @@ -249,7 +249,10 @@ public void TriggerAction(EntityUid actionId, BaseActionComponent action) if (action.ClientExclusive) { if (instantAction.Event != null) + { instantAction.Event.Performer = user; + instantAction.Event.Action = actionId; + } PerformAction(user, actions, actionId, instantAction, instantAction.Event, GameTiming.CurTime); } diff --git a/Content.Client/Administration/Components/HeadstandComponent.cs b/Content.Client/Administration/Components/HeadstandComponent.cs index d95e74576b..a4e3bfc5aa 100644 --- a/Content.Client/Administration/Components/HeadstandComponent.cs +++ b/Content.Client/Administration/Components/HeadstandComponent.cs @@ -3,7 +3,7 @@ namespace Content.Client.Administration.Components; -[RegisterComponent, NetworkedComponent] +[RegisterComponent] public sealed partial class HeadstandComponent : SharedHeadstandComponent { diff --git a/Content.Client/Administration/Components/KillSignComponent.cs b/Content.Client/Administration/Components/KillSignComponent.cs index 1cf47b93ff..91c44ef3f2 100644 --- a/Content.Client/Administration/Components/KillSignComponent.cs +++ b/Content.Client/Administration/Components/KillSignComponent.cs @@ -3,6 +3,5 @@ namespace Content.Client.Administration.Components; -[NetworkedComponent, RegisterComponent] -public sealed partial class KillSignComponent : SharedKillSignComponent -{ } +[RegisterComponent] +public sealed partial class KillSignComponent : SharedKillSignComponent; diff --git a/Content.Client/Administration/Managers/ClientAdminManager.cs b/Content.Client/Administration/Managers/ClientAdminManager.cs index fdd62fb6a2..0f740c8104 100644 --- a/Content.Client/Administration/Managers/ClientAdminManager.cs +++ b/Content.Client/Administration/Managers/ClientAdminManager.cs @@ -126,12 +126,15 @@ void IPostInjectInit.PostInject() public AdminData? GetAdminData(EntityUid uid, bool includeDeAdmin = false) { - return uid == _player.LocalEntity ? _adminData : null; + if (uid == _player.LocalEntity && (_adminData?.Active ?? includeDeAdmin)) + return _adminData; + + return null; } public AdminData? GetAdminData(ICommonSession session, bool includeDeAdmin = false) { - if (_player.LocalUser == session.UserId) + if (_player.LocalUser == session.UserId && (_adminData?.Active ?? includeDeAdmin)) return _adminData; return null; diff --git a/Content.Client/Administration/Systems/AdminVerbSystem.cs b/Content.Client/Administration/Systems/AdminVerbSystem.cs index e0f84bc4f0..dced59bbf2 100644 --- a/Content.Client/Administration/Systems/AdminVerbSystem.cs +++ b/Content.Client/Administration/Systems/AdminVerbSystem.cs @@ -1,3 +1,6 @@ +using Content.Shared.Administration; +using Content.Shared.Administration.Managers; +using Content.Shared.Mind.Components; using Content.Shared.Verbs; using Robust.Client.Console; using Robust.Shared.Utility; @@ -11,10 +14,12 @@ sealed class AdminVerbSystem : EntitySystem { [Dependency] private readonly IClientConGroupController _clientConGroupController = default!; [Dependency] private readonly IClientConsoleHost _clientConsoleHost = default!; + [Dependency] private readonly ISharedAdminManager _admin = default!; public override void Initialize() { SubscribeLocalEvent>(AddAdminVerbs); + } private void AddAdminVerbs(GetVerbsEvent args) @@ -33,6 +38,24 @@ private void AddAdminVerbs(GetVerbsEvent args) }; args.Verbs.Add(verb); } + + if (!_admin.IsAdmin(args.User)) + return; + + if (_admin.HasAdminFlag(args.User, AdminFlags.Admin)) + args.ExtraCategories.Add(VerbCategory.Admin); + + if (_admin.HasAdminFlag(args.User, AdminFlags.Fun) && HasComp(args.Target)) + args.ExtraCategories.Add(VerbCategory.Antag); + + if (_admin.HasAdminFlag(args.User, AdminFlags.Debug)) + args.ExtraCategories.Add(VerbCategory.Debug); + + if (_admin.HasAdminFlag(args.User, AdminFlags.Fun)) + args.ExtraCategories.Add(VerbCategory.Smite); + + if (_admin.HasAdminFlag(args.User, AdminFlags.Admin)) + args.ExtraCategories.Add(VerbCategory.Tricks); } } } diff --git a/Content.Client/Administration/UI/BanPanel/BanPanel.xaml.cs b/Content.Client/Administration/UI/BanPanel/BanPanel.xaml.cs index 1f32640f7d..dc263d6055 100644 --- a/Content.Client/Administration/UI/BanPanel/BanPanel.xaml.cs +++ b/Content.Client/Administration/UI/BanPanel/BanPanel.xaml.cs @@ -3,6 +3,7 @@ using System.Net.Sockets; using Content.Client.Administration.UI.CustomControls; using Content.Shared.Administration; +using Content.Shared.CCVar; using Content.Shared.Database; using Content.Shared.Roles; using Robust.Client.AutoGenerated; @@ -11,6 +12,7 @@ using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; +using Robust.Shared.Configuration; using Robust.Shared.Prototypes; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -32,8 +34,11 @@ public sealed partial class BanPanel : DefaultWindow // This is less efficient than just holding a reference to the root control and enumerating children, but you // have to know how the controls are nested, which makes the code more complicated. private readonly List _roleCheckboxes = new(); + private readonly ISawmill _banpanelSawmill; [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly ILogManager _logManager = default!; private enum TabNumbers { @@ -65,6 +70,7 @@ public BanPanel() { RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); + _banpanelSawmill = _logManager.GetSawmill("admin.banpanel"); PlayerList.OnSelectionChanged += OnPlayerSelectionChanged; PlayerNameLine.OnFocusExit += _ => OnPlayerNameChanged(); PlayerCheckbox.OnPressed += _ => @@ -104,6 +110,11 @@ public BanPanel() }; SubmitButton.OnPressed += SubmitButtonOnOnPressed; + IpCheckbox.Pressed = _cfg.GetCVar(CCVars.ServerBanIpBanDefault); + HwidCheckbox.Pressed = _cfg.GetCVar(CCVars.ServerBanHwidBanDefault); + LastConnCheckbox.Pressed = _cfg.GetCVar(CCVars.ServerBanUseLastDetails); + EraseCheckbox.Pressed = _cfg.GetCVar(CCVars.ServerBanErasePlayer); + SeverityOption.AddItem(Loc.GetString("admin-note-editor-severity-none"), (int) NoteSeverity.None); SeverityOption.AddItem(Loc.GetString("admin-note-editor-severity-low"), (int) NoteSeverity.Minor); SeverityOption.AddItem(Loc.GetString("admin-note-editor-severity-medium"), (int) NoteSeverity.Medium); @@ -175,6 +186,39 @@ private void CreateRoleGroup(string roleName, IEnumerable roleList, Colo c.Pressed = args.Pressed; } } + + if (args.Pressed) + { + if (!Enum.TryParse(_cfg.GetCVar(CCVars.DepartmentBanDefaultSeverity), true, out NoteSeverity newSeverity)) + { + _banpanelSawmill + .Warning("Departmental role ban severity could not be parsed from config!"); + return; + } + SeverityOption.SelectId((int) newSeverity); + } + else + { + foreach (var childContainer in RolesContainer.Children) + { + if (childContainer is Container) + { + foreach (var child in childContainer.Children) + { + if (child is CheckBox { Pressed: true }) + return; + } + } + } + + if (!Enum.TryParse(_cfg.GetCVar(CCVars.RoleBanDefaultSeverity), true, out NoteSeverity newSeverity)) + { + _banpanelSawmill + .Warning("Role ban severity could not be parsed from config!"); + return; + } + SeverityOption.SelectId((int) newSeverity); + } }; outerContainer.AddChild(innerContainer); foreach (var role in roleList) @@ -353,6 +397,35 @@ private void OnTypeChanged() { TypeOption.ModulateSelfOverride = null; Tabs.SetTabVisible((int) TabNumbers.Roles, TypeOption.SelectedId == (int) Types.Role); + NoteSeverity? newSeverity = null; + switch (TypeOption.SelectedId) + { + case (int)Types.Server: + if (Enum.TryParse(_cfg.GetCVar(CCVars.ServerBanDefaultSeverity), true, out NoteSeverity serverSeverity)) + newSeverity = serverSeverity; + else + { + _banpanelSawmill + .Warning("Server ban severity could not be parsed from config!"); + } + + break; + case (int) Types.Role: + + if (Enum.TryParse(_cfg.GetCVar(CCVars.RoleBanDefaultSeverity), true, out NoteSeverity roleSeverity)) + { + newSeverity = roleSeverity; + } + else + { + _banpanelSawmill + .Warning("Role ban severity could not be parsed from config!"); + } + break; + } + + if (newSeverity != null) + SeverityOption.SelectId((int) newSeverity.Value); } private void UpdateSubmitEnabled() diff --git a/Content.Client/Animations/TrackUserComponent.cs b/Content.Client/Animations/TrackUserComponent.cs new file mode 100644 index 0000000000..374c187398 --- /dev/null +++ b/Content.Client/Animations/TrackUserComponent.cs @@ -0,0 +1,17 @@ +using System.Numerics; + +namespace Content.Client.Animations; + +/// +/// Entities with this component tracks the user's world position every frame. +/// +[RegisterComponent] +public sealed partial class TrackUserComponent : Component +{ + public EntityUid? User; + + /// + /// Offset in the direction of the entity's rotation. + /// + public Vector2 Offset = Vector2.Zero; +} diff --git a/Content.Client/Atmos/Consoles/AtmosAlarmEntryContainer.xaml b/Content.Client/Atmos/Consoles/AtmosAlarmEntryContainer.xaml new file mode 100644 index 0000000000..96f136abf0 --- /dev/null +++ b/Content.Client/Atmos/Consoles/AtmosAlarmEntryContainer.xaml @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Content.Client/Atmos/Consoles/AtmosAlarmEntryContainer.xaml.cs b/Content.Client/Atmos/Consoles/AtmosAlarmEntryContainer.xaml.cs new file mode 100644 index 0000000000..b0d0365ef6 --- /dev/null +++ b/Content.Client/Atmos/Consoles/AtmosAlarmEntryContainer.xaml.cs @@ -0,0 +1,215 @@ +using Content.Client.Stylesheets; +using Content.Shared.Atmos; +using Content.Shared.Atmos.Components; +using Content.Shared.Atmos.Monitor; +using Content.Shared.FixedPoint; +using Content.Shared.Temperature; +using Robust.Client.AutoGenerated; +using Robust.Client.Graphics; +using Robust.Client.ResourceManagement; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Map; +using System.Linq; + +namespace Content.Client.Atmos.Consoles; + +[GenerateTypedNameReferences] +public sealed partial class AtmosAlarmEntryContainer : BoxContainer +{ + public NetEntity NetEntity; + public EntityCoordinates? Coordinates; + + private readonly IEntityManager _entManager; + private readonly IResourceCache _cache; + + private Dictionary _alarmStrings = new Dictionary() + { + [AtmosAlarmType.Invalid] = "atmos-alerts-window-invalid-state", + [AtmosAlarmType.Normal] = "atmos-alerts-window-normal-state", + [AtmosAlarmType.Warning] = "atmos-alerts-window-warning-state", + [AtmosAlarmType.Danger] = "atmos-alerts-window-danger-state", + }; + + private Dictionary _gasShorthands = new Dictionary() + { + [Gas.Ammonia] = "NH₃", + [Gas.CarbonDioxide] = "CO₂", + [Gas.Frezon] = "F", + [Gas.Nitrogen] = "N₂", + [Gas.NitrousOxide] = "N₂O", + [Gas.Oxygen] = "O₂", + [Gas.Plasma] = "P", + [Gas.Tritium] = "T", + [Gas.WaterVapor] = "H₂O", + }; + + public AtmosAlarmEntryContainer(NetEntity uid, EntityCoordinates? coordinates) + { + RobustXamlLoader.Load(this); + + _entManager = IoCManager.Resolve(); + _cache = IoCManager.Resolve(); + + NetEntity = uid; + Coordinates = coordinates; + + // Load fonts + var headerFont = new VectorFont(_cache.GetResource("/Fonts/NotoSans/NotoSans-Bold.ttf"), 11); + var normalFont = new VectorFont(_cache.GetResource("/Fonts/NotoSansDisplay/NotoSansDisplay-Regular.ttf"), 11); + var smallFont = new VectorFont(_cache.GetResource("/Fonts/NotoSans/NotoSans-Regular.ttf"), 10); + + // Set fonts + TemperatureHeaderLabel.FontOverride = headerFont; + PressureHeaderLabel.FontOverride = headerFont; + OxygenationHeaderLabel.FontOverride = headerFont; + GasesHeaderLabel.FontOverride = headerFont; + + TemperatureLabel.FontOverride = normalFont; + PressureLabel.FontOverride = normalFont; + OxygenationLabel.FontOverride = normalFont; + + NoDataLabel.FontOverride = headerFont; + + SilenceCheckBox.Label.FontOverride = smallFont; + SilenceCheckBox.Label.FontColorOverride = Color.DarkGray; + } + + public void UpdateEntry(AtmosAlertsComputerEntry entry, bool isFocus, AtmosAlertsFocusDeviceData? focusData = null) + { + NetEntity = entry.NetEntity; + Coordinates = _entManager.GetCoordinates(entry.Coordinates); + + // Load fonts + var normalFont = new VectorFont(_cache.GetResource("/Fonts/NotoSansDisplay/NotoSansDisplay-Regular.ttf"), 11); + + // Update alarm state + if (!_alarmStrings.TryGetValue(entry.AlarmState, out var alarmString)) + alarmString = "atmos-alerts-window-invalid-state"; + + AlarmStateLabel.Text = Loc.GetString(alarmString); + AlarmStateLabel.FontColorOverride = GetAlarmStateColor(entry.AlarmState); + + // Update alarm name + AlarmNameLabel.Text = Loc.GetString("atmos-alerts-window-alarm-label", ("name", entry.EntityName), ("address", entry.Address)); + + // Focus updates + FocusContainer.Visible = isFocus; + + if (isFocus) + SetAsFocus(); + else + RemoveAsFocus(); + + if (isFocus && entry.Group == AtmosAlertsComputerGroup.AirAlarm) + { + MainDataContainer.Visible = (entry.AlarmState != AtmosAlarmType.Invalid); + NoDataLabel.Visible = (entry.AlarmState == AtmosAlarmType.Invalid); + + if (focusData != null) + { + // Update temperature + var tempK = (FixedPoint2)focusData.Value.TemperatureData.Item1; + var tempC = (FixedPoint2)TemperatureHelpers.KelvinToCelsius(tempK.Float()); + + TemperatureLabel.Text = Loc.GetString("atmos-alerts-window-temperature-value", ("valueInC", tempC), ("valueInK", tempK)); + TemperatureLabel.FontColorOverride = GetAlarmStateColor(focusData.Value.TemperatureData.Item2); + + // Update pressure + PressureLabel.Text = Loc.GetString("atmos-alerts-window-pressure-value", ("value", (FixedPoint2)focusData.Value.PressureData.Item1)); + PressureLabel.FontColorOverride = GetAlarmStateColor(focusData.Value.PressureData.Item2); + + // Update oxygenation + var oxygenPercent = (FixedPoint2)0f; + var oxygenAlert = AtmosAlarmType.Invalid; + + if (focusData.Value.GasData.TryGetValue(Gas.Oxygen, out var oxygenData)) + { + oxygenPercent = oxygenData.Item2 * 100f; + oxygenAlert = oxygenData.Item3; + } + + OxygenationLabel.Text = Loc.GetString("atmos-alerts-window-oxygenation-value", ("value", oxygenPercent)); + OxygenationLabel.FontColorOverride = GetAlarmStateColor(oxygenAlert); + + // Update other present gases + GasGridContainer.RemoveAllChildren(); + + var gasData = focusData.Value.GasData.Where(g => g.Key != Gas.Oxygen); + + if (gasData.Count() == 0) + { + // No other gases + var gasLabel = new Label() + { + Text = Loc.GetString("atmos-alerts-window-other-gases-value-nil"), + FontOverride = normalFont, + FontColorOverride = StyleNano.DisabledFore, + HorizontalAlignment = HAlignment.Center, + VerticalAlignment = VAlignment.Center, + HorizontalExpand = true, + Margin = new Thickness(0, 2, 0, 0), + SetHeight = 24f, + }; + + GasGridContainer.AddChild(gasLabel); + } + + else + { + // Add an entry for each gas + foreach ((var gas, (var mol, var percent, var alert)) in gasData) + { + var gasPercent = (FixedPoint2)0f; + gasPercent = percent * 100f; + + if (!_gasShorthands.TryGetValue(gas, out var gasShorthand)) + gasShorthand = "X"; + + var gasLabel = new Label() + { + Text = Loc.GetString("atmos-alerts-window-other-gases-value", ("shorthand", gasShorthand), ("value", gasPercent)), + FontOverride = normalFont, + FontColorOverride = GetAlarmStateColor(alert), + HorizontalAlignment = HAlignment.Center, + VerticalAlignment = VAlignment.Center, + HorizontalExpand = true, + Margin = new Thickness(0, 2, 0, 0), + SetHeight = 24f, + }; + + GasGridContainer.AddChild(gasLabel); + } + } + } + } + } + + public void SetAsFocus() + { + FocusButton.AddStyleClass(StyleNano.StyleClassButtonColorGreen); + ArrowTexture.TexturePath = "/Textures/Interface/Nano/inverted_triangle.svg.png"; + } + + public void RemoveAsFocus() + { + FocusButton.RemoveStyleClass(StyleNano.StyleClassButtonColorGreen); + ArrowTexture.TexturePath = "/Textures/Interface/Nano/triangle_right.png"; + FocusContainer.Visible = false; + } + + private Color GetAlarmStateColor(AtmosAlarmType alarmType) + { + switch (alarmType) + { + case AtmosAlarmType.Normal: + return StyleNano.GoodGreenFore; + case AtmosAlarmType.Warning: + return StyleNano.ConcerningOrangeFore; + case AtmosAlarmType.Danger: + return StyleNano.DangerousRedFore; + } + + return StyleNano.DisabledFore; + } +} \ No newline at end of file diff --git a/Content.Client/Atmos/Consoles/AtmosAlertsComputerBoundUserInterface.cs b/Content.Client/Atmos/Consoles/AtmosAlertsComputerBoundUserInterface.cs new file mode 100644 index 0000000000..08cae979b9 --- /dev/null +++ b/Content.Client/Atmos/Consoles/AtmosAlertsComputerBoundUserInterface.cs @@ -0,0 +1,52 @@ +using Content.Shared.Atmos.Components; + +namespace Content.Client.Atmos.Consoles; + +public sealed class AtmosAlertsComputerBoundUserInterface : BoundUserInterface +{ + [ViewVariables] + private AtmosAlertsComputerWindow? _menu; + + public AtmosAlertsComputerBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { } + + protected override void Open() + { + _menu = new AtmosAlertsComputerWindow(this, Owner); + _menu.OpenCentered(); + _menu.OnClose += Close; + + EntMan.TryGetComponent(Owner, out var xform); + } + + protected override void UpdateState(BoundUserInterfaceState state) + { + base.UpdateState(state); + + var castState = (AtmosAlertsComputerBoundInterfaceState) state; + + if (castState == null) + return; + + EntMan.TryGetComponent(Owner, out var xform); + _menu?.UpdateUI(xform?.Coordinates, castState.AirAlarms, castState.FireAlarms, castState.FocusData); + } + + public void SendFocusChangeMessage(NetEntity? netEntity) + { + SendMessage(new AtmosAlertsComputerFocusChangeMessage(netEntity)); + } + + public void SendDeviceSilencedMessage(NetEntity netEntity, bool silenceDevice) + { + SendMessage(new AtmosAlertsComputerDeviceSilencedMessage(netEntity, silenceDevice)); + } + + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); + if (!disposing) + return; + + _menu?.Dispose(); + } +} diff --git a/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml b/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml new file mode 100644 index 0000000000..8824a776ee --- /dev/null +++ b/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml.cs b/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml.cs new file mode 100644 index 0000000000..a55321833c --- /dev/null +++ b/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml.cs @@ -0,0 +1,550 @@ +using Content.Client.Message; +using Content.Client.Pinpointer.UI; +using Content.Client.Stylesheets; +using Content.Client.UserInterface.Controls; +using Content.Shared.Atmos.Components; +using Content.Shared.Atmos.Monitor; +using Content.Shared.Pinpointer; +using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Map; +using Robust.Shared.Timing; +using Robust.Shared.Utility; +using Robust.Shared.ContentPack; +using Robust.Shared.Prototypes; +using System.Diagnostics.CodeAnalysis; +using System.Linq; + +namespace Content.Client.Atmos.Consoles; + +[GenerateTypedNameReferences] +public sealed partial class AtmosAlertsComputerWindow : FancyWindow +{ + private readonly IEntityManager _entManager; + private readonly SpriteSystem _spriteSystem; + + private EntityUid? _owner; + private NetEntity? _trackedEntity; + + private AtmosAlertsComputerEntry[]? _airAlarms = null; + private AtmosAlertsComputerEntry[]? _fireAlarms = null; + private IEnumerable? _allAlarms = null; + + private IEnumerable? _activeAlarms = null; + private Dictionary _deviceSilencingProgress = new(); + + public event Action? SendFocusChangeMessageAction; + public event Action? SendDeviceSilencedMessageAction; + + private bool _autoScrollActive = false; + private bool _autoScrollAwaitsUpdate = false; + + private const float SilencingDuration = 2.5f; + + public AtmosAlertsComputerWindow(AtmosAlertsComputerBoundUserInterface userInterface, EntityUid? owner) + { + RobustXamlLoader.Load(this); + _entManager = IoCManager.Resolve(); + _spriteSystem = _entManager.System(); + + // Pass the owner to nav map + _owner = owner; + NavMap.Owner = _owner; + + // Set nav map colors + NavMap.WallColor = new Color(64, 64, 64); + NavMap.TileColor = Color.DimGray * NavMap.WallColor; + + // Set nav map grid uid + var stationName = Loc.GetString("atmos-alerts-window-unknown-location"); + + if (_entManager.TryGetComponent(owner, out var xform)) + { + NavMap.MapUid = xform.GridUid; + + // Assign station name + if (_entManager.TryGetComponent(xform.GridUid, out var stationMetaData)) + stationName = stationMetaData.EntityName; + + var msg = new FormattedMessage(); + msg.AddMarkup(Loc.GetString("atmos-alerts-window-station-name", ("stationName", stationName))); + + StationName.SetMessage(msg); + } + + else + { + StationName.SetMessage(stationName); + NavMap.Visible = false; + } + + // Set trackable entity selected action + NavMap.TrackedEntitySelectedAction += SetTrackedEntityFromNavMap; + + // Update nav map + NavMap.ForceNavMapUpdate(); + + // Set tab container headers + MasterTabContainer.SetTabTitle(0, Loc.GetString("atmos-alerts-window-tab-no-alerts")); + MasterTabContainer.SetTabTitle(1, Loc.GetString("atmos-alerts-window-tab-air-alarms")); + MasterTabContainer.SetTabTitle(2, Loc.GetString("atmos-alerts-window-tab-fire-alarms")); + + // Set UI toggles + ShowInactiveAlarms.OnToggled += _ => OnShowAlarmsToggled(ShowInactiveAlarms, AtmosAlarmType.Invalid); + ShowNormalAlarms.OnToggled += _ => OnShowAlarmsToggled(ShowNormalAlarms, AtmosAlarmType.Normal); + ShowWarningAlarms.OnToggled += _ => OnShowAlarmsToggled(ShowWarningAlarms, AtmosAlarmType.Warning); + ShowDangerAlarms.OnToggled += _ => OnShowAlarmsToggled(ShowDangerAlarms, AtmosAlarmType.Danger); + + // Set atmos monitoring message action + SendFocusChangeMessageAction += userInterface.SendFocusChangeMessage; + SendDeviceSilencedMessageAction += userInterface.SendDeviceSilencedMessage; + } + + #region Toggle handling + + private void OnShowAlarmsToggled(CheckBox toggle, AtmosAlarmType toggledAlarmState) + { + if (_owner == null) + return; + + if (!_entManager.TryGetComponent(_owner.Value, out var console)) + return; + + foreach (var device in console.AtmosDevices) + { + var alarmState = GetAlarmState(device.NetEntity); + + if (toggledAlarmState != alarmState) + continue; + + if (toggle.Pressed) + AddTrackedEntityToNavMap(device, alarmState); + + else + NavMap.TrackedEntities.Remove(device.NetEntity); + } + } + + private void OnSilenceAlertsToggled(NetEntity netEntity, bool toggleState) + { + if (!_entManager.TryGetComponent(_owner, out var console)) + return; + + if (toggleState) + _deviceSilencingProgress[netEntity] = SilencingDuration; + + else + _deviceSilencingProgress.Remove(netEntity); + + foreach (AtmosAlarmEntryContainer entryContainer in AlertsTable.Children) + { + if (entryContainer.NetEntity == netEntity) + entryContainer.SilenceAlarmProgressBar.Visible = toggleState; + } + + SendDeviceSilencedMessageAction?.Invoke(netEntity, toggleState); + } + + #endregion + + public void UpdateUI(EntityCoordinates? consoleCoords, AtmosAlertsComputerEntry[] airAlarms, AtmosAlertsComputerEntry[] fireAlarms, AtmosAlertsFocusDeviceData? focusData) + { + if (_owner == null) + return; + + if (!_entManager.TryGetComponent(_owner.Value, out var console)) + return; + + if (_trackedEntity != focusData?.NetEntity) + { + SendFocusChangeMessageAction?.Invoke(_trackedEntity); + focusData = null; + } + + // Retain alarm data for use inbetween updates + _airAlarms = airAlarms; + _fireAlarms = fireAlarms; + _allAlarms = airAlarms.Concat(fireAlarms); + + var silenced = console.SilencedDevices; + + _activeAlarms = _allAlarms.Where(x => x.AlarmState > AtmosAlarmType.Normal && + (!silenced.Contains(x.NetEntity) || _deviceSilencingProgress.ContainsKey(x.NetEntity))); + + // Reset nav map data + NavMap.TrackedCoordinates.Clear(); + NavMap.TrackedEntities.Clear(); + + // Add tracked entities to the nav map + foreach (var device in console.AtmosDevices) + { + if (!NavMap.Visible) + continue; + + var alarmState = GetAlarmState(device.NetEntity); + + if (_trackedEntity != device.NetEntity) + { + // Skip air alarms if the appropriate overlay is off + if (!ShowInactiveAlarms.Pressed && alarmState == AtmosAlarmType.Invalid) + continue; + + if (!ShowNormalAlarms.Pressed && alarmState == AtmosAlarmType.Normal) + continue; + + if (!ShowWarningAlarms.Pressed && alarmState == AtmosAlarmType.Warning) + continue; + + if (!ShowDangerAlarms.Pressed && alarmState == AtmosAlarmType.Danger) + continue; + } + + AddTrackedEntityToNavMap(device, alarmState); + } + + // Show the monitor location + var consoleUid = _entManager.GetNetEntity(_owner); + + if (consoleCoords != null && consoleUid != null) + { + var texture = _spriteSystem.Frame0(new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png"))); + var blip = new NavMapBlip(consoleCoords.Value, texture, Color.Cyan, true, false); + NavMap.TrackedEntities[consoleUid.Value] = blip; + } + + // Update the nav map + NavMap.ForceNavMapUpdate(); + + // Clear excess children from the tables + var activeAlarmCount = _activeAlarms.Count(); + + while (AlertsTable.ChildCount > activeAlarmCount) + AlertsTable.RemoveChild(AlertsTable.GetChild(AlertsTable.ChildCount - 1)); + + while (AirAlarmsTable.ChildCount > airAlarms.Length) + AirAlarmsTable.RemoveChild(AirAlarmsTable.GetChild(AirAlarmsTable.ChildCount - 1)); + + while (FireAlarmsTable.ChildCount > fireAlarms.Length) + FireAlarmsTable.RemoveChild(FireAlarmsTable.GetChild(FireAlarmsTable.ChildCount - 1)); + + // Update all entries in each table + for (int index = 0; index < _activeAlarms.Count(); index++) + { + var entry = _activeAlarms.ElementAt(index); + UpdateUIEntry(entry, index, AlertsTable, console, focusData); + } + + for (int index = 0; index < airAlarms.Count(); index++) + { + var entry = airAlarms.ElementAt(index); + UpdateUIEntry(entry, index, AirAlarmsTable, console, focusData); + } + + for (int index = 0; index < fireAlarms.Count(); index++) + { + var entry = fireAlarms.ElementAt(index); + UpdateUIEntry(entry, index, FireAlarmsTable, console, focusData); + } + + // If no alerts are active, display a message + if (MasterTabContainer.CurrentTab == 0 && activeAlarmCount == 0) + { + var label = new RichTextLabel() + { + HorizontalExpand = true, + VerticalExpand = true, + HorizontalAlignment = HAlignment.Center, + VerticalAlignment = VAlignment.Center, + }; + + label.SetMarkup(Loc.GetString("atmos-alerts-window-no-active-alerts", ("color", StyleNano.GoodGreenFore.ToHexNoAlpha()))); + + AlertsTable.AddChild(label); + } + + // Update the alerts tab with the number of active alerts + if (activeAlarmCount == 0) + MasterTabContainer.SetTabTitle(0, Loc.GetString("atmos-alerts-window-tab-no-alerts")); + + else + MasterTabContainer.SetTabTitle(0, Loc.GetString("atmos-alerts-window-tab-alerts", ("value", activeAlarmCount))); + + // Auto-scroll re-enable + if (_autoScrollAwaitsUpdate) + { + _autoScrollActive = true; + _autoScrollAwaitsUpdate = false; + } + } + + private void AddTrackedEntityToNavMap(AtmosAlertsDeviceNavMapData metaData, AtmosAlarmType alarmState) + { + var data = GetBlipTexture(alarmState); + + if (data == null) + return; + + var texture = data.Value.Item1; + var color = data.Value.Item2; + var coords = _entManager.GetCoordinates(metaData.NetCoordinates); + + if (_trackedEntity != null && _trackedEntity != metaData.NetEntity) + color *= Color.DimGray; + + var selectable = true; + var blip = new NavMapBlip(coords, _spriteSystem.Frame0(texture), color, _trackedEntity == metaData.NetEntity, selectable); + + NavMap.TrackedEntities[metaData.NetEntity] = blip; + } + + private void UpdateUIEntry(AtmosAlertsComputerEntry entry, int index, Control table, AtmosAlertsComputerComponent console, AtmosAlertsFocusDeviceData? focusData = null) + { + // Make new UI entry if required + if (index >= table.ChildCount) + { + var newEntryContainer = new AtmosAlarmEntryContainer(entry.NetEntity, _entManager.GetCoordinates(entry.Coordinates)); + + // On click + newEntryContainer.FocusButton.OnButtonUp += args => + { + if (_trackedEntity == newEntryContainer.NetEntity) + { + _trackedEntity = null; + } + + else + { + _trackedEntity = newEntryContainer.NetEntity; + + if (newEntryContainer.Coordinates != null) + NavMap.CenterToCoordinates(newEntryContainer.Coordinates.Value); + } + + // Send message to console that the focus has changed + SendFocusChangeMessageAction?.Invoke(_trackedEntity); + + // Update affected UI elements across all tables + UpdateConsoleTable(console, AlertsTable, _trackedEntity); + UpdateConsoleTable(console, AirAlarmsTable, _trackedEntity); + UpdateConsoleTable(console, FireAlarmsTable, _trackedEntity); + }; + + // On toggling the silence check box + newEntryContainer.SilenceCheckBox.OnToggled += _ => OnSilenceAlertsToggled(newEntryContainer.NetEntity, newEntryContainer.SilenceCheckBox.Pressed); + + // Add the entry to the current table + table.AddChild(newEntryContainer); + } + + // Update values and UI elements + var tableChild = table.GetChild(index); + + if (tableChild is not AtmosAlarmEntryContainer) + { + table.RemoveChild(tableChild); + UpdateUIEntry(entry, index, table, console, focusData); + + return; + } + + var entryContainer = (AtmosAlarmEntryContainer)tableChild; + + entryContainer.UpdateEntry(entry, entry.NetEntity == _trackedEntity, focusData); + + if (_trackedEntity != entry.NetEntity) + { + var silenced = console.SilencedDevices; + entryContainer.SilenceCheckBox.Pressed = (silenced.Contains(entry.NetEntity) || _deviceSilencingProgress.ContainsKey(entry.NetEntity)); + } + + entryContainer.SilenceAlarmProgressBar.Visible = (table == AlertsTable && _deviceSilencingProgress.ContainsKey(entry.NetEntity)); + } + + private void UpdateConsoleTable(AtmosAlertsComputerComponent console, Control table, NetEntity? currTrackedEntity) + { + foreach (var tableChild in table.Children) + { + if (tableChild is not AtmosAlarmEntryContainer) + continue; + + var entryContainer = (AtmosAlarmEntryContainer)tableChild; + + if (entryContainer.NetEntity != currTrackedEntity) + entryContainer.RemoveAsFocus(); + + else if (entryContainer.NetEntity == currTrackedEntity) + entryContainer.SetAsFocus(); + } + } + + private void SetTrackedEntityFromNavMap(NetEntity? netEntity) + { + if (netEntity == null) + return; + + if (!_entManager.TryGetComponent(_owner, out var console)) + return; + + _trackedEntity = netEntity; + + if (netEntity != null) + { + // Tab switching + if (MasterTabContainer.CurrentTab != 0 || _activeAlarms?.Any(x => x.NetEntity == netEntity) == false) + { + var device = console.AtmosDevices.FirstOrNull(x => x.NetEntity == netEntity); + + switch (device?.Group) + { + case AtmosAlertsComputerGroup.AirAlarm: + MasterTabContainer.CurrentTab = 1; break; + case AtmosAlertsComputerGroup.FireAlarm: + MasterTabContainer.CurrentTab = 2; break; + } + } + + // Get the scroll position of the selected entity on the selected button the UI + ActivateAutoScrollToFocus(); + } + + // Send message to console that the focus has changed + SendFocusChangeMessageAction?.Invoke(_trackedEntity); + } + + protected override void FrameUpdate(FrameEventArgs args) + { + AutoScrollToFocus(); + + // Device silencing update + foreach ((var device, var remainingTime) in _deviceSilencingProgress) + { + var t = remainingTime - args.DeltaSeconds; + + if (t <= 0) + { + _deviceSilencingProgress.Remove(device); + + if (device == _trackedEntity) + _trackedEntity = null; + } + + else + _deviceSilencingProgress[device] = t; + } + } + + private void ActivateAutoScrollToFocus() + { + _autoScrollActive = false; + _autoScrollAwaitsUpdate = true; + } + + private void AutoScrollToFocus() + { + if (!_autoScrollActive) + return; + + var scroll = MasterTabContainer.Children.ElementAt(MasterTabContainer.CurrentTab) as ScrollContainer; + if (scroll == null) + return; + + if (!TryGetVerticalScrollbar(scroll, out var vScrollbar)) + return; + + if (!TryGetNextScrollPosition(out float? nextScrollPosition)) + return; + + vScrollbar.ValueTarget = nextScrollPosition.Value; + + if (MathHelper.CloseToPercent(vScrollbar.Value, vScrollbar.ValueTarget)) + _autoScrollActive = false; + } + + private bool TryGetVerticalScrollbar(ScrollContainer scroll, [NotNullWhen(true)] out VScrollBar? vScrollBar) + { + vScrollBar = null; + + foreach (var child in scroll.Children) + { + if (child is not VScrollBar) + continue; + + var castChild = child as VScrollBar; + + if (castChild != null) + { + vScrollBar = castChild; + return true; + } + } + + return false; + } + + private bool TryGetNextScrollPosition([NotNullWhen(true)] out float? nextScrollPosition) + { + nextScrollPosition = null; + + var scroll = MasterTabContainer.Children.ElementAt(MasterTabContainer.CurrentTab) as ScrollContainer; + if (scroll == null) + return false; + + var container = scroll.Children.ElementAt(0) as BoxContainer; + if (container == null || container.Children.Count() == 0) + return false; + + // Exit if the heights of the children haven't been initialized yet + if (!container.Children.Any(x => x.Height > 0)) + return false; + + nextScrollPosition = 0; + + foreach (var control in container.Children) + { + if (control == null || control is not AtmosAlarmEntryContainer) + continue; + + if (((AtmosAlarmEntryContainer)control).NetEntity == _trackedEntity) + return true; + + nextScrollPosition += control.Height; + } + + // Failed to find control + nextScrollPosition = null; + + return false; + } + + private AtmosAlarmType GetAlarmState(NetEntity netEntity) + { + var alarmState = _allAlarms?.FirstOrNull(x => x.NetEntity == netEntity)?.AlarmState; + + if (alarmState == null) + return AtmosAlarmType.Invalid; + + return alarmState.Value; + } + + private (SpriteSpecifier.Texture, Color)? GetBlipTexture(AtmosAlarmType alarmState) + { + (SpriteSpecifier.Texture, Color)? output = null; + + switch (alarmState) + { + case AtmosAlarmType.Invalid: + output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png")), StyleNano.DisabledFore); break; + case AtmosAlarmType.Normal: + output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png")), Color.LimeGreen); break; + case AtmosAlarmType.Warning: + output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_triangle.png")), new Color(255, 182, 72)); break; + case AtmosAlarmType.Danger: + output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_square.png")), new Color(255, 67, 67)); break; + } + + return output; + } +} \ No newline at end of file diff --git a/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs b/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs index b105e629cf..b54af3a587 100644 --- a/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs +++ b/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs @@ -163,6 +163,26 @@ private void GenerateGasDisplay(GasMixEntry gasMix, Control parent) parent.AddChild(panel); panel.AddChild(dataContainer); + // Volume label + var volBox = new BoxContainer { Orientation = BoxContainer.LayoutOrientation.Horizontal }; + + volBox.AddChild(new Label + { + Text = Loc.GetString("gas-analyzer-window-volume-text") + }); + volBox.AddChild(new Control + { + MinSize = new Vector2(10, 0), + HorizontalExpand = true + }); + volBox.AddChild(new Label + { + Text = Loc.GetString("gas-analyzer-window-volume-val-text", ("volume", $"{gasMix.Volume:0.##}")), + Align = Label.AlignMode.Right, + HorizontalExpand = true + }); + dataContainer.AddChild(volBox); + // Pressure label var presBox = new BoxContainer { Orientation = BoxContainer.LayoutOrientation.Horizontal }; diff --git a/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs b/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs index 072730d65d..60fe339069 100644 --- a/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs +++ b/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs @@ -9,7 +9,6 @@ namespace Content.Client.Audio.Jukebox; public sealed class JukeboxBoundUserInterface : BoundUserInterface { - [Dependency] private readonly IPlayerManager _player = default!; [Dependency] private readonly IPrototypeManager _protoManager = default!; [ViewVariables] diff --git a/Content.Client/Audio/Jukebox/JukeboxSystem.cs b/Content.Client/Audio/Jukebox/JukeboxSystem.cs index 53bde82a78..dd4a5bbb9b 100644 --- a/Content.Client/Audio/Jukebox/JukeboxSystem.cs +++ b/Content.Client/Audio/Jukebox/JukeboxSystem.cs @@ -11,6 +11,7 @@ public sealed class JukeboxSystem : SharedJukeboxSystem [Dependency] private readonly IPrototypeManager _protoManager = default!; [Dependency] private readonly AnimationPlayerSystem _animationPlayer = default!; [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!; + [Dependency] private readonly SharedUserInterfaceSystem _uiSystem = default!; public override void Initialize() { @@ -35,13 +36,10 @@ private void OnProtoReload(PrototypesReloadedEventArgs obj) var query = AllEntityQuery(); - while (query.MoveNext(out _, out var ui)) + while (query.MoveNext(out var uid, out _, out var ui)) { - if (!ui.OpenInterfaces.TryGetValue(JukeboxUiKey.Key, out var baseBui) || - baseBui is not JukeboxBoundUserInterface bui) - { + if (!_uiSystem.TryGetOpenUi((uid, ui), JukeboxUiKey.Key, out var bui)) continue; - } bui.PopulateMusic(); } @@ -49,15 +47,9 @@ private void OnProtoReload(PrototypesReloadedEventArgs obj) private void OnJukeboxAfterState(Entity ent, ref AfterAutoHandleStateEvent args) { - if (!TryComp(ent, out UserInterfaceComponent? ui)) + if (!_uiSystem.TryGetOpenUi(ent.Owner, JukeboxUiKey.Key, out var bui)) return; - if (!ui.OpenInterfaces.TryGetValue(JukeboxUiKey.Key, out var baseBui) || - baseBui is not JukeboxBoundUserInterface bui) - { - return; - } - bui.Reload(); } diff --git a/Content.Client/Buckle/BuckleSystem.cs b/Content.Client/Buckle/BuckleSystem.cs index b899a88106..d4614210d9 100644 --- a/Content.Client/Buckle/BuckleSystem.cs +++ b/Content.Client/Buckle/BuckleSystem.cs @@ -50,16 +50,11 @@ private void OnBuckleAfterAutoHandleState(EntityUid uid, BuckleComponent compone private void OnAppearanceChange(EntityUid uid, BuckleComponent component, ref AppearanceChangeEvent args) { - if (!TryComp(uid, out var rotVisuals)) + if (!TryComp(uid, out var rotVisuals) + || !Appearance.TryGetData(uid, BuckleVisuals.Buckled, out var buckled, args.Component) + || !buckled || args.Sprite == null) return; - if (!Appearance.TryGetData(uid, BuckleVisuals.Buckled, out var buckled, args.Component) || - !buckled || - args.Sprite == null) - { - return; - } - // Animate strapping yourself to something at a given angle // TODO: Dump this when buckle is better _rotationVisualizerSystem.AnimateSpriteRotation(uid, args.Sprite, rotVisuals.HorizontalRotation, 0.125f); diff --git a/Content.Client/CardboardBox/CardboardBoxSystem.cs b/Content.Client/CardboardBox/CardboardBoxSystem.cs index 90a21d8e41..925013db10 100644 --- a/Content.Client/CardboardBox/CardboardBoxSystem.cs +++ b/Content.Client/CardboardBox/CardboardBoxSystem.cs @@ -1,4 +1,5 @@ using System.Numerics; +using Content.Shared.Body.Components; using Content.Shared.CardboardBox; using Content.Shared.CardboardBox.Components; using Content.Shared.Examine; @@ -13,9 +14,14 @@ public sealed class CardboardBoxSystem : SharedCardboardBoxSystem [Dependency] private readonly TransformSystem _transform = default!; [Dependency] private readonly ExamineSystemShared _examine = default!; + private EntityQuery _bodyQuery; + public override void Initialize() { base.Initialize(); + + _bodyQuery = GetEntityQuery(); + SubscribeNetworkEvent(OnBoxEffect); } @@ -59,6 +65,10 @@ private void OnBoxEffect(PlayBoxEffectMessage msg) if (!_examine.InRangeUnOccluded(sourcePos, mapPos, box.Distance, null)) continue; + // no effect for anything too exotic + if (!_bodyQuery.HasComp(mob)) + continue; + var ent = Spawn(box.Effect, mapPos); if (!xformQuery.TryGetComponent(ent, out var entTransform) || !TryComp(ent, out var sprite)) diff --git a/Content.Client/Cargo/UI/BountyEntry.xaml.cs b/Content.Client/Cargo/UI/BountyEntry.xaml.cs index 027d7b3e80..31c417117a 100644 --- a/Content.Client/Cargo/UI/BountyEntry.xaml.cs +++ b/Content.Client/Cargo/UI/BountyEntry.xaml.cs @@ -7,7 +7,6 @@ using Robust.Client.UserInterface.XAML; using Robust.Shared.Prototypes; using Robust.Shared.Timing; -using Serilog; namespace Content.Client.Cargo.UI; diff --git a/Content.Client/CartridgeLoader/Cartridges/MailMetricUi.cs b/Content.Client/CartridgeLoader/Cartridges/MailMetricUi.cs new file mode 100644 index 0000000000..504dda7c56 --- /dev/null +++ b/Content.Client/CartridgeLoader/Cartridges/MailMetricUi.cs @@ -0,0 +1,28 @@ +using Content.Client.UserInterface.Fragments; +using Content.Shared.CartridgeLoader.Cartridges; +using Robust.Client.UserInterface; + +namespace Content.Client.CartridgeLoader.Cartridges; + +public sealed partial class MailMetricUi : UIFragment +{ + private MailMetricUiFragment? _fragment; + + public override Control GetUIFragmentRoot() + { + return _fragment!; + } + + public override void Setup(BoundUserInterface userInterface, EntityUid? fragmentOwner) + { + _fragment = new MailMetricUiFragment(); + } + + public override void UpdateState(BoundUserInterfaceState state) + { + if (state is MailMetricUiState cast) + { + _fragment?.UpdateState(cast); + } + } +} diff --git a/Content.Client/CartridgeLoader/Cartridges/MailMetricUiFragment.xaml b/Content.Client/CartridgeLoader/Cartridges/MailMetricUiFragment.xaml new file mode 100644 index 0000000000..39639fe8c9 --- /dev/null +++ b/Content.Client/CartridgeLoader/Cartridges/MailMetricUiFragment.xaml @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Content.Client/CartridgeLoader/Cartridges/MailMetricUiFragment.xaml.cs b/Content.Client/CartridgeLoader/Cartridges/MailMetricUiFragment.xaml.cs new file mode 100644 index 0000000000..553e3a5793 --- /dev/null +++ b/Content.Client/CartridgeLoader/Cartridges/MailMetricUiFragment.xaml.cs @@ -0,0 +1,104 @@ +using Content.Shared.CartridgeLoader.Cartridges; +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; + +namespace Content.Client.CartridgeLoader.Cartridges; + +[GenerateTypedNameReferences] +public sealed partial class MailMetricUiFragment : BoxContainer +{ + + private OpenedMailPercentGrade? _successGrade; + + public MailMetricUiFragment() + { + RobustXamlLoader.Load(this); + + // This my way of adding multiple classes to a XAML control. + // Haha Batman I'm going to blow up Gotham City + OpenedMailCount.StyleClasses.Add("Good"); + OpenedMailSpesos.StyleClasses.Add("Good"); + TamperedMailCount.StyleClasses.Add("Danger"); + TamperedMailSpesos.StyleClasses.Add("Danger"); + ExpiredMailCount.StyleClasses.Add("Danger"); + ExpiredMailSpesos.StyleClasses.Add("Danger"); + DamagedMailCount.StyleClasses.Add("Danger"); + DamagedMailSpesos.StyleClasses.Add("Danger"); + UnopenedMailCount.StyleClasses.Add("Caution"); + } + + public void UpdateState(MailMetricUiState state) + { + UpdateTextLabels(state); + UpdateSuccessGrade(state); + } + + public void UpdateTextLabels(MailMetricUiState state) + { + var stats = state.Metrics; + + OpenedMailCount.Text = stats.OpenedCount.ToString(); + OpenedMailSpesos.Text = stats.Earnings.ToString(); + TamperedMailCount.Text = stats.TamperedCount.ToString(); + TamperedMailSpesos.Text = stats.TamperedLosses.ToString(); + ExpiredMailCount.Text = stats.ExpiredCount.ToString(); + ExpiredMailSpesos.Text = stats.ExpiredLosses.ToString(); + DamagedMailCount.Text = stats.DamagedCount.ToString(); + DamagedMailSpesos.Text = stats.DamagedLosses.ToString(); + UnopenedMailCount.Text = state.UnopenedMailCount.ToString(); + TotalMailCount.Text = state.TotalMail.ToString(); + TotalMailSpesos.Text = stats.TotalIncome.ToString(); + SuccessRateCounts.Text = Loc.GetString("mail-metrics-progress", + ("opened", stats.OpenedCount), + ("total", state.TotalMail)); + SuccessRatePercent.Text = Loc.GetString("mail-metrics-progress-percent", + ("successRate", state.SuccessRate)); + } + + public void UpdateSuccessGrade(MailMetricUiState state) + { + var previousGrade = _successGrade; + _successGrade = GetSuccessRateGrade(state.SuccessRate); + + // No need to update if they're the same + if (previousGrade == _successGrade) + return; + + var previousGradeClass = GetClassForGrade(previousGrade); + if (previousGradeClass != string.Empty) + { + SuccessRatePercent.StyleClasses.Remove(previousGradeClass); + } + + SuccessRatePercent.StyleClasses.Add(GetClassForGrade(_successGrade)); + } + + private static OpenedMailPercentGrade GetSuccessRateGrade(double successRate) + { + return successRate switch + { + > 75 => OpenedMailPercentGrade.Good, + > 50 => OpenedMailPercentGrade.Average, + _ => OpenedMailPercentGrade.Bad, + }; + } + + private string GetClassForGrade(OpenedMailPercentGrade? grade) + { + return grade switch + { + OpenedMailPercentGrade.Good => "Good", + OpenedMailPercentGrade.Average => "Caution", + OpenedMailPercentGrade.Bad => "Danger", + _ => string.Empty, + }; + } +} + +enum OpenedMailPercentGrade +{ + Good, + Average, + Bad +} diff --git a/Content.Client/Changelog/ChangelogWindow.xaml.cs b/Content.Client/Changelog/ChangelogWindow.xaml.cs index e5f492900c..9b7fd75436 100644 --- a/Content.Client/Changelog/ChangelogWindow.xaml.cs +++ b/Content.Client/Changelog/ChangelogWindow.xaml.cs @@ -87,14 +87,12 @@ private void TabsUpdated() if (!tab.AdminOnly || isAdmin) { Tabs.SetTabVisible(i, true); - tab.Visible = true; visibleTabs++; firstVisible ??= i; } else { Tabs.SetTabVisible(i, false); - tab.Visible = false; } } diff --git a/Content.Client/Chat/UI/EmotesMenu.xaml b/Content.Client/Chat/UI/EmotesMenu.xaml new file mode 100644 index 0000000000..cc4d5bb77e --- /dev/null +++ b/Content.Client/Chat/UI/EmotesMenu.xaml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Content.Client/Chat/UI/EmotesMenu.xaml.cs b/Content.Client/Chat/UI/EmotesMenu.xaml.cs new file mode 100644 index 0000000000..9ef647df5f --- /dev/null +++ b/Content.Client/Chat/UI/EmotesMenu.xaml.cs @@ -0,0 +1,113 @@ +using System.Linq; +using System.Numerics; +using Content.Client.UserInterface.Controls; +using Content.Shared.Chat.Prototypes; +using Content.Shared.Speech; +using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Player; +using Robust.Shared.Prototypes; + +namespace Content.Client.Chat.UI; + +[GenerateTypedNameReferences] +public sealed partial class EmotesMenu : RadialMenu +{ + [Dependency] private readonly EntityManager _entManager = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly ISharedPlayerManager _playerManager = default!; + + private readonly SpriteSystem _spriteSystem; + + public event Action>? OnPlayEmote; + + public EmotesMenu() + { + IoCManager.InjectDependencies(this); + RobustXamlLoader.Load(this); + + _spriteSystem = _entManager.System(); + + var main = FindControl("Main"); + + var emotes = _prototypeManager.EnumeratePrototypes(); + foreach (var emote in emotes) + { + var player = _playerManager.LocalSession?.AttachedEntity; + if (emote.Category == EmoteCategory.Invalid || + emote.ChatTriggers.Count == 0 || + !(player.HasValue && (emote.Whitelist?.IsValid(player.Value, _entManager) ?? true)) || + (emote.Blacklist?.IsValid(player.Value, _entManager) ?? false)) + continue; + + if (!emote.Available && + _entManager.TryGetComponent(player.Value, out var speech) && + !speech.AllowedEmotes.Contains(emote.ID)) + continue; + + var parent = FindControl(emote.Category.ToString()); + + var button = new EmoteMenuButton + { + StyleClasses = { "RadialMenuButton" }, + SetSize = new Vector2(64f, 64f), + ToolTip = Loc.GetString(emote.Name), + ProtoId = emote.ID, + }; + + var tex = new TextureRect + { + VerticalAlignment = VAlignment.Center, + HorizontalAlignment = HAlignment.Center, + Texture = _spriteSystem.Frame0(emote.Icon), + TextureScale = new Vector2(2f, 2f), + }; + + button.AddChild(tex); + parent.AddChild(button); + foreach (var child in main.Children) + { + if (child is not RadialMenuTextureButton castChild) + continue; + + if (castChild.TargetLayer == emote.Category.ToString()) + { + castChild.Visible = true; + break; + } + } + } + + // Set up menu actions + foreach (var child in Children) + { + if (child is not RadialContainer container) + continue; + AddEmoteClickAction(container); + container.Radius = 64f + 32f * MathF.Log(container.Children.Count()); + } + } + + private void AddEmoteClickAction(RadialContainer container) + { + foreach (var child in container.Children) + { + if (child is not EmoteMenuButton castChild) + continue; + + castChild.OnButtonUp += _ => + { + OnPlayEmote?.Invoke(castChild.ProtoId); + Close(); + }; + } + } +} + + +public sealed class EmoteMenuButton : RadialMenuTextureButton +{ + public ProtoId ProtoId { get; set; } +} diff --git a/Content.Client/Chemistry/Components/SolutionItemStatusComponent.cs b/Content.Client/Chemistry/Components/SolutionItemStatusComponent.cs new file mode 100644 index 0000000000..58c5a05894 --- /dev/null +++ b/Content.Client/Chemistry/Components/SolutionItemStatusComponent.cs @@ -0,0 +1,22 @@ +using Content.Client.Chemistry.EntitySystems; +using Content.Client.Chemistry.UI; + +namespace Content.Client.Chemistry.Components; + +/// +/// Exposes a solution container's contents via a basic item status control. +/// +/// +/// Shows the solution volume, max volume, and transfer amount. +/// +/// +/// +[RegisterComponent] +public sealed partial class SolutionItemStatusComponent : Component +{ + /// + /// The ID of the solution that will be shown on the item status control. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public string Solution = "default"; +} diff --git a/Content.Client/Chemistry/EntitySystems/SolutionItemStatusSystem.cs b/Content.Client/Chemistry/EntitySystems/SolutionItemStatusSystem.cs new file mode 100644 index 0000000000..76aab516a7 --- /dev/null +++ b/Content.Client/Chemistry/EntitySystems/SolutionItemStatusSystem.cs @@ -0,0 +1,22 @@ +using Content.Client.Chemistry.Components; +using Content.Client.Chemistry.UI; +using Content.Client.Items; +using Content.Shared.Chemistry.EntitySystems; + +namespace Content.Client.Chemistry.EntitySystems; + +/// +/// Wires up item status logic for . +/// +/// +public sealed class SolutionItemStatusSystem : EntitySystem +{ + [Dependency] private readonly SharedSolutionContainerSystem _solutionContainerSystem = default!; + + public override void Initialize() + { + base.Initialize(); + Subs.ItemStatus( + entity => new SolutionStatusControl(entity, EntityManager, _solutionContainerSystem)); + } +} diff --git a/Content.Client/Chemistry/UI/ButtonGrid.cs b/Content.Client/Chemistry/UI/ButtonGrid.cs new file mode 100644 index 0000000000..0abd9ef8a4 --- /dev/null +++ b/Content.Client/Chemistry/UI/ButtonGrid.cs @@ -0,0 +1,119 @@ +using System; +using Robust.Client.Graphics; +using Robust.Client.UserInterface.Controls; + +namespace Content.Client.Chemistry.UI; + +/// +/// Creates a grid of buttons given a comma-seperated list of Text +/// +public sealed class ButtonGrid : GridContainer +{ + private string _buttonList = ""; + + /// + /// A comma-seperated list of text to use for each button. These will be inserted sequentially. + /// + public string ButtonList + { + get => _buttonList; + set + { + _buttonList = value; + Update(); + } + } + + public bool RadioGroup { get; set; } = false; + + private string? _selected; + + /// + /// Which button is currently selected. Only matters when is true. + /// + public string? Selected + { + get => _selected; + set + { + _selected = value; + Update(); + } + } + + public Action? OnButtonPressed; + + /// + /// + /// + public new int Columns + { + get => base.Columns; + set + { + base.Columns = value; + Update(); + } + } + + /// + /// + /// + public new int Rows + { + get => base.Rows; + set + { + base.Rows = value; + Update(); + } + } + + private void Update() + { + if (ButtonList == "") + return; + + this.Children.Clear(); + var i = 0; + var list = ButtonList.Split(","); + + var group = new ButtonGroup(); + + foreach (var button in list) + { + var btn = new Button(); + btn.Text = button; + btn.OnPressed += _ => + { + if (RadioGroup) + btn.Pressed = true; + Selected = button; + OnButtonPressed?.Invoke(button); + }; + if (button == Selected) + btn.Pressed = true; + var sep = HSeparationOverride ?? 0; + // ReSharper disable once PossibleLossOfFraction + // btn.SetWidth = (this.PixelWidth - sep * (Columns - 1)) / 3; + btn.Group = group; + + var row = i / Columns; + var col = i % Columns; + var last = i == list.Length - 1; + var lastCol = i == Columns - 1; + var lastRow = row == list.Length / Columns - 1; + + if (row == 0 && (lastCol || last)) + btn.AddStyleClass("OpenLeft"); + else if (col == 0 && lastRow) + btn.AddStyleClass("OpenRight"); + else + btn.AddStyleClass("OpenBoth"); + + this.Children.Add(btn); + + i++; + } + } +} diff --git a/Content.Client/Chemistry/UI/InjectorStatusControl.cs b/Content.Client/Chemistry/UI/InjectorStatusControl.cs index ba1f97cd1e..f9b0d90e20 100644 --- a/Content.Client/Chemistry/UI/InjectorStatusControl.cs +++ b/Content.Client/Chemistry/UI/InjectorStatusControl.cs @@ -32,7 +32,7 @@ protected override void FrameUpdate(FrameEventArgs args) { base.FrameUpdate(args); - if (!_solutionContainers.TryGetSolution(_parent.Owner, InjectorComponent.SolutionName, out _, out var solution)) + if (!_solutionContainers.TryGetSolution(_parent.Owner, _parent.Comp.SolutionName, out _, out var solution)) return; // only updates the UI if any of the details are different than they previously were diff --git a/Content.Client/Chemistry/UI/ReagentCardControl.xaml b/Content.Client/Chemistry/UI/ReagentCardControl.xaml new file mode 100644 index 0000000000..966c730140 --- /dev/null +++ b/Content.Client/Chemistry/UI/ReagentCardControl.xaml @@ -0,0 +1,37 @@ + + + + + + + diff --git a/Content.Client/Chemistry/UI/ReagentCardControl.xaml.cs b/Content.Client/Chemistry/UI/ReagentCardControl.xaml.cs new file mode 100644 index 0000000000..60336143fc --- /dev/null +++ b/Content.Client/Chemistry/UI/ReagentCardControl.xaml.cs @@ -0,0 +1,30 @@ +using Content.Shared.Chemistry; +using Robust.Client.AutoGenerated; +using Robust.Client.Graphics; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.XAML; + +namespace Content.Client.Chemistry.UI; + +[GenerateTypedNameReferences] +public sealed partial class ReagentCardControl : Control +{ + public string StorageSlotId { get; } + public Action? OnPressed; + public Action? OnEjectButtonPressed; + + public ReagentCardControl(ReagentInventoryItem item) + { + RobustXamlLoader.Load(this); + + StorageSlotId = item.StorageSlotId; + ColorPanel.PanelOverride = new StyleBoxFlat { BackgroundColor = item.ReagentColor }; + ReagentNameLabel.Text = item.ReagentLabel; + ReagentNameLabel.FontColorOverride = Color.White; + FillLabel.Text = item.StoredAmount; + EjectButtonIcon.Text = Loc.GetString("reagent-dispenser-window-eject-container-button"); + + MainButton.OnPressed += args => OnPressed?.Invoke(StorageSlotId); + EjectButton.OnPressed += args => OnEjectButtonPressed?.Invoke(StorageSlotId); + } +} diff --git a/Content.Client/Chemistry/UI/ReagentDispenserBoundUserInterface.cs b/Content.Client/Chemistry/UI/ReagentDispenserBoundUserInterface.cs index 8244e3e6ed..99e5a3d395 100644 --- a/Content.Client/Chemistry/UI/ReagentDispenserBoundUserInterface.cs +++ b/Content.Client/Chemistry/UI/ReagentDispenserBoundUserInterface.cs @@ -1,3 +1,4 @@ +using Content.Client.Guidebook.Components; using Content.Shared.Chemistry; using Content.Shared.Containers.ItemSlots; using JetBrains.Annotations; @@ -34,6 +35,7 @@ protected override void Open() _window = new() { Title = EntMan.GetComponent(Owner).EntityName, + HelpGuidebookIds = EntMan.GetComponent(Owner).Guides }; _window.OpenCentered(); @@ -42,38 +44,11 @@ protected override void Open() // Setup static button actions. _window.EjectButton.OnPressed += _ => SendMessage(new ItemSlotButtonPressedEvent(SharedReagentDispenser.OutputSlotName)); _window.ClearButton.OnPressed += _ => SendMessage(new ReagentDispenserClearContainerSolutionMessage()); - _window.DispenseButton1.OnPressed += _ => SendMessage(new ReagentDispenserSetDispenseAmountMessage(ReagentDispenserDispenseAmount.U1)); - _window.DispenseButton5.OnPressed += _ => SendMessage(new ReagentDispenserSetDispenseAmountMessage(ReagentDispenserDispenseAmount.U5)); - _window.DispenseButton10.OnPressed += _ => SendMessage(new ReagentDispenserSetDispenseAmountMessage(ReagentDispenserDispenseAmount.U10)); - _window.DispenseButton15.OnPressed += _ => SendMessage(new ReagentDispenserSetDispenseAmountMessage(ReagentDispenserDispenseAmount.U15)); - _window.DispenseButton20.OnPressed += _ => SendMessage(new ReagentDispenserSetDispenseAmountMessage(ReagentDispenserDispenseAmount.U20)); - _window.DispenseButton25.OnPressed += _ => SendMessage(new ReagentDispenserSetDispenseAmountMessage(ReagentDispenserDispenseAmount.U25)); - _window.DispenseButton30.OnPressed += _ => SendMessage(new ReagentDispenserSetDispenseAmountMessage(ReagentDispenserDispenseAmount.U30)); - _window.DispenseButton50.OnPressed += _ => SendMessage(new ReagentDispenserSetDispenseAmountMessage(ReagentDispenserDispenseAmount.U50)); - _window.DispenseButton100.OnPressed += _ => SendMessage(new ReagentDispenserSetDispenseAmountMessage(ReagentDispenserDispenseAmount.U100)); - // Setup reagent button actions. - _window.OnDispenseReagentButtonPressed += (args, button) => SendMessage(new ReagentDispenserDispenseReagentMessage(button.ReagentId)); - _window.OnDispenseReagentButtonMouseEntered += (args, button) => - { - if (_lastState is not null) - _window.UpdateContainerInfo(_lastState); - }; - _window.OnDispenseReagentButtonMouseExited += (args, button) => - { - if (_lastState is not null) - _window.UpdateContainerInfo(_lastState); - }; + _window.AmountGrid.OnButtonPressed += s => SendMessage(new ReagentDispenserSetDispenseAmountMessage(s)); - _window.OnEjectJugButtonPressed += (args, button) => SendMessage(new ItemSlotButtonPressedEvent(button.ReagentId)); - _window.OnEjectJugButtonMouseEntered += (args, button) => { - if (_lastState is not null) - _window.UpdateContainerInfo(_lastState); - }; - _window.OnEjectJugButtonMouseExited += (args, button) => { - if (_lastState is not null) - _window.UpdateContainerInfo(_lastState); - }; + _window.OnDispenseReagentButtonPressed += (id) => SendMessage(new ReagentDispenserDispenseReagentMessage(id)); + _window.OnEjectJugButtonPressed += (id) => SendMessage(new ItemSlotButtonPressedEvent(id)); } /// diff --git a/Content.Client/Chemistry/UI/ReagentDispenserWindow.xaml b/Content.Client/Chemistry/UI/ReagentDispenserWindow.xaml index 3b812ba56b..c900d7ecf2 100644 --- a/Content.Client/Chemistry/UI/ReagentDispenserWindow.xaml +++ b/Content.Client/Chemistry/UI/ReagentDispenserWindow.xaml @@ -1,53 +1,77 @@ - - - - [GenerateTypedNameReferences] - public sealed partial class ReagentDispenserWindow : DefaultWindow + public sealed partial class ReagentDispenserWindow : FancyWindow { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IEntityManager _entityManager = default!; - public event Action? OnDispenseReagentButtonPressed; - public event Action? OnDispenseReagentButtonMouseEntered; - public event Action? OnDispenseReagentButtonMouseExited; - - public event Action? OnEjectJugButtonPressed; - public event Action? OnEjectJugButtonMouseEntered; - public event Action? OnEjectJugButtonMouseExited; + public event Action? OnDispenseReagentButtonPressed; + public event Action? OnEjectJugButtonPressed; /// /// Create and initialize the dispenser UI client-side. Creates the basic layout, @@ -35,44 +29,27 @@ public ReagentDispenserWindow() { RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); - - var dispenseAmountGroup = new ButtonGroup(); - DispenseButton1.Group = dispenseAmountGroup; - DispenseButton5.Group = dispenseAmountGroup; - DispenseButton10.Group = dispenseAmountGroup; - DispenseButton15.Group = dispenseAmountGroup; - DispenseButton20.Group = dispenseAmountGroup; - DispenseButton25.Group = dispenseAmountGroup; - DispenseButton30.Group = dispenseAmountGroup; - DispenseButton50.Group = dispenseAmountGroup; - DispenseButton100.Group = dispenseAmountGroup; } /// /// Update the button grid of reagents which can be dispensed. /// /// Reagents which can be dispensed by this dispenser - public void UpdateReagentsList(List>> inventory) + public void UpdateReagentsList(List inventory) { - if (ChemicalList == null) + if (ReagentList == null) return; - ChemicalList.Children.Clear(); + ReagentList.Children.Clear(); //Sort inventory by reagentLabel - inventory.Sort((x, y) => x.Value.Key.CompareTo(y.Value.Key)); + inventory.Sort((x, y) => x.ReagentLabel.CompareTo(y.ReagentLabel)); - foreach (KeyValuePair> entry in inventory) + foreach (var item in inventory) { - var button = new DispenseReagentButton(entry.Key, entry.Value.Key, entry.Value.Value); - button.OnPressed += args => OnDispenseReagentButtonPressed?.Invoke(args, button); - button.OnMouseEntered += args => OnDispenseReagentButtonMouseEntered?.Invoke(args, button); - button.OnMouseExited += args => OnDispenseReagentButtonMouseExited?.Invoke(args, button); - ChemicalList.AddChild(button); - var ejectButton = new EjectJugButton(entry.Key); - ejectButton.OnPressed += args => OnEjectJugButtonPressed?.Invoke(args, ejectButton); - ejectButton.OnMouseEntered += args => OnEjectJugButtonMouseEntered?.Invoke(args, ejectButton); - ejectButton.OnMouseExited += args => OnEjectJugButtonMouseExited?.Invoke(args, ejectButton); - ChemicalList.AddChild(ejectButton); + var card = new ReagentCardControl(item); + card.OnPressed += OnDispenseReagentButtonPressed; + card.OnEjectButtonPressed += OnEjectJugButtonPressed; + ReagentList.Children.Add(card); } } @@ -93,36 +70,7 @@ public void UpdateState(BoundUserInterfaceState state) ClearButton.Disabled = castState.OutputContainer is null; EjectButton.Disabled = castState.OutputContainer is null; - switch (castState.SelectedDispenseAmount) - { - case ReagentDispenserDispenseAmount.U1: - DispenseButton1.Pressed = true; - break; - case ReagentDispenserDispenseAmount.U5: - DispenseButton5.Pressed = true; - break; - case ReagentDispenserDispenseAmount.U10: - DispenseButton10.Pressed = true; - break; - case ReagentDispenserDispenseAmount.U15: - DispenseButton15.Pressed = true; - break; - case ReagentDispenserDispenseAmount.U20: - DispenseButton20.Pressed = true; - break; - case ReagentDispenserDispenseAmount.U25: - DispenseButton25.Pressed = true; - break; - case ReagentDispenserDispenseAmount.U30: - DispenseButton30.Pressed = true; - break; - case ReagentDispenserDispenseAmount.U50: - DispenseButton50.Pressed = true; - break; - case ReagentDispenserDispenseAmount.U100: - DispenseButton100.Pressed = true; - break; - } + AmountGrid.Selected = ((int)castState.SelectedDispenseAmount).ToString(); } /// @@ -137,23 +85,15 @@ public void UpdateContainerInfo(ReagentDispenserBoundUserInterfaceState state) if (state.OutputContainer is null) { + ContainerInfoName.Text = ""; + ContainerInfoFill.Text = ""; ContainerInfo.Children.Add(new Label { Text = Loc.GetString("reagent-dispenser-window-no-container-loaded-text") }); return; } - ContainerInfo.Children.Add(new BoxContainer // Name of the container and its fill status (Ex: 44/100u) - { - Orientation = LayoutOrientation.Horizontal, - Children = - { - new Label {Text = $"{state.OutputContainer.DisplayName}: "}, - new Label - { - Text = $"{state.OutputContainer.CurrentVolume}/{state.OutputContainer.MaxVolume}", - StyleClasses = {StyleNano.StyleClassLabelSecondaryColor} - } - } - }); + // Set Name of the container and its fill status (Ex: 44/100u) + ContainerInfoName.Text = state.OutputContainer.DisplayName; + ContainerInfoFill.Text = state.OutputContainer.CurrentVolume + "/" + state.OutputContainer.MaxVolume; foreach (var (reagent, quantity) in state.OutputContainer.Reagents!) { diff --git a/Content.Client/Chemistry/UI/SolutionStatusControl.cs b/Content.Client/Chemistry/UI/SolutionStatusControl.cs new file mode 100644 index 0000000000..1a33ffb0e1 --- /dev/null +++ b/Content.Client/Chemistry/UI/SolutionStatusControl.cs @@ -0,0 +1,59 @@ +using Content.Client.Chemistry.Components; +using Content.Client.Chemistry.EntitySystems; +using Content.Client.Items.UI; +using Content.Client.Message; +using Content.Client.Stylesheets; +using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.FixedPoint; +using Robust.Client.UserInterface.Controls; + +namespace Content.Client.Chemistry.UI; + +/// +/// Displays basic solution information for . +/// +/// +public sealed class SolutionStatusControl : PollingItemStatusControl +{ + private readonly Entity _parent; + private readonly IEntityManager _entityManager; + private readonly SharedSolutionContainerSystem _solutionContainers; + private readonly RichTextLabel _label; + + public SolutionStatusControl( + Entity parent, + IEntityManager entityManager, + SharedSolutionContainerSystem solutionContainers) + { + _parent = parent; + _entityManager = entityManager; + _solutionContainers = solutionContainers; + _label = new RichTextLabel { StyleClasses = { StyleNano.StyleClassItemStatus } }; + AddChild(_label); + } + + protected override Data PollData() + { + if (!_solutionContainers.TryGetSolution(_parent.Owner, _parent.Comp.Solution, out _, out var solution)) + return default; + + FixedPoint2? transferAmount = null; + if (_entityManager.TryGetComponent(_parent.Owner, out SolutionTransferComponent? transfer)) + transferAmount = transfer.TransferAmount; + + return new Data(solution.Volume, solution.MaxVolume, transferAmount); + } + + protected override void Update(in Data data) + { + var markup = Loc.GetString("solution-status-volume", + ("currentVolume", data.Volume), + ("maxVolume", data.MaxVolume)); + if (data.TransferVolume is { } transferVolume) + markup += "\n" + Loc.GetString("solution-status-transfer", ("volume", transferVolume)); + _label.SetMarkup(markup); + } + + public readonly record struct Data(FixedPoint2 Volume, FixedPoint2 MaxVolume, FixedPoint2? TransferVolume); +} diff --git a/Content.Client/Clothing/ClientClothingSystem.cs b/Content.Client/Clothing/ClientClothingSystem.cs index 7e78ac7d70..dd69521f48 100644 --- a/Content.Client/Clothing/ClientClothingSystem.cs +++ b/Content.Client/Clothing/ClientClothingSystem.cs @@ -11,6 +11,7 @@ using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.ResourceManagement; +using Robust.Shared.Serialization.Manager; using Robust.Shared.Serialization.TypeSerializers.Implementations; using Robust.Shared.Utility; using static Robust.Client.GameObjects.SpriteComponent; @@ -46,6 +47,7 @@ public sealed class ClientClothingSystem : ClothingSystem }; [Dependency] private readonly IResourceCache _cache = default!; + [Dependency] private readonly ISerializationManager _serialization = default!; [Dependency] private readonly InventorySystem _inventorySystem = default!; public override void Initialize() @@ -265,6 +267,7 @@ 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); // add the new layers foreach (var (key, layerData) in ev.Layers) @@ -308,6 +311,28 @@ private void RenderEquipment(EntityUid equipee, EntityUid equipment, string slot sprite.LayerSetData(index, layerData); layer.Offset += slotDef.Offset; + + if (displacementData != 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}."); + 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); + } } RaiseLocalEvent(equipment, new EquipmentVisualsUpdatedEvent(equipee, slot, revealedLayers), true); diff --git a/Content.Client/Cocoon/CocoonSystem.cs b/Content.Client/Cocoon/CocoonSystem.cs new file mode 100644 index 0000000000..d3eb4a8205 --- /dev/null +++ b/Content.Client/Cocoon/CocoonSystem.cs @@ -0,0 +1,33 @@ +using Content.Shared.Cocoon; +using Content.Shared.Humanoid; +using Robust.Client.GameObjects; +using Robust.Shared.Containers; +using System.Numerics; + +namespace Content.Client.Cocoon +{ + public sealed class CocoonSystem : EntitySystem + { + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnCocEntInserted); + } + + private void OnCocEntInserted(EntityUid uid, CocoonComponent component, EntInsertedIntoContainerMessage args) + { + if (!TryComp(uid, out var cocoonSprite)) + return; + + if (TryComp(args.Entity, out var humanoidAppearance)) // If humanoid, use height and width + cocoonSprite.Scale = new Vector2(humanoidAppearance.Width, humanoidAppearance.Height); + else if (!TryComp(args.Entity, out var entSprite)) + return; + else if (entSprite.BaseRSI != null) // Set scale based on sprite scale + sprite dimensions. Ideally we would somehow get a bounding box from the sprite size not including transparent pixels, but FUCK figuring that out. + cocoonSprite.Scale = entSprite.Scale * (entSprite.BaseRSI.Size / 32); + else if (entSprite.Scale != cocoonSprite.Scale) // if basersi somehow not found (?) just use scale + cocoonSprite.Scale = entSprite.Scale; + } + } +} diff --git a/Content.Client/Communications/UI/CommunicationsConsoleMenu.xaml.cs b/Content.Client/Communications/UI/CommunicationsConsoleMenu.xaml.cs index 90643e45cf..4d8dd86a4d 100644 --- a/Content.Client/Communications/UI/CommunicationsConsoleMenu.xaml.cs +++ b/Content.Client/Communications/UI/CommunicationsConsoleMenu.xaml.cs @@ -1,7 +1,9 @@ using Content.Client.UserInterface.Controls; using System.Threading; +using Content.Shared.CCVar; using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.XAML; +using Robust.Shared.Configuration; using Robust.Shared.Utility; using Timer = Robust.Shared.Timing.Timer; @@ -13,6 +15,8 @@ public sealed partial class CommunicationsConsoleMenu : FancyWindow private CommunicationsConsoleBoundUserInterface Owner { get; set; } private readonly CancellationTokenSource _timerCancelTokenSource = new(); + [Dependency] private readonly IConfigurationManager _cfg = default!; + public CommunicationsConsoleMenu(CommunicationsConsoleBoundUserInterface owner) { IoCManager.InjectDependencies(this); @@ -23,6 +27,22 @@ public CommunicationsConsoleMenu(CommunicationsConsoleBoundUserInterface owner) var loc = IoCManager.Resolve(); MessageInput.Placeholder = new Rope.Leaf(loc.GetString("comms-console-menu-announcement-placeholder")); + var maxAnnounceLength = _cfg.GetCVar(CCVars.ChatMaxAnnouncementLength); + MessageInput.OnTextChanged += (args) => + { + if (args.Control.TextLength > maxAnnounceLength) + { + AnnounceButton.Disabled = true; + AnnounceButton.ToolTip = Loc.GetString("comms-console-message-too-long"); + } + else + { + AnnounceButton.Disabled = !owner.CanAnnounce; + AnnounceButton.ToolTip = null; + + } + }; + AnnounceButton.OnPressed += (_) => Owner.AnnounceButtonPressed(Rope.Collapse(MessageInput.TextRope)); AnnounceButton.Disabled = !owner.CanAnnounce; diff --git a/Content.Client/Content.Client.csproj b/Content.Client/Content.Client.csproj index c1958acba7..956f2fd035 100644 --- a/Content.Client/Content.Client.csproj +++ b/Content.Client/Content.Client.csproj @@ -26,11 +26,6 @@ - - - LobbyCharacterPanel.xaml - - diff --git a/Content.Client/CriminalRecords/Systems/CriminalRecordsHackerSystem.cs b/Content.Client/CriminalRecords/Systems/CriminalRecordsHackerSystem.cs new file mode 100644 index 0000000000..21fccc880d --- /dev/null +++ b/Content.Client/CriminalRecords/Systems/CriminalRecordsHackerSystem.cs @@ -0,0 +1,7 @@ +using Content.Shared.CriminalRecords.Systems; + +namespace Content.Client.CriminalRecords.Systems; + +public sealed class CriminalRecordsHackerSystem : SharedCriminalRecordsHackerSystem +{ +} diff --git a/Content.Client/DeltaV/Options/UI/Tabs/DeltaTab.xaml b/Content.Client/DeltaV/Options/UI/Tabs/DeltaTab.xaml deleted file mode 100644 index f1dae68077..0000000000 --- a/Content.Client/DeltaV/Options/UI/Tabs/DeltaTab.xaml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - diff --git a/Content.Client/Lathe/UI/RecipeControl.xaml.cs b/Content.Client/Lathe/UI/RecipeControl.xaml.cs index bf85ff7d93..47b6b5932c 100644 --- a/Content.Client/Lathe/UI/RecipeControl.xaml.cs +++ b/Content.Client/Lathe/UI/RecipeControl.xaml.cs @@ -2,8 +2,8 @@ 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.Graphics; namespace Content.Client.Lathe.UI; @@ -13,12 +13,12 @@ public sealed partial class RecipeControl : Control public Action? OnButtonPressed; public Func TooltipTextSupplier; - public RecipeControl(LatheRecipePrototype recipe, Func tooltipTextSupplier, bool canProduce, Texture? texture = null) + public RecipeControl(LatheRecipePrototype recipe, Func tooltipTextSupplier, bool canProduce, List textures) { RobustXamlLoader.Load(this); RecipeName.Text = recipe.Name; - RecipeTexture.Texture = texture; + RecipeTextures.Textures = textures; Button.Disabled = !canProduce; TooltipTextSupplier = tooltipTextSupplier; Button.TooltipSupplier = SupplyTooltip; diff --git a/Content.Client/Light/EntitySystems/ExpendableLightSystem.cs b/Content.Client/Light/EntitySystems/ExpendableLightSystem.cs index a2a7fb2531..8077406730 100644 --- a/Content.Client/Light/EntitySystems/ExpendableLightSystem.cs +++ b/Content.Client/Light/EntitySystems/ExpendableLightSystem.cs @@ -52,7 +52,7 @@ protected override void OnAppearanceChange(EntityUid uid, ExpendableLightCompone case ExpendableLightState.Lit: _audioSystem.Stop(comp.PlayingStream); comp.PlayingStream = _audioSystem.PlayPvs( - comp.LoopedSound, uid, SharedExpendableLightComponent.LoopedSoundParams)?.Entity; + comp.LoopedSound, uid)?.Entity; if (args.Sprite.LayerMapTryGet(ExpendableLightVisualLayers.Overlay, out var layerIdx, true)) { diff --git a/Content.Client/Preferences/ClientPreferencesManager.cs b/Content.Client/Lobby/ClientPreferencesManager.cs similarity index 99% rename from Content.Client/Preferences/ClientPreferencesManager.cs rename to Content.Client/Lobby/ClientPreferencesManager.cs index aca7159504..2926968657 100644 --- a/Content.Client/Preferences/ClientPreferencesManager.cs +++ b/Content.Client/Lobby/ClientPreferencesManager.cs @@ -10,7 +10,7 @@ using Robust.Shared.Prototypes; using Robust.Shared.Utility; -namespace Content.Client.Preferences +namespace Content.Client.Lobby { /// /// Receives and from the server during the initial diff --git a/Content.Client/Preferences/IClientPreferencesManager.cs b/Content.Client/Lobby/IClientPreferencesManager.cs similarity index 94% rename from Content.Client/Preferences/IClientPreferencesManager.cs rename to Content.Client/Lobby/IClientPreferencesManager.cs index e55d6b600c..1b72593ad0 100644 --- a/Content.Client/Preferences/IClientPreferencesManager.cs +++ b/Content.Client/Lobby/IClientPreferencesManager.cs @@ -1,7 +1,7 @@ using System; using Content.Shared.Preferences; -namespace Content.Client.Preferences +namespace Content.Client.Lobby { public interface IClientPreferencesManager { diff --git a/Content.Client/Lobby/LobbyState.cs b/Content.Client/Lobby/LobbyState.cs index 76845cc569..e206098adc 100644 --- a/Content.Client/Lobby/LobbyState.cs +++ b/Content.Client/Lobby/LobbyState.cs @@ -1,14 +1,11 @@ using System.Linq; using System.Numerics; -using Content.Client._White.UI.Buttons; using Content.Client.Audio; using Content.Client.Changelog; using Content.Client.GameTicking.Managers; using Content.Client.LateJoin; using Content.Client.Lobby.UI; using Content.Client.Message; -using Content.Client.Preferences; -using Content.Client.Preferences.UI; using Content.Client.Resources; using Content.Client.UserInterface.Systems.Chat; using Content.Client.Voting; @@ -17,8 +14,6 @@ using Robust.Client.ResourceManagement; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; -using Robust.Shared.Configuration; -using Robust.Shared.Prototypes; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -30,60 +25,41 @@ public sealed class LobbyState : Robust.Client.State.State [Dependency] private readonly IClientConsoleHost _consoleHost = default!; [Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly IResourceCache _resourceCache = default!; - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IUserInterfaceManager _userInterfaceManager = default!; - [Dependency] private readonly IClientPreferencesManager _preferencesManager = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly IVoteManager _voteManager = default!; - [Dependency] private readonly IConfigurationManager _configurationManager = default!; [Dependency] private readonly ChangelogManager _changelog = default!; // WD EDIT - [ViewVariables] private CharacterSetupGui? _characterSetup; - private ClientGameTicker _gameTicker = default!; private ContentAudioSystem _contentAudioSystem = default!; protected override Type? LinkedScreenType { get; } = typeof(LobbyGui); - private LobbyGui? _lobby; + public LobbyGui? Lobby; protected override void Startup() { if (_userInterfaceManager.ActiveScreen == null) return; - _lobby = (LobbyGui) _userInterfaceManager.ActiveScreen; + Lobby = (LobbyGui) _userInterfaceManager.ActiveScreen; var chatController = _userInterfaceManager.GetUIController(); _gameTicker = _entityManager.System(); _contentAudioSystem = _entityManager.System(); _contentAudioSystem.LobbySoundtrackChanged += UpdateLobbySoundtrackInfo; - _characterSetup = new CharacterSetupGui(_entityManager, _resourceCache, _preferencesManager, - _prototypeManager, _configurationManager); - LayoutContainer.SetAnchorPreset(_characterSetup, LayoutContainer.LayoutPreset.Wide); - _lobby.CharacterSetupState.AddChild(_characterSetup); chatController.SetMainChat(true); - _voteManager.SetPopupContainer(_lobby.VoteContainer); - - _characterSetup.CloseButton.OnPressed += _ => - { - _lobby.SwitchState(LobbyGui.LobbyGuiState.Default); - }; - - _characterSetup.SaveButton.OnPressed += _ => - { - _characterSetup.Save(); - _userInterfaceManager.GetUIController().UpdateCharacterUI(); - }; + _voteManager.SetPopupContainer(Lobby.VoteContainer); + LayoutContainer.SetAnchorPreset(Lobby, LayoutContainer.LayoutPreset.Wide); + Lobby.ServerName.Text = _baseClient.GameInfo?.ServerName; // The eye of refactor gazes upon you... - LayoutContainer.SetAnchorPreset(_lobby, LayoutContainer.LayoutPreset.Wide); - _lobby.ServerName.Text = _baseClient.GameInfo?.ServerName; //The eye of refactor gazes upon you... UpdateLobbyUi(); - _lobby.CharacterSetupButton.OnPressed += OnSetupPressed; // WD EDIT - _lobby.ReadyButton.OnPressed += OnReadyPressed; - _lobby.ReadyButton.OnToggled += OnReadyToggled; + // Lobby.CharacterPreview.CharacterSetupButton.OnPressed += OnSetupPressed; + Lobby.ReadyButton.OnPressed += OnReadyPressed; + Lobby.ReadyButton.OnToggled += OnReadyToggled; + Lobby.CharacterSetupButton.OnPressed += OnSetupPressed; _gameTicker.InfoBlobUpdated += UpdateLobbyUi; _gameTicker.LobbyStatusUpdated += LobbyStatusUpdated; @@ -94,6 +70,7 @@ protected override void Startup() protected override void Shutdown() { + var chatController = _userInterfaceManager.GetUIController(); chatController.SetMainChat(false); _gameTicker.InfoBlobUpdated -= UpdateLobbyUi; @@ -103,20 +80,27 @@ protected override void Shutdown() _voteManager.ClearPopupContainer(); - _lobby!.CharacterSetupButton.OnPressed -= OnSetupPressed; // WD EDIT - _lobby!.ReadyButton.OnPressed -= OnReadyPressed; - _lobby!.ReadyButton.OnToggled -= OnReadyToggled; + if (Lobby is null) + return; + + Lobby.CharacterSetupButton.OnPressed -= OnSetupPressed; + // Lobby!.CharacterPreview.CharacterSetupButton.OnPressed -= OnSetupPressed; + Lobby.ReadyButton.OnPressed -= OnReadyPressed; + Lobby.ReadyButton.OnToggled -= OnReadyToggled; - _lobby = null; + Lobby = null; + } - _characterSetup?.Dispose(); - _characterSetup = null; + public void SwitchState(LobbyGui.LobbyGuiState state) + { + // Yeah I hate this but LobbyState contains all the badness for now + Lobby?.SwitchState(state); } private void OnSetupPressed(BaseButton.ButtonEventArgs args) { SetReady(false); - _lobby!.SwitchState(LobbyGui.LobbyGuiState.CharacterSetup); + Lobby?.SwitchState(LobbyGui.LobbyGuiState.CharacterSetup); } private void OnReadyPressed(BaseButton.ButtonEventArgs args) @@ -136,20 +120,22 @@ public override void FrameUpdate(FrameEventArgs e) { if (_gameTicker.IsGameStarted) { - _lobby!.StartTime.Text = string.Empty; + Lobby!.StartTime.Text = string.Empty; var roundTime = _gameTiming.CurTime.Subtract(_gameTicker.RoundStartTimeSpan); - _lobby!.StationTime.Text = Loc.GetString("lobby-state-player-status-round-time", ("hours", roundTime.Hours), ("minutes", roundTime.Minutes)); + Lobby!.StationTime.Text = Loc.GetString("lobby-state-player-status-round-time", + ("hours", roundTime.Hours), + ("minutes", roundTime.Minutes)); return; } - _lobby!.StationTime.Text = Loc.GetString("lobby-state-player-status-round-not-started"); + Lobby!.StationTime.Text = Loc.GetString("lobby-state-player-status-round-not-started"); string text; if (_gameTicker.Paused) text = Loc.GetString("lobby-state-paused"); else if (_gameTicker.StartTime < _gameTiming.CurTime) { - _lobby!.StartTime.Text = Loc.GetString("lobby-state-soon"); + Lobby!.StartTime.Text = Loc.GetString("lobby-state-soon"); return; } else @@ -164,7 +150,7 @@ public override void FrameUpdate(FrameEventArgs e) text = $"{difference.Minutes}:{difference.Seconds:D2}"; } - _lobby!.StartTime.Text = Loc.GetString("lobby-state-round-start-countdown-text", ("timeLeft", text)); + Lobby!.StartTime.Text = Loc.GetString("lobby-state-round-start-countdown-text", ("timeLeft", text)); } private void LobbyStatusUpdated() @@ -175,47 +161,43 @@ private void LobbyStatusUpdated() private void LobbyLateJoinStatusUpdated() { - _lobby!.ReadyButton.Disabled = _gameTicker.DisallowedLateJoin; + Lobby!.ReadyButton.Disabled = _gameTicker.DisallowedLateJoin; } private void UpdateLobbyUi() { if (_gameTicker.IsGameStarted) { - MakeButtonJoinGame(_lobby!.ReadyButton); // WD EDIT - _lobby!.ReadyButton.ToggleMode = false; - _lobby!.ReadyButton.Pressed = false; - _lobby!.ObserveButton.Disabled = false; + Lobby!.ReadyButton.ButtonText = Loc.GetString("lobby-state-ready-button-join-state"); + Lobby!.ReadyButton.ToggleMode = false; + Lobby!.ReadyButton.Pressed = false; + Lobby!.ObserveButton.Disabled = false; } else { - // WD EDIT START - if (_lobby!.ReadyButton.Pressed) - MakeButtonReady(_lobby!.ReadyButton); - else - MakeButtonUnReady(_lobby!.ReadyButton); - // WD EDIT END - - _lobby!.StartTime.Text = string.Empty; - _lobby!.ReadyButton.ToggleMode = true; - _lobby!.ReadyButton.Disabled = false; - _lobby!.ReadyButton.Pressed = _gameTicker.AreWeReady; - _lobby!.ObserveButton.Disabled = true; + Lobby!.ReadyButton.ButtonText = Loc.GetString(Lobby!.ReadyButton.Pressed + ? "lobby-state-player-status-ready" + : "lobby-state-player-status-not-ready"); + Lobby!.StartTime.Text = string.Empty; + Lobby!.ReadyButton.ToggleMode = true; + Lobby!.ReadyButton.Disabled = false; + Lobby!.ReadyButton.Pressed = _gameTicker.AreWeReady; + Lobby!.ObserveButton.Disabled = true; } if (_gameTicker.ServerInfoBlob != null) - _lobby!.ServerInfo.SetInfoBlob(_gameTicker.ServerInfoBlob); + Lobby!.ServerInfo.SetInfoBlob(_gameTicker.ServerInfoBlob); - _lobby!.LabelName.SetMarkup("[font=\"Bedstead\" size=20] White Dream [/font]"); // WD EDIT - _lobby!.ChangelogLabel.SetMarkup(Loc.GetString("ui-lobby-changelog")); // WD EDIT + Lobby!.LabelName.SetMarkup("[font=\"Bedstead\" size=20] White Dream [/font]"); // WD EDIT + Lobby!.ChangelogLabel.SetMarkup(Loc.GetString("ui-lobby-changelog")); // WD EDIT } private void UpdateLobbySoundtrackInfo(LobbySoundtrackChangedEvent ev) { if (ev.SoundtrackFilename == null) - _lobby!.LobbySong.SetMarkup(Loc.GetString("lobby-state-song-no-song-text")); + Lobby!.LobbySong.SetMarkup(Loc.GetString("lobby-state-song-no-song-text")); else if (ev.SoundtrackFilename != null - && _resourceCache.TryGetResource(ev.SoundtrackFilename, out var lobbySongResource)) + && _resourceCache.TryGetResource(ev.SoundtrackFilename, out var lobbySongResource)) { var lobbyStream = lobbySongResource.AudioStream; @@ -231,14 +213,16 @@ private void UpdateLobbySoundtrackInfo(LobbySoundtrackChangedEvent ev) ("songTitle", title), ("songArtist", artist)); - _lobby!.LobbySong.SetMarkup(markup); + Lobby!.LobbySong.SetMarkup(markup); } } private void UpdateLobbyBackground() { if (_gameTicker.LobbyBackground != null) - _lobby!.Background.SetRSI(_resourceCache.GetResource(_gameTicker.LobbyBackground).RSI); // WD EDIT + Lobby!.Background.SetRSI(_resourceCache.GetResource(_gameTicker.LobbyBackground).RSI); + else + Lobby!.Background.Texture = null; } private void SetReady(bool newReady) @@ -249,35 +233,19 @@ private void SetReady(bool newReady) _consoleHost.ExecuteCommand($"toggleready {newReady}"); } - // WD EDIT START - private void MakeButtonReady(WhiteLobbyTextButton button) - { - button.ButtonText = Loc.GetString("lobby-state-ready-button-ready-up-state"); - } - - private void MakeButtonUnReady(WhiteLobbyTextButton button) - { - button.ButtonText = Loc.GetString("lobby-state-player-status-not-ready"); - } - - private void MakeButtonJoinGame(WhiteLobbyTextButton button) - { - button.ButtonText = Loc.GetString("lobby-state-ready-button-join-state"); - } - private async void PopulateChangelog() { - if (_lobby?.ChangelogContainer?.Children is null) + if (Lobby?.ChangelogContainer?.Children is null) return; - _lobby.ChangelogContainer.Children.Clear(); + Lobby.ChangelogContainer.Children.Clear(); var changelogs = await _changelog.LoadChangelog(); var whiteChangelog = changelogs.Find(cl => cl.Name == "Changelog"); if (whiteChangelog is null) { - _lobby.ChangelogContainer.Children.Add( + Lobby.ChangelogContainer.Children.Add( new RichTextLabel().SetMarkup(Loc.GetString("ui-lobby-changelog-not-found"))); return; @@ -323,10 +291,10 @@ private async void PopulateChangelog() box.AddChild(container); } - if (_lobby?.ChangelogContainer is null) + if (Lobby?.ChangelogContainer is null) return; - _lobby.ChangelogContainer.AddChild(box); + Lobby.ChangelogContainer.AddChild(box); } } diff --git a/Content.Client/Lobby/LobbyUIController.cs b/Content.Client/Lobby/LobbyUIController.cs index 47ab651c10..ccefbb0aa4 100644 --- a/Content.Client/Lobby/LobbyUIController.cs +++ b/Content.Client/Lobby/LobbyUIController.cs @@ -3,156 +3,250 @@ using Content.Client.Inventory; using Content.Client.Lobby.UI; using Content.Client.Players.PlayTimeTracking; -using Content.Client.Preferences; -using Content.Client.Preferences.UI; +using Content.Shared.CCVar; +using Content.Shared.Clothing.Loadouts.Prototypes; using Content.Shared.Clothing.Loadouts.Systems; using Content.Shared.GameTicking; -using Content.Shared.Humanoid; +using Content.Shared.Humanoid.Markings; using Content.Shared.Humanoid.Prototypes; using Content.Shared.Preferences; using Content.Shared.Roles; +using Content.Shared.Traits; +using Robust.Client.Player; +using Robust.Client.ResourceManagement; using Robust.Client.State; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controllers; +using Robust.Shared.Configuration; using Robust.Shared.Map; using Robust.Shared.Prototypes; +using Robust.Shared.Utility; +using static Content.Shared.Humanoid.SharedHumanoidAppearanceSystem; +using CharacterSetupGui = Content.Client.Lobby.UI.CharacterSetupGui; +using HumanoidProfileEditor = Content.Client.Lobby.UI.HumanoidProfileEditor; namespace Content.Client.Lobby; public sealed class LobbyUIController : UIController, IOnStateEntered, IOnStateExited { [Dependency] private readonly IClientPreferencesManager _preferencesManager = default!; - [Dependency] private readonly IStateManager _stateManager = default!; + [Dependency] private readonly IConfigurationManager _configurationManager = default!; + [Dependency] private readonly IFileDialogManager _dialogManager = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IResourceCache _resourceCache = default!; + [Dependency] private readonly IStateManager _stateManager = default!; + [Dependency] private readonly JobRequirementsManager _requirements = default!; + [Dependency] private readonly MarkingManager _markings = default!; [Dependency] private readonly JobRequirementsManager _jobRequirements = default!; [UISystemDependency] private readonly HumanoidAppearanceSystem _humanoid = default!; [UISystemDependency] private readonly ClientInventorySystem _inventory = default!; [UISystemDependency] private readonly LoadoutSystem _loadouts = default!; - private LobbyCharacterPanel? _previewPanel; + private CharacterSetupGui? _characterSetup; private HumanoidProfileEditor? _profileEditor; - /* - * Each character profile has its own dummy. There is also a dummy for the lobby screen + character editor - * that is shared too. - */ + /// This is the character preview panel in the chat. This should only update if their character updates + private LobbyCharacterPreviewPanel? PreviewPanel => GetLobbyPreview(); - /// - /// Preview dummy for role gear. - /// - private EntityUid? _previewDummy; + /// This is the modified profile currently being edited + private HumanoidCharacterProfile? EditedProfile => _profileEditor?.Profile; + private int? EditedSlot => _profileEditor?.CharacterSlot; - [Access(typeof(HumanoidProfileEditor))] - public bool UpdateClothes = true; - [Access(typeof(HumanoidProfileEditor))] - public bool ShowClothes = true; - [Access(typeof(HumanoidProfileEditor))] - public bool ShowLoadouts = true; - - // TODO: Load the species directly and don't update entity ever. - public event Action? PreviewDummyUpdated; public override void Initialize() { base.Initialize(); + _prototypeManager.PrototypesReloaded += OnPrototypesReloaded; _preferencesManager.OnServerDataLoaded += PreferencesDataLoaded; - } + _requirements.Updated += OnRequirementsUpdated; - private void PreferencesDataLoaded() - { - if (_previewDummy != null) - EntityManager.DeleteEntity(_previewDummy); + _configurationManager.OnValueChanged(CCVars.FlavorText, _ => _profileEditor?.RefreshFlavorText()); + _configurationManager.OnValueChanged(CCVars.GameRoleTimers, + _ => + { + _profileEditor?.RefreshAntags(); + _profileEditor?.RefreshJobs(); + }); - UpdateCharacterUI(); + _preferencesManager.OnServerDataLoaded += PreferencesDataLoaded; } public void OnStateEntered(LobbyState state) { + PreviewPanel?.SetLoaded(_preferencesManager.ServerDataLoaded); + ReloadCharacterSetup(); } public void OnStateExited(LobbyState state) { - EntityManager.DeleteEntity(_previewDummy); - _previewDummy = null; + PreviewPanel?.SetLoaded(false); + _characterSetup?.Dispose(); + _profileEditor?.Dispose(); + _characterSetup = null; + _profileEditor = null; } - public void SetPreviewPanel(LobbyCharacterPanel? panel) + + private void PreferencesDataLoaded() { - _previewPanel = panel; - UpdateCharacterUI(); + PreviewPanel?.SetLoaded(true); + + if (_stateManager.CurrentState is not LobbyState) + return; + + ReloadCharacterSetup(); } - public void SetProfileEditor(HumanoidProfileEditor? editor) + private LobbyCharacterPreviewPanel? GetLobbyPreview() { - _profileEditor = editor; - UpdateCharacterUI(); + return _stateManager.CurrentState is LobbyState lobby ? lobby.Lobby?.CharacterPreview : null; } - public void UpdateCharacterUI() + private void OnRequirementsUpdated() { - // Test moment - if (_stateManager.CurrentState is not LobbyState) + if (_profileEditor == null) return; - if (!_preferencesManager.ServerDataLoaded) - { - _previewPanel?.SetLoaded(false); + _profileEditor.RefreshAntags(); + _profileEditor.RefreshJobs(); + } + + private void OnPrototypesReloaded(PrototypesReloadedEventArgs obj) + { + if (_profileEditor == null) return; - } - var maybeProfile = _profileEditor?.Profile ?? (HumanoidCharacterProfile) _preferencesManager.Preferences!.SelectedCharacter; + if (obj.WasModified()) + _profileEditor.RefreshSpecies(); + + if (obj.WasModified()) + _profileEditor.RefreshAntags(); + + if (obj.WasModified() + || obj.WasModified()) + _profileEditor.RefreshJobs(); + + if (obj.WasModified()) + _profileEditor.UpdateTraits(null, true); + + if (obj.WasModified()) + _profileEditor.UpdateLoadouts(null, true); + } + + + /// Reloads every single character setup control + public void ReloadCharacterSetup() + { + RefreshLobbyPreview(); + var (characterGui, profileEditor) = EnsureGui(); + characterGui.ReloadCharacterPickers(); + profileEditor.SetProfile( + (HumanoidCharacterProfile?) _preferencesManager.Preferences?.SelectedCharacter, + _preferencesManager.Preferences?.SelectedCharacterIndex); + } + + /// Refreshes the character preview in the lobby chat + private void RefreshLobbyPreview() + { + if (PreviewPanel == null) + return; - if (_previewDummy == null - || maybeProfile.Species != EntityManager.GetComponent(_previewDummy.Value).Species) + // Get selected character, load it, then set it + var character = _preferencesManager.Preferences?.SelectedCharacter; + + if (character is not HumanoidCharacterProfile humanoid) { - RespawnDummy(maybeProfile); - _previewPanel?.SetSprite(_previewDummy!.Value); + PreviewPanel.SetSprite(EntityUid.Invalid); + PreviewPanel.SetSummaryText(string.Empty); + return; } - _previewPanel?.SetLoaded(true); + var dummy = LoadProfileEntity(humanoid, true); + PreviewPanel.SetSprite(dummy); + PreviewPanel.SetSummaryText(humanoid.Summary); + } + + private void SaveProfile() + { + DebugTools.Assert(EditedProfile != null); - if (_previewDummy == null) + if (EditedProfile == null || EditedSlot == null) return; - _previewPanel?.SetSummaryText(maybeProfile.Summary); - _humanoid.LoadProfile(_previewDummy.Value, maybeProfile); + var selected = _preferencesManager.Preferences?.SelectedCharacterIndex; + if (selected == null) + return; + _preferencesManager.UpdateCharacter(EditedProfile, EditedSlot.Value); + ReloadCharacterSetup(); + } - if (UpdateClothes) + private (CharacterSetupGui, HumanoidProfileEditor) EnsureGui() + { + if (_characterSetup != null && _profileEditor != null) { - RemoveDummyClothes(_previewDummy.Value); - if (ShowClothes) - GiveDummyJobClothes(_previewDummy.Value, GetPreferredJob(maybeProfile), maybeProfile); - if (ShowLoadouts) - _loadouts.ApplyCharacterLoadout(_previewDummy.Value, GetPreferredJob(maybeProfile), maybeProfile, - _jobRequirements.GetRawPlayTimeTrackers(), _jobRequirements.IsWhitelisted()); - UpdateClothes = false; + _characterSetup.Visible = true; + _profileEditor.Visible = true; + return (_characterSetup, _profileEditor); } - PreviewDummyUpdated?.Invoke(_previewDummy.Value); - } + _profileEditor = new HumanoidProfileEditor( + _preferencesManager, + _configurationManager, + EntityManager, + _dialogManager, + _playerManager, + _prototypeManager, + _requirements, + _markings); + _characterSetup = new CharacterSetupGui(EntityManager, _prototypeManager, _resourceCache, _preferencesManager, _profileEditor); - public void RespawnDummy(HumanoidCharacterProfile profile) - { - if (_previewDummy != null) - RemoveDummyClothes(_previewDummy.Value); + _characterSetup.CloseButton.OnPressed += _ => + { + // Reset sliders etc. + _profileEditor.SetProfile(null, null); + _profileEditor.Visible = false; + if (_stateManager.CurrentState is LobbyState lobbyGui) + { + lobbyGui.SwitchState(LobbyGui.LobbyGuiState.Default); + } + }; + + _profileEditor.Save += SaveProfile; + + _characterSetup.SelectCharacter += args => + { + _preferencesManager.SelectCharacter(args); + ReloadCharacterSetup(); + }; + + _characterSetup.DeleteCharacter += args => + { + _preferencesManager.DeleteCharacter(args); - EntityManager.DeleteEntity(_previewDummy); - _previewDummy = EntityManager.SpawnEntity( - _prototypeManager.Index(profile.Species).DollPrototype, MapCoordinates.Nullspace); + if (EditedSlot == args) + // Reload everything + ReloadCharacterSetup(); + else + // Only need to reload character pickers + _characterSetup?.ReloadCharacterPickers(); + }; - UpdateClothes = true; + if (_stateManager.CurrentState is LobbyState lobby) + lobby.Lobby?.CharacterSetupState.AddChild(_characterSetup); + + return (_characterSetup, _profileEditor); } - /// - /// Gets the highest priority job for the profile. - /// + #region Helpers + + /// Gets the highest priority job for the profile. public JobPrototype GetPreferredJob(HumanoidCharacterProfile profile) { var highPriorityJob = profile.JobPriorities.FirstOrDefault(p => p.Value == JobPriority.High).Key; - // ReSharper disable once NullCoalescingConditionIsAlwaysNotNullAccordingToAPIContract (what is ReSharper smoking?) return _prototypeManager.Index(highPriorityJob ?? SharedGameTicker.FallbackOverflowJob); } @@ -166,9 +260,7 @@ public void RemoveDummyClothes(EntityUid dummy) EntityManager.DeleteEntity(unequippedItem.Value); } - /// - /// Applies the highest priority job's clothes and loadouts to the dummy. - /// + /// Applies the highest priority job's clothes and loadouts to the dummy. public void GiveDummyJobClothesLoadout(EntityUid dummy, HumanoidCharacterProfile profile) { var job = GetPreferredJob(profile); @@ -176,9 +268,7 @@ public void GiveDummyJobClothesLoadout(EntityUid dummy, HumanoidCharacterProfile _loadouts.ApplyCharacterLoadout(dummy, job, profile, _jobRequirements.GetRawPlayTimeTrackers(), _jobRequirements.IsWhitelisted()); } - /// - /// Applies the specified job's clothes to the dummy. - /// + /// Applies the specified job's clothes to the dummy. public void GiveDummyJobClothes(EntityUid dummy, JobPrototype job, HumanoidCharacterProfile profile) { if (!_inventory.TryGetSlots(dummy, out var slots) @@ -202,8 +292,28 @@ public void GiveDummyJobClothes(EntityUid dummy, JobPrototype job, HumanoidChara } } - public EntityUid? GetPreviewDummy() + /// Loads the profile onto a dummy entity + public EntityUid LoadProfileEntity(HumanoidCharacterProfile? humanoid, bool jobClothes) { - return _previewDummy; + EntityUid dummyEnt; + + if (humanoid is not null) + { + var dummy = _prototypeManager.Index(humanoid.Species).DollPrototype; + dummyEnt = EntityManager.SpawnEntity(dummy, MapCoordinates.Nullspace); + } + else + dummyEnt = EntityManager.SpawnEntity( + _prototypeManager.Index(DefaultSpecies).DollPrototype, + MapCoordinates.Nullspace); + + _humanoid.LoadProfile(dummyEnt, humanoid); + + if (humanoid != null && jobClothes) + GiveDummyJobClothesLoadout(dummyEnt, humanoid); + + return dummyEnt; } + + #endregion } diff --git a/Content.Client/Lobby/UI/CharacterPickerButton.xaml b/Content.Client/Lobby/UI/CharacterPickerButton.xaml new file mode 100644 index 0000000000..fa428b9b61 --- /dev/null +++ b/Content.Client/Lobby/UI/CharacterPickerButton.xaml @@ -0,0 +1,11 @@ + + + + + [GenerateTypedNameReferences] + public sealed partial class CharacterSetupGui : Control + { + private readonly IClientPreferencesManager _preferencesManager; + private readonly IEntityManager _entManager; + private readonly IPrototypeManager _protomanager; + + private readonly Button _createNewCharacterButton; + + public event Action? SelectCharacter; + public event Action? DeleteCharacter; + + public CharacterSetupGui( + IEntityManager entManager, + IPrototypeManager protoManager, + IResourceCache resourceCache, + IClientPreferencesManager preferencesManager, + HumanoidProfileEditor profileEditor) + { + RobustXamlLoader.Load(this); + _preferencesManager = preferencesManager; + _entManager = entManager; + _protomanager = protoManager; + + var panelTex = resourceCache.GetTexture("/Textures/Interface/Nano/button.svg.96dpi.png"); + var back = new StyleBoxTexture + { + Texture = panelTex, + Modulate = new Color(37, 37, 42) + }; + back.SetPatchMargin(StyleBox.Margin.All, 10); + + BackgroundPanel.PanelOverride = back; + + _createNewCharacterButton = new Button + { + Text = Loc.GetString("character-setup-gui-create-new-character-button"), + }; + + _createNewCharacterButton.OnPressed += args => + { + preferencesManager.CreateCharacter(HumanoidCharacterProfile.Random()); + ReloadCharacterPickers(); + args.Event.Handle(); + }; + + CharEditor.AddChild(profileEditor); + RulesButton.OnPressed += _ => new RulesAndInfoWindow().Open(); + + StatsButton.OnPressed += _ => new PlaytimeStatsWindow().OpenCentered(); + } + + /// + /// Disposes and reloads all character picker buttons from the preferences data. + /// + public void ReloadCharacterPickers() + { + _createNewCharacterButton.Orphan(); + Characters.DisposeAllChildren(); + + var numberOfFullSlots = 0; + var characterButtonsGroup = new ButtonGroup(); + + if (!_preferencesManager.ServerDataLoaded) + { + return; + } + + _createNewCharacterButton.ToolTip = + Loc.GetString("character-setup-gui-create-new-character-button-tooltip", + ("maxCharacters", _preferencesManager.Settings!.MaxCharacterSlots)); + + var selectedSlot = _preferencesManager.Preferences?.SelectedCharacterIndex; + + foreach (var (slot, character) in _preferencesManager.Preferences!.Characters) + { + numberOfFullSlots++; + var characterPickerButton = new CharacterPickerButton(_entManager, + _protomanager, + characterButtonsGroup, + character, + slot == selectedSlot); + + Characters.AddChild(characterPickerButton); + + characterPickerButton.OnPressed += args => + { + SelectCharacter?.Invoke(slot); + }; + + characterPickerButton.OnDeletePressed += () => + { + DeleteCharacter?.Invoke(slot); + }; + } + + _createNewCharacterButton.Disabled = numberOfFullSlots >= _preferencesManager.Settings.MaxCharacterSlots; + Characters.AddChild(_createNewCharacterButton); + } + } +} diff --git a/Content.Client/Preferences/UI/HighlightedContainer.xaml b/Content.Client/Lobby/UI/HighlightedContainer.xaml similarity index 100% rename from Content.Client/Preferences/UI/HighlightedContainer.xaml rename to Content.Client/Lobby/UI/HighlightedContainer.xaml diff --git a/Content.Client/Preferences/UI/HighlightedContainer.xaml.cs b/Content.Client/Lobby/UI/HighlightedContainer.xaml.cs similarity index 88% rename from Content.Client/Preferences/UI/HighlightedContainer.xaml.cs rename to Content.Client/Lobby/UI/HighlightedContainer.xaml.cs index 68294d0f05..084c1c3709 100644 --- a/Content.Client/Preferences/UI/HighlightedContainer.xaml.cs +++ b/Content.Client/Lobby/UI/HighlightedContainer.xaml.cs @@ -2,7 +2,7 @@ using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; -namespace Content.Client.Preferences.UI; +namespace Content.Client.Lobby.UI; [GenerateTypedNameReferences] public sealed partial class HighlightedContainer : PanelContainer diff --git a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml new file mode 100644 index 0000000000..2da2904435 --- /dev/null +++ b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml @@ -0,0 +1,228 @@ + + + + + + + + + + + + + + public AlignRCDConstruction(PlacementManager pMan) : base(pMan) { - var dependencies = IoCManager.Instance!; - _entityManager = dependencies.Resolve(); - _mapManager = dependencies.Resolve(); - _playerManager = dependencies.Resolve(); - _stateManager = dependencies.Resolve(); - + IoCManager.InjectDependencies(this); _mapSystem = _entityManager.System(); _rcdSystem = _entityManager.System(); _transformSystem = _entityManager.System(); diff --git a/Content.Client/RCD/RCDMenu.xaml.cs b/Content.Client/RCD/RCDMenu.xaml.cs index 51ec66ea44..3eb0397a69 100644 --- a/Content.Client/RCD/RCDMenu.xaml.cs +++ b/Content.Client/RCD/RCDMenu.xaml.cs @@ -68,7 +68,7 @@ public RCDMenu(EntityUid owner, RCDMenuBoundUserInterface bui) tooltip = Loc.GetString(entProto.Name); } - tooltip = char.ToUpper(tooltip[0]) + tooltip.Remove(0, 1); + tooltip = OopsConcat(char.ToUpper(tooltip[0]).ToString(), tooltip.Remove(0, 1)); var button = new RCDMenuButton() { @@ -119,6 +119,12 @@ public RCDMenu(EntityUid owner, RCDMenuBoundUserInterface bui) SendRCDSystemMessageAction += bui.SendRCDSystemMessage; } + private static string OopsConcat(string a, string b) + { + // This exists to prevent Roslyn being clever and compiling something that fails sandbox checks. + return a + b; + } + private void AddRCDMenuButtonOnClickActions(Control control) { var radialContainer = control as RadialContainer; diff --git a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs index 2ee7e30ec9..d00e319eed 100644 --- a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs +++ b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs @@ -195,9 +195,16 @@ private void OnParentChanged(EntityUid uid, ReplaySpectatorComponent component, if (uid != _player.LocalEntity) return; - if (args.Transform.MapUid != null || args.OldMapId == MapId.Nullspace) + if (args.Transform.MapUid != null || args.OldMapId == null) return; + if (_spectatorData != null) + { + // Currently scrubbing/setting the replay tick + // the observer will get respawned once the state was applied + return; + } + // The entity being spectated from was moved to null-space. // This was probably because they were spectating some entity in a client-side replay that left PVS range. // Simple respawn the ghost. diff --git a/Content.Client/Robotics/Systems/RoboticsConsoleSystem.cs b/Content.Client/Robotics/Systems/RoboticsConsoleSystem.cs new file mode 100644 index 0000000000..0219c965cd --- /dev/null +++ b/Content.Client/Robotics/Systems/RoboticsConsoleSystem.cs @@ -0,0 +1,7 @@ +using Content.Shared.Robotics.Systems; + +namespace Content.Client.Robotics.Systems; + +public sealed class RoboticsConsoleSystem : SharedRoboticsConsoleSystem +{ +} diff --git a/Content.Client/Robotics/UI/RoboticsConsoleBoundUserInterface.cs b/Content.Client/Robotics/UI/RoboticsConsoleBoundUserInterface.cs new file mode 100644 index 0000000000..6185979eee --- /dev/null +++ b/Content.Client/Robotics/UI/RoboticsConsoleBoundUserInterface.cs @@ -0,0 +1,50 @@ +using Content.Shared.Robotics; +using Robust.Client.GameObjects; + +namespace Content.Client.Robotics.UI; + +public sealed class RoboticsConsoleBoundUserInterface : BoundUserInterface +{ + [ViewVariables] + public RoboticsConsoleWindow _window = default!; + + public RoboticsConsoleBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) + { + } + + protected override void Open() + { + base.Open(); + + _window = new RoboticsConsoleWindow(Owner); + _window.OnDisablePressed += address => + { + SendMessage(new RoboticsConsoleDisableMessage(address)); + }; + _window.OnDestroyPressed += address => + { + SendMessage(new RoboticsConsoleDestroyMessage(address)); + }; + _window.OnClose += Close; + + _window.OpenCentered(); + } + + protected override void UpdateState(BoundUserInterfaceState state) + { + base.UpdateState(state); + + if (state is not RoboticsConsoleState cast) + return; + + _window?.UpdateState(cast); + } + + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); + + if (disposing) + _window?.Dispose(); + } +} diff --git a/Content.Client/Robotics/UI/RoboticsConsoleWindow.xaml b/Content.Client/Robotics/UI/RoboticsConsoleWindow.xaml new file mode 100644 index 0000000000..a3b3978790 --- /dev/null +++ b/Content.Client/Robotics/UI/RoboticsConsoleWindow.xaml @@ -0,0 +1,40 @@ + + + + + + + + + + [DataField] - public float Chance = 0.001f; + public float Chance = 0.004f; [DataField] public bool DoAnnouncement = true; diff --git a/Content.Server/Antag/MobReplacementRuleSystem.cs b/Content.Server/Antag/MobReplacementRuleSystem.cs index 18837b5a7c..dc8103497e 100644 --- a/Content.Server/Antag/MobReplacementRuleSystem.cs +++ b/Content.Server/Antag/MobReplacementRuleSystem.cs @@ -1,16 +1,45 @@ +using System.Numerics; using Content.Server.Antag.Mimic; -using Content.Server.GameTicking.Components; +using Content.Server.Chat.Systems; using Content.Server.GameTicking.Rules; -using Content.Server.GameTicking.Rules.Components; +using Content.Server.GameTicking.Components; +using Content.Server.NPC.Systems; +using Content.Server.Station.Systems; +using Content.Server.GameTicking; using Content.Shared.VendingMachines; using Robust.Shared.Map; +using Robust.Shared.Prototypes; using Robust.Shared.Random; +using Robust.Server.GameObjects; +using Robust.Shared.Physics.Systems; +using System.Linq; +using Robust.Shared.Physics; +using Content.Shared.Movement.Components; +using Content.Shared.Damage; +using Content.Server.NPC.HTN; +using Content.Server.NPC; +using Content.Shared.Weapons.Melee; +using Content.Server.Advertise.EntitySystems; +using Content.Server.Advertise.Components; +using Content.Server.Power.Components; +using Content.Shared.CombatMode; namespace Content.Server.Antag; public sealed class MobReplacementRuleSystem : GameRuleSystem { [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly GameTicker _gameTicker = default!; + [Dependency] private readonly ChatSystem _chat = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly IComponentFactory _componentFactory = default!; + [Dependency] private readonly SharedPhysicsSystem _physics = default!; + [Dependency] private readonly NpcFactionSystem _npcFaction = default!; + [Dependency] private readonly NPCSystem _npc = default!; + [Dependency] private readonly TransformSystem _transform = default!; + [Dependency] private readonly AdvertiseSystem _advertise = default!; + protected override void Started(EntityUid uid, MobReplacementRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args) { @@ -18,21 +47,120 @@ protected override void Started(EntityUid uid, MobReplacementRuleComponent compo var query = AllEntityQuery(); var spawns = new List<(EntityUid Entity, EntityCoordinates Coordinates)>(); + var stations = _gameTicker.GetSpawnableStations(); while (query.MoveNext(out var vendingUid, out _, out var xform)) { - if (!_random.Prob(component.Chance)) + var ownerStation = _station.GetOwningStation(vendingUid); + + if (ownerStation == null + || ownerStation != stations[0]) + continue; + + // Make sure that we aren't running this on something that is already a mimic + if (HasComp(vendingUid)) continue; spawns.Add((vendingUid, xform.Coordinates)); } - foreach (var entity in spawns) + if (spawns == null) + //WTF: THE STATION DOESN'T EXIST! WE MUST BE IN A TEST! QUICK, PUT A MIMIC AT 0,0!!! + Spawn(component.Proto, new EntityCoordinates(uid, new Vector2(0, 0))); + else { - var coordinates = entity.Coordinates; - Del(entity.Entity); + // This is intentionally not clamped. If a server host wants to replace every vending machine in the entire station with a mimic, who am I to stop them? + var k = MathF.MaxMagnitude(component.NumberToReplace, 1); + while (k > 0 && spawns != null && spawns.Count > 0) + { + if (k > 1) + { + var spawnLocation = _random.PickAndTake(spawns); + BuildAMimicWorkshop(spawnLocation.Entity, component); + } + else + { + BuildAMimicWorkshop(spawns[0].Entity, component); + } - Spawn(component.Proto, coordinates); + if (k == MathF.MaxMagnitude(component.NumberToReplace, 1) + && component.DoAnnouncement) + _chat.DispatchStationAnnouncement(stations[0], Loc.GetString("station-event-rampant-intelligence-announcement"), playDefaultSound: true, + colorOverride: Color.Red, sender: "Central Command"); + + k--; + } + } + } + + /// It's like Build a Bear, but MURDER + public void BuildAMimicWorkshop(EntityUid uid, MobReplacementRuleComponent component) + { + var metaData = MetaData(uid); + var vendorPrototype = metaData.EntityPrototype; + var mimicProto = _prototype.Index(component.Proto); + + var vendorComponents = vendorPrototype?.Components.Keys + .Where(n => n != "Transform" && n != "MetaData") + .Select(name => (name, _componentFactory.GetRegistration(name).Type)) + .ToList() ?? new List<(string name, Type type)>(); + + var mimicComponents = mimicProto?.Components.Keys + .Where(n => n != "Transform" && n != "MetaData") + .Select(name => (name, _componentFactory.GetRegistration(name).Type)) + .ToList() ?? new List<(string name, Type type)>(); + + foreach (var name in mimicComponents.Except(vendorComponents)) + { + var newComponent = _componentFactory.GetComponent(name.name); + EntityManager.AddComponent(uid, newComponent); } + + var xform = Transform(uid); + if (xform.Anchored) + _transform.Unanchor(uid, xform); + + SetupMimicNPC(uid, component); + + if (TryComp(uid, out var vendor) + && component.VendorModify) + SetupMimicVendor(uid, component, vendor); + } + + /// This handles getting the entity ready to be a hostile NPC + private void SetupMimicNPC(EntityUid uid, MobReplacementRuleComponent component) + { + _physics.SetBodyType(uid, BodyType.KinematicController); + _npcFaction.AddFaction(uid, "SimpleHostile"); + + var melee = EnsureComp(uid); + melee.Angle = 0; + DamageSpecifier dspec = new() + { + DamageDict = new() + { + { "Blunt", component.MimicMeleeDamage } + } + }; + melee.Damage = dspec; + + var movementSpeed = EnsureComp(uid); + (movementSpeed.BaseSprintSpeed, movementSpeed.BaseWalkSpeed) = (component.MimicMoveSpeed, component.MimicMoveSpeed); + + var htn = EnsureComp(uid); + htn.RootTask = new HTNCompoundTask() { Task = component.MimicAIType }; + htn.Blackboard.SetValue(NPCBlackboard.NavSmash, component.MimicSmashGlass); + _npc.WakeNPC(uid, htn); + } + + /// Handling specific interactions with vending machines + private void SetupMimicVendor(EntityUid uid, MobReplacementRuleComponent mimicComponent, AdvertiseComponent vendorComponent) + { + vendorComponent.MinimumWait = 5; + vendorComponent.MaximumWait = 15; + _advertise.SayAdvertisement(uid, vendorComponent); + + if (TryComp(uid, out var aPC)) + aPC.NeedsPower = false; } } diff --git a/Content.Server/Arachne/ArachneSystem.cs b/Content.Server/Arachne/ArachneSystem.cs deleted file mode 100644 index 9cdefb441b..0000000000 --- a/Content.Server/Arachne/ArachneSystem.cs +++ /dev/null @@ -1,231 +0,0 @@ -using Content.Shared.Arachne; -using Content.Shared.Actions; -using Content.Shared.IdentityManagement; -using Content.Shared.Verbs; -using Content.Shared.Buckle.Components; -using Content.Shared.DoAfter; -using Content.Shared.Stunnable; -using Content.Shared.Eye.Blinding.Systems; -using Content.Shared.Containers.ItemSlots; -using Content.Shared.Damage; -using Content.Shared.Inventory; -using Content.Shared.Administration.Logs; -using Content.Shared.Database; -using Content.Shared.Humanoid; -using Content.Shared.Nutrition.EntitySystems; -using Content.Server.Buckle.Systems; -using Content.Server.Popups; -using Content.Server.DoAfter; -using Content.Server.Body.Components; -using Content.Server.Vampiric; -using Content.Server.Speech.Components; -using Robust.Shared.Physics.Components; -using Robust.Shared.Containers; -using Robust.Shared.Map; -using Robust.Shared.Utility; -using Robust.Server.Console; - -namespace Content.Server.Arachne -{ - public sealed class ArachneSystem : EntitySystem - { - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly DoAfterSystem _doAfter = default!; - [Dependency] private readonly BuckleSystem _buckleSystem = default!; - [Dependency] private readonly ItemSlotsSystem _itemSlots = default!; - [Dependency] private readonly BlindableSystem _blindableSystem = default!; - [Dependency] private readonly DamageableSystem _damageableSystem = default!; - - [Dependency] private readonly IServerConsoleHost _host = default!; - [Dependency] private readonly BloodSuckerSystem _bloodSuckerSystem = default!; - [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; - - private const string BodySlot = "body_slot"; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent>(AddCocoonVerb); - - SubscribeLocalEvent(OnCocEntInserted); - SubscribeLocalEvent(OnCocEntRemoved); - SubscribeLocalEvent(OnDamageChanged); - SubscribeLocalEvent>(AddSuccVerb); - SubscribeLocalEvent(OnCocoonDoAfter); - } - - private void AddCocoonVerb(EntityUid uid, ArachneComponent component, GetVerbsEvent args) - { - if (!args.CanAccess || !args.CanInteract) - return; - - if (args.Target == uid) - return; - - if (!TryComp(args.Target, out var bloodstream)) - return; - - if (bloodstream.BloodReagent != component.WebBloodReagent) - return; - - InnateVerb verb = new() - { - Act = () => - { - StartCocooning(uid, component, args.Target); - }, - Text = Loc.GetString("cocoon"), - Priority = 2 - }; - args.Verbs.Add(verb); - } - - private void OnCocEntInserted(EntityUid uid, CocoonComponent component, EntInsertedIntoContainerMessage args) - { - _blindableSystem.UpdateIsBlind(args.Entity); - EnsureComp(args.Entity); - - if (TryComp(args.Entity, out var currentAccent)) - { - component.WasReplacementAccent = true; - component.OldAccent = currentAccent.Accent; - currentAccent.Accent = "mumble"; - } else - { - component.WasReplacementAccent = false; - var replacement = EnsureComp(args.Entity); - replacement.Accent = "mumble"; - } - } - - private void OnCocEntRemoved(EntityUid uid, CocoonComponent component, EntRemovedFromContainerMessage args) - { - if (component.WasReplacementAccent && TryComp(args.Entity, out var replacement)) - { - replacement.Accent = component.OldAccent; - } else - { - RemComp(args.Entity); - } - - RemComp(args.Entity); - _blindableSystem.UpdateIsBlind(args.Entity); - } - - private void OnDamageChanged(EntityUid uid, CocoonComponent component, DamageChangedEvent args) - { - if (!args.DamageIncreased) - return; - - if (args.DamageDelta == null) - return; - - var body = _itemSlots.GetItemOrNull(uid, BodySlot); - - if (body == null) - return; - - var damage = args.DamageDelta * component.DamagePassthrough; - _damageableSystem.TryChangeDamage(body, damage); - } - - private void AddSuccVerb(EntityUid uid, CocoonComponent component, GetVerbsEvent args) - { - if (!args.CanAccess || !args.CanInteract) - return; - - if (!TryComp(args.User, out var sucker)) - return; - - if (!sucker.WebRequired) - return; - - var victim = _itemSlots.GetItemOrNull(uid, BodySlot); - - if (victim == null) - return; - - if (!TryComp(victim, out var stream)) - return; - - AlternativeVerb verb = new() - { - Act = () => - { - _bloodSuckerSystem.StartSuccDoAfter(args.User, victim.Value, sucker, stream, false); // start doafter - }, - Text = Loc.GetString("action-name-suck-blood"), - Icon = new SpriteSpecifier.Texture(new ("/Textures/Nyanotrasen/Icons/verbiconfangs.png")), - Priority = 2 - }; - args.Verbs.Add(verb); - } - - private void OnEntRemoved(EntityUid uid, WebComponent web, EntRemovedFromContainerMessage args) - { - if (!TryComp(uid, out var strap)) - return; - - if (HasComp(args.Entity)) - _buckleSystem.StrapSetEnabled(uid, false, strap); - } - - private void StartCocooning(EntityUid uid, ArachneComponent component, EntityUid target) - { - _popupSystem.PopupEntity(Loc.GetString("cocoon-start-third-person", ("target", Identity.Entity(target, EntityManager)), ("spider", Identity.Entity(uid, EntityManager))), uid, - Shared.Popups.PopupType.MediumCaution); - - _popupSystem.PopupEntity(Loc.GetString("cocoon-start-second-person", ("target", Identity.Entity(target, EntityManager))), uid, uid, Shared.Popups.PopupType.Medium); - - var delay = component.CocoonDelay; - - if (HasComp(target)) - delay *= component.CocoonKnockdownMultiplier; - - // Is it good practice to use empty data just to disambiguate doafters - // Who knows, there's no docs! - var ev = new ArachneCocoonDoAfterEvent(); - - var args = new DoAfterArgs(EntityManager, uid, delay, ev, uid, target: target) - { - BreakOnUserMove = true, - BreakOnTargetMove = true, - }; - - _doAfter.TryStartDoAfter(args); - } - - private void OnCocoonDoAfter(EntityUid uid, ArachneComponent component, ArachneCocoonDoAfterEvent args) - { - if (args.Handled || args.Cancelled || args.Args.Target == null) - return; - - var spawnProto = HasComp(args.Args.Target) ? "CocoonedHumanoid" : "CocoonSmall"; - Transform(args.Args.Target.Value).AttachToGridOrMap(); - var cocoon = Spawn(spawnProto, Transform(args.Args.Target.Value).Coordinates); - - if (!TryComp(cocoon, out var slots)) - return; - - // todo: our species should use scale visuals probably... - // TODO: We need a client-accessible notion of scale influence here. - /* if (spawnProto == "CocoonedHumanoid" && TryComp(args.Args.Target.Value, out var sprite)) */ - /* { */ - /* // why the fuck is this only available as a console command. */ - /* _host.ExecuteCommand(null, "scale " + cocoon + " " + sprite.Scale.Y); */ - if (TryComp(args.Args.Target.Value, out var physics)) - { - var scale = Math.Clamp(1 / (35 / physics.FixturesMass), 0.35, 2.5); - _host.ExecuteCommand(null, "scale " + cocoon + " " + scale); - } - _itemSlots.SetLock(cocoon, BodySlot, false, slots); - _itemSlots.TryInsert(cocoon, BodySlot, args.Args.Target.Value, args.Args.User); - _itemSlots.SetLock(cocoon, BodySlot, true, slots); - - var impact = (spawnProto == "CocoonedHumanoid") ? LogImpact.High : LogImpact.Medium; - - _adminLogger.Add(LogType.Action, impact, $"{ToPrettyString(args.Args.User):player} cocooned {ToPrettyString(args.Args.Target.Value):target}"); - args.Handled = true; - } - } -} diff --git a/Content.Server/Arachne/CocoonComponent.cs b/Content.Server/Arachne/CocoonComponent.cs deleted file mode 100644 index 42ecf27971..0000000000 --- a/Content.Server/Arachne/CocoonComponent.cs +++ /dev/null @@ -1,13 +0,0 @@ -namespace Content.Server.Arachne -{ - [RegisterComponent] - public sealed partial class CocoonComponent : Component - { - public bool WasReplacementAccent = false; - - public string OldAccent = ""; - - [DataField("damagePassthrough")] - public float DamagePassthrough = 0.5f; - } -} diff --git a/Content.Server/Arcade/BlockGame/BlockGame.Ui.cs b/Content.Server/Arcade/BlockGame/BlockGame.Ui.cs index ef69600783..cd22f1f6d3 100644 --- a/Content.Server/Arcade/BlockGame/BlockGame.Ui.cs +++ b/Content.Server/Arcade/BlockGame/BlockGame.Ui.cs @@ -157,39 +157,37 @@ private void InputTick(float frameTime) /// The message to broadcase to all players/spectators. private void SendMessage(BoundUserInterfaceMessage message) { - if (_uiSystem.TryGetUi(_owner, BlockGameUiKey.Key, out var bui)) - _uiSystem.SendUiMessage(bui, message); + _uiSystem.ServerSendUiMessage(_entityManager.GetEntity(message.Entity), BlockGameUiKey.Key, message); } /// /// Handles sending a message to a specific player/spectator. /// /// The message to send to a specific player/spectator. - /// The target recipient. - private void SendMessage(BoundUserInterfaceMessage message, ICommonSession session) + /// The target recipient. + private void SendMessage(BoundUserInterfaceMessage message, EntityUid actor) { - if (_uiSystem.TryGetUi(_owner, BlockGameUiKey.Key, out var bui)) - _uiSystem.TrySendUiMessage(bui, message, session); + _uiSystem.ServerSendUiMessage(_entityManager.GetEntity(message.Entity), BlockGameUiKey.Key, message, actor); } /// /// Handles sending the current state of the game to a player that has just opened the UI. /// - /// The target recipient. - public void UpdateNewPlayerUI(ICommonSession session) + /// The target recipient. + public void UpdateNewPlayerUI(EntityUid actor) { if (_gameOver) { - SendMessage(new BlockGameMessages.BlockGameGameOverScreenMessage(Points, _highScorePlacement?.LocalPlacement, _highScorePlacement?.GlobalPlacement), session); + SendMessage(new BlockGameMessages.BlockGameGameOverScreenMessage(Points, _highScorePlacement?.LocalPlacement, _highScorePlacement?.GlobalPlacement), actor); return; } if (Paused) - SendMessage(new BlockGameMessages.BlockGameSetScreenMessage(BlockGameMessages.BlockGameScreen.Pause, Started), session); + SendMessage(new BlockGameMessages.BlockGameSetScreenMessage(BlockGameMessages.BlockGameScreen.Pause, Started), actor); else - SendMessage(new BlockGameMessages.BlockGameSetScreenMessage(BlockGameMessages.BlockGameScreen.Game, Started), session); + SendMessage(new BlockGameMessages.BlockGameSetScreenMessage(BlockGameMessages.BlockGameScreen.Game, Started), actor); - FullUpdate(session); + FullUpdate(actor); } /// @@ -209,14 +207,14 @@ private void FullUpdate() /// Handles broadcasting the full player-visible game state to a specific player/spectator. /// /// The target recipient. - private void FullUpdate(ICommonSession session) + private void FullUpdate(EntityUid actor) { - UpdateFieldUI(session); - SendNextPieceUpdate(session); - SendHoldPieceUpdate(session); - SendLevelUpdate(session); - SendPointsUpdate(session); - SendHighscoreUpdate(session); + UpdateFieldUI(actor); + SendNextPieceUpdate(actor); + SendHoldPieceUpdate(actor); + SendLevelUpdate(actor); + SendPointsUpdate(actor); + SendHighscoreUpdate(actor); } /// @@ -234,14 +232,13 @@ public void UpdateFieldUI() /// /// Handles broadcasting the current location of all of the blocks in the playfield + the active piece to a specific player/spectator. /// - /// The target recipient. - public void UpdateFieldUI(ICommonSession session) + public void UpdateFieldUI(EntityUid actor) { if (!Started) return; var computedField = ComputeField(); - SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(computedField.ToArray(), BlockGameMessages.BlockGameVisualType.GameField), session); + SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(computedField.ToArray(), BlockGameMessages.BlockGameVisualType.GameField), actor); } /// @@ -282,10 +279,9 @@ private void SendNextPieceUpdate() /// /// Broadcasts the state of the next queued piece to a specific viewer. /// - /// The target recipient. - private void SendNextPieceUpdate(ICommonSession session) + private void SendNextPieceUpdate(EntityUid actor) { - SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(NextPiece.BlocksForPreview(), BlockGameMessages.BlockGameVisualType.NextBlock), session); + SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(NextPiece.BlocksForPreview(), BlockGameMessages.BlockGameVisualType.NextBlock), actor); } /// @@ -302,13 +298,12 @@ private void SendHoldPieceUpdate() /// /// Broadcasts the state of the currently held piece to a specific viewer. /// - /// The target recipient. - private void SendHoldPieceUpdate(ICommonSession session) + private void SendHoldPieceUpdate(EntityUid actor) { if (HeldPiece.HasValue) - SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(HeldPiece.Value.BlocksForPreview(), BlockGameMessages.BlockGameVisualType.HoldBlock), session); + SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(HeldPiece.Value.BlocksForPreview(), BlockGameMessages.BlockGameVisualType.HoldBlock), actor); else - SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(Array.Empty(), BlockGameMessages.BlockGameVisualType.HoldBlock), session); + SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(Array.Empty(), BlockGameMessages.BlockGameVisualType.HoldBlock), actor); } /// @@ -322,10 +317,9 @@ private void SendLevelUpdate() /// /// Broadcasts the current game level to a specific viewer. /// - /// The target recipient. - private void SendLevelUpdate(ICommonSession session) + private void SendLevelUpdate(EntityUid actor) { - SendMessage(new BlockGameMessages.BlockGameLevelUpdateMessage(Level), session); + SendMessage(new BlockGameMessages.BlockGameLevelUpdateMessage(Level), actor); } /// @@ -339,10 +333,9 @@ private void SendPointsUpdate() /// /// Broadcasts the current game score to a specific viewer. /// - /// The target recipient. - private void SendPointsUpdate(ICommonSession session) + private void SendPointsUpdate(EntityUid actor) { - SendMessage(new BlockGameMessages.BlockGameScoreUpdateMessage(Points), session); + SendMessage(new BlockGameMessages.BlockGameScoreUpdateMessage(Points), actor); } /// @@ -356,9 +349,8 @@ private void SendHighscoreUpdate() /// /// Broadcasts the current game high score positions to a specific viewer. /// - /// The target recipient. - private void SendHighscoreUpdate(ICommonSession session) + private void SendHighscoreUpdate(EntityUid actor) { - SendMessage(new BlockGameMessages.BlockGameHighScoreUpdateMessage(_arcadeSystem.GetLocalHighscores(), _arcadeSystem.GetGlobalHighscores()), session); + SendMessage(new BlockGameMessages.BlockGameHighScoreUpdateMessage(_arcadeSystem.GetLocalHighscores(), _arcadeSystem.GetGlobalHighscores()), actor); } } diff --git a/Content.Server/Arcade/BlockGame/BlockGame.cs b/Content.Server/Arcade/BlockGame/BlockGame.cs index 675776828f..a6707af408 100644 --- a/Content.Server/Arcade/BlockGame/BlockGame.cs +++ b/Content.Server/Arcade/BlockGame/BlockGame.cs @@ -10,8 +10,8 @@ public sealed partial class BlockGame { [Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly IRobustRandom _random = default!; - private readonly ArcadeSystem _arcadeSystem = default!; - private readonly UserInterfaceSystem _uiSystem = default!; + private readonly ArcadeSystem _arcadeSystem; + private readonly UserInterfaceSystem _uiSystem; /// /// What entity is currently hosting this game of NT-BG. @@ -79,7 +79,7 @@ private void InvokeGameover() _gameOver = true; if (_entityManager.TryGetComponent(_owner, out var cabinet) - && _entityManager.TryGetComponent(cabinet.Player?.AttachedEntity, out var meta)) + && _entityManager.TryGetComponent(cabinet.Player, out var meta)) { _highScorePlacement = _arcadeSystem.RegisterHighScore(meta.EntityName, Points); SendHighscoreUpdate(); diff --git a/Content.Server/Arcade/BlockGame/BlockGameArcadeComponent.cs b/Content.Server/Arcade/BlockGame/BlockGameArcadeComponent.cs index 5613d91544..75952b0a33 100644 --- a/Content.Server/Arcade/BlockGame/BlockGameArcadeComponent.cs +++ b/Content.Server/Arcade/BlockGame/BlockGameArcadeComponent.cs @@ -13,10 +13,10 @@ public sealed partial class BlockGameArcadeComponent : Component /// /// The player currently playing the active session of NT-BG. /// - public ICommonSession? Player = null; + public EntityUid? Player = null; /// /// The players currently viewing (but not playing) the active session of NT-BG. /// - public readonly List Spectators = new(); + public readonly List Spectators = new(); } diff --git a/Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs b/Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs index ad65c5cca6..561cad8d7e 100644 --- a/Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs +++ b/Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs @@ -37,14 +37,12 @@ public override void Update(float frameTime) } } - private void UpdatePlayerStatus(EntityUid uid, ICommonSession session, PlayerBoundUserInterface? bui = null, BlockGameArcadeComponent? blockGame = null) + private void UpdatePlayerStatus(EntityUid uid, EntityUid actor, BlockGameArcadeComponent? blockGame = null) { if (!Resolve(uid, ref blockGame)) return; - if (bui == null && !_uiSystem.TryGetUi(uid, BlockGameUiKey.Key, out bui)) - return; - _uiSystem.TrySendUiMessage(bui, new BlockGameMessages.BlockGameUserStatusMessage(blockGame.Player == session), session); + _uiSystem.ServerSendUiMessage(uid, BlockGameUiKey.Key, new BlockGameMessages.BlockGameUserStatusMessage(blockGame.Player == actor), actor); } private void OnComponentInit(EntityUid uid, BlockGameArcadeComponent component, ComponentInit args) @@ -54,33 +52,21 @@ private void OnComponentInit(EntityUid uid, BlockGameArcadeComponent component, private void OnAfterUIOpen(EntityUid uid, BlockGameArcadeComponent component, AfterActivatableUIOpenEvent args) { - if (!TryComp(args.User, out var actor)) - return; - if (!_uiSystem.TryGetUi(uid, BlockGameUiKey.Key, out var bui)) - return; - - var session = actor.PlayerSession; - if (!bui.SubscribedSessions.Contains(session)) - return; - if (component.Player == null) - component.Player = session; + component.Player = args.Actor; else - component.Spectators.Add(session); + component.Spectators.Add(args.Actor); - UpdatePlayerStatus(uid, session, bui, component); - component.Game?.UpdateNewPlayerUI(session); + UpdatePlayerStatus(uid, args.Actor, component); + component.Game?.UpdateNewPlayerUI(args.Actor); } private void OnAfterUiClose(EntityUid uid, BlockGameArcadeComponent component, BoundUIClosedEvent args) { - if (args.Session is not { } session) - return; - - if (component.Player != session) + if (component.Player != args.Actor) { - component.Spectators.Remove(session); - UpdatePlayerStatus(uid, session, blockGame: component); + component.Spectators.Remove(args.Actor); + UpdatePlayerStatus(uid, args.Actor, blockGame: component); return; } @@ -88,11 +74,11 @@ private void OnAfterUiClose(EntityUid uid, BlockGameArcadeComponent component, B if (component.Spectators.Count > 0) { component.Player = component.Spectators[0]; - component.Spectators.Remove(component.Player); - UpdatePlayerStatus(uid, component.Player, blockGame: component); + component.Spectators.Remove(component.Player.Value); + UpdatePlayerStatus(uid, component.Player.Value, blockGame: component); } - UpdatePlayerStatus(uid, temp, blockGame: component); + UpdatePlayerStatus(uid, temp.Value, blockGame: component); } private void OnBlockPowerChanged(EntityUid uid, BlockGameArcadeComponent component, ref PowerChangedEvent args) @@ -100,8 +86,7 @@ private void OnBlockPowerChanged(EntityUid uid, BlockGameArcadeComponent compone if (args.Powered) return; - if (_uiSystem.TryGetUi(uid, BlockGameUiKey.Key, out var bui)) - _uiSystem.CloseAll(bui); + _uiSystem.CloseUi(uid, BlockGameUiKey.Key); component.Player = null; component.Spectators.Clear(); } @@ -112,7 +97,7 @@ private void OnPlayerAction(EntityUid uid, BlockGameArcadeComponent component, B return; if (!BlockGameUiKey.Key.Equals(msg.UiKey)) return; - if (msg.Session != component.Player) + if (msg.Actor != component.Player) return; if (msg.PlayerAction == BlockGamePlayerAction.NewGame) diff --git a/Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeSystem.cs b/Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeSystem.cs index a5ca626d13..07a4d044ca 100644 --- a/Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeSystem.cs +++ b/Content.Server/Arcade/SpaceVillainGame/SpaceVillainArcadeSystem.cs @@ -77,8 +77,7 @@ private void OnSVPlayerAction(EntityUid uid, SpaceVillainArcadeComponent compone if (!TryComp(uid, out var power) || !power.Powered) return; - if (msg.Session.AttachedEntity != null) - RaiseLocalEvent(msg.Session.AttachedEntity.Value, new MoodEffectEvent("ArcadePlay")); + RaiseLocalEvent(EntityManager.GetEntity(msg.Entity), new MoodEffectEvent("ArcadePlay")); switch (msg.PlayerAction) { @@ -94,12 +93,10 @@ private void OnSVPlayerAction(EntityUid uid, SpaceVillainArcadeComponent compone _audioSystem.PlayPvs(component.NewGameSound, uid, AudioParams.Default.WithVolume(-4f)); component.Game = new SpaceVillainGame(uid, component, this); - if (_uiSystem.TryGetUi(uid, SpaceVillainArcadeUiKey.Key, out var bui)) - _uiSystem.SendUiMessage(bui, component.Game.GenerateMetaDataMessage()); + _uiSystem.ServerSendUiMessage(uid, SpaceVillainArcadeUiKey.Key, component.Game.GenerateMetaDataMessage()); break; case PlayerAction.RequestData: - if (_uiSystem.TryGetUi(uid, SpaceVillainArcadeUiKey.Key, out bui)) - _uiSystem.SendUiMessage(bui, component.Game.GenerateMetaDataMessage()); + _uiSystem.ServerSendUiMessage(uid, SpaceVillainArcadeUiKey.Key, component.Game.GenerateMetaDataMessage()); break; } } @@ -114,7 +111,6 @@ private void OnSVillainPower(EntityUid uid, SpaceVillainArcadeComponent componen if (TryComp(uid, out var power) && power.Powered) return; - if (_uiSystem.TryGetUi(uid, SpaceVillainArcadeUiKey.Key, out var bui)) - _uiSystem.CloseAll(bui); + _uiSystem.CloseUi(uid, SpaceVillainArcadeUiKey.Key); } } diff --git a/Content.Server/Arcade/SpaceVillainGame/SpaceVillainGame.Ui.cs b/Content.Server/Arcade/SpaceVillainGame/SpaceVillainGame.Ui.cs index 890e9888a7..ebcfb8e3f6 100644 --- a/Content.Server/Arcade/SpaceVillainGame/SpaceVillainGame.Ui.cs +++ b/Content.Server/Arcade/SpaceVillainGame/SpaceVillainGame.Ui.cs @@ -9,8 +9,7 @@ public sealed partial class SpaceVillainGame /// private void UpdateUi(EntityUid uid, bool metadata = false) { - if (_uiSystem.TryGetUi(uid, SpaceVillainArcadeUiKey.Key, out var bui)) - _uiSystem.SendUiMessage(bui, metadata ? GenerateMetaDataMessage() : GenerateUpdateMessage()); + _uiSystem.ServerSendUiMessage(uid, SpaceVillainArcadeUiKey.Key, metadata ? GenerateMetaDataMessage() : GenerateUpdateMessage()); } private void UpdateUi(EntityUid uid, string message1, string message2, bool metadata = false) diff --git a/Content.Server/Atmos/Components/BreathToolComponent.cs b/Content.Server/Atmos/Components/BreathToolComponent.cs index f3688ef7ff..ae17a5d872 100644 --- a/Content.Server/Atmos/Components/BreathToolComponent.cs +++ b/Content.Server/Atmos/Components/BreathToolComponent.cs @@ -12,9 +12,10 @@ public sealed partial class BreathToolComponent : Component /// /// Tool is functional only in allowed slots /// - [DataField("allowedSlots")] + [DataField] public SlotFlags AllowedSlots = SlotFlags.MASK | SlotFlags.HEAD; public bool IsFunctional; + public EntityUid? ConnectedInternalsEntity; } } diff --git a/Content.Server/Atmos/Components/FlammableComponent.cs b/Content.Server/Atmos/Components/FlammableComponent.cs index 33a163228f..9f39af540d 100644 --- a/Content.Server/Atmos/Components/FlammableComponent.cs +++ b/Content.Server/Atmos/Components/FlammableComponent.cs @@ -11,49 +11,65 @@ public sealed partial class FlammableComponent : Component [ViewVariables(VVAccess.ReadWrite)] [DataField] - public bool OnFire { get; set; } + public bool OnFire; [ViewVariables(VVAccess.ReadWrite)] [DataField] - public float FireStacks { get; set; } + public float FireStacks; [ViewVariables(VVAccess.ReadWrite)] - [DataField("fireSpread")] + [DataField] + public float MaximumFireStacks = 10f; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField] + public float MinimumFireStacks = -10f; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField] + public string FlammableFixtureID = "flammable"; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField] + public float MinIgnitionTemperature = 373.15f; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField] public bool FireSpread { get; private set; } = false; [ViewVariables(VVAccess.ReadWrite)] - [DataField("canResistFire")] + [DataField] public bool CanResistFire { get; private set; } = false; - [DataField("damage", required: true)] + [DataField(required: true)] [ViewVariables(VVAccess.ReadWrite)] public DamageSpecifier Damage = new(); // Empty by default, we don't want any funny NREs. /// /// Used for the fixture created to handle passing firestacks when two flammable objects collide. /// - [DataField("flammableCollisionShape")] + [DataField] public IPhysShape FlammableCollisionShape = new PhysShapeCircle(0.35f); /// /// Should the component be set on fire by interactions with isHot entities /// [ViewVariables(VVAccess.ReadWrite)] - [DataField("alwaysCombustible")] + [DataField] public bool AlwaysCombustible = false; /// /// Can the component anyhow lose its FireStacks? /// [ViewVariables(VVAccess.ReadWrite)] - [DataField("canExtinguish")] + [DataField] public bool CanExtinguish = true; /// /// How many firestacks should be applied to component when being set on fire? /// [ViewVariables(VVAccess.ReadWrite)] - [DataField("firestacksOnIgnite")] + [DataField] public float FirestacksOnIgnite = 2.0f; /// diff --git a/Content.Server/Atmos/Components/GasMixtureHolderComponent.cs b/Content.Server/Atmos/Components/GasMixtureHolderComponent.cs index 9d533f6ec4..98feb43346 100644 --- a/Content.Server/Atmos/Components/GasMixtureHolderComponent.cs +++ b/Content.Server/Atmos/Components/GasMixtureHolderComponent.cs @@ -1,4 +1,6 @@ -namespace Content.Server.Atmos.Components +using Content.Shared.Atmos; + +namespace Content.Server.Atmos.Components { [RegisterComponent] public sealed partial class GasMixtureHolderComponent : Component, IGasMixtureHolder diff --git a/Content.Server/Atmos/Components/MapAtmosphereComponent.cs b/Content.Server/Atmos/Components/MapAtmosphereComponent.cs index 6bdef901d4..bdd05e7849 100644 --- a/Content.Server/Atmos/Components/MapAtmosphereComponent.cs +++ b/Content.Server/Atmos/Components/MapAtmosphereComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Atmos; using Content.Shared.Atmos.Components; using Content.Shared.Atmos.EntitySystems; diff --git a/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs b/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs new file mode 100644 index 0000000000..5d040cd7b3 --- /dev/null +++ b/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs @@ -0,0 +1,356 @@ +using Content.Server.Atmos.Monitor.Components; +using Content.Server.DeviceNetwork.Components; +using Content.Server.Power.Components; +using Content.Shared.Atmos; +using Content.Shared.Atmos.Components; +using Content.Shared.Atmos.Consoles; +using Content.Shared.Atmos.Monitor; +using Content.Shared.Atmos.Monitor.Components; +using Content.Shared.Pinpointer; +using Robust.Server.GameObjects; +using Robust.Shared.Map.Components; +using Robust.Shared.Player; +using Robust.Shared.ContentPack; +using Robust.Shared.Prototypes; +using System.Diagnostics.CodeAnalysis; +using System.Linq; +using Content.Shared.Access.Components; +using Content.Shared.Database; +using Content.Shared.NameIdentifier; +using Content.Shared.Stacks; +using JetBrains.Annotations; +using Robust.Shared.Utility; + +namespace Content.Server.Atmos.Monitor.Systems; + +public sealed class AtmosAlertsComputerSystem : SharedAtmosAlertsComputerSystem +{ + [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; + [Dependency] private readonly AirAlarmSystem _airAlarmSystem = default!; + [Dependency] private readonly AtmosDeviceNetworkSystem _atmosDevNet = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + + private const float UpdateTime = 1.0f; + + // Note: this data does not need to be saved + private float _updateTimer = 1.0f; + + public override void Initialize() + { + base.Initialize(); + + // Console events + SubscribeLocalEvent(OnConsoleInit); + SubscribeLocalEvent(OnConsoleParentChanged); + SubscribeLocalEvent(OnFocusChangedMessage); + + // Grid events + SubscribeLocalEvent(OnGridSplit); + SubscribeLocalEvent(OnDeviceAnchorChanged); + } + + #region Event handling + + private void OnConsoleInit(EntityUid uid, AtmosAlertsComputerComponent component, ComponentInit args) + { + InitalizeConsole(uid, component); + } + + private void OnConsoleParentChanged(EntityUid uid, AtmosAlertsComputerComponent component, EntParentChangedMessage args) + { + InitalizeConsole(uid, component); + } + + private void OnFocusChangedMessage(EntityUid uid, AtmosAlertsComputerComponent component, AtmosAlertsComputerFocusChangeMessage args) + { + component.FocusDevice = args.FocusDevice; + } + + private void OnGridSplit(ref GridSplitEvent args) + { + // Collect grids + var allGrids = args.NewGrids.ToList(); + + if (!allGrids.Contains(args.Grid)) + allGrids.Add(args.Grid); + + // Update atmos monitoring consoles that stand upon an updated grid + var query = AllEntityQuery(); + while (query.MoveNext(out var ent, out var entConsole, out var entXform)) + { + if (entXform.GridUid == null) + continue; + + if (!allGrids.Contains(entXform.GridUid.Value)) + continue; + + InitalizeConsole(ent, entConsole); + } + } + + private void OnDeviceAnchorChanged(EntityUid uid, AtmosAlertsDeviceComponent component, AnchorStateChangedEvent args) + { + var xform = Transform(uid); + var gridUid = xform.GridUid; + + if (gridUid == null) + return; + + if (!TryGetAtmosDeviceNavMapData(uid, component, xform, gridUid.Value, out var data)) + return; + + var netEntity = EntityManager.GetNetEntity(uid); + + var query = AllEntityQuery(); + while (query.MoveNext(out var ent, out var entConsole, out var entXform)) + { + if (gridUid != entXform.GridUid) + continue; + + if (args.Anchored) + entConsole.AtmosDevices.Add(data.Value); + + else if (!args.Anchored) + entConsole.AtmosDevices.RemoveWhere(x => x.NetEntity == netEntity); + } + } + + #endregion + + public override void Update(float frameTime) + { + base.Update(frameTime); + + _updateTimer += frameTime; + + if (_updateTimer >= UpdateTime) + { + _updateTimer -= UpdateTime; + + // Keep a list of UI entries for each gridUid, in case multiple consoles stand on the same grid + var airAlarmEntriesForEachGrid = new Dictionary(); + var fireAlarmEntriesForEachGrid = new Dictionary(); + + var query = AllEntityQuery(); + while (query.MoveNext(out var ent, out var entConsole, out var entXform)) + { + if (entXform?.GridUid == null) + continue; + + // Make a list of alarm state data for all the air and fire alarms on the grid + if (!airAlarmEntriesForEachGrid.TryGetValue(entXform.GridUid.Value, out var airAlarmEntries)) + { + airAlarmEntries = GetAlarmStateData(entXform.GridUid.Value, AtmosAlertsComputerGroup.AirAlarm).ToArray(); + airAlarmEntriesForEachGrid[entXform.GridUid.Value] = airAlarmEntries; + } + + if (!fireAlarmEntriesForEachGrid.TryGetValue(entXform.GridUid.Value, out var fireAlarmEntries)) + { + fireAlarmEntries = GetAlarmStateData(entXform.GridUid.Value, AtmosAlertsComputerGroup.FireAlarm).ToArray(); + fireAlarmEntriesForEachGrid[entXform.GridUid.Value] = fireAlarmEntries; + } + + // Determine the highest level of alert for the console (based on non-silenced alarms) + var highestAlert = AtmosAlarmType.Invalid; + + foreach (var entry in airAlarmEntries) + { + if (entry.AlarmState > highestAlert && !entConsole.SilencedDevices.Contains(entry.NetEntity)) + highestAlert = entry.AlarmState; + } + + foreach (var entry in fireAlarmEntries) + { + if (entry.AlarmState > highestAlert && !entConsole.SilencedDevices.Contains(entry.NetEntity)) + highestAlert = entry.AlarmState; + } + + // Update the appearance of the console based on the highest recorded level of alert + if (TryComp(ent, out var entAppearance)) + _appearance.SetData(ent, AtmosAlertsComputerVisuals.ComputerLayerScreen, (int) highestAlert, entAppearance); + + // If the console UI is open, send UI data to each subscribed session + UpdateUIState(ent, airAlarmEntries, fireAlarmEntries, entConsole, entXform); + } + } + } + + public void UpdateUIState + (EntityUid uid, + AtmosAlertsComputerEntry[] airAlarmStateData, + AtmosAlertsComputerEntry[] fireAlarmStateData, + AtmosAlertsComputerComponent component, + TransformComponent xform) + { + if (!_uiSystem.IsUiOpen(uid, AtmosAlertsComputerUiKey.Key)) + return; + + var gridUid = xform.GridUid!.Value; + + if (!HasComp(gridUid)) + return; + + // The grid must have a NavMapComponent to visualize the map in the UI + EnsureComp(gridUid); + + // Gathering remaining data to be send to the client + var focusAlarmData = GetFocusAlarmData(uid, GetEntity(component.FocusDevice), gridUid); + + // Set the UI state + _uiSystem.SetUiState(uid, AtmosAlertsComputerUiKey.Key, + new AtmosAlertsComputerBoundInterfaceState(airAlarmStateData, fireAlarmStateData, focusAlarmData)); + } + + private List GetAlarmStateData(EntityUid gridUid, AtmosAlertsComputerGroup group) + { + var alarmStateData = new List(); + + var queryAlarms = AllEntityQuery(); + while (queryAlarms.MoveNext(out var ent, out var entDevice, out var entAtmosAlarmable, out var entDeviceNetwork, out var entXform)) + { + if (entXform.GridUid != gridUid) + continue; + + if (!entXform.Anchored) + continue; + + if (entDevice.Group != group) + continue; + + // If emagged, change the alarm type to normal + var alarmState = (entAtmosAlarmable.LastAlarmState == AtmosAlarmType.Emagged) ? AtmosAlarmType.Normal : entAtmosAlarmable.LastAlarmState; + + // Unpowered alarms can't sound + if (TryComp(ent, out var entAPCPower) && !entAPCPower.Powered) + alarmState = AtmosAlarmType.Invalid; + + var entry = new AtmosAlertsComputerEntry + (GetNetEntity(ent), + GetNetCoordinates(entXform.Coordinates), + entDevice.Group, + alarmState, + MetaData(ent).EntityName, + entDeviceNetwork.Address); + + alarmStateData.Add(entry); + } + + return alarmStateData; + } + + private AtmosAlertsFocusDeviceData? GetFocusAlarmData(EntityUid uid, EntityUid? focusDevice, EntityUid gridUid) + { + if (focusDevice == null) + return null; + + var focusDeviceXform = Transform(focusDevice.Value); + + if (!focusDeviceXform.Anchored || + focusDeviceXform.GridUid != gridUid || + !TryComp(focusDevice.Value, out var focusDeviceAirAlarm)) + { + return null; + } + + // Force update the sensors attached to the alarm + if (!_uiSystem.IsUiOpen(focusDevice.Value, SharedAirAlarmInterfaceKey.Key)) + { + _atmosDevNet.Register(focusDevice.Value, null); + _atmosDevNet.Sync(focusDevice.Value, null); + + foreach ((var address, var _) in focusDeviceAirAlarm.SensorData) + _atmosDevNet.Register(uid, null); + } + + // Get the sensor data + var temperatureData = (_airAlarmSystem.CalculateTemperatureAverage(focusDeviceAirAlarm), AtmosAlarmType.Normal); + var pressureData = (_airAlarmSystem.CalculatePressureAverage(focusDeviceAirAlarm), AtmosAlarmType.Normal); + var gasData = new Dictionary(); + + foreach ((var address, var sensorData) in focusDeviceAirAlarm.SensorData) + { + if (sensorData.TemperatureThreshold.CheckThreshold(sensorData.Temperature, out var temperatureState) && + (int) temperatureState > (int) temperatureData.Item2) + { + temperatureData = (temperatureData.Item1, temperatureState); + } + + if (sensorData.PressureThreshold.CheckThreshold(sensorData.Pressure, out var pressureState) && + (int) pressureState > (int) pressureData.Item2) + { + pressureData = (pressureData.Item1, pressureState); + } + + if (focusDeviceAirAlarm.SensorData.Sum(g => g.Value.TotalMoles) > 1e-8) + { + foreach ((var gas, var threshold) in sensorData.GasThresholds) + { + if (!gasData.ContainsKey(gas)) + { + float mol = _airAlarmSystem.CalculateGasMolarConcentrationAverage(focusDeviceAirAlarm, gas, out var percentage); + + if (mol < 1e-8) + continue; + + gasData[gas] = (mol, percentage, AtmosAlarmType.Normal); + } + + if (threshold.CheckThreshold(gasData[gas].Item2, out var gasState) && + (int) gasState > (int) gasData[gas].Item3) + { + gasData[gas] = (gasData[gas].Item1, gasData[gas].Item2, gasState); + } + } + } + } + + return new AtmosAlertsFocusDeviceData(GetNetEntity(focusDevice.Value), temperatureData, pressureData, gasData); + } + + private HashSet GetAllAtmosDeviceNavMapData(EntityUid gridUid) + { + var atmosDeviceNavMapData = new HashSet(); + + var query = AllEntityQuery(); + while (query.MoveNext(out var ent, out var entComponent, out var entXform)) + { + if (TryGetAtmosDeviceNavMapData(ent, entComponent, entXform, gridUid, out var data)) + atmosDeviceNavMapData.Add(data.Value); + } + + return atmosDeviceNavMapData; + } + + private bool TryGetAtmosDeviceNavMapData + (EntityUid uid, + AtmosAlertsDeviceComponent component, + TransformComponent xform, + EntityUid gridUid, + [NotNullWhen(true)] out AtmosAlertsDeviceNavMapData? output) + { + output = null; + + if (xform.GridUid != gridUid) + return false; + + if (!xform.Anchored) + return false; + + output = new AtmosAlertsDeviceNavMapData(GetNetEntity(uid), GetNetCoordinates(xform.Coordinates), component.Group); + + return true; + } + + private void InitalizeConsole(EntityUid uid, AtmosAlertsComputerComponent component) + { + var xform = Transform(uid); + + if (xform.GridUid == null) + return; + + var grid = xform.GridUid.Value; + component.AtmosDevices = GetAllAtmosDeviceNavMapData(grid); + + Dirty(uid, component); + } +} diff --git a/Content.Server/Atmos/EntitySystems/AirFilterSystem.cs b/Content.Server/Atmos/EntitySystems/AirFilterSystem.cs index 2ab15cfb17..c3344c830c 100644 --- a/Content.Server/Atmos/EntitySystems/AirFilterSystem.cs +++ b/Content.Server/Atmos/EntitySystems/AirFilterSystem.cs @@ -12,7 +12,6 @@ namespace Content.Server.Atmos.EntitySystems; public sealed class AirFilterSystem : EntitySystem { [Dependency] private readonly AtmosphereSystem _atmosphere = default!; - [Dependency] private readonly IMapManager _map = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; public override void Initialize() diff --git a/Content.Server/Atmos/EntitySystems/AirtightSystem.cs b/Content.Server/Atmos/EntitySystems/AirtightSystem.cs index 152fba8fc4..cd07da7112 100644 --- a/Content.Server/Atmos/EntitySystems/AirtightSystem.cs +++ b/Content.Server/Atmos/EntitySystems/AirtightSystem.cs @@ -12,6 +12,7 @@ public sealed class AirtightSystem : EntitySystem [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Dependency] private readonly ExplosionSystem _explosionSystem = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; public override void Initialize() { @@ -24,16 +25,19 @@ public override void Initialize() private void OnAirtightInit(Entity airtight, ref ComponentInit args) { - var xform = EntityManager.GetComponent(airtight); - - if (airtight.Comp.FixAirBlockedDirectionInitialize) + // TODO AIRTIGHT what FixAirBlockedDirectionInitialize even for? + if (!airtight.Comp.FixAirBlockedDirectionInitialize) { - var moveEvent = new MoveEvent(airtight, default, default, Angle.Zero, xform.LocalRotation, xform, false); - if (AirtightMove(airtight, ref moveEvent)) - return; + UpdatePosition(airtight); + return; } - UpdatePosition(airtight); + var xform = Transform(airtight); + airtight.Comp.CurrentAirBlockedDirection = + (int) Rotate((AtmosDirection) airtight.Comp.InitialAirBlockedDirection, xform.LocalRotation); + UpdatePosition(airtight, xform); + var airtightEv = new AirtightChanged(airtight, airtight, false, default); + RaiseLocalEvent(airtight, ref airtightEv, true); } private void OnAirtightShutdown(Entity airtight, ref ComponentShutdown args) @@ -41,13 +45,8 @@ private void OnAirtightShutdown(Entity airtight, ref Componen var xform = Transform(airtight); // If the grid is deleting no point updating atmos. - if (HasComp(xform.GridUid) && - MetaData(xform.GridUid.Value).EntityLifeStage > EntityLifeStage.MapInitialized) - { - return; - } - - SetAirblocked(airtight, false, xform); + if (xform.GridUid != null && LifeStage(xform.GridUid.Value) <= EntityLifeStage.MapInitialized) + SetAirblocked(airtight, false, xform); } private void OnAirtightPositionChanged(EntityUid uid, AirtightComponent airtight, ref AnchorStateChangedEvent args) @@ -59,12 +58,14 @@ private void OnAirtightPositionChanged(EntityUid uid, AirtightComponent airtight var gridId = xform.GridUid; var coords = xform.Coordinates; - - var tilePos = grid.TileIndicesFor(coords); + var tilePos = _mapSystem.TileIndicesFor(gridId.Value, grid, coords); // Update and invalidate new position. airtight.LastPosition = (gridId.Value, tilePos); InvalidatePosition(gridId.Value, tilePos); + + var airtightEv = new AirtightChanged(uid, airtight, false, (gridId.Value, tilePos)); + RaiseLocalEvent(uid, ref airtightEv, true); } private void OnAirtightReAnchor(EntityUid uid, AirtightComponent airtight, ref ReAnchorEvent args) @@ -74,24 +75,20 @@ private void OnAirtightReAnchor(EntityUid uid, AirtightComponent airtight, ref R // Update and invalidate new position. airtight.LastPosition = (gridId, args.TilePos); InvalidatePosition(gridId, args.TilePos); - } - } - private void OnAirtightMoved(Entity airtight, ref MoveEvent ev) - { - AirtightMove(airtight, ref ev); + var airtightEv = new AirtightChanged(uid, airtight, false, (gridId, args.TilePos)); + RaiseLocalEvent(uid, ref airtightEv, true); + } } - private bool AirtightMove(Entity ent, ref MoveEvent ev) + private void OnAirtightMoved(Entity ent, ref MoveEvent ev) { var (owner, airtight) = ent; - airtight.CurrentAirBlockedDirection = (int) Rotate((AtmosDirection)airtight.InitialAirBlockedDirection, ev.NewRotation); var pos = airtight.LastPosition; UpdatePosition(ent, ev.Component); - var airtightEv = new AirtightChanged(owner, airtight, pos); + var airtightEv = new AirtightChanged(owner, airtight, false, pos); RaiseLocalEvent(owner, ref airtightEv, true); - return true; } public void SetAirblocked(Entity airtight, bool airblocked, TransformComponent? xform = null) @@ -105,7 +102,7 @@ public void SetAirblocked(Entity airtight, bool airblocked, T var pos = airtight.Comp.LastPosition; airtight.Comp.AirBlocked = airblocked; UpdatePosition(airtight, xform); - var airtightEv = new AirtightChanged(airtight, airtight, pos); + var airtightEv = new AirtightChanged(airtight, airtight, true, pos); RaiseLocalEvent(airtight, ref airtightEv, true); } @@ -152,7 +149,13 @@ private AtmosDirection Rotate(AtmosDirection myDirection, Angle myAngle) } } + /// + /// Raised upon the airtight status being changed via anchoring, movement, etc. + /// + /// + /// + /// Whether the changed + /// [ByRefEvent] - public readonly record struct AirtightChanged(EntityUid Entity, AirtightComponent Airtight, - (EntityUid Grid, Vector2i Tile) Position); + public readonly record struct AirtightChanged(EntityUid Entity, AirtightComponent Airtight, bool AirBlockedChanged, (EntityUid Grid, Vector2i Tile) Position); } diff --git a/Content.Server/Atmos/EntitySystems/AtmosExposedSystem.cs b/Content.Server/Atmos/EntitySystems/AtmosExposedSystem.cs index 9590b9aa54..39469e993f 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosExposedSystem.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosExposedSystem.cs @@ -1,3 +1,4 @@ +using Content.Shared.Atmos; using Robust.Shared.Map; namespace Content.Server.Atmos.EntitySystems diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.API.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.API.cs index 614d550c2f..df31db6ba0 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.API.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.API.cs @@ -1,10 +1,10 @@ using System.Linq; using Content.Server.Atmos.Components; using Content.Server.Atmos.Piping.Components; -using Content.Server.Atmos.Reactions; using Content.Server.NodeContainer.NodeGroups; using Content.Shared.Atmos; using Content.Shared.Atmos.Components; +using Content.Shared.Atmos.Reactions; using Robust.Shared.Map.Components; using Robust.Shared.Utility; diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Gases.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Gases.cs index f8ee4f4192..70c4639e48 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Gases.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Gases.cs @@ -2,6 +2,7 @@ using System.Runtime.CompilerServices; using Content.Server.Atmos.Reactions; using Content.Shared.Atmos; +using Content.Shared.Atmos.Reactions; using Robust.Shared.Prototypes; using DependencyAttribute = Robust.Shared.IoC.DependencyAttribute; diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.GridAtmosphere.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.GridAtmosphere.cs index 4b9ef49a40..3830745f68 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.GridAtmosphere.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.GridAtmosphere.cs @@ -2,6 +2,7 @@ using Content.Server.Atmos.Reactions; using Content.Shared.Atmos; using Content.Shared.Atmos.Components; +using Content.Shared.Atmos.Reactions; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Utility; diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs index 7163b4cd44..db95223733 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs @@ -2,6 +2,7 @@ using Content.Server.Atmos.Reactions; using Content.Shared.Atmos; using Content.Shared.Atmos.Components; +using Content.Shared.Atmos.Reactions; using Content.Shared.Audio; using Content.Shared.Database; using Robust.Shared.Audio; diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Map.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Map.cs index 25b3b801f7..4b77d9c70d 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Map.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Map.cs @@ -1,4 +1,5 @@ using Content.Server.Atmos.Components; +using Content.Shared.Atmos; using Content.Shared.Atmos.Components; using Robust.Shared.GameStates; using Robust.Shared.Map.Components; diff --git a/Content.Server/Atmos/EntitySystems/FlammableSystem.cs b/Content.Server/Atmos/EntitySystems/FlammableSystem.cs index 7890b7751a..ec0e7b0709 100644 --- a/Content.Server/Atmos/EntitySystems/FlammableSystem.cs +++ b/Content.Server/Atmos/EntitySystems/FlammableSystem.cs @@ -12,6 +12,7 @@ using Content.Shared.Damage; using Content.Shared.Database; using Content.Shared.Interaction; +using Content.Shared.Inventory; using Content.Shared.Physics; using Content.Shared.Popups; using Content.Shared.Projectiles; @@ -42,18 +43,18 @@ public sealed class FlammableSystem : EntitySystem [Dependency] private readonly AlertsSystem _alertsSystem = default!; [Dependency] private readonly FixtureSystem _fixture = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly UseDelaySystem _useDelay = default!; [Dependency] private readonly AudioSystem _audio = default!; [Dependency] private readonly IRobustRandom _random = default!; - public const float MinimumFireStacks = -10f; - public const float MaximumFireStacks = 20f; - private const float UpdateTime = 1f; + private EntityQuery _inventoryQuery; + private EntityQuery _physicsQuery; - public const float MinIgnitionTemperature = 373.15f; - public const string FlammableFixtureID = "flammable"; + // This should probably be moved to the component, requires a rewrite, all fires tick at the same time + private const float UpdateTime = 1f; private float _timer; @@ -63,6 +64,9 @@ public override void Initialize() { UpdatesAfter.Add(typeof(AtmosphereSystem)); + _inventoryQuery = GetEntityQuery(); + _physicsQuery = GetEntityQuery(); + SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnInteractUsing); SubscribeLocalEvent(OnCollide); @@ -131,7 +135,7 @@ private void OnMapInit(EntityUid uid, FlammableComponent component, MapInitEvent if (!TryComp(uid, out var body)) return; - _fixture.TryCreateFixture(uid, component.FlammableCollisionShape, FlammableFixtureID, hard: false, + _fixture.TryCreateFixture(uid, component.FlammableCollisionShape, component.FlammableFixtureID, hard: false, collisionMask: (int) CollisionGroup.FullTileLayer, body: body); } @@ -189,7 +193,7 @@ private void OnCollide(EntityUid uid, FlammableComponent flammable, ref StartCol // Normal hard collisions, though this isn't generally possible since most flammable things are mobs // which don't collide with one another, shouldn't work here. - if (args.OtherFixtureId != FlammableFixtureID && args.OurFixtureId != FlammableFixtureID) + if (args.OtherFixtureId != flammable.FlammableFixtureID && args.OurFixtureId != flammable.FlammableFixtureID) return; if (!flammable.FireSpread) @@ -204,7 +208,17 @@ private void OnCollide(EntityUid uid, FlammableComponent flammable, ref StartCol if (flammable.OnFire && otherFlammable.OnFire) { // Both are on fire -> equalize fire stacks. - var avg = (flammable.FireStacks + otherFlammable.FireStacks) / 2; + // Weight each thing's firestacks by its mass + var mass1 = 1f; + var mass2 = 1f; + if (_physicsQuery.TryComp(uid, out var physics) && _physicsQuery.TryComp(otherUid, out var otherPhys)) + { + mass1 = physics.Mass; + mass2 = otherPhys.Mass; + } + + var total = mass1 + mass2; + var avg = (flammable.FireStacks * mass1 + otherFlammable.FireStacks * mass2) / total; flammable.FireStacks = flammable.CanExtinguish ? avg : Math.Max(flammable.FireStacks, avg); otherFlammable.FireStacks = otherFlammable.CanExtinguish ? avg : Math.Max(otherFlammable.FireStacks, avg); UpdateAppearance(uid, flammable); @@ -213,25 +227,24 @@ private void OnCollide(EntityUid uid, FlammableComponent flammable, ref StartCol } // Only one is on fire -> attempt to spread the fire. - if (flammable.OnFire) + var (srcUid, srcFlammable, destUid, destFlammable) = flammable.OnFire + ? (uid, flammable, otherUid, otherFlammable) + : (otherUid, otherFlammable, uid, flammable); + + // if the thing on fire has less mass, spread less firestacks and vice versa + var ratio = 0.5f; + if (_physicsQuery.TryComp(srcUid, out var srcPhysics) && _physicsQuery.TryComp(destUid, out var destPhys)) { - otherFlammable.FireStacks += flammable.FireStacks / 2; - Ignite(otherUid, uid, otherFlammable); - if (flammable.CanExtinguish) - { - flammable.FireStacks /= 2; - UpdateAppearance(uid, flammable); - } + ratio *= srcPhysics.Mass / destPhys.Mass; } - else + + var lost = srcFlammable.FireStacks * ratio; + destFlammable.FireStacks += lost; + Ignite(destUid, srcUid, destFlammable); + if (srcFlammable.CanExtinguish) { - flammable.FireStacks += otherFlammable.FireStacks / 2; - Ignite(uid, otherUid, flammable); - if (otherFlammable.CanExtinguish) - { - otherFlammable.FireStacks /= 2; - UpdateAppearance(otherUid, otherFlammable); - } + srcFlammable.FireStacks -= lost; + UpdateAppearance(srcUid, srcFlammable); } } @@ -242,7 +255,7 @@ private void OnIsHot(EntityUid uid, FlammableComponent flammable, IsHotEvent arg private void OnTileFire(Entity ent, ref TileFireEvent args) { - var tempDelta = args.Temperature - MinIgnitionTemperature; + var tempDelta = args.Temperature - ent.Comp.MinIgnitionTemperature; _fireEvents.TryGetValue(ent, out var maxTemp); @@ -278,7 +291,7 @@ public void AdjustFireStacks(EntityUid uid, float relativeFireStacks, FlammableC if (relativeFireStacks > 0) relativeFireStacks *= flammable.FireStackIncreaseMultiplier; - flammable.FireStacks = MathF.Min(MathF.Max(MinimumFireStacks, flammable.FireStacks + relativeFireStacks), MaximumFireStacks); + flammable.FireStacks = MathF.Min(MathF.Max(flammable.MinimumFireStacks, flammable.FireStacks + relativeFireStacks), flammable.MaximumFireStacks); if (flammable.OnFire && flammable.FireStacks <= 0) Extinguish(uid, flammable); @@ -429,15 +442,20 @@ public override void Update(float frameTime) continue; } - EnsureComp(uid); - _ignitionSourceSystem.SetIgnited(uid); - - var damageScale = MathF.Min( flammable.FireStacks, 5); + var source = EnsureComp(uid); + _ignitionSourceSystem.SetIgnited((uid, source)); if (TryComp(uid, out TemperatureComponent? temp)) - _temperatureSystem.ChangeHeat(uid, 12500 * damageScale, false, temp); + _temperatureSystem.ChangeHeat(uid, 12500 * flammable.FireStacks, false, temp); + + var ev = new GetFireProtectionEvent(); + // let the thing on fire handle it + RaiseLocalEvent(uid, ref ev); + // and whatever it's wearing + if (_inventoryQuery.TryComp(uid, out var inv)) + _inventory.RelayEvent((uid, inv), ref ev); - _damageableSystem.TryChangeDamage(uid, flammable.Damage * damageScale, interruptsDoAfters: false); + _damageableSystem.TryChangeDamage(uid, flammable.Damage * flammable.FireStacks * ev.Multiplier, interruptsDoAfters: false); AdjustFireStacks(uid, flammable.FirestackFade * (flammable.Resisting ? 10f : 1f), flammable); } diff --git a/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs b/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs index 552ee14232..65977f8c14 100644 --- a/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs @@ -95,9 +95,9 @@ private void ActivateAnalyzer(EntityUid uid, GasAnalyzerComponent component, Ent component.Enabled = true; Dirty(component); UpdateAppearance(uid, component); - if(!HasComp(uid)) - AddComp(uid); + EnsureComp(uid); UpdateAnalyzer(uid, component); + OpenUserInterface(uid, user, component); } /// @@ -118,8 +118,7 @@ private void DisableAnalyzer(EntityUid uid, GasAnalyzerComponent? component = nu if (!Resolve(uid, ref component)) return; - if (user != null && TryComp(user, out var actor)) - _userInterface.TryClose(uid, GasAnalyzerUiKey.Key, actor.PlayerSession); + _userInterface.CloseUi(uid, GasAnalyzerUiKey.Key, user); component.Enabled = false; Dirty(component); @@ -132,8 +131,6 @@ private void DisableAnalyzer(EntityUid uid, GasAnalyzerComponent? component = nu /// private void OnDisabledMessage(EntityUid uid, GasAnalyzerComponent component, GasAnalyzerDisableMessage message) { - if (message.Session.AttachedEntity is not {Valid: true}) - return; DisableAnalyzer(uid, component); } @@ -142,10 +139,7 @@ private void OpenUserInterface(EntityUid uid, EntityUid user, GasAnalyzerCompone if (!Resolve(uid, ref component, false)) return; - if (!TryComp(user, out var actor)) - return; - - _userInterface.TryOpen(uid, GasAnalyzerUiKey.Key, actor.PlayerSession); + _userInterface.OpenUi(uid, GasAnalyzerUiKey.Key, user); } /// @@ -169,7 +163,7 @@ private bool UpdateAnalyzer(EntityUid uid, GasAnalyzerComponent? component = nul // Check if position is out of range => don't update and disable if (!component.LastPosition.Value.InRange(EntityManager, _transform, userPos, SharedInteractionSystem.InteractionRange)) { - if(component.User is { } userId && component.Enabled) + if (component.User is { } userId && component.Enabled) _popup.PopupEntity(Loc.GetString("gas-analyzer-shutoff"), userId, userId); DisableAnalyzer(uid, component, component.User); return false; @@ -182,13 +176,13 @@ private bool UpdateAnalyzer(EntityUid uid, GasAnalyzerComponent? component = nul var tileMixture = _atmo.GetContainingMixture(uid, true); if (tileMixture != null) { - gasMixList.Add(new GasMixEntry(Loc.GetString("gas-analyzer-window-environment-tab-label"), tileMixture.Pressure, tileMixture.Temperature, + gasMixList.Add(new GasMixEntry(Loc.GetString("gas-analyzer-window-environment-tab-label"), tileMixture.Volume, tileMixture.Pressure, tileMixture.Temperature, GenerateGasEntryArray(tileMixture))); } else { // No gases were found - gasMixList.Add(new GasMixEntry(Loc.GetString("gas-analyzer-window-environment-tab-label"), 0f, 0f)); + gasMixList.Add(new GasMixEntry(Loc.GetString("gas-analyzer-window-environment-tab-label"), 0f, 0f, 0f)); } var deviceFlipped = false; @@ -209,8 +203,8 @@ private bool UpdateAnalyzer(EntityUid uid, GasAnalyzerComponent? component = nul { foreach (var mixes in ev.GasMixtures) { - if(mixes.Value != null) - gasMixList.Add(new GasMixEntry(mixes.Key, mixes.Value.Pressure, mixes.Value.Temperature, GenerateGasEntryArray(mixes.Value))); + if (mixes.Item2 != null) + gasMixList.Add(new GasMixEntry(mixes.Item1, mixes.Item2.Volume, mixes.Item2.Pressure, mixes.Item2.Temperature, GenerateGasEntryArray(mixes.Item2))); } deviceFlipped = ev.DeviceFlipped; @@ -223,7 +217,16 @@ private bool UpdateAnalyzer(EntityUid uid, GasAnalyzerComponent? component = nul foreach (var pair in node.Nodes) { if (pair.Value is PipeNode pipeNode) - gasMixList.Add(new GasMixEntry(pair.Key, pipeNode.Air.Pressure, pipeNode.Air.Temperature, GenerateGasEntryArray(pipeNode.Air))); + { + // check if the volume is zero for some reason so we don't divide by zero + if (pipeNode.Air.Volume == 0f) + continue; + // only display the gas in the analyzed pipe element, not the whole system + var pipeAir = pipeNode.Air.Clone(); + pipeAir.Multiply(pipeNode.Volume / pipeNode.Air.Volume); + pipeAir.Volume = pipeNode.Volume; + gasMixList.Add(new GasMixEntry(pair.Key, pipeAir.Volume, pipeAir.Pressure, pipeAir.Temperature, GenerateGasEntryArray(pipeAir))); + } } } } @@ -233,7 +236,7 @@ private bool UpdateAnalyzer(EntityUid uid, GasAnalyzerComponent? component = nul if (gasMixList.Count == 0) return false; - _userInterface.TrySendUiMessage(uid, GasAnalyzerUiKey.Key, + _userInterface.ServerSendUiMessage(uid, GasAnalyzerUiKey.Key, new GasAnalyzerUserMessage(gasMixList.ToArray(), component.Target != null ? Name(component.Target.Value) : string.Empty, GetNetEntity(component.Target) ?? NetEntity.Invalid, @@ -286,9 +289,9 @@ private GasEntry[] GenerateGasEntryArray(GasMixture? mixture) public sealed class GasAnalyzerScanEvent : EntityEventArgs { /// - /// Key is the mix name (ex "pipe", "inlet", "filter"), value is the pipe direction and GasMixture. Add all mixes that should be reported when scanned. + /// The string is for the name (ex "pipe", "inlet", "filter"), GasMixture for the corresponding gas mix. Add all mixes that should be reported when scanned. /// - public Dictionary? GasMixtures; + public List<(string, GasMixture?)>? GasMixtures; /// /// If the device is flipped. Flipped is defined as when the inline input is 90 degrees CW to the side input diff --git a/Content.Server/Atmos/EntitySystems/GasTankSystem.cs b/Content.Server/Atmos/EntitySystems/GasTankSystem.cs index 80842416e8..07594820fc 100644 --- a/Content.Server/Atmos/EntitySystems/GasTankSystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasTankSystem.cs @@ -75,7 +75,7 @@ private void OnGasTankSetPressure(Entity ent, ref GasTankSetPr public void UpdateUserInterface(Entity ent, bool initialUpdate = false) { var (owner, component) = ent; - _ui.TrySetUiState(owner, SharedGasTankUiKey.Key, + _ui.SetUiState(owner, SharedGasTankUiKey.Key, new GasTankBoundUserInterfaceState { TankPressure = component.Air?.Pressure ?? 0, @@ -359,7 +359,8 @@ public void CheckStatus(Entity ent) /// private void OnAnalyzed(EntityUid uid, GasTankComponent component, GasAnalyzerScanEvent args) { - args.GasMixtures = new Dictionary { {Name(uid), component.Air} }; + args.GasMixtures ??= new List<(string, GasMixture?)>(); + args.GasMixtures.Add((Name(uid), component.Air)); } private void OnGasTankPrice(EntityUid uid, GasTankComponent component, ref PriceCalculationEvent args) diff --git a/Content.Server/Atmos/IGasMixtureHolder.cs b/Content.Server/Atmos/IGasMixtureHolder.cs index 96efa6b983..65d7ba69a7 100644 --- a/Content.Server/Atmos/IGasMixtureHolder.cs +++ b/Content.Server/Atmos/IGasMixtureHolder.cs @@ -1,4 +1,6 @@ -namespace Content.Server.Atmos +using Content.Shared.Atmos; + +namespace Content.Server.Atmos { public interface IGasMixtureHolder { diff --git a/Content.Server/Atmos/IGasReactionEffect.cs b/Content.Server/Atmos/IGasReactionEffect.cs index bd229694bb..9fc9231908 100644 --- a/Content.Server/Atmos/IGasReactionEffect.cs +++ b/Content.Server/Atmos/IGasReactionEffect.cs @@ -1,5 +1,6 @@ using Content.Server.Atmos.EntitySystems; -using Content.Server.Atmos.Reactions; +using Content.Shared.Atmos; +using Content.Shared.Atmos.Reactions; namespace Content.Server.Atmos { diff --git a/Content.Server/Atmos/Monitor/Components/AirAlarmComponent.cs b/Content.Server/Atmos/Monitor/Components/AirAlarmComponent.cs index 7030d607a6..93f704fe21 100644 --- a/Content.Server/Atmos/Monitor/Components/AirAlarmComponent.cs +++ b/Content.Server/Atmos/Monitor/Components/AirAlarmComponent.cs @@ -24,8 +24,6 @@ public sealed partial class AirAlarmComponent : Component public readonly Dictionary ScrubberData = new(); public readonly Dictionary SensorData = new(); - public HashSet ActivePlayers = new(); - public bool CanSync = true; /// diff --git a/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs b/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs index 2922d0796a..04a9023c1d 100644 --- a/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs +++ b/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs @@ -223,8 +223,7 @@ private void OnPowerChanged(EntityUid uid, AirAlarmComponent component, ref Powe private void OnClose(EntityUid uid, AirAlarmComponent component, BoundUIClosedEvent args) { - component.ActivePlayers.Remove(args.Session.UserId); - if (component.ActivePlayers.Count == 0) + if (!_ui.IsUiOpen(uid, SharedAirAlarmInterfaceKey.Key)) RemoveActiveInterface(uid); } @@ -247,9 +246,6 @@ private void OnShutdown(EntityUid uid, AirAlarmComponent component, ComponentShu private void OnActivate(EntityUid uid, AirAlarmComponent component, ActivateInWorldEvent args) { - if (!TryComp(args.User, out var actor)) - return; - if (TryComp(uid, out var panel) && panel.Open) { args.Handled = false; @@ -259,10 +255,7 @@ private void OnActivate(EntityUid uid, AirAlarmComponent component, ActivateInWo if (!this.IsPowered(uid, EntityManager)) return; - var ui = _ui.GetUiOrNull(uid, SharedAirAlarmInterfaceKey.Key); - if (ui != null) - _ui.OpenUi(ui, actor.PlayerSession); - component.ActivePlayers.Add(actor.PlayerSession.UserId); + _ui.OpenUi(uid, SharedAirAlarmInterfaceKey.Key, args.User); AddActiveInterface(uid); SyncAllDevices(uid); UpdateUI(uid, component); @@ -270,7 +263,7 @@ private void OnActivate(EntityUid uid, AirAlarmComponent component, ActivateInWo private void OnResyncAll(EntityUid uid, AirAlarmComponent component, AirAlarmResyncAllDevicesMessage args) { - if (!AccessCheck(uid, args.Session.AttachedEntity, component)) + if (!AccessCheck(uid, args.Actor, component)) { return; } @@ -285,7 +278,7 @@ private void OnResyncAll(EntityUid uid, AirAlarmComponent component, AirAlarmRes private void OnUpdateAlarmMode(EntityUid uid, AirAlarmComponent component, AirAlarmUpdateAlarmModeMessage args) { - if (AccessCheck(uid, args.Session.AttachedEntity, component)) + if (AccessCheck(uid, args.Actor, component)) { var addr = string.Empty; if (TryComp(uid, out var netConn)) @@ -309,7 +302,7 @@ private void OnUpdateAutoMode(EntityUid uid, AirAlarmComponent component, AirAla private void OnUpdateThreshold(EntityUid uid, AirAlarmComponent component, AirAlarmUpdateAlarmThresholdMessage args) { - if (AccessCheck(uid, args.Session.AttachedEntity, component)) + if (AccessCheck(uid, args.Actor, component)) SetThreshold(uid, args.Address, args.Type, args.Threshold, args.Gas); else UpdateUI(uid, component); @@ -317,7 +310,7 @@ private void OnUpdateThreshold(EntityUid uid, AirAlarmComponent component, AirAl private void OnUpdateDeviceData(EntityUid uid, AirAlarmComponent component, AirAlarmUpdateDeviceDataMessage args) { - if (AccessCheck(uid, args.Session.AttachedEntity, component) + if (AccessCheck(uid, args.Actor, component) && _deviceList.ExistsInDeviceList(uid, args.Address)) { SetDeviceData(uid, args.Address, args.Data); @@ -330,7 +323,7 @@ private void OnUpdateDeviceData(EntityUid uid, AirAlarmComponent component, AirA private void OnCopyDeviceData(EntityUid uid, AirAlarmComponent component, AirAlarmCopyDeviceDataMessage args) { - if (!AccessCheck(uid, args.Session.AttachedEntity, component)) + if (!AccessCheck(uid, args.Actor, component)) { UpdateUI(uid, component); return; @@ -377,7 +370,7 @@ private bool AccessCheck(EntityUid uid, EntityUid? user, AirAlarmComponent? comp private void OnAtmosAlarm(EntityUid uid, AirAlarmComponent component, AtmosAlarmEvent args) { - if (component.ActivePlayers.Count != 0) + if (_ui.IsUiOpen(uid, SharedAirAlarmInterfaceKey.Key)) { SyncAllDevices(uid); } @@ -571,7 +564,7 @@ private void RemoveActiveInterface(EntityUid uid) /// private void ForceCloseAllInterfaces(EntityUid uid) { - _ui.TryCloseAll(uid, SharedAirAlarmInterfaceKey.Key); + _ui.CloseUi(uid, SharedAirAlarmInterfaceKey.Key); } private void OnAtmosUpdate(EntityUid uid, AirAlarmComponent alarm, ref AtmosDeviceUpdateEvent args) @@ -593,6 +586,21 @@ public float CalculateTemperatureAverage(AirAlarmComponent alarm) : 0f; } + public float CalculateGasMolarConcentrationAverage(AirAlarmComponent alarm, Gas gas, out float percentage) + { + percentage = 0f; + + var data = alarm.SensorData.Values.SelectMany(v => v.Gases.Where(g => g.Key == gas)); + + if (data.Count() == 0) + return 0f; + + var averageMol = data.Select(kvp => kvp.Value).Average(); + percentage = data.Select(kvp => kvp.Value).Sum() / alarm.SensorData.Values.Select(v => v.TotalMoles).Sum(); + + return averageMol; + } + public void UpdateUI(EntityUid uid, AirAlarmComponent? alarm = null, DeviceNetworkComponent? devNet = null, AtmosAlarmableComponent? alarmable = null) { if (!Resolve(uid, ref alarm, ref devNet, ref alarmable)) @@ -639,7 +647,7 @@ public void UpdateUI(EntityUid uid, AirAlarmComponent? alarm = null, DeviceNetwo highestAlarm = AtmosAlarmType.Normal; } - _ui.TrySetUiState( + _ui.SetUiState( uid, SharedAirAlarmInterfaceKey.Key, new AirAlarmUIState(devNet.Address, deviceCount, pressure, temperature, dataToSend, alarm.CurrentMode, alarm.CurrentTab, highestAlarm.Value, alarm.AutoMode)); diff --git a/Content.Server/Atmos/Piping/Binary/Components/GasPortComponent.cs b/Content.Server/Atmos/Piping/Binary/Components/GasPortComponent.cs index fb7ee6d5cf..315362383c 100644 --- a/Content.Server/Atmos/Piping/Binary/Components/GasPortComponent.cs +++ b/Content.Server/Atmos/Piping/Binary/Components/GasPortComponent.cs @@ -1,3 +1,5 @@ +using Content.Shared.Atmos; + namespace Content.Server.Atmos.Piping.Binary.Components { [RegisterComponent] diff --git a/Content.Server/Atmos/Piping/Binary/Components/GasRecyclerComponent.cs b/Content.Server/Atmos/Piping/Binary/Components/GasRecyclerComponent.cs index e1eb0072b9..aa7e3e0b36 100644 --- a/Content.Server/Atmos/Piping/Binary/Components/GasRecyclerComponent.cs +++ b/Content.Server/Atmos/Piping/Binary/Components/GasRecyclerComponent.cs @@ -1,11 +1,12 @@ using Content.Shared.Atmos; +using Content.Shared.Construction.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Atmos.Piping.Binary.Components { [RegisterComponent] public sealed partial class GasRecyclerComponent : Component { - [ViewVariables(VVAccess.ReadOnly)] [DataField("reacting")] public Boolean Reacting { get; set; } = false; @@ -17,10 +18,28 @@ public sealed partial class GasRecyclerComponent : Component [DataField("outlet")] public string OutletName { get; set; } = "outlet"; - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public float MinTemp = 300 + Atmospherics.T0C; - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] + public float BaseMinTemp = 300 + Atmospherics.T0C; + + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MachinePartMinTemp = "Capacitor"; + + [DataField] + public float PartRatingMinTempMultiplier = 0.95f; + + [ViewVariables(VVAccess.ReadWrite)] public float MinPressure = 30 * Atmospherics.OneAtmosphere; + + [DataField] + public float BaseMinPressure = 30 * Atmospherics.OneAtmosphere; + + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MachinePartMinPressure = "Manipulator"; + + [DataField] + public float PartRatingMinPressureMultiplier = 0.8f; } } diff --git a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPressurePumpSystem.cs b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPressurePumpSystem.cs index af25d04df9..83b7b67ba4 100644 --- a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPressurePumpSystem.cs +++ b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPressurePumpSystem.cs @@ -98,7 +98,7 @@ private void OnPumpLeaveAtmosphere(EntityUid uid, GasPressurePumpComponent pump, UpdateAppearance(uid, pump); DirtyUI(uid, pump); - _userInterfaceSystem.TryCloseAll(uid, GasPressurePumpUiKey.Key); + _userInterfaceSystem.CloseUi(uid, GasPressurePumpUiKey.Key); } private void OnPumpActivate(EntityUid uid, GasPressurePumpComponent pump, ActivateInWorldEvent args) @@ -108,7 +108,7 @@ private void OnPumpActivate(EntityUid uid, GasPressurePumpComponent pump, Activa if (Transform(uid).Anchored) { - _userInterfaceSystem.TryOpen(uid, GasPressurePumpUiKey.Key, actor.PlayerSession); + _userInterfaceSystem.OpenUi(uid, GasPressurePumpUiKey.Key, actor.PlayerSession); DirtyUI(uid, pump); } else @@ -123,7 +123,7 @@ private void OnToggleStatusMessage(EntityUid uid, GasPressurePumpComponent pump, { pump.Enabled = args.Enabled; _adminLogger.Add(LogType.AtmosPowerChanged, LogImpact.Medium, - $"{ToPrettyString(args.Session.AttachedEntity!.Value):player} set the power on {ToPrettyString(uid):device} to {args.Enabled}"); + $"{ToPrettyString(args.Actor):player} set the power on {ToPrettyString(uid):device} to {args.Enabled}"); DirtyUI(uid, pump); UpdateAppearance(uid, pump); } @@ -132,7 +132,7 @@ private void OnOutputPressureChangeMessage(EntityUid uid, GasPressurePumpCompone { pump.TargetPressure = Math.Clamp(args.Pressure, 0f, Atmospherics.MaxOutputPressure); _adminLogger.Add(LogType.AtmosPressureChanged, LogImpact.Medium, - $"{ToPrettyString(args.Session.AttachedEntity!.Value):player} set the pressure on {ToPrettyString(uid):device} to {args.Pressure}kPa"); + $"{ToPrettyString(args.Actor):player} set the pressure on {ToPrettyString(uid):device} to {args.Pressure}kPa"); DirtyUI(uid, pump); } @@ -142,7 +142,7 @@ private void DirtyUI(EntityUid uid, GasPressurePumpComponent? pump) if (!Resolve(uid, ref pump)) return; - _userInterfaceSystem.TrySetUiState(uid, GasPressurePumpUiKey.Key, + _userInterfaceSystem.SetUiState(uid, GasPressurePumpUiKey.Key, new GasPressurePumpBoundUserInterfaceState(EntityManager.GetComponent(uid).EntityName, pump.TargetPressure, pump.Enabled)); } diff --git a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasRecyclerSystem.cs b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasRecyclerSystem.cs index 3ebc509492..40b9d88846 100644 --- a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasRecyclerSystem.cs +++ b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasRecyclerSystem.cs @@ -1,6 +1,7 @@ using Content.Server.Atmos.EntitySystems; using Content.Server.Atmos.Piping.Binary.Components; using Content.Server.Atmos.Piping.Components; +using Content.Server.Construction; using Content.Server.NodeContainer; using Content.Server.NodeContainer.EntitySystems; using Content.Server.NodeContainer.Nodes; @@ -28,6 +29,8 @@ public override void Initialize() SubscribeLocalEvent(OnUpdate); SubscribeLocalEvent(OnDisabled); SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent(OnRefreshParts); + SubscribeLocalEvent(OnUpgradeExamine); } private void OnEnabled(EntityUid uid, GasRecyclerComponent comp, ref AtmosDeviceEnabledEvent args) @@ -116,5 +119,20 @@ private void UpdateAppearance(EntityUid uid, GasRecyclerComponent? comp = null) _appearance.SetData(uid, PumpVisuals.Enabled, comp.Reacting); } + + private void OnRefreshParts(EntityUid uid, GasRecyclerComponent component, RefreshPartsEvent args) + { + var ratingTemp = args.PartRatings[component.MachinePartMinTemp]; + var ratingPressure = args.PartRatings[component.MachinePartMinPressure]; + + component.MinTemp = component.BaseMinTemp * MathF.Pow(component.PartRatingMinTempMultiplier, ratingTemp - 1); + component.MinPressure = component.BaseMinPressure * MathF.Pow(component.PartRatingMinPressureMultiplier, ratingPressure - 1); + } + + private void OnUpgradeExamine(EntityUid uid, GasRecyclerComponent component, UpgradeExamineEvent args) + { + args.AddPercentageUpgrade("gas-recycler-upgrade-min-temp", component.MinTemp / component.BaseMinTemp); + args.AddPercentageUpgrade("gas-recycler-upgrade-min-pressure", component.MinPressure / component.BaseMinPressure); + } } } diff --git a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasVolumePumpSystem.cs b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasVolumePumpSystem.cs index e4767c4061..cbcd1f4fa3 100644 --- a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasVolumePumpSystem.cs +++ b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasVolumePumpSystem.cs @@ -128,7 +128,7 @@ private void OnVolumePumpLeaveAtmosphere(EntityUid uid, GasVolumePumpComponent p UpdateAppearance(uid, pump); DirtyUI(uid, pump); - _userInterfaceSystem.TryCloseAll(uid, GasVolumePumpUiKey.Key); + _userInterfaceSystem.CloseUi(uid, GasVolumePumpUiKey.Key); } private void OnPumpActivate(EntityUid uid, GasVolumePumpComponent pump, ActivateInWorldEvent args) @@ -138,7 +138,7 @@ private void OnPumpActivate(EntityUid uid, GasVolumePumpComponent pump, Activate if (Transform(uid).Anchored) { - _userInterfaceSystem.TryOpen(uid, GasVolumePumpUiKey.Key, actor.PlayerSession); + _userInterfaceSystem.OpenUi(uid, GasVolumePumpUiKey.Key, actor.PlayerSession); DirtyUI(uid, pump); } else @@ -153,7 +153,7 @@ private void OnToggleStatusMessage(EntityUid uid, GasVolumePumpComponent pump, G { pump.Enabled = args.Enabled; _adminLogger.Add(LogType.AtmosPowerChanged, LogImpact.Medium, - $"{ToPrettyString(args.Session.AttachedEntity!.Value):player} set the power on {ToPrettyString(uid):device} to {args.Enabled}"); + $"{ToPrettyString(args.Actor):player} set the power on {ToPrettyString(uid):device} to {args.Enabled}"); DirtyUI(uid, pump); UpdateAppearance(uid, pump); } @@ -162,7 +162,7 @@ private void OnTransferRateChangeMessage(EntityUid uid, GasVolumePumpComponent p { pump.TransferRate = Math.Clamp(args.TransferRate, 0f, pump.MaxTransferRate); _adminLogger.Add(LogType.AtmosVolumeChanged, LogImpact.Medium, - $"{ToPrettyString(args.Session.AttachedEntity!.Value):player} set the transfer rate on {ToPrettyString(uid):device} to {args.TransferRate}"); + $"{ToPrettyString(args.Actor):player} set the transfer rate on {ToPrettyString(uid):device} to {args.TransferRate}"); DirtyUI(uid, pump); } @@ -171,7 +171,7 @@ private void DirtyUI(EntityUid uid, GasVolumePumpComponent? pump) if (!Resolve(uid, ref pump)) return; - _userInterfaceSystem.TrySetUiState(uid, GasVolumePumpUiKey.Key, + _userInterfaceSystem.SetUiState(uid, GasVolumePumpUiKey.Key, new GasVolumePumpBoundUserInterfaceState(Name(uid), pump.TransferRate, pump.Enabled)); } diff --git a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs index fbd4260469..007d304e98 100644 --- a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs +++ b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs @@ -73,7 +73,7 @@ private void OnFilterUpdated(EntityUid uid, GasFilterComponent filter, ref Atmos if (filter.FilteredGas.HasValue) { - var filteredOut = new GasMixture() {Temperature = removed.Temperature}; + var filteredOut = new GasMixture() { Temperature = removed.Temperature }; filteredOut.SetMoles(filter.FilteredGas.Value, removed.GetMoles(filter.FilteredGas.Value)); removed.SetMoles(filter.FilteredGas.Value, 0f); @@ -94,7 +94,7 @@ private void OnFilterLeaveAtmosphere(EntityUid uid, GasFilterComponent filter, r _ambientSoundSystem.SetAmbience(uid, false); DirtyUI(uid, filter); - _userInterfaceSystem.TryCloseAll(uid, GasFilterUiKey.Key); + _userInterfaceSystem.CloseUi(uid, GasFilterUiKey.Key); } private void OnFilterActivate(EntityUid uid, GasFilterComponent filter, ActivateInWorldEvent args) @@ -104,7 +104,7 @@ private void OnFilterActivate(EntityUid uid, GasFilterComponent filter, Activate if (EntityManager.GetComponent(uid).Anchored) { - _userInterfaceSystem.TryOpen(uid, GasFilterUiKey.Key, actor.PlayerSession); + _userInterfaceSystem.OpenUi(uid, GasFilterUiKey.Key, actor.PlayerSession); DirtyUI(uid, filter); } else @@ -120,7 +120,7 @@ private void DirtyUI(EntityUid uid, GasFilterComponent? filter) if (!Resolve(uid, ref filter)) return; - _userInterfaceSystem.TrySetUiState(uid, GasFilterUiKey.Key, + _userInterfaceSystem.SetUiState(uid, GasFilterUiKey.Key, new GasFilterBoundUserInterfaceState(MetaData(uid).EntityName, filter.TransferRate, filter.Enabled, filter.FilteredGas)); } @@ -136,7 +136,7 @@ private void OnToggleStatusMessage(EntityUid uid, GasFilterComponent filter, Gas { filter.Enabled = args.Enabled; _adminLogger.Add(LogType.AtmosPowerChanged, LogImpact.Medium, - $"{ToPrettyString(args.Session.AttachedEntity!.Value):player} set the power on {ToPrettyString(uid):device} to {args.Enabled}"); + $"{ToPrettyString(args.Actor):player} set the power on {ToPrettyString(uid):device} to {args.Enabled}"); DirtyUI(uid, filter); UpdateAppearance(uid, filter); } @@ -145,7 +145,7 @@ private void OnTransferRateChangeMessage(EntityUid uid, GasFilterComponent filte { filter.TransferRate = Math.Clamp(args.Rate, 0f, filter.MaxTransferRate); _adminLogger.Add(LogType.AtmosVolumeChanged, LogImpact.Medium, - $"{ToPrettyString(args.Session.AttachedEntity!.Value):player} set the transfer rate on {ToPrettyString(uid):device} to {args.Rate}"); + $"{ToPrettyString(args.Actor):player} set the transfer rate on {ToPrettyString(uid):device} to {args.Rate}"); DirtyUI(uid, filter); } @@ -158,7 +158,7 @@ private void OnSelectGasMessage(EntityUid uid, GasFilterComponent filter, GasFil { filter.FilteredGas = parsedGas; _adminLogger.Add(LogType.AtmosFilterChanged, LogImpact.Medium, - $"{ToPrettyString(args.Session.AttachedEntity!.Value):player} set the filter on {ToPrettyString(uid):device} to {parsedGas.ToString()}"); + $"{ToPrettyString(args.Actor):player} set the filter on {ToPrettyString(uid):device} to {parsedGas.ToString()}"); DirtyUI(uid, filter); } else @@ -170,7 +170,7 @@ private void OnSelectGasMessage(EntityUid uid, GasFilterComponent filter, GasFil { filter.FilteredGas = null; _adminLogger.Add(LogType.AtmosFilterChanged, LogImpact.Medium, - $"{ToPrettyString(args.Session.AttachedEntity!.Value):player} set the filter on {ToPrettyString(uid):device} to none"); + $"{ToPrettyString(args.Actor):player} set the filter on {ToPrettyString(uid):device} to none"); DirtyUI(uid, filter); } } @@ -180,17 +180,30 @@ private void OnSelectGasMessage(EntityUid uid, GasFilterComponent filter, GasFil /// private void OnFilterAnalyzed(EntityUid uid, GasFilterComponent component, GasAnalyzerScanEvent args) { - if (!EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer)) - return; - - args.GasMixtures ??= new Dictionary(); + args.GasMixtures ??= new List<(string, GasMixture?)>(); - if(_nodeContainer.TryGetNode(nodeContainer, component.InletName, out PipeNode? inlet)) - args.GasMixtures.Add(Loc.GetString("gas-analyzer-window-text-inlet"), inlet.Air); - if(_nodeContainer.TryGetNode(nodeContainer, component.FilterName, out PipeNode? filterNode)) - args.GasMixtures.Add(Loc.GetString("gas-analyzer-window-text-filter"), filterNode.Air); - if(_nodeContainer.TryGetNode(nodeContainer, component.OutletName, out PipeNode? outlet)) - args.GasMixtures.Add(Loc.GetString("gas-analyzer-window-text-outlet"), outlet.Air); + // multiply by volume fraction to make sure to send only the gas inside the analyzed pipe element, not the whole pipe system + if (_nodeContainer.TryGetNode(uid, component.InletName, out PipeNode? inlet) && inlet.Air.Volume != 0f) + { + var inletAirLocal = inlet.Air.Clone(); + inletAirLocal.Multiply(inlet.Volume / inlet.Air.Volume); + inletAirLocal.Volume = inlet.Volume; + args.GasMixtures.Add((Loc.GetString("gas-analyzer-window-text-inlet"), inletAirLocal)); + } + if (_nodeContainer.TryGetNode(uid, component.FilterName, out PipeNode? filterNode) && filterNode.Air.Volume != 0f) + { + var filterNodeAirLocal = filterNode.Air.Clone(); + filterNodeAirLocal.Multiply(filterNode.Volume / filterNode.Air.Volume); + filterNodeAirLocal.Volume = filterNode.Volume; + args.GasMixtures.Add((Loc.GetString("gas-analyzer-window-text-filter"), filterNodeAirLocal)); + } + if (_nodeContainer.TryGetNode(uid, component.OutletName, out PipeNode? outlet) && outlet.Air.Volume != 0f) + { + var outletAirLocal = outlet.Air.Clone(); + outletAirLocal.Multiply(outlet.Volume / outlet.Air.Volume); + outletAirLocal.Volume = outlet.Volume; + args.GasMixtures.Add((Loc.GetString("gas-analyzer-window-text-outlet"), outletAirLocal)); + } args.DeviceFlipped = inlet != null && filterNode != null && inlet.CurrentPipeDirection.ToDirection() == filterNode.CurrentPipeDirection.ToDirection().GetClockwise90Degrees(); } diff --git a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs index ba8ebf3c9a..4ab8572843 100644 --- a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs +++ b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs @@ -134,7 +134,7 @@ private void OnMixerLeaveAtmosphere(EntityUid uid, GasMixerComponent mixer, ref DirtyUI(uid, mixer); UpdateAppearance(uid, mixer); - _userInterfaceSystem.TryCloseAll(uid, GasFilterUiKey.Key); + _userInterfaceSystem.CloseUi(uid, GasFilterUiKey.Key); } private void OnMixerActivate(EntityUid uid, GasMixerComponent mixer, ActivateInWorldEvent args) @@ -144,7 +144,7 @@ private void OnMixerActivate(EntityUid uid, GasMixerComponent mixer, ActivateInW if (Transform(uid).Anchored) { - _userInterfaceSystem.TryOpen(uid, GasMixerUiKey.Key, actor.PlayerSession); + _userInterfaceSystem.OpenUi(uid, GasMixerUiKey.Key, actor.PlayerSession); DirtyUI(uid, mixer); } else @@ -160,7 +160,7 @@ private void DirtyUI(EntityUid uid, GasMixerComponent? mixer) if (!Resolve(uid, ref mixer)) return; - _userInterfaceSystem.TrySetUiState(uid, GasMixerUiKey.Key, + _userInterfaceSystem.SetUiState(uid, GasMixerUiKey.Key, new GasMixerBoundUserInterfaceState(EntityManager.GetComponent(uid).EntityName, mixer.TargetPressure, mixer.Enabled, mixer.InletOneConcentration)); } @@ -176,7 +176,7 @@ private void OnToggleStatusMessage(EntityUid uid, GasMixerComponent mixer, GasMi { mixer.Enabled = args.Enabled; _adminLogger.Add(LogType.AtmosPowerChanged, LogImpact.Medium, - $"{ToPrettyString(args.Session.AttachedEntity!.Value):player} set the power on {ToPrettyString(uid):device} to {args.Enabled}"); + $"{ToPrettyString(args.Actor):player} set the power on {ToPrettyString(uid):device} to {args.Enabled}"); DirtyUI(uid, mixer); UpdateAppearance(uid, mixer); } @@ -185,7 +185,7 @@ private void OnOutputPressureChangeMessage(EntityUid uid, GasMixerComponent mixe { mixer.TargetPressure = Math.Clamp(args.Pressure, 0f, mixer.MaxTargetPressure); _adminLogger.Add(LogType.AtmosPressureChanged, LogImpact.Medium, - $"{ToPrettyString(args.Session.AttachedEntity!.Value):player} set the pressure on {ToPrettyString(uid):device} to {args.Pressure}kPa"); + $"{ToPrettyString(args.Actor):player} set the pressure on {ToPrettyString(uid):device} to {args.Pressure}kPa"); DirtyUI(uid, mixer); } @@ -196,7 +196,7 @@ private void OnChangeNodePercentageMessage(EntityUid uid, GasMixerComponent mixe mixer.InletOneConcentration = nodeOne; mixer.InletTwoConcentration = 1.0f - mixer.InletOneConcentration; _adminLogger.Add(LogType.AtmosRatioChanged, LogImpact.Medium, - $"{EntityManager.ToPrettyString(args.Session.AttachedEntity!.Value):player} set the ratio on {EntityManager.ToPrettyString(uid):device} to {mixer.InletOneConcentration}:{mixer.InletTwoConcentration}"); + $"{EntityManager.ToPrettyString(args.Actor):player} set the ratio on {EntityManager.ToPrettyString(uid):device} to {mixer.InletOneConcentration}:{mixer.InletTwoConcentration}"); DirtyUI(uid, mixer); } @@ -205,19 +205,31 @@ private void OnChangeNodePercentageMessage(EntityUid uid, GasMixerComponent mixe /// private void OnMixerAnalyzed(EntityUid uid, GasMixerComponent component, GasAnalyzerScanEvent args) { - if (!EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer)) - return; - - var gasMixDict = new Dictionary(); + args.GasMixtures ??= new List<(string, GasMixture?)>(); - if(_nodeContainer.TryGetNode(nodeContainer, component.InletOneName, out PipeNode? inletOne)) - gasMixDict.Add($"{inletOne.CurrentPipeDirection} {Loc.GetString("gas-analyzer-window-text-inlet")}", inletOne.Air); - if(_nodeContainer.TryGetNode(nodeContainer, component.InletTwoName, out PipeNode? inletTwo)) - gasMixDict.Add($"{inletTwo.CurrentPipeDirection} {Loc.GetString("gas-analyzer-window-text-inlet")}", inletTwo.Air); - if(_nodeContainer.TryGetNode(nodeContainer, component.OutletName, out PipeNode? outlet)) - gasMixDict.Add(Loc.GetString("gas-analyzer-window-text-outlet"), outlet.Air); + // multiply by volume fraction to make sure to send only the gas inside the analyzed pipe element, not the whole pipe system + if (_nodeContainer.TryGetNode(uid, component.InletOneName, out PipeNode? inletOne) && inletOne.Air.Volume != 0f) + { + var inletOneAirLocal = inletOne.Air.Clone(); + inletOneAirLocal.Multiply(inletOne.Volume / inletOne.Air.Volume); + inletOneAirLocal.Volume = inletOne.Volume; + args.GasMixtures.Add(($"{inletOne.CurrentPipeDirection} {Loc.GetString("gas-analyzer-window-text-inlet")}", inletOneAirLocal)); + } + if (_nodeContainer.TryGetNode(uid, component.InletTwoName, out PipeNode? inletTwo) && inletTwo.Air.Volume != 0f) + { + var inletTwoAirLocal = inletTwo.Air.Clone(); + inletTwoAirLocal.Multiply(inletTwo.Volume / inletTwo.Air.Volume); + inletTwoAirLocal.Volume = inletTwo.Volume; + args.GasMixtures.Add(($"{inletTwo.CurrentPipeDirection} {Loc.GetString("gas-analyzer-window-text-inlet")}", inletTwoAirLocal)); + } + if (_nodeContainer.TryGetNode(uid, component.OutletName, out PipeNode? outlet) && outlet.Air.Volume != 0f) + { + var outletAirLocal = outlet.Air.Clone(); + outletAirLocal.Multiply(outlet.Volume / outlet.Air.Volume); + outletAirLocal.Volume = outlet.Volume; + args.GasMixtures.Add((Loc.GetString("gas-analyzer-window-text-outlet"), outletAirLocal)); + } - args.GasMixtures = gasMixDict; args.DeviceFlipped = inletOne != null && inletTwo != null && inletOne.CurrentPipeDirection.ToDirection() == inletTwo.CurrentPipeDirection.ToDirection().GetClockwise90Degrees(); } } diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs index d53e29c949..60ae230b1b 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs @@ -101,7 +101,7 @@ private void DirtyUI(EntityUid uid, tankPressure = tankComponent.Air.Pressure; } - _ui.TrySetUiState(uid, GasCanisterUiKey.Key, + _ui.SetUiState(uid, GasCanisterUiKey.Key, new GasCanisterBoundUserInterfaceState(Name(uid), canister.Air.Pressure, portStatus, tankLabel, tankPressure, canister.ReleasePressure, canister.ReleaseValve, canister.MinReleasePressure, canister.MaxReleasePressure)); @@ -109,19 +109,19 @@ private void DirtyUI(EntityUid uid, private void OnHoldingTankEjectMessage(EntityUid uid, GasCanisterComponent canister, GasCanisterHoldingTankEjectMessage args) { - if (canister.GasTankSlot.Item == null || args.Session.AttachedEntity == null) + if (canister.GasTankSlot.Item == null) return; var item = canister.GasTankSlot.Item; - _slots.TryEjectToHands(uid, canister.GasTankSlot, args.Session.AttachedEntity); - _adminLogger.Add(LogType.CanisterTankEjected, LogImpact.Medium, $"Player {ToPrettyString(args.Session.AttachedEntity.GetValueOrDefault()):player} ejected tank {ToPrettyString(item):tank} from {ToPrettyString(uid):canister}"); + _slots.TryEjectToHands(uid, canister.GasTankSlot, args.Actor); + _adminLogger.Add(LogType.CanisterTankEjected, LogImpact.Medium, $"Player {ToPrettyString(args.Actor):player} ejected tank {ToPrettyString(item):tank} from {ToPrettyString(uid):canister}"); } private void OnCanisterChangeReleasePressure(EntityUid uid, GasCanisterComponent canister, GasCanisterChangeReleasePressureMessage args) { var pressure = Math.Clamp(args.Pressure, canister.MinReleasePressure, canister.MaxReleasePressure); - _adminLogger.Add(LogType.CanisterPressure, LogImpact.Medium, $"{ToPrettyString(args.Session.AttachedEntity.GetValueOrDefault()):player} set the release pressure on {ToPrettyString(uid):canister} to {args.Pressure}"); + _adminLogger.Add(LogType.CanisterPressure, LogImpact.Medium, $"{ToPrettyString(args.Actor):player} set the release pressure on {ToPrettyString(uid):canister} to {args.Pressure}"); canister.ReleasePressure = pressure; DirtyUI(uid, canister); @@ -134,14 +134,14 @@ private void OnCanisterChangeReleaseValve(EntityUid uid, GasCanisterComponent ca impact = canister.GasTankSlot.HasItem ? LogImpact.Medium : LogImpact.High; var containedGasDict = new Dictionary(); - var containedGasArray = Gas.GetValues(typeof(Gas)); + var containedGasArray = Enum.GetValues(typeof(Gas)); for (int i = 0; i < containedGasArray.Length; i++) { containedGasDict.Add((Gas)i, canister.Air[i]); } - _adminLogger.Add(LogType.CanisterValve, impact, $"{ToPrettyString(args.Session.AttachedEntity.GetValueOrDefault()):player} set the valve on {ToPrettyString(uid):canister} to {args.Valve:valveState} while it contained [{string.Join(", ", containedGasDict)}]"); + _adminLogger.Add(LogType.CanisterValve, impact, $"{ToPrettyString(args.Actor):player} set the valve on {ToPrettyString(uid):canister} to {args.Valve:valveState} while it contained [{string.Join(", ", containedGasDict)}]"); canister.ReleaseValve = args.Valve; DirtyUI(uid, canister); @@ -222,7 +222,7 @@ private void OnCanisterActivate(EntityUid uid, GasCanisterComponent component, A if (args.Handled) return; - _ui.TryOpen(uid, GasCanisterUiKey.Key, actor.PlayerSession); + _ui.OpenUi(uid, GasCanisterUiKey.Key, actor.PlayerSession); args.Handled = true; } @@ -234,7 +234,7 @@ private void OnCanisterInteractHand(EntityUid uid, GasCanisterComponent componen if (CheckLocked(uid, component, args.User)) return; - _ui.TryOpen(uid, GasCanisterUiKey.Key, actor.PlayerSession); + _ui.OpenUi(uid, GasCanisterUiKey.Key, actor.PlayerSession); args.Handled = true; } @@ -316,9 +316,17 @@ private void CalculateCanisterPrice(EntityUid uid, GasCanisterComponent componen /// /// Returns the gas mixture for the gas analyzer /// - private void OnAnalyzed(EntityUid uid, GasCanisterComponent component, GasAnalyzerScanEvent args) + private void OnAnalyzed(EntityUid uid, GasCanisterComponent canisterComponent, GasAnalyzerScanEvent args) { - args.GasMixtures = new Dictionary { {Name(uid), component.Air} }; + args.GasMixtures ??= new List<(string, GasMixture?)>(); + args.GasMixtures.Add((Name(uid), canisterComponent.Air)); + // if a tank is inserted show it on the analyzer as well + if (canisterComponent.GasTankSlot.Item != null) + { + var tank = canisterComponent.GasTankSlot.Item.Value; + var tankComponent = Comp(tank); + args.GasMixtures.Add((Name(tank), tankComponent.Air)); + } } /// diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs index 720fd5b5b9..01eab560a1 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasThermoMachineSystem.cs @@ -144,7 +144,7 @@ private bool IsHeater(GasThermoMachineComponent comp) private void OnToggleMessage(EntityUid uid, GasThermoMachineComponent thermoMachine, GasThermomachineToggleMessage args) { var powerState = _power.TryTogglePower(uid); - _adminLogger.Add(LogType.AtmosPowerChanged, $"{ToPrettyString(args.Session.AttachedEntity)} turned {(powerState ? "On" : "Off")} {ToPrettyString(uid)}"); + _adminLogger.Add(LogType.AtmosPowerChanged, $"{ToPrettyString(args.Actor)} turned {(powerState ? "On" : "Off")} {ToPrettyString(uid)}"); DirtyUI(uid, thermoMachine); } @@ -155,7 +155,7 @@ private void OnChangeTemperature(EntityUid uid, GasThermoMachineComponent thermo else thermoMachine.TargetTemperature = MathF.Max(args.Temperature, thermoMachine.MinTemperature); thermoMachine.TargetTemperature = MathF.Max(thermoMachine.TargetTemperature, Atmospherics.TCMB); - _adminLogger.Add(LogType.AtmosTemperatureChanged, $"{ToPrettyString(args.Session.AttachedEntity)} set temperature on {ToPrettyString(uid)} to {thermoMachine.TargetTemperature}"); + _adminLogger.Add(LogType.AtmosTemperatureChanged, $"{ToPrettyString(args.Actor)} set temperature on {ToPrettyString(uid)} to {thermoMachine.TargetTemperature}"); DirtyUI(uid, thermoMachine); } @@ -168,8 +168,8 @@ private void DirtyUI(EntityUid uid, GasThermoMachineComponent? thermoMachine, Us if (!Resolve(uid, ref powerReceiver)) return; - _userInterfaceSystem.TrySetUiState(uid, ThermomachineUiKey.Key, - new GasThermomachineBoundUserInterfaceState(thermoMachine.MinTemperature, thermoMachine.MaxTemperature, thermoMachine.TargetTemperature, !powerReceiver.PowerDisabled, IsHeater(thermoMachine)), null, ui); + _userInterfaceSystem.SetUiState(uid, ThermomachineUiKey.Key, + new GasThermomachineBoundUserInterfaceState(thermoMachine.MinTemperature, thermoMachine.MaxTemperature, thermoMachine.TargetTemperature, !powerReceiver.PowerDisabled, IsHeater(thermoMachine))); } private void OnExamined(EntityUid uid, GasThermoMachineComponent thermoMachine, ExaminedEvent args) diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs index a986385f5e..7c12cf3f77 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs @@ -80,7 +80,7 @@ private void OnGasVentPumpUpdated(EntityUid uid, GasVentPumpComponent vent, ref return; } - var timeDelta = args.dt; + var timeDelta = args.dt; var pressureDelta = timeDelta * vent.TargetPressureChange; if (vent.PumpDirection == VentPumpDirection.Releasing && pipe.Air.Pressure > 0) @@ -292,7 +292,7 @@ private void OnExamine(EntityUid uid, GasVentPumpComponent component, ExaminedEv /// private void OnAnalyzed(EntityUid uid, GasVentPumpComponent component, GasAnalyzerScanEvent args) { - var gasMixDict = new Dictionary(); + args.GasMixtures ??= new List<(string, GasMixture?)>(); // these are both called pipe, above it switches using this so I duplicated that...? var nodeName = component.PumpDirection switch @@ -301,10 +301,14 @@ private void OnAnalyzed(EntityUid uid, GasVentPumpComponent component, GasAnalyz VentPumpDirection.Siphoning => component.Outlet, _ => throw new ArgumentOutOfRangeException() }; - if (_nodeContainer.TryGetNode(uid, nodeName, out PipeNode? pipe)) - gasMixDict.Add(nodeName, pipe.Air); - - args.GasMixtures = gasMixDict; + // multiply by volume fraction to make sure to send only the gas inside the analyzed pipe element, not the whole pipe system + if (_nodeContainer.TryGetNode(uid, nodeName, out PipeNode? pipe) && pipe.Air.Volume != 0f) + { + var pipeAirLocal = pipe.Air.Clone(); + pipeAirLocal.Multiply(pipe.Volume / pipe.Air.Volume); + pipeAirLocal.Volume = pipe.Volume; + args.GasMixtures.Add((nodeName, pipeAirLocal)); + } } private void OnWeldChanged(EntityUid uid, GasVentPumpComponent component, ref WeldableChangedEvent args) diff --git a/Content.Server/Atmos/Portable/PortableScrubberComponent.cs b/Content.Server/Atmos/Portable/PortableScrubberComponent.cs index ae9a5da963..fbe2d3f95a 100644 --- a/Content.Server/Atmos/Portable/PortableScrubberComponent.cs +++ b/Content.Server/Atmos/Portable/PortableScrubberComponent.cs @@ -1,4 +1,6 @@ using Content.Shared.Atmos; +using Content.Shared.Construction.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Atmos.Portable { @@ -37,13 +39,51 @@ public sealed partial class PortableScrubberComponent : Component /// /// Maximum internal pressure before it refuses to take more. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public float MaxPressure = 2500; /// - /// The speed at which gas is scrubbed from the environment. + /// The base amount of maximum internal pressure /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] + public float BaseMaxPressure = 2500; + + /// + /// The machine part that modifies the maximum internal pressure + /// + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MachinePartMaxPressure = "MatterBin"; + + /// + /// How much the will affect the pressure. + /// The value will be multiplied by this amount for each increasing part tier. + /// + [DataField] + public float PartRatingMaxPressureModifier = 1.5f; + + /// + /// The speed at which gas is scrubbed from the environment. + /// + [ViewVariables(VVAccess.ReadWrite)] public float TransferRate = 800; + + /// + /// The base speed at which gas is scrubbed from the environment. + /// + [DataField] + public float BaseTransferRate = 800; + + /// + /// The machine part which modifies the speed of + /// + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MachinePartTransferRate = "Manipulator"; + + /// + /// How much the will modify the rate. + /// The value will be multiplied by this amount for each increasing part tier. + /// + [DataField] + public float PartRatingTransferRateModifier = 1.4f; } } diff --git a/Content.Server/Atmos/Portable/PortableScrubberSystem.cs b/Content.Server/Atmos/Portable/PortableScrubberSystem.cs index f9043c091a..fbe40deedb 100644 --- a/Content.Server/Atmos/Portable/PortableScrubberSystem.cs +++ b/Content.Server/Atmos/Portable/PortableScrubberSystem.cs @@ -12,7 +12,9 @@ using Content.Server.NodeContainer.NodeGroups; using Content.Server.Audio; using Content.Server.Administration.Logs; +using Content.Server.Construction; using Content.Server.NodeContainer.EntitySystems; +using Content.Shared.Atmos; using Content.Shared.Database; namespace Content.Server.Atmos.Portable @@ -38,6 +40,8 @@ public override void Initialize() SubscribeLocalEvent(OnExamined); SubscribeLocalEvent(OnDestroyed); SubscribeLocalEvent(OnScrubberAnalyzed); + SubscribeLocalEvent(OnRefreshParts); + SubscribeLocalEvent(OnUpgradeExamine); } private bool IsFull(PortableScrubberComponent component) @@ -151,10 +155,23 @@ private void UpdateAppearance(EntityUid uid, bool isFull, bool isRunning) /// private void OnScrubberAnalyzed(EntityUid uid, PortableScrubberComponent component, GasAnalyzerScanEvent args) { - args.GasMixtures ??= new Dictionary { { Name(uid), component.Air } }; - // If it's connected to a port, include the port side - if (_nodeContainer.TryGetNode(uid, component.PortName, out PipeNode? port)) - args.GasMixtures.Add(component.PortName, port.Air); + args.GasMixtures ??= new List<(string, GasMixture?)>(); + args.GasMixtures.Add((Name(uid), component.Air)); + } + + private void OnRefreshParts(EntityUid uid, PortableScrubberComponent component, RefreshPartsEvent args) + { + var pressureRating = args.PartRatings[component.MachinePartMaxPressure]; + var transferRating = args.PartRatings[component.MachinePartTransferRate]; + + component.MaxPressure = component.BaseMaxPressure * MathF.Pow(component.PartRatingMaxPressureModifier, pressureRating - 1); + component.TransferRate = component.BaseTransferRate * MathF.Pow(component.PartRatingTransferRateModifier, transferRating - 1); + } + + private void OnUpgradeExamine(EntityUid uid, PortableScrubberComponent component, UpgradeExamineEvent args) + { + args.AddPercentageUpgrade("portable-scrubber-component-upgrade-max-pressure", component.MaxPressure / component.BaseMaxPressure); + args.AddPercentageUpgrade("portable-scrubber-component-upgrade-transfer-rate", component.TransferRate / component.BaseTransferRate); } } } diff --git a/Content.Server/Atmos/Portable/SpaceHeaterSystem.cs b/Content.Server/Atmos/Portable/SpaceHeaterSystem.cs index 8094b0e1a6..70eea2d9b7 100644 --- a/Content.Server/Atmos/Portable/SpaceHeaterSystem.cs +++ b/Content.Server/Atmos/Portable/SpaceHeaterSystem.cs @@ -163,7 +163,7 @@ private void DirtyUI(EntityUid uid, SpaceHeaterComponent? spaceHeater) { return; } - _userInterfaceSystem.TrySetUiState(uid, SpaceHeaterUiKey.Key, + _userInterfaceSystem.SetUiState(uid, SpaceHeaterUiKey.Key, new SpaceHeaterBoundUserInterfaceState(spaceHeater.MinTemperature, spaceHeater.MaxTemperature, thermoMachine.TargetTemperature, !powerReceiver.PowerDisabled, spaceHeater.Mode, spaceHeater.PowerLevel)); } diff --git a/Content.Server/Atmos/Reactions/AmmoniaOxygenReaction.cs b/Content.Server/Atmos/Reactions/AmmoniaOxygenReaction.cs index 197034ce54..2c071afab1 100644 --- a/Content.Server/Atmos/Reactions/AmmoniaOxygenReaction.cs +++ b/Content.Server/Atmos/Reactions/AmmoniaOxygenReaction.cs @@ -1,5 +1,6 @@ using Content.Server.Atmos.EntitySystems; using Content.Shared.Atmos; +using Content.Shared.Atmos.Reactions; using JetBrains.Annotations; namespace Content.Server.Atmos.Reactions; diff --git a/Content.Server/Atmos/Reactions/FrezonCoolantReaction.cs b/Content.Server/Atmos/Reactions/FrezonCoolantReaction.cs index 051ee8202d..475c149cf3 100644 --- a/Content.Server/Atmos/Reactions/FrezonCoolantReaction.cs +++ b/Content.Server/Atmos/Reactions/FrezonCoolantReaction.cs @@ -1,5 +1,6 @@ using Content.Server.Atmos.EntitySystems; using Content.Shared.Atmos; +using Content.Shared.Atmos.Reactions; using JetBrains.Annotations; namespace Content.Server.Atmos.Reactions; diff --git a/Content.Server/Atmos/Reactions/FrezonProductionReaction.cs b/Content.Server/Atmos/Reactions/FrezonProductionReaction.cs index 4ffd9c2f5b..e3d3ece6b6 100644 --- a/Content.Server/Atmos/Reactions/FrezonProductionReaction.cs +++ b/Content.Server/Atmos/Reactions/FrezonProductionReaction.cs @@ -1,5 +1,6 @@ using Content.Server.Atmos.EntitySystems; using Content.Shared.Atmos; +using Content.Shared.Atmos.Reactions; using JetBrains.Annotations; namespace Content.Server.Atmos.Reactions; diff --git a/Content.Server/Atmos/Reactions/GasReactionPrototype.cs b/Content.Server/Atmos/Reactions/GasReactionPrototype.cs index 0ee29de3bf..48a113bb9a 100644 --- a/Content.Server/Atmos/Reactions/GasReactionPrototype.cs +++ b/Content.Server/Atmos/Reactions/GasReactionPrototype.cs @@ -1,22 +1,10 @@ using Content.Server.Atmos.EntitySystems; using Content.Shared.Atmos; +using Content.Shared.Atmos.Reactions; using Robust.Shared.Prototypes; namespace Content.Server.Atmos.Reactions { - [Flags] - public enum ReactionResult : byte - { - NoReaction = 0, - Reacting = 1, - StopReactions = 2, - } - - public enum GasReaction : byte - { - Fire = 0, - } - [Prototype("gasReaction")] public sealed partial class GasReactionPrototype : IPrototype { diff --git a/Content.Server/Atmos/Reactions/N2ODecompositionReaction.cs b/Content.Server/Atmos/Reactions/N2ODecompositionReaction.cs index 7fce663dc3..367c0eb7b9 100644 --- a/Content.Server/Atmos/Reactions/N2ODecompositionReaction.cs +++ b/Content.Server/Atmos/Reactions/N2ODecompositionReaction.cs @@ -1,5 +1,6 @@ using Content.Server.Atmos.EntitySystems; using Content.Shared.Atmos; +using Content.Shared.Atmos.Reactions; using JetBrains.Annotations; namespace Content.Server.Atmos.Reactions; diff --git a/Content.Server/Atmos/Reactions/PlasmaFireReaction.cs b/Content.Server/Atmos/Reactions/PlasmaFireReaction.cs index e7ab7835fd..98d567d4ed 100644 --- a/Content.Server/Atmos/Reactions/PlasmaFireReaction.cs +++ b/Content.Server/Atmos/Reactions/PlasmaFireReaction.cs @@ -1,5 +1,6 @@ using Content.Server.Atmos.EntitySystems; using Content.Shared.Atmos; +using Content.Shared.Atmos.Reactions; using JetBrains.Annotations; namespace Content.Server.Atmos.Reactions diff --git a/Content.Server/Atmos/Reactions/TritiumFireReaction.cs b/Content.Server/Atmos/Reactions/TritiumFireReaction.cs index 7103859a90..3ad0a4b04d 100644 --- a/Content.Server/Atmos/Reactions/TritiumFireReaction.cs +++ b/Content.Server/Atmos/Reactions/TritiumFireReaction.cs @@ -1,5 +1,6 @@ using Content.Server.Atmos.EntitySystems; using Content.Shared.Atmos; +using Content.Shared.Atmos.Reactions; using JetBrains.Annotations; namespace Content.Server.Atmos.Reactions diff --git a/Content.Server/Atmos/Reactions/WaterVaporReaction.cs b/Content.Server/Atmos/Reactions/WaterVaporReaction.cs index 8db8fdbd66..e06c4b75ff 100644 --- a/Content.Server/Atmos/Reactions/WaterVaporReaction.cs +++ b/Content.Server/Atmos/Reactions/WaterVaporReaction.cs @@ -1,5 +1,7 @@ using Content.Server.Atmos.EntitySystems; using Content.Server.Fluids.EntitySystems; +using Content.Shared.Atmos; +using Content.Shared.Atmos.Reactions; using Content.Shared.Chemistry.Components; using Content.Shared.FixedPoint; using Content.Shared.Maps; diff --git a/Content.Server/Atmos/Rotting/RottingSystem.cs b/Content.Server/Atmos/Rotting/RottingSystem.cs index 5070b3f197..40bdf65743 100644 --- a/Content.Server/Atmos/Rotting/RottingSystem.cs +++ b/Content.Server/Atmos/Rotting/RottingSystem.cs @@ -46,6 +46,29 @@ private void OnTempIsRotting(EntityUid uid, TemperatureComponent component, ref args.Handled = component.CurrentTemperature < Atmospherics.T0C + 0.85f; } + + public void ReduceAccumulator(EntityUid uid, TimeSpan time) + { + if (!TryComp(uid, out var perishable)) + return; + + if (!TryComp(uid, out var rotting)) + { + perishable.RotAccumulator -= time; + return; + } + var total = (rotting.TotalRotTime + perishable.RotAccumulator) - time; + + if (total < perishable.RotAfter) + { + RemCompDeferred(uid, rotting); + perishable.RotAccumulator = total; + } + + else + rotting.TotalRotTime = total - perishable.RotAfter; + } + /// /// Is anything speeding up the decay? /// e.g. buried in a grave diff --git a/Content.Server/Atmos/Serialization/TileAtmosCollectionSerializer.cs b/Content.Server/Atmos/Serialization/TileAtmosCollectionSerializer.cs index 00be83e86d..5b30d65e48 100644 --- a/Content.Server/Atmos/Serialization/TileAtmosCollectionSerializer.cs +++ b/Content.Server/Atmos/Serialization/TileAtmosCollectionSerializer.cs @@ -1,4 +1,5 @@ using System.Globalization; +using Content.Shared.Atmos; using Robust.Shared.Serialization; using Robust.Shared.Serialization.Manager; using Robust.Shared.Serialization.Markdown; diff --git a/Content.Server/Atmos/TileMixtureEnumerator.cs b/Content.Server/Atmos/TileMixtureEnumerator.cs index 20440032da..5601615f50 100644 --- a/Content.Server/Atmos/TileMixtureEnumerator.cs +++ b/Content.Server/Atmos/TileMixtureEnumerator.cs @@ -1,4 +1,5 @@ using System.Diagnostics.CodeAnalysis; +using Content.Shared.Atmos; namespace Content.Server.Atmos; diff --git a/Content.Server/Audio/Jukebox/JukeboxSystem.cs b/Content.Server/Audio/Jukebox/JukeboxSystem.cs index bfb9b2099a..cc9235e3d7 100644 --- a/Content.Server/Audio/Jukebox/JukeboxSystem.cs +++ b/Content.Server/Audio/Jukebox/JukeboxSystem.cs @@ -5,6 +5,7 @@ using Robust.Shared.Audio; using Robust.Shared.Audio.Components; using Robust.Shared.Audio.Systems; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using JukeboxComponent = Content.Shared.Audio.Jukebox.JukeboxComponent; @@ -66,8 +67,11 @@ private void OnJukeboxPause(Entity ent, ref JukeboxPauseMessag private void OnJukeboxSetTime(EntityUid uid, JukeboxComponent component, JukeboxSetTimeMessage args) { - var offset = (args.Session.Channel.Ping * 1.5f) / 1000f; - Audio.SetPlaybackPosition(component.AudioStream, args.SongTime + offset); + if (TryComp(args.Actor, out ActorComponent? actorComp)) + { + var offset = actorComp.PlayerSession.Channel.Ping * 1.5f / 1000f; + Audio.SetPlaybackPosition(component.AudioStream, args.SongTime + offset); + } } private void OnPowerChanged(Entity entity, ref PowerChangedEvent args) diff --git a/Content.Server/Bed/BedSystem.cs b/Content.Server/Bed/BedSystem.cs index f1bd9482e5..976ef5139c 100644 --- a/Content.Server/Bed/BedSystem.cs +++ b/Content.Server/Bed/BedSystem.cs @@ -2,6 +2,7 @@ using Content.Server.Bed.Components; using Content.Server.Bed.Sleep; using Content.Server.Body.Systems; +using Content.Server.Construction; using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; using Content.Shared.Bed; @@ -9,6 +10,7 @@ using Content.Shared.Body.Components; using Content.Shared.Buckle.Components; using Content.Shared.Damage; +using Content.Shared.Emag.Components; using Content.Shared.Emag.Systems; using Content.Shared.Mobs.Systems; using Robust.Shared.Timing; @@ -32,6 +34,8 @@ public override void Initialize() SubscribeLocalEvent(OnBuckleChange); SubscribeLocalEvent(OnPowerChanged); SubscribeLocalEvent(OnEmagged); + SubscribeLocalEvent(OnRefreshParts); + SubscribeLocalEvent(OnUpgradeExamine); } private void ManageUpdateList(EntityUid uid, HealOnBuckleComponent component, ref BuckleChangeEvent args) @@ -66,7 +70,7 @@ public override void Update(float frameTime) foreach (var healedEntity in strapComponent.BuckledEntities) { - if (_mobStateSystem.IsDead(healedEntity) + if (_mobStateSystem.IsDead(healedEntity) || HasComp(healedEntity)) continue; @@ -126,5 +130,18 @@ private void UpdateMetabolisms(EntityUid uid, StasisBedComponent component, bool RaiseLocalEvent(buckledEntity, ref metabolicEvent); } } + + private void OnRefreshParts(EntityUid uid, StasisBedComponent component, RefreshPartsEvent args) + { + var metabolismRating = args.PartRatings[component.MachinePartMetabolismModifier]; + component.Multiplier = component.BaseMultiplier * metabolismRating; // Linear scaling so it's not OP + if (HasComp(uid)) + component.Multiplier = 1f / component.Multiplier; + } + + private void OnUpgradeExamine(EntityUid uid, StasisBedComponent component, UpgradeExamineEvent args) + { + args.AddPercentageUpgrade("stasis-bed-component-upgrade-stasis", component.Multiplier / component.BaseMultiplier); + } } } diff --git a/Content.Server/Bed/Components/StasisBedComponent.cs b/Content.Server/Bed/Components/StasisBedComponent.cs index e2175d6e64..bb4096a2a5 100644 --- a/Content.Server/Bed/Components/StasisBedComponent.cs +++ b/Content.Server/Bed/Components/StasisBedComponent.cs @@ -1,12 +1,21 @@ +using Content.Shared.Construction.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + namespace Content.Server.Bed.Components { [RegisterComponent] public sealed partial class StasisBedComponent : Component { + [DataField] + public float BaseMultiplier = 10f; + /// - /// What the metabolic update rate will be multiplied by (higher = slower metabolism) + /// What the metabolic update rate will be multiplied by (higher = slower metabolism) /// [ViewVariables(VVAccess.ReadWrite)] public float Multiplier = 10f; + + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MachinePartMetabolismModifier = "Capacitor"; } } diff --git a/Content.Server/Bed/Cryostorage/CryostorageSystem.cs b/Content.Server/Bed/Cryostorage/CryostorageSystem.cs index 2e7f8c4235..1369fa20f1 100644 --- a/Content.Server/Bed/Cryostorage/CryostorageSystem.cs +++ b/Content.Server/Bed/Cryostorage/CryostorageSystem.cs @@ -79,9 +79,7 @@ private void OnBeforeUIOpened(Entity ent, ref BeforeActiva private void OnRemoveItemBuiMessage(Entity ent, ref CryostorageRemoveItemBuiMessage args) { var (_, comp) = ent; - if (args.Session.AttachedEntity is not { } attachedEntity) - return; - + var attachedEntity = args.Actor; var cryoContained = GetEntity(args.StoredEntity); if (!comp.StoredPlayers.Contains(cryoContained) || !IsInPausedMap(cryoContained)) @@ -114,6 +112,7 @@ private void OnRemoveItemBuiMessage(Entity ent, ref Cryost AdminLog.Add(LogType.Action, LogImpact.High, $"{ToPrettyString(attachedEntity):player} removed item {ToPrettyString(entity)} from cryostorage-contained player " + $"{ToPrettyString(cryoContained):player}, stored in cryostorage {ToPrettyString(ent)}"); + _container.TryRemoveFromContainer(entity.Value); _transform.SetCoordinates(entity.Value, Transform(attachedEntity).Coordinates); _hands.PickupOrDrop(attachedEntity, entity.Value); @@ -122,8 +121,8 @@ private void OnRemoveItemBuiMessage(Entity ent, ref Cryost private void UpdateCryostorageUIState(Entity ent) { - var state = new CryostorageBuiState(GetAllContainedData(ent).ToList()); - _ui.TrySetUiState(ent, CryostorageUIKey.Key, state); + var state = new CryostorageBuiState(GetAllContainedData(ent)); + _ui.SetUiState(ent.Owner, CryostorageUIKey.Key, state); } private void OnPlayerSpawned(Entity ent, ref PlayerSpawnCompleteEvent args) @@ -293,12 +292,17 @@ protected override void OnInsertedContainer(Entity ent, re _chatManager.ChatMessageToOne(ChatChannel.Server, msg, msg, uid, false, actor.PlayerSession.Channel); } - private IEnumerable GetAllContainedData(Entity ent) + private List GetAllContainedData(Entity ent) { + var data = new List(); + data.EnsureCapacity(ent.Comp.StoredPlayers.Count); + foreach (var contained in ent.Comp.StoredPlayers) { - yield return GetContainedData(contained); + data.Add(GetContainedData(contained)); } + + return data; } private CryostorageContainedPlayerData GetContainedData(EntityUid uid) diff --git a/Content.Server/Body/Components/BloodstreamComponent.cs b/Content.Server/Body/Components/BloodstreamComponent.cs index dd93da9598..f7024a6395 100644 --- a/Content.Server/Body/Components/BloodstreamComponent.cs +++ b/Content.Server/Body/Components/BloodstreamComponent.cs @@ -1,5 +1,6 @@ using Content.Server.Body.Systems; using Content.Server.Chemistry.EntitySystems; +using Content.Server.Traits; using Content.Server.Traits.Assorted; using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.Reagent; @@ -83,6 +84,14 @@ public sealed partial class BloodstreamComponent : Component [DataField] public FixedPoint2 BloodRefreshAmount = 1.0f; + /// + /// How much hunger/thirst is used to regenerate one unit of blood. Set to zero to disable. + /// The actual thirst/hunger rate will scale with . + /// + /// Those will have no effect if the entity has no hunger/thirst components. + [DataField] + public float BloodRegenerationHunger = 1f, BloodRegenerationThirst = 1f; + /// /// How much blood needs to be in the temporary solution in order to create a puddle? /// @@ -172,18 +181,5 @@ public sealed partial class BloodstreamComponent : Component /// [ViewVariables(VVAccess.ReadWrite)] public TimeSpan StatusTime; - - /// - /// If this is true, the entity will not passively regenerate blood, - /// and instead will slowly lose blood. - /// - [DataField] - public bool HasBloodDeficiency = false; - - /// - /// How much reagent of blood should be removed with blood deficiency in each update interval? - /// - [DataField] - public FixedPoint2 BloodDeficiencyLossAmount; } } diff --git a/Content.Server/Body/Events/NaturalBloodRegenerationAttemptEvent.cs b/Content.Server/Body/Events/NaturalBloodRegenerationAttemptEvent.cs new file mode 100644 index 0000000000..8ad2b88efe --- /dev/null +++ b/Content.Server/Body/Events/NaturalBloodRegenerationAttemptEvent.cs @@ -0,0 +1,15 @@ +using Content.Shared.FixedPoint; + +namespace Content.Server.Body.Events; + +/// +/// Raised on a mob when its bloodstream tries to perform natural blood regeneration. +/// +[ByRefEvent] +public sealed class NaturalBloodRegenerationAttemptEvent : CancellableEntityEventArgs +{ + /// + /// How much blood the mob will regenerate on this tick. Can be negative. + /// + public FixedPoint2 Amount; +} diff --git a/Content.Server/Body/Systems/BloodstreamSystem.cs b/Content.Server/Body/Systems/BloodstreamSystem.cs index b37ac5efeb..6f7dd1b140 100644 --- a/Content.Server/Body/Systems/BloodstreamSystem.cs +++ b/Content.Server/Body/Systems/BloodstreamSystem.cs @@ -1,9 +1,10 @@ +using Content.Server._White.Other.BloodLust; using Content.Server.Body.Components; +using Content.Server.Body.Events; using Content.Server.Chemistry.Containers.EntitySystems; using Content.Server.Chemistry.ReactionEffects; using Content.Server.Fluids.EntitySystems; using Content.Server.Forensics; -using Content.Server.HealthExaminable; using Content.Server.Popups; using Content.Shared.Alert; using Content.Shared.Chemistry.Components; @@ -13,7 +14,11 @@ using Content.Shared.Damage.Prototypes; using Content.Shared.Drunk; using Content.Shared.FixedPoint; +using Content.Shared.HealthExaminable; using Content.Shared.Mobs.Systems; +using Content.Shared.Nutrition.Components; +using Content.Shared.Nutrition.EntitySystems; +using Content.Shared.Movement.Systems; using Content.Shared.Popups; using Content.Shared.Rejuvenate; using Content.Shared.Speech.EntitySystems; @@ -39,6 +44,9 @@ public sealed class BloodstreamSystem : EntitySystem [Dependency] private readonly SharedStutteringSystem _stutteringSystem = default!; [Dependency] private readonly AlertsSystem _alertsSystem = default!; [Dependency] private readonly ForensicsSystem _forensicsSystem = default!; + [Dependency] private readonly HungerSystem _hunger = default!; + [Dependency] private readonly ThirstSystem _thirst = default!; + [Dependency] private readonly MovementSpeedModifierSystem _movementSpeedModifier = default!; // WD public override void Initialize() { @@ -118,17 +126,9 @@ public override void Update(float frameTime) if (!_solutionContainerSystem.ResolveSolution(uid, bloodstream.BloodSolutionName, ref bloodstream.BloodSolution, out var bloodSolution)) continue; - // Removes blood for Blood Deficiency constantly. - if (bloodstream.HasBloodDeficiency) - { - if (!_mobStateSystem.IsDead(uid)) - RemoveBlood(uid, bloodstream.BloodDeficiencyLossAmount, bloodstream); - } - // Adds blood to their blood level if it is below the maximum. - else if (bloodSolution.Volume < bloodSolution.MaxVolume && !_mobStateSystem.IsDead(uid)) - { - TryModifyBloodLevel(uid, bloodstream.BloodRefreshAmount, bloodstream); - } + // Try to apply natural blood regeneration/bloodloss + if (!_mobStateSystem.IsDead(uid)) + TryDoNaturalRegeneration((uid, bloodstream), bloodSolution); // Removes blood from the bloodstream based on bleed amount (bleed rate) // as well as stop their bleeding to a certain extent. @@ -201,7 +201,7 @@ private void OnDamageChanged(Entity ent, ref DamageChanged } // TODO probably cache this or something. humans get hurt a lot - if (!_prototypeManager.TryIndex(ent.Comp.DamageBleedModifiers, out var modifiers)) + if (!_prototypeManager.TryIndex(ent.Comp.DamageBleedModifiers, out var modifiers)) return; var bloodloss = DamageSpecifier.ApplyModifierSet(args.DamageDelta, modifiers); @@ -215,11 +215,9 @@ private void OnDamageChanged(Entity ent, ref DamageChanged var totalFloat = total.Float(); TryModifyBleedAmount(ent, totalFloat, ent); - /// - /// Critical hit. Causes target to lose blood, using the bleed rate modifier of the weapon, currently divided by 5 - /// The crit chance is currently the bleed rate modifier divided by 25. - /// Higher damage weapons have a higher chance to crit! - /// + // Critical hit. Causes target to lose blood, using the bleed rate modifier of the weapon, currently divided by 5 + // The crit chance is currently the bleed rate modifier divided by 25. + // Higher damage weapons have a higher chance to crit! var prob = Math.Clamp(totalFloat / 25, 0, 1); if (totalFloat > 0 && _robustRandom.Prob(prob)) { @@ -349,10 +347,18 @@ public void SetBloodLossThreshold(EntityUid uid, float threshold, BloodstreamCom comp.BloodlossThreshold = threshold; } + public void SetBloodMaxVolume(EntityUid uid, FixedPoint2 volume, BloodstreamComponent? comp = null) + { + if (!Resolve(uid, ref comp)) + return; + + comp.BloodMaxVolume = volume; + } + /// /// Attempts to modify the blood level of this entity directly. /// - public bool TryModifyBloodLevel(EntityUid uid, FixedPoint2 amount, BloodstreamComponent? component = null) + public bool TryModifyBloodLevel(EntityUid uid, FixedPoint2 amount, BloodstreamComponent? component = null, bool createPuddle = true) // WD EDIT { if (!Resolve(uid, ref component, logMissing: false) || !_solutionContainerSystem.ResolveSolution(uid, component.BloodSolutionName, ref component.BloodSolution)) @@ -373,7 +379,7 @@ public bool TryModifyBloodLevel(EntityUid uid, FixedPoint2 amount, BloodstreamCo tempSolution.AddSolution(newSol, _prototypeManager); - if (tempSolution.Volume > component.BleedPuddleThreshold) + if (tempSolution.Volume > component.BleedPuddleThreshold && createPuddle) // WD EDIT { // Pass some of the chemstream into the spilled blood. if (_solutionContainerSystem.ResolveSolution(uid, component.ChemicalSolutionName, ref component.ChemicalSolution)) @@ -406,6 +412,16 @@ public bool TryModifyBleedAmount(EntityUid uid, float amount, BloodstreamCompone component.BleedAmount += amount; component.BleedAmount = Math.Clamp(component.BleedAmount, 0, component.MaxBleedAmount); + // WD EDIT START + if (HasComp(uid)) + { + if (component.BleedAmount == 0f) + RemComp(uid); + + _movementSpeedModifier.RefreshMovementSpeedModifiers(uid); + } + // WD EDIT END + if (component.BleedAmount == 0) _alertsSystem.ClearAlert(uid, AlertType.Bleed); else @@ -490,4 +506,35 @@ private void RemoveBlood(EntityUid uid, FixedPoint2 amount, BloodstreamComponent bloodSolution.RemoveReagent(component.BloodReagent, amount); } + + /// + /// Tries to apply natural blood regeneration/loss to the entity. Returns true if succesful. + /// + private bool TryDoNaturalRegeneration(Entity ent, Solution bloodSolution) + { + var ev = new NaturalBloodRegenerationAttemptEvent { Amount = ent.Comp.BloodRefreshAmount }; + RaiseLocalEvent(ent, ref ev); + + if (ev.Cancelled || (ev.Amount > 0 && bloodSolution.Volume >= bloodSolution.MaxVolume)) + return false; + + var usedHunger = ev.Amount * ent.Comp.BloodRegenerationHunger; + var usedThirst = ev.Amount * ent.Comp.BloodRegenerationThirst; + + // First, check if the entity has enough hunger/thirst + var hungerComp = CompOrNull(ent); + var thirstComp = CompOrNull(ent); + if (usedHunger > 0 && hungerComp is not null && (hungerComp.CurrentHunger < usedHunger || hungerComp.CurrentThreshold <= HungerThreshold.Starving) + || usedThirst > 0 && thirstComp is not null && (thirstComp.CurrentThirst < usedThirst || thirstComp.CurrentThirstThreshold <= ThirstThreshold.Parched)) + return false; + + // Then actually expend hunger and thirst (if necessary) and regenerate blood. + if (usedHunger > 0 && hungerComp is not null) + _hunger.ModifyHunger(ent, (float) -usedHunger, hungerComp); + + if (usedThirst > 0 && thirstComp is not null) + _thirst.ModifyThirst(ent, thirstComp, (float) -usedThirst); + + return TryModifyBloodLevel(ent, ev.Amount, ent.Comp); + } } diff --git a/Content.Server/Body/Systems/InternalsSystem.cs b/Content.Server/Body/Systems/InternalsSystem.cs index 9607a808f6..db078e2f29 100644 --- a/Content.Server/Body/Systems/InternalsSystem.cs +++ b/Content.Server/Body/Systems/InternalsSystem.cs @@ -8,6 +8,7 @@ using Content.Shared.Hands.Components; using Content.Shared.Internals; using Content.Shared.Inventory; +using Content.Shared.Roles; using Content.Shared.Verbs; using Robust.Shared.Containers; using Robust.Shared.Utility; @@ -23,17 +24,29 @@ public sealed class InternalsSystem : EntitySystem [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; - public const SlotFlags InventorySlots = SlotFlags.POCKET | SlotFlags.BELT; + private EntityQuery _internalsQuery; public override void Initialize() { base.Initialize(); + _internalsQuery = GetEntityQuery(); + SubscribeLocalEvent(OnInhaleLocation); SubscribeLocalEvent(OnInternalsStartup); SubscribeLocalEvent(OnInternalsShutdown); SubscribeLocalEvent>(OnGetInteractionVerbs); SubscribeLocalEvent(OnDoAfter); + + SubscribeLocalEvent(OnStartingGear); + } + + private void OnStartingGear(ref StartingGearEquippedEvent ev) + { + if (!_internalsQuery.TryComp(ev.Entity, out var internals) || internals.BreathToolEntity == null) + return; + + ToggleInternals(ev.Entity, ev.Entity, force: false, internals); } private void OnGetInteractionVerbs( @@ -218,7 +231,7 @@ private short GetSeverity(InternalsComponent component) if (component.BreathToolEntity is null || !AreInternalsWorking(component)) return 2; - // If pressure in the tank is below low pressure threshhold, flash warning on internals UI + // If pressure in the tank is below low pressure threshold, flash warning on internals UI if (TryComp(component.GasTankEntity, out var gasTank) && gasTank.IsLowPressure) { diff --git a/Content.Server/Botany/Components/SeedExtractorComponent.cs b/Content.Server/Botany/Components/SeedExtractorComponent.cs index ddb04f213d..d765e079ce 100644 --- a/Content.Server/Botany/Components/SeedExtractorComponent.cs +++ b/Content.Server/Botany/Components/SeedExtractorComponent.cs @@ -1,4 +1,7 @@ using Content.Server.Botany.Systems; +using Content.Server.Construction; +using Content.Shared.Construction.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Botany.Components; @@ -7,14 +10,33 @@ namespace Content.Server.Botany.Components; public sealed partial class SeedExtractorComponent : Component { /// - /// The minimum amount of seed packets dropped. + /// The minimum amount of seed packets dropped with no machine upgrades. /// - [DataField("baseMinSeeds"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public int BaseMinSeeds = 1; /// - /// The maximum amount of seed packets dropped. + /// The maximum amount of seed packets dropped with no machine upgrades. /// - [DataField("baseMaxSeeds"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public int BaseMaxSeeds = 3; + + /// + /// Modifier to the amount of seeds outputted, set on . + /// + [ViewVariables(VVAccess.ReadWrite)] + public float SeedAmountMultiplier; + + /// + /// Machine part whose rating modifies the amount of seed packets dropped. + /// + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MachinePartSeedAmount = "Manipulator"; + + /// + /// How much the machine part quality affects the amount of seeds outputted. + /// Going up a tier will multiply the seed output by this amount. + /// + [DataField] + public float PartRatingSeedAmountMultiplier = 1.5f; } diff --git a/Content.Server/Botany/SeedPrototype.cs b/Content.Server/Botany/SeedPrototype.cs index 2644da2a3b..dd3555f143 100644 --- a/Content.Server/Botany/SeedPrototype.cs +++ b/Content.Server/Botany/SeedPrototype.cs @@ -2,16 +2,16 @@ using Content.Server.Botany.Systems; using Content.Shared.Atmos; using Content.Shared.Chemistry.Reagent; +using Robust.Shared.Audio; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; using Robust.Shared.Utility; -using Robust.Shared.Audio; namespace Content.Server.Botany; [Prototype("seed")] -public sealed class SeedPrototype : SeedData, IPrototype +public sealed partial class SeedPrototype : SeedData, IPrototype { [IdDataField] public string ID { get; private init; } = default!; } @@ -70,7 +70,7 @@ public partial struct SeedChemQuantity /// When chemicals are added to produce, the potency of the seed is divided with this value. Final chemical amount is the result plus the `Min` value. /// Example: PotencyDivisor of 20 with seed potency of 55 results in 2.75, 55/20 = 2.75. If minimum is 1 then final result will be 3.75 of that chemical, 55/20+1 = 3.75. /// - [DataField("PotencyDivisor")] public int PotencyDivisor; + [DataField] public int PotencyDivisor; /// /// Inherent chemical is one that is NOT result of mutation or crossbreeding. These chemicals are removed if species mutation is executed. diff --git a/Content.Server/Botany/Systems/PlantHolderSystem.cs b/Content.Server/Botany/Systems/PlantHolderSystem.cs index 721536a7c0..c8842e1493 100644 --- a/Content.Server/Botany/Systems/PlantHolderSystem.cs +++ b/Content.Server/Botany/Systems/PlantHolderSystem.cs @@ -6,6 +6,7 @@ using Content.Server.Ghost.Roles.Components; using Content.Server.Kitchen.Components; using Content.Server.Popups; +using Content.Shared.Atmos; using Content.Shared.Botany; using Content.Shared.Burial.Components; using Content.Shared.Chemistry.Reagent; diff --git a/Content.Server/Botany/Systems/SeedExtractorSystem.cs b/Content.Server/Botany/Systems/SeedExtractorSystem.cs index f1ae6c9f11..4c547b96f0 100644 --- a/Content.Server/Botany/Systems/SeedExtractorSystem.cs +++ b/Content.Server/Botany/Systems/SeedExtractorSystem.cs @@ -1,8 +1,10 @@ using Content.Server.Botany.Components; +using Content.Server.Construction; using Content.Server.Popups; using Content.Server.Power.EntitySystems; using Content.Shared.Interaction; using Content.Shared.Popups; +using Robust.Shared.Player; using Robust.Shared.Random; namespace Content.Server.Botany.Systems; @@ -18,6 +20,8 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnInteractUsing); + SubscribeLocalEvent(OnRefreshParts); + SubscribeLocalEvent(OnUpgradeExamine); } private void OnInteractUsing(EntityUid uid, SeedExtractorComponent seedExtractor, InteractUsingEvent args) @@ -25,8 +29,7 @@ private void OnInteractUsing(EntityUid uid, SeedExtractorComponent seedExtractor if (!this.IsPowered(uid, EntityManager)) return; - if (!TryComp(args.Used, out ProduceComponent? produce)) - return; + if (!TryComp(args.Used, out ProduceComponent? produce)) return; if (!_botanySystem.TryGetSeed(produce, out var seed) || seed.Seedless) { _popupSystem.PopupCursor(Loc.GetString("seed-extractor-component-no-seeds",("name", args.Used)), @@ -39,7 +42,7 @@ private void OnInteractUsing(EntityUid uid, SeedExtractorComponent seedExtractor QueueDel(args.Used); - var amount = _random.Next(seedExtractor.BaseMinSeeds, seedExtractor.BaseMaxSeeds + 1); + var amount = (int) _random.NextFloat(seedExtractor.BaseMinSeeds, seedExtractor.BaseMaxSeeds + 1) * seedExtractor.SeedAmountMultiplier; var coords = Transform(uid).Coordinates; if (amount > 1) @@ -50,4 +53,15 @@ private void OnInteractUsing(EntityUid uid, SeedExtractorComponent seedExtractor _botanySystem.SpawnSeedPacket(seed, coords, args.User); } } + + private void OnRefreshParts(EntityUid uid, SeedExtractorComponent seedExtractor, RefreshPartsEvent args) + { + var manipulatorQuality = args.PartRatings[seedExtractor.MachinePartSeedAmount]; + seedExtractor.SeedAmountMultiplier = MathF.Pow(seedExtractor.PartRatingSeedAmountMultiplier, manipulatorQuality - 1); + } + + private void OnUpgradeExamine(EntityUid uid, SeedExtractorComponent seedExtractor, UpgradeExamineEvent args) + { + args.AddPercentageUpgrade("seed-extractor-component-upgrade-seed-yield", seedExtractor.SeedAmountMultiplier); + } } diff --git a/Content.Server/Cargo/Components/StationCargoOrderDatabaseComponent.cs b/Content.Server/Cargo/Components/StationCargoOrderDatabaseComponent.cs index c30db08bbe..2e3b2c2115 100644 --- a/Content.Server/Cargo/Components/StationCargoOrderDatabaseComponent.cs +++ b/Content.Server/Cargo/Components/StationCargoOrderDatabaseComponent.cs @@ -1,4 +1,6 @@ +using Content.Server.Station.Components; using Content.Shared.Cargo; +using Content.Shared.Cargo.Components; using Content.Shared.Cargo.Prototypes; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; @@ -38,3 +40,17 @@ public sealed partial class StationCargoOrderDatabaseComponent : Component [DataField] public EntProtoId PrinterOutput = "PaperCargoInvoice"; } + +/// +/// Event broadcast before a cargo order is fulfilled, allowing alternate systems to fulfill the order. +/// +[ByRefEvent] +public record struct FulfillCargoOrderEvent(Entity Station, CargoOrderData Order, Entity OrderConsole) +{ + public Entity OrderConsole = OrderConsole; + public Entity Station = Station; + public CargoOrderData Order = Order; + + public EntityUid? FulfillmentEntity; + public bool Handled = false; +} diff --git a/Content.Server/Cargo/Components/StationLogisticStatsDatabaseComponent.cs b/Content.Server/Cargo/Components/StationLogisticStatsDatabaseComponent.cs new file mode 100644 index 0000000000..ca1fbeaad0 --- /dev/null +++ b/Content.Server/Cargo/Components/StationLogisticStatsDatabaseComponent.cs @@ -0,0 +1,14 @@ +using Content.Shared.Cargo; +using Content.Shared.CartridgeLoader.Cartridges; + +namespace Content.Server.Cargo.Components; + +/// +/// Added to the abstract representation of a station to track stats related to mail delivery and income +/// +[RegisterComponent, Access(typeof(SharedCargoSystem))] +public sealed partial class StationLogisticStatsComponent : Component +{ + [DataField] + public MailStats Metrics { get; set; } +} diff --git a/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs b/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs index 22e5c67e17..e132e4f12a 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs @@ -52,7 +52,7 @@ private void OnBountyConsoleOpened(EntityUid uid, CargoBountyConsoleComponent co return; var untilNextSkip = bountyDb.NextSkipTime - _timing.CurTime; - _uiSystem.TrySetUiState(uid, CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(bountyDb.Bounties, untilNextSkip)); + _uiSystem.SetUiState(uid, CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(bountyDb.Bounties, untilNextSkip)); } private void OnPrintLabelMessage(EntityUid uid, CargoBountyConsoleComponent component, BountyPrintLabelMessage args) @@ -83,7 +83,7 @@ private void OnSkipBountyMessage(EntityUid uid, CargoBountyConsoleComponent comp if (!TryGetBountyFromId(station, args.BountyId, out var bounty)) return; - if (args.Session.AttachedEntity is not { Valid: true } mob) + if (args.Actor is not { Valid: true } mob) return; if (TryComp(uid, out var accessReaderComponent) && @@ -99,7 +99,7 @@ private void OnSkipBountyMessage(EntityUid uid, CargoBountyConsoleComponent comp FillBountyDatabase(station); db.NextSkipTime = _timing.CurTime + db.SkipDelay; var untilNextSkip = db.NextSkipTime - _timing.CurTime; - _uiSystem.TrySetUiState(uid, CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(db.Bounties, untilNextSkip)); + _uiSystem.SetUiState(uid, CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(db.Bounties, untilNextSkip)); _audio.PlayPvs(component.SkipSound, uid); } @@ -462,10 +462,12 @@ public void UpdateBountyConsoles() { if (_station.GetOwningStation(uid) is not { } station || !TryComp(station, out var db)) + { continue; + } var untilNextSkip = db.NextSkipTime - _timing.CurTime; - _uiSystem.TrySetUiState(uid, CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(db.Bounties, untilNextSkip), ui: ui); + _uiSystem.SetUiState((uid, ui), CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(db.Bounties, untilNextSkip)); } } diff --git a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs index d8b55a7237..8978e6b2bf 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs @@ -102,12 +102,12 @@ private void UpdateConsole(float frameTime) private void OnApproveOrderMessage(EntityUid uid, CargoOrderConsoleComponent component, CargoConsoleApproveOrderMessage args) { - if (args.Session.AttachedEntity is not { Valid: true } player) + if (args.Actor is not { Valid: true } player) return; if (!_accessReaderSystem.IsAllowed(player, uid)) { - ConsolePopup(args.Session, Loc.GetString("cargo-console-order-not-allowed")); + ConsolePopup(args.Actor, Loc.GetString("cargo-console-order-not-allowed")); PlayDenySound(uid, component); return; } @@ -119,7 +119,7 @@ private void OnApproveOrderMessage(EntityUid uid, CargoOrderConsoleComponent com !TryComp(station, out StationDataComponent? stationData) || !TryGetOrderDatabase(station, out var orderDatabase)) { - ConsolePopup(args.Session, Loc.GetString("cargo-console-station-not-found")); + ConsolePopup(args.Actor, Loc.GetString("cargo-console-station-not-found")); PlayDenySound(uid, component); return; } @@ -134,7 +134,7 @@ private void OnApproveOrderMessage(EntityUid uid, CargoOrderConsoleComponent com // Invalid order if (!_protoMan.HasIndex(order.ProductId)) { - ConsolePopup(args.Session, Loc.GetString("cargo-console-invalid-product")); + ConsolePopup(args.Actor, Loc.GetString("cargo-console-invalid-product")); PlayDenySound(uid, component); return; } @@ -145,7 +145,7 @@ private void OnApproveOrderMessage(EntityUid uid, CargoOrderConsoleComponent com // Too many orders, avoid them getting spammed in the UI. if (amount >= capacity) { - ConsolePopup(args.Session, Loc.GetString("cargo-console-too-many")); + ConsolePopup(args.Actor, Loc.GetString("cargo-console-too-many")); PlayDenySound(uid, component); return; } @@ -156,7 +156,7 @@ private void OnApproveOrderMessage(EntityUid uid, CargoOrderConsoleComponent com if (cappedAmount != order.OrderQuantity) { order.OrderQuantity = cappedAmount; - ConsolePopup(args.Session, Loc.GetString("cargo-console-snip-snip")); + ConsolePopup(args.Actor, Loc.GetString("cargo-console-snip-snip")); PlayDenySound(uid, component); } @@ -165,18 +165,25 @@ private void OnApproveOrderMessage(EntityUid uid, CargoOrderConsoleComponent com // Not enough balance if (cost > bank.Balance) { - ConsolePopup(args.Session, Loc.GetString("cargo-console-insufficient-funds", ("cost", cost))); + ConsolePopup(args.Actor, Loc.GetString("cargo-console-insufficient-funds", ("cost", cost))); PlayDenySound(uid, component); return; } - var tradeDestination = TryFulfillOrder(stationData, order, orderDatabase); + var ev = new FulfillCargoOrderEvent((station.Value, stationData), order, (uid, component)); + RaiseLocalEvent(ref ev); + ev.FulfillmentEntity ??= station.Value; - if (tradeDestination == null) + if (!ev.Handled) { - ConsolePopup(args.Session, Loc.GetString("cargo-console-unfulfilled")); - PlayDenySound(uid, component); - return; + ev.FulfillmentEntity = TryFulfillOrder((station.Value, stationData), order, orderDatabase); + + if (ev.FulfillmentEntity == null) + { + ConsolePopup(args.Actor, Loc.GetString("cargo-console-unfulfilled")); + PlayDenySound(uid, component); + return; + } } _idCardSystem.TryFindIdCard(player, out var idCard); @@ -184,7 +191,16 @@ private void OnApproveOrderMessage(EntityUid uid, CargoOrderConsoleComponent com order.SetApproverData(idCard.Comp?.FullName, idCard.Comp?.JobTitle); _audio.PlayPvs(component.ConfirmSound, uid); - ConsolePopup(args.Session, Loc.GetString("cargo-console-trade-station", ("destination", MetaData(tradeDestination.Value).EntityName))); + 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), + ("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))); // Log order approval _adminLogger.Add(LogType.Action, LogImpact.Low, @@ -192,10 +208,10 @@ private void OnApproveOrderMessage(EntityUid uid, CargoOrderConsoleComponent com orderDatabase.Orders.Remove(order); DeductFunds(bank, cost); - UpdateOrders(station.Value, orderDatabase); + UpdateOrders(station.Value); } - private EntityUid? TryFulfillOrder(StationDataComponent stationData, CargoOrderData order, StationCargoOrderDatabaseComponent orderDatabase) + private EntityUid? TryFulfillOrder(Entity stationData, CargoOrderData order, StationCargoOrderDatabaseComponent orderDatabase) { // No slots at the trade station _listEnts.Clear(); @@ -257,7 +273,7 @@ private void OnRemoveOrderMessage(EntityUid uid, CargoOrderConsoleComponent comp private void OnAddOrderMessage(EntityUid uid, CargoOrderConsoleComponent component, CargoConsoleAddOrderMessage args) { - if (args.Session.AttachedEntity is not { Valid: true } player) + if (args.Actor is not { Valid: true } player) return; if (args.Amount <= 0) @@ -305,9 +321,9 @@ private void UpdateOrderState(EntityUid consoleUid, EntityUid? station) !TryComp(station, out var orderDatabase) || !TryComp(station, out var bankAccount)) return; - if (_uiSystem.TryGetUi(consoleUid, CargoConsoleUiKey.Orders, out var bui)) + if (_uiSystem.HasUi(consoleUid, CargoConsoleUiKey.Orders)) { - _uiSystem.SetUiState(bui, new CargoConsoleInterfaceState( + _uiSystem.SetUiState(consoleUid, CargoConsoleUiKey.Orders, new CargoConsoleInterfaceState( MetaData(station.Value).EntityName, GetOutstandingOrderCount(orderDatabase), orderDatabase.Capacity, @@ -317,9 +333,9 @@ private void UpdateOrderState(EntityUid consoleUid, EntityUid? station) } } - private void ConsolePopup(ICommonSession session, string text) + private void ConsolePopup(EntityUid actor, string text) { - _popup.PopupCursor(text, session); + _popup.PopupCursor(text, actor); } private void PlayDenySound(EntityUid uid, CargoOrderConsoleComponent component) @@ -329,7 +345,7 @@ private void PlayDenySound(EntityUid uid, CargoOrderConsoleComponent component) private static CargoOrderData GetOrderData(CargoConsoleAddOrderMessage args, CargoProductPrototype cargoProduct, int id) { - return new CargoOrderData(id, cargoProduct.Product, cargoProduct.Cost, args.Amount, args.Requester, args.Reason); + return new CargoOrderData(id, cargoProduct.Product, cargoProduct.Name, cargoProduct.Cost, args.Amount, args.Requester, args.Reason); } public static int GetOutstandingOrderCount(StationCargoOrderDatabaseComponent component) @@ -350,7 +366,7 @@ public static int GetOutstandingOrderCount(StationCargoOrderDatabaseComponent co /// Updates all of the cargo-related consoles for a particular station. /// This should be called whenever orders change. /// - private void UpdateOrders(EntityUid dbUid, StationCargoOrderDatabaseComponent _) + private void UpdateOrders(EntityUid dbUid) { // Order added so all consoles need updating. var orderQuery = AllEntityQuery(); @@ -378,19 +394,20 @@ private void UpdateOrders(EntityUid dbUid, StationCargoOrderDatabaseComponent _) public bool AddAndApproveOrder( EntityUid dbUid, string spawnId, + string name, int cost, int qty, string sender, string description, string dest, StationCargoOrderDatabaseComponent component, - StationDataComponent stationData + Entity stationData ) { DebugTools.Assert(_protoMan.HasIndex(spawnId)); // Make an order var id = GenerateOrderId(component); - var order = new CargoOrderData(id, spawnId, cost, qty, sender, description); + var order = new CargoOrderData(id, spawnId, name, cost, qty, sender, description); // Approve it now order.SetApproverData(dest, sender); @@ -406,7 +423,7 @@ StationDataComponent stationData private bool TryAddOrder(EntityUid dbUid, CargoOrderData data, StationCargoOrderDatabaseComponent component) { component.Orders.Add(data); - UpdateOrders(dbUid, component); + UpdateOrders(dbUid); return true; } @@ -424,7 +441,7 @@ public void RemoveOrder(EntityUid dbUid, int index, StationCargoOrderDatabaseCom { orderDB.Orders.RemoveAt(sequenceIdx); } - UpdateOrders(dbUid, orderDB); + UpdateOrders(dbUid); } public void ClearOrders(StationCargoOrderDatabaseComponent component) diff --git a/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs b/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs index 0484e05ced..1c5c7ed1c0 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs @@ -79,21 +79,20 @@ private void UpdateCargoShuttleConsoles(EntityUid shuttleUid, CargoShuttleCompon private void UpdatePalletConsoleInterface(EntityUid uid) { - var bui = _uiSystem.GetUi(uid, CargoPalletConsoleUiKey.Sale); if (Transform(uid).GridUid is not EntityUid gridUid) { - _uiSystem.SetUiState(bui, + _uiSystem.SetUiState(uid, CargoPalletConsoleUiKey.Sale, new CargoPalletConsoleInterfaceState(0, 0, false)); return; } GetPalletGoods(gridUid, out var toSell, out var amount); - _uiSystem.SetUiState(bui, + _uiSystem.SetUiState(uid, CargoPalletConsoleUiKey.Sale, new CargoPalletConsoleInterfaceState((int) amount, toSell.Count, true)); } private void OnPalletUIOpen(EntityUid uid, CargoPalletConsoleComponent component, BoundUIOpenedEvent args) { - var player = args.Session.AttachedEntity; + var player = args.Actor; if (player == null) return; @@ -111,7 +110,7 @@ private void OnPalletUIOpen(EntityUid uid, CargoPalletConsoleComponent component private void OnPalletAppraise(EntityUid uid, CargoPalletConsoleComponent component, CargoPalletAppraiseMessage args) { - var player = args.Session.AttachedEntity; + var player = args.Actor; if (player == null) return; @@ -133,8 +132,8 @@ private void UpdateShuttleState(EntityUid uid, EntityUid? station = null) var orders = GetProjectedOrders(station ?? EntityUid.Invalid, orderDatabase, shuttle); var shuttleName = orderDatabase?.Shuttle != null ? MetaData(orderDatabase.Shuttle.Value).EntityName : string.Empty; - if (_uiSystem.TryGetUi(uid, CargoConsoleUiKey.Shuttle, out var bui)) - _uiSystem.SetUiState(bui, new CargoShuttleConsoleBoundUserInterfaceState( + if (_uiSystem.HasUi(uid, CargoConsoleUiKey.Shuttle)) + _uiSystem.SetUiState(uid, CargoConsoleUiKey.Shuttle, new CargoShuttleConsoleBoundUserInterfaceState( station != null ? MetaData(station.Value).EntityName : Loc.GetString("cargo-shuttle-console-station-unknown"), string.IsNullOrEmpty(shuttleName) ? Loc.GetString("cargo-shuttle-console-shuttle-not-found") : shuttleName, orders @@ -179,7 +178,7 @@ private List GetProjectedOrders( // We won't be able to fit the whole order on, so make one // which represents the space we do have left: var reducedOrder = new CargoOrderData(order.OrderId, - order.ProductId, order.Price, spaceRemaining, order.Requester, order.Reason); + order.ProductId, order.ProductName, order.Price, spaceRemaining, order.Requester, order.Reason); orders.Add(reducedOrder); } else @@ -339,17 +338,16 @@ private bool CanSell(EntityUid uid, TransformComponent xform) private void OnPalletSale(EntityUid uid, CargoPalletConsoleComponent component, CargoPalletSellMessage args) { - var player = args.Session.AttachedEntity; + var player = args.Actor; if (player == null) return; - var bui = _uiSystem.GetUi(uid, CargoPalletConsoleUiKey.Sale); var xform = Transform(uid); if (xform.GridUid is not EntityUid gridUid) { - _uiSystem.SetUiState(bui, + _uiSystem.SetUiState(uid, CargoPalletConsoleUiKey.Sale, new CargoPalletConsoleInterfaceState(0, 0, false)); return; } diff --git a/Content.Server/Cargo/Systems/CargoSystem.Telepad.cs b/Content.Server/Cargo/Systems/CargoSystem.Telepad.cs index 42aabf2578..223dd2ac32 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Telepad.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Telepad.cs @@ -1,9 +1,15 @@ +using System.Linq; using Content.Server.Cargo.Components; +using Content.Server.Construction; +using Content.Server.Paper; using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; +using Content.Server.Station.Components; using Content.Shared.Cargo; using Content.Shared.Cargo.Components; using Content.Shared.DeviceLinking; using Robust.Shared.Audio; +using Robust.Shared.Random; using Robust.Shared.Utility; namespace Content.Server.Cargo.Systems; @@ -13,10 +19,46 @@ public sealed partial class CargoSystem private void InitializeTelepad() { SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnRefreshParts); + SubscribeLocalEvent(OnUpgradeExamine); + SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnTelepadPowerChange); // Shouldn't need re-anchored event SubscribeLocalEvent(OnTelepadAnchorChange); + SubscribeLocalEvent(OnTelepadFulfillCargoOrder); } + + private void OnTelepadFulfillCargoOrder(ref FulfillCargoOrderEvent args) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var tele, out var xform)) + { + if (tele.CurrentState != CargoTelepadState.Idle) + continue; + + if (!this.IsPowered(uid, EntityManager)) + continue; + + if (_station.GetOwningStation(uid, xform) != args.Station) + continue; + + // todo cannot be fucking asked to figure out device linking rn but this shouldn't just default to the first port. + if (!TryComp(uid, out var sinkComponent) || + sinkComponent.LinkedSources.FirstOrNull() is not { } console || + console != args.OrderConsole.Owner) + continue; + + for (var i = 0; i < args.Order.OrderQuantity; i++) + { + tele.CurrentOrders.Add(args.Order); + } + tele.Accumulator = tele.Delay; + args.Handled = true; + args.FulfillmentEntity = uid; + return; + } + } + private void UpdateTelepad(float frameTime) { var query = EntityQueryEnumerator(); @@ -33,14 +75,6 @@ private void UpdateTelepad(float frameTime) continue; } - if (!TryComp(uid, out var sinkComponent) || - sinkComponent.LinkedSources.FirstOrNull() is not { } console || - !HasComp(console)) - { - comp.Accumulator = comp.Delay; - continue; - } - comp.Accumulator -= frameTime; // Uhh listen teleporting takes time and I just want the 1 float. @@ -51,21 +85,22 @@ private void UpdateTelepad(float frameTime) continue; } - var station = _station.GetOwningStation(console); - - if (!TryComp(station, out var orderDatabase) || - orderDatabase.Orders.Count == 0) + if (comp.CurrentOrders.Count == 0) { comp.Accumulator += comp.Delay; continue; } var xform = Transform(uid); - if (FulfillNextOrder(orderDatabase, xform.Coordinates, comp.PrinterOutput)) + var currentOrder = comp.CurrentOrders.First(); + if (FulfillOrder(currentOrder, xform.Coordinates, comp.PrinterOutput)) { _audio.PlayPvs(_audio.GetSound(comp.TeleportSound), uid, AudioParams.Default.WithVolume(-8f)); - UpdateOrders(station.Value, orderDatabase); + if (_station.GetOwningStation(uid) is { } station) + UpdateOrders(station); + + comp.CurrentOrders.Remove(currentOrder); comp.CurrentState = CargoTelepadState.Teleporting; _appearance.SetData(uid, CargoTelepadVisuals.State, CargoTelepadState.Teleporting, appearance); } @@ -79,6 +114,40 @@ private void OnInit(EntityUid uid, CargoTelepadComponent telepad, ComponentInit _linker.EnsureSinkPorts(uid, telepad.ReceiverPort); } + private void OnRefreshParts(EntityUid uid, CargoTelepadComponent component, RefreshPartsEvent args) + { + var rating = args.PartRatings[component.MachinePartTeleportDelay] - 1; + component.Delay = component.BaseDelay * MathF.Pow(component.PartRatingTeleportDelay, rating); + } + + private void OnUpgradeExamine(EntityUid uid, CargoTelepadComponent component, UpgradeExamineEvent args) + { + args.AddPercentageUpgrade("cargo-telepad-delay-upgrade", component.Delay / component.BaseDelay); + } + + private void OnShutdown(Entity ent, ref ComponentShutdown args) + { + if (ent.Comp.CurrentOrders.Count == 0) + return; + + if (_station.GetStations().Count == 0) + return; + + if (_station.GetOwningStation(ent) is not { } station) + { + station = _random.Pick(_station.GetStations().Where(HasComp).ToList()); + } + + if (!TryComp(station, out var db) || + !TryComp(station, out var data)) + return; + + foreach (var order in ent.Comp.CurrentOrders) + { + TryFulfillOrder((station, data), order, db); + } + } + private void SetEnabled(EntityUid uid, CargoTelepadComponent component, ApcPowerReceiverComponent? receiver = null, TransformComponent? xform = null) { diff --git a/Content.Server/Cargo/Systems/CargoSystem.cs b/Content.Server/Cargo/Systems/CargoSystem.cs index 3d6fc96472..e593299321 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.cs @@ -8,6 +8,7 @@ using Content.Server.Station.Systems; using Content.Shared.Access.Systems; using Content.Shared.Administration.Logs; +using Content.Server.Radio.EntitySystems; using Content.Shared.Cargo; using Content.Shared.Cargo.Components; using Content.Shared.Containers.ItemSlots; @@ -44,6 +45,7 @@ public sealed partial class CargoSystem : SharedCargoSystem [Dependency] private readonly StationSystem _station = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; [Dependency] private readonly MetaDataSystem _metaSystem = default!; + [Dependency] private readonly RadioSystem _radio = default!; [Dependency] private readonly IConfigurationManager _cfgManager = default!; [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IComponentFactory _factory = default!; diff --git a/Content.Server/Cargo/Systems/LogisticStatsSystem.cs b/Content.Server/Cargo/Systems/LogisticStatsSystem.cs new file mode 100644 index 0000000000..6abf4eb5a4 --- /dev/null +++ b/Content.Server/Cargo/Systems/LogisticStatsSystem.cs @@ -0,0 +1,63 @@ +using Content.Shared.Cargo; +using Content.Server.Cargo.Components; +using JetBrains.Annotations; + +namespace Content.Server.Cargo.Systems; + +public sealed partial class LogisticStatsSystem : SharedCargoSystem +{ + [PublicAPI] + public void AddOpenedMailEarnings(EntityUid uid, StationLogisticStatsComponent component, int earnedMoney) + { + component.Metrics = component.Metrics with + { + Earnings = component.Metrics.Earnings + earnedMoney, + OpenedCount = component.Metrics.OpenedCount + 1 + }; + UpdateLogisticsStats(uid); + } + + [PublicAPI] + public void AddExpiredMailLosses(EntityUid uid, StationLogisticStatsComponent component, int lostMoney) + { + component.Metrics = component.Metrics with + { + ExpiredLosses = component.Metrics.ExpiredLosses + lostMoney, + ExpiredCount = component.Metrics.ExpiredCount + 1 + }; + UpdateLogisticsStats(uid); + } + + [PublicAPI] + public void AddDamagedMailLosses(EntityUid uid, StationLogisticStatsComponent component, int lostMoney) + { + component.Metrics = component.Metrics with + { + DamagedLosses = component.Metrics.DamagedLosses + lostMoney, + DamagedCount = component.Metrics.DamagedCount + 1 + }; + UpdateLogisticsStats(uid); + } + + [PublicAPI] + public void AddTamperedMailLosses(EntityUid uid, StationLogisticStatsComponent component, int lostMoney) + { + component.Metrics = component.Metrics with + { + TamperedLosses = component.Metrics.TamperedLosses + lostMoney, + TamperedCount = component.Metrics.TamperedCount + 1 + }; + UpdateLogisticsStats(uid); + } + + private void UpdateLogisticsStats(EntityUid uid) => RaiseLocalEvent(new LogisticStatsUpdatedEvent(uid)); +} + +public sealed class LogisticStatsUpdatedEvent : EntityEventArgs +{ + public EntityUid Station; + public LogisticStatsUpdatedEvent(EntityUid station) + { + Station = station; + } +} diff --git a/Content.Server/Cargo/Systems/PricingSystem.cs b/Content.Server/Cargo/Systems/PricingSystem.cs index 9e1970d63c..f878eeee75 100644 --- a/Content.Server/Cargo/Systems/PricingSystem.cs +++ b/Content.Server/Cargo/Systems/PricingSystem.cs @@ -199,7 +199,7 @@ public double GetEstimatedPrice(EntityPrototype prototype) /// This fires off an event to calculate the price. /// Calculating the price of an entity that somehow contains itself will likely hang. /// - public double GetPrice(EntityUid uid) + public double GetPrice(EntityUid uid, bool includeContents = true) { var ev = new PriceCalculationEvent(); RaiseLocalEvent(uid, ref ev); @@ -222,7 +222,7 @@ public double GetPrice(EntityUid uid) price += GetStaticPrice(uid); } - if (TryComp(uid, out var containers)) + if (includeContents && TryComp(uid, out var containers)) { foreach (var container in containers.Containers.Values) { diff --git a/Content.Server/Carrying/CarryingSystem.cs b/Content.Server/Carrying/CarryingSystem.cs index 3e37366a2e..857c3861a7 100644 --- a/Content.Server/Carrying/CarryingSystem.cs +++ b/Content.Server/Carrying/CarryingSystem.cs @@ -146,7 +146,7 @@ private void OnThrow(EntityUid uid, CarryingComponent component, ref BeforeThrow private void OnParentChanged(EntityUid uid, CarryingComponent component, ref EntParentChangedMessage args) { var xform = Transform(uid); - if (xform.MapID != args.OldMapId || xform.ParentUid == xform.GridUid) + if (xform.MapUid != args.OldMapId || xform.ParentUid == xform.GridUid) return; DropCarried(uid, component.Carried); diff --git a/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs b/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs index 4a76aef911..7896a7822e 100644 --- a/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs +++ b/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs @@ -103,12 +103,12 @@ public void UpdateUiState(EntityUid loaderUid, ICommonSession? session, Cartridg if (!Resolve(loaderUid, ref loader)) return; - if (!_userInterfaceSystem.TryGetUi(loaderUid, loader.UiKey, out var ui)) + if (!_userInterfaceSystem.HasUi(loaderUid, loader.UiKey)) return; var programs = GetAvailablePrograms(loaderUid, loader); var state = new CartridgeLoaderUiState(programs, GetNetEntity(loader.ActiveProgram)); - _userInterfaceSystem.SetUiState(ui, state, session); + _userInterfaceSystem.SetUiState(loaderUid, loader.UiKey, state); } /// @@ -127,8 +127,8 @@ public void UpdateCartridgeUiState(EntityUid loaderUid, BoundUserInterfaceState if (!Resolve(loaderUid, ref loader)) return; - if (_userInterfaceSystem.TryGetUi(loaderUid, loader.UiKey, out var ui)) - _userInterfaceSystem.SetUiState(ui, state, session); + if (_userInterfaceSystem.HasUi(loaderUid, loader.UiKey)) + _userInterfaceSystem.SetUiState(loaderUid, loader.UiKey, state); } /// diff --git a/Content.Server/CartridgeLoader/Cartridges/MailMetricsCartridgeComponent.cs b/Content.Server/CartridgeLoader/Cartridges/MailMetricsCartridgeComponent.cs new file mode 100644 index 0000000000..380a4d90c0 --- /dev/null +++ b/Content.Server/CartridgeLoader/Cartridges/MailMetricsCartridgeComponent.cs @@ -0,0 +1,11 @@ +namespace Content.Server.CartridgeLoader.Cartridges; + +[RegisterComponent, Access(typeof(MailMetricsCartridgeSystem))] +public sealed partial class MailMetricsCartridgeComponent : Component +{ + /// + /// Station entity keeping track of logistics stats + /// + [DataField] + public EntityUid? Station; +} diff --git a/Content.Server/CartridgeLoader/Cartridges/MailMetricsCartridgeSystem.cs b/Content.Server/CartridgeLoader/Cartridges/MailMetricsCartridgeSystem.cs new file mode 100644 index 0000000000..00b6d0a16e --- /dev/null +++ b/Content.Server/CartridgeLoader/Cartridges/MailMetricsCartridgeSystem.cs @@ -0,0 +1,82 @@ +using Content.Server.Cargo.Components; +using Content.Server.Cargo.Systems; +using Content.Server.Mail.Components; +using Content.Server.Station.Systems; +using Content.Shared.CartridgeLoader; +using Content.Shared.CartridgeLoader.Cartridges; + +namespace Content.Server.CartridgeLoader.Cartridges; + +public sealed class MailMetricsCartridgeSystem : EntitySystem +{ + [Dependency] private readonly CartridgeLoaderSystem _cartridgeLoader = default!; + [Dependency] private readonly StationSystem _station = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnUiReady); + SubscribeLocalEvent(OnLogisticsStatsUpdated); + SubscribeLocalEvent(OnMapInit); + } + + private void OnUiReady(Entity ent, ref CartridgeUiReadyEvent args) + { + UpdateUI(ent, args.Loader); + } + + private void OnLogisticsStatsUpdated(LogisticStatsUpdatedEvent args) + { + UpdateAllCartridges(args.Station); + } + + private void OnMapInit(EntityUid uid, MailComponent mail, MapInitEvent args) + { + if (_station.GetOwningStation(uid) is { } station) + UpdateAllCartridges(station); + } + + private void UpdateAllCartridges(EntityUid station) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var comp, out var cartridge)) + { + if (cartridge.LoaderUid is not { } loader || comp.Station != station) + continue; + UpdateUI((uid, comp), loader); + } + } + + private void UpdateUI(Entity ent, EntityUid loader) + { + if (_station.GetOwningStation(loader) is { } station) + ent.Comp.Station = station; + + if (!TryComp(ent.Comp.Station, out var logiStats)) + return; + + // Get station's logistic stats + var unopenedMailCount = GetUnopenedMailCount(ent.Comp.Station); + + // Send logistic stats to cartridge client + var state = new MailMetricUiState(logiStats.Metrics, unopenedMailCount); + _cartridgeLoader.UpdateCartridgeUiState(loader, state); + } + + + private int GetUnopenedMailCount(EntityUid? station) + { + var unopenedMail = 0; + + var query = EntityQueryEnumerator(); + + while (query.MoveNext(out var uid, out var comp)) + { + if (comp.IsLocked && _station.GetOwningStation(uid) == station) + unopenedMail++; + } + + return unopenedMail; + } +} diff --git a/Content.Server/Chat/Commands/AdminChatCommand.cs b/Content.Server/Chat/Commands/AdminChatCommand.cs index 979051e9d3..1a7ae050b6 100644 --- a/Content.Server/Chat/Commands/AdminChatCommand.cs +++ b/Content.Server/Chat/Commands/AdminChatCommand.cs @@ -5,7 +5,7 @@ namespace Content.Server.Chat.Commands { - [AdminCommand(AdminFlags.Admin)] + [AdminCommand(AdminFlags.Adminchat)] internal sealed class AdminChatCommand : IConsoleCommand { public string Command => "asay"; diff --git a/Content.Server/Chat/Systems/ChatSystem.Emote.cs b/Content.Server/Chat/Systems/ChatSystem.Emote.cs index 9ad30bc572..85792ead52 100644 --- a/Content.Server/Chat/Systems/ChatSystem.Emote.cs +++ b/Content.Server/Chat/Systems/ChatSystem.Emote.cs @@ -2,6 +2,7 @@ using System.Linq; using Content.Shared.Chat; using Content.Shared.Chat.Prototypes; +using Content.Shared.Speech; using Robust.Shared.Prototypes; using Robust.Shared.Random; @@ -83,6 +84,16 @@ public void TryEmoteWithChat( bool ignoreActionBlocker = false ) { + if (!(emote.Whitelist?.IsValid(source, EntityManager) ?? true)) + return; + if (emote.Blacklist?.IsValid(source, EntityManager) ?? false) + return; + + if (!emote.Available && + TryComp(source, out var speech) && + !speech.AllowedEmotes.Contains(emote.ID)) + return; + // check if proto has valid message for chat if (emote.ChatMessages.Count != 0) { diff --git a/Content.Server/Chat/V2/Commands/DeleteChatMessageCommand.cs b/Content.Server/Chat/V2/Commands/DeleteChatMessageCommand.cs new file mode 100644 index 0000000000..1f9203d299 --- /dev/null +++ b/Content.Server/Chat/V2/Commands/DeleteChatMessageCommand.cs @@ -0,0 +1,36 @@ +using System.Diagnostics; +using Content.Server.Administration; +using Content.Server.Chat.V2.Repository; +using Content.Shared.Administration; +using Robust.Shared.Toolshed; +using Robust.Shared.Toolshed.Errors; +using Robust.Shared.Utility; + +namespace Content.Server.Chat.V2.Commands; + +[ToolshedCommand, AdminCommand(AdminFlags.Admin)] +public sealed class DeleteChatMessageCommand : ToolshedCommand +{ + [Dependency] private readonly IEntitySystemManager _manager = default!; + + [CommandImplementation("id")] + public void DeleteChatMessage([CommandInvocationContext] IInvocationContext ctx, [CommandArgument] uint messageId) + { + if (!_manager.GetEntitySystem().Delete(messageId)) + { + ctx.ReportError(new MessageIdDoesNotExist()); + } + } +} + +public record struct MessageIdDoesNotExist() : IConError +{ + public FormattedMessage DescribeInner() + { + return FormattedMessage.FromUnformatted(Loc.GetString("command-error-deletechatmessage-id-notexist")); + } + + public string? Expression { get; set; } + public Vector2i? IssueSpan { get; set; } + public StackTrace? Trace { get; set; } +} diff --git a/Content.Server/Chat/V2/Commands/NukeChatMessagesCommand.cs b/Content.Server/Chat/V2/Commands/NukeChatMessagesCommand.cs new file mode 100644 index 0000000000..3d8b69dd76 --- /dev/null +++ b/Content.Server/Chat/V2/Commands/NukeChatMessagesCommand.cs @@ -0,0 +1,41 @@ +using System.Diagnostics; +using Content.Server.Administration; +using Content.Server.Chat.V2.Repository; +using Content.Shared.Administration; +using Robust.Shared.Toolshed; +using Robust.Shared.Toolshed.Errors; +using Robust.Shared.Utility; + +namespace Content.Server.Chat.V2.Commands; + +[ToolshedCommand, AdminCommand(AdminFlags.Admin)] +public sealed class NukeChatMessagesCommand : ToolshedCommand +{ + [Dependency] private readonly IEntitySystemManager _manager = default!; + + [CommandImplementation("usernames")] + public void Command([CommandInvocationContext] IInvocationContext ctx, [CommandArgument] string usernamesCsv) + { + var usernames = usernamesCsv.Split(','); + + foreach (var username in usernames) + { + if (!_manager.GetEntitySystem().NukeForUsername(username, out var reason)) + { + ctx.ReportError(new NukeMessagesForUsernameError(reason)); + } + } + } +} + +public record struct NukeMessagesForUsernameError(string Reason) : IConError +{ + public FormattedMessage DescribeInner() + { + return FormattedMessage.FromUnformatted(Reason); + } + + public string? Expression { get; set; } + public Vector2i? IssueSpan { get; set; } + public StackTrace? Trace { get; set; } +} diff --git a/Content.Server/Chat/V2/Messages.cs b/Content.Server/Chat/V2/Messages.cs new file mode 100644 index 0000000000..31a563cbeb --- /dev/null +++ b/Content.Server/Chat/V2/Messages.cs @@ -0,0 +1,94 @@ +using Content.Shared.Chat.Prototypes; +using Content.Shared.Chat.V2; +using Content.Shared.Radio; + +namespace Content.Server.Chat.V2; + +/// +/// Raised locally when a comms announcement is made. +/// +public sealed class CommsAnnouncementCreatedEvent(EntityUid sender, EntityUid console, string message) : IChatEvent +{ + public uint Id { get; set; } + public EntityUid Sender { get; set; } = sender; + public string Message { get; set; } = message; + public MessageType Type => MessageType.Announcement; + public EntityUid Console = console; +} + +/// +/// Raised locally when a character speaks in Dead Chat. +/// +public sealed class DeadChatCreatedEvent(EntityUid speaker, string message, bool isAdmin) : IChatEvent +{ + public uint Id { get; set; } + public EntityUid Sender { get; set; } = speaker; + public string Message { get; set; } = message; + public MessageType Type => MessageType.DeadChat; + public bool IsAdmin = isAdmin; +} + +/// +/// Raised locally when a character emotes. +/// +public sealed class EmoteCreatedEvent(EntityUid sender, string message, float range) : IChatEvent +{ + public uint Id { get; set; } + public EntityUid Sender { get; set; } = sender; + public string Message { get; set; } = message; + public MessageType Type => MessageType.Emote; + public float Range = range; +} + +/// +/// Raised locally when a character talks in local. +/// +public sealed class LocalChatCreatedEvent(EntityUid speaker, string message, float range) : IChatEvent +{ + public uint Id { get; set; } + public EntityUid Sender { get; set; } = speaker; + public string Message { get; set; } = message; + public MessageType Type => MessageType.Local; + public float Range = range; +} + +/// +/// Raised locally when a character speaks in LOOC. +/// +public sealed class LoocCreatedEvent(EntityUid speaker, string message) : IChatEvent +{ + public uint Id { get; set; } + public EntityUid Sender { get; set; } = speaker; + public string Message { get; set; } = message; + public MessageType Type => MessageType.Looc; +} + +/// +/// Raised locally when a character speaks on the radio. +/// +public sealed class RadioCreatedEvent( + EntityUid speaker, + string message, + RadioChannelPrototype channel) + : IChatEvent +{ + public uint Id { get; set; } + public EntityUid Sender { get; set; } = speaker; + public string Message { get; set; } = message; + public RadioChannelPrototype Channel = channel; + public MessageType Type => MessageType.Radio; +} + +/// +/// Raised locally when a character whispers. +/// +public sealed class WhisperCreatedEvent(EntityUid speaker, string message, float minRange, float maxRange) : IChatEvent +{ + public uint Id { get; set; } + public EntityUid Sender { get; set; } = speaker; + public string Message { get; set; } = message; + public MessageType Type => MessageType.Whisper; + public float MinRange = minRange; + public float MaxRange = maxRange; +} + diff --git a/Content.Server/Chat/V2/Repository/ChatRepository.cs b/Content.Server/Chat/V2/Repository/ChatRepository.cs new file mode 100644 index 0000000000..06de37128f --- /dev/null +++ b/Content.Server/Chat/V2/Repository/ChatRepository.cs @@ -0,0 +1,196 @@ +using System.Diagnostics.CodeAnalysis; +using System.Linq; +using System.Runtime.InteropServices; +using Content.Shared.Chat.V2; +using Content.Shared.Chat.V2.Repository; +using Robust.Server.Player; +using Robust.Shared.Network; +using Robust.Shared.Replays; + +namespace Content.Server.Chat.V2.Repository; + +/// +/// Stores , gives them UIDs, and issues . +/// Allows for deletion of messages. +/// +public sealed class ChatRepositorySystem : EntitySystem +{ + [Dependency] private readonly IReplayRecordingManager _replay = default!; + [Dependency] private readonly IPlayerManager _player = default!; + + // Clocks should start at 1, as 0 indicates "clock not set" or "clock forgotten to be set by bad programmer". + private uint _nextMessageId = 1; + private Dictionary _messages = new(); + private Dictionary> _playerMessages = new(); + + public override void Initialize() + { + Refresh(); + + _replay.RecordingFinished += _ => + { + // TODO: resolve https://github.com/space-wizards/space-station-14/issues/25485 so we can dump the chat to disc. + Refresh(); + }; + } + + /// + /// Adds an to the repo and raises it with a UID for consumption elsewhere. + /// + /// The event to store and raise + /// If storing and raising succeeded. + public bool Add(IChatEvent ev) + { + if (!_player.TryGetSessionByEntity(ev.Sender, out var session)) + { + return false; + } + + var messageId = _nextMessageId; + + _nextMessageId++; + + ev.Id = messageId; + + var storedEv = new ChatRecord + { + UserName = session.Name, + UserId = session.UserId, + EntityName = Name(ev.Sender), + StoredEvent = ev + }; + + _messages[messageId] = storedEv; + + CollectionsMarshal.GetValueRefOrAddDefault(_playerMessages, storedEv.UserId, out _)?.Add(messageId); + + RaiseLocalEvent(ev.Sender, new MessageCreatedEvent(ev), true); + + return true; + } + + /// + /// Returns the event associated with a UID, if it exists. + /// + /// The UID of a event. + /// The event, if it exists. + public IChatEvent? GetEventFor(uint id) + { + return _messages.TryGetValue(id, out var record) ? record.StoredEvent : null; + } + + /// + /// Edits a specific message and issues a that says this happened both locally and + /// on the network. Note that this doesn't replay the message (yet), so translators and mutators won't act on it. + /// + /// The ID to edit + /// The new message to send + /// If patching did anything did anything + /// Should be used for admining and admemeing only. + public bool Patch(uint id, string message) + { + if (!_messages.TryGetValue(id, out var ev)) + { + return false; + } + + ev.StoredEvent.Message = message; + + RaiseLocalEvent(new MessagePatchedEvent(id, message)); + + return true; + } + + /// + /// Deletes a message from the repository and issues a that says this has happened + /// both locally and on the network. + /// + /// The ID to delete + /// If deletion did anything + /// Should only be used for adminning + public bool Delete(uint id) + { + if (!_messages.TryGetValue(id, out var ev)) + { + return false; + } + + _messages.Remove(id); + + if (_playerMessages.TryGetValue(ev.UserId, out var set)) + { + set.Remove(id); + } + + RaiseLocalEvent(new MessageDeletedEvent(id)); + + return true; + } + + /// + /// Nukes a user's entire chat history from the repo and issues a saying this has + /// happened. + /// + /// The user ID to nuke. + /// Why nuking failed, if it did. + /// If nuking did anything. + /// Note that this could be a very large event, as we send every single event ID over the wire. + /// By necessity we can't leak the player-source of chat messages (or if they even have the same origin) because of + /// client modders who could use that information to cheat/metagrudge/etc >:( + public bool NukeForUsername(string userName, [NotNullWhen(false)] out string? reason) + { + if (!_player.TryGetUserId(userName, out var userId)) + { + reason = Loc.GetString("command-error-nukechatmessages-usernames-usernamenotexist", ("username", userName)); + + return false; + } + + return NukeForUserId(userId, out reason); + } + + /// + /// Nukes a user's entire chat history from the repo and issues a saying this has + /// happened. + /// + /// The user ID to nuke. + /// Why nuking failed, if it did. + /// If nuking did anything. + /// Note that this could be a very large event, as we send every single event ID over the wire. + /// By necessity we can't leak the player-source of chat messages (or if they even have the same origin) because of + /// client modders who could use that information to cheat/metagrudge/etc >:( + public bool NukeForUserId(NetUserId userId, [NotNullWhen(false)] out string? reason) + { + if (!_playerMessages.TryGetValue(userId, out var dict)) + { + reason = Loc.GetString("command-error-nukechatmessages-usernames-usernamenomessages", ("userId", userId.UserId.ToString())); + + return false; + } + + foreach (var id in dict) + { + _messages.Remove(id); + } + + var ev = new MessagesNukedEvent(dict); + + CollectionsMarshal.GetValueRefOrAddDefault(_playerMessages, userId, out _)?.Clear(); + + RaiseLocalEvent(ev); + + reason = null; + + return true; + } + + /// + /// Dumps held chat storage data and refreshes the repo. + /// + public void Refresh() + { + _nextMessageId = 1; + _messages.Clear(); + _playerMessages.Clear(); + } +} diff --git a/Content.Server/Chemistry/Components/ReagentTankComponent.cs b/Content.Server/Chemistry/Components/ReagentTankComponent.cs deleted file mode 100644 index cc0d2657d7..0000000000 --- a/Content.Server/Chemistry/Components/ReagentTankComponent.cs +++ /dev/null @@ -1,23 +0,0 @@ -using Content.Shared.FixedPoint; - - -namespace Content.Server.Chemistry.Components -{ - [RegisterComponent] - public sealed partial class ReagentTankComponent : Component - { - [DataField("transferAmount")] - [ViewVariables(VVAccess.ReadWrite)] - public FixedPoint2 TransferAmount { get; set; } = FixedPoint2.New(10); - - [DataField("tankType")] - [ViewVariables(VVAccess.ReadWrite)] - public ReagentTankType TankType { get; set; } = ReagentTankType.Unspecified; - } - - public enum ReagentTankType : byte - { - Unspecified, - Fuel - } -} diff --git a/Content.Server/Chemistry/Components/SolutionHeaterComponent.cs b/Content.Server/Chemistry/Components/SolutionHeaterComponent.cs index c1841e022c..bc1d44e82f 100644 --- a/Content.Server/Chemistry/Components/SolutionHeaterComponent.cs +++ b/Content.Server/Chemistry/Components/SolutionHeaterComponent.cs @@ -4,8 +4,26 @@ namespace Content.Server.Chemistry.Components; public sealed partial class SolutionHeaterComponent : Component { /// - /// How much heat is added per second to the solution, taking upgrades into account. + /// How much heat is added per second to the solution, with no upgrades. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] + public float BaseHeatPerSecond = 120; + + /// + /// How much heat is added per second to the solution, taking upgrades into account. + /// + [ViewVariables(VVAccess.ReadWrite)] public float HeatPerSecond; + + /// + /// The machine part that affects the heat multiplier. + /// + [DataField] + public string MachinePartHeatMultiplier = "Capacitor"; + + /// + /// How much each upgrade multiplies the heat by. + /// + [DataField] + public float PartRatingHeatMultiplier = 1.5f; } diff --git a/Content.Server/Chemistry/Containers/EntitySystems/SolutionContainerSystem.cs b/Content.Server/Chemistry/Containers/EntitySystems/SolutionContainerSystem.cs index 755312554c..3d99db1129 100644 --- a/Content.Server/Chemistry/Containers/EntitySystems/SolutionContainerSystem.cs +++ b/Content.Server/Chemistry/Containers/EntitySystems/SolutionContainerSystem.cs @@ -9,180 +9,37 @@ namespace Content.Server.Chemistry.Containers.EntitySystems; +[Obsolete("This is being depreciated. Use SharedSolutionContainerSystem instead!")] public sealed partial class SolutionContainerSystem : SharedSolutionContainerSystem { - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnMapInit); - SubscribeLocalEvent(OnComponentShutdown); - SubscribeLocalEvent(OnComponentShutdown); - } - - + [Obsolete("This is being depreciated. Use the ensure methods in SharedSolutionContainerSystem instead!")] public Solution EnsureSolution(Entity entity, string name) => EnsureSolution(entity, name, out _); + [Obsolete("This is being depreciated. Use the ensure methods in SharedSolutionContainerSystem instead!")] public Solution EnsureSolution(Entity entity, string name, out bool existed) => EnsureSolution(entity, name, FixedPoint2.Zero, out existed); + [Obsolete("This is being depreciated. Use the ensure methods in SharedSolutionContainerSystem instead!")] public Solution EnsureSolution(Entity entity, string name, FixedPoint2 maxVol, out bool existed) => EnsureSolution(entity, name, maxVol, null, out existed); + [Obsolete("This is being depreciated. Use the ensure methods in SharedSolutionContainerSystem instead!")] public Solution EnsureSolution(Entity entity, string name, FixedPoint2 maxVol, Solution? prototype, out bool existed) { - var (uid, meta) = entity; - if (!Resolve(uid, ref meta)) - throw new InvalidOperationException("Attempted to ensure solution on invalid entity."); - - var manager = EnsureComp(uid); - if (meta.EntityLifeStage >= EntityLifeStage.MapInitialized) - return EnsureSolutionEntity((uid, manager), name, maxVol, prototype, out existed).Comp.Solution; - else - return EnsureSolutionPrototype((uid, manager), name, maxVol, prototype, out existed); - } - - public void EnsureAllSolutions(Entity entity) - { - if (entity.Comp.Solutions is not { } prototypes) - return; - - foreach (var (name, prototype) in prototypes) - { - EnsureSolutionEntity((entity.Owner, entity.Comp), name, prototype.MaxVolume, prototype, out _); - } - - entity.Comp.Solutions = null; - Dirty(entity); - } - - public Entity EnsureSolutionEntity(Entity entity, string name, FixedPoint2 maxVol, Solution? prototype, out bool existed) - { - existed = true; - - var (uid, container) = entity; - - var solutionSlot = ContainerSystem.EnsureContainer(uid, $"solution@{name}", out existed); - if (!Resolve(uid, ref container, logMissing: false)) - { - existed = false; - container = AddComp(uid); - container.Containers.Add(name); - } - else if (!existed) - { - container.Containers.Add(name); - Dirty(uid, container); - } - - var needsInit = false; - SolutionComponent solutionComp; - if (solutionSlot.ContainedEntity is not { } solutionId) - { - prototype ??= new() { MaxVolume = maxVol }; - prototype.Name = name; - (solutionId, solutionComp, _) = SpawnSolutionUninitialized(solutionSlot, name, maxVol, prototype); - existed = false; - needsInit = true; - Dirty(uid, container); - } - else - { - solutionComp = Comp(solutionId); - DebugTools.Assert(TryComp(solutionId, out ContainedSolutionComponent? relation) && relation.Container == uid && relation.ContainerName == name); - DebugTools.Assert(solutionComp.Solution.Name == name); - - var solution = solutionComp.Solution; - solution.MaxVolume = FixedPoint2.Max(solution.MaxVolume, maxVol); - - // Depending on MapInitEvent order some systems can ensure solution empty solutions and conflict with the prototype solutions. - // We want the reagents from the prototype to exist even if something else already created the solution. - if (prototype is { Volume.Value: > 0 }) - solution.AddSolution(prototype, PrototypeManager); - - Dirty(solutionId, solutionComp); - } - - if (needsInit) - EntityManager.InitializeAndStartEntity(solutionId, Transform(solutionId).MapID); - - return (solutionId, solutionComp); - } - - private Solution EnsureSolutionPrototype(Entity entity, string name, FixedPoint2 maxVol, Solution? prototype, out bool existed) - { - existed = true; - - var (uid, container) = entity; - if (!Resolve(uid, ref container, logMissing: false)) - { - container = AddComp(uid); - existed = false; - } - - if (container.Solutions is null) - container.Solutions = new(SolutionContainerManagerComponent.DefaultCapacity); - - if (!container.Solutions.TryGetValue(name, out var solution)) - { - solution = prototype ?? new() { Name = name, MaxVolume = maxVol }; - container.Solutions.Add(name, solution); - existed = false; - } - else - solution.MaxVolume = FixedPoint2.Max(solution.MaxVolume, maxVol); - - Dirty(uid, container); - return solution; + EnsureSolution(entity, name, maxVol, prototype, out existed, out var solution); + return solution!;//solution is only ever null on the client, so we can suppress this } - - private Entity SpawnSolutionUninitialized(ContainerSlot container, string name, FixedPoint2 maxVol, Solution prototype) + [Obsolete("This is being depreciated. Use the ensure methods in SharedSolutionContainerSystem instead!")] + public Entity EnsureSolutionEntity( + Entity entity, + string name, + FixedPoint2 maxVol, + Solution? prototype, + out bool existed) { - var coords = new EntityCoordinates(container.Owner, Vector2.Zero); - var uid = EntityManager.CreateEntityUninitialized(null, coords, null); - - var solution = new SolutionComponent() { Solution = prototype }; - AddComp(uid, solution); - - var relation = new ContainedSolutionComponent() { Container = container.Owner, ContainerName = name }; - AddComp(uid, relation); - - MetaData.SetEntityName(uid, $"solution - {name}"); - ContainerSystem.Insert(uid, container, force: true); - - return (uid, solution, relation); + EnsureSolutionEntity(entity, name, out existed, out var solEnt, maxVol, prototype); + return solEnt!.Value;//solEnt is only ever null on the client, so we can suppress this } - - #region Event Handlers - - private void OnMapInit(Entity entity, ref MapInitEvent args) - { - EnsureAllSolutions(entity); - } - - private void OnComponentShutdown(Entity entity, ref ComponentShutdown args) - { - foreach (var name in entity.Comp.Containers) - { - if (ContainerSystem.TryGetContainer(entity, $"solution@{name}", out var solutionContainer)) - ContainerSystem.ShutdownContainer(solutionContainer); - } - entity.Comp.Containers.Clear(); - } - - private void OnComponentShutdown(Entity entity, ref ComponentShutdown args) - { - if (TryComp(entity.Comp.Container, out SolutionContainerManagerComponent? container)) - { - container.Containers.Remove(entity.Comp.ContainerName); - Dirty(entity.Comp.Container, container); - } - - if (ContainerSystem.TryGetContainer(entity, $"solution@{entity.Comp.ContainerName}", out var solutionContainer)) - ContainerSystem.ShutdownContainer(solutionContainer); - } - - #endregion Event Handlers } diff --git a/Content.Server/Chemistry/EntitySystems/ChemMasterSystem.cs b/Content.Server/Chemistry/EntitySystems/ChemMasterSystem.cs index ab91044574..289db75981 100644 --- a/Content.Server/Chemistry/EntitySystems/ChemMasterSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/ChemMasterSystem.cs @@ -80,7 +80,7 @@ private void UpdateUiState(Entity ent, bool updateLabel = f chemMaster.Mode, BuildInputContainerInfo(inputContainer), BuildOutputContainerInfo(outputContainer), bufferReagents, bufferCurrentVolume, chemMaster.PillType, chemMaster.PillDosageLimit, updateLabel); - _userInterfaceSystem.TrySetUiState(owner, ChemMasterUiKey.Key, state); + _userInterfaceSystem.SetUiState(owner, ChemMasterUiKey.Key, state); } private void OnSetModeMessage(Entity chemMaster, ref ChemMasterSetModeMessage message) @@ -179,7 +179,7 @@ private void DiscardReagents(Entity chemMaster, ReagentId i private void OnCreatePillsMessage(Entity chemMaster, ref ChemMasterCreatePillsMessage message) { - var user = message.Session.AttachedEntity; + var user = message.Actor; var maybeContainer = _itemSlotsSystem.GetItemOrNull(chemMaster, SharedChemMaster.OutputSlotName); if (maybeContainer is not { Valid: true } container || !TryComp(container, out StorageComponent? storage)) @@ -218,18 +218,9 @@ private void OnCreatePillsMessage(Entity chemMaster, ref Ch pill.PillType = chemMaster.Comp.PillType; Dirty(item, pill); - if (user.HasValue) - { - // Log pill creation by a user - _adminLogger.Add(LogType.Action, LogImpact.Low, - $"{ToPrettyString(user.Value):user} printed {ToPrettyString(item):pill} {SolutionContainerSystem.ToPrettyString(itemSolution.Comp.Solution)}"); - } - else - { - // Log pill creation by magic? This should never happen... right? - _adminLogger.Add(LogType.Action, LogImpact.Low, - $"Unknown printed {ToPrettyString(item):pill} {SolutionContainerSystem.ToPrettyString(itemSolution.Comp.Solution)}"); - } + // Log pill creation by a user + _adminLogger.Add(LogType.Action, LogImpact.Low, + $"{ToPrettyString(user):user} printed {ToPrettyString(item):pill} {SharedSolutionContainerSystem.ToPrettyString(itemSolution.Comp.Solution)}"); } UpdateUiState(chemMaster); @@ -238,7 +229,7 @@ private void OnCreatePillsMessage(Entity chemMaster, ref Ch private void OnOutputToBottleMessage(Entity chemMaster, ref ChemMasterOutputToBottleMessage message) { - var user = message.Session.AttachedEntity; + var user = message.Actor; var maybeContainer = _itemSlotsSystem.GetItemOrNull(chemMaster, SharedChemMaster.OutputSlotName); if (maybeContainer is not { Valid: true } container || !_solutionContainerSystem.TryGetSolution(container, SharedChemMaster.BottleSolutionName, out var soln, out var solution)) @@ -260,18 +251,9 @@ private void OnOutputToBottleMessage(Entity chemMaster, ref _labelSystem.Label(container, message.Label); _solutionContainerSystem.TryAddSolution(soln.Value, withdrawal); - if (user.HasValue) - { - // Log bottle creation by a user - _adminLogger.Add(LogType.Action, LogImpact.Low, - $"{ToPrettyString(user.Value):user} bottled {ToPrettyString(container):bottle} {SolutionContainerSystem.ToPrettyString(solution)}"); - } - else - { - // Log bottle creation by magic? This should never happen... right? - _adminLogger.Add(LogType.Action, LogImpact.Low, - $"Unknown bottled {ToPrettyString(container):bottle} {SolutionContainerSystem.ToPrettyString(solution)}"); - } + // Log bottle creation by a user + _adminLogger.Add(LogType.Action, LogImpact.Low, + $"{ToPrettyString(user):user} bottled {ToPrettyString(container):bottle} {SharedSolutionContainerSystem.ToPrettyString(solution)}"); UpdateUiState(chemMaster); ClickSound(chemMaster); diff --git a/Content.Server/Chemistry/EntitySystems/HypospraySystem.cs b/Content.Server/Chemistry/EntitySystems/HypospraySystem.cs index ab3b46755d..203eb041c8 100644 --- a/Content.Server/Chemistry/EntitySystems/HypospraySystem.cs +++ b/Content.Server/Chemistry/EntitySystems/HypospraySystem.cs @@ -26,7 +26,6 @@ public sealed class HypospraySystem : SharedHypospraySystem { [Dependency] private readonly AudioSystem _audio = default!; [Dependency] private readonly InteractionSystem _interaction = default!; - [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; public override void Initialize() { diff --git a/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs b/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs index a6d13b2f7c..9dd1d429b7 100644 --- a/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs @@ -124,7 +124,7 @@ private void InjectDoAfter(Entity injector, EntityUid target, Popup.PopupEntity(Loc.GetString("injector-component-injecting-user"), target, user); } - if (!SolutionContainers.TryGetSolution(injector.Owner, InjectorComponent.SolutionName, out _, out var solution)) + if (!SolutionContainers.TryGetSolution(injector.Owner, injector.Comp.SolutionName, out _, out var solution)) return; var actualDelay = MathHelper.Max(injector.Comp.Delay, TimeSpan.FromSeconds(1)); @@ -252,7 +252,7 @@ private void TryInjectIntoBloodstream(Entity injector, Entity private void TryInject(Entity injector, EntityUid targetEntity, Entity targetSolution, EntityUid user, bool asRefill) { - if (!SolutionContainers.TryGetSolution(injector.Owner, InjectorComponent.SolutionName, out var soln, + if (!SolutionContainers.TryGetSolution(injector.Owner, injector.Comp.SolutionName, out var soln, out var solution) || solution.Volume == 0) return; @@ -294,7 +294,7 @@ private void TryInject(Entity injector, EntityUid targetEntit private void AfterInject(Entity injector, EntityUid target) { // Automatically set syringe to draw after completely draining it. - if (SolutionContainers.TryGetSolution(injector.Owner, InjectorComponent.SolutionName, out _, + if (SolutionContainers.TryGetSolution(injector.Owner, injector.Comp.SolutionName, out _, out var solution) && solution.Volume == 0) { SetMode(injector, InjectorToggleMode.Draw); @@ -308,7 +308,7 @@ private void AfterInject(Entity injector, EntityUid target) private void AfterDraw(Entity injector, EntityUid target) { // Automatically set syringe to inject after completely filling it. - if (SolutionContainers.TryGetSolution(injector.Owner, InjectorComponent.SolutionName, out _, + if (SolutionContainers.TryGetSolution(injector.Owner, injector.Comp.SolutionName, out _, out var solution) && solution.AvailableVolume == 0) { SetMode(injector, InjectorToggleMode.Inject); @@ -322,7 +322,7 @@ private void AfterDraw(Entity injector, EntityUid target) private void TryDraw(Entity injector, Entity target, Entity targetSolution, EntityUid user) { - if (!SolutionContainers.TryGetSolution(injector.Owner, InjectorComponent.SolutionName, out var soln, + if (!SolutionContainers.TryGetSolution(injector.Owner, injector.Comp.SolutionName, out var soln, out var solution) || solution.AvailableVolume == 0) { return; diff --git a/Content.Server/Chemistry/EntitySystems/ReactionMixerSystem.cs b/Content.Server/Chemistry/EntitySystems/ReactionMixerSystem.cs index 032374d4a5..d5f7655f88 100644 --- a/Content.Server/Chemistry/EntitySystems/ReactionMixerSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/ReactionMixerSystem.cs @@ -30,7 +30,7 @@ private void OnAfterInteract(Entity entity, ref AfterInt return; } - if (!_solutionContainers.TryGetMixableSolution(args.Target.Value, out var solution)) + if (!_solutionContainers.TryGetMixableSolution(args.Target.Value, out var solution, out _)) return; _popup.PopupEntity(Loc.GetString(entity.Comp.MixMessage, ("mixed", Identity.Entity(args.Target.Value, EntityManager)), ("mixer", Identity.Entity(entity.Owner, EntityManager))), args.User, args.User); diff --git a/Content.Server/Chemistry/EntitySystems/ReagentDispenserSystem.cs b/Content.Server/Chemistry/EntitySystems/ReagentDispenserSystem.cs index d6433da56a..c48bf086d3 100644 --- a/Content.Server/Chemistry/EntitySystems/ReagentDispenserSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/ReagentDispenserSystem.cs @@ -62,7 +62,7 @@ private void UpdateUiState(Entity reagentDispenser) var inventory = GetInventory(reagentDispenser); var state = new ReagentDispenserBoundUserInterfaceState(outputContainerInfo, GetNetEntity(outputContainer), inventory, reagentDispenser.Comp.DispenseAmount); - _userInterfaceSystem.TrySetUiState(reagentDispenser, ReagentDispenserUiKey.Key, state); + _userInterfaceSystem.SetUiState(reagentDispenser.Owner, ReagentDispenserUiKey.Key, state); } private ContainerInfo? BuildOutputContainerInfo(EntityUid? container) @@ -81,9 +81,9 @@ private void UpdateUiState(Entity reagentDispenser) return null; } - private List>> GetInventory(Entity reagentDispenser) + private List GetInventory(Entity reagentDispenser) { - var inventory = new List>>(); + var inventory = new List(); for (var i = 0; i < reagentDispenser.Comp.NumSlots; i++) { @@ -99,15 +99,17 @@ private List>> GetInventory(En else continue; - // Add volume remaining label + // Get volume remaining and color of solution FixedPoint2 quantity = 0f; + var reagentColor = Color.White; if (storedContainer != null && _solutionContainerSystem.TryGetDrainableSolution(storedContainer.Value, out _, out var sol)) { quantity = sol.Volume; + reagentColor = sol.GetColor(_prototypeManager); } var storedAmount = Loc.GetString("reagent-dispenser-window-quantity-label-text", ("quantity", quantity)); - inventory.Add(new KeyValuePair>(storageSlotId, new KeyValuePair(reagentLabel, storedAmount))); + inventory.Add(new ReagentInventoryItem(storageSlotId, reagentLabel, storedAmount, reagentColor)); } return inventory; diff --git a/Content.Server/Chemistry/EntitySystems/SolutionHeaterSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionHeaterSystem.cs index 6e6373e10b..1ef589ab5c 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionHeaterSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionHeaterSystem.cs @@ -1,5 +1,6 @@ using Content.Server.Chemistry.Components; using Content.Server.Chemistry.Containers.EntitySystems; +using Content.Server.Construction; using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; using Content.Shared.Chemistry; @@ -20,6 +21,8 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnPowerChanged); + SubscribeLocalEvent(OnRefreshParts); + SubscribeLocalEvent(OnUpgradeExamine); SubscribeLocalEvent(OnItemPlaced); SubscribeLocalEvent(OnItemRemoved); } @@ -61,6 +64,18 @@ private void OnPowerChanged(Entity entity, ref PowerCha } } + private void OnRefreshParts(Entity entity, ref RefreshPartsEvent args) + { + var heatRating = args.PartRatings[entity.Comp.MachinePartHeatMultiplier] - 1; + + entity.Comp.HeatPerSecond = entity.Comp.BaseHeatPerSecond * MathF.Pow(entity.Comp.PartRatingHeatMultiplier, heatRating); + } + + private void OnUpgradeExamine(Entity entity, ref UpgradeExamineEvent args) + { + args.AddPercentageUpgrade("solution-heater-upgrade-heat", entity.Comp.HeatPerSecond / entity.Comp.BaseHeatPerSecond); + } + private void OnItemPlaced(Entity entity, ref ItemPlacedEvent args) { TryTurnOn(entity); diff --git a/Content.Server/Chemistry/EntitySystems/TransformableContainerSystem.cs b/Content.Server/Chemistry/EntitySystems/TransformableContainerSystem.cs index 94a3fe2186..c375d97b8c 100644 --- a/Content.Server/Chemistry/EntitySystems/TransformableContainerSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/TransformableContainerSystem.cs @@ -20,7 +20,7 @@ public override void Initialize() SubscribeLocalEvent(OnSolutionChange); } - private void OnMapInit(Entity entity, ref MapInitEvent args) + private void OnMapInit(Entity entity, ref MapInitEvent args) { var meta = MetaData(entity.Owner); if (string.IsNullOrEmpty(entity.Comp.InitialName)) diff --git a/Content.Server/Chemistry/ReagentEffectConditions/OrganType.cs b/Content.Server/Chemistry/ReagentEffectConditions/OrganType.cs index 3b7bffb9cf..4ae13b6a6e 100644 --- a/Content.Server/Chemistry/ReagentEffectConditions/OrganType.cs +++ b/Content.Server/Chemistry/ReagentEffectConditions/OrganType.cs @@ -1,4 +1,4 @@ -using Content.Server.Body.Components; +using Content.Server.Body.Components; using Content.Shared.Body.Prototypes; using Content.Shared.Chemistry.Reagent; using Robust.Shared.Prototypes; @@ -35,7 +35,7 @@ public override bool Condition(ReagentEffectArgs args) public override string GuidebookExplanation(IPrototypeManager prototype) { return Loc.GetString("reagent-effect-condition-guidebook-organ-type", - ("name", prototype.Index(Type).Name), + ("name", prototype.Index(Type).LocalizedName), ("shouldhave", ShouldHave)); } } diff --git a/Content.Server/Chemistry/ReagentEffectConditions/ReagentThreshold.cs b/Content.Server/Chemistry/ReagentEffectConditions/ReagentThreshold.cs index 50be89581f..061af2b3ae 100644 --- a/Content.Server/Chemistry/ReagentEffectConditions/ReagentThreshold.cs +++ b/Content.Server/Chemistry/ReagentEffectConditions/ReagentThreshold.cs @@ -1,4 +1,4 @@ -using Content.Shared.Chemistry.Reagent; +using Content.Shared.Chemistry.Reagent; using Content.Shared.FixedPoint; using Robust.Shared.Prototypes; @@ -43,7 +43,7 @@ public override string GuidebookExplanation(IPrototypeManager prototype) prototype.TryIndex(Reagent, out reagentProto); return Loc.GetString("reagent-effect-condition-guidebook-reagent-threshold", - ("reagent", reagentProto?.LocalizedName ?? "this reagent"), + ("reagent", reagentProto?.LocalizedName ?? Loc.GetString("reagent-effect-condition-guidebook-this-reagent")), ("max", Max == FixedPoint2.MaxValue ? (float) int.MaxValue : Max.Float()), ("min", Min.Float())); } diff --git a/Content.Server/Chemistry/ReagentEffectConditions/TotalHunger.cs b/Content.Server/Chemistry/ReagentEffectConditions/TotalHunger.cs new file mode 100644 index 0000000000..1dd12e632a --- /dev/null +++ b/Content.Server/Chemistry/ReagentEffectConditions/TotalHunger.cs @@ -0,0 +1,35 @@ +using Content.Shared.Chemistry.Reagent; +using Content.Shared.Nutrition.Components; +using Content.Shared.FixedPoint; +using Robust.Shared.Prototypes; + +namespace Content.Server.Chemistry.ReagentEffectConditions +{ + public sealed partial class Hunger : ReagentEffectCondition + { + [DataField] + public float Max = float.PositiveInfinity; + + [DataField] + public float Min = 0; + + public override bool Condition(ReagentEffectArgs args) + { + if (args.EntityManager.TryGetComponent(args.SolutionEntity, out HungerComponent? hunger)) + { + var total = hunger.CurrentHunger; + if (total > Min && total < Max) + return true; + } + + return false; + } + + public override string GuidebookExplanation(IPrototypeManager prototype) + { + return Loc.GetString("reagent-effect-condition-guidebook-total-hunger", + ("max", float.IsPositiveInfinity(Max) ? (float) int.MaxValue : Max), + ("min", Min)); + } + } +} diff --git a/Content.Server/Chemistry/ReagentEffects/AdjustReagent.cs b/Content.Server/Chemistry/ReagentEffects/AdjustReagent.cs index e70626f1d3..16d69edd9a 100644 --- a/Content.Server/Chemistry/ReagentEffects/AdjustReagent.cs +++ b/Content.Server/Chemistry/ReagentEffects/AdjustReagent.cs @@ -1,4 +1,4 @@ -using Content.Shared.Body.Prototypes; +using Content.Shared.Body.Prototypes; using Content.Shared.Chemistry.Reagent; using Content.Shared.FixedPoint; using JetBrains.Annotations; @@ -74,7 +74,7 @@ public override void Effect(ReagentEffectArgs args) return Loc.GetString("reagent-effect-guidebook-adjust-reagent-group", ("chance", Probability), ("deltasign", MathF.Sign(Amount.Float())), - ("group", groupProto.ID), + ("group", groupProto.LocalizedName), ("amount", MathF.Abs(Amount.Float()))); } diff --git a/Content.Server/Chemistry/ReagentEffects/ChemAddMoodlet.cs b/Content.Server/Chemistry/ReagentEffects/ChemAddMoodlet.cs new file mode 100644 index 0000000000..f5bb629299 --- /dev/null +++ b/Content.Server/Chemistry/ReagentEffects/ChemAddMoodlet.cs @@ -0,0 +1,34 @@ +using Content.Shared.Chemistry.Reagent; +using Content.Shared.Mood; +using JetBrains.Annotations; +using Robust.Shared.Prototypes; + +namespace Content.Server.Chemistry.ReagentEffects; + +/// +/// Adds a moodlet to an entity. +/// +[UsedImplicitly] +public sealed partial class ChemAddMoodlet : ReagentEffect +{ + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + { + var protoMan = IoCManager.Resolve(); + return Loc.GetString("reagent-effect-guidebook-add-moodlet", + ("amount", protoMan.Index(MoodPrototype.Id).MoodChange), + ("timeout", protoMan.Index(MoodPrototype.Id).Timeout)); + } + + /// + /// The mood prototype to be applied to the using entity. + /// + [DataField(required: true)] + public ProtoId MoodPrototype = default!; + + public override void Effect(ReagentEffectArgs args) + { + var entityManager = IoCManager.Resolve(); + var ev = new MoodEffectEvent(MoodPrototype); + entityManager.EventBus.RaiseLocalEvent(args.SolutionEntity, ev); + } +} diff --git a/Content.Server/Chemistry/ReagentEffects/ChemCleanBoodstream.cs b/Content.Server/Chemistry/ReagentEffects/ChemCleanBloodstream.cs similarity index 100% rename from Content.Server/Chemistry/ReagentEffects/ChemCleanBoodstream.cs rename to Content.Server/Chemistry/ReagentEffects/ChemCleanBloodstream.cs diff --git a/Content.Server/Chemistry/ReagentEffects/HealthChange.cs b/Content.Server/Chemistry/ReagentEffects/HealthChange.cs index 2a6181c7f3..24880cfd37 100644 --- a/Content.Server/Chemistry/ReagentEffects/HealthChange.cs +++ b/Content.Server/Chemistry/ReagentEffects/HealthChange.cs @@ -74,7 +74,7 @@ protected override string ReagentEffectGuidebookText(IPrototypeManager prototype damages.Add( Loc.GetString("health-change-display", - ("kind", group.ID), + ("kind", group.LocalizedName), ("amount", MathF.Abs(amount.Float())), ("deltasign", sign) )); @@ -96,7 +96,7 @@ protected override string ReagentEffectGuidebookText(IPrototypeManager prototype damages.Add( Loc.GetString("health-change-display", - ("kind", kind), + ("kind", prototype.Index(kind).LocalizedName), ("amount", MathF.Abs(amount.Float())), ("deltasign", sign) )); diff --git a/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs b/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs index 5654f9067b..21bfe23923 100644 --- a/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs +++ b/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs @@ -1,7 +1,6 @@ using System.Linq; using Content.Server.Ghost.Roles.Components; using Content.Server.Language; -using Content.Server.Language.Events; using Content.Server.Speech.Components; using Content.Shared.Chemistry.Reagent; using Content.Shared.Language; @@ -41,7 +40,7 @@ public override void Effect(ReagentEffectArgs args) if (!knowledge.SpokenLanguages.Contains(fallback)) knowledge.SpokenLanguages.Add(fallback); - IoCManager.Resolve().GetEntitySystem().UpdateEntityLanguages(uid, speaker); + IoCManager.Resolve().GetEntitySystem().UpdateEntityLanguages(uid); // Stops from adding a ghost role to things like people who already have a mind if (entityManager.TryGetComponent(uid, out var mindContainer) && mindContainer.HasMind) diff --git a/Content.Server/Chemistry/ReagentEffects/ReduceRotting.cs b/Content.Server/Chemistry/ReagentEffects/ReduceRotting.cs new file mode 100644 index 0000000000..cea4f85332 --- /dev/null +++ b/Content.Server/Chemistry/ReagentEffects/ReduceRotting.cs @@ -0,0 +1,31 @@ +using Content.Shared.Chemistry.Reagent; +using JetBrains.Annotations; +using Robust.Shared.Prototypes; +using Content.Server.Atmos.Rotting; + +namespace Content.Server.Chemistry.ReagentEffects +{ + /// + /// Reduces the rotting accumulator on the patient, making them revivable. + /// + [UsedImplicitly] + public sealed partial class ReduceRotting : ReagentEffect + { + [DataField("seconds")] + public double RottingAmount = 10; + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-reduce-rotting", + ("chance", Probability), + ("time", RottingAmount)); + public override void Effect(ReagentEffectArgs args) + { + if (args.Scale != 1f) + return; + + var rottingSys = args.EntityManager.EntitySysManager.GetEntitySystem(); + + rottingSys.ReduceAccumulator(args.SolutionEntity, TimeSpan.FromSeconds(RottingAmount)); + } + } +} diff --git a/Content.Server/Chemistry/ReagentEffects/ResetNarcolepsy.cs b/Content.Server/Chemistry/ReagentEffects/ResetNarcolepsy.cs index fa4f910891..2893505fc8 100644 --- a/Content.Server/Chemistry/ReagentEffects/ResetNarcolepsy.cs +++ b/Content.Server/Chemistry/ReagentEffects/ResetNarcolepsy.cs @@ -15,7 +15,7 @@ public sealed partial class ResetNarcolepsy : ReagentEffect /// The # of seconds the effect resets the narcolepsy timer to /// [DataField("TimerReset")] - public int TimerReset = 600; + public float TimerReset = 600; protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => Loc.GetString("reagent-effect-guidebook-reset-narcolepsy", ("chance", Probability)); diff --git a/Content.Server/Cloning/CloningConsoleSystem.cs b/Content.Server/Cloning/CloningConsoleSystem.cs index 524cbe80e4..c0685024aa 100644 --- a/Content.Server/Cloning/CloningConsoleSystem.cs +++ b/Content.Server/Cloning/CloningConsoleSystem.cs @@ -138,17 +138,17 @@ private void OnAnchorChanged(EntityUid uid, CloningConsoleComponent component, r public void UpdateUserInterface(EntityUid consoleUid, CloningConsoleComponent consoleComponent) { - if (!_uiSystem.TryGetUi(consoleUid, CloningConsoleUiKey.Key, out var ui)) + if (!_uiSystem.HasUi(consoleUid, CloningConsoleUiKey.Key)) return; if (!_powerReceiverSystem.IsPowered(consoleUid)) { - _uiSystem.CloseAll(ui); + _uiSystem.CloseUis(consoleUid); return; } var newState = GetUserInterfaceState(consoleComponent); - _uiSystem.SetUiState(ui, newState); + _uiSystem.SetUiState(consoleUid, CloningConsoleUiKey.Key, newState); } public void TryClone(EntityUid uid, EntityUid cloningPodUid, EntityUid scannerUid, CloningPodComponent cloningPod, MedicalScannerComponent? scannerComp = null, CloningConsoleComponent? consoleComponent = null) diff --git a/Content.Server/Cloning/CloningSystem.Utility.cs b/Content.Server/Cloning/CloningSystem.Utility.cs index 408e1cf24a..d98e105e63 100644 --- a/Content.Server/Cloning/CloningSystem.Utility.cs +++ b/Content.Server/Cloning/CloningSystem.Utility.cs @@ -21,9 +21,9 @@ using Content.Shared.Damage.ForceSay; using Content.Shared.Chat; using Content.Server.Body.Components; +using Content.Server.Language; using Content.Shared.Abilities.Psionics; using Content.Shared.Language.Components; -using Content.Shared.Language; using Content.Shared.Nutrition.Components; using Robust.Shared.Enums; @@ -68,9 +68,10 @@ private bool CheckUncloneable(EntityUid uid, EntityUid bodyToClone, CloningPodCo if (ev.Cancelled && ev.CloningFailMessage is not null) { - _chatSystem.TrySendInGameICMessage(uid, - Loc.GetString(ev.CloningFailMessage), - InGameICChatType.Speak, false); + if (clonePod.ConnectedConsole is not null) + _chatSystem.TrySendInGameICMessage(clonePod.ConnectedConsole.Value, + Loc.GetString(ev.CloningFailMessage), + InGameICChatType.Speak, false); return false; } @@ -252,7 +253,7 @@ private void MakeAHugeMess(EntityUid uid, PhysicsComponent? physics = null, Bloo ? physics.Mass : 71)); - bloodSolution.AddReagent("blood", 0.8f + bloodSolution.AddReagent("Blood", 0.8f * ((blood is not null) ? blood.BloodMaxVolume : 300)); diff --git a/Content.Server/Cloning/CloningSystem.cs b/Content.Server/Cloning/CloningSystem.cs index 7931fae477..72104bc381 100644 --- a/Content.Server/Cloning/CloningSystem.cs +++ b/Content.Server/Cloning/CloningSystem.cs @@ -1,6 +1,7 @@ using Content.Server.Atmos.EntitySystems; using Content.Server.Chat.Systems; using Content.Server.Cloning.Components; +using Content.Server.Construction; using Content.Server.DeviceLinking.Systems; using Content.Server.EUI; using Content.Server.Fluids.EntitySystems; @@ -9,6 +10,10 @@ using Content.Server.Materials; using Content.Server.Popups; using Content.Server.Power.EntitySystems; +using Content.Server.Traits.Assorted; +using Content.Shared.Atmos; +using Content.Shared.CCVar; +using Content.Shared.Chemistry.Components; using Content.Shared.Cloning; using Content.Shared.Damage; using Content.Shared.DeviceLinking.Events; @@ -90,8 +95,23 @@ public override void Initialize() SubscribeLocalEvent(OnExamined); SubscribeLocalEvent(OnEmagged); SubscribeLocalEvent(OnPowerChanged); + SubscribeLocalEvent(OnPartsRefreshed); + SubscribeLocalEvent(OnUpgradeExamine); + } + private void OnPartsRefreshed(EntityUid uid, CloningPodComponent component, RefreshPartsEvent args) + { + var materialRating = args.PartRatings[component.MachinePartMaterialUse]; + var speedRating = args.PartRatings[component.MachinePartCloningSpeed]; + + component.BiomassCostMultiplier = MathF.Pow(component.PartRatingMaterialMultiplier, materialRating - 1); + component.CloningTime = component.CloningTime * MathF.Pow(component.PartRatingSpeedMultiplier, speedRating - 1); } + private void OnUpgradeExamine(EntityUid uid, CloningPodComponent component, UpgradeExamineEvent args) + { + args.AddPercentageUpgrade("cloning-pod-component-upgrade-speed", component.CloningTime / component.CloningTime); + args.AddPercentageUpgrade("cloning-pod-component-upgrade-biomass-requirement", component.BiomassCostMultiplier); + } private void OnPortDisconnected(EntityUid uid, CloningPodComponent pod, PortDisconnectedEvent args) { pod.ConnectedConsole = null; diff --git a/Content.Server/Clothing/MagbootsSystem.cs b/Content.Server/Clothing/MagbootsSystem.cs index bc6880552f..f12558389e 100644 --- a/Content.Server/Clothing/MagbootsSystem.cs +++ b/Content.Server/Clothing/MagbootsSystem.cs @@ -1,7 +1,6 @@ using Content.Server.Atmos.Components; using Content.Shared.Alert; using Content.Shared.Clothing; -using Content.Shared.Inventory.Events; namespace Content.Server.Clothing; @@ -13,8 +12,8 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnGotEquipped); - SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); } protected override void UpdateMagbootEffects(EntityUid parent, EntityUid uid, bool state, MagbootsComponent? component) @@ -38,19 +37,13 @@ protected override void UpdateMagbootEffects(EntityUid parent, EntityUid uid, bo } } - private void OnGotUnequipped(EntityUid uid, MagbootsComponent component, GotUnequippedEvent args) + private void OnGotUnequipped(EntityUid uid, MagbootsComponent component, ref ClothingGotUnequippedEvent args) { - if (args.Slot == "shoes") - { - UpdateMagbootEffects(args.Equipee, uid, false, component); - } + UpdateMagbootEffects(args.Wearer, uid, false, component); } - private void OnGotEquipped(EntityUid uid, MagbootsComponent component, GotEquippedEvent args) + private void OnGotEquipped(EntityUid uid, MagbootsComponent component, ref ClothingGotEquippedEvent args) { - if (args.Slot == "shoes") - { - UpdateMagbootEffects(args.Equipee, uid, true, component); - } + UpdateMagbootEffects(args.Wearer, uid, true, component); } } diff --git a/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs b/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs index 6fbfd9f367..e20a6c3da9 100644 --- a/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs +++ b/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs @@ -64,7 +64,7 @@ private void UpdateUi(EntityUid uid, ChameleonClothingComponent? component = nul return; var state = new ChameleonBoundUserInterfaceState(component.Slot, component.Default); - _uiSystem.TrySetUiState(uid, ChameleonUiKey.Key, state); + _uiSystem.SetUiState(uid, ChameleonUiKey.Key, state); } /// diff --git a/Content.Server/Cocoon/CocoonerSystem.cs b/Content.Server/Cocoon/CocoonerSystem.cs new file mode 100644 index 0000000000..a53ebbb5f5 --- /dev/null +++ b/Content.Server/Cocoon/CocoonerSystem.cs @@ -0,0 +1,132 @@ +using Content.Shared.Cocoon; +using Content.Shared.IdentityManagement; +using Content.Shared.Verbs; +using Content.Shared.DoAfter; +using Content.Shared.Stunnable; +using Content.Shared.Eye.Blinding.Systems; +using Content.Shared.Containers.ItemSlots; +using Content.Shared.Damage; +using Content.Shared.Administration.Logs; +using Content.Shared.Database; +using Content.Shared.Humanoid; +using Content.Server.Popups; +using Content.Server.DoAfter; +using Content.Server.Speech.Components; +using Robust.Shared.Containers; +using Content.Shared.Mobs.Components; + +namespace Content.Server.Cocoon +{ + public sealed class CocooningSystem : EntitySystem + { + [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly DoAfterSystem _doAfter = default!; + [Dependency] private readonly ItemSlotsSystem _itemSlots = default!; + [Dependency] private readonly BlindableSystem _blindableSystem = default!; + [Dependency] private readonly DamageableSystem _damageableSystem = default!; + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; + + private const string BodySlot = "body_slot"; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent>(AddCocoonVerb); + SubscribeLocalEvent(OnCocEntInserted); + SubscribeLocalEvent(OnCocEntRemoved); + SubscribeLocalEvent(OnDamageChanged); + SubscribeLocalEvent(OnCocoonDoAfter); + } + + private void AddCocoonVerb(EntityUid uid, CocoonerComponent component, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || !HasComp(args.Target)) + return; + + InnateVerb verb = new() + { + Act = () => + { + StartCocooning(uid, component, args.Target); + }, + Text = Loc.GetString("cocoon"), + Priority = 2 + }; + args.Verbs.Add(verb); + } + + private void OnCocEntInserted(EntityUid uid, CocoonComponent component, EntInsertedIntoContainerMessage args) + { + component.Victim = args.Entity; + + if (TryComp(args.Entity, out var currentAccent)) + component.OldAccent = currentAccent.Accent; + + EnsureComp(args.Entity).Accent = "mumble"; + EnsureComp(args.Entity); + + _blindableSystem.UpdateIsBlind(args.Entity); + } + + private void OnCocEntRemoved(EntityUid uid, CocoonComponent component, EntRemovedFromContainerMessage args) + { + if (TryComp(args.Entity, out var replacement)) + replacement.Accent = component.OldAccent ?? replacement.Accent; + else + RemComp(args.Entity); + + RemComp(args.Entity); + _blindableSystem.UpdateIsBlind(args.Entity); + } + + private void OnDamageChanged(EntityUid uid, CocoonComponent component, DamageChangedEvent args) + { + if (!args.DamageIncreased || args.DamageDelta == null || component.Victim == null) + return; + + var damage = args.DamageDelta * component.DamagePassthrough; + _damageableSystem.TryChangeDamage(component.Victim, damage); + } + + private void StartCocooning(EntityUid uid, CocoonerComponent component, EntityUid target) + { + _popupSystem.PopupEntity(Loc.GetString("cocoon-start-third-person", ("target", Identity.Entity(target, EntityManager)), ("spider", Identity.Entity(uid, EntityManager))), uid, + Shared.Popups.PopupType.MediumCaution); + + var delay = component.CocoonDelay; + + if (HasComp(target)) + delay *= component.CocoonKnockdownMultiplier; + + var args = new DoAfterArgs(EntityManager, uid, delay, new CocoonDoAfterEvent(), uid, target: target) + { + BreakOnUserMove = true, + BreakOnTargetMove = true, + }; + + _doAfter.TryStartDoAfter(args); + } + + private void OnCocoonDoAfter(EntityUid uid, CocoonerComponent component, CocoonDoAfterEvent args) + { + if (args.Handled || args.Cancelled || args.Args.Target == null) + return; + + var spawnProto = HasComp(args.Args.Target) ? "CocoonedHumanoid" : "CocoonSmall"; + Transform(args.Args.Target.Value).AttachToGridOrMap(); + var cocoon = Spawn(spawnProto, Transform(args.Args.Target.Value).Coordinates); + + if (!TryComp(cocoon, out var slots)) + return; + + _itemSlots.SetLock(cocoon, BodySlot, false, slots); + _itemSlots.TryInsert(cocoon, BodySlot, args.Args.Target.Value, args.Args.User); + _itemSlots.SetLock(cocoon, BodySlot, true, slots); + + var impact = (spawnProto == "CocoonedHumanoid") ? LogImpact.High : LogImpact.Medium; + + _adminLogger.Add(LogType.Action, impact, $"{ToPrettyString(args.Args.User):player} cocooned {ToPrettyString(args.Args.Target.Value):target}"); + args.Handled = true; + } + } +} diff --git a/Content.Server/Communications/CommunicationsConsoleSystem.cs b/Content.Server/Communications/CommunicationsConsoleSystem.cs index b68a952105..1cffcf5816 100644 --- a/Content.Server/Communications/CommunicationsConsoleSystem.cs +++ b/Content.Server/Communications/CommunicationsConsoleSystem.cs @@ -86,8 +86,8 @@ public override void Update(float frameTime) comp.UIUpdateAccumulator -= UIUpdateInterval; - if (_uiSystem.TryGetUi(uid, CommunicationsConsoleUiKey.Key, out var ui) && ui.SubscribedSessions.Count > 0) - UpdateCommsConsoleInterface(uid, comp, ui); + if (_uiSystem.IsUiOpen(uid, CommunicationsConsoleUiKey.Key)) + UpdateCommsConsoleInterface(uid, comp); } base.Update(frameTime); @@ -140,11 +140,8 @@ public void UpdateCommsConsoleInterface() /// /// Updates the UI for a particular comms console. /// - public void UpdateCommsConsoleInterface(EntityUid uid, CommunicationsConsoleComponent comp, PlayerBoundUserInterface? ui = null) + public void UpdateCommsConsoleInterface(EntityUid uid, CommunicationsConsoleComponent comp) { - if (ui == null && !_uiSystem.TryGetUi(uid, CommunicationsConsoleUiKey.Key, out ui)) - return; - var stationUid = _stationSystem.GetOwningStation(uid); List? levels = null; string currentLevel = default!; @@ -172,7 +169,7 @@ public void UpdateCommsConsoleInterface(EntityUid uid, CommunicationsConsoleComp } } - _uiSystem.SetUiState(ui, new CommunicationsConsoleInterfaceState( + _uiSystem.SetUiState(uid, CommunicationsConsoleUiKey.Key, new CommunicationsConsoleInterfaceState( CanAnnounce(comp), CanCallOrRecall(comp), levels, @@ -223,12 +220,12 @@ private bool CanCallOrRecall(CommunicationsConsoleComponent comp) private void OnSelectAlertLevelMessage(EntityUid uid, CommunicationsConsoleComponent comp, CommunicationsConsoleSelectAlertLevelMessage message) { - if (message.Session.AttachedEntity is not { Valid: true } mob) + if (message.Actor is not { Valid: true } mob) return; if (!CanUse(mob, uid)) { - _popupSystem.PopupCursor(Loc.GetString("comms-console-permission-denied"), message.Session, PopupType.Medium); + _popupSystem.PopupCursor(Loc.GetString("comms-console-permission-denied"), message.Actor, PopupType.Medium); return; } @@ -245,7 +242,7 @@ private void OnAnnounceMessage(EntityUid uid, CommunicationsConsoleComponent com var maxLength = _cfg.GetCVar(CCVars.ChatMaxAnnouncementLength); var msg = SharedChatSystem.SanitizeAnnouncement(message.Message, maxLength); var author = Loc.GetString("comms-console-announcement-unknown-sender"); - if (message.Session.AttachedEntity is { Valid: true } mob) + if (message.Actor is { Valid: true } mob) { if (!CanAnnounce(comp)) { @@ -254,7 +251,7 @@ private void OnAnnounceMessage(EntityUid uid, CommunicationsConsoleComponent com if (!CanUse(mob, uid)) { - _popupSystem.PopupEntity(Loc.GetString("comms-console-permission-denied"), uid, message.Session); + _popupSystem.PopupEntity(Loc.GetString("comms-console-permission-denied"), uid, message.Actor); return; } @@ -267,7 +264,7 @@ private void OnAnnounceMessage(EntityUid uid, CommunicationsConsoleComponent com comp.AnnouncementCooldownRemaining = comp.Delay; UpdateCommsConsoleInterface(uid, comp); - var ev = new CommunicationConsoleAnnouncementEvent(uid, comp, msg, message.Session.AttachedEntity); + var ev = new CommunicationConsoleAnnouncementEvent(uid, comp, msg, message.Actor); RaiseLocalEvent(ref ev); // allow admemes with vv @@ -279,17 +276,16 @@ private void OnAnnounceMessage(EntityUid uid, CommunicationsConsoleComponent com { _announcer.SendAnnouncement("announce", Filter.Broadcast(), msg, title, comp.Color); - if (message.Session.AttachedEntity != null) - _adminLogger.Add(LogType.Chat, LogImpact.Low, $"{ToPrettyString(message.Session.AttachedEntity.Value):player} has sent the following global announcement: {msg}"); - + _adminLogger.Add(LogType.Chat, LogImpact.Low, $"{ToPrettyString(message.Actor):player} has sent the following global announcement: {msg}"); return; } + if (TryComp(_stationSystem.GetOwningStation(uid), out var stationData)) _announcer.SendAnnouncement("announce", _stationSystem.GetInStation(stationData), msg, title, comp.Color); - if (message.Session.AttachedEntity != null) - _adminLogger.Add(LogType.Chat, LogImpact.Low, $"{ToPrettyString(message.Session.AttachedEntity.Value):player} has sent the following station announcement: {msg}"); + _adminLogger.Add(LogType.Chat, LogImpact.Low, $"{ToPrettyString(message.Actor):player} has sent the following station announcement: {msg}"); + } private void OnBroadcastMessage(EntityUid uid, CommunicationsConsoleComponent component, CommunicationsConsoleBroadcastMessage message) @@ -304,8 +300,7 @@ private void OnBroadcastMessage(EntityUid uid, CommunicationsConsoleComponent co _deviceNetworkSystem.QueuePacket(uid, null, payload, net.TransmitFrequency); - if (message.Session.AttachedEntity != null) - _adminLogger.Add(LogType.DeviceNetwork, LogImpact.Low, $"{ToPrettyString(message.Session.AttachedEntity.Value):player} has sent the following broadcast: {message.Message:msg}"); + _adminLogger.Add(LogType.DeviceNetwork, LogImpact.Low, $"{ToPrettyString(message.Actor):player} has sent the following broadcast: {message.Message:msg}"); } private void OnCallShuttleMessage(EntityUid uid, CommunicationsConsoleComponent comp, CommunicationsConsoleCallEmergencyShuttleMessage message) @@ -313,12 +308,11 @@ private void OnCallShuttleMessage(EntityUid uid, CommunicationsConsoleComponent if (!CanCallOrRecall(comp)) return; - if (message.Session.AttachedEntity is not { Valid: true } mob) - return; + var mob = message.Actor; if (!CanUse(mob, uid)) { - _popupSystem.PopupEntity(Loc.GetString("comms-console-permission-denied"), uid, message.Session); + _popupSystem.PopupEntity(Loc.GetString("comms-console-permission-denied"), uid, message.Actor); return; } @@ -326,7 +320,7 @@ private void OnCallShuttleMessage(EntityUid uid, CommunicationsConsoleComponent RaiseLocalEvent(ref ev); if (ev.Cancelled) { - _popupSystem.PopupEntity(ev.Reason ?? Loc.GetString("comms-console-shuttle-unavailable"), uid, message.Session); + _popupSystem.PopupEntity(ev.Reason ?? Loc.GetString("comms-console-shuttle-unavailable"), uid, message.Actor); return; } @@ -339,17 +333,14 @@ private void OnRecallShuttleMessage(EntityUid uid, CommunicationsConsoleComponen if (!CanCallOrRecall(comp)) return; - if (message.Session.AttachedEntity is not { Valid: true } mob) - return; - - if (!CanUse(mob, uid)) + if (!CanUse(message.Actor, uid)) { - _popupSystem.PopupEntity(Loc.GetString("comms-console-permission-denied"), uid, message.Session); + _popupSystem.PopupEntity(Loc.GetString("comms-console-permission-denied"), uid, message.Actor); return; } _roundEndSystem.CancelRoundEndCountdown(uid); - _adminLogger.Add(LogType.Action, LogImpact.Extreme, $"{ToPrettyString(mob):player} has recalled the shuttle."); + _adminLogger.Add(LogType.Action, LogImpact.Extreme, $"{ToPrettyString(message.Actor):player} has recalled the shuttle."); } } diff --git a/Content.Server/Configurable/ConfigurationSystem.cs b/Content.Server/Configurable/ConfigurationSystem.cs index eb31149eca..2683bf4e09 100644 --- a/Content.Server/Configurable/ConfigurationSystem.cs +++ b/Content.Server/Configurable/ConfigurationSystem.cs @@ -30,10 +30,7 @@ private void OnInteractUsing(EntityUid uid, ConfigurationComponent component, In if (!TryComp(args.Used, out ToolComponent? tool) || !tool.Qualities.Contains(component.QualityNeeded)) return; - if (!TryComp(args.User, out ActorComponent? actor)) - return; - - args.Handled = _uiSystem.TryOpen(uid, ConfigurationUiKey.Key, actor.PlayerSession); + args.Handled = _uiSystem.TryOpenUi(uid, ConfigurationUiKey.Key, args.User); } private void OnStartup(EntityUid uid, ConfigurationComponent component, ComponentStartup args) @@ -43,8 +40,8 @@ private void OnStartup(EntityUid uid, ConfigurationComponent component, Componen private void UpdateUi(EntityUid uid, ConfigurationComponent component) { - if (_uiSystem.TryGetUi(uid, ConfigurationUiKey.Key, out var ui)) - _uiSystem.SetUiState(ui, new ConfigurationBoundUserInterfaceState(component.Config)); + if (_uiSystem.HasUi(uid, ConfigurationUiKey.Key)) + _uiSystem.SetUiState(uid, ConfigurationUiKey.Key, new ConfigurationBoundUserInterfaceState(component.Config)); } private void OnUpdate(EntityUid uid, ConfigurationComponent component, ConfigurationUpdatedMessage args) diff --git a/Content.Server/Construction/Components/WelderRefinableComponent.cs b/Content.Server/Construction/Components/WelderRefinableComponent.cs index dc3074f195..31b029e241 100644 --- a/Content.Server/Construction/Components/WelderRefinableComponent.cs +++ b/Content.Server/Construction/Components/WelderRefinableComponent.cs @@ -2,22 +2,24 @@ using Content.Shared.Storage; using Robust.Shared.Prototypes; -namespace Content.Server.Construction.Components +namespace Content.Server.Construction.Components; + +/// +/// Used for something that can be refined by welder. +/// For example, glass shard can be refined to glass sheet. +/// +[RegisterComponent] +public sealed partial class WelderRefinableComponent : Component { - /// - /// Used for something that can be refined by welder. - /// For example, glass shard can be refined to glass sheet. - /// - [RegisterComponent] - public sealed partial class WelderRefinableComponent : Component - { - [DataField] - public List RefineResult = new(); + [DataField] + public HashSet? RefineResult; + + [DataField] + public float RefineTime = 2f; - [DataField] - public float RefineTime = 2f; + [DataField] + public float RefineFuel; - [DataField] - public ProtoId QualityNeeded = "Welding"; - } + [DataField] + public ProtoId QualityNeeded = "Welding"; } diff --git a/Content.Server/Construction/Conditions/Locked.cs b/Content.Server/Construction/Conditions/Locked.cs index fde704b161..0b8c9118dc 100644 --- a/Content.Server/Construction/Conditions/Locked.cs +++ b/Content.Server/Construction/Conditions/Locked.cs @@ -15,7 +15,7 @@ public sealed partial class Locked : IGraphCondition public bool Condition(EntityUid uid, IEntityManager entityManager) { if (!entityManager.TryGetComponent(uid, out LockComponent? lockcomp)) - return false; + return true; return lockcomp.Locked == IsLocked; } @@ -25,7 +25,8 @@ public bool DoExamine(ExaminedEvent args) var entMan = IoCManager.Resolve(); var entity = args.Examined; - if (!entMan.TryGetComponent(entity, out LockComponent? lockcomp)) return false; + if (!entMan.TryGetComponent(entity, out LockComponent? lockcomp)) + return true; switch (IsLocked) { diff --git a/Content.Server/Construction/ConstructionSystem.Guided.cs b/Content.Server/Construction/ConstructionSystem.Guided.cs index fe7f9152c0..e096bc02c3 100644 --- a/Content.Server/Construction/ConstructionSystem.Guided.cs +++ b/Content.Server/Construction/ConstructionSystem.Guided.cs @@ -41,6 +41,18 @@ private void AddDeconstructVerb(EntityUid uid, ConstructionComponent component, component.Node == component.DeconstructionNode) return; + if (!_prototypeManager.TryIndex(component.Graph, out ConstructionGraphPrototype? graph)) + return; + + if (component.DeconstructionNode == null) + return; + + if (GetCurrentNode(uid, component) is not {} currentNode) + return; + + if (graph.Path(currentNode.Name, component.DeconstructionNode) is not {} path || path.Length == 0) + return; + Verb verb = new(); //verb.Category = VerbCategories.Construction; //TODO VERBS add more construction verbs? Until then, removing construction category diff --git a/Content.Server/Construction/ConstructionSystem.Interactions.cs b/Content.Server/Construction/ConstructionSystem.Interactions.cs index 946aaa0d3e..5361b65b1f 100644 --- a/Content.Server/Construction/ConstructionSystem.Interactions.cs +++ b/Content.Server/Construction/ConstructionSystem.Interactions.cs @@ -11,10 +11,8 @@ using Content.Shared.Interaction; using Content.Shared.Prying.Systems; using Content.Shared.Radio.EntitySystems; -using Content.Shared.Tools.Components; using Content.Shared.Tools.Systems; using Robust.Shared.Containers; -using Robust.Shared.Map; using Robust.Shared.Utility; #if EXCEPTION_TOLERANCE // ReSharper disable once RedundantUsingDirective @@ -370,7 +368,8 @@ private HandleResult HandleInteraction(EntityUid uid, object ev, ConstructionGra TimeSpan.FromSeconds(toolInsertStep.DoAfter), new [] { toolInsertStep.Tool }, new ConstructionInteractDoAfterEvent(EntityManager, interactUsing), - out var doAfter); + out var doAfter, + toolInsertStep.Fuel); return result && doAfter != null ? HandleResult.DoAfter : HandleResult.False; } diff --git a/Content.Server/Construction/ConstructionSystem.Machine.cs b/Content.Server/Construction/ConstructionSystem.Machine.cs index 2e670dbe40..65b0b70476 100644 --- a/Content.Server/Construction/ConstructionSystem.Machine.cs +++ b/Content.Server/Construction/ConstructionSystem.Machine.cs @@ -5,6 +5,7 @@ using Content.Shared.Construction.Prototypes; using Content.Shared.Verbs; using Robust.Shared.Containers; +using Robust.Shared.Map.Components; using Robust.Shared.Utility; namespace Content.Server.Construction; @@ -143,7 +144,7 @@ private void CreateBoardAndStockParts(EntityUid uid, MachineComponent component) var p = EntityManager.SpawnEntity(partProto.StockPartPrototype, xform.Coordinates); if (!_container.Insert(p, partContainer)) - throw new Exception($"Couldn't insert machine part of type {part} to machine with prototype {partProto.StockPartPrototype}!"); + throw new Exception($"Couldn't insert machine part of type {part} to machine with prototype {partProto.StockPartPrototype ?? "N/A"}!"); } } @@ -183,7 +184,7 @@ public sealed class RefreshPartsEvent : EntityEventArgs { public IReadOnlyList Parts = new List(); - public Dictionary PartRatings = new(); + public Dictionary PartRatings = new Dictionary(); } public sealed class UpgradeExamineEvent : EntityEventArgs diff --git a/Content.Server/Construction/PartExchangerSystem.cs b/Content.Server/Construction/PartExchangerSystem.cs index ee5edcbd0a..f364d1b547 100644 --- a/Content.Server/Construction/PartExchangerSystem.cs +++ b/Content.Server/Construction/PartExchangerSystem.cs @@ -10,6 +10,7 @@ using Robust.Shared.Containers; using Robust.Shared.Utility; using Content.Shared.Wires; +using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Collections; @@ -42,7 +43,7 @@ private void OnDoAfter(EntityUid uid, PartExchangerComponent component, DoAfterE if (args.Handled || args.Args.Target == null) return; - if (!TryComp(uid, out var storage)) + if (!TryComp(uid, out var storage) || storage.Container == null) return; //the parts are stored in here var machinePartQuery = GetEntityQuery(); diff --git a/Content.Server/Construction/RefiningSystem.cs b/Content.Server/Construction/RefiningSystem.cs index d4df8b0916..2ca32baf90 100644 --- a/Content.Server/Construction/RefiningSystem.cs +++ b/Content.Server/Construction/RefiningSystem.cs @@ -2,43 +2,50 @@ using Content.Server.Stack; using Content.Shared.Construction; using Content.Shared.Interaction; +using Content.Shared.Stacks; using Content.Shared.Storage; using SharedToolSystem = Content.Shared.Tools.Systems.SharedToolSystem; -namespace Content.Server.Construction +namespace Content.Server.Construction; + +public sealed class RefiningSystem : EntitySystem { - public sealed class RefiningSystem : EntitySystem + [Dependency] private readonly SharedToolSystem _toolSystem = default!; + [Dependency] private readonly StackSystem _stackSystem = default!; + + public override void Initialize() { - [Dependency] private readonly SharedToolSystem _toolSystem = default!; - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnInteractUsing); - SubscribeLocalEvent(OnDoAfter); - } + base.Initialize(); + SubscribeLocalEvent(OnInteractUsing); + SubscribeLocalEvent(OnDoAfter); + } - private void OnInteractUsing(EntityUid uid, WelderRefinableComponent component, InteractUsingEvent args) - { - if (args.Handled) - return; + private void OnInteractUsing(EntityUid uid, WelderRefinableComponent component, InteractUsingEvent args) + { + if (args.Handled) + return; - args.Handled = _toolSystem.UseTool(args.Used, args.User, uid, component.RefineTime, component.QualityNeeded, new WelderRefineDoAfterEvent()); - } + args.Handled = _toolSystem.UseTool(args.Used, args.User, uid, component.RefineTime, component.QualityNeeded, new WelderRefineDoAfterEvent(), fuel: component.RefineFuel); + } + + private void OnDoAfter(EntityUid uid, WelderRefinableComponent component, WelderRefineDoAfterEvent args) + { + if (args.Cancelled) + return; + + // Get last owner coordinates and delete it + var resultPosition = Transform(uid).Coordinates; + EntityManager.DeleteEntity(uid); - private void OnDoAfter(EntityUid uid, WelderRefinableComponent component, WelderRefineDoAfterEvent args) + // Spawn each result after refine + foreach (var ent in EntitySpawnCollection.GetSpawns(component.RefineResult ?? new())) { - if (args.Cancelled) - return; - - // get last owner coordinates and delete it - var resultPosition = Transform(uid).Coordinates; - EntityManager.DeleteEntity(uid); - - // spawn each result after refine - foreach (var ent in EntitySpawnCollection.GetSpawns(component.RefineResult)) - { - Spawn(ent, resultPosition); - } + var droppedEnt = Spawn(ent, resultPosition); + + // TODO: If something has a stack... Just use a prototype with a single thing in the stack. + // This is not a good way to do it. + if (TryComp(droppedEnt, out var stack)) + _stackSystem.SetCount(droppedEnt, 1, stack); } } } diff --git a/Content.Server/Containers/ThrowInsertContainerComponent.cs b/Content.Server/Containers/ThrowInsertContainerComponent.cs new file mode 100644 index 0000000000..7eb5f4657d --- /dev/null +++ b/Content.Server/Containers/ThrowInsertContainerComponent.cs @@ -0,0 +1,35 @@ +using Robust.Shared.Audio; + +namespace Content.Server.Containers; + +/// +/// Allows objects to fall inside the Container when thrown +/// +[RegisterComponent] +[Access(typeof(ThrowInsertContainerSystem))] +public sealed partial class ThrowInsertContainerComponent : Component +{ + [DataField(required: true)] + public string ContainerId = string.Empty; + + /// + /// Throw chance of hitting into the container + /// + [DataField] + public float Probability = 0.75f; + + /// + /// Sound played when an object is throw into the container. + /// + [DataField] + public SoundSpecifier? InsertSound = new SoundPathSpecifier("/Audio/Effects/trashbag1.ogg"); + + /// + /// Sound played when an item is thrown and misses the container. + /// + [DataField] + public SoundSpecifier? MissSound = new SoundPathSpecifier("/Audio/Effects/thudswoosh.ogg"); + + [DataField] + public LocId MissLocString = "container-thrown-missed"; +} diff --git a/Content.Server/Containers/ThrowInsertContainerSystem.cs b/Content.Server/Containers/ThrowInsertContainerSystem.cs new file mode 100644 index 0000000000..12bb602811 --- /dev/null +++ b/Content.Server/Containers/ThrowInsertContainerSystem.cs @@ -0,0 +1,50 @@ +using Content.Server.Administration.Logs; +using Content.Shared.Database; +using Content.Shared.Popups; +using Content.Shared.Throwing; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Containers; +using Robust.Shared.Random; + +namespace Content.Server.Containers; + +public sealed class ThrowInsertContainerSystem : EntitySystem +{ + [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedContainerSystem _containerSystem = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly IRobustRandom _random = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnThrowCollide); + } + + private void OnThrowCollide(Entity ent, ref ThrowHitByEvent args) + { + var container = _containerSystem.GetContainer(ent, ent.Comp.ContainerId); + + if (!_containerSystem.CanInsert(args.Thrown, container)) + return; + + + var rand = _random.NextFloat(); + if (_random.Prob(ent.Comp.Probability)) + { + _audio.PlayPvs(ent.Comp.MissSound, ent); + _popup.PopupEntity(Loc.GetString(ent.Comp.MissLocString), ent); + return; + } + + if (!_containerSystem.Insert(args.Thrown, container)) + throw new InvalidOperationException("Container insertion failed but CanInsert returned true"); + + _audio.PlayPvs(ent.Comp.InsertSound, ent); + + if (args.Component.Thrower != null) + _adminLogger.Add(LogType.Landed, LogImpact.Low, $"{ToPrettyString(args.Thrown)} thrown by {ToPrettyString(args.Component.Thrower.Value):player} landed in {ToPrettyString(ent)}"); + } +} diff --git a/Content.Server/Content.Server.csproj b/Content.Server/Content.Server.csproj index 8782454eac..70e404fdef 100644 --- a/Content.Server/Content.Server.csproj +++ b/Content.Server/Content.Server.csproj @@ -28,7 +28,6 @@ - diff --git a/Content.Server/Crayon/CrayonSystem.cs b/Content.Server/Crayon/CrayonSystem.cs index 32bb96e9e2..07a13d8a34 100644 --- a/Content.Server/Crayon/CrayonSystem.cs +++ b/Content.Server/Crayon/CrayonSystem.cs @@ -90,19 +90,14 @@ private void OnCrayonUse(EntityUid uid, CrayonComponent component, UseInHandEven if (args.Handled) return; - if (!TryComp(args.User, out var actor) || - !_uiSystem.TryGetUi(uid, SharedCrayonComponent.CrayonUiKey.Key, out var ui)) + if (!_uiSystem.HasUi(uid, SharedCrayonComponent.CrayonUiKey.Key)) { return; } - _uiSystem.ToggleUi(ui, actor.PlayerSession); - if (ui.SubscribedSessions.Contains(actor.PlayerSession)) - { - // Tell the user interface the selected stuff - _uiSystem.SetUiState(ui, new CrayonBoundUserInterfaceState(component.SelectedState, component.SelectableColor, component.Color)); - } + _uiSystem.TryToggleUi(uid, SharedCrayonComponent.CrayonUiKey.Key, args.User); + _uiSystem.SetUiState(uid, SharedCrayonComponent.CrayonUiKey.Key, new CrayonBoundUserInterfaceState(component.SelectedState, component.SelectableColor, component.Color)); args.Handled = true; } @@ -140,8 +135,8 @@ private void OnCrayonInit(EntityUid uid, CrayonComponent component, ComponentIni private void OnCrayonDropped(EntityUid uid, CrayonComponent component, DroppedEvent args) { - if (TryComp(args.User, out var actor)) - _uiSystem.TryClose(uid, SharedCrayonComponent.CrayonUiKey.Key, actor.PlayerSession); + // TODO: Use the existing event. + _uiSystem.CloseUi(uid, SharedCrayonComponent.CrayonUiKey.Key, args.User); } private void UseUpCrayon(EntityUid uid, EntityUid user) diff --git a/Content.Server/CrewManifest/CrewManifestSystem.cs b/Content.Server/CrewManifest/CrewManifestSystem.cs index 8b4cbac5c1..e742456015 100644 --- a/Content.Server/CrewManifest/CrewManifestSystem.cs +++ b/Content.Server/CrewManifest/CrewManifestSystem.cs @@ -100,12 +100,12 @@ private void OnBoundUiClose(EntityUid uid, CrewManifestViewerComponent component return; var owningStation = _stationSystem.GetOwningStation(uid); - if (owningStation == null || ev.Session is not { } session) + if (owningStation == null || !TryComp(ev.Actor, out ActorComponent? actorComp)) { return; } - CloseEui(owningStation.Value, session, uid); + CloseEui(owningStation.Value, actorComp.PlayerSession, uid); } /// @@ -136,12 +136,12 @@ private void OpenEuiFromBui(EntityUid uid, CrewManifestViewerComponent component { Log.Error( "{User} tried to open crew manifest from wrong UI: {Key}. Correct owned is {ExpectedKey}", - msg.Session, msg.UiKey, component.OwnerKey); + msg.Actor, msg.UiKey, component.OwnerKey); return; } var owningStation = _stationSystem.GetOwningStation(uid); - if (owningStation == null || msg.Session is not { } session) + if (owningStation == null || !TryComp(msg.Actor, out ActorComponent? actorComp)) { return; } @@ -151,7 +151,7 @@ private void OpenEuiFromBui(EntityUid uid, CrewManifestViewerComponent component return; } - OpenEui(owningStation.Value, session, uid); + OpenEui(owningStation.Value, actorComp.PlayerSession, uid); } /// diff --git a/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs b/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs index 4290726cc4..4389c68c04 100644 --- a/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs +++ b/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs @@ -77,7 +77,7 @@ private void OnChangeStatus(Entity ent, ref Cri msg.Status == SecurityStatus.Suspected != (msg.Reason != null)) return; - if (!CheckSelected(ent, msg.Session, out var mob, out var key)) + if (!CheckSelected(ent, msg.Actor, out var mob, out var key)) return; if (!_stationRecords.TryGetRecord(key.Value, out var record) || record.Status == msg.Status) @@ -150,7 +150,7 @@ private void OnChangeStatus(Entity ent, ref Cri private void OnAddHistory(Entity ent, ref CriminalRecordAddHistory msg) { - if (!CheckSelected(ent, msg.Session, out _, out var key)) + if (!CheckSelected(ent, msg.Actor, out _, out var key)) return; var line = msg.Line.Trim(); @@ -167,7 +167,7 @@ private void OnAddHistory(Entity ent, ref Crimi private void OnDeleteHistory(Entity ent, ref CriminalRecordDeleteHistory msg) { - if (!CheckSelected(ent, msg.Session, out _, out var key)) + if (!CheckSelected(ent, msg.Actor, out _, out var key)) return; if (!_criminalRecords.TryDeleteHistory(key.Value, msg.Index)) @@ -185,7 +185,7 @@ private void UpdateUserInterface(Entity ent) if (!TryComp(owningStation, out var stationRecords)) { - _ui.TrySetUiState(uid, CriminalRecordsConsoleKey.Key, new CriminalRecordsConsoleState()); + _ui.SetUiState(uid, CriminalRecordsConsoleKey.Key, new CriminalRecordsConsoleState()); return; } @@ -201,24 +201,22 @@ private void UpdateUserInterface(Entity ent) state.SelectedKey = id; } - _ui.TrySetUiState(uid, CriminalRecordsConsoleKey.Key, state); + _ui.SetUiState(uid, CriminalRecordsConsoleKey.Key, state); } /// /// Boilerplate that most actions use, if they require that a record be selected. /// Obviously shouldn't be used for selecting records. /// - private bool CheckSelected(Entity ent, ICommonSession session, + private bool CheckSelected(Entity ent, EntityUid user, [NotNullWhen(true)] out EntityUid? mob, [NotNullWhen(true)] out StationRecordKey? key) { key = null; mob = null; - if (session.AttachedEntity is not { } user) - return false; if (!_access.IsAllowed(user, ent)) { - _popup.PopupEntity(Loc.GetString("criminal-records-permission-denied"), ent, session); + _popup.PopupEntity(Loc.GetString("criminal-records-permission-denied"), ent, user); return false; } @@ -253,6 +251,8 @@ public void CheckNewIdentity(EntityUid uid) { var name = Identity.Name(uid, EntityManager); var xform = Transform(uid); + + // TODO use the entity's station? Not the station of the map that it happens to currently be on? var station = _station.GetStationInMap(xform.MapID); if (station != null && _stationRecords.GetRecordByName(station.Value, name) is { } id) diff --git a/Content.Server/CriminalRecords/Systems/CriminalRecordsHackerSystem.cs b/Content.Server/CriminalRecords/Systems/CriminalRecordsHackerSystem.cs new file mode 100644 index 0000000000..91285a1ca7 --- /dev/null +++ b/Content.Server/CriminalRecords/Systems/CriminalRecordsHackerSystem.cs @@ -0,0 +1,62 @@ +using Content.Server.Chat.Systems; +using Content.Server.Station.Systems; +using Content.Server.StationRecords.Systems; +using Content.Shared.CriminalRecords; +using Content.Shared.CriminalRecords.Components; +using Content.Shared.CriminalRecords.Systems; +using Content.Shared.Dataset; +using Content.Shared.Security; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; + +namespace Content.Server.CriminalRecords.Systems; + +public sealed class CriminalRecordsHackerSystem : SharedCriminalRecordsHackerSystem +{ + [Dependency] private readonly ChatSystem _chat = default!; + [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly StationRecordsSystem _records = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnDoAfter); + } + + private void OnDoAfter(Entity ent, ref CriminalRecordsHackDoAfterEvent args) + { + if (args.Cancelled || args.Handled || args.Target == null) + return; + + if (_station.GetOwningStation(ent) is not {} station) + return; + + var reasons = _proto.Index(ent.Comp.Reasons); + foreach (var (key, record) in _records.GetRecordsOfType(station)) + { + var reason = _random.Pick(reasons.Values); + record.Status = SecurityStatus.Wanted; + record.Reason = reason; + // no radio message since spam + // no history since lazy and its easy to remove anyway + // main damage with this is existing arrest warrants are lost and to anger beepsky + } + + _chat.DispatchGlobalAnnouncement(Loc.GetString(ent.Comp.Announcement), playSound: true, colorOverride: Color.Red); + + // once is enough + RemComp(ent); + + var ev = new CriminalRecordsHackedEvent(ent, args.Target.Value); + RaiseLocalEvent(args.User, ref ev); + } +} + +/// +/// Raised on the user after hacking a criminal records console. +/// +[ByRefEvent] +public record struct CriminalRecordsHackedEvent(EntityUid User, EntityUid Target); diff --git a/Content.Server/Damage/Systems/DamageOnToolInteractSystem.cs b/Content.Server/Damage/Systems/DamageOnToolInteractSystem.cs index 264ec4a8ec..42676c1891 100644 --- a/Content.Server/Damage/Systems/DamageOnToolInteractSystem.cs +++ b/Content.Server/Damage/Systems/DamageOnToolInteractSystem.cs @@ -1,7 +1,5 @@ using Content.Server.Administration.Logs; using Content.Server.Damage.Components; -using Content.Server.Tools.Components; -using Content.Shared.Item; using Content.Shared.Damage; using Content.Shared.Database; using Content.Shared.Interaction; diff --git a/Content.Server/Database/ServerDbBase.cs b/Content.Server/Database/ServerDbBase.cs index af9220ee6d..3ac755facf 100644 --- a/Content.Server/Database/ServerDbBase.cs +++ b/Content.Server/Database/ServerDbBase.cs @@ -31,9 +31,11 @@ public ServerDbBase(ISawmill opsLog) } #region Preferences - public async Task GetPlayerPreferencesAsync(NetUserId userId) + public async Task GetPlayerPreferencesAsync( + NetUserId userId, + CancellationToken cancel = default) { - await using var db = await GetDb(); + await using var db = await GetDb(cancel); var prefs = await db.DbContext .Preference @@ -42,7 +44,7 @@ public ServerDbBase(ISawmill opsLog) .Include(p => p.Profiles).ThenInclude(h => h.Traits) .Include(p => p.Profiles).ThenInclude(h => h.Loadouts) .AsSingleQuery() - .SingleOrDefaultAsync(p => p.UserId == userId.UserId); + .SingleOrDefaultAsync(p => p.UserId == userId.UserId, cancel); if (prefs is null) return null; @@ -216,13 +218,13 @@ private static HumanoidCharacterProfile ConvertProfiles(Profile profile) profile.CharacterName, profile.FlavorText, profile.Species, + profile.CustomSpecieName, profile.Height, profile.Width, profile.Age, sex, gender, - new HumanoidCharacterAppearance - ( + new HumanoidCharacterAppearance( profile.HairName, Color.FromHex(profile.HairColor), profile.FacialHairName, @@ -231,14 +233,14 @@ private static HumanoidCharacterProfile ConvertProfiles(Profile profile) Color.FromHex(profile.SkinColor), markings ), - clothing, - backpack, spawnPriority, jobs, + clothing, + backpack, (PreferenceUnavailableMode) profile.PreferenceUnavailable, - antags.ToList(), - traits.ToList(), - loadouts.ToList() + antags.ToHashSet(), + traits.ToHashSet(), + loadouts.ToHashSet() ); } @@ -256,6 +258,7 @@ private static Profile ConvertProfiles(HumanoidCharacterProfile humanoid, int sl profile.CharacterName = humanoid.Name; profile.FlavorText = humanoid.FlavorText; profile.Species = humanoid.Species; + profile.CustomSpecieName = humanoid.Customspeciename; profile.Age = humanoid.Age; profile.Sex = humanoid.Sex.ToString(); profile.Gender = humanoid.Gender.ToString(); @@ -480,13 +483,13 @@ public async Task EditServerRoleBan(int id, string reason, NoteSeverity severity #endregion #region Playtime - public async Task> GetPlayTimes(Guid player) + public async Task> GetPlayTimes(Guid player, CancellationToken cancel) { - await using var db = await GetDb(); + await using var db = await GetDb(cancel); return await db.DbContext.PlayTime .Where(p => p.PlayerId == player) - .ToListAsync(); + .ToListAsync(cancel); } public async Task UpdatePlayTimes(IReadOnlyCollection updates) @@ -638,7 +641,7 @@ public async Task AddServerBanHitsAsync(int connection, IEnumerable GetAdminDataForAsync(NetUserId userId, CancellationToken cancel) { - await using var db = await GetDb(); + await using var db = await GetDb(cancel); return await db.DbContext.Admin .Include(p => p.Flags) @@ -653,7 +656,7 @@ public async Task AddServerBanHitsAsync(int connection, IEnumerable GetAdminRankDataForAsync(int id, CancellationToken cancel = default) { - await using var db = await GetDb(); + await using var db = await GetDb(cancel); return await db.DbContext.AdminRank .Include(r => r.Flags) @@ -662,7 +665,7 @@ public async Task AddServerBanHitsAsync(int connection, IEnumerable a.UserId == userId.UserId, cancel); db.DbContext.Admin.Remove(admin); @@ -672,7 +675,7 @@ public async Task RemoveAdminAsync(NetUserId userId, CancellationToken cancel) public async Task AddAdminAsync(Admin admin, CancellationToken cancel) { - await using var db = await GetDb(); + await using var db = await GetDb(cancel); db.DbContext.Admin.Add(admin); @@ -681,7 +684,7 @@ public async Task AddAdminAsync(Admin admin, CancellationToken cancel) public async Task UpdateAdminAsync(Admin admin, CancellationToken cancel) { - await using var db = await GetDb(); + await using var db = await GetDb(cancel); var existing = await db.DbContext.Admin.Include(a => a.Flags).SingleAsync(a => a.UserId == admin.UserId, cancel); existing.Flags = admin.Flags; @@ -693,7 +696,7 @@ public async Task UpdateAdminAsync(Admin admin, CancellationToken cancel) public async Task RemoveAdminRankAsync(int rankId, CancellationToken cancel) { - await using var db = await GetDb(); + await using var db = await GetDb(cancel); var admin = await db.DbContext.AdminRank.SingleAsync(a => a.Id == rankId, cancel); db.DbContext.AdminRank.Remove(admin); @@ -703,7 +706,7 @@ public async Task RemoveAdminRankAsync(int rankId, CancellationToken cancel) public async Task AddAdminRankAsync(AdminRank rank, CancellationToken cancel) { - await using var db = await GetDb(); + await using var db = await GetDb(cancel); db.DbContext.AdminRank.Add(rank); @@ -776,7 +779,7 @@ INSERT INTO player_round (players_id, rounds_id) VALUES ({players[player]}, {id} public async Task UpdateAdminRankAsync(AdminRank rank, CancellationToken cancel) { - await using var db = await GetDb(); + await using var db = await GetDb(cancel); var existing = await db.DbContext.AdminRank .Include(r => r.Flags) @@ -1559,7 +1562,9 @@ public async Task HasPendingModelChanges() return db.DbContext.Database.HasPendingModelChanges(); } - protected abstract Task GetDb([CallerMemberName] string? name = null); + protected abstract Task GetDb( + CancellationToken cancel = default, + [CallerMemberName] string? name = null); protected void LogDbOp(string? name) { diff --git a/Content.Server/Database/ServerDbManager.cs b/Content.Server/Database/ServerDbManager.cs index 554dd30743..01d1526727 100644 --- a/Content.Server/Database/ServerDbManager.cs +++ b/Content.Server/Database/ServerDbManager.cs @@ -29,7 +29,11 @@ public interface IServerDbManager void Shutdown(); #region Preferences - Task InitPrefsAsync(NetUserId userId, ICharacterProfile defaultProfile); + Task InitPrefsAsync( + NetUserId userId, + ICharacterProfile defaultProfile, + CancellationToken cancel); + Task SaveSelectedCharacterIndexAsync(NetUserId userId, int index); Task SaveCharacterSlotAsync(NetUserId userId, ICharacterProfile? profile, int slot); @@ -38,7 +42,7 @@ public interface IServerDbManager // Single method for two operations for transaction. Task DeleteSlotAndSetSelectedIndex(NetUserId userId, int deleteSlot, int newSlot); - Task GetPlayerPreferencesAsync(NetUserId userId); + Task GetPlayerPreferencesAsync(NetUserId userId, CancellationToken cancel); #endregion #region User Ids @@ -157,8 +161,9 @@ public Task EditServerRoleBan( /// Look up a player's role timers. /// /// The player to get the role timer information from. + /// /// All role timers belonging to the player. - Task> GetPlayTimes(Guid player); + Task> GetPlayTimes(Guid player, CancellationToken cancel = default); /// /// Update play time information in bulk. @@ -346,7 +351,10 @@ public void Shutdown() _sqliteInMemoryConnection?.Dispose(); } - public Task InitPrefsAsync(NetUserId userId, ICharacterProfile defaultProfile) + public Task InitPrefsAsync( + NetUserId userId, + ICharacterProfile defaultProfile, + CancellationToken cancel) { DbWriteOpsMetric.Inc(); return RunDbCommand(() => _db.InitPrefsAsync(userId, defaultProfile)); @@ -376,10 +384,10 @@ public Task SaveAdminOOCColorAsync(NetUserId userId, Color color) return RunDbCommand(() => _db.SaveAdminOOCColorAsync(userId, color)); } - public Task GetPlayerPreferencesAsync(NetUserId userId) + public Task GetPlayerPreferencesAsync(NetUserId userId, CancellationToken cancel) { DbReadOpsMetric.Inc(); - return RunDbCommand(() => _db.GetPlayerPreferencesAsync(userId)); + return RunDbCommand(() => _db.GetPlayerPreferencesAsync(userId, cancel)); } public Task AssignUserIdAsync(string name, NetUserId userId) @@ -487,10 +495,10 @@ public Task EditServerRoleBan(int id, string reason, NoteSeverity severity, Date #region Playtime - public Task> GetPlayTimes(Guid player) + public Task> GetPlayTimes(Guid player, CancellationToken cancel) { DbReadOpsMetric.Inc(); - return RunDbCommand(() => _db.GetPlayTimes(player)); + return RunDbCommand(() => _db.GetPlayTimes(player, cancel)); } public Task UpdatePlayTimes(IReadOnlyCollection updates) diff --git a/Content.Server/Database/ServerDbPostgres.cs b/Content.Server/Database/ServerDbPostgres.cs index c81e735868..fd4699fff4 100644 --- a/Content.Server/Database/ServerDbPostgres.cs +++ b/Content.Server/Database/ServerDbPostgres.cs @@ -527,22 +527,26 @@ protected override DateTime NormalizeDatabaseTime(DateTime time) return time; } - private async Task GetDbImpl([CallerMemberName] string? name = null) + private async Task GetDbImpl( + CancellationToken cancel = default, + [CallerMemberName] string? name = null) { LogDbOp(name); await _dbReadyTask; - await _prefsSemaphore.WaitAsync(); + await _prefsSemaphore.WaitAsync(cancel); if (_msLag > 0) - await Task.Delay(_msLag); + await Task.Delay(_msLag, cancel); return new DbGuardImpl(this, new PostgresServerDbContext(_options)); } - protected override async Task GetDb([CallerMemberName] string? name = null) + protected override async Task GetDb( + CancellationToken cancel = default, + [CallerMemberName] string? name = null) { - return await GetDbImpl(name); + return await GetDbImpl(cancel, name); } private sealed class DbGuardImpl : DbGuard diff --git a/Content.Server/Database/ServerDbSqlite.cs b/Content.Server/Database/ServerDbSqlite.cs index 88ecf82002..ffec90bb43 100644 --- a/Content.Server/Database/ServerDbSqlite.cs +++ b/Content.Server/Database/ServerDbSqlite.cs @@ -439,7 +439,7 @@ public override async Task AddConnectionLogAsync( public override async Task<((Admin, string? lastUserName)[] admins, AdminRank[])> GetAllAdminAndRanksAsync( CancellationToken cancel) { - await using var db = await GetDbImpl(); + await using var db = await GetDbImpl(cancel); var admins = await db.SqliteDbContext.Admin .Include(a => a.Flags) @@ -514,23 +514,27 @@ protected override DateTime NormalizeDatabaseTime(DateTime time) return DateTime.SpecifyKind(time, DateTimeKind.Utc); } - private async Task GetDbImpl([CallerMemberName] string? name = null) + private async Task GetDbImpl( + CancellationToken cancel = default, + [CallerMemberName] string? name = null) { LogDbOp(name); await _dbReadyTask; if (_msDelay > 0) - await Task.Delay(_msDelay); + await Task.Delay(_msDelay, cancel); - await _prefsSemaphore.WaitAsync(); + await _prefsSemaphore.WaitAsync(cancel); var dbContext = new SqliteServerDbContext(_options()); return new DbGuardImpl(this, dbContext); } - protected override async Task GetDb([CallerMemberName] string? name = null) + protected override async Task GetDb( + CancellationToken cancel = default, + [CallerMemberName] string? name = null) { - return await GetDbImpl(name).ConfigureAwait(false); + return await GetDbImpl(cancel, name).ConfigureAwait(false); } private sealed class DbGuardImpl : DbGuard @@ -569,9 +573,9 @@ public ConcurrencySemaphore(int maxCount, bool synchronous) _semaphore = new SemaphoreSlim(maxCount, maxCount); } - public Task WaitAsync() + public Task WaitAsync(CancellationToken cancel = default) { - var task = _semaphore.WaitAsync(); + var task = _semaphore.WaitAsync(cancel); if (_synchronous) { diff --git a/Content.Server/Database/UserDbDataManager.cs b/Content.Server/Database/UserDbDataManager.cs index f8b1611fd5..c58c594dba 100644 --- a/Content.Server/Database/UserDbDataManager.cs +++ b/Content.Server/Database/UserDbDataManager.cs @@ -2,6 +2,7 @@ using System.Threading.Tasks; using Content.Server.Players.PlayTimeTracking; using Content.Server.Preferences.Managers; +using Robust.Server.Player; using Robust.Shared.Network; using Robust.Shared.Player; using Robust.Shared.Utility; @@ -16,17 +17,22 @@ namespace Content.Server.Database; /// Actual loading code is handled by separate managers such as . /// This manager is simply a centralized "is loading done" controller for other code to rely on. /// -public sealed class UserDbDataManager +public sealed class UserDbDataManager : IPostInjectInit { [Dependency] private readonly IServerPreferencesManager _prefs = default!; + [Dependency] private readonly ILogManager _logManager = default!; [Dependency] private readonly PlayTimeTrackingManager _playTimeTracking = default!; private readonly Dictionary _users = new(); + private ISawmill _sawmill = default!; + // TODO: Ideally connected/disconnected would be subscribed to IPlayerManager directly, // but this runs into ordering issues with game ticker. public void ClientConnected(ICommonSession session) { + _sawmill.Verbose($"Initiating load for user {session}"); + DebugTools.Assert(!_users.ContainsKey(session.UserId), "We should not have any cached data on client connect."); var cts = new CancellationTokenSource(); @@ -51,11 +57,52 @@ public void ClientDisconnected(ICommonSession session) private async Task Load(ICommonSession session, CancellationToken cancel) { - await Task.WhenAll( - _prefs.LoadData(session, cancel), - _playTimeTracking.LoadData(session, cancel)); + // The task returned by this function is only ever observed by callers of WaitLoadComplete, + // which doesn't even happen currently if the lobby is enabled. + // As such, this task must NOT throw a non-cancellation error! + try + { + await Task.WhenAll( + _prefs.LoadData(session, cancel), + _playTimeTracking.LoadData(session, cancel)); + + cancel.ThrowIfCancellationRequested(); + _prefs.FinishLoad(session); + + _sawmill.Verbose($"Load complete for user {session}"); + } + catch (OperationCanceledException) + { + _sawmill.Debug($"Load cancelled for user {session}"); + + // We can rethrow the cancellation. + // This will make the task returned by WaitLoadComplete() also return a cancellation. + throw; + } + catch (Exception e) + { + // Must catch all exceptions here, otherwise task may go unobserved. + _sawmill.Error($"Load of user data failed: {e}"); + + // Kick them from server, since something is hosed. Let them try again I guess. + session.Channel.Disconnect("Loading of server user data failed, this is a bug."); + + // We throw a OperationCanceledException so users of WaitLoadComplete() always see cancellation here. + throw new OperationCanceledException("Load of user data cancelled due to unknown error"); + } } + /// + /// Wait for all on-database data for a user to be loaded. + /// + /// + /// The task returned by this function may end up in a cancelled state + /// (throwing ) if the user disconnects while loading or an error occurs. + /// + /// + /// + /// A task that completes when all on-database data for a user has finished loading. + /// public Task WaitLoadComplete(ICommonSession session) { return _users[session.UserId].Task; @@ -63,7 +110,7 @@ public Task WaitLoadComplete(ICommonSession session) public bool IsLoadComplete(ICommonSession session) { - return GetLoadTask(session).IsCompleted; + return GetLoadTask(session).IsCompletedSuccessfully; } public Task GetLoadTask(ICommonSession session) @@ -71,5 +118,10 @@ public Task GetLoadTask(ICommonSession session) return _users[session.UserId].Task; } + void IPostInjectInit.PostInject() + { + _sawmill = _logManager.GetSawmill("userdb"); + } + private sealed record UserData(CancellationTokenSource Cancel, Task Task); } diff --git a/Content.Server/DeltaV/Implants/SubdermalBionicSyrinxImplantSystem.cs b/Content.Server/DeltaV/Implants/SubdermalBionicSyrinxImplantSystem.cs index 30a894a2d1..3be460aec6 100644 --- a/Content.Server/DeltaV/Implants/SubdermalBionicSyrinxImplantSystem.cs +++ b/Content.Server/DeltaV/Implants/SubdermalBionicSyrinxImplantSystem.cs @@ -29,7 +29,7 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnInsert); + SubscribeLocalEvent(OnInsert); // WD EDIT SubscribeLocalEvent(OnSpeakerNameTransform); SubscribeLocalEvent(OnChangeName); // We need to remove the SyrinxVoiceMaskComponent from the owner before the implant @@ -37,16 +37,17 @@ public override void Initialize() SubscribeLocalEvent(OnRemove, before: new[] { typeof(SubdermalImplantSystem) }); } - private void OnInsert(EntityUid uid, VoiceMaskerComponent component, ImplantImplantedEvent args) + // WD EDIT START + private void OnInsert(EntityUid uid, VoiceMaskerComponent component, SubdermalImplantInserted args) { - if (!args.Implanted.HasValue || - !_tag.HasTag(args.Implant, BionicSyrinxImplant)) + if (_tag.HasTag(uid, BionicSyrinxImplant)) return; - var voicemask = EnsureComp(args.Implanted.Value); - voicemask.VoiceName = MetaData(args.Implanted.Value).EntityName; - Dirty(args.Implanted.Value, voicemask); + var voicemask = EnsureComp(args.Target); + voicemask.VoiceName = MetaData(args.Target).EntityName; + Dirty(args.Target, voicemask); } + // WD EDIT END private void OnRemove(EntityUid uid, VoiceMaskerComponent component, EntGotRemovedFromContainerMessage args) { @@ -63,17 +64,14 @@ private void OnChangeName(EntityUid uid, SyrinxVoiceMaskComponent component, Voi { if (message.Name.Length > HumanoidCharacterProfile.MaxNameLength || message.Name.Length <= 0) { - _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-failure"), uid, message.Session, PopupType.SmallCaution); + _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-failure"), uid, message.Actor, PopupType.SmallCaution); return; } component.VoiceName = message.Name; - if (message.Session.AttachedEntity != null) - _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(message.Session.AttachedEntity.Value):player} set voice of {ToPrettyString(uid):mask}: {component.VoiceName}"); - else - _adminLogger.Add(LogType.Action, LogImpact.Medium, $"Voice of {ToPrettyString(uid):mask} set: {component.VoiceName}"); + _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(message.Actor):player} set voice of {ToPrettyString(uid):mask}: {component.VoiceName}"); - _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-success"), uid, message.Session); + _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-success"), uid, message.Actor); TrySetLastKnownName(uid, message.Name); UpdateUI(uid, component); } @@ -98,8 +96,8 @@ private void UpdateUI(EntityUid owner, SyrinxVoiceMaskComponent? component = nul if (!Resolve(owner, ref component, logMissing: false)) return; - if (_uiSystem.TryGetUi(owner, VoiceMaskUIKey.Key, out var bui)) - _uiSystem.SetUiState(bui, new VoiceMaskBuiState(component.VoiceName, null)); + if (_uiSystem.TryGetOpenUi(owner, VoiceMaskUIKey.Key, out _)) + _uiSystem.SetUiState(new(owner, null), VoiceMaskUIKey.Key, new VoiceMaskBuiState(component.VoiceName, null)); } /// diff --git a/Content.Server/DeltaV/ParadoxAnomaly/Systems/ParadoxAnomalySystem.cs b/Content.Server/DeltaV/ParadoxAnomaly/Systems/ParadoxAnomalySystem.cs index 477a3c5659..142669f84a 100644 --- a/Content.Server/DeltaV/ParadoxAnomaly/Systems/ParadoxAnomalySystem.cs +++ b/Content.Server/DeltaV/ParadoxAnomaly/Systems/ParadoxAnomalySystem.cs @@ -6,7 +6,6 @@ using Content.Server.Psionics; using Content.Server.Spawners.Components; using Content.Server.Station.Systems; -using Content.Server.Terminator.Systems; using Content.Shared.Abilities.Psionics; using Content.Shared.Humanoid; using Content.Shared.Humanoid.Prototypes; @@ -38,7 +37,6 @@ public sealed class ParadoxAnomalySystem : EntitySystem [Dependency] private readonly SharedRoleSystem _role = default!; [Dependency] private readonly StationSystem _station = default!; [Dependency] private readonly StationSpawningSystem _stationSpawning = default!; - [Dependency] private readonly TerminatorSystem _terminator = default!; public override void Initialize() { @@ -123,7 +121,7 @@ private bool TrySpawnParadoxAnomaly(string rule, [NotNullWhen(true)] out EntityU var spawned = Spawn(species.Prototype, destination); // Set the kill target to the chosen player - _terminator.SetTarget(spawned, mindId); + // _terminator.SetTarget(spawned, mindId); _genericAntag.MakeAntag(spawned, rule); ////////////////////////// diff --git a/Content.Server/DeltaV/StationEvents/Events/GlimmerMobSpawnRule.cs b/Content.Server/DeltaV/StationEvents/Events/GlimmerMobSpawnRule.cs index 6849c508a1..c9bf659fd9 100644 --- a/Content.Server/DeltaV/StationEvents/Events/GlimmerMobSpawnRule.cs +++ b/Content.Server/DeltaV/StationEvents/Events/GlimmerMobSpawnRule.cs @@ -1,7 +1,7 @@ using System.Linq; using Content.Server.GameTicking.Components; using Robust.Shared.Random; -using Content.Server.GameTicking.Rules.Components; +using Content.Server.GameTicking; using Content.Server.NPC.Components; using Content.Server.Psionics.Glimmer; using Content.Server.StationEvents.Components; @@ -14,15 +14,44 @@ public sealed class GlimmerMobRule : StationEventSystem { [Dependency] private readonly IRobustRandom _robustRandom = default!; [Dependency] private readonly GlimmerSystem _glimmerSystem = default!; + [Dependency] private readonly GameTicker _gameTicker = default!; protected override void Started(EntityUid uid, GlimmerMobRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args) { base.Started(uid, component, gameRule, args); - var glimmerSources = EntityQuery().ToList(); - var normalSpawnLocations = EntityQuery().ToList(); - var hiddenSpawnLocations = EntityQuery().ToList(); + var station = _gameTicker.GetSpawnableStations(); + if (station is null) + return; + + var glimmerSources = new List<(GlimmerSourceComponent, TransformComponent)>(); + foreach (var source in EntityQuery().ToList()) + { + if (!station.Contains(source.Item2.Owner)) + continue; + + glimmerSources.Add(source); + } + + + var normalSpawnLocations = new List<(VentCritterSpawnLocationComponent, TransformComponent)>(); + foreach (var source in EntityQuery().ToList()) + { + if (!station.Contains(source.Item2.Owner)) + continue; + + normalSpawnLocations.Add(source); + } + + var hiddenSpawnLocations = new List<(MidRoundAntagSpawnLocationComponent, TransformComponent)>(); + foreach (var source in EntityQuery().ToList()) + { + if (!station.Contains(source.Item2.Owner)) + continue; + + hiddenSpawnLocations.Add(source); + } var baseCount = Math.Max(1, EntityQuery().Count() / 10); int multiplier = Math.Max(1, (int) _glimmerSystem.GetGlimmerTier() - 2); @@ -52,6 +81,8 @@ protected override void Started(EntityUid uid, GlimmerMobRuleComponent component i++; continue; } + + return; } } } diff --git a/Content.Server/Destructible/Thresholds/Behaviors/BurnBodyBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/BurnBodyBehavior.cs index 28c4b2ef16..f0499dc6a2 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/BurnBodyBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/BurnBodyBehavior.cs @@ -17,12 +17,12 @@ public void Execute(EntityUid bodyId, DestructibleSystem system, EntityUid? caus var inventorySystem = system.EntityManager.System(); var sharedPopupSystem = system.EntityManager.System(); - if (!system.EntityManager.TryGetComponent(bodyId, out var comp)) - return; - - foreach (var item in inventorySystem.GetHandOrInventoryEntities(bodyId)) + if (system.EntityManager.TryGetComponent(bodyId, out var comp)) { - transformSystem.DropNextTo(item, bodyId); + foreach (var item in inventorySystem.GetHandOrInventoryEntities(bodyId)) + { + transformSystem.DropNextTo(item, bodyId); + } } sharedPopupSystem.PopupCoordinates(Loc.GetString("bodyburn-text-others", ("name", bodyId)), transformSystem.GetMoverCoordinates(bodyId), PopupType.LargeCaution); diff --git a/Content.Server/Destructible/Thresholds/Behaviors/PopupBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/PopupBehavior.cs index 59589c19aa..1d7ce24f60 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/PopupBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/PopupBehavior.cs @@ -1,6 +1,6 @@ using Content.Shared.Popups; -namespace Content.Server.Destructible.Thresholds.Behaviors; +namespace Content.Server.Destructible.Thresholds.Behaviors; /// /// Shows a popup for everyone. diff --git a/Content.Server/Destructible/Thresholds/Behaviors/SpawnGasBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/SpawnGasBehavior.cs index fec93a87f4..81fb07ecfc 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/SpawnGasBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/SpawnGasBehavior.cs @@ -1,4 +1,5 @@ using Content.Server.Atmos; +using Content.Shared.Atmos; using JetBrains.Annotations; namespace Content.Server.Destructible.Thresholds.Behaviors; diff --git a/Content.Server/DeviceLinking/Components/PowerSensorComponent.cs b/Content.Server/DeviceLinking/Components/PowerSensorComponent.cs index d9599546ae..b67a2fcd95 100644 --- a/Content.Server/DeviceLinking/Components/PowerSensorComponent.cs +++ b/Content.Server/DeviceLinking/Components/PowerSensorComponent.cs @@ -1,5 +1,6 @@ using Content.Server.DeviceLinking.Systems; using Content.Shared.DeviceLinking; +using Content.Shared.Power.Generator; using Content.Shared.Tools; using Robust.Shared.Audio; using Robust.Shared.Prototypes; diff --git a/Content.Server/DeviceLinking/Systems/SignalTimerSystem.cs b/Content.Server/DeviceLinking/Systems/SignalTimerSystem.cs index 0e214ee865..14e0c75d96 100644 --- a/Content.Server/DeviceLinking/Systems/SignalTimerSystem.cs +++ b/Content.Server/DeviceLinking/Systems/SignalTimerSystem.cs @@ -48,9 +48,9 @@ private void OnAfterActivatableUIOpen(EntityUid uid, SignalTimerComponent compon { var time = TryComp(uid, out var active) ? active.TriggerTime : TimeSpan.Zero; - if (_ui.TryGetUi(uid, SignalTimerUiKey.Key, out var bui)) + if (_ui.HasUi(uid, SignalTimerUiKey.Key)) { - _ui.SetUiState(bui, new SignalTimerBoundUserInterfaceState(component.Label, + _ui.SetUiState(uid, SignalTimerUiKey.Key, new SignalTimerBoundUserInterfaceState(component.Label, TimeSpan.FromSeconds(component.Delay).Minutes.ToString("D2"), TimeSpan.FromSeconds(component.Delay).Seconds.ToString("D2"), component.CanEditLabel, @@ -70,9 +70,9 @@ public void Trigger(EntityUid uid, SignalTimerComponent signalTimer) _audio.PlayPvs(signalTimer.DoneSound, uid); _signalSystem.InvokePort(uid, signalTimer.TriggerPort); - if (_ui.TryGetUi(uid, SignalTimerUiKey.Key, out var bui)) + if (_ui.HasUi(uid, SignalTimerUiKey.Key)) { - _ui.SetUiState(bui, new SignalTimerBoundUserInterfaceState(signalTimer.Label, + _ui.SetUiState(uid, SignalTimerUiKey.Key, new SignalTimerBoundUserInterfaceState(signalTimer.Label, TimeSpan.FromSeconds(signalTimer.Delay).Minutes.ToString("D2"), TimeSpan.FromSeconds(signalTimer.Delay).Seconds.ToString("D2"), signalTimer.CanEditLabel, @@ -117,10 +117,7 @@ private void UpdateTimer() /// The entity that is interacted with. private bool IsMessageValid(EntityUid uid, BoundUserInterfaceMessage message) { - if (message.Session.AttachedEntity is not { Valid: true } mob) - return false; - - if (!_accessReader.IsAllowed(mob, uid)) + if (!_accessReader.IsAllowed(message.Actor, uid)) return false; return true; diff --git a/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs b/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs index 9a038f1c78..dc1bf499df 100644 --- a/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs +++ b/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs @@ -62,7 +62,6 @@ public override void Initialize() SubscribeLocalEvent(OnClearLinks); SubscribeLocalEvent(OnToggleLinks); SubscribeLocalEvent(OnConfigButtonPressed); - SubscribeLocalEvent(OnUiOpenAttempt); SubscribeLocalEvent(OnComponentRemoved); } @@ -89,7 +88,7 @@ public override void Update(float frameTime) continue; //The network configurator is a handheld device. There can only ever be an ui session open for the player holding the device. - _uiSystem.TryCloseAll(uid, NetworkConfiguratorUiKey.Configure); + _uiSystem.CloseUi(uid, NetworkConfiguratorUiKey.Configure); } } @@ -215,7 +214,7 @@ private bool AccessCheck(EntityUid target, EntityUid? user, NetworkConfiguratorC private void OnComponentRemoved(EntityUid uid, DeviceListComponent component, ComponentRemove args) { - _uiSystem.TryCloseAll(uid, NetworkConfiguratorUiKey.Configure); + _uiSystem.CloseUi(uid, NetworkConfiguratorUiKey.Configure); } /// @@ -433,7 +432,7 @@ private void OpenDeviceLinkUi(EntityUid configuratorUid, EntityUid? targetUid, E return; - _uiSystem.TryOpen(configuratorUid, NetworkConfiguratorUiKey.Link, actor.PlayerSession); + _uiSystem.OpenUi(configuratorUid, NetworkConfiguratorUiKey.Link, actor.PlayerSession); configurator.DeviceLinkTarget = targetUid; @@ -464,7 +463,7 @@ private void UpdateLinkUiState(EntityUid configuratorUid, EntityUid sourceUid, E var sinkAddress = Resolve(sinkUid, ref sinkNetworkComponent, false) ? sinkNetworkComponent.Address : ""; var state = new DeviceLinkUserInterfaceState(sources, sinks, links, sourceAddress, sinkAddress, defaults); - _uiSystem.TrySetUiState(configuratorUid, NetworkConfiguratorUiKey.Link, state); + _uiSystem.SetUiState(configuratorUid, NetworkConfiguratorUiKey.Link, state); } /// @@ -478,7 +477,7 @@ private void OpenDeviceListUi(EntityUid configuratorUid, EntityUid? targetUid, E if (Delay(configurator)) return; - if (!targetUid.HasValue || !TryComp(userUid, out ActorComponent? actor) || !AccessCheck(targetUid.Value, userUid, configurator)) + if (!targetUid.HasValue || !AccessCheck(targetUid.Value, userUid, configurator)) return; if (!TryComp(targetUid, out DeviceListComponent? list)) @@ -488,14 +487,13 @@ private void OpenDeviceListUi(EntityUid configuratorUid, EntityUid? targetUid, E configurator.ActiveDeviceList = targetUid; Dirty(configuratorUid, configurator); - if (!_uiSystem.TryGetUi(configuratorUid, NetworkConfiguratorUiKey.Configure, out var bui)) - return; - - if (_uiSystem.OpenUi(bui, actor.PlayerSession)) - _uiSystem.SetUiState(bui, new DeviceListUserInterfaceState( + if (_uiSystem.TryOpenUi(configuratorUid, NetworkConfiguratorUiKey.Configure, userUid)) + { + _uiSystem.SetUiState(configuratorUid, NetworkConfiguratorUiKey.Configure, new DeviceListUserInterfaceState( _deviceListSystem.GetDeviceList(configurator.ActiveDeviceList.Value) .Select(v => (v.Key, MetaData(v.Value).EntityName)).ToHashSet() )); + } } /// @@ -523,8 +521,7 @@ private void UpdateListUiState(EntityUid uid, NetworkConfiguratorComponent compo component.Devices.Remove(invalidDevice); } - if (_uiSystem.TryGetUi(uid, NetworkConfiguratorUiKey.List, out var bui)) - _uiSystem.SetUiState(bui, new NetworkConfiguratorUserInterfaceState(devices)); + _uiSystem.SetUiState(uid, NetworkConfiguratorUiKey.List, new NetworkConfiguratorUserInterfaceState(devices)); } /// @@ -565,10 +562,10 @@ public void OnDeviceListShutdown(Entity conf, Ent /// private void OnRemoveDevice(EntityUid uid, NetworkConfiguratorComponent component, NetworkConfiguratorRemoveDeviceMessage args) { - if (component.Devices.TryGetValue(args.Address, out var removedDevice) && args.Session.AttachedEntity != null) + if (component.Devices.TryGetValue(args.Address, out var removedDevice)) { _adminLogger.Add(LogType.DeviceLinking, LogImpact.Low, - $"{ToPrettyString(args.Session.AttachedEntity.Value):actor} removed buffered device {ToPrettyString(removedDevice):subject} from {ToPrettyString(uid):tool}"); + $"{ToPrettyString(args.Actor):actor} removed buffered device {ToPrettyString(removedDevice):subject} from {ToPrettyString(uid):tool}"); } component.Devices.Remove(args.Address); @@ -583,10 +580,8 @@ private void OnRemoveDevice(EntityUid uid, NetworkConfiguratorComponent componen /// private void OnClearDevice(EntityUid uid, NetworkConfiguratorComponent component, NetworkConfiguratorClearDevicesMessage args) { - if (args.Session.AttachedEntity != null) - _adminLogger.Add(LogType.DeviceLinking, LogImpact.Low, - $"{ToPrettyString(args.Session.AttachedEntity.Value):actor} cleared buffered devices from {ToPrettyString(uid):tool}"); - + _adminLogger.Add(LogType.DeviceLinking, LogImpact.Low, + $"{ToPrettyString(args.Actor):actor} cleared buffered devices from {ToPrettyString(uid):tool}"); ClearDevices(uid, component); UpdateListUiState(uid, component); @@ -609,9 +604,8 @@ private void OnClearLinks(EntityUid uid, NetworkConfiguratorComponent configurat if (!configurator.ActiveDeviceLink.HasValue || !configurator.DeviceLinkTarget.HasValue) return; - if (args.Session.AttachedEntity != null) - _adminLogger.Add(LogType.DeviceLinking, LogImpact.Low, - $"{ToPrettyString(args.Session.AttachedEntity.Value):actor} cleared links between {ToPrettyString(configurator.ActiveDeviceLink.Value):subject} and {ToPrettyString(configurator.DeviceLinkTarget.Value):subject2} with {ToPrettyString(uid):tool}"); + _adminLogger.Add(LogType.DeviceLinking, LogImpact.Low, + $"{ToPrettyString(args.Actor):actor} cleared links between {ToPrettyString(configurator.ActiveDeviceLink.Value):subject} and {ToPrettyString(configurator.DeviceLinkTarget.Value):subject2} with {ToPrettyString(uid):tool}"); if (HasComp(configurator.ActiveDeviceLink) && HasComp(configurator.DeviceLinkTarget)) { @@ -649,7 +643,7 @@ private void OnToggleLinks(EntityUid uid, NetworkConfiguratorComponent configura if (TryComp(configurator.ActiveDeviceLink, out DeviceLinkSourceComponent? activeSource) && TryComp(configurator.DeviceLinkTarget, out DeviceLinkSinkComponent? targetSink)) { _deviceLinkSystem.ToggleLink( - args.Session.AttachedEntity, + args.Actor, configurator.ActiveDeviceLink.Value, configurator.DeviceLinkTarget.Value, args.Source, args.Sink, @@ -660,7 +654,7 @@ private void OnToggleLinks(EntityUid uid, NetworkConfiguratorComponent configura else if (TryComp(configurator.DeviceLinkTarget, out DeviceLinkSourceComponent? targetSource) && TryComp(configurator.ActiveDeviceLink, out DeviceLinkSinkComponent? activeSink)) { _deviceLinkSystem.ToggleLink( - args.Session.AttachedEntity, + args.Actor, configurator.DeviceLinkTarget.Value, configurator.ActiveDeviceLink.Value, args.Source, args.Sink, @@ -687,7 +681,7 @@ private void OnSaveLinks(EntityUid uid, NetworkConfiguratorComponent configurato if (TryComp(configurator.ActiveDeviceLink, out DeviceLinkSourceComponent? activeSource) && TryComp(configurator.DeviceLinkTarget, out DeviceLinkSinkComponent? targetSink)) { _deviceLinkSystem.SaveLinks( - args.Session.AttachedEntity, + args.Actor, configurator.ActiveDeviceLink.Value, configurator.DeviceLinkTarget.Value, args.Links, @@ -705,7 +699,7 @@ private void OnSaveLinks(EntityUid uid, NetworkConfiguratorComponent configurato else if (TryComp(configurator.DeviceLinkTarget, out DeviceLinkSourceComponent? targetSource) && TryComp(configurator.ActiveDeviceLink, out DeviceLinkSinkComponent? activeSink)) { _deviceLinkSystem.SaveLinks( - args.Session.AttachedEntity, + args.Actor, configurator.DeviceLinkTarget.Value, configurator.ActiveDeviceLink.Value, args.Links, @@ -735,29 +729,25 @@ private void OnConfigButtonPressed(EntityUid uid, NetworkConfiguratorComponent c switch (args.ButtonKey) { case NetworkConfiguratorButtonKey.Set: - if (args.Session.AttachedEntity != null) - _adminLogger.Add(LogType.DeviceLinking, LogImpact.Low, - $"{ToPrettyString(args.Session.AttachedEntity.Value):actor} set device links to {ToPrettyString(component.ActiveDeviceList.Value):subject} with {ToPrettyString(uid):tool}"); + _adminLogger.Add(LogType.DeviceLinking, LogImpact.Low, + $"{ToPrettyString(args.Actor):actor} set device links to {ToPrettyString(component.ActiveDeviceList.Value):subject} with {ToPrettyString(uid):tool}"); result = _deviceListSystem.UpdateDeviceList(component.ActiveDeviceList.Value, new HashSet(component.Devices.Values)); break; case NetworkConfiguratorButtonKey.Add: - if (args.Session.AttachedEntity != null) - _adminLogger.Add(LogType.DeviceLinking, LogImpact.Low, - $"{ToPrettyString(args.Session.AttachedEntity.Value):actor} added device links to {ToPrettyString(component.ActiveDeviceList.Value):subject} with {ToPrettyString(uid):tool}"); + _adminLogger.Add(LogType.DeviceLinking, LogImpact.Low, + $"{ToPrettyString(args.Actor):actor} added device links to {ToPrettyString(component.ActiveDeviceList.Value):subject} with {ToPrettyString(uid):tool}"); result = _deviceListSystem.UpdateDeviceList(component.ActiveDeviceList.Value, new HashSet(component.Devices.Values), true); break; case NetworkConfiguratorButtonKey.Clear: - if (args.Session.AttachedEntity != null) - _adminLogger.Add(LogType.DeviceLinking, LogImpact.Low, - $"{ToPrettyString(args.Session.AttachedEntity.Value):actor} cleared device links from {ToPrettyString(component.ActiveDeviceList.Value):subject} with {ToPrettyString(uid):tool}"); + _adminLogger.Add(LogType.DeviceLinking, LogImpact.Low, + $"{ToPrettyString(args.Actor):actor} cleared device links from {ToPrettyString(component.ActiveDeviceList.Value):subject} with {ToPrettyString(uid):tool}"); result = _deviceListSystem.UpdateDeviceList(component.ActiveDeviceList.Value, new HashSet()); break; case NetworkConfiguratorButtonKey.Copy: - if (args.Session.AttachedEntity != null) - _adminLogger.Add(LogType.DeviceLinking, LogImpact.Low, - $"{ToPrettyString(args.Session.AttachedEntity.Value):actor} copied devices from {ToPrettyString(component.ActiveDeviceList.Value):subject} to {ToPrettyString(uid):tool}"); + _adminLogger.Add(LogType.DeviceLinking, LogImpact.Low, + $"{ToPrettyString(args.Actor):actor} copied devices from {ToPrettyString(component.ActiveDeviceList.Value):subject} to {ToPrettyString(uid):tool}"); ClearDevices(uid, component); @@ -783,8 +773,8 @@ private void OnConfigButtonPressed(EntityUid uid, NetworkConfiguratorComponent c _ => "error" }; - _popupSystem.PopupCursor(Loc.GetString(resultText), args.Session, PopupType.Medium); - _uiSystem.TrySetUiState( + _popupSystem.PopupCursor(Loc.GetString(resultText), args.Actor, PopupType.Medium); + _uiSystem.SetUiState( uid, NetworkConfiguratorUiKey.Configure, new DeviceListUserInterfaceState( diff --git a/Content.Server/Devour/DevourSystem.cs b/Content.Server/Devour/DevourSystem.cs index febbd093a6..d9c50f260a 100644 --- a/Content.Server/Devour/DevourSystem.cs +++ b/Content.Server/Devour/DevourSystem.cs @@ -1,3 +1,4 @@ +using Content.Server.Body.Components; using Content.Server.Body.Systems; using Content.Shared.Chemistry.Components; using Content.Shared.Devour; @@ -15,6 +16,7 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnDoAfter); + SubscribeLocalEvent(OnGibContents); } private void OnDoAfter(EntityUid uid, DevourerComponent component, DevourDoAfterEvent args) @@ -45,5 +47,15 @@ private void OnDoAfter(EntityUid uid, DevourerComponent component, DevourDoAfter _audioSystem.PlayPvs(component.SoundDevour, uid); } + + private void OnGibContents(EntityUid uid, DevourerComponent component, ref BeingGibbedEvent args) + { + if (!component.ShouldStoreDevoured) + return; + + // For some reason we have two different systems that should handle gibbing, + // and for some another reason GibbingSystem, which should empty all containers, doesn't get involved in this process + ContainerSystem.EmptyContainer(component.Stomach); + } } diff --git a/Content.Server/Disposal/Mailing/MailingUnitSystem.cs b/Content.Server/Disposal/Mailing/MailingUnitSystem.cs index 001abad3dc..8e9c9e4ba7 100644 --- a/Content.Server/Disposal/Mailing/MailingUnitSystem.cs +++ b/Content.Server/Disposal/Mailing/MailingUnitSystem.cs @@ -159,8 +159,7 @@ private void HandleActivate(EntityUid uid, MailingUnitComponent component, Activ args.Handled = true; UpdateTargetList(uid, component); - if (_userInterfaceSystem.TryGetUi(uid, MailingUnitUiKey.Key, out var bui)) - _userInterfaceSystem.OpenUi(bui, actor.PlayerSession); + _userInterfaceSystem.OpenUi(uid, MailingUnitUiKey.Key, actor.PlayerSession); } /// @@ -178,8 +177,7 @@ private void UpdateUserInterface(EntityUid uid, MailingUnitComponent component) return; var state = new MailingUnitBoundUserInterfaceState(component.DisposalUnitInterfaceState, component.Target, component.TargetList, component.Tag); - if (_userInterfaceSystem.TryGetUi(uid, MailingUnitUiKey.Key, out var bui)) - _userInterfaceSystem.SetUiState(bui, state); + _userInterfaceSystem.SetUiState(uid, MailingUnitUiKey.Key, state); } private void OnTargetSelected(EntityUid uid, MailingUnitComponent component, TargetSelectedMessage args) diff --git a/Content.Server/Disposal/Tube/DisposalTubeSystem.cs b/Content.Server/Disposal/Tube/DisposalTubeSystem.cs index 6c0bced53e..f0f6e9142c 100644 --- a/Content.Server/Disposal/Tube/DisposalTubeSystem.cs +++ b/Content.Server/Disposal/Tube/DisposalTubeSystem.cs @@ -101,8 +101,9 @@ private void OnUiAction(EntityUid uid, DisposalTaggerComponent tagger, SharedDis /// A user interface message from the client. private void OnUiAction(EntityUid uid, DisposalRouterComponent router, SharedDisposalRouterComponent.UiActionMessage msg) { - if (!EntityManager.EntityExists(msg.Session.AttachedEntity)) + if (!EntityManager.EntityExists(msg.Actor)) return; + if (TryComp(uid, out var physBody) && physBody.BodyType != BodyType.Static) return; @@ -279,9 +280,9 @@ private void OnOpenRouterUI(EntityUid uid, DisposalRouterComponent router, Bound private void OnOpenTaggerUI(EntityUid uid, DisposalTaggerComponent tagger, BoundUIOpenedEvent args) { - if (_uiSystem.TryGetUi(uid, DisposalTaggerUiKey.Key, out var bui)) + if (_uiSystem.HasUi(uid, DisposalTaggerUiKey.Key)) { - _uiSystem.SetUiState(bui, + _uiSystem.SetUiState(uid, DisposalTaggerUiKey.Key, new DisposalTaggerUserInterfaceState(tagger.Tag)); } } @@ -292,13 +293,9 @@ private void OnOpenTaggerUI(EntityUid uid, DisposalTaggerComponent tagger, Bound /// Returns a private void UpdateRouterUserInterface(EntityUid uid, DisposalRouterComponent router) { - var bui = _uiSystem.GetUiOrNull(uid, DisposalRouterUiKey.Key); - if (bui == null) - return; - if (router.Tags.Count <= 0) { - _uiSystem.SetUiState(bui, new DisposalRouterUserInterfaceState("")); + _uiSystem.SetUiState(uid, DisposalRouterUiKey.Key, new DisposalRouterUserInterfaceState("")); return; } @@ -312,7 +309,7 @@ private void UpdateRouterUserInterface(EntityUid uid, DisposalRouterComponent ro taglist.Remove(taglist.Length - 2, 2); - _uiSystem.SetUiState(bui, new DisposalRouterUserInterfaceState(taglist.ToString())); + _uiSystem.SetUiState(uid, DisposalRouterUiKey.Key, new DisposalRouterUserInterfaceState(taglist.ToString())); } private void OnAnchorChange(EntityUid uid, DisposalTubeComponent component, ref AnchorStateChangedEvent args) diff --git a/Content.Server/Disposal/Unit/Components/DisposalHolderComponent.cs b/Content.Server/Disposal/Unit/Components/DisposalHolderComponent.cs index 3df2182b41..690b33968b 100644 --- a/Content.Server/Disposal/Unit/Components/DisposalHolderComponent.cs +++ b/Content.Server/Disposal/Unit/Components/DisposalHolderComponent.cs @@ -1,5 +1,6 @@ using Content.Server.Atmos; using Content.Server.Disposal.Tube.Components; +using Content.Shared.Atmos; using Robust.Shared.Containers; namespace Content.Server.Disposal.Unit.Components diff --git a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs index c17b10c9d2..59cc6a8021 100644 --- a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs +++ b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs @@ -71,8 +71,6 @@ public override void Initialize() SubscribeLocalEvent(OnPowerChange); SubscribeLocalEvent(OnDisposalInit); - SubscribeLocalEvent(OnThrowCollide); - SubscribeLocalEvent(OnActivate); SubscribeLocalEvent(OnAfterInteractUsing); SubscribeLocalEvent(OnDragDropOn); @@ -141,6 +139,9 @@ private void AddClimbInsideVerb(EntityUid uid, SharedDisposalUnitComponent compo return; } + if (!CanInsert(uid, component, args.User)) + return; + // Add verb to climb inside of the unit, Verb verb = new() { @@ -217,7 +218,7 @@ public override void Update(float frameTime) #region UI Handlers private void OnUiButtonPressed(EntityUid uid, SharedDisposalUnitComponent component, SharedDisposalUnitComponent.UiButtonPressedMessage args) { - if (args.Session.AttachedEntity is not { Valid: true } player) + if (args.Actor is not { Valid: true } player) { return; } @@ -233,7 +234,7 @@ private void OnUiButtonPressed(EntityUid uid, SharedDisposalUnitComponent compon _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(player):player} hit flush button on {ToPrettyString(uid)}, it's now {(component.Engaged ? "on" : "off")}"); break; case SharedDisposalUnitComponent.UiButton.Power: - _power.TryTogglePower(uid, user: args.Session.AttachedEntity); + _power.TryTogglePower(uid, user: args.Actor); break; default: throw new ArgumentOutOfRangeException($"{ToPrettyString(player):player} attempted to hit a nonexistant button on {ToPrettyString(uid)}"); @@ -266,7 +267,7 @@ private void OnActivate(EntityUid uid, SharedDisposalUnitComponent component, Ac } args.Handled = true; - _ui.TryOpen(uid, SharedDisposalUnitComponent.DisposalUnitUiKey.Key, actor.PlayerSession); + _ui.OpenUi(uid, SharedDisposalUnitComponent.DisposalUnitUiKey.Key, actor.PlayerSession); } private void OnAfterInteractUsing(EntityUid uid, SharedDisposalUnitComponent component, AfterInteractUsingEvent args) @@ -289,31 +290,6 @@ private void OnAfterInteractUsing(EntityUid uid, SharedDisposalUnitComponent com args.Handled = true; } - /// - /// Thrown items have a chance of bouncing off the unit and not going in. - /// - private void OnThrowCollide(EntityUid uid, SharedDisposalUnitComponent component, ThrowHitByEvent args) - { - var canInsert = CanInsert(uid, component, args.Thrown); - - if (!canInsert) - { - return; - } - - var inserted = _containerSystem.Insert(args.Thrown, component.Container); - - if (!inserted) - { - throw new InvalidOperationException("Container insertion failed but CanInsert returned true"); - } - - if (args.Component.Thrower != null) - _adminLogger.Add(LogType.Landed, LogImpact.Low, $"{ToPrettyString(args.Thrown)} thrown by {ToPrettyString(args.Component.Thrower.Value):player} landed in {ToPrettyString(uid)}"); - - AfterInsert(uid, component, args.Thrown); - } - private void OnDisposalInit(EntityUid uid, SharedDisposalUnitComponent component, ComponentInit args) { component.Container = _containerSystem.EnsureContainer(uid, SharedDisposalUnitComponent.ContainerId); @@ -587,7 +563,7 @@ public void UpdateInterface(EntityUid uid, SharedDisposalUnitComponent component var compState = GetState(uid, component); var stateString = Loc.GetString($"disposal-unit-state-{compState}"); var state = new SharedDisposalUnitComponent.DisposalUnitBoundUserInterfaceState(Name(uid), stateString, EstimatedFullPressure(uid, component), powered, component.Engaged); - _ui.TrySetUiState(uid, SharedDisposalUnitComponent.DisposalUnitUiKey.Key, state); + _ui.SetUiState(uid, SharedDisposalUnitComponent.DisposalUnitUiKey.Key, state); var stateUpdatedEvent = new DisposalUnitUIStateUpdatedEvent(state); RaiseLocalEvent(uid, stateUpdatedEvent); @@ -792,10 +768,7 @@ public void AfterInsert(EntityUid uid, SharedDisposalUnitComponent component, En QueueAutomaticEngage(uid, component); - if (TryComp(inserted, out ActorComponent? actor)) - { - _ui.TryClose(uid, SharedDisposalUnitComponent.DisposalUnitUiKey.Key, actor.PlayerSession); - } + _ui.CloseUi(uid, SharedDisposalUnitComponent.DisposalUnitUiKey.Key, inserted); // Maybe do pullable instead? Eh still fine. Joints.RecursiveClearJoints(inserted); diff --git a/Content.Server/Doors/Electronics/Systems/DoorElectronicsSystem.cs b/Content.Server/Doors/Electronics/Systems/DoorElectronicsSystem.cs index 56e8bd50b3..af9ccadd91 100644 --- a/Content.Server/Doors/Electronics/Systems/DoorElectronicsSystem.cs +++ b/Content.Server/Doors/Electronics/Systems/DoorElectronicsSystem.cs @@ -39,7 +39,7 @@ public void UpdateUserInterface(EntityUid uid, DoorElectronicsComponent componen } var state = new DoorElectronicsConfigurationState(accesses); - _uiSystem.TrySetUiState(uid, DoorElectronicsConfigurationUiKey.Key, state); + _uiSystem.SetUiState(uid, DoorElectronicsConfigurationUiKey.Key, state); } private void OnChangeConfiguration( diff --git a/Content.Server/Electrocution/Components/ElectrifiedComponent.cs b/Content.Server/Electrocution/Components/ElectrifiedComponent.cs index 65a539eb08..4ef07a0cca 100644 --- a/Content.Server/Electrocution/Components/ElectrifiedComponent.cs +++ b/Content.Server/Electrocution/Components/ElectrifiedComponent.cs @@ -85,4 +85,7 @@ public sealed partial class ElectrifiedComponent : Component [DataField("shockVolume")] public float ShockVolume = 20; + + [DataField] + public float Probability = 1f; } diff --git a/Content.Server/Electrocution/ElectrocutionSystem.cs b/Content.Server/Electrocution/ElectrocutionSystem.cs index ba20f4e32f..4db815a394 100644 --- a/Content.Server/Electrocution/ElectrocutionSystem.cs +++ b/Content.Server/Electrocution/ElectrocutionSystem.cs @@ -215,6 +215,9 @@ public bool TryDoElectrifiedAct(EntityUid uid, EntityUid targetUid, if (!IsPowered(uid, electrified, transform)) return false; + if (!_random.Prob(electrified.Probability)) + return false; + EnsureComp(uid); _appearance.SetData(uid, ElectrifiedVisuals.IsPowered, true); diff --git a/Content.Server/Entry/IgnoredComponents.cs b/Content.Server/Entry/IgnoredComponents.cs index fe073da7a4..d9b81c8e5a 100644 --- a/Content.Server/Entry/IgnoredComponents.cs +++ b/Content.Server/Entry/IgnoredComponents.cs @@ -14,12 +14,13 @@ public static class IgnoredComponents "Icon", "HandheldGPS", "CableVisualizer", + "SolutionItemStatus", "UIFragment", "PdaBorderColor", "InventorySlots", "LightFade", "HolidayRsiSwap", - "OptionsVisualizer", + "OptionsVisualizer" }; } } diff --git a/Content.Server/Explosion/Components/ExplosiveComponent.cs b/Content.Server/Explosion/Components/ExplosiveComponent.cs index 04a08955a3..2b27a89d9d 100644 --- a/Content.Server/Explosion/Components/ExplosiveComponent.cs +++ b/Content.Server/Explosion/Components/ExplosiveComponent.cs @@ -81,6 +81,13 @@ public sealed partial class ExplosiveComponent : Component [DataField("deleteAfterExplosion")] public bool? DeleteAfterExplosion; + /// + /// Whether to not set to true, allowing it to explode multiple times. + /// This should never be used if it is damageable. + /// + [DataField] + public bool Repeatable; + /// /// Avoid somehow double-triggering this explosion (e.g. by damaging this entity from its own explosion. /// diff --git a/Content.Server/Explosion/Components/RepeatingTriggerComponent.cs b/Content.Server/Explosion/Components/RepeatingTriggerComponent.cs new file mode 100644 index 0000000000..cc08de53f9 --- /dev/null +++ b/Content.Server/Explosion/Components/RepeatingTriggerComponent.cs @@ -0,0 +1,25 @@ +using Content.Server.Explosion.EntitySystems; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Server.Explosion.Components; + +/// +/// Constantly triggers after being added to an entity. +/// +[RegisterComponent, Access(typeof(TriggerSystem))] +[AutoGenerateComponentPause] +public sealed partial class RepeatingTriggerComponent : Component +{ + /// + /// How long to wait between triggers. + /// The first trigger starts this long after the component is added. + /// + [DataField] + public TimeSpan Delay = TimeSpan.FromSeconds(1); + + /// + /// When the next trigger will be. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoPausedField] + public TimeSpan NextTrigger; +} diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.CVars.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.CVars.cs index 1f03109333..3332d3a4f5 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.CVars.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.CVars.cs @@ -11,7 +11,8 @@ public sealed partial class ExplosionSystem : EntitySystem public int ThrowLimit { get; private set; } public bool SleepNodeSys { get; private set; } public bool IncrementalTileBreaking { get; private set; } - public int SingleTickAreaLimit {get; private set; } + public int SingleTickAreaLimit { get; private set; } + public bool CanCreateVacuum { get; private set; } private void SubscribeCvars() { @@ -23,5 +24,6 @@ private void SubscribeCvars() Subs.CVar(_cfg, CCVars.ExplosionMaxProcessingTime, value => MaxProcessingTime = value, true); Subs.CVar(_cfg, CCVars.ExplosionIncrementalTileBreaking, value => IncrementalTileBreaking = value, true); Subs.CVar(_cfg, CCVars.ExplosionSingleTickAreaLimit, value => SingleTickAreaLimit = value, true); + Subs.CVar(_cfg, CCVars.ExplosionCanCreateVacuum, value => CanCreateVacuum = value, true); } } diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs index 14a149074d..835e3174fc 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs @@ -1,4 +1,5 @@ using System.Numerics; +using Content.Server.Atmos.EntitySystems; using Content.Shared.CCVar; using Content.Shared.Damage; using Content.Shared.Explosion; @@ -16,7 +17,6 @@ using Robust.Shared.Timing; using Robust.Shared.Utility; using TimedDespawnComponent = Robust.Shared.Spawners.TimedDespawnComponent; -using Content.Server.Atmos.EntitySystems; namespace Content.Server.Explosion.EntitySystems; @@ -474,7 +474,9 @@ public void DamageFloorTile(TileRef tileRef, if (_tileDefinitionManager[tileRef.Tile.TypeId] is not ContentTileDefinition tileDef) return; - if (tileDef.MapAtmosphere) + if (!CanCreateVacuum) + canCreateVacuum = false; + else if (tileDef.MapAtmosphere) canCreateVacuum = true; // is already a vacuum. int tileBreakages = 0; diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs index 607a514e63..71f3025748 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs @@ -160,7 +160,7 @@ public void TriggerExplosive(EntityUid uid, ExplosiveComponent? explosive = null if (explosive.Exploded) return; - explosive.Exploded = true; + explosive.Exploded = !explosive.Repeatable; // Override the explosion intensity if optional arguments were provided. if (radius != null) diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs index 94f5585536..8e0a75ea24 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs @@ -94,6 +94,7 @@ public override void Initialize() SubscribeLocalEvent(OnStepTriggered); SubscribeLocalEvent(OnSlipTriggered); SubscribeLocalEvent(OnEmptyTriggered); + SubscribeLocalEvent(OnRepeatInit); SubscribeLocalEvent(OnSpawnTrigger); SubscribeLocalEvent(HandleDeleteTrigger); @@ -153,7 +154,7 @@ private void HandleExplodeTrigger(EntityUid uid, ExplodeOnTriggerComponent compo private void HandleFlashTrigger(EntityUid uid, FlashOnTriggerComponent component, TriggerEvent args) { // TODO Make flash durations sane ffs. - _flashSystem.FlashArea(uid, args.User, component.Range, component.Duration * 1000f); + _flashSystem.FlashArea(uid, args.User, component.Range, component.Duration * 1000f, probability: component.Probability); args.Handled = true; } @@ -241,6 +242,11 @@ private void OnEmptyTriggered(EntityUid uid, TriggerWhenEmptyComponent component Trigger(uid, args.EmptyGun); } + private void OnRepeatInit(Entity ent, ref MapInitEvent args) + { + ent.Comp.NextTrigger = _timing.CurTime + ent.Comp.Delay; + } + public bool Trigger(EntityUid trigger, EntityUid? user = null) { var triggerEvent = new TriggerEvent(trigger, user); @@ -323,6 +329,7 @@ public override void Update(float frameTime) UpdateProximity(); UpdateTimer(frameTime); UpdateTimedCollide(frameTime); + UpdateRepeat(); } private void UpdateTimer(float frameTime) @@ -357,5 +364,19 @@ private void UpdateTimer(float frameTime) _appearance.SetData(uid, TriggerVisuals.VisualState, TriggerVisualState.Unprimed, appearance); } } + + private void UpdateRepeat() + { + var now = _timing.CurTime; + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var comp)) + { + if (comp.NextTrigger > now) + continue; + + comp.NextTrigger = now + comp.Delay; + Trigger(uid); + } + } } } diff --git a/Content.Server/Extinguisher/FireExtinguisherComponent.cs b/Content.Server/Extinguisher/FireExtinguisherComponent.cs index fe10b4a574..991fc76c62 100644 --- a/Content.Server/Extinguisher/FireExtinguisherComponent.cs +++ b/Content.Server/Extinguisher/FireExtinguisherComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Extinguisher; -[NetworkedComponent, RegisterComponent] +[RegisterComponent] [Access(typeof(FireExtinguisherSystem))] public sealed partial class FireExtinguisherComponent : SharedFireExtinguisherComponent { diff --git a/Content.Server/Eye/Blinding/ActivatableUIRequiresVisionSystem.cs b/Content.Server/Eye/Blinding/ActivatableUIRequiresVisionSystem.cs index b51efc2f5e..7b937cf0d8 100644 --- a/Content.Server/Eye/Blinding/ActivatableUIRequiresVisionSystem.cs +++ b/Content.Server/Eye/Blinding/ActivatableUIRequiresVisionSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Eye.Blinding.Systems; using Robust.Shared.Player; using Robust.Server.GameObjects; +using Robust.Shared.Collections; namespace Content.Server.Eye.Blinding; @@ -37,24 +38,19 @@ private void OnBlindnessChanged(EntityUid uid, BlindableComponent component, ref if (!args.Blind) return; - if (!TryComp(uid, out var actor)) - return; - - var uiList = _userInterfaceSystem.GetAllUIsForSession(actor.PlayerSession); - if (uiList == null) - return; - - Queue closeList = new(); // foreach collection modified moment + var toClose = new ValueList<(EntityUid Entity, Enum Key)>(); - foreach (var ui in uiList) + foreach (var bui in _userInterfaceSystem.GetActorUis(uid)) { - if (HasComp(ui.Owner)) - closeList.Enqueue(ui); + if (HasComp(bui.Entity)) + { + toClose.Add(bui); + } } - foreach (var ui in closeList) + foreach (var bui in toClose) { - _userInterfaceSystem.CloseUi(ui, actor.PlayerSession); + _userInterfaceSystem.CloseUi(bui.Entity, bui.Key, uid); } } } diff --git a/Content.Server/Fax/AdminUI/AdminFaxEui.cs b/Content.Server/Fax/AdminUI/AdminFaxEui.cs index c8be6618e4..452fc593d9 100644 --- a/Content.Server/Fax/AdminUI/AdminFaxEui.cs +++ b/Content.Server/Fax/AdminUI/AdminFaxEui.cs @@ -1,6 +1,7 @@ using Content.Server.DeviceNetwork.Components; using Content.Server.EUI; using Content.Shared.Eui; +using Content.Shared.Fax.Components; using Content.Shared.Fax; using Content.Shared.Follower; using Content.Shared.Ghost; @@ -54,7 +55,7 @@ public override void HandleMessage(EuiMessageBase msg) } case AdminFaxEuiMsg.Send sendData: { - var printout = new FaxPrintout(sendData.Content, sendData.Title, null, sendData.StampState, + var printout = new FaxPrintout(sendData.Content, sendData.Title, null, null, sendData.StampState, new() { new StampDisplayInfo { StampedName = sendData.From, StampedColor = sendData.StampColor } }); _faxSystem.Receive(_entityManager.GetEntity(sendData.Target), printout); break; diff --git a/Content.Server/Fax/FaxConstants.cs b/Content.Server/Fax/FaxConstants.cs index 102510bd46..24ed7cbcf3 100644 --- a/Content.Server/Fax/FaxConstants.cs +++ b/Content.Server/Fax/FaxConstants.cs @@ -23,6 +23,7 @@ public static class FaxConstants public const string FaxNameData = "fax_data_name"; public const string FaxPaperNameData = "fax_data_title"; + public const string FaxPaperLabelData = "fax_data_label"; public const string FaxPaperPrototypeData = "fax_data_prototype"; public const string FaxPaperContentData = "fax_data_content"; public const string FaxPaperStampStateData = "fax_data_stamp_state"; diff --git a/Content.Server/Fax/FaxSystem.cs b/Content.Server/Fax/FaxSystem.cs index 3ff139466f..e86dbca4a1 100644 --- a/Content.Server/Fax/FaxSystem.cs +++ b/Content.Server/Fax/FaxSystem.cs @@ -4,6 +4,7 @@ using Content.Server.DeviceNetwork; using Content.Server.DeviceNetwork.Components; using Content.Server.DeviceNetwork.Systems; +using Content.Server.Labels; using Content.Server.Paper; using Content.Server.Popups; using Content.Server.Power.Components; @@ -16,7 +17,11 @@ using Content.Shared.Emag.Components; using Content.Shared.Emag.Systems; using Content.Shared.Fax; +using Content.Shared.Fax.Systems; +using Content.Shared.Fax.Components; using Content.Shared.Interaction; +using Content.Shared.Labels.Components; +using Content.Shared.Mobs.Components; using Content.Shared.Paper; using Robust.Server.GameObjects; using Robust.Shared.Audio; @@ -36,12 +41,14 @@ public sealed class FaxSystem : EntitySystem [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly DeviceNetworkSystem _deviceNetworkSystem = default!; [Dependency] private readonly PaperSystem _paperSystem = default!; + [Dependency] private readonly LabelSystem _labelSystem = default!; [Dependency] private readonly SharedAudioSystem _audioSystem = default!; [Dependency] private readonly ToolSystem _toolSystem = default!; [Dependency] private readonly QuickDialogSystem _quickDialog = default!; [Dependency] private readonly UserInterfaceSystem _userInterface = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; + [Dependency] private readonly FaxecuteSystem _faxecute = default!; private const string PaperSlotId = "Paper"; @@ -51,7 +58,7 @@ public sealed class FaxSystem : EntitySystem /// [ValidatePrototypeId] private const string DefaultPaperPrototypeId = "Paper"; - + [ValidatePrototypeId] private const string OfficePaperPrototypeId = "PaperOffice"; @@ -236,7 +243,7 @@ private void OnInteractUsing(EntityUid uid, FaxMachineComponent component, Inter } _adminLogger.Add(LogType.Action, LogImpact.Low, - $"{ToPrettyString(args.User):user} renamed {ToPrettyString(uid)} from \"{component.FaxName}\" to \"{newName}\""); + $"{ToPrettyString(args.User):user} renamed {ToPrettyString(uid):tool} from \"{component.FaxName}\" to \"{newName}\""); component.FaxName = newName; _popupSystem.PopupEntity(Loc.GetString("fax-machine-popup-name-set"), uid); UpdateUserInterface(uid, component); @@ -288,11 +295,12 @@ private void OnPacketReceived(EntityUid uid, FaxMachineComponent component, Devi !args.Data.TryGetValue(FaxConstants.FaxPaperContentData, out string? content)) return; + args.Data.TryGetValue(FaxConstants.FaxPaperLabelData, out string? label); args.Data.TryGetValue(FaxConstants.FaxPaperStampStateData, out string? stampState); args.Data.TryGetValue(FaxConstants.FaxPaperStampedByData, out List? stampedBy); args.Data.TryGetValue(FaxConstants.FaxPaperPrototypeData, out string? prototypeId); - var printout = new FaxPrintout(content, name, prototypeId, stampState, stampedBy); + var printout = new FaxPrintout(content, name, label, prototypeId, stampState, stampedBy); Receive(uid, printout, args.SenderAddress); break; @@ -307,18 +315,25 @@ private void OnToggleInterface(EntityUid uid, FaxMachineComponent component, Aft private void OnFileButtonPressed(EntityUid uid, FaxMachineComponent component, FaxFileMessage args) { + args.Label = args.Label?[..Math.Min(args.Label.Length, FaxFileMessageValidation.MaxLabelSize)]; args.Content = args.Content[..Math.Min(args.Content.Length, FaxFileMessageValidation.MaxContentSize)]; PrintFile(uid, component, args); } private void OnCopyButtonPressed(EntityUid uid, FaxMachineComponent component, FaxCopyMessage args) { - Copy(uid, component, args); + if (HasComp(component.PaperSlot.Item)) + _faxecute.Faxecute(uid, component); /// when button pressed it will hurt the mob. + else + Copy(uid, component, args); } private void OnSendButtonPressed(EntityUid uid, FaxMachineComponent component, FaxSendMessage args) { - Send(uid, component, args.Session.AttachedEntity); + if (HasComp(component.PaperSlot.Item)) + _faxecute.Faxecute(uid, component); /// when button pressed it will hurt the mob. + else + Send(uid, component, args); } private void OnRefreshButtonPressed(EntityUid uid, FaxMachineComponent component, FaxRefreshMessage args) @@ -336,14 +351,20 @@ private void UpdateAppearance(EntityUid uid, FaxMachineComponent? component = nu if (!Resolve(uid, ref component)) return; + if (TryComp(component.PaperSlot.Item, out var faxable)) + component.InsertingState = faxable.InsertingState; + + if (component.InsertingTimeRemaining > 0) + { _appearanceSystem.SetData(uid, FaxMachineVisuals.VisualState, FaxMachineVisualState.Inserting); + Dirty(uid, component); + } else if (component.PrintingTimeRemaining > 0) _appearanceSystem.SetData(uid, FaxMachineVisuals.VisualState, FaxMachineVisualState.Printing); else _appearanceSystem.SetData(uid, FaxMachineVisuals.VisualState, FaxMachineVisualState.Normal); } - private void UpdateUserInterface(EntityUid uid, FaxMachineComponent? component = null) { if (!Resolve(uid, ref component)) @@ -358,7 +379,7 @@ private void UpdateUserInterface(EntityUid uid, FaxMachineComponent? component = component.SendTimeoutRemaining <= 0 && component.InsertingTimeRemaining <= 0; var state = new FaxUiState(component.FaxName, component.KnownFaxes, canSend, canCopy, isPaperInserted, component.DestinationFaxAddress); - _userInterface.TrySetUiState(uid, FaxUiKey.Key, state); + _userInterface.SetUiState(uid, FaxUiKey.Key, state); } /// @@ -409,20 +430,20 @@ public void PrintFile(EntityUid uid, FaxMachineComponent component, FaxFileMessa else prototype = DefaultPaperPrototypeId; - var name = Loc.GetString("fax-machine-printed-paper-name"); - - var printout = new FaxPrintout(args.Content, name, prototype); + var name = Loc.GetString("fax-machine-printed-paper-name"); + + var printout = new FaxPrintout(args.Content, name, args.Label, prototype); component.PrintingQueue.Enqueue(printout); component.SendTimeoutRemaining += component.SendTimeout; UpdateUserInterface(uid, component); - if (args.Session.AttachedEntity != null) - _adminLogger.Add(LogType.Action, LogImpact.Low, - $"{ToPrettyString(args.Session.AttachedEntity.Value):actor} added print job to {ToPrettyString(uid):tool} with text: {args.Content}"); - else - _adminLogger.Add(LogType.Action, LogImpact.Low, - $"Someone added print job to {ToPrettyString(uid):tool} with text: {args.Content}"); + // Unfortunately, since a paper entity does not yet exist, we have to emulate what LabelSystem will do. + var nameWithLabel = (args.Label is { } label) ? $"{name} ({label})" : name; + _adminLogger.Add(LogType.Action, LogImpact.Low, + $"{ToPrettyString(args.Actor):actor} " + + $"added print job to \"{component.FaxName}\" {ToPrettyString(uid):tool} " + + $"of {nameWithLabel}: {args.Content}"); } /// @@ -442,9 +463,12 @@ public void Copy(EntityUid uid, FaxMachineComponent? component, FaxCopyMessage a !TryComp(sendEntity, out var paper)) return; + TryComp(sendEntity, out var labelComponent); + // TODO: See comment in 'Send()' about not being able to copy whole entities var printout = new FaxPrintout(paper.Content, - metadata.EntityName, + labelComponent?.OriginalName ?? metadata.EntityName, + labelComponent?.CurrentLabel, metadata.EntityPrototype?.ID ?? DefaultPaperPrototypeId, paper.StampState, paper.StampedBy); @@ -457,16 +481,17 @@ public void Copy(EntityUid uid, FaxMachineComponent? component, FaxCopyMessage a UpdateUserInterface(uid, component); - if (args.Session.AttachedEntity != null) - _adminLogger.Add(LogType.Action, LogImpact.Low, - $"{ToPrettyString(args.Session.AttachedEntity.Value):actor} added copy job to {ToPrettyString(uid):tool} with text: {ToPrettyString(component.PaperSlot.Item):subject}"); + _adminLogger.Add(LogType.Action, LogImpact.Low, + $"{ToPrettyString(args.Actor):actor} " + + $"added copy job to \"{component.FaxName}\" {ToPrettyString(uid):tool} " + + $"of {ToPrettyString(sendEntity):subject}: {printout.Content}"); } /// /// Sends message to addressee if paper is set and a known fax is selected /// A timeout is set after sending, which is shared by the copy button. /// - public void Send(EntityUid uid, FaxMachineComponent? component = null, EntityUid? sender = null) + public void Send(EntityUid uid, FaxMachineComponent? component, FaxSendMessage args) { if (!Resolve(uid, ref component)) return; @@ -482,13 +507,16 @@ public void Send(EntityUid uid, FaxMachineComponent? component = null, EntityUid return; if (!TryComp(sendEntity, out var metadata) || - !TryComp(sendEntity, out var paper)) + !TryComp(sendEntity, out var paper)) return; + TryComp(sendEntity, out var labelComponent); + var payload = new NetworkPayload() { { DeviceNetworkConstants.Command, FaxConstants.FaxPrintCommand }, - { FaxConstants.FaxPaperNameData, metadata.EntityName }, + { FaxConstants.FaxPaperNameData, labelComponent?.OriginalName ?? metadata.EntityName }, + { FaxConstants.FaxPaperLabelData, labelComponent?.CurrentLabel }, { FaxConstants.FaxPaperContentData, paper.Content }, }; @@ -509,7 +537,11 @@ public void Send(EntityUid uid, FaxMachineComponent? component = null, EntityUid _deviceNetworkSystem.QueuePacket(uid, component.DestinationFaxAddress, payload); - _adminLogger.Add(LogType.Action, LogImpact.Low, $"{(sender != null ? ToPrettyString(sender.Value) : "Unknown"):user} sent fax from \"{component.FaxName}\" {ToPrettyString(uid)} to {faxName} ({component.DestinationFaxAddress}): {paper.Content}"); + _adminLogger.Add(LogType.Action, LogImpact.Low, + $"{ToPrettyString(args.Actor):actor} " + + $"sent fax from \"{component.FaxName}\" {ToPrettyString(uid):tool} " + + $"to \"{faxName}\" ({component.DestinationFaxAddress}) " + + $"of {ToPrettyString(sendEntity):subject}: {paper.Content}"); component.SendTimeoutRemaining += component.SendTimeout; @@ -565,7 +597,13 @@ private void SpawnPaperFromQueue(EntityUid uid, FaxMachineComponent? component = } _metaData.SetEntityName(printed, printout.Name); - _adminLogger.Add(LogType.Action, LogImpact.Low, $"\"{component.FaxName}\" {ToPrettyString(uid)} printed {ToPrettyString(printed)}: {printout.Content}"); + + if (printout.Label is { } label) + { + _labelSystem.Label(printed, label); + } + + _adminLogger.Add(LogType.Action, LogImpact.Low, $"\"{component.FaxName}\" {ToPrettyString(uid):tool} printed {ToPrettyString(printed):subject}: {printout.Content}"); } private void NotifyAdmins(string faxName) diff --git a/Content.Server/Flash/FlashSystem.cs b/Content.Server/Flash/FlashSystem.cs index 7706bfec4e..bc91a307b0 100644 --- a/Content.Server/Flash/FlashSystem.cs +++ b/Content.Server/Flash/FlashSystem.cs @@ -18,6 +18,7 @@ using Robust.Server.Audio; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Random; using Robust.Shared.Timing; using InventoryComponent = Content.Shared.Inventory.InventoryComponent; using Content.Shared.Traits.Assorted.Components; @@ -67,7 +68,7 @@ private void OnFlashMeleeHit(EntityUid uid, FlashComponent comp, MeleeHitEvent a args.Handled = true; foreach (var e in args.HitEntities) { - Flash(e, args.User, uid, comp.FlashDuration, comp.SlowTo, melee: true); + Flash(e, args.User, uid, comp.FlashDuration, comp.SlowTo, melee: true, stunDuration: comp.MeleeStunDuration); } } @@ -77,7 +78,7 @@ private void OnFlashUseInHand(EntityUid uid, FlashComponent comp, UseInHandEvent return; args.Handled = true; - FlashArea(uid, args.User, comp.Range, comp.AoeFlashDuration, comp.SlowTo, true); + FlashArea(uid, args.User, comp.Range, comp.AoeFlashDuration, comp.SlowTo, true, comp.Probability); } private bool UseFlash(EntityUid uid, FlashComponent comp, EntityUid user) @@ -117,7 +118,8 @@ public void Flash(EntityUid target, float slowTo, bool displayPopup = true, FlashableComponent? flashable = null, - bool melee = false) + bool melee = false, + TimeSpan? stunDuration = null) { if (!Resolve(target, ref flashable, false)) return; @@ -148,41 +150,46 @@ public void Flash(EntityUid target, && _random.Prob(flashable.EyeDamageChance)) _blindingSystem.AdjustEyeDamage((target, blindable), flashable.EyeDamage); - _stun.TrySlowdown(target, TimeSpan.FromSeconds(flashDuration/1000f), true, + if (stunDuration != null) + { + _stun.TryParalyze(target, stunDuration.Value, true); + } + else + { + _stun.TrySlowdown(target, TimeSpan.FromSeconds(flashDuration/1000f), true, slowTo, slowTo); + } if (displayPopup && user != null && target != user && Exists(user.Value)) { _popup.PopupEntity(Loc.GetString("flash-component-user-blinds-you", ("user", Identity.Entity(user.Value, EntityManager))), target, target); } - } - public void FlashArea(EntityUid source, EntityUid? user, float range, float duration, float slowTo = 0.8f, bool displayPopup = false, SoundSpecifier? sound = null) + public void FlashArea(Entity source, EntityUid? user, float range, float duration, float slowTo = 0.8f, bool displayPopup = false, float probability = 1f, SoundSpecifier? sound = null) { - var transform = EntityManager.GetComponent(source); + var transform = Transform(source); var mapPosition = _transform.GetMapCoordinates(transform); var flashableQuery = GetEntityQuery(); foreach (var entity in _entityLookup.GetEntitiesInRange(transform.Coordinates, range)) { - if (!flashableQuery.TryGetComponent(entity, out var flashable)) + if (!_random.Prob(probability)) continue; + if (!flashableQuery.TryGetComponent(entity, out var flashable)) + continue; // Check for unobstructed entities while ignoring the mobs with flashable components. - if (!_interaction.InRangeUnobstructed(entity, mapPosition, range, flashable.CollisionGroup, (e) => e == source)) + if (!_interaction.InRangeUnobstructed(entity, mapPosition, range, flashable.CollisionGroup, predicate: (e) => flashableQuery.HasComponent(e) || e == source.Owner)) continue; // They shouldn't have flash removed in between right? Flash(entity, user, source, duration, slowTo, displayPopup, flashableQuery.GetComponent(entity)); } - if (sound != null) - { - _audio.PlayPvs(sound, source, AudioParams.Default.WithVolume(1f).WithMaxDistance(3f)); - } + _audio.PlayPvs(sound, source, AudioParams.Default.WithVolume(1f).WithMaxDistance(3f)); } private void OnInventoryFlashAttempt(EntityUid uid, InventoryComponent component, FlashAttemptEvent args) diff --git a/Content.Server/Flight/FlightSystem.cs b/Content.Server/Flight/FlightSystem.cs new file mode 100644 index 0000000000..39321b1e66 --- /dev/null +++ b/Content.Server/Flight/FlightSystem.cs @@ -0,0 +1,176 @@ + +using Content.Shared.Cuffs.Components; +using Content.Shared.Damage.Components; +using Content.Shared.DoAfter; +using Content.Shared.Flight; +using Content.Shared.Flight.Events; +using Content.Shared.Mobs; +using Content.Shared.Popups; +using Content.Shared.Standing; +using Content.Shared.Stunnable; +using Content.Shared.Zombies; +using Robust.Shared.Audio.Systems; + +namespace Content.Server.Flight; +public sealed class FlightSystem : SharedFlightSystem +{ + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly StandingStateSystem _standing = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnToggleFlight); + SubscribeLocalEvent(OnFlightDoAfter); + SubscribeLocalEvent(OnMobStateChangedEvent); + SubscribeLocalEvent(OnZombified); + SubscribeLocalEvent(OnKnockedDown); + SubscribeLocalEvent(OnStunned); + SubscribeLocalEvent(OnDowned); + SubscribeLocalEvent(OnSleep); + } + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var component)) + { + if (!component.On) + continue; + + component.TimeUntilFlap -= frameTime; + + if (component.TimeUntilFlap > 0f) + continue; + + _audio.PlayPvs(component.FlapSound, uid); + component.TimeUntilFlap = component.FlapInterval; + + } + } + + #region Core Functions + private void OnToggleFlight(EntityUid uid, FlightComponent component, ToggleFlightEvent args) + { + // If the user isnt flying, we check for conditionals and initiate a doafter. + if (!component.On) + { + if (!CanFly(uid, component)) + return; + + var doAfterArgs = new DoAfterArgs(EntityManager, + uid, component.ActivationDelay, + new FlightDoAfterEvent(), uid, target: uid) + { + BlockDuplicate = true, + BreakOnTargetMove = true, + BreakOnUserMove = true, + BreakOnDamage = true, + NeedHand = true + }; + + if (!_doAfter.TryStartDoAfter(doAfterArgs)) + return; + } + else + ToggleActive(uid, false, component); + } + + private void OnFlightDoAfter(EntityUid uid, FlightComponent component, FlightDoAfterEvent args) + { + if (args.Handled || args.Cancelled) + return; + + ToggleActive(uid, true, component); + args.Handled = true; + } + + #endregion + + #region Conditionals + + private bool CanFly(EntityUid uid, FlightComponent component) + { + if (TryComp(uid, out var cuffableComp) && !cuffableComp.CanStillInteract) + { + _popupSystem.PopupEntity(Loc.GetString("no-flight-while-restrained"), uid, uid, PopupType.Medium); + return false; + } + + if (HasComp(uid)) + { + _popupSystem.PopupEntity(Loc.GetString("no-flight-while-zombified"), uid, uid, PopupType.Medium); + return false; + } + + if (HasComp(uid) && _standing.IsDown(uid)) + { + _popupSystem.PopupEntity(Loc.GetString("no-flight-while-lying"), uid, uid, PopupType.Medium); + return false; + } + + return true; + } + + private void OnMobStateChangedEvent(EntityUid uid, FlightComponent component, MobStateChangedEvent args) + { + if (!component.On + || args.NewMobState is MobState.Critical or MobState.Dead) + return; + + ToggleActive(args.Target, false, component); + } + + private void OnZombified(EntityUid uid, FlightComponent component, ref EntityZombifiedEvent args) + { + if (!component.On) + return; + + ToggleActive(args.Target, false, component); + if (!TryComp(uid, out var stamina)) + return; + Dirty(uid, stamina); + } + + private void OnKnockedDown(EntityUid uid, FlightComponent component, ref KnockedDownEvent args) + { + if (!component.On) + return; + + ToggleActive(uid, false, component); + } + + private void OnStunned(EntityUid uid, FlightComponent component, ref StunnedEvent args) + { + if (!component.On) + return; + + ToggleActive(uid, false, component); + } + + private void OnDowned(EntityUid uid, FlightComponent component, ref DownedEvent args) + { + if (!component.On) + return; + + ToggleActive(uid, false, component); + } + + private void OnSleep(EntityUid uid, FlightComponent component, ref SleepStateChangedEvent args) + { + if (!component.On + || !args.FellAsleep) + return; + + ToggleActive(uid, false, component); + if (!TryComp(uid, out var stamina)) + return; + + Dirty(uid, stamina); + } + #endregion +} \ No newline at end of file diff --git a/Content.Server/Fluids/EntitySystems/DrainSystem.cs b/Content.Server/Fluids/EntitySystems/DrainSystem.cs index 19cb650db7..27ad2178f9 100644 --- a/Content.Server/Fluids/EntitySystems/DrainSystem.cs +++ b/Content.Server/Fluids/EntitySystems/DrainSystem.cs @@ -87,19 +87,25 @@ private void Empty(EntityUid container, SpillableComponent spillable, EntityUid // Try to transfer as much solution as possible to the drain - var transferSolution = _solutionContainerSystem.SplitSolution(containerSoln.Value, - FixedPoint2.Min(containerSolution.Volume, drainSolution.AvailableVolume)); + var amountToPutInDrain = drainSolution.AvailableVolume; + var amountToSpillOnGround = containerSolution.Volume - drainSolution.AvailableVolume; - _solutionContainerSystem.TryAddSolution(drain.Solution.Value, transferSolution); + if (amountToPutInDrain > 0) + { + var solutionToPutInDrain = _solutionContainerSystem.SplitSolution(containerSoln.Value, amountToPutInDrain); + _solutionContainerSystem.TryAddSolution(drain.Solution.Value, solutionToPutInDrain); + + _audioSystem.PlayPvs(drain.ManualDrainSound, target); + _ambientSoundSystem.SetAmbience(target, true); + } - _audioSystem.PlayPvs(drain.ManualDrainSound, target); - _ambientSoundSystem.SetAmbience(target, true); - // If drain is full, spill + // Spill the remainder. - if (drainSolution.MaxVolume == drainSolution.Volume) + if (amountToSpillOnGround > 0) { - _puddleSystem.TrySpillAt(Transform(target).Coordinates, containerSolution, out _); + var solutionToSpill = _solutionContainerSystem.SplitSolution(containerSoln.Value, amountToSpillOnGround); + _puddleSystem.TrySpillAt(Transform(target).Coordinates, solutionToSpill, out _); _popupSystem.PopupEntity( Loc.GetString("drain-component-empty-verb-target-is-full-message", ("object", target)), container); diff --git a/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs b/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs index 747e3205a7..3a0c128c3b 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs @@ -5,13 +5,12 @@ using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Chemistry.Reaction; using Content.Shared.Chemistry.Reagent; -using Content.Shared.Clothing.Components; +using Content.Shared.Clothing; using Content.Shared.CombatMode.Pacification; using Content.Shared.Database; using Content.Shared.FixedPoint; using Content.Shared.Fluids.Components; using Content.Shared.IdentityManagement; -using Content.Shared.Inventory.Events; using Content.Shared.Nutrition.EntitySystems; using Content.Shared.Popups; using Content.Shared.Spillable; @@ -29,10 +28,11 @@ protected override void InitializeSpillable() SubscribeLocalEvent(SpillOnLand); // Openable handles the event if it's closed - SubscribeLocalEvent( - SplashOnMeleeHit, before: new[] {typeof(MeleeBlockSystem)}, after:[typeof(OpenableSystem)]); // WD EDIT - SubscribeLocalEvent(OnGotEquipped); - SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(SplashOnMeleeHit, + before: [typeof(MeleeBlockSystem)], + after: [typeof(OpenableSystem)]); + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); SubscribeLocalEvent(OnOverflow); SubscribeLocalEvent(OnDoAfter); SubscribeLocalEvent(OnAttemptPacifiedThrow); @@ -101,20 +101,11 @@ private void SplashOnMeleeHit(Entity entity, ref MeleeHitEve } } - private void OnGotEquipped(Entity entity, ref GotEquippedEvent args) + private void OnGotEquipped(Entity entity, ref ClothingGotEquippedEvent args) { if (!entity.Comp.SpillWorn) return; - if (!TryComp(entity, out ClothingComponent? clothing)) - return; - - // check if entity was actually used as clothing - // not just taken in pockets or something - var isCorrectSlot = clothing.Slots.HasFlag(args.SlotFlags); - if (!isCorrectSlot) - return; - if (!_solutionContainerSystem.TryGetSolution(entity.Owner, entity.Comp.SolutionName, out var soln, out var solution)) return; @@ -126,10 +117,10 @@ private void OnGotEquipped(Entity entity, ref GotEquippedEve // spill all solution on the player var drainedSolution = _solutionContainerSystem.Drain(entity.Owner, soln.Value, solution.Volume); - TrySplashSpillAt(entity.Owner, Transform(args.Equipee).Coordinates, drainedSolution, out _); + TrySplashSpillAt(entity.Owner, Transform(args.Wearer).Coordinates, drainedSolution, out _); } - private void OnGotUnequipped(Entity entity, ref GotUnequippedEvent args) + private void OnGotUnequipped(Entity entity, ref ClothingGotUnequippedEvent args) { if (!entity.Comp.SpillWorn) return; diff --git a/Content.Server/Fluids/EntitySystems/SpraySystem.cs b/Content.Server/Fluids/EntitySystems/SpraySystem.cs index f7621aec62..5499070738 100644 --- a/Content.Server/Fluids/EntitySystems/SpraySystem.cs +++ b/Content.Server/Fluids/EntitySystems/SpraySystem.cs @@ -144,7 +144,7 @@ private void OnAfterInteract(Entity entity, ref AfterInteractEve _audio.PlayPvs(entity.Comp.SpraySound, entity, entity.Comp.SpraySound.Params.WithVariation(0.125f)); - _useDelay.SetDelay((entity, useDelay), TimeSpan.FromSeconds(cooldownTime)); + _useDelay.SetLength(entity.Owner, TimeSpan.FromSeconds(cooldownTime)); _useDelay.TryResetDelay((entity, useDelay)); } } diff --git a/Content.Server/Forensics/Components/ForensicScannerComponent.cs b/Content.Server/Forensics/Components/ForensicScannerComponent.cs index ad26213848..3ad805cbbf 100644 --- a/Content.Server/Forensics/Components/ForensicScannerComponent.cs +++ b/Content.Server/Forensics/Components/ForensicScannerComponent.cs @@ -1,4 +1,5 @@ using System.Threading; +using Content.Shared.Forensics; using Robust.Shared.Audio; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; diff --git a/Content.Server/Forensics/Systems/ForensicScannerSystem.cs b/Content.Server/Forensics/Systems/ForensicScannerSystem.cs index 0d3168fd4e..e83cde7456 100644 --- a/Content.Server/Forensics/Systems/ForensicScannerSystem.cs +++ b/Content.Server/Forensics/Systems/ForensicScannerSystem.cs @@ -52,8 +52,7 @@ private void UpdateUserInterface(EntityUid uid, ForensicScannerComponent compone component.PrintCooldown, component.PrintReadyAt); - if (!_uiSystem.TrySetUiState(uid, ForensicScannerUiKey.Key, state)) - Log.Warning($"{ToPrettyString(uid)} was unable to set UI state."); + _uiSystem.SetUiState(uid, ForensicScannerUiKey.Key, state); } private void OnDoAfter(EntityUid uid, ForensicScannerComponent component, DoAfterEvent args) @@ -164,23 +163,14 @@ private void OnBeforeActivatableUIOpen(EntityUid uid, ForensicScannerComponent c private void OpenUserInterface(EntityUid user, Entity scanner) { - if (!TryComp(user, out var actor)) - return; - UpdateUserInterface(scanner, scanner.Comp); - _uiSystem.TryOpen(scanner, ForensicScannerUiKey.Key, actor.PlayerSession); + _uiSystem.OpenUi(scanner.Owner, ForensicScannerUiKey.Key, user); } private void OnPrint(EntityUid uid, ForensicScannerComponent component, ForensicScannerPrintMessage args) { - if (!args.Session.AttachedEntity.HasValue) - { - Log.Warning($"{ToPrettyString(uid)} got OnPrint without Session.AttachedEntity"); - return; - } - - var user = args.Session.AttachedEntity.Value; + var user = args.Actor; if (_gameTiming.CurTime < component.PrintReadyAt) { @@ -192,7 +182,7 @@ private void OnPrint(EntityUid uid, ForensicScannerComponent component, Forensic // Spawn a piece of paper. var printed = EntityManager.SpawnEntity(component.MachineOutput, Transform(uid).Coordinates); - _handsSystem.PickupOrDrop(args.Session.AttachedEntity, printed, checkActionBlocker: false); + _handsSystem.PickupOrDrop(args.Actor, printed, checkActionBlocker: false); if (!HasComp(printed)) { @@ -241,9 +231,6 @@ private void OnPrint(EntityUid uid, ForensicScannerComponent component, Forensic private void OnClear(EntityUid uid, ForensicScannerComponent component, ForensicScannerClearMessage args) { - if (!args.Session.AttachedEntity.HasValue) - return; - component.Fingerprints = new(); component.Fibers = new(); component.DNAs = new(); diff --git a/Content.Server/Forensics/Systems/ForensicsSystem.cs b/Content.Server/Forensics/Systems/ForensicsSystem.cs index 72930748f3..b3d09ae0b8 100644 --- a/Content.Server/Forensics/Systems/ForensicsSystem.cs +++ b/Content.Server/Forensics/Systems/ForensicsSystem.cs @@ -136,53 +136,32 @@ public void CopyForensicsFrom(ForensicsComponent src, EntityUid target) private void OnAfterInteract(EntityUid uid, CleansForensicsComponent component, AfterInteractEvent args) { - if (args.Handled) + if (args.Handled || !args.CanReach || !TryComp(args.Target, out var forensicsComp)) return; - if (TryComp(args.Target, out var forensicsComp) - && forensicsComp.DNAs.Count > 0 && forensicsComp.CanDnaBeCleaned - && forensicsComp.Fingerprints.Count + forensicsComp.Fibers.Count > 0 - && forensicsComp.Scent != string.Empty) - { - var cleanDelay = component.CleanDelay; - if (HasComp(args.Target)) - cleanDelay += 30; + if ((forensicsComp.DNAs.Count <= 0 || !forensicsComp.CanDnaBeCleaned) + && forensicsComp.Fingerprints.Count + forensicsComp.Fibers.Count <= 0 + && forensicsComp.Scent == string.Empty) + return; // Nothing to do if there is no DNAs, fibers, and scent - var doAfterArgs = new DoAfterArgs(EntityManager, args.User, cleanDelay, new CleanForensicsDoAfterEvent(), uid, target: args.Target, used: args.Used) - { - BreakOnHandChange = true, - NeedHand = true, - BreakOnDamage = true, - BreakOnTargetMove = true, - MovementThreshold = 0.01f, - DistanceThreshold = forensicsComp.CleanDistance, - }; - - _doAfterSystem.TryStartDoAfter(doAfterArgs); - _popupSystem.PopupEntity(Loc.GetString("forensics-cleaning", ("target", args.Target)), args.User, args.User); - - args.Handled = true; - return; - } + var cleanDelay = component.CleanDelay; + if (HasComp(args.Target)) + cleanDelay += 30; - if (TryComp(args.Target, out var scentComp)) + var doAfterArgs = new DoAfterArgs(EntityManager, args.User, cleanDelay, new CleanForensicsDoAfterEvent(), uid, target: args.Target, used: args.Used) { - var cleanDelay = component.CleanDelay + 30; - var doAfterArgs = new DoAfterArgs(EntityManager, args.User, cleanDelay, new CleanForensicsDoAfterEvent(), uid, target: args.Target, used: args.Used) - { - BreakOnHandChange = true, - NeedHand = true, - BreakOnDamage = true, - BreakOnTargetMove = true, - MovementThreshold = 0.01f, - DistanceThreshold = 1.5f, - }; - - _doAfterSystem.TryStartDoAfter(doAfterArgs); - _popupSystem.PopupEntity(Loc.GetString("forensics-cleaning", ("target", args.Target)), args.User, args.User); - - args.Handled = true; - } + BreakOnHandChange = true, + NeedHand = true, + BreakOnDamage = true, + BreakOnTargetMove = true, + MovementThreshold = 0.01f, + DistanceThreshold = forensicsComp.CleanDistance, + }; + + _doAfterSystem.TryStartDoAfter(doAfterArgs); + _popupSystem.PopupEntity(Loc.GetString("forensics-cleaning", ("target", args.Target)), args.User, args.User); + + args.Handled = true; } private void OnCleanForensicsDoAfter(EntityUid uid, ForensicsComponent component, CleanForensicsDoAfterEvent args) @@ -207,7 +186,8 @@ private void OnCleanForensicsDoAfter(EntityUid uid, ForensicsComponent component if (TryComp(args.Used, out var residue)) targetComp.Residues.Add(string.IsNullOrEmpty(residue.ResidueColor) ? Loc.GetString("forensic-residue", ("adjective", residue.ResidueAdjective)) : Loc.GetString("forensic-residue-colored", ("color", residue.ResidueColor), ("adjective", residue.ResidueAdjective))); - // If the ent has a Scent Component, we compleatly generate a new one and apply the new scent to all currently weared items. + // If the ent has a Scent Component, we completely generate a new one and apply the new scent to all currently worn items. + // TODO this is never gonna work unless you like, wash yourself with the soap??? if (TryComp(args.Target, out var scentComp)) { var generatedscent = GenerateFingerprint(length: 5); diff --git a/Content.Server/GameTicking/GameTicker.GamePreset.cs b/Content.Server/GameTicking/GameTicker.GamePreset.cs index 8ddd0ba180..4c454fb189 100644 --- a/Content.Server/GameTicking/GameTicker.GamePreset.cs +++ b/Content.Server/GameTicking/GameTicker.GamePreset.cs @@ -1,7 +1,7 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Threading.Tasks; -using Content.Server._White.Ghost; +using Content.Server.Ghost; using Content.Server.GameTicking.Presets; using Content.Server.Maps; using Content.Shared.CCVar; @@ -22,8 +22,7 @@ namespace Content.Server.GameTicking public sealed partial class GameTicker { [Dependency] private readonly MobThresholdSystem _mobThresholdSystem = default!; - [Dependency] private readonly GhostReturnToRoundSystem _ghostReturnToRound = default!; // WD EDIT - + [Dependency] private readonly GhostReturnToRoundSystem _ghostReturnToRound = default!; public const float PresetFailedCooldownIncrease = 30f; /// @@ -102,7 +101,7 @@ private void InitializeGamePreset() SetGamePreset(LobbyEnabled ? _configurationManager.GetCVar(CCVars.GameLobbyDefaultPreset) : "sandbox"); } - public void SetGamePreset(GamePresetPrototype preset, bool force = false) + public void SetGamePreset(GamePresetPrototype? preset, bool force = false) { // Do nothing if this game ticker is a dummy! if (DummyTicker) @@ -276,36 +275,13 @@ public bool OnGhostAttempt(EntityUid mindId, bool canReturnGlobal, bool viaComma } } - var xformQuery = GetEntityQuery(); - var coords = _transform.GetMoverCoordinates(position, xformQuery); - - var ghost = Spawn(ObserverPrototypeName, coords); - - // Try setting the ghost entity name to either the character name or the player name. - // If all else fails, it'll default to the default entity prototype name, "observer". - // However, that should rarely happen. - if (!string.IsNullOrWhiteSpace(mind.CharacterName)) - _metaData.SetEntityName(ghost, mind.CharacterName); - else if (!string.IsNullOrWhiteSpace(mind.Session?.Name)) - _metaData.SetEntityName(ghost, mind.Session.Name); - - var ghostComponent = Comp(ghost); - - if (mind.TimeOfDeath.HasValue) - { - _ghost.SetTimeOfDeath(ghost, mind.TimeOfDeath!.Value, ghostComponent); - } + var ghost = _ghost.SpawnGhost((mindId, mind), position, canReturn); + if (ghost == null) + return false; if (playerEntity != null) _adminLogger.Add(LogType.Mind, $"{EntityManager.ToPrettyString(playerEntity.Value):player} ghosted{(!canReturn ? " (non-returnable)" : "")}"); - _ghost.SetCanReturnToBody(ghostComponent, canReturn); - - if (canReturn) - _mind.Visit(mindId, ghost, mind); - else - _mind.TransferTo(mindId, ghost, mind: mind); - return true; } diff --git a/Content.Server/GameTicking/GameTicker.Player.cs b/Content.Server/GameTicking/GameTicker.Player.cs index 6af9df70f0..19141ca9bd 100644 --- a/Content.Server/GameTicking/GameTicker.Player.cs +++ b/Content.Server/GameTicking/GameTicker.Player.cs @@ -142,13 +142,30 @@ private async void PlayerStatusChanged(object? sender, SessionStatusEventArgs ar async void SpawnWaitDb() { - await _userDb.WaitLoadComplete(session); + try + {await _userDb.WaitLoadComplete(session);} + catch (OperationCanceledException) + { + // Bail, user must've disconnected or something. + Log.Debug($"Database load cancelled while waiting to spawn {session}"); + return; + } SpawnPlayer(session, EntityUid.Invalid); } async void SpawnObserverWaitDb() { - await _userDb.WaitLoadComplete(session); + try + { + await _userDb.WaitLoadComplete(session); + } + catch (OperationCanceledException) + { + // Bail, user must've disconnected or something. + Log.Debug($"Database load cancelled while waiting to spawn {session}"); + return; + } + JoinAsObserver(session); } diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index 0fc984abed..889a8a5a2b 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -167,7 +167,7 @@ public IReadOnlyList LoadGameMap(GameMapPrototype map, MapId targetMa var gridIds = _map.LoadMap(targetMapId, ev.GameMap.MapPath.ToString(), ev.Options); - _metaData.SetEntityName(_mapManager.GetMapEntityId(targetMapId), "Station map"); + _metaData.SetEntityName(_mapManager.GetMapEntityId(targetMapId), $"station map - {map.MapName}"); var gridUids = gridIds.ToList(); RaiseLocalEvent(new PostGameMapLoad(map, targetMapId, gridUids, stationName)); @@ -269,7 +269,10 @@ public void StartRound(bool force = false) var origReadyPlayers = readyPlayers.ToArray(); if (!StartPreset(origReadyPlayers, force)) + { + _startingRound = false; return; + } // MapInitialize *before* spawning players, our codebase is too shit to do it afterwards... _mapManager.DoMapInitialize(DefaultMap); diff --git a/Content.Server/GameTicking/GameTicker.Spawning.cs b/Content.Server/GameTicking/GameTicker.Spawning.cs index 3d35128e08..aa8df516b0 100644 --- a/Content.Server/GameTicking/GameTicker.Spawning.cs +++ b/Content.Server/GameTicking/GameTicker.Spawning.cs @@ -57,7 +57,9 @@ public List GetSpawnableStations() return spawnableStations; } - private void SpawnPlayers(List readyPlayers, Dictionary profiles, bool force) + private void SpawnPlayers(List readyPlayers, + Dictionary profiles, + bool force) { // Allow game rules to spawn players by themselves if needed. (For example, nuke ops or wizard) RaiseLocalEvent(new RulePlayerSpawningEvent(readyPlayers, profiles, force)); @@ -118,10 +120,17 @@ private void SpawnPlayers(List readyPlayers, Dictionary _playerManager.GetSessionById(x)).ToArray(), profiles, force)); + RaiseLocalEvent(new RulePlayerJobsAssignedEvent( + assignedJobs.Keys.Select(x => _playerManager.GetSessionById(x)).ToArray(), + profiles, + force)); } - private void SpawnPlayer(ICommonSession player, EntityUid station, string? jobId = null, bool lateJoin = true, bool silent = false) + private void SpawnPlayer(ICommonSession player, + EntityUid station, + string? jobId = null, + bool lateJoin = true, + bool silent = false) { var character = GetPlayerProfile(player); @@ -134,7 +143,12 @@ private void SpawnPlayer(ICommonSession player, EntityUid station, string? jobId SpawnPlayer(player, character, station, jobId, lateJoin, silent); } - private void SpawnPlayer(ICommonSession player, HumanoidCharacterProfile character, EntityUid station, string? jobId = null, bool lateJoin = true, bool silent = false) + private void SpawnPlayer(ICommonSession player, + HumanoidCharacterProfile character, + EntityUid station, + string? jobId = null, + bool lateJoin = true, + bool silent = false) { // Can't spawn players with a dummy ticker! if (DummyTicker) @@ -156,9 +170,8 @@ private void SpawnPlayer(ICommonSession player, HumanoidCharacterProfile charact return; } - //WD EDIT START //Ghost system return to round, check for whether the character isn't the same. - if (lateJoin && !_adminManager.IsAdmin(player) && !CheckGhostReturnToRound(player, character, out var checkAvoid)) + if (!_cfg.GetCVar(CCVars.GhostAllowSameCharacter) && lateJoin && !_adminManager.IsAdmin(player) && !CheckGhostReturnToRound(player, character, out var checkAvoid)) { var message = checkAvoid ? Loc.GetString("ghost-respawn-same-character-slightly-changed-name") @@ -170,7 +183,6 @@ private void SpawnPlayer(ICommonSession player, HumanoidCharacterProfile charact return; } - //WD EDIT END // We raise this event to allow other systems to handle spawning this player themselves. (e.g. late-join wizard, etc) var bev = new PlayerBeforeSpawnEvent(player, character, jobId, lateJoin, station); @@ -194,7 +206,9 @@ private void SpawnPlayer(ICommonSession player, HumanoidCharacterProfile charact restrictedRoles.UnionWith(jobBans); // Pick best job best on prefs. - jobId ??= _stationJobs.PickBestAvailableJobWithPriority(station, character.JobPriorities, true, + jobId ??= _stationJobs.PickBestAvailableJobWithPriority(station, + character.JobPriorities, + true, restrictedRoles); // If no job available, stay in lobby, or if no lobby spawn as observer if (jobId is null) @@ -203,7 +217,9 @@ private void SpawnPlayer(ICommonSession player, HumanoidCharacterProfile charact { JoinAsObserver(player); } - _chatManager.DispatchServerMessage(player, Loc.GetString("game-ticker-player-no-jobs-available-when-joining")); + + _chatManager.DispatchServerMessage(player, + Loc.GetString("game-ticker-player-no-jobs-available-when-joining")); return; } @@ -217,7 +233,7 @@ private void SpawnPlayer(ICommonSession player, HumanoidCharacterProfile charact _mind.SetUserId(newMind, data.UserId); var jobPrototype = _prototypeManager.Index(jobId); - var job = new JobComponent { Prototype = jobId }; + var job = new JobComponent {Prototype = jobId}; _roles.MindAddRole(newMind, job, silent: silent); var jobName = _jobs.MindTryGetJobName(newMind); @@ -257,14 +273,17 @@ private void SpawnPlayer(ICommonSession player, HumanoidCharacterProfile charact _stationJobs.TryAssignJob(station, jobPrototype, player.UserId); if (lateJoin) - _adminLogger.Add(LogType.LateJoin, LogImpact.Medium, $"Player {player.Name} late joined as {character.Name:characterName} on station {Name(station):stationName} with {ToPrettyString(mob):entity} as a {jobName:jobName}."); + _adminLogger.Add(LogType.LateJoin, + LogImpact.Medium, + $"Player {player.Name} late joined as {character.Name:characterName} on station {Name(station):stationName} with {ToPrettyString(mob):entity} as a {jobName:jobName}."); else - _adminLogger.Add(LogType.RoundStartJoin, LogImpact.Medium, $"Player {player.Name} joined as {character.Name:characterName} on station {Name(station):stationName} with {ToPrettyString(mob):entity} as a {jobName:jobName}."); + _adminLogger.Add(LogType.RoundStartJoin, + LogImpact.Medium, + $"Player {player.Name} joined as {character.Name:characterName} on station {Name(station):stationName} with {ToPrettyString(mob):entity} as a {jobName:jobName}."); // Make sure they're aware of extended access. if (Comp(station).ExtendedAccess - && (jobPrototype.ExtendedAccess.Count > 0 - || jobPrototype.ExtendedAccessGroups.Count > 0)) + && (jobPrototype.ExtendedAccess.Count > 0 || jobPrototype.ExtendedAccessGroups.Count > 0)) { _chatManager.DispatchServerMessage(player, Loc.GetString("job-greet-crew-shortages")); } @@ -286,14 +305,20 @@ private void SpawnPlayer(ICommonSession player, HumanoidCharacterProfile charact } else { - _chatManager.DispatchServerMessage(player, Loc.GetString("latejoin-arrivals-direction-time", - ("time", $"{arrival:mm\\:ss}"))); + _chatManager.DispatchServerMessage(player, + Loc.GetString("latejoin-arrivals-direction-time", ("time", $"{arrival:mm\\:ss}"))); } } // We raise this event directed to the mob, but also broadcast it so game rules can do something now. PlayersJoinedRoundNormally++; - var aev = new PlayerSpawnCompleteEvent(mob, player, jobId, lateJoin, PlayersJoinedRoundNormally, station, character); + var aev = new PlayerSpawnCompleteEvent(mob, + player, + jobId, + lateJoin, + PlayersJoinedRoundNormally, + station, + character); RaiseLocalEvent(mob, aev, true); } @@ -348,23 +373,22 @@ public void SpawnObserver(ICommonSession player) if (DummyTicker) return; - var mind = player.GetMind(); + Entity? mind = player.GetMind(); if (mind == null) { - mind = _mind.CreateMind(player.UserId); + var name = GetPlayerProfile(player).Name; + var (mindId, mindComp) = _mind.CreateMind(player.UserId, name); + mind = (mindId, mindComp); _mind.SetUserId(mind.Value, player.UserId); _roles.MindAddRole(mind.Value, new ObserverRoleComponent()); } - var name = GetPlayerProfile(player).Name; - var ghost = SpawnObserverMob(); - _metaData.SetEntityName(ghost, name); - _ghost.SetCanReturnToBody(ghost, false); - _mind.TransferTo(mind.Value, ghost); - _adminLogger.Add(LogType.LateJoin, LogImpact.Low, $"{player.Name} late joined the round as an Observer with {ToPrettyString(ghost):entity}."); + var ghost = _ghost.SpawnGhost(mind.Value); + _adminLogger.Add(LogType.LateJoin, + LogImpact.Low, + $"{player.Name} late joined the round as an Observer with {ToPrettyString(ghost):entity}."); } - //WD EDIT START private bool CheckGhostReturnToRound(ICommonSession player, HumanoidCharacterProfile character, out bool checkAvoid) { checkAvoid = false; @@ -384,22 +408,18 @@ private bool CheckGhostReturnToRound(ICommonSession player, HumanoidCharacterPro switch (similarity) { case >= 85f: - { _chatManager.SendAdminAlert(Loc.GetString("ghost-respawn-log-character-almost-same", ("player", player.Name), ("try", false), ("oldName", mind.CharacterName), ("newName", character.Name))); checkAvoid = true; return false; - } case >= 50f: - { _chatManager.SendAdminAlert(Loc.GetString("ghost-respawn-log-character-almost-same", ("player", player.Name), ("try", true), ("oldName", mind.CharacterName), ("newName", character.Name))); break; - } } } @@ -422,7 +442,6 @@ private float CalculateStringSimilarity(string str1, string str2) return similarityPercentage; } - //WD EDIT END #region Mob Spawning Helpers private EntityUid SpawnObserverMob() @@ -433,6 +452,7 @@ private EntityUid SpawnObserverMob() #endregion #region Spawn Points + public EntityCoordinates GetObserverSpawnPoint() { _possiblePositions.Clear(); @@ -453,8 +473,7 @@ public EntityCoordinates GetObserverSpawnPoint() var query = AllEntityQuery(); while (query.MoveNext(out var uid, out var grid)) { - if (!metaQuery.TryGetComponent(uid, out var meta) || - meta.EntityPaused) + if (!metaQuery.TryGetComponent(uid, out var meta) || meta.EntityPaused || TerminatingOrDeleted(uid)) { continue; } @@ -475,8 +494,7 @@ public EntityCoordinates GetObserverSpawnPoint() { var gridXform = Transform(gridUid); - return new EntityCoordinates(gridUid, - gridXform.InvWorldMatrix.Transform(toMap.Position)); + return new EntityCoordinates(gridUid, gridXform.InvWorldMatrix.Transform(toMap.Position)); } return spawn; @@ -492,8 +510,9 @@ public EntityCoordinates GetObserverSpawnPoint() { var mapUid = _mapManager.GetMapEntityId(map); - if (!metaQuery.TryGetComponent(mapUid, out var meta) || - meta.EntityPaused) + if (!metaQuery.TryGetComponent(mapUid, out var meta) + || meta.EntityPaused + || TerminatingOrDeleted(mapUid)) { continue; } @@ -506,6 +525,7 @@ public EntityCoordinates GetObserverSpawnPoint() _sawmill.Warning("Found no observer spawn points!"); return EntityCoordinates.Invalid; } + #endregion } @@ -523,7 +543,11 @@ public sealed class PlayerBeforeSpawnEvent : HandledEntityEventArgs public bool LateJoin { get; } public EntityUid Station { get; } - public PlayerBeforeSpawnEvent(ICommonSession player, HumanoidCharacterProfile profile, string? jobId, bool lateJoin, EntityUid station) + public PlayerBeforeSpawnEvent(ICommonSession player, + HumanoidCharacterProfile profile, + string? jobId, + bool lateJoin, + EntityUid station) { Player = player; Profile = profile; @@ -551,7 +575,13 @@ public sealed class PlayerSpawnCompleteEvent : EntityEventArgs // Ex. If this is the 27th person to join, this will be 27. public int JoinOrder { get; } - public PlayerSpawnCompleteEvent(EntityUid mob, ICommonSession player, string? jobId, bool lateJoin, int joinOrder, EntityUid station, HumanoidCharacterProfile profile) + public PlayerSpawnCompleteEvent(EntityUid mob, + ICommonSession player, + string? jobId, + bool lateJoin, + int joinOrder, + EntityUid station, + HumanoidCharacterProfile profile) { Mob = mob; Player = player; diff --git a/Content.Server/GameTicking/Rules/Components/LoadMapRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/LoadMapRuleComponent.cs index 463aecbff5..b7aef0c61d 100644 --- a/Content.Server/GameTicking/Rules/Components/LoadMapRuleComponent.cs +++ b/Content.Server/GameTicking/Rules/Components/LoadMapRuleComponent.cs @@ -1,4 +1,6 @@ using Content.Server.Maps; +using Content.Shared.GridPreloader.Prototypes; +using Content.Shared.Storage; using Content.Shared.Whitelist; using Robust.Shared.Map; using Robust.Shared.Prototypes; @@ -16,11 +18,14 @@ public sealed partial class LoadMapRuleComponent : Component public MapId? Map; [DataField] - public ProtoId? GameMap ; + public ProtoId? GameMap; [DataField] public ResPath? MapPath; + [DataField] + public ProtoId? PreloadedGrid; + [DataField] public List MapGrids = new(); diff --git a/Content.Server/GameTicking/Rules/Components/NukeopsRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/NukeopsRuleComponent.cs index f64947e286..7862b38e59 100644 --- a/Content.Server/GameTicking/Rules/Components/NukeopsRuleComponent.cs +++ b/Content.Server/GameTicking/Rules/Components/NukeopsRuleComponent.cs @@ -5,11 +5,7 @@ using Content.Shared.Roles; using Robust.Shared.Audio; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -using Robust.Shared.Utility; - namespace Content.Server.GameTicking.Rules.Components; diff --git a/Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs index dd359969b6..47a4adeaf3 100644 --- a/Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs +++ b/Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs @@ -31,6 +31,9 @@ public sealed partial class TraitorRuleComponent : Component [DataField] public ProtoId CodewordVerbs = "verbs"; + [DataField] + public ProtoId ObjectiveIssuers = "TraitorCorporations"; + public int TotalTraitors => TraitorMinds.Count; public string[] Codewords = new string[3]; diff --git a/Content.Server/GameTicking/Rules/GameRuleSystem.Utility.cs b/Content.Server/GameTicking/Rules/GameRuleSystem.Utility.cs index 27a9edbad7..cbd981e99e 100644 --- a/Content.Server/GameTicking/Rules/GameRuleSystem.Utility.cs +++ b/Content.Server/GameTicking/Rules/GameRuleSystem.Utility.cs @@ -1,7 +1,10 @@ using System.Diagnostics.CodeAnalysis; +using System.Linq; using Content.Server.GameTicking.Components; using Content.Server.GameTicking.Rules.Components; using Content.Server.Station.Components; +using Content.Shared.Random.Helpers; +using Robust.Server.GameObjects; using Robust.Shared.Collections; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -82,17 +85,23 @@ protected bool TryFindRandomTileOnStation(Entity station, targetCoords = EntityCoordinates.Invalid; targetGrid = EntityUid.Invalid; - var possibleTargets = station.Comp.Grids; - if (possibleTargets.Count == 0) + // Weight grid choice by tilecount + var weights = new Dictionary, float>(); + foreach (var possibleTarget in station.Comp.Grids) + { + if (!TryComp(possibleTarget, out var comp)) + continue; + + weights.Add((possibleTarget, comp), _map.GetAllTiles(possibleTarget, comp).Count()); + } + + if (weights.Count == 0) { targetGrid = EntityUid.Invalid; return false; } - targetGrid = RobustRandom.Pick(possibleTargets); - - if (!TryComp(targetGrid, out var gridComp)) - return false; + (targetGrid, var gridComp) = RobustRandom.Pick(weights); var found = false; var aabb = gridComp.LocalAABB; diff --git a/Content.Server/GameTicking/Rules/GameRuleSystem.cs b/Content.Server/GameTicking/Rules/GameRuleSystem.cs index c167ae7b6c..05374aa139 100644 --- a/Content.Server/GameTicking/Rules/GameRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/GameRuleSystem.cs @@ -26,7 +26,7 @@ public override void Initialize() SubscribeLocalEvent(OnGameRuleAdded); SubscribeLocalEvent(OnGameRuleStarted); SubscribeLocalEvent(OnGameRuleEnded); - SubscribeLocalEvent(OnRoundEndTextAppend); + SubscribeLocalEvent(OnRoundEndTextAppend); } private void OnStartAttempt(RoundStartAttemptEvent args) @@ -70,11 +70,16 @@ private void OnGameRuleEnded(EntityUid uid, T component, ref GameRuleEndedEvent Ended(uid, component, ruleData, args); } - private void OnRoundEndTextAppend(Entity ent, ref RoundEndTextAppendEvent args) + private void OnRoundEndTextAppend(RoundEndTextAppendEvent ev) { - if (!TryComp(ent, out var ruleData)) - return; - AppendRoundEndText(ent, ent, ruleData, ref args); + var query = AllEntityQuery(); + while (query.MoveNext(out var uid, out var comp)) + { + if (!TryComp(uid, out var ruleData)) + continue; + + AppendRoundEndText(uid, comp, ruleData, ref ev); + } } /// diff --git a/Content.Server/GameTicking/Rules/LoadMapRuleSystem.cs b/Content.Server/GameTicking/Rules/LoadMapRuleSystem.cs index aba9ed9e58..3a80d82fd9 100644 --- a/Content.Server/GameTicking/Rules/LoadMapRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/LoadMapRuleSystem.cs @@ -1,9 +1,11 @@ using Content.Server.Antag; using Content.Server.GameTicking.Components; using Content.Server.GameTicking.Rules.Components; +using Content.Server.GridPreloader; using Content.Server.Spawners.Components; using Robust.Server.GameObjects; using Robust.Server.Maps; +using Robust.Shared.Map; using Robust.Shared.Prototypes; namespace Content.Server.GameTicking.Rules; @@ -11,9 +13,12 @@ namespace Content.Server.GameTicking.Rules; public sealed class LoadMapRuleSystem : GameRuleSystem { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly MapSystem _map = default!; [Dependency] private readonly MapLoaderSystem _mapLoader = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly TransformSystem _transform = default!; + [Dependency] private readonly GridPreloaderSystem _gridPreloader = default!; public override void Initialize() { @@ -41,7 +46,9 @@ protected override void Added(EntityUid uid, LoadMapRuleComponent comp, GameRule if (comp.Map != null) return; - _map.CreateMap(out var mapId); + // grid preloading needs map to init after moving it + var mapUid = comp.PreloadedGrid != null ? _map.CreateMap(out var mapId, false) : _map.CreateMap(out mapId); + _metaData.SetEntityName(mapUid, $"LoadMapRule destination for rule {ToPrettyString(uid)}"); comp.Map = mapId; if (comp.GameMap != null) @@ -51,8 +58,29 @@ protected override void Added(EntityUid uid, LoadMapRuleComponent comp, GameRule } else if (comp.MapPath != null) { - if (_mapLoader.TryLoad(comp.Map.Value, comp.MapPath.Value.ToString(), out var roots, new MapLoadOptions { LoadMap = true })) - comp.MapGrids.AddRange(roots); + if (!_mapLoader.TryLoad(comp.Map.Value, + comp.MapPath.Value.ToString(), + out var roots, + new MapLoadOptions { LoadMap = true })) + { + _mapManager.DeleteMap(mapId); + return; + } + + comp.MapGrids.AddRange(roots); + } + else if (comp.PreloadedGrid != null) + { + // TODO: If there are no preloaded grids left, any rule announcements will still go off! + if (!_gridPreloader.TryGetPreloadedGrid(comp.PreloadedGrid.Value, out var loadedShuttle)) + { + _mapManager.DeleteMap(mapId); + return; + } + + _transform.SetParent(loadedShuttle.Value, mapUid); + comp.MapGrids.Add(loadedShuttle.Value); + _map.InitializeMap(mapId); } else { diff --git a/Content.Server/GameTicking/Rules/MaxTimeRestartRuleSystem.cs b/Content.Server/GameTicking/Rules/MaxTimeRestartRuleSystem.cs index ee3a025533..cae99fee9f 100644 --- a/Content.Server/GameTicking/Rules/MaxTimeRestartRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/MaxTimeRestartRuleSystem.cs @@ -34,6 +34,7 @@ protected override void Ended(EntityUid uid, MaxTimeRestartRuleComponent compone public void RestartTimer(MaxTimeRestartRuleComponent component) { + // TODO FULL GAME SAVE component.TimerCancel.Cancel(); component.TimerCancel = new CancellationTokenSource(); Timer.Spawn(component.RoundMaxTime, () => TimerFired(component), component.TimerCancel.Token); @@ -50,6 +51,7 @@ private void TimerFired(MaxTimeRestartRuleComponent component) _chatManager.DispatchServerAnnouncement(Loc.GetString("rule-restarting-in-seconds",("seconds", (int) component.RoundEndDelay.TotalSeconds))); + // TODO FULL GAME SAVE Timer.Spawn(component.RoundEndDelay, () => GameTicker.RestartRound()); } diff --git a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs index d06b9fb899..3e61fda874 100644 --- a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs @@ -481,12 +481,10 @@ private void OnAntagSelectEntity(Entity ent, ref AntagSele ? _prefs.GetPreferences(args.Session.UserId).SelectedCharacter as HumanoidCharacterProfile : HumanoidCharacterProfile.RandomWithSpecies(); if (!_prototypeManager.TryIndex(profile?.Species ?? SharedHumanoidAppearanceSystem.DefaultSpecies, out SpeciesPrototype? species)) - { species = _prototypeManager.Index(SharedHumanoidAppearanceSystem.DefaultSpecies); - } args.Entity = Spawn(species.Prototype); - _humanoid.LoadProfile(args.Entity.Value, profile); + _humanoid.LoadProfile(args.Entity.Value, profile!); } private void OnAfterAntagEntSelected(Entity ent, ref AfterAntagEntitySelectedEvent args) diff --git a/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs b/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs index 7e6901e6c4..577b0c3030 100644 --- a/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs @@ -28,6 +28,7 @@ using Robust.Shared.Prototypes; using Robust.Shared.Timing; using Content.Server.GameTicking.Components; +using Content.Shared.Cuffs.Components; namespace Content.Server.GameTicking.Rules; @@ -141,7 +142,6 @@ private void OnPostFlash(EntityUid uid, HeadRevolutionaryComponent comp, ref Aft _npcFaction.AddFaction(ev.Target, RevolutionaryNpcFaction); var revComp = EnsureComp(ev.Target); - _stun.TryParalyze(ev.Target, comp.StunTime, true); if (ev.User != null) { @@ -180,7 +180,7 @@ private bool CheckCommandLose() commandList.Add(id); } - return IsGroupDead(commandList, true); + return IsGroupDetainedOrDead(commandList, true, true); } private void OnHeadRevMobStateChanged(EntityUid uid, HeadRevolutionaryComponent comp, MobStateChangedEvent ev) @@ -204,7 +204,8 @@ private bool CheckRevsLose() } // If no Head Revs are alive all normal Revs will lose their Rev status and rejoin Nanotrasen - if (IsGroupDead(headRevList, false)) + // Cuffing Head Revs is not enough - they must be killed. + if (IsGroupDetainedOrDead(headRevList, false, false)) { var rev = AllEntityQuery(); while (rev.MoveNext(out var uid, out _, out var mc)) @@ -236,35 +237,43 @@ private bool CheckRevsLose() } /// - /// Will take a group of entities and check if they are all alive or dead + /// Will take a group of entities and check if these entities are alive, dead or cuffed. /// /// The list of the entities - /// Bool for if you want to check if someone is in space and consider them dead. (Won't check when emergency shuttle arrives just in case) + /// Bool for if you want to check if someone is in space and consider them missing in action. (Won't check when emergency shuttle arrives just in case) + /// Bool for if you don't want to count cuffed entities. /// - private bool IsGroupDead(List list, bool checkOffStation) + private bool IsGroupDetainedOrDead(List list, bool checkOffStation, bool countCuffed) { - var dead = 0; + var gone = 0; foreach (var entity in list) { - if (TryComp(entity, out var state)) + if (TryComp(entity, out var cuffed) && cuffed.CuffedHandCount > 0 && countCuffed) { - if (state.CurrentState == MobState.Dead || state.CurrentState == MobState.Invalid) + gone++; + } + else + { + if (TryComp(entity, out var state)) { - dead++; + if (state.CurrentState == MobState.Dead || state.CurrentState == MobState.Invalid) + { + gone++; + } + else if (checkOffStation && _stationSystem.GetOwningStation(entity) == null && !_emergencyShuttle.EmergencyShuttleArrived) + { + gone++; + } } - else if (checkOffStation && _stationSystem.GetOwningStation(entity) == null && !_emergencyShuttle.EmergencyShuttleArrived) + //If they don't have the MobStateComponent they might as well be dead. + else { - dead++; + gone++; } } - //If they don't have the MobStateComponent they might as well be dead. - else - { - dead++; - } } - return dead == list.Count || list.Count == 0; + return gone == list.Count || list.Count == 0; } private static readonly string[] Outcomes = diff --git a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs index 0fa100f0c6..d43f3c4472 100644 --- a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs @@ -80,6 +80,7 @@ public bool MakeTraitor(EntityUid traitor, TraitorRuleComponent component, bool component.SelectionStatus = TraitorRuleComponent.SelectionState.Started; // WD EDIT var briefing = Loc.GetString("traitor-role-codewords-short", ("codewords", string.Join(", ", component.Codewords))); + var issuer = _random.Pick(_prototypeManager.Index(component.ObjectiveIssuers).Values); if (TryComp(traitor, out var autoTraitorComponent)) { @@ -109,7 +110,7 @@ public bool MakeTraitor(EntityUid traitor, TraitorRuleComponent component, bool Loc.GetString("traitor-role-uplink-code-short", ("code", string.Join("-", code).Replace("sharp", "#")))); } - _antag.SendBriefing(traitor, GenerateBriefing(component.Codewords, code), null, component.GreetSoundNotification); + _antag.SendBriefing(traitor, GenerateBriefing(component.Codewords, code, issuer), null, component.GreetSoundNotification); component.TraitorMinds.Add(mindId); @@ -156,10 +157,10 @@ private void OnObjectivesTextPrepend(EntityUid uid, TraitorRuleComponent comp, r args.Text += "\n" + Loc.GetString("traitor-round-end-codewords", ("codewords", string.Join(", ", comp.Codewords))); } - private string GenerateBriefing(string[] codewords, Note[]? uplinkCode) + private string GenerateBriefing(string[] codewords, Note[]? uplinkCode, string? objectiveIssuer = null) { var sb = new StringBuilder(); - sb.AppendLine(Loc.GetString("traitor-role-greeting")); + sb.AppendLine(Loc.GetString("traitor-role-greeting", ("corporation", objectiveIssuer ?? Loc.GetString("objective-issuer-unknown")))); sb.AppendLine(Loc.GetString("traitor-role-codewords-short", ("codewords", string.Join(", ", codewords)))); if (uplinkCode != null) sb.AppendLine(Loc.GetString("traitor-role-uplink-code-short", ("code", string.Join("-", uplinkCode).Replace("sharp", "#")))); diff --git a/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs b/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs index f62d0b79ff..1361ab3733 100644 --- a/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs @@ -38,7 +38,7 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnZombifySelf); + SubscribeLocalEvent(OnZombifySelf); } protected override void AppendRoundEndText(EntityUid uid, ZombieRuleComponent component, GameRuleComponent gameRule, @@ -133,7 +133,7 @@ protected override void ActiveTick(EntityUid uid, ZombieRuleComponent component, component.NextRoundEndCheck = _timing.CurTime + component.EndCheckDelay; } - private void OnZombifySelf(EntityUid uid, PendingZombieComponent component, ZombifySelfActionEvent args) + private void OnZombifySelf(EntityUid uid, IncurableZombieComponent component, ZombifySelfActionEvent args) { _zombie.ZombifyEntity(uid); if (component.Action != null) diff --git a/Content.Server/Gateway/Components/GatewayGeneratorComponent.cs b/Content.Server/Gateway/Components/GatewayGeneratorComponent.cs index d65760e270..0f948f1b8f 100644 --- a/Content.Server/Gateway/Components/GatewayGeneratorComponent.cs +++ b/Content.Server/Gateway/Components/GatewayGeneratorComponent.cs @@ -64,6 +64,8 @@ public sealed partial class GatewayGeneratorComponent : Component "OreUranium", "OreBananium", "OreArtifactFragment", + "OreBluespace", + "OreNormality", }; } diff --git a/Content.Server/Gateway/Systems/GatewaySystem.cs b/Content.Server/Gateway/Systems/GatewaySystem.cs index 7ebc751dd2..6ed28d71a7 100644 --- a/Content.Server/Gateway/Systems/GatewaySystem.cs +++ b/Content.Server/Gateway/Systems/GatewaySystem.cs @@ -129,7 +129,7 @@ private void UpdateUserInterface(EntityUid uid, GatewayComponent comp, Transform unlockTime ); - _ui.TrySetUiState(uid, GatewayUiKey.Key, state); + _ui.SetUiState(uid, GatewayUiKey.Key, state); } private void UpdateAppearance(EntityUid uid) @@ -139,12 +139,14 @@ private void UpdateAppearance(EntityUid uid) private void OnOpenPortal(EntityUid uid, GatewayComponent comp, GatewayOpenPortalMessage args) { - if (args.Session.AttachedEntity == null || GetNetEntity(uid) == args.Destination || + if (GetNetEntity(uid) == args.Destination || !comp.Enabled || !comp.Interactable) + { return; + } // if the gateway has an access reader check it before allowing opening - var user = args.Session.AttachedEntity.Value; + var user = args.Actor; if (CheckAccess(user, uid, comp)) return; diff --git a/Content.Server/Geras/GerasComponent.cs b/Content.Server/Geras/GerasComponent.cs new file mode 100644 index 0000000000..eaf792502f --- /dev/null +++ b/Content.Server/Geras/GerasComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Actions; +using Content.Shared.Polymorph; +using Robust.Shared.Prototypes; + +namespace Content.Server.Geras; + +/// +/// This component assigns the entity with a polymorph action. +/// +[RegisterComponent] +public sealed partial class GerasComponent : Component +{ + [DataField] public ProtoId GerasPolymorphId = "SlimeMorphGeras"; + + [DataField] public ProtoId GerasAction = "ActionMorphGeras"; + + [DataField] public EntityUid? GerasActionEntity; +} diff --git a/Content.Server/Geras/GerasSystem.cs b/Content.Server/Geras/GerasSystem.cs new file mode 100644 index 0000000000..f83f7c1999 --- /dev/null +++ b/Content.Server/Geras/GerasSystem.cs @@ -0,0 +1,51 @@ +using Content.Server.Polymorph.Systems; +using Content.Shared.Zombies; +using Content.Server.Actions; +using Content.Server.Popups; +using Content.Shared.Geras; +using Robust.Shared.Player; + +namespace Content.Server.Geras; + +/// +public sealed class GerasSystem : SharedGerasSystem +{ + [Dependency] private readonly PolymorphSystem _polymorphSystem = default!; + [Dependency] private readonly ActionsSystem _actionsSystem = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + + /// + public override void Initialize() + { + SubscribeLocalEvent(OnMorphIntoGeras); + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnZombification); + } + + private void OnZombification(EntityUid uid, GerasComponent component, EntityZombifiedEvent args) + { + _actionsSystem.RemoveAction(uid, component.GerasActionEntity); + } + + private void OnMapInit(EntityUid uid, GerasComponent component, MapInitEvent args) + { + // try to add geras action + _actionsSystem.AddAction(uid, ref component.GerasActionEntity, component.GerasAction); + } + + private void OnMorphIntoGeras(EntityUid uid, GerasComponent component, MorphIntoGeras args) + { + if (HasComp(uid)) + return; // i hate zomber. + + var ent = _polymorphSystem.PolymorphEntity(uid, component.GerasPolymorphId); + + if (!ent.HasValue) + return; + + _popupSystem.PopupEntity(Loc.GetString("geras-popup-morph-message-others", ("entity", ent.Value)), ent.Value, Filter.PvsExcept(ent.Value), true); + _popupSystem.PopupEntity(Loc.GetString("geras-popup-morph-message-user"), ent.Value, ent.Value); + + args.Handled = true; + } +} diff --git a/Content.Server/_White/Ghost/GhostReturnToRoundSystem.cs b/Content.Server/Ghost/GhostReturnToRoundSystem.cs similarity index 87% rename from Content.Server/_White/Ghost/GhostReturnToRoundSystem.cs rename to Content.Server/Ghost/GhostReturnToRoundSystem.cs index e3c5a0647f..f6ed44ca58 100644 --- a/Content.Server/_White/Ghost/GhostReturnToRoundSystem.cs +++ b/Content.Server/Ghost/GhostReturnToRoundSystem.cs @@ -1,16 +1,15 @@ using Content.Server.Administration.Logs; using Content.Server.Chat.Managers; using Content.Server.GameTicking; -using Content.Shared._White; using Content.Shared.Database; -using Content.Shared.GameTicking; +using Content.Shared.CCVar; using Content.Shared.Ghost; using Robust.Server.Player; using Robust.Shared.Configuration; using Robust.Shared.Network; using Robust.Shared.Timing; -namespace Content.Server._White.Ghost; +namespace Content.Server.Ghost; public sealed class GhostReturnToRoundSystem : EntitySystem { @@ -19,6 +18,7 @@ public sealed class GhostReturnToRoundSystem : EntitySystem [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly GameTicker _ticker = default!; public override void Initialize() { @@ -32,7 +32,7 @@ private void OnGhostReturnToRoundRequest(GhostReturnToRoundRequest msg, EntitySe if (uid == null) return; - var connectedClient = args.SenderSession.ConnectedClient; + var connectedClient = args.SenderSession.Channel; var userId = args.SenderSession.UserId; TryGhostReturnToRound(uid.Value, connectedClient, userId, out var message, out var wrappedMessage); @@ -48,7 +48,7 @@ private void OnGhostReturnToRoundRequest(GhostReturnToRoundRequest msg, EntitySe private void TryGhostReturnToRound(EntityUid uid, INetChannel connectedClient, NetUserId userId, out string message, out string wrappedMessage) { - var maxPlayers = _cfg.GetCVar(WhiteCVars.GhostRespawnMaxPlayers); + var maxPlayers = _cfg.GetCVar(CCVars.GhostRespawnMaxPlayers); if (_playerManager.PlayerCount >= maxPlayers) { message = Loc.GetString("ghost-respawn-max-players", ("players", maxPlayers)); @@ -57,15 +57,14 @@ private void TryGhostReturnToRound(EntityUid uid, INetChannel connectedClient, N } var deathTime = EnsureComp(uid).TimeOfDeath; - var timeUntilRespawn = _cfg.GetCVar(WhiteCVars.GhostRespawnTime); + var timeUntilRespawn = _cfg.GetCVar(CCVars.GhostRespawnTime); var timePast = (_gameTiming.CurTime - deathTime).TotalMinutes; if (timePast >= timeUntilRespawn) { - var ticker = Get(); _playerManager.TryGetSessionById(userId, out var targetPlayer); if (targetPlayer != null) - ticker.Respawn(targetPlayer); + _ticker.Respawn(targetPlayer); _adminLogger.Add(LogType.Mind, LogImpact.Medium, $"{Loc.GetString("ghost-respawn-log-return-to-lobby", ("userName", connectedClient.UserName))}"); diff --git a/Content.Server/Ghost/GhostSystem.cs b/Content.Server/Ghost/GhostSystem.cs index c0e753c4c5..f4e6a4d607 100644 --- a/Content.Server/Ghost/GhostSystem.cs +++ b/Content.Server/Ghost/GhostSystem.cs @@ -19,6 +19,7 @@ using Content.Shared.Storage.Components; using Robust.Server.GameObjects; using Robust.Server.Player; +using Robust.Shared.Map; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; using Robust.Shared.Player; @@ -42,11 +43,18 @@ public sealed class GhostSystem : SharedGhostSystem [Dependency] private readonly GameTicker _ticker = default!; [Dependency] private readonly TransformSystem _transformSystem = default!; [Dependency] private readonly VisibilitySystem _visibilitySystem = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; + + private EntityQuery _ghostQuery; + private EntityQuery _physicsQuery; public override void Initialize() { base.Initialize(); + _ghostQuery = GetEntityQuery(); + _physicsQuery = GetEntityQuery(); + SubscribeLocalEvent(OnGhostStartup); SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnGhostShutdown); @@ -62,12 +70,14 @@ public override void Initialize() SubscribeNetworkEvent(OnGhostWarpsRequest); SubscribeNetworkEvent(OnGhostReturnToBodyRequest); SubscribeNetworkEvent(OnGhostWarpToTargetRequest); + SubscribeNetworkEvent(OnGhostnadoRequest); SubscribeLocalEvent(OnActionPerform); SubscribeLocalEvent(OnGhostHearingAction); SubscribeLocalEvent(OnEntityStorageInsertAttempt); SubscribeLocalEvent(_ => MakeVisible(true)); + SubscribeLocalEvent(OnToggleGhostVisibilityToAll); } private void OnGhostHearingAction(EntityUid uid, GhostComponent component, ToggleGhostHearingActionEvent args) @@ -241,7 +251,7 @@ private void DeleteEntity(EntityUid uid) private void OnGhostReturnToBodyRequest(GhostReturnToBodyRequest msg, EntitySessionEventArgs args) { if (args.SenderSession.AttachedEntity is not {Valid: true} attached - || !TryComp(attached, out GhostComponent? ghost) + || !_ghostQuery.TryComp(attached, out var ghost) || !ghost.CanReturnToBody || !TryComp(attached, out ActorComponent? actor)) { @@ -257,7 +267,7 @@ private void OnGhostReturnToBodyRequest(GhostReturnToBodyRequest msg, EntitySess private void OnGhostWarpsRequest(GhostWarpsRequestEvent msg, EntitySessionEventArgs args) { if (args.SenderSession.AttachedEntity is not {Valid: true} entity - || !HasComp(entity)) + || !_ghostQuery.HasComp(entity)) { Log.Warning($"User {args.SenderSession.Name} sent a {nameof(GhostWarpsRequestEvent)} without being a ghost."); return; @@ -270,7 +280,7 @@ private void OnGhostWarpsRequest(GhostWarpsRequestEvent msg, EntitySessionEventA private void OnGhostWarpToTargetRequest(GhostWarpToTargetRequestEvent msg, EntitySessionEventArgs args) { if (args.SenderSession.AttachedEntity is not {Valid: true} attached - || !TryComp(attached, out GhostComponent? _)) + || !_ghostQuery.HasComp(attached)) { Log.Warning($"User {args.SenderSession.Name} tried to warp to {msg.Target} without being a ghost."); return; @@ -284,17 +294,37 @@ private void OnGhostWarpToTargetRequest(GhostWarpToTargetRequestEvent msg, Entit return; } + WarpTo(attached, target); + } + + private void OnGhostnadoRequest(GhostnadoRequestEvent msg, EntitySessionEventArgs args) + { + if (args.SenderSession.AttachedEntity is not {} uid + || !_ghostQuery.HasComp(uid)) + { + Log.Warning($"User {args.SenderSession.Name} tried to ghostnado without being a ghost."); + return; + } + + if (_followerSystem.GetMostFollowed() is not {} target) + return; + + WarpTo(uid, target); + } + + private void WarpTo(EntityUid uid, EntityUid target) + { if ((TryComp(target, out WarpPointComponent? warp) && warp.Follow) || HasComp(target)) { - _followerSystem.StartFollowingEntity(attached, target); + _followerSystem.StartFollowingEntity(uid, target); return; } - var xform = Transform(attached); - _transformSystem.SetCoordinates(attached, xform, Transform(target).Coordinates); - _transformSystem.AttachToGridOrMap(attached, xform); - if (TryComp(attached, out PhysicsComponent? physics)) - _physics.SetLinearVelocity(attached, Vector2.Zero, body: physics); + var xform = Transform(uid); + _transformSystem.SetCoordinates(uid, xform, Transform(target).Coordinates); + _transformSystem.AttachToGridOrMap(uid, xform); + if (_physicsQuery.TryComp(uid, out var physics)) + _physics.SetLinearVelocity(uid, Vector2.Zero, body: physics); } private IEnumerable GetLocationWarps() @@ -333,6 +363,15 @@ private void OnEntityStorageInsertAttempt(EntityUid uid, GhostComponent comp, re args.Cancelled = true; } + private void OnToggleGhostVisibilityToAll(ToggleGhostVisibilityToAllEvent ev) + { + if (ev.Handled) + return; + + ev.Handled = true; + MakeVisible(true); + } + /// /// When the round ends, make all players able to see ghosts. /// @@ -362,5 +401,59 @@ public bool DoGhostBooEvent(EntityUid target) return ghostBoo.Handled; } + + public EntityUid? SpawnGhost(Entity mind, EntityUid targetEntity, + bool canReturn = false) + { + _transformSystem.TryGetMapOrGridCoordinates(targetEntity, out var spawnPosition); + return SpawnGhost(mind, spawnPosition, canReturn); + } + + public EntityUid? SpawnGhost(Entity mind, EntityCoordinates? spawnPosition = null, + bool canReturn = false) + { + if (!Resolve(mind, ref mind.Comp)) + return null; + + // Test if the map is being deleted + var mapUid = spawnPosition?.GetMapUid(EntityManager); + if (mapUid == null || TerminatingOrDeleted(mapUid.Value)) + spawnPosition = null; + + spawnPosition ??= _ticker.GetObserverSpawnPoint(); + + if (!spawnPosition.Value.IsValid(EntityManager)) + { + Log.Warning($"No spawn valid ghost spawn position found for {mind.Comp.CharacterName}" + + " \"{ToPrettyString(mind)}\""); + _minds.TransferTo(mind.Owner, null, createGhost: false, mind: mind.Comp); + return null; + } + + var ghost = SpawnAtPosition(GameTicker.ObserverPrototypeName, spawnPosition.Value); + var ghostComponent = Comp(ghost); + + // Try setting the ghost entity name to either the character name or the player name. + // If all else fails, it'll default to the default entity prototype name, "observer". + // However, that should rarely happen. + if (!string.IsNullOrWhiteSpace(mind.Comp.CharacterName)) + _metaData.SetEntityName(ghost, mind.Comp.CharacterName); + else if (!string.IsNullOrWhiteSpace(mind.Comp.Session?.Name)) + _metaData.SetEntityName(ghost, mind.Comp.Session.Name); + + if (mind.Comp.TimeOfDeath.HasValue) + { + SetTimeOfDeath(ghost, mind.Comp.TimeOfDeath!.Value, ghostComponent); + } + + SetCanReturnToBody(ghostComponent, canReturn); + + if (canReturn) + _minds.Visit(mind.Owner, ghost, mind.Comp); + else + _minds.TransferTo(mind.Owner, ghost, mind: mind.Comp); + Log.Debug($"Spawned ghost \"{ToPrettyString(ghost)}\" for {mind.Comp.CharacterName}."); + return ghost; + } } } diff --git a/Content.Server/Ghost/Roles/Components/GhostRoleComponent.cs b/Content.Server/Ghost/Roles/Components/GhostRoleComponent.cs index 997961ae67..35b8ad7556 100644 --- a/Content.Server/Ghost/Roles/Components/GhostRoleComponent.cs +++ b/Content.Server/Ghost/Roles/Components/GhostRoleComponent.cs @@ -1,4 +1,5 @@ -using Content.Server.Mind.Commands; +using Content.Server.Ghost.Roles.Raffles; +using Content.Server.Mind.Commands; using Content.Shared.Customization.Systems; using Content.Shared.Roles; @@ -88,5 +89,12 @@ public string RoleRules [ViewVariables(VVAccess.ReadWrite)] [DataField("reregister")] public bool ReregisterOnGhost { get; set; } = true; + + /// + /// If set, ghost role is raffled, otherwise it is first-come-first-serve. + /// + [DataField("raffle")] + [Access(typeof(GhostRoleSystem), Other = AccessPermissions.ReadWriteExecute)] // FIXME Friends + public GhostRoleRaffleConfig? RaffleConfig { get; set; } } } diff --git a/Content.Server/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs b/Content.Server/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs index 4cdab6ce07..6c2a6986fc 100644 --- a/Content.Server/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs +++ b/Content.Server/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs @@ -1,5 +1,4 @@ using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Ghost.Roles.Components { @@ -10,17 +9,22 @@ namespace Content.Server.Ghost.Roles.Components [Access(typeof(GhostRoleSystem))] public sealed partial class GhostRoleMobSpawnerComponent : Component { - [ViewVariables(VVAccess.ReadWrite)] [DataField("deleteOnSpawn")] + [DataField] public bool DeleteOnSpawn = true; - [ViewVariables(VVAccess.ReadWrite)] [DataField("availableTakeovers")] + [DataField] public int AvailableTakeovers = 1; [ViewVariables] public int CurrentTakeovers = 0; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("prototype", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string? Prototype { get; private set; } + [DataField] + public EntProtoId? Prototype; + + /// + /// If this ghostrole spawner has multiple selectable ghostrole prototypes. + /// + [DataField] + public List SelectablePrototypes = []; } } diff --git a/Content.Server/Ghost/Roles/Components/GhostRoleRaffleComponent.cs b/Content.Server/Ghost/Roles/Components/GhostRoleRaffleComponent.cs new file mode 100644 index 0000000000..ac518685e9 --- /dev/null +++ b/Content.Server/Ghost/Roles/Components/GhostRoleRaffleComponent.cs @@ -0,0 +1,58 @@ +using Content.Server.Ghost.Roles.Raffles; +using Robust.Shared.Player; + +namespace Content.Server.Ghost.Roles.Components; + +/// +/// Indicates that a ghost role is currently being raffled, and stores data about the raffle in progress. +/// Raffles start when the first player joins a raffle. +/// +[RegisterComponent] +[Access(typeof(GhostRoleSystem))] +public sealed partial class GhostRoleRaffleComponent : Component +{ + /// + /// Identifier of the Ghost Role this raffle is for. + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField] + public uint Identifier { get; set; } + + /// + /// List of sessions that are currently in the raffle. + /// + [ViewVariables(VVAccess.ReadOnly)] + public HashSet CurrentMembers = []; + + /// + /// List of sessions that are currently or were previously in the raffle. + /// + [ViewVariables(VVAccess.ReadOnly)] + public HashSet AllMembers = []; + + /// + /// Time left in the raffle in seconds. This must be initialized to a positive value. + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField] + public TimeSpan Countdown = TimeSpan.MaxValue; + + /// + /// The cumulative time, i.e. how much time the raffle will take in total. Added to when the time is extended + /// by someone joining the raffle. + /// Must be set to the same value as on initialization. + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("cumulativeTime")] + public TimeSpan CumulativeTime = TimeSpan.MaxValue; + + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("joinExtendsDurationBy")] + public TimeSpan JoinExtendsDurationBy { get; set; } + + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("maxDuration")] + public TimeSpan MaxDuration { get; set; } +} diff --git a/Content.Server/Ghost/Roles/GhostRoleSystem.cs b/Content.Server/Ghost/Roles/GhostRoleSystem.cs index f603416d00..346cb64ea8 100644 --- a/Content.Server/Ghost/Roles/GhostRoleSystem.cs +++ b/Content.Server/Ghost/Roles/GhostRoleSystem.cs @@ -1,7 +1,10 @@ +using System.Linq; using Content.Server.Administration.Logs; 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; using Content.Shared.Administration; @@ -21,8 +24,13 @@ using Robust.Shared.Console; using Robust.Shared.Enums; using Robust.Shared.Player; +using Robust.Shared.Prototypes; using Robust.Shared.Random; +using Robust.Shared.Timing; using Robust.Shared.Utility; +using Content.Server.Popups; +using Content.Shared.Verbs; +using Robust.Shared.Collections; namespace Content.Server.Ghost.Roles { @@ -37,10 +45,16 @@ namespace Content.Server.Ghost.Roles [Dependency] private readonly TransformSystem _transform = default!; [Dependency] private readonly SharedMindSystem _mindSystem = default!; [Dependency] private readonly SharedRoleSystem _roleSystem = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; private uint _nextRoleIdentifier; private bool _needsUpdateGhostRoleCount = true; + private readonly Dictionary> _ghostRoles = new(); + private readonly Dictionary> _ghostRoleRaffles = new(); + private readonly Dictionary _openUis = new(); private readonly Dictionary _openMakeGhostRoleUis = new(); @@ -57,13 +71,16 @@ public override void Initialize() SubscribeLocalEvent(OnMindRemoved); SubscribeLocalEvent(OnMobStateChanged); SubscribeLocalEvent(OnMapInit); - SubscribeLocalEvent(OnStartup); - SubscribeLocalEvent(OnShutdown); + SubscribeLocalEvent(OnRoleStartup); + SubscribeLocalEvent(OnRoleShutdown); SubscribeLocalEvent(OnPaused); SubscribeLocalEvent(OnUnpaused); + SubscribeLocalEvent(OnRaffleInit); + SubscribeLocalEvent(OnRaffleShutdown); SubscribeLocalEvent(OnSpawnerTakeRole); SubscribeLocalEvent(OnTakeoverTakeRole); - SubscribeLocalEvent(OnSpawnerTakeCharacter); // DeltaV - Character ghost roles, see Content.Server/DeltaV/Ghost/Roles/GhostRoleSystem.Character.cs + SubscribeLocalEvent>(OnVerb); + SubscribeLocalEvent(OnSpawnerTakeCharacter); _playerManager.PlayerStatusChanged += PlayerStatusChanged; } @@ -75,11 +92,11 @@ private void OnMobStateChanged(Entity component switch (args.NewMobState) { case MobState.Alive: - { - if (!ghostRole.Taken) - RegisterGhostRole((component, ghostRole)); - break; - } + { + if (!ghostRole.Taken) + RegisterGhostRole((component, ghostRole)); + break; + } case MobState.Critical: case MobState.Dead: UnregisterGhostRole((component, ghostRole)); @@ -101,11 +118,11 @@ private uint GetNextRoleIdentifier() public void OpenEui(ICommonSession session) { - if (session.AttachedEntity is not {Valid: true} attached || + if (session.AttachedEntity is not { Valid: true } attached || !EntityManager.HasComponent(attached)) return; - if(_openUis.ContainsKey(session)) + if (_openUis.ContainsKey(session)) CloseEui(session); var eui = _openUis[session] = new GhostRolesEui(); @@ -159,17 +176,118 @@ public void UpdateAllEui() public override void Update(float frameTime) { base.Update(frameTime); - if (_needsUpdateGhostRoleCount) + + UpdateGhostRoleCount(); + UpdateRaffles(frameTime); + } + + /// + /// Handles sending count update for the ghost role button in ghost UI, if ghost role count changed. + /// + private void UpdateGhostRoleCount() + { + if (!_needsUpdateGhostRoleCount) + return; + + _needsUpdateGhostRoleCount = false; + var response = new GhostUpdateGhostRoleCountEvent(GetGhostRoleCount()); + foreach (var player in _playerManager.Sessions) + { + RaiseNetworkEvent(response, player.Channel); + } + } + + /// + /// Handles ghost role raffle logic. + /// + private void UpdateRaffles(float frameTime) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var entityUid, out var raffle, out var meta)) { - _needsUpdateGhostRoleCount = false; - var response = new GhostUpdateGhostRoleCountEvent(GetGhostRolesInfo().Length); - foreach (var player in _playerManager.Sessions) + if (meta.EntityPaused) + continue; + + // if all participants leave/were removed from the raffle, the raffle is canceled. + if (raffle.CurrentMembers.Count == 0) { - RaiseNetworkEvent(response, player.Channel); + RemoveRaffleAndUpdateEui(entityUid, raffle); + continue; } + + raffle.Countdown = raffle.Countdown.Subtract(TimeSpan.FromSeconds(frameTime)); + if (raffle.Countdown.Ticks > 0) + continue; + + // the raffle is over! find someone to take over the ghost role + if (!TryComp(entityUid, out GhostRoleComponent? ghostRole)) + { + Log.Warning($"Ghost role raffle finished on {entityUid} but {nameof(GhostRoleComponent)} is missing"); + RemoveRaffleAndUpdateEui(entityUid, raffle); + continue; + } + + if (ghostRole.RaffleConfig is null) + { + Log.Warning($"Ghost role raffle finished on {entityUid} but RaffleConfig became null"); + RemoveRaffleAndUpdateEui(entityUid, raffle); + continue; + } + + var foundWinner = false; + var deciderPrototype = _prototype.Index(ghostRole.RaffleConfig.Decider); + + // use the ghost role's chosen winner picker to find a winner + deciderPrototype.Decider.PickWinner( + raffle.CurrentMembers.AsEnumerable(), + session => + { + var success = TryTakeover(session, raffle.Identifier); + foundWinner |= success; + return success; + } + ); + + if (!foundWinner) + { + Log.Warning($"Ghost role raffle for {entityUid} ({ghostRole.RoleName}) finished without " + + $"{ghostRole.RaffleConfig?.Decider} finding a winner"); + } + + // raffle over + RemoveRaffleAndUpdateEui(entityUid, raffle); } } + private bool TryTakeover(ICommonSession player, uint identifier) + { + // TODO: the following two checks are kind of redundant since they should already be removed + // from the raffle + // can't win if you are disconnected (although you shouldn't be a candidate anyway) + if (player.Status != SessionStatus.InGame) + return false; + + // can't win if you are no longer a ghost (e.g. if you returned to your body) + if (player.AttachedEntity == null || !HasComp(player.AttachedEntity)) + return false; + + if (Takeover(player, identifier)) + { + // takeover successful, we have a winner! remove the winner from other raffles they might be in + LeaveAllRaffles(player); + return true; + } + + return false; + } + + private void RemoveRaffleAndUpdateEui(EntityUid entityUid, GhostRoleRaffleComponent raffle) + { + _ghostRoleRaffles.Remove(raffle.Identifier); + RemComp(entityUid, raffle); + UpdateAllEui(); + } + private void PlayerStatusChanged(object? blah, SessionStatusEventArgs args) { if (args.NewStatus == SessionStatus.InGame) @@ -177,6 +295,11 @@ private void PlayerStatusChanged(object? blah, SessionStatusEventArgs args) var response = new GhostUpdateGhostRoleCountEvent(_ghostRoles.Count); RaiseNetworkEvent(response, args.Session.Channel); } + else + { + // people who disconnect are removed from ghost role raffles + LeaveAllRaffles(args.Session); + } } public void RegisterGhostRole(Entity role) @@ -195,24 +318,170 @@ public void UnregisterGhostRole(Entity role) return; _ghostRoles.Remove(comp.Identifier); + if (TryComp(role.Owner, out GhostRoleRaffleComponent? raffle)) + { + // if a raffle is still running, get rid of it + RemoveRaffleAndUpdateEui(role.Owner, raffle); + } + else + { + UpdateAllEui(); + } + } + + // probably fine to be init because it's never added during entity initialization, but much later + private void OnRaffleInit(Entity ent, ref ComponentInit args) + { + if (!TryComp(ent, out GhostRoleComponent? ghostRole)) + { + // can't have a raffle for a ghost role that doesn't exist + RemComp(ent); + return; + } + + var config = ghostRole.RaffleConfig; + if (config is null) + return; // should, realistically, never be reached but you never know + + var settings = config.SettingsOverride + ?? _prototype.Index(config.Settings).Settings; + + if (settings.MaxDuration < settings.InitialDuration) + { + Log.Error($"Ghost role on {ent} has invalid raffle settings (max duration shorter than initial)"); + ghostRole.RaffleConfig = null; // make it a non-raffle role so stuff isn't entirely broken + RemComp(ent); + return; + } + + var raffle = ent.Comp; + raffle.Identifier = ghostRole.Identifier; + raffle.Countdown = TimeSpan.FromSeconds(settings.InitialDuration); + raffle.CumulativeTime = TimeSpan.FromSeconds(settings.InitialDuration); + // we copy these settings into the component because they would be cumbersome to access otherwise + raffle.JoinExtendsDurationBy = TimeSpan.FromSeconds(settings.JoinExtendsDurationBy); + raffle.MaxDuration = TimeSpan.FromSeconds(settings.MaxDuration); + } + + private void OnRaffleShutdown(Entity ent, ref ComponentShutdown args) + { + _ghostRoleRaffles.Remove(ent.Comp.Identifier); + } + + /// + /// Joins the given player onto a ghost role raffle, or creates it if it doesn't exist. + /// + /// The player. + /// The ID that represents the ghost role or ghost role raffle. + /// (A raffle will have the same ID as the ghost role it's for.) + private void JoinRaffle(ICommonSession player, uint identifier) + { + if (!_ghostRoles.TryGetValue(identifier, out var roleEnt)) + return; + + // get raffle or create a new one if it doesn't exist + var raffle = _ghostRoleRaffles.TryGetValue(identifier, out var raffleEnt) + ? raffleEnt.Comp + : EnsureComp(roleEnt.Owner); + + _ghostRoleRaffles.TryAdd(identifier, (roleEnt.Owner, raffle)); + + if (!raffle.CurrentMembers.Add(player)) + { + Log.Warning($"{player.Name} tried to join raffle for ghost role {identifier} but they are already in the raffle"); + return; + } + + // if this is the first time the player joins this raffle, and the player wasn't the starter of the raffle: + // extend the countdown, but only if doing so will not make the raffle take longer than the maximum + // duration + if (raffle.AllMembers.Add(player) && raffle.AllMembers.Count > 1 + && raffle.CumulativeTime.Add(raffle.JoinExtendsDurationBy) <= raffle.MaxDuration) + { + raffle.Countdown += raffle.JoinExtendsDurationBy; + raffle.CumulativeTime += raffle.JoinExtendsDurationBy; + } + UpdateAllEui(); } - public void Takeover(ICommonSession player, uint identifier) + /// + /// Makes the given player leave the raffle corresponding to the given ID. + /// + public void LeaveRaffle(ICommonSession player, uint identifier) { - if (!_ghostRoles.TryGetValue(identifier, out var role)) + if (!_ghostRoleRaffles.TryGetValue(identifier, out var raffleEnt)) return; + if (raffleEnt.Comp.CurrentMembers.Remove(player)) + { + UpdateAllEui(); + } + else + { + Log.Warning($"{player.Name} tried to leave raffle for ghost role {identifier} but they are not in the raffle"); + } + + // (raffle ending because all players left is handled in update()) + } + + /// + /// Makes the given player leave all ghost role raffles. + /// + public void LeaveAllRaffles(ICommonSession player) + { + var shouldUpdateEui = false; + + foreach (var raffleEnt in _ghostRoleRaffles.Values) + { + shouldUpdateEui |= raffleEnt.Comp.CurrentMembers.Remove(player); + } + + if (shouldUpdateEui) + UpdateAllEui(); + } + + /// + /// Request a ghost role. If it's a raffled role starts or joins a raffle, otherwise the player immediately + /// takes over the ghost role if possible. + /// + /// The player. + /// ID of the ghost role. + public void Request(ICommonSession player, uint identifier) + { + if (!_ghostRoles.TryGetValue(identifier, out var roleEnt)) + return; + + if (roleEnt.Comp.RaffleConfig is not null) + { + JoinRaffle(player, identifier); + } + else + { + Takeover(player, identifier); + } + } + + /// + /// Attempts having the player take over the ghost role with the corresponding ID. Does not start a raffle. + /// + /// True if takeover was successful, otherwise false. + public bool Takeover(ICommonSession player, uint identifier) + { + if (!_ghostRoles.TryGetValue(identifier, out var role)) + return false; + var ev = new TakeGhostRoleEvent(player); RaiseLocalEvent(role, ref ev); if (!ev.TookRole) - return; + return false; if (player.AttachedEntity != null) _adminLogger.Add(LogType.GhostRoleTaken, LogImpact.Low, $"{player:player} took the {role.Comp.RoleName:roleName} ghost role {ToPrettyString(player.AttachedEntity.Value):entity}"); CloseEui(player); + return true; } public void Follow(ICommonSession player, uint identifier) @@ -241,7 +510,22 @@ public void GhostRoleInternalCreateMindAndTransfer(ICommonSession player, Entity _mindSystem.TransferTo(newMind, mob); } - public GhostRoleInfo[] GetGhostRolesInfo() + /// + /// Returns the number of available ghost roles. + /// + public int GetGhostRoleCount() + { + var metaQuery = GetEntityQuery(); + return _ghostRoles.Count(pair => metaQuery.GetComponent(pair.Value.Owner).EntityPaused == false); + } + + /// + /// Returns information about all available ghost roles. + /// + /// + /// If not null, the s will show if the given player is in a raffle. + /// + public GhostRoleInfo[] GetGhostRolesInfo(ICommonSession? player) { var roles = new List(); var metaQuery = GetEntityQuery(); @@ -251,7 +535,40 @@ public GhostRoleInfo[] GetGhostRolesInfo() if (metaQuery.GetComponent(uid).EntityPaused) continue; - roles.Add(new GhostRoleInfo {Identifier = id, Name = role.RoleName, Description = role.RoleDescription, Rules = role.RoleRules, Requirements = role.Requirements}); + + var kind = GhostRoleKind.FirstComeFirstServe; + GhostRoleRaffleComponent? raffle = null; + + if (role.RaffleConfig is not null) + { + kind = GhostRoleKind.RaffleReady; + + if (_ghostRoleRaffles.TryGetValue(id, out var raffleEnt)) + { + kind = GhostRoleKind.RaffleInProgress; + raffle = raffleEnt.Comp; + + if (player is not null && raffle.CurrentMembers.Contains(player)) + kind = GhostRoleKind.RaffleJoined; + } + } + + var rafflePlayerCount = (uint?) raffle?.CurrentMembers.Count ?? 0; + var raffleEndTime = raffle is not null + ? _timing.CurTime.Add(raffle.Countdown) + : TimeSpan.MinValue; + + roles.Add(new GhostRoleInfo + { + Identifier = id, + Name = role.RoleName, + Description = role.RoleDescription, + Rules = role.RoleRules, + Requirements = role.Requirements, + Kind = kind, + RafflePlayerCount = rafflePlayerCount, + RaffleEndTime = raffleEndTime + }); } return roles.ToArray(); @@ -266,6 +583,10 @@ private void OnPlayerAttached(PlayerAttachedEvent message) if (HasComp(message.Entity)) return; + // The player is not a ghost (anymore), so they should not be in any raffles. Remove them. + // This ensures player doesn't win a raffle after returning to their (revived) body and ends up being + // forced into a ghost role. + LeaveAllRaffles(message.Player); CloseEui(message.Player); } @@ -300,6 +621,7 @@ public void Reset(RoundRestartCleanupEvent ev) _openUis.Clear(); _ghostRoles.Clear(); + _ghostRoleRaffles.Clear(); _nextRoleIdentifier = 0; } @@ -325,12 +647,12 @@ private void OnMapInit(Entity ent, ref MapInitEvent args) RemCompDeferred(ent); } - private void OnStartup(Entity ent, ref ComponentStartup args) + private void OnRoleStartup(Entity ent, ref ComponentStartup args) { RegisterGhostRole(ent); } - private void OnShutdown(Entity role, ref ComponentShutdown args) + private void OnRoleShutdown(Entity role, ref ComponentShutdown args) { UnregisterGhostRole(role); } @@ -408,6 +730,63 @@ private void OnTakeoverTakeRole(EntityUid uid, GhostTakeoverAvailableComponent c args.TookRole = true; } + + private void OnVerb(EntityUid uid, GhostRoleMobSpawnerComponent component, GetVerbsEvent args) + { + var prototypes = component.SelectablePrototypes; + if (prototypes.Count < 1) + return; + + if (!args.CanAccess || !args.CanInteract || args.Hands == null) + return; + + var verbs = new ValueList(); + + foreach (var prototypeID in prototypes) + { + if (_prototype.TryIndex(prototypeID, out var prototype)) + { + var verb = CreateVerb(uid, component, args.User, prototype); + verbs.Add(verb); + } + } + + args.Verbs.UnionWith(verbs); + } + + private Verb CreateVerb(EntityUid uid, GhostRoleMobSpawnerComponent component, EntityUid userUid, GhostRolePrototype prototype) + { + var verbText = Loc.GetString(prototype.Name); + + return new Verb() + { + Text = verbText, + Disabled = component.Prototype == prototype.EntityPrototype, + Category = VerbCategory.SelectType, + Act = () => SetMode(uid, prototype, verbText, component, userUid) + }; + } + + public void SetMode(EntityUid uid, GhostRolePrototype prototype, string verbText, GhostRoleMobSpawnerComponent? component, EntityUid? userUid = null) + { + if (!Resolve(uid, ref component)) + return; + + var ghostrolecomp = EnsureComp(uid); + + component.Prototype = prototype.EntityPrototype; + ghostrolecomp.RoleName = verbText; + ghostrolecomp.RoleDescription = prototype.Description; + ghostrolecomp.RoleRules = prototype.Rules; + + // Dirty(ghostrolecomp); + + if (userUid != null) + { + var msg = Loc.GetString("ghostrole-spawner-select", ("mode", verbText)); + _popupSystem.PopupEntity(msg, uid, userUid.Value); + } + } } [AnyCommand] @@ -418,7 +797,7 @@ public sealed class GhostRoles : IConsoleCommand public string Help => $"{Command}"; public void Execute(IConsoleShell shell, string argStr, string[] args) { - if(shell.Player != null) + if (shell.Player != null) EntitySystem.Get().OpenEui(shell.Player); else shell.WriteLine("You can only open the ghost roles UI on a client."); diff --git a/Content.Server/Ghost/Roles/MakeRaffledGhostRoleCommand.cs b/Content.Server/Ghost/Roles/MakeRaffledGhostRoleCommand.cs new file mode 100644 index 0000000000..5f5eabdad4 --- /dev/null +++ b/Content.Server/Ghost/Roles/MakeRaffledGhostRoleCommand.cs @@ -0,0 +1,127 @@ +using System.Linq; +using Content.Server.Administration; +using Content.Server.Ghost.Roles.Components; +using Content.Server.Ghost.Roles.Raffles; +using Content.Shared.Administration; +using Content.Shared.Ghost.Roles.Raffles; +using Content.Shared.Mind.Components; +using Robust.Shared.Console; +using Robust.Shared.Prototypes; + +namespace Content.Server.Ghost.Roles +{ + [AdminCommand(AdminFlags.Admin)] + public sealed class MakeRaffledGhostRoleCommand : IConsoleCommand + { + [Dependency] private readonly IPrototypeManager _protoManager = default!; + [Dependency] private readonly IEntityManager _entManager = default!; + + public string Command => "makeghostroleraffled"; + public string Description => "Turns an entity into a raffled ghost role."; + public string Help => $"Usage: {Command} ( | ) []\n" + + $"Durations are in seconds."; + + public void Execute(IConsoleShell shell, string argStr, string[] args) + { + if (args.Length is < 4 or > 7) + { + shell.WriteLine($"Invalid amount of arguments.\n{Help}"); + return; + } + + if (!NetEntity.TryParse(args[0], out var uidNet) || !_entManager.TryGetEntity(uidNet, out var uid)) + { + shell.WriteLine($"{args[0]} is not a valid entity uid."); + return; + } + + if (!_entManager.TryGetComponent(uid, out MetaDataComponent? metaData)) + { + shell.WriteLine($"No entity found with uid {uid}"); + return; + } + + if (_entManager.TryGetComponent(uid, out MindContainerComponent? mind) && + mind.HasMind) + { + shell.WriteLine($"Entity {metaData.EntityName} with id {uid} already has a mind."); + return; + } + + if (_entManager.TryGetComponent(uid, out GhostRoleComponent? ghostRole)) + { + shell.WriteLine($"Entity {metaData.EntityName} with id {uid} already has a {nameof(GhostRoleComponent)}"); + return; + } + + if (_entManager.HasComponent(uid)) + { + shell.WriteLine($"Entity {metaData.EntityName} with id {uid} already has a {nameof(GhostTakeoverAvailableComponent)}"); + return; + } + + var name = args[1]; + var description = args[2]; + + // if the rules are specified then use those, otherwise use the default + var rules = args.Length switch + { + 5 => args[4], + 7 => args[6], + _ => Loc.GetString("ghost-role-component-default-rules"), + }; + + // is it an invocation with a prototype ID and optional rules? + var isProto = args.Length is 4 or 5; + GhostRoleRaffleSettings settings; + + if (isProto) + { + if (!_protoManager.TryIndex(args[4], out var proto)) + { + var validProtos = string.Join(", ", + _protoManager.EnumeratePrototypes().Select(p => p.ID) + ); + + shell.WriteLine($"{args[4]} is not a valid raffle settings prototype. Valid options: {validProtos}"); + return; + } + + settings = proto.Settings; + } + else + { + if (!uint.TryParse(args[3], out var initial) + || !uint.TryParse(args[4], out var extends) + || !uint.TryParse(args[5], out var max) + || initial == 0 || max == 0) + { + shell.WriteLine($"The raffle initial/extends/max settings must be positive numbers."); + return; + } + + if (initial > max) + { + shell.WriteLine("The initial duration must be smaller than or equal to the maximum duration."); + return; + } + + settings = new GhostRoleRaffleSettings() + { + InitialDuration = initial, + JoinExtendsDurationBy = extends, + MaxDuration = max + }; + } + + ghostRole = _entManager.AddComponent(uid.Value); + _entManager.AddComponent(uid.Value); + ghostRole.RoleName = name; + ghostRole.RoleDescription = description; + ghostRole.RoleRules = rules; + ghostRole.RaffleConfig = new GhostRoleRaffleConfig(settings); + + shell.WriteLine($"Made entity {metaData.EntityName} a raffled ghost role."); + } + } +} diff --git a/Content.Server/Ghost/Roles/Raffles/GhostRoleRaffleConfig.cs b/Content.Server/Ghost/Roles/Raffles/GhostRoleRaffleConfig.cs new file mode 100644 index 0000000000..052704df25 --- /dev/null +++ b/Content.Server/Ghost/Roles/Raffles/GhostRoleRaffleConfig.cs @@ -0,0 +1,35 @@ +using Content.Shared.Ghost.Roles.Raffles; +using Robust.Shared.Prototypes; + +namespace Content.Server.Ghost.Roles.Raffles; + +/// +/// Raffle configuration. +/// +[DataDefinition] +public sealed partial class GhostRoleRaffleConfig +{ + public GhostRoleRaffleConfig(GhostRoleRaffleSettings settings) + { + SettingsOverride = settings; + } + + /// + /// Specifies the raffle settings to use. + /// + [DataField("settings", required: true)] + public ProtoId Settings { get; set; } = "default"; + + /// + /// If not null, the settings from are ignored and these settings are used instead. + /// Intended for allowing admins to set custom raffle settings for admeme ghost roles. + /// + [ViewVariables(VVAccess.ReadOnly)] + public GhostRoleRaffleSettings? SettingsOverride { get; set; } + + /// + /// Sets which is used. + /// + [DataField("decider")] + public ProtoId Decider { get; set; } = "default"; +} diff --git a/Content.Server/Ghost/Roles/Raffles/GhostRoleRaffleDeciderPrototype.cs b/Content.Server/Ghost/Roles/Raffles/GhostRoleRaffleDeciderPrototype.cs new file mode 100644 index 0000000000..b2ebf6ca5f --- /dev/null +++ b/Content.Server/Ghost/Roles/Raffles/GhostRoleRaffleDeciderPrototype.cs @@ -0,0 +1,20 @@ +using Robust.Shared.Prototypes; + +namespace Content.Server.Ghost.Roles.Raffles; + +/// +/// Allows getting a as prototype. +/// +[Prototype("ghostRoleRaffleDecider")] +public sealed class GhostRoleRaffleDeciderPrototype : IPrototype +{ + /// + [IdDataField] + public string ID { get; private set; } = default!; + + /// + /// The instance that chooses the winner of a raffle. + /// + [DataField("decider", required: true)] + public IGhostRoleRaffleDecider Decider { get; private set; } = new RngGhostRoleRaffleDecider(); +} diff --git a/Content.Server/Ghost/Roles/Raffles/IGhostRoleRaffleDecider.cs b/Content.Server/Ghost/Roles/Raffles/IGhostRoleRaffleDecider.cs new file mode 100644 index 0000000000..bdd2bf046d --- /dev/null +++ b/Content.Server/Ghost/Roles/Raffles/IGhostRoleRaffleDecider.cs @@ -0,0 +1,28 @@ +using Robust.Shared.Player; + +namespace Content.Server.Ghost.Roles.Raffles; + +/// +/// Chooses a winner of a ghost role raffle. +/// +[ImplicitDataDefinitionForInheritors] +public partial interface IGhostRoleRaffleDecider +{ + /// + /// Chooses a winner of a ghost role raffle draw from the given pool of candidates. + /// + /// The players in the session at the time of drawing. + /// + /// Call this with the chosen winner as argument. + ///
  • If true is returned, your winner was able to take over the ghost role, and the drawing is complete. + /// Do not call again after true is returned.
  • + ///
  • If false is returned, your winner was not able to take over the ghost role, + /// and you must choose another winner, and call with the new winner as argument.
  • + ///
+ /// + /// If is not called, or only returns false, the raffle will end without a winner. + /// Do not call with the same player several times. + /// + void PickWinner(IEnumerable candidates, Func tryTakeover); +} + diff --git a/Content.Server/Ghost/Roles/Raffles/RngGhostRoleRaffleDecider.cs b/Content.Server/Ghost/Roles/Raffles/RngGhostRoleRaffleDecider.cs new file mode 100644 index 0000000000..b91d359935 --- /dev/null +++ b/Content.Server/Ghost/Roles/Raffles/RngGhostRoleRaffleDecider.cs @@ -0,0 +1,27 @@ +using System.Linq; +using JetBrains.Annotations; +using Robust.Shared.Player; +using Robust.Shared.Random; + +namespace Content.Server.Ghost.Roles.Raffles; + +/// +/// Chooses the winner of a ghost role raffle entirely randomly, without any weighting. +/// +[UsedImplicitly(ImplicitUseTargetFlags.WithMembers)] +public sealed partial class RngGhostRoleRaffleDecider : IGhostRoleRaffleDecider +{ + public void PickWinner(IEnumerable candidates, Func tryTakeover) + { + var random = IoCManager.Resolve(); + + var choices = candidates.ToList(); + random.Shuffle(choices); // shuffle the list so we can pick a lucky winner! + + foreach (var candidate in choices) + { + if (tryTakeover(candidate)) + return; + } + } +} diff --git a/Content.Server/Ghost/Roles/UI/GhostRolesEui.cs b/Content.Server/Ghost/Roles/UI/GhostRolesEui.cs index 627231db9e..c1e39919a2 100644 --- a/Content.Server/Ghost/Roles/UI/GhostRolesEui.cs +++ b/Content.Server/Ghost/Roles/UI/GhostRolesEui.cs @@ -6,9 +6,16 @@ namespace Content.Server.Ghost.Roles.UI { public sealed class GhostRolesEui : BaseEui { + private readonly GhostRoleSystem _ghostRoleSystem; + + public GhostRolesEui() + { + _ghostRoleSystem = IoCManager.Resolve().GetEntitySystem(); + } + public override GhostRolesEuiState GetNewState() { - return new(EntitySystem.Get().GetGhostRolesInfo()); + return new(_ghostRoleSystem.GetGhostRolesInfo(Player)); } public override void HandleMessage(EuiMessageBase msg) @@ -17,11 +24,14 @@ public override void HandleMessage(EuiMessageBase msg) switch (msg) { - case GhostRoleTakeoverRequestMessage req: - EntitySystem.Get().Takeover(Player, req.Identifier); + case RequestGhostRoleMessage req: + _ghostRoleSystem.Request(Player, req.Identifier); + break; + case FollowGhostRoleMessage req: + _ghostRoleSystem.Follow(Player, req.Identifier); break; - case GhostRoleFollowRequestMessage req: - EntitySystem.Get().Follow(Player, req.Identifier); + case LeaveGhostRoleRaffleMessage req: + _ghostRoleSystem.LeaveRaffle(Player, req.Identifier); break; } } diff --git a/Content.Server/Gravity/GravityGeneratorComponent.cs b/Content.Server/Gravity/GravityGeneratorComponent.cs index f946292038..f47d397939 100644 --- a/Content.Server/Gravity/GravityGeneratorComponent.cs +++ b/Content.Server/Gravity/GravityGeneratorComponent.cs @@ -37,6 +37,9 @@ public sealed partial class GravityGeneratorComponent : SharedGravityGeneratorCo // 0 -> 1 [ViewVariables(VVAccess.ReadWrite)] [DataField("charge")] public float Charge { get; set; } = 1; + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MachinePartMaxChargeMultiplier = "Capacitor"; + /// /// Is the gravity generator currently "producing" gravity? /// diff --git a/Content.Server/Gravity/GravityGeneratorSystem.cs b/Content.Server/Gravity/GravityGeneratorSystem.cs index ec5646457e..dc31c004c6 100644 --- a/Content.Server/Gravity/GravityGeneratorSystem.cs +++ b/Content.Server/Gravity/GravityGeneratorSystem.cs @@ -1,5 +1,6 @@ using Content.Server.Administration.Logs; using Content.Server.Audio; +using Content.Server.Construction; using Content.Server.Power.Components; using Content.Server.Emp; using Content.Shared.Database; @@ -27,6 +28,7 @@ public override void Initialize() SubscribeLocalEvent(OnComponentShutdown); SubscribeLocalEvent(OnParentChanged); // Or just anchor changed? SubscribeLocalEvent(OnInteractHand); + SubscribeLocalEvent(OnRefreshParts); SubscribeLocalEvent( OnSwitchGenerator); @@ -134,13 +136,13 @@ public override void Update(float frameTime) } private void SetSwitchedOn(EntityUid uid, GravityGeneratorComponent component, bool on, - ApcPowerReceiverComponent? powerReceiver = null, ICommonSession? session = null) + ApcPowerReceiverComponent? powerReceiver = null, EntityUid? user = null) { if (!Resolve(uid, ref powerReceiver)) return; - if (session is { AttachedEntity: { } }) - _adminLogger.Add(LogType.Action, on ? LogImpact.Medium : LogImpact.High, $"{session:player} set ${ToPrettyString(uid):target} to {(on ? "on" : "off")}"); + if (user != null) + _adminLogger.Add(LogType.Action, on ? LogImpact.Medium : LogImpact.High, $"{ToPrettyString(user)} set ${ToPrettyString(uid):target} to {(on ? "on" : "off")}"); component.SwitchedOn = on; UpdatePowerState(component, powerReceiver); @@ -157,7 +159,7 @@ private static void UpdatePowerState( private void UpdateUI(Entity ent, float chargeRate) { var (_, component, powerReceiver) = ent; - if (!_uiSystem.IsUiOpen(ent, SharedGravityGeneratorComponent.GravityGeneratorUiKey.Key)) + if (!_uiSystem.IsUiOpen(ent.Owner, SharedGravityGeneratorComponent.GravityGeneratorUiKey.Key)) return; var chargeTarget = chargeRate < 0 ? 0 : component.MaxCharge; @@ -192,8 +194,8 @@ private void UpdateUI(Entity ent, ref ComponentInit private void OnInteractHand(EntityUid uid, GravityGeneratorComponent component, InteractHandEvent args) { - if (!EntityManager.TryGetComponent(args.User, out ActorComponent? actor)) - return; - ApcPowerReceiverComponent? powerReceiver = default!; if (!Resolve(uid, ref powerReceiver)) return; @@ -223,7 +222,7 @@ private void OnInteractHand(EntityUid uid, GravityGeneratorComponent component, if (!component.Intact || powerReceiver.PowerReceived < component.IdlePowerUse) return; - _uiSystem.TryOpen(uid, SharedGravityGeneratorComponent.GravityGeneratorUiKey.Key, actor.PlayerSession); + _uiSystem.OpenUi(uid, SharedGravityGeneratorComponent.GravityGeneratorUiKey.Key, args.User); component.NeedUIUpdate = true; } @@ -257,6 +256,12 @@ public void UpdateState(Entity ent, AppearanceComponent? appearance) { _ambientSoundSystem.SetAmbience(ent, false); @@ -290,7 +295,7 @@ private void OnSwitchGenerator( GravityGeneratorComponent component, SharedGravityGeneratorComponent.SwitchGeneratorMessage args) { - SetSwitchedOn(uid, component, args.On, session:args.Session); + SetSwitchedOn(uid, component, args.On, user: args.Actor); } private void OnEmpPulse(EntityUid uid, GravityGeneratorComponent component, EmpPulseEvent args) diff --git a/Content.Server/GridPreloader/GridPreloaderComponent.cs b/Content.Server/GridPreloader/GridPreloaderComponent.cs new file mode 100644 index 0000000000..9ff31927d0 --- /dev/null +++ b/Content.Server/GridPreloader/GridPreloaderComponent.cs @@ -0,0 +1,16 @@ +using Content.Shared.GridPreloader.Prototypes; +using Robust.Shared.Map; +using Robust.Shared.Prototypes; + +namespace Content.Server.GridPreloader; + +/// +/// Component storing data about preloaded grids and their location +/// Goes on the map entity +/// +[RegisterComponent, Access(typeof(GridPreloaderSystem))] +public sealed partial class GridPreloaderComponent : Component +{ + [DataField] + public Dictionary, List> PreloadedGrids = new(); +} diff --git a/Content.Server/GridPreloader/GridPreloaderSystem.cs b/Content.Server/GridPreloader/GridPreloaderSystem.cs new file mode 100644 index 0000000000..569fe54141 --- /dev/null +++ b/Content.Server/GridPreloader/GridPreloaderSystem.cs @@ -0,0 +1,147 @@ +using System.Diagnostics.CodeAnalysis; +using Content.Shared.CCVar; +using Content.Shared.GridPreloader.Prototypes; +using Content.Shared.GridPreloader.Systems; +using Robust.Server.GameObjects; +using Robust.Server.Maps; +using Robust.Shared.Configuration; +using Robust.Shared.Map; +using Robust.Shared.Map.Components; +using Robust.Shared.Physics.Components; +using Robust.Shared.Prototypes; +using System.Numerics; +using Content.Server.GameTicking; +using Content.Shared.GameTicking; +using JetBrains.Annotations; + +namespace Content.Server.GridPreloader; +public sealed class GridPreloaderSystem : SharedGridPreloaderSystem +{ + [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly MapSystem _map = default!; + [Dependency] private readonly MapLoaderSystem _mapLoader = default!; + [Dependency] private readonly MetaDataSystem _meta = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnRoundRestart); + SubscribeLocalEvent(OnPostGameMapLoad); + } + + private void OnRoundRestart(RoundRestartCleanupEvent ev) + { + var ent = GetPreloaderEntity(); + if (ent == null) + return; + + Del(ent.Value.Owner); + } + + private void OnPostGameMapLoad(PostGameMapLoad ev) + { + EnsurePreloadedGridMap(); + } + + private void EnsurePreloadedGridMap() + { + // Already have a preloader? + if (GetPreloaderEntity() != null) + return; + + if (!_cfg.GetCVar(CCVars.PreloadGrids)) + return; + + var mapUid = _map.CreateMap(out var mapId, false); + var preloader = EnsureComp(mapUid); + _meta.SetEntityName(mapUid, "GridPreloader Map"); + _map.SetPaused(mapId, true); + + var globalXOffset = 0f; + foreach (var proto in _prototype.EnumeratePrototypes()) + { + for (var i = 0; i < proto.Copies; i++) + { + var options = new MapLoadOptions + { + LoadMap = false, + }; + + if (!_mapLoader.TryLoad(mapId, proto.Path.ToString(), out var roots, options)) + continue; + + // only supports loading maps with one grid. + if (roots.Count != 1) + continue; + + var gridUid = roots[0]; + + // gets grid + also confirms that the root we loaded is actually a grid + if (!TryComp(gridUid, out var mapGrid)) + continue; + + if (!TryComp(gridUid, out var physics)) + continue; + + // Position Calculating + globalXOffset += mapGrid.LocalAABB.Width / 2; + + var coords = new Vector2(-physics.LocalCenter.X + globalXOffset, -physics.LocalCenter.Y); + _transform.SetCoordinates(gridUid, new EntityCoordinates(mapUid, coords)); + + globalXOffset += (mapGrid.LocalAABB.Width / 2) + 1; + + // Add to list + if (!preloader.PreloadedGrids.ContainsKey(proto.ID)) + preloader.PreloadedGrids[proto.ID] = new(); + preloader.PreloadedGrids[proto.ID].Add(gridUid); + } + } + } + + /// + /// Should be a singleton no matter station count, so we can assume 1 + /// (better support for singleton component in engine at some point i guess) + /// + /// + public Entity? GetPreloaderEntity() + { + var query = AllEntityQuery(); + while (query.MoveNext(out var uid, out var comp)) + { + return (uid, comp); + } + + return null; + } + + /// + /// An attempt to get a certain preloaded shuttle. If there are no more such shuttles left, returns null + /// + [PublicAPI] + public bool TryGetPreloadedGrid(ProtoId proto, [NotNullWhen(true)] out EntityUid? preloadedGrid, GridPreloaderComponent? preloader = null) + { + preloadedGrid = null; + + if (preloader == null) + { + preloader = GetPreloaderEntity(); + if (preloader == null) + return false; + } + + if (!preloader.PreloadedGrids.TryGetValue(proto, out var list) || list.Count <= 0) + return false; + + preloadedGrid = list[0]; + + list.RemoveAt(0); + if (list.Count == 0) + preloader.PreloadedGrids.Remove(proto); + + return true; + } +} diff --git a/Content.Server/Hands/Systems/HandsSystem.cs b/Content.Server/Hands/Systems/HandsSystem.cs index bd24ddab5d..780cd420b7 100644 --- a/Content.Server/Hands/Systems/HandsSystem.cs +++ b/Content.Server/Hands/Systems/HandsSystem.cs @@ -1,4 +1,5 @@ using System.Numerics; +using Content.Server._White.Throwing; using Content.Server.Inventory; using Content.Server.Stack; using Content.Server.Stunnable; @@ -19,6 +20,7 @@ using Robust.Shared.Input.Binding; using Robust.Shared.Map; using Robust.Shared.Player; +using Robust.Shared.Random; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -27,10 +29,10 @@ namespace Content.Server.Hands.Systems public sealed class HandsSystem : SharedHandsSystem { [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly StackSystem _stackSystem = default!; [Dependency] private readonly VirtualItemSystem _virtualItemSystem = default!; [Dependency] private readonly ActionBlockerSystem _actionBlockerSystem = default!; - [Dependency] private readonly SharedHandsSystem _handsSystem = default!; [Dependency] private readonly SharedTransformSystem _transformSystem = default!; [Dependency] private readonly PullingSystem _pullingSystem = default!; [Dependency] private readonly ThrowingSystem _throwingSystem = default!; @@ -90,7 +92,8 @@ private void OnDisarmed(EntityUid uid, HandsComponent component, DisarmedEvent a if (TryComp(uid, out PullerComponent? puller) && TryComp(puller.Pulling, out PullableComponent? pullable)) _pullingSystem.TryStopPull(puller.Pulling.Value, pullable); - if (!_handsSystem.TryDrop(uid, component.ActiveHand!, null, checkActionBlocker: false)) + var offsetRandomCoordinates = _transformSystem.GetMoverCoordinates(args.Target).Offset(_random.NextVector2(1f, 1.5f)); + if (!ThrowHeldItem(args.Target, offsetRandomCoordinates)) return; args.Handled = true; // no shove/stun. @@ -206,6 +209,11 @@ hands.ActiveHandEntity is not { } throwEnt || var throwStrength = hands.ThrowForceMultiplier; + // WD EDIT START + if (TryComp(throwEnt, out var throwingItemModifier)) + throwStrength *= throwingItemModifier.ThrowingMultiplier; + // WD EDIT END + // Let other systems change the thrown entity (useful for virtual items) // or the throw strength. var ev = new BeforeThrowEvent(throwEnt, direction, throwStrength, player); diff --git a/Content.Server/HealthExaminable/HealthExaminableComponent.cs b/Content.Server/HealthExaminable/HealthExaminableComponent.cs deleted file mode 100644 index 04053aed70..0000000000 --- a/Content.Server/HealthExaminable/HealthExaminableComponent.cs +++ /dev/null @@ -1,27 +0,0 @@ -using Content.Shared.Damage.Prototypes; -using Content.Shared.FixedPoint; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set; - -namespace Content.Server.HealthExaminable; - -[RegisterComponent, Access(typeof(HealthExaminableSystem))] -public sealed partial class HealthExaminableComponent : Component -{ - // - // The thresholds for determining the examine text for certain amounts of damage. - // These are calculated as a percentage of the entity's critical threshold. - // - public List Thresholds = new() - { FixedPoint2.New(0.10), FixedPoint2.New(0.25), FixedPoint2.New(0.50), FixedPoint2.New(0.75) }; - - [DataField("examinableTypes", required: true, customTypeSerializer:typeof(PrototypeIdHashSetSerializer))] - public HashSet ExaminableTypes = default!; - - /// - /// Health examine text is automatically generated through creating loc string IDs, in the form: - /// `health-examine-[prefix]-[type]-[threshold]` - /// This part determines the prefix. - /// - [DataField("locPrefix")] - public string LocPrefix = "carbon"; -} diff --git a/Content.Server/HeightAdjust/BloodstreamAdjustSystem.cs b/Content.Server/HeightAdjust/BloodstreamAdjustSystem.cs index 92e03e0c11..9ba0ee4b00 100644 --- a/Content.Server/HeightAdjust/BloodstreamAdjustSystem.cs +++ b/Content.Server/HeightAdjust/BloodstreamAdjustSystem.cs @@ -1,4 +1,5 @@ using Content.Server.Body.Components; +using Content.Server.Body.Systems; using Content.Server.Chemistry.Containers.EntitySystems; using Content.Shared.CCVar; using Content.Shared.Chemistry.Reagent; @@ -10,6 +11,7 @@ namespace Content.Server.HeightAdjust; public sealed class BloodstreamAdjustSystem : EntitySystem { + [Dependency] private readonly BloodstreamSystem _bloodstream = default!; [Dependency] private readonly IConfigurationManager _config = default!; [Dependency] private readonly ContestsSystem _contests = default!; [Dependency] private readonly SolutionContainerSystem _solutionContainer = default!; @@ -40,6 +42,8 @@ public bool TryAdjustBloodstream(Entity ent) bloodSolution.MaxVolume = newVolume; bloodSolution.SetContents([new ReagentQuantity(bloodstream.BloodReagent, newBloodLevel, null)], false); + _bloodstream.SetBloodMaxVolume(ent.Owner, newVolume, bloodstream); + return true; } } diff --git a/Content.Server/Holosign/HolosignProjectorComponent.cs b/Content.Server/Holosign/HolosignProjectorComponent.cs index b1d2456221..0c324b5568 100644 --- a/Content.Server/Holosign/HolosignProjectorComponent.cs +++ b/Content.Server/Holosign/HolosignProjectorComponent.cs @@ -10,10 +10,15 @@ public sealed partial class HolosignProjectorComponent : Component [DataField("signProto", customTypeSerializer:typeof(PrototypeIdSerializer))] public string SignProto = "HolosignWetFloor"; - /// - /// How much charge a single use expends. - /// - [ViewVariables(VVAccess.ReadWrite), DataField("chargeUse")] - public float ChargeUse = 50f; + // WD EDIT START + [DataField] + public int MaxUses = 6; + + [DataField] + public int Uses = 6; + + [ViewVariables(VVAccess.ReadOnly)] + public List Signs = new(); + // WD EDIT END } } diff --git a/Content.Server/Holosign/HolosignSystem.cs b/Content.Server/Holosign/HolosignSystem.cs index 58a0bf0d5f..cc559504bb 100644 --- a/Content.Server/Holosign/HolosignSystem.cs +++ b/Content.Server/Holosign/HolosignSystem.cs @@ -1,53 +1,68 @@ +using System.Linq; +using Content.Server._White.Holosign; +using Content.Server.Popups; using Content.Shared.Examine; using Content.Shared.Coordinates.Helpers; -using Content.Server.Power.Components; -using Content.Server.PowerCell; using Content.Shared.Interaction; +using Content.Shared.Interaction.Events; +using Content.Shared.Popups; using Content.Shared.Storage; namespace Content.Server.Holosign; public sealed class HolosignSystem : EntitySystem { - [Dependency] private readonly PowerCellSystem _powerCell = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; - + [Dependency] private readonly PopupSystem _popup = default!; // WD EDIT public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnBeforeInteract); SubscribeLocalEvent(OnExamine); + SubscribeLocalEvent(OnUse); // WD EDIT } private void OnExamine(EntityUid uid, HolosignProjectorComponent component, ExaminedEvent args) { - // TODO: This should probably be using an itemstatus - // TODO: I'm too lazy to do this rn but it's literally copy-paste from emag. - _powerCell.TryGetBatteryFromSlot(uid, out var battery); - var charges = UsesRemaining(component, battery); - var maxCharges = MaxUses(component, battery); + // WD EDIT START + var charges = component.Uses; + var maxCharges = component.MaxUses; + var activeholo = component.Signs.Count; + // WD EDIT END using (args.PushGroup(nameof(HolosignProjectorComponent))) { args.PushMarkup(Loc.GetString("limited-charges-charges-remaining", ("charges", charges))); + args.PushMarkup(Loc.GetString("holoprojector-active-holo", ("activeholo", activeholo))); // WD EDIT if (charges > 0 && charges == maxCharges) - { args.PushMarkup(Loc.GetString("limited-charges-max-charges")); - } } } private void OnBeforeInteract(EntityUid uid, HolosignProjectorComponent component, BeforeRangedInteractEvent args) { - if (args.Handled || !args.CanReach // prevent placing out of range - || HasComp(args.Target) // if it's a storage component like a bag, we ignore usage so it can be stored - || !_powerCell.TryUseCharge(uid, component.ChargeUse) // if no battery or no charge, doesn't work - ) + || HasComp(args.Target)) // if it's a storage component like a bag, we ignore usage so it can be stored + return; + + // WD EDIT START + if (component.Signs.Contains(args.Target)) + { + ++component.Uses; + component.Signs.Remove(args.Target); + QueueDel(args.Target); + return; + } + + if (component.Uses == 0) + { + _popup.PopupEntity(Loc.GetString("holoprojector-uses-limit"), args.User, args.User, PopupType.Medium); return; + } + // WD EDIT END // places the holographic sign at the click location, snapped to grid. // overlapping of the same holo on one tile remains allowed to allow holofan refreshes @@ -56,22 +71,31 @@ private void OnBeforeInteract(EntityUid uid, HolosignProjectorComponent componen if (!xform.Anchored) _transform.AnchorEntity(holoUid, xform); // anchor to prevent any tempering with (don't know what could even interact with it) + // WD EDIT START + EnsureComp(holoUid, out var holosign); + --component.Uses; + component.Signs.Add(holoUid); + holosign.Projector = uid; + // WD EDIT END + args.Handled = true; } - private int UsesRemaining(HolosignProjectorComponent component, BatteryComponent? battery = null) + // WD EDIT START + private void OnUse(EntityUid uid, HolosignProjectorComponent component, UseInHandEvent args) { - if (battery == null || - component.ChargeUse == 0f) return 0; - - return (int) (battery.CurrentCharge / component.ChargeUse); - } + if (args.Handled) + return; - private int MaxUses(HolosignProjectorComponent component, BatteryComponent? battery = null) - { - if (battery == null || - component.ChargeUse == 0f) return 0; + foreach (var sign in component.Signs.ToList()) + { + component.Signs.Remove(sign); + QueueDel(sign); + } - return (int) (battery.MaxCharge / component.ChargeUse); + args.Handled = true; + component.Uses = component.MaxUses; + _popup.PopupEntity(Loc.GetString("holoprojector-delete-signs"), args.User, args.User, PopupType.Medium); } + // WD EDIT START } diff --git a/Content.Server/Humanoid/Systems/HumanoidAppearanceSystem.Modifier.cs b/Content.Server/Humanoid/Systems/HumanoidAppearanceSystem.Modifier.cs index 05a8b06222..06225c9d57 100644 --- a/Content.Server/Humanoid/Systems/HumanoidAppearanceSystem.Modifier.cs +++ b/Content.Server/Humanoid/Systems/HumanoidAppearanceSystem.Modifier.cs @@ -32,8 +32,8 @@ private void OnVerbsRequest(EntityUid uid, HumanoidAppearanceComponent component Icon = new SpriteSpecifier.Rsi(new ("/Textures/Mobs/Customization/reptilian_parts.rsi"), "tail_smooth"), Act = () => { - _uiSystem.TryOpen(uid, HumanoidMarkingModifierKey.Key, actor.PlayerSession); - _uiSystem.TrySetUiState( + _uiSystem.OpenUi(uid, HumanoidMarkingModifierKey.Key, actor.PlayerSession); + _uiSystem.SetUiState( uid, HumanoidMarkingModifierKey.Key, new HumanoidMarkingModifierState(component.MarkingSet, component.Species, @@ -48,8 +48,7 @@ private void OnVerbsRequest(EntityUid uid, HumanoidAppearanceComponent component private void OnBaseLayersSet(EntityUid uid, HumanoidAppearanceComponent component, HumanoidMarkingModifierBaseLayersSetMessage message) { - if (message.Session is not { } player - || !_adminManager.HasAdminFlag(player, AdminFlags.Fun)) + if (!_adminManager.HasAdminFlag(message.Actor, AdminFlags.Fun)) { return; } @@ -67,7 +66,7 @@ private void OnBaseLayersSet(EntityUid uid, HumanoidAppearanceComponent componen if (message.ResendState) { - _uiSystem.TrySetUiState( + _uiSystem.SetUiState( uid, HumanoidMarkingModifierKey.Key, new HumanoidMarkingModifierState(component.MarkingSet, component.Species, @@ -81,8 +80,7 @@ private void OnBaseLayersSet(EntityUid uid, HumanoidAppearanceComponent componen private void OnMarkingsSet(EntityUid uid, HumanoidAppearanceComponent component, HumanoidMarkingModifierMarkingSetMessage message) { - if (message.Session is not { } player - || !_adminManager.HasAdminFlag(player, AdminFlags.Fun)) + if (!_adminManager.HasAdminFlag(message.Actor, AdminFlags.Fun)) { return; } @@ -92,7 +90,7 @@ private void OnMarkingsSet(EntityUid uid, HumanoidAppearanceComponent component, if (message.ResendState) { - _uiSystem.TrySetUiState( + _uiSystem.SetUiState( uid, HumanoidMarkingModifierKey.Key, new HumanoidMarkingModifierState(component.MarkingSet, component.Species, diff --git a/Content.Server/IdentityManagement/IdentitySystem.cs b/Content.Server/IdentityManagement/IdentitySystem.cs index a959b96ef9..4766b89172 100644 --- a/Content.Server/IdentityManagement/IdentitySystem.cs +++ b/Content.Server/IdentityManagement/IdentitySystem.cs @@ -19,7 +19,7 @@ namespace Content.Server.IdentityManagement; /// /// Responsible for updating the identity of an entity on init or clothing equip/unequip. /// -public class IdentitySystem : SharedIdentitySystem +public sealed class IdentitySystem : SharedIdentitySystem { [Dependency] private readonly IdCardSystem _idCard = default!; [Dependency] private readonly IAdminLogManager _adminLog = default!; diff --git a/Content.Server/ImmovableRod/ImmovableRodComponent.cs b/Content.Server/ImmovableRod/ImmovableRodComponent.cs index 05fa3d9d9b..8b57a71696 100644 --- a/Content.Server/ImmovableRod/ImmovableRodComponent.cs +++ b/Content.Server/ImmovableRod/ImmovableRodComponent.cs @@ -42,7 +42,7 @@ public sealed partial class ImmovableRodComponent : Component /// If true, this will gib & delete bodies ///
[DataField] - public bool ShouldGib = true; + public bool ShouldGib; /// /// Damage done, if not gibbing diff --git a/Content.Server/ImmovableRod/ImmovableRodSystem.cs b/Content.Server/ImmovableRod/ImmovableRodSystem.cs index 4553dda095..f9873b0d6a 100644 --- a/Content.Server/ImmovableRod/ImmovableRodSystem.cs +++ b/Content.Server/ImmovableRod/ImmovableRodSystem.cs @@ -60,18 +60,21 @@ private void OnMapInit(EntityUid uid, ImmovableRodComponent component, MapInitEv _physics.SetFriction(uid, phys, 0f); _physics.SetBodyStatus(uid, phys, BodyStatus.InAir); - if (!component.RandomizeVelocity) - return; - var xform = Transform(uid); - var vel = component.DirectionOverride.Degrees switch + var (worldPos, worldRot) = _transform.GetWorldPositionRotation(uid); + var vel = worldRot.ToWorldVec() * component.MaxSpeed; + + if (component.RandomizeVelocity) { - 0f => _random.NextVector2(component.MinSpeed, component.MaxSpeed), - _ => _transform.GetWorldRotation(uid).RotateVec(component.DirectionOverride.ToVec()) * _random.NextFloat(component.MinSpeed, component.MaxSpeed) - }; + vel = component.DirectionOverride.Degrees switch + { + 0f => _random.NextVector2(component.MinSpeed, component.MaxSpeed), + _ => worldRot.RotateVec(component.DirectionOverride.ToVec()) * _random.NextFloat(component.MinSpeed, component.MaxSpeed) + }; + } _physics.ApplyLinearImpulse(uid, vel, body: phys); - xform.LocalRotation = (vel - _transform.GetWorldPosition(uid)).ToWorldAngle() + MathHelper.PiOver2; + xform.LocalRotation = (vel - worldPos).ToWorldAngle() + MathHelper.PiOver2; } } diff --git a/Content.Server/Implants/ImplanterSystem.cs b/Content.Server/Implants/ImplanterSystem.cs index 3cfa3a9f5f..754c9a7374 100644 --- a/Content.Server/Implants/ImplanterSystem.cs +++ b/Content.Server/Implants/ImplanterSystem.cs @@ -43,16 +43,20 @@ private void OnImplanterAfterInteract(EntityUid uid, ImplanterComponent componen } else { - if (!CanImplant(args.User, target, uid, component, out var implant, out _)) + if (!CanImplant(args.User, target, uid, component, out var implant, out _, out var popup)) // WD EDIT { // no popup if implant doesn't exist if (implant == null) return; // show popup to the user saying implant failed - var name = Identity.Name(target, EntityManager, args.User); - var msg = Loc.GetString("implanter-component-implant-failed", ("implant", implant), ("target", name)); - _popup.PopupEntity(msg, target, args.User); + if (popup) // WD EDIT + { + var name = Identity.Name(target, EntityManager, args.User); + var msg = Loc.GetString("implanter-component-implant-failed", ("implant", implant), + ("target", name)); + _popup.PopupEntity(msg, target, args.User); + } // prevent further interaction since popup was shown args.Handled = true; return; diff --git a/Content.Server/Instruments/InstrumentComponent.cs b/Content.Server/Instruments/InstrumentComponent.cs index 1b7913386d..db9dbb375b 100644 --- a/Content.Server/Instruments/InstrumentComponent.cs +++ b/Content.Server/Instruments/InstrumentComponent.cs @@ -1,6 +1,7 @@ using Content.Server.UserInterface; using Content.Shared.Instruments; using Robust.Shared.Player; +using ActivatableUIComponent = Content.Shared.UserInterface.ActivatableUIComponent; namespace Content.Server.Instruments; @@ -16,9 +17,9 @@ public sealed partial class InstrumentComponent : SharedInstrumentComponent [ViewVariables] public uint LastSequencerTick = 0; // TODO Instruments: Make this ECS - public ICommonSession? InstrumentPlayer => + public EntityUid? InstrumentPlayer => _entMan.GetComponentOrNull(Owner)?.CurrentSingleUser - ?? _entMan.GetComponentOrNull(Owner)?.PlayerSession; + ?? _entMan.GetComponentOrNull(Owner)?.PlayerSession.AttachedEntity; } [RegisterComponent] diff --git a/Content.Server/Instruments/InstrumentSystem.cs b/Content.Server/Instruments/InstrumentSystem.cs index 8dd9644e3c..f5a6713886 100644 --- a/Content.Server/Instruments/InstrumentSystem.cs +++ b/Content.Server/Instruments/InstrumentSystem.cs @@ -111,7 +111,7 @@ private void OnMidiStart(InstrumentStartMidiEvent msg, EntitySessionEventArgs ar if (!TryComp(uid, out InstrumentComponent? instrument)) return; - if (args.SenderSession != instrument.InstrumentPlayer) + if (args.SenderSession.AttachedEntity != instrument.InstrumentPlayer) return; instrument.Playing = true; @@ -125,7 +125,7 @@ private void OnMidiStop(InstrumentStopMidiEvent msg, EntitySessionEventArgs args if (!TryComp(uid, out InstrumentComponent? instrument)) return; - if (args.SenderSession != instrument.InstrumentPlayer) + if (args.SenderSession.AttachedEntity != instrument.InstrumentPlayer) return; Clean(uid, instrument); @@ -142,7 +142,7 @@ private void OnMidiSetMaster(InstrumentSetMasterEvent msg, EntitySessionEventArg if (!TryComp(uid, out InstrumentComponent? instrument)) return; - if (args.SenderSession != instrument.InstrumentPlayer) + if (args.SenderSession.AttachedEntity != instrument.InstrumentPlayer) return; if (master != null) @@ -174,7 +174,7 @@ private void OnMidiSetFilteredChannel(InstrumentSetFilteredChannelEvent msg, Ent if (!TryComp(uid, out InstrumentComponent? instrument)) return; - if (args.SenderSession != instrument.InstrumentPlayer) + if (args.SenderSession.AttachedEntity != instrument.InstrumentPlayer) return; if (msg.Channel == RobustMidiEvent.PercussionChannel && !instrument.AllowPercussion) @@ -194,8 +194,7 @@ private void OnMidiSetFilteredChannel(InstrumentSetFilteredChannelEvent msg, Ent private void OnBoundUIClosed(EntityUid uid, InstrumentComponent component, BoundUIClosedEvent args) { if (HasComp(uid) - && _bui.TryGetUi(uid, args.UiKey, out var bui) - && bui.SubscribedSessions.Count == 0) + && !_bui.IsUiOpen(uid, args.UiKey)) { RemComp(uid); } @@ -232,7 +231,7 @@ private void OnBoundUIRequestBands(EntityUid uid, InstrumentComponent component, var instrumentQuery = EntityManager.GetEntityQuery(); if (!TryComp(uid, out InstrumentComponent? originInstrument) - || originInstrument.InstrumentPlayer?.AttachedEntity is not {} originPlayer) + || originInstrument.InstrumentPlayer is not {} originPlayer) return Array.Empty<(NetEntity, string)>(); // It's probably faster to get all possible active instruments than all entities in range @@ -247,7 +246,7 @@ private void OnBoundUIRequestBands(EntityUid uid, InstrumentComponent component, continue; // We want to use the instrument player's name. - if (instrument.InstrumentPlayer?.AttachedEntity is not {} playerUid) + if (instrument.InstrumentPlayer is not {} playerUid) continue; // Maybe a bit expensive but oh well GetBands is queued and has a timer anyway. @@ -298,7 +297,7 @@ private void OnMidiEventRx(InstrumentMidiEventEvent msg, EntitySessionEventArgs return; if (!instrument.Playing - || args.SenderSession != instrument.InstrumentPlayer + || args.SenderSession.AttachedEntity != instrument.InstrumentPlayer || instrument.InstrumentPlayer == null || args.SenderSession.AttachedEntity is not { } attached) { @@ -374,8 +373,7 @@ public override void Update(float frameTime) var entity = GetEntity(request.Entity); var nearby = GetBands(entity); - _bui.TrySendUiMessage(entity, request.UiKey, new InstrumentBandResponseBuiMessage(nearby), - request.Session); + _bui.ServerSendUiMessage(entity, request.UiKey, new InstrumentBandResponseBuiMessage(nearby), request.Actor); } _bandRequestQueue.Clear(); @@ -413,7 +411,7 @@ public override void Update(float frameTime) (instrument.BatchesDropped >= MaxMidiBatchesDropped || instrument.LaggedBatches >= MaxMidiLaggedBatches)) { - if (instrument.InstrumentPlayer?.AttachedEntity is {Valid: true} mob) + if (instrument.InstrumentPlayer is {Valid: true} mob) { _stuns.TryParalyze(mob, TimeSpan.FromSeconds(1), true); @@ -423,7 +421,7 @@ public override void Update(float frameTime) // Just in case Clean(uid); - _bui.TryCloseAll(uid, InstrumentUiKey.Key); + _bui.CloseUi(uid, InstrumentUiKey.Key); } instrument.Timer += frameTime; @@ -437,13 +435,12 @@ public override void Update(float frameTime) } } - public void ToggleInstrumentUi(EntityUid uid, ICommonSession session, InstrumentComponent? component = null) + public void ToggleInstrumentUi(EntityUid uid, EntityUid actor, InstrumentComponent? component = null) { if (!Resolve(uid, ref component)) return; - if (_bui.TryGetUi(uid, InstrumentUiKey.Key, out var bui)) - _bui.ToggleUi(bui, session); + _bui.TryToggleUi(uid, InstrumentUiKey.Key, actor); } public override bool ResolveInstrument(EntityUid uid, ref SharedInstrumentComponent? component) diff --git a/Content.Server/Interaction/InteractionSystem.cs b/Content.Server/Interaction/InteractionSystem.cs index 203781bcda..4eac7e9ef1 100644 --- a/Content.Server/Interaction/InteractionSystem.cs +++ b/Content.Server/Interaction/InteractionSystem.cs @@ -16,13 +16,6 @@ public sealed partial class InteractionSystem : SharedInteractionSystem [Dependency] private readonly SharedContainerSystem _container = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(HandleUserInterfaceRangeCheck); - } - public override bool CanAccessViaStorage(EntityUid user, EntityUid target) { if (Deleted(target)) @@ -37,26 +30,8 @@ public override bool CanAccessViaStorage(EntityUid user, EntityUid target) if (storage.Container?.ID != container.ID) return false; - if (!TryComp(user, out ActorComponent? actor)) - return false; - // we don't check if the user can access the storage entity itself. This should be handed by the UI system. - return _uiSystem.SessionHasOpenUi(container.Owner, StorageComponent.StorageUiKey.Key, actor.PlayerSession); - } - - private void HandleUserInterfaceRangeCheck(ref BoundUserInterfaceCheckRangeEvent ev) - { - if (ev.Player.AttachedEntity is not { } user || ev.Result == BoundUserInterfaceRangeResult.Fail) - return; - - if (InRangeUnobstructed(user, ev.Target, ev.UserInterface.InteractionRange)) - { - ev.Result = BoundUserInterfaceRangeResult.Pass; - } - else - { - ev.Result = BoundUserInterfaceRangeResult.Fail; - } + return _uiSystem.IsUiOpen(container.Owner, StorageComponent.StorageUiKey.Key, user); } } } diff --git a/Content.Server/InteractionVerbs/Actions/ChangeStandingStateAction.cs b/Content.Server/InteractionVerbs/Actions/ChangeStandingStateAction.cs index 35f1118b94..59340df58f 100644 --- a/Content.Server/InteractionVerbs/Actions/ChangeStandingStateAction.cs +++ b/Content.Server/InteractionVerbs/Actions/ChangeStandingStateAction.cs @@ -1,4 +1,3 @@ -using Content.Shared._White.Standing; using Content.Shared.InteractionVerbs; using Content.Shared.Standing; @@ -10,33 +9,32 @@ public sealed partial class ChangeStandingStateAction : InteractionAction [DataField] public bool MakeStanding, MakeLaying; - public override bool CanPerform(InteractionArgs args, InteractionVerbPrototype proto, bool isBefore, - VerbDependencies deps) + public override bool CanPerform(InteractionArgs args, InteractionVerbPrototype proto, bool isBefore, VerbDependencies deps) { if (!deps.EntMan.TryGetComponent(args.Target, out var state)) return false; if (isBefore) - args.Blackboard["standing"] = state.Standing; + args.Blackboard["standing"] = state.CurrentState; - return state.Standing ? MakeLaying : MakeStanding; + return state.CurrentState == StandingState.Standing && MakeLaying + || state.CurrentState == StandingState.Lying && MakeStanding; } public override bool Perform(InteractionArgs args, InteractionVerbPrototype proto, VerbDependencies deps) { var stateSystem = deps.EntMan.System(); - var layingSystem = deps.EntMan.System(); - var isDown = stateSystem.IsDown(args.Target); - - if (args.TryGetBlackboard("standing", out bool wasStanding) && wasStanding != !isDown) - return false; // The target changed its standing state during the do-after - sus - - return isDown switch - { - // Note: these will get cancelled if the target is forced to stand/lay, e.g. due to a buckle or stun or something else. - true when MakeStanding => layingSystem.TryStandUp(args.Target), - false when MakeLaying => layingSystem.TryLieDown(args.Target), - _ => false - }; + + if (!deps.EntMan.TryGetComponent(args.Target, out var state) + || args.TryGetBlackboard("standing", out StandingState oldStanding) && oldStanding != state.CurrentState) + return false; + + // Note: these will get cancelled if the target is forced to stand/lay, e.g. due to a buckle or stun or something else. + if (state.CurrentState == StandingState.Lying && MakeStanding) + return stateSystem.Stand(args.Target); + else if (state.CurrentState == StandingState.Standing && MakeLaying) + return stateSystem.Down(args.Target, setDrawDepth: true); + + return false; } } diff --git a/Content.Server/InteractionVerbs/InteractionVerbsSystem.cs b/Content.Server/InteractionVerbs/InteractionVerbsSystem.cs index 83aa454816..ba51bbe39c 100644 --- a/Content.Server/InteractionVerbs/InteractionVerbsSystem.cs +++ b/Content.Server/InteractionVerbs/InteractionVerbsSystem.cs @@ -13,6 +13,14 @@ public sealed class InteractionVerbsSystem : SharedInteractionVerbsSystem [Dependency] private readonly IChatManager _chatManager = default!; [Dependency] private readonly SharedInteractionSystem _interactions = default!; + private EntityQuery _occluderQuery; + + public override void Initialize() + { + base.Initialize(); + _occluderQuery = GetEntityQuery(); + } + protected override void SendChatLog(string message, EntityUid source, Filter filter, InteractionPopupPrototype popup, bool clip) { if (filter.Count <= 0) @@ -24,7 +32,7 @@ protected override void SendChatLog(string message, EntityUid source, Filter fil // Exclude entities who cannot directly see the target of the popup. TODO this may have a high performance cost - although whispers do the same. // We only do this if the popup has to be logged into chat since that has some gameplay implications. if (clip && popup.DoClipping) - filter.RemoveWhereAttachedEntity(ent => !_interactions.InRangeUnobstructed(ent, source, popup.VisibilityRange, CollisionGroup.Opaque)); + filter.RemoveWhereAttachedEntity(ent => !CanSee(ent, source, popup.VisibilityRange)); if (filter.Count == 1) _chatManager.ChatMessageToOne(popup.LogChannel, message, wrappedMessage, source, false, filter.Recipients.First().Channel, color); @@ -39,4 +47,15 @@ protected override void SendChatLog(string message, EntityUid source, Filter fil PopupType.Medium or PopupType.Small => Color.LightGray, _ => Color.White }; + + private bool CanSee(EntityUid source, EntityUid target, float maxRange) + { + // TODO: InRangeUnobstructed has a pretty high performance cost and is not intended to be used like that. + // We should see if we can move this to client side later, aka make the client check if the target is visible for it. + return _interactions.InRangeUnobstructed( + source, target, maxRange, + CollisionGroup.Opaque, + uid => !_occluderQuery.TryComp(uid, out var occluder) || !occluder.Enabled, // We ignore all entities that do not occlude light + false); + } } diff --git a/Content.Server/Inventory/ServerInventorySystem.cs b/Content.Server/Inventory/ServerInventorySystem.cs index 29d39f3723..e3783753bb 100644 --- a/Content.Server/Inventory/ServerInventorySystem.cs +++ b/Content.Server/Inventory/ServerInventorySystem.cs @@ -1,21 +1,15 @@ -using Content.Server.Storage.EntitySystems; using Content.Shared.Explosion; using Content.Shared.Inventory; -using Content.Shared.Inventory.Events; -using Content.Shared.Storage; namespace Content.Server.Inventory { public sealed class ServerInventorySystem : InventorySystem { - [Dependency] private readonly StorageSystem _storageSystem = default!; - public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnExploded); - SubscribeNetworkEvent(OnOpenSlotStorage); } private void OnExploded(Entity ent, ref BeforeExplodeEvent args) @@ -29,17 +23,6 @@ private void OnExploded(Entity ent, ref BeforeExplodeEvent a } } - private void OnOpenSlotStorage(OpenSlotStorageNetworkMessage ev, EntitySessionEventArgs args) - { - if (args.SenderSession.AttachedEntity is not { Valid: true } uid) - return; - - if (TryGetSlotEntity(uid, ev.Slot, out var entityUid) && TryComp(entityUid, out var storageComponent)) - { - _storageSystem.OpenStorageUI(entityUid.Value, uid, storageComponent); - } - } - public void TransferEntityInventories(Entity source, Entity target) { if (!Resolve(source.Owner, ref source.Comp) || !Resolve(target.Owner, ref target.Comp)) diff --git a/Content.Server/Kitchen/Components/MicrowaveComponent.cs b/Content.Server/Kitchen/Components/MicrowaveComponent.cs index 815ba8f521..1e343e5e33 100644 --- a/Content.Server/Kitchen/Components/MicrowaveComponent.cs +++ b/Content.Server/Kitchen/Components/MicrowaveComponent.cs @@ -11,95 +11,99 @@ namespace Content.Server.Kitchen.Components [RegisterComponent] public sealed partial class MicrowaveComponent : Component { - [DataField("cookTimeMultiplier"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float CookTimeMultiplier = 1; - - [DataField("baseHeatMultiplier"), ViewVariables(VVAccess.ReadWrite)] + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MachinePartCookTimeMultiplier = "Capacitor"; + [DataField] + public float CookTimeScalingConstant = 0.5f; + [DataField] public float BaseHeatMultiplier = 100; - [DataField("objectHeatMultiplier"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float ObjectHeatMultiplier = 100; - [DataField("failureResult", customTypeSerializer: typeof(PrototypeIdSerializer))] + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] public string BadRecipeEntityId = "FoodBadRecipe"; #region audio - [DataField("beginCookingSound")] + [DataField] public SoundSpecifier StartCookingSound = new SoundPathSpecifier("/Audio/Machines/microwave_start_beep.ogg"); - [DataField("foodDoneSound")] + [DataField] public SoundSpecifier FoodDoneSound = new SoundPathSpecifier("/Audio/Machines/microwave_done_beep.ogg"); - [DataField("clickSound")] + [DataField] public SoundSpecifier ClickSound = new SoundPathSpecifier("/Audio/Machines/machine_switch.ogg"); - [DataField("ItemBreakSound")] + [DataField] public SoundSpecifier ItemBreakSound = new SoundPathSpecifier("/Audio/Effects/clang.ogg"); public EntityUid? PlayingStream; - [DataField("loopingSound")] + [DataField] public SoundSpecifier LoopingSound = new SoundPathSpecifier("/Audio/Machines/microwave_loop.ogg"); #endregion [ViewVariables] public bool Broken; - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public ProtoId OnPort = "On"; /// - /// This is a fixed offset of 5. - /// The cook times for all recipes should be divisible by 5,with a minimum of 1 second. - /// For right now, I don't think any recipe cook time should be greater than 60 seconds. + /// This is a fixed offset of 5. + /// The cook times for all recipes should be divisible by 5,with a minimum of 1 second. + /// For right now, I don't think any recipe cook time should be greater than 60 seconds. /// - [DataField("currentCookTimerTime"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public uint CurrentCookTimerTime = 0; /// - /// Tracks the elapsed time of the current cook timer. + /// Tracks the elapsed time of the current cook timer. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public TimeSpan CurrentCookTimeEnd = TimeSpan.Zero; /// - /// The maximum number of seconds a microwave can be set to. - /// This is currently only used for validation and the client does not check this. + /// The maximum number of seconds a microwave can be set to. + /// This is currently only used for validation and the client does not check this. /// - [DataField("maxCookTime"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public uint MaxCookTime = 30; /// /// The max temperature that this microwave can heat objects to. /// - [DataField("temperatureUpperThreshold")] + [DataField] public float TemperatureUpperThreshold = 373.15f; public int CurrentCookTimeButtonIndex; public Container Storage = default!; - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public int Capacity = 10; - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public ProtoId MaxItemSize = "Normal"; /// - /// How frequently the microwave can malfunction. + /// How frequently the microwave can malfunction. /// [DataField] public float MalfunctionInterval = 1.0f; /// - /// Chance of an explosion occurring when we microwave a metallic object + /// Chance of an explosion occurring when we microwave a metallic object /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public float ExplosionChance = .1f; /// - /// Chance of lightning occurring when we microwave a metallic object - [DataField, ViewVariables(VVAccess.ReadWrite)] + /// Chance of lightning occurring when we microwave a metallic object + /// + [DataField] public float LightningChance = .75f; } diff --git a/Content.Server/Kitchen/Components/ReagentGrinderComponent.cs b/Content.Server/Kitchen/Components/ReagentGrinderComponent.cs index 5bbbe2dc8d..4f4531206c 100644 --- a/Content.Server/Kitchen/Components/ReagentGrinderComponent.cs +++ b/Content.Server/Kitchen/Components/ReagentGrinderComponent.cs @@ -1,6 +1,8 @@ using Content.Shared.Kitchen; using Content.Server.Kitchen.EntitySystems; +using Content.Shared.Construction.Prototypes; using Robust.Shared.Audio; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Kitchen.Components { @@ -13,15 +15,30 @@ namespace Content.Server.Kitchen.Components [Access(typeof(ReagentGrinderSystem)), RegisterComponent] public sealed partial class ReagentGrinderComponent : Component { - [DataField] + [ViewVariables(VVAccess.ReadWrite)] public int StorageMaxEntities = 6; [DataField] - public TimeSpan WorkTime = TimeSpan.FromSeconds(3.5); // Roughly matches the grind/juice sounds. + public int BaseStorageMaxEntities = 4; + + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MachinePartStorageMax = "MatterBin"; + + [DataField] + public int StoragePerPartRating = 4; [DataField] + public TimeSpan WorkTime = TimeSpan.FromSeconds(3.5); // Roughly matches the grind/juice sounds. + + [ViewVariables(VVAccess.ReadWrite)] public float WorkTimeMultiplier = 1; + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MachinePartWorkTime = "Manipulator"; + + [DataField] + public float PartRatingWorkTimerMulitplier = 0.6f; + [DataField] public SoundSpecifier ClickSound { get; set; } = new SoundPathSpecifier("/Audio/Machines/machine_switch.ogg"); diff --git a/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs b/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs index 212383c463..f9e1ae2241 100644 --- a/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs @@ -76,10 +76,12 @@ public override void Initialize() SubscribeLocalEvent(OnPowerChanged); SubscribeLocalEvent(OnAnchorChanged); SubscribeLocalEvent(OnSuicide); + SubscribeLocalEvent(OnRefreshParts); + SubscribeLocalEvent(OnUpgradeExamine); SubscribeLocalEvent(OnSignalReceived); - SubscribeLocalEvent((u, c, m) => Wzhzhzh(u, c, m.Session.AttachedEntity)); + SubscribeLocalEvent((u, c, m) => Wzhzhzh(u, c, m.Actor)); SubscribeLocalEvent(OnEjectMessage); SubscribeLocalEvent(OnEjectIndex); SubscribeLocalEvent(OnSelectTime); @@ -271,6 +273,9 @@ private void OnSolutionChange(Entity ent, ref SolutionContai private void OnContentUpdate(EntityUid uid, MicrowaveComponent component, ContainerModifiedMessage args) // For some reason ContainerModifiedMessage just can't be used at all with Entity. TODO: replace with Entity syntax once that's possible { + if (component.Storage != args.Container) + return; + UpdateUserInterfaceState(uid, component); } @@ -342,6 +347,17 @@ private void OnAnchorChanged(EntityUid uid, MicrowaveComponent component, ref An _container.EmptyContainer(component.Storage); } + private void OnRefreshParts(Entity ent, ref RefreshPartsEvent args) + { + var cookRating = args.PartRatings[ent.Comp.MachinePartCookTimeMultiplier]; + ent.Comp.CookTimeMultiplier = MathF.Pow(ent.Comp.CookTimeScalingConstant, cookRating - 1); + } + + private void OnUpgradeExamine(Entity ent, ref UpgradeExamineEvent args) + { + args.AddPercentageUpgrade("microwave-component-upgrade-cook-time", ent.Comp.CookTimeMultiplier); + } + private void OnSignalReceived(Entity ent, ref SignalReceivedEvent args) { if (args.Port != ent.Comp.OnPort) @@ -355,11 +371,7 @@ private void OnSignalReceived(Entity ent, ref SignalReceived public void UpdateUserInterfaceState(EntityUid uid, MicrowaveComponent component) { - var ui = _userInterface.GetUiOrNull(uid, MicrowaveUiKey.Key); - if (ui == null) - return; - - _userInterface.SetUiState(ui, new MicrowaveUpdateUserInterfaceState( + _userInterface.SetUiState(uid, MicrowaveUiKey.Key, new MicrowaveUpdateUserInterfaceState( GetNetEntityArray(component.Storage.ContainedEntities.ToArray()), HasComp(uid), component.CurrentCookTimeButtonIndex, diff --git a/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs b/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs index e8ee453986..93a15f319d 100644 --- a/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs @@ -1,4 +1,5 @@ using Content.Server.Chemistry.Containers.EntitySystems; +using Content.Server.Construction; using Content.Server.Kitchen.Components; using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; @@ -48,6 +49,8 @@ public override void Initialize() SubscribeLocalEvent((uid, _, _) => UpdateUiState(uid)); SubscribeLocalEvent((EntityUid uid, ReagentGrinderComponent _, ref PowerChangedEvent _) => UpdateUiState(uid)); SubscribeLocalEvent(OnInteractUsing); + SubscribeLocalEvent(OnRefreshParts); + SubscribeLocalEvent(OnUpgradeExamine); SubscribeLocalEvent(OnContainerModified); SubscribeLocalEvent(OnContainerModified); @@ -127,7 +130,7 @@ public override void Update(float frameTime) _solutionContainersSystem.TryAddSolution(containerSoln.Value, solution); } - _userInterfaceSystem.TrySendUiMessage(uid, ReagentGrinderUiKey.Key, + _userInterfaceSystem.ServerSendUiMessage(uid, ReagentGrinderUiKey.Key, new ReagentGrinderWorkCompleteMessage()); UpdateUiState(uid); @@ -197,6 +200,24 @@ private void OnInteractUsing(Entity entity, ref Interac args.Handled = true; } + /// + /// Gotta be efficient, you know? you're saving a whole extra second here and everything. + /// + private void OnRefreshParts(Entity entity, ref RefreshPartsEvent args) + { + var ratingWorkTime = args.PartRatings[entity.Comp.MachinePartWorkTime]; + var ratingStorage = args.PartRatings[entity.Comp.MachinePartStorageMax]; + + entity.Comp.WorkTimeMultiplier = MathF.Pow(entity.Comp.PartRatingWorkTimerMulitplier, ratingWorkTime - 1); + entity.Comp.StorageMaxEntities = entity.Comp.BaseStorageMaxEntities + (int) (entity.Comp.StoragePerPartRating * (ratingStorage - 1)); + } + + private void OnUpgradeExamine(Entity entity, ref UpgradeExamineEvent args) + { + args.AddPercentageUpgrade("reagent-grinder-component-upgrade-work-time", entity.Comp.WorkTimeMultiplier); + args.AddNumberUpgrade("reagent-grinder-component-upgrade-storage", entity.Comp.StorageMaxEntities - entity.Comp.BaseStorageMaxEntities); + } + private void UpdateUiState(EntityUid uid) { ReagentGrinderComponent? grinderComp = null; @@ -228,7 +249,7 @@ private void UpdateUiState(EntityUid uid) GetNetEntityArray(inputContainer.ContainedEntities.ToArray()), containerSolution?.Contents.ToArray() ); - _userInterfaceSystem.TrySetUiState(uid, ReagentGrinderUiKey.Key, state); + _userInterfaceSystem.SetUiState(uid, ReagentGrinderUiKey.Key, state); } private void OnStartMessage(Entity entity, ref ReagentGrinderStartMessage message) @@ -305,7 +326,7 @@ private void DoWork(EntityUid uid, ReagentGrinderComponent reagentGrinder, Grind reagentGrinder.AudioStream = _audioSystem.PlayPvs(sound, uid, AudioParams.Default.WithPitchScale(1 / reagentGrinder.WorkTimeMultiplier)).Value.Entity; //slightly higher pitched - _userInterfaceSystem.TrySendUiMessage(uid, ReagentGrinderUiKey.Key, + _userInterfaceSystem.ServerSendUiMessage(uid, ReagentGrinderUiKey.Key, new ReagentGrinderWorkStartedMessage(program)); } diff --git a/Content.Server/Kitchen/EntitySystems/SharpSystem.cs b/Content.Server/Kitchen/EntitySystems/SharpSystem.cs index 35adf6f4b5..81806a0c81 100644 --- a/Content.Server/Kitchen/EntitySystems/SharpSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/SharpSystem.cs @@ -3,24 +3,17 @@ using Content.Server.Nutrition.EntitySystems; using Content.Shared.Body.Components; using Content.Shared.Administration.Logs; -using Content.Shared.Body.Components; using Content.Shared.Database; using Content.Shared.Interaction; using Content.Shared.Nutrition.Components; -using Content.Server.Nutrition.EntitySystems; using Content.Shared.Popups; using Content.Shared.Storage; using Content.Shared.Verbs; using Content.Shared.Destructible; using Content.Shared.DoAfter; -using Content.Shared.Interaction; using Content.Shared.Kitchen; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; -using Content.Shared.Nutrition.Components; -using Content.Shared.Popups; -using Content.Shared.Storage; -using Content.Shared.Verbs; using Robust.Server.Containers; using Robust.Shared.Random; using Robust.Shared.Utility; diff --git a/Content.Server/Labels/Label/Components/HandLabelerComponent.cs b/Content.Server/Labels/Label/Components/HandLabelerComponent.cs deleted file mode 100644 index 6c96cada9e..0000000000 --- a/Content.Server/Labels/Label/Components/HandLabelerComponent.cs +++ /dev/null @@ -1,19 +0,0 @@ -using Content.Shared.Whitelist; - -namespace Content.Server.Labels.Components -{ - [RegisterComponent] - public sealed partial class HandLabelerComponent : Component - { - [ViewVariables(VVAccess.ReadWrite)] - [DataField("assignedLabel")] - public string AssignedLabel { get; set; } = string.Empty; - - [ViewVariables(VVAccess.ReadWrite)] - [DataField("maxLabelChars")] - public int MaxLabelChars { get; set; } = 50; - - [DataField("whitelist")] - public EntityWhitelist Whitelist = new(); - } -} diff --git a/Content.Server/Labels/Label/HandLabelerSystem.cs b/Content.Server/Labels/Label/HandLabelerSystem.cs index dec7d69759..d52bf26046 100644 --- a/Content.Server/Labels/Label/HandLabelerSystem.cs +++ b/Content.Server/Labels/Label/HandLabelerSystem.cs @@ -1,123 +1,8 @@ -using Content.Server.Labels.Components; -using Content.Server.UserInterface; -using Content.Server.Popups; -using Content.Shared.Administration.Logs; -using Content.Shared.Database; -using Content.Shared.Interaction; -using Content.Shared.Labels; -using Content.Shared.Tag; -using Content.Shared.Verbs; -using JetBrains.Annotations; -using Robust.Server.GameObjects; -using Robust.Shared.Player; +using Content.Shared.Labels.EntitySystems; -namespace Content.Server.Labels -{ - /// - /// A hand labeler system that lets an object apply labels to objects with the . - /// - [UsedImplicitly] - public sealed class HandLabelerSystem : EntitySystem - { - [Dependency] private readonly UserInterfaceSystem _userInterfaceSystem = default!; - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly LabelSystem _labelSystem = default!; - [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; - [Dependency] private readonly TagSystem _tagSystem = default!; - - [ValidatePrototypeId] - private const string PreventTag = "PreventLabel"; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(AfterInteractOn); - SubscribeLocalEvent>(OnUtilityVerb); - // Bound UI subscriptions - SubscribeLocalEvent(OnHandLabelerLabelChanged); - } - - private void OnUtilityVerb(EntityUid uid, HandLabelerComponent handLabeler, GetVerbsEvent args) - { - if (args.Target is not { Valid: true } target || !handLabeler.Whitelist.IsValid(target) || !args.CanAccess - || _tagSystem.HasTag(target, PreventTag)) // DeltaV - Prevent labels on certain items - return; - - string labelerText = handLabeler.AssignedLabel == string.Empty ? Loc.GetString("hand-labeler-remove-label-text") : Loc.GetString("hand-labeler-add-label-text"); - - var verb = new UtilityVerb() - { - Act = () => - { - AddLabelTo(uid, handLabeler, target, out var result); - if (result != null) - _popupSystem.PopupEntity(result, args.User, args.User); - }, - Text = labelerText - }; - - args.Verbs.Add(verb); - } - - private void AfterInteractOn(EntityUid uid, HandLabelerComponent handLabeler, AfterInteractEvent args) - { - if (args.Target is not {Valid: true} target || !handLabeler.Whitelist.IsValid(target) || !args.CanReach - || _tagSystem.HasTag(target, PreventTag)) // DeltaV - Prevent labels on certain items - return; - - AddLabelTo(uid, handLabeler, target, out string? result); - if (result == null) - return; - _popupSystem.PopupEntity(result, args.User, args.User); +namespace Content.Server.Labels.Label; - // Log labeling - _adminLogger.Add(LogType.Action, LogImpact.Low, - $"{ToPrettyString(args.User):user} labeled {ToPrettyString(target):target} with {ToPrettyString(uid):labeler}"); - } - - private void AddLabelTo(EntityUid uid, HandLabelerComponent? handLabeler, EntityUid target, out string? result) - { - if (!Resolve(uid, ref handLabeler)) - { - result = null; - return; - } - - if (handLabeler.AssignedLabel == string.Empty) - { - _labelSystem.Label(target, null); - result = Loc.GetString("hand-labeler-successfully-removed"); - return; - } - - _labelSystem.Label(target, handLabeler.AssignedLabel); - result = Loc.GetString("hand-labeler-successfully-applied"); - } - - private void OnHandLabelerLabelChanged(EntityUid uid, HandLabelerComponent handLabeler, HandLabelerLabelChangedMessage args) - { - if (args.Session.AttachedEntity is not {Valid: true} player) - return; - - var label = args.Label.Trim(); - handLabeler.AssignedLabel = label.Substring(0, Math.Min(handLabeler.MaxLabelChars, label.Length)); - DirtyUI(uid, handLabeler); - - // Log label change - _adminLogger.Add(LogType.Action, LogImpact.Low, - $"{ToPrettyString(player):user} set {ToPrettyString(uid):labeler} to apply label \"{handLabeler.AssignedLabel}\""); - - } - - private void DirtyUI(EntityUid uid, - HandLabelerComponent? handLabeler = null) - { - if (!Resolve(uid, ref handLabeler)) - return; +public sealed class HandLabelerSystem : SharedHandLabelerSystem +{ - _userInterfaceSystem.TrySetUiState(uid, HandLabelerUiKey.Key, - new HandLabelerBoundUserInterfaceState(handLabeler.AssignedLabel)); - } - } } diff --git a/Content.Server/Labels/Label/LabelSystem.cs b/Content.Server/Labels/Label/LabelSystem.cs index 52184fb58f..9d235b488b 100644 --- a/Content.Server/Labels/Label/LabelSystem.cs +++ b/Content.Server/Labels/Label/LabelSystem.cs @@ -54,7 +54,7 @@ private void OnLabelCompMapInit(EntityUid uid, LabelComponent component, MapInit /// intended label text (null to remove) /// label component for resolve /// metadata component for resolve - public void Label(EntityUid uid, string? text, MetaDataComponent? metadata = null, LabelComponent? label = null) + public override void Label(EntityUid uid, string? text, MetaDataComponent? metadata = null, LabelComponent? label = null) { if (!Resolve(uid, ref metadata)) return; diff --git a/Content.Server/Language/Commands/AdminLanguageCommand.cs b/Content.Server/Language/Commands/AdminLanguageCommand.cs index f02d9c7f40..2e7a0b193a 100644 --- a/Content.Server/Language/Commands/AdminLanguageCommand.cs +++ b/Content.Server/Language/Commands/AdminLanguageCommand.cs @@ -3,6 +3,7 @@ using Content.Shared.Language; using Content.Shared.Language.Components; using Content.Shared.Language.Systems; +using Robust.Shared.Prototypes; using Robust.Shared.Toolshed; using Robust.Shared.Toolshed.Syntax; using Robust.Shared.Toolshed.TypeParsers; @@ -62,13 +63,13 @@ public EntityUid RemoveLanguage( } [CommandImplementation("lsspoken")] - public IEnumerable ListSpoken([PipedArgument] EntityUid input) + public IEnumerable> ListSpoken([PipedArgument] EntityUid input) { return Languages.GetSpokenLanguages(input); } [CommandImplementation("lsunderstood")] - public IEnumerable ListUnderstood([PipedArgument] EntityUid input) + public IEnumerable> ListUnderstood([PipedArgument] EntityUid input) { return Languages.GetUnderstoodLanguages(input); } diff --git a/Content.Server/Language/Commands/AdminTranslatorCommand.cs b/Content.Server/Language/Commands/AdminTranslatorCommand.cs index 8a7984bc36..fc8ee02e38 100644 --- a/Content.Server/Language/Commands/AdminTranslatorCommand.cs +++ b/Content.Server/Language/Commands/AdminTranslatorCommand.cs @@ -6,6 +6,7 @@ using Content.Shared.Language.Components.Translators; using Content.Shared.Language.Systems; using Robust.Server.Containers; +using Robust.Shared.Prototypes; using Robust.Shared.Toolshed; using Robust.Shared.Toolshed.Syntax; using Robust.Shared.Toolshed.TypeParsers; @@ -107,7 +108,7 @@ public EntityUid RemoveRequiredLanguage( } [CommandImplementation("lsspoken")] - public IEnumerable ListSpoken([PipedArgument] EntityUid input) + public IEnumerable> ListSpoken([PipedArgument] EntityUid input) { if (!TryGetTranslatorComp(input, out var translator)) return []; @@ -115,7 +116,7 @@ public IEnumerable ListSpoken([PipedArgument] EntityUid input) } [CommandImplementation("lsunderstood")] - public IEnumerable ListUnderstood([PipedArgument] EntityUid input) + public IEnumerable> ListUnderstood([PipedArgument] EntityUid input) { if (!TryGetTranslatorComp(input, out var translator)) return []; @@ -123,7 +124,7 @@ public IEnumerable ListUnderstood([PipedArgument] EntityUid input) } [CommandImplementation("lsrequired")] - public IEnumerable ListRequired([PipedArgument] EntityUid input) + public IEnumerable> ListRequired([PipedArgument] EntityUid input) { if (!TryGetTranslatorComp(input, out var translator)) return []; diff --git a/Content.Server/Language/LanguageKnowledgeComponent.cs b/Content.Server/Language/LanguageKnowledgeComponent.cs new file mode 100644 index 0000000000..da8376f762 --- /dev/null +++ b/Content.Server/Language/LanguageKnowledgeComponent.cs @@ -0,0 +1,23 @@ +using Content.Shared.Language; +using Robust.Shared.Prototypes; + +namespace Content.Server.Language; + +/// +/// Stores data about entities' intrinsic language knowledge. +/// +[RegisterComponent] +public sealed partial class LanguageKnowledgeComponent : Component +{ + /// + /// List of languages this entity can speak without any external tools. + /// + [DataField("speaks", required: true)] + public List> SpokenLanguages = new(); + + /// + /// List of languages this entity can understand without any external tools. + /// + [DataField("understands", required: true)] + public List> UnderstoodLanguages = new(); +} diff --git a/Content.Server/Language/LanguageSystem.Networking.cs b/Content.Server/Language/LanguageSystem.Networking.cs deleted file mode 100644 index 572e2961fd..0000000000 --- a/Content.Server/Language/LanguageSystem.Networking.cs +++ /dev/null @@ -1,78 +0,0 @@ -using Content.Server.Language.Events; -using Content.Server.Mind; -using Content.Shared.Language; -using Content.Shared.Language.Components; -using Content.Shared.Language.Events; -using Content.Shared.Mind; -using Content.Shared.Mind.Components; -using Robust.Shared.Player; - -namespace Content.Server.Language; - -public sealed partial class LanguageSystem -{ - [Dependency] private readonly MindSystem _mind = default!; - - - public void InitializeNet() - { - SubscribeNetworkEvent(OnClientSetLanguage); - SubscribeNetworkEvent((_, session) => SendLanguageStateToClient(session.SenderSession)); - - SubscribeLocalEvent((uid, comp, _) => SendLanguageStateToClient(uid, comp)); - - // Refresh the client's state when its mind hops to a different entity - SubscribeLocalEvent((uid, _, _) => SendLanguageStateToClient(uid)); - SubscribeLocalEvent((_, _, args) => - { - if (args.Mind.Comp.Session != null) - SendLanguageStateToClient(args.Mind.Comp.Session); - }); - } - - - private void OnClientSetLanguage(LanguagesSetMessage message, EntitySessionEventArgs args) - { - if (args.SenderSession.AttachedEntity is not { Valid: true } uid) - return; - - var language = GetLanguagePrototype(message.CurrentLanguage); - if (language == null || !CanSpeak(uid, language.ID)) - return; - - SetLanguage(uid, language.ID); - } - - private void SendLanguageStateToClient(EntityUid uid, LanguageSpeakerComponent? comp = null) - { - // Try to find a mind inside the entity and notify its session - if (!_mind.TryGetMind(uid, out _, out var mindComp) || mindComp.Session == null) - return; - - SendLanguageStateToClient(uid, mindComp.Session, comp); - } - - private void SendLanguageStateToClient(ICommonSession session, LanguageSpeakerComponent? comp = null) - { - // Try to find an entity associated with the session and resolve the languages from it - if (session.AttachedEntity is not { Valid: true } entity) - return; - - SendLanguageStateToClient(entity, session, comp); - } - - // TODO this is really stupid and can be avoided if we just make everything shared... - private void SendLanguageStateToClient(EntityUid uid, ICommonSession session, LanguageSpeakerComponent? component = null) - { - var isUniversal = HasComp(uid); - if (!isUniversal) - Resolve(uid, ref component, logMissing: false); - - // I really don't want to call 3 getter methods here, so we'll just have this slightly hardcoded solution - var message = isUniversal || component == null - ? new LanguagesUpdatedMessage(UniversalPrototype, [UniversalPrototype], [UniversalPrototype]) - : new LanguagesUpdatedMessage(component.CurrentLanguage, component.SpokenLanguages, component.UnderstoodLanguages); - - RaiseNetworkEvent(message, session); - } -} diff --git a/Content.Server/Language/LanguageSystem.cs b/Content.Server/Language/LanguageSystem.cs index e68489e9e2..3ef4caa84d 100644 --- a/Content.Server/Language/LanguageSystem.cs +++ b/Content.Server/Language/LanguageSystem.cs @@ -1,10 +1,10 @@ using System.Linq; -using Content.Server.Language.Events; using Content.Shared.Language; using Content.Shared.Language.Components; using Content.Shared.Language.Events; using Content.Shared.Language.Systems; -using UniversalLanguageSpeakerComponent = Content.Shared.Language.Components.UniversalLanguageSpeakerComponent; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; namespace Content.Server.Language; @@ -13,45 +13,85 @@ public sealed partial class LanguageSystem : SharedLanguageSystem public override void Initialize() { base.Initialize(); - InitializeNet(); - SubscribeLocalEvent(OnInitLanguageSpeaker); + SubscribeLocalEvent(OnInitLanguageSpeaker); + SubscribeLocalEvent(OnGetLanguageState); + SubscribeLocalEvent(OnDetermineUniversalLanguages); + SubscribeNetworkEvent(OnClientSetLanguage); + + SubscribeLocalEvent((uid, _, _) => UpdateEntityLanguages(uid)); + SubscribeLocalEvent((uid, _, _) => UpdateEntityLanguages(uid)); } + #region event handling - #region public api + private void OnInitLanguageSpeaker(Entity ent, ref MapInitEvent args) + { + if (string.IsNullOrEmpty(ent.Comp.CurrentLanguage)) + ent.Comp.CurrentLanguage = ent.Comp.SpokenLanguages.FirstOrDefault(UniversalPrototype); + + UpdateEntityLanguages(ent!); + } - public bool CanUnderstand(EntityUid listener, string language, LanguageSpeakerComponent? component = null) + private void OnGetLanguageState(Entity entity, ref ComponentGetState args) { - if (language == UniversalPrototype || HasComp(listener)) - return true; + args.State = new LanguageSpeakerComponent.State + { + CurrentLanguage = entity.Comp.CurrentLanguage, + SpokenLanguages = entity.Comp.SpokenLanguages, + UnderstoodLanguages = entity.Comp.UnderstoodLanguages + }; + } - if (!Resolve(listener, ref component, logMissing: false)) - return false; + private void OnDetermineUniversalLanguages(Entity entity, ref DetermineEntityLanguagesEvent ev) + { + // We only add it as a spoken language; CanUnderstand checks for ULSC itself. + if (entity.Comp.Enabled) + ev.SpokenLanguages.Add(UniversalPrototype); + } + + + private void OnClientSetLanguage(LanguagesSetMessage message, EntitySessionEventArgs args) + { + if (args.SenderSession.AttachedEntity is not { Valid: true } uid) + return; - return component.UnderstoodLanguages.Contains(language); + var language = GetLanguagePrototype(message.CurrentLanguage); + if (language == null || !CanSpeak(uid, language.ID)) + return; + + SetLanguage(uid, language.ID); } - public bool CanSpeak(EntityUid speaker, string language, LanguageSpeakerComponent? component = null) + #endregion + + #region public api + + public bool CanUnderstand(Entity ent, ProtoId language) { - if (HasComp(speaker)) + if (language == UniversalPrototype || TryComp(ent, out var uni) && uni.Enabled) return true; - if (!Resolve(speaker, ref component, logMissing: false)) + return Resolve(ent, ref ent.Comp, logMissing: false) && ent.Comp.UnderstoodLanguages.Contains(language); + } + + public bool CanSpeak(Entity ent, ProtoId language) + { + if (!Resolve(ent, ref ent.Comp, logMissing: false)) return false; - return component.SpokenLanguages.Contains(language); + return ent.Comp.SpokenLanguages.Contains(language); } /// /// Returns the current language of the given entity, assumes Universal if it's not a language speaker. /// - public LanguagePrototype GetLanguage(EntityUid speaker, LanguageSpeakerComponent? component = null) + public LanguagePrototype GetLanguage(Entity ent) { - if (HasComp(speaker) || !Resolve(speaker, ref component, logMissing: false)) - return Universal; // Serves both as a fallback and uhhh something (TODO: fix this comment) - - if (string.IsNullOrEmpty(component.CurrentLanguage) || !_prototype.TryIndex(component.CurrentLanguage, out var proto)) + if (!Resolve(ent, ref ent.Comp, logMissing: false) + || string.IsNullOrEmpty(ent.Comp.CurrentLanguage) + || !_prototype.TryIndex(ent.Comp.CurrentLanguage, out var proto) + ) return Universal; return proto; @@ -60,43 +100,31 @@ public LanguagePrototype GetLanguage(EntityUid speaker, LanguageSpeakerComponent /// /// Returns the list of languages this entity can speak. /// - /// Typically, checking is sufficient. - public List GetSpokenLanguages(EntityUid uid) + /// This simply returns the value of . + public List> GetSpokenLanguages(EntityUid uid) { - if (HasComp(uid)) - return [UniversalPrototype]; - - if (TryComp(uid, out var component)) - return component.SpokenLanguages; - - return []; + return TryComp(uid, out var component) ? component.SpokenLanguages : []; } /// /// Returns the list of languages this entity can understand. - /// - /// Typically, checking is sufficient. - public List GetUnderstoodLanguages(EntityUid uid) + /// This simply returns the value of . + public List> GetUnderstoodLanguages(EntityUid uid) { - if (HasComp(uid)) - return [UniversalPrototype]; // This one is tricky because... well, they understand all of them, not just one. - - if (TryComp(uid, out var component)) - return component.UnderstoodLanguages; - - return []; + return TryComp(uid, out var component) ? component.UnderstoodLanguages : []; } - public void SetLanguage(EntityUid speaker, string language, LanguageSpeakerComponent? component = null) + public void SetLanguage(Entity ent, ProtoId language) { - if (!CanSpeak(speaker, language) || (HasComp(speaker) && language != UniversalPrototype)) + if (!CanSpeak(ent, language) + || !Resolve(ent, ref ent.Comp) + || ent.Comp.CurrentLanguage == language) return; - if (!Resolve(speaker, ref component) || component.CurrentLanguage == language) - return; - - component.CurrentLanguage = language; - RaiseLocalEvent(speaker, new LanguagesUpdateEvent(), true); + ent.Comp.CurrentLanguage = language; + RaiseLocalEvent(ent, new LanguagesUpdateEvent(), true); + Dirty(ent); } /// @@ -104,14 +132,12 @@ public void SetLanguage(EntityUid speaker, string language, LanguageSpeakerCompo /// public void AddLanguage( EntityUid uid, - string language, + ProtoId language, bool addSpoken = true, - bool addUnderstood = true, - LanguageKnowledgeComponent? knowledge = null, - LanguageSpeakerComponent? speaker = null) + bool addUnderstood = true) { - if (knowledge == null) - knowledge = EnsureComp(uid); + EnsureComp(uid, out var knowledge); + EnsureComp(uid, out var speaker); if (addSpoken && !knowledge.SpokenLanguages.Contains(language)) knowledge.SpokenLanguages.Add(language); @@ -119,30 +145,29 @@ public void AddLanguage( if (addUnderstood && !knowledge.UnderstoodLanguages.Contains(language)) knowledge.UnderstoodLanguages.Add(language); - UpdateEntityLanguages(uid, speaker); + UpdateEntityLanguages((uid, speaker)); } /// /// Removes a language from the respective lists of intrinsically known languages of the given entity. /// public void RemoveLanguage( - EntityUid uid, - string language, + Entity ent, + ProtoId language, bool removeSpoken = true, - bool removeUnderstood = true, - LanguageKnowledgeComponent? knowledge = null, - LanguageSpeakerComponent? speaker = null) + bool removeUnderstood = true) { - if (knowledge == null) - knowledge = EnsureComp(uid); + if (!Resolve(ent, ref ent.Comp, false)) + return; if (removeSpoken) - knowledge.SpokenLanguages.Remove(language); + ent.Comp.SpokenLanguages.Remove(language); if (removeUnderstood) - knowledge.UnderstoodLanguages.Remove(language); + ent.Comp.UnderstoodLanguages.Remove(language); - UpdateEntityLanguages(uid, speaker); + // We don't ensure that the entity has a speaker comp. If it doesn't... Well, woe be the caller of this method. + UpdateEntityLanguages(ent.Owner); } /// @@ -150,15 +175,16 @@ public void RemoveLanguage( /// If not, sets it to the first entry of its SpokenLanguages list, or universal if it's empty. /// /// True if the current language was modified, false otherwise. - public bool EnsureValidLanguage(EntityUid entity, LanguageSpeakerComponent? comp = null) + public bool EnsureValidLanguage(Entity ent) { - if (!Resolve(entity, ref comp)) + if (!Resolve(ent, ref ent.Comp, false)) return false; - if (!comp.SpokenLanguages.Contains(comp.CurrentLanguage)) + if (!ent.Comp.SpokenLanguages.Contains(ent.Comp.CurrentLanguage)) { - comp.CurrentLanguage = comp.SpokenLanguages.FirstOrDefault(UniversalPrototype); - RaiseLocalEvent(entity, new LanguagesUpdateEvent()); + ent.Comp.CurrentLanguage = ent.Comp.SpokenLanguages.FirstOrDefault(UniversalPrototype); + RaiseLocalEvent(ent, new LanguagesUpdateEvent()); + Dirty(ent); return true; } @@ -168,14 +194,14 @@ public bool EnsureValidLanguage(EntityUid entity, LanguageSpeakerComponent? comp /// /// Immediately refreshes the cached lists of spoken and understood languages for the given entity. /// - public void UpdateEntityLanguages(EntityUid entity, LanguageSpeakerComponent? languages = null) + public void UpdateEntityLanguages(Entity ent) { - if (!Resolve(entity, ref languages)) + if (!Resolve(ent, ref ent.Comp, false)) return; var ev = new DetermineEntityLanguagesEvent(); // We add the intrinsically known languages first so other systems can manipulate them easily - if (TryComp(entity, out var knowledge)) + if (TryComp(ent, out var knowledge)) { foreach (var spoken in knowledge.SpokenLanguages) ev.SpokenLanguages.Add(spoken); @@ -184,28 +210,19 @@ public void UpdateEntityLanguages(EntityUid entity, LanguageSpeakerComponent? la ev.UnderstoodLanguages.Add(understood); } - RaiseLocalEvent(entity, ref ev); - - languages.SpokenLanguages.Clear(); - languages.UnderstoodLanguages.Clear(); - - languages.SpokenLanguages.AddRange(ev.SpokenLanguages); - languages.UnderstoodLanguages.AddRange(ev.UnderstoodLanguages); + RaiseLocalEvent(ent, ref ev); - if (!EnsureValidLanguage(entity)) - RaiseLocalEvent(entity, new LanguagesUpdateEvent()); - } + ent.Comp.SpokenLanguages.Clear(); + ent.Comp.UnderstoodLanguages.Clear(); - #endregion + ent.Comp.SpokenLanguages.AddRange(ev.SpokenLanguages); + ent.Comp.UnderstoodLanguages.AddRange(ev.UnderstoodLanguages); - #region event handling - - private void OnInitLanguageSpeaker(EntityUid uid, LanguageSpeakerComponent component, ComponentInit args) - { - if (string.IsNullOrEmpty(component.CurrentLanguage)) - component.CurrentLanguage = component.SpokenLanguages.FirstOrDefault(UniversalPrototype); + // If EnsureValidLanguage returns true, it also raises a LanguagesUpdateEvent, so we try to avoid raising it twice in that case. + if (!EnsureValidLanguage(ent)) + RaiseLocalEvent(ent, new LanguagesUpdateEvent()); - UpdateEntityLanguages(uid, component); + Dirty(ent); } #endregion diff --git a/Content.Server/Language/LanguagesUpdateEvent.cs b/Content.Server/Language/LanguagesUpdateEvent.cs deleted file mode 100644 index 88ea09916b..0000000000 --- a/Content.Server/Language/LanguagesUpdateEvent.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace Content.Server.Language.Events; - -/// -/// Raised on an entity when its list of languages changes. -/// -public sealed class LanguagesUpdateEvent : EntityEventArgs -{ -} diff --git a/Content.Server/Language/TranslatorImplantSystem.cs b/Content.Server/Language/TranslatorImplantSystem.cs index 4d58144481..439389477c 100644 --- a/Content.Server/Language/TranslatorImplantSystem.cs +++ b/Content.Server/Language/TranslatorImplantSystem.cs @@ -1,6 +1,7 @@ using Content.Shared.Implants.Components; using Content.Shared.Language; using Content.Shared.Language.Components; +using Content.Shared.Language.Events; using Robust.Shared.Containers; namespace Content.Server.Language; diff --git a/Content.Server/Language/TranslatorSystem.cs b/Content.Server/Language/TranslatorSystem.cs index 6cdca12440..5cb5c8cd2e 100644 --- a/Content.Server/Language/TranslatorSystem.cs +++ b/Content.Server/Language/TranslatorSystem.cs @@ -8,7 +8,10 @@ using Content.Shared.Language.Systems; using Content.Shared.PowerCell; using Content.Shared.Language.Components.Translators; +using Content.Shared.Language.Events; using Robust.Shared.Containers; +using Robust.Shared.Prototypes; +using Robust.Shared.Timing; namespace Content.Server.Language; @@ -27,7 +30,7 @@ public override void Initialize() SubscribeLocalEvent(OnProxyDetermineLanguages); SubscribeLocalEvent(OnTranslatorInserted); - SubscribeLocalEvent(OnTranslatorRemoved); + SubscribeLocalEvent(OnTranslatorParentChanged); SubscribeLocalEvent(OnTranslatorToggle); SubscribeLocalEvent(OnPowerCellSlotEmpty); } @@ -65,8 +68,7 @@ private void OnProxyDetermineLanguages(EntityUid uid, HoldsTranslatorComponent c private void OnTranslatorInserted(EntityUid translator, HandheldTranslatorComponent component, EntGotInsertedIntoContainerMessage args) { - if (args.Container.Owner is not {Valid: true} holder - || !EntityManager.HasComponent(holder)) + if (args.Container.Owner is not {Valid: true} holder || !HasComp(holder)) return; var intrinsic = EnsureComp(holder); @@ -75,14 +77,19 @@ private void OnTranslatorInserted(EntityUid translator, HandheldTranslatorCompon _language.UpdateEntityLanguages(holder); } - private void OnTranslatorRemoved(EntityUid translator, HandheldTranslatorComponent component, EntGotRemovedFromContainerMessage args) + private void OnTranslatorParentChanged(EntityUid translator, HandheldTranslatorComponent component, EntParentChangedMessage args) { - if (args.Container.Owner is not {Valid: true} holder - || !EntityManager.TryGetComponent(holder, out var intrinsic)) + if (!HasComp(args.OldParent)) return; - intrinsic.Translators.RemoveWhere(it => it.Owner == translator); - _language.UpdateEntityLanguages(holder); + // Update the translator on the next tick - this is necessary because there's a good chance the removal from a container + // Was caused by the player moving the translator within their inventory rather than removing it. + // If that is not the case, then OnProxyDetermineLanguages will remove this translator from HoldsTranslatorComponent.Translators. + Timer.Spawn(0, () => + { + if (Exists(args.OldParent) && HasComp(args.OldParent)) + _language.UpdateEntityLanguages(args.OldParent.Value); + }); } private void OnTranslatorToggle(EntityUid translator, HandheldTranslatorComponent translatorComp, ActivateInWorldEvent args) @@ -103,11 +110,11 @@ private void OnTranslatorToggle(EntityUid translator, HandheldTranslatorComponen { // The first new spoken language added by this translator, or null var firstNewLanguage = translatorComp.SpokenLanguages.FirstOrDefault(it => !languageComp.SpokenLanguages.Contains(it)); - _language.UpdateEntityLanguages(holder, languageComp); + _language.UpdateEntityLanguages(holder); // Update the current language of the entity if necessary if (isEnabled && translatorComp.SetLanguageOnInteract && firstNewLanguage is {}) - _language.SetLanguage(holder, firstNewLanguage, languageComp); + _language.SetLanguage((holder, languageComp), firstNewLanguage); } OnAppearanceChange(translator, translatorComp); @@ -125,6 +132,9 @@ private void OnPowerCellSlotEmpty(EntityUid translator, HandheldTranslatorCompon component.Enabled = false; _powerCell.SetPowerCellDrawEnabled(translator, false); OnAppearanceChange(translator, component); + + if (_containers.TryGetContainingContainer(translator, out var holderCont) && HasComp(holderCont.Owner)) + _language.UpdateEntityLanguages(holderCont.Owner); } private void CopyLanguages(BaseTranslatorComponent from, DetermineEntityLanguagesEvent to, LanguageKnowledgeComponent knowledge) @@ -144,7 +154,7 @@ private void CopyLanguages(BaseTranslatorComponent from, DetermineEntityLanguage /// /// Checks whether any OR all required languages are provided. Used for utility purposes. /// - public static bool CheckLanguagesMatch(ICollection required, ICollection provided, bool requireAll) + public static bool CheckLanguagesMatch(ICollection> required, ICollection> provided, bool requireAll) { if (required.Count == 0) return true; diff --git a/Content.Server/Language/UniversalLanguageSpeakerComponent.cs b/Content.Server/Language/UniversalLanguageSpeakerComponent.cs new file mode 100644 index 0000000000..ee43450335 --- /dev/null +++ b/Content.Server/Language/UniversalLanguageSpeakerComponent.cs @@ -0,0 +1,12 @@ +namespace Content.Server.Language; + +// +// Signifies that this entity can speak and understand any language. +// Applies to such entities as ghosts. +// +[RegisterComponent] +public sealed partial class UniversalLanguageSpeakerComponent : Component +{ + [DataField] + public bool Enabled = true; +} diff --git a/Content.Server/Lathe/LatheSystem.cs b/Content.Server/Lathe/LatheSystem.cs index 06d1b463ec..7448a9b84d 100644 --- a/Content.Server/Lathe/LatheSystem.cs +++ b/Content.Server/Lathe/LatheSystem.cs @@ -8,11 +8,13 @@ using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; using Content.Server.Stack; +using Content.Shared.Atmos; using Content.Shared.UserInterface; using Content.Shared.Database; using Content.Shared.Emag.Components; 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; @@ -34,6 +36,7 @@ public sealed class LatheSystem : SharedLatheSystem [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly UserInterfaceSystem _uiSys = default!; [Dependency] private readonly MaterialStorageSystem _materialStorage = default!; + [Dependency] private readonly ReagentSpeedSystem _reagentSpeed = default!; [Dependency] private readonly StackSystem _stack = default!; [Dependency] private readonly TransformSystem _transform = default!; @@ -185,9 +188,11 @@ public bool TryStartProducing(EntityUid uid, LatheComponent? component = null) var recipe = component.Queue.First(); component.Queue.RemoveAt(0); + var time = _reagentSpeed.ApplySpeed(uid, recipe.CompleteTime); + var lathe = EnsureComp(uid); lathe.StartTime = _timing.CurTime; - lathe.ProductionLength = recipe.CompleteTime * component.TimeMultiplier; + lathe.ProductionLength = time * component.TimeMultiplier; component.CurrentRecipe = recipe; var ev = new LatheStartPrintingEvent(recipe); @@ -226,11 +231,10 @@ public void UpdateUserInterfaceState(EntityUid uid, LatheComponent? component = if (!Resolve(uid, ref component)) return; - var ui = _uiSys.GetUi(uid, LatheUiKey.Key); var producing = component.CurrentRecipe ?? component.Queue.FirstOrDefault(); var state = new LatheUpdateState(GetAvailableRecipes(uid, component), component.Queue, producing); - _uiSys.SetUiState(ui, state); + _uiSys.SetUiState(uid, LatheUiKey.Key, state); } private void OnGetRecipes(EntityUid uid, TechnologyDatabaseComponent component, LatheGetRecipesEvent args) @@ -337,10 +341,10 @@ private void OnLatheQueueRecipeMessage(EntityUid uid, LatheComponent component, else break; } - if (count > 0 && args.Session.AttachedEntity != null) + if (count > 0) { _adminLogger.Add(LogType.Action, LogImpact.Low, - $"{ToPrettyString(args.Session.AttachedEntity.Value):player} queued {count} {recipe.Name} at {ToPrettyString(uid):lathe}"); + $"{ToPrettyString(args.Actor):player} queued {count} {recipe.Name} at {ToPrettyString(uid):lathe}"); } } TryStartProducing(uid, component); diff --git a/Content.Server/Light/Components/EmergencyLightComponent.cs b/Content.Server/Light/Components/EmergencyLightComponent.cs index 20de7f1c03..b49a8c3868 100644 --- a/Content.Server/Light/Components/EmergencyLightComponent.cs +++ b/Content.Server/Light/Components/EmergencyLightComponent.cs @@ -14,7 +14,7 @@ public sealed partial class EmergencyLightComponent : SharedEmergencyLightCompon /// /// Is this emergency light forced on for some reason and cannot be disabled through normal means - /// (i.e. delta alert level?) + /// (i.e. blue alert or higher?) /// public bool ForciblyEnabled = false; diff --git a/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs b/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs index 3fa5237948..f2c4c7dcc5 100644 --- a/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs +++ b/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs @@ -31,9 +31,9 @@ public override void Initialize() SubscribeLocalEvent(OnEmergencyPower); } - private void OnEmergencyPower(EntityUid uid, EmergencyLightComponent component, ref PowerChangedEvent args) + private void OnEmergencyPower(Entity entity, ref PowerChangedEvent args) { - var meta = MetaData(uid); + var meta = MetaData(entity.Owner); // TODO: PowerChangedEvent shouldn't be issued for paused ents but this is the world we live in. if (meta.EntityLifeStage >= EntityLifeStage.Terminating || @@ -42,7 +42,7 @@ private void OnEmergencyPower(EntityUid uid, EmergencyLightComponent component, return; } - UpdateState(uid, component); + UpdateState(entity); } private void OnEmergencyExamine(EntityUid uid, EmergencyLightComponent component, ExaminedEvent args) @@ -111,13 +111,13 @@ private void OnAlertLevelChanged(AlertLevelChangedEvent ev) if (details.ForceEnableEmergencyLights && !light.ForciblyEnabled) { light.ForciblyEnabled = true; - TurnOn(uid, light); + TurnOn((uid, light)); } else if (!details.ForceEnableEmergencyLights && light.ForciblyEnabled) { // Previously forcibly enabled, and we went down an alert level. light.ForciblyEnabled = false; - UpdateState(uid, light); + UpdateState((uid, light)); } } } @@ -135,31 +135,31 @@ public override void Update(float frameTime) var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out _, out var emergencyLight, out var battery)) { - Update(uid, emergencyLight, battery, frameTime); + Update((uid, emergencyLight), battery, frameTime); } } - private void Update(EntityUid uid, EmergencyLightComponent component, BatteryComponent battery, float frameTime) + private void Update(Entity entity, BatteryComponent battery, float frameTime) { - if (component.State == EmergencyLightState.On) + if (entity.Comp.State == EmergencyLightState.On) { - if (!_battery.TryUseCharge(uid, component.Wattage * frameTime, battery)) + if (!_battery.TryUseCharge(entity.Owner, entity.Comp.Wattage * frameTime, battery)) { - SetState(uid, component, EmergencyLightState.Empty); - TurnOff(uid, component); + SetState(entity.Owner, entity.Comp, EmergencyLightState.Empty); + TurnOff(entity); } } else { - _battery.SetCharge(uid, battery.CurrentCharge + component.ChargingWattage * frameTime * component.ChargingEfficiency, battery); + _battery.SetCharge(entity.Owner, battery.CurrentCharge + entity.Comp.ChargingWattage * frameTime * entity.Comp.ChargingEfficiency, battery); if (battery.IsFullyCharged) { - if (TryComp(uid, out var receiver)) + if (TryComp(entity.Owner, out var receiver)) { receiver.Load = 1; } - SetState(uid, component, EmergencyLightState.Full); + SetState(entity.Owner, entity.Comp, EmergencyLightState.Full); } } } @@ -167,35 +167,73 @@ private void Update(EntityUid uid, EmergencyLightComponent component, BatteryCom /// /// Updates the light's power drain, battery drain, sprite and actual light state. /// - public void UpdateState(EntityUid uid, EmergencyLightComponent component) + public void UpdateState(Entity entity) { - if (!TryComp(uid, out var receiver)) + if (!TryComp(entity.Owner, out var receiver)) return; - if (receiver.Powered && !component.ForciblyEnabled) + if (!TryComp(_station.GetOwningStation(entity.Owner), out var alerts)) + return; + + if (alerts.AlertLevels == null || !alerts.AlertLevels.Levels.TryGetValue(alerts.CurrentLevel, out var details)) { - receiver.Load = (int) Math.Abs(component.Wattage); - TurnOff(uid, component); - SetState(uid, component, EmergencyLightState.Charging); + TurnOff(entity, Color.Red); // if no alert, default to off red state + return; } - else + + if (receiver.Powered && !entity.Comp.ForciblyEnabled) // Green alert { - TurnOn(uid, component); - SetState(uid, component, EmergencyLightState.On); + receiver.Load = (int) Math.Abs(entity.Comp.Wattage); + TurnOff(entity, details.Color); + SetState(entity.Owner, entity.Comp, EmergencyLightState.Charging); + } + else if (!receiver.Powered) // If internal battery runs out it will end in off red state + { + TurnOn(entity, Color.Red); + SetState(entity.Owner, entity.Comp, EmergencyLightState.On); + } + else // Powered and enabled + { + TurnOn(entity, details.Color); + SetState(entity.Owner, entity.Comp, EmergencyLightState.On); } } - private void TurnOff(EntityUid uid, EmergencyLightComponent component) + private void TurnOff(Entity entity) { - _pointLight.SetEnabled(uid, false); - _appearance.SetData(uid, EmergencyLightVisuals.On, false); - _ambient.SetAmbience(uid, false); + _pointLight.SetEnabled(entity.Owner, false); + _appearance.SetData(entity.Owner, EmergencyLightVisuals.On, false); + _ambient.SetAmbience(entity.Owner, false); } - private void TurnOn(EntityUid uid, EmergencyLightComponent component) + /// + /// Turn off emergency light and set color. + /// + private void TurnOff(Entity entity, Color color) + { + _pointLight.SetEnabled(entity.Owner, false); + _pointLight.SetColor(entity.Owner, color); + _appearance.SetData(entity.Owner, EmergencyLightVisuals.Color, color); + _appearance.SetData(entity.Owner, EmergencyLightVisuals.On, false); + _ambient.SetAmbience(entity.Owner, false); + } + + private void TurnOn(Entity entity) + { + _pointLight.SetEnabled(entity.Owner, true); + _appearance.SetData(entity.Owner, EmergencyLightVisuals.On, true); + _ambient.SetAmbience(entity.Owner, true); + } + + /// + /// Turn on emergency light and set color. + /// + private void TurnOn(Entity entity, Color color) { - _pointLight.SetEnabled(uid, true); - _appearance.SetData(uid, EmergencyLightVisuals.On, true); - _ambient.SetAmbience(uid, true); + _pointLight.SetEnabled(entity.Owner, true); + _pointLight.SetColor(entity.Owner, color); + _appearance.SetData(entity.Owner, EmergencyLightVisuals.Color, color); + _appearance.SetData(entity.Owner, EmergencyLightVisuals.On, true); + _ambient.SetAmbience(entity.Owner, true); } } diff --git a/Content.Server/Light/EntitySystems/UnpoweredFlashlightSystem.cs b/Content.Server/Light/EntitySystems/UnpoweredFlashlightSystem.cs deleted file mode 100644 index a1ed71ee4c..0000000000 --- a/Content.Server/Light/EntitySystems/UnpoweredFlashlightSystem.cs +++ /dev/null @@ -1,113 +0,0 @@ -using Content.Server.Light.Events; -using Content.Shared.Actions; -using Content.Shared.Decals; -using Content.Shared.Emag.Systems; -using Content.Shared.Light; -using Content.Shared.Light.Components; -using Content.Shared.Mind.Components; -using Content.Shared.Toggleable; -using Content.Shared.Verbs; -using Robust.Shared.Audio; -using Robust.Shared.Audio.Systems; -using Robust.Shared.Prototypes; -using Robust.Shared.Random; -using Robust.Shared.Utility; - -namespace Content.Server.Light.EntitySystems -{ - public sealed class UnpoweredFlashlightSystem : EntitySystem - { - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; - [Dependency] private readonly ActionContainerSystem _actionContainer = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly SharedAudioSystem _audioSystem = default!; - [Dependency] private readonly SharedPointLightSystem _light = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent>(AddToggleLightVerbs); - SubscribeLocalEvent(OnGetActions); - SubscribeLocalEvent(OnToggleAction); - SubscribeLocalEvent(OnMindAdded); - SubscribeLocalEvent(OnGotEmagged); - SubscribeLocalEvent(OnMapInit); - } - - private void OnMapInit(EntityUid uid, UnpoweredFlashlightComponent component, MapInitEvent args) - { - _actionContainer.EnsureAction(uid, ref component.ToggleActionEntity, component.ToggleAction); - Dirty(uid, component); - } - - private void OnToggleAction(EntityUid uid, UnpoweredFlashlightComponent component, ToggleActionEvent args) - { - if (args.Handled) - return; - - ToggleLight(uid, component); - - args.Handled = true; - } - - private void OnGetActions(EntityUid uid, UnpoweredFlashlightComponent component, GetItemActionsEvent args) - { - args.AddAction(ref component.ToggleActionEntity, component.ToggleAction); - } - - private void AddToggleLightVerbs(EntityUid uid, UnpoweredFlashlightComponent component, GetVerbsEvent args) - { - if (!args.CanAccess || !args.CanInteract) - return; - - ActivationVerb verb = new() - { - Text = Loc.GetString("toggle-flashlight-verb-get-data-text"), - Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/light.svg.192dpi.png")), - Act = () => ToggleLight(uid, component), - Priority = -1 // For things like PDA's, Open-UI and other verbs that should be higher priority. - }; - - args.Verbs.Add(verb); - } - - private void OnMindAdded(EntityUid uid, UnpoweredFlashlightComponent component, MindAddedMessage args) - { - _actionsSystem.AddAction(uid, ref component.ToggleActionEntity, component.ToggleAction); - } - - private void OnGotEmagged(EntityUid uid, UnpoweredFlashlightComponent component, ref GotEmaggedEvent args) - { - if (!_light.TryGetLight(uid, out var light)) - return; - - if (_prototypeManager.TryIndex(component.EmaggedColorsPrototype, out var possibleColors)) - { - var pick = _random.Pick(possibleColors.Colors.Values); - _light.SetColor(uid, pick, light); - } - - args.Repeatable = true; - args.Handled = true; - } - - public void ToggleLight(EntityUid uid, UnpoweredFlashlightComponent flashlight) - { - if (!_light.TryGetLight(uid, out var light)) - return; - - flashlight.LightOn = !flashlight.LightOn; - _light.SetEnabled(uid, flashlight.LightOn, light); - - _appearance.SetData(uid, UnpoweredFlashlightVisuals.LightOn, flashlight.LightOn); - - _audioSystem.PlayPvs(flashlight.ToggleSound, uid); - - RaiseLocalEvent(uid, new LightToggleEvent(flashlight.LightOn), true); - _actionsSystem.SetToggled(flashlight.ToggleActionEntity, flashlight.LightOn); - } - } -} diff --git a/Content.Server/Light/Events/LightToggleEvent.cs b/Content.Server/Light/Events/LightToggleEvent.cs deleted file mode 100644 index c7e82ce754..0000000000 --- a/Content.Server/Light/Events/LightToggleEvent.cs +++ /dev/null @@ -1,12 +0,0 @@ -namespace Content.Server.Light.Events -{ - public sealed class LightToggleEvent : EntityEventArgs - { - public bool IsOn; - - public LightToggleEvent(bool isOn) - { - IsOn = isOn; - } - } -} diff --git a/Content.Server/Lock/EntitySystems/ActivatableUIRequiresLockSystem.cs b/Content.Server/Lock/EntitySystems/ActivatableUIRequiresLockSystem.cs index dfe398ebaf..04f8e2eb54 100644 --- a/Content.Server/Lock/EntitySystems/ActivatableUIRequiresLockSystem.cs +++ b/Content.Server/Lock/EntitySystems/ActivatableUIRequiresLockSystem.cs @@ -3,6 +3,7 @@ using Content.Shared.UserInterface; using Content.Shared.Lock; using Content.Server.UserInterface; +using ActivatableUISystem = Content.Shared.UserInterface.ActivatableUISystem; namespace Content.Server.Lock.EntitySystems; public sealed class ActivatableUIRequiresLockSystem : EntitySystem diff --git a/Content.Server/Magic/Components/SpellbookComponent.cs b/Content.Server/Magic/Components/SpellbookComponent.cs deleted file mode 100644 index ebc3c88043..0000000000 --- a/Content.Server/Magic/Components/SpellbookComponent.cs +++ /dev/null @@ -1,35 +0,0 @@ -using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; - -namespace Content.Server.Magic.Components; - -/// -/// Spellbooks for having an entity learn spells as long as they've read the book and it's in their hand. -/// -[RegisterComponent] -public sealed partial class SpellbookComponent : Component -{ - /// - /// List of spells that this book has. This is a combination of the WorldSpells, EntitySpells, and InstantSpells. - /// - [ViewVariables] - public readonly List Spells = new(); - - /// - /// The three fields below is just used for initialization. - /// - [DataField("spells", customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] - [ViewVariables(VVAccess.ReadWrite)] - public Dictionary SpellActions = new(); - - [DataField("learnTime")] - [ViewVariables(VVAccess.ReadWrite)] - public float LearnTime = .75f; - - /// - /// If true, the spell action stays even after the book is removed - /// - [DataField("learnPermanently")] - [ViewVariables(VVAccess.ReadWrite)] - public bool LearnPermanently; -} diff --git a/Content.Server/Magic/MagicSystem.cs b/Content.Server/Magic/MagicSystem.cs index 18602c3de8..c25aada3a0 100644 --- a/Content.Server/Magic/MagicSystem.cs +++ b/Content.Server/Magic/MagicSystem.cs @@ -1,409 +1,23 @@ -using System.Numerics; -using Content.Server.Body.Components; -using Content.Server.Body.Systems; using Content.Server.Chat.Systems; -using Content.Server.Doors.Systems; -using Content.Server.Magic.Components; -using Content.Server.Weapons.Ranged.Systems; -using Content.Shared.Actions; -using Content.Shared.Body.Components; using Content.Shared.Chat; -using Content.Shared.Coordinates.Helpers; -using Content.Shared.DoAfter; -using Content.Shared.Doors.Components; -using Content.Shared.Doors.Systems; -using Content.Shared.Interaction.Events; using Content.Shared.Magic; using Content.Shared.Magic.Events; -using Content.Shared.Maps; -using Content.Shared.Physics; -using Content.Shared.Storage; -using Robust.Server.GameObjects; -using Robust.Shared.Audio; -using Robust.Shared.Audio.Systems; -using Robust.Shared.Map; -using Robust.Shared.Map.Components; -using Robust.Shared.Random; -using Robust.Shared.Serialization.Manager; -using Robust.Shared.Spawners; namespace Content.Server.Magic; -/// -/// Handles learning and using spells (actions) -/// -public sealed class MagicSystem : EntitySystem +public sealed class MagicSystem : SharedMagicSystem { - [Dependency] private readonly ISerializationManager _seriMan = default!; - [Dependency] private readonly IComponentFactory _compFact = default!; - [Dependency] private readonly IMapManager _mapManager = default!; - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly BodySystem _bodySystem = default!; - [Dependency] private readonly EntityLookupSystem _lookup = default!; - [Dependency] private readonly SharedDoorSystem _doorSystem = default!; - [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; - [Dependency] private readonly GunSystem _gunSystem = default!; - [Dependency] private readonly PhysicsSystem _physics = default!; - [Dependency] private readonly SharedTransformSystem _transformSystem = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly ChatSystem _chat = default!; - [Dependency] private readonly ActionContainerSystem _actionContainer = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnInit); - SubscribeLocalEvent(OnUse); - SubscribeLocalEvent(OnDoAfter); - - SubscribeLocalEvent(OnInstantSpawn); - SubscribeLocalEvent(OnTeleportSpell); - SubscribeLocalEvent(OnKnockSpell); - SubscribeLocalEvent(OnSmiteSpell); - SubscribeLocalEvent(OnWorldSpawn); - SubscribeLocalEvent(OnProjectileSpell); - SubscribeLocalEvent(OnChangeComponentsSpell); - } - - private void OnDoAfter(EntityUid uid, SpellbookComponent component, DoAfterEvent args) - { - if (args.Handled || args.Cancelled) - return; - - args.Handled = true; - if (!component.LearnPermanently) - { - _actionsSystem.GrantActions(args.Args.User, component.Spells, uid); - return; - } - - foreach (var (id, charges) in component.SpellActions) - { - // TOOD store spells entity ids on some sort of innate magic user component or something like that. - EntityUid? actionId = null; - if (_actionsSystem.AddAction(args.Args.User, ref actionId, id)) - _actionsSystem.SetCharges(actionId, charges < 0 ? null : charges); - } - - component.SpellActions.Clear(); - } - - private void OnInit(EntityUid uid, SpellbookComponent component, MapInitEvent args) - { - if (component.LearnPermanently) - return; - - foreach (var (id, charges) in component.SpellActions) - { - var spell = _actionContainer.AddAction(uid, id); - if (spell == null) - continue; - - _actionsSystem.SetCharges(spell, charges < 0 ? null : charges); - component.Spells.Add(spell.Value); - } - } - - private void OnUse(EntityUid uid, SpellbookComponent component, UseInHandEvent args) - { - if (args.Handled) - return; - - AttemptLearn(uid, component, args); - - args.Handled = true; - } - - private void AttemptLearn(EntityUid uid, SpellbookComponent component, UseInHandEvent args) - { - var doAfterEventArgs = new DoAfterArgs(EntityManager, args.User, component.LearnTime, new SpellbookDoAfterEvent(), uid, target: uid) - { - BreakOnTargetMove = true, - BreakOnUserMove = true, - BreakOnDamage = true, - NeedHand = true //What, are you going to read with your eyes only?? - }; - - _doAfter.TryStartDoAfter(doAfterEventArgs); - } - - #region Spells - - /// - /// Handles the instant action (i.e. on the caster) attempting to spawn an entity. - /// - private void OnInstantSpawn(InstantSpawnSpellEvent args) - { - if (args.Handled) - return; - - var transform = Transform(args.Performer); - - foreach (var position in GetSpawnPositions(transform, args.Pos)) - { - var ent = Spawn(args.Prototype, position.SnapToGrid(EntityManager, _mapManager)); - - if (args.PreventCollideWithCaster) - { - var comp = EnsureComp(ent); - comp.Uid = args.Performer; - } - } - - Speak(args); - args.Handled = true; - } - - private void OnProjectileSpell(ProjectileSpellEvent ev) - { - if (ev.Handled) - return; - - ev.Handled = true; - Speak(ev); - - var xform = Transform(ev.Performer); - var userVelocity = _physics.GetMapLinearVelocity(ev.Performer); - - foreach (var pos in GetSpawnPositions(xform, ev.Pos)) - { - // If applicable, this ensures the projectile is parented to grid on spawn, instead of the map. - var mapPos = pos.ToMap(EntityManager, _transformSystem); - var spawnCoords = _mapManager.TryFindGridAt(mapPos, out var gridUid, out _) - ? pos.WithEntityId(gridUid, EntityManager) - : new(_mapManager.GetMapEntityId(mapPos.MapId), mapPos.Position); - - var ent = Spawn(ev.Prototype, spawnCoords); - var direction = ev.Target.ToMapPos(EntityManager, _transformSystem) - - spawnCoords.ToMapPos(EntityManager, _transformSystem); - _gunSystem.ShootProjectile(ent, direction, userVelocity, ev.Performer, ev.Performer); - } - } - - private void OnChangeComponentsSpell(ChangeComponentsSpellEvent ev) - { - if (ev.Handled) - return; - ev.Handled = true; - Speak(ev); - - foreach (var toRemove in ev.ToRemove) - { - if (_compFact.TryGetRegistration(toRemove, out var registration)) - RemComp(ev.Target, registration.Type); - } - - foreach (var (name, data) in ev.ToAdd) - { - if (HasComp(ev.Target, data.Component.GetType())) - continue; - - var component = (Component) _compFact.GetComponent(name); - component.Owner = ev.Target; - var temp = (object) component; - _seriMan.CopyTo(data.Component, ref temp); - EntityManager.AddComponent(ev.Target, (Component) temp!); - } - } - - private List GetSpawnPositions(TransformComponent casterXform, MagicSpawnData data) - { - switch (data) - { - case TargetCasterPos: - return new List(1) {casterXform.Coordinates}; - case TargetInFront: - { - // This is shit but you get the idea. - var directionPos = casterXform.Coordinates.Offset(casterXform.LocalRotation.ToWorldVec().Normalized()); - - if (!TryComp(casterXform.GridUid, out var mapGrid)) - return new List(); - - if (!directionPos.TryGetTileRef(out var tileReference, EntityManager, _mapManager)) - return new List(); - - var tileIndex = tileReference.Value.GridIndices; - var coords = mapGrid.GridTileToLocal(tileIndex); - EntityCoordinates coordsPlus; - EntityCoordinates coordsMinus; - - var dir = casterXform.LocalRotation.GetCardinalDir(); - switch (dir) - { - case Direction.North: - case Direction.South: - { - coordsPlus = mapGrid.GridTileToLocal(tileIndex + (1, 0)); - coordsMinus = mapGrid.GridTileToLocal(tileIndex + (-1, 0)); - return new List(3) - { - coords, - coordsPlus, - coordsMinus, - }; - } - case Direction.East: - case Direction.West: - { - coordsPlus = mapGrid.GridTileToLocal(tileIndex + (0, 1)); - coordsMinus = mapGrid.GridTileToLocal(tileIndex + (0, -1)); - return new List(3) - { - coords, - coordsPlus, - coordsMinus, - }; - } - } - - return new List(); - } - default: - throw new ArgumentOutOfRangeException(); - } - } - - /// - /// Teleports the user to the clicked location - /// - /// - private void OnTeleportSpell(TeleportSpellEvent args) - { - if (args.Handled) - return; - - var transform = Transform(args.Performer); - - if (transform.MapID != args.Target.GetMapId(EntityManager)) return; - - _transformSystem.SetCoordinates(args.Performer, args.Target); - transform.AttachToGridOrMap(); - _audio.PlayPvs(args.BlinkSound, args.Performer, AudioParams.Default.WithVolume(args.BlinkVolume)); - Speak(args); - args.Handled = true; + SubscribeLocalEvent(OnSpellSpoken); } - /// - /// Opens all doors within range - /// - /// - private void OnKnockSpell(KnockSpellEvent args) + private void OnSpellSpoken(ref SpeakSpellEvent args) { - if (args.Handled) - return; - - args.Handled = true; - Speak(args); - - //Get the position of the player - var transform = Transform(args.Performer); - var coords = transform.Coordinates; - - _audio.PlayPvs(args.KnockSound, args.Performer, AudioParams.Default.WithVolume(args.KnockVolume)); - - //Look for doors and don't open them if they're already open. - foreach (var entity in _lookup.GetEntitiesInRange(coords, args.Range)) - { - if (TryComp(entity, out var bolts)) - _doorSystem.SetBoltsDown((entity, bolts), false); - - if (TryComp(entity, out var doorComp) && doorComp.State is not DoorState.Open) - _doorSystem.StartOpening(entity); - } - } - - private void OnSmiteSpell(SmiteSpellEvent ev) - { - if (ev.Handled) - return; - - ev.Handled = true; - Speak(ev); - - var direction = Transform(ev.Target).MapPosition.Position - Transform(ev.Performer).MapPosition.Position; - var impulseVector = direction * 10000; - - _physics.ApplyLinearImpulse(ev.Target, impulseVector); - - if (!TryComp(ev.Target, out var body)) - return; - - var ents = _bodySystem.GibBody(ev.Target, true, body); - - if (!ev.DeleteNonBrainParts) - return; - - foreach (var part in ents) - { - // just leaves a brain and clothes - if (HasComp(part) && !HasComp(part)) - { - QueueDel(part); - } - } - } - - /// - /// Spawns entity prototypes from a list within range of click. - /// - /// - /// It will offset mobs after the first mob based on the OffsetVector2 property supplied. - /// - /// The Spawn Spell Event args. - private void OnWorldSpawn(WorldSpawnSpellEvent args) - { - if (args.Handled) - return; - - var targetMapCoords = args.Target; - - SpawnSpellHelper(args.Contents, targetMapCoords, args.Lifetime, args.Offset); - Speak(args); - args.Handled = true; - } - - /// - /// Loops through a supplied list of entity prototypes and spawns them - /// - /// - /// If an offset of 0, 0 is supplied then the entities will all spawn on the same tile. - /// Any other offset will spawn entities starting from the source Map Coordinates and will increment the supplied - /// offset - /// - /// The list of Entities to spawn in - /// Map Coordinates where the entities will spawn - /// Check to see if the entities should self delete - /// A Vector2 offset that the entities will spawn in - private void SpawnSpellHelper(List entityEntries, EntityCoordinates entityCoords, float? lifetime, Vector2 offsetVector2) - { - var getProtos = EntitySpawnCollection.GetSpawns(entityEntries, _random); - - var offsetCoords = entityCoords; - foreach (var proto in getProtos) - { - // TODO: Share this code with instant because they're both doing similar things for positioning. - var entity = Spawn(proto, offsetCoords); - offsetCoords = offsetCoords.Offset(offsetVector2); - - if (lifetime != null) - { - var comp = EnsureComp(entity); - comp.Lifetime = lifetime.Value; - } - } - } - - #endregion - - private void Speak(BaseActionEvent args) - { - if (args is not ISpeakSpell speak || string.IsNullOrWhiteSpace(speak.Speech)) - return; - - _chat.TrySendInGameICMessage(args.Performer, Loc.GetString(speak.Speech), - InGameICChatType.Speak, false); + _chat.TrySendInGameICMessage(args.Performer, Loc.GetString(args.Speech), InGameICChatType.Speak, false); } } diff --git a/Content.Server/MagicMirror/MagicMirrorSystem.cs b/Content.Server/MagicMirror/MagicMirrorSystem.cs index aef6e11d71..6cbfc55cac 100644 --- a/Content.Server/MagicMirror/MagicMirrorSystem.cs +++ b/Content.Server/MagicMirror/MagicMirrorSystem.cs @@ -16,13 +16,12 @@ namespace Content.Server.MagicMirror; /// /// Allows humanoids to change their appearance mid-round. /// -public sealed class MagicMirrorSystem : EntitySystem +public sealed class MagicMirrorSystem : SharedMagicMirrorSystem { [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly DoAfterSystem _doAfterSystem = default!; [Dependency] private readonly MarkingManager _markings = default!; [Dependency] private readonly HumanoidAppearanceSystem _humanoid = default!; - [Dependency] private readonly SharedInteractionSystem _interaction = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; public override void Initialize() @@ -32,7 +31,7 @@ public override void Initialize() Subs.BuiEvents(MagicMirrorUiKey.Key, subs => { - subs.Event(OnUIClosed); + subs.Event(OnUiClosed); subs.Event(OnMagicMirrorSelect); subs.Event(OnTryMagicMirrorChangeColor); subs.Event(OnTryMagicMirrorAddSlot); @@ -45,16 +44,6 @@ public override void Initialize() SubscribeLocalEvent(OnChangeColorDoAfter); SubscribeLocalEvent(OnRemoveSlotDoAfter); SubscribeLocalEvent(OnAddSlotDoAfter); - - SubscribeLocalEvent(OnMirrorRangeCheck); - } - - private void OnMirrorRangeCheck(EntityUid uid, MagicMirrorComponent component, ref BoundUserInterfaceCheckRangeEvent args) - { - if (!Exists(component.Target) || !_interaction.InRangeUnobstructed(uid, component.Target.Value)) - { - args.Result = BoundUserInterfaceRangeResult.Fail; - } } private void OnMagicMirrorInteract(Entity mirror, ref AfterInteractEvent args) @@ -62,10 +51,7 @@ private void OnMagicMirrorInteract(Entity mirror, ref Afte if (!args.CanReach || args.Target == null) return; - if (!TryComp(args.User, out var actor)) - return; - - if (!_uiSystem.TryOpen(mirror.Owner, MagicMirrorUiKey.Key, actor.PlayerSession)) + if (!_uiSystem.TryOpenUi(mirror.Owner, MagicMirrorUiKey.Key, args.User)) return; UpdateInterface(mirror.Owner, args.Target.Value, mirror.Comp); @@ -79,7 +65,7 @@ private void OnOpenUIAttempt(EntityUid uid, MagicMirrorComponent mirror, Activat private void OnMagicMirrorSelect(EntityUid uid, MagicMirrorComponent component, MagicMirrorSelectMessage message) { - if (component.Target is not { } target || message.Session.AttachedEntity is not { } user) + if (component.Target is not { } target) return; _doAfterSystem.Cancel(component.DoAfter); @@ -92,7 +78,7 @@ private void OnMagicMirrorSelect(EntityUid uid, MagicMirrorComponent component, Marking = message.Marking, }; - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, user, component.SelectSlotTime, doAfter, uid, target: target, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, component.SelectSlotTime, doAfter, uid, target: target, used: uid) { DistanceThreshold = SharedInteractionSystem.InteractionRange, BreakOnTargetMove = true, @@ -136,7 +122,7 @@ private void OnSelectSlotDoAfter(EntityUid uid, MagicMirrorComponent component, private void OnTryMagicMirrorChangeColor(EntityUid uid, MagicMirrorComponent component, MagicMirrorChangeColorMessage message) { - if (component.Target is not { } target || message.Session.AttachedEntity is not { } user) + if (component.Target is not { } target) return; _doAfterSystem.Cancel(component.DoAfter); @@ -149,7 +135,7 @@ private void OnTryMagicMirrorChangeColor(EntityUid uid, MagicMirrorComponent com Colors = message.Colors, }; - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, user, component.ChangeSlotTime, doAfter, uid, target: target, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, component.ChangeSlotTime, doAfter, uid, target: target, used: uid) { BreakOnTargetMove = true, BreakOnDamage = true, @@ -191,7 +177,7 @@ private void OnChangeColorDoAfter(EntityUid uid, MagicMirrorComponent component, private void OnTryMagicMirrorRemoveSlot(EntityUid uid, MagicMirrorComponent component, MagicMirrorRemoveSlotMessage message) { - if (component.Target is not { } target || message.Session.AttachedEntity is not { } user) + if (component.Target is not { } target) return; _doAfterSystem.Cancel(component.DoAfter); @@ -203,7 +189,7 @@ private void OnTryMagicMirrorRemoveSlot(EntityUid uid, MagicMirrorComponent comp Slot = message.Slot, }; - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, user, component.RemoveSlotTime, doAfter, uid, target: target, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, component.RemoveSlotTime, doAfter, uid, target: target, used: uid) { DistanceThreshold = SharedInteractionSystem.InteractionRange, BreakOnTargetMove = true, @@ -250,9 +236,6 @@ private void OnTryMagicMirrorAddSlot(EntityUid uid, MagicMirrorComponent compone if (component.Target == null) return; - if (message.Session.AttachedEntity == null) - return; - _doAfterSystem.Cancel(component.DoAfter); component.DoAfter = null; @@ -261,7 +244,7 @@ private void OnTryMagicMirrorAddSlot(EntityUid uid, MagicMirrorComponent compone Category = message.Category, }; - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Session.AttachedEntity.Value, component.AddSlotTime, doAfter, uid, target: component.Target.Value, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, component.AddSlotTime, doAfter, uid, target: component.Target.Value, used: uid) { BreakOnTargetMove = true, BreakOnDamage = true, @@ -324,12 +307,15 @@ private void UpdateInterface(EntityUid mirrorUid, EntityUid targetUid, MagicMirr facialHair, humanoid.MarkingSet.PointsLeft(MarkingCategories.FacialHair) + facialHair.Count); + // TODO: Component states component.Target = targetUid; - _uiSystem.TrySetUiState(mirrorUid, MagicMirrorUiKey.Key, state); + _uiSystem.SetUiState(mirrorUid, MagicMirrorUiKey.Key, state); + Dirty(mirrorUid, component); } - private void OnUIClosed(Entity ent, ref BoundUIClosedEvent args) + private void OnUiClosed(Entity ent, ref BoundUIClosedEvent args) { ent.Comp.Target = null; + Dirty(ent); } } diff --git a/Content.Server/Mail/Components/DelayedItemComponent.cs b/Content.Server/Mail/Components/DelayedItemComponent.cs new file mode 100644 index 0000000000..f73aef85b0 --- /dev/null +++ b/Content.Server/Mail/Components/DelayedItemComponent.cs @@ -0,0 +1,15 @@ +namespace Content.Server.Mail.Components; + +/// +/// A placeholder for another entity, spawned when dropped or placed in someone's hands. +/// Useful for storing instant effect entities, e.g. smoke, in the mail. +/// +[RegisterComponent] +public sealed partial class DelayedItemComponent : Component +{ + /// + /// The entity to replace this when opened or dropped. + /// + [DataField] + public string Item = "None"; +} diff --git a/Content.Server/Mail/Components/MailComponent.cs b/Content.Server/Mail/Components/MailComponent.cs new file mode 100644 index 0000000000..af0bdaa87f --- /dev/null +++ b/Content.Server/Mail/Components/MailComponent.cs @@ -0,0 +1,111 @@ +using System.Threading; +using Robust.Shared.Audio; +using Content.Shared.Storage; +using Content.Shared.Mail; + +namespace Content.Server.Mail.Components; + +[RegisterComponent] +public sealed partial class MailComponent : SharedMailComponent +{ + [DataField] + public string Recipient = "None"; + + [DataField] + public string RecipientJob = "None"; + + /// + /// Why do we not use LockComponent? + /// Because this can't be locked again, + /// and we have special conditions for unlocking, + /// and we don't want to add a verb. + /// + [DataField] + public bool IsLocked = true; + + /// + /// Is this parcel profitable to deliver for the station? + /// + /// + /// The station won't receive any award on delivery if this is false. + /// This is useful for broken fragile packages and packages that were + /// not delivered in time. + /// + [DataField] + public bool IsProfitable = true; + + /// + /// Is this package considered fragile? + /// + /// + /// This can be set to true in the YAML files for a mail delivery to + /// always be Fragile, despite its contents. + /// + [DataField] + public bool IsFragile = false; + + /// + /// Is this package considered priority mail? + /// + /// + /// There will be a timer set for its successful delivery. The + /// station's bank account will be penalized if it is not delivered on + /// time.
+ ///
+ /// This is set to false on successful delivery.
+ ///
+ /// This can be set to true in the YAML files for a mail delivery to always be Priority. + ///
+ [DataField] + public bool IsPriority = false; + + /// + /// Whether this parcel is large. + /// + [DataField] + public bool IsLarge = false; + + /// + /// What will be packaged when the mail is spawned. + /// + [DataField] + public List Contents = new(); + + /// + /// The amount that cargo will be awarded for delivering this mail. + /// + [DataField] + public int Bounty = 750; + + /// + /// Penalty if the mail is destroyed. + /// + [DataField] + public int Penalty = -250; + + /// + /// The sound that's played when the mail's lock is broken. + /// + [DataField] + public SoundSpecifier PenaltySound = new SoundPathSpecifier("/Audio/Machines/Nuke/angry_beep.ogg"); + + /// + /// The sound that's played when the mail's opened. + /// + [DataField] + public SoundSpecifier OpenSound = new SoundPathSpecifier("/Audio/Effects/packetrip.ogg"); + + /// + /// The sound that's played when the mail's lock has been emagged. + /// + [DataField] + public SoundSpecifier EmagSound = new SoundCollectionSpecifier("sparks"); + + /// + /// Whether this component is enabled. + /// Removed when it becomes trash. + /// + public bool IsEnabled = true; + + public CancellationTokenSource? PriorityCancelToken; +} diff --git a/Content.Server/Mail/Components/MailReceiverComponent.cs b/Content.Server/Mail/Components/MailReceiverComponent.cs new file mode 100644 index 0000000000..281a27ea79 --- /dev/null +++ b/Content.Server/Mail/Components/MailReceiverComponent.cs @@ -0,0 +1,4 @@ +namespace Content.Server.Mail.Components; + +[RegisterComponent] +public sealed partial class MailReceiverComponent : Component {} diff --git a/Content.Server/Mail/Components/MailTeleporterComponent.cs b/Content.Server/Mail/Components/MailTeleporterComponent.cs new file mode 100644 index 0000000000..81f58bc7a5 --- /dev/null +++ b/Content.Server/Mail/Components/MailTeleporterComponent.cs @@ -0,0 +1,118 @@ +using Robust.Shared.Audio; + +namespace Content.Server.Mail.Components; + +/// +/// This is for the mail teleporter. +/// Random mail will be teleported to this every few minutes. +/// +[RegisterComponent] +public sealed partial class MailTeleporterComponent : Component +{ + // Not starting accumulator at 0 so mail carriers have some deliveries to make shortly after roundstart. + [DataField] + public float Accumulator = 285f; + + [DataField] + public TimeSpan TeleportInterval = TimeSpan.FromMinutes(5); + + /// + /// The sound that's played when new mail arrives. + /// + [DataField] + public SoundSpecifier TeleportSound = new SoundPathSpecifier("/Audio/Effects/teleport_arrival.ogg"); + + /// + /// The MailDeliveryPoolPrototype that's used to select what mail this + /// teleporter can deliver. + /// + [DataField] + public string MailPool = "RandomDeltaVMailDeliveryPool"; + + /// + /// How many mail candidates do we need per actual delivery sent when + /// the mail goes out? The number of candidates is divided by this number + /// to determine how many deliveries will be teleported in. + /// It does not determine unique recipients. That is random. + /// + [DataField] + public int CandidatesPerDelivery = 8; + + [DataField] + public int MinimumDeliveriesPerTeleport = 1; + + /// + /// Do not teleport any more mail in, if there are at least this many + /// undelivered parcels. + /// + /// + /// Currently this works by checking how many MailComponent entities + /// are sitting on the teleporter's tile.

+ /// + /// It should be noted that if the number of actual deliveries to be + /// made based on the number of candidates divided by candidates per + /// delivery exceeds this number, the teleporter will spawn more mail + /// than this number.

+ /// + /// This is just a simple check to see if anyone's been picking up the + /// mail lately to prevent entity bloat for the sake of performance. + ///
+ [DataField] + public int MaximumUndeliveredParcels = 5; + + /// + /// Any item that breaks or is destroyed in less than this amount of + /// damage is one of the types of items considered fragile. + /// + [DataField] + public int FragileDamageThreshold = 10; + + /// + /// What's the bonus for delivering a fragile package intact? + /// + [DataField] + public int FragileBonus = 100; + + /// + /// What's the malus for failing to deliver a fragile package? + /// + [DataField] + public int FragileMalus = -100; + + /// + /// What's the chance for any one delivery to be marked as priority mail? + /// + [DataField] + public float PriorityChance = 0.1f; + + /// + /// How long until a priority delivery is considered as having failed + /// if not delivered? + /// + [DataField] + public TimeSpan PriorityDuration = TimeSpan.FromMinutes(5); + + /// + /// What's the bonus for delivering a priority package on time? + /// + [DataField] + public int PriorityBonus = 250; + + /// + /// What's the malus for failing to deliver a priority package? + /// + [DataField] + public int PriorityMalus = -250; + + /// + /// What's the bonus for delivering a large package intact? + /// + [DataField] + public int LargeBonus = 1500; + + /// + /// What's the malus for failing to deliver a large package? + /// + [DataField] + public int LargeMalus = -500; +} diff --git a/Content.Server/Mail/Components/StationMailRouterComponent.cs b/Content.Server/Mail/Components/StationMailRouterComponent.cs new file mode 100644 index 0000000000..6f6df1e10b --- /dev/null +++ b/Content.Server/Mail/Components/StationMailRouterComponent.cs @@ -0,0 +1,9 @@ +namespace Content.Server.Mail.Components; + +/// +/// Designates a station as a place for sending and receiving mail. +/// +[RegisterComponent] +public sealed partial class StationMailRouterComponent : Component +{ +} diff --git a/Content.Server/Mail/MailCommands.cs b/Content.Server/Mail/MailCommands.cs new file mode 100644 index 0000000000..390de93fb3 --- /dev/null +++ b/Content.Server/Mail/MailCommands.cs @@ -0,0 +1,142 @@ +using System.Linq; +using Robust.Shared.Console; +using Robust.Shared.Containers; +using Robust.Shared.Prototypes; +using Content.Shared.Administration; +using Content.Server.Administration; +using Content.Server.Mail.Components; +using Content.Server.Mail.Systems; + +namespace Content.Server.Mail; + +[AdminCommand(AdminFlags.Fun)] +public sealed class MailToCommand : IConsoleCommand +{ + public string Command => "mailto"; + public string Description => Loc.GetString("command-mailto-description", ("requiredComponent", nameof(MailReceiverComponent))); + public string Help => Loc.GetString("command-mailto-help", ("command", Command)); + + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IEntitySystemManager _entitySystemManager = default!; + + private readonly string _blankMailPrototype = "MailAdminFun"; + private readonly string _blankLargeMailPrototype = "MailLargeAdminFun"; // Frontier: large mail + private readonly string _container = "storagebase"; + private readonly string _mailContainer = "contents"; + + + public async void Execute(IConsoleShell shell, string argStr, string[] args) + { + if (args.Length < 4) + { + shell.WriteError(Loc.GetString("shell-wrong-arguments-number")); + return; + } + + if (!EntityUid.TryParse(args[0], out var recipientUid)) + { + shell.WriteError(Loc.GetString("shell-entity-uid-must-be-number")); + return; + } + + if (!EntityUid.TryParse(args[1], out var containerUid)) + { + shell.WriteError(Loc.GetString("shell-entity-uid-must-be-number")); + return; + } + + if (!bool.TryParse(args[2], out var isFragile) || !bool.TryParse(args[3], out var isPriority)) + { + shell.WriteError(Loc.GetString("shell-invalid-bool")); + return; + } + + var isLarge = false; + if (args.Length > 4 && !bool.TryParse(args[4], out isLarge)) + { + shell.WriteError(Loc.GetString("shell-invalid-bool")); + return; + } + var mailPrototype = isLarge ? _blankLargeMailPrototype : _blankMailPrototype; + + + var mailSystem = _entitySystemManager.GetEntitySystem(); + var containerSystem = _entitySystemManager.GetEntitySystem(); + + if (!_entityManager.TryGetComponent(recipientUid, out MailReceiverComponent? mailReceiver)) + { + shell.WriteLine(Loc.GetString("command-mailto-no-mailreceiver", ("requiredComponent", nameof(MailReceiverComponent)))); + return; + } + + if (!_prototypeManager.HasIndex(mailPrototype)) + { + shell.WriteLine(Loc.GetString("command-mailto-no-blankmail", ("blankMail", mailPrototype))); + return; + } + + if (!containerSystem.TryGetContainer(containerUid, _container, out var targetContainer)) + { + shell.WriteLine(Loc.GetString("command-mailto-invalid-container", ("requiredContainer", _container))); + return; + } + + if (!mailSystem.TryGetMailRecipientForReceiver(mailReceiver, out MailRecipient? recipient)) + { + shell.WriteLine(Loc.GetString("command-mailto-unable-to-receive")); + return; + } + + if (!mailSystem.TryGetMailTeleporterForReceiver(mailReceiver, out MailTeleporterComponent? teleporterComponent)) + { + shell.WriteLine(Loc.GetString("command-mailto-no-teleporter-found")); + return; + } + + var mailUid = _entityManager.SpawnEntity(mailPrototype, _entityManager.GetComponent(containerUid).Coordinates); + var mailContents = containerSystem.EnsureContainer(mailUid, _mailContainer); + + if (!_entityManager.TryGetComponent(mailUid, out MailComponent? mailComponent)) + { + shell.WriteLine(Loc.GetString("command-mailto-bogus-mail", ("blankMail", mailPrototype), ("requiredMailComponent", nameof(MailComponent)))); + return; + } + + foreach (var entity in targetContainer.ContainedEntities.ToArray()) + containerSystem.Insert(entity, mailContents); + + mailComponent.IsFragile = isFragile; + mailComponent.IsPriority = isPriority; + mailComponent.IsLarge = isLarge; + + mailSystem.SetupMail(mailUid, teleporterComponent, recipient.Value); + + var teleporterQueue = containerSystem.EnsureContainer(teleporterComponent.Owner, "queued"); + containerSystem.Insert(mailUid, teleporterQueue); + shell.WriteLine(Loc.GetString("command-mailto-success", ("timeToTeleport", teleporterComponent.TeleportInterval.TotalSeconds - teleporterComponent.Accumulator))); + } +} + +[AdminCommand(AdminFlags.Fun)] +public sealed class MailNowCommand : IConsoleCommand +{ + public string Command => "mailnow"; + public string Description => Loc.GetString("command-mailnow"); + public string Help => Loc.GetString("command-mailnow-help", ("command", Command)); + + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly IEntitySystemManager _entitySystemManager = default!; + + public async void Execute(IConsoleShell shell, string argStr, string[] args) + { + var entitySystem = _entitySystemManager.GetEntitySystem(); + + foreach (var mailTeleporter in _entityManager.EntityQuery()) + { + mailTeleporter.Accumulator += (float) mailTeleporter.TeleportInterval.TotalSeconds - mailTeleporter.Accumulator; + } + + shell.WriteLine(Loc.GetString("command-mailnow-success")); + } +} diff --git a/Content.Server/Mail/MailConstants.cs b/Content.Server/Mail/MailConstants.cs new file mode 100644 index 0000000000..38d37a1326 --- /dev/null +++ b/Content.Server/Mail/MailConstants.cs @@ -0,0 +1,37 @@ +namespace Content.Server.Mail; + +/// +/// A set of localized strings related to mail entities +/// +public struct MailEntityStrings +{ + public string NameAddressed; + public string DescClose; + public string DescFar; +} + +/// +/// Constants related to mail. +/// +public static class MailConstants +{ + /// + /// Locale strings related to small parcels. + /// + public static readonly MailEntityStrings Mail = new() + { + NameAddressed = "mail-item-name-addressed", + DescClose = "mail-desc-close", + DescFar = "mail-desc-far" + }; + + /// + /// Locale strings related to large packages. + /// + public static readonly MailEntityStrings MailLarge = new() + { + NameAddressed = "mail-large-item-name-addressed", + DescClose = "mail-large-desc-close", + DescFar = "mail-large-desc-far" + }; +} diff --git a/Content.Server/Mail/Systems/DelayedItemSystem.cs b/Content.Server/Mail/Systems/DelayedItemSystem.cs new file mode 100644 index 0000000000..59aaa3aff6 --- /dev/null +++ b/Content.Server/Mail/Systems/DelayedItemSystem.cs @@ -0,0 +1,43 @@ +using Content.Shared.Damage; +using Content.Shared.Hands; +using Robust.Shared.Containers; + +namespace Content.Server.Mail.Systems; + +/// +/// A placeholder for another entity, spawned when taken out of a container, with the placeholder deleted shortly after. +/// Useful for storing instant effect entities, e.g. smoke, in the mail. +/// +public sealed class DelayedItemSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnDropAttempt); + SubscribeLocalEvent(OnHandEquipped); + SubscribeLocalEvent(OnDamageChanged); + SubscribeLocalEvent(OnRemovedFromContainer); + } + + private void OnRemovedFromContainer(EntityUid uid, Components.DelayedItemComponent component, ContainerModifiedMessage args) + { + Spawn(component.Item, Transform(uid).Coordinates); + } + + private void OnHandEquipped(EntityUid uid, Components.DelayedItemComponent component, EquippedHandEvent args) + { + EntityManager.DeleteEntity(uid); + } + + private void OnDropAttempt(EntityUid uid, Components.DelayedItemComponent component, DropAttemptEvent args) + { + EntityManager.DeleteEntity(uid); + } + + private void OnDamageChanged(EntityUid uid, Components.DelayedItemComponent component, DamageChangedEvent args) + { + Spawn(component.Item, Transform(uid).Coordinates); + EntityManager.DeleteEntity(uid); + } +} diff --git a/Content.Server/Mail/Systems/MailSystem.cs b/Content.Server/Mail/Systems/MailSystem.cs new file mode 100644 index 0000000000..e80febd230 --- /dev/null +++ b/Content.Server/Mail/Systems/MailSystem.cs @@ -0,0 +1,756 @@ +using System.Diagnostics.CodeAnalysis; +using System.Linq; +using System.Threading; +using Content.Server.Access.Systems; +using Content.Server.Cargo.Components; +using Content.Server.Cargo.Systems; +using Content.Server.Chat.Systems; +using Content.Server.Chemistry.Containers.EntitySystems; +using Content.Server.Damage.Components; +using Content.Server.Destructible; +using Content.Server.Destructible.Thresholds; +using Content.Server.Destructible.Thresholds.Behaviors; +using Content.Server.Destructible.Thresholds.Triggers; +using Content.Server.Item; +using Content.Server.Mail.Components; +using Content.Server.Mind; +using Content.Server.Popups; +using Content.Server.Power.Components; +using Content.Server.Spawners.EntitySystems; +using Content.Server.Station.Systems; +using Content.Shared.Access; +using Content.Shared.Access.Components; +using Content.Shared.Access.Systems; +using Content.Shared.Chat; +using Content.Shared.Damage; +using Content.Shared.Destructible; +using Content.Shared.Emag.Components; +using Content.Shared.Emag.Systems; +using Content.Shared.Examine; +using Content.Shared.Fluids.Components; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Interaction; +using Content.Shared.Interaction.Events; +using Content.Shared.Mail; +using Content.Shared.Maps; +using Content.Shared.Nutrition.Components; +using Content.Shared.Nutrition.EntitySystems; +using Content.Shared.PDA; +using Content.Shared.Roles; +using Content.Shared.Storage; +using Content.Shared.Tag; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Containers; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; +using Timer = Robust.Shared.Timing.Timer; + +namespace Content.Server.Mail.Systems; + +public sealed class MailSystem : EntitySystem +{ + [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly AccessReaderSystem _accessSystem = default!; + [Dependency] private readonly SharedHandsSystem _handsSystem = default!; + [Dependency] private readonly IdCardSystem _idCardSystem = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly TagSystem _tagSystem = default!; + [Dependency] private readonly CargoSystem _cargoSystem = default!; + [Dependency] private readonly StationSystem _stationSystem = default!; + [Dependency] private readonly ChatSystem _chatSystem = default!; + [Dependency] private readonly OpenableSystem _openable = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly SharedContainerSystem _containerSystem = default!; + [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; + [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!; + [Dependency] private readonly SharedAudioSystem _audioSystem = default!; + [Dependency] private readonly DamageableSystem _damageableSystem = default!; + [Dependency] private readonly MindSystem _mindSystem = default!; + [Dependency] private readonly MetaDataSystem _metaDataSystem = default!; + + // DeltaV - system that keeps track of mail and cargo stats + [Dependency] private readonly LogisticStatsSystem _logisticsStatsSystem = default!; + + private ISawmill _sawmill = default!; + + public override void Initialize() + { + base.Initialize(); + + _sawmill = Logger.GetSawmill("mail"); + + SubscribeLocalEvent(OnSpawnPlayer, after: new[] { typeof(SpawnPointSystem) }); + + SubscribeLocalEvent(OnRemove); + SubscribeLocalEvent(OnUseInHand); + SubscribeLocalEvent(OnAfterInteractUsing); + SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent(OnDestruction); + SubscribeLocalEvent(OnDamage); + SubscribeLocalEvent(OnBreak); + SubscribeLocalEvent(OnMailEmagged); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + foreach (var mailTeleporter in EntityQuery()) + { + if (TryComp(mailTeleporter.Owner, out var power) && !power.Powered) + continue; + + mailTeleporter.Accumulator += frameTime; + if (mailTeleporter.Accumulator < mailTeleporter.TeleportInterval.TotalSeconds) + continue; + + mailTeleporter.Accumulator -= (float) mailTeleporter.TeleportInterval.TotalSeconds; + + SpawnMail(mailTeleporter.Owner, mailTeleporter); + } + } + + /// + /// Dynamically add the MailReceiver component to appropriate entities. + /// + private void OnSpawnPlayer(PlayerSpawningEvent args) + { + if (args.SpawnResult == null + || args.Job == null + || args.Station is not {} station + || !HasComp(station)) + return; + + AddComp(args.SpawnResult.Value); + } + + private void OnRemove(EntityUid uid, MailComponent component, ComponentRemove args) + { + // Make sure the priority timer doesn't run. + if (component.PriorityCancelToken != null) + component.PriorityCancelToken.Cancel(); + } + + /// + /// Try to open the mail. + /// + private void OnUseInHand(EntityUid uid, MailComponent component, UseInHandEvent args) + { + if (!component.IsEnabled) + return; + if (component.IsLocked) + { + _popupSystem.PopupEntity(Loc.GetString("mail-locked"), uid, args.User); + return; + } + OpenMail(uid, component, args.User); + } + + /// + /// Handle logic similar between a normal mail unlock and an emag + /// frying out the lock. + /// + private void UnlockMail(EntityUid uid, MailComponent component) + { + component.IsLocked = false; + UpdateAntiTamperVisuals(uid, false); + + if (component.IsPriority) + { + // This is a successful delivery. Keep the failure timer from triggering. + if (component.PriorityCancelToken != null) + component.PriorityCancelToken.Cancel(); + + // The priority tape is visually considered to be a part of the + // anti-tamper lock, so remove that too. + _appearanceSystem.SetData(uid, MailVisuals.IsPriority, false); + + // The examination code depends on this being false to not show + // the priority tape description anymore. + component.IsPriority = false; + } + } + + /// + /// Check the ID against the mail's lock + /// + private void OnAfterInteractUsing(EntityUid uid, MailComponent component, AfterInteractUsingEvent args) + { + if (!args.CanReach || !component.IsLocked || !TryComp(uid, out var access)) + return; + + IdCardComponent? idCard = null; // We need an ID card. + if (HasComp(args.Used)) // Can we find it in a PDA if the user is using that? + { + _idCardSystem.TryGetIdCard(args.Used, out var pdaID); + idCard = pdaID; + } + + if (HasComp(args.Used)) // Or are they using an id card directly? + idCard = Comp(args.Used); + + if (idCard == null) // Return if we still haven't found an id card. + return; + + if (!HasComp(uid)) + { + if (idCard.FullName != component.Recipient || idCard.JobTitle != component.RecipientJob) + { + _popupSystem.PopupEntity(Loc.GetString("mail-recipient-mismatch"), uid, args.User); + return; + } + + if (!_accessSystem.IsAllowed(uid, args.User)) + { + _popupSystem.PopupEntity(Loc.GetString("mail-invalid-access"), uid, args.User); + return; + } + } + + ExecuteForEachLogisticsStats(uid, (station, logisticStats) => + { + _logisticsStatsSystem.AddOpenedMailEarnings(station, + logisticStats, + component.IsProfitable ? component.Bounty : 0); + }); + UnlockMail(uid, component); + + if (!component.IsProfitable) + { + _popupSystem.PopupEntity(Loc.GetString("mail-unlocked"), uid, args.User); + return; + } + + _popupSystem.PopupEntity(Loc.GetString("mail-unlocked-reward", ("bounty", component.Bounty)), uid, args.User); + + component.IsProfitable = false; + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var station, out var account)) + { + if (_stationSystem.GetOwningStation(uid) != station) + continue; + + _cargoSystem.UpdateBankAccount(station, account, component.Bounty); + } + } + + private void OnExamined(EntityUid uid, MailComponent component, ExaminedEvent args) + { + MailEntityStrings mailEntityStrings = component.IsLarge ? MailConstants.MailLarge : MailConstants.Mail; //Frontier: mail types stored per type (large mail) + if (!args.IsInDetailsRange) + { + args.PushMarkup(Loc.GetString(mailEntityStrings.DescFar)); // Frontier: mail constants struct + return; + } + + args.PushMarkup(Loc.GetString(mailEntityStrings.DescClose, ("name", component.Recipient), ("job", component.RecipientJob))); // Frontier: mail constants struct + + if (component.IsFragile) + args.PushMarkup(Loc.GetString("mail-desc-fragile")); + + if (component.IsPriority) + { + if (component.IsProfitable) + args.PushMarkup(Loc.GetString("mail-desc-priority")); + else + args.PushMarkup(Loc.GetString("mail-desc-priority-inactive")); + } + } + + /// + /// Penalize a station for a failed delivery. + /// + /// + /// This will mark a parcel as no longer being profitable, which will + /// prevent multiple failures on different conditions for the same + /// delivery.

+ /// + /// The standard penalization is breaking the anti-tamper lock, + /// but this allows a delivery to fail for other reasons too + /// while having a generic function to handle different messages. + ///
+ public void PenalizeStationFailedDelivery(EntityUid uid, MailComponent component, string localizationString) + { + if (!component.IsProfitable) + return; + + _chatSystem.TrySendInGameICMessage(uid, Loc.GetString(localizationString, ("credits", component.Penalty)), InGameICChatType.Speak, false); + _audioSystem.PlayPvs(component.PenaltySound, uid); + + component.IsProfitable = false; + + if (component.IsPriority) + _appearanceSystem.SetData(uid, MailVisuals.IsPriorityInactive, true); + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var station, out var account)) + { + if (_stationSystem.GetOwningStation(uid) != station) + continue; + + _cargoSystem.UpdateBankAccount(station, account, component.Penalty); + return; + } + } + + private void OnDestruction(EntityUid uid, MailComponent component, DestructionEventArgs args) + { + if (component.IsLocked) + { + // DeltaV - Tampered mail recorded to logistic stats + ExecuteForEachLogisticsStats(uid, (station, logisticStats) => + { + _logisticsStatsSystem.AddTamperedMailLosses(station, + logisticStats, + component.IsProfitable ? component.Penalty : 0); + }); + + PenalizeStationFailedDelivery(uid, component, "mail-penalty-lock"); + } + + if (component.IsEnabled) + OpenMail(uid, component); + + UpdateAntiTamperVisuals(uid, false); + } + + private void OnDamage(EntityUid uid, MailComponent component, DamageChangedEvent args) + { + if (args.DamageDelta == null || !_containerSystem.TryGetContainer(uid, "contents", out var contents)) + return; + + // Transfer damage to the contents. + // This should be a general-purpose feature for all containers in the future. + foreach (var entity in contents.ContainedEntities.ToArray()) + _damageableSystem.TryChangeDamage(entity, args.DamageDelta); + } + + private void OnBreak(EntityUid uid, MailComponent component, BreakageEventArgs args) + { + _appearanceSystem.SetData(uid, MailVisuals.IsBroken, true); + + if (component.IsFragile) + { + // DeltaV - Broken mail recorded to logistic stats + ExecuteForEachLogisticsStats(uid, (station, logisticStats) => + { + _logisticsStatsSystem.AddDamagedMailLosses(station, + logisticStats, + component.IsProfitable ? component.Penalty : 0); + }); + + PenalizeStationFailedDelivery(uid, component, "mail-penalty-fragile"); + } + } + + private void OnMailEmagged(EntityUid uid, MailComponent component, ref GotEmaggedEvent args) + { + if (!component.IsLocked) + return; + + UnlockMail(uid, component); + + _popupSystem.PopupEntity(Loc.GetString("mail-unlocked-by-emag"), uid, args.UserUid); + + _audioSystem.PlayPvs(component.EmagSound, uid, AudioParams.Default.WithVolume(4)); + component.IsProfitable = false; + args.Handled = true; + } + + /// + /// Returns true if the given entity is considered fragile for delivery. + /// + public bool IsEntityFragile(EntityUid uid, int fragileDamageThreshold) + { + // It takes damage on falling. + if (HasComp(uid)) + return true; + + // It can be spilled easily and has something to spill. + if (HasComp(uid) + && TryComp(uid, out var openable) + && !_openable.IsClosed(uid, null, openable) + && _solutionContainerSystem.PercentFull(uid) > 0) + return true; + + // It might be made of non-reinforced glass. + if (TryComp(uid, out DamageableComponent? damageableComponent) + && damageableComponent.DamageModifierSetId == "Glass") + return true; + + if (!TryComp(uid, out DestructibleComponent? destructibleComp)) + return false; + + // Fallback: It breaks or is destroyed in less than a damage + // threshold dictated by the teleporter. + foreach (var threshold in destructibleComp.Thresholds) + { + if (threshold.Trigger is not DamageTrigger trigger || trigger.Damage >= fragileDamageThreshold) + continue; + + foreach (var behavior in threshold.Behaviors) + { + if (behavior is not DoActsBehavior doActs) + continue; + + if (doActs.Acts.HasFlag(ThresholdActs.Breakage) || doActs.Acts.HasFlag(ThresholdActs.Destruction)) + return true; + } + } + + return false; + } + + public bool TryMatchJobTitleToDepartment(string jobTitle, [NotNullWhen(true)] out string? jobDepartment) + { + foreach (var department in _prototypeManager.EnumeratePrototypes()) + { + foreach (var role in department.Roles) + { + if (!_prototypeManager.TryIndex(role, out JobPrototype? jobPrototype) || jobPrototype.LocalizedName != jobTitle) + continue; + + jobDepartment = department.ID; + return true; + } + } + + jobDepartment = null; + return false; + } + + public bool TryMatchJobTitleToPrototype(string jobTitle, [NotNullWhen(true)] out JobPrototype? jobPrototype) + { + foreach (var job in _prototypeManager.EnumeratePrototypes()) + { + if (job.LocalizedName == jobTitle) + { + jobPrototype = job; + return true; + } + } + + jobPrototype = null; + return false; + } + + /// + /// Handle all the gritty details particular to a new mail entity. + /// + /// + /// This is separate mostly so the unit tests can get to it. + /// + public void SetupMail(EntityUid uid, MailTeleporterComponent component, MailRecipient recipient) + { + var mailComp = EnsureComp(uid); + + var container = _containerSystem.EnsureContainer(uid, "contents"); + foreach (var item in EntitySpawnCollection.GetSpawns(mailComp.Contents, _random)) + { + var entity = EntityManager.SpawnEntity(item, Transform(uid).Coordinates); + if (!_containerSystem.Insert(entity, container)) + { + _sawmill.Error($"Can't insert {ToPrettyString(entity)} into new mail delivery {ToPrettyString(uid)}! Deleting it."); + QueueDel(entity); + } + else if (!mailComp.IsFragile && IsEntityFragile(entity, component.FragileDamageThreshold)) + { + mailComp.IsFragile = true; + } + } + + mailComp.IsPriority = recipient.MayReceivePriorityMail && _random.Prob(component.PriorityChance); + mailComp.RecipientJob = recipient.Job; + mailComp.Recipient = recipient.Name; + + var mailEntityStrings = mailComp.IsLarge ? MailConstants.MailLarge : MailConstants.Mail; + if (mailComp.IsLarge) + { + mailComp.Bounty += component.LargeBonus; + mailComp.Penalty += component.LargeMalus; + } + + if (mailComp.IsFragile) + { + mailComp.Bounty += component.FragileBonus; + mailComp.Penalty += component.FragileMalus; + _appearanceSystem.SetData(uid, MailVisuals.IsFragile, true); + } + + if (mailComp.IsPriority) + { + mailComp.Bounty += component.PriorityBonus; + mailComp.Penalty += component.PriorityMalus; + _appearanceSystem.SetData(uid, MailVisuals.IsPriority, true); + mailComp.PriorityCancelToken = new CancellationTokenSource(); + + Timer.Spawn((int) component.PriorityDuration.TotalMilliseconds, () => + { + // DeltaV - Expired mail recorded to logistic stats + ExecuteForEachLogisticsStats(uid, (station, logisticStats) => + { + _logisticsStatsSystem.AddExpiredMailLosses(station, + logisticStats, + mailComp.IsProfitable ? mailComp.Penalty : 0); + }); + + PenalizeStationFailedDelivery(uid, mailComp, "mail-penalty-expired"); + }, mailComp.PriorityCancelToken.Token); + } + + _appearanceSystem.SetData(uid, MailVisuals.JobIcon, recipient.JobIcon); + + _metaDataSystem.SetEntityName(uid, Loc.GetString(mailEntityStrings.NameAddressed, // Frontier: move constant to MailEntityString + ("recipient", recipient.Name))); + + var accessReader = EnsureComp(uid); + accessReader.AccessLists.Add(recipient.AccessTags); + } + + /// + /// Return the parcels waiting for delivery. + /// + /// The mail teleporter to check. + public List GetUndeliveredParcels(EntityUid uid) + { + // An alternative solution would be to keep a list of the unopened + // parcels spawned by the teleporter and see if they're not carried + // by someone, but this is simple, and simple is good. + List undeliveredParcels = new(); + foreach (var entityInTile in TurfHelpers.GetEntitiesInTile(Transform(uid).Coordinates, LookupFlags.Dynamic | LookupFlags.Sundries)) + { + if (HasComp(entityInTile)) + undeliveredParcels.Add(entityInTile); + } + return undeliveredParcels; + } + + /// + /// Return how many parcels are waiting for delivery. + /// + /// The mail teleporter to check. + public uint GetUndeliveredParcelCount(EntityUid uid) + { + return (uint) GetUndeliveredParcels(uid).Count(); + } + + /// + /// Try to match a mail receiver to a mail teleporter. + /// + public bool TryGetMailTeleporterForReceiver(MailReceiverComponent receiver, [NotNullWhen(true)] out MailTeleporterComponent? teleporterComponent) + { + foreach (var mailTeleporter in EntityQuery()) + { + if (_stationSystem.GetOwningStation(receiver.Owner) != _stationSystem.GetOwningStation(mailTeleporter.Owner)) + continue; + + teleporterComponent = mailTeleporter; + return true; + } + + teleporterComponent = null; + return false; + } + + /// + /// Try to construct a recipient struct for a mail parcel based on a receiver. + /// + public bool TryGetMailRecipientForReceiver(MailReceiverComponent receiver, [NotNullWhen(true)] out MailRecipient? recipient) + { + // Because of the way this works, people are not considered + // candidates for mail if there is no valid PDA or ID in their slot + // or active hand. A better future solution might be checking the + // station records, possibly cross-referenced with the medical crew + // scanner to look for living recipients. TODO + + if (_idCardSystem.TryFindIdCard(receiver.Owner, out var idCard) + && TryComp(idCard.Owner, out var access) + && idCard.Comp.FullName != null + && idCard.Comp.JobTitle != null) + { + var accessTags = access.Tags; + + var mayReceivePriorityMail = !(_mindSystem.GetMind(receiver.Owner) == null); + + recipient = new MailRecipient(idCard.Comp.FullName, + idCard.Comp.JobTitle, + idCard.Comp.JobIcon, + accessTags, + mayReceivePriorityMail); + + return true; + } + + recipient = null; + return false; + } + + /// + /// Get the list of valid mail recipients for a mail teleporter. + /// + public List GetMailRecipientCandidates(EntityUid uid) + { + List candidateList = new(); + + foreach (var receiver in EntityQuery()) + { + if (_stationSystem.GetOwningStation(receiver.Owner) != _stationSystem.GetOwningStation(uid)) + continue; + + if (TryGetMailRecipientForReceiver(receiver, out MailRecipient? recipient)) + candidateList.Add(recipient.Value); + } + + return candidateList; + } + + /// + /// Handle the spawning of all the mail for a mail teleporter. + /// + public void SpawnMail(EntityUid uid, MailTeleporterComponent? component = null) + { + if (!Resolve(uid, ref component)) + { + _sawmill.Error($"Tried to SpawnMail on {ToPrettyString(uid)} without a valid MailTeleporterComponent!"); + return; + } + + if (GetUndeliveredParcelCount(uid) >= component.MaximumUndeliveredParcels) + return; + + var candidateList = GetMailRecipientCandidates(uid); + + if (candidateList.Count <= 0) + { + _sawmill.Error("List of mail candidates was empty!"); + return; + } + + if (!_prototypeManager.TryIndex(component.MailPool, out var pool)) + { + _sawmill.Error($"Can't index {ToPrettyString(uid)}'s MailPool {component.MailPool}!"); + return; + } + + for (int i = 0; + i < component.MinimumDeliveriesPerTeleport + candidateList.Count / component.CandidatesPerDelivery; + i++) + { + var candidate = _random.Pick(candidateList); + var possibleParcels = new Dictionary(pool.Everyone); + + if (TryMatchJobTitleToPrototype(candidate.Job, out JobPrototype? jobPrototype) + && pool.Jobs.TryGetValue(jobPrototype.ID, out Dictionary? jobParcels)) + { + possibleParcels = possibleParcels.Union(jobParcels) + .GroupBy(g => g.Key) + .ToDictionary(pair => pair.Key, pair => pair.First().Value); + } + + if (TryMatchJobTitleToDepartment(candidate.Job, out string? department) + && pool.Departments.TryGetValue(department, out Dictionary? departmentParcels)) + { + possibleParcels = possibleParcels.Union(departmentParcels) + .GroupBy(g => g.Key) + .ToDictionary(pair => pair.Key, pair => pair.First().Value); + } + + var accumulated = 0f; + var randomPoint = _random.NextFloat(possibleParcels.Values.Sum()); + string? chosenParcel = null; + foreach (var (key, weight) in possibleParcels) + { + accumulated += weight; + if (accumulated >= randomPoint) + { + chosenParcel = key; + break; + } + } + + if (chosenParcel == null) + { + _sawmill.Error($"MailSystem wasn't able to find a deliverable parcel for {candidate.Name}, {candidate.Job}!"); + return; + } + + var mail = EntityManager.SpawnEntity(chosenParcel, Transform(uid).Coordinates); + SetupMail(mail, component, candidate); + + _tagSystem.AddTag(mail, "Mail"); // Frontier + } + + if (_containerSystem.TryGetContainer(uid, "queued", out var queued)) + _containerSystem.EmptyContainer(queued); + + _audioSystem.PlayPvs(component.TeleportSound, uid); + } + + public void OpenMail(EntityUid uid, MailComponent? component = null, EntityUid? user = null) + { + if (!Resolve(uid, ref component)) + return; + + _audioSystem.PlayPvs(component.OpenSound, uid); + + if (user != null) + _handsSystem.TryDrop((EntityUid) user); + + if (!_containerSystem.TryGetContainer(uid, "contents", out var contents)) + { + // I silenced this error because it fails non deterministically in tests and doesn't seem to effect anything else. + // _sawmill.Error($"Mail {ToPrettyString(uid)} was missing contents container!"); + return; + } + + foreach (var entity in contents.ContainedEntities.ToArray()) + { + _handsSystem.PickupOrDrop(user, entity); + } + + _tagSystem.AddTag(uid, "Trash"); + _tagSystem.AddTag(uid, "Recyclable"); + component.IsEnabled = false; + UpdateMailTrashState(uid, true); + } + + private void UpdateAntiTamperVisuals(EntityUid uid, bool isLocked) + { + _appearanceSystem.SetData(uid, MailVisuals.IsLocked, isLocked); + } + + private void UpdateMailTrashState(EntityUid uid, bool isTrash) + { + _appearanceSystem.SetData(uid, MailVisuals.IsTrash, isTrash); + } + + // DeltaV - Helper function that executes for each StationLogisticsStatsComponent + // For updating MailMetrics stats + private void ExecuteForEachLogisticsStats(EntityUid uid, + Action action) + { + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var station, out var logisticStats)) + { + if (_stationSystem.GetOwningStation(uid) != station) + continue; + action(station, logisticStats); + } + } +} + +public struct MailRecipient( + string name, + string job, + string jobIcon, + HashSet> accessTags, + bool mayReceivePriorityMail) +{ + public string Name = name; + public string Job = job; + public string JobIcon = jobIcon; + public HashSet> AccessTags = accessTags; + public bool MayReceivePriorityMail = mayReceivePriorityMail; +} diff --git a/Content.Server/Mapping/MappingCommand.cs b/Content.Server/Mapping/MappingCommand.cs index 08f3dcccf9..46534f7059 100644 --- a/Content.Server/Mapping/MappingCommand.cs +++ b/Content.Server/Mapping/MappingCommand.cs @@ -53,7 +53,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } #if DEBUG - shell.WriteError(Loc.GetString("cmd-mapping-warning")); + shell.WriteLine(Loc.GetString("cmd-mapping-warning")); #endif MapId mapId; diff --git a/Content.Server/MassMedia/Systems/NewsSystem.cs b/Content.Server/MassMedia/Systems/NewsSystem.cs index c313b0d4cc..3246de5316 100644 --- a/Content.Server/MassMedia/Systems/NewsSystem.cs +++ b/Content.Server/MassMedia/Systems/NewsSystem.cs @@ -92,15 +92,12 @@ private void OnWriteUiDeleteMessage(Entity ent, ref NewsWri if (msg.ArticleNum >= articles.Count) return; - if (msg.Session.AttachedEntity is not { } actor) - return; - var article = articles[msg.ArticleNum]; - if (CheckDeleteAccess(article, ent, actor)) + if (CheckDeleteAccess(article, ent, msg.Actor)) { _adminLogger.Add( LogType.Chat, LogImpact.Medium, - $"{ToPrettyString(actor):actor} deleted news article {article.Title} by {article.Author}: {article.Content}" + $"{ToPrettyString(msg.Actor):actor} deleted news article {article.Title} by {article.Author}: {article.Content}" ); articles.RemoveAt(msg.ArticleNum); @@ -138,11 +135,8 @@ private void OnWriteUiPublishMessage(Entity ent, ref NewsWr if (!TryGetArticles(ent, out var articles)) return; - if (msg.Session.AttachedEntity is not { } author) - return; - string? authorName = null; - if (_idCardSystem.TryFindIdCard(author, out var idCard)) + if (_idCardSystem.TryFindIdCard(msg.Actor, out var idCard)) authorName = idCard.Comp.FullName; var title = msg.Title.Trim(); @@ -161,7 +155,7 @@ private void OnWriteUiPublishMessage(Entity ent, ref NewsWr _adminLogger.Add( LogType.Chat, LogImpact.Medium, - $"{ToPrettyString(author):actor} created news article {article.Title} by {article.Author}: {article.Content}" + $"{ToPrettyString(msg.Actor):actor} created news article {article.Title} by {article.Author}: {article.Content}" ); articles.Add(article); @@ -245,14 +239,14 @@ private bool TryGetArticles(EntityUid uid, [NotNullWhen(true)] out List ent) { - if (!_ui.TryGetUi(ent, NewsWriterUiKey.Key, out var ui)) + if (!_ui.HasUi(ent, NewsWriterUiKey.Key)) return; if (!TryGetArticles(ent, out var articles)) return; var state = new NewsWriterBoundUserInterfaceState(articles.ToArray(), ent.Comp.PublishEnabled, ent.Comp.NextPublish); - _ui.SetUiState(ui, state); + _ui.SetUiState(ent.Owner, NewsWriterUiKey.Key, state); } private void UpdateReaderUi(Entity ent, EntityUid loaderUid) diff --git a/Content.Server/Materials/MaterialReclaimerSystem.cs b/Content.Server/Materials/MaterialReclaimerSystem.cs index aa24fde44b..de82f12598 100644 --- a/Content.Server/Materials/MaterialReclaimerSystem.cs +++ b/Content.Server/Materials/MaterialReclaimerSystem.cs @@ -1,4 +1,6 @@ using Content.Server.Chemistry.Containers.EntitySystems; +using Content.Server.Chemistry.EntitySystems; +using Content.Server.Construction; using Content.Server.Fluids.EntitySystems; using Content.Server.GameTicking; using Content.Server.Popups; @@ -45,6 +47,8 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent(OnRefreshParts); + SubscribeLocalEvent(OnUpgradeExamine); SubscribeLocalEvent(OnPowerChanged); SubscribeLocalEvent(OnInteractUsing, before: new []{typeof(WiresSystem), typeof(SolutionTransferSystem)}); @@ -56,6 +60,18 @@ private void OnStartup(Entity entity, ref ComponentS _solutionContainer.EnsureSolution(entity.Owner, entity.Comp.SolutionContainerId); } + private void OnUpgradeExamine(Entity entity, ref UpgradeExamineEvent args) + { + args.AddPercentageUpgrade(Loc.GetString("material-reclaimer-upgrade-process-rate"), entity.Comp.MaterialProcessRate / entity.Comp.BaseMaterialProcessRate); + } + + private void OnRefreshParts(Entity entity, ref RefreshPartsEvent args) + { + var rating = args.PartRatings[entity.Comp.MachinePartProcessRate] - 1; + entity.Comp.MaterialProcessRate = entity.Comp.BaseMaterialProcessRate * MathF.Pow(entity.Comp.PartRatingProcessRateMultiplier, rating); + Dirty(entity); + } + private void OnPowerChanged(Entity entity, ref PowerChangedEvent args) { AmbientSound.SetAmbience(entity.Owner, entity.Comp.Enabled && args.Powered); diff --git a/Content.Server/Mech/Components/MechAirComponent.cs b/Content.Server/Mech/Components/MechAirComponent.cs index c533b3d834..d312e1b739 100644 --- a/Content.Server/Mech/Components/MechAirComponent.cs +++ b/Content.Server/Mech/Components/MechAirComponent.cs @@ -1,4 +1,5 @@ using Content.Server.Atmos; +using Content.Shared.Atmos; namespace Content.Server.Mech.Components; diff --git a/Content.Server/Mech/Systems/MechSystem.cs b/Content.Server/Mech/Systems/MechSystem.cs index 976c3867a9..36dce2c9bc 100644 --- a/Content.Server/Mech/Systems/MechSystem.cs +++ b/Content.Server/Mech/Systems/MechSystem.cs @@ -306,15 +306,14 @@ public override void UpdateUserInterface(EntityUid uid, MechComponent? component { EquipmentStates = ev.States }; - var ui = _ui.GetUi(uid, MechUiKey.Key); - _ui.SetUiState(ui, state); + _ui.SetUiState(uid, MechUiKey.Key, state); } public override void BreakMech(EntityUid uid, MechComponent? component = null) { base.BreakMech(uid, component); - _ui.TryCloseAll(uid, MechUiKey.Key); + _ui.CloseUi(uid, MechUiKey.Key); _actionBlocker.UpdateCanMove(uid); } diff --git a/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerComponent.cs b/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerComponent.cs index 61d36f98b9..1358bfbcbb 100644 --- a/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerComponent.cs +++ b/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerComponent.cs @@ -1,4 +1,8 @@ +using System.Threading; +using Content.Shared.Construction.Prototypes; using Content.Shared.Storage; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Medical.BiomassReclaimer { @@ -6,72 +10,111 @@ namespace Content.Server.Medical.BiomassReclaimer public sealed partial class BiomassReclaimerComponent : Component { /// - /// This gets set for each mob it processes. - /// When it hits 0, there is a chance for the reclaimer to either spill blood or throw an item. + /// This gets set for each mob it processes. + /// When it hits 0, there is a chance for the reclaimer to either spill blood or throw an item. /// [ViewVariables] public float RandomMessTimer = 0f; /// - /// The interval for . + /// The interval for . /// - [ViewVariables(VVAccess.ReadWrite), DataField] + [DataField] public TimeSpan RandomMessInterval = TimeSpan.FromSeconds(5); /// - /// This gets set for each mob it processes. - /// When it hits 0, spit out biomass. + /// This gets set for each mob it processes. + /// When it hits 0, spit out biomass. /// [ViewVariables] - public float ProcessingTimer = default; + public float ProcessingTimer; /// - /// Amount of biomass that the mob being processed will yield. - /// This is calculated from the YieldPerUnitMass. - /// Also stores non-integer leftovers. + /// Amount of biomass that the mob being processed will yield. + /// This is calculated from the YieldPerUnitMass. + /// Also stores non-integer leftovers. /// [ViewVariables] - public float CurrentExpectedYield = 0f; + public float CurrentExpectedYield; /// - /// The reagent that will be spilled while processing a mob. + /// The reagent that will be spilled while processing a mob. /// [ViewVariables] public string? BloodReagent; /// - /// Entities that can be randomly spawned while processing a mob. + /// Entities that can be randomly spawned while processing a mob. /// public List SpawnedEntities = new(); /// - /// How many units of biomass it produces for each unit of mass. + /// How many units of biomass it produces for each unit of mass. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public float YieldPerUnitMass = 0.4f; + [ViewVariables(VVAccess.ReadWrite)] + public float YieldPerUnitMass = default; /// - /// How many seconds to take to insert an entity per unit of its mass. + /// The base yield per mass unit when no components are upgraded. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] + public float BaseYieldPerUnitMass = 0.4f; + + /// + /// Machine part whose rating modifies the yield per mass. + /// + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MachinePartYieldAmount = "MatterBin"; + + /// + /// How much the machine part quality affects the yield. + /// Going up a tier will multiply the yield by this amount. + /// + [DataField] + public float PartRatingYieldAmountMultiplier = 1.25f; + + /// + /// How many seconds to take to insert an entity per unit of its mass. + /// + [DataField] public float BaseInsertionDelay = 0.1f; /// - /// How much to multiply biomass yield from botany produce. + /// How much to multiply biomass yield from botany produce. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public float ProduceYieldMultiplier = 0.25f; /// - /// The time it takes to process a mob, per mass. + /// The time it takes to process a mob, per mass. + /// + [ViewVariables(VVAccess.ReadWrite)] + public float ProcessingTimePerUnitMass; + + /// + /// The base time per mass unit that it takes to process a mob + /// when no components are upgraded. + /// + [DataField] + public float BaseProcessingTimePerUnitMass = 0.5f; + + /// + /// The machine part that increses the processing speed. + /// + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MachinePartProcessingSpeed = "Manipulator"; + + /// + /// How much the machine part quality affects the yield. + /// Going up a tier will multiply the speed by this amount. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public float ProcessingTimePerUnitMass = 0.5f; + [DataField] + public float PartRatingSpeedMultiplier = 1.35f; /// - /// Will this refuse to gib a living mob? + /// Will this refuse to gib a living mob? /// - [ViewVariables(VVAccess.ReadWrite), DataField] + [DataField] public bool SafetyEnabled = true; } } diff --git a/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerSystem.cs b/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerSystem.cs index eaf04d64b2..97a758a5ed 100644 --- a/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerSystem.cs +++ b/Content.Server/Medical/BiomassReclaimer/BiomassReclaimerSystem.cs @@ -1,6 +1,7 @@ using System.Numerics; using Content.Server.Body.Components; using Content.Server.Botany.Components; +using Content.Server.Construction; using Content.Server.Fluids.EntitySystems; using Content.Server.Materials; using Content.Server.Power.Components; @@ -99,6 +100,8 @@ public override void Initialize() SubscribeLocalEvent(OnUnanchorAttempt); SubscribeLocalEvent(OnAfterInteractUsing); SubscribeLocalEvent(OnClimbedOn); + SubscribeLocalEvent(OnRefreshParts); + SubscribeLocalEvent(OnUpgradeExamine); SubscribeLocalEvent(OnPowerChanged); SubscribeLocalEvent(OnSuicide); SubscribeLocalEvent(OnDoAfter); @@ -173,6 +176,26 @@ private void OnClimbedOn(Entity reclaimer, ref Climbe StartProcessing(args.Climber, reclaimer); } + private void OnRefreshParts(EntityUid uid, BiomassReclaimerComponent component, RefreshPartsEvent args) + { + var laserRating = args.PartRatings[component.MachinePartProcessingSpeed]; + var manipRating = args.PartRatings[component.MachinePartYieldAmount]; + + // Processing time slopes downwards with part rating. + component.ProcessingTimePerUnitMass = + component.BaseProcessingTimePerUnitMass / MathF.Pow(component.PartRatingSpeedMultiplier, laserRating - 1); + + // Yield slopes upwards with part rating. + component.YieldPerUnitMass = + component.BaseYieldPerUnitMass * MathF.Pow(component.PartRatingYieldAmountMultiplier, manipRating - 1); + } + + private void OnUpgradeExamine(EntityUid uid, BiomassReclaimerComponent component, UpgradeExamineEvent args) + { + args.AddPercentageUpgrade("biomass-reclaimer-component-upgrade-speed", component.BaseProcessingTimePerUnitMass / component.ProcessingTimePerUnitMass); + args.AddPercentageUpgrade("biomass-reclaimer-component-upgrade-biomass-yield", component.YieldPerUnitMass / component.BaseYieldPerUnitMass); + } + private void OnDoAfter(Entity reclaimer, ref ReclaimerDoAfterEvent args) { if (args.Handled diff --git a/Content.Server/Medical/Components/CryoPodAirComponent.cs b/Content.Server/Medical/Components/CryoPodAirComponent.cs index baaa3bcda0..72a10b391e 100644 --- a/Content.Server/Medical/Components/CryoPodAirComponent.cs +++ b/Content.Server/Medical/Components/CryoPodAirComponent.cs @@ -11,5 +11,5 @@ public sealed partial class CryoPodAirComponent : Component ///
[ViewVariables(VVAccess.ReadWrite)] [DataField("gasMixture")] - public GasMixture Air { get; set; } = new(Atmospherics.OneAtmosphere); + public GasMixture Air { get; set; } = new GasMixture(1000f); } diff --git a/Content.Server/Medical/Components/MedicalScannerComponent.cs b/Content.Server/Medical/Components/MedicalScannerComponent.cs index 96de649987..15ca6cd2bd 100644 --- a/Content.Server/Medical/Components/MedicalScannerComponent.cs +++ b/Content.Server/Medical/Components/MedicalScannerComponent.cs @@ -1,5 +1,4 @@ using Content.Shared.Construction.Prototypes; -using Content.Shared.DragDrop; using Content.Shared.MedicalScanner; using Robust.Shared.Containers; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; @@ -13,10 +12,15 @@ public sealed partial class MedicalScannerComponent : SharedMedicalScannerCompon public ContainerSlot BodyContainer = default!; public EntityUid? ConnectedConsole; - [DataField, ViewVariables(VVAccess.ReadWrite)] + [ViewVariables(VVAccess.ReadWrite)] public float CloningFailChanceMultiplier = 1f; - - // Nyano, needed for Metem Machine. + public float MetemKarmaBonus = 0.25f; + + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MachinePartCloningFailChance = "Capacitor"; + + [DataField] + public float PartRatingFailMultiplier = 0.75f; } } diff --git a/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleSystem.cs b/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleSystem.cs index ff02b9cbdf..a53df6dbae 100644 --- a/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleSystem.cs +++ b/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleSystem.cs @@ -58,7 +58,7 @@ private void UpdateUserInterface(EntityUid uid, CrewMonitoringConsoleComponent? if (!Resolve(uid, ref component)) return; - if (!_uiSystem.TryGetUi(uid, CrewMonitoringUIKey.Key, out var bui)) + if (!_uiSystem.IsUiOpen(uid, CrewMonitoringUIKey.Key)) return; // The grid must have a NavMapComponent to visualize the map in the UI @@ -69,6 +69,6 @@ private void UpdateUserInterface(EntityUid uid, CrewMonitoringConsoleComponent? // Update all sensors info var allSensors = component.ConnectedSensors.Values.ToList(); - _uiSystem.SetUiState(bui, new CrewMonitoringState(allSensors)); + _uiSystem.SetUiState(uid, CrewMonitoringUIKey.Key, new CrewMonitoringState(allSensors)); } } diff --git a/Content.Server/Medical/CryoPodSystem.cs b/Content.Server/Medical/CryoPodSystem.cs index bcacd2f505..e693274fa3 100644 --- a/Content.Server/Medical/CryoPodSystem.cs +++ b/Content.Server/Medical/CryoPodSystem.cs @@ -13,6 +13,7 @@ using Content.Server.NodeContainer.Nodes; using Content.Server.Power.Components; using Content.Server.Temperature.Components; +using Content.Shared.Atmos; using Content.Shared.UserInterface; using Content.Shared.Chemistry; using Content.Shared.Chemistry.Components; @@ -194,7 +195,8 @@ private void OnActivateUI(Entity entity, ref AfterActivatableU healthAnalyzer.ScannedEntity = entity.Comp.BodyContainer.ContainedEntity; } - _userInterfaceSystem.TrySendUiMessage( + // TODO: This should be a state my dude + _userInterfaceSystem.ServerSendUiMessage( entity.Owner, HealthAnalyzerUiKey.Key, new HealthAnalyzerScannedUserMessage(GetNetEntity(entity.Comp.BodyContainer.ContainedEntity), @@ -247,7 +249,7 @@ private void OnPowerChanged(Entity entity, ref PowerChangedEve else { RemComp(entity); - _uiSystem.TryCloseAll(entity.Owner, HealthAnalyzerUiKey.Key); + _uiSystem.CloseUi(entity.Owner, HealthAnalyzerUiKey.Key); } UpdateAppearance(entity.Owner, entity.Comp); } @@ -277,10 +279,17 @@ private void OnGasAnalyzed(Entity entity, ref GasAnalyzerScanE if (!TryComp(entity, out CryoPodAirComponent? cryoPodAir)) return; - args.GasMixtures ??= new Dictionary { { Name(entity.Owner), cryoPodAir.Air } }; + args.GasMixtures ??= new List<(string, GasMixture?)>(); + args.GasMixtures.Add((Name(entity.Owner), cryoPodAir.Air)); // If it's connected to a port, include the port side - if (_nodeContainer.TryGetNode(entity.Owner, entity.Comp.PortName, out PipeNode? port)) - args.GasMixtures.Add(entity.Comp.PortName, port.Air); + // multiply by volume fraction to make sure to send only the gas inside the analyzed pipe element, not the whole pipe system + if (_nodeContainer.TryGetNode(entity.Owner, entity.Comp.PortName, out PipeNode? port) && port.Air.Volume != 0f) + { + var portAirLocal = port.Air.Clone(); + portAirLocal.Multiply(port.Volume / port.Air.Volume); + portAirLocal.Volume = port.Volume; + args.GasMixtures.Add((entity.Comp.PortName, portAirLocal)); + } } private void OnEjected(Entity cryoPod, ref EntRemovedFromContainerMessage args) @@ -291,7 +300,7 @@ private void OnEjected(Entity cryoPod, ref EntRemovedFromConta } // if body is ejected - no need to display health-analyzer - _uiSystem.TryCloseAll(cryoPod.Owner, HealthAnalyzerUiKey.Key); + _uiSystem.CloseUi(cryoPod.Owner, HealthAnalyzerUiKey.Key); } #endregion diff --git a/Content.Server/Medical/HealthAnalyzerSystem.cs b/Content.Server/Medical/HealthAnalyzerSystem.cs index 489ba9ac81..76616ac801 100644 --- a/Content.Server/Medical/HealthAnalyzerSystem.cs +++ b/Content.Server/Medical/HealthAnalyzerSystem.cs @@ -129,10 +129,10 @@ private void OnDropped(Entity uid, ref DroppedEvent arg private void OpenUserInterface(EntityUid user, EntityUid analyzer) { - if (!TryComp(user, out var actor) || !_uiSystem.TryGetUi(analyzer, HealthAnalyzerUiKey.Key, out var ui)) + if (!_uiSystem.HasUi(analyzer, HealthAnalyzerUiKey.Key)) return; - _uiSystem.OpenUi(ui, actor.PlayerSession); + _uiSystem.OpenUi(analyzer, HealthAnalyzerUiKey.Key, user); } /// @@ -173,7 +173,7 @@ private void StopAnalyzingEntity(Entity healthAnalyzer, /// True makes the UI show ACTIVE, False makes the UI show INACTIVE public void UpdateScannedUser(EntityUid healthAnalyzer, EntityUid target, bool scanMode) { - if (!_uiSystem.TryGetUi(healthAnalyzer, HealthAnalyzerUiKey.Key, out var ui)) + if (!_uiSystem.HasUi(healthAnalyzer, HealthAnalyzerUiKey.Key)) return; if (!HasComp(target)) @@ -195,9 +195,7 @@ public void UpdateScannedUser(EntityUid healthAnalyzer, EntityUid target, bool s bleeding = bloodstream.BleedAmount > 0; } - - - _uiSystem.SendUiMessage(ui, new HealthAnalyzerScannedUserMessage( + _uiSystem.ServerSendUiMessage(healthAnalyzer, HealthAnalyzerUiKey.Key, new HealthAnalyzerScannedUserMessage( GetNetEntity(target), bodyTemperature, bloodAmount, diff --git a/Content.Server/Medical/MedicalScannerSystem.cs b/Content.Server/Medical/MedicalScannerSystem.cs index a6ce43c408..ab6918e373 100644 --- a/Content.Server/Medical/MedicalScannerSystem.cs +++ b/Content.Server/Medical/MedicalScannerSystem.cs @@ -7,6 +7,7 @@ using Content.Shared.Verbs; using Robust.Shared.Containers; using Content.Server.Cloning.Components; +using Content.Server.Construction; using Content.Server.DeviceLinking.Systems; using Content.Shared.DeviceLinking.Events; using Content.Server.Power.EntitySystems; @@ -44,6 +45,8 @@ public override void Initialize() SubscribeLocalEvent(OnDragDropOn); SubscribeLocalEvent(OnPortDisconnected); SubscribeLocalEvent(OnAnchorChanged); + SubscribeLocalEvent(OnRefreshParts); + SubscribeLocalEvent(OnUpgradeExamine); SubscribeLocalEvent(OnCanDragDropOn); } @@ -220,5 +223,17 @@ public void EjectBody(EntityUid uid, MedicalScannerComponent? scannerComponent) _climbSystem.ForciblySetClimbing(contained, uid); UpdateAppearance(uid, scannerComponent); } + + private void OnRefreshParts(EntityUid uid, MedicalScannerComponent component, RefreshPartsEvent args) + { + var ratingFail = args.PartRatings[component.MachinePartCloningFailChance]; + + component.CloningFailChanceMultiplier = MathF.Pow(component.PartRatingFailMultiplier, ratingFail - 1); + } + + private void OnUpgradeExamine(EntityUid uid, MedicalScannerComponent component, UpgradeExamineEvent args) + { + args.AddPercentageUpgrade("medical-scanner-upgrade-cloning", component.CloningFailChanceMultiplier); + } } } diff --git a/Content.Server/Medical/PenLightSystem.cs b/Content.Server/Medical/PenLightSystem.cs index f48a84d047..29cb4888eb 100644 --- a/Content.Server/Medical/PenLightSystem.cs +++ b/Content.Server/Medical/PenLightSystem.cs @@ -1,4 +1,5 @@ using Content.Server.DoAfter; +using Content.Server.Popups; using Content.Server.PowerCell; using Content.Shared.Damage; using Content.Shared.DoAfter; @@ -7,6 +8,7 @@ using Content.Shared.Eye.Blinding.Components; using Content.Shared.Interaction; using Content.Shared.Medical; +using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.Traits.Assorted.Components; using Robust.Server.GameObjects; @@ -22,7 +24,9 @@ public sealed class PenLightSystem : EntitySystem [Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly DoAfterSystem _doAfter = default!; [Dependency] private readonly PowerCellSystem _powerCell = default!; + [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; + /// public override void Initialize() { @@ -30,20 +34,23 @@ public override void Initialize() SubscribeLocalEvent(OnDoAfter); } - private void OnAfterInteract(EntityUid uid, PenLightComponent component, AfterInteractEvent args) + private void OnAfterInteract(EntityUid uid, PenLightComponent component, ref AfterInteractEvent args) { - if (args.Handled - || args.Target is not { } target) + if (args.Handled + || args.Target is not {} target + || target == null + || !args.CanReach + || !HasComp(target) + || !_powerCell.HasDrawCharge(uid, user: args.User)) return; - args.Handled = TryStartExam(uid, target, args.User, component); } private void OnDoAfter(Entity uid, ref PenLightDoAfterEvent args) { - if (args.Handled - || args.Cancelled - || args.Target == null + if (args.Handled + || args.Cancelled + || args.Target == null || !_powerCell.HasDrawCharge(uid, user: args.User)) return; @@ -52,6 +59,13 @@ private void OnDoAfter(Entity uid, ref PenLightDoAfterEvent a args.Handled = true; } + /// + /// Checks if the PointLight component is enabled. + /// + private bool IsLightEnabled(EntityUid uid) + { + return TryComp(uid, out var pointLight) && pointLight.Enabled; + } /// /// Actually handles the exam interaction. @@ -61,6 +75,18 @@ public bool TryStartExam(EntityUid uid, EntityUid target, EntityUid user, PenLig if (!Resolve(uid, ref component)) return false; + if (!IsLightEnabled(uid)) + { + if (user != null) + _popup.PopupEntity(Loc.GetString("penlight-off"), uid, user); + return false; + } + // can't examine your own eyes, dingus + if (user == target) + { + _popup.PopupEntity(Loc.GetString("penlight-cannot-examine-self"), uid, user); + return false; + } return _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, user, component.ExamSpeed, new PenLightDoAfterEvent(), uid, target, uid) { @@ -73,11 +99,11 @@ public bool TryStartExam(EntityUid uid, EntityUid target, EntityUid user, PenLig } private void OpenUserInterface(EntityUid user, EntityUid penlight) { - if (!TryComp(user, out var actor) - || !_uiSystem.TryGetUi(penlight, PenLightUiKey.Key, out var ui)) + if (!TryComp(user, out var actor) + || !_uiSystem.TryGetOpenUi(penlight, PenLightUiKey.Key, out var ui)) return; - _uiSystem.OpenUi(ui, actor.PlayerSession); + _uiSystem.OpenUi(ui.Owner, ui.UiKey, actor.PlayerSession); } /// @@ -85,9 +111,11 @@ private void OpenUserInterface(EntityUid user, EntityUid penlight) /// private void Diagnose(EntityUid penlight, EntityUid target) { - if (!_uiSystem.TryGetUi(penlight, PenLightUiKey.Key, out var ui) - || !HasComp(target)) + if (!_uiSystem.TryGetOpenUi(penlight, PenLightUiKey.Key, out var ui) + || !HasComp(target) + || !HasComp(target)) return; + // Blind var blind = _entityManager.HasComponent(target); @@ -107,12 +135,16 @@ private void Diagnose(EntityUid penlight, EntityUid target) // Healthy var healthy = !(blind || drunk || eyeDamage || seeingRainbows); - _uiSystem.SendUiMessage(ui, new PenLightUserMessage(GetNetEntity(target), - blind, - drunk, - eyeDamage, - healthy, - seeingRainbows - )); + _uiSystem.ServerSendUiMessage( + ui.Owner, + ui.UiKey, + new PenLightUserMessage(GetNetEntity(target), + blind, + drunk, + eyeDamage, + healthy, + seeingRainbows + ) + ); } } diff --git a/Content.Server/Medical/Stethoscope/StethoscopeSystem.cs b/Content.Server/Medical/Stethoscope/StethoscopeSystem.cs index 9521c14f2e..96bfc7c904 100644 --- a/Content.Server/Medical/Stethoscope/StethoscopeSystem.cs +++ b/Content.Server/Medical/Stethoscope/StethoscopeSystem.cs @@ -3,11 +3,10 @@ using Content.Server.Medical.Stethoscope.Components; using Content.Server.Popups; using Content.Shared.Actions; -using Content.Shared.Clothing.Components; +using Content.Shared.Clothing; using Content.Shared.Damage; using Content.Shared.DoAfter; using Content.Shared.FixedPoint; -using Content.Shared.Inventory.Events; using Content.Shared.Medical; using Content.Shared.Medical.Stethoscope; using Content.Shared.Mobs.Components; @@ -26,8 +25,8 @@ public sealed class StethoscopeSystem : EntitySystem public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnEquipped); - SubscribeLocalEvent(OnUnequipped); + SubscribeLocalEvent(OnEquipped); + SubscribeLocalEvent(OnUnequipped); SubscribeLocalEvent>(AddStethoscopeVerb); SubscribeLocalEvent(OnGetActions); SubscribeLocalEvent(OnStethoscopeAction); @@ -37,26 +36,20 @@ public override void Initialize() /// /// Add the component the verb event subs to if the equippee is wearing the stethoscope. /// - private void OnEquipped(EntityUid uid, StethoscopeComponent component, GotEquippedEvent args) + private void OnEquipped(EntityUid uid, StethoscopeComponent component, ref ClothingGotEquippedEvent args) { - if (!TryComp(uid, out var clothing)) - return; - // Is the clothing in its actual slot? - if (!clothing.Slots.HasFlag(args.SlotFlags)) - return; - component.IsActive = true; - var wearingComp = EnsureComp(args.Equipee); + var wearingComp = EnsureComp(args.Wearer); wearingComp.Stethoscope = uid; } - private void OnUnequipped(EntityUid uid, StethoscopeComponent component, GotUnequippedEvent args) + private void OnUnequipped(EntityUid uid, StethoscopeComponent component, ref ClothingGotUnequippedEvent args) { if (!component.IsActive) return; - RemComp(args.Equipee); + RemComp(args.Wearer); component.IsActive = false; } diff --git a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs index 0c4f1ec546..0ec75790a4 100644 --- a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs +++ b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs @@ -7,10 +7,10 @@ using Content.Server.Medical.CrewMonitoring; using Content.Server.Popups; using Content.Server.Station.Systems; +using Content.Shared.Clothing; using Content.Shared.Damage; using Content.Shared.DeviceNetwork; using Content.Shared.Examine; -using Content.Shared.Inventory.Events; using Content.Shared.Medical.SuitSensor; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; @@ -40,8 +40,8 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnPlayerSpawn); SubscribeLocalEvent(OnMapInit); - SubscribeLocalEvent(OnEquipped); - SubscribeLocalEvent(OnUnequipped); + SubscribeLocalEvent(OnEquipped); + SubscribeLocalEvent(OnUnequipped); SubscribeLocalEvent(OnExamine); SubscribeLocalEvent>(OnVerb); SubscribeLocalEvent(OnInsert); @@ -165,19 +165,13 @@ private void OnMapInit(EntityUid uid, SuitSensorComponent component, MapInitEven } } - private void OnEquipped(EntityUid uid, SuitSensorComponent component, GotEquippedEvent args) + private void OnEquipped(EntityUid uid, SuitSensorComponent component, ref ClothingGotEquippedEvent args) { - if (args.Slot != component.ActivationSlot) - return; - - component.User = args.Equipee; + component.User = args.Wearer; } - private void OnUnequipped(EntityUid uid, SuitSensorComponent component, GotUnequippedEvent args) + private void OnUnequipped(EntityUid uid, SuitSensorComponent component, ref ClothingGotUnequippedEvent args) { - if (args.Slot != component.ActivationSlot) - return; - component.User = null; } diff --git a/Content.Server/Mind/Commands/MakeSentientCommand.cs b/Content.Server/Mind/Commands/MakeSentientCommand.cs index b58d782d9c..450f0712a1 100644 --- a/Content.Server/Mind/Commands/MakeSentientCommand.cs +++ b/Content.Server/Mind/Commands/MakeSentientCommand.cs @@ -3,7 +3,7 @@ using Content.Shared.Administration; using Content.Shared.Emoting; using Content.Shared.Examine; -using Content.Shared.Language; +using Content.Shared.Language.Components; using Content.Shared.Language.Systems; using Content.Shared.Mind.Components; using Content.Shared.Movement.Components; diff --git a/Content.Server/Mind/MindSystem.cs b/Content.Server/Mind/MindSystem.cs index dc12836d90..4271d76b44 100644 --- a/Content.Server/Mind/MindSystem.cs +++ b/Content.Server/Mind/MindSystem.cs @@ -1,6 +1,7 @@ using System.Diagnostics.CodeAnalysis; using Content.Server.Administration.Logs; using Content.Server.GameTicking; +using Content.Server.Ghost; using Content.Server.Mind.Commands; using Content.Shared.Database; using Content.Shared.Ghost; @@ -9,10 +10,8 @@ using Content.Shared.Players; using Robust.Server.GameStates; using Robust.Server.Player; -using Robust.Shared.Map.Components; using Robust.Shared.Network; using Robust.Shared.Player; -using Robust.Shared.Timing; using Robust.Shared.Utility; namespace Content.Server.Mind; @@ -22,8 +21,7 @@ public sealed class MindSystem : SharedMindSystem [Dependency] private readonly GameTicker _gameTicker = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly IPlayerManager _players = default!; - [Dependency] private readonly MetaDataSystem _metaData = default!; - [Dependency] private readonly SharedGhostSystem _ghosts = default!; + [Dependency] private readonly GhostSystem _ghosts = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly PvsOverrideSystem _pvsOverride = default!; @@ -63,8 +61,8 @@ private void OnMindContainerTerminating(EntityUid uid, MindContainerComponent co && !Terminating(visiting)) { TransferTo(mindId, visiting, mind: mind); - if (TryComp(visiting, out GhostComponent? ghost)) - _ghosts.SetCanReturnToBody(ghost, false); + if (TryComp(visiting, out GhostComponent? ghostComp)) + _ghosts.SetCanReturnToBody(ghostComp, false); return; } @@ -74,40 +72,13 @@ private void OnMindContainerTerminating(EntityUid uid, MindContainerComponent co if (!component.GhostOnShutdown || mind.Session == null || _gameTicker.RunLevel == GameRunLevel.PreRoundLobby) return; - var xform = Transform(uid); - var gridId = xform.GridUid; - var spawnPosition = Transform(uid).Coordinates; - - // Use a regular timer here because the entity has probably been deleted. - Timer.Spawn(0, () => - { - // Make extra sure the round didn't end between spawning the timer and it being executed. - if (_gameTicker.RunLevel == GameRunLevel.PreRoundLobby) - return; - - // Async this so that we don't throw if the grid we're on is being deleted. - if (!HasComp(gridId)) - spawnPosition = _gameTicker.GetObserverSpawnPoint(); - - // TODO refactor observer spawning. - // please. - if (!spawnPosition.IsValid(EntityManager)) - { - // This should be an error, if it didn't cause tests to start erroring when they delete a player. - Log.Warning($"Entity \"{ToPrettyString(uid)}\" for {mind.CharacterName} was deleted, and no applicable spawn location is available."); - TransferTo(mindId, null, createGhost: false, mind: mind); - return; - } - - var ghost = Spawn(GameTicker.ObserverPrototypeName, spawnPosition); - var ghostComponent = Comp(ghost); - _ghosts.SetCanReturnToBody(ghostComponent, false); - + var ghost = _ghosts.SpawnGhost((mindId, mind), uid); + if (ghost != null) // Log these to make sure they're not causing the GameTicker round restart bugs... Log.Debug($"Entity \"{ToPrettyString(uid)}\" for {mind.CharacterName} was deleted, spawned \"{ToPrettyString(ghost)}\"."); - _metaData.SetEntityName(ghost, mind.CharacterName ?? string.Empty); - TransferTo(mindId, ghost, mind: mind); - }); + else + // This should be an error, if it didn't cause tests to start erroring when they delete a player. + Log.Warning($"Entity \"{ToPrettyString(uid)}\" for {mind.CharacterName} was deleted, and no applicable spawn location is available."); } public override bool TryGetMind(NetUserId user, [NotNullWhen(true)] out EntityUid? mindId, [NotNullWhen(true)] out MindComponent? mind) diff --git a/Content.Server/Mindshield/MindShieldSystem.cs b/Content.Server/Mindshield/MindShieldSystem.cs deleted file mode 100644 index bfca6c008e..0000000000 --- a/Content.Server/Mindshield/MindShieldSystem.cs +++ /dev/null @@ -1,64 +0,0 @@ -using Content.Server.Administration.Logs; -using Content.Server.Mind; -using Content.Server.Popups; -using Content.Server.Roles; -using Content.Shared.Database; -using Content.Shared.Implants; -using Content.Shared.Implants.Components; -using Content.Shared.Mindshield.Components; -using Content.Shared.Revolutionary.Components; -using Content.Shared.Tag; - -namespace Content.Server.Mindshield; - -/// -/// System used for checking if the implanted is a Rev or Head Rev. -/// -public sealed class MindShieldSystem : EntitySystem -{ - [Dependency] private readonly IAdminLogManager _adminLogManager = default!; - [Dependency] private readonly RoleSystem _roleSystem = default!; - [Dependency] private readonly MindSystem _mindSystem = default!; - [Dependency] private readonly TagSystem _tag = default!; - [Dependency] private readonly PopupSystem _popupSystem = default!; - - [ValidatePrototypeId] - public const string MindShieldTag = "MindShield"; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(ImplantCheck); - } - - /// - /// Checks if the implant was a mindshield or not - /// - public void ImplantCheck(EntityUid uid, SubdermalImplantComponent comp, ref ImplantImplantedEvent ev) - { - if (_tag.HasTag(ev.Implant, MindShieldTag) && ev.Implanted != null) - { - EnsureComp(ev.Implanted.Value); - MindShieldRemovalCheck(ev.Implanted.Value, ev.Implant); - } - } - - /// - /// Checks if the implanted person was a Rev or Head Rev and remove role or destroy mindshield respectively. - /// - public void MindShieldRemovalCheck(EntityUid implanted, EntityUid implant) - { - if (HasComp(implanted)) - { - _popupSystem.PopupEntity(Loc.GetString("head-rev-break-mindshield"), implanted); - QueueDel(implant); - return; - } - - if (_mindSystem.TryGetMind(implanted, out var mindId, out _) && - _roleSystem.MindTryRemoveRole(mindId)) - { - _adminLogManager.Add(LogType.Mind, LogImpact.Medium, $"{ToPrettyString(implanted)} was deconverted due to being implanted with a Mindshield."); - } - } -} diff --git a/Content.Server/Mood/MoodSystem.cs b/Content.Server/Mood/MoodSystem.cs index f2dc87ffd6..4ec4709ea7 100644 --- a/Content.Server/Mood/MoodSystem.cs +++ b/Content.Server/Mood/MoodSystem.cs @@ -53,8 +53,6 @@ public override void Initialize() SubscribeLocalEvent(OnDamageChange); SubscribeLocalEvent(OnRefreshMoveSpeed); SubscribeLocalEvent(OnRemoveEffect); - - SubscribeLocalEvent(OnTraitStartup); } private void OnShutdown(EntityUid uid, MoodComponent component, ComponentShutdown args) @@ -101,15 +99,6 @@ private void OnRefreshMoveSpeed(EntityUid uid, MoodComponent component, RefreshM args.ModifySpeed(1, modifier); } - private void OnTraitStartup(EntityUid uid, MoodModifyTraitComponent component, ComponentStartup args) - { - if (_debugMode - || component.MoodId is null) - return; - - RaiseLocalEvent(uid, new MoodEffectEvent($"{component.MoodId}")); - } - private void OnMoodEffect(EntityUid uid, MoodComponent component, MoodEffectEvent args) { if (_debugMode @@ -133,16 +122,15 @@ private void ApplyEffect(EntityUid uid, MoodComponent component, MoodEffectProto if (!_prototypeManager.TryIndex(oldPrototypeId, out var oldPrototype)) return; - if (prototype.ID != oldPrototype.ID) - { + // Don't send the moodlet popup if we already have the moodlet. + if (!component.CategorisedEffects.ContainsValue(prototype.ID)) SendEffectText(uid, prototype); + + if (prototype.ID != oldPrototype.ID) component.CategorisedEffects[prototype.Category] = prototype.ID; - } } else - { component.CategorisedEffects.Add(prototype.Category, prototype.ID); - } if (prototype.Timeout != 0) Timer.Spawn(TimeSpan.FromSeconds(prototype.Timeout), () => RemoveTimedOutEffect(uid, prototype.ID, prototype.Category)); @@ -157,7 +145,10 @@ private void ApplyEffect(EntityUid uid, MoodComponent component, MoodEffectProto if (moodChange == 0) return; - SendEffectText(uid, prototype); + // Don't send the moodlet popup if we already have the moodlet. + if (!component.UncategorisedEffects.ContainsKey(prototype.ID)) + SendEffectText(uid, prototype); + component.UncategorisedEffects.Add(prototype.ID, moodChange); if (prototype.Timeout != 0) @@ -195,9 +186,28 @@ private void RemoveTimedOutEffect(EntityUid uid, string prototypeId, string? cat comp.CategorisedEffects.Remove(category); } + ReplaceMood(uid, prototypeId); RefreshMood(uid, comp); } + /// + /// Some moods specifically create a moodlet upon expiration. This is normally used for "Addiction" type moodlets, + /// such as a positive moodlet from an addictive substance that becomes a negative moodlet when a timer ends. + /// + /// + /// Moodlets that use this should probably also share a category with each other, but this isn't necessarily required. + /// Only if you intend that "Re-using the drug" should also remove the negative moodlet. + /// + private void ReplaceMood(EntityUid uid, string prototypeId) + { + if (!_prototypeManager.TryIndex(prototypeId, out var proto) + || proto.MoodletOnEnd is null) + return; + + var ev = new MoodEffectEvent(proto.MoodletOnEnd); + EntityManager.EventBus.RaiseLocalEvent(uid, ev); + } + private void OnMobStateChanged(EntityUid uid, MoodComponent component, MobStateChangedEvent args) { if (_debugMode) @@ -242,7 +252,8 @@ private void OnInit(EntityUid uid, MoodComponent component, ComponentStartup arg if (_debugMode) return; - if (TryComp(uid, out var mobThresholdsComponent) + if (_config.GetCVar(CCVars.MoodModifiesThresholds) + && TryComp(uid, out var mobThresholdsComponent) && _mobThreshold.TryGetThresholdForState(uid, MobState.Critical, out var critThreshold, mobThresholdsComponent)) component.CritThresholdBeforeModify = critThreshold.Value; @@ -335,7 +346,8 @@ private void RefreshShaders(EntityUid uid, int modifier) private void SetCritThreshold(EntityUid uid, MoodComponent component, int modifier) { - if (!TryComp(uid, out var mobThresholds) + if (!_config.GetCVar(CCVars.MoodModifiesThresholds) + || !TryComp(uid, out var mobThresholds) || !_mobThreshold.TryGetThresholdForState(uid, MobState.Critical, out var key)) return; diff --git a/Content.Server/NPC/Components/NPCJukeComponent.cs b/Content.Server/NPC/Components/NPCJukeComponent.cs index 2c4136c24b..768feeca6f 100644 --- a/Content.Server/NPC/Components/NPCJukeComponent.cs +++ b/Content.Server/NPC/Components/NPCJukeComponent.cs @@ -1,4 +1,3 @@ -using Content.Server.NPC.HTN.PrimitiveTasks.Operators.Combat; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Server.NPC.Components; @@ -6,17 +5,20 @@ namespace Content.Server.NPC.Components; [RegisterComponent, AutoGenerateComponentPause] public sealed partial class NPCJukeComponent : Component { - [DataField("jukeType")] + [DataField] public JukeType JukeType = JukeType.Away; - [DataField("jukeDuration")] + [DataField] public float JukeDuration = 0.5f; - [DataField("nextJuke", customTypeSerializer:typeof(TimeOffsetSerializer))] + [DataField] + public float JukeCooldown = 3f; + + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] [AutoPausedField] public TimeSpan NextJuke; - [DataField("targetTile")] + [DataField] public Vector2i? TargetTile; } diff --git a/Content.Server/NPC/HTN/Preconditions/GunAmmoPrecondition.cs b/Content.Server/NPC/HTN/Preconditions/GunAmmoPrecondition.cs index fe3b844ae3..58647d8874 100644 --- a/Content.Server/NPC/HTN/Preconditions/GunAmmoPrecondition.cs +++ b/Content.Server/NPC/HTN/Preconditions/GunAmmoPrecondition.cs @@ -35,7 +35,7 @@ public override bool IsMet(NPCBlackboard blackboard) else percent = ammoEv.Count / (float) ammoEv.Capacity; - percent = Math.Clamp(percent, 0f, 1f); + percent = System.Math.Clamp(percent, 0f, 1f); if (MaxPercent < percent) return false; diff --git a/Content.Server/NPC/HTN/Preconditions/InContainerPrecondition.cs b/Content.Server/NPC/HTN/Preconditions/InContainerPrecondition.cs new file mode 100644 index 0000000000..aa0ad98ede --- /dev/null +++ b/Content.Server/NPC/HTN/Preconditions/InContainerPrecondition.cs @@ -0,0 +1,27 @@ +using Robust.Server.Containers; + +namespace Content.Server.NPC.HTN.Preconditions; + +/// +/// Checks if the owner in container or not +/// +public sealed partial class InContainerPrecondition : HTNPrecondition +{ + private ContainerSystem _container = default!; + + [ViewVariables(VVAccess.ReadWrite)] [DataField("isInContainer")] public bool IsInContainer = true; + + public override void Initialize(IEntitySystemManager sysManager) + { + base.Initialize(sysManager); + _container = sysManager.GetEntitySystem(); + } + + public override bool IsMet(NPCBlackboard blackboard) + { + var owner = blackboard.GetValue(NPCBlackboard.Owner); + + return IsInContainer && _container.IsEntityInContainer(owner) || + !IsInContainer && !_container.IsEntityInContainer(owner); + } +} diff --git a/Content.Server/NPC/HTN/Preconditions/KeyNotExistsPrecondition.cs b/Content.Server/NPC/HTN/Preconditions/KeyNotExistsPrecondition.cs new file mode 100644 index 0000000000..c12663901c --- /dev/null +++ b/Content.Server/NPC/HTN/Preconditions/KeyNotExistsPrecondition.cs @@ -0,0 +1,12 @@ +namespace Content.Server.NPC.HTN.Preconditions; + +public sealed partial class KeyNotExistsPrecondition : HTNPrecondition +{ + [DataField(required: true)] + public string Key = string.Empty; + + public override bool IsMet(NPCBlackboard blackboard) + { + return !blackboard.ContainsKey(Key); + } +} diff --git a/Content.Server/NPC/HTN/Preconditions/Math/KeyBoolEqualsPrecondition.cs b/Content.Server/NPC/HTN/Preconditions/Math/KeyBoolEqualsPrecondition.cs new file mode 100644 index 0000000000..8c7920e8be --- /dev/null +++ b/Content.Server/NPC/HTN/Preconditions/Math/KeyBoolEqualsPrecondition.cs @@ -0,0 +1,23 @@ +namespace Content.Server.NPC.HTN.Preconditions.Math; + +/// +/// Checks for the presence of data in the blackboard and makes a comparison with the specified boolean +/// +public sealed partial class KeyBoolEqualsPrecondition : HTNPrecondition +{ + [Dependency] private readonly IEntityManager _entManager = default!; + + [DataField(required: true)] + public string Key = string.Empty; + + [DataField(required: true)] + public bool Value; + + public override bool IsMet(NPCBlackboard blackboard) + { + if (!blackboard.TryGetValue(Key, out var value, _entManager)) + return false; + + return Value == value; + } +} diff --git a/Content.Server/NPC/HTN/Preconditions/Math/KeyFloatEqualsPrecondition.cs b/Content.Server/NPC/HTN/Preconditions/Math/KeyFloatEqualsPrecondition.cs new file mode 100644 index 0000000000..802fdaf2b9 --- /dev/null +++ b/Content.Server/NPC/HTN/Preconditions/Math/KeyFloatEqualsPrecondition.cs @@ -0,0 +1,18 @@ +namespace Content.Server.NPC.HTN.Preconditions.Math; + +public sealed partial class KeyFloatEqualsPrecondition : HTNPrecondition +{ + [Dependency] private readonly IEntityManager _entManager = default!; + + [DataField(required: true)] + public string Key = string.Empty; + + [DataField(required: true)] + public float Value; + + public override bool IsMet(NPCBlackboard blackboard) + { + return blackboard.TryGetValue(Key, out var value, _entManager) && + MathHelper.CloseTo(value, value); + } +} diff --git a/Content.Server/NPC/HTN/Preconditions/Math/KeyFloatGreaterPrecondition.cs b/Content.Server/NPC/HTN/Preconditions/Math/KeyFloatGreaterPrecondition.cs new file mode 100644 index 0000000000..3a9ac36698 --- /dev/null +++ b/Content.Server/NPC/HTN/Preconditions/Math/KeyFloatGreaterPrecondition.cs @@ -0,0 +1,17 @@ +namespace Content.Server.NPC.HTN.Preconditions.Math; + +public sealed partial class KeyFloatGreaterPrecondition : HTNPrecondition +{ + [Dependency] private readonly IEntityManager _entManager = default!; + + [DataField(required: true)] + public string Key = string.Empty; + + [DataField(required: true)] + public float Value; + + public override bool IsMet(NPCBlackboard blackboard) + { + return blackboard.TryGetValue(Key, out var value, _entManager) && value > Value; + } +} diff --git a/Content.Server/NPC/HTN/Preconditions/Math/KeyFloatLessPrecondition.cs b/Content.Server/NPC/HTN/Preconditions/Math/KeyFloatLessPrecondition.cs new file mode 100644 index 0000000000..5cd51d7a7c --- /dev/null +++ b/Content.Server/NPC/HTN/Preconditions/Math/KeyFloatLessPrecondition.cs @@ -0,0 +1,17 @@ +namespace Content.Server.NPC.HTN.Preconditions.Math; + +public sealed partial class KeyFloatLessPrecondition : HTNPrecondition +{ + [Dependency] private readonly IEntityManager _entManager = default!; + + [DataField(required: true)] + public string Key = string.Empty; + + [DataField(required: true)] + public float Value; + + public override bool IsMet(NPCBlackboard blackboard) + { + return blackboard.TryGetValue(Key, out var value, _entManager) && value < Value; + } +} diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/ContainerOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/ContainerOperator.cs new file mode 100644 index 0000000000..667d0b8ec4 --- /dev/null +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/ContainerOperator.cs @@ -0,0 +1,40 @@ +using Robust.Server.Containers; + +namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators.Combat; + +public sealed partial class ContainerOperator : HTNOperator +{ + [Dependency] private readonly IEntityManager _entManager = default!; + private ContainerSystem _container = default!; + private EntityQuery _transformQuery; + + [DataField("shutdownState")] + public HTNPlanState ShutdownState { get; private set; } = HTNPlanState.TaskFinished; + + [DataField("targetKey", required: true)] + public string TargetKey = default!; + + public override void Initialize(IEntitySystemManager sysManager) + { + base.Initialize(sysManager); + _container = sysManager.GetEntitySystem(); + _transformQuery = _entManager.GetEntityQuery(); + } + + public override void Startup(NPCBlackboard blackboard) + { + base.Startup(blackboard); + var owner = blackboard.GetValue(NPCBlackboard.Owner); + + if (!_container.TryGetOuterContainer(owner, _transformQuery.GetComponent(owner), out var outerContainer) && outerContainer == null) + return; + + var target = outerContainer.Owner; + blackboard.SetValue(TargetKey, target); + } + + public override HTNOperatorStatus Update(NPCBlackboard blackboard, float frameTime) + { + return HTNOperatorStatus.Finished; + } +} diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/EscapeOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/EscapeOperator.cs new file mode 100644 index 0000000000..a794e1e314 --- /dev/null +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/EscapeOperator.cs @@ -0,0 +1,140 @@ +using System.Threading; +using System.Threading.Tasks; +using Content.Server.NPC.Components; +using Content.Server.Storage.EntitySystems; +using Content.Shared.CombatMode; +using Robust.Server.Containers; + +namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators.Combat.Melee; + +public sealed partial class EscapeOperator : HTNOperator, IHtnConditionalShutdown +{ + [Dependency] private readonly IEntityManager _entManager = default!; + private ContainerSystem _container = default!; + private EntityStorageSystem _entityStorage = default!; + + [DataField("shutdownState")] + public HTNPlanState ShutdownState { get; private set; } = HTNPlanState.TaskFinished; + + [DataField("targetKey", required: true)] + public string TargetKey = default!; + + public override void Initialize(IEntitySystemManager sysManager) + { + base.Initialize(sysManager); + _container = sysManager.GetEntitySystem(); + _entityStorage = sysManager.GetEntitySystem(); + } + + public override void Startup(NPCBlackboard blackboard) + { + base.Startup(blackboard); + var owner = blackboard.GetValue(NPCBlackboard.Owner); + var target = blackboard.GetValue(TargetKey); + + if (_entityStorage.TryOpenStorage(owner, target)) + { + TaskShutdown(blackboard, HTNOperatorStatus.Finished); + return; + } + + var melee = _entManager.EnsureComponent(owner); + melee.MissChance = blackboard.GetValueOrDefault(NPCBlackboard.MeleeMissChance, _entManager); + melee.Target = target; + } + + public override async Task<(bool Valid, Dictionary? Effects)> Plan(NPCBlackboard blackboard, + CancellationToken cancelToken) + { + var owner = blackboard.GetValue(NPCBlackboard.Owner); + if (!blackboard.TryGetValue(TargetKey, out var target, _entManager)) + { + return (false, null); + } + + if (!_container.IsEntityInContainer(owner)) + { + return (false, null); + } + + if (_entityStorage.TryOpenStorage(owner, target)) + { + return (false, null); + } + + return (true, null); + } + + public void ConditionalShutdown(NPCBlackboard blackboard) + { + var owner = blackboard.GetValue(NPCBlackboard.Owner); + _entManager.System().SetInCombatMode(owner, false); + _entManager.RemoveComponent(owner); + blackboard.Remove(TargetKey); + } + + public override void TaskShutdown(NPCBlackboard blackboard, HTNOperatorStatus status) + { + base.TaskShutdown(blackboard, status); + + ConditionalShutdown(blackboard); + } + + public override void PlanShutdown(NPCBlackboard blackboard) + { + base.PlanShutdown(blackboard); + + ConditionalShutdown(blackboard); + } + + public override HTNOperatorStatus Update(NPCBlackboard blackboard, float frameTime) + { + base.Update(blackboard, frameTime); + var owner = blackboard.GetValue(NPCBlackboard.Owner); + HTNOperatorStatus status; + + if (_entManager.TryGetComponent(owner, out var combat) && + blackboard.TryGetValue(TargetKey, out var target, _entManager)) + { + combat.Target = target; + + // Success + if (!_container.IsEntityInContainer(owner)) + { + status = HTNOperatorStatus.Finished; + } + else + { + if (_entityStorage.TryOpenStorage(owner, target)) + { + status = HTNOperatorStatus.Finished; + } + else + { + switch (combat.Status) + { + case CombatStatus.TargetOutOfRange: + case CombatStatus.Normal: + status = HTNOperatorStatus.Continuing; + break; + default: + status = HTNOperatorStatus.Failed; + break; + } + } + } + } + else + { + status = HTNOperatorStatus.Failed; + } + + // Mark it as finished to continue the plan. + if (status == HTNOperatorStatus.Continuing && ShutdownState == HTNPlanState.PlanFinished) + { + status = HTNOperatorStatus.Finished; + } + + return status; + } +} diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/JukeOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/JukeOperator.cs index 02a3b08510..68029f5a4c 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/JukeOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/JukeOperator.cs @@ -6,17 +6,31 @@ public sealed partial class JukeOperator : HTNOperator, IHtnConditionalShutdown { [Dependency] private readonly IEntityManager _entManager = default!; - [DataField("jukeType")] + [DataField] public JukeType JukeType = JukeType.AdjacentTile; - [DataField("shutdownState")] + [DataField] public HTNPlanState ShutdownState { get; private set; } = HTNPlanState.PlanFinished; + /// + /// Controls how long(in seconds) the NPC will move while juking. + /// + [DataField] + public float JukeDuration = 0.5f; + + /// + /// Controls how often (in seconds) an NPC will try to juke. + /// + [DataField] + public float JukeCooldown = 3f; + public override void Startup(NPCBlackboard blackboard) { base.Startup(blackboard); var juke = _entManager.EnsureComponent(blackboard.GetValue(NPCBlackboard.Owner)); juke.JukeType = JukeType; + juke.JukeDuration = JukeDuration; + juke.JukeCooldown = JukeCooldown; } public override HTNOperatorStatus Update(NPCBlackboard blackboard, float frameTime) diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/UnPullOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/UnPullOperator.cs new file mode 100644 index 0000000000..54f422fe67 --- /dev/null +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/UnPullOperator.cs @@ -0,0 +1,35 @@ +using Content.Shared.Movement.Pulling.Components; +using Content.Shared.Movement.Pulling.Systems; + +namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators.Combat; + +public sealed partial class UnPullOperator : HTNOperator +{ + [Dependency] private readonly IEntityManager _entManager = default!; + private PullingSystem _pulling = default!; + + private EntityQuery _pullableQuery; + + [DataField("shutdownState")] + public HTNPlanState ShutdownState { get; private set; } = HTNPlanState.TaskFinished; + + public override void Initialize(IEntitySystemManager sysManager) + { + base.Initialize(sysManager); + _pulling = sysManager.GetEntitySystem(); + _pullableQuery = _entManager.GetEntityQuery(); + } + + public override void Startup(NPCBlackboard blackboard) + { + base.Startup(blackboard); + var owner = blackboard.GetValue(NPCBlackboard.Owner); + + _pulling.TryStopPull(owner, _pullableQuery.GetComponent(owner), owner); + } + + public override HTNOperatorStatus Update(NPCBlackboard blackboard, float frameTime) + { + return HTNOperatorStatus.Finished; + } +} diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/UnbuckleOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/UnbuckleOperator.cs new file mode 100644 index 0000000000..207665d786 --- /dev/null +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Combat/UnbuckleOperator.cs @@ -0,0 +1,34 @@ +using Content.Server.Buckle.Systems; +using Content.Shared.Buckle.Components; + +namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators.Combat; + +public sealed partial class UnbuckleOperator : HTNOperator +{ + [Dependency] private readonly IEntityManager _entManager = default!; + private BuckleSystem _buckle = default!; + + [DataField("shutdownState")] + public HTNPlanState ShutdownState { get; private set; } = HTNPlanState.TaskFinished; + + public override void Initialize(IEntitySystemManager sysManager) + { + base.Initialize(sysManager); + _buckle = sysManager.GetEntitySystem(); + } + + public override void Startup(NPCBlackboard blackboard) + { + base.Startup(blackboard); + var owner = blackboard.GetValue(NPCBlackboard.Owner); + if (!_entManager.TryGetComponent(owner, out var buckle) || !buckle.Buckled) + return; + + _buckle.TryUnbuckle(owner, owner, true, buckle); + } + + public override HTNOperatorStatus Update(NPCBlackboard blackboard, float frameTime) + { + return HTNOperatorStatus.Finished; + } +} diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Math/AddFloatOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Math/AddFloatOperator.cs new file mode 100644 index 0000000000..00404517c9 --- /dev/null +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Math/AddFloatOperator.cs @@ -0,0 +1,33 @@ +using System.Threading; +using System.Threading.Tasks; + +namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators.Math; + +/// +/// Gets the key, and adds the value to that float +/// +public sealed partial class AddFloatOperator : HTNOperator +{ + [Dependency] private readonly IEntityManager _entManager = default!; + + [DataField(required: true)] + public string TargetKey = string.Empty; + + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float Amount; + + public override async Task<(bool Valid, Dictionary? Effects)> Plan(NPCBlackboard blackboard, + CancellationToken cancelToken) + { + if (!blackboard.TryGetValue(TargetKey, out var value, _entManager)) + return (false, null); + + return ( + true, + new Dictionary + { + { TargetKey, value + Amount } + } + ); + } +} diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Math/SetBoolOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Math/SetBoolOperator.cs new file mode 100644 index 0000000000..a40b96798d --- /dev/null +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Math/SetBoolOperator.cs @@ -0,0 +1,28 @@ +using System.Threading; +using System.Threading.Tasks; + +namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators.Math; + +/// +/// Just sets a blackboard key to a bool +/// +public sealed partial class SetBoolOperator : HTNOperator +{ + [DataField(required: true)] + public string TargetKey = string.Empty; + + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool Value; + + public override async Task<(bool Valid, Dictionary? Effects)> Plan(NPCBlackboard blackboard, + CancellationToken cancelToken) + { + return ( + true, + new Dictionary + { + { TargetKey, Value } + } + ); + } +} diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Math/SetFloatOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Math/SetFloatOperator.cs new file mode 100644 index 0000000000..76842b431f --- /dev/null +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Math/SetFloatOperator.cs @@ -0,0 +1,28 @@ +using System.Threading; +using System.Threading.Tasks; + +namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators.Math; + +/// +/// Just sets a blackboard key to a float +/// +public sealed partial class SetFloatOperator : HTNOperator +{ + [DataField(required: true)] + public string TargetKey = string.Empty; + + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float Amount; + + public override async Task<(bool Valid, Dictionary? Effects)> Plan(NPCBlackboard blackboard, + CancellationToken cancelToken) + { + return ( + true, + new Dictionary + { + { TargetKey, Amount } + } + ); + } +} diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Math/SetRandomFloatOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Math/SetRandomFloatOperator.cs new file mode 100644 index 0000000000..999756f1f7 --- /dev/null +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Math/SetRandomFloatOperator.cs @@ -0,0 +1,34 @@ +using System.Threading; +using System.Threading.Tasks; +using Robust.Shared.Random; + +namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators.Math; + +/// +/// Sets a random float from MinAmount to MaxAmount to blackboard +/// +public sealed partial class SetRandomFloatOperator : HTNOperator +{ + [Dependency] private readonly IRobustRandom _random = default!; + + [DataField(required: true)] + public string TargetKey = string.Empty; + + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float MaxAmount = 1f; + + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float MinAmount = 0f; + + public override async Task<(bool Valid, Dictionary? Effects)> Plan(NPCBlackboard blackboard, + CancellationToken cancelToken) + { + return ( + true, + new Dictionary + { + { TargetKey, _random.NextFloat(MinAmount, MaxAmount) } + } + ); + } +} diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/PlaySoundOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/PlaySoundOperator.cs new file mode 100644 index 0000000000..57cc2e91e4 --- /dev/null +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/PlaySoundOperator.cs @@ -0,0 +1,28 @@ +using Robust.Server.Audio; +using Robust.Shared.Audio; + +namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators; + +public sealed partial class PlaySoundOperator : HTNOperator +{ + private AudioSystem _audio = default!; + + [DataField(required: true)] + public SoundSpecifier? Sound; + + public override void Initialize(IEntitySystemManager sysManager) + { + base.Initialize(sysManager); + + _audio = IoCManager.Resolve().GetEntitySystem(); + } + + public override HTNOperatorStatus Update(NPCBlackboard blackboard, float frameTime) + { + var uid = blackboard.GetValue(NPCBlackboard.Owner); + + _audio.PlayPvs(Sound, uid); + + return base.Update(blackboard, frameTime); + } +} diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/SayKeyOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/SayKeyOperator.cs new file mode 100644 index 0000000000..3422c77249 --- /dev/null +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/SayKeyOperator.cs @@ -0,0 +1,37 @@ +using Content.Server.Chat.Systems; +using Content.Shared.Chat; + +namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators; + +public sealed partial class SayKeyOperator : HTNOperator +{ + [Dependency] private readonly IEntityManager _entManager = default!; + + private ChatSystem _chat = default!; + + [DataField(required: true)] + public string Key = string.Empty; + + /// + /// Whether to hide message from chat window and logs. + /// + [DataField] + public bool Hidden; + + public override void Initialize(IEntitySystemManager sysManager) + { + base.Initialize(sysManager); + _chat = IoCManager.Resolve().GetEntitySystem(); + } + + public override HTNOperatorStatus Update(NPCBlackboard blackboard, float frameTime) + { + if (!blackboard.TryGetValue(Key, out var value, _entManager)) + return HTNOperatorStatus.Failed; + + var speaker = blackboard.GetValue(NPCBlackboard.Owner); + _chat.TrySendInGameICMessage(speaker, value.ToString() ?? "Oh no...", InGameICChatType.Speak, hideChat: Hidden, hideLog: Hidden); + + return base.Update(blackboard, frameTime); + } +} diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/SetFloatOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/SetFloatOperator.cs deleted file mode 100644 index 7a460592cb..0000000000 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/SetFloatOperator.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System.Threading; -using System.Threading.Tasks; - -namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators; - -/// -/// Just sets a blackboard key to a float -/// -public sealed partial class SetFloatOperator : HTNOperator -{ - [DataField("targetKey", required: true)] public string TargetKey = string.Empty; - - [ViewVariables(VVAccess.ReadWrite), DataField("amount")] - public float Amount; - - public override async Task<(bool Valid, Dictionary? Effects)> Plan(NPCBlackboard blackboard, - CancellationToken cancelToken) - { - return (true, new Dictionary() - { - {TargetKey, Amount}, - }); - } -} diff --git a/Content.Server/NPC/Systems/NPCJukeSystem.cs b/Content.Server/NPC/Systems/NPCJukeSystem.cs index da9fa1f761..5a724762ef 100644 --- a/Content.Server/NPC/Systems/NPCJukeSystem.cs +++ b/Content.Server/NPC/Systems/NPCJukeSystem.cs @@ -3,6 +3,7 @@ using Content.Server.NPC.Events; using Content.Server.NPC.HTN.PrimitiveTasks.Operators.Combat; using Content.Server.Weapons.Melee; +using Content.Shared.Coordinates.Helpers; using Content.Shared.NPC; using Content.Shared.Weapons.Melee; using Robust.Shared.Collections; @@ -38,22 +39,19 @@ public override void Initialize() private void OnJukeSteering(EntityUid uid, NPCJukeComponent component, ref NPCSteeringEvent args) { - if (component.JukeType == JukeType.AdjacentTile) + if (_timing.CurTime < component.NextJuke) { - if (_npcRangedQuery.TryGetComponent(uid, out var ranged) && - ranged.Status == CombatStatus.NotInSight) - { - component.TargetTile = null; - return; - } + component.TargetTile = null; + return; + } - if (_timing.CurTime < component.NextJuke) - { - component.TargetTile = null; - return; - } + component.NextJuke = _timing.CurTime + TimeSpan.FromSeconds(component.JukeCooldown); - if (!TryComp(args.Transform.GridUid, out var grid)) + if (component.JukeType == JukeType.AdjacentTile) + { + if (_npcRangedQuery.TryGetComponent(uid, out var ranged) + && ranged.Status is CombatStatus.NotInSight + || !TryComp(args.Transform.GridUid, out var grid)) { component.TargetTile = null; return; @@ -107,12 +105,11 @@ private void OnJukeSteering(EntityUid uid, NPCJukeComponent component, ref NPCSt var elapsed = _timing.CurTime - component.NextJuke; - // Finished juke, reset timer. - if (elapsed.TotalSeconds > component.JukeDuration || - currentTile == component.TargetTile) + // Finished juke. + if (elapsed.TotalSeconds > component.JukeDuration + || currentTile == component.TargetTile) { component.TargetTile = null; - component.NextJuke = _timing.CurTime + TimeSpan.FromSeconds(component.JukeDuration); return; } @@ -155,9 +152,7 @@ private void OnJukeSteering(EntityUid uid, NPCJukeComponent component, ref NPCSt var obstacleDirection = _transform.GetWorldPosition(melee.Target) - args.WorldPosition; if (obstacleDirection == Vector2.Zero) - { obstacleDirection = _random.NextVector2(); - } // If they're moving away then pursue anyway. // If just hit then always back up a bit. diff --git a/Content.Server/NPC/Systems/NPCSystem.cs b/Content.Server/NPC/Systems/NPCSystem.cs index 8abe0f7f54..24c038a3e7 100644 --- a/Content.Server/NPC/Systems/NPCSystem.cs +++ b/Content.Server/NPC/Systems/NPCSystem.cs @@ -2,6 +2,8 @@ using Content.Server.NPC.Components; using Content.Server.NPC.HTN; using Content.Shared.CCVar; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; using Content.Shared.Mobs; using Content.Shared.Mobs.Systems; using Content.Shared.NPC; @@ -48,6 +50,10 @@ public void OnPlayerNPCDetach(EntityUid uid, HTNComponent component, PlayerDetac if (_mobState.IsIncapacitated(uid) || TerminatingOrDeleted(uid)) return; + // This NPC has an attached mind, so it should not wake up. + if (TryComp(uid, out var mindContainer) && mindContainer.HasMind) + return; + WakeNPC(uid, component); } diff --git a/Content.Server/Ninja/Systems/NinjaGlovesSystem.cs b/Content.Server/Ninja/Systems/NinjaGlovesSystem.cs index d84a728775..ac76ae6b77 100644 --- a/Content.Server/Ninja/Systems/NinjaGlovesSystem.cs +++ b/Content.Server/Ninja/Systems/NinjaGlovesSystem.cs @@ -1,8 +1,9 @@ using Content.Server.Communications; using Content.Server.Mind; using Content.Server.Ninja.Events; -using Content.Server.Objectives.Components; +using Content.Server.Objectives.Systems; using Content.Shared.Communications; +using Content.Shared.CriminalRecords.Components; using Content.Shared.Ninja.Components; using Content.Shared.Ninja.Systems; using Content.Shared.Research.Components; @@ -16,8 +17,8 @@ namespace Content.Server.Ninja.Systems; public sealed class NinjaGlovesSystem : SharedNinjaGlovesSystem { [Dependency] private readonly EmagProviderSystem _emagProvider = default!; + [Dependency] private readonly CodeConditionSystem _codeCondition = default!; [Dependency] private readonly CommsHackerSystem _commsHacker = default!; - [Dependency] private readonly MindSystem _mind = default!; [Dependency] private readonly SharedStunProviderSystem _stunProvider = default!; [Dependency] private readonly SpaceNinjaSystem _ninja = default!; @@ -88,12 +89,16 @@ private void EnableGloves(EntityUid uid, NinjaGlovesComponent comp, EntityUid us EnsureComp(user); // prevent calling in multiple threats by toggling gloves after - if (_mind.TryGetObjectiveComp(user, out var obj) && !obj.CalledInThreat) + if (!_codeCondition.IsCompleted(user, ninja.TerrorObjective)) { var hacker = EnsureComp(user); var rule = _ninja.NinjaRule(user); if (rule != null) _commsHacker.SetThreats(user, rule.Threats, hacker); } + if (!_codeCondition.IsCompleted(user, ninja.MassArrestObjective)) + { + EnsureComp(user); + } } } diff --git a/Content.Server/Ninja/Systems/SpaceNinjaSystem.cs b/Content.Server/Ninja/Systems/SpaceNinjaSystem.cs index 835ac7ad6c..1dfaf4f339 100644 --- a/Content.Server/Ninja/Systems/SpaceNinjaSystem.cs +++ b/Content.Server/Ninja/Systems/SpaceNinjaSystem.cs @@ -1,12 +1,15 @@ using Content.Server.Communications; using Content.Server.Chat.Managers; +using Content.Server.CriminalRecords.Systems; using Content.Server.GameTicking.Rules.Components; +using Content.Server.GenericAntag; +using Content.Server.Objectives.Components; +using Content.Server.Objectives.Systems; using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; using Content.Server.PowerCell; using Content.Server.Research.Systems; using Content.Server.Roles; -using Content.Server.GenericAntag; using Content.Shared.Alert; using Content.Shared.Clothing.EntitySystems; using Content.Shared.Doors.Components; @@ -19,7 +22,6 @@ using Robust.Shared.Audio; using Robust.Shared.Player; using System.Diagnostics.CodeAnalysis; -using Content.Server.Objectives.Components; using Robust.Shared.Audio.Systems; namespace Content.Server.Ninja.Systems; @@ -28,7 +30,6 @@ namespace Content.Server.Ninja.Systems; // engi -> saboteur // medi -> idk reskin it // other -> assault -// TODO: when criminal records is merged, hack it to set everyone to arrest /// /// Main ninja system that handles ninja setup, provides helper methods for the rest of the code to use. @@ -37,6 +38,7 @@ public sealed class SpaceNinjaSystem : SharedSpaceNinjaSystem { [Dependency] private readonly AlertsSystem _alerts = default!; [Dependency] private readonly BatterySystem _battery = default!; + [Dependency] private readonly CodeConditionSystem _codeCondition = default!; [Dependency] private readonly IChatManager _chatMan = default!; [Dependency] private readonly PowerCellSystem _powerCell = default!; [Dependency] private readonly RoleSystem _role = default!; @@ -52,6 +54,7 @@ public override void Initialize() SubscribeLocalEvent(OnDoorjack); SubscribeLocalEvent(OnResearchStolen); SubscribeLocalEvent(OnThreatCalledIn); + SubscribeLocalEvent(OnCriminalRecordsHacked); } public override void Update(float frameTime) @@ -216,11 +219,21 @@ private void OnResearchStolen(EntityUid uid, SpaceNinjaComponent comp, ref Resea Popup.PopupEntity(str, uid, uid, PopupType.Medium); } - private void OnThreatCalledIn(EntityUid uid, SpaceNinjaComponent comp, ref ThreatCalledInEvent args) + private void OnThreatCalledIn(Entity ent, ref ThreatCalledInEvent args) { - if (_mind.TryGetObjectiveComp(uid, out var obj)) - { - obj.CalledInThreat = true; - } + _codeCondition.SetCompleted(ent.Owner, ent.Comp.TerrorObjective); + } + + private void OnCriminalRecordsHacked(Entity ent, ref CriminalRecordsHackedEvent args) + { + _codeCondition.SetCompleted(ent.Owner, ent.Comp.MassArrestObjective); + } + + /// + /// Called by when it detonates. + /// + public void DetonatedSpiderCharge(Entity ent) + { + _codeCondition.SetCompleted(ent.Owner, ent.Comp.SpiderChargeObjective); } } diff --git a/Content.Server/Ninja/Systems/SpiderChargeSystem.cs b/Content.Server/Ninja/Systems/SpiderChargeSystem.cs index 948d715f0a..64c958d6f1 100644 --- a/Content.Server/Ninja/Systems/SpiderChargeSystem.cs +++ b/Content.Server/Ninja/Systems/SpiderChargeSystem.cs @@ -19,6 +19,7 @@ public sealed class SpiderChargeSystem : EntitySystem [Dependency] private readonly MindSystem _mind = default!; [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly SpaceNinjaSystem _ninja = default!; public override void Initialize() { @@ -76,10 +77,10 @@ private void OnStuck(EntityUid uid, SpiderChargeComponent comp, EntityStuckEvent /// private void OnExplode(EntityUid uid, SpiderChargeComponent comp, TriggerEvent args) { - if (comp.Planter == null || !_mind.TryGetObjectiveComp(comp.Planter.Value, out var obj)) + if (!TryComp(comp.Planter, out var ninja)) return; // assumes the target was destroyed, that the charge wasn't moved somehow - obj.Detonated = true; + _ninja.DetonatedSpiderCharge((comp.Planter.Value, ninja)); } } diff --git a/Content.Server/Nuke/NukeCodePaperSystem.cs b/Content.Server/Nuke/NukeCodePaperSystem.cs index 36268d5648..cedae69682 100644 --- a/Content.Server/Nuke/NukeCodePaperSystem.cs +++ b/Content.Server/Nuke/NukeCodePaperSystem.cs @@ -1,6 +1,7 @@ using System.Diagnostics.CodeAnalysis; using Content.Server.Chat.Systems; using Content.Server.Fax; +using Content.Shared.Fax.Components; using Content.Server.Paper; using Content.Server.Station.Components; using Content.Server.Station.Systems; @@ -66,6 +67,7 @@ public bool SendNukeCodes(EntityUid station) paperContent, Loc.GetString("nuke-codes-fax-paper-name"), null, + null, "paper_stamp-centcom", new List { diff --git a/Content.Server/Nuke/NukeSystem.cs b/Content.Server/Nuke/NukeSystem.cs index 5a7219fdf1..2f62f9d674 100644 --- a/Content.Server/Nuke/NukeSystem.cs +++ b/Content.Server/Nuke/NukeSystem.cs @@ -189,7 +189,7 @@ private async void OnAnchorButtonPressed(EntityUid uid, NukeComponent component, continue; var msg = Loc.GetString("nuke-component-cant-anchor-floor"); - _popups.PopupEntity(msg, uid, args.Session, PopupType.MediumCaution); + _popups.PopupEntity(msg, uid, args.Actor, PopupType.MediumCaution); return; } @@ -245,10 +245,7 @@ private void OnArmButtonPressed(EntityUid uid, NukeComponent component, NukeArme else { - if (args.Session.AttachedEntity is not { } user) - return; - - DisarmBombDoafter(uid, user, component); + DisarmBombDoafter(uid, args.Actor, component); } } @@ -368,8 +365,7 @@ private void UpdateUserInterface(EntityUid uid, NukeComponent? component = null) if (!Resolve(uid, ref component)) return; - var ui = _ui.GetUiOrNull(uid, NukeUiKey.Key); - if (ui == null) + if (!_ui.HasUi(uid, NukeUiKey.Key)) return; var anchored = Transform(uid).Anchored; @@ -390,7 +386,7 @@ private void UpdateUserInterface(EntityUid uid, NukeComponent? component = null) CooldownTime = (int) component.CooldownTime }; - _ui.SetUiState(ui, state); + _ui.SetUiState(uid, NukeUiKey.Key, state); } private void PlayNukeKeypadSound(EntityUid uid, int number, NukeComponent? component = null) diff --git a/Content.Server/NukeOps/WarDeclaratorSystem.cs b/Content.Server/NukeOps/WarDeclaratorSystem.cs index dee0c10c40..04f0b069f1 100644 --- a/Content.Server/NukeOps/WarDeclaratorSystem.cs +++ b/Content.Server/NukeOps/WarDeclaratorSystem.cs @@ -58,9 +58,6 @@ private void OnAttemptOpenUI(Entity ent, ref Activatable private void OnActivated(Entity ent, ref WarDeclaratorActivateMessage args) { - if (args.Session.AttachedEntity is not {} playerEntity) - return; - var ev = new WarDeclaredEvent(ent.Comp.CurrentStatus, ent); RaiseLocalEvent(ref ev); @@ -78,7 +75,7 @@ private void OnActivated(Entity ent, ref WarDeclaratorAc { var title = Loc.GetString(ent.Comp.SenderTitle); _announcer.SendAnnouncement("war", Filter.Broadcast(), ent.Comp.Message, title, ent.Comp.Color); - _adminLogger.Add(LogType.Chat, LogImpact.Low, $"{ToPrettyString(playerEntity):player} has declared war with this text: {ent.Comp.Message}"); + _adminLogger.Add(LogType.Chat, LogImpact.Low, $"{ToPrettyString(args.Actor):player} has declared war with this text: {ent.Comp.Message}"); } UpdateUI(ent, ev.Status); @@ -86,8 +83,8 @@ private void OnActivated(Entity ent, ref WarDeclaratorAc private void UpdateUI(Entity ent, WarConditionStatus? status = null) { - _userInterfaceSystem.TrySetUiState( - ent, + _userInterfaceSystem.SetUiState( + ent.Owner, WarDeclaratorUiKey.Key, new WarDeclaratorBoundUserInterfaceState(status, ent.Comp.DisableAt, ent.Comp.ShuttleDisabledTime)); } diff --git a/Content.Server/Nutrition/Components/DrinkComponent.cs b/Content.Server/Nutrition/Components/DrinkComponent.cs deleted file mode 100644 index 20d47cda88..0000000000 --- a/Content.Server/Nutrition/Components/DrinkComponent.cs +++ /dev/null @@ -1,41 +0,0 @@ -using Content.Server.Nutrition.EntitySystems; -using Content.Shared.FixedPoint; -using Robust.Shared.Audio; - -namespace Content.Server.Nutrition.Components; - -[RegisterComponent, Access(typeof(DrinkSystem))] -public sealed partial class DrinkComponent : Component -{ - [DataField, ViewVariables(VVAccess.ReadWrite)] - public string Solution = "drink"; - - [DataField] - public SoundSpecifier UseSound = new SoundPathSpecifier("/Audio/Items/drink.ogg"); - - [DataField, ViewVariables(VVAccess.ReadWrite)] - public FixedPoint2 TransferAmount = FixedPoint2.New(5); - - /// - /// How long it takes to drink this yourself. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public float Delay = 1; - - [DataField, ViewVariables(VVAccess.ReadWrite)] - public bool Examinable = true; - - /// - /// If true, trying to drink when empty will not handle the event. - /// This means other systems such as equipping on use can run. - /// Example usecase is the bucket. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public bool IgnoreEmpty; - - /// - /// This is how many seconds it takes to force feed someone this drink. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public float ForceFeedDelay = 3; -} diff --git a/Content.Server/Nutrition/Components/FatExtractorComponent.cs b/Content.Server/Nutrition/Components/FatExtractorComponent.cs index e23c557236..fa6edc911e 100644 --- a/Content.Server/Nutrition/Components/FatExtractorComponent.cs +++ b/Content.Server/Nutrition/Components/FatExtractorComponent.cs @@ -1,4 +1,5 @@ using Content.Server.Nutrition.EntitySystems; +using Content.Shared.Construction.Prototypes; using Content.Shared.Nutrition.Components; using Robust.Shared.Audio; using Robust.Shared.Prototypes; @@ -8,67 +9,87 @@ namespace Content.Server.Nutrition.Components; /// -/// This is used for a machine that extracts hunger from entities and creates meat. Yum! +/// This is used for a machine that extracts hunger from entities and creates meat. Yum! /// [RegisterComponent, Access(typeof(FatExtractorSystem)), AutoGenerateComponentPause] public sealed partial class FatExtractorComponent : Component { /// - /// Whether or not the extractor is currently extracting fat from someone + /// Whether or not the extractor is currently extracting fat from someone /// - [DataField("processing")] + [DataField] public bool Processing = true; /// - /// How much nutrition is extracted per second. + /// How much nutrition is extracted per second. /// - [DataField("nutritionPerSecond"), ViewVariables(VVAccess.ReadWrite)] + [ViewVariables(VVAccess.ReadWrite)] public int NutritionPerSecond = 10; /// - /// An accumulator which tracks extracted nutrition to determine - /// when to spawn a meat. + /// The base rate of extraction /// - [DataField("nutrientAccumulator"), ViewVariables(VVAccess.ReadWrite)] + [DataField] + public int BaseNutritionPerSecond = 10; + + #region Machine Upgrade + /// + /// Which machine part affects the nutrition rate + /// + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MachinePartNutritionRate = "Manipulator"; + + /// + /// The increase in rate per each rating above 1. + /// + [DataField] + public float PartRatingRateMultiplier = 10; + #endregion + + /// + /// An accumulator which tracks extracted nutrition to determine + /// when to spawn a meat. + /// + [DataField] public int NutrientAccumulator; /// - /// How high has to be to spawn meat + /// How high has to be to spawn meat /// - [DataField("nutrientPerMeat"), ViewVariables(VVAccess.ReadWrite)] - public int NutrientPerMeat = 30; + [DataField] + public int NutrientPerMeat = 60; /// - /// Meat spawned by the extractor. + /// Meat spawned by the extractor. /// - [DataField("meatPrototype", customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)] + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] public string MeatPrototype = "FoodMeat"; /// - /// When the next update will occur + /// When the next update will occur /// - [DataField("nextUpdate", customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] [AutoPausedField] public TimeSpan NextUpdate; /// - /// How long each update takes + /// How long each update takes /// - [DataField("updateTime"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public TimeSpan UpdateTime = TimeSpan.FromSeconds(1); /// - /// The sound played when extracting + /// The sound played when extracting /// - [DataField("processSound")] + [DataField] public SoundSpecifier? ProcessSound; public EntityUid? Stream; /// - /// A minium hunger threshold for extracting nutrition. - /// Ignored when emagged. + /// A minium hunger threshold for extracting nutrition. + /// Ignored when emagged. /// - [DataField("minHungerThreshold")] + [DataField] public HungerThreshold MinHungerThreshold = HungerThreshold.Okay; } diff --git a/Content.Server/Nutrition/Components/PressurizedDrinkComponent.cs b/Content.Server/Nutrition/Components/PressurizedDrinkComponent.cs deleted file mode 100644 index aafb3bc106..0000000000 --- a/Content.Server/Nutrition/Components/PressurizedDrinkComponent.cs +++ /dev/null @@ -1,27 +0,0 @@ -using Content.Server.Nutrition.EntitySystems; -using Robust.Shared.Audio; - -namespace Content.Server.Nutrition.Components; - -/// -/// Lets a drink burst open when thrown while closed. -/// Requires and to work. -/// -[RegisterComponent, Access(typeof(DrinkSystem))] -public sealed partial class PressurizedDrinkComponent : Component -{ - /// - /// Chance for the drink to burst when thrown while closed. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public float BurstChance = 0.25f; - - /// - /// Sound played when the drink bursts. - /// - [DataField] - public SoundSpecifier BurstSound = new SoundPathSpecifier("/Audio/Effects/flash_bang.ogg") - { - Params = AudioParams.Default.WithVolume(-4) - }; -} diff --git a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs index 2249926baa..cd05adc794 100644 --- a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs @@ -5,7 +5,6 @@ using Content.Server.Fluids.EntitySystems; using Content.Server.Forensics; using Content.Server.Inventory; -using Content.Server.Nutrition.Components; using Content.Server.Popups; using Content.Server.Traits.Assorted.Components; using Content.Shared.Administration.Logs; @@ -18,7 +17,6 @@ using Content.Shared.Chemistry.Reagent; using Content.Shared.Database; using Content.Shared.DoAfter; -using Content.Shared.Examine; using Content.Shared.FixedPoint; using Content.Shared.IdentityManagement; using Content.Shared.Interaction; @@ -27,25 +25,22 @@ using Content.Shared.Nutrition; using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; -using Content.Shared.Throwing; using Content.Shared.Verbs; using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Player; using Robust.Shared.Prototypes; -using Robust.Shared.Random; using Robust.Shared.Utility; namespace Content.Server.Nutrition.EntitySystems; -public sealed class DrinkSystem : EntitySystem +public sealed class DrinkSystem : SharedDrinkSystem { [Dependency] private readonly BodySystem _body = default!; [Dependency] private readonly FlavorProfileSystem _flavorProfile = default!; [Dependency] private readonly FoodSystem _food = default!; [Dependency] private readonly IPrototypeManager _proto = default!; - [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly OpenableSystem _openable = default!; @@ -70,33 +65,10 @@ public override void Initialize() SubscribeLocalEvent(OnDrinkInit); // run before inventory so for bucket it always tries to drink before equipping (when empty) // run after openable so its always open -> drink - SubscribeLocalEvent(OnUse, before: new[] { typeof(ServerInventorySystem) }, after: new[] { typeof(OpenableSystem) }); + SubscribeLocalEvent(OnUse, before: [typeof(ServerInventorySystem)], after: [typeof(OpenableSystem)]); SubscribeLocalEvent(AfterInteract); SubscribeLocalEvent>(AddDrinkVerb); - // put drink amount after opened - SubscribeLocalEvent(OnExamined, after: new[] { typeof(OpenableSystem) }); SubscribeLocalEvent(OnDoAfter); - - SubscribeLocalEvent(OnPressurizedDrinkLand); - } - - private FixedPoint2 DrinkVolume(EntityUid uid, DrinkComponent? component = null) - { - if (!Resolve(uid, ref component)) - return FixedPoint2.Zero; - - if (!_solutionContainer.TryGetSolution(uid, component.Solution, out _, out var sol)) - return FixedPoint2.Zero; - - return sol.Volume; - } - - public bool IsEmpty(EntityUid uid, DrinkComponent? component = null) - { - if (!Resolve(uid, ref component)) - return true; - - return DrinkVolume(uid, component) <= 0; } /// @@ -133,38 +105,6 @@ public float TotalHydration(EntityUid uid, DrinkComponent? comp = null) return total; } - private void OnExamined(Entity entity, ref ExaminedEvent args) - { - TryComp(entity, out var openable); - if (_openable.IsClosed(entity.Owner, null, openable) || !args.IsInDetailsRange || !entity.Comp.Examinable) - return; - - var empty = IsEmpty(entity, entity.Comp); - if (empty) - { - args.PushMarkup(Loc.GetString("drink-component-on-examine-is-empty")); - return; - } - - if (HasComp(entity)) - { - //provide exact measurement for beakers - args.PushText(Loc.GetString("drink-component-on-examine-exact-volume", ("amount", DrinkVolume(entity, entity.Comp)))); - } - else - { - //general approximation - var remainingString = (int) _solutionContainer.PercentFull(entity) switch - { - 100 => "drink-component-on-examine-is-full", - > 66 => "drink-component-on-examine-is-mostly-full", - > 33 => HalfEmptyOrHalfFull(args), - _ => "drink-component-on-examine-is-mostly-empty", - }; - args.PushMarkup(Loc.GetString(remainingString)); - } - } - private void AfterInteract(Entity entity, ref AfterInteractEvent args) { if (args.Handled || args.Target == null || !args.CanReach) @@ -181,25 +121,6 @@ private void OnUse(Entity entity, ref UseInHandEvent args) args.Handled = TryDrink(args.User, args.User, entity.Comp, entity); } - private void OnPressurizedDrinkLand(Entity entity, ref LandEvent args) - { - if (!TryComp(entity, out var drink) || !TryComp(entity, out var openable)) - return; - - if (!openable.Opened && - _random.Prob(entity.Comp.BurstChance) && - _solutionContainer.TryGetSolution(entity.Owner, drink.Solution, out var soln, out var interactions)) - { - // using SetOpen instead of TryOpen to not play 2 sounds - _openable.SetOpen(entity, true, openable); - - var solution = _solutionContainer.SplitSolution(soln.Value, interactions.Volume); - _puddle.TrySpillAt(entity, solution, out _); - - _audio.PlayPvs(entity.Comp.BurstSound, entity); - } - } - private void OnDrinkInit(Entity entity, ref ComponentInit args) { if (TryComp(entity, out var existingDrainable)) @@ -442,16 +363,4 @@ private void AddDrinkVerb(Entity entity, ref GetVerbsEvent(args.Examiner, out var examiner) && examiner.EntityName.Length > 0 - && string.Compare(examiner.EntityName.Substring(0, 1), "m", StringComparison.InvariantCultureIgnoreCase) > 0) - remainingString = "drink-component-on-examine-is-half-empty"; - - return remainingString; - } } diff --git a/Content.Server/Nutrition/EntitySystems/FatExtractorSystem.cs b/Content.Server/Nutrition/EntitySystems/FatExtractorSystem.cs index 180e40d1e4..dc1f67c740 100644 --- a/Content.Server/Nutrition/EntitySystems/FatExtractorSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/FatExtractorSystem.cs @@ -1,5 +1,6 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; +using Content.Server.Construction; using Content.Server.Nutrition.Components; using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; @@ -9,6 +10,7 @@ using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; using Content.Shared.Storage.Components; +using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Timing; @@ -27,12 +29,25 @@ public sealed class FatExtractorSystem : EntitySystem /// public override void Initialize() { + SubscribeLocalEvent(OnRefreshParts); + SubscribeLocalEvent(OnUpgradeExamine); SubscribeLocalEvent(OnGotEmagged); SubscribeLocalEvent(OnClosed); SubscribeLocalEvent(OnOpen); SubscribeLocalEvent(OnPowerChanged); } + private void OnRefreshParts(EntityUid uid, FatExtractorComponent component, RefreshPartsEvent args) + { + var rating = args.PartRatings[component.MachinePartNutritionRate] - 1; + component.NutritionPerSecond = component.BaseNutritionPerSecond + (int) (component.PartRatingRateMultiplier * rating); + } + + private void OnUpgradeExamine(EntityUid uid, FatExtractorComponent component, UpgradeExamineEvent args) + { + args.AddPercentageUpgrade("fat-extractor-component-rate", (float) component.NutritionPerSecond / component.BaseNutritionPerSecond); + } + private void OnGotEmagged(EntityUid uid, FatExtractorComponent component, ref GotEmaggedEvent args) { args.Handled = true; diff --git a/Content.Server/Nutrition/EntitySystems/FoodGuideDataSystem.cs b/Content.Server/Nutrition/EntitySystems/FoodGuideDataSystem.cs new file mode 100644 index 0000000000..f21c509ace --- /dev/null +++ b/Content.Server/Nutrition/EntitySystems/FoodGuideDataSystem.cs @@ -0,0 +1,138 @@ +using System.Linq; +using Content.Client.Chemistry.EntitySystems; +using Content.Server.Chemistry.ReactionEffects; +using Content.Server.Nutrition.Components; +using Content.Shared.Chemistry.Components.SolutionManager; +using Content.Shared.Chemistry.Reaction; +using Content.Shared.Chemistry.Reagent; +using Content.Shared.Kitchen; +using Content.Shared.Nutrition.Components; +using Robust.Server.Player; +using Robust.Shared.Enums; +using Robust.Shared.Player; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Server.Nutrition.EntitySystems; + +public sealed class FoodGuideDataSystem : SharedFoodGuideDataSystem +{ + public static readonly ProtoId[] ReagentWhitelist = + [ + "Nutriment", + "Vitamin", + "Protein", + "UncookedAnimalProteins", + "Fat", + "Water" + ]; + + public static readonly string[] ComponentNamesBlacklist = ["HumanoidAppearance"]; + + public static readonly string[] SuffixBlacklist = ["debug", "do not map", "admeme"]; + + [Dependency] private readonly IPlayerManager _player = default!; + [Dependency] private readonly IPrototypeManager _protoMan = default!; + + private Dictionary> _sources = new(); + + public override void Initialize() + { + SubscribeLocalEvent(OnPrototypesReloaded); + _player.PlayerStatusChanged += OnPlayerStatusChanged; + + ReloadRecipes(); + } + + private void OnPrototypesReloaded(PrototypesReloadedEventArgs args) + { + if (!args.WasModified() + && !args.WasModified() + && !args.WasModified() + ) + return; + + ReloadRecipes(); + } + + public void ReloadRecipes() + { + // TODO: add this code to the list of known recipes because this is spaghetti + _sources.Clear(); + + // Butcherable and slicable entities + foreach (var ent in _protoMan.EnumeratePrototypes()) + { + if (ent.Abstract + || ent.Components.Any(it => ComponentNamesBlacklist.Contains(it.Key)) + || ent.SetSuffix is {} suffix && SuffixBlacklist.Any(it => suffix.Contains(it, StringComparison.OrdinalIgnoreCase)) + ) + continue; + + if (ent.TryGetComponent(out var butcherable)) + { + var butcheringSource = new FoodButcheringData(ent, butcherable); + foreach (var butchlet in butcherable.SpawnedEntities) + { + if (butchlet.PrototypeId is null) + continue; + + _sources.GetOrNew(butchlet.PrototypeId).Add(butcheringSource); + } + } + + if (ent.TryGetComponent(out var slicable) && slicable.Slice is not null) + { + _sources.GetOrNew(slicable.Slice).Add(new FoodSlicingData(ent, slicable.Slice.Value, slicable.TotalCount)); + } + } + + // Recipes + foreach (var recipe in _protoMan.EnumeratePrototypes()) + { + _sources.GetOrNew(recipe.Result).Add(new FoodRecipeData(recipe)); + } + + // Entity-spawning reactions + foreach (var reaction in _protoMan.EnumeratePrototypes()) + { + foreach (var effect in reaction.Effects) + { + if (effect is not CreateEntityReactionEffect entEffect) + continue; + + _sources.GetOrNew(entEffect.Entity).Add(new FoodReactionData(reaction, entEffect.Entity, (int) entEffect.Number)); + } + } + + Registry.Clear(); + + foreach (var (result, sources) in _sources) + { + var proto = _protoMan.Index(result); + var composition = proto.TryGetComponent(out var food) && proto.TryGetComponent(out var manager) + ? manager?.Solutions?[food.Solution]?.Contents?.ToArray() ?? [] + : []; + + // We filter out food without whitelisted reagents because well when people look for food they usually expect FOOD and not insulated gloves. + // And we get insulated and other gloves because they have ButcherableComponent and they are also moth food + if (!composition.Any(it => ReagentWhitelist.Contains(it.Reagent.Prototype))) + continue; + + // We also limit the number of sources to 10 because it's a huge performance strain to render 500 raw meat recipes. + var distinctSources = sources.DistinctBy(it => it.Identitier).Take(10); + var entry = new FoodGuideEntry(result, proto.Name, distinctSources.ToArray(), composition); + Registry.Add(entry); + } + + RaiseNetworkEvent(new FoodGuideRegistryChangedEvent(Registry)); + } + + private void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs args) + { + if (args.NewStatus != SessionStatus.Connected) + return; + + RaiseNetworkEvent(new FoodGuideRegistryChangedEvent(Registry), args.Session); + } +} diff --git a/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs b/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs index fe0d1d0c16..d5bff967b3 100644 --- a/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs +++ b/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs @@ -13,6 +13,7 @@ using Content.Shared.Interaction; using Content.Shared.Nutrition; using System.Threading; +using Content.Shared.Atmos; /// /// System for vapes diff --git a/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.Storage.cs b/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.Storage.cs index 8858286dbf..a9a07c287b 100644 --- a/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.Storage.cs +++ b/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.Storage.cs @@ -80,14 +80,13 @@ private void OnInteractUsing(EntityUid uid, DeepFryerComponent component, Intera private void OnInsertItem(EntityUid uid, DeepFryerComponent component, DeepFryerInsertItemMessage args) { - var user = args.Session.AttachedEntity; + var user = EntityManager.GetEntity(args.Entity); - if (user == null || - !TryComp(user, out var handsComponent) || + if (!TryComp(user, out var handsComponent) || handsComponent.ActiveHandEntity == null) return; if (handsComponent.ActiveHandEntity != null) - TryInsertItem(uid, component, user.Value, handsComponent.ActiveHandEntity.Value); + TryInsertItem(uid, component, user, handsComponent.ActiveHandEntity.Value); } } diff --git a/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs b/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs index 80c38f4630..dc182c1edf 100644 --- a/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs +++ b/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs @@ -128,8 +128,7 @@ private void UpdateUserInterface(EntityUid uid, DeepFryerComponent component) component.FryingOilThreshold, EntityManager.GetNetEntityArray(component.Storage.ContainedEntities.ToArray())); - if (!_uiSystem.TrySetUiState(uid, DeepFryerUiKey.Key, state)) - _sawmill.Warning($"{ToPrettyString(uid)} was unable to set UI state."); + _uiSystem.SetUiState(new Entity(uid, null), DeepFryerUiKey.Key, state); } /// @@ -525,15 +524,12 @@ private void OnRemoveItem(EntityUid uid, DeepFryerComponent component, DeepFryer if (!_containerSystem.Remove(removedItem, component.Storage)) return; - var user = args.Session.AttachedEntity; + var user = EntityManager.GetEntity(args.Entity); - if (user != null) - { - _handsSystem.TryPickupAnyHand(user.Value, removedItem); + _handsSystem.TryPickupAnyHand(user, removedItem); - _adminLogManager.Add(LogType.Action, LogImpact.Low, - $"{ToPrettyString(user.Value)} took {ToPrettyString(args.Item)} out of {ToPrettyString(uid)}."); - } + _adminLogManager.Add(LogType.Action, LogImpact.Low, + $"{ToPrettyString(user)} took {ToPrettyString(args.Item)} out of {ToPrettyString(uid)}."); _audioSystem.PlayPvs(component.SoundRemoveItem, uid, AudioParamsInsertRemove); @@ -581,17 +577,16 @@ private bool TryGetActiveHandSolutionContainer( private void OnScoopVat(EntityUid uid, DeepFryerComponent component, DeepFryerScoopVatMessage args) { - var user = args.Session.AttachedEntity; + var user = EntityManager.GetEntity(args.Entity); - if (user == null || - !TryGetActiveHandSolutionContainer(uid, user.Value, out var heldItem, out var heldSolution, + if (!TryGetActiveHandSolutionContainer(uid, user, out var heldItem, out var heldSolution, out var transferAmount)) return; if (!_solutionContainerSystem.TryGetSolution(component.Owner, component.Solution.Name, out var solution)) return; - _solutionTransferSystem.Transfer(user.Value, + _solutionTransferSystem.Transfer(user, uid, solution.Value, heldItem.Value, @@ -603,10 +598,9 @@ private void OnScoopVat(EntityUid uid, DeepFryerComponent component, DeepFryerSc private void OnClearSlagStart(EntityUid uid, DeepFryerComponent component, DeepFryerClearSlagMessage args) { - var user = args.Session.AttachedEntity; + var user = EntityManager.GetEntity(args.Entity); - if (user == null || - !TryGetActiveHandSolutionContainer(uid, user.Value, out var heldItem, out var heldSolution, + if (!TryGetActiveHandSolutionContainer(uid, user, out var heldItem, out var heldSolution, out var transferAmount)) return; @@ -616,7 +610,7 @@ private void OnClearSlagStart(EntityUid uid, DeepFryerComponent component, DeepF _popupSystem.PopupEntity( Loc.GetString("deep-fryer-oil-no-slag"), uid, - user.Value); + user); return; } @@ -626,7 +620,7 @@ private void OnClearSlagStart(EntityUid uid, DeepFryerComponent component, DeepF var ev = new ClearSlagDoAfterEvent(heldSolution.Value.Comp.Solution, transferAmount); //JJ Comment - not sure I have DoAfterArgs configured correctly. - var doAfterArgs = new DoAfterArgs(EntityManager, user.Value, delay, ev, uid, uid, heldItem) + var doAfterArgs = new DoAfterArgs(EntityManager, user, delay, ev, uid, uid, heldItem) { BreakOnDamage = true, BreakOnTargetMove = true, @@ -645,13 +639,10 @@ private void OnRemoveAllItems(EntityUid uid, DeepFryerComponent component, DeepF _containerSystem.EmptyContainer(component.Storage); - var user = args.Session.AttachedEntity; + var user = EntityManager.GetEntity(args.Entity); - if (user != null) - { - _adminLogManager.Add(LogType.Action, LogImpact.Low, - $"{ToPrettyString(user.Value)} removed all items from {ToPrettyString(uid)}."); - } + _adminLogManager.Add(LogType.Action, LogImpact.Low, + $"{ToPrettyString(user)} removed all items from {ToPrettyString(uid)}."); _audioSystem.PlayPvs(component.SoundRemoveItem, uid, AudioParamsInsertRemove); diff --git a/Content.Server/Nyanotrasen/Mail/Components/MailComponent.cs b/Content.Server/Nyanotrasen/Mail/Components/MailComponent.cs deleted file mode 100644 index 61d94bbad3..0000000000 --- a/Content.Server/Nyanotrasen/Mail/Components/MailComponent.cs +++ /dev/null @@ -1,108 +0,0 @@ -using System.Threading; -using Robust.Shared.Audio; -using Content.Shared.Storage; -using Content.Shared.Mail; - -namespace Content.Server.Mail.Components -{ - [RegisterComponent] - public sealed partial class MailComponent : SharedMailComponent - { - [ViewVariables(VVAccess.ReadWrite)] - [DataField("recipient")] - public string Recipient = "None"; - - [ViewVariables(VVAccess.ReadWrite)] - [DataField("recipientJob")] - public string RecipientJob = "None"; - - // Why do we not use LockComponent? - // Because this can't be locked again, - // and we have special conditions for unlocking, - // and we don't want to add a verb. - [ViewVariables(VVAccess.ReadWrite)] - [DataField("isLocked")] - public bool IsLocked = true; - - /// - /// Is this parcel profitable to deliver for the station? - /// - /// - /// The station won't receive any award on delivery if this is false. - /// This is useful for broken fragile packages and packages that were - /// not delivered in time. - /// - [DataField("isProfitable")] - public bool IsProfitable = true; - - /// - /// Is this package considered fragile? - /// - /// - /// This can be set to true in the YAML files for a mail delivery to - /// always be Fragile, despite its contents. - /// - [DataField("isFragile")] - public bool IsFragile = false; - - /// - /// Is this package considered priority mail? - /// - /// - /// There will be a timer set for its successful delivery. The - /// station's bank account will be penalized if it is not delivered on - /// time. - /// - /// This is set to false on successful delivery. - /// - /// This can be set to true in the YAML files for a mail delivery to - /// always be Priority. - /// - [DataField("isPriority")] - public bool IsPriority = false; - - /// - /// What will be packaged when the mail is spawned. - /// - [DataField("contents")] - public List Contents = new(); - - /// - /// The amount that cargo will be awarded for delivering this mail. - /// - [DataField("bounty")] - public int Bounty = 750; - - /// - /// Penalty if the mail is destroyed. - /// - [DataField("penalty")] - public int Penalty = -250; - - /// - /// The sound that's played when the mail's lock is broken. - /// - [DataField("penaltySound")] - public SoundSpecifier PenaltySound = new SoundPathSpecifier("/Audio/Machines/Nuke/angry_beep.ogg"); - - /// - /// The sound that's played when the mail's opened. - /// - [DataField("openSound")] - public SoundSpecifier OpenSound = new SoundPathSpecifier("/Audio/Effects/packetrip.ogg"); - - /// - /// The sound that's played when the mail's lock has been emagged. - /// - [DataField("emagSound")] - public SoundSpecifier EmagSound = new SoundCollectionSpecifier("sparks"); - - /// - /// Whether this component is enabled. - /// Removed when it becomes trash. - /// - public bool IsEnabled = true; - - public CancellationTokenSource? priorityCancelToken; - } -} diff --git a/Content.Server/Nyanotrasen/Mail/Components/MailReceiverComponent.cs b/Content.Server/Nyanotrasen/Mail/Components/MailReceiverComponent.cs deleted file mode 100644 index 4224de5de4..0000000000 --- a/Content.Server/Nyanotrasen/Mail/Components/MailReceiverComponent.cs +++ /dev/null @@ -1,6 +0,0 @@ -namespace Content.Server.Mail.Components -{ - [RegisterComponent] - public sealed partial class MailReceiverComponent : Component - {} -} diff --git a/Content.Server/Nyanotrasen/Mail/Components/MailTeleporterComponent.cs b/Content.Server/Nyanotrasen/Mail/Components/MailTeleporterComponent.cs deleted file mode 100644 index bc05d7307d..0000000000 --- a/Content.Server/Nyanotrasen/Mail/Components/MailTeleporterComponent.cs +++ /dev/null @@ -1,108 +0,0 @@ -using Robust.Shared.Audio; - -namespace Content.Server.Mail.Components -{ - /// - /// This is for the mail teleporter. - /// Random mail will be teleported to this every few minutes. - /// - [RegisterComponent] - public sealed partial class MailTeleporterComponent : Component - { - - // Not starting accumulator at 0 so mail carriers have some deliveries to make shortly after roundstart. - [DataField("accumulator")] - public float Accumulator = 285f; - - [DataField("teleportInterval")] - public TimeSpan TeleportInterval = TimeSpan.FromMinutes(5); - - /// - /// The sound that's played when new mail arrives. - /// - [DataField("teleportSound")] - public SoundSpecifier TeleportSound = new SoundPathSpecifier("/Audio/Effects/teleport_arrival.ogg"); - - /// - /// The MailDeliveryPoolPrototype that's used to select what mail this - /// teleporter can deliver. - /// - [DataField("mailPool")] - public string MailPool = "RandomMailDeliveryPool"; - - /// - /// How many mail candidates do we need per actual delivery sent when - /// the mail goes out? The number of candidates is divided by this number - /// to determine how many deliveries will be teleported in. - /// It does not determine unique recipients. That is random. - /// - [DataField("candidatesPerDelivery")] - public int CandidatesPerDelivery = 8; - - [DataField("minimumDeliveriesPerTeleport")] - public int MinimumDeliveriesPerTeleport = 1; - - /// - /// Do not teleport any more mail in, if there are at least this many - /// undelivered parcels. - /// - /// - /// Currently this works by checking how many MailComponent entities - /// are sitting on the teleporter's tile. - /// - /// It should be noted that if the number of actual deliveries to be - /// made based on the number of candidates divided by candidates per - /// delivery exceeds this number, the teleporter will spawn more mail - /// than this number. - /// - /// This is just a simple check to see if anyone's been picking up the - /// mail lately to prevent entity bloat for the sake of performance. - /// - [DataField("maximumUndeliveredParcels")] - public int MaximumUndeliveredParcels = 5; - - /// - /// Any item that breaks or is destroyed in less than this amount of - /// damage is one of the types of items considered fragile. - /// - [DataField("fragileDamageThreshold")] - public int FragileDamageThreshold = 10; - - /// - /// What's the bonus for delivering a fragile package intact? - /// - [DataField("fragileBonus")] - public int FragileBonus = 100; - - /// - /// What's the malus for failing to deliver a fragile package? - /// - [DataField("fragileMalus")] - public int FragileMalus = -100; - - /// - /// What's the chance for any one delivery to be marked as priority mail? - /// - [DataField("priorityChance")] - public float PriorityChance = 0.1f; - - /// - /// How long until a priority delivery is considered as having failed - /// if not delivered? - /// - [DataField("priorityDuration")] - public TimeSpan priorityDuration = TimeSpan.FromMinutes(5); - - /// - /// What's the bonus for delivering a priority package on time? - /// - [DataField("priorityBonus")] - public int PriorityBonus = 250; - - /// - /// What's the malus for failing to deliver a priority package? - /// - [DataField("priorityMalus")] - public int PriorityMalus = -250; - } -} diff --git a/Content.Server/Nyanotrasen/Mail/Components/StationMailRouterComponent.cs b/Content.Server/Nyanotrasen/Mail/Components/StationMailRouterComponent.cs deleted file mode 100644 index ce87eb131f..0000000000 --- a/Content.Server/Nyanotrasen/Mail/Components/StationMailRouterComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace Content.Server.Mail; - -/// -/// Designates a station as a place for sending and receiving mail. -/// -[RegisterComponent] -public sealed partial class StationMailRouterComponent : Component -{ -} diff --git a/Content.Server/Nyanotrasen/Mail/MailCommands.cs b/Content.Server/Nyanotrasen/Mail/MailCommands.cs deleted file mode 100644 index 5af873f9e8..0000000000 --- a/Content.Server/Nyanotrasen/Mail/MailCommands.cs +++ /dev/null @@ -1,137 +0,0 @@ -using System.Linq; -using Robust.Shared.Console; -using Robust.Shared.Containers; -using Robust.Shared.Prototypes; -using Content.Shared.Administration; -using Content.Server.Administration; -using Content.Server.Mail.Components; - -namespace Content.Server.Mail; - -[AdminCommand(AdminFlags.Fun)] -public sealed class MailToCommand : IConsoleCommand -{ - public string Command => "mailto"; - public string Description => Loc.GetString("command-mailto-description", ("requiredComponent", nameof(MailReceiverComponent))); - public string Help => Loc.GetString("command-mailto-help", ("command", Command)); - - [Dependency] private readonly IEntityManager _entityManager = default!; - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly IEntitySystemManager _entitySystemManager = default!; - - private readonly string _blankMailPrototype = "MailAdminFun"; - private readonly string _container = "storagebase"; - private readonly string _mailContainer = "contents"; - - - public async void Execute(IConsoleShell shell, string argStr, string[] args) - { - if (args.Length < 4) - { - shell.WriteError(Loc.GetString("shell-wrong-arguments-number")); - return; - } - - if (!EntityUid.TryParse(args[0], out var recipientUid)) - { - shell.WriteError(Loc.GetString("shell-entity-uid-must-be-number")); - return; - } - - if (!EntityUid.TryParse(args[1], out var containerUid)) - { - shell.WriteError(Loc.GetString("shell-entity-uid-must-be-number")); - return; - } - - if (!Boolean.TryParse(args[2], out var isFragile)) - { - shell.WriteError(Loc.GetString("shell-invalid-bool")); - return; - } - - if (!Boolean.TryParse(args[3], out var isPriority)) - { - shell.WriteError(Loc.GetString("shell-invalid-bool")); - return; - } - - - var _mailSystem = _entitySystemManager.GetEntitySystem(); - var _containerSystem = _entitySystemManager.GetEntitySystem(); - - if (!_entityManager.TryGetComponent(recipientUid, out MailReceiverComponent? mailReceiver)) - { - shell.WriteLine(Loc.GetString("command-mailto-no-mailreceiver", ("requiredComponent", nameof(MailReceiverComponent)))); - return; - } - - if (!_prototypeManager.HasIndex(_blankMailPrototype)) - { - shell.WriteLine(Loc.GetString("command-mailto-no-blankmail", ("blankMail", _blankMailPrototype))); - return; - } - - if (!_containerSystem.TryGetContainer(containerUid, _container, out var targetContainer)) - { - shell.WriteLine(Loc.GetString("command-mailto-invalid-container", ("requiredContainer", _container))); - return; - } - - if (!_mailSystem.TryGetMailRecipientForReceiver(mailReceiver, out MailRecipient? recipient)) - { - shell.WriteLine(Loc.GetString("command-mailto-unable-to-receive")); - return; - } - - if (!_mailSystem.TryGetMailTeleporterForReceiver(mailReceiver, out MailTeleporterComponent? teleporterComponent)) - { - shell.WriteLine(Loc.GetString("command-mailto-no-teleporter-found")); - return; - } - - var mailUid = _entityManager.SpawnEntity(_blankMailPrototype, _entityManager.GetComponent(containerUid).Coordinates); - var mailContents = _containerSystem.EnsureContainer(mailUid, _mailContainer); - - if (!_entityManager.TryGetComponent(mailUid, out MailComponent? mailComponent)) - { - shell.WriteLine(Loc.GetString("command-mailto-bogus-mail", ("blankMail", _blankMailPrototype), ("requiredMailComponent", nameof(MailComponent)))); - return; - } - - foreach (var entity in targetContainer.ContainedEntities.ToArray()) - _containerSystem.Insert(entity, mailContents); - - mailComponent.IsFragile = isFragile; - mailComponent.IsPriority = isPriority; - - _mailSystem.SetupMail(mailUid, teleporterComponent, recipient.Value); - - var teleporterQueue = _containerSystem.EnsureContainer(teleporterComponent.Owner, "queued"); - _containerSystem.Insert(mailUid, teleporterQueue); - shell.WriteLine(Loc.GetString("command-mailto-success", ("timeToTeleport", teleporterComponent.TeleportInterval.TotalSeconds - teleporterComponent.Accumulator))); - } -} - -[AdminCommand(AdminFlags.Fun)] -public sealed class MailNowCommand : IConsoleCommand -{ - public string Command => "mailnow"; - public string Description => Loc.GetString("command-mailnow"); - public string Help => Loc.GetString("command-mailnow-help", ("command", Command)); - - [Dependency] private readonly IEntityManager _entityManager = default!; - [Dependency] private readonly IEntitySystemManager _entitySystemManager = default!; - - public async void Execute(IConsoleShell shell, string argStr, string[] args) - { - var _mailSystem = _entitySystemManager.GetEntitySystem(); - - foreach (var mailTeleporter in _entityManager.EntityQuery()) - { - mailTeleporter.Accumulator += (float) mailTeleporter.TeleportInterval.TotalSeconds - mailTeleporter.Accumulator; - } - - shell.WriteLine(Loc.GetString("command-mailnow-success")); - } -} diff --git a/Content.Server/Nyanotrasen/Mail/MailSystem.cs b/Content.Server/Nyanotrasen/Mail/MailSystem.cs deleted file mode 100644 index 05cd0c88a7..0000000000 --- a/Content.Server/Nyanotrasen/Mail/MailSystem.cs +++ /dev/null @@ -1,731 +0,0 @@ -using System.Diagnostics.CodeAnalysis; -using System.Linq; -using System.Threading; -using Robust.Shared.Audio; -using Robust.Shared.Containers; -using Robust.Shared.Prototypes; -using Robust.Shared.Random; -using Content.Server.Access.Systems; -using Content.Server.Cargo.Components; -using Content.Server.Cargo.Systems; -using Content.Server.Chat.Systems; -using Content.Server.Chemistry.Containers.EntitySystems; -using Content.Server.Chemistry.EntitySystems; -using Content.Server.Damage.Components; -using Content.Server.Destructible; -using Content.Server.Destructible.Thresholds; -using Content.Server.Destructible.Thresholds.Behaviors; -using Content.Server.Destructible.Thresholds.Triggers; -using Content.Server.Fluids.Components; -using Content.Server.Item; -using Content.Server.Mail.Components; -using Content.Server.Mind; -using Content.Server.Nutrition.Components; -using Content.Server.Nutrition.EntitySystems; -using Content.Server.Popups; -using Content.Server.Power.Components; -using Content.Server.Station.Systems; -using Content.Server.Spawners.EntitySystems; -using Content.Shared.Access; -using Content.Shared.Access.Components; -using Content.Shared.Access.Systems; -using Content.Shared.Chat; -using Content.Shared.Chemistry.EntitySystems; -using Content.Shared.Damage; -using Content.Shared.Emag.Components; -using Content.Shared.Destructible; -using Content.Shared.Emag.Systems; -using Content.Shared.Examine; -using Content.Shared.Fluids.Components; -using Content.Shared.Hands.EntitySystems; -using Content.Shared.Interaction; -using Content.Shared.Interaction.Events; -using Content.Shared.Item; -using Content.Shared.Mail; -using Content.Shared.Maps; -using Content.Shared.Nutrition.Components; -using Content.Shared.Nutrition.EntitySystems; -using Content.Shared.PDA; -using Content.Shared.Random.Helpers; -using Content.Shared.Roles; -using Content.Shared.StatusIcon; -using Content.Shared.Storage; -using Content.Shared.Tag; -using Robust.Shared.Audio.Systems; -using Timer = Robust.Shared.Timing.Timer; - -namespace Content.Server.Mail -{ - public sealed class MailSystem : EntitySystem - { - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly AccessReaderSystem _accessSystem = default!; - [Dependency] private readonly SharedHandsSystem _handsSystem = default!; - [Dependency] private readonly IdCardSystem _idCardSystem = default!; - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly TagSystem _tagSystem = default!; - [Dependency] private readonly CargoSystem _cargoSystem = default!; - [Dependency] private readonly StationSystem _stationSystem = default!; - [Dependency] private readonly ChatSystem _chatSystem = default!; - [Dependency] private readonly OpenableSystem _openable = default!; - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly SharedContainerSystem _containerSystem = default!; - [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; - [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!; - [Dependency] private readonly SharedAudioSystem _audioSystem = default!; - [Dependency] private readonly DamageableSystem _damageableSystem = default!; - [Dependency] private readonly ItemSystem _itemSystem = default!; - [Dependency] private readonly MindSystem _mindSystem = default!; - [Dependency] private readonly MetaDataSystem _metaDataSystem = default!; - - private ISawmill _sawmill = default!; - - public override void Initialize() - { - base.Initialize(); - - _sawmill = Logger.GetSawmill("mail"); - - SubscribeLocalEvent(OnSpawnPlayer, after: new[] { typeof(SpawnPointSystem) }); - - SubscribeLocalEvent(OnRemove); - SubscribeLocalEvent(OnUseInHand); - SubscribeLocalEvent(OnAfterInteractUsing); - SubscribeLocalEvent(OnExamined); - SubscribeLocalEvent(OnDestruction); - SubscribeLocalEvent(OnDamage); - SubscribeLocalEvent(OnBreak); - SubscribeLocalEvent(OnMailEmagged); - } - - public override void Update(float frameTime) - { - base.Update(frameTime); - foreach (var mailTeleporter in EntityQuery()) - { - if (TryComp(mailTeleporter.Owner, out var power) && !power.Powered) - return; - - mailTeleporter.Accumulator += frameTime; - - if (mailTeleporter.Accumulator < mailTeleporter.TeleportInterval.TotalSeconds) - continue; - - mailTeleporter.Accumulator -= (float) mailTeleporter.TeleportInterval.TotalSeconds; - - SpawnMail(mailTeleporter.Owner, mailTeleporter); - } - } - - /// - /// Dynamically add the MailReceiver component to appropriate entities. - /// - private void OnSpawnPlayer(PlayerSpawningEvent args) - { - if (args.SpawnResult == null || - args.Job == null || - args.Station is not {} station) - { - return; - } - - if (!HasComp(station)) - return; - - AddComp(args.SpawnResult.Value); - } - - private void OnRemove(EntityUid uid, MailComponent component, ComponentRemove args) - { - // Make sure the priority timer doesn't run. - if (component.priorityCancelToken != null) - component.priorityCancelToken.Cancel(); - } - - /// - /// Try to open the mail. - /// - private void OnUseInHand(EntityUid uid, MailComponent component, UseInHandEvent args) - { - if (!component.IsEnabled) - return; - if (component.IsLocked) - { - _popupSystem.PopupEntity(Loc.GetString("mail-locked"), uid, args.User); - return; - } - OpenMail(uid, component, args.User); - } - - /// - /// Handle logic similar between a normal mail unlock and an emag - /// frying out the lock. - /// - private void UnlockMail(EntityUid uid, MailComponent component) - { - component.IsLocked = false; - UpdateAntiTamperVisuals(uid, false); - - if (component.IsPriority) - { - // This is a successful delivery. Keep the failure timer from triggering. - if (component.priorityCancelToken != null) - component.priorityCancelToken.Cancel(); - - // The priority tape is visually considered to be a part of the - // anti-tamper lock, so remove that too. - _appearanceSystem.SetData(uid, MailVisuals.IsPriority, false); - - // The examination code depends on this being false to not show - // the priority tape description anymore. - component.IsPriority = false; - } - } - - /// - /// Check the ID against the mail's lock - /// - private void OnAfterInteractUsing(EntityUid uid, MailComponent component, AfterInteractUsingEvent args) - { - if (!args.CanReach || !component.IsLocked) - return; - - if (!TryComp(uid, out var access)) - return; - - IdCardComponent? idCard = null; // We need an ID card. - - if (HasComp(args.Used)) /// Can we find it in a PDA if the user is using that? - { - _idCardSystem.TryGetIdCard(args.Used, out var pdaID); - idCard = pdaID; - } - - if (HasComp(args.Used)) /// Or are they using an id card directly? - idCard = Comp(args.Used); - - if (idCard == null) /// Return if we still haven't found an id card. - return; - - if (!HasComp(uid)) - { - if (idCard.FullName != component.Recipient || idCard.JobTitle != component.RecipientJob) - { - _popupSystem.PopupEntity(Loc.GetString("mail-recipient-mismatch"), uid, args.User); - return; - } - - if (!_accessSystem.IsAllowed(uid, args.User)) - { - _popupSystem.PopupEntity(Loc.GetString("mail-invalid-access"), uid, args.User); - return; - } - } - - UnlockMail(uid, component); - - if (!component.IsProfitable) - { - _popupSystem.PopupEntity(Loc.GetString("mail-unlocked"), uid, args.User); - return; - } - - _popupSystem.PopupEntity(Loc.GetString("mail-unlocked-reward", ("bounty", component.Bounty)), uid, args.User); - - component.IsProfitable = false; - - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var station, out var account)) - { - if (_stationSystem.GetOwningStation(uid) != station) - continue; - - _cargoSystem.UpdateBankAccount(station, account, component.Bounty); - return; - } - } - - private void OnExamined(EntityUid uid, MailComponent component, ExaminedEvent args) - { - if (!args.IsInDetailsRange) - { - args.PushMarkup(Loc.GetString("mail-desc-far")); - return; - } - - args.PushMarkup(Loc.GetString("mail-desc-close", ("name", component.Recipient), ("job", component.RecipientJob))); - - if (component.IsFragile) - args.PushMarkup(Loc.GetString("mail-desc-fragile")); - - if (component.IsPriority) - { - if (component.IsProfitable) - args.PushMarkup(Loc.GetString("mail-desc-priority")); - else - args.PushMarkup(Loc.GetString("mail-desc-priority-inactive")); - } - } - - /// - /// Penalize a station for a failed delivery. - /// - /// - /// This will mark a parcel as no longer being profitable, which will - /// prevent multiple failures on different conditions for the same - /// delivery. - /// - /// The standard penalization is breaking the anti-tamper lock, - /// but this allows a delivery to fail for other reasons too - /// while having a generic function to handle different messages. - /// - public void PenalizeStationFailedDelivery(EntityUid uid, MailComponent component, string localizationString) - { - if (!component.IsProfitable) - return; - - _chatSystem.TrySendInGameICMessage(uid, Loc.GetString(localizationString, ("credits", component.Penalty)), InGameICChatType.Speak, false); - _audioSystem.PlayPvs(component.PenaltySound, uid); - - component.IsProfitable = false; - - if (component.IsPriority) - _appearanceSystem.SetData(uid, MailVisuals.IsPriorityInactive, true); - - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var station, out var account)) - { - if (_stationSystem.GetOwningStation(uid) != station) - continue; - - _cargoSystem.UpdateBankAccount(station, account, component.Penalty); - return; - } - } - - private void OnDestruction(EntityUid uid, MailComponent component, DestructionEventArgs args) - { - if (component.IsLocked) - PenalizeStationFailedDelivery(uid, component, "mail-penalty-lock"); - - if (component.IsEnabled) - OpenMail(uid, component); - - UpdateAntiTamperVisuals(uid, false); - } - - private void OnDamage(EntityUid uid, MailComponent component, DamageChangedEvent args) - { - if (args.DamageDelta == null) - return; - - if (!_containerSystem.TryGetContainer(uid, "contents", out var contents)) - return; - - // Transfer damage to the contents. - // This should be a general-purpose feature for all containers in the future. - foreach (var entity in contents.ContainedEntities.ToArray()) - { - _damageableSystem.TryChangeDamage(entity, args.DamageDelta); - } - } - - private void OnBreak(EntityUid uid, MailComponent component, BreakageEventArgs args) - { - _appearanceSystem.SetData(uid, MailVisuals.IsBroken, true); - - if (component.IsFragile) - PenalizeStationFailedDelivery(uid, component, "mail-penalty-fragile"); - } - - private void OnMailEmagged(EntityUid uid, MailComponent component, ref GotEmaggedEvent args) - { - if (!component.IsLocked) - return; - - UnlockMail(uid, component); - - _popupSystem.PopupEntity(Loc.GetString("mail-unlocked-by-emag"), uid, args.UserUid); - - _audioSystem.PlayPvs(component.EmagSound, uid, AudioParams.Default.WithVolume(4)); - component.IsProfitable = false; - args.Handled = true; - } - - /// - /// Returns true if the given entity is considered fragile for delivery. - /// - public bool IsEntityFragile(EntityUid uid, int fragileDamageThreshold) - { - // It takes damage on falling. - if (HasComp(uid)) - return true; - - // It can be spilled easily and has something to spill. - if (HasComp(uid) - && TryComp(uid, out var openable) - && !_openable.IsClosed(uid, null, openable) - && _solutionContainerSystem.PercentFull(uid) > 0) - return true; - - // It might be made of non-reinforced glass. - if (TryComp(uid, out DamageableComponent? damageableComponent) - && damageableComponent.DamageModifierSetId == "Glass") - return true; - - // Fallback: It breaks or is destroyed in less than a damage - // threshold dictated by the teleporter. - if (TryComp(uid, out DestructibleComponent? destructibleComp)) - { - foreach (var threshold in destructibleComp.Thresholds) - { - if (threshold.Trigger is DamageTrigger trigger - && trigger.Damage < fragileDamageThreshold) - { - foreach (var behavior in threshold.Behaviors) - { - if (behavior is DoActsBehavior doActs) - { - if (doActs.Acts.HasFlag(ThresholdActs.Breakage) - || doActs.Acts.HasFlag(ThresholdActs.Destruction)) - { - return true; - } - } - } - } - } - } - - return false; - } - - public bool TryMatchJobTitleToDepartment(string jobTitle, [NotNullWhen(true)] out string? jobDepartment) - { - foreach (var department in _prototypeManager.EnumeratePrototypes()) - { - foreach (var role in department.Roles) - { - if (_prototypeManager.TryIndex(role, out JobPrototype? _jobPrototype) - && _jobPrototype.LocalizedName == jobTitle) - { - jobDepartment = department.ID; - return true; - } - } - } - - jobDepartment = null; - return false; - } - - public bool TryMatchJobTitleToPrototype(string jobTitle, [NotNullWhen(true)] out JobPrototype? jobPrototype) - { - foreach (var job in _prototypeManager.EnumeratePrototypes()) - { - if (job.LocalizedName == jobTitle) - { - jobPrototype = job; - return true; - } - } - - jobPrototype = null; - return false; - } - - /// - /// Handle all the gritty details particular to a new mail entity. - /// - /// - /// This is separate mostly so the unit tests can get to it. - /// - public void SetupMail(EntityUid uid, MailTeleporterComponent component, MailRecipient recipient) - { - var mailComp = EnsureComp(uid); - - var container = _containerSystem.EnsureContainer(uid, "contents"); - foreach (var item in EntitySpawnCollection.GetSpawns(mailComp.Contents, _random)) - { - var entity = EntityManager.SpawnEntity(item, Transform(uid).Coordinates); - if (!_containerSystem.Insert(entity, container)) - { - _sawmill.Error($"Can't insert {ToPrettyString(entity)} into new mail delivery {ToPrettyString(uid)}! Deleting it."); - QueueDel(entity); - } - else if (!mailComp.IsFragile && IsEntityFragile(entity, component.FragileDamageThreshold)) - { - mailComp.IsFragile = true; - } - } - - if (_random.Prob(component.PriorityChance)) - mailComp.IsPriority = true; - - // This needs to override both the random probability and the - // entity prototype, so this is fine. - if (!recipient.MayReceivePriorityMail) - mailComp.IsPriority = false; - - mailComp.RecipientJob = recipient.Job; - mailComp.Recipient = recipient.Name; - - if (mailComp.IsFragile) - { - mailComp.Bounty += component.FragileBonus; - mailComp.Penalty += component.FragileMalus; - _appearanceSystem.SetData(uid, MailVisuals.IsFragile, true); - } - - if (mailComp.IsPriority) - { - mailComp.Bounty += component.PriorityBonus; - mailComp.Penalty += component.PriorityMalus; - _appearanceSystem.SetData(uid, MailVisuals.IsPriority, true); - - mailComp.priorityCancelToken = new CancellationTokenSource(); - - Timer.Spawn((int) component.priorityDuration.TotalMilliseconds, - () => PenalizeStationFailedDelivery(uid, mailComp, "mail-penalty-expired"), - mailComp.priorityCancelToken.Token); - } - - _appearanceSystem.SetData(uid, MailVisuals.JobIcon, recipient.JobIcon); - - _metaDataSystem.SetEntityName(uid, Loc.GetString("mail-item-name-addressed", - ("recipient", recipient.Name))); - - var accessReader = EnsureComp(uid); - accessReader.AccessLists.Add(recipient.AccessTags); - } - - /// - /// Return the parcels waiting for delivery. - /// - /// The mail teleporter to check. - public List GetUndeliveredParcels(EntityUid uid) - { - // An alternative solution would be to keep a list of the unopened - // parcels spawned by the teleporter and see if they're not carried - // by someone, but this is simple, and simple is good. - List undeliveredParcels = new(); - foreach (var entityInTile in TurfHelpers.GetEntitiesInTile(Transform(uid).Coordinates, LookupFlags.Dynamic | LookupFlags.Sundries)) - { - if (HasComp(entityInTile)) - undeliveredParcels.Add(entityInTile); - } - return undeliveredParcels; - } - - /// - /// Return how many parcels are waiting for delivery. - /// - /// The mail teleporter to check. - public uint GetUndeliveredParcelCount(EntityUid uid) - { - return (uint) GetUndeliveredParcels(uid).Count(); - } - - /// - /// Try to match a mail receiver to a mail teleporter. - /// - public bool TryGetMailTeleporterForReceiver(MailReceiverComponent receiver, [NotNullWhen(true)] out MailTeleporterComponent? teleporterComponent) - { - foreach (var mailTeleporter in EntityQuery()) - { - if (_stationSystem.GetOwningStation(receiver.Owner) == _stationSystem.GetOwningStation(mailTeleporter.Owner)) - { - teleporterComponent = mailTeleporter; - return true; - } - } - - teleporterComponent = null; - return false; - } - - /// - /// Try to construct a recipient struct for a mail parcel based on a receiver. - /// - public bool TryGetMailRecipientForReceiver(MailReceiverComponent receiver, [NotNullWhen(true)] out MailRecipient? recipient) - { - // Because of the way this works, people are not considered - // candidates for mail if there is no valid PDA or ID in their slot - // or active hand. A better future solution might be checking the - // station records, possibly cross-referenced with the medical crew - // scanner to look for living recipients. TODO - - if (_idCardSystem.TryFindIdCard(receiver.Owner, out var idCard) - && TryComp(idCard.Owner, out var access) - && idCard.Comp.FullName != null - && idCard.Comp.JobTitle != null) - { - var accessTags = access.Tags; - - var mayReceivePriorityMail = !(_mindSystem.GetMind(receiver.Owner) == null); - - recipient = new MailRecipient(idCard.Comp.FullName, - idCard.Comp.JobTitle, - idCard.Comp.JobIcon, - accessTags, - mayReceivePriorityMail); - - return true; - } - - recipient = null; - return false; - } - - /// - /// Get the list of valid mail recipients for a mail teleporter. - /// - public List GetMailRecipientCandidates(EntityUid uid) - { - List candidateList = new(); - - foreach (var receiver in EntityQuery()) - { - if (_stationSystem.GetOwningStation(receiver.Owner) != _stationSystem.GetOwningStation(uid)) - continue; - - if (TryGetMailRecipientForReceiver(receiver, out MailRecipient? recipient)) - candidateList.Add(recipient.Value); - } - - return candidateList; - } - - /// - /// Handle the spawning of all the mail for a mail teleporter. - /// - public void SpawnMail(EntityUid uid, MailTeleporterComponent? component = null) - { - if (!Resolve(uid, ref component)) - { - _sawmill.Error($"Tried to SpawnMail on {ToPrettyString(uid)} without a valid MailTeleporterComponent!"); - return; - } - - if (GetUndeliveredParcelCount(uid) >= component.MaximumUndeliveredParcels) - return; - - var candidateList = GetMailRecipientCandidates(uid); - - if (candidateList.Count <= 0) - { - _sawmill.Error("List of mail candidates was empty!"); - return; - } - - if (!_prototypeManager.TryIndex(component.MailPool, out var pool)) - { - _sawmill.Error($"Can't index {ToPrettyString(uid)}'s MailPool {component.MailPool}!"); - return; - } - - for (int i = 0; - i < component.MinimumDeliveriesPerTeleport + candidateList.Count / component.CandidatesPerDelivery; - i++) - { - var candidate = _random.Pick(candidateList); - var possibleParcels = new Dictionary(pool.Everyone); - - if (TryMatchJobTitleToPrototype(candidate.Job, out JobPrototype? jobPrototype) - && pool.Jobs.TryGetValue(jobPrototype.ID, out Dictionary? jobParcels)) - { - possibleParcels = possibleParcels.Union(jobParcels) - .GroupBy(g => g.Key) - .ToDictionary(pair => pair.Key, pair => pair.First().Value); - } - - if (TryMatchJobTitleToDepartment(candidate.Job, out string? department) - && pool.Departments.TryGetValue(department, out Dictionary? departmentParcels)) - { - possibleParcels = possibleParcels.Union(departmentParcels) - .GroupBy(g => g.Key) - .ToDictionary(pair => pair.Key, pair => pair.First().Value); - } - - var accumulated = 0f; - var randomPoint = _random.NextFloat(possibleParcels.Values.Sum()); - string? chosenParcel = null; - foreach (var (key, weight) in possibleParcels) - { - accumulated += weight; - if (accumulated >= randomPoint) - { - chosenParcel = key; - break; - } - } - - if (chosenParcel == null) - { - _sawmill.Error($"MailSystem wasn't able to find a deliverable parcel for {candidate.Name}, {candidate.Job}!"); - return; - } - - var mail = EntityManager.SpawnEntity(chosenParcel, Transform(uid).Coordinates); - SetupMail(mail, component, candidate); - } - - if (_containerSystem.TryGetContainer(uid, "queued", out var queued)) - _containerSystem.EmptyContainer(queued); - - _audioSystem.PlayPvs(component.TeleportSound, uid); - } - - public void OpenMail(EntityUid uid, MailComponent? component = null, EntityUid? user = null) - { - if (!Resolve(uid, ref component)) - return; - - _audioSystem.PlayPvs(component.OpenSound, uid); - - if (user != null) - _handsSystem.TryDrop((EntityUid) user); - - if (!_containerSystem.TryGetContainer(uid, "contents", out var contents)) - { - // I silenced this error because it fails non deterministically in tests and doesn't seem to effect anything else. - // _sawmill.Error($"Mail {ToPrettyString(uid)} was missing contents container!"); - return; - } - - foreach (var entity in contents.ContainedEntities.ToArray()) - { - _handsSystem.PickupOrDrop(user, entity); - } - - _tagSystem.AddTag(uid, "Trash"); - _tagSystem.AddTag(uid, "Recyclable"); - component.IsEnabled = false; - UpdateMailTrashState(uid, true); - } - - private void UpdateAntiTamperVisuals(EntityUid uid, bool isLocked) - { - _appearanceSystem.SetData(uid, MailVisuals.IsLocked, isLocked); - } - - private void UpdateMailTrashState(EntityUid uid, bool isTrash) - { - _appearanceSystem.SetData(uid, MailVisuals.IsTrash, isTrash); - } - } - - public struct MailRecipient( - string name, - string job, - string jobIcon, - HashSet> accessTags, - bool mayReceivePriorityMail) - { - public string Name = name; - public string Job = job; - public string JobIcon = jobIcon; - public HashSet> AccessTags = accessTags; - public bool MayReceivePriorityMail = mayReceivePriorityMail; - } -} diff --git a/Content.Server/Nyanotrasen/Objectives/Components/BecomePsionicConditionComponent.cs b/Content.Server/Nyanotrasen/Objectives/Components/BecomePsionicConditionComponent.cs deleted file mode 100644 index 3b677bab2d..0000000000 --- a/Content.Server/Nyanotrasen/Objectives/Components/BecomePsionicConditionComponent.cs +++ /dev/null @@ -1,11 +0,0 @@ -using Content.Server.Objectives.Systems; - -namespace Content.Server.Objectives.Components; - -/// -/// Requires that the player dies to be complete. -/// -[RegisterComponent, Access(typeof(BecomePsionicConditionSystem))] -public sealed partial class BecomePsionicConditionComponent : Component -{ -} \ No newline at end of file diff --git a/Content.Server/Nyanotrasen/Objectives/Systems/BecomePsionicConditionSystem.cs b/Content.Server/Nyanotrasen/Objectives/Systems/BecomePsionicConditionSystem.cs deleted file mode 100644 index d090c320a4..0000000000 --- a/Content.Server/Nyanotrasen/Objectives/Systems/BecomePsionicConditionSystem.cs +++ /dev/null @@ -1,32 +0,0 @@ -using Content.Shared.Abilities.Psionics; -using Content.Server.Objectives.Components; -using Content.Shared.Mind; -using Content.Shared.Objectives.Components; - -namespace Content.Server.Objectives.Systems -{ - public sealed class BecomePsionicConditionSystem : EntitySystem - { - private EntityQuery _metaQuery; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnGetProgress); - } - - private void OnGetProgress(EntityUid uid, BecomePsionicConditionComponent comp, ref ObjectiveGetProgressEvent args) - { - args.Progress = GetProgress(args.Mind); - } - - private float GetProgress(MindComponent mind) - { - var entMan = IoCManager.Resolve(); - if (HasComp(mind.CurrentEntity)) - return 1; - return 0; - } - } -} diff --git a/Content.Server/Nyanotrasen/ReverseEngineering/ReverseEngineeringSystem.cs b/Content.Server/Nyanotrasen/ReverseEngineering/ReverseEngineeringSystem.cs index 85fa160d8e..88da3093d7 100644 --- a/Content.Server/Nyanotrasen/ReverseEngineering/ReverseEngineeringSystem.cs +++ b/Content.Server/Nyanotrasen/ReverseEngineering/ReverseEngineeringSystem.cs @@ -187,22 +187,18 @@ private void UpdateUserInterface(EntityUid uid, ReverseEngineeringMachineCompone if (!Resolve(uid, ref component)) return; - if (!_ui.TryGetUi(uid, ReverseEngineeringMachineUiKey.Key, out var bui)) - return; - EntityUid? item = component.CurrentItem; if (component.CachedMessage == null) component.CachedMessage = GetReverseEngineeringScanMessage(component); - var totalTime = TimeSpan.Zero; var scanning = TryComp(uid, out var active); - var canScan = (item != null && !scanning); + var canScan = item != null && !scanning; var remaining = active != null ? _timing.CurTime - active.StartTime : TimeSpan.Zero; EntityManager.TryGetNetEntity(item, out var netItem); var state = new ReverseEngineeringMachineScanUpdateState(netItem, canScan, component.CachedMessage, scanning, component.SafetyOn, component.AutoScan, component.Progress, remaining, component.AnalysisDuration); - _ui.SetUiState(bui, state); + _ui.SetUiState(uid, ReverseEngineeringMachineUiKey.Key, state); } private ReverseEngineeringTickResult Roll(ReverseEngineeringMachineComponent component, out int actualRoll) diff --git a/Content.Server/Objectives/Components/CodeConditionSystem.cs b/Content.Server/Objectives/Components/CodeConditionSystem.cs new file mode 100644 index 0000000000..581098c3f7 --- /dev/null +++ b/Content.Server/Objectives/Components/CodeConditionSystem.cs @@ -0,0 +1,17 @@ +using Content.Server.Objectives.Systems; + +namespace Content.Server.Objectives.Components; + +/// +/// An objective that is set to complete by code in another system. +/// Use to check and set this. +/// +[RegisterComponent, Access(typeof(CodeConditionSystem))] +public sealed partial class CodeConditionComponent : Component +{ + /// + /// Whether the objective is complete or not. + /// + [DataField] + public bool Completed; +} diff --git a/Content.Server/Objectives/Components/SpiderChargeConditionComponent.cs b/Content.Server/Objectives/Components/SpiderChargeConditionComponent.cs index 368c9f27ed..9983b35969 100644 --- a/Content.Server/Objectives/Components/SpiderChargeConditionComponent.cs +++ b/Content.Server/Objectives/Components/SpiderChargeConditionComponent.cs @@ -9,9 +9,6 @@ namespace Content.Server.Objectives.Components; [RegisterComponent, Access(typeof(NinjaConditionsSystem), typeof(SpiderChargeSystem), typeof(SpaceNinjaSystem))] public sealed partial class SpiderChargeConditionComponent : Component { - [DataField, ViewVariables(VVAccess.ReadWrite)] - public bool Detonated; - /// /// Warp point that the spider charge has to target /// diff --git a/Content.Server/Objectives/Components/TerminatorTargetOverrideComponent.cs b/Content.Server/Objectives/Components/TerminatorTargetOverrideComponent.cs deleted file mode 100644 index c66ff55f05..0000000000 --- a/Content.Server/Objectives/Components/TerminatorTargetOverrideComponent.cs +++ /dev/null @@ -1,12 +0,0 @@ -using Content.Server.Objectives.Systems; - -namespace Content.Server.Objectives.Components; - -/// -/// Sets this objective's target to the exterminator's target override, if it has one. -/// If not it will be random. -/// -[RegisterComponent, Access(typeof(TerminatorTargetOverrideSystem))] -public sealed partial class TerminatorTargetOverrideComponent : Component -{ -} diff --git a/Content.Server/Objectives/Components/TerrorConditionComponent.cs b/Content.Server/Objectives/Components/TerrorConditionComponent.cs deleted file mode 100644 index acd3218ad4..0000000000 --- a/Content.Server/Objectives/Components/TerrorConditionComponent.cs +++ /dev/null @@ -1,17 +0,0 @@ -using Content.Server.Objectives.Systems; -using Content.Shared.Ninja.Systems; - -namespace Content.Server.Objectives.Components; - -/// -/// Requires that the player is a ninja and has called in a threat. -/// -[RegisterComponent, Access(typeof(NinjaConditionsSystem), typeof(SharedSpaceNinjaSystem))] -public sealed partial class TerrorConditionComponent : Component -{ - /// - /// Whether the comms console has been hacked - /// - [DataField("calledInThreat"), ViewVariables(VVAccess.ReadWrite)] - public bool CalledInThreat; -} diff --git a/Content.Server/Objectives/Systems/CodeConditionSystem.cs b/Content.Server/Objectives/Systems/CodeConditionSystem.cs new file mode 100644 index 0000000000..7ba312f4bb --- /dev/null +++ b/Content.Server/Objectives/Systems/CodeConditionSystem.cs @@ -0,0 +1,76 @@ +using Content.Server.Objectives.Components; +using Content.Shared.Objectives.Components; +using Content.Shared.Mind; +using Content.Shared.Mind.Components; + +namespace Content.Server.Objectives.Systems; + +/// +/// Handles progress and provides API for systems to use. +/// +public sealed class CodeConditionSystem : EntitySystem +{ + [Dependency] private readonly SharedMindSystem _mind = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnGetProgress); + } + + private void OnGetProgress(Entity ent, ref ObjectiveGetProgressEvent args) + { + args.Progress = ent.Comp.Completed ? 1f : 0f; + } + + /// + /// Returns whether an objective is completed. + /// + public bool IsCompleted(Entity ent) + { + if (!Resolve(ent, ref ent.Comp)) + return false; + + return ent.Comp.Completed; + } + + /// + /// Returns true if a mob's objective with a certain prototype is completed. + /// + public bool IsCompleted(Entity mob, string prototype) + { + if (_mind.GetMind(mob, mob.Comp) is not {} mindId) + return false; + + if (!_mind.TryFindObjective(mindId, prototype, out var obj)) + return false; + + return IsCompleted(obj.Value); + } + + /// + /// Sets an objective's completed field. + /// + public void SetCompleted(Entity ent, bool completed = true) + { + if (!Resolve(ent, ref ent.Comp)) + return; + + ent.Comp.Completed = completed; + } + + /// + /// Sets a mob's objective to complete. + /// + public void SetCompleted(Entity mob, string prototype, bool completed = true) + { + if (_mind.GetMind(mob, mob.Comp) is not {} mindId) + return; + + if (!_mind.TryFindObjective(mindId, prototype, out var obj)) + return; + + SetCompleted(obj.Value, completed); + } +} diff --git a/Content.Server/Objectives/Systems/NinjaConditionsSystem.cs b/Content.Server/Objectives/Systems/NinjaConditionsSystem.cs index 888a365a5d..47c54b937a 100644 --- a/Content.Server/Objectives/Systems/NinjaConditionsSystem.cs +++ b/Content.Server/Objectives/Systems/NinjaConditionsSystem.cs @@ -23,11 +23,8 @@ public override void Initialize() SubscribeLocalEvent(OnSpiderChargeRequirementCheck); SubscribeLocalEvent(OnSpiderChargeAfterAssign); - SubscribeLocalEvent(OnSpiderChargeGetProgress); SubscribeLocalEvent(OnStealResearchGetProgress); - - SubscribeLocalEvent(OnTerrorGetProgress); } // doorjack @@ -88,11 +85,6 @@ private void OnSpiderChargeAfterAssign(EntityUid uid, SpiderChargeConditionCompo _metaData.SetEntityName(uid, title, args.Meta); } - private void OnSpiderChargeGetProgress(EntityUid uid, SpiderChargeConditionComponent comp, ref ObjectiveGetProgressEvent args) - { - args.Progress = comp.Detonated ? 1f : 0f; - } - // steal research private void OnStealResearchGetProgress(EntityUid uid, StealResearchConditionComponent comp, ref ObjectiveGetProgressEvent args) @@ -108,9 +100,4 @@ private float StealResearchProgress(StealResearchConditionComponent comp, int ta return MathF.Min(comp.DownloadedNodes.Count / (float) target, 1f); } - - private void OnTerrorGetProgress(EntityUid uid, TerrorConditionComponent comp, ref ObjectiveGetProgressEvent args) - { - args.Progress = comp.CalledInThreat ? 1f : 0f; - } } diff --git a/Content.Server/Objectives/Systems/TerminatorTargetOverrideSystem.cs b/Content.Server/Objectives/Systems/TerminatorTargetOverrideSystem.cs deleted file mode 100644 index 0a81c2810e..0000000000 --- a/Content.Server/Objectives/Systems/TerminatorTargetOverrideSystem.cs +++ /dev/null @@ -1,41 +0,0 @@ -using Content.Server.Objectives.Components; -using Content.Server.Terminator.Components; -using Content.Shared.Mind; -using Content.Shared.Objectives.Components; - -namespace Content.Server.Objectives.Systems; - -/// -/// Handles copying the exterminator's target override to this objective. -/// -public sealed class TerminatorTargetOverrideSystem : EntitySystem -{ - [Dependency] private readonly TargetObjectiveSystem _target = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnAssigned); - } - - private void OnAssigned(EntityUid uid, TerminatorTargetOverrideComponent comp, ref ObjectiveAssignedEvent args) - { - if (args.Mind.OwnedEntity == null) - { - args.Cancelled = true; - return; - } - - var user = args.Mind.OwnedEntity.Value; - if (!TryComp(user, out var terminator)) - { - args.Cancelled = true; - return; - } - - // this exterminator has a target override so set its objective target accordingly - if (terminator.Target != null) - _target.SetTarget(uid, terminator.Target.Value); - } -} diff --git a/Content.Server/OfferItem/OfferItemSystem.cs b/Content.Server/OfferItem/OfferItemSystem.cs index 420df71ace..f8634640f5 100644 --- a/Content.Server/OfferItem/OfferItemSystem.cs +++ b/Content.Server/OfferItem/OfferItemSystem.cs @@ -75,6 +75,8 @@ public void Receive(EntityUid uid, OfferItemComponent? component = null) ("item", Identity.Entity(offerItem.Item.Value, EntityManager)), ("target", Identity.Entity(uid, EntityManager))) , component.Target.Value, Filter.PvsExcept(component.Target.Value, entityManager: EntityManager), true); + + RaiseLocalEvent(offerItem.Item.Value, new HandedEvent(component.Target.Value, uid)); // WD EDIT } offerItem.Item = null; diff --git a/Content.Server/PAI/PAISystem.cs b/Content.Server/PAI/PAISystem.cs index e9505b5e6f..091afb1557 100644 --- a/Content.Server/PAI/PAISystem.cs +++ b/Content.Server/PAI/PAISystem.cs @@ -102,13 +102,15 @@ public void PAITurningOff(EntityUid uid) { // Close the instrument interface if it was open // before closing - if (HasComp(uid) && TryComp(uid, out var actor)) + if (HasComp(uid)) { - _instrumentSystem.ToggleInstrumentUi(uid, actor.PlayerSession); + _instrumentSystem.ToggleInstrumentUi(uid, uid); } // Stop instrument - if (TryComp(uid, out var instrument)) _instrumentSystem.Clean(uid, instrument); + if (TryComp(uid, out var instrument)) + _instrumentSystem.Clean(uid, instrument); + if (TryComp(uid, out var metadata)) { var proto = metadata.EntityPrototype; diff --git a/Content.Server/PDA/PdaSystem.cs b/Content.Server/PDA/PdaSystem.cs index a343607196..d4934ee24e 100644 --- a/Content.Server/PDA/PdaSystem.cs +++ b/Content.Server/PDA/PdaSystem.cs @@ -4,7 +4,6 @@ using Content.Server.DeviceNetwork.Components; using Content.Server.Instruments; using Content.Server.Light.EntitySystems; -using Content.Server.Light.Events; using Content.Server.PDA.Ringer; using Content.Server.Station.Systems; using Content.Server.Store.Components; @@ -12,7 +11,9 @@ using Content.Shared.Access.Components; using Content.Shared.CartridgeLoader; using Content.Shared.Chat; +using Content.Shared.Light; using Content.Shared.Light.Components; +using Content.Shared.Light.EntitySystems; using Content.Shared.PDA; using Robust.Server.Containers; using Robust.Server.GameObjects; @@ -41,6 +42,7 @@ public override void Initialize() SubscribeLocalEvent(OnLightToggle); // UI Events: + SubscribeLocalEvent(OnPdaOpen); SubscribeLocalEvent(OnUiMessage); SubscribeLocalEvent(OnUiMessage); SubscribeLocalEvent(OnUiMessage); @@ -145,7 +147,7 @@ public void UpdatePdaUi(EntityUid uid, PdaComponent? pda = null) if (!Resolve(uid, ref pda, false)) return; - if (!_ui.TryGetUi(uid, PdaUiKey.Key, out var ui)) + if (!_ui.HasUi(uid, PdaUiKey.Key)) return; var address = GetDeviceNetAddress(uid); @@ -182,7 +184,15 @@ public void UpdatePdaUi(EntityUid uid, PdaComponent? pda = null) hasInstrument, address); - _ui.SetUiState(ui, state); + _ui.SetUiState(uid, PdaUiKey.Key, state); + } + + private void OnPdaOpen(Entity ent, ref BoundUIOpenedEvent args) + { + if (!PdaUiKey.Key.Equals(args.UiKey)) + return; + + UpdatePdaUi(ent.Owner, ent.Comp); } private void OnUiMessage(EntityUid uid, PdaComponent pda, PdaRequestUpdateInterfaceMessage msg) @@ -198,8 +208,9 @@ private void OnUiMessage(EntityUid uid, PdaComponent pda, PdaToggleFlashlightMes if (!PdaUiKey.Key.Equals(msg.UiKey)) return; - if (TryComp(uid, out var flashlight)) - _unpoweredFlashlight.ToggleLight(uid, flashlight); + // TODO PREDICTION + // When moving this to shared, fill in the user field + _unpoweredFlashlight.TryToggleLight(uid, user: null); } private void OnUiMessage(EntityUid uid, PdaComponent pda, PdaShowRingtoneMessage msg) @@ -208,7 +219,7 @@ private void OnUiMessage(EntityUid uid, PdaComponent pda, PdaShowRingtoneMessage return; if (HasComp(uid)) - _ringer.ToggleRingerUI(uid, msg.Session); + _ringer.ToggleRingerUI(uid, msg.Actor); } private void OnUiMessage(EntityUid uid, PdaComponent pda, PdaShowMusicMessage msg) @@ -217,7 +228,7 @@ private void OnUiMessage(EntityUid uid, PdaComponent pda, PdaShowMusicMessage ms return; if (TryComp(uid, out var instrument)) - _instrument.ToggleInstrumentUi(uid, msg.Session, instrument); + _instrument.ToggleInstrumentUi(uid, msg.Actor, instrument); } private void OnUiMessage(EntityUid uid, PdaComponent pda, PdaShowUplinkMessage msg) @@ -227,7 +238,7 @@ private void OnUiMessage(EntityUid uid, PdaComponent pda, PdaShowUplinkMessage m // check if its locked again to prevent malicious clients opening locked uplinks if (TryComp(uid, out var store) && IsUnlocked(uid)) - _store.ToggleUi(msg.Session.AttachedEntity!.Value, uid, store); + _store.ToggleUi(msg.Actor, uid, store); } private void OnUiMessage(EntityUid uid, PdaComponent pda, PdaLockUplinkMessage msg) diff --git a/Content.Server/PDA/Ringer/RingerSystem.cs b/Content.Server/PDA/Ringer/RingerSystem.cs index f95725873a..a10544d696 100644 --- a/Content.Server/PDA/Ringer/RingerSystem.cs +++ b/Content.Server/PDA/Ringer/RingerSystem.cs @@ -81,7 +81,10 @@ private void UpdateRingerUserInterfaceDriver(EntityUid uid, RingerComponent ring private void OnSetRingtone(EntityUid uid, RingerComponent ringer, RingerSetRingtoneMessage args) { - ref var lastSetAt = ref CollectionsMarshal.GetValueRefOrAddDefault(_lastSetRingtoneAt, args.Session.UserId, out var exists); + if (!TryComp(args.Actor, out ActorComponent? actorComp)) + return; + + ref var lastSetAt = ref CollectionsMarshal.GetValueRefOrAddDefault(_lastSetRingtoneAt, actorComp.PlayerSession.UserId, out var exists); // Delay on the client is 0.333, 0.25 is still enough and gives some leeway in case of small time differences if (exists && lastSetAt > _gameTiming.CurTime - TimeSpan.FromMilliseconds(250)) @@ -111,7 +114,7 @@ private void OnSetUplinkRingtone(EntityUid uid, RingerUplinkComponent uplink, re // can't keep store open after locking it if (!uplink.Unlocked) - _ui.TryCloseAll(uid, StoreUiKey.Key); + _ui.CloseUi(uid, StoreUiKey.Key); // no saving the code to prevent meta click set on sus guys pda -> wewlad args.Handled = true; @@ -130,7 +133,7 @@ public void LockUplink(EntityUid uid, RingerUplinkComponent? uplink) return; uplink.Unlocked = false; - _ui.TryCloseAll(uid, StoreUiKey.Key); + _ui.CloseUi(uid, StoreUiKey.Key); } public void RandomizeRingtone(EntityUid uid, RingerComponent ringer, MapInitEvent args) @@ -181,14 +184,12 @@ private bool UpdateRingerRingtone(EntityUid uid, RingerComponent ringer, Note[] private void UpdateRingerUserInterface(EntityUid uid, RingerComponent ringer, bool isPlaying) { - if (_ui.TryGetUi(uid, RingerUiKey.Key, out var bui)) - _ui.SetUiState(bui, new RingerUpdateState(isPlaying, ringer.Ringtone)); + _ui.SetUiState(uid, RingerUiKey.Key, new RingerUpdateState(isPlaying, ringer.Ringtone)); } - public bool ToggleRingerUI(EntityUid uid, ICommonSession session) + public bool ToggleRingerUI(EntityUid uid, EntityUid actor) { - if (_ui.TryGetUi(uid, RingerUiKey.Key, out var bui)) - _ui.ToggleUi(bui, session); + _ui.TryToggleUi(uid, RingerUiKey.Key, actor); return true; } diff --git a/Content.Server/Paper/PaperComponent.cs b/Content.Server/Paper/PaperComponent.cs index 556a197fd4..6c96b67acb 100644 --- a/Content.Server/Paper/PaperComponent.cs +++ b/Content.Server/Paper/PaperComponent.cs @@ -3,7 +3,7 @@ namespace Content.Server.Paper; -[NetworkedComponent, RegisterComponent] +[RegisterComponent] public sealed partial class PaperComponent : SharedPaperComponent { public PaperAction Mode; diff --git a/Content.Server/Paper/PaperSystem.cs b/Content.Server/Paper/PaperSystem.cs index 27c94313b2..d9202341d5 100644 --- a/Content.Server/Paper/PaperSystem.cs +++ b/Content.Server/Paper/PaperSystem.cs @@ -67,11 +67,7 @@ private void OnInit(EntityUid uid, PaperComponent paperComp, ComponentInit args) private void BeforeUIOpen(EntityUid uid, PaperComponent paperComp, BeforeActivatableUIOpenEvent args) { paperComp.Mode = PaperAction.Read; - - if (!TryComp(args.User, out var actor)) - return; - - UpdateUserInterface(uid, paperComp, actor.PlayerSession); + UpdateUserInterface(uid, paperComp); } private void OnExamined(EntityUid uid, PaperComponent paperComp, ExaminedEvent args) @@ -108,12 +104,10 @@ private void OnInteractUsing(EntityUid uid, PaperComponent paperComp, InteractUs { var writeEvent = new PaperWriteEvent(uid, args.User); RaiseLocalEvent(args.Used, ref writeEvent); - if (!TryComp(args.User, out var actor)) - return; paperComp.Mode = PaperAction.Write; - _uiSystem.TryOpen(uid, PaperUiKey.Key, actor.PlayerSession); - UpdateUserInterface(uid, paperComp, actor.PlayerSession); + _uiSystem.OpenUi(uid, PaperUiKey.Key, args.User); + UpdateUserInterface(uid, paperComp); args.Handled = true; return; } @@ -157,9 +151,8 @@ private void OnInputTextMessage(EntityUid uid, PaperComponent paperComp, PaperIn if (TryComp(uid, out var meta)) _metaSystem.SetEntityDescription(uid, "", meta); - if (args.Session.AttachedEntity != null) - _adminLogger.Add(LogType.Chat, LogImpact.Low, - $"{ToPrettyString(args.Session.AttachedEntity.Value):player} has written on {ToPrettyString(uid):entity} the following text: {args.Text}"); + _adminLogger.Add(LogType.Chat, LogImpact.Low, + $"{ToPrettyString(args.Actor):player} has written on {ToPrettyString(uid):entity} the following text: {args.Text}"); _audio.PlayPvs(paperComp.Sound, uid); } @@ -213,13 +206,12 @@ public void SetContent(EntityUid uid, string content, PaperComponent? paperComp _appearance.SetData(uid, PaperVisuals.Status, status, appearance); } - public void UpdateUserInterface(EntityUid uid, PaperComponent? paperComp = null, ICommonSession? session = null) + public void UpdateUserInterface(EntityUid uid, PaperComponent? paperComp = null) { if (!Resolve(uid, ref paperComp)) return; - if (_uiSystem.TryGetUi(uid, PaperUiKey.Key, out var bui)) - _uiSystem.SetUiState(bui, new PaperBoundUserInterfaceState(paperComp.Content, paperComp.StampedBy, paperComp.Mode), session); + _uiSystem.SetUiState(uid, PaperUiKey.Key, new PaperBoundUserInterfaceState(paperComp.Content, paperComp.StampedBy, paperComp.Mode)); } } diff --git a/Content.Server/Parallax/BiomeSystem.cs b/Content.Server/Parallax/BiomeSystem.cs index 83cf9b9cb2..0543518dcc 100644 --- a/Content.Server/Parallax/BiomeSystem.cs +++ b/Content.Server/Parallax/BiomeSystem.cs @@ -973,7 +973,7 @@ private void UnloadChunk(BiomeComponent component, EntityUid gridUid, MapGridCom /// /// Creates a simple planet setup for a map. /// - public void EnsurePlanet(EntityUid mapUid, BiomeTemplatePrototype biomeTemplate, int? seed = null, MetaDataComponent? metadata = null) + public void EnsurePlanet(EntityUid mapUid, BiomeTemplatePrototype biomeTemplate, int? seed = null, MetaDataComponent? metadata = null, Color? mapLight = null) { if (!Resolve(mapUid, ref metadata)) return; @@ -998,7 +998,7 @@ public void EnsurePlanet(EntityUid mapUid, BiomeTemplatePrototype biomeTemplate, // Lava: #A34931 var light = EnsureComp(mapUid); - light.AmbientLightColor = Color.FromHex("#D8B059"); + light.AmbientLightColor = mapLight ?? Color.FromHex("#D8B059"); Dirty(mapUid, light, metadata); var moles = new float[Atmospherics.AdjustedNumberOfGases]; diff --git a/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs b/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs index 5d373652a9..f3cff9f2e7 100644 --- a/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs +++ b/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs @@ -67,7 +67,7 @@ public void Fire(EntityUid uid, TimeSpan curTime, ParticleAcceleratorControlBoxC FireEmitter(comp.StarboardEmitter!.Value, strength); } - public void SwitchOn(EntityUid uid, ICommonSession? user = null, ParticleAcceleratorControlBoxComponent? comp = null) + public void SwitchOn(EntityUid uid, EntityUid? user = null, ParticleAcceleratorControlBoxComponent? comp = null) { if (!Resolve(uid, ref comp)) return; @@ -77,7 +77,7 @@ public void SwitchOn(EntityUid uid, ICommonSession? user = null, ParticleAcceler if (comp.Enabled || !comp.CanBeEnabled) return; - if (user?.AttachedEntity is { } player) + if (user is { } player) _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(player):player} has turned {ToPrettyString(uid)} on"); comp.Enabled = true; @@ -90,14 +90,14 @@ public void SwitchOn(EntityUid uid, ICommonSession? user = null, ParticleAcceler UpdateUI(uid, comp); } - public void SwitchOff(EntityUid uid, ICommonSession? user = null, ParticleAcceleratorControlBoxComponent? comp = null) + public void SwitchOff(EntityUid uid, EntityUid? user = null, ParticleAcceleratorControlBoxComponent? comp = null) { if (!Resolve(uid, ref comp)) return; if (!comp.Enabled) return; - if (user?.AttachedEntity is { } player) + if (user is { } player) _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(player):player} has turned {ToPrettyString(uid)} off"); comp.Enabled = false; @@ -138,7 +138,7 @@ public void PowerOff(EntityUid uid, ParticleAcceleratorControlBoxComponent? comp UpdateUI(uid, comp); } - public void SetStrength(EntityUid uid, ParticleAcceleratorPowerState strength, ICommonSession? user = null, ParticleAcceleratorControlBoxComponent? comp = null) + public void SetStrength(EntityUid uid, ParticleAcceleratorPowerState strength, EntityUid? user = null, ParticleAcceleratorControlBoxComponent? comp = null) { if (!Resolve(uid, ref comp)) return; @@ -154,7 +154,7 @@ public void SetStrength(EntityUid uid, ParticleAcceleratorPowerState strength, I if (strength == comp.SelectedStrength) return; - if (user?.AttachedEntity is { } player) + if (user is { } player) { var impact = strength switch { @@ -235,7 +235,8 @@ private void UpdateUI(EntityUid uid, ParticleAcceleratorControlBoxComponent? com { if (!Resolve(uid, ref comp)) return; - if (!_uiSystem.TryGetUi(uid, ParticleAcceleratorControlBoxUiKey.Key, out var bui)) + + if (!_uiSystem.HasUi(uid, ParticleAcceleratorControlBoxUiKey.Key)) return; var draw = 0f; @@ -247,7 +248,7 @@ private void UpdateUI(EntityUid uid, ParticleAcceleratorControlBoxComponent? com receive = powerConsumer.ReceivedPower; } - _uiSystem.SetUiState(bui, new ParticleAcceleratorUIState( + _uiSystem.SetUiState(uid, ParticleAcceleratorControlBoxUiKey.Key, new ParticleAcceleratorUIState( comp.Assembled, comp.Enabled, comp.SelectedStrength, @@ -346,7 +347,7 @@ private void OnControlBoxPowerChange(EntityUid uid, ParticleAcceleratorControlBo UpdateAppearance(uid, comp); if (!args.Powered) - _uiSystem.TryCloseAll(uid, ParticleAcceleratorControlBoxUiKey.Key); + _uiSystem.CloseUi(uid, ParticleAcceleratorControlBoxUiKey.Key); } private void OnUISetEnableMessage(EntityUid uid, ParticleAcceleratorControlBoxComponent comp, ParticleAcceleratorSetEnableMessage msg) @@ -361,10 +362,10 @@ private void OnUISetEnableMessage(EntityUid uid, ParticleAcceleratorControlBoxCo if (msg.Enabled) { if (comp.Assembled) - SwitchOn(uid, msg.Session, comp); + SwitchOn(uid, msg.Actor, comp); } else - SwitchOff(uid, msg.Session, comp); + SwitchOff(uid, msg.Actor, comp); UpdateUI(uid, comp); } @@ -378,7 +379,7 @@ private void OnUISetPowerMessage(EntityUid uid, ParticleAcceleratorControlBoxCom if (TryComp(uid, out var apcPower) && !apcPower.Powered) return; - SetStrength(uid, msg.State, msg.Session, comp); + SetStrength(uid, msg.State, msg.Actor, comp); UpdateUI(uid, comp); } @@ -392,7 +393,7 @@ private void OnUIRescanMessage(EntityUid uid, ParticleAcceleratorControlBoxCompo if (TryComp(uid, out var apcPower) && !apcPower.Powered) return; - RescanParts(uid, msg.Session, comp); + RescanParts(uid, msg.Actor, comp); UpdateUI(uid, comp); } diff --git a/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.Parts.cs b/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.Parts.cs index bdbc7b3f5b..99bb0d5cbd 100644 --- a/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.Parts.cs +++ b/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.Parts.cs @@ -18,7 +18,7 @@ private void InitializePartSystem() SubscribeLocalEvent(BodyTypeChanged); } - public void RescanParts(EntityUid uid, ICommonSession? user = null, ParticleAcceleratorControlBoxComponent? controller = null) + public void RescanParts(EntityUid uid, EntityUid? user = null, ParticleAcceleratorControlBoxComponent? controller = null) { if (!Resolve(uid, ref controller)) return; diff --git a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorLimiterWireAction.cs b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorLimiterWireAction.cs index 0cbd47c233..0645944a2a 100644 --- a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorLimiterWireAction.cs +++ b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorLimiterWireAction.cs @@ -48,8 +48,7 @@ public override bool Mend(EntityUid user, Wire wire, ParticleAcceleratorControlB // Yes, it's a feature that mending this wire WON'T WORK if the strength wire is also cut. // Since that blocks SetStrength(). var paSystem = EntityManager.System(); - var userSession = EntityManager.TryGetComponent(user, out var actor) ? actor.PlayerSession : null; - paSystem.SetStrength(wire.Owner, controller.MaxStrength, userSession, controller); + paSystem.SetStrength(wire.Owner, controller.MaxStrength, user, controller); return true; } diff --git a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorStrengthWireAction.cs b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorStrengthWireAction.cs index 65fa76ee41..1650960bd3 100644 --- a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorStrengthWireAction.cs +++ b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorStrengthWireAction.cs @@ -33,7 +33,6 @@ public override bool Mend(EntityUid user, Wire wire, ParticleAcceleratorControlB public override void Pulse(EntityUid user, Wire wire, ParticleAcceleratorControlBoxComponent controller) { var paSystem = EntityManager.System(); - var userSession = EntityManager.TryGetComponent(user, out var actor) ? actor.PlayerSession : null; - paSystem.SetStrength(wire.Owner, (ParticleAcceleratorPowerState) ((int) controller.SelectedStrength + 1), userSession, controller); + paSystem.SetStrength(wire.Owner, (ParticleAcceleratorPowerState) ((int) controller.SelectedStrength + 1), user, controller); } } diff --git a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorToggleWireAction.cs b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorToggleWireAction.cs index c43403edd4..40a15d2bc5 100644 --- a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorToggleWireAction.cs +++ b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorToggleWireAction.cs @@ -23,10 +23,9 @@ public sealed partial class ParticleAcceleratorPowerWireAction : ComponentWireAc public override bool Cut(EntityUid user, Wire wire, ParticleAcceleratorControlBoxComponent controller) { var paSystem = EntityManager.System(); - var userSession = EntityManager.TryGetComponent(user, out var actor) ? actor.PlayerSession : null; controller.CanBeEnabled = false; - paSystem.SwitchOff(wire.Owner, userSession, controller); + paSystem.SwitchOff(wire.Owner, user, controller); return true; } @@ -39,11 +38,10 @@ public override bool Mend(EntityUid user, Wire wire, ParticleAcceleratorControlB public override void Pulse(EntityUid user, Wire wire, ParticleAcceleratorControlBoxComponent controller) { var paSystem = EntityManager.System(); - var userSession = EntityManager.TryGetComponent(user, out var actor) ? actor.PlayerSession : null; if (controller.Enabled) - paSystem.SwitchOff(wire.Owner, userSession, controller); + paSystem.SwitchOff(wire.Owner, user, controller); else if (controller.Assembled) - paSystem.SwitchOn(wire.Owner, userSession, controller); + paSystem.SwitchOn(wire.Owner, user, controller); } } diff --git a/Content.Server/Pinpointer/NavMapSystem.cs b/Content.Server/Pinpointer/NavMapSystem.cs index aee8b90191..5881daa068 100644 --- a/Content.Server/Pinpointer/NavMapSystem.cs +++ b/Content.Server/Pinpointer/NavMapSystem.cs @@ -1,61 +1,65 @@ -using System.Diagnostics.CodeAnalysis; using Content.Server.Administration.Logs; +using Content.Server.Atmos.Components; +using Content.Server.Atmos.EntitySystems; using Content.Server.Station.Systems; using Content.Server.Warps; using Content.Shared.Database; using Content.Shared.Examine; using Content.Shared.Localizations; +using Content.Shared.Maps; using Content.Shared.Pinpointer; -using Content.Shared.Tag; using JetBrains.Annotations; -using Robust.Server.GameObjects; -using Robust.Shared.GameStates; using Robust.Shared.Map; using Robust.Shared.Map.Components; -using Robust.Shared.Physics; -using Robust.Shared.Physics.Components; +using Robust.Shared.Timing; +using System.Diagnostics.CodeAnalysis; namespace Content.Server.Pinpointer; /// /// Handles data to be used for in-grid map displays. /// -public sealed class NavMapSystem : SharedNavMapSystem +public sealed partial class NavMapSystem : SharedNavMapSystem { [Dependency] private readonly IAdminLogManager _adminLog = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly TagSystem _tags = default!; - [Dependency] private readonly MapSystem _map = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; [Dependency] private readonly IMapManager _mapManager = default!; - [Dependency] private readonly TransformSystem _transform = default!; - - private EntityQuery _physicsQuery; - private EntityQuery _tagQuery; + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly ITileDefinitionManager _tileDefManager = default!; public const float CloseDistance = 15f; public const float FarDistance = 30f; + private EntityQuery _airtightQuery; + private EntityQuery _gridQuery; + private EntityQuery _navQuery; + public override void Initialize() { base.Initialize(); - _physicsQuery = GetEntityQuery(); - _tagQuery = GetEntityQuery(); + var categories = Enum.GetNames(typeof(NavMapChunkType)).Length - 1; // -1 due to "Invalid" entry. + if (Categories != categories) + throw new Exception($"{nameof(Categories)} must be equal to the number of chunk types"); + + _airtightQuery = GetEntityQuery(); + _gridQuery = GetEntityQuery(); + _navQuery = GetEntityQuery(); - SubscribeLocalEvent(OnAnchorChange); - SubscribeLocalEvent(OnReAnchor); + // Initialization events SubscribeLocalEvent(OnStationInit); - SubscribeLocalEvent(OnNavMapStartup); - SubscribeLocalEvent(OnGetState); + + // Grid change events SubscribeLocalEvent(OnNavMapSplit); + SubscribeLocalEvent(OnTileChanged); + + SubscribeLocalEvent(OnAirtightChange); + // Beacon events SubscribeLocalEvent(OnNavMapBeaconMapInit); - SubscribeLocalEvent(OnNavMapBeaconStartup); SubscribeLocalEvent(OnNavMapBeaconAnchor); - - SubscribeLocalEvent(OnNavMapDoorStartup); - SubscribeLocalEvent(OnNavMapDoorAnchor); - SubscribeLocalEvent(OnConfigureMessage); SubscribeLocalEvent(OnConfigurableMapInit); SubscribeLocalEvent(OnConfigurableExamined); @@ -67,64 +71,137 @@ private void OnStationInit(StationGridAddedEvent ev) RefreshGrid(comp, Comp(ev.GridId)); } - private void OnNavMapBeaconMapInit(EntityUid uid, NavMapBeaconComponent component, MapInitEvent args) + #region: Grid change event handling + + private void OnNavMapSplit(ref GridSplitEvent args) { - if (component.DefaultText == null || component.Text != null) + if (!_navQuery.TryComp(args.Grid, out var comp)) return; - component.Text = Loc.GetString(component.DefaultText); - Dirty(uid, component); - RefreshNavGrid(uid); + foreach (var grid in args.NewGrids) + { + var newComp = EnsureComp(grid); + RefreshGrid(comp, newComp); + } + + RefreshGrid(comp, _gridQuery.GetComponent(args.Grid)); } - private void OnNavMapBeaconStartup(EntityUid uid, NavMapBeaconComponent component, ComponentStartup args) + private NavMapChunk EnsureChunk(NavMapComponent component, Vector2i origin) { - RefreshNavGrid(uid); + if (!component.Chunks.TryGetValue(origin, out var chunk)) + { + chunk = new(origin); + component.Chunks[origin] = chunk; + } + + return chunk; } - private void OnNavMapBeaconAnchor(EntityUid uid, NavMapBeaconComponent component, ref AnchorStateChangedEvent args) + private void OnTileChanged(ref TileChangedEvent ev) { - UpdateBeaconEnabledVisuals((uid, component)); - RefreshNavGrid(uid); + if (!ev.EmptyChanged || !_navQuery.TryComp(ev.NewTile.GridUid, out var navMap)) + return; + + var tile = ev.NewTile.GridIndices; + var chunkOrigin = SharedMapSystem.GetChunkIndices(tile, ChunkSize); + + var chunk = EnsureChunk(navMap, chunkOrigin); + + // This could be easily replaced in the future to accommodate diagonal tiles + var relative = SharedMapSystem.GetChunkRelative(tile, ChunkSize); + ref var tileData = ref chunk.TileData[GetTileIndex(relative)]; + + if (ev.NewTile.IsSpace(_tileDefManager)) + { + tileData = 0; + if (PruneEmpty((ev.NewTile.GridUid, navMap), chunk)) + return; + } + else + { + tileData = FloorMask; + } + + DirtyChunk((ev.NewTile.GridUid, navMap), chunk); } - private void OnNavMapDoorStartup(Entity ent, ref ComponentStartup args) + private void DirtyChunk(Entity entity, NavMapChunk chunk) { - RefreshNavGrid(ent); + if (chunk.LastUpdate == _gameTiming.CurTick) + return; + + chunk.LastUpdate = _gameTiming.CurTick; + Dirty(entity); } - private void OnNavMapDoorAnchor(Entity ent, ref AnchorStateChangedEvent args) + private void OnAirtightChange(ref AirtightChanged args) { - RefreshNavGrid(ent); + if (args.AirBlockedChanged) + return; + + var gridUid = args.Position.Grid; + + if (!_navQuery.TryComp(gridUid, out var navMap) || + !_gridQuery.TryComp(gridUid, out var mapGrid)) + { + return; + } + + var chunkOrigin = SharedMapSystem.GetChunkIndices(args.Position.Tile, ChunkSize); + var (newValue, chunk) = RefreshTileEntityContents(gridUid, navMap, mapGrid, chunkOrigin, args.Position.Tile, setFloor: false); + + if (newValue == 0 && PruneEmpty((gridUid, navMap), chunk)) + return; + + DirtyChunk((gridUid, navMap), chunk); } - private void OnConfigureMessage(Entity ent, ref NavMapBeaconConfigureBuiMessage args) + #endregion + + #region: Beacon event handling + + private void OnNavMapBeaconMapInit(EntityUid uid, NavMapBeaconComponent component, MapInitEvent args) { - if (args.Session.AttachedEntity is not { } user) + if (component.DefaultText == null || component.Text != null) return; - if (!TryComp(ent, out var navMap)) + component.Text = Loc.GetString(component.DefaultText); + Dirty(uid, component); + + UpdateNavMapBeaconData(uid, component); + } + + private void OnNavMapBeaconAnchor(EntityUid uid, NavMapBeaconComponent component, ref AnchorStateChangedEvent args) + { + UpdateBeaconEnabledVisuals((uid, component)); + UpdateNavMapBeaconData(uid, component); + } + + private void OnConfigureMessage(Entity ent, ref NavMapBeaconConfigureBuiMessage args) + { + if (!TryComp(ent, out var beacon)) return; - if (navMap.Text == args.Text && - navMap.Color == args.Color && - navMap.Enabled == args.Enabled) + if (beacon.Text == args.Text && + beacon.Color == args.Color && + beacon.Enabled == args.Enabled) return; _adminLog.Add(LogType.Action, LogImpact.Medium, - $"{ToPrettyString(user):player} configured NavMapBeacon \'{ToPrettyString(ent):entity}\' with text \'{args.Text}\', color {args.Color.ToHexNoAlpha()}, and {(args.Enabled ? "enabled" : "disabled")} it."); + $"{ToPrettyString(args.Actor):player} configured NavMapBeacon \'{ToPrettyString(ent):entity}\' with text \'{args.Text}\', color {args.Color.ToHexNoAlpha()}, and {(args.Enabled ? "enabled" : "disabled")} it."); if (TryComp(ent, out var warpPoint)) { warpPoint.Location = args.Text; } - navMap.Text = args.Text; - navMap.Color = args.Color; - navMap.Enabled = args.Enabled; - UpdateBeaconEnabledVisuals((ent, navMap)); - Dirty(ent, navMap); - RefreshNavGrid(ent); + beacon.Text = args.Text; + beacon.Color = args.Color; + beacon.Enabled = args.Enabled; + + UpdateBeaconEnabledVisuals((ent, beacon)); + UpdateNavMapBeaconData(ent, beacon); } private void OnConfigurableMapInit(Entity ent, ref MapInitEvent args) @@ -134,9 +211,7 @@ private void OnConfigurableMapInit(Entity ent // We set this on mapinit just in case the text was edited via VV or something. if (TryComp(ent, out var warpPoint)) - { warpPoint.Location = navMap.Text; - } UpdateBeaconEnabledVisuals((ent, navMap)); } @@ -152,231 +227,117 @@ private void OnConfigurableExamined(Entity en ("label", navMap.Text ?? string.Empty))); } - private void UpdateBeaconEnabledVisuals(Entity ent) - { - _appearance.SetData(ent, NavMapBeaconVisuals.Enabled, ent.Comp.Enabled && Transform(ent).Anchored); - } - - /// - /// Refreshes the grid for the corresponding beacon. - /// - /// - private void RefreshNavGrid(EntityUid uid) - { - var xform = Transform(uid); - - if (!TryComp(xform.GridUid, out var navMap)) - return; + #endregion - Dirty(xform.GridUid.Value, navMap); - } + #region: Grid functions - private bool CanBeacon(EntityUid uid, TransformComponent? xform = null) - { - if (!Resolve(uid, ref xform)) - return false; - - return xform.GridUid != null && xform.Anchored; - } - - private void OnNavMapStartup(EntityUid uid, NavMapComponent component, ComponentStartup args) - { - if (!TryComp(uid, out var grid)) - return; - - RefreshGrid(component, grid); - } - - private void OnNavMapSplit(ref GridSplitEvent args) - { - if (!TryComp(args.Grid, out NavMapComponent? comp)) - return; - - var gridQuery = GetEntityQuery(); - - foreach (var grid in args.NewGrids) - { - var newComp = EnsureComp(grid); - RefreshGrid(newComp, gridQuery.GetComponent(grid)); - } - - RefreshGrid(comp, gridQuery.GetComponent(args.Grid)); - } - - private void RefreshGrid(NavMapComponent component, MapGridComponent grid) + private void RefreshGrid(NavMapComponent component, MapGridComponent mapGrid) { + // Clear stale data component.Chunks.Clear(); + component.Beacons.Clear(); - var tiles = grid.GetAllTilesEnumerator(); + // Loop over all tiles + var tileRefs = _mapSystem.GetAllTiles(mapGrid.Owner, mapGrid); - while (tiles.MoveNext(out var tile)) + foreach (var tileRef in tileRefs) { - var chunkOrigin = SharedMapSystem.GetChunkIndices(tile.Value.GridIndices, ChunkSize); + var tile = tileRef.GridIndices; + var chunkOrigin = SharedMapSystem.GetChunkIndices(tile, ChunkSize); - if (!component.Chunks.TryGetValue(chunkOrigin, out var chunk)) - { - chunk = new NavMapChunk(chunkOrigin); - component.Chunks[chunkOrigin] = chunk; - } - - RefreshTile(grid, component, chunk, tile.Value.GridIndices); + var chunk = EnsureChunk(component, chunkOrigin); + chunk.LastUpdate = _gameTiming.CurTick; + RefreshTileEntityContents(mapGrid.Owner, component, mapGrid, chunkOrigin, tile, setFloor: true); } + + Dirty(mapGrid.Owner, component); } - private void OnGetState(EntityUid uid, NavMapComponent component, ref ComponentGetState args) + private (int NewVal, NavMapChunk Chunk) RefreshTileEntityContents(EntityUid uid, + NavMapComponent component, + MapGridComponent mapGrid, + Vector2i chunkOrigin, + Vector2i tile, + bool setFloor) { - if (!TryComp(uid, out var mapGrid)) - return; - - var data = new Dictionary(component.Chunks.Count); - foreach (var (index, chunk) in component.Chunks) - { - data.Add(index, chunk.TileData); - } + var relative = SharedMapSystem.GetChunkRelative(tile, ChunkSize); + var chunk = EnsureChunk(component, chunkOrigin); + ref var tileData = ref chunk.TileData[GetTileIndex(relative)]; - var beaconQuery = AllEntityQuery(); - var beacons = new List(); + // Clear all data except for floor bits + if (setFloor) + tileData = FloorMask; + else + tileData &= FloorMask; - while (beaconQuery.MoveNext(out var beaconUid, out var beacon, out var xform)) + var enumerator = _mapSystem.GetAnchoredEntitiesEnumerator(uid, mapGrid, tile); + while (enumerator.MoveNext(out var ent)) { - if (!beacon.Enabled || xform.GridUid != uid || !CanBeacon(beaconUid, xform)) + if (!_airtightQuery.TryComp(ent, out var airtight)) continue; - // TODO: Make warp points use metadata name instead. - string? name = beacon.Text; - - if (string.IsNullOrEmpty(name)) - { - if (TryComp(beaconUid, out var warpPoint) && warpPoint.Location != null) - { - name = warpPoint.Location; - } - else - { - name = MetaData(beaconUid).EntityName; - } - } - - beacons.Add(new NavMapBeacon(beacon.Color, name, xform.LocalPosition)); + var category = GetEntityType(ent.Value); + if (category == NavMapChunkType.Invalid) + continue; + + var directions = (int)airtight.AirBlockedDirection; + tileData |= directions << (int) category; } - var airlockQuery = EntityQueryEnumerator(); - var airlocks = new List(); - while (airlockQuery.MoveNext(out _, out _, out var xform)) - { - if (xform.GridUid != uid || !xform.Anchored) - continue; + // Remove walls that intersect with doors (unless they can both physically fit on the same tile) + // TODO NAVMAP why can this even happen? + // Is this for blast-doors or something? - var pos = _map.TileIndicesFor(uid, mapGrid, xform.Coordinates); - var enumerator = _map.GetAnchoredEntitiesEnumerator(uid, mapGrid, pos); - - var wallPresent = false; - while (enumerator.MoveNext(out var ent)) - { - if (!_physicsQuery.TryGetComponent(ent, out var body) || - !body.CanCollide || - !body.Hard || - body.BodyType != BodyType.Static || - !_tags.HasTag(ent.Value, "Wall", _tagQuery) && - !_tags.HasTag(ent.Value, "Window", _tagQuery)) - { - continue; - } - - wallPresent = true; - break; - } - - if (wallPresent) - continue; + // Shift airlock bits over to the wall bits + var shiftedAirlockBits = (tileData & AirlockMask) >> ((int) NavMapChunkType.Airlock - (int) NavMapChunkType.Wall); - airlocks.Add(new NavMapAirlock(xform.LocalPosition)); - } + // And then mask door bits + tileData &= ~shiftedAirlockBits; - // TODO: Diffs - args.State = new NavMapComponentState() - { - TileData = data, - Beacons = beacons, - Airlocks = airlocks - }; + return (tileData, chunk); } - private void OnReAnchor(ref ReAnchorEvent ev) + private bool PruneEmpty(Entity entity, NavMapChunk chunk) { - if (TryComp(ev.OldGrid, out var oldGrid) && - TryComp(ev.OldGrid, out var navMap)) + foreach (var val in chunk.TileData) { - var chunkOrigin = SharedMapSystem.GetChunkIndices(ev.TilePos, ChunkSize); - - if (navMap.Chunks.TryGetValue(chunkOrigin, out var chunk)) - { - RefreshTile(oldGrid, navMap, chunk, ev.TilePos); - } + // TODO NAVMAP SIMD + if (val != 0) + return false; } - HandleAnchor(ev.Xform); + entity.Comp.Chunks.Remove(chunk.Origin); + Dirty(entity); + return true; } - private void OnAnchorChange(ref AnchorStateChangedEvent ev) - { - HandleAnchor(ev.Transform); - } + #endregion - private void HandleAnchor(TransformComponent xform) + #region: Beacon functions + + private void UpdateNavMapBeaconData(EntityUid uid, NavMapBeaconComponent component, TransformComponent? xform = null) { - if (!TryComp(xform.GridUid, out var navMap) || - !TryComp(xform.GridUid, out var grid)) + if (!Resolve(uid, ref xform) + || xform.GridUid == null + || !_navQuery.TryComp(xform.GridUid, out var navMap)) return; - var tile = grid.LocalToTile(xform.Coordinates); - var chunkOrigin = SharedMapSystem.GetChunkIndices(tile, ChunkSize); + var meta = MetaData(uid); + var changed = navMap.Beacons.Remove(meta.NetEntity); - if (!navMap.Chunks.TryGetValue(chunkOrigin, out var chunk)) + if (TryCreateNavMapBeaconData(uid, component, xform, meta, out var beaconData)) { - chunk = new NavMapChunk(chunkOrigin); - navMap.Chunks[chunkOrigin] = chunk; + navMap.Beacons.Add(meta.NetEntity, beaconData.Value); + changed = true; } - RefreshTile(grid, navMap, chunk, tile); + if (changed) + Dirty(xform.GridUid.Value, navMap); } - private void RefreshTile(MapGridComponent grid, NavMapComponent component, NavMapChunk chunk, Vector2i tile) + private void UpdateBeaconEnabledVisuals(Entity ent) { - var relative = SharedMapSystem.GetChunkRelative(tile, ChunkSize); - var existing = chunk.TileData; - var flag = GetFlag(relative); - - chunk.TileData &= ~flag; - - var enumerator = grid.GetAnchoredEntitiesEnumerator(tile); - // TODO: Use something to get convex poly. - - while (enumerator.MoveNext(out var ent)) - { - if (!_physicsQuery.TryGetComponent(ent, out var body) || - !body.CanCollide || - !body.Hard || - body.BodyType != BodyType.Static || - !_tags.HasTag(ent.Value, "Wall", _tagQuery) && - !_tags.HasTag(ent.Value, "Window", _tagQuery)) - { - continue; - } - - chunk.TileData |= flag; - break; - } - - if (chunk.TileData == 0) - { - component.Chunks.Remove(chunk.Origin); - } - - if (existing == chunk.TileData) - return; - - Dirty(component); + _appearance.SetData(ent, NavMapBeaconVisuals.Enabled, ent.Comp.Enabled && Transform(ent).Anchored); } /// @@ -389,9 +350,6 @@ public void SetBeaconEnabled(EntityUid uid, bool enabled, NavMapBeaconComponent? comp.Enabled = enabled; UpdateBeaconEnabledVisuals((uid, comp)); - Dirty(uid, comp); - - RefreshNavGrid(uid); } /// @@ -419,7 +377,7 @@ public bool TryGetNearestBeacon(Entity ent, if (!Resolve(ent, ref ent.Comp)) return false; - return TryGetNearestBeacon(_transform.GetMapCoordinates(ent, ent.Comp), out beacon, out beaconCoords); + return TryGetNearestBeacon(_transformSystem.GetMapCoordinates(ent, ent.Comp), out beacon, out beaconCoords); } /// @@ -446,7 +404,7 @@ public bool TryGetNearestBeacon(MapCoordinates coordinates, if (coordinates.MapId != xform.MapID) continue; - var coords = _transform.GetWorldPosition(xform); + var coords = _transformSystem.GetWorldPosition(xform); var distanceSquared = (coordinates.Position - coords).LengthSquared(); if (!float.IsInfinity(minDistance) && distanceSquared >= minDistance) continue; @@ -465,7 +423,7 @@ public string GetNearestBeaconString(Entity ent) if (!Resolve(ent, ref ent.Comp)) return Loc.GetString("nav-beacon-pos-no-beacons"); - return GetNearestBeaconString(_transform.GetMapCoordinates(ent, ent.Comp)); + return GetNearestBeaconString(_transformSystem.GetMapCoordinates(ent, ent.Comp)); } public string GetNearestBeaconString(MapCoordinates coordinates) @@ -494,11 +452,13 @@ public string GetNearestBeaconString(MapCoordinates coordinates) ? Loc.GetString("nav-beacon-pos-format-direction-mod-far") : string.Empty; - // we can null suppress the text being null because TRyGetNearestVisibleStationBeacon always gives us a beacon with not-null text. + // we can null suppress the text being null because TryGetNearestVisibleStationBeacon always gives us a beacon with not-null text. return Loc.GetString("nav-beacon-pos-format-direction", ("modifier", modifier), ("direction", ContentLocalizationManager.FormatDirection(adjustedDir).ToLowerInvariant()), ("color", beacon.Value.Comp.Color), ("marker", beacon.Value.Comp.Text!)); } + + #endregion } diff --git a/Content.Server/Pinpointer/StationMapSystem.cs b/Content.Server/Pinpointer/StationMapSystem.cs index c9db560fef..b0b3141fb0 100644 --- a/Content.Server/Pinpointer/StationMapSystem.cs +++ b/Content.Server/Pinpointer/StationMapSystem.cs @@ -24,29 +24,23 @@ public override void Initialize() private void OnStationMapClosed(EntityUid uid, StationMapComponent component, BoundUIClosedEvent args) { - if (!Equals(args.UiKey, StationMapUiKey.Key) || args.Session.AttachedEntity == null) + if (!Equals(args.UiKey, StationMapUiKey.Key)) return; - RemCompDeferred(args.Session.AttachedEntity.Value); + RemCompDeferred(args.Actor); } private void OnUserParentChanged(EntityUid uid, StationMapUserComponent component, ref EntParentChangedMessage args) { - if (TryComp(uid, out var actor)) - { - _ui.TryClose(component.Map, StationMapUiKey.Key, actor.PlayerSession); - } + _ui.CloseUi(component.Map, StationMapUiKey.Key, uid); } private void OnStationMapOpened(EntityUid uid, StationMapComponent component, BoundUIOpenedEvent args) { - if (args.Session.AttachedEntity == null) - return; - if (!_cell.TryUseActivatableCharge(uid)) return; - var comp = EnsureComp(args.Session.AttachedEntity.Value); + var comp = EnsureComp(args.Actor); comp.Map = uid; } } diff --git a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingManager.cs b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingManager.cs index 02d5780315..943b4cf786 100644 --- a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingManager.cs +++ b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingManager.cs @@ -317,7 +317,7 @@ public async Task LoadData(ICommonSession session, CancellationToken cancel) var data = new PlayTimeData(); _playTimeData.Add(session, data); - var playTimes = await _db.GetPlayTimes(session.UserId); + var playTimes = await _db.GetPlayTimes(session.UserId, cancel); cancel.ThrowIfCancellationRequested(); foreach (var timer in playTimes) diff --git a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs index de53235198..14eefbd6b8 100644 --- a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs +++ b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs @@ -1,4 +1,6 @@ using System.Linq; +using Content.Server.Administration; +using Content.Server.Administration.Managers; using Content.Server.Afk; using Content.Server.Afk.Events; using Content.Server.GameTicking; @@ -34,6 +36,7 @@ public sealed class PlayTimeTrackingSystem : EntitySystem [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly MindSystem _minds = default!; [Dependency] private readonly PlayTimeTrackingManager _tracking = default!; + [Dependency] private readonly IAdminManager _adminManager = default!; [Dependency] private readonly CharacterRequirementsSystem _characterRequirements = default!; [Dependency] private readonly IServerPreferencesManager _prefs = default!; [Dependency] private readonly IConfigurationManager _config = default!; @@ -54,6 +57,7 @@ public override void Initialize() SubscribeLocalEvent(OnUnAFK); SubscribeLocalEvent(OnMobStateChanged); SubscribeLocalEvent(OnPlayerJoinedLobby); + _adminManager.OnPermsChanged += AdminPermsChanged; } public override void Shutdown() @@ -61,6 +65,7 @@ public override void Shutdown() base.Shutdown(); _tracking.CalcTrackers -= CalcTrackers; + _adminManager.OnPermsChanged -= AdminPermsChanged; } private void CalcTrackers(ICommonSession player, HashSet trackers) @@ -68,6 +73,13 @@ private void CalcTrackers(ICommonSession player, HashSet trackers) if (_afk.IsAfk(player)) return; + if (_adminManager.IsAdmin(player)) + { + trackers.Add(PlayTimeTrackingShared.TrackerAdmin); + trackers.Add(PlayTimeTrackingShared.TrackerOverall); + return; + } + if (!IsPlayerAlive(player)) return; @@ -138,6 +150,11 @@ private void OnAFK(ref AFKEvent ev) _tracking.QueueRefreshTrackers(ev.Session); } + private void AdminPermsChanged(AdminPermsChangedEventArgs admin) + { + _tracking.QueueRefreshTrackers(admin.Player); + } + private void OnPlayerAttached(PlayerAttachedEvent ev) { _tracking.QueueRefreshTrackers(ev.Player); diff --git a/Content.Server/Polymorph/Systems/ChameleonProjectorSystem.cs b/Content.Server/Polymorph/Systems/ChameleonProjectorSystem.cs new file mode 100644 index 0000000000..1586973a21 --- /dev/null +++ b/Content.Server/Polymorph/Systems/ChameleonProjectorSystem.cs @@ -0,0 +1,99 @@ +using Content.Server.Polymorph.Components; +using Content.Shared.Actions; +using Content.Shared.Construction.Components; +using Content.Shared.Hands; +using Content.Shared.Mobs; +using Content.Shared.Mobs.Components; +using Content.Shared.Mobs.Systems; +using Content.Shared.Polymorph; +using Content.Shared.Polymorph.Components; +using Content.Shared.Polymorph.Systems; +using Content.Shared.StatusIcon.Components; +using Robust.Shared.Physics.Components; + +namespace Content.Server.Polymorph.Systems; + +public sealed class ChameleonProjectorSystem : SharedChameleonProjectorSystem +{ + [Dependency] private readonly MetaDataSystem _meta = default!; + [Dependency] private readonly MobThresholdSystem _mobThreshold = default!; + [Dependency] private readonly PolymorphSystem _polymorph = default!; + [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedTransformSystem _xform = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnEquippedHand); + SubscribeLocalEvent(OnToggleNoRot); + SubscribeLocalEvent(OnToggleAnchored); + } + + private void OnEquippedHand(Entity ent, ref GotEquippedHandEvent args) + { + if (!TryComp(ent, out var poly)) + return; + + _polymorph.Revert((ent, poly)); + args.Handled = true; + } + + public override void Disguise(ChameleonProjectorComponent proj, EntityUid user, EntityUid entity) + { + if (_polymorph.PolymorphEntity(user, proj.Polymorph) is not {} disguise) + return; + + // make disguise look real (for simple things at least) + var meta = MetaData(entity); + _meta.SetEntityName(disguise, meta.EntityName); + _meta.SetEntityDescription(disguise, meta.EntityDescription); + + var comp = EnsureComp(disguise); + comp.SourceEntity = entity; + comp.SourceProto = Prototype(entity)?.ID; + Dirty(disguise, comp); + + // no sechud trolling + RemComp(disguise); + + _appearance.CopyData(entity, disguise); + + var mass = CompOrNull(entity)?.Mass ?? 0f; + + // let the disguise die when its taken enough damage, which then transfers to the player + // health is proportional to mass, and capped to not be insane + if (TryComp(disguise, out var thresholds)) + { + // if the player is of flesh and blood, cap max health to theirs + // so that when reverting damage scales 1:1 and not round removing + var playerMax = _mobThreshold.GetThresholdForState(user, MobState.Dead).Float(); + var max = playerMax == 0f ? proj.MaxHealth : Math.Max(proj.MaxHealth, playerMax); + + var health = Math.Clamp(mass, proj.MinHealth, proj.MaxHealth); + _mobThreshold.SetMobStateThreshold(disguise, health, MobState.Critical, thresholds); + _mobThreshold.SetMobStateThreshold(disguise, max, MobState.Dead, thresholds); + } + + // add actions for controlling transform aspects + _actions.AddAction(disguise, proj.NoRotAction); + _actions.AddAction(disguise, proj.AnchorAction); + } + + private void OnToggleNoRot(Entity ent, ref DisguiseToggleNoRotEvent args) + { + var xform = Transform(ent); + xform.NoLocalRotation = !xform.NoLocalRotation; + } + + private void OnToggleAnchored(Entity ent, ref DisguiseToggleAnchoredEvent args) + { + var uid = ent.Owner; + var xform = Transform(uid); + if (xform.Anchored) + _xform.Unanchor(uid, xform); + else + _xform.AnchorEntity((uid, xform)); + } +} diff --git a/Content.Server/Polymorph/Systems/PolymorphSystem.cs b/Content.Server/Polymorph/Systems/PolymorphSystem.cs index 8cae15d70d..e6ba1d02af 100644 --- a/Content.Server/Polymorph/Systems/PolymorphSystem.cs +++ b/Content.Server/Polymorph/Systems/PolymorphSystem.cs @@ -199,7 +199,7 @@ private void OnDestruction(Entity ent, ref Destructi var targetTransformComp = Transform(uid); - var child = Spawn(configuration.Entity, targetTransformComp.Coordinates); + var child = Spawn(configuration.Entity, _transform.GetMapCoordinates(uid, targetTransformComp), rotation: _transform.GetWorldRotation(uid)); MakeSentientCommand.MakeSentient(child, EntityManager); diff --git a/Content.Server/Popups/PopupSystem.cs b/Content.Server/Popups/PopupSystem.cs index d1163a2be1..4aa3d39224 100644 --- a/Content.Server/Popups/PopupSystem.cs +++ b/Content.Server/Popups/PopupSystem.cs @@ -88,11 +88,19 @@ public override void PopupEntity(string? message, EntityUid uid, EntityUid recip RaiseNetworkEvent(new PopupEntityEvent(message, type, GetNetEntity(uid)), actor.PlayerSession); } + public override void PopupClient(string? message, EntityUid? recipient, PopupType type = PopupType.Small) + { + } + public override void PopupClient(string? message, EntityUid uid, EntityUid? recipient, PopupType type = PopupType.Small) { // do nothing duh its for client only } + public override void PopupClient(string? message, EntityCoordinates coordinates, EntityUid? recipient, PopupType type = PopupType.Small) + { + } + public override void PopupEntity(string? message, EntityUid uid, ICommonSession recipient, PopupType type = PopupType.Small) { if (message == null) diff --git a/Content.Server/Power/Components/ActivatableUIRequiresPowerComponent.cs b/Content.Server/Power/Components/ActivatableUIRequiresPowerComponent.cs deleted file mode 100644 index c387457adb..0000000000 --- a/Content.Server/Power/Components/ActivatableUIRequiresPowerComponent.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace Content.Server.Power.Components -{ - [RegisterComponent] - public sealed partial class ActivatableUIRequiresPowerComponent : Component - { - } -} - diff --git a/Content.Server/Power/Components/ActiveChargerComponent.cs b/Content.Server/Power/Components/ActiveChargerComponent.cs new file mode 100644 index 0000000000..9f75db853d --- /dev/null +++ b/Content.Server/Power/Components/ActiveChargerComponent.cs @@ -0,0 +1,7 @@ +using Content.Shared.Containers.ItemSlots; +using Content.Shared.Power; + +namespace Content.Server.Power.Components; + +[RegisterComponent] +public sealed partial class ActiveChargerComponent : Component { } diff --git a/Content.Server/Power/Components/ChargerComponent.cs b/Content.Server/Power/Components/ChargerComponent.cs index af4498f01b..4a3c83ae03 100644 --- a/Content.Server/Power/Components/ChargerComponent.cs +++ b/Content.Server/Power/Components/ChargerComponent.cs @@ -26,5 +26,12 @@ public sealed partial class ChargerComponent : Component /// [DataField("whitelist")] public EntityWhitelist? Whitelist; + + /// + /// Indicates whether the charger is portable and thus subject to EMP effects + /// and bypasses checks for transform, anchored, and ApcPowerReceiverComponent. + /// + [DataField] + public bool Portable = false; } } diff --git a/Content.Server/Power/Components/ChargingComponent.cs b/Content.Server/Power/Components/ChargingComponent.cs deleted file mode 100644 index db7c14f708..0000000000 --- a/Content.Server/Power/Components/ChargingComponent.cs +++ /dev/null @@ -1,19 +0,0 @@ -using Content.Shared.Containers.ItemSlots; -using Content.Shared.Power; - -namespace Content.Server.Power.Components -{ - [RegisterComponent] - public sealed partial class ChargingComponent : Component - { - /// - ///References the entity of the charger that is currently powering this battery - /// - public EntityUid ChargerUid; - - /// - ///References the component of the charger that is currently powering this battery - /// - public ChargerComponent ChargerComponent; - } -} diff --git a/Content.Server/Power/Components/SiliconEmitSoundOnDrainedComponent.cs b/Content.Server/Power/Components/SiliconEmitSoundOnDrainedComponent.cs index 4e5121d607..481311d968 100644 --- a/Content.Server/Power/Components/SiliconEmitSoundOnDrainedComponent.cs +++ b/Content.Server/Power/Components/SiliconEmitSoundOnDrainedComponent.cs @@ -1,6 +1,6 @@ -using System.ComponentModel.DataAnnotations; using Robust.Shared.Audio; using Content.Server.Sound.Components; +using Content.Shared.Sound.Components; namespace Content.Server.Silicon; diff --git a/Content.Server/Power/Components/UpgradeBatteryComponent.cs b/Content.Server/Power/Components/UpgradeBatteryComponent.cs new file mode 100644 index 0000000000..b676883b71 --- /dev/null +++ b/Content.Server/Power/Components/UpgradeBatteryComponent.cs @@ -0,0 +1,28 @@ +using Content.Shared.Construction.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Server.Power.Components +{ + + [RegisterComponent] + public sealed partial class UpgradeBatteryComponent : Component + { + /// + /// The machine part that affects the power capacity. + /// + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MachinePartPowerCapacity = "PowerCell"; + + /// + /// The machine part rating is raised to this power when calculating power gain + /// + [DataField] + public float MaxChargeMultiplier = 2f; + + /// + /// Power gain scaling + /// + [DataField] + public float BaseMaxCharge = 8000000; + } +} diff --git a/Content.Server/Power/Components/UpgradePowerDrawComponent.cs b/Content.Server/Power/Components/UpgradePowerDrawComponent.cs new file mode 100644 index 0000000000..23db4905cc --- /dev/null +++ b/Content.Server/Power/Components/UpgradePowerDrawComponent.cs @@ -0,0 +1,41 @@ +using Content.Server.Construction.Components; +using Content.Shared.Construction.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Server.Power.Components; + +/// +/// This is used for machines whose power draw +/// can be decreased through machine part upgrades. +/// +[RegisterComponent] +public sealed partial class UpgradePowerDrawComponent : Component +{ + /// + /// The base power draw of the machine. + /// Prioritizes hv/mv draw over lv draw. + /// Value is initializezd on map init from + /// + [ViewVariables(VVAccess.ReadWrite)] + public float BaseLoad; + + /// + /// The machine part that affects the power draw. + /// + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)] + public string MachinePartPowerDraw = "Capacitor"; + + /// + /// The multiplier used for scaling the power draw. + /// + [DataField(required: true), ViewVariables(VVAccess.ReadWrite)] + public float PowerDrawMultiplier = 1f; + + /// + /// What type of scaling is being used? + /// + [DataField(required: true), ViewVariables(VVAccess.ReadWrite)] + public MachineUpgradeScalingType Scaling; +} + + diff --git a/Content.Server/Power/Components/UpgradePowerSupplierComponent.cs b/Content.Server/Power/Components/UpgradePowerSupplierComponent.cs new file mode 100644 index 0000000000..012c38a6b9 --- /dev/null +++ b/Content.Server/Power/Components/UpgradePowerSupplierComponent.cs @@ -0,0 +1,36 @@ +using Content.Server.Construction.Components; +using Content.Shared.Construction.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Server.Power.Components; + +[RegisterComponent] +public sealed partial class UpgradePowerSupplierComponent : Component +{ + [ViewVariables(VVAccess.ReadWrite)] + public float BaseSupplyRate; + + /// + /// The machine part that affects the power supplu. + /// + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MachinePartPowerSupply = "Capacitor"; + + /// + /// The multiplier used for scaling the power supply. + /// + [DataField(required: true)] + public float PowerSupplyMultiplier = 1f; + + /// + /// What type of scaling is being used? + /// + [DataField(required: true)] + public MachineUpgradeScalingType Scaling; + + /// + /// The current value that the power supply is being scaled by, + /// + [DataField] + public float ActualScalar = 1f; +} diff --git a/Content.Server/Power/Components/UpgradePowerSupplyRampingComponent.cs b/Content.Server/Power/Components/UpgradePowerSupplyRampingComponent.cs new file mode 100644 index 0000000000..61a654b383 --- /dev/null +++ b/Content.Server/Power/Components/UpgradePowerSupplyRampingComponent.cs @@ -0,0 +1,36 @@ +using Content.Server.Construction.Components; +using Content.Shared.Construction.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Server.Power.Components; + +[RegisterComponent] +public sealed partial class UpgradePowerSupplyRampingComponent : Component +{ + [ViewVariables(VVAccess.ReadWrite)] + public float BaseRampRate; + + /// + /// The machine part that affects the power supply ramping + /// + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MachinePartRampRate = "Capacitor"; + + /// + /// The multiplier used for scaling the power supply ramping + /// + [DataField] + public float SupplyRampingMultiplier = 1f; + + /// + /// What type of scaling is being used? + /// + [DataField(required: true)] + public MachineUpgradeScalingType Scaling; + + /// + /// The current value that the power supply is being scaled by + /// + [DataField] + public float ActualScalar = 1f; +} diff --git a/Content.Server/Power/EntitySystems/ActivatableUIRequiresPowerSystem.cs b/Content.Server/Power/EntitySystems/ActivatableUIRequiresPowerSystem.cs index 561b0e71f0..72843a65b8 100644 --- a/Content.Server/Power/EntitySystems/ActivatableUIRequiresPowerSystem.cs +++ b/Content.Server/Power/EntitySystems/ActivatableUIRequiresPowerSystem.cs @@ -4,11 +4,12 @@ using JetBrains.Annotations; using Content.Shared.Wires; using Content.Server.UserInterface; +using Content.Shared.Power.Components; +using ActivatableUISystem = Content.Shared.UserInterface.ActivatableUISystem; namespace Content.Server.Power.EntitySystems; -[UsedImplicitly] -internal sealed class ActivatableUIRequiresPowerSystem : EntitySystem +public sealed class ActivatableUIRequiresPowerSystem : EntitySystem { [Dependency] private readonly ActivatableUISystem _activatableUI = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; diff --git a/Content.Server/Power/EntitySystems/ApcSystem.cs b/Content.Server/Power/EntitySystems/ApcSystem.cs index f345c9e88e..a449f3555a 100644 --- a/Content.Server/Power/EntitySystems/ApcSystem.cs +++ b/Content.Server/Power/EntitySystems/ApcSystem.cs @@ -68,11 +68,8 @@ private void OnApcInit(EntityUid uid, ApcComponent component, MapInitEvent args) //Update the HasAccess var for UI to read private void OnBoundUiOpen(EntityUid uid, ApcComponent component, BoundUIOpenedEvent args) { - if (args.Session.AttachedEntity == null) - return; - // TODO: this should be per-player not stored on the apc - component.HasAccess = _accessReader.IsAllowed(args.Session.AttachedEntity.Value, uid); + component.HasAccess = _accessReader.IsAllowed(args.Actor, uid); UpdateApcState(uid, component); } @@ -83,21 +80,18 @@ private void OnToggleMainBreaker(EntityUid uid, ApcComponent component, ApcToggl if (attemptEv.Cancelled) { _popup.PopupCursor(Loc.GetString("apc-component-on-toggle-cancel"), - args.Session, PopupType.Medium); + args.Actor, PopupType.Medium); return; } - if (args.Session.AttachedEntity == null) - return; - - if (_accessReader.IsAllowed(args.Session.AttachedEntity.Value, uid)) + if (_accessReader.IsAllowed(args.Actor, uid)) { ApcToggleBreaker(uid, component); } else { _popup.PopupCursor(Loc.GetString("apc-component-insufficient-access"), - args.Session, PopupType.Medium); + args.Actor, PopupType.Medium); } } @@ -160,7 +154,7 @@ public void UpdateUIState(EntityUid uid, (int) MathF.Ceiling(battery.CurrentSupply), apc.LastExternalState, battery.CurrentStorage / battery.Capacity); - _ui.TrySetUiState(uid, ApcUiKey.Key, state, ui: ui); + _ui.SetUiState((uid, ui), ApcUiKey.Key, state); } private ApcChargeState CalcChargeState(EntityUid uid, PowerState.Battery battery) diff --git a/Content.Server/Power/EntitySystems/BatterySystem.cs b/Content.Server/Power/EntitySystems/BatterySystem.cs index 1c5d83b094..0567a2222b 100644 --- a/Content.Server/Power/EntitySystems/BatterySystem.cs +++ b/Content.Server/Power/EntitySystems/BatterySystem.cs @@ -1,3 +1,4 @@ +using System.Diagnostics.CodeAnalysis; using Content.Server.Cargo.Systems; using Content.Server.Emp; using Content.Shared.Emp; @@ -5,6 +6,7 @@ using Content.Shared.Examine; using Content.Shared.Rejuvenate; using JetBrains.Annotations; +using Robust.Shared.Containers; using Robust.Shared.Utility; namespace Content.Server.Power.EntitySystems @@ -12,6 +14,8 @@ namespace Content.Server.Power.EntitySystems [UsedImplicitly] public sealed class BatterySystem : EntitySystem { + [Dependency] private readonly SharedContainerSystem _containers = default!; // WD EDIT + public override void Initialize() { base.Initialize(); @@ -21,7 +25,6 @@ public override void Initialize() SubscribeLocalEvent(OnBatteryRejuvenate); SubscribeLocalEvent(CalculateBatteryPrice); SubscribeLocalEvent(OnEmpPulse); - SubscribeLocalEvent(OnEmpDisabledRemoved); SubscribeLocalEvent(PreSync); SubscribeLocalEvent(PostSync); @@ -106,17 +109,6 @@ private void OnEmpPulse(EntityUid uid, BatteryComponent component, ref EmpPulseE UseCharge(uid, args.EnergyConsumption, component); } - // if a disabled battery is put into a recharged, - // allow the recharger to start recharging again after the disable ends - private void OnEmpDisabledRemoved(EntityUid uid, BatteryComponent component, ref EmpDisabledRemoved args) - { - if (!TryComp(uid, out var charging)) - return; - - var ev = new ChargerUpdateStatusEvent(); - RaiseLocalEvent(charging.ChargerUid, ref ev); - } - public float UseCharge(EntityUid uid, float value, BatteryComponent? battery = null) { if (value <= 0 || !Resolve(uid, ref battery) || battery.CurrentCharge == 0) @@ -191,11 +183,35 @@ public bool IsFull(EntityUid uid, BatteryComponent? battery = null) if (!Resolve(uid, ref battery)) return false; - // If the battery is full, remove its charging component. - if (TryComp(uid, out _)) - RemComp(uid); - return battery.CurrentCharge / battery.MaxCharge >= 0.99f; } + + // WD EDIT START + public bool TryGetBatteryComponent(EntityUid uid, [NotNullWhen(true)] out BatteryComponent? battery, + [NotNullWhen(true)] out EntityUid? batteryUid) + { + if (TryComp(uid, out battery)) + { + batteryUid = uid; + return true; + } + + if (!_containers.TryGetContainer(uid, "cell_slot", out var container) + || container is not ContainerSlot slot) + { + battery = null; + batteryUid = null; + return false; + } + + batteryUid = slot.ContainedEntity; + + if (batteryUid != null) + return TryComp(batteryUid, out battery); + + battery = null; + return false; + } + // WD EDIT END } } diff --git a/Content.Server/Power/EntitySystems/ChargerSystem.cs b/Content.Server/Power/EntitySystems/ChargerSystem.cs index ae6b024162..1ff13a24f2 100644 --- a/Content.Server/Power/EntitySystems/ChargerSystem.cs +++ b/Content.Server/Power/EntitySystems/ChargerSystem.cs @@ -10,7 +10,6 @@ using System.Diagnostics.CodeAnalysis; using Content.Shared.Storage.Components; using Robust.Server.Containers; -using Content.Shared.Whitelist; namespace Content.Server.Power.EntitySystems; @@ -32,10 +31,7 @@ public override void Initialize() SubscribeLocalEvent(OnEntityStorageInsertAttempt); SubscribeLocalEvent(OnChargerExamine); - SubscribeLocalEvent(OnUpdateStatus); - SubscribeLocalEvent(OnEmpPulse); - SubscribeLocalEvent(OnEmpDisabledRemoved); } private void OnStartup(EntityUid uid, ChargerComponent component, ComponentStartup args) @@ -48,58 +44,21 @@ private void OnChargerExamine(EntityUid uid, ChargerComponent component, Examine args.PushMarkup(Loc.GetString("charger-examine", ("color", "yellow"), ("chargeRate", (int) component.ChargeRate))); } - private void StartChargingBattery(EntityUid uid, ChargerComponent component, EntityUid target) - { - bool charge = true; - - if (HasComp(uid)) - charge = false; - else - if (!TryComp(target, out var battery)) - charge = false; - else - if (Math.Abs(battery.MaxCharge - battery.CurrentCharge) < 0.01) - charge = false; - - // wrap functionality in an if statement instead of returning... - if (charge) - { - var charging = EnsureComp(target); - charging.ChargerUid = uid; - charging.ChargerComponent = component; - } - - // ...so the status always updates (for insertin a power cell) - UpdateStatus(uid, component); - } - - private void StopChargingBattery(EntityUid uid, ChargerComponent component, EntityUid target) - { - if (HasComp(target)) - RemComp(target); - UpdateStatus(uid, component); - } - public override void Update(float frameTime) { - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var charging)) + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out _, out var charger, out var containerComp)) { - if (!TryComp(charging.ChargerUid, out var chargerComponent)) + if (!_container.TryGetContainer(uid, charger.SlotId, out var container, containerComp)) continue; - if (charging.ChargerComponent.Status == CellChargerStatus.Off || charging.ChargerComponent.Status == CellChargerStatus.Empty) + if (charger.Status == CellChargerStatus.Empty || charger.Status == CellChargerStatus.Charged || container.ContainedEntities.Count == 0) continue; - if (HasComp(charging.ChargerUid)) - continue; - - if (!TryComp(uid, out var battery)) - continue; - - if (Math.Abs(battery.MaxCharge - battery.CurrentCharge) < 0.01) - StopChargingBattery(charging.ChargerUid, charging.ChargerComponent, uid); - TransferPower(charging.ChargerUid, uid, charging.ChargerComponent, frameTime); + foreach (var contained in container.ContainedEntities) + { + TransferPower(uid, contained, charger, frameTime); + } } } @@ -116,7 +75,7 @@ private void OnInserted(EntityUid uid, ChargerComponent component, EntInsertedIn if (args.Container.ID != component.SlotId) return; - StartChargingBattery(uid, component, args.Entity); + UpdateStatus(uid, component); } private void OnRemoved(EntityUid uid, ChargerComponent component, EntRemovedFromContainerMessage args) @@ -124,7 +83,7 @@ private void OnRemoved(EntityUid uid, ChargerComponent component, EntRemovedFrom if (args.Container.ID != component.SlotId) return; - StopChargingBattery(uid, component, args.Entity); + UpdateStatus(uid, component); } /// @@ -157,11 +116,6 @@ private void OnEntityStorageInsertAttempt(EntityUid uid, ChargerComponent compon args.Cancelled = true; } - private void OnUpdateStatus(EntityUid uid, ChargerComponent component, ref ChargerUpdateStatusEvent args) - { - UpdateStatus(uid, component); - } - private void UpdateStatus(EntityUid uid, ChargerComponent component) { var status = GetStatus(uid, component); @@ -176,6 +130,15 @@ private void UpdateStatus(EntityUid uid, ChargerComponent component) component.Status = status; + if (component.Status == CellChargerStatus.Charging) + { + AddComp(uid); + } + else + { + RemComp(uid); + } + switch (component.Status) { case CellChargerStatus.Off: @@ -187,7 +150,7 @@ private void UpdateStatus(EntityUid uid, ChargerComponent component) _appearance.SetData(uid, CellVisual.Light, CellChargerStatus.Empty, appearance); break; case CellChargerStatus.Charging: - receiver.Load = component.ChargeRate; //does not scale with multiple slotted batteries + receiver.Load = component.ChargeRate; _appearance.SetData(uid, CellVisual.Light, CellChargerStatus.Charging, appearance); break; case CellChargerStatus.Charged: @@ -198,55 +161,28 @@ private void UpdateStatus(EntityUid uid, ChargerComponent component) throw new ArgumentOutOfRangeException(); } } - + private void OnEmpPulse(EntityUid uid, ChargerComponent component, ref EmpPulseEvent args) { - // we don't care if we haven't been disabled - if (!args.Disabled) - return; - - // if the recharger is hit by an emp pulse, - // stop recharging contained batteries to save resources - if (!_container.TryGetContainer(uid, component.SlotId, out var container)) - return; - - foreach (var containedEntity in container.ContainedEntities) - { - if (!SearchForBattery(containedEntity, out _, out _)) - continue; - - StopChargingBattery(uid, component, containedEntity); - } + args.Affected = true; + args.Disabled = true; } - private void OnEmpDisabledRemoved(EntityUid uid, ChargerComponent component, ref EmpDisabledRemoved args) + private CellChargerStatus GetStatus(EntityUid uid, ChargerComponent component) { - // if an emp disable subsides, - // attempt to start charging all batteries - if (!_container.TryGetContainer(uid, component.SlotId, out var container)) - return; - - foreach (var containedEntity in container.ContainedEntities) + if (!component.Portable) { - if (!SearchForBattery(containedEntity, out _, out _)) - continue; - - StartChargingBattery(uid, component, containedEntity); + if (!TryComp(uid, out TransformComponent? transformComponent) || !transformComponent.Anchored) + return CellChargerStatus.Off; } - } - private CellChargerStatus GetStatus(EntityUid uid, ChargerComponent component) - { - if (!TryComp(uid, out TransformComponent? transformComponent)) + if (!TryComp(uid, out ApcPowerReceiverComponent? apcPowerReceiverComponent)) return CellChargerStatus.Off; - if (!transformComponent.Anchored) + if (!component.Portable && !apcPowerReceiverComponent.Powered) return CellChargerStatus.Off; - if (!TryComp(uid, out ApcPowerReceiverComponent? apcPowerReceiverComponent)) - return CellChargerStatus.Off; - - if (!apcPowerReceiverComponent.Powered) + if (HasComp(uid)) return CellChargerStatus.Off; if (!_container.TryGetContainer(uid, component.SlotId, out var container)) @@ -255,30 +191,15 @@ private CellChargerStatus GetStatus(EntityUid uid, ChargerComponent component) if (container.ContainedEntities.Count == 0) return CellChargerStatus.Empty; - var statusOut = CellChargerStatus.Off; - - foreach (var containedEntity in container.ContainedEntities) - { - // if none of the slotted items are actually batteries, represent the charger as off - if (!SearchForBattery(containedEntity, out _, out _)) - continue; - - // if all batteries are either EMP'd or fully charged, represent the charger as fully charged - statusOut = CellChargerStatus.Charged; - if (HasComp(containedEntity)) - continue; - - if (!HasComp(containedEntity)) - continue; + if (!SearchForBattery(container.ContainedEntities[0], out _, out var heldBattery)) + return CellChargerStatus.Off; - // if we have atleast one battery being charged, represent the charger as charging; - statusOut = CellChargerStatus.Charging; - break; - } + if (Math.Abs(heldBattery.MaxCharge - heldBattery.CurrentCharge) < 0.01) + return CellChargerStatus.Charged; - return statusOut; + return CellChargerStatus.Charging; } - + private void TransferPower(EntityUid uid, EntityUid targetEntity, ChargerComponent component, float frameTime) { if (!TryComp(uid, out ApcPowerReceiverComponent? receiverComponent)) @@ -293,11 +214,11 @@ private void TransferPower(EntityUid uid, EntityUid targetEntity, ChargerCompone if (!SearchForBattery(targetEntity, out var batteryUid, out var heldBattery)) return; - _battery.TrySetCharge(batteryUid.Value, heldBattery.CurrentCharge + component.ChargeRate * frameTime, heldBattery); + _battery.SetCharge(batteryUid.Value, heldBattery.CurrentCharge + component.ChargeRate * frameTime, heldBattery); // Just so the sprite won't be set to 99.99999% visibility if (heldBattery.MaxCharge - heldBattery.CurrentCharge < 0.01) { - _battery.TrySetCharge(batteryUid.Value, heldBattery.MaxCharge, heldBattery); + _battery.SetCharge(batteryUid.Value, heldBattery.MaxCharge, heldBattery); } UpdateStatus(uid, component); @@ -315,6 +236,3 @@ private bool SearchForBattery(EntityUid uid, [NotNullWhen(true)] out EntityUid? return true; } } - -[ByRefEvent] -public record struct ChargerUpdateStatusEvent(); \ No newline at end of file diff --git a/Content.Server/Power/EntitySystems/PowerMonitoringConsoleSystem.cs b/Content.Server/Power/EntitySystems/PowerMonitoringConsoleSystem.cs index 0e20f007d7..42c84b7f43 100644 --- a/Content.Server/Power/EntitySystems/PowerMonitoringConsoleSystem.cs +++ b/Content.Server/Power/EntitySystems/PowerMonitoringConsoleSystem.cs @@ -1,7 +1,5 @@ -using Content.Server.GameTicking.Rules.Components; using Content.Server.NodeContainer; using Content.Server.NodeContainer.EntitySystems; -using Content.Server.NodeContainer.NodeGroups; using Content.Server.NodeContainer.Nodes; using Content.Server.Power.Components; using Content.Server.Power.Nodes; @@ -13,10 +11,8 @@ using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Shared.Map.Components; -using Robust.Shared.Player; using Robust.Shared.Utility; using System.Linq; -using System.Diagnostics.CodeAnalysis; using Content.Server.GameTicking.Components; namespace Content.Server.Power.EntitySystems; @@ -163,7 +159,7 @@ public void OnCableAnchorStateChanged(EntityUid uid, CableComponent component, C allChunks = new(); var tile = _sharedMapSystem.LocalToTile(xform.GridUid.Value, grid, xform.Coordinates); - var chunkOrigin = SharedMapSystem.GetChunkIndices(tile, SharedNavMapSystem.ChunkSize); + var chunkOrigin = SharedMapSystem.GetChunkIndices(tile, ChunkSize); if (!allChunks.TryGetValue(chunkOrigin, out var chunk)) { @@ -171,8 +167,8 @@ public void OnCableAnchorStateChanged(EntityUid uid, CableComponent component, C allChunks[chunkOrigin] = chunk; } - var relative = SharedMapSystem.GetChunkRelative(tile, SharedNavMapSystem.ChunkSize); - var flag = SharedNavMapSystem.GetFlag(relative); + var relative = SharedMapSystem.GetChunkRelative(tile, ChunkSize); + var flag = GetFlag(relative); if (args.Anchored) chunk.PowerCableData[(int) component.CableType] |= flag; @@ -286,20 +282,17 @@ public override void Update(float frameTime) var query = AllEntityQuery(); while (query.MoveNext(out var ent, out var console)) { - if (!_userInterfaceSystem.TryGetUi(ent, PowerMonitoringConsoleUiKey.Key, out var bui)) + if (!_userInterfaceSystem.IsUiOpen(ent, PowerMonitoringConsoleUiKey.Key)) continue; - foreach (var session in bui.SubscribedSessions) - UpdateUIState(ent, console, session); + UpdateUIState(ent, console); + } } } - public void UpdateUIState(EntityUid uid, PowerMonitoringConsoleComponent component, ICommonSession session) + private void UpdateUIState(EntityUid uid, PowerMonitoringConsoleComponent component) { - if (!_userInterfaceSystem.TryGetUi(uid, PowerMonitoringConsoleUiKey.Key, out var bui)) - return; - var consoleXform = Transform(uid); if (consoleXform?.GridUid == null) @@ -422,15 +415,15 @@ public void UpdateUIState(EntityUid uid, PowerMonitoringConsoleComponent compone } // Set the UI state - _userInterfaceSystem.SetUiState(bui, + _userInterfaceSystem.SetUiState(uid, + PowerMonitoringConsoleUiKey.Key, new PowerMonitoringConsoleBoundInterfaceState (totalSources, totalBatteryUsage, totalLoads, allEntries.ToArray(), sourcesForFocus.ToArray(), - loadsForFocus.ToArray()), - session); + loadsForFocus.ToArray())); } private double GetPrimaryPowerValues(EntityUid uid, PowerMonitoringDeviceComponent device, out double powerSupplied, out double powerUsage, out double batteryUsage) @@ -887,7 +880,7 @@ private Dictionary RefreshPowerCableGrid(EntityUid gr continue; var tile = _sharedMapSystem.GetTileRef(gridUid, grid, entXform.Coordinates); - var chunkOrigin = SharedMapSystem.GetChunkIndices(tile.GridIndices, SharedNavMapSystem.ChunkSize); + var chunkOrigin = SharedMapSystem.GetChunkIndices(tile.GridIndices, ChunkSize); if (!allChunks.TryGetValue(chunkOrigin, out var chunk)) { @@ -895,8 +888,8 @@ private Dictionary RefreshPowerCableGrid(EntityUid gr allChunks[chunkOrigin] = chunk; } - var relative = SharedMapSystem.GetChunkRelative(tile.GridIndices, SharedNavMapSystem.ChunkSize); - var flag = SharedNavMapSystem.GetFlag(relative); + var relative = SharedMapSystem.GetChunkRelative(tile.GridIndices, ChunkSize); + var flag = GetFlag(relative); chunk.PowerCableData[(int) cable.CableType] |= flag; } @@ -913,7 +906,7 @@ private void UpdateFocusNetwork(EntityUid uid, PowerMonitoringCableNetworksCompo var xform = Transform(ent); var tile = _sharedMapSystem.GetTileRef(gridUid, grid, xform.Coordinates); var gridIndices = tile.GridIndices; - var chunkOrigin = SharedMapSystem.GetChunkIndices(gridIndices, SharedNavMapSystem.ChunkSize); + var chunkOrigin = SharedMapSystem.GetChunkIndices(gridIndices, ChunkSize); if (!component.FocusChunks.TryGetValue(chunkOrigin, out var chunk)) { @@ -921,8 +914,8 @@ private void UpdateFocusNetwork(EntityUid uid, PowerMonitoringCableNetworksCompo component.FocusChunks[chunkOrigin] = chunk; } - var relative = SharedMapSystem.GetChunkRelative(gridIndices, SharedNavMapSystem.ChunkSize); - var flag = SharedNavMapSystem.GetFlag(relative); + var relative = SharedMapSystem.GetChunkRelative(gridIndices, ChunkSize); + var flag = GetFlag(relative); if (TryComp(ent, out var cable)) chunk.PowerCableData[(int) cable.CableType] |= flag; diff --git a/Content.Server/Power/EntitySystems/UpgradeBatterySystem.cs b/Content.Server/Power/EntitySystems/UpgradeBatterySystem.cs new file mode 100644 index 0000000000..734cf9d89c --- /dev/null +++ b/Content.Server/Power/EntitySystems/UpgradeBatterySystem.cs @@ -0,0 +1,39 @@ +using Content.Server.Construction; +using Content.Server.Power.Components; +using JetBrains.Annotations; + +namespace Content.Server.Power.EntitySystems +{ + [UsedImplicitly] + public sealed class UpgradeBatterySystem : EntitySystem + { + [Dependency] private readonly BatterySystem _batterySystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnRefreshParts); + SubscribeLocalEvent(OnUpgradeExamine); + } + + public void OnRefreshParts(EntityUid uid, UpgradeBatteryComponent component, RefreshPartsEvent args) + { + var powerCellRating = args.PartRatings[component.MachinePartPowerCapacity]; + + if (TryComp(uid, out var batteryComp)) + { + _batterySystem.SetMaxCharge(uid, MathF.Pow(component.MaxChargeMultiplier, powerCellRating - 1) * component.BaseMaxCharge, batteryComp); + } + } + + private void OnUpgradeExamine(EntityUid uid, UpgradeBatteryComponent component, UpgradeExamineEvent args) + { + // UpgradeBatteryComponent.MaxChargeMultiplier is not the actual multiplier, so we have to do this. + if (TryComp(uid, out var batteryComp)) + { + args.AddPercentageUpgrade("upgrade-max-charge", batteryComp.MaxCharge / component.BaseMaxCharge); + } + } + } +} diff --git a/Content.Server/Power/EntitySystems/UpgradePowerSystem.cs b/Content.Server/Power/EntitySystems/UpgradePowerSystem.cs new file mode 100644 index 0000000000..d2f6ee4f56 --- /dev/null +++ b/Content.Server/Power/EntitySystems/UpgradePowerSystem.cs @@ -0,0 +1,151 @@ +using Content.Server.Construction; +using Content.Server.Construction.Components; +using Content.Server.Power.Components; + +namespace Content.Server.Power.EntitySystems; + +/// +/// This handles using upgraded machine parts +/// to modify the power supply/generation of a machine. +/// +public sealed class UpgradePowerSystem : EntitySystem +{ + /// + public override void Initialize() + { + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnRefreshParts); + SubscribeLocalEvent(OnUpgradeExamine); + + SubscribeLocalEvent(OnSupplierMapInit); + SubscribeLocalEvent(OnSupplierRefreshParts); + SubscribeLocalEvent(OnSupplierUpgradeExamine); + + SubscribeLocalEvent(OnSupplyRampingMapInit); + SubscribeLocalEvent(OnSupplyRampingRefreshParts); + SubscribeLocalEvent(OnSupplyRampingUpgradeExamine); + } + + private void OnMapInit(EntityUid uid, UpgradePowerDrawComponent component, MapInitEvent args) + { + if (TryComp(uid, out var powa)) + component.BaseLoad = powa.DrawRate; + else if (TryComp(uid, out var powa2)) + component.BaseLoad = powa2.Load; + } + + private void OnRefreshParts(EntityUid uid, UpgradePowerDrawComponent component, RefreshPartsEvent args) + { + var load = component.BaseLoad; + var rating = args.PartRatings[component.MachinePartPowerDraw]; + switch (component.Scaling) + + { + case MachineUpgradeScalingType.Linear: + load += component.PowerDrawMultiplier * (rating - 1); + break; + case MachineUpgradeScalingType.Exponential: + load *= MathF.Pow(component.PowerDrawMultiplier, rating - 1); + break; + default: + Log.Error($"invalid power scaling type for {ToPrettyString(uid)}."); + load = 0; + break; + } + + if (TryComp(uid, out var powa)) + powa.Load = load; + if (TryComp(uid, out var powa2)) + powa2.DrawRate = load; + } + + private void OnUpgradeExamine(EntityUid uid, UpgradePowerDrawComponent component, UpgradeExamineEvent args) + { + // UpgradePowerDrawComponent.PowerDrawMultiplier is not the actual multiplier, so we have to do this. + var powerDrawMultiplier = CompOrNull(uid)?.Load / component.BaseLoad + ?? CompOrNull(uid)?.DrawRate / component.BaseLoad; + + if (powerDrawMultiplier is not null) + args.AddPercentageUpgrade("upgrade-power-draw", powerDrawMultiplier.Value); + } + + private void OnSupplierMapInit(EntityUid uid, UpgradePowerSupplierComponent component, MapInitEvent args) + { + if (!TryComp(uid, out var supplier)) + return; + + component.BaseSupplyRate = supplier.MaxSupply; + } + + private void OnSupplierRefreshParts(EntityUid uid, UpgradePowerSupplierComponent component, RefreshPartsEvent args) + { + var supply = component.BaseSupplyRate; + var rating = args.PartRatings[component.MachinePartPowerSupply]; + switch (component.Scaling) + + { + case MachineUpgradeScalingType.Linear: + supply += component.PowerSupplyMultiplier * component.BaseSupplyRate * (rating - 1); + break; + case MachineUpgradeScalingType.Exponential: + supply *= MathF.Pow(component.PowerSupplyMultiplier, rating - 1); + break; + default: + Log.Error($"invalid power scaling type for {ToPrettyString(uid)}."); + supply = component.BaseSupplyRate; + break; + } + + component.ActualScalar = supply / component.BaseSupplyRate; + + if (!TryComp(uid, out var powa)) + return; + + powa.MaxSupply = supply; + } + + private void OnSupplierUpgradeExamine(EntityUid uid, UpgradePowerSupplierComponent component, UpgradeExamineEvent args) + { + args.AddPercentageUpgrade("upgrade-power-supply", component.ActualScalar); + } + + private void OnSupplyRampingMapInit(EntityUid uid, UpgradePowerSupplyRampingComponent component, MapInitEvent args) + { + if (!TryComp(uid, out var battery)) + return; + + component.BaseRampRate = battery.SupplyRampRate; + } + + private void OnSupplyRampingRefreshParts(EntityUid uid, UpgradePowerSupplyRampingComponent component, RefreshPartsEvent args) + { + var rampRate = component.BaseRampRate; + var rating = args.PartRatings[component.MachinePartRampRate]; + switch (component.Scaling) + + { + case MachineUpgradeScalingType.Linear: + rampRate += component.SupplyRampingMultiplier * component.BaseRampRate * (rating - 1); + break; + case MachineUpgradeScalingType.Exponential: + rampRate *= MathF.Pow(component.SupplyRampingMultiplier, rating - 1); + break; + default: + Log.Error($"invalid power supply ramping type for {ToPrettyString(uid)}."); + rampRate = component.BaseRampRate; + break; + } + + component.ActualScalar = rampRate / component.BaseRampRate; + + if (!TryComp(uid, out var battery)) + return; + + battery.SupplyRampRate = rampRate; + } + + private void OnSupplyRampingUpgradeExamine(EntityUid uid, UpgradePowerSupplyRampingComponent component, UpgradeExamineEvent args) + { + args.AddPercentageUpgrade("upgrade-power-supply-ramping", component.ActualScalar); + } +} diff --git a/Content.Server/Power/Generation/Teg/TegSystem.cs b/Content.Server/Power/Generation/Teg/TegSystem.cs index 3510a3da45..540bd6c483 100644 --- a/Content.Server/Power/Generation/Teg/TegSystem.cs +++ b/Content.Server/Power/Generation/Teg/TegSystem.cs @@ -7,6 +7,7 @@ using Content.Server.NodeContainer; using Content.Server.NodeContainer.Nodes; using Content.Server.Power.Components; +using Content.Shared.Atmos; using Content.Shared.DeviceNetwork; using Content.Shared.Examine; using Content.Shared.Power.Generation.Teg; diff --git a/Content.Server/Power/Generator/GeneratorExhaustGasSystem.cs b/Content.Server/Power/Generator/GeneratorExhaustGasSystem.cs index cd85e67221..359c31d75b 100644 --- a/Content.Server/Power/Generator/GeneratorExhaustGasSystem.cs +++ b/Content.Server/Power/Generator/GeneratorExhaustGasSystem.cs @@ -1,5 +1,6 @@ using Content.Server.Atmos; using Content.Server.Atmos.EntitySystems; +using Content.Shared.Atmos; using Content.Shared.Power.Generator; namespace Content.Server.Power.Generator; diff --git a/Content.Server/Power/Generator/GeneratorSignalControlComponent.cs b/Content.Server/Power/Generator/GeneratorSignalControlComponent.cs index f16a09eae3..19ae0bd687 100644 --- a/Content.Server/Power/Generator/GeneratorSignalControlComponent.cs +++ b/Content.Server/Power/Generator/GeneratorSignalControlComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.DeviceLinking; +using Content.Shared.Power.Generator; using Robust.Shared.Prototypes; namespace Content.Server.Power.Generator; diff --git a/Content.Server/Power/Generator/GeneratorSystem.cs b/Content.Server/Power/Generator/GeneratorSystem.cs index a75d1e4113..721a959820 100644 --- a/Content.Server/Power/Generator/GeneratorSystem.cs +++ b/Content.Server/Power/Generator/GeneratorSystem.cs @@ -26,8 +26,11 @@ public sealed class GeneratorSystem : SharedGeneratorSystem [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly PuddleSystem _puddle = default!; + private EntityQuery _upgradeQuery; + public override void Initialize() { + _upgradeQuery = GetEntityQuery(); UpdatesBefore.Add(typeof(PowerNetSystem)); @@ -225,7 +228,9 @@ public override void Update(float frameTime) supplier.Enabled = true; - supplier.MaxSupply = gen.TargetPower; + var upgradeMultiplier = _upgradeQuery.CompOrNull(uid)?.ActualScalar ?? 1f; + + supplier.MaxSupply = gen.TargetPower * upgradeMultiplier; var eff = 1 / CalcFuelEfficiency(gen.TargetPower, gen.OptimalPower, gen); var consumption = gen.OptimalBurnRate * frameTime * eff; diff --git a/Content.Server/Power/Generator/PortableGeneratorSystem.cs b/Content.Server/Power/Generator/PortableGeneratorSystem.cs index e7dfa35178..e2996a54d7 100644 --- a/Content.Server/Power/Generator/PortableGeneratorSystem.cs +++ b/Content.Server/Power/Generator/PortableGeneratorSystem.cs @@ -48,30 +48,21 @@ public override void Initialize() private void GeneratorSwitchOutputMessage(EntityUid uid, PortableGeneratorComponent component, PortableGeneratorSwitchOutputMessage args) { - if (args.Session.AttachedEntity == null) - return; - var fuelGenerator = Comp(uid); if (fuelGenerator.On) return; - _switchable.Cycle(uid, args.Session.AttachedEntity.Value); + _switchable.Cycle(uid, args.Actor); } private void GeneratorStopMessage(EntityUid uid, PortableGeneratorComponent component, PortableGeneratorStopMessage args) { - if (args.Session.AttachedEntity == null) - return; - - StopGenerator(uid, component, args.Session.AttachedEntity.Value); + StopGenerator(uid, component, args.Actor); } private void GeneratorStartMessage(EntityUid uid, PortableGeneratorComponent component, PortableGeneratorStartMessage args) { - if (args.Session.AttachedEntity == null) - return; - - StartGenerator(uid, component, args.Session.AttachedEntity.Value); + StartGenerator(uid, component, args.Actor); } private void StartGenerator(EntityUid uid, PortableGeneratorComponent component, EntityUid user) @@ -234,7 +225,7 @@ private void UpdateUI( if (powerSupplier.Net is { IsConnectedNetwork: true } net) networkStats = (net.NetworkNode.LastCombinedLoad, net.NetworkNode.LastCombinedSupply); - _uiSystem.TrySetUiState( + _uiSystem.SetUiState( uid, GeneratorComponentUiKey.Key, new PortableGeneratorComponentBuiState(fuelComp, fuel, clogged, networkStats)); diff --git a/Content.Server/Power/Systems/BatteryDrinkerSystem.cs b/Content.Server/Power/Systems/BatteryDrinkerSystem.cs index 9a06d4181c..e42783c4d8 100644 --- a/Content.Server/Power/Systems/BatteryDrinkerSystem.cs +++ b/Content.Server/Power/Systems/BatteryDrinkerSystem.cs @@ -1,4 +1,3 @@ -using System.Diagnostics.CodeAnalysis; using System.Linq; using Content.Server.Power.Components; using Content.Shared.Containers.ItemSlots; @@ -12,8 +11,6 @@ using Content.Server.Popups; using Content.Server.PowerCell; using Content.Shared.Popups; -using Content.Shared.Silicon.Components; -using FastAccessors; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; @@ -21,13 +18,11 @@ namespace Content.Server.Power; public sealed class BatteryDrinkerSystem : EntitySystem { - [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!; - [Dependency] private readonly PowerCellSystem _powerCell = default!; [Dependency] private readonly SharedContainerSystem _container = default!; public override void Initialize() @@ -41,12 +36,10 @@ public override void Initialize() private void AddAltVerb(EntityUid uid, BatteryComponent batteryComponent, GetVerbsEvent args) { - if (!args.CanAccess || !args.CanInteract) - return; - - if (!TryComp(args.User, out var drinkerComp) || - !TestDrinkableBattery(uid, drinkerComp) || - !_silicon.TryGetSiliconBattery(args.User, out var drinkerBattery)) + if (!args.CanAccess || !args.CanInteract + || !TryComp(args.User, out var drinkerComp) + || !TestDrinkableBattery(uid, drinkerComp) + || !_silicon.TryGetSiliconBattery(args.User, out var _)) return; AlternativeVerb verb = new() @@ -80,6 +73,7 @@ private void DrinkBattery(EntityUid target, EntityUid user, BatteryDrinkerCompon { BreakOnDamage = true, BreakOnTargetMove = true, + BreakOnUserMove = true, Broadcast = false, DistanceThreshold = 1.35f, RequireCanInteract = true, @@ -91,39 +85,28 @@ private void DrinkBattery(EntityUid target, EntityUid user, BatteryDrinkerCompon private void OnDoAfter(EntityUid uid, BatteryDrinkerComponent drinkerComp, DoAfterEvent args) { - if (args.Cancelled || args.Target == null) + if (args.Cancelled || args.Target == null + || !TryComp(args.Target.Value, out var sourceBattery) + || !_silicon.TryGetSiliconBattery(uid, out var drinkerBatteryComponent) + || !TryComp(uid, out PowerCellSlotComponent? batterySlot) + || !TryComp(args.Target.Value, out var sourceComp) + || !_container.TryGetContainer(uid, batterySlot.CellSlotId, out var container) + || container.ContainedEntities is null) return; var source = args.Target.Value; - var drinker = uid; - var sourceBattery = Comp(source); - - _silicon.TryGetSiliconBattery(drinker, out var drinkerBatteryComponent); - - if (!TryComp(uid, out PowerCellSlotComponent? batterySlot)) - return; - - var container = _container.GetContainer(uid, batterySlot.CellSlotId); var drinkerBattery = container.ContainedEntities.First(); - - TryComp(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, drinkerBatteryComponent!.MaxCharge - drinkerBatteryComponent.CurrentCharge); - if (sourceComp != null && sourceComp.MaxAmount > 0) + if (sourceComp.MaxAmount > 0) amountToDrink = MathF.Min(amountToDrink, (float) sourceComp.MaxAmount); if (amountToDrink <= 0) { - _popup.PopupEntity(Loc.GetString("battery-drinker-empty", ("target", source)), drinker, drinker); + _popup.PopupEntity(Loc.GetString("battery-drinker-empty", ("target", source)), uid, uid); return; } @@ -135,10 +118,11 @@ private void OnDoAfter(EntityUid uid, BatteryDrinkerComponent drinkerComp, DoAft _battery.SetCharge(source, 0); } - if (sourceComp != null && sourceComp.DrinkSound != null){ - _popup.PopupEntity(Loc.GetString("ipc-recharge-tip"), drinker, drinker, PopupType.SmallCaution); - _audio.PlayPvs(sourceComp.DrinkSound, source); - Spawn("EffectSparks", Transform(source).Coordinates); - } + if (sourceComp.DrinkSound is null) + return; + + _popup.PopupEntity(Loc.GetString("ipc-recharge-tip"), uid, uid, PopupType.SmallCaution); + _audio.PlayPvs(sourceComp.DrinkSound, source); + Spawn("EffectSparks", Transform(source).Coordinates); } } diff --git a/Content.Server/Power/Systems/BatteryElectrocuteChargeSystem.cs b/Content.Server/Power/Systems/BatteryElectrocuteChargeSystem.cs index 9993c151b1..707d7c679e 100644 --- a/Content.Server/Power/Systems/BatteryElectrocuteChargeSystem.cs +++ b/Content.Server/Power/Systems/BatteryElectrocuteChargeSystem.cs @@ -4,7 +4,6 @@ using Content.Server.Power.EntitySystems; using Content.Shared.Electrocution; using Robust.Shared.Random; -using Robust.Shared.Timing; namespace Content.Server.Power.Systems; @@ -26,10 +25,10 @@ private void OnElectrocuted(EntityUid uid, BatteryComponent battery, Electrocute 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); + var charge = Math.Min(args.ShockDamage.Value * args.SiemensCoefficient + / ElectrocutionSystem.ElectrifiedDamagePerWatt * 2, + battery.MaxCharge * 0.25f) + * _random.NextFloat(0.75f, 1.25f); _battery.SetCharge(uid, battery.CurrentCharge + charge); diff --git a/Content.Server/Power/Systems/SiliconEmitSoundOnDrainedSystem.cs b/Content.Server/Power/Systems/SiliconEmitSoundOnDrainedSystem.cs index 28a46cc7f7..f95a940aae 100644 --- a/Content.Server/Power/Systems/SiliconEmitSoundOnDrainedSystem.cs +++ b/Content.Server/Power/Systems/SiliconEmitSoundOnDrainedSystem.cs @@ -2,7 +2,6 @@ using Content.Shared.Sound.Components; using Content.Server.Sound; using Content.Shared.Mobs; -using Content.Shared.Silicon.Systems; namespace Content.Server.Silicon; @@ -35,7 +34,9 @@ private void OnAlive(EntityUid uid, SiliconEmitSoundOnDrainedComponent component public void OnStateChange(EntityUid uid, SiliconEmitSoundOnDrainedComponent component, MobStateChangedEvent args) { - if (args.NewMobState == MobState.Dead) - RemComp(uid); + if (args.NewMobState != MobState.Dead) + return; + + RemComp(uid); } } diff --git a/Content.Server/PowerCell/PowerCellSystem.cs b/Content.Server/PowerCell/PowerCellSystem.cs index d4c1faa4c9..68f00b2903 100644 --- a/Content.Server/PowerCell/PowerCellSystem.cs +++ b/Content.Server/PowerCell/PowerCellSystem.cs @@ -11,6 +11,7 @@ using Content.Server.UserInterface; using Content.Shared.Containers.ItemSlots; using Content.Shared.Popups; +using ActivatableUISystem = Content.Shared.UserInterface.ActivatableUISystem; namespace Content.Server.PowerCell; @@ -231,9 +232,9 @@ private void OnCellSlotExamined(EntityUid uid, PowerCellSlotComponent component, OnBatteryExamined(uid, battery, args); } - private void OnBatteryExamined(EntityUid uid, BatteryComponent? component, ExaminedEvent args) + public void OnBatteryExamined(EntityUid uid, BatteryComponent? component, ExaminedEvent args) // WD EDIT { - if (component != null) + if (Resolve(uid, ref component, false)) // WD EDIT { var charge = component.CurrentCharge / component.MaxCharge * 100; args.PushMarkup(Loc.GetString("power-cell-component-examine-details", ("currentCharge", $"{charge:F0}"))); diff --git a/Content.Server/Prayer/PrayerSystem.cs b/Content.Server/Prayer/PrayerSystem.cs index f5051741c0..c8ef368dad 100644 --- a/Content.Server/Prayer/PrayerSystem.cs +++ b/Content.Server/Prayer/PrayerSystem.cs @@ -39,7 +39,7 @@ private void AddPrayVerb(EntityUid uid, PrayableComponent comp, GetVerbsEvent(curPrefs.Characters) { @@ -192,23 +194,32 @@ public async Task LoadData(ICommonSession session, CancellationToken cancel) async Task LoadPrefs() { - var prefs = await GetOrCreatePreferencesAsync(session.UserId); + var prefs = await GetOrCreatePreferencesAsync(session.UserId, cancel); prefsData.Prefs = prefs; - prefsData.PrefsLoaded = true; - - var msg = new MsgPreferencesAndSettings - { - Preferences = prefs, - Settings = new GameSettings - { - MaxCharacterSlots = MaxCharacterSlots - } - }; - _netManager.ServerSendMessage(msg, session.Channel); } } } + public void FinishLoad(ICommonSession session) + { + // This is a separate step from the actual database load. + // Sanitizing preferences requires play time info due to loadouts. + // And play time info is loaded concurrently from the DB with preferences. + var prefsData = _cachedPlayerPrefs[session.UserId]; + DebugTools.Assert(prefsData.Prefs != null); + prefsData.Prefs = SanitizePreferences(session, prefsData.Prefs, _dependencies); + + prefsData.PrefsLoaded = true; + + var msg = new MsgPreferencesAndSettings(); + msg.Preferences = prefsData.Prefs; + msg.Settings = new GameSettings + { + MaxCharacterSlots = MaxCharacterSlots + }; + _netManager.ServerSendMessage(msg, session.Channel); + } + public void OnClientDisconnected(ICommonSession session) { _cachedPlayerPrefs.Remove(session.UserId); @@ -267,18 +278,15 @@ public PlayerPreferences GetPreferences(NetUserId userId) return null; } - private async Task GetOrCreatePreferencesAsync(NetUserId userId) + private async Task GetOrCreatePreferencesAsync(NetUserId userId, CancellationToken cancel) { - var prefs = await _db.GetPlayerPreferencesAsync(userId); + var prefs = await _db.GetPlayerPreferencesAsync(userId, cancel); if (prefs is null) { - return await _db.InitPrefsAsync(userId, HumanoidCharacterProfile.Random()); + return await _db.InitPrefsAsync(userId, HumanoidCharacterProfile.Random(), cancel); } - var session = _playerManager.GetSessionById(userId); - var collection = IoCManager.Instance!; - - return SanitizePreferences(session, prefs, collection); + return prefs; } private PlayerPreferences SanitizePreferences(ICommonSession session, PlayerPreferences prefs, diff --git a/Content.Server/Projectiles/ProjectileSystem.cs b/Content.Server/Projectiles/ProjectileSystem.cs index 0061b16e47..5c49ce68b5 100644 --- a/Content.Server/Projectiles/ProjectileSystem.cs +++ b/Content.Server/Projectiles/ProjectileSystem.cs @@ -1,10 +1,18 @@ using Content.Server.Administration.Logs; using Content.Server.Effects; +using Content.Server.Hands.Systems; using Content.Server.Weapons.Ranged.Systems; +using Content.Shared._White.Penetrated; +using Content.Shared._White.Projectile; using Content.Shared.Camera; using Content.Shared.Damage; using Content.Shared.Database; +using Content.Shared.DoAfter; using Content.Shared.Projectiles; +using Content.Shared.Throwing; +using Robust.Server.GameObjects; +using Robust.Shared.Physics; +using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Events; using Robust.Shared.Player; @@ -17,11 +25,22 @@ public sealed class ProjectileSystem : SharedProjectileSystem [Dependency] private readonly DamageableSystem _damageableSystem = default!; [Dependency] private readonly GunSystem _guns = default!; [Dependency] private readonly SharedCameraRecoilSystem _sharedCameraRecoil = default!; + // WD EDIT START + [Dependency] private readonly DamageableSystem _damageable = default!; + [Dependency] private readonly HandsSystem _hands = default!; + [Dependency] private readonly PhysicsSystem _physics = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly PenetratedSystem _penetrated = default!; + // WD EDIT END public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnStartCollide); + // WD EDIT START + SubscribeLocalEvent(OnEmbed); + SubscribeLocalEvent(OnEmbedRemove); + // WD EDIT END } private void OnStartCollide(EntityUid uid, ProjectileComponent component, ref StartCollideEvent args) @@ -77,4 +96,64 @@ private void OnStartCollide(EntityUid uid, ProjectileComponent component, ref St RaiseNetworkEvent(new ImpactEffectEvent(component.ImpactEffect, GetNetCoordinates(xform.Coordinates)), Filter.Pvs(xform.Coordinates, entityMan: EntityManager)); } } + + // WD EDIT START + private void OnEmbed(EntityUid uid, EmbeddableProjectileComponent component, ref EmbedEvent args) + { + var dmg = _damageable.TryChangeDamage(args.Embedded, component.Damage, origin: args.Shooter); + if (dmg is { Empty: false }) + _color.RaiseEffect(Color.Red, new List() { args.Embedded }, Filter.Pvs(args.Embedded, entityManager: EntityManager)); + } + + private void OnEmbedRemove(EntityUid uid, EmbeddableProjectileComponent component, RemoveEmbeddedProjectileEvent args) + { + // Whacky prediction issues. + if (args.Cancelled) + return; + + if (component.DeleteOnRemove) + { + QueueDel(uid); + FreePenetrated(uid); + return; + } + + if (!TryComp(uid, out var physics)) + { + FreePenetrated(uid); + return; + } + + var xform = Transform(uid); + _physics.SetBodyType(uid, BodyType.Dynamic, body: physics, xform: xform); + _transform.AttachToGridOrMap(uid, xform); + + // Reset whether the projectile has damaged anything if it successfully was removed + if (TryComp(uid, out var projectile)) + { + projectile.Shooter = null; + projectile.Weapon = null; + projectile.DamagedEntity = false; + } + + FreePenetrated(uid); + + // Land it just coz uhhh yeah + var landEv = new LandEvent(args.User, true); + RaiseLocalEvent(uid, ref landEv); + _physics.WakeBody(uid, body: physics); + + // try place it in the user's hand + _hands.TryPickupAnyHand(args.User, uid); + } + + private void FreePenetrated(EntityUid uid, PenetratedProjectileComponent? penetratedProjectile = null) + { + if (!Resolve(uid, ref penetratedProjectile) + || !penetratedProjectile.PenetratedUid.HasValue) + return; + + _penetrated.FreePenetrated(penetratedProjectile.PenetratedUid.Value); + } + // WD EDIT END } diff --git a/Content.Server/Psionics/PsionicsSystem.Events.cs b/Content.Server/Psionics/PsionicsSystem.Events.cs index 82a0faec64..f82621115d 100644 --- a/Content.Server/Psionics/PsionicsSystem.Events.cs +++ b/Content.Server/Psionics/PsionicsSystem.Events.cs @@ -1,19 +1,8 @@ -namespace Content.Server.Psionics -{ - /// - /// Raised on an entity about to roll for a Psionic Power, after their baseline chances of success are calculated. - /// - [ByRefEvent] - public struct OnRollPsionicsEvent - { - public readonly EntityUid Roller; - public float BaselineChance; - public OnRollPsionicsEvent(EntityUid roller, float baselineChance) - { - Roller = roller; - BaselineChance = baselineChance; - } - } -} +namespace Content.Server.Psionics; +/// +/// Raised on an entity about to roll for a Psionic Power, after their baseline chances of success are calculated. +/// +[ByRefEvent] +public record struct OnRollPsionicsEvent(EntityUid Roller, float BaselineChance); diff --git a/Content.Server/Psionics/PsionicsSystem.cs b/Content.Server/Psionics/PsionicsSystem.cs index 23cf6aeb80..90f69cf796 100644 --- a/Content.Server/Psionics/PsionicsSystem.cs +++ b/Content.Server/Psionics/PsionicsSystem.cs @@ -11,139 +11,243 @@ using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Random; +using Content.Shared.Popups; +using Content.Shared.Chat; +using Robust.Server.Player; +using Content.Server.Chat.Managers; +using Robust.Shared.Prototypes; +using Content.Shared.Psionics; -namespace Content.Server.Psionics +namespace Content.Server.Psionics; + +public sealed class PsionicsSystem : EntitySystem { - public sealed class PsionicsSystem : EntitySystem + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly PsionicAbilitiesSystem _psionicAbilitiesSystem = default!; + [Dependency] private readonly StatusEffectsSystem _statusEffects = default!; + [Dependency] private readonly ElectrocutionSystem _electrocutionSystem = default!; + [Dependency] private readonly MindSwapPowerSystem _mindSwapPowerSystem = default!; + [Dependency] private readonly GlimmerSystem _glimmerSystem = default!; + [Dependency] private readonly NpcFactionSystem _npcFactonSystem = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedPopupSystem _popups = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] private readonly IChatManager _chatManager = default!; + [Dependency] private readonly IPrototypeManager _protoMan = default!; + + private const string BaselineAmplification = "Baseline Amplification"; + private const string BaselineDampening = "Baseline Dampening"; + + // Yes these are a mirror of what's normally default datafields on the PsionicPowerPrototype. + // We haven't generated a prototype yet, and I'm not going to duplicate them on the PsionicComponent. + private const string PsionicRollFailedMessage = "psionic-roll-failed"; + private const string PsionicRollFailedColor = "#8A00C2"; + private const int PsionicRollFailedFontSize = 12; + private const ChatChannel PsionicRollFailedChatChannel = ChatChannel.Emotes; + + /// + /// Unfortunately, since spawning as a normal role and anything else is so different, + /// this is the only way to unify them, for now at least. + /// + Queue<(PsionicComponent component, EntityUid uid)> _rollers = new(); + public override void Update(float frameTime) { - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly PsionicAbilitiesSystem _psionicAbilitiesSystem = default!; - [Dependency] private readonly StatusEffectsSystem _statusEffects = default!; - [Dependency] private readonly ElectrocutionSystem _electrocutionSystem = default!; - [Dependency] private readonly MindSwapPowerSystem _mindSwapPowerSystem = default!; - [Dependency] private readonly GlimmerSystem _glimmerSystem = default!; - [Dependency] private readonly NpcFactionSystem _npcFactonSystem = default!; - [Dependency] private readonly IConfigurationManager _cfg = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - - private const string BaselineAmplification = "Baseline Amplification"; - private const string BaselineDampening = "Baseline Dampening"; - - /// - /// Unfortunately, since spawning as a normal role and anything else is so different, - /// this is the only way to unify them, for now at least. - /// - Queue<(PsionicComponent component, EntityUid uid)> _rollers = new(); - public override void Update(float frameTime) - { - base.Update(frameTime); - foreach (var roller in _rollers) - RollPsionics(roller.uid, roller.component, false); - _rollers.Clear(); - } - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnStartup); - SubscribeLocalEvent(OnMeleeHit); - SubscribeLocalEvent(OnStamHit); + base.Update(frameTime); + foreach (var roller in _rollers) + RollPsionics(roller.uid, roller.component, true); + _rollers.Clear(); + } + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent(OnMeleeHit); + SubscribeLocalEvent(OnStamHit); - SubscribeLocalEvent(OnInit); - SubscribeLocalEvent(OnRemove); - } + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnRemove); + } - private void OnStartup(EntityUid uid, PsionicComponent component, MapInitEvent args) - { - _rollers.Enqueue((component, uid)); - } + private void OnStartup(EntityUid uid, PsionicComponent component, MapInitEvent args) + { + if (!component.Removable + || !component.CanReroll) + return; - private void OnMeleeHit(EntityUid uid, AntiPsionicWeaponComponent component, MeleeHitEvent args) - { - foreach (var entity in args.HitEntities) - { - if (HasComp(entity)) - { - _audio.PlayPvs("/Audio/Effects/lightburn.ogg", entity); - args.ModifiersList.Add(component.Modifiers); - if (_random.Prob(component.DisableChance)) - _statusEffects.TryAddStatusEffect(entity, component.DisableStatus, TimeSpan.FromSeconds(component.DisableDuration), true, component.DisableStatus); - } - - if (TryComp(entity, out var swapped)) - { - _mindSwapPowerSystem.Swap(entity, swapped.OriginalEntity, true); - return; - } - - if (component.Punish && !HasComp(entity) && _random.Prob(component.PunishChances)) - _electrocutionSystem.TryDoElectrocution(args.User, null, component.PunishSelfDamage, TimeSpan.FromSeconds(component.PunishStunDuration), false); - } - } + CheckPowerCost(uid, component); + _rollers.Enqueue((component, uid)); + } - private void OnInit(EntityUid uid, PsionicComponent component, ComponentStartup args) - { - component.AmplificationSources.Add(BaselineAmplification, _random.NextFloat(component.BaselineAmplification.Item1, component.BaselineAmplification.Item2)); - component.DampeningSources.Add(BaselineDampening, _random.NextFloat(component.BaselineDampening.Item1, component.BaselineDampening.Item2)); + /// + /// On MapInit, PsionicComponent isn't going to contain any powers. + /// So before we send a Latent Psychic into the roundstart roll queue, we need to calculate their power cost in advance. + /// + private void CheckPowerCost(EntityUid uid, PsionicComponent component) + { + if (!TryComp(uid, out var innate)) + return; - if (!component.Removable - || !TryComp(uid, out var factions) - || _npcFactonSystem.ContainsFaction(uid, "GlimmerMonster", factions)) - return; + var powerCount = 0; + foreach (var powerId in innate.PowersToAdd) + if (_protoMan.TryIndex(powerId, out var power)) + powerCount += power.PowerSlotCost; - _npcFactonSystem.AddFaction(uid, "PsionicInterloper"); - } + component.NextPowerCost = 100 * MathF.Pow(2, powerCount); + } - private void OnRemove(EntityUid uid, PsionicComponent component, ComponentRemove args) + private void OnMeleeHit(EntityUid uid, AntiPsionicWeaponComponent component, MeleeHitEvent args) + { + foreach (var entity in args.HitEntities) + CheckAntiPsionic(entity, component, args); + } + + private void CheckAntiPsionic(EntityUid entity, AntiPsionicWeaponComponent component, MeleeHitEvent args) + { + if (HasComp(entity)) { - if (!HasComp(uid)) + _audio.PlayPvs("/Audio/Effects/lightburn.ogg", entity); + args.ModifiersList.Add(component.Modifiers); + + if (!_random.Prob(component.DisableChance)) return; - _npcFactonSystem.RemoveFaction(uid, "PsionicInterloper"); + _statusEffects.TryAddStatusEffect(entity, component.DisableStatus, TimeSpan.FromSeconds(component.DisableDuration), true, component.DisableStatus); } - private void OnStamHit(EntityUid uid, AntiPsionicWeaponComponent component, TakeStaminaDamageEvent args) - { - if (HasComp(args.Target)) - args.FlatModifier += component.PsychicStaminaDamage; - } + if (TryComp(entity, out var swapped)) + _mindSwapPowerSystem.Swap(entity, swapped.OriginalEntity, true); - public void RollPsionics(EntityUid uid, PsionicComponent component, bool applyGlimmer = true, float rollEventMultiplier = 1f) - { - if (!_cfg.GetCVar(CCVars.PsionicRollsEnabled) - || !component.Removable) - return; + if (!component.Punish + || HasComp(entity) + || !_random.Prob(component.PunishChances)) + return; + + _electrocutionSystem.TryDoElectrocution(args.User, null, component.PunishSelfDamage, TimeSpan.FromSeconds(component.PunishStunDuration), false); + } - // Calculate the initial odds based on the innate potential - var baselineChance = component.Chance - * component.PowerRollMultiplier - + component.PowerRollFlatBonus; + private void OnInit(EntityUid uid, PsionicComponent component, ComponentStartup args) + { + component.AmplificationSources.Add(BaselineAmplification, _random.NextFloat(component.BaselineAmplification.Item1, component.BaselineAmplification.Item2)); + component.DampeningSources.Add(BaselineDampening, _random.NextFloat(component.BaselineDampening.Item1, component.BaselineDampening.Item2)); - // Increase the initial odds based on Glimmer. - // TODO: Change this equation when I do my Glimmer Refactor - baselineChance += applyGlimmer - ? (float) _glimmerSystem.Glimmer / 1000 //Convert from Glimmer to %chance - : 0; + if (!component.Removable + || !TryComp(uid, out var factions) + || _npcFactonSystem.ContainsFaction(uid, "GlimmerMonster", factions)) + return; - // Certain sources of power rolls provide their own multiplier. - baselineChance *= rollEventMultiplier; + _npcFactonSystem.AddFaction(uid, "PsionicInterloper"); + } - // Ask if the Roller has any other effects to contribute, such as Traits. - var ev = new OnRollPsionicsEvent(uid, baselineChance); - RaiseLocalEvent(uid, ref ev); + private void OnRemove(EntityUid uid, PsionicComponent component, ComponentRemove args) + { + if (!HasComp(uid)) + return; - if (_random.Prob(Math.Clamp(ev.BaselineChance, 0, 1))) - _psionicAbilitiesSystem.AddPsionics(uid); - } + _npcFactonSystem.RemoveFaction(uid, "PsionicInterloper"); + } - public void RerollPsionics(EntityUid uid, PsionicComponent? psionic = null, float bonusMuliplier = 1f) - { - if (!Resolve(uid, ref psionic, false) - || !psionic.Removable - || psionic.CanReroll) - return; + private void OnStamHit(EntityUid uid, AntiPsionicWeaponComponent component, TakeStaminaDamageEvent args) + { + if (!HasComp(args.Target)) + return; - RollPsionics(uid, psionic, true, bonusMuliplier); - psionic.CanReroll = true; - } + args.FlatModifier += component.PsychicStaminaDamage; + } + + /// + /// Now we handle Potentia calculations, the more powers you have, the harder it is to obtain psionics, but the content of your roll carries over to the next roll. + /// Your first power costs 100(2^0 is always 1), your second power costs 200, your 3rd power costs 400, and so on. This also considers people with roundstart powers. + /// Such that a Mystagogue(who has 3 powers at roundstart) needs 800 Potentia to gain his 4th power. + /// + /// + /// This exponential cost is mainly done to prevent stations from becoming "Space Hogwarts", + /// which was a common complaint with Psionic Refactor opening up the opportunity for people to have multiple powers. + /// + private bool HandlePotentiaCalculations(EntityUid uid, PsionicComponent component, float psionicChance) + { + component.Potentia += _random.NextFloat(0 + psionicChance, 100 + psionicChance); + + if (component.Potentia < component.NextPowerCost) + return false; + + component.Potentia -= component.NextPowerCost; + _psionicAbilitiesSystem.AddPsionics(uid); + component.NextPowerCost = 100 * MathF.Pow(2, component.PowerSlotsTaken); + return true; + } + + /// + /// Provide the player with feedback about their roll failure, so they don't just think nothing happened. + /// TODO: Add an audio cue to this and other areas of psionic player feedback. + /// + private void HandleRollFeedback(EntityUid uid) + { + if (!_playerManager.TryGetSessionByEntity(uid, out var session) + || !Loc.TryGetString(PsionicRollFailedMessage, out var rollFailedMessage)) + return; + + _popups.PopupEntity(rollFailedMessage, uid, uid, PopupType.MediumCaution); + + // Popups only last a few seconds, and are easily ignored. + // So we also put a message in chat to make it harder to miss. + var feedbackMessage = $"[font size={PsionicRollFailedFontSize}][color={PsionicRollFailedColor}]{rollFailedMessage}[/color][/font]"; + _chatManager.ChatMessageToOne( + PsionicRollFailedChatChannel, + feedbackMessage, + feedbackMessage, + EntityUid.Invalid, + false, + session.Channel); + } + + /// + /// This function attempts to generate a psionic power by incrementing a Psion's Potentia stat by a random amount, then checking if it beats a certain threshold. + /// Please consider going through RerollPsionics or PsionicAbilitiesSystem.InitializePsionicPower instead of this function, particularly if you don't have a good reason to call this directly. + /// + public void RollPsionics(EntityUid uid, PsionicComponent component, bool applyGlimmer = true, float rollEventMultiplier = 1f) + { + if (!_cfg.GetCVar(CCVars.PsionicRollsEnabled) + || !component.Removable) + return; + + // Calculate the initial odds based on the innate potential + var baselineChance = component.Chance + * component.PowerRollMultiplier + + component.PowerRollFlatBonus + + _random.NextFloat(0, 100); + + // Increase the initial odds based on Glimmer. + // TODO: Change this equation when I do my Glimmer Refactor + baselineChance += applyGlimmer + ? (float) _glimmerSystem.Glimmer / 1000 //Convert from Glimmer to %chance + : 0; + + // Certain sources of power rolls provide their own multiplier. + baselineChance *= rollEventMultiplier; + + // Ask if the Roller has any other effects to contribute, such as Traits. + var ev = new OnRollPsionicsEvent(uid, baselineChance); + RaiseLocalEvent(uid, ref ev); + + if (HandlePotentiaCalculations(uid, component, ev.BaselineChance)) + return; + + HandleRollFeedback(uid); + } + + /// + /// Each person has a single free reroll for their Psionics, which certain conditions can restore. + /// This function attempts to "Spend" a reroll, if one is available. + /// + public void RerollPsionics(EntityUid uid, PsionicComponent? psionic = null, float bonusMuliplier = 1f) + { + if (!Resolve(uid, ref psionic, false) + || !psionic.Removable + || !psionic.CanReroll) + return; + + RollPsionics(uid, psionic, true, bonusMuliplier); + psionic.CanReroll = false; } } diff --git a/Content.Server/Radio/Components/RadioJammerComponent.cs b/Content.Server/Radio/Components/RadioJammerComponent.cs deleted file mode 100644 index 93504ef957..0000000000 --- a/Content.Server/Radio/Components/RadioJammerComponent.cs +++ /dev/null @@ -1,20 +0,0 @@ -using Content.Server.Radio.EntitySystems; - -namespace Content.Server.Radio.Components; - -/// -/// When activated () prevents from sending messages in range -/// -[RegisterComponent] -[Access(typeof(JammerSystem))] -public sealed partial class RadioJammerComponent : Component -{ - [DataField("range"), ViewVariables(VVAccess.ReadWrite)] - public float Range = 8f; - - /// - /// Power usage per second when enabled - /// - [DataField("wattage"), ViewVariables(VVAccess.ReadWrite)] - public float Wattage = 2f; -} diff --git a/Content.Server/Radio/EntitySystems/JammerSystem.cs b/Content.Server/Radio/EntitySystems/JammerSystem.cs index bba8c4766e..6e0689390e 100644 --- a/Content.Server/Radio/EntitySystems/JammerSystem.cs +++ b/Content.Server/Radio/EntitySystems/JammerSystem.cs @@ -1,27 +1,22 @@ using Content.Server.DeviceNetwork.Components; -using Content.Server.DeviceNetwork.Systems; -using Content.Server.Medical.CrewMonitoring; using Content.Server.Medical.SuitSensors; -using Content.Server.Popups; using Content.Server.Power.EntitySystems; using Content.Server.PowerCell; using Content.Server.Radio.Components; -using Content.Server.Station.Systems; using Content.Shared.DeviceNetwork.Components; using Content.Shared.Examine; using Content.Shared.Interaction; using Content.Shared.PowerCell.Components; +using Content.Shared.RadioJammer; +using Content.Shared.Radio.EntitySystems; namespace Content.Server.Radio.EntitySystems; -public sealed class JammerSystem : EntitySystem +public sealed class JammerSystem : SharedJammerSystem { [Dependency] private readonly PowerCellSystem _powerCell = default!; [Dependency] private readonly BatterySystem _battery = default!; - [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; - [Dependency] private readonly StationSystem _stationSystem = default!; - [Dependency] private readonly SingletonDeviceNetServerSystem _singletonServerSystem = default!; public override void Initialize() { @@ -37,14 +32,37 @@ public override void Initialize() public override void Update(float frameTime) { var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var _, out var jam)) { - if (_powerCell.TryGetBatteryFromSlot(uid, out var batteryUid, out var battery) && - !_battery.TryUseCharge(batteryUid.Value, jam.Wattage * frameTime, battery)) + + if (_powerCell.TryGetBatteryFromSlot(uid, out var batteryUid, out var battery)) { - RemComp(uid); - RemComp(uid); + if (!_battery.TryUseCharge(batteryUid.Value, GetCurrentWattage(jam) * frameTime, battery)) + { + ChangeLEDState(false, uid); + RemComp(uid); + RemComp(uid); + } + else + { + var percentCharged = battery.CurrentCharge / battery.MaxCharge; + if (percentCharged > .50) + { + ChangeChargeLevel(RadioJammerChargeLevel.High, uid); + } + else if (percentCharged < .15) + { + ChangeChargeLevel(RadioJammerChargeLevel.Low, uid); + } + else + { + ChangeChargeLevel(RadioJammerChargeLevel.Medium, uid); + } + } + } + } } @@ -52,40 +70,49 @@ private void OnActivate(EntityUid uid, RadioJammerComponent comp, ActivateInWorl { var activated = !HasComp(uid) && _powerCell.TryGetBatteryFromSlot(uid, out var battery) && - battery.CurrentCharge > comp.Wattage; + battery.CurrentCharge > GetCurrentWattage(comp); if (activated) { + ChangeLEDState(true, uid); EnsureComp(uid); EnsureComp(uid, out var jammingComp); - jammingComp.Range = comp.Range; + jammingComp.Range = GetCurrentRange(comp); jammingComp.JammableNetworks.Add(DeviceNetworkComponent.DeviceNetIdDefaults.Wireless.ToString()); Dirty(uid, jammingComp); } else { - RemComp(uid); - RemComp(uid); + ChangeLEDState(false, uid); + RemCompDeferred(uid); + RemCompDeferred(uid); } var state = Loc.GetString(activated ? "radio-jammer-component-on-state" : "radio-jammer-component-off-state"); var message = Loc.GetString("radio-jammer-component-on-use", ("state", state)); - _popup.PopupEntity(message, args.User, args.User); + Popup.PopupEntity(message, args.User, args.User); args.Handled = true; } private void OnPowerCellChanged(EntityUid uid, ActiveRadioJammerComponent comp, PowerCellChangedEvent args) { if (args.Ejected) - RemComp(uid); + { + ChangeLEDState(false, uid); + RemCompDeferred(uid); + } } private void OnExamine(EntityUid uid, RadioJammerComponent comp, ExaminedEvent args) { if (args.IsInDetailsRange) { - var msg = HasComp(uid) + var powerIndicator = HasComp(uid) ? Loc.GetString("radio-jammer-component-examine-on-state") : Loc.GetString("radio-jammer-component-examine-off-state"); - args.PushMarkup(msg); + args.PushMarkup(powerIndicator); + + var powerLevel = Loc.GetString(comp.Settings[comp.SelectedPowerLevel].Name); + var switchIndicator = Loc.GetString("radio-jammer-component-switch-setting", ("powerLevel", powerLevel)); + args.PushMarkup(switchIndicator); } } @@ -112,7 +139,7 @@ private bool ShouldCancelSend(EntityUid sourceUid) while (query.MoveNext(out _, out _, out var jam, out var transform)) { - if (source.InRange(EntityManager, _transform, transform.Coordinates, jam.Range)) + if (source.InRange(EntityManager, _transform, transform.Coordinates, GetCurrentRange(jam))) { return true; } diff --git a/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs b/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs index fc3f69a3ba..ddf2a41b57 100644 --- a/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs +++ b/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs @@ -203,6 +203,9 @@ private void OnAttemptListen(EntityUid uid, RadioMicrophoneComponent component, private void OnReceiveRadio(EntityUid uid, RadioSpeakerComponent component, ref RadioReceiveEvent args) { + if (uid == args.RadioSource) + return; + var nameEv = new TransformSpeakerNameEvent(args.MessageSource, Name(args.MessageSource)); RaiseLocalEvent(args.MessageSource, nameEv); @@ -221,25 +224,25 @@ private void OnBeforeIntercomUiOpen(EntityUid uid, IntercomComponent component, private void OnToggleIntercomMic(EntityUid uid, IntercomComponent component, ToggleIntercomMicMessage args) { - if (component.RequiresPower && !this.IsPowered(uid, EntityManager) || args.Session.AttachedEntity is not { } user) + if (component.RequiresPower && !this.IsPowered(uid, EntityManager)) return; - SetMicrophoneEnabled(uid, user, args.Enabled, true); + SetMicrophoneEnabled(uid, args.Actor, args.Enabled, true); UpdateIntercomUi(uid, component); } private void OnToggleIntercomSpeaker(EntityUid uid, IntercomComponent component, ToggleIntercomSpeakerMessage args) { - if (component.RequiresPower && !this.IsPowered(uid, EntityManager) || args.Session.AttachedEntity is not { } user) + if (component.RequiresPower && !this.IsPowered(uid, EntityManager)) return; - SetSpeakerEnabled(uid, user, args.Enabled, true); + SetSpeakerEnabled(uid, args.Actor, args.Enabled, true); UpdateIntercomUi(uid, component); } private void OnSelectIntercomChannel(EntityUid uid, IntercomComponent component, SelectIntercomChannelMessage args) { - if (component.RequiresPower && !this.IsPowered(uid, EntityManager) || args.Session.AttachedEntity is not { }) + if (component.RequiresPower && !this.IsPowered(uid, EntityManager)) return; if (!_protoMan.TryIndex(args.Channel, out _) || !component.SupportedChannels.Contains(args.Channel)) @@ -262,6 +265,6 @@ private void UpdateIntercomUi(EntityUid uid, IntercomComponent component) var availableChannels = component.SupportedChannels; var selectedChannel = micComp?.BroadcastChannel ?? SharedChatSystem.CommonChannel; var state = new IntercomBoundUIState(micEnabled, speakerEnabled, availableChannels, selectedChannel); - _ui.TrySetUiState(uid, IntercomUiKey.Key, state); + _ui.SetUiState(uid, IntercomUiKey.Key, state); } } diff --git a/Content.Server/Radio/EntitySystems/RadioSystem.cs b/Content.Server/Radio/EntitySystems/RadioSystem.cs index 5fce6f770a..28e6bfc108 100644 --- a/Content.Server/Radio/EntitySystems/RadioSystem.cs +++ b/Content.Server/Radio/EntitySystems/RadioSystem.cs @@ -126,7 +126,7 @@ public void SendRadioMessage(EntityUid messageSource, string message, RadioChann var obfuscatedWrapped = WrapRadioMessage(messageSource, channel, name, obfuscated, language); var notUdsMsg = new ChatMessage(ChatChannel.Radio, obfuscated, obfuscatedWrapped, NetEntity.Invalid, null); - var ev = new RadioReceiveEvent(messageSource, channel, msg, notUdsMsg, language); + var ev = new RadioReceiveEvent(messageSource, channel, msg, notUdsMsg, language, radioSource); var sendAttemptEv = new RadioSendAttemptEvent(channel, radioSource); RaiseLocalEvent(ref sendAttemptEv); diff --git a/Content.Server/Radio/RadioEvent.cs b/Content.Server/Radio/RadioEvent.cs index 35220d1d75..1198f7c133 100644 --- a/Content.Server/Radio/RadioEvent.cs +++ b/Content.Server/Radio/RadioEvent.cs @@ -10,12 +10,12 @@ namespace Content.Server.Radio; /// [ByRefEvent] public readonly record struct RadioReceiveEvent( - // Einstein-Engines - languages mechanic EntityUid MessageSource, RadioChannelPrototype Channel, ChatMessage OriginalChatMsg, ChatMessage LanguageObfuscatedChatMsg, - LanguagePrototype Language + LanguagePrototype Language, + EntityUid RadioSource ); /// diff --git a/Content.Server/RandomMetadata/RandomMetadataSystem.cs b/Content.Server/RandomMetadata/RandomMetadataSystem.cs index 0c254c52ac..abab5e5fc3 100644 --- a/Content.Server/RandomMetadata/RandomMetadataSystem.cs +++ b/Content.Server/RandomMetadata/RandomMetadataSystem.cs @@ -47,9 +47,13 @@ public string GetRandomFromSegments(List segments, string? separator) var outputSegments = new List(); foreach (var segment in segments) { - if (_prototype.TryIndex(segment, out var proto)) - outputSegments.Add(_random.Pick(proto.Values)); - else if (Loc.TryGetString(segment, out var localizedSegment)) + if (_prototype.TryIndex(segment, out var proto)) { + var random = _random.Pick(proto.Values); + if (Loc.TryGetString(random, out var localizedSegment)) + outputSegments.Add(localizedSegment); + else + outputSegments.Add(random); + } else if (Loc.TryGetString(segment, out var localizedSegment)) outputSegments.Add(localizedSegment); else outputSegments.Add(segment); diff --git a/Content.Server/Repairable/RepairableComponent.cs b/Content.Server/Repairable/RepairableComponent.cs index c436386110..bab70f66b5 100644 --- a/Content.Server/Repairable/RepairableComponent.cs +++ b/Content.Server/Repairable/RepairableComponent.cs @@ -1,5 +1,6 @@ using Content.Shared.Damage; using Content.Shared.Tools; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Repairable @@ -14,28 +15,28 @@ public sealed partial class RepairableComponent : Component /// If this data-field is specified, it will change damage by this amount instead of setting all damage to 0. /// in order to heal/repair the damage values have to be negative. /// - [ViewVariables(VVAccess.ReadWrite)] [DataField("damage")] + [DataField] public DamageSpecifier? Damage; - [ViewVariables(VVAccess.ReadWrite)] [DataField("fuelCost")] + [DataField] public int FuelCost = 5; - [ViewVariables(VVAccess.ReadWrite)] [DataField("qualityNeeded", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string QualityNeeded = "Welding"; + [DataField] + public ProtoId QualityNeeded = "Welding"; - [ViewVariables(VVAccess.ReadWrite)] [DataField("doAfterDelay")] + [DataField] public int DoAfterDelay = 1; /// /// A multiplier that will be applied to the above if an entity is repairing themselves. /// - [ViewVariables(VVAccess.ReadWrite)] [DataField("selfRepairPenalty")] + [DataField] public float SelfRepairPenalty = 3f; /// /// Whether or not an entity is allowed to repair itself. /// - [DataField("allowSelfRepair")] + [DataField] public bool AllowSelfRepair = true; } } diff --git a/Content.Server/Repairable/RepairableSystem.cs b/Content.Server/Repairable/RepairableSystem.cs index 5bd580756d..ec24cd8197 100644 --- a/Content.Server/Repairable/RepairableSystem.cs +++ b/Content.Server/Repairable/RepairableSystem.cs @@ -4,7 +4,6 @@ using Content.Shared.Interaction; using Content.Shared.Popups; using Content.Shared.Repairable; -using Content.Shared.Tools; using SharedToolSystem = Content.Shared.Tools.Systems.SharedToolSystem; namespace Content.Server.Repairable @@ -70,7 +69,7 @@ public async void Repair(EntityUid uid, RepairableComponent component, InteractU } // Run the repairing doafter - args.Handled = _toolSystem.UseTool(args.Used, args.User, uid, delay, component.QualityNeeded, new RepairFinishedEvent()); + args.Handled = _toolSystem.UseTool(args.Used, args.User, uid, delay, component.QualityNeeded, new RepairFinishedEvent(), component.FuelCost); } } } diff --git a/Content.Server/Research/Systems/ResearchSystem.Client.cs b/Content.Server/Research/Systems/ResearchSystem.Client.cs index 6bd5300d8f..f8fdba55b7 100644 --- a/Content.Server/Research/Systems/ResearchSystem.Client.cs +++ b/Content.Server/Research/Systems/ResearchSystem.Client.cs @@ -45,7 +45,7 @@ private void OnConsoleSelect(EntityUid uid, ResearchClientComponent component, C if (!this.IsPowered(uid, EntityManager)) return; - _uiSystem.TryToggleUi(uid, ResearchClientUiKey.Key, args.Session); + _uiSystem.TryToggleUi(uid, ResearchClientUiKey.Key, args.Actor); } #endregion @@ -88,7 +88,7 @@ private void UpdateClientInterface(EntityUid uid, ResearchClientComponent? compo var state = new ResearchClientBoundInterfaceState(names.Length, names, GetServerIds(), serverComponent?.Id ?? -1); - _uiSystem.TrySetUiState(uid, ResearchClientUiKey.Key, state); + _uiSystem.SetUiState(uid, ResearchClientUiKey.Key, state); } /// diff --git a/Content.Server/Research/Systems/ResearchSystem.Console.cs b/Content.Server/Research/Systems/ResearchSystem.Console.cs index 9f95fd2517..5358ddefcd 100644 --- a/Content.Server/Research/Systems/ResearchSystem.Console.cs +++ b/Content.Server/Research/Systems/ResearchSystem.Console.cs @@ -20,8 +20,7 @@ private void InitializeConsole() private void OnConsoleUnlock(EntityUid uid, ResearchConsoleComponent component, ConsoleUnlockTechnologyMessage args) { - if (args.Session.AttachedEntity is not { } ent) - return; + var act = args.Actor; if (!this.IsPowered(uid, EntityManager)) return; @@ -29,13 +28,13 @@ private void OnConsoleUnlock(EntityUid uid, ResearchConsoleComponent component, if (!PrototypeManager.TryIndex(args.Id, out var technologyPrototype)) return; - if (TryComp(uid, out var access) && !_accessReader.IsAllowed(ent, uid, access)) + if (TryComp(uid, out var access) && !_accessReader.IsAllowed(act, uid, access)) { - _popup.PopupEntity(Loc.GetString("research-console-no-access-popup"), ent); + _popup.PopupEntity(Loc.GetString("research-console-no-access-popup"), act); return; } - if (!UnlockTechnology(uid, args.Id, ent)) + if (!UnlockTechnology(uid, args.Id, act)) return; var message = Loc.GetString("research-console-unlock-technology-radio-broadcast", @@ -68,7 +67,7 @@ private void UpdateConsoleInterface(EntityUid uid, ResearchConsoleComponent? com state = new ResearchConsoleBoundInterfaceState(default); } - _uiSystem.TrySetUiState(uid, ResearchConsoleUiKey.Key, state); + _uiSystem.SetUiState(uid, ResearchConsoleUiKey.Key, state); } private void OnPointsChanged(EntityUid uid, ResearchConsoleComponent component, ref ResearchServerPointsChangedEvent args) diff --git a/Content.Server/Research/TechnologyDisk/Systems/DiskConsoleSystem.cs b/Content.Server/Research/TechnologyDisk/Systems/DiskConsoleSystem.cs index 2064abd8eb..6700247522 100644 --- a/Content.Server/Research/TechnologyDisk/Systems/DiskConsoleSystem.cs +++ b/Content.Server/Research/TechnologyDisk/Systems/DiskConsoleSystem.cs @@ -91,7 +91,7 @@ public void UpdateUserInterface(EntityUid uid, DiskConsoleComponent? component = totalPoints >= component.PricePerDisk; var state = new DiskConsoleBoundUserInterfaceState(totalPoints, component.PricePerDisk, canPrint); - _ui.TrySetUiState(uid, DiskConsoleUiKey.Key, state); + _ui.SetUiState(uid, DiskConsoleUiKey.Key, state); } private void OnShutdown(EntityUid uid, DiskConsolePrintingComponent component, ComponentShutdown args) diff --git a/Content.Server/Resist/CanEscapeInventoryComponent.cs b/Content.Server/Resist/CanEscapeInventoryComponent.cs index 978e03d95f..2b4045143a 100644 --- a/Content.Server/Resist/CanEscapeInventoryComponent.cs +++ b/Content.Server/Resist/CanEscapeInventoryComponent.cs @@ -6,9 +6,9 @@ namespace Content.Server.Resist; public sealed partial class CanEscapeInventoryComponent : Component { /// - /// Base doafter length for uncontested breakouts. + /// Base doafter length for uncontested breakouts. /// - [DataField("baseResistTime")] + [DataField] public float BaseResistTime = 5f; public bool IsEscaping => DoAfter != null; diff --git a/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs b/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs index cd64f043a0..5d7c7514b8 100644 --- a/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs +++ b/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs @@ -15,6 +15,7 @@ using System.Linq; using System.Numerics; using Content.Server.Revenant.Components; +using Content.Shared.Physics; using Content.Shared.DoAfter; using Content.Shared.Emag.Systems; using Content.Shared.FixedPoint; @@ -135,6 +136,12 @@ private void BeginHarvestDoAfter(EntityUid uid, EntityUid target, RevenantCompon return; } + if(_physics.GetEntitiesIntersectingBody(uid, (int) CollisionGroup.Impassable).Count > 0) + { + _popup.PopupEntity(Loc.GetString("revenant-in-solid"), uid, uid); + return; + } + var doAfter = new DoAfterArgs(EntityManager, uid, revenant.HarvestDebuffs.X, new HarvestEvent(), uid, target: target) { DistanceThreshold = 2, @@ -238,7 +245,7 @@ private void OnDefileAction(EntityUid uid, RevenantComponent component, Revenant { //hardcoded damage specifiers til i die. var dspec = new DamageSpecifier(); - dspec.DamageDict.Add("Structural", 15); + dspec.DamageDict.Add("Structural", 60); _damage.TryChangeDamage(ent, dspec, origin: uid); } diff --git a/Content.Server/Robotics/Systems/RoboticsConsoleSystem.cs b/Content.Server/Robotics/Systems/RoboticsConsoleSystem.cs new file mode 100644 index 0000000000..916694fdd8 --- /dev/null +++ b/Content.Server/Robotics/Systems/RoboticsConsoleSystem.cs @@ -0,0 +1,146 @@ +using Content.Server.Administration.Logs; +using Content.Server.DeviceNetwork; +using Content.Server.DeviceNetwork.Systems; +using Content.Server.Radio.EntitySystems; +using Content.Shared.Lock; +using Content.Shared.Database; +using Content.Shared.DeviceNetwork; +using Content.Shared.Robotics; +using Content.Shared.Robotics.Components; +using Content.Shared.Robotics.Systems; +using Robust.Server.GameObjects; +using Robust.Shared.Timing; +using System.Diagnostics.CodeAnalysis; + +namespace Content.Server.Research.Systems; + +/// +/// Handles UI and state receiving for the robotics control console. +/// BorgTransponderComponent broadcasts state from the station's borgs to consoles. +/// +public sealed class RoboticsConsoleSystem : SharedRoboticsConsoleSystem +{ + [Dependency] private readonly DeviceNetworkSystem _deviceNetwork = default!; + [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly LockSystem _lock = default!; + [Dependency] private readonly RadioSystem _radio = default!; + [Dependency] private readonly UserInterfaceSystem _ui = default!; + + // almost never timing out more than 1 per tick so initialize with that capacity + private List _removing = new(1); + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnPacketReceived); + Subs.BuiEvents(RoboticsConsoleUiKey.Key, subs => + { + subs.Event(OnOpened); + subs.Event(OnDisable); + subs.Event(OnDestroy); + // TODO: camera stuff + }); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var now = _timing.CurTime; + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var comp)) + { + // remove cyborgs that havent pinged in a while + _removing.Clear(); + foreach (var (address, data) in comp.Cyborgs) + { + if (now >= data.Timeout) + _removing.Add(address); + } + + // needed to prevent modifying while iterating it + foreach (var address in _removing) + { + comp.Cyborgs.Remove(address); + } + + if (_removing.Count > 0) + UpdateUserInterface((uid, comp)); + } + } + + private void OnPacketReceived(Entity ent, ref DeviceNetworkPacketEvent args) + { + var payload = args.Data; + if (!payload.TryGetValue(DeviceNetworkConstants.Command, out string? command)) + return; + if (command != DeviceNetworkConstants.CmdUpdatedState) + return; + + if (!payload.TryGetValue(RoboticsConsoleConstants.NET_CYBORG_DATA, out CyborgControlData? data)) + return; + + var real = data.Value; + real.Timeout = _timing.CurTime + ent.Comp.Timeout; + ent.Comp.Cyborgs[args.SenderAddress] = real; + + UpdateUserInterface(ent); + } + + private void OnOpened(Entity ent, ref BoundUIOpenedEvent args) + { + UpdateUserInterface(ent); + } + + private void OnDisable(Entity ent, ref RoboticsConsoleDisableMessage args) + { + if (_lock.IsLocked(ent.Owner)) + return; + + if (!ent.Comp.Cyborgs.TryGetValue(args.Address, out var data)) + return; + + var payload = new NetworkPayload() + { + [DeviceNetworkConstants.Command] = RoboticsConsoleConstants.NET_DISABLE_COMMAND + }; + + _deviceNetwork.QueuePacket(ent, args.Address, payload); + _adminLogger.Add(LogType.Action, LogImpact.High, $"{ToPrettyString(args.Actor):user} disabled borg {data.Name} with address {args.Address}"); + } + + private void OnDestroy(Entity ent, ref RoboticsConsoleDestroyMessage args) + { + if (_lock.IsLocked(ent.Owner)) + return; + + var now = _timing.CurTime; + if (now < ent.Comp.NextDestroy) + return; + + if (!ent.Comp.Cyborgs.Remove(args.Address, out var data)) + return; + + var payload = new NetworkPayload() + { + [DeviceNetworkConstants.Command] = RoboticsConsoleConstants.NET_DESTROY_COMMAND + }; + + _deviceNetwork.QueuePacket(ent, args.Address, payload); + + var message = Loc.GetString(ent.Comp.DestroyMessage, ("name", data.Name)); + _radio.SendRadioMessage(ent, message, ent.Comp.RadioChannel, ent); + _adminLogger.Add(LogType.Action, LogImpact.Extreme, $"{ToPrettyString(args.Actor):user} destroyed borg {data.Name} with address {args.Address}"); + + ent.Comp.NextDestroy = now + ent.Comp.DestroyCooldown; + Dirty(ent, ent.Comp); + } + + private void UpdateUserInterface(Entity ent) + { + var state = new RoboticsConsoleState(ent.Comp.Cyborgs); + _ui.SetUiState(ent.Owner, RoboticsConsoleUiKey.Key, state); + } +} diff --git a/Content.Server/Roles/RoleSystem.cs b/Content.Server/Roles/RoleSystem.cs index f7a5177357..c53fa1cf9e 100644 --- a/Content.Server/Roles/RoleSystem.cs +++ b/Content.Server/Roles/RoleSystem.cs @@ -15,7 +15,6 @@ public override void Initialize() SubscribeAntagEvents(); SubscribeAntagEvents(); SubscribeAntagEvents(); - SubscribeAntagEvents(); SubscribeAntagEvents(); SubscribeAntagEvents(); SubscribeAntagEvents(); diff --git a/Content.Server/RoundEnd/RoundEndSystem.cs b/Content.Server/RoundEnd/RoundEndSystem.cs index d79fe2d2cc..0866b975c2 100644 --- a/Content.Server/RoundEnd/RoundEndSystem.cs +++ b/Content.Server/RoundEnd/RoundEndSystem.cs @@ -147,11 +147,15 @@ public void RequestRoundEnd(EntityUid? requester = null, bool checkCooldown = tr public void RequestRoundEnd(TimeSpan countdownTime, EntityUid? requester = null, bool checkCooldown = true, string text = "round-end-system-shuttle-called-announcement", string name = "Station") { - if (_gameTicker.RunLevel != GameRunLevel.InRound) return; + if (_gameTicker.RunLevel != GameRunLevel.InRound) + return; - if (checkCooldown && _cooldownTokenSource != null) return; + if (checkCooldown && _cooldownTokenSource != null) + return; + + if (_countdownTokenSource != null) + return; - if (_countdownTokenSource != null) return; _countdownTokenSource = new(); if (requester != null) @@ -191,6 +195,8 @@ public void RequestRoundEnd(TimeSpan countdownTime, EntityUid? requester = null, LastCountdownStart = _gameTiming.CurTime; ExpectedCountdownEnd = _gameTiming.CurTime + countdownTime; + + // TODO full game saves Timer.Spawn(countdownTime, _shuttle.CallEmergencyShuttle, _countdownTokenSource.Token); ActivateCooldown(); @@ -343,6 +349,8 @@ private void ActivateCooldown() { _cooldownTokenSource?.Cancel(); _cooldownTokenSource = new(); + + // TODO full game saves Timer.Spawn(DefaultCooldownDuration, () => { _cooldownTokenSource.Cancel(); diff --git a/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs b/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs index 6a58c209cf..ff3c8176fd 100644 --- a/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs +++ b/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs @@ -40,14 +40,21 @@ public sealed partial class SalvageExpeditionComponent : SharedSalvageExpedition /// /// Countdown audio stream. /// + [DataField, AutoNetworkedField] public EntityUid? Stream = null; /// /// Sound that plays when the mission end is imminent. /// - [ViewVariables(VVAccess.ReadWrite), DataField("sound")] - public SoundSpecifier Sound = new SoundPathSpecifier("/Audio/Misc/tension_session.ogg") + [ViewVariables(VVAccess.ReadWrite), DataField] + public SoundSpecifier Sound = new SoundCollectionSpecifier("ExpeditionEnd") { Params = AudioParams.Default.WithVolume(-5), }; + + /// + /// Song selected on MapInit so we can predict the audio countdown properly. + /// + [DataField] + public SoundPathSpecifier SelectedSong; } diff --git a/Content.Server/Salvage/SalvageSystem.ExpeditionConsole.cs b/Content.Server/Salvage/SalvageSystem.ExpeditionConsole.cs index 61636bea7c..d031418476 100644 --- a/Content.Server/Salvage/SalvageSystem.ExpeditionConsole.cs +++ b/Content.Server/Salvage/SalvageSystem.ExpeditionConsole.cs @@ -56,7 +56,7 @@ private void UpdateConsoles(Entity component) if (station != component.Owner) continue; - _ui.TrySetUiState(uid, SalvageConsoleUiKey.Expedition, state, ui: uiComp); + _ui.SetUiState((uid, uiComp), SalvageConsoleUiKey.Expedition, state); } } @@ -74,6 +74,6 @@ private void UpdateConsole(Entity component) state = new SalvageExpeditionConsoleState(TimeSpan.Zero, false, true, 0, new List()); } - _ui.TrySetUiState(component, SalvageConsoleUiKey.Expedition, state); + _ui.SetUiState(component.Owner, SalvageConsoleUiKey.Expedition, state); } } diff --git a/Content.Server/Salvage/SalvageSystem.Expeditions.cs b/Content.Server/Salvage/SalvageSystem.Expeditions.cs index 4d5d569dab..923880169d 100644 --- a/Content.Server/Salvage/SalvageSystem.Expeditions.cs +++ b/Content.Server/Salvage/SalvageSystem.Expeditions.cs @@ -4,7 +4,9 @@ using Content.Server.Salvage.Expeditions.Structure; using Content.Shared.CCVar; using Content.Shared.Examine; +using Content.Shared.Random.Helpers; using Content.Shared.Salvage.Expeditions; +using Robust.Shared.Audio; using Robust.Shared.CPUJob.JobQueues; using Robust.Shared.CPUJob.JobQueues.Queues; using Robust.Shared.GameStates; @@ -32,6 +34,7 @@ private void InitializeExpeditions() SubscribeLocalEvent(OnSalvageConsoleParent); SubscribeLocalEvent(OnSalvageClaimMessage); + SubscribeLocalEvent(OnExpeditionMapInit); SubscribeLocalEvent(OnExpeditionShutdown); SubscribeLocalEvent(OnExpeditionGetState); @@ -64,6 +67,12 @@ private void SetCooldownChange(float obj) _cooldown = obj; } + private void OnExpeditionMapInit(EntityUid uid, SalvageExpeditionComponent component, MapInitEvent args) + { + var selectedFile = _audio.GetSound(component.Sound); + component.SelectedSong = new SoundPathSpecifier(selectedFile, component.Sound.Params); + } + private void OnExpeditionShutdown(EntityUid uid, SalvageExpeditionComponent component, ComponentShutdown args) { component.Stream = _audio.Stop(component.Stream); diff --git a/Content.Server/Salvage/SalvageSystem.Magnet.cs b/Content.Server/Salvage/SalvageSystem.Magnet.cs index e4711a5876..4b7291298b 100644 --- a/Content.Server/Salvage/SalvageSystem.Magnet.cs +++ b/Content.Server/Salvage/SalvageSystem.Magnet.cs @@ -35,11 +35,6 @@ private void InitializeMagnet() private void OnMagnetClaim(EntityUid uid, SalvageMagnetComponent component, ref MagnetClaimOfferEvent args) { - var player = args.Session.AttachedEntity; - - if (player is null) - return; - var station = _station.GetOwningStation(uid); if (!TryComp(station, out SalvageMagnetDataComponent? dataComp) || @@ -177,12 +172,12 @@ private void CreateMagnetOffers(Entity data) // Fuck with the seed to mix wrecks and asteroids. seed = (int) (seed / 10f) * 10; - + if (i >= data.Comp.OfferCount / 2) { seed++; } - + data.Comp.Offered.Add(seed); } @@ -216,7 +211,7 @@ private void UpdateMagnetUI(Entity entity, TransformComp if (!TryComp(station, out SalvageMagnetDataComponent? dataComp)) return; - _ui.TrySetUiState(entity, SalvageMagnetUiKey.Key, + _ui.SetUiState(entity.Owner, SalvageMagnetUiKey.Key, new SalvageMagnetBoundUserInterfaceState(dataComp.Offered) { Cooldown = dataComp.OfferCooldown, @@ -238,7 +233,7 @@ private void UpdateMagnetUIs(Entity data) if (station != data.Owner) continue; - _ui.TrySetUiState(magnetUid, SalvageMagnetUiKey.Key, + _ui.SetUiState(magnetUid, SalvageMagnetUiKey.Key, new SalvageMagnetBoundUserInterfaceState(data.Comp.Offered) { Cooldown = data.Comp.OfferCooldown, diff --git a/Content.Server/Salvage/SalvageSystem.Runner.cs b/Content.Server/Salvage/SalvageSystem.Runner.cs index 8a1498cbe9..23607e2bdc 100644 --- a/Content.Server/Salvage/SalvageSystem.Runner.cs +++ b/Content.Server/Salvage/SalvageSystem.Runner.cs @@ -1,9 +1,7 @@ using System.Numerics; using Content.Server.Salvage.Expeditions; -using Content.Server.Salvage.Expeditions.Structure; using Content.Server.Shuttles.Components; using Content.Server.Shuttles.Events; -using Content.Server.Shuttles.Systems; using Content.Server.Station.Components; using Content.Shared.Chat; using Content.Shared.Humanoid; @@ -13,7 +11,6 @@ using Content.Shared.Shuttles.Components; using Robust.Shared.Map.Components; using Robust.Shared.Player; -using Robust.Shared.Utility; namespace Content.Server.Salvage; @@ -144,6 +141,7 @@ private void UpdateRunner() while (query.MoveNext(out var uid, out var comp)) { var remaining = comp.EndTime - _timing.CurTime; + var audioLength = _audio.GetAudioLength(comp.SelectedSong.Path.ToString()); if (comp.Stage < ExpeditionStage.FinalCountdown && remaining < TimeSpan.FromSeconds(45)) { @@ -151,13 +149,14 @@ private void UpdateRunner() Dirty(uid, comp); Announce(uid, Loc.GetString("salvage-expedition-announcement-countdown-seconds", ("duration", TimeSpan.FromSeconds(45).Seconds))); } - else if (comp.Stage < ExpeditionStage.MusicCountdown && remaining < TimeSpan.FromMinutes(2)) + else if (comp.Stream == null && remaining < audioLength) { - // TODO: Some way to play audio attached to a map for players. - comp.Stream = _audio.PlayGlobal(comp.Sound, Filter.BroadcastMap(Comp(uid).MapId), true).Value.Entity; + var audio = _audio.PlayPvs(comp.Sound, uid).Value; + comp.Stream = audio.Entity; + _audio.SetMapAudio(audio); comp.Stage = ExpeditionStage.MusicCountdown; Dirty(uid, comp); - Announce(uid, Loc.GetString("salvage-expedition-announcement-countdown-minutes", ("duration", TimeSpan.FromMinutes(2).Minutes))); + Announce(uid, Loc.GetString("salvage-expedition-announcement-countdown-minutes", ("duration", audioLength.Minutes))); } else if (comp.Stage < ExpeditionStage.Countdown && remaining < TimeSpan.FromMinutes(4)) { @@ -166,16 +165,16 @@ private void UpdateRunner() Announce(uid, Loc.GetString("salvage-expedition-announcement-countdown-minutes", ("duration", TimeSpan.FromMinutes(5).Minutes))); } // Auto-FTL out any shuttles - else if (remaining < TimeSpan.FromSeconds(ShuttleSystem.DefaultStartupTime) + TimeSpan.FromSeconds(0.5)) + else if (remaining < TimeSpan.FromSeconds(_shuttle.DefaultStartupTime) + TimeSpan.FromSeconds(0.5)) { var ftlTime = (float) remaining.TotalSeconds; - if (remaining < TimeSpan.FromSeconds(ShuttleSystem.DefaultStartupTime)) + if (remaining < TimeSpan.FromSeconds(_shuttle.DefaultStartupTime)) { ftlTime = MathF.Max(0, (float) remaining.TotalSeconds - 0.5f); } - ftlTime = MathF.Min(ftlTime, ShuttleSystem.DefaultStartupTime); + ftlTime = MathF.Min(ftlTime, _shuttle.DefaultStartupTime); var shuttleQuery = AllEntityQuery(); if (TryComp(comp.Station, out var data)) diff --git a/Content.Server/Salvage/SpawnSalvageMissionJob.cs b/Content.Server/Salvage/SpawnSalvageMissionJob.cs index 47123e9784..ce844e57a1 100644 --- a/Content.Server/Salvage/SpawnSalvageMissionJob.cs +++ b/Content.Server/Salvage/SpawnSalvageMissionJob.cs @@ -34,8 +34,6 @@ using Robust.Shared.Timing; using Robust.Shared.Utility; using Content.Server.Shuttles.Components; -using Content.Shared.Coordinates; -using Content.Shared.Shuttles.Components; namespace Content.Server.Salvage; diff --git a/Content.Server/SensorMonitoring/SensorMonitoringConsoleComponent.cs b/Content.Server/SensorMonitoring/SensorMonitoringConsoleComponent.cs index 63b4d9daef..b5a954f166 100644 --- a/Content.Server/SensorMonitoring/SensorMonitoringConsoleComponent.cs +++ b/Content.Server/SensorMonitoring/SensorMonitoringConsoleComponent.cs @@ -27,7 +27,7 @@ public sealed partial class SensorMonitoringConsoleComponent : Component public TimeSpan RetentionTime = TimeSpan.FromMinutes(1); // UI update tracking stuff. - public HashSet InitialUIStateSent = new(); + public HashSet InitialUIStateSent = new(); public TimeSpan LastUIUpdate; public ValueList RemovedSensors; diff --git a/Content.Server/SensorMonitoring/SensorMonitoringConsoleSystem.UI.cs b/Content.Server/SensorMonitoring/SensorMonitoringConsoleSystem.UI.cs index 26c6b17831..dec3e6c36e 100644 --- a/Content.Server/SensorMonitoring/SensorMonitoringConsoleSystem.UI.cs +++ b/Content.Server/SensorMonitoring/SensorMonitoringConsoleSystem.UI.cs @@ -18,27 +18,26 @@ private void InitUI() private void UpdateConsoleUI(EntityUid uid, SensorMonitoringConsoleComponent comp) { - if (!_userInterface.TryGetUi(uid, SensorMonitoringConsoleUiKey.Key, out var ui)) - return; - - if (ui.SubscribedSessions.Count == 0) + if (!_userInterface.IsUiOpen(uid, SensorMonitoringConsoleUiKey.Key)) + { return; + } ConsoleUIState? fullState = null; SensorMonitoringIncrementalUpdate? incrementalUpdate = null; - foreach (var session in ui.SubscribedSessions) + foreach (var actorUid in _userInterface.GetActors(uid, SensorMonitoringConsoleUiKey.Key)) { - if (comp.InitialUIStateSent.Contains(session)) + if (comp.InitialUIStateSent.Contains(actorUid)) { incrementalUpdate ??= CalculateIncrementalUpdate(); - _userInterface.TrySendUiMessage(ui, incrementalUpdate, session); + _userInterface.ServerSendUiMessage(uid, SensorMonitoringConsoleUiKey.Key, incrementalUpdate, actorUid); } else { fullState ??= CalculateFullState(); - _userInterface.SetUiState(ui, fullState, session); - comp.InitialUIStateSent.Add(session); + _userInterface.SetUiState(uid, SensorMonitoringConsoleUiKey.Key, fullState); + comp.InitialUIStateSent.Add(actorUid); } } @@ -131,9 +130,6 @@ private static void ConsoleUIClosed( if (!args.UiKey.Equals(SensorMonitoringConsoleUiKey.Key)) return; - if (args.Session is not { } player) - return; - - component.InitialUIStateSent.Remove(player); + component.InitialUIStateSent.Remove(args.Actor); } } diff --git a/Content.Server/Shuttles/Components/DockingSignalControlComponent.cs b/Content.Server/Shuttles/Components/DockingSignalControlComponent.cs new file mode 100644 index 0000000000..4361265080 --- /dev/null +++ b/Content.Server/Shuttles/Components/DockingSignalControlComponent.cs @@ -0,0 +1,14 @@ +using Content.Shared.DeviceLinking; +using Robust.Shared.Prototypes; + +namespace Content.Server.Shuttles.Components; + +[RegisterComponent] +public sealed partial class DockingSignalControlComponent : Component +{ + /// + /// Output port that is high while docked. + /// + [DataField] + public ProtoId DockStatusSignalPort = "DockStatus"; +} diff --git a/Content.Server/Shuttles/Components/FTLComponent.cs b/Content.Server/Shuttles/Components/FTLComponent.cs index ab40875e29..c9b8406423 100644 --- a/Content.Server/Shuttles/Components/FTLComponent.cs +++ b/Content.Server/Shuttles/Components/FTLComponent.cs @@ -14,6 +14,8 @@ namespace Content.Server.Shuttles.Components; [RegisterComponent] public sealed partial class FTLComponent : Component { + // TODO Full game save / add datafields + [ViewVariables] public FTLState State = FTLState.Available; @@ -23,6 +25,7 @@ public sealed partial class FTLComponent : Component [ViewVariables(VVAccess.ReadWrite)] public float StartupTime = 0f; + // Because of sphagetti, actual travel time is Math.Max(TravelTime, DefaultArrivalTime) [ViewVariables(VVAccess.ReadWrite)] public float TravelTime = 0f; diff --git a/Content.Server/Shuttles/Components/StationEmergencyShuttleComponent.cs b/Content.Server/Shuttles/Components/StationEmergencyShuttleComponent.cs index bdfdcb273a..58d23ee432 100644 --- a/Content.Server/Shuttles/Components/StationEmergencyShuttleComponent.cs +++ b/Content.Server/Shuttles/Components/StationEmergencyShuttleComponent.cs @@ -13,7 +13,7 @@ public sealed partial class StationEmergencyShuttleComponent : Component /// /// The emergency shuttle assigned to this station. /// - [ViewVariables, Access(typeof(ShuttleSystem), typeof(EmergencyShuttleSystem), Friend = AccessPermissions.ReadWrite)] + [DataField, Access(typeof(ShuttleSystem), typeof(EmergencyShuttleSystem), Friend = AccessPermissions.ReadWrite)] public EntityUid? EmergencyShuttle; /// diff --git a/Content.Server/Shuttles/Components/ThrusterComponent.cs b/Content.Server/Shuttles/Components/ThrusterComponent.cs index 3bba9b5a7f..f64d9bdcbf 100644 --- a/Content.Server/Shuttles/Components/ThrusterComponent.cs +++ b/Content.Server/Shuttles/Components/ThrusterComponent.cs @@ -1,8 +1,10 @@ using System.Numerics; using Content.Server.Shuttles.Systems; +using Content.Shared.Construction.Prototypes; using Content.Shared.Damage; using Robust.Shared.GameStates; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Shuttles.Components { @@ -13,7 +15,7 @@ public sealed partial class ThrusterComponent : Component /// /// Whether the thruster has been force to be enabled / disabled (e.g. VV, interaction, etc.) /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public bool Enabled { get; set; } = true; /// @@ -22,9 +24,12 @@ public sealed partial class ThrusterComponent : Component public bool IsOn; // Need to serialize this because RefreshParts isn't called on Init and this will break post-mapinit maps! - [ViewVariables(VVAccess.ReadWrite), DataField("thrust")] + [DataField] public float Thrust = 100f; + [DataField] + public float BaseThrust = 100f; + [DataField("thrusterType")] public ThrusterType Type = ThrusterType.Linear; @@ -37,24 +42,31 @@ public sealed partial class ThrusterComponent : Component }; /// - /// How much damage is done per second to anything colliding with our thrust. + /// How much damage is done per second to anything colliding with our thrust. /// - [DataField("damage")] public DamageSpecifier? Damage = new(); + [DataField] + public DamageSpecifier? Damage = new(); - [DataField("requireSpace")] + [DataField] public bool RequireSpace = true; // Used for burns public List Colliding = new(); - public bool Firing = false; + public bool Firing; /// - /// Next time we tick damage for anyone colliding. + /// Next time we tick damage for anyone colliding. /// - [ViewVariables(VVAccess.ReadWrite), DataField("nextFire", customTypeSerializer:typeof(TimeOffsetSerializer))] + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] public TimeSpan NextFire; + + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MachinePartThrust = "Capacitor"; + + [DataField] + public float PartRatingThrustMultiplier = 1.5f; } public enum ThrusterType diff --git a/Content.Server/Shuttles/Systems/ArrivalsSystem.cs b/Content.Server/Shuttles/Systems/ArrivalsSystem.cs index ae742cf1f9..4a2dc5df53 100644 --- a/Content.Server/Shuttles/Systems/ArrivalsSystem.cs +++ b/Content.Server/Shuttles/Systems/ArrivalsSystem.cs @@ -1,15 +1,16 @@ using System.Linq; using Content.Server.Administration; +using Content.Server.DeviceNetwork.Components; +using Content.Server.DeviceNetwork.Systems; using Content.Server.GameTicking; using Content.Server.GameTicking.Events; using Content.Server.Parallax; -using Content.Server.DeviceNetwork.Components; -using Content.Server.DeviceNetwork.Systems; using Content.Server.Screens.Components; using Content.Server.Shuttles.Components; using Content.Server.Shuttles.Events; using Content.Server.Spawners.Components; using Content.Server.Station.Components; +using Content.Server.Station.Events; using Content.Server.Station.Systems; using Content.Shared.Administration; using Content.Shared.CCVar; @@ -77,7 +78,7 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnArrivalsStartup); + SubscribeLocalEvent(OnStationPostInit); SubscribeLocalEvent(OnShuttleStartup); SubscribeLocalEvent(OnShuttleTag); @@ -187,7 +188,7 @@ private void OnArrivalsFTL(EntityUid shuttleUid, ArrivalsShuttleComponent compon if (TryComp(shuttleUid, out var netComp)) { TryComp(shuttleUid, out var ftlComp); - var ftlTime = TimeSpan.FromSeconds(ftlComp?.TravelTime ?? ShuttleSystem.DefaultTravelTime); + var ftlTime = TimeSpan.FromSeconds(ftlComp?.TravelTime ?? _shuttles.DefaultTravelTime); var payload = new NetworkPayload { @@ -253,7 +254,7 @@ private void OnArrivalsFTL(EntityUid shuttleUid, ArrivalsShuttleComponent compon private void OnArrivalsDocked(EntityUid uid, ArrivalsShuttleComponent component, ref FTLCompletedEvent args) { - TimeSpan dockTime = component.NextTransfer - _timing.CurTime + TimeSpan.FromSeconds(ShuttleSystem.DefaultStartupTime); + var dockTime = component.NextTransfer - _timing.CurTime + TimeSpan.FromSeconds(_shuttles.DefaultStartupTime); if (TryComp(uid, out var netComp)) { @@ -419,13 +420,13 @@ public override void Update(float frameTime) if (comp.NextTransfer > curTime || !TryComp(comp.Station, out var data)) continue; - var tripTime = ShuttleSystem.DefaultTravelTime + ShuttleSystem.DefaultStartupTime; + var tripTime = _shuttles.DefaultTravelTime + _shuttles.DefaultStartupTime; // Go back to arrivals source if (xform.MapUid != arrivalsXform.MapUid) { if (arrivals.IsValid()) - _shuttles.FTLToDock(uid, shuttle, arrivals); + _shuttles.FTLToDock(uid, shuttle, arrivals, _cfgManager.GetCVar(CCVars.ArrivalsStartupTime), _cfgManager.GetCVar(CCVars.ArrivalsHyperspaceTime), "DockArrivals"); comp.NextArrivalsTime = _timing.CurTime + TimeSpan.FromSeconds(tripTime); } @@ -435,7 +436,7 @@ public override void Update(float frameTime) var targetGrid = _station.GetLargestGrid(data); if (targetGrid != null) - _shuttles.FTLToDock(uid, shuttle, targetGrid.Value); + _shuttles.FTLToDock(uid, shuttle, targetGrid.Value, _cfgManager.GetCVar(CCVars.ArrivalsStartupTime), _cfgManager.GetCVar(CCVars.ArrivalsHyperspaceTime), "DockArrivals"); // The ArrivalsCooldown includes the trip there, so we only need to add the time taken for // the trip back. @@ -530,7 +531,7 @@ private void SetArrivals(bool obj) } } - private void OnArrivalsStartup(EntityUid uid, StationArrivalsComponent component, ComponentStartup args) + private void OnStationPostInit(EntityUid uid, StationArrivalsComponent component, ref StationPostInitEvent args) { if (!Enabled) return; diff --git a/Content.Server/Shuttles/Systems/DockingSignalControlSystem.cs b/Content.Server/Shuttles/Systems/DockingSignalControlSystem.cs new file mode 100644 index 0000000000..34cade7f1c --- /dev/null +++ b/Content.Server/Shuttles/Systems/DockingSignalControlSystem.cs @@ -0,0 +1,28 @@ +using Content.Server.DeviceLinking.Systems; +using Content.Server.Shuttles.Components; +using Content.Server.Shuttles.Events; + +namespace Content.Server.Shuttles.Systems; + +public sealed class DockingSignalControlSystem : EntitySystem +{ + [Dependency] private readonly DeviceLinkSystem _deviceLinkSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnDocked); + SubscribeLocalEvent(OnUndocked); + } + + private void OnDocked(Entity ent, ref DockEvent args) + { + _deviceLinkSystem.SendSignal(ent, ent.Comp.DockStatusSignalPort, signal: true); + } + + private void OnUndocked(Entity ent, ref UndockEvent args) + { + _deviceLinkSystem.SendSignal(ent, ent.Comp.DockStatusSignalPort, signal: false); + } +} diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs index 3f6eafb454..6c040e7a0e 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs @@ -1,10 +1,8 @@ using System.Threading; -using Content.Server.DeviceNetwork; using Content.Server.DeviceNetwork.Components; using Content.Server.Screens.Components; using Content.Server.Shuttles.Components; using Content.Server.Shuttles.Events; -using Content.Shared.UserInterface; using Content.Shared.Access; using Content.Shared.CCVar; using Content.Shared.Database; @@ -13,12 +11,15 @@ using Content.Shared.Shuttles.BUIStates; using Content.Shared.Shuttles.Events; using Content.Shared.Shuttles.Systems; +using Content.Shared.UserInterface; using Robust.Shared.Map; using Robust.Shared.Player; using Timer = Robust.Shared.Timing.Timer; namespace Content.Server.Shuttles.Systems; +// TODO full game saves +// Move state data into the emergency shuttle component public sealed partial class EmergencyShuttleSystem { /* @@ -55,7 +56,7 @@ public sealed partial class EmergencyShuttleSystem /// /// How long it will take for the emergency shuttle to arrive at CentComm. /// - public float TransitTime { get; private set; } + public float TransitTime; /// /// @@ -129,9 +130,17 @@ private void OnEmergencyStartup(EntityUid uid, EmergencyShuttleConsoleComponent private void UpdateEmergencyConsole(float frameTime) { // Add some buffer time so eshuttle always first. - var minTime = -(TransitTime - (ShuttleSystem.DefaultStartupTime + ShuttleSystem.DefaultTravelTime + 1f)); + var minTime = -(TransitTime - (_shuttle.DefaultStartupTime + _shuttle.DefaultTravelTime + 1f)); // TODO: I know this is shit but I already just cleaned up a billion things. + + // This is very cursed spaghetti code. I don't even know what the fuck this is doing or why it exists. + // But I think it needs to be less than or equal to zero or the shuttle might never leave??? + // TODO Shuttle AAAAAAAAAAAAAAAAAAAAAAAAA + // Clean this up, just have a single timer with some state system. + // I.e., dont infer state from the current interval that the accumulator is in??? + minTime = Math.Min(0, minTime); // ???? + if (_consoleAccumulator < minTime) { return; @@ -147,7 +156,7 @@ private void UpdateEmergencyConsole(float frameTime) } // Imminent departure - if (!_launchedShuttles && _consoleAccumulator <= ShuttleSystem.DefaultStartupTime) + if (!_launchedShuttles && _consoleAccumulator <= _shuttle.DefaultStartupTime) { _launchedShuttles = true; @@ -241,19 +250,18 @@ private void UpdateEmergencyConsole(float frameTime) private void OnEmergencyRepealAll(EntityUid uid, EmergencyShuttleConsoleComponent component, EmergencyShuttleRepealAllMessage args) { - var player = args.Session.AttachedEntity; - if (player == null) return; + var player = args.Actor; - if (!_reader.FindAccessTags(player.Value).Contains(EmergencyRepealAllAccess)) + if (!_reader.FindAccessTags(player).Contains(EmergencyRepealAllAccess)) { - _popup.PopupCursor(Loc.GetString("emergency-shuttle-console-denied"), player.Value, PopupType.Medium); + _popup.PopupCursor(Loc.GetString("emergency-shuttle-console-denied"), player, PopupType.Medium); return; } if (component.AuthorizedEntities.Count == 0) return; - _logger.Add(LogType.EmergencyShuttle, LogImpact.High, $"Emergency shuttle early launch REPEAL ALL by {args.Session:user}"); + _logger.Add(LogType.EmergencyShuttle, LogImpact.High, $"Emergency shuttle early launch REPEAL ALL by {args.Actor:user}"); _announcer.SendAnnouncement( _announcer.GetAnnouncementId("ShuttleAuthRevoked"), Filter.Broadcast(), @@ -267,13 +275,11 @@ private void OnEmergencyRepealAll(EntityUid uid, EmergencyShuttleConsoleComponen private void OnEmergencyRepeal(EntityUid uid, EmergencyShuttleConsoleComponent component, EmergencyShuttleRepealMessage args) { - var player = args.Session.AttachedEntity; - if (player == null) - return; + var player = args.Actor; - if (!_idSystem.TryFindIdCard(player.Value, out var idCard) || !_reader.IsAllowed(idCard, uid)) + if (!_idSystem.TryFindIdCard(player, out var idCard) || !_reader.IsAllowed(idCard, uid)) { - _popup.PopupCursor(Loc.GetString("emergency-shuttle-console-denied"), player.Value, PopupType.Medium); + _popup.PopupCursor(Loc.GetString("emergency-shuttle-console-denied"), player, PopupType.Medium); return; } @@ -281,7 +287,7 @@ private void OnEmergencyRepeal(EntityUid uid, EmergencyShuttleConsoleComponent c if (!component.AuthorizedEntities.Remove(MetaData(idCard).EntityName)) return; - _logger.Add(LogType.EmergencyShuttle, LogImpact.High, $"Emergency shuttle early launch REPEAL by {args.Session:user}"); + _logger.Add(LogType.EmergencyShuttle, LogImpact.High, $"Emergency shuttle early launch REPEAL by {args.Actor:user}"); var remaining = component.AuthorizationsRequired - component.AuthorizedEntities.Count; _announcer.SendAnnouncement( _announcer.GetAnnouncementId("ShuttleAuthRevoked"), @@ -296,13 +302,11 @@ private void OnEmergencyRepeal(EntityUid uid, EmergencyShuttleConsoleComponent c private void OnEmergencyAuthorize(EntityUid uid, EmergencyShuttleConsoleComponent component, EmergencyShuttleAuthorizeMessage args) { - var player = args.Session.AttachedEntity; - if (player == null) - return; + var player = args.Actor; - if (!_idSystem.TryFindIdCard(player.Value, out var idCard) || !_reader.IsAllowed(idCard, uid)) + if (!_idSystem.TryFindIdCard(player, out var idCard) || !_reader.IsAllowed(idCard, uid)) { - _popup.PopupCursor(Loc.GetString("emergency-shuttle-console-denied"), args.Session, PopupType.Medium); + _popup.PopupCursor(Loc.GetString("emergency-shuttle-console-denied"), args.Actor, PopupType.Medium); return; } @@ -310,7 +314,7 @@ private void OnEmergencyAuthorize(EntityUid uid, EmergencyShuttleConsoleComponen if (!component.AuthorizedEntities.Add(MetaData(idCard).EntityName)) return; - _logger.Add(LogType.EmergencyShuttle, LogImpact.High, $"Emergency shuttle early launch AUTH by {args.Session:user}"); + _logger.Add(LogType.EmergencyShuttle, LogImpact.High, $"Emergency shuttle early launch AUTH by {args.Actor:user}"); var remaining = component.AuthorizationsRequired - component.AuthorizedEntities.Count; if (remaining > 0) @@ -362,9 +366,10 @@ private void UpdateConsoleState(EntityUid uid, EmergencyShuttleConsoleComponent auths.Add(auth); } - if (_uiSystem.TryGetUi(uid, EmergencyConsoleUiKey.Key, out var bui)) + if (_uiSystem.HasUi(uid, EmergencyConsoleUiKey.Key)) _uiSystem.SetUiState( - bui, + uid, + EmergencyConsoleUiKey.Key, new EmergencyConsoleBoundUserInterfaceState() { EarlyLaunchTime = EarlyLaunchAuthorized ? _timing.CurTime + TimeSpan.FromSeconds(_consoleAccumulator) : null, diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs index 2df0bc148c..90be263ae2 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs @@ -15,6 +15,7 @@ using Content.Server.Shuttles.Components; using Content.Server.Shuttles.Events; using Content.Server.Station.Components; +using Content.Server.Station.Events; using Content.Server.Station.Systems; using Content.Shared.Access.Systems; using Content.Shared.CCVar; @@ -84,9 +85,9 @@ public override void Initialize() SubscribeLocalEvent(OnRoundStart); SubscribeLocalEvent(OnRoundCleanup); - SubscribeLocalEvent(OnStationStartup); + SubscribeLocalEvent(OnStationStartup); SubscribeLocalEvent(OnCentcommShutdown); - SubscribeLocalEvent(OnCentcommInit); + SubscribeLocalEvent(OnStationInit); SubscribeLocalEvent(OnEmergencyFTL); SubscribeLocalEvent(OnEmergencyFTLComplete); @@ -201,10 +202,9 @@ private void OnShuttleRequestPosition(EmergencyShuttleRequestPositionMessage msg /// private void OnEmergencyFTL(EntityUid uid, EmergencyShuttleComponent component, ref FTLStartedEvent args) { - TimeSpan ftlTime = TimeSpan.FromSeconds + var ftlTime = TimeSpan.FromSeconds ( - TryComp(uid, out var ftlComp) ? - ftlComp.TravelTime : ShuttleSystem.DefaultTravelTime + TryComp(uid, out var ftlComp) ? ftlComp.TravelTime : _shuttle.DefaultTravelTime ); if (TryComp(uid, out var netComp)) @@ -260,10 +260,13 @@ private void OnEmergencyFTLComplete(EntityUid uid, EmergencyShuttleComponent com /// public void CallEmergencyShuttle(EntityUid stationUid, StationEmergencyShuttleComponent? stationShuttle = null) { - if (!Resolve(stationUid, ref stationShuttle) || - !TryComp(stationShuttle.EmergencyShuttle, out var xform) || + if (!Resolve(stationUid, ref stationShuttle)) + return; + + if (!TryComp(stationShuttle.EmergencyShuttle, out var xform) || !TryComp(stationShuttle.EmergencyShuttle, out var shuttle)) { + Log.Error($"Attempted to call an emergency shuttle for an uninitialized station? Station: {ToPrettyString(stationUid)}. Shuttle: {ToPrettyString(stationShuttle.EmergencyShuttle)}"); return; } @@ -329,8 +332,10 @@ public void CallEmergencyShuttle(EntityUid stationUid, StationEmergencyShuttleCo } } - private void OnCentcommInit(EntityUid uid, StationCentcommComponent component, ComponentInit args) + private void OnStationInit(EntityUid uid, StationCentcommComponent component, MapInitEvent args) { + // This is handled on map-init, so that centcomm has finished initializing by the time the StationPostInitEvent + // gets raised if (!_emergencyShuttleEnabled) return; @@ -341,12 +346,12 @@ private void OnCentcommInit(EntityUid uid, StationCentcommComponent component, C return; } - AddCentcomm(component); + AddCentcomm(uid, component); } - private void OnStationStartup(EntityUid uid, StationEmergencyShuttleComponent component, ComponentStartup args) + private void OnStationStartup(Entity ent, ref StationPostInitEvent args) { - AddEmergencyShuttle(uid, component); + AddEmergencyShuttle((ent, ent)); } /// @@ -383,19 +388,22 @@ private void SetupEmergencyShuttle() var centcommQuery = AllEntityQuery(); - while (centcommQuery.MoveNext(out var centcomm)) + while (centcommQuery.MoveNext(out var uid, out var centcomm)) { - AddCentcomm(centcomm); + AddCentcomm(uid, centcomm); } var query = AllEntityQuery(); while (query.MoveNext(out var uid, out var comp)) - AddEmergencyShuttle(uid, comp); + { + AddEmergencyShuttle((uid, comp)); + } } - private void AddCentcomm(StationCentcommComponent component) + private void AddCentcomm(EntityUid station, StationCentcommComponent component) { + DebugTools.Assert(LifeStage(station)>= EntityLifeStage.MapInitialized); if (component.MapEntity != null || component.Entity != null) { Log.Warning("Attempted to re-add an existing centcomm map."); @@ -411,12 +419,13 @@ private void AddCentcomm(StationCentcommComponent component) if (!Exists(otherComp.MapEntity) || !Exists(otherComp.Entity)) { - Log.Error($"Disconvered invalid centcomm component?"); + Log.Error($"Discovered invalid centcomm component?"); ClearCentcomm(otherComp); continue; } component.MapEntity = otherComp.MapEntity; + component.Entity = otherComp.Entity; component.ShuttleIndex = otherComp.ShuttleIndex; return; } @@ -460,6 +469,7 @@ private void AddCentcomm(StationCentcommComponent component) component.MapEntity = map; component.Entity = grid; _shuttle.TryAddFTLDestination(mapId, false, out _); + Log.Info($"Created centcomm grid {ToPrettyString(grid)} on map {ToPrettyString(map)} for station {ToPrettyString(station)}"); } public HashSet GetCentcommMaps() @@ -476,49 +486,67 @@ public HashSet GetCentcommMaps() return maps; } - private void AddEmergencyShuttle(EntityUid uid, StationEmergencyShuttleComponent component) + private void AddEmergencyShuttle(Entity ent) { - if (!_emergencyShuttleEnabled - || component.EmergencyShuttle != null || - !TryComp(uid, out var centcomm) - || !TryComp(centcomm.MapEntity, out MapComponent? map)) + if (!Resolve(ent.Owner, ref ent.Comp1, ref ent.Comp2)) + return; + + if (!_emergencyShuttleEnabled) + return; + + if (ent.Comp1.EmergencyShuttle != null ) + { + if (Exists(ent.Comp1.EmergencyShuttle)) + { + Log.Error($"Attempted to add an emergency shuttle to {ToPrettyString(ent)}, despite a shuttle already existing?"); + return; + } + + Log.Error($"Encountered deleted emergency shuttle during initialization of {ToPrettyString(ent)}"); + ent.Comp1.EmergencyShuttle = null; + } + + if (!TryComp(ent.Comp2.MapEntity, out MapComponent? map)) { + Log.Error($"Failed to add emergency shuttle - centcomm has not been initialized? {ToPrettyString(ent)}"); return; } // Load escape shuttle - var shuttlePath = component.EmergencyShuttlePath; + var shuttlePath = ent.Comp1.EmergencyShuttlePath; var shuttle = _map.LoadGrid(map.MapId, shuttlePath.ToString(), new MapLoadOptions() { // Should be far enough... right? I'm too lazy to bounds check CentCom rn. - Offset = new Vector2(500f + centcomm.ShuttleIndex, 0f), + Offset = new Vector2(500f + ent.Comp2.ShuttleIndex, 0f), // fun fact: if you just fucking yeet centcomm into nullspace anytime you try to spawn the shuttle, then any distance is far enough. so lets not do that LoadMap = false, }); if (shuttle == null) { - Log.Error($"Unable to spawn emergency shuttle {shuttlePath} for {ToPrettyString(uid)}"); + Log.Error($"Unable to spawn emergency shuttle {shuttlePath} for {ToPrettyString(ent)}"); return; } - centcomm.ShuttleIndex += Comp(shuttle.Value).LocalAABB.Width + ShuttleSpawnBuffer; + ent.Comp2.ShuttleIndex += Comp(shuttle.Value).LocalAABB.Width + ShuttleSpawnBuffer; // Update indices for all centcomm comps pointing to same map var query = AllEntityQuery(); while (query.MoveNext(out var comp)) { - if (comp == centcomm || comp.MapEntity != centcomm.MapEntity) + if (comp == ent.Comp2 || comp.MapEntity != ent.Comp2.MapEntity) continue; - comp.ShuttleIndex = centcomm.ShuttleIndex; + comp.ShuttleIndex = ent.Comp2.ShuttleIndex; } - component.EmergencyShuttle = shuttle; + ent.Comp1.EmergencyShuttle = shuttle; EnsureComp(shuttle.Value); EnsureComp(shuttle.Value); EnsureComp(shuttle.Value); + + Log.Info($"Added emergency shuttle {ToPrettyString(shuttle)} for station {ToPrettyString(ent)} and centcomm {ToPrettyString(ent.Comp2.Entity)}"); } /// diff --git a/Content.Server/Shuttles/Systems/RadarConsoleSystem.cs b/Content.Server/Shuttles/Systems/RadarConsoleSystem.cs index b7f08b4b34..1de20a8734 100644 --- a/Content.Server/Shuttles/Systems/RadarConsoleSystem.cs +++ b/Content.Server/Shuttles/Systems/RadarConsoleSystem.cs @@ -39,7 +39,7 @@ protected override void UpdateState(EntityUid uid, RadarConsoleComponent compone angle = Angle.Zero; } - if (_uiSystem.TryGetUi(uid, RadarConsoleUiKey.Key, out var bui)) + if (_uiSystem.HasUi(uid, RadarConsoleUiKey.Key)) { NavInterfaceState state; var docks = _console.GetAllDocks(); @@ -53,7 +53,7 @@ protected override void UpdateState(EntityUid uid, RadarConsoleComponent compone state = _console.GetNavState(uid, docks); } - _uiSystem.SetUiState(bui, new NavBoundUserInterfaceState(state)); + _uiSystem.SetUiState(uid, RadarConsoleUiKey.Key, new NavBoundUserInterfaceState(state)); } } } diff --git a/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs b/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs index fac74e34c5..6f24208c3a 100644 --- a/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs +++ b/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs @@ -136,13 +136,12 @@ public void RefreshShuttleConsoles() /// private void OnConsoleUIClose(EntityUid uid, ShuttleConsoleComponent component, BoundUIClosedEvent args) { - if ((ShuttleConsoleUiKey) args.UiKey != ShuttleConsoleUiKey.Key || - args.Session.AttachedEntity is not { } user) + if ((ShuttleConsoleUiKey) args.UiKey != ShuttleConsoleUiKey.Key) { return; } - RemovePilot(user); + RemovePilot(args.Actor); } private void OnConsoleUIOpenAttempt(EntityUid uid, ShuttleConsoleComponent component, @@ -265,9 +264,9 @@ private void UpdateState(EntityUid consoleUid, ref DockingInterfaceState? dockSt new List()); } - if (_ui.TryGetUi(consoleUid, ShuttleConsoleUiKey.Key, out var bui)) + if (_ui.HasUi(consoleUid, ShuttleConsoleUiKey.Key)) { - _ui.SetUiState(bui, new ShuttleBoundUserInterfaceState(navState, mapState, dockState)); + _ui.SetUiState(consoleUid, ShuttleConsoleUiKey.Key, new ShuttleBoundUserInterfaceState(navState, mapState, dockState)); } } diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs index 5128869103..cf67b11fe5 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs @@ -6,11 +6,15 @@ using Content.Server.Station.Events; using Content.Shared.Body.Components; using Content.Shared.Buckle.Components; +using Content.Shared.CCVar; +using Content.Shared.Clothing; +using Content.Shared.Database; using Content.Shared.Ghost; using Content.Shared.Maps; using Content.Shared.Parallax; using Content.Shared.Shuttles.Components; using Content.Shared.Shuttles.Systems; +using Content.Shared.Standing; using Content.Shared.StatusEffect; using Content.Shared.Timing; using Content.Shared.Whitelist; @@ -33,14 +37,6 @@ public sealed partial class ShuttleSystem * This is a way to move a shuttle from one location to another, via an intermediate map for fanciness. */ - public const float DefaultStartupTime = 5.5f; - public const float DefaultTravelTime = 20f; - public const float DefaultArrivalTime = 5f; - private const float FTLCooldown = 10f; - public const float FTLMassLimit = 300f; - - // I'm too lazy to make CVars. - private readonly SoundSpecifier _startupSound = new SoundPathSpecifier("/Audio/Effects/Shuttle/hyperspace_begin.ogg") { Params = AudioParams.Default.WithVolume(-5f), @@ -51,7 +47,12 @@ public sealed partial class ShuttleSystem Params = AudioParams.Default.WithVolume(-5f), }; - private readonly TimeSpan _hyperspaceKnockdownTime = TimeSpan.FromSeconds(5); + public float DefaultStartupTime; + public float DefaultTravelTime; + public float DefaultArrivalTime; + private float FTLCooldown; + public float FTLMassLimit; + private TimeSpan _hyperspaceKnockdownTime = TimeSpan.FromSeconds(5); /// /// Left-side of the station we're allowed to use @@ -89,6 +90,13 @@ private void InitializeFTL() _physicsQuery = GetEntityQuery(); _statusQuery = GetEntityQuery(); _xformQuery = GetEntityQuery(); + + _cfg.OnValueChanged(CCVars.FTLStartupTime, time => DefaultStartupTime = time, true); + _cfg.OnValueChanged(CCVars.FTLTravelTime, time => DefaultTravelTime = time, true); + _cfg.OnValueChanged(CCVars.FTLArrivalTime, time => DefaultArrivalTime = time, true); + _cfg.OnValueChanged(CCVars.FTLCooldown, time => FTLCooldown = time, true); + _cfg.OnValueChanged(CCVars.FTLMassLimit, time => FTLMassLimit = time, true); + _cfg.OnValueChanged(CCVars.HyperspaceKnockdownTime, time => _hyperspaceKnockdownTime = TimeSpan.FromSeconds(time), true); } private void OnStationPostInit(ref StationPostInitEvent ev) @@ -210,7 +218,9 @@ public bool CanFTL(EntityUid shuttleUid, [NotNullWhen(false)] out string? reason return false; } - if (TryComp(shuttleUid, out PhysicsComponent? shuttlePhysics) && shuttlePhysics.Mass > FTLMassLimit) + if (FTLMassLimit > 0 && + TryComp(shuttleUid, out PhysicsComponent? shuttlePhysics) && + shuttlePhysics.Mass > FTLMassLimit) { reason = Loc.GetString("shuttle-console-mass"); return false; @@ -243,15 +253,18 @@ public void FTLToCoordinates( ShuttleComponent component, EntityCoordinates coordinates, Angle angle, - float startupTime = DefaultStartupTime, - float hyperspaceTime = DefaultTravelTime, + float? startupTime = null, + float? hyperspaceTime = null, string? priorityTag = null) { if (!TrySetupFTL(shuttleUid, component, out var hyperspace)) return; - hyperspace.StartupTime = startupTime; - hyperspace.TravelTime = hyperspaceTime; + startupTime ??= DefaultStartupTime; + hyperspaceTime ??= DefaultTravelTime; + + hyperspace.StartupTime = startupTime.Value; + hyperspace.TravelTime = hyperspaceTime.Value; hyperspace.StateTime = StartEndTime.FromStartDuration( _gameTiming.CurTime, TimeSpan.FromSeconds(hyperspace.StartupTime)); @@ -275,16 +288,19 @@ public void FTLToDock( EntityUid shuttleUid, ShuttleComponent component, EntityUid target, - float startupTime = DefaultStartupTime, - float hyperspaceTime = DefaultTravelTime, + float? startupTime = null, + float? hyperspaceTime = null, string? priorityTag = null) { if (!TrySetupFTL(shuttleUid, component, out var hyperspace)) return; + startupTime ??= DefaultStartupTime; + hyperspaceTime ??= DefaultTravelTime; + var config = _dockSystem.GetDockingConfig(shuttleUid, target, priorityTag); - hyperspace.StartupTime = startupTime; - hyperspace.TravelTime = hyperspaceTime; + hyperspace.StartupTime = startupTime.Value; + hyperspace.TravelTime = hyperspaceTime.Value; hyperspace.StateTime = StartEndTime.FromStartDuration( _gameTiming.CurTime, TimeSpan.FromSeconds(hyperspace.StartupTime)); @@ -583,10 +599,7 @@ private void DoTheDinosaur(TransformComponent xform) { foreach (var child in toKnock) { - if (!_statusQuery.TryGetComponent(child, out var status)) - continue; - - _stuns.TryParalyze(child, _hyperspaceKnockdownTime, true, status); + _layingDown.TryLieDown(child, behavior: DropHeldItemsBehavior.DropIfStanding); // WD EDIT // If the guy we knocked down is on a spaced tile, throw them too if (grid != null) @@ -604,6 +617,12 @@ private void KnockOverKids(TransformComponent xform, ref ValueList to if (!_buckleQuery.TryGetComponent(child, out var buckle) || buckle.Buckled) continue; + // WD EDIT START + if (_inventory.TryGetSlotEntity(child, "shoes", out var shoes) && + TryComp(shoes, out var magboots) && magboots.On) + continue; + // WD EDIT END + toKnock.Add(child); } } @@ -863,6 +882,8 @@ private void Smimsh(EntityUid uid, FixturesComponent? manager = null, MapGridCom if (_bodyQuery.TryGetComponent(ent, out var mob)) { + _logger.Add(LogType.Gib, LogImpact.Extreme, $"{ToPrettyString(ent):player} got gibbed by the shuttle" + + $" {ToPrettyString(uid)} arriving from FTL at {xform.Coordinates:coordinates}"); var gibs = _bobby.GibBody(ent, body: mob); _immuneEnts.UnionWith(gibs); continue; diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.IFF.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.IFF.cs index bf265da2e6..ce79466b58 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.IFF.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.IFF.cs @@ -57,7 +57,7 @@ private void OnIFFConsoleAnchor(EntityUid uid, IFFConsoleComponent component, re !TryComp(uid, out var xform) || !TryComp(xform.GridUid, out var iff)) { - _uiSystem.TrySetUiState(uid, IFFConsoleUiKey.Key, new IFFConsoleBoundUserInterfaceState() + _uiSystem.SetUiState(uid, IFFConsoleUiKey.Key, new IFFConsoleBoundUserInterfaceState() { AllowedFlags = component.AllowedFlags, Flags = IFFFlags.None, @@ -65,7 +65,7 @@ private void OnIFFConsoleAnchor(EntityUid uid, IFFConsoleComponent component, re } else { - _uiSystem.TrySetUiState(uid, IFFConsoleUiKey.Key, new IFFConsoleBoundUserInterfaceState() + _uiSystem.SetUiState(uid, IFFConsoleUiKey.Key, new IFFConsoleBoundUserInterfaceState() { AllowedFlags = component.AllowedFlags, Flags = iff.Flags, @@ -83,7 +83,7 @@ protected override void UpdateIFFInterfaces(EntityUid gridUid, IFFComponent comp if (xform.GridUid != gridUid) continue; - _uiSystem.TrySetUiState(uid, IFFConsoleUiKey.Key, new IFFConsoleBoundUserInterfaceState() + _uiSystem.SetUiState(uid, IFFConsoleUiKey.Key, new IFFConsoleBoundUserInterfaceState() { AllowedFlags = comp.AllowedFlags, Flags = component.Flags, diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.cs index 6dc25e8d76..6858f2259e 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.cs @@ -1,10 +1,13 @@ +using Content.Server.Administration.Logs; using Content.Server.Body.Systems; using Content.Server.Doors.Systems; using Content.Server.Parallax; using Content.Server.Shuttles.Components; +using Content.Server.Standing; using Content.Server.Station.Systems; using Content.Server.Stunnable; using Content.Shared.GameTicking; +using Content.Shared.Inventory; using Content.Shared.Mobs.Systems; using Content.Shared.Shuttles.Systems; using Content.Shared.Throwing; @@ -48,6 +51,9 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem [Dependency] private readonly ThrowingSystem _throwing = default!; [Dependency] private readonly ThrusterSystem _thruster = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; + [Dependency] private readonly IAdminLogManager _logger = default!; + [Dependency] private readonly InventorySystem _inventory = default!; // WD EDIT + [Dependency] private readonly LayingDownSystem _layingDown = default!; // WD EDIT public const float TileMassMultiplier = 0.5f; diff --git a/Content.Server/Shuttles/Systems/ThrusterSystem.cs b/Content.Server/Shuttles/Systems/ThrusterSystem.cs index be55cd9a62..46715dd291 100644 --- a/Content.Server/Shuttles/Systems/ThrusterSystem.cs +++ b/Content.Server/Shuttles/Systems/ThrusterSystem.cs @@ -1,5 +1,6 @@ using System.Numerics; using Content.Server.Audio; +using Content.Server.Construction; using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; using Content.Server.Shuttles.Components; @@ -51,6 +52,9 @@ public override void Initialize() SubscribeLocalEvent(OnThrusterExamine); + SubscribeLocalEvent(OnRefreshParts); + SubscribeLocalEvent(OnUpgradeExamine); + SubscribeLocalEvent(OnShuttleTileChange); } @@ -264,11 +268,6 @@ public void EnableThruster(EntityUid uid, ThrusterComponent component, Transform return; } - if (TryComp(uid, out var apcPower)) - { - apcPower.NeedsPower = true; - } - component.IsOn = true; if (!EntityManager.TryGetComponent(xform.GridUid, out ShuttleComponent? shuttleComponent)) @@ -371,11 +370,6 @@ public void DisableThruster(EntityUid uid, ThrusterComponent component, EntityUi if (!EntityManager.TryGetComponent(gridId, out ShuttleComponent? shuttleComponent)) return; - if (TryComp(uid, out var apcPower)) - { - apcPower.NeedsPower = false; - } - // Logger.DebugS("thruster", $"Disabled thruster {uid}"); switch (component.Type) @@ -580,6 +574,24 @@ public void SetAngularThrust(ShuttleComponent component, bool on) } } + private void OnRefreshParts(EntityUid uid, ThrusterComponent component, RefreshPartsEvent args) + { + if (component.IsOn) // safely disable thruster to prevent negative thrust + DisableThruster(uid, component); + + var thrustRating = args.PartRatings[component.MachinePartThrust]; + + component.Thrust = component.BaseThrust * MathF.Pow(component.PartRatingThrustMultiplier, thrustRating - 1); + + if (component.Enabled && CanEnable(uid, component)) + EnableThruster(uid, component); + } + + private void OnUpgradeExamine(EntityUid uid, ThrusterComponent component, UpgradeExamineEvent args) + { + args.AddPercentageUpgrade("thruster-comp-upgrade-thrust", component.Thrust / component.BaseThrust); + } + #endregion private int GetFlagIndex(DirectionFlag flag) diff --git a/Content.Server/Silicon/BatteryLocking/BatterySlotRequiresLockSystem.cs b/Content.Server/Silicon/BatteryLocking/BatterySlotRequiresLockSystem.cs index 98e1cb5584..12e8669128 100644 --- a/Content.Server/Silicon/BatteryLocking/BatterySlotRequiresLockSystem.cs +++ b/Content.Server/Silicon/BatteryLocking/BatterySlotRequiresLockSystem.cs @@ -2,7 +2,7 @@ using Content.Shared.Lock; using Content.Shared.Popups; using Content.Shared.Silicon.Components; -using Content.Shared.IdentityManagement; +using Content.Shared.IdentityManagement; namespace Content.Server.Silicon.BatteryLocking; @@ -10,19 +10,18 @@ public sealed class BatterySlotRequiresLockSystem : EntitySystem { [Dependency] private readonly ItemSlotsSystem _itemSlotsSystem = default!; - [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; - /// public override void Initialize() { base.Initialize(); SubscribeLocalEvent(LockToggled); - SubscribeLocalEvent(LockToggleAttempted); - + SubscribeLocalEvent(LockToggleAttempted); } + private void LockToggled(EntityUid uid, BatterySlotRequiresLockComponent component, LockToggledEvent args) { - if (!TryComp(uid, out var lockComp) + if (!TryComp(uid, out var lockComp) || !TryComp(uid, out var itemslots) || !_itemSlotsSystem.TryGetSlot(uid, component.ItemSlot, out var slot, itemslots)) return; @@ -33,9 +32,9 @@ private void LockToggled(EntityUid uid, BatterySlotRequiresLockComponent compone private void LockToggleAttempted(EntityUid uid, BatterySlotRequiresLockComponent component, LockToggleAttemptEvent args) { if (args.User == uid - || !TryComp(uid, out var siliconComp)) + || !HasComp(uid)) return; - + _popupSystem.PopupEntity(Loc.GetString("batteryslotrequireslock-component-alert-owner", ("user", Identity.Entity(args.User, EntityManager))), uid, uid, PopupType.Large); } diff --git a/Content.Server/Silicon/BlindHealing/BlindHealingComponent.cs b/Content.Server/Silicon/BlindHealing/BlindHealingComponent.cs index 4c3c478c4b..fe21849170 100644 --- a/Content.Server/Silicon/BlindHealing/BlindHealingComponent.cs +++ b/Content.Server/Silicon/BlindHealing/BlindHealingComponent.cs @@ -1,28 +1,23 @@ -using Content.Shared.Damage; -using Content.Shared.Tools; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +namespace Content.Server.Silicon.BlindHealing; -namespace Content.Server.Silicon.BlindHealing +[RegisterComponent] +public sealed partial class BlindHealingComponent : Component { - [RegisterComponent] - public sealed partial class BlindHealingComponent : Component - { - [DataField] - public int DoAfterDelay = 3; + [DataField] + public int DoAfterDelay = 3; - /// - /// A multiplier that will be applied to the above if an entity is repairing themselves. - /// - [DataField] - public float SelfHealPenalty = 3f; + /// + /// A multiplier that will be applied to the above if an entity is repairing themselves. + /// + [DataField] + public float SelfHealPenalty = 3f; - /// - /// Whether or not an entity is allowed to repair itself. - /// - [DataField] - public bool AllowSelfHeal = true; + /// + /// Whether or not an entity is allowed to repair itself. + /// + [DataField] + public bool AllowSelfHeal = true; - [DataField(required: true)] - public List DamageContainers; - } + [DataField(required: true)] + public List DamageContainers; } diff --git a/Content.Server/Silicon/BlindHealing/BlindHealingSystem.cs b/Content.Server/Silicon/BlindHealing/BlindHealingSystem.cs index 6cf60e6ef3..b9d26b59f7 100644 --- a/Content.Server/Silicon/BlindHealing/BlindHealingSystem.cs +++ b/Content.Server/Silicon/BlindHealing/BlindHealingSystem.cs @@ -12,110 +12,87 @@ using Content.Shared.Popups; using Content.Shared.Stacks; -namespace Content.Server.Silicon.BlindHealing +namespace Content.Server.Silicon.BlindHealing; + +public sealed class BlindHealingSystem : SharedBlindHealingSystem { - public sealed class BlindHealingSystem : SharedBlindHealingSystem + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly BlindableSystem _blindableSystem = default!; + [Dependency] private readonly StackSystem _stackSystem = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + + public override void Initialize() { - [Dependency] private readonly SharedPopupSystem _popup = default!; - [Dependency] private readonly IAdminLogManager _adminLogger= default!; - [Dependency] private readonly BlindableSystem _blindableSystem = default!; - [Dependency] private readonly StackSystem _stackSystem = default!; - [Dependency] private readonly DamageableSystem _damageableSystem = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; - - public override void Initialize() - { - SubscribeLocalEvent(OnUse); - SubscribeLocalEvent(OnInteract); - SubscribeLocalEvent(OnHealingFinished); - } - - private void OnHealingFinished(EntityUid uid, BlindHealingComponent component, HealingDoAfterEvent args) - { - Log.Info("event started!"); - - if (args.Cancelled || args.Target == null) - return; - - EntityUid target = (EntityUid) args.Target; - - if(!EntityManager.TryGetComponent(target, out BlindableComponent? blindcomp) - || blindcomp is { EyeDamage: 0 }) - return; - - if(EntityManager.TryGetComponent(uid, out StackComponent? stackComponent)) - { - double price = 1; - if (EntityManager.TryGetComponent(uid, out StackPriceComponent? stackPrice)) - price = stackPrice.Price; - _stackSystem.SetCount(uid, (int) (_stackSystem.GetCount(uid, stackComponent) - price), stackComponent); + SubscribeLocalEvent(OnUse); + SubscribeLocalEvent(OnInteract); + SubscribeLocalEvent(OnHealingFinished); + } - } + private void OnHealingFinished(EntityUid uid, BlindHealingComponent component, HealingDoAfterEvent args) + { + if (args.Cancelled || args.Target == null + || !TryComp(args.Target, out var blindComp) + || blindComp is { EyeDamage: 0 }) + return; - _blindableSystem.AdjustEyeDamage((target, blindcomp), -blindcomp!.EyeDamage); + if (TryComp(uid, out var stackComponent) + && TryComp(uid, out var stackPrice)) + _stackSystem.SetCount(uid, (int) (_stackSystem.GetCount(uid, stackComponent) - stackPrice.Price), stackComponent); - _adminLogger.Add(LogType.Healed, $"{ToPrettyString(args.User):user} repaired {ToPrettyString(uid):target}'s vision"); + _blindableSystem.AdjustEyeDamage((args.Target.Value, blindComp), -blindComp.EyeDamage); - var str = Loc.GetString("comp-repairable-repair", - ("target", uid), - ("tool", args.Used!)); - _popup.PopupEntity(str, uid, args.User); + _adminLogger.Add(LogType.Healed, $"{ToPrettyString(args.User):user} repaired {ToPrettyString(uid):target}'s vision"); - } + var str = Loc.GetString("comp-repairable-repair", + ("target", uid), + ("tool", args.Used!)); + _popup.PopupEntity(str, uid, args.User); - private bool TryHealBlindness(EntityUid uid, EntityUid user, EntityUid target, float delay) - { - var doAfterEventArgs = - new DoAfterArgs(EntityManager, user, delay, new HealingDoAfterEvent(), uid, target: target, used: uid) - { - NeedHand = true, - BreakOnUserMove = true, - BreakOnWeightlessMove = false, - }; + } - _doAfter.TryStartDoAfter(doAfterEventArgs); - return true; - } + private bool TryHealBlindness(EntityUid uid, EntityUid user, EntityUid target, float delay) + { + var doAfterEventArgs = + new DoAfterArgs(EntityManager, user, delay, new HealingDoAfterEvent(), uid, target: target, used: uid) + { + NeedHand = true, + BreakOnUserMove = true, + BreakOnWeightlessMove = false, + }; - private void OnInteract(EntityUid uid, BlindHealingComponent component, ref AfterInteractEvent args) - { + _doAfter.TryStartDoAfter(doAfterEventArgs); + return true; + } - if (args.Handled - || !TryComp(args.User, out DamageableComponent? damageable) - || damageable.DamageContainerID != null - && !component.DamageContainers.Contains(damageable.DamageContainerID) - || !TryComp(args.User, out BlindableComponent? blindcomp) - || blindcomp is { EyeDamage: 0 }) - return; + private void OnInteract(EntityUid uid, BlindHealingComponent component, ref AfterInteractEvent args) + { - float delay = component.DoAfterDelay; + if (args.Handled + || !TryComp(args.User, out var damageable) + || damageable.DamageContainerID != null && !component.DamageContainers.Contains(damageable.DamageContainerID) + || !TryComp(args.User, out var blindcomp) + || blindcomp.EyeDamage == 0 + || args.User == args.Target && !component.AllowSelfHeal) + return; + + TryHealBlindness(uid, args.User, args.User, + args.User == args.Target + ? component.DoAfterDelay * component.SelfHealPenalty + : component.DoAfterDelay); + } - if (args.User == args.Target) - { - if (!component.AllowSelfHeal) - return; - delay *= component.SelfHealPenalty; - } - - TryHealBlindness(uid, args.User, args.User, delay); - } - - private void OnUse(EntityUid uid, BlindHealingComponent component, ref UseInHandEvent args) - { - if (args.Handled - || !TryComp(args.User, out DamageableComponent? damageable) - || damageable.DamageContainerID != null - && !component.DamageContainers.Contains(damageable.DamageContainerID) - || !TryComp(args.User, out BlindableComponent? blindcomp) - || blindcomp is { EyeDamage: 0 } - || !component.AllowSelfHeal) - return; - - float delay = component.DoAfterDelay; - delay *= component.SelfHealPenalty; - - TryHealBlindness(uid, args.User, args.User, delay); - - } + private void OnUse(EntityUid uid, BlindHealingComponent component, ref UseInHandEvent args) + { + if (args.Handled + || !TryComp(args.User, out var damageable) + || damageable.DamageContainerID != null && !component.DamageContainers.Contains(damageable.DamageContainerID) + || !TryComp(args.User, out var blindcomp) + || blindcomp.EyeDamage == 0 + || !component.AllowSelfHeal) + return; + + TryHealBlindness(uid, args.User, args.User, + component.DoAfterDelay * component.SelfHealPenalty); } } diff --git a/Content.Server/Silicon/Charge/Components/SiliconDownOnDeadComponent.cs b/Content.Server/Silicon/Charge/Components/SiliconDownOnDeadComponent.cs index 3080144cd4..4b3aad33ab 100644 --- a/Content.Server/Silicon/Charge/Components/SiliconDownOnDeadComponent.cs +++ b/Content.Server/Silicon/Charge/Components/SiliconDownOnDeadComponent.cs @@ -1,5 +1,3 @@ -using System.Threading; - namespace Content.Server.Silicon.Death; /// @@ -15,5 +13,5 @@ public sealed partial class SiliconDownOnDeadComponent : Component /// Is this Silicon currently dead? /// [ViewVariables(VVAccess.ReadOnly)] - public bool Dead { get; set; } = false; + public bool Dead; } diff --git a/Content.Server/Silicon/Charge/Systems/SiliconChargeDeathSystem.cs b/Content.Server/Silicon/Charge/Systems/SiliconChargeDeathSystem.cs index d6fa07a1a1..d4d1db5ed9 100644 --- a/Content.Server/Silicon/Charge/Systems/SiliconChargeDeathSystem.cs +++ b/Content.Server/Silicon/Charge/Systems/SiliconChargeDeathSystem.cs @@ -2,14 +2,9 @@ using Content.Shared.Silicon.Systems; using Content.Server.Bed.Sleep; using Content.Shared.Bed.Sleep; -using Content.Server.Sound.Components; using Content.Server.Silicon.Charge; -using System.Threading; using Content.Server.Humanoid; using Content.Shared.Humanoid; -using Content.Shared.Humanoid.Markings; -using Robust.Shared.Utility; -using Timer = Robust.Shared.Timing.Timer; namespace Content.Server.Silicon.Death; @@ -40,7 +35,7 @@ private void OnSiliconChargeStateUpdate(EntityUid uid, SiliconDownOnDeadComponen if (args.ChargePercent == 0 && !siliconDeadComp.Dead) SiliconDead(uid, siliconDeadComp, batteryComp, uid); else if (args.ChargePercent != 0 && siliconDeadComp.Dead) - SiliconUnDead(uid, siliconDeadComp, batteryComp, uid); + SiliconUnDead(uid, siliconDeadComp, batteryComp, uid); } private void SiliconDead(EntityUid uid, SiliconDownOnDeadComponent siliconDeadComp, BatteryComponent? batteryComp, EntityUid batteryUid) @@ -54,7 +49,7 @@ private void SiliconDead(EntityUid uid, SiliconDownOnDeadComponent siliconDeadCo EntityManager.EnsureComponent(uid); EntityManager.EnsureComponent(uid); - if (TryComp(uid, out HumanoidAppearanceComponent? humanoidAppearanceComponent)) + if (TryComp(uid, out var humanoidAppearanceComponent)) { var layers = HumanoidVisualLayersExtension.Sublayers(HumanoidVisualLayers.HeadSide); _humanoidAppearanceSystem.SetLayersVisibility(uid, layers, false, true, humanoidAppearanceComponent); diff --git a/Content.Server/Silicon/Charge/Systems/SiliconChargeSystem.cs b/Content.Server/Silicon/Charge/Systems/SiliconChargeSystem.cs index de50c828bd..d8b034a69f 100644 --- a/Content.Server/Silicon/Charge/Systems/SiliconChargeSystem.cs +++ b/Content.Server/Silicon/Charge/Systems/SiliconChargeSystem.cs @@ -10,20 +10,16 @@ using Content.Shared.Silicon.Systems; using Content.Shared.Movement.Systems; using Content.Server.Body.Components; -using Content.Server.Power.EntitySystems; using Robust.Shared.Containers; using Content.Shared.Mind.Components; using System.Diagnostics.CodeAnalysis; using Content.Server.PowerCell; using Robust.Shared.Timing; using Robust.Shared.Configuration; -using Robust.Shared.Audio.Systems; using Robust.Shared.Utility; using Content.Shared.CCVar; using Content.Shared.PowerCell.Components; -using Content.Shared.Mind; using Content.Shared.Alert; -using Content.Server.Silicon.Death; namespace Content.Server.Silicon.Charge; @@ -34,7 +30,6 @@ public sealed class SiliconChargeSystem : EntitySystem [Dependency] private readonly FlammableSystem _flammable = default!; [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly MovementSpeedModifierSystem _moveMod = default!; - [Dependency] private readonly SharedContainerSystem _container = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IConfigurationManager _config = default!; [Dependency] private readonly PowerCellSystem _powerCell = default!; @@ -49,27 +44,23 @@ public override void Initialize() public bool TryGetSiliconBattery(EntityUid silicon, [NotNullWhen(true)] out BatteryComponent? batteryComp) { batteryComp = null; - if (!TryComp(silicon, out SiliconComponent? siliconComp)) + if (!HasComp(silicon)) return false; - // try get a battery directly on the inserted entity if (TryComp(silicon, out batteryComp) || _powerCell.TryGetBatteryFromSlot(silicon, out batteryComp)) return true; - //DebugTools.Assert("SiliconComponent does not contain Battery"); return false; } private void OnSiliconStartup(EntityUid uid, SiliconComponent component, ComponentStartup args) { - if (!TryComp(uid, out PowerCellSlotComponent? batterySlot)) + if (!HasComp(uid)) return; - var container = _container.GetContainer(uid, batterySlot.CellSlotId); - if (component.EntityType.GetType() != typeof(SiliconType)) DebugTools.Assert("SiliconComponent.EntityType is not a SiliconType enum."); } @@ -82,7 +73,8 @@ public override void Update(float frameTime) var query = EntityQueryEnumerator(); while (query.MoveNext(out var silicon, out var siliconComp)) { - if (!siliconComp.BatteryPowered) + if (_mobState.IsDead(silicon) + || !siliconComp.BatteryPowered) continue; // Check if the Silicon is an NPC, and if so, follow the delay as specified in the CVAR. @@ -107,20 +99,11 @@ public override void Update(float frameTime) continue; } - // If the silicon is dead, skip it. - if (_mobState.IsDead(silicon)) + // If the silicon ghosted or is SSD while still being powered, skip it. + if (TryComp(silicon, out var mindContComp) + && !mindContComp.HasMind) continue; - // If the silicon ghosted or is SSD while still being powered, skip it. - DeltaV - if (EntityManager.TryGetComponent(silicon, out var mindContComp) - && EntityManager.TryGetComponent(silicon, out var siliconDeathComp)) - { - if ((mindContComp.HasMind == false || CompOrNull(mindContComp.Mind)?.Session == null) && !siliconDeathComp.Dead) - { - 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. @@ -131,7 +114,7 @@ public override void Update(float frameTime) // 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. + drainRateFinalAddi += SiliconHeatEffects(silicon, siliconComp, 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. @@ -166,14 +149,12 @@ public void UpdateChargeState(EntityUid uid, short chargePercent, SiliconCompone } } - private float SiliconHeatEffects(EntityUid silicon, float frameTime) + private float SiliconHeatEffects(EntityUid silicon, SiliconComponent siliconComp, float frameTime) { - if (!EntityManager.TryGetComponent(silicon, out var temperComp) - || !EntityManager.TryGetComponent(silicon, out var thermalComp)) + if (!TryComp(silicon, out var temperComp) + || !TryComp(silicon, out var thermalComp)) return 0; - var siliconComp = EntityManager.GetComponent(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; @@ -198,12 +179,11 @@ private float SiliconHeatEffects(EntityUid silicon, float frameTime) return hotTempMulti; _popup.PopupEntity(Loc.GetString("silicon-overheating"), silicon, silicon, PopupType.MediumCaution); - if (_random.Prob(Math.Clamp(temperComp.CurrentTemperature / (upperThresh * 5), 0.001f, 0.9f))) - { - //MaximumFireStacks and MinimumFireStacks doesn't exists on EE - _flammable.AdjustFireStacks(silicon, Math.Clamp(siliconComp.FireStackMultiplier, -10, 10), flamComp); - _flammable.Ignite(silicon, silicon, flamComp); - } + if (!_random.Prob(Math.Clamp(temperComp.CurrentTemperature / (upperThresh * 5), 0.001f, 0.9f))) + return hotTempMulti; + + _flammable.AdjustFireStacks(silicon, Math.Clamp(siliconComp.FireStackMultiplier, -10, 10), flamComp); + _flammable.Ignite(silicon, silicon, flamComp); return hotTempMulti; } diff --git a/Content.Server/Silicon/DeadStartupButtonSystem/DeadStartupButtonSystem.cs b/Content.Server/Silicon/DeadStartupButtonSystem/DeadStartupButtonSystem.cs index a25f2a2254..6e516f3011 100644 --- a/Content.Server/Silicon/DeadStartupButtonSystem/DeadStartupButtonSystem.cs +++ b/Content.Server/Silicon/DeadStartupButtonSystem/DeadStartupButtonSystem.cs @@ -1,4 +1,3 @@ -using Content.Server.Chat.Systems; using Content.Server.Lightning; using Content.Server.Popups; using Content.Server.PowerCell; @@ -25,11 +24,11 @@ public sealed class DeadStartupButtonSystem : SharedDeadStartupButtonSystem [Dependency] private readonly LightningSystem _lightning = default!; [Dependency] private readonly SiliconChargeSystem _siliconChargeSystem = default!; [Dependency] private readonly PowerCellSystem _powerCell = default!; - [Dependency] private readonly ChatSystem _chatSystem = default!; /// public override void Initialize() { + base.Initialize(); SubscribeLocalEvent(OnDoAfter); SubscribeLocalEvent(OnElectrocuted); SubscribeLocalEvent(OnMobStateChanged); @@ -39,14 +38,13 @@ public override void Initialize() private void OnDoAfter(EntityUid uid, DeadStartupButtonComponent comp, OnDoAfterButtonPressedEvent args) { if (args.Handled || args.Cancelled - || !TryComp(uid, out MobStateComponent? mobStateComponent) + || !TryComp(uid, out var mobStateComponent) || !_mobState.IsDead(uid, mobStateComponent) - || !TryComp(uid, out MobThresholdsComponent? mobThresholdsComponent) - || !TryComp(uid, out DamageableComponent? damageable)) + || !TryComp(uid, out var mobThresholdsComponent) + || !TryComp(uid, out var damageable) + || !_mobThreshold.TryGetThresholdForState(uid, MobState.Critical, out var criticalThreshold, mobThresholdsComponent)) return; - var criticalThreshold = _mobThreshold.GetThresholdForState(uid, MobState.Critical, mobThresholdsComponent); - if (damageable.TotalDamage < criticalThreshold) _mobState.ChangeMobState(uid, MobState.Alive, mobStateComponent); else @@ -59,9 +57,9 @@ private void OnDoAfter(EntityUid uid, DeadStartupButtonComponent comp, OnDoAfter private void OnElectrocuted(EntityUid uid, DeadStartupButtonComponent comp, ElectrocutedEvent args) { - if (!TryComp(uid, out MobStateComponent? mobStateComponent) + if (!TryComp(uid, out var mobStateComponent) || !_mobState.IsDead(uid, mobStateComponent) - || !_siliconChargeSystem.TryGetSiliconBattery(uid, out var bateria) + || !_siliconChargeSystem.TryGetSiliconBattery(uid, out var bateria) || bateria.CurrentCharge <= 0) return; @@ -72,13 +70,10 @@ private void OnElectrocuted(EntityUid uid, DeadStartupButtonComponent comp, Elec private void OnMobStateChanged(EntityUid uid, DeadStartupButtonComponent comp, MobStateChangedEvent args) { + if (args.NewMobState != MobState.Alive) + return; - if (args.NewMobState == MobState.Alive) - { - _popup.PopupEntity(Loc.GetString("dead-startup-system-reboot-success", ("target", MetaData(uid).EntityName)), uid); - _audio.PlayPvs(comp.Sound, uid); - } - + _popup.PopupEntity(Loc.GetString("dead-startup-system-reboot-success", ("target", MetaData(uid).EntityName)), uid); + _audio.PlayPvs(comp.Sound, uid); } - } diff --git a/Content.Server/Silicon/EmitBuzzWhileDamaged/EmitBuzzWhileDamagedSystem.cs b/Content.Server/Silicon/EmitBuzzWhileDamaged/EmitBuzzWhileDamagedSystem.cs index 05e5f5af89..161a912d06 100644 --- a/Content.Server/Silicon/EmitBuzzWhileDamaged/EmitBuzzWhileDamagedSystem.cs +++ b/Content.Server/Silicon/EmitBuzzWhileDamaged/EmitBuzzWhileDamagedSystem.cs @@ -1,13 +1,13 @@ using Content.Server.Popups; using Content.Shared.Silicon.EmitBuzzWhileDamaged; using Content.Shared.Audio; -using Content.Shared.Body.Components; using Content.Shared.Damage; using Content.Shared.Mobs; using Content.Shared.Mobs.Systems; using Robust.Shared.Audio.Systems; using Robust.Shared.Random; using Robust.Shared.Timing; +using Content.Shared.Mobs.Components; namespace Content.Server.Silicon.EmitBuzzOnCrit; @@ -27,34 +27,29 @@ public override void Update(float frameTime) { base.Update(frameTime); - var query = EntityQueryEnumerator(); + var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var emitBuzzOnCritComponent, out var body)) + while (query.MoveNext(out var uid, out var emitBuzzOnCritComponent, out var mobStateComponent, out var thresholdsComponent, out var damageableComponent)) { - - if (_mobState.IsDead(uid) - || !_mobThreshold.TryGetThresholdForState(uid, MobState.Critical, out var threshold) - || !TryComp(uid, out DamageableComponent? damageableComponent) - || damageableComponent.TotalDamage < (threshold/2)) + if (_mobState.IsDead(uid, mobStateComponent) + || !_mobThreshold.TryGetThresholdForState(uid, MobState.Critical, out var threshold, thresholdsComponent) + || damageableComponent.TotalDamage < threshold / 2) continue; - + // Check update time emitBuzzOnCritComponent.AccumulatedFrametime += frameTime; - if (emitBuzzOnCritComponent.AccumulatedFrametime < emitBuzzOnCritComponent.CycleDelay) continue; emitBuzzOnCritComponent.AccumulatedFrametime -= emitBuzzOnCritComponent.CycleDelay; + if (_gameTiming.CurTime <= emitBuzzOnCritComponent.LastBuzzPopupTime + emitBuzzOnCritComponent.BuzzPopupCooldown) + continue; - // start buzzing - if (_gameTiming.CurTime >= emitBuzzOnCritComponent.LastBuzzPopupTime + emitBuzzOnCritComponent.BuzzPopupCooldown) - { - emitBuzzOnCritComponent.LastBuzzPopupTime = _gameTiming.CurTime; - _popupSystem.PopupEntity(Loc.GetString("silicon-behavior-buzz"), uid); - Spawn("EffectSparks", Transform(uid).Coordinates); - _audio.PlayPvs(emitBuzzOnCritComponent.Sound, uid, AudioHelpers.WithVariation(0.05f, _robustRandom)); - } + // Start buzzing + emitBuzzOnCritComponent.LastBuzzPopupTime = _gameTiming.CurTime; + _popupSystem.PopupEntity(Loc.GetString("silicon-behavior-buzz"), uid); + Spawn("EffectSparks", Transform(uid).Coordinates); + _audio.PlayPvs(emitBuzzOnCritComponent.Sound, uid, AudioHelpers.WithVariation(0.05f, _robustRandom)); } } - } diff --git a/Content.Server/Silicon/EncryptionHolderRequiresLock/EncryptionHolderRequiresLockSystem.cs b/Content.Server/Silicon/EncryptionHolderRequiresLock/EncryptionHolderRequiresLockSystem.cs index 5eb4f25c49..6efb51096c 100644 --- a/Content.Server/Silicon/EncryptionHolderRequiresLock/EncryptionHolderRequiresLockSystem.cs +++ b/Content.Server/Silicon/EncryptionHolderRequiresLock/EncryptionHolderRequiresLockSystem.cs @@ -1,4 +1,3 @@ -using Content.Shared.Containers.ItemSlots; using Content.Shared.Lock; using Content.Shared.Radio.Components; using Content.Shared.Radio.EntitySystems; @@ -8,7 +7,6 @@ namespace Content.Server.Silicon.EncryptionHolderRequiresLock; public sealed class EncryptionHolderRequiresLockSystem : EntitySystem { - [Dependency] private readonly ItemSlotsSystem _itemSlotsSystem = default!; [Dependency] private readonly EncryptionKeySystem _encryptionKeySystem = default!; /// @@ -16,11 +14,11 @@ public override void Initialize() { base.Initialize(); SubscribeLocalEvent(LockToggled); - } + private void LockToggled(EntityUid uid, EncryptionHolderRequiresLockComponent component, LockToggledEvent args) { - if (!TryComp(uid, out var lockComp) + if (!TryComp(uid, out var lockComp) || !TryComp(uid, out var keyHolder)) return; diff --git a/Content.Server/Silicon/IPC/InternalEncryptionKeySpawner.cs b/Content.Server/Silicon/IPC/InternalEncryptionKeySpawner.cs index eb01409e85..5f799a102e 100644 --- a/Content.Server/Silicon/IPC/InternalEncryptionKeySpawner.cs +++ b/Content.Server/Silicon/IPC/InternalEncryptionKeySpawner.cs @@ -1,39 +1,34 @@ -using Content.Shared.Preferences; using Content.Shared.Roles; using Content.Shared.Radio.Components; using Content.Shared.Containers; using Robust.Shared.Containers; - // Pretty much copied from StationSpawningSystem.SpawnStartingGear namespace Content.Server.Silicon.IPC; -public static class InternalEncryptionKeySpawner +public sealed partial class InternalEncryptionKeySpawner : EntitySystem { - public static void TryInsertEncryptionKey(EntityUid target, StartingGearPrototype startingGear, IEntityManager entityManager, HumanoidCharacterProfile? profile) + [Dependency] private readonly SharedContainerSystem _container = default!; + public void TryInsertEncryptionKey(EntityUid target, StartingGearPrototype startingGear, IEntityManager entityManager) { - if (entityManager.TryGetComponent(target, out var keyHolderComp)) - { - var earEquipString = startingGear.GetGear("ears", profile); - var containerMan = entityManager.System(); +#pragma warning disable CS8073 + if (target == null // target can be null during race conditions intentionally created by awful tests. +#pragma warning restore CS8073 + || !TryComp(target, out var keyHolderComp) + || keyHolderComp is null + || !startingGear.Equipment.TryGetValue("ears", out var earEquipString) + || string.IsNullOrEmpty(earEquipString)) + return; - if (!string.IsNullOrEmpty(earEquipString)) - { - var earEntity = entityManager.SpawnEntity(earEquipString, entityManager.GetComponent(target).Coordinates); + var earEntity = entityManager.SpawnEntity(earEquipString, entityManager.GetComponent(target).Coordinates); + if (!entityManager.HasComponent(earEntity) + || !entityManager.TryGetComponent(earEntity, out var fillComp) + || !fillComp.Containers.TryGetValue(EncryptionKeyHolderComponent.KeyContainerName, out var defaultKeys)) + return; - if (entityManager.TryGetComponent(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(earEntity, out var fillComp) && - fillComp.Containers.TryGetValue(EncryptionKeyHolderComponent.KeyContainerName, out var defaultKeys)) - { - containerMan.CleanContainer(keyHolderComp.KeyContainer); + _container.CleanContainer(keyHolderComp.KeyContainer); - foreach (var key in defaultKeys) - { - var keyEntity = entityManager.SpawnEntity(key, entityManager.GetComponent(target).Coordinates); - containerMan.Insert(keyEntity, keyHolderComp.KeyContainer, force: true); - } - } + foreach (var key in defaultKeys) + entityManager.SpawnInContainerOrDrop(key, target, keyHolderComp.KeyContainer.ID, out _); - entityManager.QueueDeleteEntity(earEntity); - } - } + entityManager.QueueDeleteEntity(earEntity); } } diff --git a/Content.Server/Silicon/Systems/SiliconMiscSystem.cs b/Content.Server/Silicon/Systems/SiliconMiscSystem.cs deleted file mode 100644 index 85d76c77bc..0000000000 --- a/Content.Server/Silicon/Systems/SiliconMiscSystem.cs +++ /dev/null @@ -1,20 +0,0 @@ -using Content.Shared.Silicon.Components; -using Content.Shared.Bed.Sleep; - -namespace Content.Server.Silicon.Misc; - -// This entire thing is fucking stupid and I hate it. -public sealed class SiliconMiscSystem : EntitySystem -{ - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnTryingToSleep); - } - - private void OnTryingToSleep(EntityUid uid, SiliconComponent component, ref TryingToSleepEvent args) - { - args.Cancelled = true; - } -} diff --git a/Content.Server/Silicon/WeldingHealable/WeldingHealableComponent.cs b/Content.Server/Silicon/WeldingHealable/WeldingHealableComponent.cs index 115e930870..9f4b6c3483 100644 --- a/Content.Server/Silicon/WeldingHealable/WeldingHealableComponent.cs +++ b/Content.Server/Silicon/WeldingHealable/WeldingHealableComponent.cs @@ -1,9 +1,5 @@ -using Content.Shared.Damage; -using Content.Shared.Tools; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +namespace Content.Server.Silicon.WeldingHealable; + +[RegisterComponent] +public sealed partial class WeldingHealableComponent : Component { } -namespace Content.Server.Silicon.WeldingHealable -{ - [RegisterComponent] - public sealed partial class WeldingHealableComponent : Component { } -} diff --git a/Content.Server/Silicon/WeldingHealable/WeldingHealableSystem.cs b/Content.Server/Silicon/WeldingHealable/WeldingHealableSystem.cs index 09a2ee99fc..df7ac7ac0f 100644 --- a/Content.Server/Silicon/WeldingHealable/WeldingHealableSystem.cs +++ b/Content.Server/Silicon/WeldingHealable/WeldingHealableSystem.cs @@ -1,121 +1,105 @@ -using System.Diagnostics; using Content.Server.Silicon.WeldingHealing; -using Content.Server.Administration.Logs; -using Content.Server.Stack; -using Content.Server.Tools.Components; -using Content.Shared.Silicon.WeldingHealing; using Content.Shared.Chemistry.Components; +using Content.Shared.Silicon.WeldingHealing; using Content.Shared.Chemistry.Components.SolutionManager; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Damage; -using Content.Shared.Database; -using Content.Shared.Eye.Blinding.Components; -using Content.Shared.Eye.Blinding.Systems; -using Content.Shared.FixedPoint; using Content.Shared.Interaction; using Content.Shared.Popups; -using Content.Shared.Tools; -using Content.Shared.Stacks; +using Content.Shared.Tools.Components; using SharedToolSystem = Content.Shared.Tools.Systems.SharedToolSystem; -namespace Content.Server.Silicon.WeldingHealable -{ - public sealed class WeldingHealableSystem : SharedWeldingHealableSystem - { - [Dependency] private readonly SharedToolSystem _toolSystem = default!; - [Dependency] private readonly DamageableSystem _damageableSystem = default!; - [Dependency] private readonly SharedPopupSystem _popup = default!; - [Dependency] private readonly IAdminLogManager _adminLogger= default!; - [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer= default!; - - public override void Initialize() - { - SubscribeLocalEvent(Repair); - SubscribeLocalEvent(OnRepairFinished); - } - - private void OnRepairFinished(EntityUid uid, WeldingHealableComponent healableComponentcomponent, SiliconRepairFinishedEvent args) - { - if (args.Cancelled || args.Used == null - || !EntityManager.TryGetComponent(args.Target, out DamageableComponent? damageable) - || !EntityManager.TryGetComponent(args.Used, out WeldingHealingComponent? component) - || damageable.DamageContainerID != null - && !component.DamageContainers.Contains(damageable.DamageContainerID)) - return; - - var damageChanged = _damageableSystem.TryChangeDamage(uid, component.Damage, true, false, origin: args.User); - - - if (!HasDamage(damageable, component)) - return; - - if (TryComp(args.Used, out WelderComponent? welder) && - TryComp(args.Used, out SolutionContainerManagerComponent? solutionContainer)) - { - if (!_solutionContainer.ResolveSolution(((EntityUid) args.Used, solutionContainer), welder.FuelSolutionName, ref welder.FuelSolution, out var solution)) - return; - _solutionContainer.RemoveReagent(welder.FuelSolution.Value, welder.FuelReagent, component.FuelCost); - } - - var str = Loc.GetString("comp-repairable-repair", - ("target", uid), - ("tool", args.Used!)); - _popup.PopupEntity(str, uid, args.User); - - - if (args.Used.HasValue) - { - args.Handled = _toolSystem.UseTool(args.Used.Value, args.User, uid, args.Delay, component.QualityNeeded, new SiliconRepairFinishedEvent - { - Delay = args.Delay - }); - } - } - +namespace Content.Server.Silicon.WeldingHealable; +public sealed class WeldingHealableSystem : SharedWeldingHealableSystem +{ + [Dependency] private readonly SharedToolSystem _toolSystem = default!; + [Dependency] private readonly DamageableSystem _damageableSystem = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer = default!; - private async void Repair(EntityUid uid, WeldingHealableComponent healableComponent, InteractUsingEvent args) - { - if (args.Handled - || !EntityManager.TryGetComponent(args.Used, out WeldingHealingComponent? component) - || !EntityManager.TryGetComponent(args.Target, out DamageableComponent? damageable) - || damageable.DamageContainerID != null - && !component.DamageContainers.Contains(damageable.DamageContainerID) - || !HasDamage(damageable, component) - || !_toolSystem.HasQuality(args.Used, component.QualityNeeded)) - return; - - float delay = component.DoAfterDelay; + public override void Initialize() + { + SubscribeLocalEvent(Repair); + SubscribeLocalEvent(OnRepairFinished); + } - // Add a penalty to how long it takes if the user is repairing itself - if (args.User == args.Target) + private void OnRepairFinished(EntityUid uid, WeldingHealableComponent healableComponent, SiliconRepairFinishedEvent args) + { + if (args.Cancelled || args.Used == null + || !TryComp(args.Target, out var damageable) + || !TryComp(args.Used, out var component) + || damageable.DamageContainerID is null + || !component.DamageContainers.Contains(damageable.DamageContainerID) + || !HasDamage(damageable, component) + || !TryComp(args.Used, out var welder) + || !TryComp(args.Used, out var solutionContainer)) + return; + + _damageableSystem.TryChangeDamage(uid, component.Damage, true, false, origin: args.User); + + Entity? sol = new(); + if (!_solutionContainer.ResolveSolution(((EntityUid) args.Used, solutionContainer), welder.FuelSolutionName, ref sol, out _)) + return; + _solutionContainer.RemoveReagent(sol.Value, welder.FuelReagent, component.FuelCost); + + var str = Loc.GetString("comp-repairable-repair", + ("target", uid), + ("tool", args.Used!)); + _popup.PopupEntity(str, uid, args.User); + + if (!args.Used.HasValue) + return; + + args.Handled = _toolSystem.UseTool + (args.Used.Value, + args.User, + uid, + args.Delay, + component.QualityNeeded, + new SiliconRepairFinishedEvent { - if (!component.AllowSelfHeal) - return; - - delay *= component.SelfHealPenalty; - } + Delay = args.Delay + }); + } - // Run the repairing doafter - args.Handled = _toolSystem.UseTool(args.Used, args.User, args.Target, delay, component.QualityNeeded, new SiliconRepairFinishedEvent + private async void Repair(EntityUid uid, WeldingHealableComponent healableComponent, InteractUsingEvent args) + { + if (args.Handled + || !EntityManager.TryGetComponent(args.Used, out WeldingHealingComponent? component) + || !EntityManager.TryGetComponent(args.Target, out DamageableComponent? damageable) + || damageable.DamageContainerID is null + || !component.DamageContainers.Contains(damageable.DamageContainerID) + || !HasDamage(damageable, component) + || !_toolSystem.HasQuality(args.Used, component.QualityNeeded) + || args.User == args.Target && !component.AllowSelfHeal) + return; + + float delay = args.User == args.Target + ? component.DoAfterDelay * component.SelfHealPenalty + : component.DoAfterDelay; + + args.Handled = _toolSystem.UseTool + (args.Used, + args.User, + args.Target, + delay, + component.QualityNeeded, + new SiliconRepairFinishedEvent { Delay = delay, }); + } - } - private bool HasDamage(DamageableComponent component, WeldingHealingComponent healable) - { - var damageableDict = component.Damage.DamageDict; - var healingDict = healable.Damage.DamageDict; - foreach (var type in healingDict) - { - if (damageableDict[type.Key].Value > 0) - { - return true; - } - } - + private bool HasDamage(DamageableComponent component, WeldingHealingComponent healable) + { + if (healable.Damage.DamageDict is null) return false; - } + + foreach (var type in healable.Damage.DamageDict) + if (component.Damage.DamageDict[type.Key].Value > 0) + return true; + return false; } } + diff --git a/Content.Server/Silicon/WeldingHealing/WeldingHealingComponent.cs b/Content.Server/Silicon/WeldingHealing/WeldingHealingComponent.cs index c381d54718..a7aa170793 100644 --- a/Content.Server/Silicon/WeldingHealing/WeldingHealingComponent.cs +++ b/Content.Server/Silicon/WeldingHealing/WeldingHealingComponent.cs @@ -2,47 +2,46 @@ using Content.Shared.Tools; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -namespace Content.Server.Silicon.WeldingHealing +namespace Content.Server.Silicon.WeldingHealing; + +[RegisterComponent] +public sealed partial class WeldingHealingComponent : Component { - [RegisterComponent] - public sealed partial class WeldingHealingComponent : Component - { - /// - /// All the damage to change information is stored in this . - /// - /// - /// If this data-field is specified, it will change damage by this amount instead of setting all damage to 0. - /// in order to heal/repair the damage values have to be negative. - /// - - [DataField(required: true)] - public DamageSpecifier Damage; - - [DataField(customTypeSerializer:typeof(PrototypeIdSerializer))] - public string QualityNeeded = "Welding"; - - /// - /// The fuel amount needed to repair physical related damage - /// - [DataField] - public int FuelCost = 5; - - [DataField] - public int DoAfterDelay = 3; - - /// - /// A multiplier that will be applied to the above if an entity is repairing themselves. - /// - [DataField] - public float SelfHealPenalty = 3f; - - /// - /// Whether or not an entity is allowed to repair itself. - /// - [DataField] - public bool AllowSelfHeal = true; - - [DataField(required: true)] - public List DamageContainers; - } + /// + /// All the damage to change information is stored in this . + /// + /// + /// If this data-field is specified, it will change damage by this amount instead of setting all damage to 0. + /// in order to heal/repair the damage values have to be negative. + /// + + [DataField(required: true)] + public DamageSpecifier Damage; + + [DataField(customTypeSerializer:typeof(PrototypeIdSerializer))] + public string QualityNeeded = "Welding"; + + /// + /// The fuel amount needed to repair physical related damage + /// + [DataField] + public int FuelCost = 5; + + [DataField] + public int DoAfterDelay = 3; + + /// + /// A multiplier that will be applied to the above if an entity is repairing themselves. + /// + [DataField] + public float SelfHealPenalty = 3f; + + /// + /// Whether or not an entity is allowed to repair itself. + /// + [DataField] + public bool AllowSelfHeal = true; + + [DataField(required: true)] + public List DamageContainers; } diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs b/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs new file mode 100644 index 0000000000..1c10cbe667 --- /dev/null +++ b/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs @@ -0,0 +1,107 @@ +using Content.Shared.DeviceNetwork; +using Content.Shared.Emag.Components; +using Content.Shared.Popups; +using Content.Shared.Robotics; +using Content.Shared.Silicons.Borgs.Components; +using Content.Server.DeviceNetwork; +using Content.Server.DeviceNetwork.Components; +using Content.Server.DeviceNetwork.Systems; +using Content.Server.Explosion.Components; + +namespace Content.Server.Silicons.Borgs; + +/// +public sealed partial class BorgSystem +{ + private void InitializeTransponder() + { + SubscribeLocalEvent(OnPacketReceived); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var now = _timing.CurTime; + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var comp, out var chassis, out var device, out var meta)) + { + if (now < comp.NextBroadcast) + continue; + + var charge = 0f; + if (_powerCell.TryGetBatteryFromSlot(uid, out var battery)) + charge = battery.CurrentCharge / battery.MaxCharge; + + var data = new CyborgControlData( + comp.Sprite, + comp.Name, + meta.EntityName, + charge, + chassis.ModuleCount, + chassis.BrainEntity != null); + + var payload = new NetworkPayload() + { + [DeviceNetworkConstants.Command] = DeviceNetworkConstants.CmdUpdatedState, + [RoboticsConsoleConstants.NET_CYBORG_DATA] = data + }; + _deviceNetwork.QueuePacket(uid, null, payload, device: device); + + comp.NextBroadcast = now + comp.BroadcastDelay; + } + } + + private void OnPacketReceived(Entity ent, ref DeviceNetworkPacketEvent args) + { + var payload = args.Data; + if (!payload.TryGetValue(DeviceNetworkConstants.Command, out string? command)) + return; + + if (command == RoboticsConsoleConstants.NET_DISABLE_COMMAND) + Disable(ent); + else if (command == RoboticsConsoleConstants.NET_DESTROY_COMMAND) + Destroy(ent.Owner); + } + + private void Disable(Entity ent) + { + if (!Resolve(ent, ref ent.Comp2) || ent.Comp2.BrainEntity is not {} brain) + return; + + // this won't exactly be stealthy but if you are malf its better than actually disabling you + if (CheckEmagged(ent, "disabled")) + return; + + var message = Loc.GetString(ent.Comp1.DisabledPopup, ("name", Name(ent))); + Popup.PopupEntity(message, ent); + _container.Remove(brain, ent.Comp2.BrainContainer); + } + + private void Destroy(Entity ent) + { + if (!Resolve(ent, ref ent.Comp)) + return; + + // this is stealthy until someone realises you havent exploded + if (CheckEmagged(ent, "destroyed")) + { + // prevent reappearing on the console a few seconds later + RemComp(ent); + return; + } + + _explosion.TriggerExplosive(ent, ent.Comp, delete: false); + } + + private bool CheckEmagged(EntityUid uid, string name) + { + if (HasComp(uid)) + { + Popup.PopupEntity(Loc.GetString($"borg-transponder-emagged-{name}-popup"), uid, uid, PopupType.LargeCaution); + return true; + } + + return false; + } +} diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Ui.cs b/Content.Server/Silicons/Borgs/BorgSystem.Ui.cs index 3dcdd78aff..d0e9f80e36 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.Ui.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.Ui.cs @@ -28,20 +28,19 @@ private void OnBeforeBorgUiOpen(EntityUid uid, BorgChassisComponent component, B private void OnEjectBrainBuiMessage(EntityUid uid, BorgChassisComponent component, BorgEjectBrainBuiMessage args) { - if (args.Session.AttachedEntity is not { } attachedEntity || component.BrainEntity is not { } brain) + if (component.BrainEntity is not { } brain) return; _adminLog.Add(LogType.Action, LogImpact.Medium, - $"{ToPrettyString(attachedEntity):player} removed brain {ToPrettyString(brain)} from borg {ToPrettyString(uid)}"); + $"{ToPrettyString(args.Actor):player} removed brain {ToPrettyString(brain)} from borg {ToPrettyString(uid)}"); _container.Remove(brain, component.BrainContainer); - _hands.TryPickupAnyHand(attachedEntity, brain); + _hands.TryPickupAnyHand(args.Actor, brain); UpdateUI(uid, component); } private void OnEjectBatteryBuiMessage(EntityUid uid, BorgChassisComponent component, BorgEjectBatteryBuiMessage args) { - if (args.Session.AttachedEntity is not { } attachedEntity || - !TryComp(uid, out var slotComp) || + if (!TryComp(uid, out var slotComp) || !Container.TryGetContainer(uid, slotComp.CellSlotId, out var container) || !container.ContainedEntities.Any()) { @@ -49,14 +48,11 @@ private void OnEjectBatteryBuiMessage(EntityUid uid, BorgChassisComponent compon } var ents = Container.EmptyContainer(container); - _hands.TryPickupAnyHand(attachedEntity, ents.First()); + _hands.TryPickupAnyHand(args.Actor, ents.First()); } private void OnSetNameBuiMessage(EntityUid uid, BorgChassisComponent component, BorgSetNameBuiMessage args) { - if (args.Session.AttachedEntity is not { } attachedEntity) - return; - if (args.Name.Length > HumanoidCharacterProfile.MaxNameLength || args.Name.Length == 0 || string.IsNullOrWhiteSpace(args.Name) || @@ -75,24 +71,21 @@ private void OnSetNameBuiMessage(EntityUid uid, BorgChassisComponent component, if (metaData.EntityName.Equals(name, StringComparison.InvariantCulture)) return; - _adminLog.Add(LogType.Action, LogImpact.High, $"{ToPrettyString(attachedEntity):player} set borg \"{ToPrettyString(uid)}\"'s name to: {name}"); + _adminLog.Add(LogType.Action, LogImpact.High, $"{ToPrettyString(args.Actor):player} set borg \"{ToPrettyString(uid)}\"'s name to: {name}"); _metaData.SetEntityName(uid, name, metaData); } private void OnRemoveModuleBuiMessage(EntityUid uid, BorgChassisComponent component, BorgRemoveModuleBuiMessage args) { - if (args.Session.AttachedEntity is not { } attachedEntity) - return; - var module = GetEntity(args.Module); if (!component.ModuleContainer.Contains(module)) return; _adminLog.Add(LogType.Action, LogImpact.Medium, - $"{ToPrettyString(attachedEntity):player} removed module {ToPrettyString(module)} from borg {ToPrettyString(uid)}"); + $"{ToPrettyString(args.Actor):player} removed module {ToPrettyString(module)} from borg {ToPrettyString(uid)}"); _container.Remove(module, component.ModuleContainer); - _hands.TryPickupAnyHand(attachedEntity, module); + _hands.TryPickupAnyHand(args.Actor, module); UpdateUI(uid, component); } @@ -111,6 +104,6 @@ public void UpdateUI(EntityUid uid, BorgChassisComponent? component = null) } var state = new BorgBuiState(chargePercent, hasBattery); - _ui.TrySetUiState(uid, BorgUiKey.Key, state); + _ui.SetUiState(uid, BorgUiKey.Key, state); } } diff --git a/Content.Server/Silicons/Borgs/BorgSystem.cs b/Content.Server/Silicons/Borgs/BorgSystem.cs index 869c279704..75f25a3a92 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.cs @@ -1,6 +1,8 @@ using Content.Server.Actions; using Content.Server.Administration.Logs; using Content.Server.Administration.Managers; +using Content.Server.DeviceNetwork.Systems; +using Content.Server.Explosion.EntitySystems; using Content.Server.Hands.Systems; using Content.Server.PowerCell; using Content.Shared.UserInterface; @@ -26,6 +28,7 @@ using Robust.Shared.Containers; using Robust.Shared.Player; using Robust.Shared.Random; +using Robust.Shared.Timing; namespace Content.Server.Silicons.Borgs; @@ -34,10 +37,13 @@ public sealed partial class BorgSystem : SharedBorgSystem { [Dependency] private readonly IAdminLogManager _adminLog = default!; [Dependency] private readonly IBanManager _banManager = default!; + [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly SharedAccessSystem _access = default!; [Dependency] private readonly ActionsSystem _actions = default!; [Dependency] private readonly AlertsSystem _alerts = default!; + [Dependency] private readonly DeviceNetworkSystem _deviceNetwork = default!; + [Dependency] private readonly ExplosionSystem _explosion = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly HandsSystem _hands = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; @@ -73,6 +79,7 @@ public override void Initialize() InitializeModules(); InitializeMMI(); InitializeUI(); + InitializeTransponder(); } private void OnMapInit(EntityUid uid, BorgChassisComponent component, MapInitEvent args) diff --git a/Content.Server/Silicons/Laws/SiliconLawSystem.cs b/Content.Server/Silicons/Laws/SiliconLawSystem.cs index 010682bc0d..bc7a7b35c2 100644 --- a/Content.Server/Silicons/Laws/SiliconLawSystem.cs +++ b/Content.Server/Silicons/Laws/SiliconLawSystem.cs @@ -55,7 +55,6 @@ public override void Initialize() SubscribeLocalEvent(OnEmagLawsAdded); SubscribeLocalEvent(OnEmagMindAdded); SubscribeLocalEvent(OnEmagMindRemoved); - SubscribeLocalEvent(OnExamined); } private void OnComponentShutdown(EntityUid uid, SiliconLawBoundComponent component, ComponentShutdown args) @@ -93,10 +92,10 @@ private void OnToggleLawsScreen(EntityUid uid, SiliconLawBoundComponent componen private void OnBoundUIOpened(EntityUid uid, SiliconLawBoundComponent component, BoundUIOpenedEvent args) { _entityManager.TryGetComponent(uid, out var intrinsicRadio); - HashSet? radioChannels = intrinsicRadio?.Channels; + var radioChannels = intrinsicRadio?.Channels; var state = new SiliconLawBuiState(GetLaws(uid).Laws, radioChannels); - _userInterface.TrySetUiState(args.Entity, SiliconLawsUiKey.Key, state, args.Session); + _userInterface.SetUiState(args.Entity, SiliconLawsUiKey.Key, state); } private void OnPlayerSpawnComplete(EntityUid uid, SiliconLawBoundComponent component, PlayerSpawnCompleteEvent args) @@ -155,17 +154,6 @@ private void OnEmagLawsAdded(EntityUid uid, SiliconLawProviderComponent componen }); } - private void OnExamined(EntityUid uid, EmagSiliconLawComponent component, ExaminedEvent args) - { - if (!args.IsInDetailsRange || !HasComp(uid)) - return; - - if (component.RequireOpenPanel && TryComp(uid, out var panel) && !panel.Open) - return; - - args.PushMarkup(Loc.GetString("laws-compromised-examine")); - } - protected override void OnGotEmagged(EntityUid uid, EmagSiliconLawComponent component, ref GotEmaggedEvent args) { if (component.RequireOpenPanel && TryComp(uid, out var panel) && !panel.Open) diff --git a/Content.Server/Singularity/EntitySystems/EmitterSystem.cs b/Content.Server/Singularity/EntitySystems/EmitterSystem.cs index a9763b64d9..652ca236e4 100644 --- a/Content.Server/Singularity/EntitySystems/EmitterSystem.cs +++ b/Content.Server/Singularity/EntitySystems/EmitterSystem.cs @@ -1,6 +1,7 @@ using System.Numerics; using System.Threading; using Content.Server.Administration.Logs; +using Content.Server.Construction; using Content.Server.DeviceLinking.Events; using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; @@ -47,6 +48,8 @@ public override void Initialize() SubscribeLocalEvent(OnInteractHand); SubscribeLocalEvent>(OnGetVerb); SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent(OnRefreshParts); + SubscribeLocalEvent(OnUpgradeExamine); SubscribeLocalEvent(OnAnchorStateChanged); SubscribeLocalEvent(OnSignalReceived); } @@ -176,6 +179,20 @@ private void OnApcChanged(EntityUid uid, EmitterComponent component, ref PowerCh } } + private void OnRefreshParts(EntityUid uid, EmitterComponent component, RefreshPartsEvent args) + { + var fireRateRating = args.PartRatings[component.MachinePartFireRate]; + + component.FireInterval = component.BaseFireInterval * MathF.Pow(component.FireRateMultiplier, fireRateRating - 1); + component.FireBurstDelayMin = component.BaseFireBurstDelayMin * MathF.Pow(component.FireRateMultiplier, fireRateRating - 1); + component.FireBurstDelayMax = component.BaseFireBurstDelayMax * MathF.Pow(component.FireRateMultiplier, fireRateRating - 1); + } + + private void OnUpgradeExamine(EntityUid uid, EmitterComponent component, UpgradeExamineEvent args) + { + args.AddPercentageUpgrade("emitter-component-upgrade-fire-rate", (float) (component.BaseFireInterval.TotalSeconds / component.FireInterval.TotalSeconds)); + } + public void SwitchOff(EntityUid uid, EmitterComponent component) { component.IsOn = false; diff --git a/Content.Server/Singularity/EntitySystems/RadiationCollectorSystem.cs b/Content.Server/Singularity/EntitySystems/RadiationCollectorSystem.cs index b26ab301c6..9107ff2e32 100644 --- a/Content.Server/Singularity/EntitySystems/RadiationCollectorSystem.cs +++ b/Content.Server/Singularity/EntitySystems/RadiationCollectorSystem.cs @@ -151,7 +151,8 @@ private void OnAnalyzed(EntityUid uid, RadiationCollectorComponent component, Ga if (!TryGetLoadedGasTank(uid, out var gasTankComponent)) return; - args.GasMixtures = new Dictionary { { Name(uid), gasTankComponent.Air } }; + args.GasMixtures ??= new List<(string, GasMixture?)>(); + args.GasMixtures.Add((Name(uid), gasTankComponent.Air)); } public void ToggleCollector(EntityUid uid, EntityUid? user = null, RadiationCollectorComponent? component = null) diff --git a/Content.Server/Solar/EntitySystems/PowerSolarControlConsoleSystem.cs b/Content.Server/Solar/EntitySystems/PowerSolarControlConsoleSystem.cs index 179cadcfbc..dd3f0c0054 100644 --- a/Content.Server/Solar/EntitySystems/PowerSolarControlConsoleSystem.cs +++ b/Content.Server/Solar/EntitySystems/PowerSolarControlConsoleSystem.cs @@ -35,13 +35,13 @@ public override void Update(float frameTime) _updateTimer -= 1; var state = new SolarControlConsoleBoundInterfaceState(_powerSolarSystem.TargetPanelRotation, _powerSolarSystem.TargetPanelVelocity, _powerSolarSystem.TotalPanelPower, _powerSolarSystem.TowardsSun); var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var _, out var uiComp)) + while (query.MoveNext(out var uid, out _, out var uiComp)) { - _uiSystem.TrySetUiState(uid, SolarControlConsoleUiKey.Key, state, ui: uiComp); + _uiSystem.SetUiState((uid, uiComp), SolarControlConsoleUiKey.Key, state); } } } - + private void OnUIMessage(EntityUid uid, SolarControlConsoleComponent component, SolarControlConsoleAdjustMessage msg) { if (double.IsFinite(msg.Rotation)) diff --git a/Content.Server/Speech/Components/PirateAccentComponent.cs b/Content.Server/Speech/Components/PirateAccentComponent.cs index 0559d9854b..b5b292775d 100644 --- a/Content.Server/Speech/Components/PirateAccentComponent.cs +++ b/Content.Server/Speech/Components/PirateAccentComponent.cs @@ -15,6 +15,7 @@ public sealed partial class PirateAccentComponent : Component { "accent-pirate-prefix-1", "accent-pirate-prefix-2", - "accent-pirate-prefix-3" + "accent-pirate-prefix-3", + "accent-pirate-prefix-4", }; } diff --git a/Content.Server/Speech/Components/RandomBarkComponent.cs b/Content.Server/Speech/Components/RandomBarkComponent.cs index 7229428f53..470e49e7fa 100644 --- a/Content.Server/Speech/Components/RandomBarkComponent.cs +++ b/Content.Server/Speech/Components/RandomBarkComponent.cs @@ -37,27 +37,15 @@ public sealed partial class RandomBarkComponent : Component public float BarkMultiplier = 1f; /// - /// List of things to be said. Filled with garbage to be modified by an accent, but can be specified in the .yml + /// Bark type, for use in locales. Locale keys follow the format "bark-{type}-{index between 1 and BarkLocaleCount}". /// [DataField] - public IReadOnlyList Barks = new[] - { - "Bark", - "Boof", - "Woofums", - "Rawrl", - "Eeeeeee", - "Barkums", - "Awooooooooooooooooooo awoo awoooo", - "Grrrrrrrrrrrrrrrrrr", - "Rarrwrarrwr", - "Goddamn I love gold fish crackers", - "Bork bork boof boof bork bork boof boof boof bork", - "Bark", - "Boof", - "Woofums", - "Rawrl", - "Eeeeeee", - "Barkums", - }; + public string BarkType = "default"; + + /// + /// Number of bark locales. If not specified, then it will be figured out by fetching the locale string + /// with the key "bark-{type}-count" and parsing it as an integer. + /// + [DataField] + public int? BarkLocaleCount = null; } diff --git a/Content.Server/Speech/Components/ReplacementAccentComponent.cs b/Content.Server/Speech/Components/ReplacementAccentComponent.cs index ac4e9fbafe..e7f57b80d0 100644 --- a/Content.Server/Speech/Components/ReplacementAccentComponent.cs +++ b/Content.Server/Speech/Components/ReplacementAccentComponent.cs @@ -32,5 +32,11 @@ public sealed partial class ReplacementAccentComponent : Component { [DataField("accent", customTypeSerializer: typeof(PrototypeIdSerializer), required: true)] public string Accent = default!; + + /// + /// Allows you to substitute words, not always, but with some chance + /// + [DataField] + public float ReplacementChance = 1f; } } diff --git a/Content.Server/Speech/EmotesMenuSystem.cs b/Content.Server/Speech/EmotesMenuSystem.cs new file mode 100644 index 0000000000..a69b5a65e4 --- /dev/null +++ b/Content.Server/Speech/EmotesMenuSystem.cs @@ -0,0 +1,30 @@ +using Content.Server.Chat.Systems; +using Content.Shared.Chat; +using Robust.Shared.Prototypes; + +namespace Content.Server.Speech; + +public sealed partial class EmotesMenuSystem : EntitySystem +{ + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly ChatSystem _chat = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeAllEvent(OnPlayEmote); + } + + private void OnPlayEmote(PlayEmoteMessage msg, EntitySessionEventArgs args) + { + var player = args.SenderSession.AttachedEntity; + if (!player.HasValue) + return; + + if (!_prototypeManager.TryIndex(msg.ProtoId, out var proto) || proto.ChatTriggers.Count == 0) + return; + + _chat.TryEmoteWithChat(player.Value, msg.ProtoId); + } +} diff --git a/Content.Server/Speech/EntitySystems/AddAccentClothingSystem.cs b/Content.Server/Speech/EntitySystems/AddAccentClothingSystem.cs index 1f707c2249..897cd061f4 100644 --- a/Content.Server/Speech/EntitySystems/AddAccentClothingSystem.cs +++ b/Content.Server/Speech/EntitySystems/AddAccentClothingSystem.cs @@ -1,6 +1,5 @@ using Content.Server.Speech.Components; -using Content.Shared.Clothing.Components; -using Content.Shared.Inventory.Events; +using Content.Shared.Clothing; namespace Content.Server.Speech.EntitySystems; @@ -11,29 +10,20 @@ public sealed class AddAccentClothingSystem : EntitySystem public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnGotEquipped); - SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); } - private void OnGotEquipped(EntityUid uid, AddAccentClothingComponent component, GotEquippedEvent args) + private void OnGotEquipped(EntityUid uid, AddAccentClothingComponent component, ref ClothingGotEquippedEvent args) { - if (!TryComp(uid, out ClothingComponent? clothing)) - return; - - // check if entity was actually used as clothing - // not just taken in pockets or something - var isCorrectSlot = clothing.Slots.HasFlag(args.SlotFlags); - if (!isCorrectSlot) - return; - // does the user already has this accent? var componentType = _componentFactory.GetRegistration(component.Accent).Type; - if (HasComp(args.Equipee, componentType)) + if (HasComp(args.Wearer, componentType)) return; // add accent to the user var accentComponent = (Component) _componentFactory.GetComponent(componentType); - AddComp(args.Equipee, accentComponent); + AddComp(args.Wearer, accentComponent); // snowflake case for replacement accent if (accentComponent is ReplacementAccentComponent rep) @@ -42,16 +32,16 @@ private void OnGotEquipped(EntityUid uid, AddAccentClothingComponent component, component.IsActive = true; } - private void OnGotUnequipped(EntityUid uid, AddAccentClothingComponent component, GotUnequippedEvent args) + private void OnGotUnequipped(EntityUid uid, AddAccentClothingComponent component, ref ClothingGotUnequippedEvent args) { if (!component.IsActive) return; // try to remove accent var componentType = _componentFactory.GetRegistration(component.Accent).Type; - if (EntityManager.HasComponent(args.Equipee, componentType)) + if (EntityManager.HasComponent(args.Wearer, componentType)) { - EntityManager.RemoveComponent(args.Equipee, componentType); + EntityManager.RemoveComponent(args.Wearer, componentType); } component.IsActive = false; diff --git a/Content.Server/Speech/EntitySystems/FrenchAccentSystem.cs b/Content.Server/Speech/EntitySystems/FrenchAccentSystem.cs index 5637288732..f6d259c115 100644 --- a/Content.Server/Speech/EntitySystems/FrenchAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/FrenchAccentSystem.cs @@ -10,6 +10,10 @@ public sealed class FrenchAccentSystem : EntitySystem { [Dependency] private readonly ReplacementAccentSystem _replacement = default!; + private static readonly Regex RegexTh = new(@"th", RegexOptions.IgnoreCase); + private static readonly Regex RegexStartH = new(@"(? DirectReplacements = new() - { - { "let me", "lemme" }, - { "should", "oughta" }, - { "the", "da" }, - { "them", "dem" }, - { "attack", "whack" }, - { "kill", "whack" }, - { "murder", "whack" }, - { "dead", "sleepin' with da fishies"}, - { "hey", "ey'o" }, - { "hi", "ey'o"}, - { "hello", "ey'o"}, - { "rules", "roolz" }, - { "you", "yous" }, - { "have to", "gotta" }, - { "going to", "boutta" }, - { "about to", "boutta" }, - { "here", "'ere" } - }; - public override void Initialize() { base.Initialize(); @@ -49,20 +36,30 @@ public string Accentuate(string message, MobsterAccentComponent component) // thinking -> thinkin' // king -> king - msg = Regex.Replace(msg, @"(?<=\w\w)ing(?!\w)", "in'", RegexOptions.IgnoreCase); + //Uses captures groups to make sure the captialization of IN is kept + msg = RegexIng.Replace(msg, "$1'"); // or -> uh and ar -> ah in the middle of words (fuhget, tahget) - msg = Regex.Replace(msg, @"(?<=\w)or(?=\w)", "uh", RegexOptions.IgnoreCase); - msg = Regex.Replace(msg, @"(?<=\w)ar(?=\w)", "ah", RegexOptions.IgnoreCase); + msg = RegexLowerOr.Replace(msg, "uh"); + msg = RegexUpperOr.Replace(msg, "UH"); + msg = RegexLowerAr.Replace(msg, "ah"); + msg = RegexUpperAr.Replace(msg, "AH"); // Prefix if (_random.Prob(0.15f)) { + //Checks if the first word of the sentence is all caps + //So the prefix can be allcapped and to not resanitize the captial + var firstWordAllCaps = !RegexFirstWord.Match(msg).Value.Any(char.IsLower); var pick = _random.Next(1, 2); // Reverse sanitize capital - msg = msg[0].ToString().ToLower() + msg.Remove(0, 1); - msg = Loc.GetString($"accent-mobster-prefix-{pick}") + " " + msg; + var prefix = Loc.GetString($"accent-mobster-prefix-{pick}"); + if (!firstWordAllCaps) + msg = msg[0].ToString().ToLower() + msg.Remove(0, 1); + else + prefix = prefix.ToUpper(); + msg = prefix + " " + msg; } // Sanitize capital again, in case we substituted a word that should be capitalized @@ -71,16 +68,23 @@ public string Accentuate(string message, MobsterAccentComponent component) // Suffixes if (_random.Prob(0.4f)) { + //Checks if the last word of the sentence is all caps + //So the suffix can be allcapped + var lastWordAllCaps = !RegexLastWord.Match(msg).Value.Any(char.IsLower); + var suffix = ""; if (component.IsBoss) { var pick = _random.Next(1, 4); - msg += Loc.GetString($"accent-mobster-suffix-boss-{pick}"); + suffix = Loc.GetString($"accent-mobster-suffix-boss-{pick}"); } else { var pick = _random.Next(1, 3); - msg += Loc.GetString($"accent-mobster-suffix-minion-{pick}"); + suffix = Loc.GetString($"accent-mobster-suffix-minion-{pick}"); } + if (lastWordAllCaps) + suffix = suffix.ToUpper(); + msg += suffix; } return msg; diff --git a/Content.Server/Speech/EntitySystems/MothAccentSystem.cs b/Content.Server/Speech/EntitySystems/MothAccentSystem.cs index 3de4651b4a..84b79d4ce9 100644 --- a/Content.Server/Speech/EntitySystems/MothAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/MothAccentSystem.cs @@ -5,6 +5,9 @@ namespace Content.Server.Speech.EntitySystems; public sealed class MothAccentSystem : EntitySystem { + private static readonly Regex RegexLowerBuzz = new Regex("z{1,3}"); + private static readonly Regex RegexUpperBuzz = new Regex("Z{1,3}"); + public override void Initialize() { base.Initialize(); @@ -16,10 +19,10 @@ private void OnAccent(EntityUid uid, MothAccentComponent component, AccentGetEve var message = args.Message; // buzzz - message = Regex.Replace(message, "z{1,3}", "zzz"); + message = RegexLowerBuzz.Replace(message, "zzz"); // buZZZ - message = Regex.Replace(message, "Z{1,3}", "ZZZ"); - + message = RegexUpperBuzz.Replace(message, "ZZZ"); + args.Message = message; } } diff --git a/Content.Server/Speech/EntitySystems/ParrotAccentSystem.cs b/Content.Server/Speech/EntitySystems/ParrotAccentSystem.cs index 10437c235d..ae8fe522b9 100644 --- a/Content.Server/Speech/EntitySystems/ParrotAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/ParrotAccentSystem.cs @@ -7,6 +7,8 @@ namespace Content.Server.Speech.EntitySystems; public sealed partial class ParrotAccentSystem : EntitySystem { + private static readonly Regex WordCleanupRegex = new Regex("[^A-Za-z0-9 -]"); + [Dependency] private readonly IRobustRandom _random = default!; public override void Initialize() @@ -27,7 +29,7 @@ public string Accentuate(Entity entity, string message) if (_random.Prob(entity.Comp.LongestWordRepeatChance)) { // Don't count non-alphanumeric characters as parts of words - var cleaned = Regex.Replace(message, "[^A-Za-z0-9 -]", string.Empty); + var cleaned = WordCleanupRegex.Replace(message, string.Empty); // Split on whitespace and favor words towards the end of the message var words = cleaned.Split(null).Reverse(); // Find longest word diff --git a/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs b/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs index f1d64ede10..84298cbf01 100644 --- a/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs @@ -1,3 +1,4 @@ +using System.Linq; using Content.Server.Speech.Components; using Robust.Shared.Random; using System.Text.RegularExpressions; @@ -6,6 +7,8 @@ namespace Content.Server.Speech.EntitySystems; public sealed class PirateAccentSystem : EntitySystem { + private static readonly Regex FirstWordAllCapsRegex = new(@"^(\S+)"); + [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ReplacementAccentSystem _replacement = default!; @@ -19,17 +22,22 @@ public override void Initialize() // converts left word when typed into the right word. For example typing you becomes ye. public string Accentuate(string message, PirateAccentComponent component) { - var msg = message; - - msg = _replacement.ApplyReplacements(msg, "pirate"); + var msg = _replacement.ApplyReplacements(message, "pirate"); if (!_random.Prob(component.YarrChance)) return msg; + //Checks if the first word of the sentence is all caps + //So the prefix can be allcapped and to not resanitize the captial + var firstWordAllCaps = !FirstWordAllCapsRegex.Match(msg).Value.Any(char.IsLower); var pick = _random.Pick(component.PirateWords); + var pirateWord = Loc.GetString(pick); // Reverse sanitize capital - msg = msg[0].ToString().ToLower() + msg.Remove(0, 1); - msg = Loc.GetString(pick) + " " + msg; + if (!firstWordAllCaps) + msg = msg[0].ToString().ToLower() + msg.Remove(0, 1); + else + pirateWord = pirateWord.ToUpper(); + msg = pirateWord + " " + msg; return msg; } diff --git a/Content.Server/Speech/EntitySystems/ReplacementAccentSystem.cs b/Content.Server/Speech/EntitySystems/ReplacementAccentSystem.cs index 36fa7e07ad..da198bcc12 100644 --- a/Content.Server/Speech/EntitySystems/ReplacementAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/ReplacementAccentSystem.cs @@ -24,6 +24,9 @@ public override void Initialize() private void OnAccent(EntityUid uid, ReplacementAccentComponent component, AccentGetEvent args) { + if (!_random.Prob(component.ReplacementChance)) + return; + args.Message = ApplyReplacements(args.Message, component.Accent); } @@ -46,6 +49,12 @@ public string ApplyReplacements(string message, string accent) if (prototype.WordReplacements == null) return message; + // Prohibition of repeated word replacements. + // All replaced words placed in the final message are placed here as dashes (___) with the same length. + // The regex search goes through this buffer message, from which the already replaced words are crossed out, + // ensuring that the replaced words cannot be replaced again. + var maskMessage = message; + foreach (var (first, replace) in prototype.WordReplacements) { var f = _loc.GetString(first); @@ -53,10 +62,10 @@ public string ApplyReplacements(string message, string accent) // this is kind of slow but its not that bad // essentially: go over all matches, try to match capitalization where possible, then replace // rather than using regex.replace - for (int i = Regex.Count(message, $@"(? 0; i--) + for (int i = Regex.Count(maskMessage, $@"(? 0; i--) { // fetch the match again as the character indices may have changed - Match match = Regex.Match(message, $@"(? DirectReplacements = new() { { "fuck you", "I've got a BONE to pick with you" }, @@ -45,7 +48,7 @@ public string Accentuate(string message, SkeletonAccentComponent component) // Character manipulations: // At the start of words, any non-vowel + "one" becomes "bone", e.g. tone -> bone ; lonely -> bonely; clone -> clone (remains unchanged). - msg = Regex.Replace(msg, @"(?] + private const string MuzzleAccent = "mumble"; public override void Initialize() { @@ -53,7 +59,10 @@ private void OnSexChanged(EntityUid uid, VocalComponent component, SexChangedEve private void OnEmote(EntityUid uid, VocalComponent component, ref EmoteEvent args) { - if (args.Handled || !args.Emote.Category.HasFlag(EmoteCategory.Vocal)) + if (args.Handled + || !args.Emote.Category.HasFlag(EmoteCategory.Vocal) + || !_actionBlocker.CanSpeak(uid) + || TryComp(uid, out var replacement) && replacement.Accent == MuzzleAccent) // This is not ideal, but it works. return; // snowflake case for wilhelm scream easter egg diff --git a/Content.Server/Speech/Systems/RandomBarkSystem.cs b/Content.Server/Speech/Systems/RandomBarkSystem.cs index 863ea79843..5706a791bf 100644 --- a/Content.Server/Speech/Systems/RandomBarkSystem.cs +++ b/Content.Server/Speech/Systems/RandomBarkSystem.cs @@ -10,20 +10,22 @@ public sealed class RandomBarkSystem : EntitySystem { [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ChatSystem _chat = default!; - [Dependency] private readonly EntityManager _entity = default!; + + private static readonly string[] AddedPunctuation = [".", "...", "!", "..!", "!!"]; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnInit); } - private void OnInit(EntityUid uid, RandomBarkComponent barker, ComponentInit args) + private void OnInit(Entity ent, ref MapInitEvent args) { - barker.BarkAccumulator = _random.NextFloat(barker.MinTime, barker.MaxTime) * barker.BarkMultiplier; + ent.Comp.BarkAccumulator = _random.NextFloat(ent.Comp.MinTime, ent.Comp.MaxTime) * ent.Comp.BarkMultiplier; + ent.Comp.BarkLocaleCount ??= GetBarkLocaleCount(ent); } public override void Update(float frameTime) @@ -38,11 +40,55 @@ public override void Update(float frameTime) continue; barker.BarkAccumulator = _random.NextFloat(barker.MinTime, barker.MaxTime) * barker.BarkMultiplier; - if (_entity.TryGetComponent(uid, out var actComp) && - actComp.HasMind) + if (TryComp(uid, out var actComp) && actComp.HasMind + || GetNextBark((uid, barker)) is not { } bark) continue; - _chat.TrySendInGameICMessage(uid, _random.Pick(barker.Barks), InGameICChatType.Speak, barker.ChatLog ? ChatTransmitRange.Normal : ChatTransmitRange.HideChat); + _chat.TrySendInGameICMessage(uid, bark, InGameICChatType.Speak, barker.ChatLog ? ChatTransmitRange.Normal : ChatTransmitRange.HideChat); + } + } + + /// + /// Tries to get the next bark for the given entity. Returns null if it fails. + /// + public string? GetNextBark(Entity ent) + { + var count = GetBarkLocaleCount(ent); + if (count <= 0) + return null; + + var index = _random.Next(0, count) + 1; + if (!Loc.TryGetString($"bark-{ent.Comp.BarkType}-{index}", out var bark)) + { + Log.Error($"Could not find bark with index {index} and type {ent.Comp.BarkType} for entity {ent.Owner}."); + return null; } + + // If the last char of the string is an alphanumeric one, then add a random punctuation mark + if (bark.Length > 0 && char.IsLetterOrDigit(bark[^1])) + bark += _random.Pick(AddedPunctuation); + + return bark; + } + + private int GetBarkLocaleCount(Entity ent) + { + if (ent.Comp.BarkLocaleCount is { } localeCount) + return localeCount; + + // All the error logging should cause certain integration tests to fail should someone setup randombark incorrectly + if (!Loc.TryGetString($"bark-{ent.Comp.BarkType}-count", out var localeCountStr)) + { + Log.Error($"Entity {ent.Owner} has a bark type {ent.Comp.BarkType} which does not have a respective bark count locale."); + return 0; + } + + if (!int.TryParse(localeCountStr, out localeCount) || localeCount < 0) + { + Log.Error($"Entity {ent.Owner} has a bark type {ent.Comp.BarkType} whose respective bark count locale is not a valid number."); + return 0; + } + + return localeCount; } } diff --git a/Content.Server/Standing/LayingDownSystem.cs b/Content.Server/Standing/LayingDownSystem.cs index eccbf0773b..fcad649c9a 100644 --- a/Content.Server/Standing/LayingDownSystem.cs +++ b/Content.Server/Standing/LayingDownSystem.cs @@ -1,10 +1,15 @@ -using Content.Shared._White; -using Content.Shared._White.Standing; +using Content.Shared.Standing; +using Content.Shared.CCVar; +using Content.Shared.Input; +using Content.Shared.Movement.Systems; +using Content.Shared.Popups; using Robust.Shared.Configuration; +using Robust.Shared.Input.Binding; +using Robust.Shared.Player; namespace Content.Server.Standing; -public sealed class LayingDownSystem : SharedLayingDownSystem // WD EDIT +public sealed class LayingDownSystem : SharedLayingDownSystem { [Dependency] private readonly INetConfigurationManager _cfg = default!; @@ -22,7 +27,7 @@ private void OnCheckAutoGetUp(CheckAutoGetUpEvent ev, EntitySessionEventArgs arg if (!TryComp(uid, out LayingDownComponent? layingDown)) return; - layingDown.AutoGetUp = _cfg.GetClientCVar(args.SenderSession.Channel, WhiteCVars.AutoGetUp); + layingDown.AutoGetUp = _cfg.GetClientCVar(args.SenderSession.Channel, CCVars.AutoGetUp); Dirty(uid, layingDown); } } diff --git a/Content.Server/Station/Components/StationBiomeComponent.cs b/Content.Server/Station/Components/StationBiomeComponent.cs new file mode 100644 index 0000000000..0eb64aaff8 --- /dev/null +++ b/Content.Server/Station/Components/StationBiomeComponent.cs @@ -0,0 +1,22 @@ +using Content.Server.Station.Systems; +using Content.Shared.Parallax.Biomes; +using Robust.Shared.Prototypes; + +namespace Content.Server.Station.Components; + +/// +/// Runs EnsurePlanet against the largest grid on Mapinit. +/// +[RegisterComponent, Access(typeof(StationBiomeSystem))] +public sealed partial class StationBiomeComponent : Component +{ + [DataField(required: true)] + public ProtoId Biome = "Grasslands"; + + // If null, its random + [DataField] + public int? Seed = null; + + [DataField] + public Color MapLightColor = Color.Black; +} diff --git a/Content.Server/Station/Events/StationPostInitEvent.cs b/Content.Server/Station/Events/StationPostInitEvent.cs index 4f7927cee5..54b8eeeb31 100644 --- a/Content.Server/Station/Events/StationPostInitEvent.cs +++ b/Content.Server/Station/Events/StationPostInitEvent.cs @@ -4,6 +4,8 @@ namespace Content.Server.Station.Events; /// /// Raised directed on a station after it has been initialized, as well as broadcast. +/// This gets raised after the entity has been map-initialized, and the station's centcomm map/entity (if any) has been +/// set up. /// [ByRefEvent] public readonly record struct StationPostInitEvent(Entity Station); diff --git a/Content.Server/Station/Systems/StationBiomeSystem.cs b/Content.Server/Station/Systems/StationBiomeSystem.cs new file mode 100644 index 0000000000..8c80806ccf --- /dev/null +++ b/Content.Server/Station/Systems/StationBiomeSystem.cs @@ -0,0 +1,35 @@ +using Content.Server.Parallax; +using Content.Server.Station.Components; +using Content.Server.Station.Events; +using Content.Server.Station.Systems; +using Robust.Shared.Map; +using Robust.Shared.Prototypes; + +namespace Content.Server.Station.Systems; +public sealed partial class StationBiomeSystem : EntitySystem +{ + [Dependency] private readonly BiomeSystem _biome = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly StationSystem _station = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnStationPostInit); + } + + private void OnStationPostInit(Entity map, ref StationPostInitEvent args) + { + if (!TryComp(map, out StationDataComponent? dataComp)) + return; + + var station = _station.GetLargestGrid(dataComp); + if (station == null) return; + + var mapId = Transform(station.Value).MapID; + var mapUid = _mapManager.GetMapEntityId(mapId); + + _biome.EnsurePlanet(mapUid, _proto.Index(map.Comp.Biome), map.Comp.Seed, mapLight: map.Comp.MapLightColor); + } +} diff --git a/Content.Server/Station/Systems/StationSpawningSystem.cs b/Content.Server/Station/Systems/StationSpawningSystem.cs index 61fc1e0a51..85be5f740d 100644 --- a/Content.Server/Station/Systems/StationSpawningSystem.cs +++ b/Content.Server/Station/Systems/StationSpawningSystem.cs @@ -47,7 +47,7 @@ public sealed class StationSpawningSystem : SharedStationSpawningSystem [Dependency] private readonly SharedAccessSystem _accessSystem = default!; [Dependency] private readonly IdentitySystem _identity = default!; [Dependency] private readonly MetaDataSystem _metaSystem = default!; - + [Dependency] private readonly InternalEncryptionKeySpawner _internalEncryption = default!; [Dependency] private readonly ArrivalsSystem _arrivalsSystem = default!; [Dependency] private readonly ContainerSpawnPointSystem _containerSpawnPointSystem = default!; @@ -58,6 +58,7 @@ public sealed class StationSpawningSystem : SharedStationSpawningSystem /// public override void Initialize() { + base.Initialize(); Subs.CVar(_configurationManager, CCVars.ICRandomCharacters, e => _randomizeCharacters = e, true); _spawnerCallbacks = new Dictionary>() @@ -173,12 +174,15 @@ public EntityUid SpawnPlayerMob( if (prototype?.StartingGear != null) { var startingGear = _prototypeManager.Index(prototype.StartingGear); - EquipStartingGear(entity.Value, startingGear); + EquipStartingGear(entity.Value, startingGear, raiseEvent: false); if (profile != null) EquipIdCard(entity.Value, profile.Name, prototype, station); - InternalEncryptionKeySpawner.TryInsertEncryptionKey(entity.Value, startingGear, EntityManager, profile); // Parkstation - IPC + _internalEncryption.TryInsertEncryptionKey(entity.Value, startingGear, EntityManager); } + var gearEquippedEv = new StartingGearEquippedEvent(entity.Value); + RaiseLocalEvent(entity.Value, ref gearEquippedEv, true); + if (profile != null) { _humanoidSystem.LoadProfile(entity.Value, profile); diff --git a/Content.Server/Station/Systems/StationSystem.cs b/Content.Server/Station/Systems/StationSystem.cs index 408b3ebc55..88e419ae39 100644 --- a/Content.Server/Station/Systems/StationSystem.cs +++ b/Content.Server/Station/Systems/StationSystem.cs @@ -28,22 +28,16 @@ namespace Content.Server.Station.Systems; [PublicAPI] public sealed class StationSystem : EntitySystem { - [Dependency] private readonly IConfigurationManager _configurationManager = default!; [Dependency] private readonly ILogManager _logManager = default!; [Dependency] private readonly IPlayerManager _player = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ChatSystem _chatSystem = default!; - [Dependency] private readonly GameTicker _gameTicker = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly MapSystem _map = default!; private ISawmill _sawmill = default!; - private bool _randomStationOffset; - private bool _randomStationRotation; - private float _maxRandomStationOffset; - /// public override void Initialize() { @@ -112,26 +106,12 @@ private void OnPostGameMapLoad(PostGameMapLoad ev) { var dict = new Dictionary>(); - void AddGrid(string station, EntityUid grid) - { - if (dict.ContainsKey(station)) - { - dict[station].Add(grid); - } - else - { - dict[station] = new List {grid}; - } - } - // Iterate over all BecomesStation foreach (var grid in ev.Grids) { // We still setup the grid - if (!TryComp(grid, out var becomesStation)) - continue; - - AddGrid(becomesStation.Id, grid); + if (TryComp(grid, out var becomesStation)) + dict.GetOrNew(becomesStation.Id).Add(grid); } if (!dict.Any()) @@ -294,8 +274,6 @@ public EntityUid InitializeNewStation(StationConfig stationConfig, IEnumerable + /// Alert level to set the station to when the event starts. + /// + [DataField] + public string AlertLevel = "blue"; +} diff --git a/Content.Server/StationEvents/Components/RampingStationEventSchedulerComponent.cs b/Content.Server/StationEvents/Components/RampingStationEventSchedulerComponent.cs index 282ee5b612..9771e02e03 100644 --- a/Content.Server/StationEvents/Components/RampingStationEventSchedulerComponent.cs +++ b/Content.Server/StationEvents/Components/RampingStationEventSchedulerComponent.cs @@ -24,6 +24,7 @@ public sealed partial class RampingStationEventSchedulerComponent : Component /// /// The number by which average expected shift length is multiplied. Higher values lead to slower chaos growth. /// + [DataField] public float ShiftLengthModifier = 1f; // Everything below is overridden in the RampingStationEventSchedulerSystem based on CVars diff --git a/Content.Server/StationEvents/Components/StationEventComponent.cs b/Content.Server/StationEvents/Components/StationEventComponent.cs index 980034aa7b..54af1a59d9 100644 --- a/Content.Server/StationEvents/Components/StationEventComponent.cs +++ b/Content.Server/StationEvents/Components/StationEventComponent.cs @@ -1,4 +1,4 @@ -using Robust.Shared.Audio; +using Robust.Shared.Audio; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Server.StationEvents.Components; @@ -15,43 +15,43 @@ public sealed partial class StationEventComponent : Component public const float WeightHigh = 15.0f; public const float WeightVeryHigh = 20.0f; - [DataField("weight")] + [DataField] public float Weight = WeightNormal; - [DataField("startAnnouncement")] + [DataField] public bool StartAnnouncement; - [DataField("endAnnouncement")] + [DataField] public bool EndAnnouncement; /// /// In minutes, when is the first round time this event can start /// - [DataField("earliestStart")] + [DataField] public int EarliestStart = 5; /// /// In minutes, the amount of time before the same event can occur again /// - [DataField("reoccurrenceDelay")] + [DataField] public int ReoccurrenceDelay = 30; /// /// How long after being added does the event start /// - [DataField("startDelay")] + [DataField] public TimeSpan StartDelay = TimeSpan.Zero; /// /// How long the event lasts. /// - [DataField("duration")] + [DataField] public TimeSpan? Duration = TimeSpan.FromSeconds(1); /// /// The max amount of time the event lasts. /// - [DataField("maxDuration")] + [DataField] public TimeSpan? MaxDuration; /// @@ -60,13 +60,13 @@ public sealed partial class StationEventComponent : Component /// /// To avoid running deadly events with low-pop /// - [DataField("minimumPlayers")] + [DataField] public int MinimumPlayers; /// /// How many times this even can occur in a single round /// - [DataField("maxOccurrences")] + [DataField] public int? MaxOccurrences; /// diff --git a/Content.Server/StationEvents/EventManagerSystem.cs b/Content.Server/StationEvents/EventManagerSystem.cs index 2d8606e929..9c0005d06d 100644 --- a/Content.Server/StationEvents/EventManagerSystem.cs +++ b/Content.Server/StationEvents/EventManagerSystem.cs @@ -1,4 +1,5 @@ using System.Linq; +using Content.Server.Chat.Managers; using Content.Server.GameTicking; using Content.Server.StationEvents.Components; using Content.Shared.CCVar; @@ -16,6 +17,7 @@ public sealed class EventManagerSystem : EntitySystem [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly IChatManager _chat = default!; [Dependency] public readonly GameTicker GameTicker = default!; [Dependency] private readonly GlimmerSystem _glimmerSystem = default!; //Nyano - Summary: pulls in the glimmer system. @@ -45,6 +47,7 @@ public string RunRandomEvent() var ent = GameTicker.AddGameRule(randomEvent); var str = Loc.GetString("station-event-system-run-event",("eventName", ToPrettyString(ent))); + _chat.SendAdminAlert(str); Log.Info(str); return str; } diff --git a/Content.Server/StationEvents/Events/AlertLevelInterceptionRule.cs b/Content.Server/StationEvents/Events/AlertLevelInterceptionRule.cs new file mode 100644 index 0000000000..a78a542d3b --- /dev/null +++ b/Content.Server/StationEvents/Events/AlertLevelInterceptionRule.cs @@ -0,0 +1,23 @@ +using Content.Server.GameTicking.Components; +using Content.Server.StationEvents.Components; +using Content.Server.AlertLevel; + +namespace Content.Server.StationEvents.Events; + +public sealed class AlertLevelInterceptionRule : StationEventSystem +{ + [Dependency] private readonly AlertLevelSystem _alertLevelSystem = default!; + + protected override void Started(EntityUid uid, AlertLevelInterceptionRuleComponent component, GameRuleComponent gameRule, + GameRuleStartedEvent args) + { + base.Started(uid, component, gameRule, args); + + if (!TryGetRandomStation(out var chosenStation)) + return; + if (_alertLevelSystem.GetLevel(chosenStation.Value) != "green") + return; + + _alertLevelSystem.SetLevel(chosenStation.Value, component.AlertLevel, true, true, true); + } +} \ No newline at end of file diff --git a/Content.Server/StationEvents/Events/CargoGiftsRule.cs b/Content.Server/StationEvents/Events/CargoGiftsRule.cs index 62f01f58fe..550f799b27 100644 --- a/Content.Server/StationEvents/Events/CargoGiftsRule.cs +++ b/Content.Server/StationEvents/Events/CargoGiftsRule.cs @@ -1,4 +1,4 @@ -using System.Linq; +using System.Linq; using Content.Server.Cargo.Components; using Content.Server.Cargo.Systems; using Content.Server.GameTicking; @@ -74,13 +74,14 @@ protected override void ActiveTick(EntityUid uid, CargoGiftsRuleComponent compon if (!_cargoSystem.AddAndApproveOrder( station!.Value, product.Product, + product.Name, product.Cost, qty, Loc.GetString(component.Sender), Loc.GetString(component.Description), Loc.GetString(component.Dest), cargoDb, - stationData! + (station.Value, stationData) )) { break; diff --git a/Content.Server/StationEvents/Events/NoosphericZapRule.cs b/Content.Server/StationEvents/Events/NoosphericZapRule.cs index 4be7b6e63f..96c3361203 100644 --- a/Content.Server/StationEvents/Events/NoosphericZapRule.cs +++ b/Content.Server/StationEvents/Events/NoosphericZapRule.cs @@ -36,9 +36,9 @@ protected override void Started(EntityUid uid, NoosphericZapRuleComponent compon _stunSystem.TryParalyze(psion, TimeSpan.FromSeconds(component.StunDuration), false); _statusEffectsSystem.TryAddStatusEffect(psion, "Stutter", TimeSpan.FromSeconds(component.StutterDuration), false, "StutteringAccent"); - if (psionicComponent.CanReroll) + if (!psionicComponent.CanReroll) { - psionicComponent.CanReroll = false; + psionicComponent.CanReroll = true; _popupSystem.PopupEntity(Loc.GetString("noospheric-zap-seize-potential-regained"), psion, psion, Shared.Popups.PopupType.LargeCaution); } else diff --git a/Content.Server/StationEvents/Events/StationEventSystem.cs b/Content.Server/StationEvents/Events/StationEventSystem.cs index 257babd0d2..040ebad226 100644 --- a/Content.Server/StationEvents/Events/StationEventSystem.cs +++ b/Content.Server/StationEvents/Events/StationEventSystem.cs @@ -1,3 +1,4 @@ +using System.Linq; using Content.Server.Administration.Logs; using Content.Server.Chat.Systems; using Content.Server.GameTicking.Components; @@ -46,6 +47,7 @@ protected override void Added(EntityUid uid, T component, GameRuleComponent game if (!TryComp(uid, out var stationEvent)) return; + AdminLogManager.Add(LogType.EventAnnounced, $"Event added / announced: {ToPrettyString(uid)}"); stationEvent.StartTime = Timing.CurTime + stationEvent.StartDelay; diff --git a/Content.Server/StationGoal/StationGoalPaperSystem.cs b/Content.Server/StationGoal/StationGoalPaperSystem.cs index 6a059c37a3..8442f9b4aa 100644 --- a/Content.Server/StationGoal/StationGoalPaperSystem.cs +++ b/Content.Server/StationGoal/StationGoalPaperSystem.cs @@ -9,6 +9,7 @@ using Robust.Shared.Prototypes; using Robust.Shared.Random; using Content.Shared.Dataset; +using Content.Shared.Fax.Components; namespace Content.Server.StationGoal; diff --git a/Content.Server/StationGoal/StationGoalPrototype.cs b/Content.Server/StationGoal/StationGoalPrototype.cs index 733759a37d..c49d49e939 100644 --- a/Content.Server/StationGoal/StationGoalPrototype.cs +++ b/Content.Server/StationGoal/StationGoalPrototype.cs @@ -3,7 +3,7 @@ namespace Content.Server.StationGoal { [Serializable, Prototype("stationGoal")] - public sealed class StationGoalPrototype : IPrototype + public sealed partial class StationGoalPrototype : IPrototype { [IdDataFieldAttribute] public string ID { get; } = default!; diff --git a/Content.Server/StationRecords/Systems/GeneralStationRecordConsoleSystem.cs b/Content.Server/StationRecords/Systems/GeneralStationRecordConsoleSystem.cs index 721eff6f2c..a5202285d9 100644 --- a/Content.Server/StationRecords/Systems/GeneralStationRecordConsoleSystem.cs +++ b/Content.Server/StationRecords/Systems/GeneralStationRecordConsoleSystem.cs @@ -57,7 +57,7 @@ private void UpdateUserInterface(Entity en if (!TryComp(owningStation, out var stationRecords)) { - _ui.TrySetUiState(uid, GeneralStationRecordConsoleKey.Key, new GeneralStationRecordConsoleState()); + _ui.SetUiState(uid, GeneralStationRecordConsoleKey.Key, new GeneralStationRecordConsoleState()); return; } @@ -66,7 +66,7 @@ private void UpdateUserInterface(Entity en switch (listing.Count) { case 0: - _ui.TrySetUiState(uid, GeneralStationRecordConsoleKey.Key, new GeneralStationRecordConsoleState()); + _ui.SetUiState(uid, GeneralStationRecordConsoleKey.Key, new GeneralStationRecordConsoleState()); return; case 1: console.ActiveKey = listing.Keys.First(); @@ -80,6 +80,6 @@ private void UpdateUserInterface(Entity en _stationRecords.TryGetRecord(key, out var record, stationRecords); GeneralStationRecordConsoleState newState = new(id, record, listing, console.Filter); - _ui.TrySetUiState(uid, GeneralStationRecordConsoleKey.Key, newState); + _ui.SetUiState(uid, GeneralStationRecordConsoleKey.Key, newState); } } diff --git a/Content.Server/StationRecords/Systems/StationRecordsSystem.cs b/Content.Server/StationRecords/Systems/StationRecordsSystem.cs index 67f50d7a4e..f04d997043 100644 --- a/Content.Server/StationRecords/Systems/StationRecordsSystem.cs +++ b/Content.Server/StationRecords/Systems/StationRecordsSystem.cs @@ -65,7 +65,11 @@ private void CreateGeneralRecord(EntityUid station, EntityUid player, HumanoidCh TryComp(player, out var fingerprintComponent); TryComp(player, out var dnaComponent); - CreateGeneralRecord(station, idUid.Value, profile.Name, profile.Age, profile.Species, profile.Gender, jobId, fingerprintComponent?.Fingerprint, dnaComponent?.DNA, profile, records); + string specie = profile.Species; + if (!string.IsNullOrEmpty(profile.Customspeciename)) + specie = profile.Customspeciename; + + CreateGeneralRecord(station, idUid.Value, profile.Name, profile.Age, specie, profile.Gender, jobId, fingerprintComponent?.Fingerprint, dnaComponent?.DNA, profile, records); } @@ -211,7 +215,7 @@ public bool TryGetRecord(StationRecordKey key, [NotNullWhen(true)] out T? ent /// public uint? GetRecordByName(EntityUid station, string name, StationRecordsComponent? records = null) { - if (!Resolve(station, ref records)) + if (!Resolve(station, ref records, false)) return null; foreach (var (id, record) in GetRecordsOfType(station, records)) diff --git a/Content.Server/Storage/Components/EntityStorageComponent.cs b/Content.Server/Storage/Components/EntityStorageComponent.cs index 40fdb1b326..3fba89b64a 100644 --- a/Content.Server/Storage/Components/EntityStorageComponent.cs +++ b/Content.Server/Storage/Components/EntityStorageComponent.cs @@ -1,4 +1,5 @@ using Content.Server.Atmos; +using Content.Shared.Atmos; using Content.Shared.Storage.Components; using Robust.Shared.GameStates; diff --git a/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs b/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs index c49bfdec93..4c533ede3a 100644 --- a/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs +++ b/Content.Server/Storage/EntitySystems/SpawnItemsOnUseSystem.cs @@ -82,7 +82,9 @@ private void OnUseInHand(EntityUid uid, SpawnItemsOnUseComponent component, UseI if (component.Sound != null) { - _audio.PlayPvs(component.Sound, uid); + // The entity is often deleted, so play the sound at its position rather than parenting + var coordinates = Transform(uid).Coordinates; + _audio.PlayPvs(component.Sound, coordinates); } component.Uses--; diff --git a/Content.Server/Storage/EntitySystems/StorageSystem.Fill.cs b/Content.Server/Storage/EntitySystems/StorageSystem.Fill.cs index 10278cc805..768491f987 100644 --- a/Content.Server/Storage/EntitySystems/StorageSystem.Fill.cs +++ b/Content.Server/Storage/EntitySystems/StorageSystem.Fill.cs @@ -65,12 +65,23 @@ private void FillStorage(Entity entity var sortedItems = items .OrderByDescending(x => ItemSystem.GetItemShape(x.Comp).GetArea()); + ClearCantFillReasons(); foreach (var ent in sortedItems) { if (Insert(uid, ent, out _, out var reason, storageComp: storage, playSound: false)) continue; + if (CantFillReasons.Count > 0) + { + var reasons = string.Join(", ", CantFillReasons.Select(s => Loc.GetString(s))); + if (reason == null) + reason = reasons; + else + reason += $", {reasons}"; + } + Log.Error($"Tried to StorageFill {ToPrettyString(ent)} inside {ToPrettyString(uid)} but can't. reason: {reason}"); + ClearCantFillReasons(); Del(ent); } } diff --git a/Content.Server/Storage/EntitySystems/StorageSystem.cs b/Content.Server/Storage/EntitySystems/StorageSystem.cs index 0f5efda74d..4b5dd7290c 100644 --- a/Content.Server/Storage/EntitySystems/StorageSystem.cs +++ b/Content.Server/Storage/EntitySystems/StorageSystem.cs @@ -3,17 +3,12 @@ using Content.Shared.Explosion; using Content.Shared.Ghost; using Content.Shared.Hands; -using Content.Shared.Input; -using Content.Shared.Inventory; using Content.Shared.Lock; using Content.Shared.Storage; using Content.Shared.Storage.Components; using Content.Shared.Storage.EntitySystems; -using Content.Shared.Timing; using Content.Shared.Verbs; using Robust.Server.GameObjects; -using Robust.Shared.Audio.Systems; -using Robust.Shared.Input.Binding; using Robust.Shared.Map; using Robust.Shared.Player; using Robust.Shared.Prototypes; @@ -23,95 +18,14 @@ namespace Content.Server.Storage.EntitySystems; public sealed partial class StorageSystem : SharedStorageSystem { - [Dependency] private readonly IAdminManager _admin = default!; [Dependency] private readonly IPrototypeManager _prototype = default!; - [Dependency] private readonly InventorySystem _inventory = default!; - [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly UseDelaySystem _useDelay = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent>(AddUiVerb); - Subs.BuiEvents(StorageComponent.StorageUiKey.Key, subs => - { - subs.Event(OnBoundUIClosed); - }); SubscribeLocalEvent(OnExploded); SubscribeLocalEvent(OnStorageFillMapInit); - - CommandBinds.Builder - .Bind(ContentKeyFunctions.OpenBackpack, InputCmdHandler.FromDelegate(HandleOpenBackpack)) - .Bind(ContentKeyFunctions.OpenBelt, InputCmdHandler.FromDelegate(HandleOpenBelt)) - .Register(); - } - - private void AddUiVerb(EntityUid uid, StorageComponent component, GetVerbsEvent args) - { - var silent = false; - if (!args.CanAccess || !args.CanInteract || TryComp(uid, out var lockComponent) && lockComponent.Locked) - { - // we allow admins to open the storage anyways - if (!_admin.HasAdminFlag(args.User, AdminFlags.Admin)) - return; - - silent = true; - } - - silent |= HasComp(args.User); - - // Get the session for the user - if (!TryComp(args.User, out var actor)) - return; - - // Does this player currently have the storage UI open? - var uiOpen = _uiSystem.SessionHasOpenUi(uid, StorageComponent.StorageUiKey.Key, actor.PlayerSession); - - ActivationVerb verb = new() - { - Act = () => - { - if (uiOpen) - { - _uiSystem.TryClose(uid, StorageComponent.StorageUiKey.Key, actor.PlayerSession); - } - else - { - OpenStorageUI(uid, args.User, component, silent); - } - } - }; - if (uiOpen) - { - verb.Text = Loc.GetString("verb-common-close-ui"); - verb.Icon = new SpriteSpecifier.Texture( - new("/Textures/Interface/VerbIcons/close.svg.192dpi.png")); - } - else - { - verb.Text = Loc.GetString("verb-common-open-ui"); - verb.Icon = new SpriteSpecifier.Texture( - new("/Textures/Interface/VerbIcons/open.svg.192dpi.png")); - } - args.Verbs.Add(verb); - } - - private void OnBoundUIClosed(EntityUid uid, StorageComponent storageComp, BoundUIClosedEvent args) - { - if (TryComp(args.Session.AttachedEntity, out var actor) && actor?.PlayerSession != null) - CloseNestedInterfaces(uid, actor.PlayerSession, storageComp); - - // If UI is closed for everyone - if (!_uiSystem.IsUiOpen(uid, args.UiKey)) - { - storageComp.IsUiOpen = false; - UpdateAppearance((uid, storageComp, null)); - - if (storageComp.StorageCloseSound is not null) - Audio.PlayEntity(storageComp.StorageCloseSound, Filter.Pvs(uid, entityManager: EntityManager), uid, true, storageComp.StorageCloseSound.Params); - } } private void OnExploded(Entity ent, ref BeforeExplodeEvent args) @@ -119,34 +33,6 @@ private void OnExploded(Entity ent, ref BeforeExplodeEvent arg args.Contents.AddRange(ent.Comp.Container.ContainedEntities); } - /// - /// Opens the storage UI for an entity - /// - /// The entity to open the UI for - public override void OpenStorageUI(EntityUid uid, EntityUid entity, StorageComponent? storageComp = null, bool silent = false) - { - if (!Resolve(uid, ref storageComp, false) || !TryComp(entity, out ActorComponent? player)) - return; - - // prevent spamming bag open / honkerton honk sound - silent |= TryComp(uid, out var useDelay) && _useDelay.IsDelayed((uid, useDelay)); - if (!silent) - { - if (!storageComp.IsUiOpen) - _audio.PlayPvs(storageComp.StorageOpenSound, uid); - if (useDelay != null) - _useDelay.TryResetDelay((uid, useDelay)); - } - - Log.Debug($"Storage (UID {uid}) \"used\" by player session (UID {player.PlayerSession.AttachedEntity})."); - - var bui = _uiSystem.GetUiOrNull(uid, StorageComponent.StorageUiKey.Key); - if (bui == null) - return; - _uiSystem.OpenUi(bui, player.PlayerSession); - _uiSystem.SendUiMessage(bui, new StorageModifyWindowMessage()); - } - /// public override void PlayPickupAnimation(EntityUid uid, EntityCoordinates initialCoordinates, EntityCoordinates finalCoordinates, Angle initialRotation, EntityUid? user = null) @@ -154,57 +40,4 @@ public override void PlayPickupAnimation(EntityUid uid, EntityCoordinates initia var filter = Filter.Pvs(uid).RemoveWhereAttachedEntity(e => e == user); RaiseNetworkEvent(new PickupAnimationEvent(GetNetEntity(uid), GetNetCoordinates(initialCoordinates), GetNetCoordinates(finalCoordinates), initialRotation), filter); } - - /// - /// If the user has nested-UIs open (e.g., PDA UI open when pda is in a backpack), close them. - /// - /// - public void CloseNestedInterfaces(EntityUid uid, ICommonSession session, StorageComponent? storageComp = null) - { - if (!Resolve(uid, ref storageComp)) - return; - - // for each containing thing - // if it has a storage comp - // ensure unsubscribe from session - // if it has a ui component - // close ui - foreach (var entity in storageComp.Container.ContainedEntities) - { - if (!TryComp(entity, out UserInterfaceComponent? ui)) - continue; - - foreach (var bui in ui.Interfaces.Values) - { - _uiSystem.TryClose(entity, bui.UiKey, session, ui); - } - } - } - - private void HandleOpenBackpack(ICommonSession? session) - { - HandleOpenSlotUI(session, "back"); - } - - private void HandleOpenBelt(ICommonSession? session) - { - HandleOpenSlotUI(session, "belt"); - } - - private void HandleOpenSlotUI(ICommonSession? session, string slot) - { - if (session is not { } playerSession) - return; - - if (playerSession.AttachedEntity is not {Valid: true} playerEnt || !Exists(playerEnt)) - return; - - if (!_inventory.TryGetSlotEntity(playerEnt, slot, out var storageEnt)) - return; - - if (!ActionBlocker.CanInteract(playerEnt, storageEnt)) - return; - - OpenStorageUI(storageEnt.Value, playerEnt); - } } diff --git a/Content.Server/Store/Systems/StoreSystem.Refund.cs b/Content.Server/Store/Systems/StoreSystem.Refund.cs index d59ee75e3e..5a8be4be2b 100644 --- a/Content.Server/Store/Systems/StoreSystem.Refund.cs +++ b/Content.Server/Store/Systems/StoreSystem.Refund.cs @@ -1,4 +1,4 @@ -using Content.Server.Store.Components; +using Content.Server.Store.Components; using Robust.Shared.Containers; namespace Content.Server.Store.Systems; diff --git a/Content.Server/Store/Systems/StoreSystem.Ui.cs b/Content.Server/Store/Systems/StoreSystem.Ui.cs index a7aac47434..0d2f3af91b 100644 --- a/Content.Server/Store/Systems/StoreSystem.Ui.cs +++ b/Content.Server/Store/Systems/StoreSystem.Ui.cs @@ -73,7 +73,7 @@ public void CloseUi(EntityUid uid, StoreComponent? component = null) if (!Resolve(uid, ref component)) return; - _ui.TryCloseAll(uid, StoreUiKey.Key); + _ui.CloseUi(uid, StoreUiKey.Key); } /// @@ -83,12 +83,13 @@ public void CloseUi(EntityUid uid, StoreComponent? component = null) /// The store entity itself /// The store component being refreshed. /// - public void UpdateUserInterface(EntityUid? user, EntityUid store, StoreComponent? component = null, PlayerBoundUserInterface? ui = null) + public void UpdateUserInterface(EntityUid? user, EntityUid store, StoreComponent? component = null) { if (!Resolve(store, ref component)) return; - if (ui == null && !_ui.TryGetUi(store, StoreUiKey.Key, out ui)) + // TODO: Why is the state not being set unless this? + if (!_ui.HasUi(store, StoreUiKey.Key)) return; //this is the person who will be passed into logic for all listing filtering. @@ -113,12 +114,12 @@ public void UpdateUserInterface(EntityUid? user, EntityUid store, StoreComponent // only tell operatives to lock their uplink if it can be locked var showFooter = HasComp(store); var state = new StoreUpdateState(component.LastAvailableListings, allCurrency, showFooter, component.RefundAllowed); - _ui.SetUiState(ui, state); + _ui.SetUiState(store, StoreUiKey.Key, state); } private void OnRequestUpdate(EntityUid uid, StoreComponent component, StoreRequestUpdateInterfaceMessage args) { - UpdateUserInterface(args.Session.AttachedEntity, GetEntity(args.Entity), component); + UpdateUserInterface(args.Actor, GetEntity(args.Entity), component); } private void BeforeActivatableUiOpen(EntityUid uid, StoreComponent component, BeforeActivatableUIOpenEvent args) @@ -139,8 +140,7 @@ private void OnBuyRequest(EntityUid uid, StoreComponent component, StoreBuyListi return; } - if (msg.Session.AttachedEntity is not { Valid: true } buyer) - return; + var buyer = msg.Actor; //verify that we can actually buy this listing and it wasn't added if (!ListingHasCategory(listing, component.Categories)) @@ -215,11 +215,11 @@ private void OnBuyRequest(EntityUid uid, StoreComponent component, StoreBuyListi { HandleRefundComp(uid, component, actionId.Value); - if (listing.ProductUpgradeID != null) + if (listing.ProductUpgradeId != null) { foreach (var upgradeListing in component.Listings) { - if (upgradeListing.ID == listing.ProductUpgradeID) + if (upgradeListing.ID == listing.ProductUpgradeId) { upgradeListing.ProductActionEntity = actionId.Value; break; @@ -229,7 +229,7 @@ private void OnBuyRequest(EntityUid uid, StoreComponent component, StoreBuyListi } } - if (listing is { ProductUpgradeID: not null, ProductActionEntity: not null }) + if (listing is { ProductUpgradeId: not null, ProductActionEntity: not null }) { if (listing.ProductActionEntity != null) { @@ -263,15 +263,13 @@ private void OnBuyRequest(EntityUid uid, StoreComponent component, StoreBuyListi $"{ToPrettyString(buyer):player} purchased listing \"{ListingLocalisationHelpers.GetLocalisedNameOrEntityName(listing, _prototypeManager)}\" from {ToPrettyString(uid)}"); listing.PurchaseAmount++; //track how many times something has been purchased - _audio.PlayEntity(component.BuySuccessSound, msg.Session, uid); //cha-ching! + _audio.PlayEntity(component.BuySuccessSound, msg.Actor, uid); //cha-ching! - //WD EDIT START if (listing.SaleLimit != 0 && listing.DiscountValue > 0 && listing.PurchaseAmount >= listing.SaleLimit) { listing.DiscountValue = 0; listing.Cost = listing.OldCost; } - //WD EDIT END UpdateUserInterface(buyer, uid, component); } @@ -297,8 +295,7 @@ private void OnRequestWithdraw(EntityUid uid, StoreComponent component, StoreReq if (proto.Cash == null || !proto.CanWithdraw) return; - if (msg.Session.AttachedEntity is not { Valid: true } buyer) - return; + var buyer = msg.Actor; FixedPoint2 amountRemaining = msg.Amount; var coordinates = Transform(buyer).Coordinates; @@ -321,7 +318,7 @@ private void OnRequestRefund(EntityUid uid, StoreComponent component, StoreReque { // TODO: Remove guardian/holopara - if (args.Session.AttachedEntity is not { Valid: true } buyer) + if (args.Actor is not { Valid: true } buyer) return; if (!IsOnStartingMap(uid, component)) diff --git a/Content.Server/Store/Systems/StoreSystem.cs b/Content.Server/Store/Systems/StoreSystem.cs index 39129e154a..978d98ac0c 100644 --- a/Content.Server/Store/Systems/StoreSystem.cs +++ b/Content.Server/Store/Systems/StoreSystem.cs @@ -10,7 +10,7 @@ using Robust.Server.GameObjects; using Robust.Shared.Prototypes; using System.Linq; -using Content.Server._White.StoreDiscount; +using Content.Server.StoreDiscount; using Robust.Shared.Utility; namespace Content.Server.Store.Systems; @@ -23,7 +23,7 @@ public sealed partial class StoreSystem : EntitySystem { [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; - [Dependency] private readonly StoreDiscountSystem _storeDiscount = default!; // WD EDIT + [Dependency] private readonly StoreDiscountSystem _storeDiscount = default!; public override void Initialize() { @@ -102,7 +102,7 @@ private void OnAfterInteract(EntityUid uid, CurrencyComponent component, AfterIn if (args.Handled) { var msg = Loc.GetString("store-currency-inserted", ("used", args.Used), ("target", args.Target)); - _popup.PopupEntity(msg, args.Target.Value); + _popup.PopupEntity(msg, args.Target.Value, args.User); QueueDel(args.Used); } } @@ -201,13 +201,10 @@ public void InitializeFromPreset(StorePresetPrototype preset, EntityUid uid, Sto if (component.Balance == new Dictionary() && preset.InitialBalance != null) //if we don't have a value stored, use the preset TryAddCurrency(preset.InitialBalance, uid, component); - _storeDiscount.ApplyDiscounts(component.Listings, preset); // WD EDIT + _storeDiscount.ApplyDiscounts(component.Listings, preset); - var ui = _ui.GetUiOrNull(uid, StoreUiKey.Key); - if (ui != null) - { - _ui.SetUiState(ui, new StoreInitializeState(preset.StoreName)); - } + if (_ui.HasUi(uid, StoreUiKey.Key)) + _ui.SetUiState(uid, StoreUiKey.Key, new StoreInitializeState(preset.StoreName)); } } diff --git a/Content.Server/_White/StoreDiscount/StoreDiscountSystem.cs b/Content.Server/StoreDiscount/StoreDiscountSystem.cs similarity index 88% rename from Content.Server/_White/StoreDiscount/StoreDiscountSystem.cs rename to Content.Server/StoreDiscount/StoreDiscountSystem.cs index 412af7b8ea..8f77eba780 100644 --- a/Content.Server/_White/StoreDiscount/StoreDiscountSystem.cs +++ b/Content.Server/StoreDiscount/StoreDiscountSystem.cs @@ -4,7 +4,7 @@ using Robust.Shared.Prototypes; using Robust.Shared.Random; -namespace Content.Server._White.StoreDiscount; +namespace Content.Server.StoreDiscount; public sealed class StoreDiscountSystem : EntitySystem { @@ -18,8 +18,10 @@ public void ApplyDiscounts(IEnumerable listings, StorePresetPrototy var count = _random.Next(store.Sales.MinItems, store.Sales.MaxItems + 1); listings = listings - .Where(l => !l.SaleBlacklist && l.Cost.Any(x => x.Value > 1) - && store.Categories.Overlaps(ChangedFormatCategories(l.Categories))) + .Where(l => + !l.SaleBlacklist + && l.Cost.Any(x => x.Value > 1) + && store.Categories.Overlaps(ChangedFormatCategories(l.Categories))) .OrderBy(_ => _random.Next()).Take(count).ToList(); foreach (var listing in listings) diff --git a/Content.Server/Strip/StrippableSystem.cs b/Content.Server/Strip/StrippableSystem.cs index d9f084252a..73f2ce17a6 100644 --- a/Content.Server/Strip/StrippableSystem.cs +++ b/Content.Server/Strip/StrippableSystem.cs @@ -112,17 +112,15 @@ public override void StartOpeningStripper(EntityUid user, Entity(user, out var mode) && mode.IsInCombatMode && !openInCombat) return; - if (TryComp(user, out var actor) && HasComp(user)) + if (HasComp(user)) { - if (_userInterfaceSystem.SessionHasOpenUi(strippable, StrippingUiKey.Key, actor.PlayerSession)) - return; - _userInterfaceSystem.TryOpen(strippable, StrippingUiKey.Key, actor.PlayerSession); + _userInterfaceSystem.OpenUi(strippable.Owner, StrippingUiKey.Key, user); } } private void OnStripButtonPressed(Entity strippable, ref StrippingSlotButtonPressed args) { - if (args.Session.AttachedEntity is not { Valid: true } user || + if (args.Actor is not { Valid: true } user || !TryComp(user, out var userHands)) return; @@ -174,7 +172,7 @@ private void StripHand( private void OnStripEnsnareMessage(EntityUid uid, EnsnareableComponent component, StrippingEnsnareButtonPressed args) { - if (args.Session.AttachedEntity is not { Valid: true } user) + if (args.Actor is not { Valid: true } user) return; foreach (var entity in component.Container.ContainedEntities) diff --git a/Content.Server/Stunnable/Systems/StunbatonSystem.cs b/Content.Server/Stunnable/Systems/StunbatonSystem.cs index 614331fe0a..4b52bf1fb6 100644 --- a/Content.Server/Stunnable/Systems/StunbatonSystem.cs +++ b/Content.Server/Stunnable/Systems/StunbatonSystem.cs @@ -1,4 +1,3 @@ -using System.Diagnostics.CodeAnalysis; using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; using Content.Server.Power.Events; @@ -12,7 +11,6 @@ using Content.Shared.Popups; using Content.Shared.PowerCell.Components; using Content.Shared.Stunnable; -using Robust.Shared.Containers; namespace Content.Server.Stunnable.Systems { @@ -23,8 +21,6 @@ public sealed class StunbatonSystem : SharedStunbatonSystem [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly BatterySystem _battery = default!; [Dependency] private readonly SharedItemToggleSystem _itemToggle = default!; - [Dependency] private readonly SharedContainerSystem _containers = default!; // WD EDIT - public override void Initialize() { base.Initialize(); @@ -42,7 +38,7 @@ private void OnStaminaHitAttempt(Entity entity, ref StaminaD { // WD EDIT START if (!_itemToggle.IsActivated(entity.Owner) - || !TryGetBatteryComponent(entity, out var battery, out var batteryUid) + || !_battery.TryGetBatteryComponent(entity, out var battery, out var batteryUid) || !_battery.TryUseCharge(batteryUid.Value, entity.Comp.EnergyPerUse, battery)) args.Cancelled = true; // WD EDIT END @@ -55,7 +51,7 @@ private void OnExamined(Entity entity, ref ExaminedEvent arg : Loc.GetString("comp-stunbaton-examined-off"); args.PushMarkup(onMsg); - if (TryGetBatteryComponent(entity, out var battery, out _)) // WD EDIT + if (_battery.TryGetBatteryComponent(entity, out var battery, out _)) // WD EDIT { var count = (int) (battery.CurrentCharge / entity.Comp.EnergyPerUse); args.PushMarkup(Loc.GetString("melee-battery-examine", ("color", "yellow"), ("count", count))); @@ -70,7 +66,7 @@ private void ToggleDone(Entity entity, ref ItemToggledEvent private void TryTurnOn(Entity entity, ref ItemToggleActivateAttemptEvent args) { // WD EDIT START - if (!TryGetBatteryComponent(entity, out var battery, out _) + if (!_battery.TryGetBatteryComponent(entity, out var battery, out _) || battery.CurrentCharge < entity.Comp.EnergyPerUse) { @@ -81,7 +77,7 @@ private void TryTurnOn(Entity entity, ref ItemToggleActivate _popup.PopupEntity(Loc.GetString("stunbaton-component-low-charge"), (EntityUid) args.User, (EntityUid) args.User); } - + return; } // WD EDIT END @@ -126,36 +122,10 @@ private void OnPowerCellChanged(Entity entity, ref PowerCell private void CheckCharge(Entity entity) { - if (!TryGetBatteryComponent(entity, out var battery, out _) + if (!_battery.TryGetBatteryComponent(entity, out var battery, out _) || battery.CurrentCharge < entity.Comp.EnergyPerUse) _itemToggle.TryDeactivate(entity.Owner, predicted: false); } - - private bool TryGetBatteryComponent(EntityUid uid, [NotNullWhen(true)] out BatteryComponent? battery, - [NotNullWhen(true)] out EntityUid? batteryUid) - { - if (TryComp(uid, out battery)) - { - batteryUid = uid; - return true; - } - - if (!_containers.TryGetContainer(uid, "cell_slot", out var container) - || container is not ContainerSlot slot) - { - battery = null; - batteryUid = null; - return false; - } - - batteryUid = slot.ContainedEntity; - - if (batteryUid != null) - return TryComp(batteryUid, out battery); - - battery = null; - return false; - } // WD EDIT END } } diff --git a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraMonitorSystem.cs b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraMonitorSystem.cs index f258fbe89c..ca0f59cd14 100644 --- a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraMonitorSystem.cs +++ b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraMonitorSystem.cs @@ -90,7 +90,7 @@ private void OnComponentStartup(EntityUid uid, SurveillanceCameraMonitorComponen private void OnSubnetRequest(EntityUid uid, SurveillanceCameraMonitorComponent component, SurveillanceCameraMonitorSubnetRequestMessage args) { - if (args.Session.AttachedEntity != null) + if (args.Actor != null) { SetActiveSubnet(uid, args.Subnet, component); } @@ -208,13 +208,9 @@ private void OnSurveillanceCameraDeactivate(EntityUid uid, SurveillanceCameraMon private void OnBoundUiClose(EntityUid uid, SurveillanceCameraMonitorComponent component, BoundUIClosedEvent args) { - if (args.Session.AttachedEntity == null) - { - return; - } - - RemoveViewer(uid, args.Session.AttachedEntity.Value, component); + RemoveViewer(uid, args.Actor, component); } + #endregion private void SendHeartbeat(EntityUid uid, SurveillanceCameraMonitorComponent? monitor = null) @@ -487,6 +483,6 @@ private void UpdateUserInterface(EntityUid uid, SurveillanceCameraMonitorCompone } var state = new SurveillanceCameraMonitorUiState(GetNetEntity(monitor.ActiveCamera), monitor.KnownSubnets.Keys.ToHashSet(), monitor.ActiveCameraAddress, monitor.ActiveSubnet, monitor.KnownCameras); - _userInterface.TrySetUiState(uid, SurveillanceCameraMonitorUiKey.Key, state); + _userInterface.SetUiState(uid, SurveillanceCameraMonitorUiKey.Key, state); } } diff --git a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraRouterSystem.cs b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraRouterSystem.cs index ac41723026..d0c2cd78d3 100644 --- a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraRouterSystem.cs +++ b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraRouterSystem.cs @@ -134,14 +134,14 @@ private void OnSetNetwork(EntityUid uid, SurveillanceCameraRouterComponent compo UpdateSetupInterface(uid, component); } - private void OpenSetupInterface(EntityUid uid, EntityUid player, SurveillanceCameraRouterComponent? camera = null, ActorComponent? actor = null) + private void OpenSetupInterface(EntityUid uid, EntityUid player, SurveillanceCameraRouterComponent? camera = null) { - if (!Resolve(uid, ref camera) || !Resolve(player, ref actor)) + if (!Resolve(uid, ref camera)) return; - if (!_userInterface.TryGetUi(uid, SurveillanceCameraSetupUiKey.Router, out var bui)) + + if (!_userInterface.TryOpenUi(uid, SurveillanceCameraSetupUiKey.Router, player)) return; - _userInterface.OpenUi(bui, actor.PlayerSession); UpdateSetupInterface(uid, camera); } @@ -154,13 +154,13 @@ private void UpdateSetupInterface(EntityUid uid, SurveillanceCameraRouterCompone if (router.AvailableNetworks.Count == 0 || router.SubnetFrequencyId != null) { - _userInterface.TryCloseAll(uid, SurveillanceCameraSetupUiKey.Router); + _userInterface.CloseUi(uid, SurveillanceCameraSetupUiKey.Router); return; } var state = new SurveillanceCameraSetupBoundUiState(router.SubnetName, deviceNet.ReceiveFrequency ?? 0, router.AvailableNetworks, true, router.SubnetFrequencyId != null); - _userInterface.TrySetUiState(uid, SurveillanceCameraSetupUiKey.Router, state); + _userInterface.SetUiState(uid, SurveillanceCameraSetupUiKey.Router, state); } private void SendHeartbeat(EntityUid uid, string origin, string destination, diff --git a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSystem.cs b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSystem.cs index ec3d33157a..accaa75d1c 100644 --- a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSystem.cs +++ b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSystem.cs @@ -192,14 +192,14 @@ private void OnSetNetwork(EntityUid uid, SurveillanceCameraComponent component, UpdateSetupInterface(uid, component); } - private void OpenSetupInterface(EntityUid uid, EntityUid player, SurveillanceCameraComponent? camera = null, ActorComponent? actor = null) + private void OpenSetupInterface(EntityUid uid, EntityUid player, SurveillanceCameraComponent? camera = null) { - if (!Resolve(uid, ref camera) || !Resolve(player, ref actor)) + if (!Resolve(uid, ref camera)) return; - if (!_userInterface.TryGetUi(uid, SurveillanceCameraSetupUiKey.Camera, out var bui)) + + if (!_userInterface.TryOpenUi(uid, SurveillanceCameraSetupUiKey.Camera, player)) return; - _userInterface.OpenUi(bui, actor.PlayerSession); UpdateSetupInterface(uid, camera); } @@ -212,7 +212,7 @@ private void UpdateSetupInterface(EntityUid uid, SurveillanceCameraComponent? ca if (camera.NameSet && camera.NetworkSet) { - _userInterface.TryCloseAll(uid, SurveillanceCameraSetupUiKey.Camera); + _userInterface.CloseUi(uid, SurveillanceCameraSetupUiKey.Camera); return; } @@ -224,14 +224,14 @@ private void UpdateSetupInterface(EntityUid uid, SurveillanceCameraComponent? ca } else if (!camera.NetworkSet) { - _userInterface.TryCloseAll(uid, SurveillanceCameraSetupUiKey.Camera); + _userInterface.CloseUi(uid, SurveillanceCameraSetupUiKey.Camera); return; } } var state = new SurveillanceCameraSetupBoundUiState(camera.CameraId, deviceNet.ReceiveFrequency ?? 0, camera.AvailableNetworks, camera.NameSet, camera.NetworkSet); - _userInterface.TrySetUiState(uid, SurveillanceCameraSetupUiKey.Camera, state); + _userInterface.SetUiState(uid, SurveillanceCameraSetupUiKey.Camera, state); } // If the camera deactivates for any reason, it must have all viewers removed, diff --git a/Content.Server/Telescope/TelescopeSystem.cs b/Content.Server/Telescope/TelescopeSystem.cs new file mode 100644 index 0000000000..0e53cc15a2 --- /dev/null +++ b/Content.Server/Telescope/TelescopeSystem.cs @@ -0,0 +1,5 @@ +using Content.Shared.Telescope; + +namespace Content.Server.Telescope; + +public sealed class TelescopeSystem : SharedTelescopeSystem; diff --git a/Content.Server/Terminator/Components/TerminatorComponent.cs b/Content.Server/Terminator/Components/TerminatorComponent.cs deleted file mode 100644 index 9427f95eed..0000000000 --- a/Content.Server/Terminator/Components/TerminatorComponent.cs +++ /dev/null @@ -1,19 +0,0 @@ -using Content.Server.Terminator.Systems; -using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; - -namespace Content.Server.Terminator.Components; - -/// -/// Main terminator component, handles the target, if any, and objectives. -/// -[RegisterComponent, Access(typeof(TerminatorSystem))] -public sealed partial class TerminatorComponent : Component -{ - /// - /// Used to force the terminate objective's target. - /// If null it will be a random person. - /// - [DataField("target")] - public EntityUid? Target; -} diff --git a/Content.Server/Terminator/Components/TerminatorTargetComponent.cs b/Content.Server/Terminator/Components/TerminatorTargetComponent.cs deleted file mode 100644 index 786cbd1167..0000000000 --- a/Content.Server/Terminator/Components/TerminatorTargetComponent.cs +++ /dev/null @@ -1,16 +0,0 @@ -using Content.Server.Terminator.Systems; - -namespace Content.Server.Terminator.Components; - -/// -/// Sets after the ghost role spawns. -/// -[RegisterComponent, Access(typeof(TerminatorSystem))] -public sealed partial class TerminatorTargetComponent : Component -{ - /// - /// The target to set after the ghost role spawns. - /// - [DataField("target")] - public EntityUid? Target; -} diff --git a/Content.Server/Terminator/Systems/TerminatorSystem.cs b/Content.Server/Terminator/Systems/TerminatorSystem.cs deleted file mode 100644 index 837778d3c4..0000000000 --- a/Content.Server/Terminator/Systems/TerminatorSystem.cs +++ /dev/null @@ -1,75 +0,0 @@ -using Content.Server.Body.Components; -using Content.Server.GenericAntag; -using Content.Server.Ghost.Roles.Events; -using Content.Server.Roles; -using Content.Server.Terminator.Components; -using Content.Shared.Roles; -using Robust.Shared.Map; - -namespace Content.Server.Terminator.Systems; - -public sealed class TerminatorSystem : EntitySystem -{ - [Dependency] private readonly SharedRoleSystem _role = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnMapInit); - SubscribeLocalEvent(OnSpawned); - SubscribeLocalEvent(OnCreated); - } - - private void OnMapInit(EntityUid uid, TerminatorComponent comp, MapInitEvent args) - { - // cyborg doesn't need to breathe - //RemComp(uid); // DeltaV - paradox anomaly does actually need to breathe - } - - private void OnSpawned(EntityUid uid, TerminatorComponent comp, GhostRoleSpawnerUsedEvent args) - { - if (!TryComp(args.Spawner, out var target)) - return; - - comp.Target = target.Target; - } - - private void OnCreated(EntityUid uid, TerminatorComponent comp, ref GenericAntagCreatedEvent args) - { - var mindId = args.MindId; - var mind = args.Mind; - - _role.MindAddRole(mindId, new RoleBriefingComponent - { - Briefing = Loc.GetString("terminator-role-briefing") - }, mind); - _role.MindAddRole(mindId, new TerminatorRoleComponent(), mind); - } - - /// - /// DeltaV - used for paradox anomaly. - /// - public void SetTarget(Entity ent, EntityUid mindId) - { - ent.Comp ??= EnsureComp(ent); - ent.Comp.Target = mindId; - } - - /// - /// Create a spawner at a position and return it. - /// - /// Coordinates to create the spawner at - /// Optional target mind to force the terminator to target - public EntityUid CreateSpawner(EntityCoordinates coords, EntityUid? target) - { - var uid = Spawn("SpawnPointGhostTerminator", coords); - if (target != null) - { - var comp = EnsureComp(uid); - comp.Target = target; - } - - return uid; - } -} diff --git a/Content.Server/Thief/Systems/ThiefUndeterminedBackpackSystem.cs b/Content.Server/Thief/Systems/ThiefUndeterminedBackpackSystem.cs index 9918565328..133876bd75 100644 --- a/Content.Server/Thief/Systems/ThiefUndeterminedBackpackSystem.cs +++ b/Content.Server/Thief/Systems/ThiefUndeterminedBackpackSystem.cs @@ -79,6 +79,6 @@ private void UpdateUI(EntityUid uid, ThiefUndeterminedBackpackComponent? compone data.Add(i, info); } - _ui.TrySetUiState(uid, ThiefBackpackUIKey.Key, new ThiefBackpackBoundUserInterfaceState(data, MaxSelectedSets)); + _ui.SetUiState(uid, ThiefBackpackUIKey.Key, new ThiefBackpackBoundUserInterfaceState(data, MaxSelectedSets)); } } diff --git a/Content.Server/Tips/TipsSystem.cs b/Content.Server/Tips/TipsSystem.cs index cc45a3a1d5..168f11de8f 100644 --- a/Content.Server/Tips/TipsSystem.cs +++ b/Content.Server/Tips/TipsSystem.cs @@ -1,9 +1,13 @@ -using Content.Server.Chat.Managers; +using Content.Server.Chat.Managers; using Content.Server.GameTicking; using Content.Shared.CCVar; using Content.Shared.Chat; using Content.Shared.Dataset; +using Content.Shared.Tips; +using Robust.Server.GameObjects; +using Robust.Server.Player; using Robust.Shared.Configuration; +using Robust.Shared.Console; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; @@ -22,11 +26,14 @@ public sealed class TipsSystem : EntitySystem [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly GameTicker _ticker = default!; + [Dependency] private readonly IConsoleHost _conHost = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; private bool _tipsEnabled; private float _tipTimeOutOfRound; private float _tipTimeInRound; private string _tipsDataset = ""; + private float _tipTippyChance; [ViewVariables(VVAccess.ReadWrite)] private TimeSpan _nextTipTime = TimeSpan.Zero; @@ -40,10 +47,100 @@ public override void Initialize() Subs.CVar(_cfg, CCVars.TipFrequencyInRound, SetInRound, true); Subs.CVar(_cfg, CCVars.TipsEnabled, SetEnabled, true); Subs.CVar(_cfg, CCVars.TipsDataset, SetDataset, true); + Subs.CVar(_cfg, CCVars.TipsTippyChance, SetTippyChance, true); RecalculateNextTipTime(); + _conHost.RegisterCommand("tippy", Loc.GetString("cmd-tippy-desc"), Loc.GetString("cmd-tippy-help"), SendTippy, SendTippyHelper); + _conHost.RegisterCommand("tip", Loc.GetString("cmd-tip-desc"), "tip", SendTip); } + private CompletionResult SendTippyHelper(IConsoleShell shell, string[] args) + { + return args.Length switch + { + 1 => CompletionResult.FromHintOptions(CompletionHelper.SessionNames(), Loc.GetString("cmd-tippy-auto-1")), + 2 => CompletionResult.FromHint(Loc.GetString("cmd-tippy-auto-2")), + 3 => CompletionResult.FromHintOptions(CompletionHelper.PrototypeIDs(), Loc.GetString("cmd-tippy-auto-3")), + 4 => CompletionResult.FromHint(Loc.GetString("cmd-tippy-auto-4")), + 5 => CompletionResult.FromHint(Loc.GetString("cmd-tippy-auto-5")), + 6 => CompletionResult.FromHint(Loc.GetString("cmd-tippy-auto-6")), + _ => CompletionResult.Empty + }; + } + + private void SendTip(IConsoleShell shell, string argstr, string[] args) + { + AnnounceRandomTip(); + RecalculateNextTipTime(); + } + + private void SendTippy(IConsoleShell shell, string argstr, string[] args) + { + if (args.Length < 2) + { + shell.WriteLine(Loc.GetString("cmd-tippy-help")); + return; + } + + ActorComponent? actor = null; + if (args[0] != "all") + { + ICommonSession? session; + if (args.Length > 0) + { + // Get player entity + if (!_playerManager.TryGetSessionByUsername(args[0], out session)) + { + shell.WriteLine(Loc.GetString("cmd-tippy-error-no-user")); + return; + } + } + else + { + session = shell.Player; + } + + if (session?.AttachedEntity is not { } user) + { + shell.WriteLine(Loc.GetString("cmd-tippy-error-no-user")); + return; + } + + if (!TryComp(user, out actor)) + { + shell.WriteError(Loc.GetString("cmd-tippy-error-no-user")); + return; + } + } + + var ev = new TippyEvent(args[1]); + + if (args.Length > 2) + { + ev.Proto = args[2]; + if (!_prototype.HasIndex(args[2])) + { + shell.WriteError(Loc.GetString("cmd-tippy-error-no-prototype", ("proto", args[2]))); + return; + } + } + + if (args.Length > 3) + ev.SpeakTime = float.Parse(args[3]); + + if (args.Length > 4) + ev.SlideTime = float.Parse(args[4]); + + if (args.Length > 5) + ev.WaddleInterval = float.Parse(args[5]); + + if (actor != null) + RaiseNetworkEvent(ev, actor.PlayerSession); + else + RaiseNetworkEvent(ev); + } + + public override void Update(float frameTime) { base.Update(frameTime); @@ -81,6 +178,11 @@ private void SetDataset(string value) _tipsDataset = value; } + private void SetTippyChance(float value) + { + _tipTippyChance = value; + } + private void AnnounceRandomTip() { if (!_prototype.TryIndex(_tipsDataset, out var tips)) @@ -89,8 +191,16 @@ private void AnnounceRandomTip() var tip = _random.Pick(tips.Values); var msg = Loc.GetString("tips-system-chat-message-wrap", ("tip", tip)); - _chat.ChatMessageToManyFiltered(Filter.Broadcast(), ChatChannel.OOC, tip, msg, + if (_random.Prob(_tipTippyChance)) + { + var ev = new TippyEvent(msg); + ev.SpeakTime = 1 + tip.Length * 0.05f; + RaiseNetworkEvent(ev); + } else + { + _chat.ChatMessageToManyFiltered(Filter.Broadcast(), ChatChannel.OOC, tip, msg, EntityUid.Invalid, false, false, Color.MediumPurple); + } } private void RecalculateNextTipTime() diff --git a/Content.Server/Tools/Components/WelderComponent.cs b/Content.Server/Tools/Components/WelderComponent.cs deleted file mode 100644 index b0db2c58e8..0000000000 --- a/Content.Server/Tools/Components/WelderComponent.cs +++ /dev/null @@ -1,56 +0,0 @@ -using Content.Shared.Chemistry.Components; -using Content.Shared.Chemistry.Reagent; -using Content.Shared.FixedPoint; -using Content.Shared.Tools.Components; -using Robust.Shared.Audio; -using Robust.Shared.Prototypes; - -namespace Content.Server.Tools.Components -{ - [RegisterComponent] - public sealed partial class WelderComponent : SharedWelderComponent - { - /// - /// Name of . - /// - [DataField("fuelSolution"), ViewVariables(VVAccess.ReadWrite)] - public string FuelSolutionName = "Welder"; - - /// - /// Solution on the entity that contains the fuel. - /// - [DataField("fuelSolutionRef")] - public Entity? FuelSolution = null; - - /// - /// Reagent that will be used as fuel for welding. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public ProtoId FuelReagent = "WeldingFuel"; - - /// - /// Fuel consumption per second while the welder is active. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public FixedPoint2 FuelConsumption = FixedPoint2.New(2.0f); - - /// - /// A fuel amount to be consumed when the welder goes from being unlit to being lit. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public FixedPoint2 FuelLitCost = FixedPoint2.New(0.5f); - - /// - /// Sound played when refilling the welder. - /// - [DataField] - public SoundSpecifier WelderRefill = new SoundPathSpecifier("/Audio/Effects/refill.ogg"); - - /// - /// Whether the item is safe to refill while lit without exploding the tank. - /// - [DataField] - public bool TankSafe = false; //I have no idea what I'm doing - - } -} diff --git a/Content.Server/Tools/ToolSystem.Welder.cs b/Content.Server/Tools/ToolSystem.Welder.cs deleted file mode 100644 index 727526b398..0000000000 --- a/Content.Server/Tools/ToolSystem.Welder.cs +++ /dev/null @@ -1,211 +0,0 @@ -using Content.Server.Chemistry.Components; -using Content.Server.IgnitionSource; -using Content.Server.Tools.Components; -using Content.Shared.Chemistry.Components.SolutionManager; -using Content.Shared.Database; -using Content.Shared.DoAfter; -using Content.Shared.Examine; -using Content.Shared.FixedPoint; -using Content.Shared.Interaction; -using Content.Shared.Item.ItemToggle; -using Content.Shared.Tools.Components; -using Robust.Shared.GameStates; -using System.Linq; -using Content.Shared.Item.ItemToggle.Components; - -namespace Content.Server.Tools -{ - public sealed partial class ToolSystem - { - [Dependency] private readonly SharedItemToggleSystem _itemToggle = default!; - [Dependency] private readonly IgnitionSourceSystem _ignitionSource = default!; - private readonly HashSet _activeWelders = new(); - - private const float WelderUpdateTimer = 1f; - private float _welderTimer; - - public void InitializeWelders() - { - SubscribeLocalEvent(OnWelderExamine); - SubscribeLocalEvent(OnWelderAfterInteract); - SubscribeLocalEvent>(OnWelderToolUseAttempt); - SubscribeLocalEvent(OnWelderShutdown); - SubscribeLocalEvent(OnWelderGetState); - SubscribeLocalEvent(OnToggle); - SubscribeLocalEvent(OnActivateAttempt); - } - - public (FixedPoint2 fuel, FixedPoint2 capacity) GetWelderFuelAndCapacity(EntityUid uid, WelderComponent? welder = null, SolutionContainerManagerComponent? solutionContainer = null) - { - if (!Resolve(uid, ref welder, ref solutionContainer) - || !_solutionContainer.ResolveSolution((uid, solutionContainer), welder.FuelSolutionName, ref welder.FuelSolution, out var fuelSolution)) - return (FixedPoint2.Zero, FixedPoint2.Zero); - - return (fuelSolution.GetTotalPrototypeQuantity(welder.FuelReagent), fuelSolution.MaxVolume); - } - - private void OnToggle(Entity entity, ref ItemToggledEvent args) - { - if (args.Activated) - TurnOn(entity, args.User); - else - TurnOff(entity, args.User); - } - - private void OnActivateAttempt(Entity entity, ref ItemToggleActivateAttemptEvent args) - { - if (!_solutionContainer.ResolveSolution(entity.Owner, entity.Comp.FuelSolutionName, ref entity.Comp.FuelSolution, out var solution)) - { - args.Cancelled = true; - args.Popup = Loc.GetString("welder-component-no-fuel-message"); - return; - } - - var fuel = solution.GetTotalPrototypeQuantity(entity.Comp.FuelReagent); - if (fuel == FixedPoint2.Zero || fuel < entity.Comp.FuelLitCost) - { - args.Popup = Loc.GetString("welder-component-no-fuel-message"); - args.Cancelled = true; - } - } - - public void TurnOn(Entity entity, EntityUid? user) - { - if (!_solutionContainer.ResolveSolution(entity.Owner, entity.Comp.FuelSolutionName, ref entity.Comp.FuelSolution)) - return; - - _solutionContainer.RemoveReagent(entity.Comp.FuelSolution.Value, entity.Comp.FuelReagent, entity.Comp.FuelLitCost); - AdminLogger.Add(LogType.InteractActivate, LogImpact.Low, - $"{ToPrettyString(user):user} toggled {ToPrettyString(entity.Owner):welder} on"); - - var xform = Transform(entity); - if (xform.GridUid is { } gridUid) - { - var position = _transformSystem.GetGridOrMapTilePosition(entity.Owner, xform); - _atmosphereSystem.HotspotExpose(gridUid, position, 700, 50, entity.Owner, true); - } - - _activeWelders.Add(entity); - } - - public void TurnOff(Entity entity, EntityUid? user) - { - AdminLogger.Add(LogType.InteractActivate, LogImpact.Low, - $"{ToPrettyString(user):user} toggled {ToPrettyString(entity.Owner):welder} off"); - _activeWelders.Remove(entity); - } - - private void OnWelderExamine(Entity entity, ref ExaminedEvent args) - { - using (args.PushGroup(nameof(WelderComponent))) - { - if (_itemToggle.IsActivated(entity.Owner)) - { - args.PushMarkup(Loc.GetString("welder-component-on-examine-welder-lit-message")); - } - else - { - args.PushMarkup(Loc.GetString("welder-component-on-examine-welder-not-lit-message")); - } - - if (args.IsInDetailsRange) - { - var (fuel, capacity) = GetWelderFuelAndCapacity(entity.Owner, entity.Comp); - - args.PushMarkup(Loc.GetString("welder-component-on-examine-detailed-message", - ("colorName", fuel < capacity / FixedPoint2.New(4f) ? "darkorange" : "orange"), - ("fuelLeft", fuel), - ("fuelCapacity", capacity), - ("status", string.Empty))); // Lit status is handled above - } - } - } - - private void OnWelderAfterInteract(Entity entity, ref AfterInteractEvent args) - { - if (args.Handled) - return; - - if (args.Target is not { Valid: true } target || !args.CanReach) - return; - - if (TryComp(target, out ReagentTankComponent? tank) - && tank.TankType == ReagentTankType.Fuel - && _solutionContainer.TryGetDrainableSolution(target, out var targetSoln, out var targetSolution) - && _solutionContainer.ResolveSolution(entity.Owner, entity.Comp.FuelSolutionName, ref entity.Comp.FuelSolution, out var welderSolution)) - { - var trans = FixedPoint2.Min(welderSolution.AvailableVolume, targetSolution.Volume); - if (trans > 0) - { - var drained = _solutionContainer.Drain(target, targetSoln.Value, trans); - _solutionContainer.TryAddSolution(entity.Comp.FuelSolution.Value, drained); - _audio.PlayPvs(entity.Comp.WelderRefill, entity); - _popup.PopupEntity(Loc.GetString("welder-component-after-interact-refueled-message"), entity, args.User); - } - else if (welderSolution.AvailableVolume <= 0) - { - _popup.PopupEntity(Loc.GetString("welder-component-already-full"), entity, args.User); - } - else - { - _popup.PopupEntity(Loc.GetString("welder-component-no-fuel-in-tank", ("owner", args.Target)), entity, args.User); - } - - args.Handled = true; - } - } - - private void OnWelderToolUseAttempt(Entity entity, ref DoAfterAttemptEvent args) - { - var user = args.DoAfter.Args.User; - - if (!_itemToggle.IsActivated(entity.Owner)) - { - _popup.PopupEntity(Loc.GetString("welder-component-welder-not-lit-message"), entity, user); - args.Cancel(); - } - } - - private void OnWelderShutdown(Entity entity, ref ComponentShutdown args) - { - _activeWelders.Remove(entity); - } - - private void OnWelderGetState(Entity entity, ref ComponentGetState args) - { - var (fuel, capacity) = GetWelderFuelAndCapacity(entity.Owner, entity.Comp); - args.State = new WelderComponentState(capacity.Float(), fuel.Float()); - } - - private void UpdateWelders(float frameTime) - { - _welderTimer += frameTime; - - if (_welderTimer < WelderUpdateTimer) - return; - - // TODO Serialization. _activeWelders is not serialized. - // Need to use some "active" component, and EntityQuery over that. - // Probably best to generalize it to a "ToggleableFuelDrain" component. - foreach (var tool in _activeWelders.ToArray()) - { - if (!TryComp(tool, out WelderComponent? welder) - || !TryComp(tool, out SolutionContainerManagerComponent? solutionContainer)) - continue; - - if (!_solutionContainer.ResolveSolution((tool, solutionContainer), welder.FuelSolutionName, ref welder.FuelSolution, out var solution)) - continue; - - _solutionContainer.RemoveReagent(welder.FuelSolution.Value, welder.FuelReagent, welder.FuelConsumption * _welderTimer); - - if (solution.GetTotalPrototypeQuantity(welder.FuelReagent) <= FixedPoint2.Zero) - { - _itemToggle.Toggle(tool, predicted: false); - } - - Dirty(tool, welder); - } - _welderTimer -= WelderUpdateTimer; - } - } -} diff --git a/Content.Server/Tools/ToolSystem.cs b/Content.Server/Tools/ToolSystem.cs index 7bae177892..7738a6398f 100644 --- a/Content.Server/Tools/ToolSystem.cs +++ b/Content.Server/Tools/ToolSystem.cs @@ -1,40 +1,63 @@ using Content.Server.Atmos.EntitySystems; -using Content.Server.Chemistry.Containers.EntitySystems; -using Content.Server.Popups; -using Content.Server.Tools.Components; +using Content.Shared.Chemistry.Components.SolutionManager; +using Content.Shared.FixedPoint; +using Content.Shared.Tools.Components; using Robust.Server.GameObjects; -using Robust.Shared.Audio.Systems; using SharedToolSystem = Content.Shared.Tools.Systems.SharedToolSystem; -namespace Content.Server.Tools +namespace Content.Server.Tools; + +public sealed class ToolSystem : SharedToolSystem { - // TODO move tool system to shared, and make it a friend of Tool Component. - public sealed partial class ToolSystem : SharedToolSystem - { - [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; - [Dependency] private readonly PopupSystem _popup = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SolutionContainerSystem _solutionContainer = default!; - [Dependency] private readonly TransformSystem _transformSystem = default!; + [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; + [Dependency] private readonly TransformSystem _transformSystem = default!; - public override void Initialize() + public override void TurnOn(Entity entity, EntityUid? user) + { + base.TurnOn(entity, user); + var xform = Transform(entity); + if (xform.GridUid is { } gridUid) { - base.Initialize(); - - InitializeWelders(); + var position = _transformSystem.GetGridOrMapTilePosition(entity.Owner, xform); + _atmosphereSystem.HotspotExpose(gridUid, position, 700, 50, entity.Owner, true); } + } - public override void Update(float frameTime) - { - base.Update(frameTime); + public override void Update(float frameTime) + { + base.Update(frameTime); - UpdateWelders(frameTime); - } + UpdateWelders(frameTime); + } - protected override bool IsWelder(EntityUid uid) + //todo move to shared once you can remove reagents from shared without it freaking out. + private void UpdateWelders(float frameTime) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var welder, out var solutionContainer)) { - return HasComp(uid); + if (!welder.Enabled) + continue; + + welder.WelderTimer += frameTime; + + if (welder.WelderTimer < welder.WelderUpdateTimer) + continue; + + if (!SolutionContainerSystem.TryGetSolution((uid, solutionContainer), welder.FuelSolutionName, out var solutionComp, out var solution)) + continue; + + SolutionContainerSystem.RemoveReagent(solutionComp.Value, welder.FuelReagent, welder.FuelConsumption * welder.WelderTimer); + + if (solution.GetTotalPrototypeQuantity(welder.FuelReagent) <= FixedPoint2.Zero) + { + ItemToggle.Toggle(uid, predicted: false); + } + + Dirty(uid, welder); + welder.WelderTimer -= welder.WelderUpdateTimer; } } } + diff --git a/Content.Server/Traitor/Uplink/Commands/AddUplinkCommand.cs b/Content.Server/Traitor/Uplink/Commands/AddUplinkCommand.cs index 79192f6b49..63be36b360 100644 --- a/Content.Server/Traitor/Uplink/Commands/AddUplinkCommand.cs +++ b/Content.Server/Traitor/Uplink/Commands/AddUplinkCommand.cs @@ -12,7 +12,6 @@ namespace Content.Server.Traitor.Uplink.Commands [AdminCommand(AdminFlags.Admin)] public sealed class AddUplinkCommand : IConsoleCommand { - [Dependency] private readonly IConfigurationManager _cfgManager = default!; [Dependency] private readonly IEntityManager _entManager = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; diff --git a/Content.Server/Traits/Assorted/ForeignerTraitComponent.cs b/Content.Server/Traits/Assorted/ForeignerTraitComponent.cs index 756f44e742..a35972f1c8 100644 --- a/Content.Server/Traits/Assorted/ForeignerTraitComponent.cs +++ b/Content.Server/Traits/Assorted/ForeignerTraitComponent.cs @@ -13,7 +13,7 @@ public sealed partial class ForeignerTraitComponent : Component { /// /// The "base" language that is to be removed and substituted with a translator. - /// By default, equals to the fallback language, which is GalacticCommon. + /// By default, equals to the fallback language, which is TauCetiBasic. /// [DataField] public ProtoId BaseLanguage = SharedLanguageSystem.FallbackLanguagePrototype; diff --git a/Content.Server/Traits/Assorted/ForeignerTraitSystem.cs b/Content.Server/Traits/Assorted/ForeignerTraitSystem.cs index 58e974227c..ce9fb51a03 100644 --- a/Content.Server/Traits/Assorted/ForeignerTraitSystem.cs +++ b/Content.Server/Traits/Assorted/ForeignerTraitSystem.cs @@ -38,7 +38,7 @@ private void OnSpawn(Entity entity, ref ComponentInit a } var alternateLanguage = knowledge.SpokenLanguages.Find(it => it != entity.Comp.BaseLanguage); - if (alternateLanguage == null) + if (alternateLanguage == default) { Log.Warning($"Entity {entity.Owner} does not have an alternative language to choose from (must have at least one non-GC for ForeignerTrait)!"); return; @@ -46,12 +46,12 @@ private void OnSpawn(Entity entity, ref ComponentInit a if (TryGiveTranslator(entity.Owner, entity.Comp.BaseTranslator, entity.Comp.BaseLanguage, alternateLanguage, out var translator)) { - _languages.RemoveLanguage(entity, entity.Comp.BaseLanguage, entity.Comp.CantSpeak, entity.Comp.CantUnderstand, knowledge); + _languages.RemoveLanguage(entity.Owner, entity.Comp.BaseLanguage, entity.Comp.CantSpeak, entity.Comp.CantUnderstand); } } /// - /// Tries to create and give the entity a translator to translator that translates speech between the two specified languages. + /// Tries to create and give the entity a translator that translates speech between the two specified languages. /// public bool TryGiveTranslator( EntityUid uid, diff --git a/Content.Server/Traits/Assorted/LanguageKnowledgeModifierComponent.cs b/Content.Server/Traits/Assorted/LanguageKnowledgeModifierComponent.cs deleted file mode 100644 index 170dae40fa..0000000000 --- a/Content.Server/Traits/Assorted/LanguageKnowledgeModifierComponent.cs +++ /dev/null @@ -1,23 +0,0 @@ -using Content.Shared.Language; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; - -namespace Content.Server.Traits.Assorted; - -/// -/// Used for traits that modify entities' language knowledge. -/// -[RegisterComponent] -public sealed partial class LanguageKnowledgeModifierComponent : Component -{ - /// - /// List of languages this entity will learn to speak. - /// - [DataField("speaks")] - public List NewSpokenLanguages = new(); - - /// - /// List of languages this entity will learn to understand. - /// - [DataField("understands")] - public List NewUnderstoodLanguages = new(); -} diff --git a/Content.Server/Traits/Assorted/LanguageKnowledgeModifierSystem.cs b/Content.Server/Traits/Assorted/LanguageKnowledgeModifierSystem.cs deleted file mode 100644 index 9053c9404f..0000000000 --- a/Content.Server/Traits/Assorted/LanguageKnowledgeModifierSystem.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System.Linq; -using Content.Server.Language; -using Content.Shared.Language.Components; - -namespace Content.Server.Traits.Assorted; - -public sealed class LanguageKnowledgeModifierSystem : EntitySystem -{ - [Dependency] private readonly LanguageSystem _languages = default!; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnStartup); - } - - private void OnStartup(Entity entity, ref ComponentInit args) - { - if (!TryComp(entity, out var knowledge)) - { - Log.Warning($"Entity {entity.Owner} does not have a LanguageKnowledge but has a LanguageKnowledgeModifier!"); - return; - } - - foreach (var spokenLanguage in entity.Comp.NewSpokenLanguages) - { - _languages.AddLanguage(entity, spokenLanguage, true, false, knowledge); - } - - foreach (var understoodLanguage in entity.Comp.NewUnderstoodLanguages) - { - _languages.AddLanguage(entity, understoodLanguage, false, true, knowledge); - } - } -} diff --git a/Content.Server/Traits/Assorted/LayingDownModifierSystem.cs b/Content.Server/Traits/Assorted/LayingDownModifierSystem.cs index 7d2c16e3c4..8c47d65233 100644 --- a/Content.Server/Traits/Assorted/LayingDownModifierSystem.cs +++ b/Content.Server/Traits/Assorted/LayingDownModifierSystem.cs @@ -1,5 +1,5 @@ using Content.Server.Traits.Assorted; -using Content.Shared._White.Standing; +using Content.Shared.Standing; namespace Content.Shared.Traits.Assorted.Systems; @@ -17,6 +17,6 @@ private void OnStartup(EntityUid uid, LayingDownModifierComponent component, Com return; layingDown.StandingUpTime *= component.LayingDownCooldownMultiplier; - layingDown.SpeedModify *= component.DownedSpeedMultiplierMultiplier; + layingDown.LyingSpeedModifier *= component.DownedSpeedMultiplierMultiplier; } } diff --git a/Content.Server/Traits/Assorted/ModifyMoodTraitComponent.cs b/Content.Server/Traits/Assorted/ModifyMoodTraitComponent.cs deleted file mode 100644 index f9ae3b36f3..0000000000 --- a/Content.Server/Traits/Assorted/ModifyMoodTraitComponent.cs +++ /dev/null @@ -1,11 +0,0 @@ -namespace Content.Shared.Traits.Assorted.Components; - -/// -/// Used for traits that add a starting moodlet. -/// -[RegisterComponent] -public sealed partial class MoodModifyTraitComponent : Component -{ - [DataField] - public string? MoodId = null; -} diff --git a/Content.Server/Traits/Assorted/NarcolepsyComponent.cs b/Content.Server/Traits/Assorted/NarcolepsyComponent.cs index efa3458495..d18d35f22c 100644 --- a/Content.Server/Traits/Assorted/NarcolepsyComponent.cs +++ b/Content.Server/Traits/Assorted/NarcolepsyComponent.cs @@ -20,5 +20,21 @@ public sealed partial class NarcolepsyComponent : Component [DataField("durationOfIncident", required: true)] public Vector2 DurationOfIncident { get; private set; } + [DataField] public float NextIncidentTime; + + /// + /// Locales for popups shown when the entity is about to fall asleep/is waking up. + /// They are fetched in the format of "(base)-(random number between 1 and count)", e.g. "narcolepsy-warning-popup-3". + /// + [DataField] + public string WarningLocaleBase = "narcolepsy-warning-popup", WakeupLocaleBase = "narcolepsy-wakeup-popup"; + + [DataField] + public int WarningLocaleCount = 5, WakeupLocaleCount = 3; + + [DataField] + public float TimeBeforeWarning = 20f, WarningChancePerSecond = 0.25f; + + public float LastWarningRollTime = float.MaxValue; } diff --git a/Content.Server/Traits/Assorted/NarcolepsySystem.cs b/Content.Server/Traits/Assorted/NarcolepsySystem.cs index e4fa1ccbc7..1a6e6d92bc 100644 --- a/Content.Server/Traits/Assorted/NarcolepsySystem.cs +++ b/Content.Server/Traits/Assorted/NarcolepsySystem.cs @@ -1,5 +1,9 @@ +using Content.Server.Chat.Managers; using Content.Shared.Bed.Sleep; +using Content.Shared.Chat; +using Content.Shared.Popups; using Content.Shared.StatusEffect; +using Robust.Shared.Player; using Robust.Shared.Random; namespace Content.Server.Traits.Assorted; @@ -12,6 +16,8 @@ public sealed class NarcolepsySystem : EntitySystem [ValidatePrototypeId] private const string StatusEffectKey = "ForcedSleep"; // Same one used by N2O and other sleep chems. + [Dependency] private readonly IChatManager _chatMan = default!; + [Dependency] private readonly SharedPopupSystem _popups = default!; [Dependency] private readonly StatusEffectsSystem _statusEffects = default!; [Dependency] private readonly IRobustRandom _random = default!; @@ -19,20 +25,38 @@ public sealed class NarcolepsySystem : EntitySystem public override void Initialize() { SubscribeLocalEvent(SetupNarcolepsy); + SubscribeLocalEvent(OnSleepChanged); } private void SetupNarcolepsy(EntityUid uid, NarcolepsyComponent component, ComponentStartup args) { - component.NextIncidentTime = - _random.NextFloat(component.TimeBetweenIncidents.X, component.TimeBetweenIncidents.Y); + PrepareNextIncident((uid, component)); } - public void AdjustNarcolepsyTimer(EntityUid uid, int TimerReset, NarcolepsyComponent? narcolepsy = null) + private void OnSleepChanged(Entity ent, ref SleepStateChangedEvent args) { - if (!Resolve(uid, ref narcolepsy, false)) + // When falling asleep while an incident is nigh, force it to happen immediately. + if (args.FellAsleep) + { + if (ent.Comp.NextIncidentTime < ent.Comp.TimeBeforeWarning) + StartIncident(ent); + return; + } + + // When waking up after sleeping for at least the minimum time of an incident, reset the incident timer and show a popup. + if (args.TimeSlept is null || args.TimeSlept.Value.TotalSeconds < ent.Comp.DurationOfIncident.X) return; - narcolepsy.NextIncidentTime = TimerReset; + ShowRandomPopup(ent, ent.Comp.WakeupLocaleBase, ent.Comp.WakeupLocaleCount); + PrepareNextIncident(ent); + } + + public void AdjustNarcolepsyTimer(EntityUid uid, float setTime, NarcolepsyComponent? narcolepsy = null) + { + if (!Resolve(uid, ref narcolepsy, false) || narcolepsy.NextIncidentTime > setTime) + return; + + narcolepsy.NextIncidentTime = setTime; } public override void Update(float frameTime) @@ -42,22 +66,52 @@ public override void Update(float frameTime) var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out var narcolepsy)) { + if (HasComp(uid)) + continue; + narcolepsy.NextIncidentTime -= frameTime; + if (narcolepsy.NextIncidentTime <= narcolepsy.TimeBeforeWarning && narcolepsy.NextIncidentTime < narcolepsy.LastWarningRollTime - 1f) + { + // Roll for showing a popup. There should really be a class for doing this. + narcolepsy.LastWarningRollTime = narcolepsy.NextIncidentTime; + if (_random.Prob(narcolepsy.WarningChancePerSecond)) + { + ShowRandomPopup(uid, narcolepsy.WarningLocaleBase, narcolepsy.WakeupLocaleCount); + narcolepsy.LastWarningRollTime = 0f; // Do not show any more popups for the upcoming incident + } + } if (narcolepsy.NextIncidentTime >= 0) continue; - // Set the new time. - narcolepsy.NextIncidentTime += - _random.NextFloat(narcolepsy.TimeBetweenIncidents.X, narcolepsy.TimeBetweenIncidents.Y); + StartIncident((uid, narcolepsy)); + } + } - var duration = _random.NextFloat(narcolepsy.DurationOfIncident.X, narcolepsy.DurationOfIncident.Y); + public void StartIncident(Entity ent) + { + var duration = _random.NextFloat(ent.Comp.DurationOfIncident.X, ent.Comp.DurationOfIncident.Y); + PrepareNextIncident(ent, duration); - // Make sure the sleep time doesn't cut into the time to next incident. - narcolepsy.NextIncidentTime += duration; + _statusEffects.TryAddStatusEffect(ent, StatusEffectKey, TimeSpan.FromSeconds(duration), false); + } - _statusEffects.TryAddStatusEffect(uid, StatusEffectKey, - TimeSpan.FromSeconds(duration), false); - } + private void PrepareNextIncident(Entity ent, float startingFrom = 0f) + { + var time = _random.NextFloat(ent.Comp.TimeBetweenIncidents.X, ent.Comp.TimeBetweenIncidents.Y); + ent.Comp.NextIncidentTime = startingFrom + time; + ent.Comp.LastWarningRollTime = float.MaxValue; + } + + private void ShowRandomPopup(EntityUid uid, string prefix, int count) + { + if (count <= 0 || !TryComp(uid, out var actor)) + return; + + var popup = Loc.GetString($"{prefix}-{_random.Next(1, count + 1)}"); + _popups.PopupEntity(popup, uid, uid, PopupType.MediumCaution); + // This should use ChatChannel.Visual, but it's not displayed on the client. + _chatMan.ChatMessageToOne(ChatChannel.Notifications, popup, popup, uid, false, + actor.PlayerSession.Channel, Color.IndianRed); } } diff --git a/Content.Server/Traits/Assorted/PotentiaModifierComponent.cs b/Content.Server/Traits/Assorted/PotentiaModifierComponent.cs new file mode 100644 index 0000000000..2ddfd633b9 --- /dev/null +++ b/Content.Server/Traits/Assorted/PotentiaModifierComponent.cs @@ -0,0 +1,20 @@ +namespace Content.Server.Traits.Assorted; + +/// +/// This is used for traits that modify the outcome of Potentia Rolls +/// +[RegisterComponent] +public sealed partial class PotentiaModifierComponent : Component +{ + /// + /// When rolling for psionic powers, increase the potentia gains by a flat amount. + /// + [DataField] + public float PotentiaFlatModifier = 0; + + /// + /// When rolling for psionic powers, multiply the potentia gains by a specific factor. + /// + [DataField] + public float PotentiaMultiplier = 1; +} diff --git a/Content.Server/Traits/Assorted/PotentiaModifierSystem.cs b/Content.Server/Traits/Assorted/PotentiaModifierSystem.cs new file mode 100644 index 0000000000..f05f788a08 --- /dev/null +++ b/Content.Server/Traits/Assorted/PotentiaModifierSystem.cs @@ -0,0 +1,19 @@ +using Content.Server.Psionics; + +namespace Content.Server.Traits.Assorted; +public sealed partial class PotentiaModifierSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnRollPsionics); + } + + private void OnRollPsionics(EntityUid uid, PotentiaModifierComponent component, ref OnRollPsionicsEvent args) + { + if (uid != args.Roller) + return; + + args.BaselineChance = args.BaselineChance * component.PotentiaMultiplier + component.PotentiaFlatModifier; + } +} diff --git a/Content.Server/Traits/Assorted/SingerSystem.cs b/Content.Server/Traits/Assorted/SingerSystem.cs index 7b560957b6..78a4101a65 100644 --- a/Content.Server/Traits/Assorted/SingerSystem.cs +++ b/Content.Server/Traits/Assorted/SingerSystem.cs @@ -65,9 +65,7 @@ private void OnEquip(GotEquippedEvent args) if (TryComp(args.Equipment, out var accent) && accent.ReplacementPrototype == "mumble" && args.Slot == "mask") - { CloseMidiUi(args.Equipee); - } } private void OnMobStateChangedEvent(EntityUid uid, SharedInstrumentComponent component, MobStateChangedEvent args) @@ -154,8 +152,6 @@ public override void CloseMidiUi(EntityUid uid) { if (HasComp(uid) && TryComp(uid, out var actor)) - { - _instrument.ToggleInstrumentUi(uid, actor.PlayerSession); - } + _instrument.ToggleInstrumentUi(uid, actor.PlayerSession.AttachedEntity ?? EntityUid.Invalid); } } diff --git a/Content.Server/Traits/BloodDeficiencyComponent.cs b/Content.Server/Traits/BloodDeficiencyComponent.cs index 616f60cd83..ce438278f7 100644 --- a/Content.Server/Traits/BloodDeficiencyComponent.cs +++ b/Content.Server/Traits/BloodDeficiencyComponent.cs @@ -7,8 +7,14 @@ namespace Content.Server.Traits.Assorted; public sealed partial class BloodDeficiencyComponent : Component { // - // How much reagent of blood should be removed in each update interval? + /// How much percentage of max blood volume should be removed in each update interval? // [DataField(required: true)] - public float BloodLossAmount; + public float BloodLossPercentage; + + /// + /// Whether the effects of this trait should be active. + /// + [DataField] + public bool Active = true; } diff --git a/Content.Server/Traits/BloodDeficiencySystem.cs b/Content.Server/Traits/BloodDeficiencySystem.cs index f1ae490995..8928bc57a1 100644 --- a/Content.Server/Traits/BloodDeficiencySystem.cs +++ b/Content.Server/Traits/BloodDeficiencySystem.cs @@ -1,23 +1,24 @@ -using Content.Server.Body.Systems; using Content.Server.Body.Components; -using Content.Shared.Damage; +using Content.Server.Body.Events; +using Content.Server.Traits.Assorted; +using Content.Shared.FixedPoint; -namespace Content.Server.Traits.Assorted; +namespace Content.Server.Traits; public sealed class BloodDeficiencySystem : EntitySystem { public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent(OnBloodRegen); } - private void OnStartup(EntityUid uid, BloodDeficiencyComponent component, ComponentStartup args) + private void OnBloodRegen(Entity ent, ref NaturalBloodRegenerationAttemptEvent args) { - if (!TryComp(uid, out var bloodstream)) + if (!ent.Comp.Active || !TryComp(ent.Owner, out var bloodstream)) return; - bloodstream.HasBloodDeficiency = true; - bloodstream.BloodDeficiencyLossAmount = component.BloodLossAmount; + args.Amount = FixedPoint2.Min(args.Amount, 0) // If the blood regen amount already was negative, we keep it. + - bloodstream.BloodMaxVolume * ent.Comp.BloodLossPercentage; } } diff --git a/Content.Server/Traits/TraitSystem.cs b/Content.Server/Traits/TraitSystem.cs index d6f13cb52a..bd36b4ecef 100644 --- a/Content.Server/Traits/TraitSystem.cs +++ b/Content.Server/Traits/TraitSystem.cs @@ -12,6 +12,8 @@ using Robust.Shared.Utility; using Content.Server.Abilities.Psionics; using Content.Shared.Psionics; +using Content.Server.Language; +using Content.Shared.Mood; namespace Content.Server.Traits; @@ -25,6 +27,7 @@ public sealed class TraitSystem : EntitySystem [Dependency] private readonly SharedActionsSystem _actions = default!; [Dependency] private readonly PsionicAbilitiesSystem _psionicAbilities = default!; [Dependency] private readonly IComponentFactory _componentFactory = default!; + [Dependency] private readonly LanguageSystem _languageSystem = default!; public override void Initialize() { @@ -65,6 +68,9 @@ public void AddTrait(EntityUid uid, TraitPrototype traitPrototype) AddTraitComponents(uid, traitPrototype); AddTraitActions(uid, traitPrototype); AddTraitPsionics(uid, traitPrototype); + AddTraitLanguage(uid, traitPrototype); + RemoveTraitLanguage(uid, traitPrototype); + AddTraitMoodlets(uid, traitPrototype); } /// @@ -139,4 +145,84 @@ public void AddTraitPsionics(EntityUid uid, TraitPrototype traitPrototype) if (_prototype.TryIndex(powerProto, out var psionicPower)) _psionicAbilities.InitializePsionicPower(uid, psionicPower, false); } + + /// + /// Initialize languages given by a Trait. + /// + private void AddTraitLanguage(EntityUid uid, TraitPrototype traitPrototype) + { + AddTraitLanguagesSpoken(uid, traitPrototype); + AddTraitLanguagesUnderstood(uid, traitPrototype); + } + + /// + /// If a trait includes any Spoken Languages, this sends them to LanguageSystem to be initialized. + /// + public void AddTraitLanguagesSpoken(EntityUid uid, TraitPrototype traitPrototype) + { + if (traitPrototype.LanguagesSpoken is null) + return; + + foreach (var language in traitPrototype.LanguagesSpoken) + _languageSystem.AddLanguage(uid, language, true, false); + } + + /// + /// If a trait includes any Understood Languages, this sends them to LanguageSystem to be initialized. + /// + public void AddTraitLanguagesUnderstood(EntityUid uid, TraitPrototype traitPrototype) + { + if (traitPrototype.LanguagesUnderstood is null) + return; + + foreach (var language in traitPrototype.LanguagesUnderstood) + _languageSystem.AddLanguage(uid, language, false, true); + } + + /// + /// Remove Languages given by a Trait. + /// + private void RemoveTraitLanguage(EntityUid uid, TraitPrototype traitPrototype) + { + RemoveTraitLanguagesSpoken(uid, traitPrototype); + RemoveTraitLanguagesUnderstood(uid, traitPrototype); + } + + /// + /// Removes any Spoken Languages if defined by a trait. + /// + public void RemoveTraitLanguagesSpoken(EntityUid uid, TraitPrototype traitPrototype) + { + if (traitPrototype.RemoveLanguagesSpoken is null) + return; + + foreach (var language in traitPrototype.RemoveLanguagesSpoken) + _languageSystem.RemoveLanguage(uid, language, true, false); + } + + /// + /// Removes any Understood Languages if defined by a trait. + /// + public void RemoveTraitLanguagesUnderstood(EntityUid uid, TraitPrototype traitPrototype) + { + if (traitPrototype.RemoveLanguagesUnderstood is null) + return; + + foreach (var language in traitPrototype.RemoveLanguagesUnderstood) + _languageSystem.RemoveLanguage(uid, language, false, true); + } + + /// + /// If a trait includes any moodlets, this adds the moodlets to the receiving entity. + /// While I can't stop you, you shouldn't use this to add temporary moodlets. + /// + public void AddTraitMoodlets(EntityUid uid, TraitPrototype traitPrototype) + { + if (traitPrototype.MoodEffects is null) + return; + + foreach (var moodProto in traitPrototype.MoodEffects) + if (_prototype.TryIndex(moodProto, out var moodlet)) + RaiseLocalEvent(uid, new MoodEffectEvent(moodlet.ID)); + } } diff --git a/Content.Server/UserInterface/ActivatableUIComponent.cs b/Content.Server/UserInterface/ActivatableUIComponent.cs deleted file mode 100644 index cc0e5008e4..0000000000 --- a/Content.Server/UserInterface/ActivatableUIComponent.cs +++ /dev/null @@ -1,75 +0,0 @@ -using Content.Shared.Whitelist; -using Robust.Server.GameObjects; -using Robust.Server.Player; -using Robust.Shared.Player; -using Robust.Shared.Serialization.TypeSerializers.Implementations; - -namespace Content.Server.UserInterface -{ - [RegisterComponent] - public sealed partial class ActivatableUIComponent : Component - { - [DataField(required: true, customTypeSerializer:typeof(EnumSerializer))] - public Enum? Key { get; set; } - - [ViewVariables(VVAccess.ReadWrite)] - [DataField] - public bool InHandsOnly { get; set; } = false; - - [DataField] - public bool SingleUser { get; set; } = false; - - [ViewVariables(VVAccess.ReadWrite)] - [DataField] - public bool AdminOnly { get; set; } = false; - - [DataField] - public LocId VerbText = "ui-verb-toggle-open"; - - /// - /// Whether you need a hand to operate this UI. The hand does not need to be free, you just need to have one. - /// - /// - /// This should probably be true for most machines & computers, but there will still be UIs that represent a - /// more generic interaction / configuration that might not require hands. - /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField] - public bool RequireHands = true; - - /// - /// Entities that are required to open this UI. - /// - [DataField("allowedItems")] - [ViewVariables(VVAccess.ReadWrite)] - public EntityWhitelist? AllowedItems = null; - - /// - /// Whether you can activate this ui with activateinhand or not - /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField] - public bool RightClickOnly; - - /// - /// Whether spectators (non-admin ghosts) should be allowed to view this UI. - /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField] - public bool AllowSpectator = true; - - /// - /// Whether the UI should close when the item is deselected due to a hand swap or drop - /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField] - public bool CloseOnHandDeselect = true; - - /// - /// The client channel currently using the object, or null if there's none/not single user. - /// NOTE: DO NOT DIRECTLY SET, USE ActivatableUISystem.SetCurrentSingleUser - /// - [ViewVariables] - public ICommonSession? CurrentSingleUser; - } -} diff --git a/Content.Server/UserInterface/ActivatableUIRequiresPowerCellComponent.cs b/Content.Server/UserInterface/ActivatableUIRequiresPowerCellComponent.cs deleted file mode 100644 index fdc56f89a0..0000000000 --- a/Content.Server/UserInterface/ActivatableUIRequiresPowerCellComponent.cs +++ /dev/null @@ -1,14 +0,0 @@ -using Content.Server.PowerCell; -using Content.Shared.PowerCell; -using Content.Shared.UserInterface; - -namespace Content.Server.UserInterface; - -/// -/// Specifies that the attached entity requires power. -/// -[RegisterComponent] -public sealed partial class ActivatableUIRequiresPowerCellComponent : Component -{ - -} diff --git a/Content.Server/UserInterface/ActivatableUISystem.Power.cs b/Content.Server/UserInterface/ActivatableUISystem.Power.cs deleted file mode 100644 index d4dcc91d46..0000000000 --- a/Content.Server/UserInterface/ActivatableUISystem.Power.cs +++ /dev/null @@ -1,81 +0,0 @@ -using Content.Server.PowerCell; -using Content.Shared.PowerCell; -using Content.Shared.UserInterface; -using Robust.Shared.Containers; - -namespace Content.Server.UserInterface; - -public sealed partial class ActivatableUISystem -{ - [Dependency] private readonly PowerCellSystem _cell = default!; - - private void InitializePower() - { - SubscribeLocalEvent(OnBatteryOpenAttempt); - SubscribeLocalEvent(OnBatteryOpened); - SubscribeLocalEvent(OnBatteryClosed); - - SubscribeLocalEvent(OnPowerCellRemoved); - } - - private void OnPowerCellRemoved(EntityUid uid, PowerCellDrawComponent component, EntRemovedFromContainerMessage args) - { - _cell.SetPowerCellDrawEnabled(uid, false); - - if (HasComp(uid) && - TryComp(uid, out var activatable) && - activatable.Key != null) - { - _uiSystem.TryCloseAll(uid, activatable.Key); - } - } - - private void OnBatteryOpened(EntityUid uid, ActivatableUIRequiresPowerCellComponent component, BoundUIOpenedEvent args) - { - var activatable = Comp(uid); - - if (!args.UiKey.Equals(activatable.Key)) - return; - - _cell.SetPowerCellDrawEnabled(uid, true); - } - - private void OnBatteryClosed(EntityUid uid, ActivatableUIRequiresPowerCellComponent component, BoundUIClosedEvent args) - { - var activatable = Comp(uid); - - if (!args.UiKey.Equals(activatable.Key)) - return; - - // Stop drawing power if this was the last person with the UI open. - if (!_uiSystem.IsUiOpen(uid, activatable.Key)) - _cell.SetPowerCellDrawEnabled(uid, false); - } - - /// - /// Call if you want to check if the UI should close due to a recent battery usage. - /// - public void CheckUsage(EntityUid uid, ActivatableUIComponent? active = null, ActivatableUIRequiresPowerCellComponent? component = null, PowerCellDrawComponent? draw = null) - { - if (!Resolve(uid, ref component, ref draw, ref active, false) || active.Key == null) - return; - - if (_cell.HasCharge(uid, draw.UseRate)) - return; - - _uiSystem.TryCloseAll(uid, active.Key); - } - - private void OnBatteryOpenAttempt(EntityUid uid, ActivatableUIRequiresPowerCellComponent component, ActivatableUIOpenAttemptEvent args) - { - if (!TryComp(uid, out var draw)) - return; - - // Check if we have the appropriate drawrate / userate to even open it. - if (args.Cancelled || !_cell.HasCharge(uid, MathF.Max(draw.DrawRate, draw.UseRate), user: args.User)) - { - args.Cancel(); - return; - } - } -} diff --git a/Content.Server/UserInterface/ActivatableUISystem.cs b/Content.Server/UserInterface/ActivatableUISystem.cs deleted file mode 100644 index 5f2314df90..0000000000 --- a/Content.Server/UserInterface/ActivatableUISystem.cs +++ /dev/null @@ -1,235 +0,0 @@ -using Content.Server.Administration.Managers; -using Content.Shared.ActionBlocker; -using Content.Shared.Ghost; -using Content.Shared.Hands; -using Content.Shared.Hands.Components; -using Content.Shared.Interaction; -using Content.Shared.Interaction.Events; -using Content.Shared.Popups; -using Content.Shared.UserInterface; -using Content.Shared.Verbs; -using Robust.Server.GameObjects; -using Robust.Shared.Player; - -namespace Content.Server.UserInterface; - -public sealed partial class ActivatableUISystem : EntitySystem -{ - [Dependency] private readonly IAdminManager _adminManager = default!; - [Dependency] private readonly ActionBlockerSystem _blockerSystem = default!; - [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; - [Dependency] private readonly SharedPopupSystem _popupSystem = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnActivate); - SubscribeLocalEvent(OnUseInHand); - SubscribeLocalEvent(OnInteractUsing); - SubscribeLocalEvent(OnHandDeselected); - SubscribeLocalEvent((uid, aui, _) => CloseAll(uid, aui)); - // *THIS IS A BLATANT WORKAROUND!* RATIONALE: Microwaves need it - SubscribeLocalEvent(OnParentChanged); - SubscribeLocalEvent(OnUIClose); - SubscribeLocalEvent(OnBoundInterfaceInteractAttempt); - - SubscribeLocalEvent>(AddOpenUiVerb); - - SubscribeLocalEvent(OnActionPerform); - - InitializePower(); - } - - private void OnBoundInterfaceInteractAttempt(BoundUserInterfaceMessageAttempt ev) - { - if (!TryComp(ev.Target, out ActivatableUIComponent? comp)) - return; - - if (!comp.RequireHands) - return; - - if (!TryComp(ev.Sender.AttachedEntity, out HandsComponent? hands) || hands.Hands.Count == 0) - ev.Cancel(); - } - - private void OnActionPerform(EntityUid uid, UserInterfaceComponent component, OpenUiActionEvent args) - { - if (args.Handled || args.Key == null) - return; - - if (!TryComp(args.Performer, out ActorComponent? actor)) - return; - - args.Handled = _uiSystem.TryToggleUi(uid, args.Key, actor.PlayerSession); - } - - private void AddOpenUiVerb(EntityUid uid, ActivatableUIComponent component, GetVerbsEvent args) - { - if (!args.CanAccess) - return; - - if (component.RequireHands && args.Hands == null) - return; - - if (component.InHandsOnly && args.Using != uid) - return; - - if (!args.CanInteract && (!component.AllowSpectator || !HasComp(args.User))) - return; - - ActivationVerb verb = new(); - verb.Act = () => InteractUI(args.User, uid, component); - verb.Text = Loc.GetString(component.VerbText); - // TODO VERBS add "open UI" icon? - args.Verbs.Add(verb); - } - - private void OnActivate(EntityUid uid, ActivatableUIComponent component, ActivateInWorldEvent args) - { - if (args.Handled) - return; - - if (component.InHandsOnly) - return; - - if (component.AllowedItems != null) - return; - - args.Handled = InteractUI(args.User, uid, component); - } - - private void OnUseInHand(EntityUid uid, ActivatableUIComponent component, UseInHandEvent args) - { - if (args.Handled) - return; - - if (component.RightClickOnly) - return; - - if (component.AllowedItems != null) - return; - - args.Handled = InteractUI(args.User, uid, component); - } - - private void OnInteractUsing(EntityUid uid, ActivatableUIComponent component, InteractUsingEvent args) - { - if (args.Handled) return; - if (component.AllowedItems == null) return; - if (!component.AllowedItems.IsValid(args.Used, EntityManager)) return; - args.Handled = InteractUI(args.User, uid, component); - } - - private void OnParentChanged(EntityUid uid, ActivatableUIComponent aui, ref EntParentChangedMessage args) - { - CloseAll(uid, aui); - } - - private void OnUIClose(EntityUid uid, ActivatableUIComponent component, BoundUIClosedEvent args) - { - if (args.Session != component.CurrentSingleUser) - return; - - if (!Equals(args.UiKey, component.Key)) - return; - - SetCurrentSingleUser(uid, null, component); - } - - private bool InteractUI(EntityUid user, EntityUid uiEntity, ActivatableUIComponent aui) - { - if (!TryComp(user, out ActorComponent? actor)) - return false; - - if (aui.Key == null) - return false; - - if (!_uiSystem.TryGetUi(uiEntity, aui.Key, out var ui)) - return false; - - if (ui.SubscribedSessions.Contains(actor.PlayerSession)) - { - _uiSystem.CloseUi(ui, actor.PlayerSession); - return true; - } - - if (!_blockerSystem.CanInteract(user, uiEntity) && (!aui.AllowSpectator || !HasComp(user))) - return false; - - if (aui.RequireHands && !HasComp(user)) - return false; - - if (aui.AdminOnly && !_adminManager.IsAdmin(actor.PlayerSession)) - return false; - - if (aui.SingleUser && (aui.CurrentSingleUser != null) && (actor.PlayerSession != aui.CurrentSingleUser)) - { - string message = Loc.GetString("machine-already-in-use", ("machine", uiEntity)); - _popupSystem.PopupEntity(message, uiEntity, user); - - // If we get here, supposedly, the object is in use. - // Check with BUI that it's ACTUALLY in use just in case. - // Since this could brick the object if it goes wrong. - if (ui.SubscribedSessions.Count != 0) - return false; - } - - // If we've gotten this far, fire a cancellable event that indicates someone is about to activate this. - // This is so that stuff can require further conditions (like power). - var oae = new ActivatableUIOpenAttemptEvent(user); - var uae = new UserOpenActivatableUIAttemptEvent(user, uiEntity); - RaiseLocalEvent(user, uae); - RaiseLocalEvent(uiEntity, oae); - if (oae.Cancelled || uae.Cancelled) - return false; - - // Give the UI an opportunity to prepare itself if it needs to do anything - // before opening - var bae = new BeforeActivatableUIOpenEvent(user); - RaiseLocalEvent(uiEntity, bae); - - SetCurrentSingleUser(uiEntity, actor.PlayerSession, aui); - _uiSystem.OpenUi(ui, actor.PlayerSession); - - //Let the component know a user opened it so it can do whatever it needs to do - var aae = new AfterActivatableUIOpenEvent(user, actor.PlayerSession); - RaiseLocalEvent(uiEntity, aae); - - return true; - } - - public void SetCurrentSingleUser(EntityUid uid, ICommonSession? v, ActivatableUIComponent? aui = null) - { - if (!Resolve(uid, ref aui)) - return; - if (!aui.SingleUser) - return; - - aui.CurrentSingleUser = v; - - RaiseLocalEvent(uid, new ActivatableUIPlayerChangedEvent()); - } - - public void CloseAll(EntityUid uid, ActivatableUIComponent? aui = null) - { - if (!Resolve(uid, ref aui, false)) - return; - - if (aui.Key == null || !_uiSystem.TryGetUi(uid, aui.Key, out var ui)) - return; - - _uiSystem.CloseAll(ui); - } - - private void OnHandDeselected(EntityUid uid, ActivatableUIComponent? aui, HandDeselectedEvent args) - { - if (!Resolve(uid, ref aui, false)) - return; - - if (!aui.CloseOnHandDeselect) - return; - - CloseAll(uid, aui); - } -} diff --git a/Content.Server/UserInterface/IntrinsicUIComponent.cs b/Content.Server/UserInterface/IntrinsicUIComponent.cs index 4d3c7ffba9..83936edc8c 100644 --- a/Content.Server/UserInterface/IntrinsicUIComponent.cs +++ b/Content.Server/UserInterface/IntrinsicUIComponent.cs @@ -9,18 +9,12 @@ public sealed partial class IntrinsicUIComponent : Component /// /// List of UIs and their actions that this entity has. /// - [DataField("uis", required: true)] public List UIs = new(); + [DataField("uis", required: true)] public Dictionary UIs = new(); } [DataDefinition] -public partial class IntrinsicUIEntry +public sealed partial class IntrinsicUIEntry { - /// - /// The BUI key that this intrinsic UI should open. - /// - [DataField("key", required: true)] - public Enum? Key { get; private set; } - [DataField("toggleAction", customTypeSerializer: typeof(PrototypeIdSerializer), required: true)] public string? ToggleAction; diff --git a/Content.Server/UserInterface/IntrinsicUISystem.cs b/Content.Server/UserInterface/IntrinsicUISystem.cs index fa725e524a..0f7261865d 100644 --- a/Content.Server/UserInterface/IntrinsicUISystem.cs +++ b/Content.Server/UserInterface/IntrinsicUISystem.cs @@ -18,50 +18,31 @@ public override void Initialize() private void OnActionToggle(EntityUid uid, IntrinsicUIComponent component, ToggleIntrinsicUIEvent args) { + if (args.Key == null) + return; + args.Handled = InteractUI(uid, args.Key, component); } private void InitActions(EntityUid uid, IntrinsicUIComponent component, MapInitEvent args) { - foreach (var entry in component.UIs) + foreach (var entry in component.UIs.Values) { _actionsSystem.AddAction(uid, ref entry.ToggleActionEntity, entry.ToggleAction); } } - public bool InteractUI(EntityUid uid, Enum? key, IntrinsicUIComponent? iui = null, ActorComponent? actor = null) + public bool InteractUI(EntityUid uid, Enum key, IntrinsicUIComponent? iui = null, ActorComponent? actor = null) { if (!Resolve(uid, ref iui, ref actor)) return false; - if (key is null) - { - Log.Error($"Entity {ToPrettyString(uid)} has an invalid intrinsic UI."); - } - - var ui = GetUIOrNull(uid, key, iui); - - if (ui is null) - { - Log.Error($"Couldn't get UI {key} on {ToPrettyString(uid)}"); - return false; - } - var attempt = new IntrinsicUIOpenAttemptEvent(uid, key); RaiseLocalEvent(uid, attempt); if (attempt.Cancelled) return false; - _uiSystem.ToggleUi(ui, actor.PlayerSession); - return true; - } - - private PlayerBoundUserInterface? GetUIOrNull(EntityUid uid, Enum? key, IntrinsicUIComponent? component = null) - { - if (!Resolve(uid, ref component)) - return null; - - return key is null ? null : _uiSystem.GetUiOrNull(uid, key); + return _uiSystem.TryToggleUi(uid, key, actor.PlayerSession); } } diff --git a/Content.Server/Vampire/BloodSuckerSystem.cs b/Content.Server/Vampire/BloodSuckerSystem.cs index a63334a894..41afe0d666 100644 --- a/Content.Server/Vampire/BloodSuckerSystem.cs +++ b/Content.Server/Vampire/BloodSuckerSystem.cs @@ -6,14 +6,15 @@ using Content.Shared.Inventory; using Content.Shared.Administration.Logs; using Content.Shared.Vampiric; +using Content.Shared.Cocoon; using Content.Server.Atmos.Components; using Content.Server.Body.Components; using Content.Server.Body.Systems; using Content.Shared.Chemistry.EntitySystems; using Content.Server.Popups; -using Content.Server.HealthExaminable; using Content.Server.DoAfter; using Content.Server.Nutrition.Components; +using Content.Shared.HealthExaminable; using Robust.Shared.Prototypes; using Robust.Shared.Audio.Systems; using Robust.Shared.Utility; @@ -45,23 +46,28 @@ public override void Initialize() private void AddSuccVerb(EntityUid uid, BloodSuckerComponent component, GetVerbsEvent args) { - if (args.User == args.Target) - return; - if (component.WebRequired) - return; // handled elsewhere - if (!TryComp(args.Target, out var bloodstream)) + + var victim = args.Target; + var ignoreClothes = false; + + if (TryComp(args.Target, out var cocoon)) + { + victim = cocoon.Victim ?? args.Target; + ignoreClothes = cocoon.Victim != null; + } else if (component.WebRequired) return; - if (!args.CanAccess) + + if (!TryComp(victim, out var bloodstream) || args.User == victim || !args.CanAccess) return; InnateVerb verb = new() { Act = () => { - StartSuccDoAfter(uid, args.Target, component, bloodstream); // start doafter + StartSuccDoAfter(uid, victim, component, bloodstream, !ignoreClothes); // start doafter }, Text = Loc.GetString("action-name-suck-blood"), - Icon = new SpriteSpecifier.Texture(new ("/Textures/Nyanotrasen/Icons/verbiconfangs.png")), + Icon = new SpriteSpecifier.Texture(new("/Textures/Nyanotrasen/Icons/verbiconfangs.png")), Priority = 2 }; args.Verbs.Add(verb); @@ -80,10 +86,8 @@ private void OnDamageChanged(EntityUid uid, BloodSuckedComponent component, Dama if (_prototypeManager.TryIndex("Brute", out var brute) && args.Damageable.Damage.TryGetDamageInGroup(brute, out var bruteTotal) && _prototypeManager.TryIndex("Airloss", out var airloss) && args.Damageable.Damage.TryGetDamageInGroup(airloss, out var airlossTotal)) - { if (bruteTotal == 0 && airlossTotal == 0) RemComp(uid); - } } private void OnDoAfter(EntityUid uid, BloodSuckerComponent component, BloodSuckDoAfterEvent args) @@ -96,18 +100,13 @@ private void OnDoAfter(EntityUid uid, BloodSuckerComponent component, BloodSuckD public void StartSuccDoAfter(EntityUid bloodsucker, EntityUid victim, BloodSuckerComponent? bloodSuckerComponent = null, BloodstreamComponent? stream = null, bool doChecks = true) { - if (!Resolve(bloodsucker, ref bloodSuckerComponent)) - return; - - if (!Resolve(victim, ref stream)) + if (!Resolve(bloodsucker, ref bloodSuckerComponent) || !Resolve(victim, ref stream)) return; if (doChecks) { if (!_interactionSystem.InRangeUnobstructed(bloodsucker, victim)) - { return; - } if (_inventorySystem.TryGetSlotEntity(victim, "head", out var headUid) && HasComp(headUid)) { @@ -125,19 +124,15 @@ public void StartSuccDoAfter(EntityUid bloodsucker, EntityUid victim, BloodSucke } if (stream.BloodReagent != "Blood") - { - _popups.PopupEntity(Loc.GetString("bloodsucker-fail-not-blood", ("target", victim)), victim, bloodsucker, Shared.Popups.PopupType.Medium); - return; - } - - if (_solutionSystem.PercentFull(stream.Owner) != 0) + _popups.PopupEntity(Loc.GetString("bloodsucker-not-blood", ("target", victim)), victim, bloodsucker, Shared.Popups.PopupType.Medium); + else if (_solutionSystem.PercentFull(victim) != 0) _popups.PopupEntity(Loc.GetString("bloodsucker-fail-no-blood", ("target", victim)), victim, bloodsucker, Shared.Popups.PopupType.Medium); + else + _popups.PopupEntity(Loc.GetString("bloodsucker-doafter-start", ("target", victim)), victim, bloodsucker, Shared.Popups.PopupType.Medium); _popups.PopupEntity(Loc.GetString("bloodsucker-doafter-start-victim", ("sucker", bloodsucker)), victim, victim, Shared.Popups.PopupType.LargeCaution); - _popups.PopupEntity(Loc.GetString("bloodsucker-doafter-start", ("target", victim)), victim, bloodsucker, Shared.Popups.PopupType.Medium); - var ev = new BloodSuckDoAfterEvent(); - var args = new DoAfterArgs(EntityManager, bloodsucker, bloodSuckerComponent.Delay, ev, bloodsucker, target: victim) + var args = new DoAfterArgs(EntityManager, bloodsucker, bloodSuckerComponent.Delay, new BloodSuckDoAfterEvent(), bloodsucker, target: victim) { BreakOnTargetMove = true, BreakOnUserMove = false, @@ -206,8 +201,5 @@ public bool TrySucc(EntityUid bloodsucker, EntityUid victim, BloodSuckerComponen //} return true; } - - private record struct BloodSuckData() - {} } } diff --git a/Content.Server/VendingMachines/VendingMachineSystem.cs b/Content.Server/VendingMachines/VendingMachineSystem.cs index 36fa69313e..60be1ad6f1 100644 --- a/Content.Server/VendingMachines/VendingMachineSystem.cs +++ b/Content.Server/VendingMachines/VendingMachineSystem.cs @@ -114,7 +114,7 @@ private void UpdateVendingMachineInterfaceState(EntityUid uid, VendingMachineCom { var state = new VendingMachineInterfaceState(GetAllInventory(uid, component)); - _userInterfaceSystem.TrySetUiState(uid, VendingMachineUiKey.Key, state); + _userInterfaceSystem.SetUiState(uid, VendingMachineUiKey.Key, state); } private void OnInventoryEjectMessage(EntityUid uid, VendingMachineComponent component, VendingMachineEjectMessage args) @@ -122,7 +122,7 @@ private void OnInventoryEjectMessage(EntityUid uid, VendingMachineComponent comp if (!this.IsPowered(uid, EntityManager)) return; - if (args.Session.AttachedEntity is not { Valid: true } entity || Deleted(entity)) + if (args.Actor is not { Valid: true } entity || Deleted(entity)) return; AuthorizedVend(uid, entity, args.Type, args.ID, component); diff --git a/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs b/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs index bd0c40f26a..b97c47ceef 100644 --- a/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs +++ b/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs @@ -1,6 +1,6 @@ using Content.Server.Actions; +using Content.Shared.Clothing; using Content.Shared.Inventory; -using Content.Shared.Inventory.Events; namespace Content.Server.VoiceMask; @@ -12,13 +12,9 @@ public sealed partial class VoiceMaskSystem private const string MaskSlot = "mask"; - private void OnEquip(EntityUid uid, VoiceMaskerComponent component, GotEquippedEvent args) + private void OnEquip(EntityUid uid, VoiceMaskerComponent component, ClothingGotEquippedEvent args) { - var user = args.Equipee; - // have to be wearing the mask to use it, duh. - if (!_inventory.TryGetSlotEntity(user, MaskSlot, out var maskEntity) || maskEntity != uid) - return; - + var user = args.Wearer; var comp = EnsureComp(user); comp.VoiceName = component.LastSetName; comp.SpeechVerb = component.LastSpeechVerb; @@ -26,9 +22,9 @@ private void OnEquip(EntityUid uid, VoiceMaskerComponent component, GotEquippedE _actions.AddAction(user, ref component.ActionEntity, component.Action, uid); } - private void OnUnequip(EntityUid uid, VoiceMaskerComponent compnent, GotUnequippedEvent args) + private void OnUnequip(EntityUid uid, VoiceMaskerComponent compnent, ClothingGotUnequippedEvent args) { - RemComp(args.Equipee); + RemComp(args.Wearer); } private VoiceMaskerComponent? TryGetMask(EntityUid user) diff --git a/Content.Server/VoiceMask/VoiceMaskSystem.cs b/Content.Server/VoiceMask/VoiceMaskSystem.cs index 19ed156a0b..d925092083 100644 --- a/Content.Server/VoiceMask/VoiceMaskSystem.cs +++ b/Content.Server/VoiceMask/VoiceMaskSystem.cs @@ -3,7 +3,6 @@ using Content.Server.Popups; using Content.Shared.Clothing; using Content.Shared.Database; -using Content.Shared.Inventory.Events; using Content.Shared.Popups; using Content.Shared.Preferences; using Content.Shared.Speech; @@ -27,8 +26,8 @@ public override void Initialize() SubscribeLocalEvent(OnChangeName); SubscribeLocalEvent(OnChangeVerb); SubscribeLocalEvent(OnMaskToggled); - SubscribeLocalEvent(OnEquip); - SubscribeLocalEvent(OnUnequip); + SubscribeLocalEvent(OnEquip); + SubscribeLocalEvent(OnUnequip); SubscribeLocalEvent(OnSetName); // SubscribeLocalEvent>(GetVerbs); } @@ -42,17 +41,14 @@ private void OnChangeName(EntityUid uid, VoiceMaskComponent component, VoiceMask { if (message.Name.Length > HumanoidCharacterProfile.MaxNameLength || message.Name.Length <= 0) { - _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-failure"), uid, message.Session, PopupType.SmallCaution); + _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-failure"), uid, message.Actor, PopupType.SmallCaution); return; } component.VoiceName = message.Name; - if (message.Session.AttachedEntity != null) - _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(message.Session.AttachedEntity.Value):player} set voice of {ToPrettyString(uid):mask}: {component.VoiceName}"); - else - _adminLogger.Add(LogType.Action, LogImpact.Medium, $"Voice of {ToPrettyString(uid):mask} set: {component.VoiceName}"); + _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(message.Actor):player} set voice of {ToPrettyString(uid):mask}: {component.VoiceName}"); - _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-success"), uid, message.Session); + _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-success"), uid, message.Actor); TrySetLastKnownName(uid, message.Name); @@ -67,7 +63,7 @@ private void OnChangeVerb(Entity ent, ref VoiceMaskChangeVer ent.Comp.SpeechVerb = msg.Verb; // verb is only important to metagamers so no need to log as opposed to name - _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-success"), ent, msg.Session); + _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-success"), ent, msg.Actor); TrySetLastSpeechVerb(ent, msg.Verb); @@ -95,27 +91,21 @@ private void OnMaskToggled(Entity ent, ref WearerMaskToggled ent.Comp.Enabled = !args.IsToggled; } - private void OpenUI(EntityUid player, ActorComponent? actor = null) + private void OpenUI(EntityUid player) { - // Delta-V: `logMissing: false` because of syrinx. - if (!Resolve(player, ref actor, logMissing: false)) - return; - if (!_uiSystem.TryGetUi(player, VoiceMaskUIKey.Key, out var bui)) + if (!_uiSystem.IsUiOpen(player, VoiceMaskUIKey.Key)) return; - _uiSystem.OpenUi(bui, actor.PlayerSession); + _uiSystem.OpenUi(player, VoiceMaskUIKey.Key, player); UpdateUI(player); } private void UpdateUI(EntityUid owner, VoiceMaskComponent? component = null) { - // Delta-V: `logMissing: false` because of syrinx if (!Resolve(owner, ref component, logMissing: false)) - { return; - } - if (_uiSystem.TryGetUi(owner, VoiceMaskUIKey.Key, out var bui)) - _uiSystem.SetUiState(bui, new VoiceMaskBuiState(component.VoiceName, component.SpeechVerb)); + if (_uiSystem.HasUi(owner, VoiceMaskUIKey.Key)) + _uiSystem.SetUiState(owner, VoiceMaskUIKey.Key, new VoiceMaskBuiState(component.VoiceName, component.SpeechVerb)); } } diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.Ballistic.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.Ballistic.cs index 798be3fc8e..c75b4e6f82 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.Ballistic.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.Ballistic.cs @@ -1,3 +1,5 @@ +using Content.Server.Stack; +using Content.Shared.Stacks; using Content.Shared.Weapons.Ranged.Components; using Content.Shared.Weapons.Ranged.Events; using Robust.Shared.Map; @@ -6,6 +8,8 @@ namespace Content.Server.Weapons.Ranged.Systems; public sealed partial class GunSystem { + [Dependency] private readonly StackSystem _stack = default!; // WD EDIT + protected override void Cycle(EntityUid uid, BallisticAmmoProviderComponent component, MapCoordinates coordinates) { EntityUid? ent = null; @@ -32,4 +36,11 @@ protected override void Cycle(EntityUid uid, BallisticAmmoProviderComponent comp var cycledEvent = new GunCycledEvent(); RaiseLocalEvent(uid, ref cycledEvent); } + + // WD EDIT START + protected override EntityUid GetStackEntity(EntityUid uid, StackComponent stack) + { + return _stack.Split(uid, 1, Transform(uid).Coordinates, stack) ?? uid; + } + // WD EDIT END } diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs index 7c61aaa200..5b8be8e04d 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs @@ -12,6 +12,7 @@ using Content.Shared.Effects; using Content.Shared.Interaction.Components; using Content.Shared.Projectiles; +using Content.Shared.Throwing; using Content.Shared.Weapons.Melee; using Content.Shared.Weapons.Ranged; using Content.Shared.Weapons.Ranged.Components; @@ -107,7 +108,7 @@ public override void Shoot(EntityUid gunUid, GunComponent gun, List<(EntityUid? // Update shot based on the recoil toMap = fromMap.Position + angle.ToVec() * mapDirection.Length(); mapDirection = toMap - fromMap.Position; - var gunVelocity = Physics.GetMapLinearVelocity(gunUid); + var gunVelocity = Physics.GetMapLinearVelocity(fromEnt); // I must be high because this was getting tripped even when true. // DebugTools.Assert(direction != Vector2.Zero); @@ -156,7 +157,7 @@ public override void Shoot(EntityUid gunUid, GunComponent gun, List<(EntityUid? }); SetCartridgeSpent(ent.Value, cartridge, true); - MuzzleFlash(gunUid, cartridge, user); + MuzzleFlash(gunUid, cartridge, mapDirection.ToAngle(), user); Audio.PlayPredicted(gun.SoundGunshotModified, gunUid, user); if (cartridge.DeleteOnSpawn) @@ -178,7 +179,7 @@ public override void Shoot(EntityUid gunUid, GunComponent gun, List<(EntityUid? // Ammo shoots itself case AmmoComponent newAmmo: shotProjectiles.Add(ent!.Value); - MuzzleFlash(gunUid, newAmmo, user); + MuzzleFlash(gunUid, newAmmo, mapDirection.ToAngle(), user); Audio.PlayPredicted(gun.SoundGunshotModified, gunUid, user); ShootOrThrow(ent.Value, mapDirection, gunVelocity, gun, gunUid, user); break; @@ -210,7 +211,7 @@ public override void Shoot(EntityUid gunUid, GunComponent gun, List<(EntityUid? FireEffects(fromEffect, result.Distance, dir.Normalized().ToAngle(), hitscan, hit); - var ev = new HitScanReflectAttemptEvent(user, gunUid, hitscan.Reflective, dir, false); + var ev = new HitScanReflectAttemptEvent(user, gunUid, hitscan.Reflective, dir, false, hitscan.Damage); // WD EDIT RaiseLocalEvent(hit, ref ev); if (!ev.Reflected) @@ -293,7 +294,12 @@ private void ShootOrThrow(EntityUid uid, Vector2 mapDirection, Vector2 gunVeloci { RemoveShootable(uid); // TODO: Someone can probably yeet this a billion miles so need to pre-validate input somewhere up the call stack. + // WD EDIT START + if (gun.ThrowAngle.HasValue) + EnsureComp(uid).Angle = gun.ThrowAngle.Value; + // WD EDIT END ThrowingSystem.TryThrow(uid, mapDirection, gun.ProjectileSpeedModified, user); + RemComp(uid); // WD EDIT return; } @@ -337,9 +343,9 @@ private Angle GetRecoilAngle(TimeSpan curTime, GunComponent component, Angle dir protected override void Popup(string message, EntityUid? uid, EntityUid? user) { } - protected override void CreateEffect(EntityUid uid, MuzzleFlashEvent message, EntityUid? user = null) + protected override void CreateEffect(EntityUid gunUid, MuzzleFlashEvent message, EntityUid? user = null) { - var filter = Filter.Pvs(uid, entityManager: EntityManager); + var filter = Filter.Pvs(gunUid, entityManager: EntityManager); if (TryComp(user, out var actor)) filter.RemovePlayer(actor.PlayerSession); diff --git a/Content.Server/Wires/WiresSystem.cs b/Content.Server/Wires/WiresSystem.cs index 0f9ee8b0f7..fce81db327 100644 --- a/Content.Server/Wires/WiresSystem.cs +++ b/Content.Server/Wires/WiresSystem.cs @@ -17,6 +17,7 @@ using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; +using ActivatableUISystem = Content.Shared.UserInterface.ActivatableUISystem; namespace Content.Server.Wires; @@ -347,7 +348,7 @@ public override void Update(float frameTime) } } - private class ActiveWireAction + private sealed class ActiveWireAction { /// /// The wire action's ID. This is so that once the action is finished, @@ -393,11 +394,11 @@ private void OnWiresPowered(EntityUid uid, WiresComponent component, ref PowerCh private void OnWiresActionMessage(EntityUid uid, WiresComponent component, WiresActionMessage args) { - if (args.Session.AttachedEntity == null) + if (args.Actor == null) { return; } - var player = (EntityUid) args.Session.AttachedEntity; + var player = (EntityUid) args.Actor; if (!EntityManager.TryGetComponent(player, out HandsComponent? handsComponent)) { @@ -458,7 +459,7 @@ private void OnInteractUsing(EntityUid uid, WiresComponent component, InteractUs { if (TryComp(args.User, out ActorComponent? actor)) { - _uiSystem.TryOpen(uid, WiresUiKey.Key, actor.PlayerSession); + _uiSystem.OpenUi(uid, WiresUiKey.Key, actor.PlayerSession); args.Handled = true; } } @@ -468,7 +469,8 @@ private void OnPanelChanged(Entity ent, ref PanelChangedEvent ar { if (args.Open) return; - _uiSystem.TryCloseAll(ent, WiresUiKey.Key); + + _uiSystem.CloseUi(ent.Owner, WiresUiKey.Key); } private void OnAttemptOpenActivatableUI(EntityUid uid, ActivatableUIRequiresPanelComponent component, ActivatableUIOpenAttemptEvent args) @@ -574,18 +576,17 @@ private void UpdateUserInterface(EntityUid uid, WiresComponent? wires = null, Us statuses.Sort((a, b) => a.position.CompareTo(b.position)); - _uiSystem.TrySetUiState(uid, WiresUiKey.Key, new WiresBoundUserInterfaceState( + _uiSystem.SetUiState((uid, ui), WiresUiKey.Key, new WiresBoundUserInterfaceState( clientList.ToArray(), statuses.Select(p => new StatusEntry(p.key, p.value)).ToArray(), Loc.GetString(wires.BoardName), wires.SerialNumber, - wires.WireSeed), ui: ui); + wires.WireSeed)); } public void OpenUserInterface(EntityUid uid, ICommonSession player) { - if (_uiSystem.TryGetUi(uid, WiresUiKey.Key, out var ui)) - _uiSystem.OpenUi(ui, player); + _uiSystem.OpenUi(uid, WiresUiKey.Key, player); } /// @@ -629,7 +630,7 @@ public void SetWiresPanelSecurity(EntityUid uid, WiresPanelSecurityComponent com if (!args.WiresAccessible) { - _uiSystem.TryCloseAll(uid, WiresUiKey.Key); + _uiSystem.CloseUi(uid, WiresUiKey.Key); } } diff --git a/Content.Server/Worldgen/Prototypes/NoiseChannelPrototype.cs b/Content.Server/Worldgen/Prototypes/NoiseChannelPrototype.cs index 67da4c4df1..02ca383d30 100644 --- a/Content.Server/Worldgen/Prototypes/NoiseChannelPrototype.cs +++ b/Content.Server/Worldgen/Prototypes/NoiseChannelPrototype.cs @@ -80,7 +80,7 @@ public class NoiseChannelConfig } [Prototype("noiseChannel")] -public sealed class NoiseChannelPrototype : NoiseChannelConfig, IPrototype, IInheritingPrototype +public sealed partial class NoiseChannelPrototype : NoiseChannelConfig, IPrototype, IInheritingPrototype { /// [ParentDataField(typeof(AbstractPrototypeIdArraySerializer))] diff --git a/Content.Server/Xenoarchaeology/Equipment/Components/TraversalDistorterComponent.cs b/Content.Server/Xenoarchaeology/Equipment/Components/TraversalDistorterComponent.cs index ec16083c53..1461021e3d 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Components/TraversalDistorterComponent.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Components/TraversalDistorterComponent.cs @@ -1,4 +1,7 @@ -namespace Content.Server.Xenoarchaeology.Equipment.Components; +using Content.Shared.Construction.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Server.Xenoarchaeology.Equipment.Components; /// /// This is used for a machine that biases @@ -8,7 +11,19 @@ public sealed partial class TraversalDistorterComponent : Component { [ViewVariables(VVAccess.ReadWrite)] - public BiasDirection BiasDirection = BiasDirection.In; + public float BiasChance; + + [DataField] + public float BaseBiasChance = 0.7f; + + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MachinePartBiasChance = "Manipulator"; + + [DataField] + public float PartRatingBiasChance = 1.1f; + + [ViewVariables(VVAccess.ReadWrite)] + public BiasDirection BiasDirection = BiasDirection.Up; public TimeSpan NextActivation = default!; public TimeSpan ActivationDelay = TimeSpan.FromSeconds(1); @@ -16,6 +31,6 @@ public sealed partial class TraversalDistorterComponent : Component public enum BiasDirection : byte { - In, //down the tree, towards depth 0 - Out //up the tree, away from depth 0 + Up, //Towards depth 0 + Down, //Away from depth 0 } diff --git a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs index 27caebef80..72d99460fe 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs @@ -41,7 +41,8 @@ public sealed class ArtifactAnalyzerSystem : EntitySystem [Dependency] private readonly PaperSystem _paper = default!; [Dependency] private readonly ResearchSystem _research = default!; [Dependency] private readonly MetaDataSystem _metaSystem = default!; - [Dependency] private readonly GlimmerSystem _glimmerSystem = default!; //Nyano - Summary: pulls in the glimmer system. + [Dependency] private readonly TraversalDistorterSystem _traversalDistorter = default!; + [Dependency] private readonly GlimmerSystem _glimmerSystem = default!; /// public override void Initialize() @@ -63,6 +64,7 @@ public override void Initialize() SubscribeLocalEvent(OnScanButton); SubscribeLocalEvent(OnPrintButton); SubscribeLocalEvent(OnExtractButton); + SubscribeLocalEvent(OnBiasButton); SubscribeLocalEvent((e, c, _) => UpdateUserInterface(e, c), after: new[] { typeof(ResearchSystem) }); @@ -194,6 +196,7 @@ private void UpdateUserInterface(EntityUid uid, AnalysisConsoleComponent? compon var canScan = false; var canPrint = false; var points = 0; + if (TryComp(component.AnalyzerEntity, out var analyzer)) { artifact = analyzer.LastAnalyzedArtifact; @@ -207,18 +210,22 @@ private void UpdateUserInterface(EntityUid uid, AnalysisConsoleComponent? compon if (GetArtifactForAnalysis(component.AnalyzerEntity, placer) is { } current) points = _artifact.GetResearchPointValue(current); } + var analyzerConnected = component.AnalyzerEntity != null; var serverConnected = TryComp(uid, out var client) && client.ConnectedToServer; var scanning = TryComp(component.AnalyzerEntity, out var active); var paused = active != null ? active.AnalysisPaused : false; + var biasDirection = BiasDirection.Up; - var state = new AnalysisConsoleScanUpdateState(GetNetEntity(artifact), analyzerConnected, serverConnected, - canScan, canPrint, msg, scanning, paused, active?.StartTime, active?.AccumulatedRunTime, totalTime, points); + if (TryComp(component.AnalyzerEntity, out var trav)) + biasDirection = trav.BiasDirection; - var bui = _ui.GetUi(uid, ArtifactAnalzyerUiKey.Key); - _ui.SetUiState(bui, state); + var state = new AnalysisConsoleUpdateState(GetNetEntity(artifact), analyzerConnected, serverConnected, + canScan, canPrint, msg, scanning, paused, active?.StartTime, active?.AccumulatedRunTime, totalTime, points, biasDirection == BiasDirection.Down); + + _ui.SetUiState(uid, ArtifactAnalzyerUiKey.Key, state); } /// @@ -229,7 +236,7 @@ private void UpdateUserInterface(EntityUid uid, AnalysisConsoleComponent? compon /// private void OnServerSelectionMessage(EntityUid uid, AnalysisConsoleComponent component, AnalysisConsoleServerSelectionMessage args) { - _ui.TryOpen(uid, ResearchClientUiKey.Key, args.Session); + _ui.OpenUi(uid, ResearchClientUiKey.Key, args.Actor); } /// @@ -382,6 +389,20 @@ private void OnExtractButton(EntityUid uid, AnalysisConsoleComponent component, UpdateUserInterface(uid, component); } + private void OnBiasButton(EntityUid uid, AnalysisConsoleComponent component, AnalysisConsoleBiasButtonPressedMessage args) + { + if (component.AnalyzerEntity == null) + return; + + if (!TryComp(component.AnalyzerEntity, out var trav)) + return; + + if (!_traversalDistorter.SetState(component.AnalyzerEntity.Value, trav, args.IsDown)) + return; + + UpdateUserInterface(uid, component); + } + /// /// Cancels scans if the artifact changes nodes (is activated) during the scan. /// @@ -505,4 +526,3 @@ private void OnPowerChanged(EntityUid uid, ActiveArtifactAnalyzerComponent activ } } } - diff --git a/Content.Server/Xenoarchaeology/Equipment/Systems/TraversalDistorterSystem.cs b/Content.Server/Xenoarchaeology/Equipment/Systems/TraversalDistorterSystem.cs index 230e639af4..67812a8a7b 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Systems/TraversalDistorterSystem.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Systems/TraversalDistorterSystem.cs @@ -1,9 +1,12 @@ -using Content.Server.Popups; +using Content.Server.Construction; +using Content.Server.Popups; using Content.Server.Power.EntitySystems; using Content.Server.Xenoarchaeology.Equipment.Components; +using Content.Server.Xenoarchaeology.XenoArtifacts; using Content.Shared.Examine; using Content.Shared.Interaction; using Content.Shared.Placeable; +using Robust.Shared.Player; using Robust.Shared.Timing; namespace Content.Server.Xenoarchaeology.Equipment.Systems; @@ -11,15 +14,14 @@ namespace Content.Server.Xenoarchaeology.Equipment.Systems; public sealed class TraversalDistorterSystem : EntitySystem { [Dependency] private readonly IGameTiming _timing = default!; - [Dependency] private readonly PopupSystem _popup = default!; /// public override void Initialize() { SubscribeLocalEvent(OnInit); - - SubscribeLocalEvent(OnInteract); SubscribeLocalEvent(OnExamine); + SubscribeLocalEvent(OnRefreshParts); + SubscribeLocalEvent(OnUpgradeExamine); SubscribeLocalEvent(OnItemPlaced); SubscribeLocalEvent(OnItemRemoved); @@ -30,30 +32,25 @@ private void OnInit(EntityUid uid, TraversalDistorterComponent component, MapIni component.NextActivation = _timing.CurTime; } - private void OnInteract(EntityUid uid, TraversalDistorterComponent component, ActivateInWorldEvent args) + /// + /// Switches the state of the traversal distorter between up and down. + /// + /// The distorter's entity + /// The component on the entity + /// If the distorter changed state + public bool SetState(EntityUid uid, TraversalDistorterComponent component, bool isDown) { - if (args.Handled || !this.IsPowered(uid, EntityManager)) - return; + if (!this.IsPowered(uid, EntityManager)) + return false; + if (_timing.CurTime < component.NextActivation) - return; - args.Handled = true; + return false; + component.NextActivation = _timing.CurTime + component.ActivationDelay; - component.BiasDirection = component.BiasDirection == BiasDirection.In - ? BiasDirection.Out - : BiasDirection.In; + component.BiasDirection = isDown ? BiasDirection.Down : BiasDirection.Up; - var toPopup = string.Empty; - switch (component.BiasDirection) - { - case BiasDirection.In: - toPopup = Loc.GetString("traversal-distorter-set-in"); - break; - case BiasDirection.Out: - toPopup = Loc.GetString("traversal-distorter-set-out"); - break; - } - _popup.PopupEntity(toPopup, uid); + return true; } private void OnExamine(EntityUid uid, TraversalDistorterComponent component, ExaminedEvent args) @@ -61,17 +58,28 @@ private void OnExamine(EntityUid uid, TraversalDistorterComponent component, Exa string examine = string.Empty; switch (component.BiasDirection) { - case BiasDirection.In: - examine = Loc.GetString("traversal-distorter-desc-in"); + case BiasDirection.Up: + examine = Loc.GetString("traversal-distorter-desc-up"); break; - case BiasDirection.Out: - examine = Loc.GetString("traversal-distorter-desc-out"); + case BiasDirection.Down: + examine = Loc.GetString("traversal-distorter-desc-down"); break; } - args.PushMarkup(examine); } + private void OnRefreshParts(EntityUid uid, TraversalDistorterComponent component, RefreshPartsEvent args) + { + var biasRating = args.PartRatings[component.MachinePartBiasChance]; + + component.BiasChance = component.BaseBiasChance * MathF.Pow(component.PartRatingBiasChance, biasRating - 1); + } + + private void OnUpgradeExamine(EntityUid uid, TraversalDistorterComponent component, UpgradeExamineEvent args) + { + args.AddPercentageUpgrade("traversal-distorter-upgrade-bias", component.BiasChance / component.BaseBiasChance); + } + private void OnItemPlaced(EntityUid uid, TraversalDistorterComponent component, ref ItemPlacedEvent args) { var bias = EnsureComp(args.OtherEntity); diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs index 647f31a895..895bb0217b 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs @@ -19,26 +19,46 @@ public sealed partial class ArtifactSystem /// /// /// - /// The amount of nodes it has. - private void GenerateArtifactNodeTree(EntityUid artifact, ref List allNodes, int nodeAmount) + /// The amount of nodes it has. + private void GenerateArtifactNodeTree(EntityUid artifact, List allNodes, int nodesToCreate) { - if (nodeAmount < 1) + if (nodesToCreate < 1) { - Log.Error($"nodeAmount {nodeAmount} is less than 1. Aborting artifact tree generation."); + Log.Error($"nodesToCreate {nodesToCreate} is less than 1. Aborting artifact tree generation."); return; } _usedNodeIds.Clear(); + var uninitializedNodes = new List { new(){ Id = GetValidNodeId() } }; + var createdNodes = 1; - var rootNode = new ArtifactNode + while (uninitializedNodes.Count > 0) { - Id = GetValidNodeId() - }; - var uninitializedNodes = new List { rootNode }; - while (uninitializedNodes.Any()) - { - GenerateNode(artifact, ref uninitializedNodes, ref allNodes, nodeAmount); + var node = uninitializedNodes[0]; + uninitializedNodes.Remove(node); + + node.Trigger = GetRandomTrigger(artifact, ref node); + node.Effect = GetRandomEffect(artifact, ref node); + + var maxChildren = _random.Next(1, MaxEdgesPerNode - 1); + + for (var i = 0; i < maxChildren; i++) + { + if (nodesToCreate <= createdNodes) + { + break; + } + + var child = new ArtifactNode {Id = GetValidNodeId(), Depth = node.Depth + 1}; + node.Edges.Add(child.Id); + child.Edges.Add(node.Id); + + uninitializedNodes.Add(child); + createdNodes++; + } + + allNodes.Add(node); } } @@ -51,44 +71,8 @@ private int GetValidNodeId() } _usedNodeIds.Add(id); - return id; - } - /// - /// Generate an individual node on the tree. - /// - private void GenerateNode(EntityUid artifact, ref List uninitializedNodes, ref List allNodes, int targetNodeAmount) - { - if (!uninitializedNodes.Any()) - return; - - var node = uninitializedNodes.First(); - uninitializedNodes.Remove(node); - - //Generate the connected nodes - var maxEdges = Math.Max(1, targetNodeAmount - allNodes.Count - uninitializedNodes.Count - 1); - maxEdges = Math.Min(maxEdges, MaxEdgesPerNode); - var minEdges = Math.Clamp(targetNodeAmount - allNodes.Count - uninitializedNodes.Count - 1, 0, 1); - - var edgeAmount = _random.Next(minEdges, maxEdges); - - for (var i = 0; i < edgeAmount; i++) - { - var neighbor = new ArtifactNode - { - Depth = node.Depth + 1, - Id = GetValidNodeId() - }; - node.Edges.Add(neighbor.Id); - neighbor.Edges.Add(node.Id); - - uninitializedNodes.Add(neighbor); - } - - node.Trigger = GetRandomTrigger(artifact, ref node); - node.Effect = GetRandomEffect(artifact, ref node); - - allNodes.Add(node); + return id; } //yeah these two functions are near duplicates but i don't @@ -159,6 +143,7 @@ private int GetRandomTargetDepth(Dictionary weights) return key; } } + return _random.Pick(weights.Keys); //shouldn't happen } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs index 955fe827d7..f170075977 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs @@ -129,7 +129,7 @@ public void RandomizeArtifact(EntityUid uid, ArtifactComponent component) { var nodeAmount = _random.Next(component.NodesMin, component.NodesMax); - GenerateArtifactNodeTree(uid, ref component.NodeTree, nodeAmount); + GenerateArtifactNodeTree(uid, component.NodeTree, nodeAmount); var firstNode = GetRootNode(component.NodeTree); EnterNode(uid, ref firstNode, component); } @@ -184,13 +184,14 @@ public void ForceActivateArtifact(EntityUid uid, EntityUid? user = null, Artifac var currentNode = GetNodeFromId(component.CurrentNodeId.Value, component); currentNode.Triggered = true; - if (currentNode.Edges.Any()) - { - var newNode = GetNewNode(uid, component); - if (newNode == null) - return; - EnterNode(uid, ref newNode, component); - } + if (currentNode.Edges.Count == 0) + return; + + var newNode = GetNewNode(uid, component); + if (newNode == null) + return; + + EnterNode(uid, ref newNode, component); } private ArtifactNode? GetNewNode(EntityUid uid, ArtifactComponent component) @@ -206,19 +207,20 @@ public void ForceActivateArtifact(EntityUid uid, EntityUid? user = null, Artifac if (TryComp(uid, out var bias) && TryComp(bias.Provider, out var trav) && + _random.Prob(trav.BiasChance) && this.IsPowered(bias.Provider, EntityManager)) { switch (trav.BiasDirection) { - case BiasDirection.In: - var foo = allNodes.Where(x => GetNodeFromId(x, component).Depth < currentNode.Depth).ToHashSet(); - if (foo.Any()) - allNodes = foo; + case BiasDirection.Up: + var upNodes = allNodes.Where(x => GetNodeFromId(x, component).Depth < currentNode.Depth).ToHashSet(); + if (upNodes.Count != 0) + allNodes = upNodes; break; - case BiasDirection.Out: - var bar = allNodes.Where(x => GetNodeFromId(x, component).Depth > currentNode.Depth).ToHashSet(); - if (bar.Any()) - allNodes = bar; + case BiasDirection.Down: + var downNodes = allNodes.Where(x => GetNodeFromId(x, component).Depth > currentNode.Depth).ToHashSet(); + if (downNodes.Count != 0) + allNodes = downNodes; break; } } @@ -226,12 +228,14 @@ public void ForceActivateArtifact(EntityUid uid, EntityUid? user = null, Artifac var undiscoveredNodes = allNodes.Where(x => !GetNodeFromId(x, component).Discovered).ToList(); Log.Debug($"Undiscovered nodes: {string.Join(", ", undiscoveredNodes)}"); var newNode = _random.Pick(allNodes); - if (undiscoveredNodes.Any() && _random.Prob(0.75f)) + + if (undiscoveredNodes.Count != 0 && _random.Prob(0.75f)) { newNode = _random.Pick(undiscoveredNodes); } Log.Debug($"Going to node {newNode}"); + return GetNodeFromId(newNode, component); } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/GasArtifactSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/GasArtifactSystem.cs index e24d31a113..dc054d2318 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/GasArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/GasArtifactSystem.cs @@ -2,6 +2,7 @@ using Content.Server.Atmos.EntitySystems; using Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components; using Content.Server.Xenoarchaeology.XenoArtifacts.Events; +using Content.Shared.Atmos; namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Systems; diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/PortalArtifactSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/PortalArtifactSystem.cs index e2d2172355..e44ee6baa1 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/PortalArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/PortalArtifactSystem.cs @@ -35,8 +35,7 @@ private void OnActivate(Entity artifact, ref ArtifactAc var secondPortal = Spawn(artifact.Comp.PortalProto, _transform.GetMapCoordinates(target)); //Manual position swapping, because the portal that opens doesn't trigger a collision, and doesn't teleport targets the first time. - _transform.SetCoordinates(artifact, Transform(secondPortal).Coordinates); - _transform.SetCoordinates(target, Transform(firstPortal).Coordinates); + _transform.SwapPositions(target, secondPortal); _link.TryLink(firstPortal, secondPortal, true); } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/ShuffleArtifactSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/ShuffleArtifactSystem.cs index b977cb038c..c39627818a 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/ShuffleArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/ShuffleArtifactSystem.cs @@ -22,7 +22,6 @@ private void OnActivated(EntityUid uid, ShuffleArtifactComponent component, Arti { var mobState = GetEntityQuery(); - List allCoords = new(); List> toShuffle = new(); foreach (var ent in _lookup.GetEntitiesInRange(uid, component.Radius, LookupFlags.Dynamic | LookupFlags.Sundries)) @@ -33,13 +32,15 @@ private void OnActivated(EntityUid uid, ShuffleArtifactComponent component, Arti var xform = Transform(ent); toShuffle.Add((ent, xform)); - allCoords.Add(xform.Coordinates); } - foreach (var xform in toShuffle) + _random.Shuffle(toShuffle); + + while (toShuffle.Count > 1) { - var xformUid = xform.Owner; - _xform.SetCoordinates(xformUid, xform, _random.PickAndTake(allCoords)); + var ent1 = _random.PickAndTake(toShuffle); + var ent2 = _random.PickAndTake(toShuffle); + _xform.SwapPositions((ent1, ent1), (ent2, ent2)); } } } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/TemperatureArtifactSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/TemperatureArtifactSystem.cs index f314d4a4fb..e62ce36b5b 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/TemperatureArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/TemperatureArtifactSystem.cs @@ -2,6 +2,7 @@ using Content.Server.Atmos.EntitySystems; using Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components; using Content.Server.Xenoarchaeology.XenoArtifacts.Events; +using Content.Shared.Atmos; using Robust.Server.GameObjects; namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Systems; diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactExamineTriggerSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactExamineTriggerSystem.cs index cbade1682e..b7afbcfc8b 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactExamineTriggerSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactExamineTriggerSystem.cs @@ -1,5 +1,6 @@ using Content.Server.Xenoarchaeology.XenoArtifacts.Triggers.Components; using Content.Shared.Examine; +using Content.Shared.Ghost; namespace Content.Server.Xenoarchaeology.XenoArtifacts.Triggers.Systems; @@ -15,6 +16,10 @@ public override void Initialize() private void OnExamine(EntityUid uid, ArtifactExamineTriggerComponent component, ExaminedEvent args) { + // Prevent ghosts from activating this trigger unless they have CanGhostInteract + if (TryComp(args.Examiner, out var ghost) && !ghost.CanGhostInteract) + return; + _artifact.TryActivateArtifact(uid); } } diff --git a/Content.Server/Zombies/IncurableZombieComponent.cs b/Content.Server/Zombies/IncurableZombieComponent.cs index 2695865690..375b814b51 100644 --- a/Content.Server/Zombies/IncurableZombieComponent.cs +++ b/Content.Server/Zombies/IncurableZombieComponent.cs @@ -1,10 +1,16 @@ -namespace Content.Server.Zombies; +using Robust.Shared.Prototypes; + +namespace Content.Server.Zombies; /// -/// This is used for a zombie that cannot be cured by any methods. +/// This is used for a zombie that cannot be cured by any methods. Gives a succumb to zombie infection action. /// [RegisterComponent] public sealed partial class IncurableZombieComponent : Component { + [DataField] + public EntProtoId ZombifySelfActionPrototype = "ActionTurnUndead"; + [DataField] + public EntityUid? Action; } diff --git a/Content.Server/Zombies/InitialInfectedExemptComponent.cs b/Content.Server/Zombies/InitialInfectedExemptComponent.cs index 46077935c6..f2dfda3f87 100644 --- a/Content.Server/Zombies/InitialInfectedExemptComponent.cs +++ b/Content.Server/Zombies/InitialInfectedExemptComponent.cs @@ -1,7 +1,7 @@ namespace Content.Server.Zombies; [RegisterComponent] -public partial class InitialInfectedExemptComponent : Component +public sealed partial class InitialInfectedExemptComponent : Component { } diff --git a/Content.Server/Zombies/PendingZombieComponent.cs b/Content.Server/Zombies/PendingZombieComponent.cs index 1bb0ef2872..811d3f9644 100644 --- a/Content.Server/Zombies/PendingZombieComponent.cs +++ b/Content.Server/Zombies/PendingZombieComponent.cs @@ -1,5 +1,4 @@ using Content.Shared.Damage; -using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Server.Zombies; @@ -17,7 +16,7 @@ public sealed partial class PendingZombieComponent : Component { DamageDict = new () { - { "Poison", 0.3 }, + { "Poison", 0.2 }, } }; @@ -48,9 +47,6 @@ public sealed partial class PendingZombieComponent : Component [DataField] public TimeSpan MaxInitialInfectedGrace = TimeSpan.FromMinutes(15f); - [DataField] - public EntProtoId ZombifySelfActionPrototype = "ActionTurnUndead"; - /// /// The chance each second that a warning will be shown. /// @@ -66,6 +62,4 @@ public sealed partial class PendingZombieComponent : Component "zombie-infection-warning", "zombie-infection-underway" }; - - [DataField] public EntityUid? Action; } diff --git a/Content.Server/Zombies/ZombieSystem.Transform.cs b/Content.Server/Zombies/ZombieSystem.Transform.cs index 5b38e6f766..a906652765 100644 --- a/Content.Server/Zombies/ZombieSystem.Transform.cs +++ b/Content.Server/Zombies/ZombieSystem.Transform.cs @@ -80,7 +80,7 @@ private void OnDamageChanged(EntityUid uid, ZombifyOnDeathComponent component, M /// the entity being zombified /// /// - /// ALRIGHT BIG BOY. YOU'VE COME TO THE LAYER OF THE BEAST. THIS IS YOUR WARNING. + /// ALRIGHT BIG BOYS, GIRLS AND ANYONE ELSE. YOU'VE COME TO THE LAYER OF THE BEAST. THIS IS YOUR WARNING. /// This function is the god function for zombie stuff, and it is cursed. I have /// attempted to label everything thouroughly for your sanity. I have attempted to /// rewrite this, but this is how it shall lie eternal. Turn back now. @@ -236,6 +236,11 @@ public void ZombifyEntity(EntityUid target, MobStateComponent? mobState = null) _identity.QueueIdentityUpdate(target); + var htn = EnsureComp(target); + htn.RootTask = new HTNCompoundTask() { Task = "SimpleHostileCompound" }; + htn.Blackboard.SetValue(NPCBlackboard.Owner, target); + _npc.SleepNPC(target, htn); + //He's gotta have a mind var hasMind = _mind.TryGetMind(target, out var mindId, out _); if (hasMind && _mind.TryGetSession(mindId, out var session)) @@ -251,9 +256,6 @@ public void ZombifyEntity(EntityUid target, MobStateComponent? mobState = null) } else { - var htn = EnsureComp(target); - htn.RootTask = new HTNCompoundTask() { Task = "SimpleHostileCompound" }; - htn.Blackboard.SetValue(NPCBlackboard.Owner, target); _npc.WakeNPC(target, htn); } diff --git a/Content.Server/Zombies/ZombieSystem.cs b/Content.Server/Zombies/ZombieSystem.cs index 16f9b2607f..e564b6c637 100644 --- a/Content.Server/Zombies/ZombieSystem.cs +++ b/Content.Server/Zombies/ZombieSystem.cs @@ -66,9 +66,16 @@ public override void Initialize() SubscribeLocalEvent(OnPendingMapInit); + SubscribeLocalEvent(OnPendingMapInit); + SubscribeLocalEvent(OnDamageChanged); } + private void OnPendingMapInit(EntityUid uid, IncurableZombieComponent component, MapInitEvent args) + { + _actions.AddAction(uid, ref component.Action, component.ZombifySelfActionPrototype); + } + private void OnPendingMapInit(EntityUid uid, PendingZombieComponent component, MapInitEvent args) { if (_mobState.IsDead(uid)) @@ -79,7 +86,6 @@ private void OnPendingMapInit(EntityUid uid, PendingZombieComponent component, M component.NextTick = _timing.CurTime + TimeSpan.FromSeconds(1f); component.GracePeriod = _random.Next(component.MinInitialInfectedGrace, component.MaxInitialInfectedGrace); - _actions.AddAction(uid, ref component.Action, component.ZombifySelfActionPrototype); } public override void Update(float frameTime) diff --git a/Content.Server/_White/Animations/WaddleAnimationSystem.cs b/Content.Server/_White/Animations/WaddleAnimationSystem.cs new file mode 100644 index 0000000000..01e9f5c4b3 --- /dev/null +++ b/Content.Server/_White/Animations/WaddleAnimationSystem.cs @@ -0,0 +1,17 @@ +using Content.Shared._White.Animations; +using Content.Shared.Movement.Components; + +namespace Content.Server._White.Animations; + +public sealed class WaddleAnimationSystem : SharedWaddleAnimationSystem +{ + protected override void PlayAnimation(EntityUid user) + { + RaiseNetworkEvent(new StartedWaddlingEvent(GetNetEntity(user))); + } + + protected override void StopAnimation(EntityUid user) + { + RaiseNetworkEvent(new StoppedWaddlingEvent(GetNetEntity(user))); + } +} diff --git a/Content.Server/_White/AspectsSystem/Aspects/ImmersiveAspect.cs b/Content.Server/_White/AspectsSystem/Aspects/ImmersiveAspect.cs index 088cc18f3f..fe50477982 100644 --- a/Content.Server/_White/AspectsSystem/Aspects/ImmersiveAspect.cs +++ b/Content.Server/_White/AspectsSystem/Aspects/ImmersiveAspect.cs @@ -3,16 +3,15 @@ using Content.Server._White.AspectsSystem.Base; using Content.Server.GameTicking; using Content.Server.GameTicking.Components; -using Content.Shared._White.Telescope; using Content.Shared.Humanoid; using Content.Shared.Movement.Components; using Content.Shared.Movement.Systems; +using Content.Shared.Telescope; namespace Content.Server._White.AspectsSystem.Aspects; public sealed class ImmersiveAspect : AspectSystem { - [Dependency] private readonly SharedContentEyeSystem _eye = default!; [Dependency] private readonly SharedTelescopeSystem _telescope = default!; @@ -22,7 +21,9 @@ public override void Initialize() SubscribeLocalEvent(OnPlayerSpawn); } - protected override void Started(EntityUid uid, ImmersiveAspectComponent component, GameRuleComponent gameRule, + protected override void Started(EntityUid uid, + ImmersiveAspectComponent component, + GameRuleComponent gameRule, GameRuleStartedEvent args) { base.Started(uid, component, gameRule, args); @@ -76,7 +77,10 @@ private void OnPlayerSpawn(PlayerSpawnCompleteEvent ev) } - protected override void Ended(EntityUid uid, ImmersiveAspectComponent component, GameRuleComponent gameRule, GameRuleEndedEvent args) + protected override void Ended(EntityUid uid, + ImmersiveAspectComponent component, + GameRuleComponent gameRule, + GameRuleEndedEvent args) { base.Ended(uid, component, gameRule, args); diff --git a/Content.Server/_White/Blink/BlinkSystem.cs b/Content.Server/_White/Blink/BlinkSystem.cs index afcf9b436d..91acd9d2b4 100644 --- a/Content.Server/_White/Blink/BlinkSystem.cs +++ b/Content.Server/_White/Blink/BlinkSystem.cs @@ -1,8 +1,8 @@ using System.Linq; using System.Numerics; using Content.Shared._White.Blink; -using Content.Shared._White.Standing; using Content.Shared.Physics; +using Content.Shared.Standing; using Robust.Server.Audio; using Robust.Server.GameObjects; using Robust.Shared.Physics; diff --git a/Content.Server/_White/Blocking/RechargeableBlockingComponent.cs b/Content.Server/_White/Blocking/RechargeableBlockingComponent.cs new file mode 100644 index 0000000000..4ad7a354a9 --- /dev/null +++ b/Content.Server/_White/Blocking/RechargeableBlockingComponent.cs @@ -0,0 +1,11 @@ +namespace Content.Server._White.Blocking; + +[RegisterComponent] +public sealed partial class RechargeableBlockingComponent : Component +{ + [DataField] + public float RechargeDelay = 30f; + + [ViewVariables] + public bool Discharged; +} diff --git a/Content.Server/_White/Blocking/RechargeableBlockingSystem.cs b/Content.Server/_White/Blocking/RechargeableBlockingSystem.cs new file mode 100644 index 0000000000..b39908c565 --- /dev/null +++ b/Content.Server/_White/Blocking/RechargeableBlockingSystem.cs @@ -0,0 +1,91 @@ +using Content.Server.Item; +using Content.Server.Popups; +using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; +using Content.Server.PowerCell; +using Content.Shared.Damage; +using Content.Shared.Examine; +using Content.Shared.Item.ItemToggle.Components; +using Content.Shared.PowerCell.Components; + +namespace Content.Server._White.Blocking; + +public sealed class RechargeableBlockingSystem : EntitySystem +{ + [Dependency] private readonly BatterySystem _battery = default!; + [Dependency] private readonly ItemToggleSystem _itemToggle = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly PowerCellSystem _powerCell = default!; + + public override void Initialize() + { + SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent(OnDamageChanged); + SubscribeLocalEvent(AttemptToggle); + SubscribeLocalEvent(OnChargeChanged); + SubscribeLocalEvent(OnPowerCellChanged); + } + + private void OnExamined(EntityUid uid, RechargeableBlockingComponent component, ExaminedEvent args) + { + BatteryComponent? batteryComponent = null; + + if (component.Discharged) + { + args.PushMarkup(Loc.GetString("rechargeable-blocking-discharged")); + if (_battery.TryGetBatteryComponent(uid, out batteryComponent, out var batteryUid) + && TryComp(batteryUid, out var recharger) + && recharger is { AutoRechargeRate: > 0, AutoRecharge: true }) + { + var remainingTime = (int) (component.RechargeDelay - batteryComponent.CurrentCharge) / recharger.AutoRechargeRate; + args.PushMarkup(Loc.GetString("rechargeable-blocking-remaining-time", ("remainingTime", remainingTime))); + } + } + + _powerCell.OnBatteryExamined(uid, batteryComponent, args); + } + + private void OnDamageChanged(EntityUid uid, RechargeableBlockingComponent component, DamageChangedEvent args) + { + if (!_battery.TryGetBatteryComponent(uid, out var batteryComponent, out var batteryUid) + || !_itemToggle.IsActivated(uid) + || args.DamageDelta == null) + return; + + var batteryUse = Math.Min(args.DamageDelta.GetTotal().Float(), batteryComponent.CurrentCharge); + _battery.TryUseCharge(batteryUid.Value, batteryUse, batteryComponent); + } + + private void AttemptToggle(EntityUid uid, RechargeableBlockingComponent component, ref ItemToggleActivateAttemptEvent args) + { + if (!component.Discharged) + return; + + _popup.PopupEntity(Loc.GetString("stunbaton-component-low-charge"), args.User ?? uid); + args.Cancelled = true; + } + private void OnChargeChanged(EntityUid uid, RechargeableBlockingComponent component, ChargeChangedEvent args) + { + CheckCharge(uid, component); + } + + private void OnPowerCellChanged(EntityUid uid, RechargeableBlockingComponent component, PowerCellChangedEvent args) + { + CheckCharge(uid, component); + } + + private void CheckCharge(EntityUid uid, RechargeableBlockingComponent component) + { + if (!_battery.TryGetBatteryComponent(uid, out var battery, out _)) + return; + + if (battery.CurrentCharge < 1) + { + component.Discharged = true; + _itemToggle.TryDeactivate(uid, predicted: false); + } + + if (battery.CurrentCharge > component.RechargeDelay) + component.Discharged = false; + } +} diff --git a/Content.Server/_White/DespawnOnLandItem/DespawnOnLandItemComponent.cs b/Content.Server/_White/DespawnOnLandItem/DespawnOnLandItemComponent.cs new file mode 100644 index 0000000000..739160e837 --- /dev/null +++ b/Content.Server/_White/DespawnOnLandItem/DespawnOnLandItemComponent.cs @@ -0,0 +1,8 @@ +namespace Content.Server._White.DespawnOnLandItem; + +[RegisterComponent] +public sealed partial class DespawnOnLandItemComponent : Component +{ + [DataField] + public float TimeDespawnOnLand = 3f; +} diff --git a/Content.Server/_White/DespawnOnLandItem/DespawnOnLandItemSystem.cs b/Content.Server/_White/DespawnOnLandItem/DespawnOnLandItemSystem.cs new file mode 100644 index 0000000000..a710fcad0e --- /dev/null +++ b/Content.Server/_White/DespawnOnLandItem/DespawnOnLandItemSystem.cs @@ -0,0 +1,33 @@ +using Content.Shared.Body.Components; +using Content.Shared.Interaction.Events; +using Content.Shared.OfferItem; +using Robust.Shared.Containers; +using Robust.Shared.Spawners; + +namespace Content.Server._White.DespawnOnLandItem; + +public sealed class DespawnOnLandItemSystem : EntitySystem +{ + public override void Initialize() + { + SubscribeLocalEvent(OnDrop); + SubscribeLocalEvent(OnHanded); + SubscribeLocalEvent(OnInsert); + } + + private void OnDrop(EntityUid uid, DespawnOnLandItemComponent component, DroppedEvent args) + { + EnsureComp(uid).Lifetime = component.TimeDespawnOnLand; + } + + private void OnHanded(EntityUid uid, DespawnOnLandItemComponent component, HandedEvent args) + { + EnsureComp(uid).Lifetime = component.TimeDespawnOnLand; + } + + private void OnInsert(EntityUid uid, DespawnOnLandItemComponent component, EntGotInsertedIntoContainerMessage args) + { + if (!HasComp(args.Container.Owner)) + EnsureComp(uid).Lifetime = component.TimeDespawnOnLand; + } +} diff --git a/Content.Server/_White/FootPrint/FootPrintsSystem.cs b/Content.Server/_White/FootPrint/FootPrintsSystem.cs new file mode 100644 index 0000000000..38ff53fd13 --- /dev/null +++ b/Content.Server/_White/FootPrint/FootPrintsSystem.cs @@ -0,0 +1,122 @@ +using Content.Server.Atmos.Components; +using Content.Shared.Inventory; +using Content.Shared.Mobs; +using Content.Shared.Mobs.Components; +using Content.Shared._White.FootPrint; +using Content.Shared.Standing; +using Content.Shared.Chemistry.Components.SolutionManager; +using Content.Shared.Chemistry.EntitySystems; +using Robust.Shared.Map; +using Robust.Shared.Random; + +namespace Content.Server._White.FootPrint; + +public sealed class FootPrintsSystem : EntitySystem +{ + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly IMapManager _map = default!; + + [Dependency] private readonly SharedSolutionContainerSystem _solution = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + + private EntityQuery _transformQuery; + private EntityQuery _mobThresholdQuery; + private EntityQuery _appearanceQuery; + private EntityQuery _layingQuery; + + public override void Initialize() + { + base.Initialize(); + + _transformQuery = GetEntityQuery(); + _mobThresholdQuery = GetEntityQuery(); + _appearanceQuery = GetEntityQuery(); + _layingQuery = GetEntityQuery(); + + SubscribeLocalEvent(OnStartupComponent); + SubscribeLocalEvent(OnMove); + } + + private void OnStartupComponent(EntityUid uid, FootPrintsComponent component, ComponentStartup args) + { + component.StepSize = Math.Max(0f, component.StepSize + _random.NextFloat(-0.05f, 0.05f)); + } + + private void OnMove(EntityUid uid, FootPrintsComponent component, ref MoveEvent args) + { + if (component.PrintsColor.A <= 0f + || !_transformQuery.TryComp(uid, out var transform) + || !_mobThresholdQuery.TryComp(uid, out var mobThreshHolds) + || !_map.TryFindGridAt(_transform.GetMapCoordinates((uid, transform)), out var gridUid, out _)) + return; + + var dragging = mobThreshHolds.CurrentThresholdState is MobState.Critical or MobState.Dead + || _layingQuery.TryComp(uid, out var laying) && laying.IsCrawlingUnder; + var distance = (transform.LocalPosition - component.StepPos).Length(); + var stepSize = dragging ? component.DragSize : component.StepSize; + + if (!(distance > stepSize)) + return; + + component.RightStep = !component.RightStep; + + var entity = Spawn(component.StepProtoId, CalcCoords(gridUid, component, transform, dragging)); + var footPrintComponent = EnsureComp(entity); + + footPrintComponent.PrintOwner = uid; + Dirty(entity, footPrintComponent); + + if (_appearanceQuery.TryComp(entity, out var appearance)) + { + _appearance.SetData(entity, FootPrintVisualState.State, PickState(uid, dragging), appearance); + _appearance.SetData(entity, FootPrintVisualState.Color, component.PrintsColor, appearance); + } + + if (!_transformQuery.TryComp(entity, out var stepTransform)) + return; + + stepTransform.LocalRotation = dragging + ? (transform.LocalPosition - component.StepPos).ToAngle() + Angle.FromDegrees(-90f) + : transform.LocalRotation + Angle.FromDegrees(180f); + + component.PrintsColor = component.PrintsColor.WithAlpha(Math.Max(0f, component.PrintsColor.A - component.ColorReduceAlpha)); + component.StepPos = transform.LocalPosition; + + if (!TryComp(entity, out var solutionContainer) + || !_solution.ResolveSolution((entity, solutionContainer), footPrintComponent.SolutionName, ref footPrintComponent.Solution, out var solution) + || string.IsNullOrWhiteSpace(component.ReagentToTransfer) || solution.Volume >= 1) + return; + + _solution.TryAddReagent(footPrintComponent.Solution.Value, component.ReagentToTransfer, 1, out _); + } + + private EntityCoordinates CalcCoords(EntityUid uid, FootPrintsComponent component, TransformComponent transform, bool state) + { + if (state) + return new EntityCoordinates(uid, transform.LocalPosition); + + var offset = component.RightStep + ? new Angle(Angle.FromDegrees(180f) + transform.LocalRotation).RotateVec(component.OffsetPrint) + : new Angle(transform.LocalRotation).RotateVec(component.OffsetPrint); + + return new EntityCoordinates(uid, transform.LocalPosition + offset); + } + + private FootPrintVisuals PickState(EntityUid uid, bool dragging) + { + var state = FootPrintVisuals.BareFootPrint; + + if (_inventory.TryGetSlotEntity(uid, "shoes", out _)) + state = FootPrintVisuals.ShoesPrint; + + if (_inventory.TryGetSlotEntity(uid, "outerClothing", out var suit) && TryComp(suit, out _)) + state = FootPrintVisuals.SuitPrint; + + if (dragging) + state = FootPrintVisuals.Dragging; + + return state; + } +} diff --git a/Content.Server/_White/FootPrint/PuddleFootPrintsSystem.cs b/Content.Server/_White/FootPrint/PuddleFootPrintsSystem.cs new file mode 100644 index 0000000000..4d7c49d881 --- /dev/null +++ b/Content.Server/_White/FootPrint/PuddleFootPrintsSystem.cs @@ -0,0 +1,53 @@ +using System.Linq; +using Content.Shared._White.FootPrint; +using Content.Shared.Chemistry.Components.SolutionManager; +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Fluids; +using Content.Shared.Fluids.Components; +using Robust.Shared.Physics.Events; + +namespace Content.Server._White.FootPrint; + +public sealed class PuddleFootPrintsSystem : EntitySystem +{ + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnStepTrigger); + } + + private void OnStepTrigger(EntityUid uid, PuddleFootPrintsComponent component, ref EndCollideEvent args) + { + if (!TryComp(uid, out var appearance) + || !TryComp(uid, out var puddle) + || !TryComp(args.OtherEntity, out var tripper) + || !TryComp(uid, out var solutionManager) + ||!_solutionContainer.ResolveSolution((uid, solutionManager), puddle.SolutionName, ref puddle.Solution, out var solutions)) + return; + + // alles gut! + var totalSolutionQuantity = solutions.Contents.Sum(sol => (float)sol.Quantity); + var waterQuantity = (from sol in solutions.Contents where sol.Reagent.Prototype == "Water" select (float) sol.Quantity).FirstOrDefault(); + + if (waterQuantity / (totalSolutionQuantity / 100f) > component.OffPercent || solutions.Contents.Count <= 0) + return; + + tripper.ReagentToTransfer = + solutions.Contents.Aggregate((l, r) => l.Quantity > r.Quantity ? l : r).Reagent.Prototype; + + if (_appearance.TryGetData(uid, PuddleVisuals.SolutionColor, out var color, appearance) + && _appearance.TryGetData(uid, PuddleVisuals.CurrentVolume, out var volume, appearance)) + AddColor((Color)color, (float)volume * component.SizeRatio, tripper); + + _solutionContainer.RemoveEachReagent(puddle.Solution.Value, 1); + } + + private void AddColor(Color col, float quantity, FootPrintsComponent component) + { + component.PrintsColor = component.ColorQuantity == 0f ? col : Color.InterpolateBetween(component.PrintsColor, col, component.ColorInterpolationFactor); + component.ColorQuantity += quantity; + } +} diff --git a/Content.Server/_White/Guns/PoweredComponent.cs b/Content.Server/_White/Guns/PoweredComponent.cs new file mode 100644 index 0000000000..e32670a0e6 --- /dev/null +++ b/Content.Server/_White/Guns/PoweredComponent.cs @@ -0,0 +1,14 @@ +namespace Content.Server._White.Guns; + +[RegisterComponent] +public sealed partial class PoweredComponent : Component +{ + [DataField] + public float EnergyPerUse = 180f; + + /// + /// Modifies the speed of projectiles fired from this powered weapon. + /// + [DataField] + public float ProjectileSpeedModified = 15f; +} diff --git a/Content.Server/_White/Guns/PoweredSystem.cs b/Content.Server/_White/Guns/PoweredSystem.cs new file mode 100644 index 0000000000..ad5b8c7d71 --- /dev/null +++ b/Content.Server/_White/Guns/PoweredSystem.cs @@ -0,0 +1,32 @@ +using Content.Server.Power.EntitySystems; +using Content.Server.Weapons.Ranged.Systems; +using Content.Shared.Weapons.Ranged.Events; +using Content.Shared.Weapons.Ranged.Systems; + +namespace Content.Server._White.Guns; + +public sealed class PoweredSystem : EntitySystem +{ + [Dependency] private readonly BatterySystem _battery = default!; + [Dependency] private readonly GunSystem _gun = default!; + + public override void Initialize() + { + SubscribeLocalEvent(OnShoot); + SubscribeLocalEvent(OnGunRefreshModifiers); + } + + private void OnShoot(EntityUid uid, PoweredComponent component, AttemptShootEvent args) + { + _gun.RefreshModifiers(uid); + } + + private void OnGunRefreshModifiers(EntityUid uid, PoweredComponent component, ref GunRefreshModifiersEvent args) + { + if (!_battery.TryGetBatteryComponent(uid, out var battery, out var batteryUid) + || !_battery.TryUseCharge(batteryUid.Value, component.EnergyPerUse, battery)) + return; + + args.ProjectileSpeed += component.ProjectileSpeedModified; + } +} diff --git a/Content.Server/_White/Holosign/HolosignComponent.cs b/Content.Server/_White/Holosign/HolosignComponent.cs new file mode 100644 index 0000000000..cce8f27539 --- /dev/null +++ b/Content.Server/_White/Holosign/HolosignComponent.cs @@ -0,0 +1,8 @@ +namespace Content.Server._White.Holosign; + +[RegisterComponent] +public sealed partial class HolosignComponent : Component +{ + [ViewVariables(VVAccess.ReadOnly)] + public EntityUid? Projector; +} diff --git a/Content.Server/_White/Holosign/HolosignSystem.cs b/Content.Server/_White/Holosign/HolosignSystem.cs new file mode 100644 index 0000000000..f765453ea6 --- /dev/null +++ b/Content.Server/_White/Holosign/HolosignSystem.cs @@ -0,0 +1,21 @@ +using Content.Server.Holosign; +using Content.Shared.Destructible; + +namespace Content.Server._White.Holosign; + +public sealed class HolosignSystem : EntitySystem +{ + public override void Initialize() + { + SubscribeLocalEvent(OnDestruction); + } + + private void OnDestruction(EntityUid uid, HolosignComponent component, DestructionEventArgs args) + { + if (!TryComp(component.Projector, out var holosignProjector)) + return; + + holosignProjector.Signs.Remove(uid); + ++holosignProjector.Uses; + } +} diff --git a/Content.Server/_White/Implants/ImplantsSystem.cs b/Content.Server/_White/Implants/ImplantsSystem.cs new file mode 100644 index 0000000000..ed0ffc10c5 --- /dev/null +++ b/Content.Server/_White/Implants/ImplantsSystem.cs @@ -0,0 +1,206 @@ +using Content.Server.Administration.Logs; +using Content.Server.Chat.Managers; +using Content.Server.Mind; +using Content.Server.Popups; +using Content.Server.Roles; +using Content.Server.Roles.Jobs; +using Content.Shared._White.Implants.MindSlave; +using Content.Shared._White.Implants.NeuroStabilization; +using Content.Shared.Chat; +using Content.Shared.Database; +using Content.Shared.Implants; +using Content.Shared.Implants.Components; +using Content.Shared.Mindshield.Components; +using Content.Shared.Revolutionary.Components; +using Content.Shared.Tag; + +namespace Content.Server._White.Implants; + +public sealed class ImplantsSystem : EntitySystem +{ + [Dependency] private readonly IAdminLogManager _adminLog = default!; + [Dependency] private readonly RoleSystem _role = default!; + [Dependency] private readonly MindSystem _mind = default!; + [Dependency] private readonly TagSystem _tag = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly IChatManager _chat = default!; + [Dependency] private readonly JobSystem _job = default!; + + [ValidatePrototypeId] + private const string MindShieldTag = "MindShield"; + + [ValidatePrototypeId] + private const string NeuroStabilizationTag = "NeuroStabilization"; + + [ValidatePrototypeId] + private const string MindSlaveTag = "MindSlave"; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnImplantInserted); + SubscribeLocalEvent(OnImplantRemoved); + SubscribeLocalEvent(AttemptImplantInserted); + } + + private void OnImplantInserted(EntityUid uid, SubdermalImplantComponent component, SubdermalImplantInserted args) + { + if (_tag.HasTag(uid, MindShieldTag) + && MindShieldCheck(uid, args.Target)) + EnsureComp(args.Target); + + if (_tag.HasTag(uid, NeuroStabilizationTag)) + EnsureComp(args.Target); + + if (_tag.HasTag(uid, MindSlaveTag)) + MindSlaveInserted(args.User, args.Target); + } + + private void OnImplantRemoved(EntityUid uid, SubdermalImplantComponent component, SubdermalImplantRemoved args) + { + if (_tag.HasTag(uid, MindShieldTag)) + RemComp(args.Target); + + if (_tag.HasTag(uid, NeuroStabilizationTag)) + RemComp(args.Target); + + if (_tag.HasTag(uid, MindSlaveTag)) + MindSlaveRemoved(args.User, args.Target); + } + + private void AttemptImplantInserted(EntityUid uid, SubdermalImplantComponent component, ref AttemptSubdermalImplantInserted args) + { + if (_tag.HasTag(uid, MindSlaveTag) + && !MindSlaveCheck(args.User, args.Target)) + { + args.Popup = false; + args.Cancel(); + } + } + + #region MindShield + + /// + /// Checks if the implanted person was a Rev or Head Rev and remove role or destroy mindshield respectively. + /// + private bool MindShieldCheck(EntityUid uid, EntityUid target) + { + if (HasComp(target) + || (TryComp(target, out var mindSlave) + && mindSlave.Master.HasValue)) + { + _popup.PopupEntity(Loc.GetString("head-rev-break-mindshield"), target); + QueueDel(uid); + return false; + } + + if (_mind.TryGetMind(target, out var mindId, out _) + && _role.MindTryRemoveRole(mindId)) + { + _adminLog.Add(LogType.Mind, LogImpact.Medium, + $"{ToPrettyString(target)} was deconverted due to being implanted with a Mindshield."); + } + + return true; + } + + #endregion + + #region MindSlave + + private void MindSlaveInserted(EntityUid user, EntityUid target) + { + var slaveComponent = EnsureComp(target); + slaveComponent.Master = GetNetEntity(user); + + var masterComponent = EnsureComp(user); + masterComponent.Slaves.Add(GetNetEntity(target)); + + Dirty(user, masterComponent); + Dirty(target, slaveComponent); + + if (!_mind.TryGetMind(target, out var targetMindId, out var targetMind) + || targetMind.Session is null) + return; + + var jobName = _job.MindTryGetJobName(user); + + // send message to chat + var message = Loc.GetString("mindslave-chat-message", ("player", user), ("role", jobName)); + var wrappedMessage = Loc.GetString("chat-manager-server-wrap-message", ("message", message)); + _chat.ChatMessageToOne(ChatChannel.Server, message, wrappedMessage, default, false, + targetMind.Session.Channel, Color.FromHex("#5e9cff")); + + // add briefing in character menu + if (TryComp(targetMindId, out var roleBriefing)) + { + roleBriefing.Briefing += Loc.GetString("mindslave-briefing", ("player", user), ("role", jobName)); + Dirty(targetMindId, roleBriefing); + } + else + { + _role.MindAddRole(targetMindId, new RoleBriefingComponent + { + Briefing = Loc.GetString("mindslave-briefing", ("player", user), ("role", jobName)) + }, targetMind); + } + + _adminLog.Add(LogType.Mind, LogImpact.High, + $"{ToPrettyString(user)} MindSlaved {ToPrettyString(target)}"); + } + + private void MindSlaveRemoved(EntityUid user, EntityUid target) + { + if (!TryComp(target, out MindSlaveComponent? mindslave) + || !mindslave.Master.HasValue) + return; + + var master = GetEntity(mindslave.Master.Value); + if (_mind.TryGetMind(target, out var mindId, out _)) + { + _role.MindTryRemoveRole(mindId); + _popup.PopupEntity(Loc.GetString("mindslave-freed", ("player", master)), target, target); + } + + if (TryComp(master, out MindSlaveComponent? masterMindslave)) + { + masterMindslave.Slaves.Remove(GetNetEntity(target)); + if (masterMindslave.Slaves.Count == 0) + RemComp(master); + } + + RemComp(target); + + _adminLog.Add(LogType.Mind, LogImpact.High, + $"{ToPrettyString(user)} UnMindSlaved {ToPrettyString(target)}"); + } + + /// + /// Checks if the target can be an MindSlaved + /// + private bool MindSlaveCheck(EntityUid user, EntityUid target) + { + string message; + if (target == user) + { + message = Loc.GetString("mindslave-target-self"); + } + else if (HasComp(target) + || HasComp(target) + || !_mind.TryGetMind(target, out _, out _) + || (TryComp(target, out var mindSlave) + && mindSlave.Master.HasValue)) + { + message = Loc.GetString("mindslave-cant-insert"); + } + else + { + return true; + } + + _popup.PopupEntity(message, target, user); + return false; + } + + #endregion +} diff --git a/Content.Server/_White/Implants/Spawn/SpawnImplantComponent.cs b/Content.Server/_White/Implants/Spawn/SpawnImplantComponent.cs new file mode 100644 index 0000000000..30ce2a492e --- /dev/null +++ b/Content.Server/_White/Implants/Spawn/SpawnImplantComponent.cs @@ -0,0 +1,13 @@ +using Robust.Shared.Audio; + +namespace Content.Server._White.Implants.Spawn; + +[RegisterComponent] +public sealed partial class SpawnImplantComponent : Component +{ + [DataField(required: true)] + public string SpawnId = string.Empty; + + [DataField] + public SoundSpecifier SoundOnSpawn = new SoundPathSpecifier("/Audio/Weapons/ebladeon.ogg"); +} diff --git a/Content.Server/_White/Implants/Spawn/SpawnImplantSystem.cs b/Content.Server/_White/Implants/Spawn/SpawnImplantSystem.cs new file mode 100644 index 0000000000..9bcaac8ff6 --- /dev/null +++ b/Content.Server/_White/Implants/Spawn/SpawnImplantSystem.cs @@ -0,0 +1,34 @@ +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Implants.Components; +using Robust.Shared.Audio.Systems; + +namespace Content.Server._White.Implants.Spawn; + +public sealed class SpawnImplantSystem : EntitySystem +{ + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + + public override void Initialize() + { + SubscribeLocalEvent(OnImplantActivate); + } + + private void OnImplantActivate(EntityUid uid, SubdermalImplantComponent component, ActivateSpawnImplantEvent args) + { + if (!TryComp(uid, out SpawnImplantComponent? implant) + || !TryComp(component.ImplantedEntity, out TransformComponent? transform)) + return; + + var spear = EntityManager.SpawnEntity(implant.SpawnId, transform.Coordinates); + + if (_hands.TryPickupAnyHand(component.ImplantedEntity.Value, spear)) + { + _audio.PlayPvs(implant.SoundOnSpawn, spear); + args.Handled = true; + return; + } + + Del(spear); + } +} diff --git a/Content.Server/_White/Melee/BloodAbsorb/BloodAbsorbComponent.cs b/Content.Server/_White/Melee/BloodAbsorb/BloodAbsorbComponent.cs new file mode 100644 index 0000000000..96c71e336d --- /dev/null +++ b/Content.Server/_White/Melee/BloodAbsorb/BloodAbsorbComponent.cs @@ -0,0 +1,17 @@ +namespace Content.Server._White.Melee.BloodAbsorb; + +[RegisterComponent] +public sealed partial class BloodAbsorbComponent : Component +{ + [DataField] + public bool BloodLust; + + [DataField] + public int MinAbsorb = 1; + + [DataField] + public int MaxAbsorb = 20; + + [DataField] + public float AbsorbModifierOnHeavy = 0.7f; +} diff --git a/Content.Server/_White/Melee/BloodAbsorb/BloodAbsorbSystem.cs b/Content.Server/_White/Melee/BloodAbsorb/BloodAbsorbSystem.cs new file mode 100644 index 0000000000..de274bfa84 --- /dev/null +++ b/Content.Server/_White/Melee/BloodAbsorb/BloodAbsorbSystem.cs @@ -0,0 +1,71 @@ +using Content.Server._White.Melee.Crit; +using Content.Server._White.Other.BloodLust; +using Content.Server.Body.Components; +using Content.Server.Body.Systems; +using Content.Shared.Damage; +using Content.Shared.Damage.Prototypes; +using Content.Shared.Weapons.Melee.Events; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; + +namespace Content.Server._White.Melee.BloodAbsorb; + +public sealed class BloodAbsorbSystem : EntitySystem +{ + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly BloodstreamSystem _bloodstream = default!; + [Dependency] private readonly DamageableSystem _damageable = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; + + public override void Initialize() + { + SubscribeLocalEvent(OnCritHit); + SubscribeLocalEvent(OnMeleeHit); + } + + private void OnCritHit(EntityUid uid, BloodAbsorbComponent component, CritHitEvent args) + { + if(args.Targets.Count == 0 + || args.Targets[0] == args.User) + return; + + var absorbed = _random.Next(component.MinAbsorb, component.MaxAbsorb); + + if (args.Targets.Count != 1) // Heavy attack + absorbed = (int) MathF.Round(absorbed * 0.7f); + + foreach (var target in args.Targets) + { + if (!TryComp(target, out BloodstreamComponent? bloodstream)) + continue; + + var blood = bloodstream.BloodSolution; + + if (blood == null) + continue; + + var bloodLevel = blood.Value.Comp.Solution.Volume.Int(); + + if (!_bloodstream.TryModifyBloodLevel(target, -absorbed, bloodstream, false)) + continue; + + absorbed = Math.Min(absorbed, bloodLevel); + _bloodstream.TryModifyBloodLevel(args.User, absorbed); + _damageable.TryChangeDamage(args.User, new DamageSpecifier(_prototype.Index("Brute"), -absorbed)); + _damageable.TryChangeDamage(args.User, new DamageSpecifier(_prototype.Index("Burn"), -absorbed)); + _damageable.TryChangeDamage(args.User, new DamageSpecifier(_prototype.Index("Airloss"), -absorbed)); + } + } + + private void OnMeleeHit(EntityUid uid, BloodAbsorbComponent component, MeleeHitEvent args) + { + if (args.HitEntities.Count == 0 + || args.HitEntities[0] != args.User + || !component.BloodLust + || !TryComp(args.User, out BloodstreamComponent? bloodstream)) + return; + + EnsureComp(args.User); + _bloodstream.TryModifyBleedAmount(args.User, bloodstream.MaxBleedAmount, bloodstream); + } +} diff --git a/Content.Server/_White/Melee/Crit/CritSystem.cs b/Content.Server/_White/Melee/Crit/CritSystem.cs index 3ed0440d0f..816c625afc 100644 --- a/Content.Server/_White/Melee/Crit/CritSystem.cs +++ b/Content.Server/_White/Melee/Crit/CritSystem.cs @@ -20,7 +20,7 @@ public override void Initialize() SubscribeLocalEvent(HandleHit, before: new [] {typeof(MeleeBlockSystem)}); } - private void HandleHit(EntityUid uid, CritComponent component, MeleeHitEvent args) + private void HandleHit(EntityUid uid, CritComponent component, ref MeleeHitEvent args) { if (args.HitEntities.Count == 0 || !IsCriticalHit(component)) return; @@ -32,6 +32,8 @@ private void HandleHit(EntityUid uid, CritComponent component, MeleeHitEvent arg var message = Loc.GetString("melee-crit-damage", ("damage", damage)); _popup.PopupEntity(message, args.User, args.User, PopupType.MediumCaution); + + RaiseLocalEvent(uid, new CritHitEvent(args.User, args.HitEntities)); } private bool IsCriticalHit(CritComponent component) @@ -48,3 +50,16 @@ private bool IsCriticalHit(CritComponent component) return isCritical; } } + +public sealed class CritHitEvent(EntityUid user, IReadOnlyList target) +{ + /// + /// Entity who attacked with a critical attack + /// + public EntityUid User = user; + + /// + /// Entities who was attacked with a critical attack + /// + public IReadOnlyList Targets = target; +} diff --git a/Content.Server/_White/Other/BloodLust/BloodLustComponent.cs b/Content.Server/_White/Other/BloodLust/BloodLustComponent.cs new file mode 100644 index 0000000000..daf54999c2 --- /dev/null +++ b/Content.Server/_White/Other/BloodLust/BloodLustComponent.cs @@ -0,0 +1,14 @@ +namespace Content.Server._White.Other.BloodLust; + +[RegisterComponent] +public sealed partial class BloodLustComponent : Component +{ + [DataField] + public float SprintModifier = 1.3f; + + [DataField] + public float WalkModifier = 1.3f; + + [DataField] + public float AttackRateModifier = 1.5f; +} diff --git a/Content.Server/_White/Other/BloodLust/BloodLustSystem.cs b/Content.Server/_White/Other/BloodLust/BloodLustSystem.cs new file mode 100644 index 0000000000..68dc2e4dab --- /dev/null +++ b/Content.Server/_White/Other/BloodLust/BloodLustSystem.cs @@ -0,0 +1,42 @@ +using Content.Server.Body.Components; +using Content.Shared.Movement.Systems; +using Content.Shared.Weapons.Melee.Events; + +namespace Content.Server._White.Other.BloodLust; + +public sealed class BloodLustSystem : EntitySystem +{ + public override void Initialize() + { + SubscribeLocalEvent(OnGetMeleeAttackRate); + SubscribeLocalEvent(OnRefreshMovementSpeedModifiers); + } + + private void OnGetMeleeAttackRate(EntityUid uid, BloodLustComponent component, GetMeleeAttackRateEvent args) + { + if (!TryComp(args.User, out BloodLustComponent? bloodLust)) + return; + + args.Multipliers *= GetBloodLustMultiplier(bloodLust.AttackRateModifier, GetBloodLustModifier(args.User)); + } + + private void OnRefreshMovementSpeedModifiers(EntityUid uid, BloodLustComponent component, RefreshMovementSpeedModifiersEvent args) + { + var modifier = GetBloodLustModifier(uid); + args.ModifySpeed(GetBloodLustMultiplier(component.WalkModifier, modifier), + GetBloodLustMultiplier(component.SprintModifier, modifier)); + } + + private float GetBloodLustModifier(EntityUid uid) + { + if (!TryComp(uid, out BloodstreamComponent? bloodstream) || bloodstream.MaxBleedAmount == 0f) + return 1f; + + return Math.Clamp(bloodstream.BleedAmount / bloodstream.MaxBleedAmount, 0f, 1f); + } + + private float GetBloodLustMultiplier(float multiplier, float modifier) + { + return float.Lerp(1f, multiplier, modifier); + } +} diff --git a/Content.Server/_White/Overlays/NightVisionSystem.cs b/Content.Server/_White/Overlays/NightVisionSystem.cs new file mode 100644 index 0000000000..3c1a0cadab --- /dev/null +++ b/Content.Server/_White/Overlays/NightVisionSystem.cs @@ -0,0 +1,5 @@ +using Content.Shared._White.Overlays; + +namespace Content.Server._White.Overlays; + +public sealed class NightVisionSystem : SwitchableOverlaySystem; diff --git a/Content.Server/_White/Overlays/ThermalVisionSystem.cs b/Content.Server/_White/Overlays/ThermalVisionSystem.cs new file mode 100644 index 0000000000..ac8b8c91e5 --- /dev/null +++ b/Content.Server/_White/Overlays/ThermalVisionSystem.cs @@ -0,0 +1,5 @@ +using Content.Shared._White.Overlays; + +namespace Content.Server._White.Overlays; + +public sealed class ThermalVisionSystem : SwitchableOverlaySystem; diff --git a/Content.Server/_White/Projectiles/PenetratedProjectileSystem.cs b/Content.Server/_White/Projectiles/PenetratedProjectileSystem.cs new file mode 100644 index 0000000000..71bcc4e8cf --- /dev/null +++ b/Content.Server/_White/Projectiles/PenetratedProjectileSystem.cs @@ -0,0 +1,82 @@ +using System.Numerics; +using Content.Shared._White.Penetrated; +using Content.Shared._White.Projectile; +using Content.Shared.Buckle; +using Content.Shared.Damage; +using Content.Shared.Projectiles; +using Content.Shared.Throwing; +using Robust.Shared.Physics; +using Robust.Shared.Physics.Components; +using Robust.Shared.Physics.Systems; + +namespace Content.Server._White.Projectiles; + +public sealed class PenetratedProjectileSystem : EntitySystem +{ + [Dependency] private readonly SharedPhysicsSystem _physics = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly SharedBuckleSystem _buckle = default!; + [Dependency] private readonly DamageableSystem _damageable = default!; + [Dependency] private readonly PenetratedSystem _penetrated = default!; + [Dependency] private readonly SharedProjectileSystem _projectile = default!; + + public override void Initialize() + { + SubscribeLocalEvent(OnEmbed); + SubscribeLocalEvent(OnLand); + SubscribeLocalEvent(OnRemove); + SubscribeLocalEvent(OnEntityTerminating); + } + + private void OnEmbed(EntityUid uid, PenetratedProjectileComponent component, AttemptEmbedEvent args) + { + if (!TryComp(args.Embedded, out PenetratedComponent? penetrated) + || penetrated.IsPinned + || component.PenetratedUid.HasValue + || !TryComp(uid, out PhysicsComponent? physics) + || !TryComp(args.Embedded, out PhysicsComponent? physicEmbedded) + || physics.LinearVelocity.Length() < component.MinimumSpeed) + return; + + component.PenetratedUid = args.Embedded; + penetrated.ProjectileUid = uid; + penetrated.IsPinned = true; + + _buckle.TryUnbuckle(args.Embedded, args.Embedded, true); + _damageable.TryChangeDamage(args.Embedded, component.Damage, origin: args.Shooter); + _physics.SetLinearVelocity(args.Embedded, Vector2.Zero, body: physicEmbedded); + _physics.SetBodyType(args.Embedded, BodyType.Static, body: physicEmbedded); + var xform = Transform(args.Embedded); + _transform.AttachToGridOrMap(args.Embedded, xform); + _transform.SetLocalPosition(args.Embedded, Transform(uid).LocalPosition, xform); + _transform.SetParent(args.Embedded, xform, uid); + _physics.SetLinearVelocity(uid, physics.LinearVelocity / 2, body: physics); + } + + private void OnLand(EntityUid uid, PenetratedProjectileComponent component, ref LandEvent args) + { + FreePenetrated(uid, component); + } + + private void OnEntityTerminating(EntityUid uid, PenetratedProjectileComponent component, ref EntityTerminatingEvent args) + { + FreePenetrated(uid, component); + } + + private void OnRemove(EntityUid uid, PenetratedProjectileComponent component, ComponentRemove args) + { + FreePenetrated(uid, component); + } + + private void FreePenetrated(EntityUid uid, PenetratedProjectileComponent component) + { + if (!component.PenetratedUid.HasValue) + return; + + var penetratedUid = component.PenetratedUid.Value; + _penetrated.FreePenetrated(penetratedUid); + + if (TryComp(uid, out var embeddable)) + _projectile.Embed(uid, penetratedUid, null, embeddable, false); + } +} diff --git a/Content.Server/_White/Telescope/TelescopeSystem.cs b/Content.Server/_White/Telescope/TelescopeSystem.cs deleted file mode 100644 index 223654fd98..0000000000 --- a/Content.Server/_White/Telescope/TelescopeSystem.cs +++ /dev/null @@ -1,5 +0,0 @@ -using Content.Shared._White.Telescope; - -namespace Content.Server._White.Telescope; - -public sealed class TelescopeSystem : SharedTelescopeSystem; diff --git a/Content.Server/_White/Throwing/ThrowingItemModifierComponent.cs b/Content.Server/_White/Throwing/ThrowingItemModifierComponent.cs new file mode 100644 index 0000000000..4389edb479 --- /dev/null +++ b/Content.Server/_White/Throwing/ThrowingItemModifierComponent.cs @@ -0,0 +1,8 @@ +namespace Content.Server._White.Throwing; + +[RegisterComponent] +public sealed partial class ThrowingItemModifierComponent : Component +{ + [DataField] + public float ThrowingMultiplier = 2.0f; +} diff --git a/Content.Shared/Access/Components/IdCardComponent.cs b/Content.Shared/Access/Components/IdCardComponent.cs index 26e83c5586..39d5d9d27f 100644 --- a/Content.Shared/Access/Components/IdCardComponent.cs +++ b/Content.Shared/Access/Components/IdCardComponent.cs @@ -40,4 +40,10 @@ public sealed partial class IdCardComponent : Component /// [DataField, ViewVariables(VVAccess.ReadWrite)] public bool BypassLogging; + + [DataField] + public LocId NameLocId = "access-id-card-component-owner-name-job-title-text"; + + [DataField] + public LocId FullNameLocId = "access-id-card-component-owner-full-name-job-title-text"; } diff --git a/Content.Shared/Access/Components/IdCardConsoleComponent.cs b/Content.Shared/Access/Components/IdCardConsoleComponent.cs index c994d83d9c..a34709807b 100644 --- a/Content.Shared/Access/Components/IdCardConsoleComponent.cs +++ b/Content.Shared/Access/Components/IdCardConsoleComponent.cs @@ -3,8 +3,6 @@ using Robust.Shared.GameStates; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; -using Robust.Shared.Prototypes; namespace Content.Shared.Access.Components; diff --git a/Content.Shared/Access/Components/IdExaminableComponent.cs b/Content.Shared/Access/Components/IdExaminableComponent.cs new file mode 100644 index 0000000000..87d3e03a14 --- /dev/null +++ b/Content.Shared/Access/Components/IdExaminableComponent.cs @@ -0,0 +1,6 @@ +using Content.Shared.Access.Systems; + +namespace Content.Shared.Access.Components; + +[RegisterComponent, Access(typeof(IdExaminableSystem))] +public sealed partial class IdExaminableComponent : Component; diff --git a/Content.Shared/Access/SharedAgentIDCardSystem.cs b/Content.Shared/Access/SharedAgentIDCardSystem.cs index ef6690cc35..d027a3937f 100644 --- a/Content.Shared/Access/SharedAgentIDCardSystem.cs +++ b/Content.Shared/Access/SharedAgentIDCardSystem.cs @@ -26,12 +26,14 @@ public sealed class AgentIDCardBoundUserInterfaceState : BoundUserInterfaceState public readonly HashSet Icons; public string CurrentName { get; } public string CurrentJob { get; } + public string CurrentJobIconId { get; } - public AgentIDCardBoundUserInterfaceState(string currentName, string currentJob, HashSet icons) + public AgentIDCardBoundUserInterfaceState(string currentName, string currentJob, string currentJobIconId, HashSet icons) { Icons = icons; CurrentName = currentName; CurrentJob = currentJob; + CurrentJobIconId = currentJobIconId; } } @@ -60,11 +62,11 @@ public AgentIDCardJobChangedMessage(string job) [Serializable, NetSerializable] public sealed class AgentIDCardJobIconChangedMessage : BoundUserInterfaceMessage { - public string JobIcon { get; } + public string JobIconId { get; } - public AgentIDCardJobIconChangedMessage(string jobIcon) + public AgentIDCardJobIconChangedMessage(string jobIconId) { - JobIcon = jobIcon; + JobIconId = jobIconId; } } } diff --git a/Content.Shared/Access/Systems/AccessReaderSystem.cs b/Content.Shared/Access/Systems/AccessReaderSystem.cs index 89c08e0a4e..3670e24bd3 100644 --- a/Content.Shared/Access/Systems/AccessReaderSystem.cs +++ b/Content.Shared/Access/Systems/AccessReaderSystem.cs @@ -153,7 +153,7 @@ public bool IsAllowed( return IsAllowedInternal(access, stationKeys, reader); if (!_containerSystem.TryGetContainer(target, reader.ContainerAccessProvider, out var container)) - return false; + return Paused(target); // when mapping, containers with electronics arent spawned foreach (var entity in container.ContainedEntities) { diff --git a/Content.Server/Access/Systems/IdExaminableSystem.cs b/Content.Shared/Access/Systems/IdExaminableSystem.cs similarity index 85% rename from Content.Server/Access/Systems/IdExaminableSystem.cs rename to Content.Shared/Access/Systems/IdExaminableSystem.cs index c2231605e4..333272e27a 100644 --- a/Content.Server/Access/Systems/IdExaminableSystem.cs +++ b/Content.Shared/Access/Systems/IdExaminableSystem.cs @@ -1,4 +1,3 @@ -using Content.Server.Access.Components; using Content.Shared.Access.Components; using Content.Shared.Examine; using Content.Shared.Inventory; @@ -6,7 +5,7 @@ using Content.Shared.Verbs; using Robust.Shared.Utility; -namespace Content.Server.Access.Systems; +namespace Content.Shared.Access.Systems; public sealed class IdExaminableSystem : EntitySystem { @@ -22,7 +21,7 @@ public override void Initialize() private void OnGetExamineVerbs(EntityUid uid, IdExaminableComponent component, GetVerbsEvent args) { var detailsRange = _examineSystem.IsInDetailsRange(args.User, uid); - var info = GetInfo(uid) ?? Loc.GetString("id-examinable-component-verb-no-id"); + var info = GetMessage(uid); var verb = new ExamineVerb() { @@ -41,7 +40,12 @@ private void OnGetExamineVerbs(EntityUid uid, IdExaminableComponent component, G args.Verbs.Add(verb); } - private string? GetInfo(EntityUid uid) + public string GetMessage(EntityUid uid) + { + return GetInfo(uid) ?? Loc.GetString("id-examinable-component-verb-no-id"); + } + + public string? GetInfo(EntityUid uid) { if (_inventorySystem.TryGetSlotEntity(uid, "id", out var idUid)) { @@ -65,9 +69,9 @@ private string GetNameAndJob(IdCardComponent id) var jobSuffix = string.IsNullOrWhiteSpace(id.JobTitle) ? string.Empty : $" ({id.JobTitle})"; var val = string.IsNullOrWhiteSpace(id.FullName) - ? Loc.GetString("access-id-card-component-owner-name-job-title-text", + ? Loc.GetString(id.NameLocId, ("jobSuffix", jobSuffix)) - : Loc.GetString("access-id-card-component-owner-full-name-job-title-text", + : Loc.GetString(id.FullNameLocId, ("fullName", id.FullName), ("jobSuffix", jobSuffix)); diff --git a/Content.Shared/Access/Systems/SharedIdCardSystem.cs b/Content.Shared/Access/Systems/SharedIdCardSystem.cs index 842e7e7e6a..bfde70f504 100644 --- a/Content.Shared/Access/Systems/SharedIdCardSystem.cs +++ b/Content.Shared/Access/Systems/SharedIdCardSystem.cs @@ -1,13 +1,32 @@ using Content.Shared.Access.Components; +using Content.Shared.Administration.Logs; +using Content.Shared.Database; using Content.Shared.Hands.Components; using Content.Shared.Inventory; using Content.Shared.PDA; +using Content.Shared.Roles; +using Content.Shared.StatusIcon; +using Robust.Shared.Prototypes; namespace Content.Shared.Access.Systems; public abstract class SharedIdCardSystem : EntitySystem { + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly InventorySystem _inventorySystem = default!; + [Dependency] private readonly MetaDataSystem _metaSystem = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnMapInit); + } + + private void OnMapInit(EntityUid uid, IdCardComponent id, MapInitEvent args) + { + UpdateEntityName(uid, id); + } /// /// Attempt to find an ID card on an entity. This will look in the entity itself, in the entity's hands, and @@ -56,4 +75,143 @@ public bool TryGetIdCard(EntityUid uid, out Entity idCard) idCard = default; return false; } + + /// + /// Attempts to change the job title of a card. + /// Returns true/false. + /// + /// + /// If provided with a player's EntityUid to the player parameter, adds the change to the admin logs. + /// + public bool TryChangeJobTitle(EntityUid uid, string? jobTitle, IdCardComponent? id = null, EntityUid? player = null) + { + if (!Resolve(uid, ref id)) + return false; + + if (!string.IsNullOrWhiteSpace(jobTitle)) + { + jobTitle = jobTitle.Trim(); + + if (jobTitle.Length > IdCardConsoleComponent.MaxJobTitleLength) + jobTitle = jobTitle[..IdCardConsoleComponent.MaxJobTitleLength]; + } + else + { + jobTitle = null; + } + + if (id.JobTitle == jobTitle) + return true; + id.JobTitle = jobTitle; + Dirty(uid, id); + UpdateEntityName(uid, id); + + if (player != null) + { + _adminLogger.Add(LogType.Identity, LogImpact.Low, + $"{ToPrettyString(player.Value):player} has changed the job title of {ToPrettyString(uid):entity} to {jobTitle} "); + } + return true; + } + + public bool TryChangeJobIcon(EntityUid uid, StatusIconPrototype jobIcon, IdCardComponent? id = null, EntityUid? player = null) + { + if (!Resolve(uid, ref id)) + { + return false; + } + + if (id.JobIcon == jobIcon.ID) + { + return true; + } + + id.JobIcon = jobIcon.ID; + Dirty(uid, id); + + if (player != null) + { + _adminLogger.Add(LogType.Identity, LogImpact.Low, + $"{ToPrettyString(player.Value):player} has changed the job icon of {ToPrettyString(uid):entity} to {jobIcon} "); + } + + return true; + } + + public bool TryChangeJobDepartment(EntityUid uid, JobPrototype job, IdCardComponent? id = null) + { + if (!Resolve(uid, ref id)) + return false; + + id.JobDepartments.Clear(); + foreach (var department in _prototypeManager.EnumeratePrototypes()) + { + if (department.Roles.Contains(job.ID)) + id.JobDepartments.Add("department-" + department.ID); + } + + Dirty(uid, id); + + return true; + } + + /// + /// Attempts to change the full name of a card. + /// Returns true/false. + /// + /// + /// If provided with a player's EntityUid to the player parameter, adds the change to the admin logs. + /// + public bool TryChangeFullName(EntityUid uid, string? fullName, IdCardComponent? id = null, EntityUid? player = null) + { + if (!Resolve(uid, ref id)) + return false; + + if (!string.IsNullOrWhiteSpace(fullName)) + { + fullName = fullName.Trim(); + if (fullName.Length > IdCardConsoleComponent.MaxFullNameLength) + fullName = fullName[..IdCardConsoleComponent.MaxFullNameLength]; + } + else + { + fullName = null; + } + + if (id.FullName == fullName) + return true; + id.FullName = fullName; + Dirty(uid, id); + UpdateEntityName(uid, id); + + if (player != null) + { + _adminLogger.Add(LogType.Identity, LogImpact.Low, + $"{ToPrettyString(player.Value):player} has changed the name of {ToPrettyString(uid):entity} to {fullName} "); + } + return true; + } + + /// + /// Changes the name of the id's owner. + /// + /// + /// If either or is empty, it's replaced by placeholders. + /// If both are empty, the original entity's name is restored. + /// + private void UpdateEntityName(EntityUid uid, IdCardComponent? id = null) + { + if (!Resolve(uid, ref id)) + return; + + var jobSuffix = string.IsNullOrWhiteSpace(id.JobTitle) ? string.Empty : $" ({id.JobTitle})"; + + var val = string.IsNullOrWhiteSpace(id.FullName) + ? Loc.GetString(id.NameLocId, + ("jobSuffix", jobSuffix)) + : Loc.GetString(id.FullNameLocId, + ("fullName", id.FullName), + ("jobSuffix", jobSuffix)); + _metaSystem.SetEntityName(uid, val); + } } diff --git a/Content.Shared/ActionBlocker/ActionBlockerSystem.cs b/Content.Shared/ActionBlocker/ActionBlockerSystem.cs index f5ed2df227..47b3997806 100644 --- a/Content.Shared/ActionBlocker/ActionBlockerSystem.cs +++ b/Content.Shared/ActionBlocker/ActionBlockerSystem.cs @@ -169,8 +169,16 @@ public bool CanEmote(EntityUid uid) public bool CanAttack(EntityUid uid, EntityUid? target = null, Entity? weapon = null, bool disarm = false) { + // If target is in a container can we attack + if (target != null && _container.IsEntityInContainer(target.Value)) + { + return false; + } + _container.TryGetOuterContainer(uid, Transform(uid), out var outerContainer); - if (target != null && target != outerContainer?.Owner && _container.IsEntityInContainer(uid)) + + // If we're in a container can we attack the target. + if (target != null && target != outerContainer?.Owner && _container.IsEntityInContainer(uid)) { var containerEv = new CanAttackFromContainerEvent(uid, target); RaiseLocalEvent(uid, containerEv); diff --git a/Content.Shared/Actions/ActionEvents.cs b/Content.Shared/Actions/ActionEvents.cs index 72a566b8c8..6cc50bc21b 100644 --- a/Content.Shared/Actions/ActionEvents.cs +++ b/Content.Shared/Actions/ActionEvents.cs @@ -68,9 +68,10 @@ public void AddAction(ref EntityUid? actionId, string prototypeId) AddAction(ref actionId, prototypeId, Provider); } - public void AddAction(EntityUid actionId) + public void AddAction(EntityUid? actionId) { - Actions.Add(actionId); + if (actionId != null) + Actions.Add(actionId.Value); } } @@ -154,4 +155,9 @@ public abstract partial class BaseActionEvent : HandledEntityEventArgs /// The user performing the action. /// public EntityUid Performer; + + /// + /// The action the event belongs to. + /// + public EntityUid Action; } diff --git a/Content.Shared/Actions/BaseActionComponent.cs b/Content.Shared/Actions/BaseActionComponent.cs index 6d9242acc1..57c145a0ec 100644 --- a/Content.Shared/Actions/BaseActionComponent.cs +++ b/Content.Shared/Actions/BaseActionComponent.cs @@ -1,5 +1,4 @@ -using Content.Shared.Mobs; -using Robust.Shared.Audio; +using Robust.Shared.Audio; using Robust.Shared.Serialization; using Robust.Shared.Utility; @@ -25,6 +24,11 @@ public abstract partial class BaseActionComponent : Component /// [DataField("iconOn")] public SpriteSpecifier? IconOn; + /// + /// For toggle actions only, background to show when toggled on. + /// + [DataField] public SpriteSpecifier? BackgroundOn; + /// /// If not null, this color will modulate the action icon color. /// diff --git a/Content.Shared/Actions/Events/ActionPerformedEvent.cs b/Content.Shared/Actions/Events/ActionPerformedEvent.cs new file mode 100644 index 0000000000..530d7c9335 --- /dev/null +++ b/Content.Shared/Actions/Events/ActionPerformedEvent.cs @@ -0,0 +1,8 @@ +namespace Content.Shared.Actions.Events; + +/// +/// Raised on the action entity when it is used and . +/// +/// The entity that performed this action. +[ByRefEvent] +public readonly record struct ActionPerformedEvent(EntityUid Performer); diff --git a/Content.Shared/Actions/Events/AnomalyPowerActionEvent.cs b/Content.Shared/Actions/Events/AnomalyPowerActionEvent.cs new file mode 100644 index 0000000000..7ef98a152c --- /dev/null +++ b/Content.Shared/Actions/Events/AnomalyPowerActionEvent.cs @@ -0,0 +1,380 @@ +using Content.Shared.Anomaly.Effects.Components; +using Content.Shared.Atmos; +using Content.Shared.Damage; +using Robust.Shared.Audio; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Content.Shared.Explosion; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Actions.Events; + +public sealed partial class AnomalyPowerActionEvent : InstantActionEvent +{ + /// + /// Contains settings common to all "Anomalist" Powers. + /// + [DataField] + public AnomalyPowerSettings Settings; + + /// + /// Contains settings specific to "Bluespace Anomaly" powers. + /// + [DataField] + public BluespaceAnomalySettings? Bluespace; + + /// + /// Contains settings specific to "Electrical Anomaly" powers. + /// + [DataField] + public ElectricalAnomalySettings? Electricity; + + /// + /// What entities will be spawned by this action, using the same arguments as an EntitySpawnAnomalyComponent. + /// + [DataField] + public List? EntitySpawnEntries; + + /// + /// Contains settings specific to "Explosion Anomaly" powers. + /// + [DataField] + public ExplosionAnomalySettings? Explosion; + + /// + /// Contains settings specific to "Gas Producer Anomaly" powers. + /// + [DataField] + public GasProducerAnomalySettings? Gas; + + /// + /// Contains settings specific to "Gravity Anomaly" powers. + /// + [DataField] + public GravityAnomalySettings? Gravity; + + /// + /// Contains settings specific to "Injection Anomaly" powers. + /// + [DataField] + public InjectionAnomalySettings? Injection; + + /// + /// Contains settings specific to "Puddle Create Anomaly" powers. + /// + [DataField] + public PuddleAnomalySettings? Puddle; + + /// + /// Contains settings specific to "Pyroclastic Anomaly" powers. + /// + [DataField] + public PyroclasticAnomalySettings? Pyroclastic; +} + +[DataRecord] +public partial record struct AnomalyPowerSettings() +{ + public string PowerName; + + /// + /// When casting above the Supercritical Threshold, if not 0, this will cause all powers to enter cooldown for the given duration. + /// + public float OverchargeCooldown; + + /// + /// When casting above the Supercritical Threshold, if not 0, this will deal recoil damage to the caster of the specified amounts. + /// + public DamageSpecifier? OverchargeRecoil; + + /// + /// When casting above the Supercritical Threshold, play a popup above the caster's head. + /// + public string? OverchargeFeedback; + + /// + /// The minimum amount of glimmer generated by this power. + /// + public int MinGlimmer; + + /// + /// The maximum amount of glimmer generated by this power. + /// + public int MaxGlimmer; + + /// + /// The amount to multiply glimmer generation by when above the Supercritical Threshold + /// + public int SupercriticalGlimmerMultiplier = 1; + + /// + /// The threshold of glimmer at which this power will play a sound. + /// + public float GlimmerSoundThreshold; + + /// + /// The glimmer threshold(divided by amplification and multiplied by dampening) at which this power will act as a Supercritical Anomaly. + /// + public float SupercriticalThreshold = 500f; + + /// + /// The maximum amount Dampening can increase the Supercritical threshold to. + /// + public float MaxSupercriticalThreshold = 800f; + + /// + /// The sound to be played upon activating this power(and not Supercritically) + /// + public SoundSpecifier? PulseSound = new SoundCollectionSpecifier("RadiationPulse"); + + /// + /// The sound plays when this power is activated above a Supercritical glimmer threshold + /// + public SoundSpecifier? SupercriticalSound = new SoundCollectionSpecifier("Explosion"); + + public bool DoSupercritical = true; +} + +[DataRecord] +public partial record struct BluespaceAnomalySettings() +{ + /// + /// The maximum radius that the shuffle effect will extend for + /// scales with stability + /// + public float MaxShuffleRadius = 10; + + /// + /// Whether or not a standard pulse teleports the caster. + /// + public bool PulseTeleportsCaster; + + /// + /// Whether or not a supercrit teleports the caster. + /// + public bool SupercritTeleportsCaster; + + /// + /// How far the supercritical event can teleport you + /// + public float SupercriticalTeleportRadius = 50f; + + /// + /// The sound played after players are shuffled/teleported around + /// + public SoundSpecifier TeleportSound = new SoundPathSpecifier("/Audio/Effects/teleport_arrival.ogg"); +} + +[DataRecord] +public partial record struct ElectricalAnomalySettings() +{ + /// + /// the minimum number of lightning strikes + /// + public int MinBoltCount = 2; + + /// + /// The number of lightning strikes, at the maximum severity of the anomaly + /// + public int MaxBoltCount = 5; + + /// + /// The maximum radius of the passive electrocution effect + /// scales with stability + /// + public float MaxElectrocuteRange = 7f; + + /// + /// Energy consumed from devices by the emp pulse upon going supercritical. + /// + public float EmpEnergyConsumption = 100000f; + + /// + /// Duration of devices being disabled by the emp pulse upon going supercritical. + /// + public float EmpDisabledDuration = 60f; +} + +[DataRecord] +public partial record struct ExplosionAnomalySettings() +{ + /// + /// The explosion prototype to spawn + /// + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string? ExplosionPrototype = default!; + + /// + /// The total amount of intensity an explosion can achieve + /// + public float TotalIntensity = 100f; + + /// + /// How quickly does the explosion's power slope? Higher = smaller area and more concentrated damage, lower = larger area and more spread out damage + /// + public float Dropoff = 10f; + + /// + /// How much intensity can be applied per tile? + /// + public float MaxTileIntensity = 10f; + + /// + /// The explosion prototype to spawn on Supercrit + /// + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string? SupercritExplosionPrototype = default!; + + /// + /// The total amount of intensity an explosion can achieve + /// + public float SupercritTotalIntensity = 100f; + + /// + /// How quickly does the explosion's power slope? Higher = smaller area and more concentrated damage, lower = larger area and more spread out damage + /// + public float SupercritDropoff = 10f; + + /// + /// How much intensity can be applied per tile? + /// + public float SupercritMaxTileIntensity = 10f; +} + +[DataRecord] +public partial record struct GasProducerAnomalySettings() +{ + /// + /// The gas to release + /// + public Gas ReleasedGas = Gas.WaterVapor; + + /// + /// The gas to release + /// + public Gas SupercritReleasedGas = Gas.WaterVapor; + + /// + /// The amount of gas released passively + /// + public float MoleAmount = 1f; + + /// + /// The radius of random gas spawns. + /// + public float SpawnRadius = 3; + + /// + /// The number of tiles which will be modified. + /// + public int TileCount = 1; + + /// + /// The the amount the temperature should be modified by (negative for decreasing temp) + /// + public float TempChange = 0; + + /// + /// The amount of gas released when the anomaly reaches max severity + /// + public float SupercritMoleAmount = 150f; + + /// + /// The radius of random gas spawns. + /// + public float SupercritSpawnRadius = 10; + + /// + /// The number of tiles which will be modified. + /// + public int SupercritTileCount = 10; + + /// + /// The the amount the temperature should be modified by (negative for decreasing temp) + /// + public float SupercritTempChange = 0; +} + +[DataRecord] +public partial record struct GravityAnomalySettings() +{ + /// + /// The maximum distance from which the anomaly + /// can throw you via a pulse. + /// + public float MaxThrowRange = 5f; + + /// + /// The maximum strength the anomaly + /// can throw you via a pulse + /// + public float MaxThrowStrength = 10; + + /// + /// The range around the anomaly that will be spaced on supercritical. + /// + public float SpaceRange = 3f; +} + +[DataRecord] +public partial record struct InjectionAnomalySettings() +{ + /// + /// the maximum amount of injection of a substance into an entity per pulsation + /// scales with Severity + /// + public float MaxSolutionInjection = 15; + + /// + /// The maximum amount of injection of a substance into an entity in the supercritical phase + /// + public float SuperCriticalSolutionInjection = 50; + + /// + /// The maximum radius in which the anomaly injects reagents into the surrounding containers. + /// + public float InjectRadius = 3; + + /// + /// The maximum radius in which the anomaly injects reagents into the surrounding containers. + /// + public float SuperCriticalInjectRadius = 15; + + /// + /// The name of the prototype of the special effect that appears above the entities into which the injection was carried out + /// + public EntProtoId VisualEffectPrototype = "PuddleSparkle"; + + /// + /// Solution name that can be drained. + /// + public string Solution { get; set; } = "default"; +} + +[DataRecord] +public partial record struct PuddleAnomalySettings() +{ + /// + /// The maximum amount of solution that an anomaly can splash out of the storage on the floor during pulsation. + /// Scales with Amplification. + /// + public float MaxPuddleSize = 100; + + /// + /// Solution name that can be drained. + /// + public string Solution { get; set; } = "default"; +} + +[DataRecord] +public partial record struct PyroclasticAnomalySettings() +{ + /// + /// The maximum distance from which entities will be ignited. + /// + public float MaximumIgnitionRadius = 5f; + + /// + /// The maximum distance from which entities will be ignited on a Supercrit cast. + /// + public float SupercritMaximumIgnitionRadius = 20f; +} diff --git a/Content.Shared/Actions/Events/PsionicHealOtherPowerActionEvent.cs b/Content.Shared/Actions/Events/PsionicHealOtherPowerActionEvent.cs new file mode 100644 index 0000000000..cdcba6740c --- /dev/null +++ b/Content.Shared/Actions/Events/PsionicHealOtherPowerActionEvent.cs @@ -0,0 +1,72 @@ +using Robust.Shared.Audio; +using Content.Shared.Damage; +using Content.Shared.Popups; + +namespace Content.Shared.Actions.Events; +public sealed partial class PsionicHealOtherPowerActionEvent : EntityTargetActionEvent +{ + /// + /// Caster's Amplification that has been modified by the results of a MoodContest. + /// + public float ModifiedAmplification = default!; + + /// + /// Caster's Dampening that has been modified by the results of a MoodContest. + /// + public float ModifiedDampening = default!; + + [DataField] + public DamageSpecifier? HealingAmount = default!; + + [DataField] + public string PowerName = default!; + + /// Controls whether or not a power fires immediately and with no DoAfter + [DataField] + public bool Immediate; + + [DataField] + public string? PopupText; + + [DataField] + public float? RotReduction; + + [DataField] + public bool DoRevive; + + [DataField] + public bool BreakOnUserMove = true; + + [DataField] + public bool BreakOnTargetMove = false; + + [DataField] + public float UseDelay = 8f; + + [DataField] + public int MinGlimmer = 8; + + [DataField] + public int MaxGlimmer = 12; + + [DataField] + public int GlimmerSoundThreshold; + + [DataField] + public int GlimmerPopupThreshold; + + [DataField] + public int GlimmerDoAfterVisibilityThreshold; + + [DataField] + public PopupType PopupType = PopupType.Medium; + + [DataField] + public AudioParams AudioParams = default!; + + [DataField] + public bool PlaySound; + + [DataField] + public SoundSpecifier SoundUse = new SoundPathSpecifier("/Audio/Psionics/heartbeat_fast.ogg"); +} diff --git a/Content.Shared/Actions/Events/ValidateActionEntityTargetEvent.cs b/Content.Shared/Actions/Events/ValidateActionEntityTargetEvent.cs new file mode 100644 index 0000000000..9f22e7973a --- /dev/null +++ b/Content.Shared/Actions/Events/ValidateActionEntityTargetEvent.cs @@ -0,0 +1,4 @@ +namespace Content.Shared.Actions.Events; + +[ByRefEvent] +public record struct ValidateActionEntityTargetEvent(EntityUid User, EntityUid Target, bool Cancelled = false); diff --git a/Content.Shared/Actions/Events/ValidateActionWorldTargetEvent.cs b/Content.Shared/Actions/Events/ValidateActionWorldTargetEvent.cs new file mode 100644 index 0000000000..43e398aad4 --- /dev/null +++ b/Content.Shared/Actions/Events/ValidateActionWorldTargetEvent.cs @@ -0,0 +1,6 @@ +using Robust.Shared.Map; + +namespace Content.Shared.Actions.Events; + +[ByRefEvent] +public record struct ValidateActionWorldTargetEvent(EntityUid User, EntityCoordinates Target, bool Cancelled = false); diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index 35d962b0e4..0a4755bf10 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -8,14 +8,13 @@ using Content.Shared.Interaction; using Content.Shared.Inventory.Events; using Content.Shared.Mind; -using Content.Shared.Mobs.Components; +using Content.Shared.Rejuvenate; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Map; using Robust.Shared.Timing; using Robust.Shared.Utility; -using Content.Shared.Rejuvenate; namespace Content.Shared.Actions; @@ -145,9 +144,6 @@ public bool ResolveActionData( public void SetCooldown(EntityUid? actionId, TimeSpan start, TimeSpan end) { - if (actionId == null) - return; - if (!TryGetActionData(actionId, out var action)) return; @@ -163,9 +159,6 @@ public void SetCooldown(EntityUid? actionId, TimeSpan cooldown) public void ClearCooldown(EntityUid? actionId) { - if (actionId == null) - return; - if (!TryGetActionData(actionId, out var action)) return; @@ -176,6 +169,27 @@ public void ClearCooldown(EntityUid? actionId) Dirty(actionId.Value, action); } + /// + /// Sets the cooldown for this action only if it is bigger than the one it already has. + /// + public void SetIfBiggerCooldown(EntityUid? actionId, TimeSpan? cooldown) + { + if (cooldown == null || + cooldown.Value <= TimeSpan.Zero || + !TryGetActionData(actionId, out var action)) + { + return; + } + + var start = GameTiming.CurTime; + var end = start + cooldown; + if (action.Cooldown?.End > end) + return; + + action.Cooldown = (start, end.Value); + Dirty(actionId.Value, action); + } + public void StartUseDelay(EntityUid? actionId) { if (actionId == null) @@ -389,7 +403,7 @@ private void OnActionRequest(RequestPerformActionEvent ev, EntitySessionEventArg var targetWorldPos = _transformSystem.GetWorldPosition(entityTarget); _rotateToFaceSystem.TryFaceCoordinates(user, targetWorldPos); - if (!ValidateEntityTarget(user, entityTarget, entityAction)) + if (!ValidateEntityTarget(user, entityTarget, (actionEnt, entityAction))) return; _adminLogger.Add(LogType.Action, @@ -413,7 +427,7 @@ private void OnActionRequest(RequestPerformActionEvent ev, EntitySessionEventArg var entityCoordinatesTarget = GetCoordinates(netCoordinatesTarget); _rotateToFaceSystem.TryFaceCoordinates(user, entityCoordinatesTarget.ToMapPos(EntityManager, _transformSystem)); - if (!ValidateWorldTarget(user, entityCoordinatesTarget, worldAction)) + if (!ValidateWorldTarget(user, entityCoordinatesTarget, (actionEnt, worldAction))) return; _adminLogger.Add(LogType.Action, @@ -439,13 +453,26 @@ private void OnActionRequest(RequestPerformActionEvent ev, EntitySessionEventArg } if (performEvent != null) + { performEvent.Performer = user; + performEvent.Action = actionEnt; + } // All checks passed. Perform the action! PerformAction(user, component, actionEnt, action, performEvent, curTime); } - public bool ValidateEntityTarget(EntityUid user, EntityUid target, EntityTargetActionComponent action) + public bool ValidateEntityTarget(EntityUid user, EntityUid target, Entity actionEnt) + { + if (!ValidateEntityTargetBase(user, target, actionEnt)) + return false; + + var ev = new ValidateActionEntityTargetEvent(user, target); + RaiseLocalEvent(actionEnt, ref ev); + return !ev.Cancelled; + } + + private bool ValidateEntityTargetBase(EntityUid user, EntityUid target, EntityTargetActionComponent action) { if (!target.IsValid() || Deleted(target)) return false; @@ -487,7 +514,17 @@ public bool ValidateEntityTarget(EntityUid user, EntityUid target, EntityTargetA return _interactionSystem.CanAccessViaStorage(user, target); } - public bool ValidateWorldTarget(EntityUid user, EntityCoordinates coords, WorldTargetActionComponent action) + public bool ValidateWorldTarget(EntityUid user, EntityCoordinates coords, Entity action) + { + if (!ValidateWorldTargetBase(user, coords, action)) + return false; + + var ev = new ValidateActionWorldTargetEvent(user, coords); + RaiseLocalEvent(action, ref ev); + return !ev.Cancelled; + } + + private bool ValidateWorldTargetBase(EntityUid user, EntityCoordinates coords, WorldTargetActionComponent action) { if (action.CheckCanInteract && !_actionBlockerSystem.CanInteract(user, null)) return false; @@ -535,13 +572,12 @@ public void PerformAction(EntityUid performer, ActionsComponent? component, Enti handled = actionEvent.Handled; } - _audio.PlayPredicted(action.Sound, performer,predicted ? performer : null); - handled |= action.Sound != null; - if (!handled) return; // no interaction occurred. - // reduce charges, start cooldown, and mark as dirty (if required). + // play sound, reduce charges, start cooldown, and mark as dirty (if required). + + _audio.PlayPredicted(action.Sound, performer,predicted ? performer : null); var dirty = toggledBefore == action.Toggled; @@ -564,6 +600,9 @@ public void PerformAction(EntityUid performer, ActionsComponent? component, Enti if (dirty && component != null) Dirty(performer, component); + + var ev = new ActionPerformedEvent(performer); + RaiseLocalEvent(actionId, ref ev); } #endregion diff --git a/Content.Shared/Administration/AdminFlags.cs b/Content.Shared/Administration/AdminFlags.cs index 9842e638c2..71a08a70db 100644 --- a/Content.Shared/Administration/AdminFlags.cs +++ b/Content.Shared/Administration/AdminFlags.cs @@ -100,6 +100,16 @@ public enum AdminFlags : uint /// Stealth = 1 << 16, + /// + /// Allows you to use Admin chat + /// + Adminchat = 1 << 17, + + /// + /// Permits the visibility of Pii in game and on SS14 Admin + /// + Pii = 1 << 18, + /// /// DeltaV - The ability to whitelist people. Either this permission or +BAN is required for remove. /// diff --git a/Content.Shared/Administration/Components/SharedHeadstandComponent.cs b/Content.Shared/Administration/Components/SharedHeadstandComponent.cs index ebc23c7b05..96a4dfc2dd 100644 --- a/Content.Shared/Administration/Components/SharedHeadstandComponent.cs +++ b/Content.Shared/Administration/Components/SharedHeadstandComponent.cs @@ -1,6 +1,9 @@ -namespace Content.Shared.Administration.Components; +using Robust.Shared.GameStates; + +namespace Content.Shared.Administration.Components; /// /// Flips the target's sprite on it's head, so they do a headstand. /// +[NetworkedComponent] public abstract partial class SharedHeadstandComponent : Component { } diff --git a/Content.Shared/Administration/Components/SharedKillSignComponent.cs b/Content.Shared/Administration/Components/SharedKillSignComponent.cs index 2e6d54ca88..9a95454f72 100644 --- a/Content.Shared/Administration/Components/SharedKillSignComponent.cs +++ b/Content.Shared/Administration/Components/SharedKillSignComponent.cs @@ -1,5 +1,8 @@ -namespace Content.Shared.Administration.Components; +using Robust.Shared.GameStates; +namespace Content.Shared.Administration.Components; + +[NetworkedComponent] public abstract partial class SharedKillSignComponent : Component { diff --git a/Content.Shared/Alert/AlertType.cs b/Content.Shared/Alert/AlertType.cs index a46b5e2037..6cfe40fb6a 100644 --- a/Content.Shared/Alert/AlertType.cs +++ b/Content.Shared/Alert/AlertType.cs @@ -76,6 +76,7 @@ public enum AlertType : byte BorgDead, Offer, RecentlyBlocked, // WD EDIT + Deflecting, } } diff --git a/Content.Shared/Announcements/Prototypes/AnnouncerPrototype.cs b/Content.Shared/Announcements/Prototypes/AnnouncerPrototype.cs index 42db148df9..1cb9ba085f 100644 --- a/Content.Shared/Announcements/Prototypes/AnnouncerPrototype.cs +++ b/Content.Shared/Announcements/Prototypes/AnnouncerPrototype.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Announcements.Prototypes; /// Defines an announcer and their announcement file paths /// [Prototype("announcer")] -public sealed class AnnouncerPrototype : IPrototype +public sealed partial class AnnouncerPrototype : IPrototype { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/Anomaly/SharedAnomalySystem.cs b/Content.Shared/Anomaly/SharedAnomalySystem.cs index da1d31c6ff..ccc8b7bc5c 100644 --- a/Content.Shared/Anomaly/SharedAnomalySystem.cs +++ b/Content.Shared/Anomaly/SharedAnomalySystem.cs @@ -368,14 +368,14 @@ public override void Update(float frameTime) /// /// Gets random points around the anomaly based on the given parameters. /// - public List? GetSpawningPoints(EntityUid uid, float stability, float severity, AnomalySpawnSettings settings, float powerModifier = 1f) + public List? GetSpawningPoints(EntityUid uid, float stability, float severity, AnomalySpawnSettings settings, float powerModifier = 1f, float minAmountOffset = 0, float maxAmountOffset = 0) { var xform = Transform(uid); if (!TryComp(xform.GridUid, out var grid)) return null; - var amount = (int) (MathHelper.Lerp(settings.MinAmount, settings.MaxAmount, severity * stability * powerModifier) + 0.5f); + var amount = (int) MathF.Round(MathHelper.Lerp(settings.MinAmount + minAmountOffset, settings.MaxAmount + maxAmountOffset, severity * stability * powerModifier) + 0.5f); var localpos = xform.Coordinates.Position; var tilerefs = grid.GetLocalTilesIntersecting( diff --git a/Content.Shared/Arachne/ArachneComponent.cs b/Content.Shared/Arachne/ArachneComponent.cs deleted file mode 100644 index 04c369cc45..0000000000 --- a/Content.Shared/Arachne/ArachneComponent.cs +++ /dev/null @@ -1,21 +0,0 @@ -using Robust.Shared.GameStates; - -namespace Content.Shared.Arachne -{ - [RegisterComponent, NetworkedComponent] - public sealed partial class ArachneComponent : Component - { - [DataField("cocoonDelay")] - public float CocoonDelay = 12f; - - [DataField("cocoonKnockdownMultiplier")] - public float CocoonKnockdownMultiplier = 0.5f; - - /// - /// Blood reagent required to web up a mob. - /// - - [DataField("webBloodReagent")] - public string WebBloodReagent = "Blood"; - } -} diff --git a/Content.Shared/Arachne/Events.cs b/Content.Shared/Arachne/Events.cs deleted file mode 100644 index 02001286ac..0000000000 --- a/Content.Shared/Arachne/Events.cs +++ /dev/null @@ -1,11 +0,0 @@ -using Robust.Shared.Map; -using Robust.Shared.Serialization; -using Content.Shared.DoAfter; - -namespace Content.Shared.Arachne -{ - [Serializable, NetSerializable] - public sealed partial class ArachneCocoonDoAfterEvent : SimpleDoAfterEvent - { - } -} diff --git a/Content.Shared/Arachne/WebComponent.cs b/Content.Shared/Arachne/WebComponent.cs deleted file mode 100644 index c8284f3943..0000000000 --- a/Content.Shared/Arachne/WebComponent.cs +++ /dev/null @@ -1,8 +0,0 @@ -using Robust.Shared.GameStates; - -namespace Content.Shared.Arachne -{ - [RegisterComponent, NetworkedComponent] - public sealed partial class WebComponent : Component - {} -} diff --git a/Content.Shared/Armor/AllowSuitStorageComponent.cs b/Content.Shared/Armor/AllowSuitStorageComponent.cs new file mode 100644 index 0000000000..aa7bce1c87 --- /dev/null +++ b/Content.Shared/Armor/AllowSuitStorageComponent.cs @@ -0,0 +1,10 @@ +namespace Content.Shared.Armor; + +/// +/// Used on outerclothing to allow use of suit storage +/// +[RegisterComponent] +public sealed partial class AllowSuitStorageComponent : Component +{ + +} diff --git a/Content.Shared/Atmos/AtmosDirection.cs b/Content.Shared/Atmos/AtmosDirection.cs index 09ba521aa9..a8155ef88d 100644 --- a/Content.Shared/Atmos/AtmosDirection.cs +++ b/Content.Shared/Atmos/AtmosDirection.cs @@ -104,15 +104,14 @@ public static Angle ToAngle(this AtmosDirection direction) { return direction switch { - AtmosDirection.East => Angle.FromDegrees(90), - AtmosDirection.North => Angle.FromDegrees(180), - AtmosDirection.West => Angle.FromDegrees(270), - AtmosDirection.South => Angle.FromDegrees(0), - - AtmosDirection.NorthEast => Angle.FromDegrees(135), - AtmosDirection.NorthWest => Angle.FromDegrees(205), - AtmosDirection.SouthWest => Angle.FromDegrees(315), - AtmosDirection.SouthEast => Angle.FromDegrees(45), + AtmosDirection.South => Angle.Zero, + AtmosDirection.East => new Angle(MathHelper.PiOver2), + AtmosDirection.North => new Angle(Math.PI), + AtmosDirection.West => new Angle(-MathHelper.PiOver2), + AtmosDirection.NorthEast => new Angle(Math.PI*3/4), + AtmosDirection.NorthWest => new Angle(-Math.PI*3/4), + AtmosDirection.SouthWest => new Angle(-MathHelper.PiOver4), + AtmosDirection.SouthEast => new Angle(MathHelper.PiOver4), _ => throw new ArgumentOutOfRangeException(nameof(direction), $"It was {direction}."), }; diff --git a/Content.Shared/Atmos/Components/GasAnalyzerComponent.cs b/Content.Shared/Atmos/Components/GasAnalyzerComponent.cs index 51ae8cc740..dec9516c01 100644 --- a/Content.Shared/Atmos/Components/GasAnalyzerComponent.cs +++ b/Content.Shared/Atmos/Components/GasAnalyzerComponent.cs @@ -56,13 +56,15 @@ public struct GasMixEntry /// Name of the tab in the UI /// public readonly string Name; + public readonly float Volume; public readonly float Pressure; public readonly float Temperature; public readonly GasEntry[]? Gases; - public GasMixEntry(string name, float pressure, float temperature, GasEntry[]? gases = null) + public GasMixEntry(string name, float volume, float pressure, float temperature, GasEntry[]? gases = null) { Name = name; + Volume = volume; Pressure = pressure; Temperature = temperature; Gases = gases; diff --git a/Content.Shared/Atmos/Consoles/Components/AtmosAlertsComputerComponent.cs b/Content.Shared/Atmos/Consoles/Components/AtmosAlertsComputerComponent.cs new file mode 100644 index 0000000000..d64c8907af --- /dev/null +++ b/Content.Shared/Atmos/Consoles/Components/AtmosAlertsComputerComponent.cs @@ -0,0 +1,235 @@ +using Content.Shared.Atmos.Consoles; +using Content.Shared.Atmos.Monitor; +using Robust.Shared.GameStates; +using Robust.Shared.Map; +using Robust.Shared.Serialization; + +namespace Content.Shared.Atmos.Components; + +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(SharedAtmosAlertsComputerSystem))] +public sealed partial class AtmosAlertsComputerComponent : Component +{ + /// + /// The current entity of interest (selected via the console UI) + /// + [ViewVariables] + public NetEntity? FocusDevice; + + /// + /// A list of all the atmos devices that will be used to populate the nav map + /// + [ViewVariables, AutoNetworkedField] + public HashSet AtmosDevices = new(); + + /// + /// A list of all the air alarms that have had their alerts silenced on this particular console + /// + [ViewVariables, AutoNetworkedField] + public HashSet SilencedDevices = new(); +} + +[Serializable, NetSerializable] +public struct AtmosAlertsDeviceNavMapData +{ + /// + /// The entity in question + /// + public NetEntity NetEntity; + + /// + /// Location of the entity + /// + public NetCoordinates NetCoordinates; + + /// + /// Used to determine what map icons to use + /// + public AtmosAlertsComputerGroup Group; + + /// + /// Populate the atmos monitoring console nav map with a single entity + /// + public AtmosAlertsDeviceNavMapData(NetEntity netEntity, NetCoordinates netCoordinates, AtmosAlertsComputerGroup group) + { + NetEntity = netEntity; + NetCoordinates = netCoordinates; + Group = group; + } +} + +[Serializable, NetSerializable] +public struct AtmosAlertsFocusDeviceData +{ + /// + /// Focus entity + /// + public NetEntity NetEntity; + + /// + /// Temperature (K) and related alert state + /// + public (float, AtmosAlarmType) TemperatureData; + + /// + /// Pressure (kPA) and related alert state + /// + public (float, AtmosAlarmType) PressureData; + + /// + /// Moles, percentage, and related alert state, for all detected gases + /// + public Dictionary GasData; + + /// + /// Populates the atmos monitoring console focus entry with atmospheric data + /// + public AtmosAlertsFocusDeviceData + (NetEntity netEntity, + (float, AtmosAlarmType) temperatureData, + (float, AtmosAlarmType) pressureData, + Dictionary gasData) + { + NetEntity = netEntity; + TemperatureData = temperatureData; + PressureData = pressureData; + GasData = gasData; + } +} + +[Serializable, NetSerializable] +public sealed class AtmosAlertsComputerBoundInterfaceState : BoundUserInterfaceState +{ + /// + /// A list of all air alarms + /// + public AtmosAlertsComputerEntry[] AirAlarms; + + /// + /// A list of all fire alarms + /// + public AtmosAlertsComputerEntry[] FireAlarms; + + /// + /// Data for the UI focus (if applicable) + /// + public AtmosAlertsFocusDeviceData? FocusData; + + /// + /// Sends data from the server to the client to populate the atmos monitoring console UI + /// + public AtmosAlertsComputerBoundInterfaceState(AtmosAlertsComputerEntry[] airAlarms, AtmosAlertsComputerEntry[] fireAlarms, AtmosAlertsFocusDeviceData? focusData) + { + AirAlarms = airAlarms; + FireAlarms = fireAlarms; + FocusData = focusData; + } +} + +[Serializable, NetSerializable] +public struct AtmosAlertsComputerEntry +{ + /// + /// The entity in question + /// + public NetEntity NetEntity; + + /// + /// Location of the entity + /// + public NetCoordinates Coordinates; + + /// + /// The type of entity + /// + public AtmosAlertsComputerGroup Group; + + /// + /// Current alarm state + /// + public AtmosAlarmType AlarmState; + + /// + /// Localised device name + /// + public string EntityName; + + /// + /// Device network address + /// + public string Address; + + /// + /// Used to populate the atmos monitoring console UI with data from a single air alarm + /// + public AtmosAlertsComputerEntry + (NetEntity entity, + NetCoordinates coordinates, + AtmosAlertsComputerGroup group, + AtmosAlarmType alarmState, + string entityName, + string address) + { + NetEntity = entity; + Coordinates = coordinates; + Group = group; + AlarmState = alarmState; + EntityName = entityName; + Address = address; + } +} + +[Serializable, NetSerializable] +public sealed class AtmosAlertsComputerFocusChangeMessage : BoundUserInterfaceMessage +{ + public NetEntity? FocusDevice; + + /// + /// Used to inform the server that the specified focus for the atmos monitoring console has been changed by the client + /// + public AtmosAlertsComputerFocusChangeMessage(NetEntity? focusDevice) + { + FocusDevice = focusDevice; + } +} + +[Serializable, NetSerializable] +public sealed class AtmosAlertsComputerDeviceSilencedMessage : BoundUserInterfaceMessage +{ + public NetEntity AtmosDevice; + public bool SilenceDevice = true; + + /// + /// Used to inform the server that the client has silenced alerts from the specified device to this atmos monitoring console + /// + public AtmosAlertsComputerDeviceSilencedMessage(NetEntity atmosDevice, bool silenceDevice = true) + { + AtmosDevice = atmosDevice; + SilenceDevice = silenceDevice; + } +} + +/// +/// List of all the different atmos device groups +/// +public enum AtmosAlertsComputerGroup +{ + Invalid, + AirAlarm, + FireAlarm, +} + +[NetSerializable, Serializable] +public enum AtmosAlertsComputerVisuals +{ + ComputerLayerScreen, +} + +/// +/// UI key associated with the atmos monitoring console +/// +[Serializable, NetSerializable] +public enum AtmosAlertsComputerUiKey +{ + Key +} diff --git a/Content.Shared/Atmos/Consoles/Components/AtmosAlertsDeviceComponent.cs b/Content.Shared/Atmos/Consoles/Components/AtmosAlertsDeviceComponent.cs new file mode 100644 index 0000000000..881d60b084 --- /dev/null +++ b/Content.Shared/Atmos/Consoles/Components/AtmosAlertsDeviceComponent.cs @@ -0,0 +1,14 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Atmos.Components; + +[RegisterComponent, NetworkedComponent] +[Access([])] +public sealed partial class AtmosAlertsDeviceComponent : Component +{ + /// + /// The group that the entity belongs to + /// + [DataField, ViewVariables] + public AtmosAlertsComputerGroup Group; +} diff --git a/Content.Shared/Atmos/Consoles/SharedAtmosAlertsComputerSystem.cs b/Content.Shared/Atmos/Consoles/SharedAtmosAlertsComputerSystem.cs new file mode 100644 index 0000000000..7e2b2b0467 --- /dev/null +++ b/Content.Shared/Atmos/Consoles/SharedAtmosAlertsComputerSystem.cs @@ -0,0 +1,24 @@ +using Content.Shared.Atmos.Components; + +namespace Content.Shared.Atmos.Consoles; + +public abstract partial class SharedAtmosAlertsComputerSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnDeviceSilencedMessage); + } + + private void OnDeviceSilencedMessage(EntityUid uid, AtmosAlertsComputerComponent component, AtmosAlertsComputerDeviceSilencedMessage args) + { + if (args.SilenceDevice) + component.SilencedDevices.Add(args.AtmosDevice); + + else + component.SilencedDevices.Remove(args.AtmosDevice); + + Dirty(uid, component); + } +} diff --git a/Content.Server/Atmos/GasMixture.cs b/Content.Shared/Atmos/GasMixture.cs similarity index 98% rename from Content.Server/Atmos/GasMixture.cs rename to Content.Shared/Atmos/GasMixture.cs index 3d73a4d0b1..a676ed6720 100644 --- a/Content.Server/Atmos/GasMixture.cs +++ b/Content.Shared/Atmos/GasMixture.cs @@ -1,13 +1,12 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Runtime.CompilerServices; -using Content.Server.Atmos.Reactions; -using Content.Shared.Atmos; using Content.Shared.Atmos.EntitySystems; +using Content.Shared.Atmos.Reactions; using Robust.Shared.Serialization; using Robust.Shared.Utility; -namespace Content.Server.Atmos +namespace Content.Shared.Atmos { /// /// A general-purpose, variable volume gas mixture. diff --git a/Content.Shared/Atmos/GasMixtureStringRepresentation.cs b/Content.Shared/Atmos/GasMixtureStringRepresentation.cs new file mode 100644 index 0000000000..942b2bdc67 --- /dev/null +++ b/Content.Shared/Atmos/GasMixtureStringRepresentation.cs @@ -0,0 +1,16 @@ +namespace Content.Shared.Atmos; + +public readonly record struct GasMixtureStringRepresentation(float TotalMoles, float Temperature, float Pressure, Dictionary MolesPerGas) : IFormattable +{ + public override string ToString() + { + return $"{Temperature}K {Pressure} kPa"; + } + + public string ToString(string? format, IFormatProvider? formatProvider) + { + return ToString(); + } + + public static implicit operator string(GasMixtureStringRepresentation rep) => rep.ToString(); +} diff --git a/Content.Shared/Atmos/GetFireProtectionEvent.cs b/Content.Shared/Atmos/GetFireProtectionEvent.cs new file mode 100644 index 0000000000..e243295449 --- /dev/null +++ b/Content.Shared/Atmos/GetFireProtectionEvent.cs @@ -0,0 +1,33 @@ +using Content.Shared.Inventory; + +namespace Content.Shared.Atmos; + +/// +/// Raised on a burning entity to check its fire protection. +/// Damage taken is multiplied by the final amount, but not temperature. +/// TemperatureProtection is needed for that. +/// +[ByRefEvent] +public sealed class GetFireProtectionEvent : EntityEventArgs, IInventoryRelayEvent +{ + public SlotFlags TargetSlots { get; } = ~SlotFlags.POCKET; + + /// + /// What to multiply the fire damage by. + /// If this is 0 then it's ignored + /// + public float Multiplier; + + public GetFireProtectionEvent() + { + Multiplier = 1f; + } + + /// + /// Reduce fire damage taken by a percentage. + /// + public void Reduce(float by) + { + Multiplier -= by; + } +} diff --git a/Content.Shared/Atmos/Reactions/GasReactionEnums.cs b/Content.Shared/Atmos/Reactions/GasReactionEnums.cs new file mode 100644 index 0000000000..73b8998d40 --- /dev/null +++ b/Content.Shared/Atmos/Reactions/GasReactionEnums.cs @@ -0,0 +1,14 @@ +namespace Content.Shared.Atmos.Reactions; + +[Flags] +public enum ReactionResult : byte +{ + NoReaction = 0, + Reacting = 1, + StopReactions = 2, +} + +public enum GasReaction : byte +{ + Fire = 0, +} diff --git a/Content.Shared/Audio/Jukebox/JukeboxPrototype.cs b/Content.Shared/Audio/Jukebox/JukeboxPrototype.cs index 256f22f2a6..ad690ef497 100644 --- a/Content.Shared/Audio/Jukebox/JukeboxPrototype.cs +++ b/Content.Shared/Audio/Jukebox/JukeboxPrototype.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Audio.Jukebox; /// Soundtrack that's visible on the jukebox list. /// [Prototype] -public sealed class JukeboxPrototype : IPrototype +public sealed partial class JukeboxPrototype : IPrototype { [IdDataField] public string ID { get; } = string.Empty; diff --git a/Content.Shared/Bed/Sleep/SharedSleepingSystem.cs b/Content.Shared/Bed/Sleep/SharedSleepingSystem.cs index c6248c88f7..aa5578a3a9 100644 --- a/Content.Shared/Bed/Sleep/SharedSleepingSystem.cs +++ b/Content.Shared/Bed/Sleep/SharedSleepingSystem.cs @@ -31,6 +31,8 @@ public override void Initialize() private void OnMapInit(EntityUid uid, SleepingComponent component, MapInitEvent args) { + component.SleepingSince = _gameTiming.CurTime; + var ev = new SleepStateChangedEvent(true); RaiseLocalEvent(uid, ev); _blindableSystem.UpdateIsBlind(uid); @@ -43,7 +45,10 @@ private void OnMapInit(EntityUid uid, SleepingComponent component, MapInitEvent private void OnShutdown(EntityUid uid, SleepingComponent component, ComponentShutdown args) { _actionsSystem.RemoveAction(uid, component.WakeAction); - var ev = new SleepStateChangedEvent(false); + var ev = new SleepStateChangedEvent(false) + { + TimeSlept = _gameTiming.CurTime - component.SleepingSince + }; RaiseLocalEvent(uid, ev); _blindableSystem.UpdateIsBlind(uid); } @@ -85,6 +90,11 @@ public sealed class SleepStateChangedEvent : EntityEventArgs { public bool FellAsleep = false; + /// + /// The amount of time this entity slept for. Null if is true. + /// + public TimeSpan? TimeSlept; + public SleepStateChangedEvent(bool fellAsleep) { FellAsleep = fellAsleep; diff --git a/Content.Shared/Bed/Sleep/SleepingComponent.cs b/Content.Shared/Bed/Sleep/SleepingComponent.cs index cd468440f4..e87aca2203 100644 --- a/Content.Shared/Bed/Sleep/SleepingComponent.cs +++ b/Content.Shared/Bed/Sleep/SleepingComponent.cs @@ -28,4 +28,10 @@ public sealed partial class SleepingComponent : Component public TimeSpan CoolDownEnd; [DataField("wakeAction")] public EntityUid? WakeAction; + + /// + /// The moment this entity went to sleep. Initialized on MapInit. + /// + [DataField] + public TimeSpan SleepingSince; } diff --git a/Content.Shared/Body/Components/BodyComponent.cs b/Content.Shared/Body/Components/BodyComponent.cs index 481e22150b..ef04c21d50 100644 --- a/Content.Shared/Body/Components/BodyComponent.cs +++ b/Content.Shared/Body/Components/BodyComponent.cs @@ -41,4 +41,9 @@ public sealed partial class BodyComponent : Component [ViewVariables] [DataField, AutoNetworkedField] public HashSet LegEntities = new(); + + // WD EDIT START + [DataField, AutoNetworkedField] + public bool ThermalVisibility = true; + // WD EDIT END } diff --git a/Content.Shared/Body/Prototypes/MetabolismGroupPrototype.cs b/Content.Shared/Body/Prototypes/MetabolismGroupPrototype.cs index 162b5f2d6c..82f4e70ce0 100644 --- a/Content.Shared/Body/Prototypes/MetabolismGroupPrototype.cs +++ b/Content.Shared/Body/Prototypes/MetabolismGroupPrototype.cs @@ -1,4 +1,4 @@ -using Robust.Shared.Prototypes; +using Robust.Shared.Prototypes; namespace Content.Shared.Body.Prototypes { @@ -7,5 +7,11 @@ public sealed partial class MetabolismGroupPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; + + [DataField("name", required: true)] + private LocId Name { get; set; } + + [ViewVariables(VVAccess.ReadOnly)] + public string LocalizedName => Loc.GetString(Name); } } diff --git a/Content.Shared/Body/Prototypes/MetabolizerTypePrototype.cs b/Content.Shared/Body/Prototypes/MetabolizerTypePrototype.cs index c840983ca0..5273ac722b 100644 --- a/Content.Shared/Body/Prototypes/MetabolizerTypePrototype.cs +++ b/Content.Shared/Body/Prototypes/MetabolizerTypePrototype.cs @@ -1,4 +1,4 @@ -using Robust.Shared.Prototypes; +using Robust.Shared.Prototypes; namespace Content.Shared.Body.Prototypes { @@ -9,6 +9,9 @@ public sealed partial class MetabolizerTypePrototype : IPrototype public string ID { get; private set; } = default!; [DataField("name", required: true)] - public string Name { get; private set; } = default!; + private LocId Name { get; set; } + + [ViewVariables(VVAccess.ReadOnly)] + public string LocalizedName => Loc.GetString(Name); } } diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index e5670f47ac..93322310b7 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -1,6 +1,8 @@ +using Content.Shared.Maps; using Content.Shared.Supermatter.Components; using Robust.Shared; using Robust.Shared.Configuration; +using Robust.Shared.Physics.Components; namespace Content.Shared.CCVar { @@ -205,7 +207,7 @@ public static readonly CVarDef // 12 Minutes /// Controls the maximum number of character slots a player is allowed to have. /// public static readonly CVarDef - GameMaxCharacterSlots = CVarDef.Create("game.maxcharacterslots", 10, CVar.ARCHIVE | CVar.SERVERONLY); + GameMaxCharacterSlots = CVarDef.Create("game.maxcharacterslots", 30, CVar.ARCHIVE | CVar.SERVERONLY); /// /// Controls the game map prototype to load. SS14 stores these prototypes in Prototypes/Maps. @@ -402,6 +404,12 @@ public static readonly CVarDef public static readonly CVarDef GamePressToSprint = CVarDef.Create("game.press_to_sprint", false, CVar.REPLICATED); + /// + /// Whether item slots, such as power cell slots or AME fuel cell slots, should support quick swap if it is not otherwise specified in their YAML prototype. + /// + public static readonly CVarDef AllowSlotQuickSwap = + CVarDef.Create("game.slot_quick_swap", false, CVar.REPLICATED); + #if EXCEPTION_TOLERANCE /// /// Amount of times round start must fail before the server is shut down. @@ -575,6 +583,12 @@ public static readonly CVarDef public static readonly CVarDef LoginTipsDataset = CVarDef.Create("tips.login_dataset", "Tips"); + /// + /// The chance for Tippy to replace a normal tip message. + /// + public static readonly CVarDef TipsTippyChance = + CVarDef.Create("tips.tippy_chance", 0.01f); + /* * Console */ @@ -763,7 +777,6 @@ public static readonly CVarDef public static readonly CVarDef OfferModeIndicatorsPointShow = CVarDef.Create("hud.offer_mode_indicators_point_show", true, CVar.ARCHIVE | CVar.CLIENTONLY); - public static readonly CVarDef LoocAboveHeadShow = CVarDef.Create("hud.show_looc_above_head", true, CVar.ARCHIVE | CVar.CLIENTONLY); @@ -852,19 +865,43 @@ public static readonly CVarDef /// Default severity for role bans /// public static readonly CVarDef RoleBanDefaultSeverity = - CVarDef.Create("admin.role_ban_default_severity", "medium", CVar.ARCHIVE | CVar.SERVER); + CVarDef.Create("admin.role_ban_default_severity", "medium", CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); /// /// Default severity for department bans /// public static readonly CVarDef DepartmentBanDefaultSeverity = - CVarDef.Create("admin.department_ban_default_severity", "medium", CVar.ARCHIVE | CVar.SERVER); + CVarDef.Create("admin.department_ban_default_severity", "medium", CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); /// /// Default severity for server bans /// public static readonly CVarDef ServerBanDefaultSeverity = - CVarDef.Create("admin.server_ban_default_severity", "High", CVar.ARCHIVE | CVar.SERVER); + CVarDef.Create("admin.server_ban_default_severity", "High", CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); + + /// + /// Whether a server ban will ban the player's ip by default. + /// + public static readonly CVarDef ServerBanIpBanDefault = + CVarDef.Create("admin.server_ban_ip_ban_default", true, CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); + + /// + /// Whether a server ban will ban the player's hardware id by default. + /// + public static readonly CVarDef ServerBanHwidBanDefault = + CVarDef.Create("admin.server_ban_hwid_ban_default", true, CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); + + /// + /// Whether to use details from last connection for ip/hwid in the BanPanel. + /// + public static readonly CVarDef ServerBanUseLastDetails = + CVarDef.Create("admin.server_ban_use_last_details", true, CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); + + /// + /// Whether to erase a player's chat messages and their entity from the game when banned. + /// + public static readonly CVarDef ServerBanErasePlayer = + CVarDef.Create("admin.server_ban_erase_player", false, CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); /// /// Minimum explosion intensity to create an admin alert message. -1 to disable the alert. @@ -1009,6 +1046,13 @@ public static readonly CVarDef public static readonly CVarDef ExplosionSingleTickAreaLimit = CVarDef.Create("explosion.single_tick_area_limit", 400, CVar.SERVERONLY); + /// + /// Whether or not explosions are allowed to create tiles that have + /// set to true. + /// + public static readonly CVarDef ExplosionCanCreateVacuum = + CVarDef.Create("explosion.can_create_vacuum", true, CVar.SERVERONLY); + /* * Radiation */ @@ -1505,6 +1549,18 @@ public static readonly CVarDef public static readonly CVarDef ArrivalsCooldown = CVarDef.Create("shuttle.arrivals_cooldown", 50f, CVar.SERVERONLY); + /// + /// Time it takes the shuttle to spin up it's hyper drive and jump + /// + public static readonly CVarDef ArrivalsStartupTime= + CVarDef.Create("shuttle.arrivals_startup_time", 5.5f, CVar.SERVERONLY); + + /// + /// Time spent in hyperspace + /// + public static readonly CVarDef ArrivalsHyperspaceTime = + CVarDef.Create("shuttle.arrivals_hyperspace_time", 20f, CVar.SERVERONLY); + /// /// Are players allowed to return on the arrivals shuttle. /// @@ -1517,6 +1573,49 @@ public static readonly CVarDef public static readonly CVarDef GridFill = CVarDef.Create("shuttle.grid_fill", true, CVar.SERVERONLY); + /// + /// Whether to automatically preloading grids by GridPreloaderSystem + /// + public static readonly CVarDef PreloadGrids = + CVarDef.Create("shuttle.preload_grids", true, CVar.SERVERONLY); + + /// + /// How long the warmup time before FTL start should be. + /// + public static readonly CVarDef FTLStartupTime = + CVarDef.Create("shuttle.startup_time", 5.5f, CVar.SERVERONLY); + + /// + /// How long a shuttle spends in FTL. + /// + public static readonly CVarDef FTLTravelTime = + CVarDef.Create("shuttle.travel_time", 20f, CVar.SERVERONLY); + + /// + /// How long the final stage of FTL before arrival should be. + /// + public static readonly CVarDef FTLArrivalTime = + CVarDef.Create("shuttle.arrival_time", 5f, CVar.SERVERONLY); + + /// + /// How much time needs to pass before a shuttle can FTL again. + /// + public static readonly CVarDef FTLCooldown = + CVarDef.Create("shuttle.cooldown", 10f, CVar.SERVERONLY); + + /// + /// The maximum a grid can have before it becomes unable to FTL. + /// Any value equal to or less than zero will disable this check. + /// + public static readonly CVarDef FTLMassLimit = + CVarDef.Create("shuttle.mass_limit", 300f, CVar.SERVERONLY); + + /// + /// How long to knock down entities for if they aren't buckled when FTL starts and stops. + /// + public static readonly CVarDef HyperspaceKnockdownTime = + CVarDef.Create("shuttle.hyperspace_knockdown_time", 5f, CVar.SERVERONLY); + /* * Emergency */ @@ -1541,6 +1640,7 @@ public static readonly CVarDef /// /// The minimum time for the emergency shuttle to arrive at centcomm. + /// Actual minimum travel time cannot be less than /// public static readonly CVarDef EmergencyShuttleMinTransitTime = CVarDef.Create("shuttle.emergency_transit_time_min", 90f, CVar.SERVERONLY); @@ -1568,7 +1668,7 @@ public static readonly CVarDef /// Time in minutes after round start to auto-call the shuttle. Set to zero to disable. /// public static readonly CVarDef EmergencyShuttleAutoCallTime = - CVarDef.Create("shuttle.auto_call_time", 120, CVar.SERVERONLY); + CVarDef.Create("shuttle.auto_call_time", 0, CVar.SERVERONLY); /// /// Time in minutes after the round was extended (by recalling the shuttle) to call @@ -1696,6 +1796,9 @@ public static readonly CVarDef public static readonly CVarDef ViewportWidth = CVarDef.Create("viewport.width", 21, CVar.CLIENTONLY | CVar.ARCHIVE); + public static readonly CVarDef ViewportVerticalFit = + CVarDef.Create("viewport.vertical_fit", true, CVar.CLIENTONLY | CVar.ARCHIVE); + /* * FOV */ @@ -1763,6 +1866,12 @@ public static readonly CVarDef public static readonly CVarDef AccessibilityColorblindFriendly = CVarDef.Create("accessibility.colorblind_friendly", false, CVar.CLIENTONLY | CVar.ARCHIVE); + /// + /// Disables all vision filters for species like Vulpkanin or Harpies. There are good reasons someone might want to disable these. + /// + public static readonly CVarDef NoVisionFilters = + CVarDef.Create("accessibility.no_vision_filters", false, CVar.CLIENTONLY | CVar.ARCHIVE); + /* * CHAT */ @@ -1991,6 +2100,12 @@ public static readonly CVarDef public static readonly CVarDef ToggleWalk = CVarDef.Create("control.toggle_walk", false, CVar.CLIENTONLY | CVar.ARCHIVE); + /// + /// Whether the player mob is walking by default instead of running. + /// + public static readonly CVarDef DefaultWalk = + CVarDef.Create("control.default_walk", true, CVar.CLIENT | CVar.REPLICATED | CVar.ARCHIVE); + /* * STORAGE */ @@ -2209,6 +2324,10 @@ public static readonly CVarDef public static readonly CVarDef GatewayGeneratorEnabled = CVarDef.Create("gateway.generator_enabled", true); + // Clippy! + public static readonly CVarDef TippyEntity = + CVarDef.Create("tippy.entity", "Tippy", CVar.SERVER | CVar.REPLICATED); + /* * DEBUG */ @@ -2441,6 +2560,25 @@ public static readonly CVarDef public static readonly CVarDef MoodDecreasesSpeed = CVarDef.Create("mood.decreases_speed", true, CVar.SERVER); + public static readonly CVarDef MoodModifiesThresholds = + CVarDef.Create("mood.modify_thresholds", false, CVar.SERVER); + + #endregion + + #region Lying Down System + + public static readonly CVarDef AutoGetUp = + CVarDef.Create("rest.auto_get_up", true, CVar.CLIENT | CVar.ARCHIVE | CVar.REPLICATED); + + public static readonly CVarDef HoldLookUp = + CVarDef.Create("rest.hold_look_up", false, CVar.CLIENT | CVar.ARCHIVE); + + /// + /// When true, players can choose to crawl under tables while laying down, using the designated keybind. + /// + public static readonly CVarDef CrawlUnderTables = + CVarDef.Create("rest.crawlundertables", true, CVar.SERVER | CVar.ARCHIVE); + #endregion #region Material Reclaimer @@ -2452,5 +2590,34 @@ public static readonly CVarDef CVarDef.Create("reclaimer.allow_gibbing", true, CVar.SERVER); #endregion + + #region Jetpack System + + /// + /// When true, Jetpacks can be enabled anywhere, even in gravity. + /// + public static readonly CVarDef JetpackEnableAnywhere = + CVarDef.Create("jetpack.enable_anywhere", false, CVar.REPLICATED); + + /// + /// When true, jetpacks can be enabled on grids that have zero gravity. + /// + public static readonly CVarDef JetpackEnableInNoGravity = + CVarDef.Create("jetpack.enable_in_no_gravity", true, CVar.REPLICATED); + + #endregion + + #region GhostRespawn + + public static readonly CVarDef GhostRespawnTime = + CVarDef.Create("ghost.respawn_time", 15d, CVar.SERVERONLY); + + public static readonly CVarDef GhostRespawnMaxPlayers = + CVarDef.Create("ghost.respawn_max_players", 40, CVar.SERVERONLY); + + public static readonly CVarDef GhostAllowSameCharacter = + CVarDef.Create("ghost.allow_same_character", false, CVar.SERVERONLY); + + #endregion } } diff --git a/Content.Shared/Cargo/CargoOrderData.cs b/Content.Shared/Cargo/CargoOrderData.cs index a6d5fb0a18..ce05d92236 100644 --- a/Content.Shared/Cargo/CargoOrderData.cs +++ b/Content.Shared/Cargo/CargoOrderData.cs @@ -1,48 +1,62 @@ using Robust.Shared.Serialization; -using Content.Shared.Access.Components; using System.Text; namespace Content.Shared.Cargo { - [NetSerializable, Serializable] - public sealed class CargoOrderData + [DataDefinition, NetSerializable, Serializable] + public sealed partial class CargoOrderData { /// /// Price when the order was added. /// + [DataField] public int Price; /// /// A unique (arbitrary) ID which identifies this order. /// - public readonly int OrderId; + [DataField] + public int OrderId { get; private set; } /// /// Prototype Id for the item to be created /// - public readonly string ProductId; + [DataField] + public string ProductId { get; private set; } + + /// + /// Prototype Name + /// + [DataField] + public string ProductName { get; private set; } /// /// The number of items in the order. Not readonly, as it might change /// due to caps on the amount of orders that can be placed. /// + [DataField] public int OrderQuantity; /// /// How many instances of this order that we've already dispatched /// + [DataField] public int NumDispatched = 0; - public readonly string Requester; + [DataField] + public string Requester { get; private set; } // public String RequesterRank; // TODO Figure out how to get Character ID card data // public int RequesterId; - public readonly string Reason; + [DataField] + public string Reason { get; private set; } public bool Approved => Approver is not null; + [DataField] public string? Approver; - public CargoOrderData(int orderId, string productId, int price, int amount, string requester, string reason) + public CargoOrderData(int orderId, string productId, string productName, int price, int amount, string requester, string reason) { OrderId = orderId; ProductId = productId; + ProductName = productName; Price = price; OrderQuantity = amount; Requester = requester; diff --git a/Content.Shared/Cargo/Components/CargoOrderConsoleComponent.cs b/Content.Shared/Cargo/Components/CargoOrderConsoleComponent.cs index a7d1f53175..873e9bb7b9 100644 --- a/Content.Shared/Cargo/Components/CargoOrderConsoleComponent.cs +++ b/Content.Shared/Cargo/Components/CargoOrderConsoleComponent.cs @@ -1,6 +1,8 @@ using Content.Shared.Cargo.Prototypes; using Robust.Shared.Audio; using Robust.Shared.GameStates; +using Content.Shared.Radio; +using Robust.Shared.Prototypes; namespace Content.Shared.Cargo.Components; @@ -21,5 +23,11 @@ public sealed partial class CargoOrderConsoleComponent : Component /// [DataField, ViewVariables(VVAccess.ReadWrite)] public List AllowedGroups = new() { "market" }; + + /// + /// Radio channel on which order approval announcements are transmitted + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId AnnouncementChannel = "Supply"; } diff --git a/Content.Shared/Cargo/Components/CashComponent.cs b/Content.Shared/Cargo/Components/CashComponent.cs index 10a47ff803..89af094e04 100644 --- a/Content.Shared/Cargo/Components/CashComponent.cs +++ b/Content.Shared/Cargo/Components/CashComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Cargo.Components; /// -/// Can be inserted into a to increase the station's bank account. +/// Can be inserted into a to increase the station's bank account. /// [RegisterComponent, NetworkedComponent] public sealed partial class CashComponent : Component diff --git a/Content.Shared/Cargo/Components/SharedCargoTelepadComponent.cs b/Content.Shared/Cargo/Components/SharedCargoTelepadComponent.cs index 911ea41cca..e69e83d635 100644 --- a/Content.Shared/Cargo/Components/SharedCargoTelepadComponent.cs +++ b/Content.Shared/Cargo/Components/SharedCargoTelepadComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Construction.Prototypes; using Content.Shared.DeviceLinking; using Robust.Shared.Audio; using Robust.Shared.GameStates; @@ -12,30 +13,51 @@ namespace Content.Shared.Cargo.Components; [RegisterComponent, NetworkedComponent, Access(typeof(SharedCargoSystem))] public sealed partial class CargoTelepadComponent : Component { + [DataField] + public List CurrentOrders = new(); + /// - /// The actual amount of time it takes to teleport from the telepad + /// The base amount of time it takes to teleport from the telepad /// - [DataField("delay"), ViewVariables(VVAccess.ReadWrite)] + [DataField] + public float BaseDelay = 10f; + + /// + /// The actual amount of time it takes to teleport from the telepad + /// + [DataField] public float Delay = 10f; /// - /// How much time we've accumulated until next teleport. + /// The machine part that affects + /// + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)] + public string MachinePartTeleportDelay = "Capacitor"; + + /// + /// A multiplier applied to for each level of + /// + [DataField] + public float PartRatingTeleportDelay = 0.8f; + + /// + /// How much time we've accumulated until next teleport. /// - [DataField("accumulator"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float Accumulator; - [DataField("currentState")] + [DataField] public CargoTelepadState CurrentState = CargoTelepadState.Unpowered; - [DataField("teleportSound")] + [DataField] public SoundSpecifier TeleportSound = new SoundPathSpecifier("/Audio/Machines/phasein.ogg"); /// /// The paper-type prototype to spawn with the order information. /// - [DataField("printerOutput", customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)] + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)] public string PrinterOutput = "PaperCargoInvoice"; - [DataField("receiverPort", customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)] + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)] public string ReceiverPort = "OrderReceiver"; } diff --git a/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs b/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs index 1d0ca8abdb..af2f6613d6 100644 --- a/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs +++ b/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs @@ -1,4 +1,4 @@ -using Robust.Shared.Prototypes; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Array; using Robust.Shared.Utility; diff --git a/Content.Shared/Chat/EmotesEvents.cs b/Content.Shared/Chat/EmotesEvents.cs new file mode 100644 index 0000000000..4479f8b2ab --- /dev/null +++ b/Content.Shared/Chat/EmotesEvents.cs @@ -0,0 +1,11 @@ +using Content.Shared.Chat.Prototypes; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.Chat; + +[Serializable, NetSerializable] +public sealed class PlayEmoteMessage(ProtoId protoId) : EntityEventArgs +{ + public readonly ProtoId ProtoId = protoId; +} diff --git a/Content.Shared/Chat/Prototypes/EmotePrototype.cs b/Content.Shared/Chat/Prototypes/EmotePrototype.cs index dda159b905..7ee958ee6a 100644 --- a/Content.Shared/Chat/Prototypes/EmotePrototype.cs +++ b/Content.Shared/Chat/Prototypes/EmotePrototype.cs @@ -1,11 +1,13 @@ +using Content.Shared.Whitelist; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; +using Robust.Shared.Utility; namespace Content.Shared.Chat.Prototypes; /// /// IC emotes (scream, smile, clapping, etc). -/// Entities can activate emotes by chat input or code. +/// Entities can activate emotes by chat input, radial or code. /// [Prototype("emote")] public sealed partial class EmotePrototype : IPrototype @@ -13,18 +15,50 @@ public sealed partial class EmotePrototype : IPrototype [IdDataField] public string ID { get; private set; } = default!; + /// + /// Localization string for the emote name. Displayed in the radial UI. + /// + [DataField(required: true)] + public string Name = default!; + + /// + /// Determines if emote available to all by default + /// check comes after this setting + /// can ignore this setting + /// + [DataField] + public bool Available = true; + /// /// Different emote categories may be handled by different systems. /// Also may be used for filtering. /// - [DataField("category")] + [DataField] public EmoteCategory Category = EmoteCategory.General; + /// + /// An icon used to visually represent the emote in radial UI. + /// + [DataField] + public SpriteSpecifier Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/Actions/scream.png")); + + /// + /// Determines conditions to this emote be available to use + /// + [DataField] + public EntityWhitelist? Whitelist; + + /// + /// Determines conditions to this emote be unavailable to use + /// + [DataField] + public EntityWhitelist? Blacklist; + /// /// Collection of words that will be sent to chat if emote activates. /// Will be picked randomly from list. /// - [DataField("chatMessages")] + [DataField] public List ChatMessages = new(); /// @@ -32,16 +66,8 @@ public sealed partial class EmotePrototype : IPrototype /// When typed into players chat they will activate emote event. /// All words should be unique across all emote prototypes. /// - [DataField("chatTriggers")] - public HashSet ChatTriggers = new(); - - // WD EDIT START [DataField] - public string ButtonText = "Unknown"; - - [DataField("allowMenu")] - public bool AllowToEmotionsMenu; - // WD EDIT END + public HashSet ChatTriggers = new(); } /// diff --git a/Content.Shared/Chat/Prototypes/EmoteSoundsPrototype.cs b/Content.Shared/Chat/Prototypes/EmoteSoundsPrototype.cs index c9a78e7d6d..2b7064c1e9 100644 --- a/Content.Shared/Chat/Prototypes/EmoteSoundsPrototype.cs +++ b/Content.Shared/Chat/Prototypes/EmoteSoundsPrototype.cs @@ -1,5 +1,6 @@ using Robust.Shared.Audio; using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; namespace Content.Shared.Chat.Prototypes; @@ -8,8 +9,8 @@ namespace Content.Shared.Chat.Prototypes; /// Sounds collection for each . /// Different entities may use different sounds collections. /// -[Prototype("emoteSounds")] -public sealed partial class EmoteSoundsPrototype : IPrototype +[Prototype("emoteSounds"), Serializable, NetSerializable] +public sealed class EmoteSoundsPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Chat/SharedChatSystem.cs b/Content.Shared/Chat/SharedChatSystem.cs index a50eaea47e..5d1c825871 100644 --- a/Content.Shared/Chat/SharedChatSystem.cs +++ b/Content.Shared/Chat/SharedChatSystem.cs @@ -164,10 +164,16 @@ public string SanitizeMessageCapital(string message) if (string.IsNullOrEmpty(message)) return message; // Capitalize first letter - message = char.ToUpper(message[0]) + message.Remove(0, 1); + message = OopsConcat(char.ToUpper(message[0]).ToString(), message.Remove(0, 1)); return message; } + private static string OopsConcat(string a, string b) + { + // This exists to prevent Roslyn being clever and compiling something that fails sandbox checks. + return a + b; + } + public string SanitizeMessageCapitalizeTheWordI(string message, string theWordI = "i") { if (string.IsNullOrEmpty(message)) diff --git a/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs b/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs index 41ed4b1b2b..81ebcfb108 100644 --- a/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs +++ b/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs @@ -1,5 +1,4 @@ -using Content.Shared.Clothing.Components; -using Content.Shared.Inventory.Events; +using Content.Shared.Clothing; namespace Content.Shared.Chat.TypingIndicator; @@ -17,25 +16,21 @@ public abstract class SharedTypingIndicatorSystem : EntitySystem public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnGotEquipped); - SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); } - private void OnGotEquipped(EntityUid uid, TypingIndicatorClothingComponent component, GotEquippedEvent args) + private void OnGotEquipped(EntityUid uid, TypingIndicatorClothingComponent component, ClothingGotEquippedEvent args) { - if (!TryComp(uid, out var clothing) || - !TryComp(args.Equipee, out var indicator)) + if (!TryComp(args.Wearer, out var indicator)) return; - var isCorrectSlot = clothing.Slots.HasFlag(args.SlotFlags); - if (!isCorrectSlot) return; - indicator.Prototype = component.Prototype; } - private void OnGotUnequipped(EntityUid uid, TypingIndicatorClothingComponent component, GotUnequippedEvent args) + private void OnGotUnequipped(EntityUid uid, TypingIndicatorClothingComponent component, ClothingGotUnequippedEvent args) { - if (!TryComp(args.Equipee, out var indicator)) + if (!TryComp(args.Wearer, out var indicator)) return; indicator.Prototype = SharedTypingIndicatorSystem.InitialIndicatorId; diff --git a/Content.Shared/Chat/V2/Repository/Types.cs b/Content.Shared/Chat/V2/Repository/Types.cs new file mode 100644 index 0000000000..59acb849d4 --- /dev/null +++ b/Content.Shared/Chat/V2/Repository/Types.cs @@ -0,0 +1,60 @@ +using System.Linq; +using System.Runtime.InteropServices; +using Robust.Shared.Network; +using Robust.Shared.Serialization; + +namespace Content.Shared.Chat.V2.Repository; + +/// +/// The record associated with a specific chat event. +/// +public struct ChatRecord(string userName, NetUserId userId, IChatEvent storedEvent, string entityName) +{ + public string UserName = userName; + public NetUserId UserId = userId; + public string EntityName = entityName; + public IChatEvent StoredEvent = storedEvent; +} + +/// +/// Notifies that a chat message has been created. +/// +/// +[Serializable, NetSerializable] +public sealed class MessageCreatedEvent(IChatEvent ev) : EntityEventArgs +{ + public IChatEvent Event = ev; +} + +/// +/// Notifies that a chat message has been changed. +/// +/// +/// +[Serializable, NetSerializable] +public sealed class MessagePatchedEvent(uint id, string newMessage) : EntityEventArgs +{ + public uint MessageId = id; + public string NewMessage = newMessage; +} + +/// +/// Notifies that a chat message has been deleted. +/// +/// +[Serializable, NetSerializable] +public sealed class MessageDeletedEvent(uint id) : EntityEventArgs +{ + public uint MessageId = id; +} + +/// +/// Notifies that a player's messages have been nuked. +/// +/// +[Serializable, NetSerializable] +public sealed class MessagesNukedEvent(List set) : EntityEventArgs +{ + public uint[] MessageIds = CollectionsMarshal.AsSpan(set).ToArray(); +} + diff --git a/Content.Shared/Chat/V2/Types.cs b/Content.Shared/Chat/V2/Types.cs new file mode 100644 index 0000000000..50e5a53ab5 --- /dev/null +++ b/Content.Shared/Chat/V2/Types.cs @@ -0,0 +1,94 @@ +namespace Content.Shared.Chat.V2; + +/// +/// The types of messages that can be sent, validated and processed via user input that are covered by Chat V2. +/// +public enum MessageType : byte +{ + #region Player-sendable types + + /// + /// Chat for announcements like CentCom telling you to stop sending them memes. + /// + Announcement, + /// + /// Chat that ghosts use to complain about being gibbed. + /// + DeadChat, + /// + /// Chat that mimes use to evade their vow. + /// + Emote, + /// + /// Chat that players use to make lame jokes to people nearby. + /// + Local, + /// + /// Chat that players use to complain about shitsec/admins/antags/balance/etc. + /// + Looc, + /// + /// Chat that players use to say "HELP MAINT", or plead to call the shuttle because a beaker spilled. + /// + /// This does not tell you what radio channel has been chatted on! + Radio, + /// + /// Chat that is used exclusively by syndie tots to collaborate on whatever tots do. + /// + Whisper, + + #endregion + + #region Non-player-sendable types + + /// + /// Chat that is sent to exactly one player; almost exclusively used for admemes and prayer responses. + /// + Subtle, + /// + /// Chat that is sent by automata, like when a vending machine thanks you for your unwise purchases. + /// + Background, + + #endregion +} + +/// +/// Defines a chat event that can be stored in a chat repository. +/// +public interface IChatEvent +{ + /// + /// The sender of the chat message. + /// + public EntityUid Sender + { + get; + } + + /// + /// The ID of the message. This is overwritten when saved into a repository. + /// + public uint Id + { + get; + set; + } + + /// + /// The sent message. + /// + public string Message + { + get; + set; + } + + /// + /// The type of sent message. + /// + public MessageType Type + { + get; + } +} diff --git a/Content.Shared/Chemistry/Components/InjectorComponent.cs b/Content.Shared/Chemistry/Components/InjectorComponent.cs index 437c5e327d..c583ee6664 100644 --- a/Content.Shared/Chemistry/Components/InjectorComponent.cs +++ b/Content.Shared/Chemistry/Components/InjectorComponent.cs @@ -24,7 +24,8 @@ public sealed partial class InjectorDoAfterEvent : SimpleDoAfterEvent [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class InjectorComponent : Component { - public const string SolutionName = "injector"; + [DataField] + public string SolutionName = "injector"; /// /// Whether or not the injector is able to draw from containers or if it's a single use diff --git a/Content.Shared/Chemistry/Components/MixableSolutionComponent.cs b/Content.Shared/Chemistry/Components/MixableSolutionComponent.cs new file mode 100644 index 0000000000..2b1c140aa6 --- /dev/null +++ b/Content.Shared/Chemistry/Components/MixableSolutionComponent.cs @@ -0,0 +1,13 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Chemistry.Components; + +[RegisterComponent, NetworkedComponent] +public sealed partial class MixableSolutionComponent : Component +{ + /// + /// Solution name which can be mixed with methods such as blessing + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public string Solution = "default"; +} diff --git a/Content.Shared/Chemistry/Components/ReagentTankComponent.cs b/Content.Shared/Chemistry/Components/ReagentTankComponent.cs new file mode 100644 index 0000000000..3aa1756cf9 --- /dev/null +++ b/Content.Shared/Chemistry/Components/ReagentTankComponent.cs @@ -0,0 +1,22 @@ +using Content.Shared.FixedPoint; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Chemistry.Components; + +[RegisterComponent, NetworkedComponent] +public sealed partial class ReagentTankComponent : Component +{ + [DataField, ViewVariables(VVAccess.ReadWrite)] + public FixedPoint2 TransferAmount { get; set; } = FixedPoint2.New(10); + + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ReagentTankType TankType { get; set; } = ReagentTankType.Unspecified; +} + +[Serializable, NetSerializable] +public enum ReagentTankType : byte +{ + Unspecified, + Fuel +} diff --git a/Content.Shared/Chemistry/Components/Solution.cs b/Content.Shared/Chemistry/Components/Solution.cs index 1c24c860dd..f16cf4a80f 100644 --- a/Content.Shared/Chemistry/Components/Solution.cs +++ b/Content.Shared/Chemistry/Components/Solution.cs @@ -6,6 +6,7 @@ using Robust.Shared.Utility; using System.Collections; using System.Linq; +using Content.Shared.Chemistry.Components.SolutionManager; namespace Content.Shared.Chemistry.Components { @@ -48,13 +49,6 @@ public sealed partial class Solution : IEnumerable, ISerializat [DataField("canReact")] public bool CanReact { get; set; } = true; - /// - /// If reactions can occur via mixing. - /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("canMix")] - public bool CanMix { get; set; } = false; - /// /// Volume needed to fill this container. /// diff --git a/Content.Shared/Chemistry/EntitySystems/RehydratableSystem.cs b/Content.Shared/Chemistry/EntitySystems/RehydratableSystem.cs index e260280ae4..36ca791290 100644 --- a/Content.Shared/Chemistry/EntitySystems/RehydratableSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/RehydratableSystem.cs @@ -1,12 +1,14 @@ using Content.Shared.Chemistry.Components; using Content.Shared.FixedPoint; using Content.Shared.Popups; +using Robust.Shared.Network; using Robust.Shared.Random; namespace Content.Shared.Chemistry.EntitySystems; public sealed class RehydratableSystem : EntitySystem { + [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedSolutionContainerSystem _solutions = default!; @@ -31,6 +33,9 @@ private void OnSolutionChange(Entity ent, ref SolutionCon // Try not to make this public if you can help it. private void Expand(Entity ent) { + if (_net.IsClient) + return; + var (uid, comp) = ent; var randomMob = _random.Pick(comp.PossibleSpawns); diff --git a/Content.Shared/Chemistry/EntitySystems/SharedInjectorSystem.cs b/Content.Shared/Chemistry/EntitySystems/SharedInjectorSystem.cs index 6c43c1d5f0..1620344652 100644 --- a/Content.Shared/Chemistry/EntitySystems/SharedInjectorSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/SharedInjectorSystem.cs @@ -113,7 +113,7 @@ private void Toggle(Entity injector, EntityUid user) if (injector.Comp.InjectOnly) return; - if (!SolutionContainers.TryGetSolution(injector.Owner, InjectorComponent.SolutionName, out var solEnt, out var solution)) + if (!SolutionContainers.TryGetSolution(injector.Owner, injector.Comp.SolutionName, out var solEnt, out var solution)) return; string msg; diff --git a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.Capabilities.cs b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.Capabilities.cs index 0d4912a504..ce0cfab002 100644 --- a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.Capabilities.cs +++ b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.Capabilities.cs @@ -78,31 +78,15 @@ public bool TryGetFitsInDispenser(Entity container, [NotNullWhen(true)] out Entity? solution) + public bool TryGetMixableSolution(Entity entity, [NotNullWhen(true)] out Entity? soln, [NotNullWhen(true)] out Solution? solution) { - var getMixableSolutionAttempt = new GetMixableSolutionAttemptEvent(container); - RaiseLocalEvent(container, ref getMixableSolutionAttempt); - if (getMixableSolutionAttempt.MixedSolution != null) - { - solution = getMixableSolutionAttempt.MixedSolution; - return true; - } - - if (!Resolve(container, ref container.Comp, false)) + if (!Resolve(entity, ref entity.Comp1, logMissing: false)) { - solution = default!; + (soln, solution) = (default!, null); return false; } - var tryGetSolution = EnumerateSolutions(container).FirstOrNull(x => x.Solution.Comp.Solution.CanMix); - if (tryGetSolution.HasValue) - { - solution = tryGetSolution.Value.Solution; - return true; - } - - solution = default!; - return false; + return TryGetSolution((entity.Owner, entity.Comp2), entity.Comp1.Solution, out soln, out solution); } #endregion Solution Accessors diff --git a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs index e74c146380..5e58a0944a 100644 --- a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs @@ -11,10 +11,13 @@ using Robust.Shared.Utility; using System.Diagnostics.CodeAnalysis; using System.Linq; +using System.Numerics; using System.Runtime.CompilerServices; using System.Text; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; +using Robust.Shared.Map; +using Robust.Shared.Network; using Dependency = Robust.Shared.IoC.DependencyAttribute; namespace Content.Shared.Chemistry.EntitySystems; @@ -57,7 +60,8 @@ public abstract partial class SharedSolutionContainerSystem : EntitySystem [Dependency] protected readonly SharedAppearanceSystem AppearanceSystem = default!; [Dependency] protected readonly SharedHandsSystem Hands = default!; [Dependency] protected readonly SharedContainerSystem ContainerSystem = default!; - [Dependency] protected readonly MetaDataSystem MetaData = default!; + [Dependency] protected readonly MetaDataSystem MetaDataSys = default!; + [Dependency] protected readonly INetManager NetManager = default!; public override void Initialize() { @@ -66,13 +70,18 @@ public override void Initialize() InitializeRelays(); SubscribeLocalEvent(OnComponentInit); - SubscribeLocalEvent(OnComponentStartup); - SubscribeLocalEvent(OnComponentShutdown); - - SubscribeLocalEvent(OnComponentInit); - + SubscribeLocalEvent(OnSolutionStartup); + SubscribeLocalEvent(OnSolutionShutdown); + SubscribeLocalEvent(OnContainerManagerInit); SubscribeLocalEvent(OnExamineSolution); SubscribeLocalEvent>(OnSolutionExaminableVerb); + SubscribeLocalEvent(OnMapInit); + + if (NetManager.IsServer) + { + SubscribeLocalEvent(OnContainerManagerShutdown); + SubscribeLocalEvent(OnContainedSolutionShutdown); + } } @@ -121,8 +130,14 @@ public bool ResolveSolution(Entity container /// The name of the solution entity to fetch. /// Returns the solution entity that was fetched. /// Returns the solution state of the solution entity that was fetched. + /// /// Should we print an error if the solution specified by name is missing /// - public bool TryGetSolution(Entity container, string? name, [NotNullWhen(true)] out Entity? entity, [NotNullWhen(true)] out Solution? solution) + public bool TryGetSolution( + Entity container, + string? name, + [NotNullWhen(true)] out Entity? entity, + [NotNullWhen(true)] out Solution? solution, + bool errorOnMissing = false) { if (!TryGetSolution(container, name, out entity)) { @@ -135,7 +150,11 @@ public bool TryGetSolution(Entity container, } /// - public bool TryGetSolution(Entity container, string? name, [NotNullWhen(true)] out Entity? entity) + public bool TryGetSolution( + Entity container, + string? name, + [NotNullWhen(true)] out Entity? entity, + bool errorOnMissing = false) { if (TryComp(container, out BlockSolutionAccessComponent? blocker)) { @@ -155,12 +174,18 @@ solutionSlot.ContainedEntity is { } containedSolution else { entity = null; + if (!errorOnMissing) + return false; + Log.Error($"{ToPrettyString(container)} does not have a solution with ID: {name}"); return false; } if (!TryComp(uid, out SolutionComponent? comp)) { entity = null; + if (!errorOnMissing) + return false; + Log.Error($"{ToPrettyString(container)} does not have a solution with ID: {name}"); return false; } @@ -171,13 +196,18 @@ solutionSlot.ContainedEntity is { } containedSolution /// /// Version of TryGetSolution that doesn't take or return an entity. /// Used for prototypes and with old code parity. - public bool TryGetSolution(SolutionContainerManagerComponent container, string name, [NotNullWhen(true)] out Solution? solution) + public bool TryGetSolution(SolutionContainerManagerComponent container, + string name, + [NotNullWhen(true)] out Solution? solution, + bool errorOnMissing = false) { solution = null; - if (container.Solutions == null) + if (container.Solutions != null) + return container.Solutions.TryGetValue(name, out solution); + if (!errorOnMissing) return false; - - return container.Solutions.TryGetValue(name, out solution); + Log.Error($"{container} does not have a solution with ID: {name}"); + return false; } public IEnumerable<(string? Name, Entity Solution)> EnumerateSolutions(Entity container, bool includeSelf = true) @@ -703,17 +733,17 @@ private void OnComponentInit(Entity entity, ref ComponentInit entity.Comp.Solution.ValidateSolution(); } - private void OnComponentStartup(Entity entity, ref ComponentStartup args) + private void OnSolutionStartup(Entity entity, ref ComponentStartup args) { UpdateChemicals(entity); } - private void OnComponentShutdown(Entity entity, ref ComponentShutdown args) + private void OnSolutionShutdown(Entity entity, ref ComponentShutdown args) { RemoveAllSolution(entity); } - private void OnComponentInit(Entity entity, ref ComponentInit args) + private void OnContainerManagerInit(Entity entity, ref ComponentInit args) { if (entity.Comp.Containers is not { Count: > 0 } containers) return; @@ -733,7 +763,7 @@ private void OnExamineSolution(Entity entity, ref E return; } - if (!CanSeeHiddenSolution(entity,args.Examiner)) + if (!CanSeeHiddenSolution(entity, args.Examiner)) return; var primaryReagent = solution.GetPrimaryReagentId(); @@ -832,7 +862,7 @@ private void OnSolutionExaminableVerb(Entity entity return; } - if (!CanSeeHiddenSolution(entity,args.User)) + if (!CanSeeHiddenSolution(entity, args.User)) return; var target = args.Target; @@ -881,6 +911,9 @@ private FormattedMessage GetSolutionExamine(Solution solution) , ("amount", quantity))); } + msg.PushNewline(); + msg.AddMarkup(Loc.GetString("scannable-solution-temperature", ("temperature", Math.Round(solution.Temperature)))); + return msg; } @@ -901,5 +934,273 @@ private bool CanSeeHiddenSolution(Entity entity, En return true; } + private void OnMapInit(Entity entity, ref MapInitEvent args) + { + EnsureAllSolutions(entity); + } + + private void OnContainerManagerShutdown(Entity entity, ref ComponentShutdown args) + { + foreach (var name in entity.Comp.Containers) + { + if (ContainerSystem.TryGetContainer(entity, $"solution@{name}", out var solutionContainer)) + ContainerSystem.ShutdownContainer(solutionContainer); + } + entity.Comp.Containers.Clear(); + } + + private void OnContainedSolutionShutdown(Entity entity, ref ComponentShutdown args) + { + if (TryComp(entity.Comp.Container, out SolutionContainerManagerComponent? container)) + { + container.Containers.Remove(entity.Comp.ContainerName); + Dirty(entity.Comp.Container, container); + } + + if (ContainerSystem.TryGetContainer(entity, $"solution@{entity.Comp.ContainerName}", out var solutionContainer)) + ContainerSystem.ShutdownContainer(solutionContainer); + } + #endregion Event Handlers + + public bool EnsureSolution( + Entity entity, + string name, + [NotNullWhen(true)]out Solution? solution, + FixedPoint2 maxVol = default) + { + return EnsureSolution(entity, name, maxVol, null, out _, out solution); + } + + public bool EnsureSolution( + Entity entity, + string name, + out bool existed, + [NotNullWhen(true)]out Solution? solution, + FixedPoint2 maxVol = default) + { + return EnsureSolution(entity, name, maxVol, null, out existed, out solution); + } + + public bool EnsureSolution( + Entity entity, + string name, + FixedPoint2 maxVol, + Solution? prototype, + out bool existed, + [NotNullWhen(true)] out Solution? solution) + { + solution = null; + existed = false; + + var (uid, meta) = entity; + if (!Resolve(uid, ref meta)) + throw new InvalidOperationException("Attempted to ensure solution on invalid entity."); + var manager = EnsureComp(uid); + if (meta.EntityLifeStage >= EntityLifeStage.MapInitialized) + { + EnsureSolutionEntity((uid, manager), name, out existed, + out var solEnt, maxVol, prototype); + solution = solEnt!.Value.Comp.Solution; + return true; + } + solution = EnsureSolutionPrototype((uid, manager), name, maxVol, prototype, out existed); + return true; + } + + public void EnsureAllSolutions(Entity entity) + { + if (NetManager.IsClient) + return; + + if (entity.Comp.Solutions is not { } prototypes) + return; + + foreach (var (name, prototype) in prototypes) + { + EnsureSolutionEntity((entity.Owner, entity.Comp), name, out _, out _, prototype.MaxVolume, prototype); + } + + entity.Comp.Solutions = null; + Dirty(entity); + } + + public bool EnsureSolutionEntity( + Entity entity, + string name, + [NotNullWhen(true)] out Entity? solutionEntity, + FixedPoint2 maxVol = default) => + EnsureSolutionEntity(entity, name, out _, out solutionEntity, maxVol); + + public bool EnsureSolutionEntity( + Entity entity, + string name, + out bool existed, + [NotNullWhen(true)] out Entity? solutionEntity, + FixedPoint2 maxVol = default, + Solution? prototype = null + ) + { + existed = true; + solutionEntity = null; + + var (uid, container) = entity; + + var solutionSlot = ContainerSystem.EnsureContainer(uid, $"solution@{name}", out existed); + if (!Resolve(uid, ref container, logMissing: false)) + { + existed = false; + container = AddComp(uid); + container.Containers.Add(name); + if (NetManager.IsClient) + return false; + } + else if (!existed) + { + container.Containers.Add(name); + Dirty(uid, container); + } + + var needsInit = false; + SolutionComponent solutionComp; + if (solutionSlot.ContainedEntity is not { } solutionId) + { + if (NetManager.IsClient) + return false; + prototype ??= new() { MaxVolume = maxVol }; + prototype.Name = name; + (solutionId, solutionComp, _) = SpawnSolutionUninitialized(solutionSlot, name, maxVol, prototype); + existed = false; + needsInit = true; + Dirty(uid, container); + } + else + { + solutionComp = Comp(solutionId); + DebugTools.Assert(TryComp(solutionId, out ContainedSolutionComponent? relation) && relation.Container == uid && relation.ContainerName == name); + DebugTools.Assert(solutionComp.Solution.Name == name); + + var solution = solutionComp.Solution; + solution.MaxVolume = FixedPoint2.Max(solution.MaxVolume, maxVol); + + // Depending on MapInitEvent order some systems can ensure solution empty solutions and conflict with the prototype solutions. + // We want the reagents from the prototype to exist even if something else already created the solution. + if (prototype is { Volume.Value: > 0 }) + solution.AddSolution(prototype, PrototypeManager); + + Dirty(solutionId, solutionComp); + } + + if (needsInit) + EntityManager.InitializeAndStartEntity(solutionId, Transform(solutionId).MapID); + solutionEntity = (solutionId, solutionComp); + return true; + } + + private Solution EnsureSolutionPrototype(Entity entity, string name, FixedPoint2 maxVol, Solution? prototype, out bool existed) + { + existed = true; + + var (uid, container) = entity; + if (!Resolve(uid, ref container, logMissing: false)) + { + container = AddComp(uid); + existed = false; + } + + if (container.Solutions is null) + container.Solutions = new(SolutionContainerManagerComponent.DefaultCapacity); + + if (!container.Solutions.TryGetValue(name, out var solution)) + { + solution = prototype ?? new() { Name = name, MaxVolume = maxVol }; + container.Solutions.Add(name, solution); + existed = false; + } + else + solution.MaxVolume = FixedPoint2.Max(solution.MaxVolume, maxVol); + + Dirty(uid, container); + return solution; + } + + private Entity SpawnSolutionUninitialized(ContainerSlot container, string name, FixedPoint2 maxVol, Solution prototype) + { + var coords = new EntityCoordinates(container.Owner, Vector2.Zero); + var uid = EntityManager.CreateEntityUninitialized(null, coords, null); + + var solution = new SolutionComponent() { Solution = prototype }; + AddComp(uid, solution); + + var relation = new ContainedSolutionComponent() { Container = container.Owner, ContainerName = name }; + AddComp(uid, relation); + + MetaDataSys.SetEntityName(uid, $"solution - {name}"); + ContainerSystem.Insert(uid, container, force: true); + + return (uid, solution, relation); + } + + public void AdjustDissolvedReagent( + Entity dissolvedSolution, + FixedPoint2 volume, + ReagentId reagent, + float concentrationChange) + { + if (concentrationChange == 0) + return; + var dissolvedSol = dissolvedSolution.Comp.Solution; + var amtChange = + GetReagentQuantityFromConcentration(dissolvedSolution, volume, MathF.Abs(concentrationChange)); + if (concentrationChange > 0) + { + dissolvedSol.AddReagent(reagent, amtChange); + } + else + { + dissolvedSol.RemoveReagent(reagent,amtChange); + } + UpdateChemicals(dissolvedSolution); + } + + public FixedPoint2 GetReagentQuantityFromConcentration(Entity dissolvedSolution, + FixedPoint2 volume,float concentration) + { + var dissolvedSol = dissolvedSolution.Comp.Solution; + if (volume == 0 + || dissolvedSol.Volume == 0) + return 0; + return concentration * volume; + } + + public float GetReagentConcentration(Entity dissolvedSolution, + FixedPoint2 volume, ReagentId dissolvedReagent) + { + var dissolvedSol = dissolvedSolution.Comp.Solution; + if (volume == 0 + || dissolvedSol.Volume == 0 + || !dissolvedSol.TryGetReagentQuantity(dissolvedReagent, out var dissolvedVol)) + return 0; + return (float)dissolvedVol / volume.Float(); + } + + public FixedPoint2 ClampReagentAmountByConcentration( + Entity dissolvedSolution, + FixedPoint2 volume, + ReagentId dissolvedReagent, + FixedPoint2 dissolvedReagentAmount, + float maxConcentration = 1f) + { + var dissolvedSol = dissolvedSolution.Comp.Solution; + if (volume == 0 + || dissolvedSol.Volume == 0 + || !dissolvedSol.TryGetReagentQuantity(dissolvedReagent, out var dissolvedVol)) + return 0; + volume *= maxConcentration; + dissolvedVol += dissolvedReagentAmount; + var overflow = volume - dissolvedVol; + if (overflow < 0) + dissolvedReagentAmount += overflow; + return dissolvedReagentAmount; + } } diff --git a/Content.Shared/Chemistry/EntitySystems/SolutionTransferSystem.cs b/Content.Shared/Chemistry/EntitySystems/SolutionTransferSystem.cs index 34a64d0edb..b12778262c 100644 --- a/Content.Shared/Chemistry/EntitySystems/SolutionTransferSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/SolutionTransferSystem.cs @@ -17,7 +17,6 @@ namespace Content.Shared.Chemistry.EntitySystems; /// public sealed class SolutionTransferSystem : EntitySystem { - [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedSolutionContainerSystem _solution = default!; @@ -42,7 +41,7 @@ private void OnTransferAmountSetValueMessage(Entity e var newTransferAmount = FixedPoint2.Clamp(message.Value, ent.Comp.MinimumTransferAmount, ent.Comp.MaximumTransferAmount); ent.Comp.TransferAmount = newTransferAmount; - if (message.Session.AttachedEntity is { Valid: true } user) + if (message.Actor is { Valid: true } user) _popup.PopupClient(Loc.GetString("comp-solution-transfer-set-amount", ("amount", newTransferAmount)), ent, user); } @@ -53,10 +52,9 @@ private void AddSetTransferVerbs(Entity ent, ref GetV if (!args.CanAccess || !args.CanInteract || !comp.CanChangeTransferAmount || args.Hands == null) return; - if (!TryComp(args.User, out var actor)) - return; - // Custom transfer verb + var @event = args; + args.Verbs.Add(new AlternativeVerb() { Text = Loc.GetString("comp-solution-transfer-verb-custom-amount"), @@ -64,8 +62,7 @@ private void AddSetTransferVerbs(Entity ent, ref GetV // TODO: remove server check when bui prediction is a thing Act = () => { - if (_net.IsServer) - _ui.TryOpen(uid, TransferAmountUiKey.Key, actor.PlayerSession); + _ui.OpenUi(uid, TransferAmountUiKey.Key, @event.User); }, Priority = 1 }); diff --git a/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs b/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs index ede73c4969..118f224061 100644 --- a/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs +++ b/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs @@ -25,6 +25,3 @@ public sealed partial class ReactionMixerComponent : Component public record struct MixingAttemptEvent(EntityUid Mixed, bool Cancelled = false); public readonly record struct AfterMixingEvent(EntityUid Mixed, EntityUid Mixer); - -[ByRefEvent] -public record struct GetMixableSolutionAttemptEvent(EntityUid Mixed, Entity? MixedSolution = null); diff --git a/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs b/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs index 5d6d9d2120..df1b1aa20b 100644 --- a/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs +++ b/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs @@ -104,6 +104,13 @@ public sealed partial class ReagentPrototype : IPrototype, IInheritingPrototype [DataField] public bool Slippery; + /// + /// How easily this reagent becomes fizzy when aggitated. + /// 0 - completely flat, 1 - fizzes up when nudged. + /// + [DataField] + public float Fizziness; + /// /// How much reagent slows entities down if it's part of a puddle. /// 0 - no slowdown; 1 - can't move. diff --git a/Content.Shared/Chemistry/SharedReagentDispenser.cs b/Content.Shared/Chemistry/SharedReagentDispenser.cs index 2b9c318c58..5de3f6cae3 100644 --- a/Content.Shared/Chemistry/SharedReagentDispenser.cs +++ b/Content.Shared/Chemistry/SharedReagentDispenser.cs @@ -20,6 +20,46 @@ public ReagentDispenserSetDispenseAmountMessage(ReagentDispenserDispenseAmount a { ReagentDispenserDispenseAmount = amount; } + + /// + /// Create a new instance from interpreting a String as an integer, + /// throwing an exception if it is unable to parse. + /// + public ReagentDispenserSetDispenseAmountMessage(String s) + { + switch (s) + { + case "1": + ReagentDispenserDispenseAmount = ReagentDispenserDispenseAmount.U1; + break; + case "5": + ReagentDispenserDispenseAmount = ReagentDispenserDispenseAmount.U5; + break; + case "10": + ReagentDispenserDispenseAmount = ReagentDispenserDispenseAmount.U10; + break; + case "15": + ReagentDispenserDispenseAmount = ReagentDispenserDispenseAmount.U15; + break; + case "20": + ReagentDispenserDispenseAmount = ReagentDispenserDispenseAmount.U20; + break; + case "25": + ReagentDispenserDispenseAmount = ReagentDispenserDispenseAmount.U25; + break; + case "30": + ReagentDispenserDispenseAmount = ReagentDispenserDispenseAmount.U30; + break; + case "50": + ReagentDispenserDispenseAmount = ReagentDispenserDispenseAmount.U50; + break; + case "100": + ReagentDispenserDispenseAmount = ReagentDispenserDispenseAmount.U100; + break; + default: + throw new Exception($"Cannot convert the string `{s}` into a valid ReagentDispenser DispenseAmount"); + } + } } [Serializable, NetSerializable] @@ -52,20 +92,30 @@ public enum ReagentDispenserDispenseAmount U100 = 100, } + [Serializable, NetSerializable] + public sealed class ReagentInventoryItem(string storageSlotId, string reagentLabel, string storedAmount, Color reagentColor) + { + public string StorageSlotId = storageSlotId; + public string ReagentLabel = reagentLabel; + public string StoredAmount = storedAmount; + public Color ReagentColor = reagentColor; + } + [Serializable, NetSerializable] public sealed class ReagentDispenserBoundUserInterfaceState : BoundUserInterfaceState { public readonly ContainerInfo? OutputContainer; public readonly NetEntity? OutputContainerEntity; + /// /// A list of the reagents which this dispenser can dispense. /// - public readonly List>> Inventory; + public readonly List Inventory; public readonly ReagentDispenserDispenseAmount SelectedDispenseAmount; - public ReagentDispenserBoundUserInterfaceState(ContainerInfo? outputContainer, NetEntity? outputContainerEntity, List>> inventory, ReagentDispenserDispenseAmount selectedDispenseAmount) + public ReagentDispenserBoundUserInterfaceState(ContainerInfo? outputContainer, NetEntity? outputContainerEntity, List inventory, ReagentDispenserDispenseAmount selectedDispenseAmount) { OutputContainer = outputContainer; OutputContainerEntity = outputContainerEntity; diff --git a/Content.Shared/Climbing/Systems/BonkSystem.cs b/Content.Shared/Climbing/Systems/BonkSystem.cs index 08ca63368a..c7c89a3b7f 100644 --- a/Content.Shared/Climbing/Systems/BonkSystem.cs +++ b/Content.Shared/Climbing/Systems/BonkSystem.cs @@ -108,17 +108,16 @@ private bool TryStartBonk(EntityUid uid, EntityUid user, EntityUid climber, Bonk { BreakOnTargetMove = true, BreakOnUserMove = true, - BreakOnDamage = true + BreakOnDamage = true, + DuplicateCondition = DuplicateConditions.SameTool | DuplicateConditions.SameTarget }; - _doAfter.TryStartDoAfter(doAfterArgs); - - return true; + return _doAfter.TryStartDoAfter(doAfterArgs); } - private void OnAttemptClimb(EntityUid uid, BonkableComponent component, AttemptClimbEvent args) + private void OnAttemptClimb(EntityUid uid, BonkableComponent component, ref AttemptClimbEvent args) { - if (args.Cancelled || !HasComp(args.Climber) || !HasComp(args.User)) + if (args.Cancelled) return; if (TryStartBonk(uid, args.User, args.Climber, component)) diff --git a/Content.Shared/Climbing/Systems/ClimbSystem.cs b/Content.Shared/Climbing/Systems/ClimbSystem.cs index 521f5ace99..c570a821a6 100644 --- a/Content.Shared/Climbing/Systems/ClimbSystem.cs +++ b/Content.Shared/Climbing/Systems/ClimbSystem.cs @@ -228,7 +228,8 @@ public bool TryClimb( { BreakOnTargetMove = true, BreakOnUserMove = true, - BreakOnDamage = true + BreakOnDamage = true, + DuplicateCondition = DuplicateConditions.SameTool | DuplicateConditions.SameTarget }; _audio.PlayPredicted(comp.StartClimbSound, climbable, user); @@ -473,6 +474,11 @@ public void ForciblySetClimbing(EntityUid uid, EntityUid climbable, ClimbingComp Climb(uid, uid, climbable, true, component); } + public void ForciblyStopClimbing(EntityUid uid, ClimbingComponent? climbing = null, FixturesComponent? fixtures = null) + { + StopClimb(uid, climbing, fixtures); + } + private void OnBuckleChange(EntityUid uid, ClimbingComponent component, ref BuckleChangeEvent args) { if (!args.Buckling) diff --git a/Content.Shared/Cloning/CloningPodComponent.cs b/Content.Shared/Cloning/CloningPodComponent.cs index 082b92e8b1..c9a6fd4500 100644 --- a/Content.Shared/Cloning/CloningPodComponent.cs +++ b/Content.Shared/Cloning/CloningPodComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Construction.Prototypes; using Content.Shared.DeviceLinking; using Content.Shared.Materials; using Content.Shared.Random; @@ -38,6 +39,18 @@ public sealed partial class CloningPodComponent : Component [DataField] public ProtoId RequiredMaterial = "Biomass"; + /// + /// The multiplier for cloning duration + /// + [DataField] + public float PartRatingSpeedMultiplier = 0.75f; + + /// + /// The machine part that affects cloning speed + /// + [DataField] + public ProtoId MachinePartCloningSpeed = "Manipulator"; + /// /// The current amount of time it takes to clone a body /// @@ -66,6 +79,18 @@ public sealed partial class CloningPodComponent : Component Params = AudioParams.Default.WithVolume(4), }; + /// + /// The machine part that affects how much biomass is needed to clone a body. + /// + [DataField] + public float PartRatingMaterialMultiplier = 0.85f; + + /// + /// The machine part that decreases the amount of material needed for cloning + /// + [DataField] + public ProtoId MachinePartMaterialUse = "MatterBin"; + [ViewVariables(VVAccess.ReadWrite)] public CloningPodStatus Status; diff --git a/Content.Shared/Clothing/ClothingEvents.cs b/Content.Shared/Clothing/ClothingEvents.cs index 1dcce2402a..83afea4597 100644 --- a/Content.Shared/Clothing/ClothingEvents.cs +++ b/Content.Shared/Clothing/ClothingEvents.cs @@ -1,5 +1,6 @@ using Content.Shared.Actions; +using Content.Shared.Clothing.Components; namespace Content.Shared.Clothing; @@ -71,3 +72,31 @@ public sealed partial class ToggleMaskEvent : InstantActionEvent { } /// [ByRefEvent] public readonly record struct WearerMaskToggledEvent(bool IsToggled); + +/// +/// Raised on the clothing entity when it is equipped to a valid slot, +/// as determined by . +/// +[ByRefEvent] +public readonly record struct ClothingGotEquippedEvent(EntityUid Wearer, ClothingComponent Clothing); + +/// +/// Raised on the clothing entity when it is unequipped from a valid slot, +/// as determined by . +/// +[ByRefEvent] +public readonly record struct ClothingGotUnequippedEvent(EntityUid Wearer, ClothingComponent Clothing); + +/// +/// Raised on an entity when they equip a clothing item to a valid slot, +/// as determined by . +/// +[ByRefEvent] +public readonly record struct ClothingDidEquippedEvent(Entity Clothing); + +/// +/// Raised on an entity when they unequip a clothing item from a valid slot, +/// as determined by . +/// +[ByRefEvent] +public readonly record struct ClothingDidUnequippedEvent(Entity Clothing); diff --git a/Content.Shared/Clothing/Components/ClothingComponent.cs b/Content.Shared/Clothing/Components/ClothingComponent.cs index 0f4c7f68bf..6d7226e767 100644 --- a/Content.Shared/Clothing/Components/ClothingComponent.cs +++ b/Content.Shared/Clothing/Components/ClothingComponent.cs @@ -66,6 +66,9 @@ public sealed partial class ClothingComponent : Component [DataField("unisexMask")] public ClothingMask UnisexMask = ClothingMask.UniformFull; + /// + /// Name of the inventory slot the clothing is in. + /// public string? InSlot; [DataField, ViewVariables(VVAccess.ReadWrite)] diff --git a/Content.Shared/Clothing/Components/FireProtectionComponent.cs b/Content.Shared/Clothing/Components/FireProtectionComponent.cs new file mode 100644 index 0000000000..cafa6e5359 --- /dev/null +++ b/Content.Shared/Clothing/Components/FireProtectionComponent.cs @@ -0,0 +1,17 @@ +using Content.Shared.Clothing.EntitySystems; + +namespace Content.Shared.Clothing.Components; + +/// +/// Makes this clothing reduce fire damage when worn. +/// +[RegisterComponent, Access(typeof(FireProtectionSystem))] +public sealed partial class FireProtectionComponent : Component +{ + /// + /// Percentage to reduce fire damage by, subtracted not multiplicative. + /// 0.25 means 25% less fire damage. + /// + [DataField(required: true)] + public float Reduction; +} diff --git a/Content.Shared/Clothing/Components/HideLayerClothingComponent.cs b/Content.Shared/Clothing/Components/HideLayerClothingComponent.cs new file mode 100644 index 0000000000..ac3d9b9789 --- /dev/null +++ b/Content.Shared/Clothing/Components/HideLayerClothingComponent.cs @@ -0,0 +1,24 @@ +using Content.Shared.Humanoid; +using Robust.Shared.GameStates; + +namespace Content.Shared.Clothing.Components; + +/// +/// This is used for a clothing item that hides an appearance layer. +/// The entity's HumanoidAppearance component must have the corresponding hideLayerOnEquip value. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class HideLayerClothingComponent : Component +{ + /// + /// The appearance layer to hide. + /// + [DataField] + public HashSet Slots = new(); + + /// + /// If true, the layer will only hide when the item is in a toggled state (e.g. masks) + /// + [DataField] + public bool HideOnToggle = false; +} diff --git a/Content.Shared/Clothing/Components/LoadoutComponent.cs b/Content.Shared/Clothing/Components/LoadoutComponent.cs index a3c6efe2a0..612286e6e6 100644 --- a/Content.Shared/Clothing/Components/LoadoutComponent.cs +++ b/Content.Shared/Clothing/Components/LoadoutComponent.cs @@ -1,16 +1,15 @@ using Content.Shared.Roles; using Robust.Shared.GameStates; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; +using Robust.Shared.Prototypes; namespace Content.Shared.Clothing.Components; [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class LoadoutComponent : Component { - /// /// A list of starting gears, of which one will be given. /// All elements are weighted the same in the list. - /// - [DataField("prototypes", required: true, customTypeSerializer: typeof(PrototypeIdListSerializer)), AutoNetworkedField] - public List? Prototypes; + [DataField("prototypes")] + [AutoNetworkedField] + public List>? StartingGear; } diff --git a/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs index b407b867f7..9e3f917e96 100644 --- a/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs @@ -6,31 +6,18 @@ using Content.Shared.Inventory; using Content.Shared.Inventory.Events; using Content.Shared.Item; -using Content.Shared.Tag; -using Robust.Shared.GameStates; -using System.Linq; using Robust.Shared.Containers; +using Robust.Shared.GameStates; namespace Content.Shared.Clothing.EntitySystems; public abstract class ClothingSystem : EntitySystem { [Dependency] private readonly SharedItemSystem _itemSys = default!; + [Dependency] private readonly SharedContainerSystem _containerSys = default!; [Dependency] private readonly SharedHumanoidAppearanceSystem _humanoidSystem = default!; - [Dependency] private readonly TagSystem _tagSystem = default!; [Dependency] private readonly InventorySystem _invSystem = default!; [Dependency] private readonly SharedHandsSystem _handsSystem = default!; - [Dependency] private readonly SharedContainerSystem _containerSys = default!; - - [ValidatePrototypeId] - private const string HairTag = "HidesHair"; - - [ValidatePrototypeId] - private const string NoseTag = "HidesNose"; - - [ValidatePrototypeId] - - private const string BeardTag = "HidesBeard"; public override void Initialize() { @@ -101,61 +88,71 @@ private void QuickEquip( } } - private void ToggleVisualLayer(EntityUid equipee, HumanoidVisualLayers layer, string tag) + private void ToggleVisualLayers(EntityUid equipee, HashSet layers, HashSet appearanceLayers) { - InventorySystem.InventorySlotEnumerator enumerator = _invSystem.GetSlotEnumerator(equipee, SlotFlags.HEAD ^ SlotFlags.MASK); - bool shouldLayerShow = true; - - while (enumerator.NextItem(out EntityUid item)) + foreach (HumanoidVisualLayers layer in layers) { - if (_tagSystem.HasTag(item, tag)) + if (!appearanceLayers.Contains(layer)) + break; + + InventorySystem.InventorySlotEnumerator enumerator = _invSystem.GetSlotEnumerator(equipee); + + bool shouldLayerShow = true; + while (enumerator.NextItem(out EntityUid item)) { - if (tag == NoseTag || tag == BeardTag) // Special check for NoseTag or BeardTag, due to masks being toggleable + if (TryComp(item, out HideLayerClothingComponent? comp)) { - if (TryComp(item, out MaskComponent? mask) && TryComp(item, out ClothingComponent? clothing)) + if (comp.Slots.Contains(layer)) { - if (clothing.EquippedPrefix != mask.EquippedPrefix) + //Checks for mask toggling. TODO: Make a generic system for this + if (comp.HideOnToggle && TryComp(item, out MaskComponent? mask) && TryComp(item, out ClothingComponent? clothing)) + { + if (clothing.EquippedPrefix != mask.EquippedPrefix) + { + shouldLayerShow = false; + break; + } + } + else { shouldLayerShow = false; break; } } - else - { - shouldLayerShow = false; - break; - } - } - else - { - shouldLayerShow = false; - break; } } + _humanoidSystem.SetLayerVisibility(equipee, layer, shouldLayerShow); } - _humanoidSystem.SetLayerVisibility(equipee, layer, shouldLayerShow); } protected virtual void OnGotEquipped(EntityUid uid, ClothingComponent component, GotEquippedEvent args) { component.InSlot = args.Slot; - if ((new string[] { "head" }).Contains(args.Slot) && _tagSystem.HasTag(args.Equipment, HairTag)) - ToggleVisualLayer(args.Equipee, HumanoidVisualLayers.Hair, HairTag); - if ((new string[] { "mask", "head" }).Contains(args.Slot) && _tagSystem.HasTag(args.Equipment, NoseTag)) - ToggleVisualLayer(args.Equipee, HumanoidVisualLayers.Snout, NoseTag); - if ((new string[] { "mask", "head" }).Contains(args.Slot) && _tagSystem.HasTag(args.Equipment, BeardTag)) - ToggleVisualLayer(args.Equipee, HumanoidVisualLayers.FacialHair, BeardTag); + CheckEquipmentForLayerHide(args.Equipment, args.Equipee); + + if ((component.Slots & args.SlotFlags) != SlotFlags.NONE) + { + var gotEquippedEvent = new ClothingGotEquippedEvent(args.Equipee, component); + RaiseLocalEvent(uid, ref gotEquippedEvent); + + var didEquippedEvent = new ClothingDidEquippedEvent((uid, component)); + RaiseLocalEvent(args.Equipee, ref didEquippedEvent); + } } protected virtual void OnGotUnequipped(EntityUid uid, ClothingComponent component, GotUnequippedEvent args) { + if ((component.Slots & args.SlotFlags) != SlotFlags.NONE) + { + var gotUnequippedEvent = new ClothingGotUnequippedEvent(args.Equipee, component); + RaiseLocalEvent(uid, ref gotUnequippedEvent); + + var didUnequippedEvent = new ClothingDidUnequippedEvent((uid, component)); + RaiseLocalEvent(args.Equipee, ref didUnequippedEvent); + } + component.InSlot = null; - if ((new string[] { "head" }).Contains(args.Slot) && _tagSystem.HasTag(args.Equipment, HairTag)) - ToggleVisualLayer(args.Equipee, HumanoidVisualLayers.Hair, HairTag); - if ((new string[] { "mask", "head" }).Contains(args.Slot) && _tagSystem.HasTag(args.Equipment, NoseTag)) - ToggleVisualLayer(args.Equipee, HumanoidVisualLayers.Snout, NoseTag); - if ((new string[] { "mask", "head" }).Contains(args.Slot) && _tagSystem.HasTag(args.Equipment, BeardTag)) - ToggleVisualLayer(args.Equipee, HumanoidVisualLayers.FacialHair, BeardTag); + CheckEquipmentForLayerHide(args.Equipment, args.Equipee); } private void OnGetState(EntityUid uid, ClothingComponent component, ref ComponentGetState args) @@ -166,15 +163,20 @@ private void OnGetState(EntityUid uid, ClothingComponent component, ref Componen private void OnHandleState(EntityUid uid, ClothingComponent component, ref ComponentHandleState args) { if (args.Current is ClothingComponentState state) + { SetEquippedPrefix(uid, state.EquippedPrefix, component); + if (component.InSlot != null && _containerSys.TryGetContainingContainer(uid, out var container)) + { + CheckEquipmentForLayerHide(uid, container.Owner); + } + } } private void OnMaskToggled(Entity ent, ref ItemMaskToggledEvent args) { //TODO: sprites for 'pulled down' state. defaults to invisible due to no sprite with this prefix SetEquippedPrefix(ent, args.IsToggled ? args.equippedPrefix : null, ent); - ToggleVisualLayer(args.Wearer, HumanoidVisualLayers.Snout, NoseTag); - ToggleVisualLayer(args.Wearer, HumanoidVisualLayers.FacialHair, BeardTag); + CheckEquipmentForLayerHide(ent.Owner, args.Wearer); } private void OnPickedUp(Entity ent, ref GettingPickedUpAttemptEvent args) @@ -205,6 +207,12 @@ private void OnUnequipDoAfter(Entity ent, ref ClothingUnequip _handsSystem.TryPickup(args.User, ent); } + private void CheckEquipmentForLayerHide(EntityUid equipment, EntityUid equipee) + { + if (TryComp(equipment, out HideLayerClothingComponent? clothesComp) && TryComp(equipee, out HumanoidAppearanceComponent? appearanceComp)) + ToggleVisualLayers(equipee, clothesComp.Slots, appearanceComp.HideLayersOnEquip); + } + #region Public API public void SetEquippedPrefix(EntityUid uid, string? prefix, ClothingComponent? clothing = null) diff --git a/Content.Shared/Clothing/EntitySystems/FireProtectionSystem.cs b/Content.Shared/Clothing/EntitySystems/FireProtectionSystem.cs new file mode 100644 index 0000000000..6f80bc0588 --- /dev/null +++ b/Content.Shared/Clothing/EntitySystems/FireProtectionSystem.cs @@ -0,0 +1,23 @@ +using Content.Shared.Atmos; +using Content.Shared.Clothing.Components; +using Content.Shared.Inventory; + +namespace Content.Shared.Clothing.EntitySystems; + +/// +/// Handles reducing fire damage when wearing clothing with . +/// +public sealed class FireProtectionSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(OnGetProtection); + } + + private void OnGetProtection(Entity ent, ref InventoryRelayedEvent args) + { + args.Args.Reduce(ent.Comp.Reduction); + } +} diff --git a/Content.Shared/Clothing/EntitySystems/MaskSystem.cs b/Content.Shared/Clothing/EntitySystems/MaskSystem.cs index aab2a172dc..2a4383279a 100644 --- a/Content.Shared/Clothing/EntitySystems/MaskSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/MaskSystem.cs @@ -42,12 +42,10 @@ private void OnToggleMask(Entity ent, ref ToggleMaskEvent args) return; mask.IsToggled ^= true; - _actionSystem.SetToggled(mask.ToggleActionEntity, mask.IsToggled); - if (mask.IsToggled) - _popupSystem.PopupEntity(Loc.GetString("action-mask-pull-down-popup-message", ("mask", uid)), args.Performer, args.Performer); - else - _popupSystem.PopupEntity(Loc.GetString("action-mask-pull-up-popup-message", ("mask", uid)), args.Performer, args.Performer); + var dir = mask.IsToggled ? "down" : "up"; + var msg = $"action-mask-pull-{dir}-popup-message"; + _popupSystem.PopupClient(Loc.GetString(msg, ("mask", uid)), args.Performer, args.Performer); ToggleMaskComponents(uid, mask, args.Performer, mask.EquippedPrefix); } @@ -55,18 +53,22 @@ private void OnToggleMask(Entity ent, ref ToggleMaskEvent args) // set to untoggled when unequipped, so it isn't left in a 'pulled down' state private void OnGotUnequipped(EntityUid uid, MaskComponent mask, GotUnequippedEvent args) { - if (mask.ToggleActionEntity == null) + if (!mask.IsToggled) return; mask.IsToggled = false; - Dirty(uid, mask); - _actionSystem.SetToggled(mask.ToggleActionEntity, mask.IsToggled); - ToggleMaskComponents(uid, mask, args.Equipee, mask.EquippedPrefix, true); } + /// + /// Called after setting IsToggled, raises events and dirties. + /// private void ToggleMaskComponents(EntityUid uid, MaskComponent mask, EntityUid wearer, string? equippedPrefix = null, bool isEquip = false) { + Dirty(uid, mask); + if (mask.ToggleActionEntity is {} action) + _actionSystem.SetToggled(action, mask.IsToggled); + var maskEv = new ItemMaskToggledEvent(wearer, equippedPrefix, mask.IsToggled, isEquip); RaiseLocalEvent(uid, ref maskEv); diff --git a/Content.Shared/Clothing/EntitySystems/SkatesSystem.cs b/Content.Shared/Clothing/EntitySystems/SkatesSystem.cs index 7d748a67a4..bbb640bd98 100644 --- a/Content.Shared/Clothing/EntitySystems/SkatesSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/SkatesSystem.cs @@ -17,34 +17,28 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnGotEquipped); - SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); } /// /// When item is unequipped from the shoe slot, friction, aceleration and collide on impact return to default settings. /// - public void OnGotUnequipped(EntityUid uid, SkatesComponent component, GotUnequippedEvent args) + public void OnGotUnequipped(EntityUid uid, SkatesComponent component, ClothingGotUnequippedEvent args) { - if (!TryComp(args.Equipee, out MovementSpeedModifierComponent? speedModifier)) + if (!TryComp(args.Wearer, out MovementSpeedModifierComponent? speedModifier)) return; - if (args.Slot == "shoes") - { - _move.ChangeFriction(args.Equipee, MovementSpeedModifierComponent.DefaultFriction, MovementSpeedModifierComponent.DefaultFrictionNoInput, MovementSpeedModifierComponent.DefaultAcceleration, speedModifier); - _impact.ChangeCollide(args.Equipee, component.DefaultMinimumSpeed, component.DefaultStunSeconds, component.DefaultDamageCooldown, component.DefaultSpeedDamage); - } + _move.ChangeFriction(args.Wearer, MovementSpeedModifierComponent.DefaultFriction, MovementSpeedModifierComponent.DefaultFrictionNoInput, MovementSpeedModifierComponent.DefaultAcceleration, speedModifier); + _impact.ChangeCollide(args.Wearer, component.DefaultMinimumSpeed, component.DefaultStunSeconds, component.DefaultDamageCooldown, component.DefaultSpeedDamage); } /// /// When item is equipped into the shoe slot, friction, acceleration and collide on impact are adjusted. /// - private void OnGotEquipped(EntityUid uid, SkatesComponent component, GotEquippedEvent args) + private void OnGotEquipped(EntityUid uid, SkatesComponent component, ClothingGotEquippedEvent args) { - if (args.Slot == "shoes") - { - _move.ChangeFriction(args.Equipee, component.Friction, component.FrictionNoInput, component.Acceleration); - _impact.ChangeCollide(args.Equipee, component.MinimumSpeed, component.StunSeconds, component.DamageCooldown, component.SpeedDamage); - } + _move.ChangeFriction(args.Wearer, component.Friction, component.FrictionNoInput, component.Acceleration); + _impact.ChangeCollide(args.Wearer, component.MinimumSpeed, component.StunSeconds, component.DamageCooldown, component.SpeedDamage); } } diff --git a/Content.Shared/Clothing/Loadouts/Prototypes/LoadoutCategoryPrototype.cs b/Content.Shared/Clothing/Loadouts/Prototypes/LoadoutCategoryPrototype.cs index 26567d0c13..2d008e437d 100644 --- a/Content.Shared/Clothing/Loadouts/Prototypes/LoadoutCategoryPrototype.cs +++ b/Content.Shared/Clothing/Loadouts/Prototypes/LoadoutCategoryPrototype.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Clothing.Loadouts.Prototypes; /// A prototype defining a valid category for s to go into. /// [Prototype] -public sealed class LoadoutCategoryPrototype : IPrototype +public sealed partial class LoadoutCategoryPrototype : IPrototype { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/Clothing/Loadouts/Prototypes/LoadoutPrototype.cs b/Content.Shared/Clothing/Loadouts/Prototypes/LoadoutPrototype.cs index 74cfa1d4e8..19c2bf59f1 100644 --- a/Content.Shared/Clothing/Loadouts/Prototypes/LoadoutPrototype.cs +++ b/Content.Shared/Clothing/Loadouts/Prototypes/LoadoutPrototype.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Clothing.Loadouts.Prototypes; [Prototype] -public sealed class LoadoutPrototype : IPrototype +public sealed partial class LoadoutPrototype : IPrototype { /// /// Formatted like "Loadout[Department/ShortHeadName][CommonClothingSlot][SimplifiedClothingId]", example: "LoadoutScienceOuterLabcoatSeniorResearcher" diff --git a/Content.Shared/Clothing/Loadouts/Systems/LoadoutSystem.cs b/Content.Shared/Clothing/Loadouts/Systems/LoadoutSystem.cs index 5a2f1b2da9..7ee0676f9e 100644 --- a/Content.Shared/Clothing/Loadouts/Systems/LoadoutSystem.cs +++ b/Content.Shared/Clothing/Loadouts/Systems/LoadoutSystem.cs @@ -31,10 +31,11 @@ public override void Initialize() private void OnMapInit(EntityUid uid, LoadoutComponent component, MapInitEvent args) { - if (component.Prototypes == null) + if (component.StartingGear is null + || component.StartingGear.Count <= 0) return; - var proto = _prototype.Index(_random.Pick(component.Prototypes)); + var proto = _prototype.Index(_random.Pick(component.StartingGear)); _station.EquipStartingGear(uid, proto); } diff --git a/Content.Shared/Cocoon/CocoonComponent.cs b/Content.Shared/Cocoon/CocoonComponent.cs new file mode 100644 index 0000000000..66ba6e6dd3 --- /dev/null +++ b/Content.Shared/Cocoon/CocoonComponent.cs @@ -0,0 +1,14 @@ +namespace Content.Shared.Cocoon +{ + [RegisterComponent] + public sealed partial class CocoonComponent : Component + { + public string? OldAccent; + + public EntityUid? Victim; + + [DataField("damagePassthrough")] + public float DamagePassthrough = 0.5f; + + } +} diff --git a/Content.Shared/Cocoon/CocoonDoAfterEvent.cs b/Content.Shared/Cocoon/CocoonDoAfterEvent.cs new file mode 100644 index 0000000000..55986d2894 --- /dev/null +++ b/Content.Shared/Cocoon/CocoonDoAfterEvent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.Serialization; +using Content.Shared.DoAfter; + +namespace Content.Shared.Cocoon +{ + [Serializable, NetSerializable] + public sealed partial class CocoonDoAfterEvent : SimpleDoAfterEvent + { + } +} diff --git a/Content.Shared/Cocoon/CocoonerComponent.cs b/Content.Shared/Cocoon/CocoonerComponent.cs new file mode 100644 index 0000000000..17cce97309 --- /dev/null +++ b/Content.Shared/Cocoon/CocoonerComponent.cs @@ -0,0 +1,14 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Cocoon +{ + [RegisterComponent, NetworkedComponent] + public sealed partial class CocoonerComponent : Component + { + [DataField("cocoonDelay")] + public float CocoonDelay = 12f; + + [DataField("cocoonKnockdownMultiplier")] + public float CocoonKnockdownMultiplier = 0.5f; + } +} diff --git a/Content.Shared/Construction/MachinePartSystem.cs b/Content.Shared/Construction/MachinePartSystem.cs index 1a19040b41..01db7fbade 100644 --- a/Content.Shared/Construction/MachinePartSystem.cs +++ b/Content.Shared/Construction/MachinePartSystem.cs @@ -21,6 +21,7 @@ public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnMachineBoardExamined); + SubscribeLocalEvent(OnMachinePartExamined); } private void OnMachineBoardExamined(EntityUid uid, MachineBoardComponent component, ExaminedEvent args) @@ -61,6 +62,20 @@ private void OnMachineBoardExamined(EntityUid uid, MachineBoardComponent compone } } + private void OnMachinePartExamined(EntityUid uid, MachinePartComponent component, ExaminedEvent args) + { + if (!args.IsInDetailsRange) + return; + + using (args.PushGroup(nameof(MachinePartComponent))) + { + args.PushMarkup(Loc.GetString("machine-part-component-on-examine-rating-text", + ("rating", component.Rating))); + args.PushMarkup(Loc.GetString("machine-part-component-on-examine-type-text", ("type", + Loc.GetString(_prototype.Index(component.PartType).Name)))); + } + } + public Dictionary GetMachineBoardMaterialCost(Entity entity, int coefficient = 1) { var (_, comp) = entity; diff --git a/Content.Shared/Containers/ContainerFillComponent.cs b/Content.Shared/Containers/ContainerFillComponent.cs index 8c63cbc66a..7ce5fa8850 100644 --- a/Content.Shared/Containers/ContainerFillComponent.cs +++ b/Content.Shared/Containers/ContainerFillComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Storage; +using Content.Shared.Storage.Components; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.Manager; using Robust.Shared.Serialization.Markdown.Mapping; diff --git a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs index 9cb21e882e..885984feb6 100644 --- a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs +++ b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs @@ -626,9 +626,9 @@ private void HandleButtonPressed(EntityUid uid, ItemSlotsComponent component, It return; if (args.TryEject && slot.HasItem) - TryEjectToHands(uid, slot, args.Session.AttachedEntity, false); - else if (args.TryInsert && !slot.HasItem && args.Session.AttachedEntity is EntityUid user) - TryInsertFromHand(uid, slot, user); + TryEjectToHands(uid, slot, args.Actor, true); + else if (args.TryInsert && !slot.HasItem) + TryInsertFromHand(uid, slot, args.Actor); } #endregion diff --git a/Content.Shared/Content.Shared.csproj b/Content.Shared/Content.Shared.csproj index 9752bfcfe2..4cca399b28 100644 --- a/Content.Shared/Content.Shared.csproj +++ b/Content.Shared/Content.Shared.csproj @@ -23,9 +23,6 @@ false - - - diff --git a/Content.Shared/Contests/ContestsSystem.Utilities.cs b/Content.Shared/Contests/ContestsSystem.Utilities.cs index 42a69bff47..0278d75e94 100644 --- a/Content.Shared/Contests/ContestsSystem.Utilities.cs +++ b/Content.Shared/Contests/ContestsSystem.Utilities.cs @@ -1,4 +1,5 @@ using Content.Shared.CCVar; +using Robust.Shared.Serialization; namespace Content.Shared.Contests; public sealed partial class ContestsSystem @@ -18,4 +19,265 @@ private bool ContestClampOverride(bool bypassClamp) { return _cfg.GetCVar(CCVars.AllowClampOverride) && bypassClamp; } + + /// + /// Constructor for feeding options from a given set of ContestArgs into the ContestsSystem. + /// Just multiply by this and give it a user EntityUid and a ContestArgs variable. That's all you need to know. + /// + public float ContestConstructor(EntityUid user, ContestArgs args) + { + if (!_cfg.GetCVar(CCVars.DoContestsSystem)) + return 1; + + if (!args.DoEveryInteraction) + return args.DoMassInteraction ? ((!args.MassDisadvantage + ? MassContest(user, args.MassBypassClamp, args.MassRangeModifier) + : 1 / MassContest(user, args.MassBypassClamp, args.MassRangeModifier)) + + args.MassOffset) + : 1 + * (args.DoStaminaInteraction ? ((!args.StaminaDisadvantage + ? StaminaContest(user, args.StaminaBypassClamp, args.StaminaRangeModifier) + : 1 / StaminaContest(user, args.StaminaBypassClamp, args.StaminaRangeModifier)) + + args.StaminaOffset) + : 1) + * (args.DoHealthInteraction ? ((!args.HealthDisadvantage + ? HealthContest(user, args.HealthBypassClamp, args.HealthRangeModifier) + : 1 / HealthContest(user, args.HealthBypassClamp, args.HealthRangeModifier)) + + args.HealthOffset) + : 1) + * (args.DoMindInteraction ? ((!args.MindDisadvantage + ? MindContest(user, args.MindBypassClamp, args.MindRangeModifier) + : 1 / MindContest(user, args.MindBypassClamp, args.MindRangeModifier)) + + args.MindOffset) + : 1) + * (args.DoMoodInteraction ? ((!args.MoodDisadvantage + ? MoodContest(user, args.MoodBypassClamp, args.MoodRangeModifier) + : 1 / MoodContest(user, args.MoodBypassClamp, args.MoodRangeModifier)) + + args.MoodOffset) + : 1); + + var everyContest = EveryContest(user, + args.MassBypassClamp, + args.StaminaBypassClamp, + args.HealthBypassClamp, + args.MindBypassClamp, + args.MoodBypassClamp, + args.MassRangeModifier, + args.StaminaRangeModifier, + args.HealthRangeModifier, + args.MindRangeModifier, + args.MoodRangeModifier, + args.EveryMassWeight, + args.EveryStaminaWeight, + args.EveryHealthWeight, + args.EveryMindWeight, + args.EveryMoodWeight, + args.EveryInteractionSumOrMultiply); + + return !args.EveryDisadvantage ? everyContest : 1 / everyContest; + } } + +[Serializable, NetSerializable, DataDefinition] +public sealed partial class ContestArgs +{ + /// + /// Controls whether this melee weapon allows for mass to factor into damage. + /// + [DataField] + public bool DoMassInteraction; + + /// + /// When true, mass provides a disadvantage. + /// + [DataField] + public bool MassDisadvantage; + + /// + /// When true, mass contests ignore clamp limitations for a melee weapon. + /// + [DataField] + public bool MassBypassClamp; + + /// + /// Multiplies the acceptable range of outputs provided by mass contests for melee. + /// + [DataField] + public float MassRangeModifier = 1; + + /// + /// The output of a mass contest is increased by this amount. + /// + [DataField] + public float MassOffset; + + /// + /// Controls whether this melee weapon allows for stamina to factor into damage. + /// + [DataField] + public bool DoStaminaInteraction; + + /// + /// When true, stamina provides a disadvantage. + /// + [DataField] + public bool StaminaDisadvantage; + + /// + /// When true, stamina contests ignore clamp limitations for a melee weapon. + /// + [DataField] + public bool StaminaBypassClamp; + + /// + /// Multiplies the acceptable range of outputs provided by mass contests for melee. + /// + [DataField] + public float StaminaRangeModifier = 1; + + /// + /// The output of a stamina contest is increased by this amount. + /// + [DataField] + public float StaminaOffset; + + /// + /// Controls whether this melee weapon allows for health to factor into damage. + /// + [DataField] + public bool DoHealthInteraction; + + /// + /// When true, health contests provide a disadvantage. + /// + [DataField] + public bool HealthDisadvantage; + + /// + /// When true, health contests ignore clamp limitations for a melee weapon. + /// + [DataField] + public bool HealthBypassClamp; + + /// + /// Multiplies the acceptable range of outputs provided by mass contests for melee. + /// + [DataField] + public float HealthRangeModifier = 1; + + /// + /// The output of health contests is increased by this amount. + /// + [DataField] + public float HealthOffset; + + /// + /// Controls whether this melee weapon allows for psychic casting stats to factor into damage. + /// + [DataField] + public bool DoMindInteraction; + + /// + /// When true, high psychic casting stats provide a disadvantage. + /// + [DataField] + public bool MindDisadvantage; + + /// + /// When true, mind contests ignore clamp limitations for a melee weapon. + /// + [DataField] + public bool MindBypassClamp; + + /// + /// Multiplies the acceptable range of outputs provided by mind contests for melee. + /// + [DataField] + public float MindRangeModifier = 1; + + /// + /// The output of a mind contest is increased by this amount. + /// + [DataField] + public float MindOffset; + + /// + /// Controls whether this melee weapon allows mood to factor into damage. + /// + [DataField] + public bool DoMoodInteraction; + + /// + /// When true, mood provides a disadvantage. + /// + [DataField] + public bool MoodDisadvantage; + + /// + /// When true, mood contests ignore clamp limitations for a melee weapon. + /// + [DataField] + public bool MoodBypassClamp; + + /// + /// Multiplies the acceptable range of outputs provided by mood contests for melee. + /// + [DataField] + public float MoodRangeModifier = 1; + + /// + /// The output of mood contests is increased by this amount. + /// + [DataField] + public float MoodOffset; + + /// + /// Enables the EveryContest interaction for a melee weapon. + /// IF YOU PUT THIS ON ANY WEAPON OTHER THAN AN ADMEME, I WILL COME TO YOUR HOUSE AND SEND YOU TO MEET YOUR CREATOR WHEN THE PLAYERS COMPLAIN. + /// + [DataField] + public bool DoEveryInteraction; + + /// + /// When true, EveryContest provides a disadvantage. + /// + [DataField] + public bool EveryDisadvantage; + + /// + /// How much Mass is considered for an EveryContest. + /// + [DataField] + public float EveryMassWeight = 1; + + /// + /// How much Stamina is considered for an EveryContest. + /// + [DataField] + public float EveryStaminaWeight = 1; + + /// + /// How much Health is considered for an EveryContest. + /// + [DataField] + public float EveryHealthWeight = 1; + + /// + /// How much psychic casting stats are considered for an EveryContest. + /// + [DataField] + public float EveryMindWeight = 1; + + /// + /// How much mood is considered for an EveryContest. + /// + [DataField] + public float EveryMoodWeight = 1; + + /// + /// When true, the EveryContest sums the results of all contests rather than multiplying them, + /// probably giving you a very, very, very large multiplier... + /// + [DataField] + public bool EveryInteractionSumOrMultiply; +} \ No newline at end of file diff --git a/Content.Shared/Contests/ContestsSystem.cs b/Content.Shared/Contests/ContestsSystem.cs index 35a52d7fc3..454d17a5d8 100644 --- a/Content.Shared/Contests/ContestsSystem.cs +++ b/Content.Shared/Contests/ContestsSystem.cs @@ -2,473 +2,476 @@ using Content.Shared.CCVar; using Content.Shared.Damage; using Content.Shared.Damage.Components; +using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.Mood; using Robust.Shared.Configuration; using Robust.Shared.Physics.Components; -namespace Content.Shared.Contests +namespace Content.Shared.Contests; + +public sealed partial class ContestsSystem : EntitySystem { - public sealed partial class ContestsSystem : EntitySystem + [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly MobThresholdSystem _mobThreshold = default!; + + /// + /// The presumed average mass of a player entity + /// Defaulted to the average mass of an adult human + /// + private const float AverageMass = 71f; + + /// + /// The presumed average sum of a Psionic's Baseline Amplification and Baseline Dampening. + /// Since Baseline casting stats are a random value between 0.4 and 1.2, this is defaulted to 0.8 + 0.8. + /// + private const float AveragePsionicPotential = 1.6f; + + #region Mass Contests + /// + /// Outputs the ratio of mass between a performer and the average human mass + /// + /// + /// bypassClamp is a deprecated input intended for supporting legacy Nyanotrasen systems. Do not use it if you don't know what you're doing. + /// + public float MassContest(EntityUid performerUid, bool bypassClamp = false, float rangeFactor = 1f, float otherMass = AverageMass) + { + if (!_cfg.GetCVar(CCVars.DoContestsSystem) + || !_cfg.GetCVar(CCVars.DoMassContests) + || !TryComp(performerUid, out var performerPhysics) + || performerPhysics.Mass == 0) + return 1f; + + return ContestClamp(ContestClampOverride(bypassClamp) + ? performerPhysics.Mass / otherMass + : Math.Clamp(performerPhysics.Mass / otherMass, + 1 - _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor, + 1 + _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor)); + } + + /// + /// + /// MaybeMassContest, in case your entity doesn't exist + /// + public float MassContest(EntityUid? performerUid, bool bypassClamp = false, float rangeFactor = 1f, float otherMass = AverageMass) + { + if (!_cfg.GetCVar(CCVars.DoContestsSystem) + || !_cfg.GetCVar(CCVars.DoMassContests) + || performerUid is null) + return 1f; + + return MassContest(performerUid.Value, bypassClamp, rangeFactor, otherMass); + } + + /// + /// Outputs the ratio of mass between a performer and the average human mass + /// If a function already has the performer's physics component, this is faster + /// + /// + /// bypassClamp is a deprecated input intended for supporting legacy Nyanotrasen systems. Do not use it if you don't know what you're doing. + /// + public float MassContest(PhysicsComponent performerPhysics, bool bypassClamp = false, float rangeFactor = 1f, float otherMass = AverageMass) + { + if (!_cfg.GetCVar(CCVars.DoContestsSystem) + || !_cfg.GetCVar(CCVars.DoMassContests) + || performerPhysics.Mass == 0) + return 1f; + + return ContestClamp(ContestClampOverride(bypassClamp) + ? performerPhysics.Mass / otherMass + : Math.Clamp(performerPhysics.Mass / otherMass, + 1 - _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor, + 1 + _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor)); + } + + /// + /// Outputs the ratio of mass between a performer and a target, accepts either EntityUids or PhysicsComponents in any combination + /// If you have physics components already in your function, use instead + /// + /// + /// bypassClamp is a deprecated input intended for supporting legacy Nyanotrasen systems. Do not use it if you don't know what you're doing. + /// + public float MassContest(EntityUid performerUid, EntityUid targetUid, bool bypassClamp = false, float rangeFactor = 1f) + { + if (!_cfg.GetCVar(CCVars.DoContestsSystem) + || !_cfg.GetCVar(CCVars.DoMassContests) + || !TryComp(performerUid, out var performerPhysics) + || !TryComp(targetUid, out var targetPhysics) + || performerPhysics.Mass == 0 + || targetPhysics.InvMass == 0) + return 1f; + + return ContestClamp(ContestClampOverride(bypassClamp) + ? performerPhysics.Mass * targetPhysics.InvMass + : Math.Clamp(performerPhysics.Mass * targetPhysics.InvMass, + 1 - _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor, + 1 + _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor)); + } + + /// + public float MassContest(EntityUid performerUid, PhysicsComponent targetPhysics, bool bypassClamp = false, float rangeFactor = 1f) + { + if (!_cfg.GetCVar(CCVars.DoContestsSystem) + || !_cfg.GetCVar(CCVars.DoMassContests) + || !TryComp(performerUid, out var performerPhysics) + || performerPhysics.Mass == 0 + || targetPhysics.InvMass == 0) + return 1f; + + return ContestClamp(ContestClampOverride(bypassClamp) + ? performerPhysics.Mass * targetPhysics.InvMass + : Math.Clamp(performerPhysics.Mass * targetPhysics.InvMass, + 1 - _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor, + 1 + _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor)); + } + + /// + public float MassContest(PhysicsComponent performerPhysics, EntityUid targetUid, bool bypassClamp = false, float rangeFactor = 1f) + { + if (!_cfg.GetCVar(CCVars.DoContestsSystem) + || !_cfg.GetCVar(CCVars.DoMassContests) + || !TryComp(targetUid, out var targetPhysics) + || performerPhysics.Mass == 0 + || targetPhysics.InvMass == 0) + return 1f; + + return ContestClamp(ContestClampOverride(bypassClamp) + ? performerPhysics.Mass * targetPhysics.InvMass + : Math.Clamp(performerPhysics.Mass * targetPhysics.InvMass, + 1 - _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor, + 1 + _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor)); + } + + /// + public float MassContest(PhysicsComponent performerPhysics, PhysicsComponent targetPhysics, bool bypassClamp = false, float rangeFactor = 1f) + { + if (!_cfg.GetCVar(CCVars.DoContestsSystem) + || !_cfg.GetCVar(CCVars.DoMassContests) + || performerPhysics.Mass == 0 + || targetPhysics.InvMass == 0) + return 1f; + + return ContestClamp(ContestClampOverride(bypassClamp) + ? performerPhysics.Mass * targetPhysics.InvMass + : Math.Clamp(performerPhysics.Mass * targetPhysics.InvMass, + 1 - _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor, + 1 + _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor)); + } + + #endregion + #region Stamina Contests + + /// + /// Outputs 1 minus the percentage of an Entity's Stamina, with a Range of [Epsilon, 1 - 0.25 * rangeFactor], or a range of [Epsilon, 1 - Epsilon] if bypassClamp is true. + /// This will never return a value >1. + /// + /// + /// bypassClamp is a deprecated input intended for supporting legacy Nyanotrasen systems. Do not use it if you don't know what you're doing. + /// + public float StaminaContest(EntityUid performer, bool bypassClamp = false, float rangeFactor = 1f) + { + if (!TryComp(performer, out var perfStamina) + || perfStamina.StaminaDamage == 0) + return 1f; + + return StaminaContest(perfStamina, bypassClamp, rangeFactor); + } + + /// + public float StaminaContest(StaminaComponent perfStamina, bool bypassClamp = false, float rangeFactor = 1f) + { + if (!_cfg.GetCVar(CCVars.DoContestsSystem) + || !_cfg.GetCVar(CCVars.DoStaminaContests)) + return 1f; + + return ContestClamp(ContestClampOverride(bypassClamp) + ? 1 - perfStamina.StaminaDamage / perfStamina.CritThreshold + : 1 - Math.Clamp(perfStamina.StaminaDamage / perfStamina.CritThreshold, 0, 0.25f * rangeFactor)); + } + + /// + /// Outputs the ratio of percentage of an Entity's Stamina and a Target Entity's Stamina, with a Range of [Epsilon, 0.25 * rangeFactor], or a range of [Epsilon, +inf] if bypassClamp is true. + /// This does NOT produce the same kind of outputs as a Single-Entity StaminaContest. 2Entity StaminaContest returns the product of two Solo Stamina Contests, and so its values can be very strange. + /// + /// + /// bypassClamp is a deprecated input intended for supporting legacy Nyanotrasen systems. Do not use it if you don't know what you're doing. + /// + public float StaminaContest(EntityUid performer, EntityUid target, bool bypassClamp = false, float rangeFactor = 1f) + { + if (!_cfg.GetCVar(CCVars.DoContestsSystem) + || !_cfg.GetCVar(CCVars.DoStaminaContests) + || !TryComp(performer, out var perfStamina) + || !TryComp(target, out var targetStamina)) + return 1f; + + return ContestClamp(ContestClampOverride(bypassClamp) + ? (1 - perfStamina.StaminaDamage / perfStamina.CritThreshold) + / (1 - targetStamina.StaminaDamage / targetStamina.CritThreshold) + : (1 - Math.Clamp(perfStamina.StaminaDamage / perfStamina.CritThreshold, 0, 0.25f * rangeFactor)) + / (1 - Math.Clamp(targetStamina.StaminaDamage / targetStamina.CritThreshold, 0, 0.25f * rangeFactor))); + } + + #endregion + + #region Health Contests + + /// + /// Outputs 1 minus the percentage of an Entity's Health, with a Range of [Epsilon, 1 - 0.25 * rangeFactor], or a range of [Epsilon, 1 - Epsilon] if bypassClamp is true. + /// This will never return a value >1. + /// + /// + /// bypassClamp is a deprecated input intended for supporting legacy Nyanotrasen systems. Do not use it if you don't know what you're doing. + /// + public float HealthContest(EntityUid performer, bool bypassClamp = false, float rangeFactor = 1f) + { + if (!_cfg.GetCVar(CCVars.DoContestsSystem) + || !_cfg.GetCVar(CCVars.DoHealthContests) + || !TryComp(performer, out var damage) + || !TryComp(performer, out var thresholdsComponent) + || !_mobThreshold.TryGetThresholdForState(performer, Mobs.MobState.Critical, out var threshold, thresholdsComponent)) + return 1f; + + return ContestClamp(ContestClampOverride(bypassClamp) + ? 1 - damage.TotalDamage.Float() / threshold.Value.Float() + : 1 - Math.Clamp(damage.TotalDamage.Float() / threshold.Value.Float(), 0, 0.25f * rangeFactor)); + } + + /// + /// Outputs the ratio of percentage of an Entity's Health and a Target Entity's Health, with a Range of [Epsilon, 0.25 * rangeFactor], or a range of [Epsilon, +inf] if bypassClamp is true. + /// This does NOT produce the same kind of outputs as a Single-Entity HealthContest. 2Entity HealthContest returns the product of two Solo Health Contests, and so its values can be very strange. + /// + /// + /// bypassClamp is a deprecated input intended for supporting legacy Nyanotrasen systems. Do not use it if you don't know what you're doing. + /// + public float HealthContest(EntityUid performer, EntityUid target, bool bypassClamp = false, float rangeFactor = 1f) + { + if (!_cfg.GetCVar(CCVars.DoContestsSystem) + || !_cfg.GetCVar(CCVars.DoHealthContests) + || !TryComp(performer, out var perfDamage) + || !TryComp(target, out var targetDamage) + || !TryComp(performer, out var perfThresholdComp) + || !TryComp(target, out var targetThresholdComp) + || !_mobThreshold.TryGetThresholdForState(performer, Mobs.MobState.Critical, out var perfThreshold, perfThresholdComp) + || !_mobThreshold.TryGetThresholdForState(target, Mobs.MobState.Critical, out var targetThreshold, targetThresholdComp)) + return 1f; + + return ContestClamp(ContestClampOverride(bypassClamp) + ? (1 - perfDamage.TotalDamage.Float() / perfThreshold.Value.Float()) + / (1 - targetDamage.TotalDamage.Float() / targetThreshold.Value.Float()) + : (1 - Math.Clamp(perfDamage.TotalDamage.Float() / perfThreshold.Value.Float(), 0, 0.25f * rangeFactor)) + / (1 - Math.Clamp(targetDamage.TotalDamage.Float() / targetThreshold.Value.Float(), 0, 0.25f * rangeFactor))); + } + #endregion + + #region Mind Contests + + /// + /// Returns the ratio of casting stats between a performer and the presumed average latent psionic. + /// Uniquely among Contests, not being Psionic is not a failure condition, and is instead a variable. + /// If you do not have a PsionicComponent, your combined casting stats are assumed to be 0.1f + /// + /// + /// This can produce some truly astounding modifiers, so be ready to meet god if you bypass the clamp. + /// By bypassing this function's clamp you hereby agree to forfeit your soul to VMSolidus should unintended bugs occur. + /// + public float MindContest(EntityUid performer, bool bypassClamp = false, float rangeFactor = 1f, float otherPsion = AveragePsionicPotential) + { + if (!_cfg.GetCVar(CCVars.DoContestsSystem) + || !_cfg.GetCVar(CCVars.DoMindContests)) + return 1f; + + var performerPotential = TryComp(performer, out var performerPsionic) + ? performerPsionic.CurrentAmplification + performerPsionic.CurrentDampening + : 0.1f; + + if (performerPotential == otherPsion) + return 1f; + + return ContestClamp(ContestClampOverride(bypassClamp) + ? performerPotential / otherPsion + : Math.Clamp(performerPotential / otherPsion, + 1 - _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor, + 1 + _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor)); + } + + /// + /// Returns the ratio of casting stats between a performer and a target. + /// Like with single-Uid MindContests, if an entity does not possess a PsionicComponent, its casting stats are assumed to be 0.1f. + /// + /// + /// This can produce some truly astounding modifiers, so be ready to meet god if you bypass the clamp. + /// By bypassing this function's clamp you hereby agree to forfeit your soul to VMSolidus should unintended bugs occur. + /// + public float MindContest(EntityUid performer, EntityUid target, bool bypassClamp = false, float rangeFactor = 1f) + { + if (!_cfg.GetCVar(CCVars.DoContestsSystem) + || !_cfg.GetCVar(CCVars.DoMindContests)) + return 1f; + + var performerPotential = TryComp(performer, out var performerPsionic) + ? performerPsionic.CurrentAmplification + performerPsionic.CurrentDampening + : 0.1f; + + var targetPotential = TryComp(target, out var targetPsionic) + ? targetPsionic.CurrentAmplification + targetPsionic.CurrentDampening + : 0.1f; + + if (performerPotential == targetPotential) + return 1f; + + return ContestClamp(ContestClampOverride(bypassClamp) + ? performerPotential / targetPotential + : Math.Clamp(performerPotential / targetPotential, + 1 - _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor, + 1 + _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor)); + } + + #endregion + + #region Mood Contests + + /// + /// Outputs the ratio of an Entity's mood level and its Neutral Mood threshold. + /// + /// + /// bypassClamp is a deprecated input intended for supporting legacy Nyanotrasen systems. Do not use it if you don't know what you're doing. + /// + public float MoodContest(EntityUid performer, bool bypassClamp = false, float rangeFactor = 1f) + { + if (!_cfg.GetCVar(CCVars.DoContestsSystem) + || !_cfg.GetCVar(CCVars.DoMoodContests) + || !TryComp(performer, out var mood)) + return 1f; + + return ContestClamp(ContestClampOverride(bypassClamp) + ? mood.CurrentMoodLevel / mood.NeutralMoodThreshold + : Math.Clamp(mood.CurrentMoodLevel / mood.NeutralMoodThreshold, + 1 - _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor, + 1 + _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor)); + } + + /// + /// Outputs the ratio of mood level between two Entities. + /// + /// + /// bypassClamp is a deprecated input intended for supporting legacy Nyanotrasen systems. Do not use it if you don't know what you're doing. + /// + public float MoodContest(EntityUid performer, EntityUid target, bool bypassClamp = false, float rangeFactor = 1f) + { + if (!_cfg.GetCVar(CCVars.DoContestsSystem) + || !_cfg.GetCVar(CCVars.DoMoodContests) + || !TryComp(performer, out var performerMood) + || !TryComp(target, out var targetMood)) + return 1f; + + return ContestClamp(ContestClampOverride(bypassClamp) + ? performerMood.CurrentMoodLevel / targetMood.CurrentMoodLevel + : Math.Clamp(performerMood.CurrentMoodLevel / targetMood.CurrentMoodLevel, + 1 - _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor, + 1 + _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor)); + } + + #endregion + + #region EVERY CONTESTS + + /// + /// EveryContest takes either the Sum or Product of all existing contests, for if you want to just check if somebody is absolutely fucked up. + /// + /// + /// If it's not immediately obvious that a function with 16 optional inputs is a joke, please take a step back and re-evaluate why you're using this function. + /// All prior warnings also apply here. Bypass the clamps at your own risk. By calling this function in your system, you hereby agree to forfeit your soul to VMSolidus if bugs occur. + /// + public float EveryContest( + EntityUid performer, + bool bypassClampMass = false, + bool bypassClampStamina = false, + bool bypassClampHealth = false, + bool bypassClampMind = false, + bool bypassClampMood = false, + float rangeFactorMass = 1f, + float rangeFactorStamina = 1f, + float rangeFactorHealth = 1f, + float rangeFactorMind = 1f, + float rangeFactorMood = 1f, + float weightMass = 1f, + float weightStamina = 1f, + float weightHealth = 1f, + float weightMind = 1f, + float weightMood = 1f, + bool sumOrMultiply = false) + { + if (!_cfg.GetCVar(CCVars.DoContestsSystem)) + return 1f; + + var weightTotal = weightMass + weightStamina + weightHealth + weightMind + weightMood; + var massMultiplier = weightMass / weightTotal; + var staminaMultiplier = weightStamina / weightTotal; + var healthMultiplier = weightHealth / weightTotal; + var mindMultiplier = weightMind / weightTotal; + var moodMultiplier = weightMood / weightTotal; + + return sumOrMultiply + ? MassContest(performer, bypassClampMass, rangeFactorMass) * massMultiplier + + StaminaContest(performer, bypassClampStamina, rangeFactorStamina) * staminaMultiplier + + HealthContest(performer, bypassClampHealth, rangeFactorHealth) * healthMultiplier + + MindContest(performer, bypassClampMind, rangeFactorMind) * mindMultiplier + + MoodContest(performer, bypassClampMood, rangeFactorMood) * moodMultiplier + : ContestClamp(MassContest(performer, bypassClampMass, rangeFactorMass) * massMultiplier + * StaminaContest(performer, bypassClampStamina, rangeFactorStamina) * staminaMultiplier + * HealthContest(performer, bypassClampHealth, rangeFactorHealth) * healthMultiplier + * MindContest(performer, bypassClampMind, rangeFactorMind) * mindMultiplier + * MoodContest(performer, bypassClampMood, rangeFactorMood) * moodMultiplier); + } + + /// + /// EveryContest takes either the Sum or Product of all existing contests, for if you want to just check if somebody is absolutely fucked up. + /// + /// + /// If it's not immediately obvious that a function with 16 optional inputs is a joke, please take a step back and re-evaluate why you're using this function. + /// All prior warnings also apply here. Bypass the clamps at your own risk. By calling this function in your system, you hereby agree to forfeit your soul to VMSolidus if bugs occur. + /// + public float EveryContest( + EntityUid performer, + EntityUid target, + bool bypassClampMass = false, + bool bypassClampStamina = false, + bool bypassClampHealth = false, + bool bypassClampMind = false, + bool bypassClampMood = false, + float rangeFactorMass = 1f, + float rangeFactorStamina = 1f, + float rangeFactorHealth = 1f, + float rangeFactorMind = 1f, + float rangeFactorMood = 1f, + float weightMass = 1f, + float weightStamina = 1f, + float weightHealth = 1f, + float weightMind = 1f, + float weightMood = 1f, + bool sumOrMultiply = false) { - [Dependency] private readonly IConfigurationManager _cfg = default!; - [Dependency] private readonly MobThresholdSystem _mobThreshold = default!; - - /// - /// The presumed average mass of a player entity - /// Defaulted to the average mass of an adult human - /// - private const float AverageMass = 71f; - - /// - /// The presumed average sum of a Psionic's Baseline Amplification and Baseline Dampening. - /// Since Baseline casting stats are a random value between 0.4 and 1.2, this is defaulted to 0.8 + 0.8. - /// - private const float AveragePsionicPotential = 1.6f; - - #region Mass Contests - /// - /// Outputs the ratio of mass between a performer and the average human mass - /// - /// - /// bypassClamp is a deprecated input intended for supporting legacy Nyanotrasen systems. Do not use it if you don't know what you're doing. - /// - public float MassContest(EntityUid performerUid, bool bypassClamp = false, float rangeFactor = 1f, float otherMass = AverageMass) - { - if (!_cfg.GetCVar(CCVars.DoContestsSystem) - || !_cfg.GetCVar(CCVars.DoMassContests) - || !TryComp(performerUid, out var performerPhysics) - || performerPhysics.Mass == 0) - return 1f; - - return ContestClamp(ContestClampOverride(bypassClamp) - ? performerPhysics.Mass / otherMass - : Math.Clamp(performerPhysics.Mass / otherMass, - 1 - _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor, - 1 + _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor)); - } - - /// - /// - /// MaybeMassContest, in case your entity doesn't exist - /// - public float MassContest(EntityUid? performerUid, bool bypassClamp = false, float rangeFactor = 1f, float otherMass = AverageMass) - { - if (!_cfg.GetCVar(CCVars.DoContestsSystem) - || !_cfg.GetCVar(CCVars.DoMassContests) - || performerUid is null) - return 1f; - - return MassContest(performerUid.Value, bypassClamp, rangeFactor, otherMass); - } - - /// - /// Outputs the ratio of mass between a performer and the average human mass - /// If a function already has the performer's physics component, this is faster - /// - /// - /// bypassClamp is a deprecated input intended for supporting legacy Nyanotrasen systems. Do not use it if you don't know what you're doing. - /// - public float MassContest(PhysicsComponent performerPhysics, bool bypassClamp = false, float rangeFactor = 1f, float otherMass = AverageMass) - { - if (!_cfg.GetCVar(CCVars.DoContestsSystem) - || !_cfg.GetCVar(CCVars.DoMassContests) - || performerPhysics.Mass == 0) - return 1f; - - return ContestClamp(ContestClampOverride(bypassClamp) - ? performerPhysics.Mass / otherMass - : Math.Clamp(performerPhysics.Mass / otherMass, - 1 - _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor, - 1 + _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor)); - } - - /// - /// Outputs the ratio of mass between a performer and a target, accepts either EntityUids or PhysicsComponents in any combination - /// If you have physics components already in your function, use instead - /// - /// - /// bypassClamp is a deprecated input intended for supporting legacy Nyanotrasen systems. Do not use it if you don't know what you're doing. - /// - public float MassContest(EntityUid performerUid, EntityUid targetUid, bool bypassClamp = false, float rangeFactor = 1f) - { - if (!_cfg.GetCVar(CCVars.DoContestsSystem) - || !_cfg.GetCVar(CCVars.DoMassContests) - || !TryComp(performerUid, out var performerPhysics) - || !TryComp(targetUid, out var targetPhysics) - || performerPhysics.Mass == 0 - || targetPhysics.InvMass == 0) - return 1f; - - return ContestClamp(ContestClampOverride(bypassClamp) - ? performerPhysics.Mass * targetPhysics.InvMass - : Math.Clamp(performerPhysics.Mass * targetPhysics.InvMass, - 1 - _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor, - 1 + _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor)); - } - - /// - public float MassContest(EntityUid performerUid, PhysicsComponent targetPhysics, bool bypassClamp = false, float rangeFactor = 1f) - { - if (!_cfg.GetCVar(CCVars.DoContestsSystem) - || !_cfg.GetCVar(CCVars.DoMassContests) - || !TryComp(performerUid, out var performerPhysics) - || performerPhysics.Mass == 0 - || targetPhysics.InvMass == 0) - return 1f; - - return ContestClamp(ContestClampOverride(bypassClamp) - ? performerPhysics.Mass * targetPhysics.InvMass - : Math.Clamp(performerPhysics.Mass * targetPhysics.InvMass, - 1 - _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor, - 1 + _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor)); - } - - /// - public float MassContest(PhysicsComponent performerPhysics, EntityUid targetUid, bool bypassClamp = false, float rangeFactor = 1f) - { - if (!_cfg.GetCVar(CCVars.DoContestsSystem) - || !_cfg.GetCVar(CCVars.DoMassContests) - || !TryComp(targetUid, out var targetPhysics) - || performerPhysics.Mass == 0 - || targetPhysics.InvMass == 0) - return 1f; - - return ContestClamp(ContestClampOverride(bypassClamp) - ? performerPhysics.Mass * targetPhysics.InvMass - : Math.Clamp(performerPhysics.Mass * targetPhysics.InvMass, - 1 - _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor, - 1 + _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor)); - } - - /// - public float MassContest(PhysicsComponent performerPhysics, PhysicsComponent targetPhysics, bool bypassClamp = false, float rangeFactor = 1f) - { - if (!_cfg.GetCVar(CCVars.DoContestsSystem) - || !_cfg.GetCVar(CCVars.DoMassContests) - || performerPhysics.Mass == 0 - || targetPhysics.InvMass == 0) - return 1f; - - return ContestClamp(ContestClampOverride(bypassClamp) - ? performerPhysics.Mass * targetPhysics.InvMass - : Math.Clamp(performerPhysics.Mass * targetPhysics.InvMass, - 1 - _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor, - 1 + _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor)); - } - - #endregion - #region Stamina Contests - - /// - /// Outputs 1 minus the percentage of an Entity's Stamina, with a Range of [Epsilon, 1 - 0.25 * rangeFactor], or a range of [Epsilon, 1 - Epsilon] if bypassClamp is true. - /// This will never return a value >1. - /// - /// - /// bypassClamp is a deprecated input intended for supporting legacy Nyanotrasen systems. Do not use it if you don't know what you're doing. - /// - public float StaminaContest(EntityUid performer, bool bypassClamp = false, float rangeFactor = 1f) - { - if (!TryComp(performer, out var perfStamina) - || perfStamina.StaminaDamage == 0) - return 1f; - - return StaminaContest(perfStamina, bypassClamp, rangeFactor); - } - - /// - public float StaminaContest(StaminaComponent perfStamina, bool bypassClamp = false, float rangeFactor = 1f) - { - if (!_cfg.GetCVar(CCVars.DoContestsSystem) - || !_cfg.GetCVar(CCVars.DoStaminaContests)) - return 1f; - - return ContestClamp(ContestClampOverride(bypassClamp) - ? 1 - perfStamina.StaminaDamage / perfStamina.CritThreshold - : 1 - Math.Clamp(perfStamina.StaminaDamage / perfStamina.CritThreshold, 0, 0.25f * rangeFactor)); - } - - /// - /// Outputs the ratio of percentage of an Entity's Stamina and a Target Entity's Stamina, with a Range of [Epsilon, 0.25 * rangeFactor], or a range of [Epsilon, +inf] if bypassClamp is true. - /// This does NOT produce the same kind of outputs as a Single-Entity StaminaContest. 2Entity StaminaContest returns the product of two Solo Stamina Contests, and so its values can be very strange. - /// - /// - /// bypassClamp is a deprecated input intended for supporting legacy Nyanotrasen systems. Do not use it if you don't know what you're doing. - /// - public float StaminaContest(EntityUid performer, EntityUid target, bool bypassClamp = false, float rangeFactor = 1f) - { - if (!_cfg.GetCVar(CCVars.DoContestsSystem) - || !_cfg.GetCVar(CCVars.DoStaminaContests) - || !TryComp(performer, out var perfStamina) - || !TryComp(target, out var targetStamina)) - return 1f; - - return ContestClamp(ContestClampOverride(bypassClamp) - ? (1 - perfStamina.StaminaDamage / perfStamina.CritThreshold) - / (1 - targetStamina.StaminaDamage / targetStamina.CritThreshold) - : (1 - Math.Clamp(perfStamina.StaminaDamage / perfStamina.CritThreshold, 0, 0.25f * rangeFactor)) - / (1 - Math.Clamp(targetStamina.StaminaDamage / targetStamina.CritThreshold, 0, 0.25f * rangeFactor))); - } - - #endregion - - #region Health Contests - - /// - /// Outputs 1 minus the percentage of an Entity's Health, with a Range of [Epsilon, 1 - 0.25 * rangeFactor], or a range of [Epsilon, 1 - Epsilon] if bypassClamp is true. - /// This will never return a value >1. - /// - /// - /// bypassClamp is a deprecated input intended for supporting legacy Nyanotrasen systems. Do not use it if you don't know what you're doing. - /// - public float HealthContest(EntityUid performer, bool bypassClamp = false, float rangeFactor = 1f) - { - if (!_cfg.GetCVar(CCVars.DoContestsSystem) - || !_cfg.GetCVar(CCVars.DoHealthContests) - || !TryComp(performer, out var damage) - || !_mobThreshold.TryGetThresholdForState(performer, Mobs.MobState.Critical, out var threshold)) - return 1f; - - return ContestClamp(ContestClampOverride(bypassClamp) - ? 1 - damage.TotalDamage.Float() / threshold.Value.Float() - : 1 - Math.Clamp(damage.TotalDamage.Float() / threshold.Value.Float(), 0, 0.25f * rangeFactor)); - } - - /// - /// Outputs the ratio of percentage of an Entity's Health and a Target Entity's Health, with a Range of [Epsilon, 0.25 * rangeFactor], or a range of [Epsilon, +inf] if bypassClamp is true. - /// This does NOT produce the same kind of outputs as a Single-Entity HealthContest. 2Entity HealthContest returns the product of two Solo Health Contests, and so its values can be very strange. - /// - /// - /// bypassClamp is a deprecated input intended for supporting legacy Nyanotrasen systems. Do not use it if you don't know what you're doing. - /// - public float HealthContest(EntityUid performer, EntityUid target, bool bypassClamp = false, float rangeFactor = 1f) - { - if (!_cfg.GetCVar(CCVars.DoContestsSystem) - || !_cfg.GetCVar(CCVars.DoHealthContests) - || !TryComp(performer, out var perfDamage) - || !TryComp(target, out var targetDamage) - || !_mobThreshold.TryGetThresholdForState(performer, Mobs.MobState.Critical, out var perfThreshold) - || !_mobThreshold.TryGetThresholdForState(target, Mobs.MobState.Critical, out var targetThreshold)) - return 1f; - - return ContestClamp(ContestClampOverride(bypassClamp) - ? (1 - perfDamage.TotalDamage.Float() / perfThreshold.Value.Float()) - / (1 - targetDamage.TotalDamage.Float() / targetThreshold.Value.Float()) - : (1 - Math.Clamp(perfDamage.TotalDamage.Float() / perfThreshold.Value.Float(), 0, 0.25f * rangeFactor)) - / (1 - Math.Clamp(targetDamage.TotalDamage.Float() / targetThreshold.Value.Float(), 0, 0.25f * rangeFactor))); - } - #endregion - - #region Mind Contests - - /// - /// Returns the ratio of casting stats between a performer and the presumed average latent psionic. - /// Uniquely among Contests, not being Psionic is not a failure condition, and is instead a variable. - /// If you do not have a PsionicComponent, your combined casting stats are assumed to be 0.1f - /// - /// - /// This can produce some truly astounding modifiers, so be ready to meet god if you bypass the clamp. - /// By bypassing this function's clamp you hereby agree to forfeit your soul to VMSolidus should unintended bugs occur. - /// - public float MindContest(EntityUid performer, bool bypassClamp = false, float rangeFactor = 1f, float otherPsion = AveragePsionicPotential) - { - if (!_cfg.GetCVar(CCVars.DoContestsSystem) - || !_cfg.GetCVar(CCVars.DoMindContests)) - return 1f; - - var performerPotential = TryComp(performer, out var performerPsionic) - ? performerPsionic.CurrentAmplification + performerPsionic.CurrentDampening - : 0.1f; - - if (performerPotential == otherPsion) - return 1f; - - return ContestClamp(ContestClampOverride(bypassClamp) - ? performerPotential / otherPsion - : Math.Clamp(performerPotential / otherPsion, - 1 - _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor, - 1 + _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor)); - } - - /// - /// Returns the ratio of casting stats between a performer and a target. - /// Like with single-Uid MindContests, if an entity does not possess a PsionicComponent, its casting stats are assumed to be 0.1f. - /// - /// - /// This can produce some truly astounding modifiers, so be ready to meet god if you bypass the clamp. - /// By bypassing this function's clamp you hereby agree to forfeit your soul to VMSolidus should unintended bugs occur. - /// - public float MindContest(EntityUid performer, EntityUid target, bool bypassClamp = false, float rangeFactor = 1f) - { - if (!_cfg.GetCVar(CCVars.DoContestsSystem) - || !_cfg.GetCVar(CCVars.DoMindContests)) - return 1f; - - var performerPotential = TryComp(performer, out var performerPsionic) - ? performerPsionic.CurrentAmplification + performerPsionic.CurrentDampening - : 0.1f; - - var targetPotential = TryComp(target, out var targetPsionic) - ? targetPsionic.CurrentAmplification + targetPsionic.CurrentDampening - : 0.1f; - - if (performerPotential == targetPotential) - return 1f; - - return ContestClamp(ContestClampOverride(bypassClamp) - ? performerPotential / targetPotential - : Math.Clamp(performerPotential / targetPotential, - 1 - _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor, - 1 + _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor)); - } - - #endregion - - #region Mood Contests - - /// - /// Outputs the ratio of an Entity's mood level and its Neutral Mood threshold. - /// - /// - /// bypassClamp is a deprecated input intended for supporting legacy Nyanotrasen systems. Do not use it if you don't know what you're doing. - /// - public float MoodContest(EntityUid performer, bool bypassClamp = false, float rangeFactor = 1f) - { - if (!_cfg.GetCVar(CCVars.DoContestsSystem) - || !_cfg.GetCVar(CCVars.DoMoodContests) - || !TryComp(performer, out var mood)) - return 1f; - - return ContestClamp(ContestClampOverride(bypassClamp) - ? mood.CurrentMoodLevel / mood.NeutralMoodThreshold - : Math.Clamp(mood.CurrentMoodLevel / mood.NeutralMoodThreshold, - 1 - _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor, - 1 + _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor)); - } - - /// - /// Outputs the ratio of mood level between two Entities. - /// - /// - /// bypassClamp is a deprecated input intended for supporting legacy Nyanotrasen systems. Do not use it if you don't know what you're doing. - /// - public float MoodContest(EntityUid performer, EntityUid target, bool bypassClamp = false, float rangeFactor = 1f) - { - if (!_cfg.GetCVar(CCVars.DoContestsSystem) - || !_cfg.GetCVar(CCVars.DoMoodContests) - || !TryComp(performer, out var performerMood) - || !TryComp(target, out var targetMood)) - return 1f; - - return ContestClamp(ContestClampOverride(bypassClamp) - ? performerMood.CurrentMoodLevel / targetMood.CurrentMoodLevel - : Math.Clamp(performerMood.CurrentMoodLevel / targetMood.CurrentMoodLevel, - 1 - _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor, - 1 + _cfg.GetCVar(CCVars.MassContestsMaxPercentage) * rangeFactor)); - } - - #endregion - - #region EVERY CONTESTS - - /// - /// EveryContest takes either the Sum or Product of all existing contests, for if you want to just check if somebody is absolutely fucked up. - /// - /// - /// If it's not immediately obvious that a function with 16 optional inputs is a joke, please take a step back and re-evaluate why you're using this function. - /// All prior warnings also apply here. Bypass the clamps at your own risk. By calling this function in your system, you hereby agree to forfeit your soul to VMSolidus if bugs occur. - /// - public float EveryContest( - EntityUid performer, - bool bypassClampMass = false, - bool bypassClampStamina = false, - bool bypassClampHealth = false, - bool bypassClampMind = false, - bool bypassClampMood = false, - float rangeFactorMass = 1f, - float rangeFactorStamina = 1f, - float rangeFactorHealth = 1f, - float rangeFactorMind = 1f, - float rangeFactorMood = 1f, - float weightMass = 1f, - float weightStamina = 1f, - float weightHealth = 1f, - float weightMind = 1f, - float weightMood = 1f, - bool sumOrMultiply = false) - { - if (!_cfg.GetCVar(CCVars.DoContestsSystem)) - return 1f; - - var weightTotal = weightMass + weightStamina + weightHealth + weightMind + weightMood; - var massMultiplier = weightMass / weightTotal; - var staminaMultiplier = weightStamina / weightTotal; - var healthMultiplier = weightHealth / weightTotal; - var mindMultiplier = weightMind / weightTotal; - var moodMultiplier = weightMood / weightTotal; - - return sumOrMultiply - ? MassContest(performer, bypassClampMass, rangeFactorMass) * massMultiplier - + StaminaContest(performer, bypassClampStamina, rangeFactorStamina) * staminaMultiplier - + HealthContest(performer, bypassClampHealth, rangeFactorHealth) * healthMultiplier - + MindContest(performer, bypassClampMind, rangeFactorMind) * mindMultiplier - + MoodContest(performer, bypassClampMood, rangeFactorMood) * moodMultiplier - : ContestClamp(MassContest(performer, bypassClampMass, rangeFactorMass) * massMultiplier - * StaminaContest(performer, bypassClampStamina, rangeFactorStamina) * staminaMultiplier - * HealthContest(performer, bypassClampHealth, rangeFactorHealth) * healthMultiplier - * MindContest(performer, bypassClampMind, rangeFactorMind) * mindMultiplier - * MoodContest(performer, bypassClampMood, rangeFactorMood) * moodMultiplier); - } - - /// - /// EveryContest takes either the Sum or Product of all existing contests, for if you want to just check if somebody is absolutely fucked up. - /// - /// - /// If it's not immediately obvious that a function with 16 optional inputs is a joke, please take a step back and re-evaluate why you're using this function. - /// All prior warnings also apply here. Bypass the clamps at your own risk. By calling this function in your system, you hereby agree to forfeit your soul to VMSolidus if bugs occur. - /// - public float EveryContest( - EntityUid performer, - EntityUid target, - bool bypassClampMass = false, - bool bypassClampStamina = false, - bool bypassClampHealth = false, - bool bypassClampMind = false, - bool bypassClampMood = false, - float rangeFactorMass = 1f, - float rangeFactorStamina = 1f, - float rangeFactorHealth = 1f, - float rangeFactorMind = 1f, - float rangeFactorMood = 1f, - float weightMass = 1f, - float weightStamina = 1f, - float weightHealth = 1f, - float weightMind = 1f, - float weightMood = 1f, - bool sumOrMultiply = false) - { - if (!_cfg.GetCVar(CCVars.DoContestsSystem)) - return 1f; - - var weightTotal = weightMass + weightStamina + weightHealth + weightMind + weightMood; - var massMultiplier = weightMass / weightTotal; - var staminaMultiplier = weightStamina / weightTotal; - var healthMultiplier = weightHealth / weightTotal; - var mindMultiplier = weightMind / weightTotal; - var moodMultiplier = weightMood / weightTotal; - - return sumOrMultiply - ? MassContest(performer, target, bypassClampMass, rangeFactorMass) * massMultiplier - + StaminaContest(performer, target, bypassClampStamina, rangeFactorStamina) * staminaMultiplier - + HealthContest(performer, target, bypassClampHealth, rangeFactorHealth) * healthMultiplier - + MindContest(performer, target, bypassClampMind, rangeFactorMind) * mindMultiplier - + MoodContest(performer, target, bypassClampMood, rangeFactorMood) * moodMultiplier - : ContestClamp(MassContest(performer, target, bypassClampMass, rangeFactorMass) * massMultiplier - * StaminaContest(performer, target, bypassClampStamina, rangeFactorStamina) * staminaMultiplier - * HealthContest(performer, target, bypassClampHealth, rangeFactorHealth) * healthMultiplier - * MindContest(performer, target, bypassClampMind, rangeFactorMind) * mindMultiplier - * MoodContest(performer, target, bypassClampMood, rangeFactorMood) * moodMultiplier); - } - #endregion + if (!_cfg.GetCVar(CCVars.DoContestsSystem)) + return 1f; + + var weightTotal = weightMass + weightStamina + weightHealth + weightMind + weightMood; + var massMultiplier = weightMass / weightTotal; + var staminaMultiplier = weightStamina / weightTotal; + var healthMultiplier = weightHealth / weightTotal; + var mindMultiplier = weightMind / weightTotal; + var moodMultiplier = weightMood / weightTotal; + + return sumOrMultiply + ? MassContest(performer, target, bypassClampMass, rangeFactorMass) * massMultiplier + + StaminaContest(performer, target, bypassClampStamina, rangeFactorStamina) * staminaMultiplier + + HealthContest(performer, target, bypassClampHealth, rangeFactorHealth) * healthMultiplier + + MindContest(performer, target, bypassClampMind, rangeFactorMind) * mindMultiplier + + MoodContest(performer, target, bypassClampMood, rangeFactorMood) * moodMultiplier + : ContestClamp(MassContest(performer, target, bypassClampMass, rangeFactorMass) * massMultiplier + * StaminaContest(performer, target, bypassClampStamina, rangeFactorStamina) * staminaMultiplier + * HealthContest(performer, target, bypassClampHealth, rangeFactorHealth) * healthMultiplier + * MindContest(performer, target, bypassClampMind, rangeFactorMind) * mindMultiplier + * MoodContest(performer, target, bypassClampMood, rangeFactorMood) * moodMultiplier); } + #endregion } diff --git a/Content.Shared/CriminalRecords/Components/CriminalRecordsHackerComponent.cs b/Content.Shared/CriminalRecords/Components/CriminalRecordsHackerComponent.cs new file mode 100644 index 0000000000..189a387a5d --- /dev/null +++ b/Content.Shared/CriminalRecords/Components/CriminalRecordsHackerComponent.cs @@ -0,0 +1,31 @@ +using Content.Shared.CriminalRecords.Systems; +using Content.Shared.Dataset; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.CriminalRecords.Components; + +/// +/// Lets the user hack a criminal records console, once. +/// Everyone is set to wanted with a randomly picked reason. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SharedCriminalRecordsHackerSystem))] +public sealed partial class CriminalRecordsHackerComponent : Component +{ + /// + /// How long the doafter is for hacking it. + /// + public TimeSpan Delay = TimeSpan.FromSeconds(20); + + /// + /// Dataset of random reasons to use. + /// + [DataField] + public ProtoId Reasons = "CriminalRecordsWantedReasonPlaceholders"; + + /// + /// Announcement made after the console is hacked. + /// + [DataField] + public LocId Announcement = "ninja-criminal-records-hack-announcement"; +} diff --git a/Content.Shared/CriminalRecords/Systems/SharedCriminalRecordsHackerSystem.cs b/Content.Shared/CriminalRecords/Systems/SharedCriminalRecordsHackerSystem.cs new file mode 100644 index 0000000000..a626db19e5 --- /dev/null +++ b/Content.Shared/CriminalRecords/Systems/SharedCriminalRecordsHackerSystem.cs @@ -0,0 +1,50 @@ +using Content.Shared.CriminalRecords.Components; +using Content.Shared.DoAfter; +using Content.Shared.Interaction; +using Content.Shared.Ninja.Systems; +using Robust.Shared.Serialization; + +namespace Content.Shared.CriminalRecords.Systems; + +public abstract class SharedCriminalRecordsHackerSystem : EntitySystem +{ + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + [Dependency] private readonly SharedNinjaGlovesSystem _gloves = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnBeforeInteractHand); + } + + private void OnBeforeInteractHand(Entity ent, ref BeforeInteractHandEvent args) + { + // TODO: generic event + if (args.Handled || !_gloves.AbilityCheck(ent, args, out var target)) + return; + + if (!HasComp(target)) + return; + + var doAfterArgs = new DoAfterArgs(EntityManager, ent, ent.Comp.Delay, new CriminalRecordsHackDoAfterEvent(), target: target, used: ent, eventTarget: ent) + { + BreakOnDamage = true, + BreakOnTargetMove = true, + BreakOnUserMove = true, + BreakOnWeightlessMove = true, + MovementThreshold = 0.5f, + }; + + _doAfter.TryStartDoAfter(doAfterArgs); + args.Handled = true; + } +} + +/// +/// Raised on the user when the doafter completes. +/// +[Serializable, NetSerializable] +public sealed partial class CriminalRecordsHackDoAfterEvent : SimpleDoAfterEvent +{ +} diff --git a/Content.Shared/Cuffs/SharedCuffableSystem.cs b/Content.Shared/Cuffs/SharedCuffableSystem.cs index ebbafef7f0..9777b23988 100644 --- a/Content.Shared/Cuffs/SharedCuffableSystem.cs +++ b/Content.Shared/Cuffs/SharedCuffableSystem.cs @@ -7,6 +7,7 @@ using Content.Shared.Contests; using Content.Shared.Cuffs.Components; using Content.Shared.Database; +using Content.Shared.Flight; using Content.Shared.DoAfter; using Content.Shared.Hands; using Content.Shared.Hands.Components; @@ -479,6 +480,13 @@ public bool TryCuffing(EntityUid user, EntityUid target, EntityUid handcuff, Han return true; } + if (TryComp(target, out var flight) && flight.On) + { + _popup.PopupClient(Loc.GetString("handcuff-component-target-flying-error", + ("targetName", Identity.Name(target, EntityManager, user))), user, user); + return true; + } + var cuffTime = handcuffComponent.CuffTime; if (HasComp(target)) @@ -731,4 +739,4 @@ private sealed partial class AddCuffDoAfterEvent : SimpleDoAfterEvent { } } -} +} \ No newline at end of file diff --git a/Content.Shared/Customization/Systems/CharacterRequirements.Profile.cs b/Content.Shared/Customization/Systems/CharacterRequirements.Profile.cs index 8fdb7c0e7d..568a7f1b61 100644 --- a/Content.Shared/Customization/Systems/CharacterRequirements.Profile.cs +++ b/Content.Shared/Customization/Systems/CharacterRequirements.Profile.cs @@ -41,50 +41,6 @@ public override bool IsValid(JobPrototype job, HumanoidCharacterProfile profile, } } -/// -/// Requires the profile to use either a Backpack, Satchel, or Duffelbag -/// -[UsedImplicitly] -[Serializable, NetSerializable] -public sealed partial class CharacterBackpackTypeRequirement : CharacterRequirement -{ - [DataField(required: true)] - public BackpackPreference Preference; - - public override bool IsValid(JobPrototype job, HumanoidCharacterProfile profile, - Dictionary playTimes, bool whitelisted, IPrototype prototype, - IEntityManager entityManager, IPrototypeManager prototypeManager, IConfigurationManager configManager, - out FormattedMessage? reason, int depth = 0) - { - reason = FormattedMessage.FromMarkup(Loc.GetString("character-backpack-type-requirement", - ("inverted", Inverted), - ("type", Loc.GetString($"humanoid-profile-editor-preference-{Preference.ToString().ToLower()}")))); - return profile.Backpack == Preference; - } -} - -/// -/// Requires the profile to use either Jumpsuits or Jumpskirts -/// -[UsedImplicitly] -[Serializable, NetSerializable] -public sealed partial class CharacterClothingPreferenceRequirement : CharacterRequirement -{ - [DataField(required: true)] - public ClothingPreference Preference; - - public override bool IsValid(JobPrototype job, HumanoidCharacterProfile profile, - Dictionary playTimes, bool whitelisted, IPrototype prototype, - IEntityManager entityManager, IPrototypeManager prototypeManager, IConfigurationManager configManager, - out FormattedMessage? reason, int depth = 0) - { - reason = FormattedMessage.FromMarkup(Loc.GetString("character-clothing-preference-requirement", - ("inverted", Inverted), - ("preference", Loc.GetString($"humanoid-profile-editor-preference-{Preference.ToString().ToLower()}")))); - return profile.Clothing == Preference; - } -} - /// /// Requires the profile to be a certain gender /// diff --git a/Content.Shared/Damage/Components/StaminaComponent.cs b/Content.Shared/Damage/Components/StaminaComponent.cs index 65c025c3ad..b78fe97809 100644 --- a/Content.Shared/Damage/Components/StaminaComponent.cs +++ b/Content.Shared/Damage/Components/StaminaComponent.cs @@ -39,6 +39,13 @@ public sealed partial class StaminaComponent : Component [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] public float CritThreshold = 100f; + /// + /// A dictionary of active stamina drains, with the key being the source of the drain, + /// DrainRate how much it changes per tick, and ModifiesSpeed if it should slow down the user. + /// + [DataField, AutoNetworkedField] + public Dictionary ActiveDrains = new(); + /// /// How long will this mob be stunned for? /// @@ -63,4 +70,4 @@ public sealed partial class StaminaComponent : Component /// [DataField, AutoNetworkedField] public float SlowdownMultiplier = 0.75f; -} +} \ No newline at end of file diff --git a/Content.Shared/Damage/Prototypes/DamageGroupPrototype.cs b/Content.Shared/Damage/Prototypes/DamageGroupPrototype.cs index 807f143708..bb5aea3a38 100644 --- a/Content.Shared/Damage/Prototypes/DamageGroupPrototype.cs +++ b/Content.Shared/Damage/Prototypes/DamageGroupPrototype.cs @@ -17,6 +17,12 @@ public sealed partial class DamageGroupPrototype : IPrototype { [IdDataField] public string ID { get; } = default!; + [DataField(required: true)] + private LocId Name { get; set; } + + [ViewVariables(VVAccess.ReadOnly)] + public string LocalizedName => Loc.GetString(Name); + [DataField("damageTypes", required: true, customTypeSerializer: typeof(PrototypeIdListSerializer))] public List DamageTypes { get; private set; } = default!; } diff --git a/Content.Shared/Damage/Prototypes/DamageModifierSetPrototype.cs b/Content.Shared/Damage/Prototypes/DamageModifierSetPrototype.cs index 99e13ee284..a50856b044 100644 --- a/Content.Shared/Damage/Prototypes/DamageModifierSetPrototype.cs +++ b/Content.Shared/Damage/Prototypes/DamageModifierSetPrototype.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Damage.Prototypes /// just want normal data to be deserialized. /// [Prototype("damageModifierSet")] - public sealed class DamageModifierSetPrototype : DamageModifierSet, IPrototype + public sealed partial class DamageModifierSetPrototype : DamageModifierSet, IPrototype { [ViewVariables] [IdDataField] diff --git a/Content.Shared/Damage/Prototypes/DamageTypePrototype.cs b/Content.Shared/Damage/Prototypes/DamageTypePrototype.cs index cde7a8617f..a1ae23ef67 100644 --- a/Content.Shared/Damage/Prototypes/DamageTypePrototype.cs +++ b/Content.Shared/Damage/Prototypes/DamageTypePrototype.cs @@ -11,6 +11,12 @@ public sealed partial class DamageTypePrototype : IPrototype [IdDataField] public string ID { get; private set; } = default!; + [DataField(required: true)] + private LocId Name { get; set; } + + [ViewVariables(VVAccess.ReadOnly)] + public string LocalizedName => Loc.GetString(Name); + /// /// The price for each 1% damage reduction in armors /// diff --git a/Content.Shared/Damage/Systems/DamageExamineSystem.cs b/Content.Shared/Damage/Systems/DamageExamineSystem.cs index 8273719110..fd1f191334 100644 --- a/Content.Shared/Damage/Systems/DamageExamineSystem.cs +++ b/Content.Shared/Damage/Systems/DamageExamineSystem.cs @@ -1,8 +1,10 @@ using Content.Shared.Damage.Components; using Content.Shared.Damage.Events; +using Content.Shared.Damage.Prototypes; using Content.Shared.Examine; using Content.Shared.FixedPoint; using Content.Shared.Verbs; +using Robust.Shared.Prototypes; using Robust.Shared.Utility; namespace Content.Shared.Damage.Systems; @@ -10,6 +12,7 @@ namespace Content.Shared.Damage.Systems; public sealed class DamageExamineSystem : EntitySystem { [Dependency] private readonly ExamineSystemShared _examine = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; public override void Initialize() { @@ -66,7 +69,7 @@ private FormattedMessage GetDamageExamine(DamageSpecifier damageSpecifier, strin if (damage.Value != FixedPoint2.Zero) { msg.PushNewline(); - msg.AddMarkup(Loc.GetString("damage-value", ("type", damage.Key), ("amount", damage.Value))); + msg.AddMarkup(Loc.GetString("damage-value", ("type", _prototype.Index(damage.Key).LocalizedName), ("amount", damage.Value))); } } diff --git a/Content.Shared/Damage/Systems/StaminaSystem.cs b/Content.Shared/Damage/Systems/StaminaSystem.cs index 4900d0d65f..9cdd7ecaf3 100644 --- a/Content.Shared/Damage/Systems/StaminaSystem.cs +++ b/Content.Shared/Damage/Systems/StaminaSystem.cs @@ -261,7 +261,7 @@ public bool TryTakeStamina(EntityUid uid, float value, StaminaComponent? compone } public void TakeStaminaDamage(EntityUid uid, float value, StaminaComponent? component = null, - EntityUid? source = null, EntityUid? with = null, bool visual = true, SoundSpecifier? sound = null) + EntityUid? source = null, EntityUid? with = null, bool visual = true, SoundSpecifier? sound = null, bool? allowsSlowdown = true) { if (!Resolve(uid, ref component, false) || value == 0) @@ -287,8 +287,8 @@ public void TakeStaminaDamage(EntityUid uid, float value, StaminaComponent? comp if (component.NextUpdate < nextUpdate) component.NextUpdate = nextUpdate; } - - _movementSpeed.RefreshMovementSpeedModifiers(uid); + if (allowsSlowdown == true) + _movementSpeed.RefreshMovementSpeedModifiers(uid); SetStaminaAlert(uid, component); if (!component.Critical) @@ -331,27 +331,51 @@ public void TakeStaminaDamage(EntityUid uid, float value, StaminaComponent? comp } } + public void ToggleStaminaDrain(EntityUid target, float drainRate, bool enabled, bool modifiesSpeed, EntityUid? source = null) + { + if (!TryComp(target, out var stamina)) + return; + + // If theres no source, we assume its the target that caused the drain. + var actualSource = source ?? target; + + if (enabled) + { + stamina.ActiveDrains[actualSource] = (drainRate, modifiesSpeed); + EnsureComp(target); + } + else + stamina.ActiveDrains.Remove(actualSource); + + Dirty(target, stamina); + } + public override void Update(float frameTime) { base.Update(frameTime); - if (!_timing.IsFirstTimePredicted) return; var stamQuery = GetEntityQuery(); var query = EntityQueryEnumerator(); var curTime = _timing.CurTime; - while (query.MoveNext(out var uid, out _)) { // Just in case we have active but not stamina we'll check and account for it. if (!stamQuery.TryGetComponent(uid, out var comp) || - comp.StaminaDamage <= 0f && !comp.Critical) + comp.StaminaDamage <= 0f && !comp.Critical && comp.ActiveDrains.Count == 0) { RemComp(uid); continue; } - + if (comp.ActiveDrains.Count > 0) + foreach (var (source, (drainRate, modifiesSpeed)) in comp.ActiveDrains) + TakeStaminaDamage(uid, + drainRate * frameTime, + comp, + source: source, + visual: false, + allowsSlowdown: modifiesSpeed); // Shouldn't need to consider paused time as we're only iterating non-paused stamina components. var nextUpdate = comp.NextUpdate; @@ -366,8 +390,11 @@ public override void Update(float frameTime) } comp.NextUpdate += TimeSpan.FromSeconds(1f); - TakeStaminaDamage(uid, -comp.Decay, comp); - Dirty(comp); + // If theres no active drains, recover stamina. + if (comp.ActiveDrains.Count == 0) + TakeStaminaDamage(uid, -comp.Decay, comp); + + Dirty(uid, comp); } } @@ -383,7 +410,6 @@ private void EnterStamCrit(EntityUid uid, StaminaComponent? component = null) component.StaminaDamage = component.CritThreshold; _stunSystem.TryParalyze(uid, component.StunTime, true); - // Give them buffer before being able to be re-stunned component.NextUpdate = _timing.CurTime + component.StunTime + StamCritBufferTime; EnsureComp(uid); @@ -410,4 +436,4 @@ private void ExitStamCrit(EntityUid uid, StaminaComponent? component = null) /// Raised before stamina damage is dealt to allow other systems to cancel it. /// [ByRefEvent] -public record struct BeforeStaminaDamageEvent(float Value, bool Cancelled = false); +public record struct BeforeStaminaDamageEvent(float Value, bool Cancelled = false); \ No newline at end of file diff --git a/Content.Shared/DeltaV/CCVars/DCCVars.cs b/Content.Shared/DeltaV/CCVars/DCCVars.cs index 2028397ffe..89a14275be 100644 --- a/Content.Shared/DeltaV/CCVars/DCCVars.cs +++ b/Content.Shared/DeltaV/CCVars/DCCVars.cs @@ -15,10 +15,4 @@ public sealed class DCCVars /// public static readonly CVarDef RoundEndPacifist = CVarDef.Create("game.round_end_pacifist", false, CVar.SERVERONLY); - - /// - /// Disables all vision filters for species like Vulpkanin or Harpies. There are good reasons someone might want to disable these. - /// - public static readonly CVarDef NoVisionFilters = - CVarDef.Create("accessibility.no_vision_filters", false, CVar.CLIENTONLY | CVar.ARCHIVE); } diff --git a/Content.Shared/DeltaV/CartridgeLoader/Cartridges/MailMetricUiState.cs b/Content.Shared/DeltaV/CartridgeLoader/Cartridges/MailMetricUiState.cs new file mode 100644 index 0000000000..69506f5d0c --- /dev/null +++ b/Content.Shared/DeltaV/CartridgeLoader/Cartridges/MailMetricUiState.cs @@ -0,0 +1,50 @@ +using Content.Shared.Security; +using Robust.Shared.Serialization; + +namespace Content.Shared.CartridgeLoader.Cartridges; + +[Serializable, NetSerializable] +public sealed class MailMetricUiState : BoundUserInterfaceState +{ + public readonly MailStats Metrics; + public int UnopenedMailCount { get; } + public int TotalMail { get; } + public double SuccessRate { get; } + + public MailMetricUiState(MailStats metrics, int unopenedMailCount) + { + Metrics = metrics; + UnopenedMailCount = unopenedMailCount; + TotalMail = metrics.TotalMail(unopenedMailCount); + SuccessRate = metrics.SuccessRate(unopenedMailCount); + } +} + +[DataDefinition] +[Serializable, NetSerializable] +public partial record struct MailStats +{ + public int Earnings { get; init; } + public int DamagedLosses { get; init; } + public int ExpiredLosses { get; init; } + public int TamperedLosses { get; init; } + public int OpenedCount { get; init; } + public int DamagedCount { get; init; } + public int ExpiredCount { get; init; } + public int TamperedCount { get; init; } + + public readonly int TotalMail(int unopenedCount) + { + return OpenedCount + unopenedCount; + } + + public readonly int TotalIncome => Earnings + DamagedLosses + ExpiredLosses + TamperedLosses; + + public readonly double SuccessRate(int unopenedCount) + { + var totalMail = TotalMail(unopenedCount); + return (totalMail > 0) + ? Math.Round((double)OpenedCount / totalMail * 100, 2) + : 0; + } +} \ No newline at end of file diff --git a/Content.Shared/DeviceLinking/DevicePortPrototype.cs b/Content.Shared/DeviceLinking/DevicePortPrototype.cs index c0a419ee65..e3421dda9d 100644 --- a/Content.Shared/DeviceLinking/DevicePortPrototype.cs +++ b/Content.Shared/DeviceLinking/DevicePortPrototype.cs @@ -29,13 +29,13 @@ public abstract class DevicePortPrototype [Prototype("sinkPort")] [Serializable, NetSerializable] -public sealed class SinkPortPrototype : DevicePortPrototype, IPrototype +public sealed partial class SinkPortPrototype : DevicePortPrototype, IPrototype { } [Prototype("sourcePort")] [Serializable, NetSerializable] -public sealed class SourcePortPrototype : DevicePortPrototype, IPrototype +public sealed partial class SourcePortPrototype : DevicePortPrototype, IPrototype { /// /// This is a set of sink ports that this source port will attempt to link to when using the diff --git a/Content.Shared/DeviceNetwork/Systems/SharedNetworkConfiguratorSystem.cs b/Content.Shared/DeviceNetwork/Systems/SharedNetworkConfiguratorSystem.cs index 4aa9db199d..53928f83a9 100644 --- a/Content.Shared/DeviceNetwork/Systems/SharedNetworkConfiguratorSystem.cs +++ b/Content.Shared/DeviceNetwork/Systems/SharedNetworkConfiguratorSystem.cs @@ -1,10 +1,23 @@ using Content.Shared.Actions; +using Content.Shared.DeviceNetwork.Components; +using Content.Shared.UserInterface; using Robust.Shared.Serialization; namespace Content.Shared.DeviceNetwork.Systems; public abstract class SharedNetworkConfiguratorSystem : EntitySystem { + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnUiOpenAttempt); + } + + private void OnUiOpenAttempt(EntityUid uid, NetworkConfiguratorComponent configurator, ActivatableUIOpenAttemptEvent args) + { + if (configurator.LinkModeActive) + args.Cancel(); + } } public sealed partial class ClearAllOverlaysEvent : InstantActionEvent diff --git a/Content.Shared/Disposal/Components/SharedDisposalUnitComponent.cs b/Content.Shared/Disposal/Components/SharedDisposalUnitComponent.cs index 4948cb6640..36dd14f9b2 100644 --- a/Content.Shared/Disposal/Components/SharedDisposalUnitComponent.cs +++ b/Content.Shared/Disposal/Components/SharedDisposalUnitComponent.cs @@ -36,13 +36,6 @@ public abstract partial class SharedDisposalUnitComponent : Component [ViewVariables(VVAccess.ReadWrite), DataField("soundInsert")] public SoundSpecifier? InsertSound = new SoundPathSpecifier("/Audio/Effects/trashbag1.ogg"); - /// - /// Sound played when an item is thrown and misses the disposal unit. - /// - [ViewVariables(VVAccess.ReadWrite), DataField("soundMiss")] - public SoundSpecifier? MissSound = new SoundPathSpecifier("/Audio/Effects/thudswoosh.ogg"); - - /// /// State for this disposals unit. /// diff --git a/Content.Shared/DoAfter/DoAfterEvent.cs b/Content.Shared/DoAfter/DoAfterEvent.cs index c01505f9b2..bc9abdab87 100644 --- a/Content.Shared/DoAfter/DoAfterEvent.cs +++ b/Content.Shared/DoAfter/DoAfterEvent.cs @@ -73,7 +73,7 @@ public sealed partial class DoAfterAttemptEvent : CancellableEntityEvent public readonly DoAfter DoAfter; /// - /// The event that the DoAfter will raise after sucesfully finishing. Given that this event has the data + /// The event that the DoAfter will raise after successfully finishing. Given that this event has the data /// required to perform the interaction, it should also contain the data required to validate/attempt the /// interaction. /// diff --git a/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs b/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs index abd8888f58..24b3841759 100644 --- a/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs +++ b/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs @@ -101,6 +101,7 @@ private bool TryAttemptEvent(DoAfter doAfter) doAfter.AttemptEvent = _factory.CreateInstance(evType, new object[] { doAfter, args.Event }); } + args.Event.DoAfter = doAfter; if (args.EventTarget != null) RaiseLocalEvent(args.EventTarget.Value, doAfter.AttemptEvent, args.Broadcast); else diff --git a/Content.Shared/DoAfter/SharedDoAfterSystem.cs b/Content.Shared/DoAfter/SharedDoAfterSystem.cs index 3b0ba58f55..81c8c4f382 100644 --- a/Content.Shared/DoAfter/SharedDoAfterSystem.cs +++ b/Content.Shared/DoAfter/SharedDoAfterSystem.cs @@ -247,8 +247,9 @@ public bool TryStartDoAfter(DoAfterArgs args, [NotNullWhen(true)] out DoAfterId? if (args.AttemptFrequency == AttemptFrequency.StartAndEnd && !TryAttemptEvent(doAfter)) return false; - if (args.Delay <= TimeSpan.Zero || - _tag.HasTag(args.User, "InstantDoAfters")) + // TODO DO AFTER + // Why does this tag exist? Just make this a bool on the component? + if (args.Delay <= TimeSpan.Zero || _tag.HasTag(args.User, "InstantDoAfters")) { RaiseDoAfterEvents(doAfter, comp); // We don't store instant do-afters. This is just a lazy way of hiding them from client-side visuals. diff --git a/Content.Shared/Extinguisher/SharedFireExtinguisherComponent.cs b/Content.Shared/Extinguisher/SharedFireExtinguisherComponent.cs index 53d58f1d80..dbb1f6f2c4 100644 --- a/Content.Shared/Extinguisher/SharedFireExtinguisherComponent.cs +++ b/Content.Shared/Extinguisher/SharedFireExtinguisherComponent.cs @@ -1,8 +1,10 @@ using Robust.Shared.Audio; +using Robust.Shared.GameStates; using Robust.Shared.Serialization; namespace Content.Shared.Extinguisher; +[NetworkedComponent] public abstract partial class SharedFireExtinguisherComponent : Component { [DataField("refillSound")] public SoundSpecifier RefillSound = new SoundPathSpecifier("/Audio/Effects/refill.ogg"); diff --git a/Content.Shared/Eye/Blinding/Components/BlindableComponent.cs b/Content.Shared/Eye/Blinding/Components/BlindableComponent.cs index 4379d309bc..c2e73bd6b8 100644 --- a/Content.Shared/Eye/Blinding/Components/BlindableComponent.cs +++ b/Content.Shared/Eye/Blinding/Components/BlindableComponent.cs @@ -24,7 +24,11 @@ public sealed partial class BlindableComponent : Component [ViewVariables(VVAccess.ReadWrite), DataField("EyeDamage"), AutoNetworkedField] public int EyeDamage = 0; - public const int MaxDamage = 9; + [ViewVariables(VVAccess.ReadOnly), DataField] + public int MaxDamage = 9; + + [ViewVariables(VVAccess.ReadOnly), DataField] + public int MinDamage = 0; /// /// Used to ensure that this doesn't break with sandbox or admin tools. diff --git a/Content.Shared/Eye/Blinding/Systems/BlindableSystem.cs b/Content.Shared/Eye/Blinding/Systems/BlindableSystem.cs index 5f24ff2018..24eed3adcf 100644 --- a/Content.Shared/Eye/Blinding/Systems/BlindableSystem.cs +++ b/Content.Shared/Eye/Blinding/Systems/BlindableSystem.cs @@ -37,7 +37,7 @@ public void UpdateIsBlind(Entity blindable) var old = blindable.Comp.IsBlind; // Don't bother raising an event if the eye is too damaged. - if (blindable.Comp.EyeDamage >= BlindableComponent.MaxDamage) + if (blindable.Comp.EyeDamage >= blindable.Comp.MaxDamage) { blindable.Comp.IsBlind = true; } @@ -62,13 +62,31 @@ public void AdjustEyeDamage(Entity blindable, int amount) return; blindable.Comp.EyeDamage += amount; - blindable.Comp.EyeDamage = Math.Clamp(blindable.Comp.EyeDamage, 0, BlindableComponent.MaxDamage); + UpdateEyeDamage(blindable, true); + } + private void UpdateEyeDamage(Entity blindable, bool isDamageChanged) + { + if (!Resolve(blindable, ref blindable.Comp, false)) + return; + + var previousDamage = blindable.Comp.EyeDamage; + blindable.Comp.EyeDamage = Math.Clamp(blindable.Comp.EyeDamage, blindable.Comp.MinDamage, blindable.Comp.MaxDamage); Dirty(blindable); - UpdateIsBlind(blindable); + if (!isDamageChanged && previousDamage == blindable.Comp.EyeDamage) + return; + UpdateIsBlind(blindable); var ev = new EyeDamageChangedEvent(blindable.Comp.EyeDamage); RaiseLocalEvent(blindable.Owner, ref ev); } + public void SetMinDamage(Entity blindable, int amount) + { + if (!Resolve(blindable, ref blindable.Comp, false)) + return; + + blindable.Comp.MinDamage = amount; + UpdateEyeDamage(blindable, false); + } } /// diff --git a/Content.Shared/Eye/Blinding/Systems/EyeClosingSystem.cs b/Content.Shared/Eye/Blinding/Systems/EyeClosingSystem.cs index 5326af9636..9a4afaec3a 100644 --- a/Content.Shared/Eye/Blinding/Systems/EyeClosingSystem.cs +++ b/Content.Shared/Eye/Blinding/Systems/EyeClosingSystem.cs @@ -1,4 +1,3 @@ - using Content.Shared.Actions; using Content.Shared.Eye.Blinding.Components; using Robust.Shared.Audio.Systems; @@ -124,7 +123,7 @@ public void UpdateEyesClosable(Entity blindable) if (_entityManager.TryGetComponent(blindable, out var eyelids) && !eyelids.NaturallyCreated) return; - if (ev.Blur < BlurryVisionComponent.MaxMagnitude || ev.Blur >= BlindableComponent.MaxDamage) + if (ev.Blur < BlurryVisionComponent.MaxMagnitude || ev.Blur >= blindable.Comp.MaxDamage) { RemCompDeferred(blindable); return; diff --git a/Content.Server/Fax/FaxMachineComponent.cs b/Content.Shared/Fax/Components/FaxMachineComponent.cs similarity index 80% rename from Content.Server/Fax/FaxMachineComponent.cs rename to Content.Shared/Fax/Components/FaxMachineComponent.cs index a189bdc05a..5599befa31 100644 --- a/Content.Server/Fax/FaxMachineComponent.cs +++ b/Content.Shared/Fax/Components/FaxMachineComponent.cs @@ -1,12 +1,13 @@ using Content.Shared.Containers.ItemSlots; using Content.Shared.Paper; using Robust.Shared.Audio; +using Robust.Shared.GameStates; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -namespace Content.Server.Fax; +namespace Content.Shared.Fax.Components; -[RegisterComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class FaxMachineComponent : Component { /// @@ -16,6 +17,13 @@ public sealed partial class FaxMachineComponent : Component [DataField("name")] public string FaxName { get; set; } = "Unknown"; + /// + /// Sprite to use when inserting an object. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField, AutoNetworkedField] + public string InsertingState = "inserting"; + /// /// Device address of fax in network to which data will be send /// @@ -26,7 +34,7 @@ public sealed partial class FaxMachineComponent : Component /// /// Contains the item to be sent, assumes it's paper... /// - [DataField("paperSlot", required: true)] + [DataField(required: true)] public ItemSlot PaperSlot = new(); /// @@ -34,21 +42,21 @@ public sealed partial class FaxMachineComponent : Component /// This will make it visible to others on the network /// [ViewVariables(VVAccess.ReadWrite)] - [DataField("responsePings")] + [DataField] public bool ResponsePings { get; set; } = true; /// /// Should admins be notified on message receive /// [ViewVariables(VVAccess.ReadWrite)] - [DataField("notifyAdmins")] + [DataField] public bool NotifyAdmins { get; set; } = false; /// /// Should that fax receive nuke codes send by admins. Probably should be captain fax only /// [ViewVariables(VVAccess.ReadWrite)] - [DataField("receiveNukeCodes")] + [DataField] public bool ReceiveNukeCodes { get; set; } = false; /// @@ -60,19 +68,19 @@ public sealed partial class FaxMachineComponent : Component /// /// Sound to play when fax has been emagged /// - [DataField("emagSound")] + [DataField] public SoundSpecifier EmagSound = new SoundCollectionSpecifier("sparks"); /// /// Sound to play when fax printing new message /// - [DataField("printSound")] + [DataField] public SoundSpecifier PrintSound = new SoundPathSpecifier("/Audio/Machines/printer.ogg"); /// /// Sound to play when fax successfully send message /// - [DataField("sendSound")] + [DataField] public SoundSpecifier SendSound = new SoundPathSpecifier("/Audio/Machines/high_tech_confirm.ogg"); /// @@ -85,27 +93,27 @@ public sealed partial class FaxMachineComponent : Component /// Print queue of the incoming message /// [ViewVariables] - [DataField("printingQueue")] + [DataField] public Queue PrintingQueue { get; private set; } = new(); /// /// Message sending timeout /// [ViewVariables] - [DataField("sendTimeoutRemaining")] + [DataField] public float SendTimeoutRemaining; /// /// Message sending timeout /// [ViewVariables] - [DataField("sendTimeout")] + [DataField] public float SendTimeout = 5f; /// /// Remaining time of inserting animation /// - [DataField("insertingTimeRemaining")] + [DataField] public float InsertingTimeRemaining; /// @@ -117,7 +125,7 @@ public sealed partial class FaxMachineComponent : Component /// /// Remaining time of printing animation /// - [DataField("printingTimeRemaining")] + [DataField] public float PrintingTimeRemaining; /// @@ -130,13 +138,16 @@ public sealed partial class FaxMachineComponent : Component [DataDefinition] public sealed partial class FaxPrintout { - [DataField("name", required: true)] + [DataField(required: true)] public string Name { get; private set; } = default!; - [DataField("content", required: true)] + [DataField] + public string? Label { get; private set; } + + [DataField(required: true)] public string Content { get; private set; } = default!; - [DataField("prototypeId", customTypeSerializer: typeof(PrototypeIdSerializer), required: true)] + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer), required: true)] public string PrototypeId { get; private set; } = default!; [DataField("stampState")] @@ -149,10 +160,11 @@ private FaxPrintout() { } - public FaxPrintout(string content, string name, string? prototypeId = null, string? stampState = null, List? stampedBy = null) + public FaxPrintout(string content, string name, string? label = null, string? prototypeId = null, string? stampState = null, List? stampedBy = null) { Content = content; Name = name; + Label = label; PrototypeId = prototypeId ?? ""; StampState = stampState; StampedBy = stampedBy ?? new List(); diff --git a/Content.Shared/Fax/Components/FaxableObjectComponent.cs b/Content.Shared/Fax/Components/FaxableObjectComponent.cs new file mode 100644 index 0000000000..57b6e610a3 --- /dev/null +++ b/Content.Shared/Fax/Components/FaxableObjectComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Fax.Components; +/// +/// Entity with this component can be faxed. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class FaxableObjectComponent : Component +{ + /// + /// Sprite to use when inserting an object. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField, AutoNetworkedField] + public string InsertingState = "inserting"; +} diff --git a/Content.Shared/Fax/Components/FaxecuteComponent.cs b/Content.Shared/Fax/Components/FaxecuteComponent.cs new file mode 100644 index 0000000000..9c9bd03020 --- /dev/null +++ b/Content.Shared/Fax/Components/FaxecuteComponent.cs @@ -0,0 +1,19 @@ +using Content.Shared.Damage; +using Robust.Shared.GameStates; + +namespace Content.Shared.Fax.Components; + +/// +/// A fax component which stores a damage specifier for attempting to fax a mob. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class FaxecuteComponent : Component +{ + + /// + /// Type of damage dealt when entity is faxecuted. + /// + [DataField(required: true), AutoNetworkedField] + public DamageSpecifier Damage = new(); +} + diff --git a/Content.Shared/Fax/DamageOnFaxecuteEvent.cs b/Content.Shared/Fax/DamageOnFaxecuteEvent.cs new file mode 100644 index 0000000000..b36f55ab5d --- /dev/null +++ b/Content.Shared/Fax/DamageOnFaxecuteEvent.cs @@ -0,0 +1,9 @@ + +namespace Content.Shared.Fax.Components; + +/// +/// Event for killing any mob within the fax machine. +/// +/// System for handling execution of a mob within fax when copy or send attempt is made. +/// +public sealed class FaxecuteSystem : EntitySystem +{ + [Dependency] private readonly DamageableSystem _damageable = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + + public override void Initialize() + { + base.Initialize(); + } + + public void Faxecute(EntityUid uid, FaxMachineComponent component, DamageOnFaxecuteEvent? args = null) + { + var sendEntity = component.PaperSlot.Item; + if (sendEntity == null) + return; + + if (!TryComp(uid, out var faxecute)) + return; + + var damageSpec = faxecute.Damage; + _damageable.TryChangeDamage(sendEntity, damageSpec); + _popupSystem.PopupEntity(Loc.GetString("fax-machine-popup-error", ("target", uid)), uid, PopupType.LargeCaution); + return; + + } +} diff --git a/Content.Shared/Flash/Components/FlashComponent.cs b/Content.Shared/Flash/Components/FlashComponent.cs index a26e32cb70..a9098bc85a 100644 --- a/Content.Shared/Flash/Components/FlashComponent.cs +++ b/Content.Shared/Flash/Components/FlashComponent.cs @@ -12,6 +12,13 @@ public sealed partial class FlashComponent : Component [ViewVariables(VVAccess.ReadWrite)] public int FlashDuration { get; set; } = 5000; + /// + /// How long a target is stunned when a melee flash is used. + /// If null, melee flashes will not stun at all + /// + [DataField] + public TimeSpan? MeleeStunDuration = TimeSpan.FromSeconds(1.5); + [DataField("range")] [ViewVariables(VVAccess.ReadWrite)] public float Range { get; set; } = 7f; @@ -32,5 +39,8 @@ public sealed partial class FlashComponent : Component }; public bool Flashing; + + [DataField] + public float Probability = 1f; } } diff --git a/Content.Shared/Flash/Components/FlashOnTriggerComponent.cs b/Content.Shared/Flash/Components/FlashOnTriggerComponent.cs index d1270e9db7..7658ca0ae5 100644 --- a/Content.Shared/Flash/Components/FlashOnTriggerComponent.cs +++ b/Content.Shared/Flash/Components/FlashOnTriggerComponent.cs @@ -9,4 +9,5 @@ public sealed partial class FlashOnTriggerComponent : Component { [DataField] public float Range = 1.0f; [DataField] public float Duration = 8.0f; + [DataField] public float Probability = 1.0f; } diff --git a/Content.Shared/Flight/Events.cs b/Content.Shared/Flight/Events.cs new file mode 100644 index 0000000000..6666971b53 --- /dev/null +++ b/Content.Shared/Flight/Events.cs @@ -0,0 +1,24 @@ +using Robust.Shared.Serialization; +using Content.Shared.DoAfter; + +namespace Content.Shared.Flight.Events; + +[Serializable, NetSerializable] +public sealed partial class DashDoAfterEvent : SimpleDoAfterEvent { } + +[Serializable, NetSerializable] +public sealed partial class FlightDoAfterEvent : SimpleDoAfterEvent { } + +[Serializable, NetSerializable] +public sealed class FlightEvent : EntityEventArgs +{ + public NetEntity Uid { get; } + public bool IsFlying { get; } + public bool IsAnimated { get; } + public FlightEvent(NetEntity uid, bool isFlying, bool isAnimated) + { + Uid = uid; + IsFlying = isFlying; + IsAnimated = isAnimated; + } +} diff --git a/Content.Shared/Flight/FlightComponent.cs b/Content.Shared/Flight/FlightComponent.cs new file mode 100644 index 0000000000..d250744544 --- /dev/null +++ b/Content.Shared/Flight/FlightComponent.cs @@ -0,0 +1,101 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.Flight; + +/// +/// Adds an action that allows the user to become temporarily +/// weightless at the cost of stamina and hand usage. +/// +[RegisterComponent, NetworkedComponent(), AutoGenerateComponentState] +public sealed partial class FlightComponent : Component +{ + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string? ToggleAction = "ActionToggleFlight"; + + [DataField, AutoNetworkedField] + public EntityUid? ToggleActionEntity; + + /// + /// Is the user flying right now? + /// + [DataField, AutoNetworkedField] + public bool On; + + /// + /// Stamina drain per second when flying + /// + [DataField, AutoNetworkedField] + public float StaminaDrainRate = 6.0f; + + /// + /// DoAfter delay until the user becomes weightless. + /// + [DataField, AutoNetworkedField] + public float ActivationDelay = 1.0f; + + /// + /// Speed modifier while in flight + /// + [DataField, AutoNetworkedField] + public float SpeedModifier = 2.0f; + + /// + /// Path to a sound specifier or collection for the noises made during flight + /// + [DataField] + public SoundSpecifier FlapSound = new SoundCollectionSpecifier("WingFlaps"); + + /// + /// Is the flight animated? + /// + [DataField] + public bool IsAnimated = true; + + /// + /// Does the animation animate a layer?. + /// + [DataField] + public bool IsLayerAnimated; + + /// + /// Which RSI layer path does this animate? + /// + [DataField] + public string? Layer; + + /// + /// Whats the speed of the shader? + /// + [DataField] + public float ShaderSpeed = 6.0f; + + /// + /// How much are the values in the shader's calculations multiplied by? + /// + [DataField] + public float ShaderMultiplier = 0.01f; + + /// + /// What is the offset on the shader? + /// + [DataField] + public float ShaderOffset = 0.25f; + + /// + /// What animation does the flight use? + /// + + [DataField] + public string AnimationKey = "default"; + + /// + /// Time between sounds being played + /// + [DataField] + public float FlapInterval = 1.0f; + + public float TimeUntilFlap; +} diff --git a/Content.Shared/Flight/SharedFlightSystem.cs b/Content.Shared/Flight/SharedFlightSystem.cs new file mode 100644 index 0000000000..281c6d70f0 --- /dev/null +++ b/Content.Shared/Flight/SharedFlightSystem.cs @@ -0,0 +1,104 @@ +using Content.Shared.Actions; +using Content.Shared.Movement.Systems; +using Content.Shared.Damage.Systems; +using Content.Shared.Hands.Components; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Interaction.Components; +using Content.Shared.Inventory.VirtualItem; +using Content.Shared.Flight.Events; + +namespace Content.Shared.Flight; +public abstract class SharedFlightSystem : EntitySystem +{ + [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; + [Dependency] private readonly SharedVirtualItemSystem _virtualItem = default!; + [Dependency] private readonly StaminaSystem _staminaSystem = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly MovementSpeedModifierSystem _movementSpeed = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent(OnShutdown); + SubscribeLocalEvent(OnRefreshMoveSpeed); + } + + #region Core Functions + private void OnStartup(EntityUid uid, FlightComponent component, ComponentStartup args) + { + _actionsSystem.AddAction(uid, ref component.ToggleActionEntity, component.ToggleAction); + } + + private void OnShutdown(EntityUid uid, FlightComponent component, ComponentShutdown args) + { + _actionsSystem.RemoveAction(uid, component.ToggleActionEntity); + } + + public void ToggleActive(EntityUid uid, bool active, FlightComponent component) + { + component.On = active; + component.TimeUntilFlap = 0f; + _actionsSystem.SetToggled(component.ToggleActionEntity, component.On); + RaiseNetworkEvent(new FlightEvent(GetNetEntity(uid), component.On, component.IsAnimated)); + _staminaSystem.ToggleStaminaDrain(uid, component.StaminaDrainRate, active, false); + _movementSpeed.RefreshMovementSpeedModifiers(uid); + UpdateHands(uid, active); + Dirty(uid, component); + } + + private void UpdateHands(EntityUid uid, bool flying) + { + if (!TryComp(uid, out var handsComponent)) + return; + + if (flying) + BlockHands(uid, handsComponent); + else + FreeHands(uid); + } + + private void BlockHands(EntityUid uid, HandsComponent handsComponent) + { + var freeHands = 0; + foreach (var hand in _hands.EnumerateHands(uid, handsComponent)) + { + if (hand.HeldEntity == null) + { + freeHands++; + continue; + } + + // Is this entity removable? (they might have handcuffs on) + if (HasComp(hand.HeldEntity) && hand.HeldEntity != uid) + continue; + + _hands.DoDrop(uid, hand, true, handsComponent); + freeHands++; + if (freeHands == 2) + break; + } + if (_virtualItem.TrySpawnVirtualItemInHand(uid, uid, out var virtItem1)) + EnsureComp(virtItem1.Value); + + if (_virtualItem.TrySpawnVirtualItemInHand(uid, uid, out var virtItem2)) + EnsureComp(virtItem2.Value); + } + + private void FreeHands(EntityUid uid) + { + _virtualItem.DeleteInHandsMatching(uid, uid); + } + + private void OnRefreshMoveSpeed(EntityUid uid, FlightComponent component, RefreshMovementSpeedModifiersEvent args) + { + if (!component.On) + return; + + args.ModifySpeed(component.SpeedModifier, component.SpeedModifier); + } + + #endregion +} +public sealed partial class ToggleFlightEvent : InstantActionEvent { } diff --git a/Content.Shared/Follower/FollowerSystem.cs b/Content.Shared/Follower/FollowerSystem.cs index fc7cccf9bd..6c02b13076 100644 --- a/Content.Shared/Follower/FollowerSystem.cs +++ b/Content.Shared/Follower/FollowerSystem.cs @@ -247,6 +247,27 @@ public void StopAllFollowers(EntityUid uid, StopFollowingEntity(player, uid, followed); } } + + /// + /// Get the most followed entity. + /// + public EntityUid? GetMostFollowed() + { + EntityUid? picked = null; + int most = 0; + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var comp)) + { + var count = comp.Following.Count; + if (count > most) + { + picked = uid; + most = count; + } + } + + return picked; + } } public abstract class FollowEvent : EntityEventArgs diff --git a/Content.Shared/Geras/SharedGerasSystem.cs b/Content.Shared/Geras/SharedGerasSystem.cs new file mode 100644 index 0000000000..8c998371b6 --- /dev/null +++ b/Content.Shared/Geras/SharedGerasSystem.cs @@ -0,0 +1,16 @@ +using Content.Shared.Actions; + +namespace Content.Shared.Geras; + +/// +/// Geras is the god of old age, and A geras is the small morph of a slime. This system allows the slimes to have the morphing action. +/// +public abstract class SharedGerasSystem : EntitySystem +{ + +} + +public sealed partial class MorphIntoGeras : InstantActionEvent +{ + +} diff --git a/Content.Shared/Ghost/GhostComponent.cs b/Content.Shared/Ghost/GhostComponent.cs index f7717e8d23..96e9b717b9 100644 --- a/Content.Shared/Ghost/GhostComponent.cs +++ b/Content.Shared/Ghost/GhostComponent.cs @@ -101,4 +101,6 @@ public sealed partial class ToggleLightingActionEvent : InstantActionEvent { } public sealed partial class ToggleGhostHearingActionEvent : InstantActionEvent { } +public sealed partial class ToggleGhostVisibilityToAllEvent : InstantActionEvent { } + public sealed partial class BooActionEvent : InstantActionEvent { } diff --git a/Content.Shared/Ghost/Roles/GhostRolePrototype.cs b/Content.Shared/Ghost/Roles/GhostRolePrototype.cs new file mode 100644 index 0000000000..43d6432250 --- /dev/null +++ b/Content.Shared/Ghost/Roles/GhostRolePrototype.cs @@ -0,0 +1,38 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.Ghost.Roles; + +/// +/// For selectable ghostrole prototypes in ghostrole spawners. +/// +[Prototype] +public sealed partial class GhostRolePrototype : IPrototype +{ + [ViewVariables] + [IdDataField] + public string ID { get; private set; } = default!; + + /// + /// The name of the ghostrole. + /// + [DataField] + public string Name { get; set; } = default!; + + /// + /// The description of the ghostrole. + /// + [DataField] + public string Description { get; set; } = default!; + + /// + /// The entity prototype of the ghostrole + /// + [DataField] + public string EntityPrototype = default!; + + /// + /// Rules of the ghostrole + /// + [DataField] + public string Rules = default!; +} \ No newline at end of file diff --git a/Content.Shared/Ghost/Roles/GhostRolesEuiMessages.cs b/Content.Shared/Ghost/Roles/GhostRolesEuiMessages.cs index 74af1e89ec..4dd6bfa433 100644 --- a/Content.Shared/Ghost/Roles/GhostRolesEuiMessages.cs +++ b/Content.Shared/Ghost/Roles/GhostRolesEuiMessages.cs @@ -13,6 +13,20 @@ public struct GhostRoleInfo public string Description { get; set; } public string Rules { get; set; } public List? Requirements { get; set; } + + /// + public GhostRoleKind Kind { get; set; } + + /// + /// if is , specifies how many players are currently + /// in the raffle for this role. + /// + public uint RafflePlayerCount { get; set; } + + /// + /// if is , specifies when raffle finishes. + /// + public TimeSpan RaffleEndTime { get; set; } } [NetSerializable, Serializable] @@ -27,24 +41,62 @@ public GhostRolesEuiState(GhostRoleInfo[] ghostRoles) } [NetSerializable, Serializable] - public sealed class GhostRoleTakeoverRequestMessage : EuiMessageBase + public sealed class RequestGhostRoleMessage : EuiMessageBase { public uint Identifier { get; } - public GhostRoleTakeoverRequestMessage(uint identifier) + public RequestGhostRoleMessage(uint identifier) { Identifier = identifier; } } [NetSerializable, Serializable] - public sealed class GhostRoleFollowRequestMessage : EuiMessageBase + public sealed class FollowGhostRoleMessage : EuiMessageBase { public uint Identifier { get; } - public GhostRoleFollowRequestMessage(uint identifier) + public FollowGhostRoleMessage(uint identifier) { Identifier = identifier; } } + + [NetSerializable, Serializable] + public sealed class LeaveGhostRoleRaffleMessage : EuiMessageBase + { + public uint Identifier { get; } + + public LeaveGhostRoleRaffleMessage(uint identifier) + { + Identifier = identifier; + } + } + + /// + /// Determines whether a ghost role is a raffle role, and if it is, whether it's running. + /// + [NetSerializable, Serializable] + public enum GhostRoleKind + { + /// + /// Role is not a raffle role and can be taken immediately. + /// + FirstComeFirstServe, + + /// + /// Role is a raffle role, but raffle hasn't started yet. + /// + RaffleReady, + + /// + /// Role is raffle role and currently being raffled, but player hasn't joined raffle. + /// + RaffleInProgress, + + /// + /// Role is raffle role and currently being raffled, and player joined raffle. + /// + RaffleJoined + } } diff --git a/Content.Shared/Ghost/Roles/Raffles/GhostRoleRaffleSettings.cs b/Content.Shared/Ghost/Roles/Raffles/GhostRoleRaffleSettings.cs new file mode 100644 index 0000000000..a7aa757b72 --- /dev/null +++ b/Content.Shared/Ghost/Roles/Raffles/GhostRoleRaffleSettings.cs @@ -0,0 +1,30 @@ +namespace Content.Server.Ghost.Roles.Raffles; + +/// +/// Defines settings for a ghost role raffle. +/// +[DataDefinition] +public sealed partial class GhostRoleRaffleSettings +{ + /// + /// The initial duration of a raffle in seconds. This is the countdown timer's value when the raffle starts. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField(required: true)] + public uint InitialDuration { get; set; } + + /// + /// When the raffle is joined by a player, the countdown timer is extended by this value in seconds. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField(required: true)] + public uint JoinExtendsDurationBy { get; set; } + + /// + /// The maximum duration in seconds for the ghost role raffle. A raffle cannot run for longer than this + /// duration, even if extended by joiners. Must be greater than or equal to . + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField(required: true)] + public uint MaxDuration { get; set; } +} diff --git a/Content.Shared/Ghost/Roles/Raffles/GhostRoleRaffleSettingsPrototype.cs b/Content.Shared/Ghost/Roles/Raffles/GhostRoleRaffleSettingsPrototype.cs new file mode 100644 index 0000000000..f1447a0e09 --- /dev/null +++ b/Content.Shared/Ghost/Roles/Raffles/GhostRoleRaffleSettingsPrototype.cs @@ -0,0 +1,22 @@ +using Content.Server.Ghost.Roles.Raffles; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Ghost.Roles.Raffles; + +/// +/// Allows specifying the settings for a ghost role raffle as a prototype. +/// +[Prototype("ghostRoleRaffleSettings")] +public sealed class GhostRoleRaffleSettingsPrototype : IPrototype +{ + /// + [IdDataField] + public string ID { get; private set; } = default!; + + /// + /// The settings for a ghost role raffle. + /// + /// + [DataField(required: true)] + public GhostRoleRaffleSettings Settings { get; private set; } = new(); +} diff --git a/Content.Shared/Ghost/SharedGhostSystem.cs b/Content.Shared/Ghost/SharedGhostSystem.cs index ede37bda2d..6f7370fe58 100644 --- a/Content.Shared/Ghost/SharedGhostSystem.cs +++ b/Content.Shared/Ghost/SharedGhostSystem.cs @@ -127,6 +127,12 @@ public GhostWarpToTargetRequestEvent(NetEntity target) } } + /// + /// A client to server request for their ghost to be warped to the most followed entity. + /// + [Serializable, NetSerializable] + public sealed class GhostnadoRequestEvent : EntityEventArgs; + /// /// A client to server request for their ghost to return to body /// @@ -149,8 +155,6 @@ public GhostUpdateGhostRoleCountEvent(int availableGhostRoleCount) } } - // WD EDIT START [Serializable, NetSerializable] public sealed class GhostReturnToRoundRequest : EntityEventArgs; - // WD EDIT END } diff --git a/Content.Shared/Gravity/SharedFloatingVisualizerSystem.cs b/Content.Shared/Gravity/SharedFloatingVisualizerSystem.cs index 57136116ca..8fe9e00e7e 100644 --- a/Content.Shared/Gravity/SharedFloatingVisualizerSystem.cs +++ b/Content.Shared/Gravity/SharedFloatingVisualizerSystem.cs @@ -1,5 +1,6 @@ using System.Numerics; using Robust.Shared.Map; +using Content.Shared.Flight.Events; namespace Content.Shared.Gravity; @@ -17,6 +18,7 @@ public override void Initialize() SubscribeLocalEvent(OnComponentStartup); SubscribeLocalEvent(OnGravityChanged); SubscribeLocalEvent(OnEntParentChanged); + SubscribeNetworkEvent(OnFlight); } /// @@ -62,10 +64,24 @@ private void OnGravityChanged(ref GravityChangedEvent args) } } + private void OnFlight(FlightEvent args) + { + var uid = GetEntity(args.Uid); + if (!TryComp(uid, out var floating)) + return; + floating.CanFloat = args.IsFlying; + + if (!args.IsFlying + || !args.IsAnimated) + return; + + FloatAnimation(uid, floating.Offset, floating.AnimationKey, floating.AnimationTime); + } + private void OnEntParentChanged(EntityUid uid, FloatingVisualsComponent component, ref EntParentChangedMessage args) { var transform = args.Transform; if (CanFloat(uid, component, transform)) FloatAnimation(uid, component.Offset, component.AnimationKey, component.AnimationTime); } -} +} \ No newline at end of file diff --git a/Content.Shared/Gravity/SharedGravitySystem.cs b/Content.Shared/Gravity/SharedGravitySystem.cs index 100d2ee74f..55187bf14a 100644 --- a/Content.Shared/Gravity/SharedGravitySystem.cs +++ b/Content.Shared/Gravity/SharedGravitySystem.cs @@ -8,6 +8,7 @@ using Robust.Shared.Physics.Components; using Robust.Shared.Serialization; using Robust.Shared.Timing; +using Content.Shared.Flight; namespace Content.Shared.Gravity { @@ -24,6 +25,9 @@ public bool IsWeightless(EntityUid uid, PhysicsComponent? body = null, Transform if ((body?.BodyType & (BodyType.Static | BodyType.Kinematic)) != 0) return false; + if (TryComp(uid, out var flying) && flying.On) + return true; + if (TryComp(uid, out var ignoreGravityComponent)) return ignoreGravityComponent.Weightless; @@ -142,4 +146,4 @@ public GravityComponentState(bool enabled) } } } -} +} \ No newline at end of file diff --git a/Content.Shared/GridPreloader/Prototypes/PreloadedGridPrototype.cs b/Content.Shared/GridPreloader/Prototypes/PreloadedGridPrototype.cs new file mode 100644 index 0000000000..89da9dfb8f --- /dev/null +++ b/Content.Shared/GridPreloader/Prototypes/PreloadedGridPrototype.cs @@ -0,0 +1,21 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Shared.GridPreloader.Prototypes; + +/// +/// Creating this prototype will automatically load the grid at the specified path at the beginning of the round, +/// and allow the GridPreloader system to load them in the middle of the round. This is needed for optimization, +/// because loading grids in the middle of a round causes the server to lag. +/// +[Prototype("preloadedGrid")] +public sealed partial class PreloadedGridPrototype : IPrototype +{ + [IdDataField] public string ID { get; } = string.Empty; + + [DataField(required: true)] + public ResPath Path; + + [DataField] + public int Copies = 1; +} diff --git a/Content.Shared/GridPreloader/Systems/SharedGridPreloaderSystem.cs b/Content.Shared/GridPreloader/Systems/SharedGridPreloaderSystem.cs new file mode 100644 index 0000000000..04c994adf2 --- /dev/null +++ b/Content.Shared/GridPreloader/Systems/SharedGridPreloaderSystem.cs @@ -0,0 +1,4 @@ +namespace Content.Shared.GridPreloader.Systems; +public abstract class SharedGridPreloaderSystem : EntitySystem +{ +} diff --git a/Content.Shared/Hands/Components/HandsComponent.cs b/Content.Shared/Hands/Components/HandsComponent.cs index f1f25a69f7..919d55f294 100644 --- a/Content.Shared/Hands/Components/HandsComponent.cs +++ b/Content.Shared/Hands/Components/HandsComponent.cs @@ -126,9 +126,43 @@ public HandsComponentState(HandsComponent handComp) /// /// What side of the body this hand is on. /// +/// +/// public enum HandLocation : byte { Left, Middle, Right } + +/// +/// What side of the UI a hand is on. +/// +/// +/// +public enum HandUILocation : byte +{ + Left, + Right +} + +/// +/// Helper functions for working with . +/// +public static class HandLocationExt +{ + /// + /// Convert a into the appropriate . + /// This maps "middle" hands to . + /// + public static HandUILocation GetUILocation(this HandLocation location) + { + return location switch + { + HandLocation.Left => HandUILocation.Left, + HandLocation.Middle => HandUILocation.Right, + HandLocation.Right => HandUILocation.Right, + _ => throw new ArgumentOutOfRangeException(nameof(location), location, null) + }; + } +} diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs index 32339eb03a..6d4d332479 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs @@ -8,6 +8,7 @@ using Robust.Shared.Input.Binding; using Robust.Shared.Map; using Robust.Shared.Player; +using Robust.Shared.Utility; namespace Content.Shared.Hands.EntitySystems; @@ -181,27 +182,21 @@ public bool TryMoveHeldEntityToActiveHand(EntityUid uid, string handName, bool c } //TODO: Actually shows all items/clothing/etc. - private void HandleExamined(EntityUid uid, HandsComponent handsComp, ExaminedEvent args) + private void HandleExamined(EntityUid examinedUid, HandsComponent handsComp, ExaminedEvent args) { - var held = EnumerateHeld(uid, handsComp) - .Where(x => !HasComp(x)).ToList(); + var heldItemNames = EnumerateHeld(examinedUid, handsComp) + .Where(entity => !HasComp(entity)) + .Select(item => FormattedMessage.EscapeText(Identity.Name(item, EntityManager))) + .Select(itemName => Loc.GetString("comp-hands-examine-wrapper", ("item", itemName))) + .ToList(); + + var locKey = heldItemNames.Count != 0 ? "comp-hands-examine" : "comp-hands-examine-empty"; + var locUser = ("user", Identity.Entity(examinedUid, EntityManager)); + var locItems = ("items", ContentLocalizationManager.FormatList(heldItemNames)); using (args.PushGroup(nameof(HandsComponent))) { - if (!held.Any()) - { - args.PushText(Loc.GetString("comp-hands-examine-empty", - ("user", Identity.Entity(uid, EntityManager)))); - return; - } - - var heldList = ContentLocalizationManager.FormatList(held - .Select(x => Loc.GetString("comp-hands-examine-wrapper", - ("item", Identity.Entity(x, EntityManager)))).ToList()); - - args.PushMarkup(Loc.GetString("comp-hands-examine", - ("user", Identity.Entity(uid, EntityManager)), - ("items", heldList))); + args.PushMarkup(Loc.GetString(locKey, locUser, locItems)); } } } diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.cs index b72a7c4eb3..fd732009e9 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.cs @@ -87,7 +87,6 @@ public virtual void RemoveHand(EntityUid uid, string handName, HandsComponent? h /// /// /// - public void RemoveHands(EntityUid uid, HandsComponent? handsComp = null) { if (!Resolve(uid, ref handsComp)) @@ -137,6 +136,43 @@ public bool TryGetEmptyHand(EntityUid uid, [NotNullWhen(true)] out Hand? emptyHa return false; } + public bool TryGetActiveHand(Entity entity, [NotNullWhen(true)] out Hand? hand) + { + if (!Resolve(entity, ref entity.Comp, false)) + { + hand = null; + return false; + } + + hand = entity.Comp.ActiveHand; + return hand != null; + } + + public bool TryGetActiveItem(Entity entity, [NotNullWhen(true)] out EntityUid? item) + { + if (!TryGetActiveHand(entity, out var hand)) + { + item = null; + return false; + } + + item = hand.HeldEntity; + return item != null; + } + + public Hand? GetActiveHand(Entity entity) + { + if (!Resolve(entity, ref entity.Comp)) + return null; + + return entity.Comp.ActiveHand; + } + + public EntityUid? GetActiveItem(Entity entity) + { + return GetActiveHand(entity)?.HeldEntity; + } + /// /// Enumerate over hands, starting with the currently active hand. /// @@ -227,9 +263,17 @@ public bool SetActiveHand(EntityUid uid, Hand? hand, HandsComponent? handComp = return true; } - public bool IsHolding(EntityUid uid, EntityUid? entity, [NotNullWhen(true)] out Hand? inHand, HandsComponent? handsComp = null) + public bool IsHolding(Entity entity, [NotNullWhen(true)] EntityUid? item) + { + return IsHolding(entity, item, out _, entity); + } + + public bool IsHolding(EntityUid uid, [NotNullWhen(true)] EntityUid? entity, [NotNullWhen(true)] out Hand? inHand, HandsComponent? handsComp = null) { inHand = null; + if (entity == null) + return false; + if (!Resolve(uid, ref handsComp, false)) return false; diff --git a/Content.Shared/HealthExaminable/HealthExaminableComponent.cs b/Content.Shared/HealthExaminable/HealthExaminableComponent.cs new file mode 100644 index 0000000000..88a79782a5 --- /dev/null +++ b/Content.Shared/HealthExaminable/HealthExaminableComponent.cs @@ -0,0 +1,27 @@ +using Content.Shared.Damage.Prototypes; +using Content.Shared.FixedPoint; +using Robust.Shared.Prototypes; + +namespace Content.Shared.HealthExaminable; + +[RegisterComponent, Access(typeof(HealthExaminableSystem))] +public sealed partial class HealthExaminableComponent : Component +{ + // + // The thresholds for determining the examine text for certain amounts of damage. + // These are calculated as a percentage of the entity's critical threshold. + // + public List Thresholds = new() + { FixedPoint2.New(0.10), FixedPoint2.New(0.25), FixedPoint2.New(0.50), FixedPoint2.New(0.75) }; + + [DataField(required: true)] + public HashSet> ExaminableTypes = default!; + + /// + /// Health examine text is automatically generated through creating loc string IDs, in the form: + /// `health-examine-[prefix]-[type]-[threshold]` + /// This part determines the prefix. + /// + [DataField] + public string LocPrefix = "carbon"; +} diff --git a/Content.Server/HealthExaminable/HealthExaminableSystem.cs b/Content.Shared/HealthExaminable/HealthExaminableSystem.cs similarity index 96% rename from Content.Server/HealthExaminable/HealthExaminableSystem.cs rename to Content.Shared/HealthExaminable/HealthExaminableSystem.cs index 89291726fb..39addfc941 100644 --- a/Content.Server/HealthExaminable/HealthExaminableSystem.cs +++ b/Content.Shared/HealthExaminable/HealthExaminableSystem.cs @@ -1,4 +1,3 @@ -using Content.Server.Traits.Assorted; using Content.Shared.Damage; using Content.Shared.Examine; using Content.Shared.FixedPoint; @@ -8,8 +7,9 @@ using Content.Shared.Verbs; using Robust.Shared.Utility; using System.Linq; +using Content.Shared.Traits.Assorted.Components; -namespace Content.Server.HealthExaminable; +namespace Content.Shared.HealthExaminable; public sealed class HealthExaminableSystem : EntitySystem { @@ -53,7 +53,7 @@ private void OnGetExamineVerbs(EntityUid uid, HealthExaminableComponent componen args.Verbs.Add(verb); } - private FormattedMessage CreateMarkup(EntityUid uid, HealthExaminableComponent component, DamageableComponent damage) + public FormattedMessage CreateMarkup(EntityUid uid, HealthExaminableComponent component, DamageableComponent damage) { var msg = new FormattedMessage(); @@ -92,20 +92,14 @@ private FormattedMessage CreateMarkup(EntityUid uid, HealthExaminableComponent c continue; if (!first) - { msg.PushNewline(); - } else - { first = false; - } msg.AddMarkup(chosenLocStr); } if (msg.IsEmpty) - { msg.AddMarkup(Loc.GetString($"health-examinable-{component.LocPrefix}-none")); - } // Anything else want to add on to this? RaiseLocalEvent(uid, new HealthBeingExaminedEvent(msg, false), true); diff --git a/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs b/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs index c9292337d7..c0f9b8ac00 100644 --- a/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs +++ b/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs @@ -32,6 +32,9 @@ public sealed partial class HumanoidAppearanceComponent : Component [DataField, AutoNetworkedField] public int Age = 18; + [DataField, AutoNetworkedField] + public string CustomSpecieName = ""; + /// /// Any custom base layers this humanoid might have. See: /// limb transplants (potentially), robotic arms, etc. @@ -85,6 +88,12 @@ public sealed partial class HumanoidAppearanceComponent : Component [ViewVariables(VVAccess.ReadOnly)] public Color? CachedFacialHairColor; + /// + /// Which layers of this humanoid that should be hidden on equipping a corresponding item.. + /// + [DataField] + public HashSet HideLayersOnEquip = [HumanoidVisualLayers.Hair]; + /// /// DeltaV - let paradox anomaly be cloned /// diff --git a/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs b/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs index f1f7de5c11..fc44ed5e3b 100644 --- a/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs +++ b/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs @@ -5,262 +5,286 @@ using Robust.Shared.Random; using Robust.Shared.Serialization; -namespace Content.Shared.Humanoid +namespace Content.Shared.Humanoid; + +[DataDefinition] +[Serializable, NetSerializable] +public sealed partial class HumanoidCharacterAppearance : ICharacterAppearance, IEquatable { - [DataDefinition] - [Serializable, NetSerializable] - public sealed partial class HumanoidCharacterAppearance : ICharacterAppearance - { - public HumanoidCharacterAppearance(string hairStyleId, - Color hairColor, - string facialHairStyleId, - Color facialHairColor, - Color eyeColor, - Color skinColor, - List markings) - { - HairStyleId = hairStyleId; - HairColor = ClampColor(hairColor); - FacialHairStyleId = facialHairStyleId; - FacialHairColor = ClampColor(facialHairColor); - EyeColor = ClampColor(eyeColor); - SkinColor = ClampColor(skinColor); - Markings = markings; - } + [DataField("hair")] + public string HairStyleId { get; set; } = HairStyles.DefaultHairStyle; - [DataField("hair")] - public string HairStyleId { get; private set; } + [DataField] + public Color HairColor { get; set; } = Color.Black; - [DataField("hairColor")] - public Color HairColor { get; private set; } + [DataField("facialHair")] + public string FacialHairStyleId { get; set; } = HairStyles.DefaultFacialHairStyle; - [DataField("facialHair")] - public string FacialHairStyleId { get; private set; } + [DataField] + public Color FacialHairColor { get; set; } = Color.Black; - [DataField("facialHairColor")] - public Color FacialHairColor { get; private set; } + [DataField] + public Color EyeColor { get; private set; } - [DataField("eyeColor")] - public Color EyeColor { get; private set; } + [DataField] + public Color SkinColor { get; private set; } - [DataField("skinColor")] - public Color SkinColor { get; private set; } + [DataField] + public List Markings { get; private set; } = new(); - [DataField("markings")] - public List Markings { get; private set; } + public HumanoidCharacterAppearance(string hairStyleId, + Color hairColor, + string facialHairStyleId, + Color facialHairColor, + Color eyeColor, + Color skinColor, + List markings) + { + HairStyleId = hairStyleId; + HairColor = ClampColor(hairColor); + FacialHairStyleId = facialHairStyleId; + FacialHairColor = ClampColor(facialHairColor); + EyeColor = ClampColor(eyeColor); + SkinColor = ClampColor(skinColor); + Markings = markings; + } - public HumanoidCharacterAppearance WithHairStyleName(string newName) - { - return new(newName, HairColor, FacialHairStyleId, FacialHairColor, EyeColor, SkinColor, Markings); - } + public HumanoidCharacterAppearance(HumanoidCharacterAppearance other) + : this( + other.HairStyleId, + other.HairColor, + other.FacialHairStyleId, + other.FacialHairColor, + other.EyeColor, + other.SkinColor, + new(other.Markings)) + { - public HumanoidCharacterAppearance WithHairColor(Color newColor) - { - return new(HairStyleId, newColor, FacialHairStyleId, FacialHairColor, EyeColor, SkinColor, Markings); - } + } - public HumanoidCharacterAppearance WithFacialHairStyleName(string newName) - { - return new(HairStyleId, HairColor, newName, FacialHairColor, EyeColor, SkinColor, Markings); - } + public HumanoidCharacterAppearance WithHairStyleName(string newName) + { + return new(newName, HairColor, FacialHairStyleId, FacialHairColor, EyeColor, SkinColor, Markings); + } - public HumanoidCharacterAppearance WithFacialHairColor(Color newColor) - { - return new(HairStyleId, HairColor, FacialHairStyleId, newColor, EyeColor, SkinColor, Markings); - } + public HumanoidCharacterAppearance WithHairColor(Color newColor) + { + return new(HairStyleId, newColor, FacialHairStyleId, FacialHairColor, EyeColor, SkinColor, Markings); + } - public HumanoidCharacterAppearance WithEyeColor(Color newColor) - { - return new(HairStyleId, HairColor, FacialHairStyleId, FacialHairColor, newColor, SkinColor, Markings); - } + public HumanoidCharacterAppearance WithFacialHairStyleName(string newName) + { + return new(HairStyleId, HairColor, newName, FacialHairColor, EyeColor, SkinColor, Markings); + } - public HumanoidCharacterAppearance WithSkinColor(Color newColor) - { - return new(HairStyleId, HairColor, FacialHairStyleId, FacialHairColor, EyeColor, newColor, Markings); - } + public HumanoidCharacterAppearance WithFacialHairColor(Color newColor) + { + return new(HairStyleId, HairColor, FacialHairStyleId, newColor, EyeColor, SkinColor, Markings); + } - public HumanoidCharacterAppearance WithMarkings(List newMarkings) + public HumanoidCharacterAppearance WithEyeColor(Color newColor) + { + return new(HairStyleId, HairColor, FacialHairStyleId, FacialHairColor, newColor, SkinColor, Markings); + } + + public HumanoidCharacterAppearance WithSkinColor(Color newColor) + { + return new(HairStyleId, HairColor, FacialHairStyleId, FacialHairColor, EyeColor, newColor, Markings); + } + + public HumanoidCharacterAppearance WithMarkings(List newMarkings) + { + return new(HairStyleId, HairColor, FacialHairStyleId, FacialHairColor, EyeColor, SkinColor, newMarkings); + } + + public static HumanoidCharacterAppearance DefaultWithSpecies(string species) + { + var speciesPrototype = IoCManager.Resolve().Index(species); + var skinColor = speciesPrototype.SkinColoration switch { - return new(HairStyleId, HairColor, FacialHairStyleId, FacialHairColor, EyeColor, SkinColor, newMarkings); - } + HumanoidSkinColor.HumanToned => Humanoid.SkinColor.HumanSkinTone(speciesPrototype.DefaultHumanSkinTone), + HumanoidSkinColor.Hues => speciesPrototype.DefaultSkinTone, + HumanoidSkinColor.TintedHues => Humanoid.SkinColor.TintedHues(speciesPrototype.DefaultSkinTone), + HumanoidSkinColor.VoxFeathers => Humanoid.SkinColor.ClosestVoxColor(speciesPrototype.DefaultSkinTone), + HumanoidSkinColor.TintedHuesSkin => Humanoid.SkinColor.TintedHuesSkin(speciesPrototype.DefaultSkinTone, speciesPrototype.DefaultSkinTone), + _ => Humanoid.SkinColor.ValidHumanSkinTone, + }; - public HumanoidCharacterAppearance() : this( + return new( HairStyles.DefaultHairStyle, Color.Black, HairStyles.DefaultFacialHairStyle, Color.Black, Color.Black, - Humanoid.SkinColor.ValidHumanSkinTone, + skinColor, new () - ) - { - } - - public static HumanoidCharacterAppearance DefaultWithSpecies(string species) - { - var speciesPrototype = IoCManager.Resolve().Index(species); - var skinColor = speciesPrototype.SkinColoration switch - { - HumanoidSkinColor.HumanToned => Humanoid.SkinColor.HumanSkinTone(speciesPrototype.DefaultHumanSkinTone), - HumanoidSkinColor.Hues => speciesPrototype.DefaultSkinTone, - HumanoidSkinColor.TintedHues => Humanoid.SkinColor.TintedHues(speciesPrototype.DefaultSkinTone), - // DeltaV - Blended tint for moths - HumanoidSkinColor.TintedHuesSkin => Humanoid.SkinColor.TintedHuesSkin(speciesPrototype.DefaultSkinTone, speciesPrototype.DefaultSkinTone), - _ => Humanoid.SkinColor.ValidHumanSkinTone - }; - - return new( - HairStyles.DefaultHairStyle, - Color.Black, - HairStyles.DefaultFacialHairStyle, - Color.Black, - Color.Black, - skinColor, - new () - ); - } - - private static IReadOnlyList RealisticEyeColors = new List - { - Color.Brown, - Color.Gray, - Color.Azure, - Color.SteelBlue, - Color.Black - }; + ); + } - public static HumanoidCharacterAppearance Random(string species, Sex sex) - { - var random = IoCManager.Resolve(); - var markingManager = IoCManager.Resolve(); - var hairStyles = markingManager.MarkingsByCategoryAndSpecies(MarkingCategories.Hair, species).Keys.ToList(); - var facialHairStyles = markingManager.MarkingsByCategoryAndSpecies(MarkingCategories.FacialHair, species).Keys.ToList(); + private static IReadOnlyList RealisticEyeColors = new List + { + Color.Brown, + Color.Gray, + Color.Azure, + Color.SteelBlue, + Color.Black + }; + + public static HumanoidCharacterAppearance Random(string species, Sex sex) + { + var random = IoCManager.Resolve(); + var markingManager = IoCManager.Resolve(); + var hairStyles = markingManager.MarkingsByCategoryAndSpecies(MarkingCategories.Hair, species).Keys.ToList(); + var facialHairStyles = markingManager.MarkingsByCategoryAndSpecies(MarkingCategories.FacialHair, species).Keys.ToList(); - var newHairStyle = hairStyles.Count > 0 - ? random.Pick(hairStyles) - : HairStyles.DefaultHairStyle; + var newHairStyle = hairStyles.Count > 0 + ? random.Pick(hairStyles) + : HairStyles.DefaultHairStyle; - var newFacialHairStyle = facialHairStyles.Count == 0 || sex == Sex.Female - ? HairStyles.DefaultFacialHairStyle - : random.Pick(facialHairStyles); + var newFacialHairStyle = facialHairStyles.Count == 0 || sex == Sex.Female + ? HairStyles.DefaultFacialHairStyle + : random.Pick(facialHairStyles); - var newHairColor = random.Pick(HairStyles.RealisticHairColors); - newHairColor = newHairColor - .WithRed(RandomizeColor(newHairColor.R)) - .WithGreen(RandomizeColor(newHairColor.G)) - .WithBlue(RandomizeColor(newHairColor.B)); + var newHairColor = random.Pick(HairStyles.RealisticHairColors); + newHairColor = newHairColor + .WithRed(RandomizeColor(newHairColor.R)) + .WithGreen(RandomizeColor(newHairColor.G)) + .WithBlue(RandomizeColor(newHairColor.B)); - // TODO: Add random markings + // TODO: Add random markings - var newEyeColor = random.Pick(RealisticEyeColors); + var newEyeColor = random.Pick(RealisticEyeColors); - var skinType = IoCManager.Resolve().Index(species).SkinColoration; + var skinType = IoCManager.Resolve().Index(species).SkinColoration; var skinTone = IoCManager.Resolve().Index(species).DefaultSkinTone; // DeltaV, required for tone blending - var newSkinColor = Humanoid.SkinColor.ValidHumanSkinTone; - switch (skinType) - { - case HumanoidSkinColor.HumanToned: - var tone = random.Next(0, 100); - newSkinColor = Humanoid.SkinColor.HumanSkinTone(tone); - break; - case HumanoidSkinColor.Hues: - case HumanoidSkinColor.TintedHues: - var rbyte = random.NextByte(); - var gbyte = random.NextByte(); - var bbyte = random.NextByte(); - newSkinColor = new Color(rbyte, gbyte, bbyte); - break; - case HumanoidSkinColor.TintedHuesSkin: // DeltaV, tone blending - rbyte = random.NextByte(); - gbyte = random.NextByte(); - bbyte = random.NextByte(); - newSkinColor = new Color(rbyte, gbyte, bbyte); - break; - } - - if (skinType == HumanoidSkinColor.TintedHues) - { + var newSkinColor = new Color(random.NextFloat(1), random.NextFloat(1), random.NextFloat(1), 1); + switch (skinType) + { + case HumanoidSkinColor.HumanToned: + var tone = Math.Round(Humanoid.SkinColor.HumanSkinToneFromColor(newSkinColor)); + newSkinColor = Humanoid.SkinColor.HumanSkinTone((int)tone); + break; + case HumanoidSkinColor.Hues: + break; + case HumanoidSkinColor.TintedHues: newSkinColor = Humanoid.SkinColor.ValidTintedHuesSkinTone(newSkinColor); - } - - if (skinType == HumanoidSkinColor.TintedHuesSkin) // DeltaV, tone blending - { + break; + case HumanoidSkinColor.TintedHuesSkin: newSkinColor = Humanoid.SkinColor.ValidTintedHuesSkinTone(skinTone, newSkinColor); - } + break; + case HumanoidSkinColor.VoxFeathers: + newSkinColor = Humanoid.SkinColor.ProportionalVoxColor(newSkinColor); + break; + } - return new HumanoidCharacterAppearance(newHairStyle, newHairColor, newFacialHairStyle, newHairColor, newEyeColor, newSkinColor, new ()); + return new HumanoidCharacterAppearance(newHairStyle, newHairColor, newFacialHairStyle, newHairColor, newEyeColor, newSkinColor, new ()); - float RandomizeColor(float channel) - { - return MathHelper.Clamp01(channel + random.Next(-25, 25) / 100f); - } + float RandomizeColor(float channel) + { + return MathHelper.Clamp01(channel + random.Next(-25, 25) / 100f); } + } + + public static Color ClampColor(Color color) + { + return new(color.RByte, color.GByte, color.BByte); + } + + public static HumanoidCharacterAppearance EnsureValid(HumanoidCharacterAppearance appearance, string species, Sex sex) + { + var hairStyleId = appearance.HairStyleId; + var facialHairStyleId = appearance.FacialHairStyleId; + + var hairColor = ClampColor(appearance.HairColor); + var facialHairColor = ClampColor(appearance.FacialHairColor); + var eyeColor = ClampColor(appearance.EyeColor); - public static Color ClampColor(Color color) + var proto = IoCManager.Resolve(); + var markingManager = IoCManager.Resolve(); + + if (!markingManager.MarkingsByCategory(MarkingCategories.Hair).ContainsKey(hairStyleId)) { - return new(color.RByte, color.GByte, color.BByte); + hairStyleId = HairStyles.DefaultHairStyle; } - public static HumanoidCharacterAppearance EnsureValid(HumanoidCharacterAppearance appearance, string species, Sex sex) + if (!markingManager.MarkingsByCategory(MarkingCategories.FacialHair).ContainsKey(facialHairStyleId)) { - var hairStyleId = appearance.HairStyleId; - var facialHairStyleId = appearance.FacialHairStyleId; - - var hairColor = ClampColor(appearance.HairColor); - var facialHairColor = ClampColor(appearance.FacialHairColor); - var eyeColor = ClampColor(appearance.EyeColor); + facialHairStyleId = HairStyles.DefaultFacialHairStyle; + } - var proto = IoCManager.Resolve(); - var markingManager = IoCManager.Resolve(); + var markingSet = new MarkingSet(); + var skinColor = appearance.SkinColor; + if (proto.TryIndex(species, out SpeciesPrototype? speciesProto)) + { + markingSet = new MarkingSet(appearance.Markings, speciesProto.MarkingPoints, markingManager, proto); + markingSet.EnsureValid(markingManager); - if (!markingManager.MarkingsByCategory(MarkingCategories.Hair).ContainsKey(hairStyleId)) + if (!Humanoid.SkinColor.VerifySkinColor(speciesProto.SkinColoration, skinColor)) { - hairStyleId = HairStyles.DefaultHairStyle; + skinColor = Humanoid.SkinColor.ValidSkinTone(speciesProto.SkinColoration, skinColor); } - if (!markingManager.MarkingsByCategory(MarkingCategories.FacialHair).ContainsKey(facialHairStyleId)) - { - facialHairStyleId = HairStyles.DefaultFacialHairStyle; - } + markingSet.EnsureSpecies(species, skinColor, markingManager); + markingSet.EnsureSexes(sex, markingManager); + } - var markingSet = new MarkingSet(); - var skinColor = appearance.SkinColor; - if (proto.TryIndex(species, out SpeciesPrototype? speciesProto)) - { - markingSet = new MarkingSet(appearance.Markings, speciesProto.MarkingPoints, markingManager, proto); - markingSet.EnsureValid(markingManager); + return new HumanoidCharacterAppearance( + hairStyleId, + hairColor, + facialHairStyleId, + facialHairColor, + eyeColor, + skinColor, + markingSet.GetForwardEnumerator().ToList()); + } - if (!Humanoid.SkinColor.VerifySkinColor(speciesProto.SkinColoration, skinColor)) - { - skinColor = Humanoid.SkinColor.ValidSkinTone(speciesProto.SkinColoration, skinColor); - } + public bool MemberwiseEquals(ICharacterAppearance maybeOther) + { + return + maybeOther is HumanoidCharacterAppearance other + && HairStyleId == other.HairStyleId + && HairColor.Equals(other.HairColor) + && FacialHairStyleId == other.FacialHairStyleId + && FacialHairColor.Equals(other.FacialHairColor) + && EyeColor.Equals(other.EyeColor) + && SkinColor.Equals(other.SkinColor) + && Markings.SequenceEqual(other.Markings); + } - markingSet.EnsureSpecies(species, skinColor, markingManager); - markingSet.EnsureSexes(sex, markingManager); - } + public bool Equals(HumanoidCharacterAppearance? other) + { + if (ReferenceEquals(null, other)) + return false; + if (ReferenceEquals(this, other)) + return true; + return HairStyleId == other.HairStyleId + && HairColor.Equals(other.HairColor) + && FacialHairStyleId == other.FacialHairStyleId + && FacialHairColor.Equals(other.FacialHairColor) + && EyeColor.Equals(other.EyeColor) + && SkinColor.Equals(other.SkinColor) + && Markings.SequenceEqual(other.Markings); + } - return new HumanoidCharacterAppearance( - hairStyleId, - hairColor, - facialHairStyleId, - facialHairColor, - eyeColor, - skinColor, - markingSet.GetForwardEnumerator().ToList()); - } + public override bool Equals(object? obj) + { + return ReferenceEquals(this, obj) + || obj is HumanoidCharacterAppearance other + && Equals(other); + } - public bool MemberwiseEquals(ICharacterAppearance maybeOther) - { - if (maybeOther is not HumanoidCharacterAppearance other) return false; - if (HairStyleId != other.HairStyleId) return false; - if (!HairColor.Equals(other.HairColor)) return false; - if (FacialHairStyleId != other.FacialHairStyleId) return false; - if (!FacialHairColor.Equals(other.FacialHairColor)) return false; - if (!EyeColor.Equals(other.EyeColor)) return false; - if (!SkinColor.Equals(other.SkinColor)) return false; - if (!Markings.SequenceEqual(other.Markings)) return false; - return true; - } + public override int GetHashCode() + { + return HashCode.Combine( + HairStyleId, + HairColor, + FacialHairStyleId, + FacialHairColor, + EyeColor, + SkinColor, + Markings); } + + public HumanoidCharacterAppearance Clone() => new(this); } diff --git a/Content.Shared/Humanoid/HumanoidProfileExport.cs b/Content.Shared/Humanoid/HumanoidProfileExport.cs new file mode 100644 index 0000000000..4f020cce19 --- /dev/null +++ b/Content.Shared/Humanoid/HumanoidProfileExport.cs @@ -0,0 +1,17 @@ +using Content.Shared.Preferences; + +namespace Content.Shared.Humanoid; + +/// Holds all of the data for importing / exporting character profiles. +[DataDefinition] +public sealed partial class HumanoidProfileExport +{ + [DataField] + public string ForkId; + + [DataField] + public int Version = 1; + + [DataField(required: true)] + public HumanoidCharacterProfile Profile = default!; +} diff --git a/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs b/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs index 4101363475..005315c8e3 100644 --- a/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs +++ b/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs @@ -75,6 +75,12 @@ public sealed partial class SpeciesPrototype : IPrototype [DataField(required: true)] public EntProtoId DollPrototype { get; private set; } + /// + /// Allow Custom Specie Name for this Specie. + /// + [DataField] + public Boolean CustomName { get; private set; } = false; + /// /// Method of skin coloration used by the species. /// @@ -121,6 +127,12 @@ public sealed partial class SpeciesPrototype : IPrototype [DataField] public int MaxAge = 120; + /// + /// The minimum height and width ratio for this species + /// + [DataField] + public float SizeRatio = 1.2f; + /// /// The minimum height for this species /// diff --git a/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs b/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs index ce49f80af3..dc1e6b736c 100644 --- a/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs +++ b/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs @@ -1,3 +1,4 @@ +using System.IO; using System.Linq; using System.Numerics; using Content.Shared.Decals; @@ -7,9 +8,17 @@ using Content.Shared.IdentityManagement; using Content.Shared.Preferences; using Content.Shared.HeightAdjust; +using Microsoft.Extensions.Configuration; +using Robust.Shared; +using Robust.Shared.Configuration; using Robust.Shared.GameObjects.Components.Localization; using Robust.Shared.Network; +using Robust.Shared.Player; using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.Manager; +using Robust.Shared.Serialization.Markdown; +using Robust.Shared.Utility; +using YamlDotNet.RepresentationModel; namespace Content.Shared.Humanoid; @@ -24,9 +33,11 @@ namespace Content.Shared.Humanoid; /// public abstract class SharedHumanoidAppearanceSystem : EntitySystem { + [Dependency] private readonly IConfigurationManager _cfgManager = default!; [Dependency] private readonly INetManager _netManager = default!; [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly MarkingManager _markingManager = default!; + [Dependency] private readonly ISerializationManager _serManager = default!; [Dependency] private readonly HeightAdjustSystem _heightAdjust = default!; [ValidatePrototypeId] @@ -40,12 +51,39 @@ public override void Initialize() SubscribeLocalEvent(OnExamined); } + public DataNode ToDataNode(HumanoidCharacterProfile profile) + { + var export = new HumanoidProfileExport + { + ForkId = _cfgManager.GetCVar(CVars.BuildForkId), + Profile = profile, + }; + + var dataNode = _serManager.WriteValue(export, alwaysWrite: true, notNullableOverride: true); + return dataNode; + } + + public HumanoidCharacterProfile FromStream(Stream stream, ICommonSession session) + { + using var reader = new StreamReader(stream, EncodingHelpers.UTF8); + var yamlStream = new YamlStream(); + yamlStream.Load(reader); + + var root = yamlStream.Documents[0].RootNode; + var export = _serManager.Read(root.ToDataNode(), notNullableOverride: true); + + // Add custom handling here for forks / version numbers if you care + + var profile = export.Profile; + var collection = IoCManager.Instance; + profile.EnsureValid(session, collection!); + return profile; + } + private void OnInit(EntityUid uid, HumanoidAppearanceComponent humanoid, ComponentInit args) { if (string.IsNullOrEmpty(humanoid.Species) || _netManager.IsClient && !IsClientSide(uid)) - { return; - } if (string.IsNullOrEmpty(humanoid.Initial) || !_proto.TryIndex(humanoid.Initial, out HumanoidProfilePrototype? startingSet)) @@ -56,9 +94,7 @@ private void OnInit(EntityUid uid, HumanoidAppearanceComponent humanoid, Compone // Do this first, because profiles currently do not support custom base layers foreach (var (layer, info) in startingSet.CustomBaseLayers) - { humanoid.CustomBaseLayers.Add(layer, info); - } LoadProfile(uid, startingSet.Profile, humanoid); } @@ -66,7 +102,7 @@ private void OnInit(EntityUid uid, HumanoidAppearanceComponent humanoid, Compone private void OnExamined(EntityUid uid, HumanoidAppearanceComponent component, ExaminedEvent args) { var identity = Identity.Entity(uid, EntityManager); - var species = GetSpeciesRepresentation(component.Species).ToLower(); + var species = GetSpeciesRepresentation(component.Species, component.CustomSpecieName).ToLower(); var age = GetAgeRepresentation(component.Species, component.Age); args.PushText(Loc.GetString("humanoid-appearance-component-examine", ("user", identity), ("age", age), ("species", species))); @@ -110,9 +146,7 @@ public void SetLayersVisibility(EntityUid uid, IEnumerable var dirty = false; foreach (var layer in layers) - { SetLayerVisibility(uid, humanoid, layer, visible, permanent, ref dirty); - } if (dirty) Dirty(humanoid); @@ -153,9 +187,7 @@ protected virtual void SetLayerVisibility( public void SetSpecies(EntityUid uid, string species, bool sync = true, HumanoidAppearanceComponent? humanoid = null) { if (!Resolve(uid, ref humanoid) || !_proto.TryIndex(species, out var prototype)) - { return; - } humanoid.Species = species; humanoid.MarkingSet.EnsureSpecies(species, humanoid.SkinColor, _markingManager); @@ -181,14 +213,10 @@ public virtual void SetSkinColor(EntityUid uid, Color skinColor, bool sync = tru return; if (!_proto.TryIndex(humanoid.Species, out var species)) - { return; - } if (verify && !SkinColor.VerifySkinColor(species.SkinColoration, skinColor)) - { skinColor = SkinColor.ValidSkinTone(species.SkinColoration, skinColor); - } humanoid.SkinColor = skinColor; @@ -259,9 +287,7 @@ public void SetSex(EntityUid uid, Sex sex, bool sync = true, HumanoidAppearanceC RaiseLocalEvent(uid, new SexChangedEvent(oldSex, sex)); if (sync) - { Dirty(humanoid); - } } /// @@ -328,15 +354,10 @@ public void SetScale(EntityUid uid, Vector2 scale, bool sync = true, HumanoidApp /// The mob's entity UID. /// The character profile to load. /// Humanoid component of the entity - public virtual void LoadProfile(EntityUid uid, HumanoidCharacterProfile? profile, HumanoidAppearanceComponent? humanoid = null) + public virtual void LoadProfile(EntityUid uid, HumanoidCharacterProfile profile, HumanoidAppearanceComponent? humanoid = null) { - if (profile == null) - return; - if (!Resolve(uid, ref humanoid)) - { return; - } SetSpecies(uid, profile.Species, false, humanoid); SetSex(uid, profile.Sex, false, humanoid); @@ -353,13 +374,9 @@ public virtual void LoadProfile(EntityUid uid, HumanoidCharacterProfile? profile if (_markingManager.TryGetMarking(marking, out var prototype)) { if (!prototype.ForcedColoring) - { AddMarking(uid, marking.MarkingId, marking.MarkingColors, false); - } else - { markingFColored.Add(marking, prototype); - } } } @@ -372,15 +389,11 @@ public virtual void LoadProfile(EntityUid uid, HumanoidCharacterProfile? profile if (_markingManager.Markings.TryGetValue(profile.Appearance.HairStyleId, out var hairPrototype) && _markingManager.CanBeApplied(profile.Species, profile.Sex, hairPrototype, _proto)) - { AddMarking(uid, profile.Appearance.HairStyleId, hairColor, false); - } if (_markingManager.Markings.TryGetValue(profile.Appearance.FacialHairStyleId, out var facialHairPrototype) && _markingManager.CanBeApplied(profile.Species, profile.Sex, facialHairPrototype, _proto)) - { AddMarking(uid, profile.Appearance.FacialHairStyleId, facialHairColor, false); - } humanoid.MarkingSet.EnsureSpecies(profile.Species, profile.Appearance.SkinColor, _markingManager, _proto); @@ -400,13 +413,20 @@ public virtual void LoadProfile(EntityUid uid, HumanoidCharacterProfile? profile humanoid.Gender = profile.Gender; if (TryComp(uid, out var grammar)) - { grammar.Gender = profile.Gender; - } humanoid.Age = profile.Age; - _heightAdjust.SetScale(uid, new Vector2(profile.Width, profile.Height)); + humanoid.CustomSpecieName = profile.Customspeciename; + + var species = _proto.Index(humanoid.Species); + + if (profile.Height <= 0 || profile.Width <= 0) + SetScale(uid, new Vector2(species.DefaultWidth, species.DefaultHeight), true, humanoid); + else + SetScale(uid, new Vector2(profile.Width, profile.Height), true, humanoid); + + _heightAdjust.SetScale(uid, new Vector2(humanoid.Width, humanoid.Height)); humanoid.LastProfileLoaded = profile; // DeltaV - let paradox anomaly be cloned @@ -426,9 +446,7 @@ public void AddMarking(EntityUid uid, string marking, Color? color = null, bool { if (!Resolve(uid, ref humanoid) || !_markingManager.Markings.TryGetValue(marking, out var prototype)) - { return; - } var markingObject = prototype.AsMarking(); markingObject.Forced = forced; @@ -449,9 +467,7 @@ public void AddMarking(EntityUid uid, string marking, Color? color = null, bool private void EnsureDefaultMarkings(EntityUid uid, HumanoidAppearanceComponent? humanoid) { if (!Resolve(uid, ref humanoid)) - { return; - } humanoid.MarkingSet.EnsureDefault(humanoid.SkinColor, humanoid.EyeColor, _markingManager); } @@ -468,9 +484,7 @@ public void AddMarking(EntityUid uid, string marking, IReadOnlyList color { if (!Resolve(uid, ref humanoid) || !_markingManager.Markings.TryGetValue(marking, out var prototype)) - { return; - } var markingObject = new Marking(marking, colors); markingObject.Forced = forced; @@ -483,12 +497,13 @@ public void AddMarking(EntityUid uid, string marking, IReadOnlyList color /// /// Takes ID of the species prototype, returns UI-friendly name of the species. /// - public string GetSpeciesRepresentation(string speciesId) + public string GetSpeciesRepresentation(string speciesId, string? customespeciename) { + if (!string.IsNullOrEmpty(customespeciename)) + return Loc.GetString(customespeciename); + if (_proto.TryIndex(speciesId, out var species)) - { return Loc.GetString(species.Name); - } Log.Error("Tried to get representation of unknown species: {speciesId}"); return Loc.GetString("humanoid-appearance-component-unknown-species"); @@ -503,14 +518,10 @@ public string GetAgeRepresentation(string species, int age) } if (age < speciesPrototype.YoungAge) - { return Loc.GetString("identity-age-young"); - } if (age < speciesPrototype.OldAge) - { return Loc.GetString("identity-age-middle-aged"); - } return Loc.GetString("identity-age-old"); } diff --git a/Content.Shared/Humanoid/SkinColor.cs b/Content.Shared/Humanoid/SkinColor.cs index dcc5c2d764..64ad82ac98 100644 --- a/Content.Shared/Humanoid/SkinColor.cs +++ b/Content.Shared/Humanoid/SkinColor.cs @@ -1,3 +1,6 @@ +using System.Security.Cryptography; +using Microsoft.VisualBasic.CompilerServices; + namespace Content.Shared.Humanoid; public static class SkinColor @@ -7,6 +10,13 @@ public static class SkinColor public const float MinHuesLightness = 0.175f; + public const float MinFeathersHue = 29f / 360; + public const float MaxFeathersHue = 174f / 360; + public const float MinFeathersSaturation = 20f / 100; + public const float MaxFeathersSaturation = 88f / 100; + public const float MinFeathersValue = 36f / 100; + public const float MaxFeathersValue = 55f / 100; + public static Color ValidHumanSkinTone => Color.FromHsv(new Vector4(0.07f, 0.2f, 1f, 1f)); /// @@ -159,6 +169,60 @@ public static bool VerifyTintedHues(Color color) return Color.ToHsl(color).Y <= MaxTintedHuesSaturation && Color.ToHsl(color).Z >= MinTintedHuesLightness; } + /// + /// Converts a Color proportionally to the allowed vox color range. + /// Will NOT preserve the specific input color even if it is within the allowed vox color range. + /// + /// Color to convert + /// Vox feather coloration + public static Color ProportionalVoxColor(Color color) + { + var newColor = Color.ToHsv(color); + + newColor.X = newColor.X * (MaxFeathersHue - MinFeathersHue) + MinFeathersHue; + newColor.Y = newColor.Y * (MaxFeathersSaturation - MinFeathersSaturation) + MinFeathersSaturation; + newColor.Z = newColor.Z * (MaxFeathersValue - MinFeathersValue) + MinFeathersValue; + + return Color.FromHsv(newColor); + } + + // /// + // /// Ensures the input Color is within the allowed vox color range. + // /// + // /// Color to convert + // /// The same Color if it was within the allowed range, or the closest matching Color otherwise + public static Color ClosestVoxColor(Color color) + { + var hsv = Color.ToHsv(color); + + hsv.X = Math.Clamp(hsv.X, MinFeathersHue, MaxFeathersHue); + hsv.Y = Math.Clamp(hsv.Y, MinFeathersSaturation, MaxFeathersSaturation); + hsv.Z = Math.Clamp(hsv.Z, MinFeathersValue, MaxFeathersValue); + + return Color.FromHsv(hsv); + } + + /// + /// Verify if this color is a valid vox feather coloration, or not. + /// + /// The color to verify + /// True if valid, false otherwise + public static bool VerifyVoxFeathers(Color color) + { + var colorHsv = Color.ToHsv(color); + + if (colorHsv.X < MinFeathersHue || colorHsv.X > MaxFeathersHue) + return false; + + if (colorHsv.Y < MinFeathersSaturation || colorHsv.Y > MaxFeathersSaturation) + return false; + + if (colorHsv.Z < MinFeathersValue || colorHsv.Z > MaxFeathersValue) + return false; + + return true; + } + /// /// This takes in a color, and returns a color guaranteed to be above MinHuesLightness /// @@ -189,6 +253,7 @@ public static bool VerifySkinColor(HumanoidSkinColor type, Color color) HumanoidSkinColor.TintedHues => VerifyTintedHues(color), HumanoidSkinColor.TintedHuesSkin => true, // DeltaV - Tone blending HumanoidSkinColor.Hues => VerifyHues(color), + HumanoidSkinColor.VoxFeathers => VerifyVoxFeathers(color), _ => false, }; } @@ -201,6 +266,7 @@ public static Color ValidSkinTone(HumanoidSkinColor type, Color color) HumanoidSkinColor.TintedHues => ValidTintedHuesSkinTone(color), HumanoidSkinColor.TintedHuesSkin => ValidTintedHuesSkinTone(color), // DeltaV - Tone blending HumanoidSkinColor.Hues => MakeHueValid(color), + HumanoidSkinColor.VoxFeathers => ClosestVoxColor(color), _ => color }; } @@ -210,6 +276,7 @@ public enum HumanoidSkinColor : byte { HumanToned, Hues, + VoxFeathers, // Vox feathers are limited to a specific color range TintedHues, //This gives a color tint to a humanoid's skin (10% saturation with full hue range). TintedHuesSkin, // DeltaV - Default TintedHues assumes the texture will have the proper skin color, but moths dont } diff --git a/Content.Shared/Implants/Components/SubdermalImplantComponent.cs b/Content.Shared/Implants/Components/SubdermalImplantComponent.cs index 09ef05e48a..9d00326839 100644 --- a/Content.Shared/Implants/Components/SubdermalImplantComponent.cs +++ b/Content.Shared/Implants/Components/SubdermalImplantComponent.cs @@ -89,3 +89,5 @@ public sealed partial class UseDnaScramblerImplantEvent : InstantActionEvent { } + +public sealed partial class ActivateSpawnImplantEvent : InstantActionEvent; // WD EDIT diff --git a/Content.Shared/Implants/SharedImplanterSystem.cs b/Content.Shared/Implants/SharedImplanterSystem.cs index 36a31bac1d..545aa17314 100644 --- a/Content.Shared/Implants/SharedImplanterSystem.cs +++ b/Content.Shared/Implants/SharedImplanterSystem.cs @@ -56,7 +56,7 @@ private void OnExamine(EntityUid uid, ImplanterComponent component, ExaminedEven //Set to draw mode if not implant only public void Implant(EntityUid user, EntityUid target, EntityUid implanter, ImplanterComponent component) { - if (!CanImplant(user, target, implanter, component, out var implant, out var implantComp)) + if (!CanImplant(user, target, implanter, component, out var implant, out var implantComp, out _)) return; //If the target doesn't have the implanted component, add it. @@ -69,6 +69,8 @@ public void Implant(EntityUid user, EntityUid target, EntityUid implanter, Impla implantContainer.OccludesLight = false; _container.Insert(implant.Value, implantContainer); + RaiseLocalEvent(implant.Value, new SubdermalImplantInserted(user, target)); // WD EDIT + if (component.CurrentMode == ImplanterToggleMode.Inject && !component.ImplantOnly) DrawMode(implanter, component); else @@ -86,9 +88,11 @@ public bool CanImplant( EntityUid implanter, ImplanterComponent component, [NotNullWhen(true)] out EntityUid? implant, - [NotNullWhen(true)] out SubdermalImplantComponent? implantComp) + [NotNullWhen(true)] out SubdermalImplantComponent? implantComp, + out bool popup) // WD EDIT { implant = component.ImplanterSlot.ContainerSlot?.ContainedEntities.FirstOrNull(); + popup = true; // WD EDIF if (!TryComp(implant, out implantComp)) return false; @@ -98,8 +102,12 @@ public bool CanImplant( return false; } - var ev = new AddImplantAttemptEvent(user, target, implant.Value, implanter); - RaiseLocalEvent(target, ev); + // WD EDIT START + var ev = new AttemptSubdermalImplantInserted(user, target); + RaiseLocalEvent(implant.Value, ev); + + popup = ev.Popup; + // WD EDIT END return !ev.Cancelled; } @@ -146,6 +154,8 @@ public void Draw(EntityUid implanter, EntityUid user, EntityUid target, Implante _container.Insert(implant, implanterContainer); permanentFound = implantComp.Permanent; + RaiseLocalEvent(implant, new SubdermalImplantRemoved(user, target)); // WD EDIT + var ev = new TransferDnaEvent { Donor = target, Recipient = implanter }; RaiseLocalEvent(target, ref ev); @@ -210,18 +220,48 @@ public sealed partial class DrawEvent : SimpleDoAfterEvent { } -public sealed class AddImplantAttemptEvent : CancellableEntityEventArgs +// WD EDIT START +public sealed class AttemptSubdermalImplantInserted(EntityUid user, EntityUid target, bool popup = true) : CancellableEntityEventArgs { - public readonly EntityUid User; - public readonly EntityUid Target; - public readonly EntityUid Implant; - public readonly EntityUid Implanter; + /// + /// Entity who implants + /// + public EntityUid User = user; + + /// + /// Entity being implanted + /// + public EntityUid Target = target; + + /// + /// Popup if implanted failed + /// + public bool Popup = popup; +} - public AddImplantAttemptEvent(EntityUid user, EntityUid target, EntityUid implant, EntityUid implanter) - { - User = user; - Target = target; - Implant = implant; - Implanter = implanter; - } +public sealed class SubdermalImplantInserted(EntityUid user, EntityUid target) +{ + /// + /// Entity who implants + /// + public EntityUid User = user; + + /// + /// Entity being implanted + /// + public EntityUid Target = target; +} + +public sealed class SubdermalImplantRemoved(EntityUid user, EntityUid target) +{ + /// + /// Entity who removes implant + /// + public EntityUid User = user; + + /// + /// Entity which implant is removing + /// + public EntityUid Target = target; } +// WD EDIT END diff --git a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs index 830d2270aa..0df552d8a6 100644 --- a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs +++ b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs @@ -53,9 +53,6 @@ private void OnInsert(EntityUid uid, SubdermalImplantComponent component, EntGot } } } - - var ev = new ImplantImplantedEvent(uid, component.ImplantedEntity.Value); - RaiseLocalEvent(uid, ref ev); } private void OnRemoveAttempt(EntityUid uid, SubdermalImplantComponent component, ContainerGettingRemovedAttemptEvent args) @@ -125,6 +122,8 @@ public void ForceImplant(EntityUid target, EntityUid implant, SubdermalImplantCo component.ImplantedEntity = target; _container.Insert(implant, implantContainer); + + RaiseLocalEvent(implant, new SubdermalImplantInserted(target, target)); // WD EDIT } /// @@ -185,23 +184,3 @@ public ImplantRelayEvent(T ev) Event = ev; } } - -/// -/// Event that is raised whenever someone is implanted with any given implant. -/// Raised on the the implant entity. -/// -/// -/// implant implant implant implant -/// -[ByRefEvent] -public readonly struct ImplantImplantedEvent -{ - public readonly EntityUid Implant; - public readonly EntityUid? Implanted; - - public ImplantImplantedEvent(EntityUid implant, EntityUid? implanted) - { - Implant = implant; - Implanted = implanted; - } -} diff --git a/Content.Shared/Input/ContentKeyFunctions.cs b/Content.Shared/Input/ContentKeyFunctions.cs index a92cac03b5..9603dd5914 100644 --- a/Content.Shared/Input/ContentKeyFunctions.cs +++ b/Content.Shared/Input/ContentKeyFunctions.cs @@ -26,7 +26,7 @@ public static class ContentKeyFunctions public static readonly BoundKeyFunction CycleChatChannelBackward = "CycleChatChannelBackward"; public static readonly BoundKeyFunction EscapeContext = "EscapeContext"; public static readonly BoundKeyFunction OpenCharacterMenu = "OpenCharacterMenu"; - public static readonly BoundKeyFunction OpenEmotionsMenu = "OpenEmotionsMenu"; // WD EDIT + public static readonly BoundKeyFunction OpenEmotesMenu = "OpenEmotesMenu"; public static readonly BoundKeyFunction OpenLanguageMenu = "OpenLanguageMenu"; public static readonly BoundKeyFunction OpenCraftingMenu = "OpenCraftingMenu"; public static readonly BoundKeyFunction OpenGuidebook = "OpenGuidebook"; @@ -45,6 +45,7 @@ public static class ContentKeyFunctions public static readonly BoundKeyFunction MovePulledObject = "MovePulledObject"; public static readonly BoundKeyFunction ReleasePulledObject = "ReleasePulledObject"; public static readonly BoundKeyFunction MouseMiddle = "MouseMiddle"; + public static readonly BoundKeyFunction ToggleRoundEndSummaryWindow = "ToggleRoundEndSummaryWindow"; public static readonly BoundKeyFunction OpenEntitySpawnWindow = "OpenEntitySpawnWindow"; public static readonly BoundKeyFunction OpenSandboxWindow = "OpenSandboxWindow"; public static readonly BoundKeyFunction OpenTileSpawnWindow = "OpenTileSpawnWindow"; @@ -59,7 +60,8 @@ public static class ContentKeyFunctions public static readonly BoundKeyFunction ResetZoom = "ResetZoom"; public static readonly BoundKeyFunction OfferItem = "OfferItem"; public static readonly BoundKeyFunction ToggleStanding = "ToggleStanding"; - public static readonly BoundKeyFunction LookUp = "LookUp"; // WD EDIT + public static readonly BoundKeyFunction ToggleCrawlingUnder = "ToggleCrawlingUnder"; + public static readonly BoundKeyFunction LookUp = "LookUp"; public static readonly BoundKeyFunction ArcadeUp = "ArcadeUp"; public static readonly BoundKeyFunction ArcadeDown = "ArcadeDown"; diff --git a/Content.Shared/Interaction/Components/ClumsyComponent.cs b/Content.Shared/Interaction/Components/ClumsyComponent.cs index 5b72fc224c..824696c838 100644 --- a/Content.Shared/Interaction/Components/ClumsyComponent.cs +++ b/Content.Shared/Interaction/Components/ClumsyComponent.cs @@ -1,22 +1,24 @@ using Content.Shared.Damage; using Robust.Shared.Audio; +using Robust.Shared.GameStates; -namespace Content.Shared.Interaction.Components +namespace Content.Shared.Interaction.Components; + +/// +/// A simple clumsy tag-component. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class ClumsyComponent : Component { /// - /// A simple clumsy tag-component. + /// Damage dealt to a clumsy character when they try to fire a gun. /// - [RegisterComponent] - public sealed partial class ClumsyComponent : Component - { - [DataField("clumsyDamage", required: true)] - [ViewVariables(VVAccess.ReadWrite)] - public DamageSpecifier ClumsyDamage = default!; + [DataField(required: true), AutoNetworkedField] + public DamageSpecifier ClumsyDamage = default!; - /// - /// Sound to play when clumsy interactions fail - /// - [DataField("clumsySound")] - public SoundSpecifier ClumsySound = new SoundPathSpecifier("/Audio/Items/bikehorn.ogg"); - } + /// + /// Sound to play when clumsy interactions fail. + /// + [DataField] + public SoundSpecifier ClumsySound = new SoundPathSpecifier("/Audio/Items/bikehorn.ogg"); } diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index 8d49ce31f0..1f421d0e6f 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -76,8 +76,11 @@ public abstract partial class SharedInteractionSystem : EntitySystem public override void Initialize() { + SubscribeLocalEvent(HandleUserInterfaceRangeCheck); SubscribeLocalEvent(OnBoundInterfaceInteractAttempt); + SubscribeAllEvent(HandleInteractInventorySlotEvent); + SubscribeLocalEvent(OnRemoveAttempt); SubscribeLocalEvent(OnUnequip); SubscribeLocalEvent(OnUnequipHand); @@ -108,7 +111,9 @@ public override void Shutdown() /// private void OnBoundInterfaceInteractAttempt(BoundUserInterfaceMessageAttempt ev) { - if (ev.Sender.AttachedEntity is not { } user || !_actionBlockerSystem.CanInteract(user, ev.Target)) + var user = ev.Actor; + + if (!_actionBlockerSystem.CanInteract(user, ev.Target)) { ev.Cancel(); return; @@ -973,8 +978,8 @@ public bool InteractionActivate( return false; DoContactInteraction(user, used, activateMsg); - if (delayComponent != null) - _useDelay.TryResetDelay((used, delayComponent)); + // Still need to call this even without checkUseDelay in case this gets relayed from Activate. + _useDelay.TryResetDelay(used, component: delayComponent); if (!activateMsg.WasLogged) _adminLogger.Add(LogType.InteractActivate, LogImpact.Low, $"{ToPrettyString(user):user} activated {ToPrettyString(used):used}"); return true; @@ -1145,6 +1150,21 @@ public void DoContactInteraction(EntityUid uidA, EntityUid? uidB, HandledEntityE RaiseLocalEvent(uidA, new ContactInteractionEvent(uidB.Value)); RaiseLocalEvent(uidB.Value, new ContactInteractionEvent(uidA)); } + + private void HandleUserInterfaceRangeCheck(ref BoundUserInterfaceCheckRangeEvent ev) + { + if (ev.Result == BoundUserInterfaceRangeResult.Fail) + return; + + if (InRangeUnobstructed(ev.Actor, ev.Target, ev.Data.InteractionRange)) + { + ev.Result = BoundUserInterfaceRangeResult.Pass; + } + else + { + ev.Result = BoundUserInterfaceRangeResult.Fail; + } + } } /// diff --git a/Content.Shared/InteractionVerbs/InteractionVerbPrototype.cs b/Content.Shared/InteractionVerbs/InteractionVerbPrototype.cs index 1c33444cdf..671e8e4718 100644 --- a/Content.Shared/InteractionVerbs/InteractionVerbPrototype.cs +++ b/Content.Shared/InteractionVerbs/InteractionVerbPrototype.cs @@ -152,8 +152,12 @@ public sealed partial class InteractionVerbPrototype : IPrototype, IInheritingPr [DataField] public bool RequiresHands = false; - [DataField] - public bool RequiresCanInteract = true; + /// + /// Whether this verb requires the user to be able to access the target normally (with their hands or otherwise). + /// + /// The misleading yml name is kept for backwards compatibility with downstreams. + [DataField("requiresCanInteract")] + public bool RequiresCanAccess = true; /// /// If true, this verb can be invoked by the user on itself. diff --git a/Content.Shared/InteractionVerbs/Requirements/AssortedRequirements.cs b/Content.Shared/InteractionVerbs/Requirements/AssortedRequirements.cs index 69193a9212..9a4dd32336 100644 --- a/Content.Shared/InteractionVerbs/Requirements/AssortedRequirements.cs +++ b/Content.Shared/InteractionVerbs/Requirements/AssortedRequirements.cs @@ -55,7 +55,8 @@ public override bool IsMet(InteractionArgs args, InteractionVerbPrototype proto, if (!deps.EntMan.TryGetComponent(args.Target, out var state)) return false; - return state.Standing ? AllowStanding : AllowLaying; + return state.CurrentState == StandingState.Standing && AllowStanding + || state.CurrentState == StandingState.Lying && AllowLaying; } } diff --git a/Content.Shared/InteractionVerbs/SharedInteractionVerbsSystem.cs b/Content.Shared/InteractionVerbs/SharedInteractionVerbsSystem.cs index ed74af8bc6..f8100e71c3 100644 --- a/Content.Shared/InteractionVerbs/SharedInteractionVerbsSystem.cs +++ b/Content.Shared/InteractionVerbs/SharedInteractionVerbsSystem.cs @@ -156,7 +156,7 @@ public bool StartVerb(InteractionVerbPrototype proto, InteractionArgs args, bool Broadcast = true, BreakOnHandChange = proto.RequiresHands, NeedHand = proto.RequiresHands, - RequireCanInteract = proto.RequiresCanInteract, + RequireCanInteract = proto.RequiresCanAccess, Delay = delay, Event = new InteractionVerbDoAfterEvent(proto.ID, args) }; @@ -178,7 +178,8 @@ public void PerformVerb(InteractionVerbPrototype proto, InteractionArgs args, bo if (_net.IsClient) return; // this leads to issues - if (!proto.Action!.CanPerform(args, proto, false, _verbDependencies) && !force + if (!PerformChecks(proto, ref args, out _, out _) && !force + || !proto.Action!.CanPerform(args, proto, false, _verbDependencies) && !force || !proto.Action.Perform(args, proto, _verbDependencies)) { CreateVerbEffects(proto.EffectFailure, Fail, proto, args); @@ -271,7 +272,7 @@ private bool PerformChecks(InteractionVerbPrototype proto, ref InteractionArgs a return false; } - if (proto.RequiresCanInteract && args is not { CanInteract: true, CanAccess: true } || !proto.Range.IsInRange(distance)) + if (!args.CanInteract || proto.RequiresCanAccess && !args.CanAccess || !proto.Range.IsInRange(distance)) { errorLocale = "interaction-verb-cannot-reach"; return false; diff --git a/Content.Shared/Inventory/Events/UnequippedEvents.cs b/Content.Shared/Inventory/Events/UnequippedEvents.cs index ef607f071a..4e1764a7d2 100644 --- a/Content.Shared/Inventory/Events/UnequippedEvents.cs +++ b/Content.Shared/Inventory/Events/UnequippedEvents.cs @@ -22,12 +22,18 @@ public abstract class UnequippedEventBase : EntityEventArgs /// public readonly string SlotGroup; + /// + /// Slotflags of the slot the entity just got unequipped from. + /// + public readonly SlotFlags SlotFlags; + public UnequippedEventBase(EntityUid equipee, EntityUid equipment, SlotDefinition slotDefinition) { Equipee = equipee; Equipment = equipment; Slot = slotDefinition.Name; SlotGroup = slotDefinition.SlotGroup; + SlotFlags = slotDefinition.SlotFlags; } } diff --git a/Content.Shared/Inventory/InventoryComponent.cs b/Content.Shared/Inventory/InventoryComponent.cs index 2a8710f0f2..02b3a5b258 100644 --- a/Content.Shared/Inventory/InventoryComponent.cs +++ b/Content.Shared/Inventory/InventoryComponent.cs @@ -13,6 +13,18 @@ public sealed partial class InventoryComponent : Component [DataField("speciesId")] public string? SpeciesId { get; set; } + [DataField] public Dictionary Displacements = []; + public SlotDefinition[] Slots = Array.Empty(); public ContainerSlot[] Containers = Array.Empty(); + + [DataDefinition] + public sealed partial class SlotDisplacementData + { + [DataField(required: true)] + public PrototypeLayerData Layer = default!; + + [DataField] + public string? ShaderOverride = "DisplacedStencilDraw"; + } } diff --git a/Content.Shared/Inventory/InventorySystem.Equip.cs b/Content.Shared/Inventory/InventorySystem.Equip.cs index d4ddca8c14..b49dcf065f 100644 --- a/Content.Shared/Inventory/InventorySystem.Equip.cs +++ b/Content.Shared/Inventory/InventorySystem.Equip.cs @@ -1,4 +1,5 @@ using System.Diagnostics.CodeAnalysis; +using Content.Shared.Armor; using Content.Shared.Clothing.Components; using Content.Shared.DoAfter; using Content.Shared.Hands; @@ -114,7 +115,7 @@ private void OnUseSlot(UseSlotNetworkMessage ev, EntitySessionEventArgs eventArg if (!_handsSystem.CanDropHeld(actor, hands.ActiveHand!, checkActionBlocker: false)) return; - RaiseLocalEvent(held.Value, new HandDeselectedEvent(actor), false); + RaiseLocalEvent(held.Value, new HandDeselectedEvent(actor)); TryEquip(actor, actor, held.Value, ev.Slot, predicted: true, inventory: inventory, force: true, checkDoafter:true); } @@ -245,8 +246,16 @@ public bool CanEquip(EntityUid actor, EntityUid target, EntityUid itemUid, strin return false; DebugTools.Assert(slotDefinition.Name == slot); - if (slotDefinition.DependsOn != null && !TryGetSlotEntity(target, slotDefinition.DependsOn, out _, inventory)) - return false; + if (slotDefinition.DependsOn != null) + { + if (!TryGetSlotEntity(target, slotDefinition.DependsOn, out EntityUid? slotEntity, inventory)) + return false; + + if (slotDefinition.DependsOnComponents is { } componentRegistry) + foreach (var (_, entry) in componentRegistry) + if (!HasComp(slotEntity, entry.Component.GetType())) + return false; + } var fittingInPocket = slotDefinition.SlotFlags.HasFlag(SlotFlags.POCKET) && item != null && @@ -303,7 +312,6 @@ public bool CanEquip(EntityUid actor, EntityUid target, EntityUid itemUid, strin reason = itemAttemptEvent.Reason ?? reason; return false; } - return true; } diff --git a/Content.Shared/Inventory/InventorySystem.Relay.cs b/Content.Shared/Inventory/InventorySystem.Relay.cs index 3308e881c5..b9d6a51f88 100644 --- a/Content.Shared/Inventory/InventorySystem.Relay.cs +++ b/Content.Shared/Inventory/InventorySystem.Relay.cs @@ -40,12 +40,14 @@ public void InitializeRelay() SubscribeLocalEvent(RelayInventoryEvent); // ComponentActivatedClientSystems - SubscribeLocalEvent>(RelayInventoryEvent); + SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); + SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); + SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(OnGetEquipmentVerbs); } @@ -123,6 +125,11 @@ public InventoryRelayedEvent(TEvent args) } } +public interface IClothingSlots +{ + SlotFlags Slots { get; } +} + /// /// Events that should be relayed to inventory slots should implement this interface. /// diff --git a/Content.Shared/Inventory/InventorySystem.Slots.cs b/Content.Shared/Inventory/InventorySystem.Slots.cs index cbbee3a85b..e0f2a69557 100644 --- a/Content.Shared/Inventory/InventorySystem.Slots.cs +++ b/Content.Shared/Inventory/InventorySystem.Slots.cs @@ -1,4 +1,6 @@ using System.Diagnostics.CodeAnalysis; +using Content.Shared.Inventory.Events; +using Content.Shared.Storage; using Robust.Shared.Containers; using Robust.Shared.Prototypes; using Robust.Shared.Utility; @@ -13,6 +15,7 @@ public partial class InventorySystem : EntitySystem private void InitializeSlots() { SubscribeLocalEvent(OnInit); + SubscribeNetworkEvent(OnOpenSlotStorage); _vvm.GetTypeHandler() .AddHandler(HandleViewVariablesSlots, ListViewVariablesSlots); @@ -24,6 +27,31 @@ private void ShutdownSlots() .RemoveHandler(HandleViewVariablesSlots, ListViewVariablesSlots); } + /// + /// Tries to find an entity in the specified slot with the specified component. + /// + public bool TryGetInventoryEntity(Entity entity, out EntityUid targetUid) + where T : IComponent, IClothingSlots + { + if (TryGetContainerSlotEnumerator(entity.Owner, out var containerSlotEnumerator)) + { + while (containerSlotEnumerator.NextItem(out var item, out var slot)) + { + if (!TryComp(item, out var required)) + continue; + + if ((((IClothingSlots) required).Slots & slot.SlotFlags) == 0x0) + continue; + + targetUid = item; + return true; + } + } + + targetUid = EntityUid.Invalid; + return false; + } + protected virtual void OnInit(EntityUid uid, InventoryComponent component, ComponentInit args) { if (!_prototypeManager.TryIndex(component.TemplateId, out InventoryTemplatePrototype? invTemplate)) @@ -40,6 +68,17 @@ protected virtual void OnInit(EntityUid uid, InventoryComponent component, Compo } } + private void OnOpenSlotStorage(OpenSlotStorageNetworkMessage ev, EntitySessionEventArgs args) + { + if (args.SenderSession.AttachedEntity is not { Valid: true } uid) + return; + + if (TryGetSlotEntity(uid, ev.Slot, out var entityUid) && TryComp(entityUid, out var storageComponent)) + { + _storageSystem.OpenStorageUI(entityUid.Value, uid, storageComponent); + } + } + public bool TryGetSlotContainer(EntityUid uid, string slot, [NotNullWhen(true)] out ContainerSlot? containerSlot, [NotNullWhen(true)] out SlotDefinition? slotDefinition, InventoryComponent? inventory = null, ContainerManagerComponent? containerComp = null) { @@ -112,7 +151,6 @@ public bool TryGetSlots(EntityUid uid, [NotNullWhen(true)] out SlotDefinition[]? slotDefinitions = null; return false; } - slotDefinitions = inv.Slots; return true; } diff --git a/Content.Shared/Inventory/InventoryTemplatePrototype.cs b/Content.Shared/Inventory/InventoryTemplatePrototype.cs index 585f80d4ce..a4d77767e3 100644 --- a/Content.Shared/Inventory/InventoryTemplatePrototype.cs +++ b/Content.Shared/Inventory/InventoryTemplatePrototype.cs @@ -17,6 +17,10 @@ public sealed partial class SlotDefinition { [DataField("name", required: true)] public string Name { get; private set; } = string.Empty; [DataField("slotTexture")] public string TextureName { get; private set; } = "pocket"; + /// + /// The texture displayed in a slot when it has an item inside of it. + /// + [DataField] public string FullTextureName { get; private set; } = "SlotBackground"; [DataField("slotFlags")] public SlotFlags SlotFlags { get; private set; } = SlotFlags.PREVENTEQUIP; [DataField("showInWindow")] public bool ShowInWindow { get; private set; } = true; [DataField("slotGroup")] public string SlotGroup { get; private set; } = "Default"; @@ -30,6 +34,8 @@ public sealed partial class SlotDefinition [DataField("dependsOn")] public string? DependsOn { get; private set; } + [DataField("dependsOnComponents")] public ComponentRegistry? DependsOnComponents { get; private set; } + [DataField("displayName", required: true)] public string DisplayName { get; private set; } = string.Empty; diff --git a/Content.Shared/Inventory/SlotFlags.cs b/Content.Shared/Inventory/SlotFlags.cs index 8d5e33e348..90971d1670 100644 --- a/Content.Shared/Inventory/SlotFlags.cs +++ b/Content.Shared/Inventory/SlotFlags.cs @@ -27,4 +27,6 @@ public enum SlotFlags FEET = 1 << 14, SUITSTORAGE = 1 << 15, All = ~NONE, + + WITHOUT_POCKET = All & ~POCKET } diff --git a/Content.Shared/Labels/Components/HandLabelerComponent.cs b/Content.Shared/Labels/Components/HandLabelerComponent.cs new file mode 100644 index 0000000000..8e2cb7b067 --- /dev/null +++ b/Content.Shared/Labels/Components/HandLabelerComponent.cs @@ -0,0 +1,30 @@ +using Content.Shared.Labels.EntitySystems; +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Labels.Components; + +[RegisterComponent, NetworkedComponent] +[Access(typeof(SharedHandLabelerSystem))] +public sealed partial class HandLabelerComponent : Component +{ + [ViewVariables(VVAccess.ReadWrite), Access(Other = AccessPermissions.ReadWriteExecute)] + [DataField] + public string AssignedLabel = string.Empty; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField] + public int MaxLabelChars = 50; + + [DataField] + public EntityWhitelist Whitelist = new(); +} + +[Serializable, NetSerializable] +public sealed class HandLabelerComponentState(string assignedLabel) : IComponentState +{ + public string AssignedLabel = assignedLabel; + + public int MaxLabelChars; +} diff --git a/Content.Shared/Labels/EntitySystems/SharedHandLabelerSystem.cs b/Content.Shared/Labels/EntitySystems/SharedHandLabelerSystem.cs new file mode 100644 index 0000000000..7dbeee3e77 --- /dev/null +++ b/Content.Shared/Labels/EntitySystems/SharedHandLabelerSystem.cs @@ -0,0 +1,129 @@ +using Content.Shared.Administration.Logs; +using Content.Shared.Database; +using Content.Shared.Interaction; +using Content.Shared.Labels.Components; +using Content.Shared.Popups; +using Content.Shared.Verbs; +using Robust.Shared.GameStates; +using Robust.Shared.Network; + +namespace Content.Shared.Labels.EntitySystems; + +public abstract class SharedHandLabelerSystem : EntitySystem +{ + [Dependency] protected readonly SharedUserInterfaceSystem UserInterfaceSystem = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly SharedLabelSystem _labelSystem = default!; + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; + [Dependency] private readonly INetManager _netManager = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(AfterInteractOn); + SubscribeLocalEvent>(OnUtilityVerb); + // Bound UI subscriptions + SubscribeLocalEvent(OnHandLabelerLabelChanged); + SubscribeLocalEvent(OnGetState); + SubscribeLocalEvent(OnHandleState); + } + + private void OnGetState(Entity ent, ref ComponentGetState args) + { + args.State = new HandLabelerComponentState(ent.Comp.AssignedLabel) + { + MaxLabelChars = ent.Comp.MaxLabelChars, + }; + } + + private void OnHandleState(Entity ent, ref ComponentHandleState args) + { + if (args.Current is not HandLabelerComponentState state) + return; + + ent.Comp.MaxLabelChars = state.MaxLabelChars; + + if (ent.Comp.AssignedLabel == state.AssignedLabel) + return; + + ent.Comp.AssignedLabel = state.AssignedLabel; + UpdateUI(ent); + } + + protected virtual void UpdateUI(Entity ent) + { + } + + private void AddLabelTo(EntityUid uid, HandLabelerComponent? handLabeler, EntityUid target, out string? result) + { + if (!Resolve(uid, ref handLabeler)) + { + result = null; + return; + } + + if (handLabeler.AssignedLabel == string.Empty) + { + if (_netManager.IsServer) + _labelSystem.Label(target, null); + result = Loc.GetString("hand-labeler-successfully-removed"); + return; + } + if (_netManager.IsServer) + _labelSystem.Label(target, handLabeler.AssignedLabel); + result = Loc.GetString("hand-labeler-successfully-applied"); + } + + private void OnUtilityVerb(EntityUid uid, HandLabelerComponent handLabeler, GetVerbsEvent args) + { + if (args.Target is not { Valid: true } target || !handLabeler.Whitelist.IsValid(target) || !args.CanAccess) + return; + + var labelerText = handLabeler.AssignedLabel == string.Empty ? Loc.GetString("hand-labeler-remove-label-text") : Loc.GetString("hand-labeler-add-label-text"); + + var verb = new UtilityVerb() + { + Act = () => + { + Labeling(uid, target, args.User, handLabeler); + }, + Text = labelerText + }; + + args.Verbs.Add(verb); + } + + private void AfterInteractOn(EntityUid uid, HandLabelerComponent handLabeler, AfterInteractEvent args) + { + if (args.Target is not { Valid: true } target || !handLabeler.Whitelist.IsValid(target) || !args.CanReach) + return; + + Labeling(uid, target, args.User, handLabeler); + } + + private void Labeling(EntityUid uid, EntityUid target, EntityUid User, HandLabelerComponent handLabeler) + { + AddLabelTo(uid, handLabeler, target, out var result); + if (result == null) + return; + + _popupSystem.PopupClient(result, User, User); + + // Log labeling + _adminLogger.Add(LogType.Action, LogImpact.Low, + $"{ToPrettyString(User):user} labeled {ToPrettyString(target):target} with {ToPrettyString(uid):labeler}"); + } + + private void OnHandLabelerLabelChanged(EntityUid uid, HandLabelerComponent handLabeler, HandLabelerLabelChangedMessage args) + { + var label = args.Label.Trim(); + handLabeler.AssignedLabel = label[..Math.Min(handLabeler.MaxLabelChars, label.Length)]; + UpdateUI((uid, handLabeler)); + Dirty(uid, handLabeler); + + // Log label change + _adminLogger.Add(LogType.Action, LogImpact.Low, + $"{ToPrettyString(args.Actor):user} set {ToPrettyString(uid):labeler} to apply label \"{handLabeler.AssignedLabel}\""); + } +} diff --git a/Content.Shared/Labels/EntitySystems/SharedLabelSystem.cs b/Content.Shared/Labels/EntitySystems/SharedLabelSystem.cs index a8239e7867..1189bb46d0 100644 --- a/Content.Shared/Labels/EntitySystems/SharedLabelSystem.cs +++ b/Content.Shared/Labels/EntitySystems/SharedLabelSystem.cs @@ -13,6 +13,8 @@ public override void Initialize() SubscribeLocalEvent(OnExamine); } + public virtual void Label(EntityUid uid, string? text, MetaDataComponent? metadata = null, LabelComponent? label = null){} + private void OnExamine(EntityUid uid, LabelComponent? label, ExaminedEvent args) { if (!Resolve(uid, ref label)) diff --git a/Content.Shared/Labels/LabelEvents.cs b/Content.Shared/Labels/LabelEvents.cs index 9f00354af2..62e9c15c85 100644 --- a/Content.Shared/Labels/LabelEvents.cs +++ b/Content.Shared/Labels/LabelEvents.cs @@ -1,47 +1,27 @@ using Robust.Shared.Serialization; -namespace Content.Shared.Labels -{ - /// - /// Key representing which is currently open. - /// Useful when there are multiple UI for an object. Here it's future-proofing only. - /// - [Serializable, NetSerializable] - public enum HandLabelerUiKey - { - Key, - } - - [Serializable, NetSerializable] - public enum PaperLabelVisuals : byte - { - Layer, - HasLabel, - LabelType - } +namespace Content.Shared.Labels; - /// - /// Represents a state that can be sent to the client - /// - [Serializable, NetSerializable] - public sealed class HandLabelerBoundUserInterfaceState : BoundUserInterfaceState - { - public string CurrentLabel { get; } - - public HandLabelerBoundUserInterfaceState(string currentLabel) - { - CurrentLabel = currentLabel; - } - } +/// +/// Key representing which is currently open. +/// Useful when there are multiple UI for an object. Here it's future-proofing only. +/// +[Serializable, NetSerializable] +public enum HandLabelerUiKey +{ + Key, +} - [Serializable, NetSerializable] - public sealed class HandLabelerLabelChangedMessage : BoundUserInterfaceMessage - { - public string Label { get; } +[Serializable, NetSerializable] +public enum PaperLabelVisuals : byte +{ + Layer, + HasLabel, + LabelType +} - public HandLabelerLabelChangedMessage(string label) - { - Label = label; - } - } +[Serializable, NetSerializable] +public sealed class HandLabelerLabelChangedMessage(string label) : BoundUserInterfaceMessage +{ + public string Label { get; } = label; } diff --git a/Content.Shared/Language/Components/LanguageKnowledgeComponent.cs b/Content.Shared/Language/Components/LanguageKnowledgeComponent.cs deleted file mode 100644 index ddbdc742be..0000000000 --- a/Content.Shared/Language/Components/LanguageKnowledgeComponent.cs +++ /dev/null @@ -1,24 +0,0 @@ -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; - -namespace Content.Shared.Language.Components; - -// TODO: move to server side, it's never synchronized! - -/// -/// Stores data about entities' intrinsic language knowledge. -/// -[RegisterComponent] -public sealed partial class LanguageKnowledgeComponent : Component -{ - /// - /// List of languages this entity can speak without any external tools. - /// - [DataField("speaks", customTypeSerializer: typeof(PrototypeIdListSerializer), required: true)] - public List SpokenLanguages = new(); - - /// - /// List of languages this entity can understand without any external tools. - /// - [DataField("understands", customTypeSerializer: typeof(PrototypeIdListSerializer), required: true)] - public List UnderstoodLanguages = new(); -} diff --git a/Content.Shared/Language/Components/LanguageSpeakerComponent.cs b/Content.Shared/Language/Components/LanguageSpeakerComponent.cs index e8ebccb3dd..f026361cad 100644 --- a/Content.Shared/Language/Components/LanguageSpeakerComponent.cs +++ b/Content.Shared/Language/Components/LanguageSpeakerComponent.cs @@ -1,7 +1,9 @@ -namespace Content.Shared.Language; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations; -// TODO: either move all language speaker-related components to server side, or make everything else shared. -// The current approach leads to confusion, as the server never informs the client of updates in these components. +namespace Content.Shared.Language.Components; /// /// Stores the current state of the languages the entity can speak and understand. @@ -10,23 +12,35 @@ namespace Content.Shared.Language; /// All fields of this component are populated during a DetermineEntityLanguagesEvent. /// They are not to be modified externally. /// -[RegisterComponent] +[RegisterComponent, NetworkedComponent] public sealed partial class LanguageSpeakerComponent : Component { + public override bool SendOnlyToOwner => true; + /// /// The current language the entity uses when speaking. /// Other listeners will hear the entity speak in this language. /// [DataField] - public string CurrentLanguage = ""; // The language system will override it on init + public string CurrentLanguage = ""; // The language system will override it on mapinit /// /// List of languages this entity can speak at the current moment. /// - public List SpokenLanguages = []; + [DataField] + public List> SpokenLanguages = []; /// /// List of languages this entity can understand at the current moment. /// - public List UnderstoodLanguages = []; + [DataField] + public List> UnderstoodLanguages = []; + + [Serializable, NetSerializable] + public sealed class State : ComponentState + { + public string CurrentLanguage = default!; + public List> SpokenLanguages = default!; + public List> UnderstoodLanguages = default!; + } } diff --git a/Content.Shared/Language/Components/Translators/BaseTranslatorComponent.cs b/Content.Shared/Language/Components/Translators/BaseTranslatorComponent.cs index 072480031d..8bd1f6be48 100644 --- a/Content.Shared/Language/Components/Translators/BaseTranslatorComponent.cs +++ b/Content.Shared/Language/Components/Translators/BaseTranslatorComponent.cs @@ -1,3 +1,4 @@ +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; namespace Content.Shared.Language.Components.Translators; @@ -7,21 +8,21 @@ public abstract partial class BaseTranslatorComponent : Component /// /// The list of additional languages this translator allows the wielder to speak. /// - [DataField("spoken", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public List SpokenLanguages = new(); + [DataField("spoken")] + public List> SpokenLanguages = new(); /// /// The list of additional languages this translator allows the wielder to understand. /// - [DataField("understood", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public List UnderstoodLanguages = new(); + [DataField("understood")] + public List> UnderstoodLanguages = new(); /// /// 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. /// - [DataField("requires", customTypeSerializer: typeof(PrototypeIdListSerializer))] - public List RequiredLanguages = new(); + [DataField("requires")] + public List> RequiredLanguages = new(); /// /// If true, the wielder must understand all languages in [RequiredLanguages] to speak [SpokenLanguages], @@ -30,9 +31,8 @@ public abstract partial class BaseTranslatorComponent : Component /// Otherwise, at least one language must be known (or the list must be empty). /// [DataField("requiresAll")] - [ViewVariables(VVAccess.ReadWrite)] public bool RequiresAllLanguages = false; - [DataField("enabled"), ViewVariables(VVAccess.ReadWrite)] + [DataField("enabled")] public bool Enabled = true; } diff --git a/Content.Shared/Language/Components/Translators/HandheldTranslatorComponent.cs b/Content.Shared/Language/Components/Translators/HandheldTranslatorComponent.cs index 7e3de0eca6..6b2f434fa7 100644 --- a/Content.Shared/Language/Components/Translators/HandheldTranslatorComponent.cs +++ b/Content.Shared/Language/Components/Translators/HandheldTranslatorComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Language.Components.Translators; /// A translator that must be held in a hand or a pocket of an entity in order ot have effect. /// [RegisterComponent] -public sealed partial class HandheldTranslatorComponent : Translators.BaseTranslatorComponent +public sealed partial class HandheldTranslatorComponent : BaseTranslatorComponent { /// /// Whether interacting with this translator toggles it on and off. diff --git a/Content.Shared/Language/Components/UniversalLanguageSpeakerComponent.cs b/Content.Shared/Language/Components/UniversalLanguageSpeakerComponent.cs deleted file mode 100644 index 6f5ad1178b..0000000000 --- a/Content.Shared/Language/Components/UniversalLanguageSpeakerComponent.cs +++ /dev/null @@ -1,11 +0,0 @@ -namespace Content.Shared.Language.Components; - -// -// Signifies that this entity can speak and understand any language. -// Applies to such entities as ghosts. -// -[RegisterComponent] -public sealed partial class UniversalLanguageSpeakerComponent : Component -{ - -} diff --git a/Content.Server/Language/DetermineEntityLanguagesEvent.cs b/Content.Shared/Language/Events/DetermineEntityLanguagesEvent.cs similarity index 77% rename from Content.Server/Language/DetermineEntityLanguagesEvent.cs rename to Content.Shared/Language/Events/DetermineEntityLanguagesEvent.cs index 8d6b868d07..a01e5613f8 100644 --- a/Content.Server/Language/DetermineEntityLanguagesEvent.cs +++ b/Content.Shared/Language/Events/DetermineEntityLanguagesEvent.cs @@ -1,6 +1,6 @@ -using Content.Shared.Language; +using Robust.Shared.Prototypes; -namespace Content.Server.Language; +namespace Content.Shared.Language.Events; /// /// Raised in order to determine the list of languages the entity can speak and understand at the given moment. @@ -13,13 +13,13 @@ public record struct DetermineEntityLanguagesEvent /// The list of all languages the entity may speak. /// By default, contains the languages this entity speaks intrinsically. /// - public HashSet SpokenLanguages = new(); + public HashSet> SpokenLanguages = new(); /// /// The list of all languages the entity may understand. /// By default, contains the languages this entity understands intrinsically. /// - public HashSet UnderstoodLanguages = new(); + public HashSet> UnderstoodLanguages = new(); public DetermineEntityLanguagesEvent() {} } diff --git a/Content.Shared/Language/Events/LanguagesUpdateEvent.cs b/Content.Shared/Language/Events/LanguagesUpdateEvent.cs new file mode 100644 index 0000000000..fa68bf5af6 --- /dev/null +++ b/Content.Shared/Language/Events/LanguagesUpdateEvent.cs @@ -0,0 +1,12 @@ +namespace Content.Shared.Language.Events; + +/// +/// Raised on an entity when its list of languages changes. +/// +/// +/// This is raised both on the server and on the client. +/// The client raises it broadcast after receiving a new language comp state from the server. +/// +public sealed class LanguagesUpdateEvent : EntityEventArgs +{ +} diff --git a/Content.Shared/Language/Events/LanguagesUpdatedMessage.cs b/Content.Shared/Language/Events/LanguagesUpdatedMessage.cs deleted file mode 100644 index 563f036df6..0000000000 --- a/Content.Shared/Language/Events/LanguagesUpdatedMessage.cs +++ /dev/null @@ -1,15 +0,0 @@ -using Robust.Shared.Serialization; - -namespace Content.Shared.Language.Events; - -/// -/// Sent to the client when its list of languages changes. -/// The client should in turn update its HUD and relevant systems. -/// -[Serializable, NetSerializable] -public sealed class LanguagesUpdatedMessage(string currentLanguage, List spoken, List understood) : EntityEventArgs -{ - public string CurrentLanguage = currentLanguage; - public List Spoken = spoken; - public List Understood = understood; -} diff --git a/Content.Shared/Language/Events/RequestLanguagesMessage.cs b/Content.Shared/Language/Events/RequestLanguagesMessage.cs deleted file mode 100644 index aead1f4cd1..0000000000 --- a/Content.Shared/Language/Events/RequestLanguagesMessage.cs +++ /dev/null @@ -1,10 +0,0 @@ -using Robust.Shared.Serialization; - -namespace Content.Shared.Language.Events; - -/// -/// Sent from the client to the server when it needs to learn the list of languages its entity knows. -/// This event should always be followed by a , unless the client doesn't have an entity. -/// -[Serializable, NetSerializable] -public sealed class RequestLanguagesMessage : EntityEventArgs; diff --git a/Content.Shared/Language/LanguagePrototype.cs b/Content.Shared/Language/LanguagePrototype.cs index d40a7b4068..2137e4e838 100644 --- a/Content.Shared/Language/LanguagePrototype.cs +++ b/Content.Shared/Language/LanguagePrototype.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Language; [Prototype("language")] -public sealed class LanguagePrototype : IPrototype +public sealed partial class LanguagePrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Language/Systems/SharedLanguageSystem.cs b/Content.Shared/Language/Systems/SharedLanguageSystem.cs index 0a03086ebe..86a58dc2a7 100644 --- a/Content.Shared/Language/Systems/SharedLanguageSystem.cs +++ b/Content.Shared/Language/Systems/SharedLanguageSystem.cs @@ -10,7 +10,7 @@ public abstract class SharedLanguageSystem : EntitySystem /// The language used as a fallback in cases where an entity suddenly becomes a language speaker (e.g. the usage of make-sentient) /// [ValidatePrototypeId] - public static readonly string FallbackLanguagePrototype = "GalacticCommon"; + public static readonly string FallbackLanguagePrototype = "TauCetiBasic"; /// /// The language whose speakers are assumed to understand and speak every language. Should never be added directly. @@ -31,9 +31,9 @@ public override void Initialize() Universal = _prototype.Index("Universal"); } - public LanguagePrototype? GetLanguagePrototype(string id) + public LanguagePrototype? GetLanguagePrototype(ProtoId id) { - _prototype.TryIndex(id, out var proto); + _prototype.TryIndex(id, out var proto); return proto; } @@ -43,8 +43,7 @@ public override void Initialize() public string ObfuscateSpeech(string message, LanguagePrototype language) { var builder = new StringBuilder(); - var method = language.Obfuscation; - method.Obfuscate(builder, message, this); + language.Obfuscation.Obfuscate(builder, message, this); return builder.ToString(); } diff --git a/Content.Shared/Light/Components/SharedExpendableLightComponent.cs b/Content.Shared/Light/Components/SharedExpendableLightComponent.cs index e40174ab78..001794880a 100644 --- a/Content.Shared/Light/Components/SharedExpendableLightComponent.cs +++ b/Content.Shared/Light/Components/SharedExpendableLightComponent.cs @@ -7,7 +7,6 @@ namespace Content.Shared.Light.Components; [NetworkedComponent] public abstract partial class SharedExpendableLightComponent : Component { - public static readonly AudioParams LoopedSoundParams = new(0, 1, 62.5f, 1, 1, true, 0.3f); [ViewVariables(VVAccess.ReadOnly)] public ExpendableLightState CurrentState { get; set; } diff --git a/Content.Shared/Light/Components/UnpoweredFlashlightComponent.cs b/Content.Shared/Light/Components/UnpoweredFlashlightComponent.cs index 1b0701edd2..2953a01ced 100644 --- a/Content.Shared/Light/Components/UnpoweredFlashlightComponent.cs +++ b/Content.Shared/Light/Components/UnpoweredFlashlightComponent.cs @@ -2,7 +2,6 @@ using Robust.Shared.Audio; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Light.Components; @@ -17,7 +16,7 @@ public sealed partial class UnpoweredFlashlightComponent : Component public SoundSpecifier ToggleSound = new SoundPathSpecifier("/Audio/Items/flashlight_pda.ogg"); [DataField, AutoNetworkedField] - public bool LightOn = false; + public bool LightOn; [DataField] public EntProtoId ToggleAction = "ActionToggleLight"; diff --git a/Content.Shared/Light/EntitySystems/UnpoweredFlashlightSystem.cs b/Content.Shared/Light/EntitySystems/UnpoweredFlashlightSystem.cs new file mode 100644 index 0000000000..42e55bea55 --- /dev/null +++ b/Content.Shared/Light/EntitySystems/UnpoweredFlashlightSystem.cs @@ -0,0 +1,122 @@ +using Content.Shared.Actions; +using Content.Shared.Emag.Systems; +using Content.Shared.Light.Components; +using Content.Shared.Mind.Components; +using Content.Shared.Toggleable; +using Content.Shared.Verbs; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; +using Robust.Shared.Utility; + +namespace Content.Shared.Light.EntitySystems; + +public sealed class UnpoweredFlashlightSystem : EntitySystem +{ + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; + [Dependency] private readonly ActionContainerSystem _actionContainer = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audioSystem = default!; + [Dependency] private readonly SharedPointLightSystem _light = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(AddToggleLightVerbs); + SubscribeLocalEvent(OnGetActions); + SubscribeLocalEvent(OnToggleAction); + SubscribeLocalEvent(OnMindAdded); + SubscribeLocalEvent(OnGotEmagged); + SubscribeLocalEvent(OnMapInit); + } + + private void OnMapInit(EntityUid uid, UnpoweredFlashlightComponent component, MapInitEvent args) + { + _actionContainer.EnsureAction(uid, ref component.ToggleActionEntity, component.ToggleAction); + Dirty(uid, component); + } + + private void OnToggleAction(EntityUid uid, UnpoweredFlashlightComponent component, ToggleActionEvent args) + { + if (args.Handled) + return; + + TryToggleLight((uid, component), args.Performer); + args.Handled = true; + } + + private void OnGetActions(EntityUid uid, UnpoweredFlashlightComponent component, GetItemActionsEvent args) + { + args.AddAction(component.ToggleActionEntity); + } + + private void AddToggleLightVerbs(EntityUid uid, UnpoweredFlashlightComponent component, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract) + return; + + ActivationVerb verb = new() + { + Text = Loc.GetString("toggle-flashlight-verb-get-data-text"), + Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/light.svg.192dpi.png")), + Act = () => TryToggleLight((uid, component), args.User), + Priority = -1 // For things like PDA's, Open-UI and other verbs that should be higher priority. + }; + + args.Verbs.Add(verb); + } + + private void OnMindAdded(EntityUid uid, UnpoweredFlashlightComponent component, MindAddedMessage args) + { + _actionsSystem.AddAction(uid, ref component.ToggleActionEntity, component.ToggleAction); + } + + private void OnGotEmagged(EntityUid uid, UnpoweredFlashlightComponent component, ref GotEmaggedEvent args) + { + if (!_light.TryGetLight(uid, out var light)) + return; + + if (_prototypeManager.TryIndex(component.EmaggedColorsPrototype, out var possibleColors)) + { + var pick = _random.Pick(possibleColors.Colors.Values); + _light.SetColor(uid, pick, light); + } + + args.Repeatable = true; + args.Handled = true; + } + + public void TryToggleLight(Entity ent, EntityUid? user = null, bool quiet = false) + { + if (!Resolve(ent, ref ent.Comp, false)) + return; + + SetLight(ent, !ent.Comp.LightOn, user, quiet); + } + + public void SetLight(Entity ent, bool value, EntityUid? user = null, bool quiet = false) + { + if (!Resolve(ent, ref ent.Comp)) + return; + + if (ent.Comp.LightOn == value) + return; + + if (!_light.TryGetLight(ent, out var light)) + return; + + Dirty(ent); + ent.Comp.LightOn = value; + _light.SetEnabled(ent, value, light); + _appearance.SetData(ent, UnpoweredFlashlightVisuals.LightOn, value); + + if (!quiet) + _audioSystem.PlayPredicted(ent.Comp.ToggleSound, ent, user); + + _actionsSystem.SetToggled(ent.Comp.ToggleActionEntity, value); + RaiseLocalEvent(ent, new LightToggleEvent(value)); + } +} diff --git a/Content.Shared/Light/LightToggleEvent.cs b/Content.Shared/Light/LightToggleEvent.cs new file mode 100644 index 0000000000..ac48c09419 --- /dev/null +++ b/Content.Shared/Light/LightToggleEvent.cs @@ -0,0 +1,6 @@ +namespace Content.Shared.Light; + +public sealed class LightToggleEvent(bool isOn) : EntityEventArgs +{ + public bool IsOn = isOn; +} diff --git a/Content.Shared/Localizations/ContentLocalizationManager.cs b/Content.Shared/Localizations/ContentLocalizationManager.cs index 4459613bff..1bc5348f2b 100644 --- a/Content.Shared/Localizations/ContentLocalizationManager.cs +++ b/Content.Shared/Localizations/ContentLocalizationManager.cs @@ -39,7 +39,8 @@ public void Initialize() var fallbackCulture = new CultureInfo(FallbackCulture); _loc.LoadCulture(culture); - _loc.LoadCulture(fallbackCulture); + if (_culture != FallbackCulture) + _loc.LoadCulture(fallbackCulture); _loc.SetFallbackCluture(fallbackCulture); _loc.AddFunction(culture, "PRESSURE", FormatPressure); @@ -92,7 +93,7 @@ private ILocValue FormatNaturalPercent(LocArgs args) var maxDecimals = (int)Math.Floor(((LocValueNumber) args.Args[1]).Value); var formatter = (NumberFormatInfo)NumberFormatInfo.GetInstance(CultureInfo.GetCultureInfo(_culture)).Clone(); formatter.NumberDecimalDigits = maxDecimals; - return new LocValueString(string.Format(formatter, "{0:N}", number).TrimEnd('0').TrimEnd('.') + "%"); + return new LocValueString(string.Format(formatter, "{0:N}", number).TrimEnd('0').TrimEnd(char.Parse(formatter.NumberDecimalSeparator)) + "%"); } private ILocValue FormatNaturalFixed(LocArgs args) @@ -101,7 +102,7 @@ private ILocValue FormatNaturalFixed(LocArgs args) var maxDecimals = (int)Math.Floor(((LocValueNumber) args.Args[1]).Value); var formatter = (NumberFormatInfo)NumberFormatInfo.GetInstance(CultureInfo.GetCultureInfo(_culture)).Clone(); formatter.NumberDecimalDigits = maxDecimals; - return new LocValueString(string.Format(formatter, "{0:N}", number).TrimEnd('0').TrimEnd('.')); + return new LocValueString(string.Format(formatter, "{0:N}", number).TrimEnd('0').TrimEnd(char.Parse(formatter.NumberDecimalSeparator))); } private static readonly Regex PluralEsRule = new("^.*(s|sh|ch|x|z)$"); diff --git a/Content.Shared/Lock/LockComponent.cs b/Content.Shared/Lock/LockComponent.cs index 9606540a74..e1d47365b7 100644 --- a/Content.Shared/Lock/LockComponent.cs +++ b/Content.Shared/Lock/LockComponent.cs @@ -14,88 +14,81 @@ namespace Content.Shared.Lock; public sealed partial class LockComponent : Component { /// - /// Whether or not the lock is locked. + /// Whether or not the lock is locked. /// - [DataField("locked"), ViewVariables(VVAccess.ReadWrite)] - [AutoNetworkedField] - public bool Locked = true; + [DataField, AutoNetworkedField] + public bool Locked = true; /// - /// Whether or not the lock is toggled by simply clicking. + /// Whether or not the lock is toggled by simply clicking. /// - [DataField("lockOnClick"), ViewVariables(VVAccess.ReadWrite)] - [AutoNetworkedField] + [DataField, AutoNetworkedField] public bool LockOnClick; /// - /// Whether or not the lock is unlocked by simply clicking. + /// Whether or not the lock is unlocked by simply clicking. /// - [DataField("unlockOnClick"), ViewVariables(VVAccess.ReadWrite)] - [AutoNetworkedField] + [DataField, AutoNetworkedField] public bool UnlockOnClick = true; - /// - /// The sound played when unlocked. + /// The sound played when unlocked. /// - [DataField("unlockingSound"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public SoundSpecifier UnlockSound = new SoundPathSpecifier("/Audio/Machines/door_lock_off.ogg") { Params = AudioParams.Default.WithVolume(-5f), }; /// - /// The sound played when locked. + /// The sound played when locked. /// - [DataField("lockingSound"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public SoundSpecifier LockSound = new SoundPathSpecifier("/Audio/Machines/door_lock_on.ogg") { Params = AudioParams.Default.WithVolume(-5f) }; /// - /// Whether or not an emag disables it. + /// Whether or not an emag disables it. /// - [DataField("breakOnEmag")] - [AutoNetworkedField] + [DataField, AutoNetworkedField] public bool BreakOnEmag = true; /// - /// Amount of do-after time needed to lock the entity. + /// Amount of do-after time needed to lock the entity. /// /// - /// If set to zero, no do-after will be used. + /// If set to zero, no do-after will be used. /// - [DataField] - [AutoNetworkedField] + [DataField, AutoNetworkedField] public TimeSpan LockTime; /// - /// Amount of do-after time needed to unlock the entity. + /// Amount of do-after time needed to unlock the entity. /// /// - /// If set to zero, no do-after will be used. + /// If set to zero, no do-after will be used. /// - [DataField] - [AutoNetworkedField] + [DataField, AutoNetworkedField] public TimeSpan UnlockTime; } /// -/// Event raised on the lock when a toggle is attempted. -/// Can be cancelled to prevent it. +/// Event raised on the lock when a toggle is attempted. +/// Can be cancelled to prevent it. /// [ByRefEvent] public record struct LockToggleAttemptEvent(EntityUid User, bool Silent = false, bool Cancelled = false); /// -/// Event raised on a lock after it has been toggled. +/// Event raised on a lock after it has been toggled. /// [ByRefEvent] public readonly record struct LockToggledEvent(bool Locked); /// -/// Used to lock a lockable entity that has a lock time configured. +/// Used to lock a lockable entity that has a lock time configured. /// /// /// @@ -109,7 +102,7 @@ public override DoAfterEvent Clone() } /// -/// Used to unlock a lockable entity that has an unlock time configured. +/// Used to unlock a lockable entity that has an unlock time configured. /// /// /// diff --git a/Content.Shared/Lock/LockSystem.cs b/Content.Shared/Lock/LockSystem.cs index b74f17b152..9296a354d2 100644 --- a/Content.Shared/Lock/LockSystem.cs +++ b/Content.Shared/Lock/LockSystem.cs @@ -54,19 +54,18 @@ private void OnStartup(EntityUid uid, LockComponent lockComp, ComponentStartup a private void OnActivated(EntityUid uid, LockComponent lockComp, ActivateInWorldEvent args) { - if (args.Handled) return; // Only attempt an unlock by default on Activate - if (lockComp.Locked) + if (lockComp.Locked && lockComp.UnlockOnClick) { if (!lockComp.UnlockOnClick) return; TryUnlock(uid, args.User, lockComp); args.Handled = true; } - else if (lockComp.LockOnClick) + else if (!lockComp.Locked && lockComp.LockOnClick) { TryLock(uid, args.User, lockComp); args.Handled = true; @@ -204,6 +203,18 @@ public bool TryUnlock(EntityUid uid, EntityUid user, LockComponent? lockComp = n return true; } + /// + /// Returns true if the entity is locked. + /// Entities with no lock component are considered unlocked. + /// + public bool IsLocked(Entity ent) + { + if (!Resolve(ent, ref ent.Comp, false)) + return false; + + return ent.Comp.Locked; + } + /// /// Raises an event for other components to check whether or not /// the entity can be locked in its current state. diff --git a/Content.Shared/Magic/Components/MagicComponent.cs b/Content.Shared/Magic/Components/MagicComponent.cs new file mode 100644 index 0000000000..bcc11063b7 --- /dev/null +++ b/Content.Shared/Magic/Components/MagicComponent.cs @@ -0,0 +1,39 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Magic.Components; + +// TODO: Rename to MagicActionComponent or MagicRequirementsComponent +[RegisterComponent, NetworkedComponent, Access(typeof(SharedMagicSystem))] +public sealed partial class MagicComponent : Component +{ + // TODO: Split into different components? + // This could be the MagicRequirementsComp - which just is requirements for the spell + // Magic comp could be on the actual entities itself + // Could handle lifetime, ignore caster, etc? + // Magic caster comp would be on the caster, used for what I'm not sure + + // TODO: Do After here or in actions + + // TODO: Spell requirements + // A list of requirements to cast the spell + // Hands + // Any item in hand + // Spell takes up an inhand slot + // May be an action toggle or something + + // TODO: List requirements in action desc + /// + /// Does this spell require Wizard Robes & Hat? + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool RequiresClothes; + + /// + /// Does this spell require the user to speak? + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool RequiresSpeech; + + // TODO: FreeHand - should check if toggleable action + // Check which hand is free to toggle action in +} diff --git a/Content.Shared/Magic/Components/SpellbookComponent.cs b/Content.Shared/Magic/Components/SpellbookComponent.cs new file mode 100644 index 0000000000..f1b307c245 --- /dev/null +++ b/Content.Shared/Magic/Components/SpellbookComponent.cs @@ -0,0 +1,36 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.Magic.Components; + +/// +/// Spellbooks can grant one or more spells to the user. If marked as it will teach +/// the performer the spells and wipe the book. +/// Default behavior requires the book to be held in hand +/// +[RegisterComponent, Access(typeof(SpellbookSystem))] +public sealed partial class SpellbookComponent : Component +{ + /// + /// List of spells that this book has. This is a combination of the WorldSpells, EntitySpells, and InstantSpells. + /// + [ViewVariables] + public readonly List Spells = new(); + + /// + /// The three fields below is just used for initialization. + /// + [DataField] + [ViewVariables(VVAccess.ReadWrite)] + public Dictionary SpellActions = new(); + + [DataField] + [ViewVariables(VVAccess.ReadWrite)] + public float LearnTime = .75f; + + /// + /// If true, the spell action stays even after the book is removed + /// + [DataField] + [ViewVariables(VVAccess.ReadWrite)] + public bool LearnPermanently; +} diff --git a/Content.Shared/Magic/Components/WizardClothesComponent.cs b/Content.Shared/Magic/Components/WizardClothesComponent.cs new file mode 100644 index 0000000000..063cf56c33 --- /dev/null +++ b/Content.Shared/Magic/Components/WizardClothesComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Magic.Components; + +/// +/// The checks this if a spell requires wizard clothes +/// +[RegisterComponent, NetworkedComponent] +[Access(typeof(SharedMagicSystem))] +public sealed partial class WizardClothesComponent : Component; diff --git a/Content.Shared/Magic/Events/BeforeCastSpellEvent.cs b/Content.Shared/Magic/Events/BeforeCastSpellEvent.cs new file mode 100644 index 0000000000..afb5c1f090 --- /dev/null +++ b/Content.Shared/Magic/Events/BeforeCastSpellEvent.cs @@ -0,0 +1,12 @@ +namespace Content.Shared.Magic.Events; + +[ByRefEvent] +public struct BeforeCastSpellEvent(EntityUid performer) +{ + /// + /// The Performer of the event, to check if they meet the requirements. + /// + public EntityUid Performer = performer; + + public bool Cancelled; +} diff --git a/Content.Shared/Magic/Events/ChargeSpellEvent.cs b/Content.Shared/Magic/Events/ChargeSpellEvent.cs new file mode 100644 index 0000000000..8898761ec2 --- /dev/null +++ b/Content.Shared/Magic/Events/ChargeSpellEvent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Actions; + +namespace Content.Shared.Magic.Events; + +/// +/// Adds provided Charge to the held wand +/// +public sealed partial class ChargeSpellEvent : InstantActionEvent, ISpeakSpell +{ + [DataField(required: true)] + public int Charge; + + [DataField] + public string WandTag = "WizardWand"; + + [DataField] + public string? Speech { get; private set; } +} diff --git a/Content.Shared/Magic/Events/InstantSpawnSpellEvent.cs b/Content.Shared/Magic/Events/InstantSpawnSpellEvent.cs index ef8d689862..1405b15827 100644 --- a/Content.Shared/Magic/Events/InstantSpawnSpellEvent.cs +++ b/Content.Shared/Magic/Events/InstantSpawnSpellEvent.cs @@ -1,6 +1,5 @@ using Content.Shared.Actions; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Magic.Events; @@ -9,17 +8,18 @@ public sealed partial class InstantSpawnSpellEvent : InstantActionEvent, ISpeakS /// /// What entity should be spawned. /// - [DataField("prototype", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] - public string Prototype = default!; + [DataField(required: true)] + public EntProtoId Prototype; - [DataField("preventCollide")] + [DataField] public bool PreventCollideWithCaster = true; - [DataField("speech")] + [DataField] public string? Speech { get; private set; } /// /// Gets the targeted spawn positons; may lead to multiple entities being spawned. /// - [DataField("posData")] public MagicSpawnData Pos = new TargetCasterPos(); + [DataField] + public MagicInstantSpawnData PosData = new TargetCasterPos(); } diff --git a/Content.Shared/Magic/Events/KnockSpellEvent.cs b/Content.Shared/Magic/Events/KnockSpellEvent.cs index a3b0be5575..24a1700d21 100644 --- a/Content.Shared/Magic/Events/KnockSpellEvent.cs +++ b/Content.Shared/Magic/Events/KnockSpellEvent.cs @@ -1,5 +1,4 @@ using Content.Shared.Actions; -using Robust.Shared.Audio; namespace Content.Shared.Magic.Events; @@ -7,20 +6,12 @@ public sealed partial class KnockSpellEvent : InstantActionEvent, ISpeakSpell { /// /// The range this spell opens doors in - /// 4f is the default + /// 10f is the default + /// Should be able to open all doors/lockers in visible sight /// - [DataField("range")] - public float Range = 4f; + [DataField] + public float Range = 10f; - [DataField("knockSound")] - public SoundSpecifier KnockSound = new SoundPathSpecifier("/Audio/Magic/knock.ogg"); - - /// - /// Volume control for the spell. - /// - [DataField("knockVolume")] - public float KnockVolume = 5f; - - [DataField("speech")] + [DataField] public string? Speech { get; private set; } } diff --git a/Content.Shared/Magic/Events/ProjectileSpellEvent.cs b/Content.Shared/Magic/Events/ProjectileSpellEvent.cs index 4496625769..336ea03346 100644 --- a/Content.Shared/Magic/Events/ProjectileSpellEvent.cs +++ b/Content.Shared/Magic/Events/ProjectileSpellEvent.cs @@ -1,6 +1,5 @@ using Content.Shared.Actions; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Magic.Events; @@ -9,14 +8,9 @@ public sealed partial class ProjectileSpellEvent : WorldTargetActionEvent, ISpea /// /// What entity should be spawned. /// - [DataField("prototype", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] - public string Prototype = default!; + [DataField(required: true)] + public EntProtoId Prototype; - /// - /// Gets the targeted spawn positions; may lead to multiple entities being spawned. - /// - [DataField("posData")] public MagicSpawnData Pos = new TargetCasterPos(); - - [DataField("speech")] + [DataField] public string? Speech { get; private set; } } diff --git a/Content.Shared/Magic/Events/SmiteSpellEvent.cs b/Content.Shared/Magic/Events/SmiteSpellEvent.cs index 08ec63c05e..74ca116ad5 100644 --- a/Content.Shared/Magic/Events/SmiteSpellEvent.cs +++ b/Content.Shared/Magic/Events/SmiteSpellEvent.cs @@ -4,12 +4,13 @@ namespace Content.Shared.Magic.Events; public sealed partial class SmiteSpellEvent : EntityTargetActionEvent, ISpeakSpell { + // TODO: Make part of gib method /// - /// Should this smite delete all parts/mechanisms gibbed except for the brain? + /// Should this smite delete all parts/mechanisms gibbed except for the brain? /// - [DataField("deleteNonBrainParts")] + [DataField] public bool DeleteNonBrainParts = true; - [DataField("speech")] + [DataField] public string? Speech { get; private set; } } diff --git a/Content.Shared/Magic/Events/SpeakSpellEvent.cs b/Content.Shared/Magic/Events/SpeakSpellEvent.cs new file mode 100644 index 0000000000..1b3f7af63c --- /dev/null +++ b/Content.Shared/Magic/Events/SpeakSpellEvent.cs @@ -0,0 +1,8 @@ +namespace Content.Shared.Magic.Events; + +[ByRefEvent] +public readonly struct SpeakSpellEvent(EntityUid performer, string speech) +{ + public readonly EntityUid Performer = performer; + public readonly string Speech = speech; +} diff --git a/Content.Shared/Magic/Events/TeleportSpellEvent.cs b/Content.Shared/Magic/Events/TeleportSpellEvent.cs index b24f6ec72f..525c1e5105 100644 --- a/Content.Shared/Magic/Events/TeleportSpellEvent.cs +++ b/Content.Shared/Magic/Events/TeleportSpellEvent.cs @@ -1,19 +1,19 @@ using Content.Shared.Actions; -using Robust.Shared.Audio; namespace Content.Shared.Magic.Events; +// TODO: Can probably just be an entity or something public sealed partial class TeleportSpellEvent : WorldTargetActionEvent, ISpeakSpell { - [DataField("blinkSound")] - public SoundSpecifier BlinkSound = new SoundPathSpecifier("/Audio/Magic/blink.ogg"); - - [DataField("speech")] + [DataField] public string? Speech { get; private set; } + // TODO: Move to magic component + // TODO: Maybe not since sound specifier is a thing + // Keep here to remind what the volume was set as /// /// Volume control for the spell. /// - [DataField("blinkVolume")] + [DataField] public float BlinkVolume = 5f; } diff --git a/Content.Shared/Magic/Events/WorldSpawnSpellEvent.cs b/Content.Shared/Magic/Events/WorldSpawnSpellEvent.cs index 4355cab842..2f50c67b3e 100644 --- a/Content.Shared/Magic/Events/WorldSpawnSpellEvent.cs +++ b/Content.Shared/Magic/Events/WorldSpawnSpellEvent.cs @@ -4,29 +4,31 @@ namespace Content.Shared.Magic.Events; +// TODO: This class needs combining with InstantSpawnSpellEvent + public sealed partial class WorldSpawnSpellEvent : WorldTargetActionEvent, ISpeakSpell { - // TODO:This class needs combining with InstantSpawnSpellEvent - /// /// The list of prototypes this spell will spawn /// - [DataField("prototypes")] - public List Contents = new(); + [DataField] + public List Prototypes = new(); // TODO: This offset is liable for deprecation. + // TODO: Target tile via code instead? /// /// The offset the prototypes will spawn in on relative to the one prior. /// Set to 0,0 to have them spawn on the same tile. /// - [DataField("offset")] + [DataField] public Vector2 Offset; /// /// Lifetime to set for the entities to self delete /// - [DataField("lifetime")] public float? Lifetime; + [DataField] + public float? Lifetime; - [DataField("speech")] + [DataField] public string? Speech { get; private set; } } diff --git a/Content.Shared/Magic/MagicInstantSpawnData.cs b/Content.Shared/Magic/MagicInstantSpawnData.cs new file mode 100644 index 0000000000..5dcc1453ed --- /dev/null +++ b/Content.Shared/Magic/MagicInstantSpawnData.cs @@ -0,0 +1,25 @@ +namespace Content.Shared.Magic; + +// TODO: If still needed, move to magic component +[ImplicitDataDefinitionForInheritors] +public abstract partial class MagicInstantSpawnData; + +/// +/// Spawns underneath caster. +/// +public sealed partial class TargetCasterPos : MagicInstantSpawnData; + +/// +/// Spawns 3 tiles wide in front of the caster. +/// +public sealed partial class TargetInFront : MagicInstantSpawnData +{ + [DataField] + public int Width = 3; +} + + +/// +/// Spawns 1 tile in front of caster +/// +public sealed partial class TargetInFrontSingle : MagicInstantSpawnData; diff --git a/Content.Shared/Magic/MagicSpawnData.cs b/Content.Shared/Magic/MagicSpawnData.cs deleted file mode 100644 index cd96d4ad76..0000000000 --- a/Content.Shared/Magic/MagicSpawnData.cs +++ /dev/null @@ -1,20 +0,0 @@ -namespace Content.Shared.Magic; - -[ImplicitDataDefinitionForInheritors] -public abstract partial class MagicSpawnData -{ - -} - -/// -/// Spawns 1 at the caster's feet. -/// -public sealed partial class TargetCasterPos : MagicSpawnData {} - -/// -/// Targets the 3 tiles in front of the caster. -/// -public sealed partial class TargetInFront : MagicSpawnData -{ - [DataField("width")] public int Width = 3; -} diff --git a/Content.Shared/Magic/SharedMagicSystem.cs b/Content.Shared/Magic/SharedMagicSystem.cs new file mode 100644 index 0000000000..cc7a297aa4 --- /dev/null +++ b/Content.Shared/Magic/SharedMagicSystem.cs @@ -0,0 +1,519 @@ +using System.Numerics; +using Content.Shared.Actions; +using Content.Shared.Body.Components; +using Content.Shared.Body.Systems; +using Content.Shared.Coordinates.Helpers; +using Content.Shared.Doors.Components; +using Content.Shared.Doors.Systems; +using Content.Shared.Hands.Components; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Interaction; +using Content.Shared.Inventory; +using Content.Shared.Lock; +using Content.Shared.Magic.Components; +using Content.Shared.Magic.Events; +using Content.Shared.Maps; +using Content.Shared.Physics; +using Content.Shared.Popups; +using Content.Shared.Speech.Muting; +using Content.Shared.Storage; +using Content.Shared.Tag; +using Content.Shared.Weapons.Ranged.Components; +using Content.Shared.Weapons.Ranged.Systems; +using Robust.Shared.Map; +using Robust.Shared.Map.Components; +using Robust.Shared.Network; +using Robust.Shared.Physics.Systems; +using Robust.Shared.Random; +using Robust.Shared.Serialization.Manager; +using Robust.Shared.Spawners; + +namespace Content.Shared.Magic; + +/// +/// Handles learning and using spells (actions) +/// +public abstract class SharedMagicSystem : EntitySystem +{ + [Dependency] private readonly ISerializationManager _seriMan = default!; + [Dependency] private readonly IComponentFactory _compFact = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly SharedGunSystem _gunSystem = default!; + [Dependency] private readonly SharedPhysicsSystem _physics = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly INetManager _net = default!; + [Dependency] private readonly SharedBodySystem _body = default!; + [Dependency] private readonly EntityLookupSystem _lookup = default!; + [Dependency] private readonly SharedDoorSystem _door = default!; + [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedInteractionSystem _interaction = default!; + [Dependency] private readonly LockSystem _lock = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly TagSystem _tag = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnBeforeCastSpell); + + SubscribeLocalEvent(OnInstantSpawn); + SubscribeLocalEvent(OnTeleportSpell); + SubscribeLocalEvent(OnWorldSpawn); + SubscribeLocalEvent(OnProjectileSpell); + SubscribeLocalEvent(OnChangeComponentsSpell); + SubscribeLocalEvent(OnSmiteSpell); + SubscribeLocalEvent(OnKnockSpell); + SubscribeLocalEvent(OnChargeSpell); + + // Spell wishlist + // A wishlish of spells that I'd like to implement or planning on implementing in a future PR + + // TODO: InstantDoAfterSpell and WorldDoafterSpell + // Both would be an action that take in an event, that passes an event to trigger once the doafter is done + // This would be three events: + // 1 - Event that triggers from the action that starts the doafter + // 2 - The doafter event itself, which passes the event with it + // 3 - The event to trigger once the do-after finishes + + // TODO: Inanimate objects to life ECS + // AI sentience + + // TODO: Flesh2Stone + // Entity Target spell + // Synergy with Inanimate object to life (detects player and allows player to move around) + + // TODO: Lightning Spell + // Should just fire lightning, try to prevent arc back to caster + + // TODO: Magic Missile (homing projectile ecs) + // Instant action, target any player (except self) on screen + + // TODO: Random projectile ECS for magic-carp, wand of magic + + // TODO: Recall Spell + // mark any item in hand to recall + // ItemRecallComponent + // Event adds the component if it doesn't exist and the performer isn't stored in the comp + // 2nd firing of the event checks to see if the recall comp has this uid, and if it does it calls it + // if no free hands, summon at feet + // if item deleted, clear stored item + + // TODO: Jaunt (should be its own ECS) + // Instant action + // When clicked, disappear/reappear (goes to paused map) + // option to restrict to tiles + // option for requiring entry/exit (blood jaunt) + // speed option + + // TODO: Summon Events + // List of wizard events to add into the event pool that frequently activate + // floor is lava + // change places + // ECS that when triggered, will periodically trigger a random GameRule + // Would need a controller/controller entity? + + // TODO: Summon Guns + // Summon a random gun at peoples feet + // Get every alive player (not in cryo, not a simplemob) + // TODO: After Antag Rework - Rare chance of giving gun collector status to people + + // TODO: Summon Magic + // Summon a random magic wand at peoples feet + // Get every alive player (not in cryo, not a simplemob) + // TODO: After Antag Rework - Rare chance of giving magic collector status to people + + // TODO: Bottle of Blood + // Summons Slaughter Demon + // TODO: Slaughter Demon + // Also see Jaunt + + // TODO: Field Spells + // Should be able to specify a grid of tiles (3x3 for example) that it effects + // Timed despawn - so it doesn't last forever + // Ignore caster - for spells that shouldn't effect the caster (ie if timestop should effect the caster) + + // TODO: Touch toggle spell + // 1 - When toggled on, show in hand + // 2 - Block hand when toggled on + // - Require free hand + // 3 - use spell event when toggled & click + } + + private void OnBeforeCastSpell(Entity ent, ref BeforeCastSpellEvent args) + { + var comp = ent.Comp; + var hasReqs = true; + + if (comp.RequiresClothes) + { + var enumerator = _inventory.GetSlotEnumerator(args.Performer, SlotFlags.OUTERCLOTHING | SlotFlags.HEAD); + while (enumerator.MoveNext(out var containerSlot)) + { + if (containerSlot.ContainedEntity is { } item) + hasReqs = HasComp(item); + else + hasReqs = false; + + if (!hasReqs) + break; + } + } + + if (comp.RequiresSpeech && HasComp(args.Performer)) + hasReqs = false; + + if (hasReqs) + return; + + args.Cancelled = true; + _popup.PopupClient(Loc.GetString("spell-requirements-failed"), args.Performer, args.Performer); + + // TODO: Pre-cast do after, either here or in SharedActionsSystem + } + + private bool PassesSpellPrerequisites(EntityUid spell, EntityUid performer) + { + var ev = new BeforeCastSpellEvent(performer); + RaiseLocalEvent(spell, ref ev); + return !ev.Cancelled; + } + + #region Spells + #region Instant Spawn Spells + /// + /// Handles the instant action (i.e. on the caster) attempting to spawn an entity. + /// + private void OnInstantSpawn(InstantSpawnSpellEvent args) + { + if (args.Handled || !PassesSpellPrerequisites(args.Action, args.Performer)) + return; + + var transform = Transform(args.Performer); + + foreach (var position in GetInstantSpawnPositions(transform, args.PosData)) + { + SpawnSpellHelper(args.Prototype, position, args.Performer, preventCollide: args.PreventCollideWithCaster); + } + + Speak(args); + args.Handled = true; + } + + /// + /// Gets spawn positions listed on + /// + /// + private List GetInstantSpawnPositions(TransformComponent casterXform, MagicInstantSpawnData data) + { + switch (data) + { + case TargetCasterPos: + return new List(1) {casterXform.Coordinates}; + case TargetInFrontSingle: + { + var directionPos = casterXform.Coordinates.Offset(casterXform.LocalRotation.ToWorldVec().Normalized()); + + if (!TryComp(casterXform.GridUid, out var mapGrid)) + return new List(); + if (!directionPos.TryGetTileRef(out var tileReference, EntityManager, _mapManager)) + return new List(); + + var tileIndex = tileReference.Value.GridIndices; + return new List(1) { _mapSystem.GridTileToLocal(casterXform.GridUid.Value, mapGrid, tileIndex) }; + } + case TargetInFront: + { + var directionPos = casterXform.Coordinates.Offset(casterXform.LocalRotation.ToWorldVec().Normalized()); + + if (!TryComp(casterXform.GridUid, out var mapGrid)) + return new List(); + + if (!directionPos.TryGetTileRef(out var tileReference, EntityManager, _mapManager)) + return new List(); + + var tileIndex = tileReference.Value.GridIndices; + var coords = _mapSystem.GridTileToLocal(casterXform.GridUid.Value, mapGrid, tileIndex); + EntityCoordinates coordsPlus; + EntityCoordinates coordsMinus; + + var dir = casterXform.LocalRotation.GetCardinalDir(); + switch (dir) + { + case Direction.North: + case Direction.South: + { + coordsPlus = _mapSystem.GridTileToLocal(casterXform.GridUid.Value, mapGrid, tileIndex + (1, 0)); + coordsMinus = _mapSystem.GridTileToLocal(casterXform.GridUid.Value, mapGrid, tileIndex + (-1, 0)); + return new List(3) + { + coords, + coordsPlus, + coordsMinus, + }; + } + case Direction.East: + case Direction.West: + { + coordsPlus = _mapSystem.GridTileToLocal(casterXform.GridUid.Value, mapGrid, tileIndex + (0, 1)); + coordsMinus = _mapSystem.GridTileToLocal(casterXform.GridUid.Value, mapGrid, tileIndex + (0, -1)); + return new List(3) + { + coords, + coordsPlus, + coordsMinus, + }; + } + } + + return new List(); + } + default: + throw new ArgumentOutOfRangeException(); + } + } + // End Instant Spawn Spells + #endregion + #region World Spawn Spells + /// + /// Spawns entities from a list within range of click. + /// + /// + /// It will offset entities after the first entity based on the OffsetVector2. + /// + /// The Spawn Spell Event args. + private void OnWorldSpawn(WorldSpawnSpellEvent args) + { + if (args.Handled || !PassesSpellPrerequisites(args.Action, args.Performer)) + return; + + var targetMapCoords = args.Target; + + WorldSpawnSpellHelper(args.Prototypes, targetMapCoords, args.Performer, args.Lifetime, args.Offset); + Speak(args); + args.Handled = true; + } + + /// + /// Loops through a supplied list of entity prototypes and spawns them + /// + /// + /// If an offset of 0, 0 is supplied then the entities will all spawn on the same tile. + /// Any other offset will spawn entities starting from the source Map Coordinates and will increment the supplied + /// offset + /// + /// The list of Entities to spawn in + /// Map Coordinates where the entities will spawn + /// Check to see if the entities should self delete + /// A Vector2 offset that the entities will spawn in + private void WorldSpawnSpellHelper(List entityEntries, EntityCoordinates entityCoords, EntityUid performer, float? lifetime, Vector2 offsetVector2) + { + var getProtos = EntitySpawnCollection.GetSpawns(entityEntries, _random); + + var offsetCoords = entityCoords; + foreach (var proto in getProtos) + { + SpawnSpellHelper(proto, offsetCoords, performer, lifetime); + offsetCoords = offsetCoords.Offset(offsetVector2); + } + } + // End World Spawn Spells + #endregion + #region Projectile Spells + private void OnProjectileSpell(ProjectileSpellEvent ev) + { + if (ev.Handled || !PassesSpellPrerequisites(ev.Action, ev.Performer) || !_net.IsServer) + return; + + ev.Handled = true; + Speak(ev); + + var xform = Transform(ev.Performer); + var fromCoords = xform.Coordinates; + var toCoords = ev.Target; + var userVelocity = _physics.GetMapLinearVelocity(ev.Performer); + + // If applicable, this ensures the projectile is parented to grid on spawn, instead of the map. + var fromMap = fromCoords.ToMap(EntityManager, _transform); + var spawnCoords = _mapManager.TryFindGridAt(fromMap, out var gridUid, out _) + ? fromCoords.WithEntityId(gridUid, EntityManager) + : new(_mapManager.GetMapEntityId(fromMap.MapId), fromMap.Position); + + var ent = Spawn(ev.Prototype, spawnCoords); + var direction = toCoords.ToMapPos(EntityManager, _transform) - + spawnCoords.ToMapPos(EntityManager, _transform); + _gunSystem.ShootProjectile(ent, direction, userVelocity, ev.Performer, ev.Performer); + } + // End Projectile Spells + #endregion + #region Change Component Spells + // staves.yml ActionRGB light + private void OnChangeComponentsSpell(ChangeComponentsSpellEvent ev) + { + if (ev.Handled || !PassesSpellPrerequisites(ev.Action, ev.Performer)) + return; + + ev.Handled = true; + Speak(ev); + + foreach (var toRemove in ev.ToRemove) + { + if (_compFact.TryGetRegistration(toRemove, out var registration)) + RemComp(ev.Target, registration.Type); + } + + foreach (var (name, data) in ev.ToAdd) + { + if (HasComp(ev.Target, data.Component.GetType())) + continue; + + var component = (Component) _compFact.GetComponent(name); + component.Owner = ev.Target; + var temp = (object) component; + _seriMan.CopyTo(data.Component, ref temp); + EntityManager.AddComponent(ev.Target, (Component) temp!); + } + } + // End Change Component Spells + #endregion + #region Teleport Spells + // TODO: Rename to teleport clicked spell? + /// + /// Teleports the user to the clicked location + /// + /// + private void OnTeleportSpell(TeleportSpellEvent args) + { + if (args.Handled || !PassesSpellPrerequisites(args.Action, args.Performer)) + return; + + var transform = Transform(args.Performer); + + if (transform.MapID != args.Target.GetMapId(EntityManager) || !_interaction.InRangeUnobstructed(args.Performer, args.Target, range: 1000F, collisionMask: CollisionGroup.Opaque, popup: true)) + return; + + _transform.SetCoordinates(args.Performer, args.Target); + _transform.AttachToGridOrMap(args.Performer, transform); + Speak(args); + args.Handled = true; + } + // End Teleport Spells + #endregion + #region Spell Helpers + private void SpawnSpellHelper(string? proto, EntityCoordinates position, EntityUid performer, float? lifetime = null, bool preventCollide = false) + { + if (!_net.IsServer) + return; + + var ent = Spawn(proto, position.SnapToGrid(EntityManager, _mapManager)); + + if (lifetime != null) + { + var comp = EnsureComp(ent); + comp.Lifetime = lifetime.Value; + } + + if (preventCollide) + { + var comp = EnsureComp(ent); + comp.Uid = performer; + } + } + // End Spell Helpers + #endregion + #region Smite Spells + private void OnSmiteSpell(SmiteSpellEvent ev) + { + if (ev.Handled || !PassesSpellPrerequisites(ev.Action, ev.Performer)) + return; + + ev.Handled = true; + Speak(ev); + + var direction = _transform.GetMapCoordinates(ev.Target, Transform(ev.Target)).Position - _transform.GetMapCoordinates(ev.Performer, Transform(ev.Performer)).Position; + var impulseVector = direction * 10000; + + _physics.ApplyLinearImpulse(ev.Target, impulseVector); + + if (!TryComp(ev.Target, out var body)) + return; + + _body.GibBody(ev.Target, true, body); + } + // End Smite Spells + #endregion + #region Knock Spells + /// + /// Opens all doors and locks within range + /// + /// + private void OnKnockSpell(KnockSpellEvent args) + { + if (args.Handled || !PassesSpellPrerequisites(args.Action, args.Performer)) + return; + + args.Handled = true; + Speak(args); + + var transform = Transform(args.Performer); + + // Look for doors and lockers, and don't open/unlock them if they're already opened/unlocked. + foreach (var target in _lookup.GetEntitiesInRange(_transform.GetMapCoordinates(args.Performer, transform), args.Range, flags: LookupFlags.Dynamic | LookupFlags.Static)) + { + if (!_interaction.InRangeUnobstructed(args.Performer, target, range: 0, collisionMask: CollisionGroup.Opaque)) + continue; + + if (TryComp(target, out var doorBoltComp) && doorBoltComp.BoltsDown) + _door.SetBoltsDown((target, doorBoltComp), false, predicted: true); + + if (TryComp(target, out var doorComp) && doorComp.State is not DoorState.Open) + _door.StartOpening(target); + + if (TryComp(target, out var lockComp) && lockComp.Locked) + _lock.Unlock(target, args.Performer, lockComp); + } + } + // End Knock Spells + #endregion + #region Charge Spells + // TODO: Future support to charge other items + private void OnChargeSpell(ChargeSpellEvent ev) + { + if (ev.Handled || !PassesSpellPrerequisites(ev.Action, ev.Performer) || !TryComp(ev.Performer, out var handsComp)) + return; + + EntityUid? wand = null; + foreach (var item in _hands.EnumerateHeld(ev.Performer, handsComp)) + { + if (!_tag.HasTag(item, ev.WandTag)) + continue; + + wand = item; + } + + ev.Handled = true; + Speak(ev); + + if (wand == null || !TryComp(wand, out var basicAmmoComp) || basicAmmoComp.Count == null) + return; + + _gunSystem.UpdateBasicEntityAmmoCount(wand.Value, basicAmmoComp.Count.Value + ev.Charge, basicAmmoComp); + } + // End Charge Spells + #endregion + // End Spells + #endregion + + // When any spell is cast it will raise this as an event, so then it can be played in server or something. At least until chat gets moved to shared + // TODO: Temp until chat is in shared + private void Speak(BaseActionEvent args) + { + if (args is not ISpeakSpell speak || string.IsNullOrWhiteSpace(speak.Speech)) + return; + + var ev = new SpeakSpellEvent(args.Performer, speak.Speech); + RaiseLocalEvent(ref ev); + } +} diff --git a/Content.Shared/Magic/SpellbookSystem.cs b/Content.Shared/Magic/SpellbookSystem.cs new file mode 100644 index 0000000000..a7c8274624 --- /dev/null +++ b/Content.Shared/Magic/SpellbookSystem.cs @@ -0,0 +1,98 @@ +using Content.Shared.Actions; +using Content.Shared.DoAfter; +using Content.Shared.Interaction.Events; +using Content.Shared.Magic.Components; +using Content.Shared.Mind; +using Robust.Shared.Network; + +namespace Content.Shared.Magic; + +public sealed class SpellbookSystem : EntitySystem +{ + [Dependency] private readonly SharedMindSystem _mind = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly ActionContainerSystem _actionContainer = default!; + [Dependency] private readonly INetManager _netManager = default!; + + public override void Initialize() + { + SubscribeLocalEvent(OnInit, before: [typeof(SharedMagicSystem)]); + SubscribeLocalEvent(OnUse); + SubscribeLocalEvent(OnDoAfter); + } + + private void OnInit(Entity ent, ref MapInitEvent args) + { + foreach (var (id, charges) in ent.Comp.SpellActions) + { + var spell = _actionContainer.AddAction(ent, id); + if (spell == null) + continue; + + int? charge = charges; + if (_actions.GetCharges(spell) != null) + charge = _actions.GetCharges(spell); + + _actions.SetCharges(spell, charge < 0 ? null : charge); + ent.Comp.Spells.Add(spell.Value); + } + } + + private void OnUse(Entity ent, ref UseInHandEvent args) + { + if (args.Handled) + return; + + AttemptLearn(ent, args); + + args.Handled = true; + } + + private void OnDoAfter(Entity ent, ref T args) where T : DoAfterEvent // Sometimes i despise this language + { + if (args.Handled || args.Cancelled) + return; + + args.Handled = true; + + if (!ent.Comp.LearnPermanently) + { + _actions.GrantActions(args.Args.User, ent.Comp.Spells, ent); + return; + } + + if (_mind.TryGetMind(args.Args.User, out var mindId, out _)) + { + var mindActionContainerComp = EnsureComp(mindId); + + if (_netManager.IsServer) + _actionContainer.TransferAllActionsWithNewAttached(ent, mindId, args.Args.User, newContainer: mindActionContainerComp); + } + else + { + foreach (var (id, charges) in ent.Comp.SpellActions) + { + EntityUid? actionId = null; + if (_actions.AddAction(args.Args.User, ref actionId, id)) + _actions.SetCharges(actionId, charges < 0 ? null : charges); + } + } + + ent.Comp.SpellActions.Clear(); + } + + private void AttemptLearn(Entity ent, UseInHandEvent args) + { + var doAfterEventArgs = new DoAfterArgs(EntityManager, args.User, ent.Comp.LearnTime, new SpellbookDoAfterEvent(), ent, target: ent) + { + BreakOnTargetMove = true, + BreakOnUserMove = true, + BreakOnWeightlessMove = true, + BreakOnDamage = true, + NeedHand = true, // What, are you going to read with your eyes only?? + }; + + _doAfter.TryStartDoAfter(doAfterEventArgs); + } +} diff --git a/Content.Server/MagicMirror/MagicMirrorComponent.cs b/Content.Shared/MagicMirror/MagicMirrorComponent.cs similarity index 89% rename from Content.Server/MagicMirror/MagicMirrorComponent.cs rename to Content.Shared/MagicMirror/MagicMirrorComponent.cs index 624a381ca5..6357543905 100644 --- a/Content.Server/MagicMirror/MagicMirrorComponent.cs +++ b/Content.Shared/MagicMirror/MagicMirrorComponent.cs @@ -1,13 +1,13 @@ using Content.Shared.DoAfter; -using Content.Shared.Humanoid; using Robust.Shared.Audio; +using Robust.Shared.GameStates; -namespace Content.Server.MagicMirror; +namespace Content.Shared.MagicMirror; /// /// Allows humanoids to change their appearance mid-round. /// -[RegisterComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class MagicMirrorComponent : Component { [DataField] @@ -16,7 +16,7 @@ public sealed partial class MagicMirrorComponent : Component /// /// Magic mirror target, used for validating UI messages. /// - [DataField] + [DataField, AutoNetworkedField] public EntityUid? Target; /// diff --git a/Content.Shared/MagicMirror/SharedMagicMirrorSystem.cs b/Content.Shared/MagicMirror/SharedMagicMirrorSystem.cs index 0b22e02498..f9c941ffe3 100644 --- a/Content.Shared/MagicMirror/SharedMagicMirrorSystem.cs +++ b/Content.Shared/MagicMirror/SharedMagicMirrorSystem.cs @@ -1,10 +1,29 @@ using Content.Shared.DoAfter; using Content.Shared.Humanoid.Markings; -using Robust.Shared.Player; +using Content.Shared.Interaction; using Robust.Shared.Serialization; namespace Content.Shared.MagicMirror; +public abstract class SharedMagicMirrorSystem : EntitySystem +{ + [Dependency] private readonly SharedInteractionSystem _interaction = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnMirrorRangeCheck); + } + + private void OnMirrorRangeCheck(EntityUid uid, MagicMirrorComponent component, ref BoundUserInterfaceCheckRangeEvent args) + { + if (!Exists(component.Target) || !_interaction.InRangeUnobstructed(uid, component.Target.Value)) + { + args.Result = BoundUserInterfaceRangeResult.Fail; + } + } +} + [Serializable, NetSerializable] public enum MagicMirrorUiKey : byte { diff --git a/Content.Shared/Materials/MaterialReclaimerComponent.cs b/Content.Shared/Materials/MaterialReclaimerComponent.cs index 3e72baf604..2fd6cd6fc8 100644 --- a/Content.Shared/Materials/MaterialReclaimerComponent.cs +++ b/Content.Shared/Materials/MaterialReclaimerComponent.cs @@ -1,100 +1,121 @@ -using Content.Shared.Whitelist; +using Content.Shared.Construction.Prototypes; +using Content.Shared.Whitelist; using Robust.Shared.Audio; using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Shared.Materials; /// -/// This is a machine that handles converting entities -/// into the raw materials and chemicals that make them up. +/// This is a machine that handles converting entities +/// into the raw materials and chemicals that make them up. /// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState, AutoGenerateComponentPause] [Access(typeof(SharedMaterialReclaimerSystem))] public sealed partial class MaterialReclaimerComponent : Component { /// - /// Whether or not the machine has power. We put it here - /// so we can network and predict it. + /// Whether or not the machine has power. We put it here + /// so we can network and predict it. /// - [DataField, AutoNetworkedField, ViewVariables(VVAccess.ReadWrite)] + [DataField, AutoNetworkedField] public bool Powered; /// - /// An "enable" toggle for things like interfacing with machine linking + /// An "enable" toggle for things like interfacing with machine linking /// - [DataField, AutoNetworkedField, ViewVariables(VVAccess.ReadWrite)] + [DataField, AutoNetworkedField] public bool Enabled = true; /// - /// How efficiently the materials are reclaimed. - /// In practice, a multiplier per material when calculating the output of the reclaimer. + /// How efficiently the materials are reclaimed. + /// In practice, a multiplier per material when calculating the output of the reclaimer. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public float Efficiency = 1f; /// - /// Whether or not the process - /// speed scales with the amount of materials being processed - /// or if it's just + /// Whether or not the process + /// speed scales with the amount of materials being processed + /// or if it's just /// [DataField] public bool ScaleProcessSpeed = true; /// - /// How quickly it takes to consume X amount of materials per second. - /// For example, with a rate of 50, an entity with 100 total material takes 2 seconds to process. + /// How quickly it takes to consume X amount of materials per second. + /// For example, with a rate of 50, an entity with 100 total material takes 2 seconds to process. /// - [DataField, AutoNetworkedField, ViewVariables(VVAccess.ReadWrite)] + [DataField] + public float BaseMaterialProcessRate = 100f; + + /// + /// How quickly it takes to consume X amount of materials per second. + /// For example, with a rate of 50, an entity with 100 total material takes 2 seconds to process. + /// + [DataField, AutoNetworkedField] public float MaterialProcessRate = 100f; /// - /// The minimum amount fo time it can take to process an entity. - /// this value supercedes the calculated one using + /// Machine part whose rating modifies + /// + [DataField] + public ProtoId MachinePartProcessRate = "Manipulator"; + + /// + /// How much the machine part quality affects the /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] + public float PartRatingProcessRateMultiplier = 1.5f; + + /// + /// The minimum amount fo time it can take to process an entity. + /// this value supercedes the calculated one using + /// + [DataField] public TimeSpan MinimumProcessDuration = TimeSpan.FromSeconds(0.5f); /// - /// The id of our output solution + /// The id of our output solution /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public string SolutionContainerId = "output"; /// - /// a whitelist for what entities can be inserted into this reclaimer + /// a whitelist for what entities can be inserted into this reclaimer /// [DataField] public EntityWhitelist? Whitelist; /// - /// a blacklist for what entities cannot be inserted into this reclaimer + /// a blacklist for what entities cannot be inserted into this reclaimer /// [DataField] public EntityWhitelist? Blacklist; /// - /// The sound played when something is being processed. + /// The sound played when something is being processed. /// [DataField] public SoundSpecifier? Sound; /// - /// whether or not we cut off the sound early when the reclaiming ends. + /// whether or not we cut off the sound early when the reclaiming ends. /// [DataField] public bool CutOffSound = true; /// - /// When the next sound will be allowed to be played. Used to prevent spam. + /// When the next sound will be allowed to be played. Used to prevent spam. /// [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] [AutoPausedField] public TimeSpan NextSound; /// - /// Minimum time inbetween each + /// Minimum time inbetween each /// [DataField] public TimeSpan SoundCooldown = TimeSpan.FromSeconds(0.8f); @@ -102,10 +123,10 @@ public sealed partial class MaterialReclaimerComponent : Component public EntityUid? Stream; /// - /// A counter of how many items have been processed + /// A counter of how many items have been processed /// /// - /// I saw this on the recycler and i'm porting it because it's cute af + /// I saw this on the recycler and i'm porting it because it's cute af /// [DataField, AutoNetworkedField] public int ItemsProcessed; diff --git a/Content.Shared/Medical/PenLightComponent.cs b/Content.Shared/Medical/PenLightComponent.cs index 50dacae3dc..770e8af7e9 100644 --- a/Content.Shared/Medical/PenLightComponent.cs +++ b/Content.Shared/Medical/PenLightComponent.cs @@ -9,6 +9,7 @@ namespace Content.Shared.Medical; [RegisterComponent, NetworkedComponent, AutoGenerateComponentPause] public sealed partial class PenLightComponent : Component { + /// /// Cooldown Time, exams take a bit /// diff --git a/Content.Shared/Mind/SharedMindSystem.cs b/Content.Shared/Mind/SharedMindSystem.cs index 1898126d80..bf1065c1b1 100644 --- a/Content.Shared/Mind/SharedMindSystem.cs +++ b/Content.Shared/Mind/SharedMindSystem.cs @@ -26,7 +26,6 @@ public abstract class SharedMindSystem : EntitySystem [Dependency] private readonly SharedObjectivesSystem _objectives = default!; [Dependency] private readonly SharedPlayerSystem _player = default!; [Dependency] private readonly MetaDataSystem _metadata = default!; - [Dependency] private readonly ISharedPlayerManager _playerMan = default!; [ViewVariables] protected readonly Dictionary UserMinds = new(); @@ -383,6 +382,30 @@ public bool TryGetObjectiveComp(EntityUid mindId, [NotNullWhen(true)] out T? return false; } + /// + /// Tries to find an objective that has the same prototype as the argument. + /// + /// + /// Will not work for objectives that have no prototype, or duplicate objectives with the same prototype. + /// + public bool TryFindObjective(Entity mind, string prototype, [NotNullWhen(true)] out EntityUid? objective) + { + objective = null; + if (!Resolve(mind, ref mind.Comp)) + return false; + + foreach (var uid in mind.Comp.Objectives) + { + if (MetaData(uid).EntityPrototype?.ID == prototype) + { + objective = uid; + return true; + } + } + + return false; + } + public bool TryGetSession(EntityUid? mindId, [NotNullWhen(true)] out ICommonSession? session) { session = null; diff --git a/Content.Shared/Mobs/Components/MobStateComponent.cs b/Content.Shared/Mobs/Components/MobStateComponent.cs index a2ff349e13..7cff0779cb 100644 --- a/Content.Shared/Mobs/Components/MobStateComponent.cs +++ b/Content.Shared/Mobs/Components/MobStateComponent.cs @@ -13,30 +13,21 @@ namespace Content.Shared.Mobs.Components /// [RegisterComponent] [NetworkedComponent] + [AutoGenerateComponentState] [Access(typeof(MobStateSystem), typeof(MobThresholdSystem))] public sealed partial class MobStateComponent : Component { //default mobstate is always the lowest state level - [ViewVariables] public MobState CurrentState { get; set; } = MobState.Alive; + [AutoNetworkedField, ViewVariables] + public MobState CurrentState { get; set; } = MobState.Alive; - [DataField("allowedStates")] public HashSet AllowedStates = new() + [DataField] + [AutoNetworkedField] + public HashSet AllowedStates = new() { MobState.Alive, MobState.Critical, MobState.Dead }; } - - [Serializable, NetSerializable] - public sealed class MobStateComponentState : ComponentState - { - public readonly MobState CurrentState; - public readonly HashSet AllowedStates; - - public MobStateComponentState(MobState currentState, HashSet allowedStates) - { - CurrentState = currentState; - AllowedStates = allowedStates; - } - } } diff --git a/Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs b/Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs index 08b351e61e..d9ef671afe 100644 --- a/Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs +++ b/Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs @@ -90,12 +90,12 @@ private void OnStateEnteredSubscribers(EntityUid target, MobStateComponent compo _appearance.SetData(target, MobStateVisuals.State, MobState.Alive); break; case MobState.Critical: - _standing.Down(target); + _standing.Down(target, setDrawDepth: true); _appearance.SetData(target, MobStateVisuals.State, MobState.Critical); break; case MobState.Dead: EnsureComp(target); - _standing.Down(target); + _standing.Down(target, setDrawDepth: true); if (_standing.IsDown(target) && TryComp(target, out var physics)) { diff --git a/Content.Shared/Mobs/Systems/MobStateSystem.cs b/Content.Shared/Mobs/Systems/MobStateSystem.cs index ff54c30aaf..a3886dd42e 100644 --- a/Content.Shared/Mobs/Systems/MobStateSystem.cs +++ b/Content.Shared/Mobs/Systems/MobStateSystem.cs @@ -25,8 +25,6 @@ public override void Initialize() _sawmill = _logManager.GetSawmill("MobState"); base.Initialize(); SubscribeEvents(); - SubscribeLocalEvent(OnGetComponentState); - SubscribeLocalEvent(OnHandleComponentState); } #region Public API @@ -100,24 +98,5 @@ public bool IsInvalidState(EntityUid target, MobStateComponent? component = null #region Private Implementation - private void OnHandleComponentState(EntityUid uid, MobStateComponent component, ref ComponentHandleState args) - { - if (args.Current is not MobStateComponentState state) - return; - - component.CurrentState = state.CurrentState; - - if (!component.AllowedStates.SetEquals(state.AllowedStates)) - { - component.AllowedStates.Clear(); - component.AllowedStates.UnionWith(state.AllowedStates); - } - } - - private void OnGetComponentState(EntityUid uid, MobStateComponent component, ref ComponentGetState args) - { - args.State = new MobStateComponentState(component.CurrentState, component.AllowedStates); - } - #endregion } diff --git a/Content.Shared/Mood/MoodCategoryPrototype.cs b/Content.Shared/Mood/MoodCategoryPrototype.cs index 13d5f8b7ea..d5bcd707c8 100644 --- a/Content.Shared/Mood/MoodCategoryPrototype.cs +++ b/Content.Shared/Mood/MoodCategoryPrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Mood; /// A prototype defining a category for moodlets, where only a single moodlet of a given category is permitted. /// [Prototype] -public sealed class MoodCategoryPrototype : IPrototype +public sealed partial class MoodCategoryPrototype : IPrototype { [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/Mood/MoodEffectPrototype.cs b/Content.Shared/Mood/MoodEffectPrototype.cs index ad21faec80..da9d178510 100644 --- a/Content.Shared/Mood/MoodEffectPrototype.cs +++ b/Content.Shared/Mood/MoodEffectPrototype.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Mood; [Prototype] -public sealed class MoodEffectPrototype : IPrototype +public sealed partial class MoodEffectPrototype : IPrototype { /// /// The ID of the moodlet to use. @@ -12,24 +12,34 @@ public sealed class MoodEffectPrototype : IPrototype public string ID { get; } = default!; public string Description => Loc.GetString($"mood-effect-{ID}"); + /// /// If they already have an effect with the same category, the new one will replace the old one. /// [DataField, ValidatePrototypeId] public string? Category; + /// /// How much should this moodlet modify an entity's Mood. /// [DataField(required: true)] public float MoodChange; + /// /// How long, in Seconds, does this moodlet last? If omitted, the moodlet will last until canceled by any system. /// [DataField] public int Timeout; + /// /// Should this moodlet be hidden from the player? EG: No popups or chat messages. /// [DataField] public bool Hidden; + + /// + /// When not null, this moodlet will replace itself with another Moodlet upon expiration. + /// + [DataField] + public ProtoId? MoodletOnEnd; } diff --git a/Content.Shared/MouseRotator/MouseRotatorComponent.cs b/Content.Shared/MouseRotator/MouseRotatorComponent.cs index a35dfe0a28..2844b3cb8b 100644 --- a/Content.Shared/MouseRotator/MouseRotatorComponent.cs +++ b/Content.Shared/MouseRotator/MouseRotatorComponent.cs @@ -30,8 +30,7 @@ public sealed partial class MouseRotatorComponent : Component public double RotationSpeed = float.MaxValue; /// - /// This one is important. If this is true, does not apply, and the system will - /// use instead. In this mode, the client will only send + /// This one is important. If this is true, does not apply. In this mode, the client will only send /// events when an entity should snap to a different cardinal direction, rather than for every angle change. /// /// This is useful for cases like humans, where what really matters is the visual sprite direction, as opposed to something @@ -50,13 +49,3 @@ public sealed class RequestMouseRotatorRotationEvent : EntityEventArgs { public Angle Rotation; } - -/// -/// Simpler version of for implementations -/// that only require snapping to 4-dir and not full angle rotation. -/// -[Serializable, NetSerializable] -public sealed class RequestMouseRotatorRotationSimpleEvent : EntityEventArgs -{ - public Direction Direction; -} diff --git a/Content.Shared/MouseRotator/SharedMouseRotatorSystem.cs b/Content.Shared/MouseRotator/SharedMouseRotatorSystem.cs index c57d477bd2..9663b3363d 100644 --- a/Content.Shared/MouseRotator/SharedMouseRotatorSystem.cs +++ b/Content.Shared/MouseRotator/SharedMouseRotatorSystem.cs @@ -1,5 +1,4 @@ using Content.Shared.Interaction; -using Robust.Shared.Timing; namespace Content.Shared.MouseRotator; @@ -16,7 +15,6 @@ public override void Initialize() base.Initialize(); SubscribeAllEvent(OnRequestRotation); - SubscribeAllEvent(OnRequestSimpleRotation); } public override void Update(float frameTime) @@ -50,7 +48,7 @@ public override void Update(float frameTime) private void OnRequestRotation(RequestMouseRotatorRotationEvent msg, EntitySessionEventArgs args) { if (args.SenderSession.AttachedEntity is not { } ent - || !TryComp(ent, out var rotator) || rotator.Simple4DirMode) + || !TryComp(ent, out var rotator)) { Log.Error($"User {args.SenderSession.Name} ({args.SenderSession.UserId}) tried setting local rotation directly without a valid mouse rotator component attached!"); return; @@ -59,17 +57,4 @@ private void OnRequestRotation(RequestMouseRotatorRotationEvent msg, EntitySessi rotator.GoalRotation = msg.Rotation; Dirty(ent, rotator); } - - private void OnRequestSimpleRotation(RequestMouseRotatorRotationSimpleEvent ev, EntitySessionEventArgs args) - { - if (args.SenderSession.AttachedEntity is not { } ent - || !TryComp(ent, out var rotator) || !rotator.Simple4DirMode) - { - Log.Error($"User {args.SenderSession.Name} ({args.SenderSession.UserId}) tried setting 4-dir rotation directly without a valid mouse rotator component attached!"); - return; - } - - rotator.GoalRotation = ev.Direction.ToAngle(); - Dirty(ent, rotator); - } } diff --git a/Content.Shared/Movement/Components/InputMoverComponent.cs b/Content.Shared/Movement/Components/InputMoverComponent.cs index 916ecc90af..40cb532e60 100644 --- a/Content.Shared/Movement/Components/InputMoverComponent.cs +++ b/Content.Shared/Movement/Components/InputMoverComponent.cs @@ -74,11 +74,12 @@ public sealed partial class InputMoverComponent : Component public const float LerpTime = 1.0f; - //NOTE I don't think I'm supposed to do this - public bool Sprinting => IoCManager.Resolve().GetCVar(CCVars.GamePressToSprint) + public bool Sprinting => DefaultSprinting ? (HeldMoveButtons & MoveButtons.Walk) != 0x0 : (HeldMoveButtons & MoveButtons.Walk) == 0x0; + public bool DefaultSprinting = true; + [ViewVariables(VVAccess.ReadWrite)] public bool CanMove = true; @@ -94,6 +95,6 @@ public sealed class InputMoverComponentState : ComponentState public Angle TargetRelativeRotation; public Angle RelativeRotation; public TimeSpan LerpTarget; - public bool CanMove; + public bool CanMove, DefaultSprinting; } } diff --git a/Content.Shared/Movement/Components/MobMoverComponent.cs b/Content.Shared/Movement/Components/MobMoverComponent.cs index a77f415b93..7ad7961ed7 100644 --- a/Content.Shared/Movement/Components/MobMoverComponent.cs +++ b/Content.Shared/Movement/Components/MobMoverComponent.cs @@ -14,6 +14,15 @@ public sealed partial class MobMoverComponent : Component [DataField] public float PushStrength = 600f; + [DataField, AutoNetworkedField] + public float StepSoundMoveDistanceRunning = 2; + + [DataField, AutoNetworkedField] + public float StepSoundMoveDistanceWalking = 1.5f; + + [DataField, AutoNetworkedField] + public float FootstepVariation; + [ViewVariables(VVAccess.ReadWrite)] public EntityCoordinates LastPosition { get; set; } diff --git a/Content.Shared/Movement/Components/WaddleAnimationComponent.cs b/Content.Shared/Movement/Components/WaddleAnimationComponent.cs index c43ef3042e..ef88f68b26 100644 --- a/Content.Shared/Movement/Components/WaddleAnimationComponent.cs +++ b/Content.Shared/Movement/Components/WaddleAnimationComponent.cs @@ -1,26 +1,29 @@ using System.Numerics; +using Robust.Shared.Serialization; namespace Content.Shared.Movement.Components; +// WD EDIT START /// /// Declares that an entity has started to waddle like a duck/clown. /// -/// The newly be-waddled. -[ByRefEvent] -public record struct StartedWaddlingEvent(EntityUid Entity) +/// The newly be-waddled. +[Serializable, NetSerializable] +public sealed class StartedWaddlingEvent(NetEntity user) : EntityEventArgs { - public EntityUid Entity = Entity; + public NetEntity User = user; } /// /// Declares that an entity has stopped waddling like a duck/clown. /// -/// The former waddle-er. -[ByRefEvent] -public record struct StoppedWaddlingEvent(EntityUid Entity) +/// The former waddle-er. +[Serializable, NetSerializable] +public sealed class StoppedWaddlingEvent(NetEntity user) : EntityEventArgs { - public EntityUid Entity = Entity; + public NetEntity User = user; } +// WD EDIT END /// /// Defines something as having a waddle animation when it moves. diff --git a/Content.Shared/Movement/Events/UpdateInputCVarsMessage.cs b/Content.Shared/Movement/Events/UpdateInputCVarsMessage.cs new file mode 100644 index 0000000000..415a833f10 --- /dev/null +++ b/Content.Shared/Movement/Events/UpdateInputCVarsMessage.cs @@ -0,0 +1,9 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.Movement.Events; + +/// +/// Raised from the client to the server to require the server to update the client's input CVars. +/// +[Serializable, NetSerializable] +public sealed class UpdateInputCVarsMessage : EntityEventArgs { } diff --git a/Content.Shared/Movement/Pulling/Components/PullableComponent.cs b/Content.Shared/Movement/Pulling/Components/PullableComponent.cs index db889e7e3b..01ce0efaae 100644 --- a/Content.Shared/Movement/Pulling/Components/PullableComponent.cs +++ b/Content.Shared/Movement/Pulling/Components/PullableComponent.cs @@ -36,4 +36,11 @@ public sealed partial class PullableComponent : Component [Access(typeof(Systems.PullingSystem), Other = AccessPermissions.ReadExecute)] [AutoNetworkedField, DataField] public bool PrevFixedRotation; + + /// + /// Whether the entity is currently being actively pushed by the puller. + /// If true, the entity will be able to enter disposals upon colliding with them, and the like. + /// + [DataField, AutoNetworkedField] + public bool BeingActivelyPushed = false; } diff --git a/Content.Shared/Movement/Pulling/Components/PullerComponent.cs b/Content.Shared/Movement/Pulling/Components/PullerComponent.cs index 1fc9b731bd..648f06086b 100644 --- a/Content.Shared/Movement/Pulling/Components/PullerComponent.cs +++ b/Content.Shared/Movement/Pulling/Components/PullerComponent.cs @@ -1,5 +1,6 @@ using Content.Shared.Movement.Pulling.Systems; using Robust.Shared.GameStates; +using Robust.Shared.Map; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Shared.Movement.Pulling.Components; @@ -11,16 +12,17 @@ namespace Content.Shared.Movement.Pulling.Components; [Access(typeof(PullingSystem))] public sealed partial class PullerComponent : Component { - // My raiding guild /// - /// Next time the puller can throw what is being pulled. - /// Used to avoid spamming it for infinite spin + velocity. + /// Next time the puller change where they are pulling the target towards. /// [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoNetworkedField] - public TimeSpan NextThrow; + public TimeSpan NextPushTargetChange; + + [DataField, AutoNetworkedField] + public TimeSpan NextPushStop; [DataField] - public TimeSpan ThrowCooldown = TimeSpan.FromSeconds(1); + public TimeSpan PushChangeCooldown = TimeSpan.FromSeconds(0.1f), PushDuration = TimeSpan.FromSeconds(5f); // Before changing how this is updated, please see SharedPullerSystem.RefreshMovementSpeed public float WalkSpeedModifier => Pulling == default ? 1.0f : 0.95f; @@ -28,14 +30,38 @@ public sealed partial class PullerComponent : Component public float SprintSpeedModifier => Pulling == default ? 1.0f : 0.95f; /// - /// Entity currently being pulled if applicable. + /// Entity currently being pulled/pushed if applicable. /// [AutoNetworkedField, DataField] public EntityUid? Pulling; + /// + /// The position the entity is currently being pulled towards. + /// + [AutoNetworkedField, DataField] + public EntityCoordinates? PushingTowards; + /// /// Does this entity need hands to be able to pull something? /// [DataField] public bool NeedsHands = true; + + /// + /// The maximum acceleration of pushing, in meters per second squared. + /// + [DataField] + public float PushAcceleration = 0.3f; + + /// + /// The maximum speed to which the pulled entity may be accelerated relative to the push direction, in meters per second. + /// + [DataField] + public float MaxPushSpeed = 1.2f; + + /// + /// The maximum distance between the puller and the point towards which the puller may attempt to pull it, in meters. + /// + [DataField] + public float MaxPushRange = 2f; } diff --git a/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs b/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs index 3c265d5a02..33dde399a5 100644 --- a/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs +++ b/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs @@ -4,20 +4,25 @@ using Content.Shared.Alert; using Content.Shared.Buckle.Components; using Content.Shared.Database; +using Content.Shared.Gravity; using Content.Shared.Hands; using Content.Shared.Hands.EntitySystems; using Content.Shared.Input; using Content.Shared.Interaction; +using Content.Shared.Movement.Components; using Content.Shared.Movement.Events; using Content.Shared.Movement.Pulling.Components; using Content.Shared.Movement.Pulling.Events; using Content.Shared.Movement.Systems; +using Content.Shared.Projectiles; using Content.Shared.Pulling.Events; +using Content.Shared.Standing; using Content.Shared.Throwing; using Content.Shared.Verbs; using Robust.Shared.Containers; using Robust.Shared.Input.Binding; using Robust.Shared.Map; +using Robust.Shared.Network; using Robust.Shared.Physics; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Events; @@ -34,8 +39,10 @@ public sealed class PullingSystem : EntitySystem { [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; + [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly ActionBlockerSystem _blocker = default!; [Dependency] private readonly AlertsSystem _alertsSystem = default!; + [Dependency] private readonly SharedGravitySystem _gravity = default!; [Dependency] private readonly MovementSpeedModifierSystem _modifierSystem = default!; [Dependency] private readonly SharedJointSystem _joints = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; @@ -43,7 +50,7 @@ public sealed class PullingSystem : EntitySystem [Dependency] private readonly SharedInteractionSystem _interaction = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly SharedTransformSystem _xformSys = default!; - [Dependency] private readonly ThrowingSystem _throwing = default!; + [Dependency] private readonly ThrownItemSystem _thrownItem = default!; public override void Initialize() { @@ -57,11 +64,14 @@ public override void Initialize() SubscribeLocalEvent(OnJointRemoved); SubscribeLocalEvent>(AddPullVerbs); SubscribeLocalEvent(OnPullableContainerInsert); + SubscribeLocalEvent(OnPullableCollide); + SubscribeLocalEvent(OnPullerMoveInput); SubscribeLocalEvent(OnPullerContainerInsert); SubscribeLocalEvent(OnPullerUnpaused); SubscribeLocalEvent(OnVirtualItemDeleted); SubscribeLocalEvent(OnRefreshMovespeed); + SubscribeLocalEvent(OnDropHandItems); CommandBinds.Builder .Bind(ContentKeyFunctions.MovePulledObject, new PointerInputCmdHandler(OnRequestMovePulledObject)) @@ -69,6 +79,99 @@ public override void Initialize() .Register(); } + public override void Shutdown() + { + base.Shutdown(); + CommandBinds.Unregister(); + } + + public override void Update(float frameTime) + { + if (_net.IsClient) // Client cannot predict this + return; + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var puller, out var pullerComp, out var pullerPhysics, out var pullerXForm)) + { + // If not pulling, reset the pushing cooldowns and exit + if (pullerComp.Pulling is not { } pulled || !TryComp(pulled, out var pulledComp)) + { + pullerComp.PushingTowards = null; + pullerComp.NextPushTargetChange = TimeSpan.Zero; + continue; + } + + pulledComp.BeingActivelyPushed = false; // Temporarily set to false; if the checks below pass, it will be set to true again + + // If pulling but the pullee is invalid or is on a different map, stop pulling + var pulledXForm = Transform(pulled); + if (!TryComp(pulled, out var pulledPhysics) + || pulledPhysics.BodyType == BodyType.Static + || pulledXForm.MapUid != pullerXForm.MapUid) + { + StopPulling(pulled, pulledComp); + continue; + } + + if (pullerComp.PushingTowards is null) + continue; + + // If pushing but the target position is invalid, or the push action has expired or finished, stop pushing + if (pullerComp.NextPushStop < _timing.CurTime + || !(pullerComp.PushingTowards.Value.ToMap(EntityManager, _xformSys) is var pushCoordinates) + || pushCoordinates.MapId != pulledXForm.MapID) + { + pullerComp.PushingTowards = null; + pullerComp.NextPushTargetChange = TimeSpan.Zero; + continue; + } + + // Actual force calculation. All the Vector2's below are in map coordinates. + var desiredDeltaPos = pushCoordinates.Position - Transform(pulled).Coordinates.ToMapPos(EntityManager, _xformSys); + if (desiredDeltaPos.LengthSquared() < 0.1f) + { + pullerComp.PushingTowards = null; + continue; + } + + var velocityAndDirectionAngle = new Angle(pulledPhysics.LinearVelocity) - new Angle(desiredDeltaPos); + var currentRelativeSpeed = pulledPhysics.LinearVelocity.Length() * (float) Math.Cos(velocityAndDirectionAngle.Theta); + var desiredAcceleration = MathF.Max(0f, pullerComp.MaxPushSpeed - currentRelativeSpeed); + + var desiredImpulse = pulledPhysics.Mass * desiredDeltaPos; + var maxSourceImpulse = MathF.Min(pullerComp.PushAcceleration, desiredAcceleration) * pullerPhysics.Mass; + var actualImpulse = desiredImpulse.LengthSquared() > maxSourceImpulse * maxSourceImpulse ? desiredDeltaPos.Normalized() * maxSourceImpulse : desiredImpulse; + + // Ideally we'd want to apply forces instead of impulses, however... + // We cannot use ApplyForce here because it will be cleared on the next physics substep which will render it ultimately useless + // The alternative is to run this function on every physics substep, but that is way too expensive for such a minor system + _physics.ApplyLinearImpulse(pulled, actualImpulse); + if (_gravity.IsWeightless(puller, pullerPhysics, pullerXForm)) + _physics.ApplyLinearImpulse(puller, -actualImpulse); + + pulledComp.BeingActivelyPushed = true; + } + query.Dispose(); + } + + private void OnPullerMoveInput(EntityUid uid, PullerComponent component, ref MoveInputEvent args) + { + // Stop pushing + component.PushingTowards = null; + component.NextPushStop = TimeSpan.Zero; + } + + private void OnDropHandItems(EntityUid uid, PullerComponent pullerComp, DropHandItemsEvent args) + { + if (pullerComp.Pulling == null || pullerComp.NeedsHands) + return; + + if (!TryComp(pullerComp.Pulling, out PullableComponent? pullableComp)) + return; + + TryStopPull(pullerComp.Pulling.Value, pullableComp, uid); + } + private void OnPullerContainerInsert(Entity ent, ref EntGotInsertedIntoContainerMessage args) { if (ent.Comp.Pulling == null) return; @@ -84,15 +187,26 @@ private void OnPullableContainerInsert(Entity ent, ref EntGot TryStopPull(ent.Owner, ent.Comp); } - public override void Shutdown() + private void OnPullableCollide(Entity ent, ref StartCollideEvent args) { - base.Shutdown(); - CommandBinds.Unregister(); + if (!ent.Comp.BeingActivelyPushed || ent.Comp.Puller == null || args.OtherEntity == ent.Comp.Puller) + return; + + // This component isn't actually needed anywhere besides the thrownitemsyste`m itself, so we just fake it + var fakeThrown = new ThrownItemComponent() + { + Owner = ent.Owner, + Animate = false, + Landed = false, + PlayLandSound = false, + Thrower = ent.Comp.Puller + }; + _thrownItem.ThrowCollideInteraction(fakeThrown, ent, args.OtherEntity); } private void OnPullerUnpaused(EntityUid uid, PullerComponent component, ref EntityUnpausedEvent args) { - component.NextThrow += args.PausedTime; + component.NextPushTargetChange += args.PausedTime; } private void OnVirtualItemDeleted(EntityUid uid, PullerComponent component, VirtualItemDeletedEvent args) @@ -204,6 +318,7 @@ private void StopPulling(EntityUid pullableUid, PullableComponent pullableComp) var oldPuller = pullableComp.Puller; pullableComp.PullJointId = null; pullableComp.Puller = null; + pullableComp.BeingActivelyPushed = false; Dirty(pullableUid, pullableComp); // No more joints with puller -> force stop pull. @@ -234,31 +349,22 @@ public bool IsPulled(EntityUid uid, PullableComponent? component = null) private bool OnRequestMovePulledObject(ICommonSession? session, EntityCoordinates coords, EntityUid uid) { - if (session?.AttachedEntity is not { } player || - !player.IsValid()) - { - return false; - } - - if (!TryComp(player, out var pullerComp)) + if (session?.AttachedEntity is not { } player + || !player.IsValid() + || !TryComp(player, out var pullerComp)) return false; var pulled = pullerComp.Pulling; - - if (!HasComp(pulled)) + if (!HasComp(pulled) + || _containerSystem.IsEntityInContainer(player) + || _timing.CurTime < pullerComp.NextPushTargetChange) return false; - if (_containerSystem.IsEntityInContainer(player)) - return false; - - // Cooldown buddy - if (_timing.CurTime < pullerComp.NextThrow) - return false; - - pullerComp.NextThrow = _timing.CurTime + pullerComp.ThrowCooldown; + pullerComp.NextPushTargetChange = _timing.CurTime + pullerComp.PushChangeCooldown; + pullerComp.NextPushStop = _timing.CurTime + pullerComp.PushDuration; // Cap the distance - const float range = 2f; + var range = pullerComp.MaxPushRange; var fromUserCoords = coords.WithEntityId(player, EntityManager); var userCoords = new EntityCoordinates(player, Vector2.Zero); @@ -268,8 +374,9 @@ private bool OnRequestMovePulledObject(ICommonSession? session, EntityCoordinate fromUserCoords = userCoords.Offset(userDirection.Normalized() * range); } + pullerComp.PushingTowards = fromUserCoords; Dirty(player, pullerComp); - _throwing.TryThrow(pulled.Value, fromUserCoords, user: player, strength: 4f, animated: false, recoil: false, playSound: false, doSpin: false); + return false; } diff --git a/Content.Shared/Movement/Systems/SharedJetpackSystem.cs b/Content.Shared/Movement/Systems/SharedJetpackSystem.cs index 8c42511f84..8d358f8db3 100644 --- a/Content.Shared/Movement/Systems/SharedJetpackSystem.cs +++ b/Content.Shared/Movement/Systems/SharedJetpackSystem.cs @@ -1,9 +1,11 @@ using Content.Shared.Actions; +using Content.Shared.CCVar; using Content.Shared.Gravity; using Content.Shared.Interaction.Events; using Content.Shared.Movement.Components; using Content.Shared.Movement.Events; using Content.Shared.Popups; +using Robust.Shared.Configuration; using Robust.Shared.Containers; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; @@ -20,6 +22,7 @@ public abstract class SharedJetpackSystem : EntitySystem [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly ActionContainerSystem _actionContainer = default!; + [Dependency] private readonly IConfigurationManager _config = default!; public override void Initialize() { @@ -125,8 +128,11 @@ private void OnJetpackToggle(EntityUid uid, JetpackComponent component, ToggleJe private bool CanEnableOnGrid(EntityUid? gridUid) { - return gridUid == null || - (!HasComp(gridUid)); + return _config.GetCVar(CCVars.JetpackEnableAnywhere) + || gridUid == null + || _config.GetCVar(CCVars.JetpackEnableInNoGravity) + && TryComp(gridUid, out var comp) + && comp.Enabled; } private void OnJetpackGetAction(EntityUid uid, JetpackComponent component, GetItemActionsEvent args) diff --git a/Content.Shared/Movement/Systems/SharedMoverController.CVars.cs b/Content.Shared/Movement/Systems/SharedMoverController.CVars.cs new file mode 100644 index 0000000000..97c837eb8e --- /dev/null +++ b/Content.Shared/Movement/Systems/SharedMoverController.CVars.cs @@ -0,0 +1,43 @@ +using Content.Shared.CCVar; +using Content.Shared.Mind.Components; +using Content.Shared.Movement.Components; +using Content.Shared.Movement.Events; +using Robust.Shared.Configuration; + +namespace Content.Shared.Movement.Systems; + +public abstract partial class SharedMoverController +{ + [Dependency] private readonly INetConfigurationManager _netConfig = default!; + + private void InitializeCVars() + { + SubscribeLocalEvent(OnMindAdded); + SubscribeLocalEvent(OnMindRemoved); + SubscribeNetworkEvent(OnUpdateCVars); + } + + private void OnMindAdded(Entity ent, ref MindAddedMessage args) + { + if (args.Mind.Comp.Session?.Channel is not { } channel) + return; + + ent.Comp.DefaultSprinting = _netConfig.GetClientCVar(channel, CCVars.DefaultWalk); + WalkingAlert(ent, ent.Comp); + } + + private void OnMindRemoved(Entity ent, ref MindRemovedMessage args) + { + // If it's an ai-controlled mob, we probably want them sprinting by default. + ent.Comp.DefaultSprinting = true; + } + + private void OnUpdateCVars(UpdateInputCVarsMessage msg, EntitySessionEventArgs args) + { + if (args.SenderSession.AttachedEntity is not { } uid || !TryComp(uid, out var mover)) + return; + + mover.DefaultSprinting = _netConfig.GetClientCVar(args.SenderSession.Channel, CCVars.DefaultWalk); + WalkingAlert(uid, mover); + } +} diff --git a/Content.Shared/Movement/Systems/SharedMoverController.Input.cs b/Content.Shared/Movement/Systems/SharedMoverController.Input.cs index 50cffa6ffe..1c097ce17b 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.Input.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.Input.cs @@ -5,6 +5,7 @@ using Content.Shared.Input; using Content.Shared.Movement.Components; using Content.Shared.Movement.Events; +using Robust.Shared.Configuration; using Robust.Shared.GameStates; using Robust.Shared.Input; using Robust.Shared.Input.Binding; @@ -108,6 +109,7 @@ private void OnMoverHandleState(EntityUid uid, InputMoverComponent component, Co component.TargetRelativeRotation = state.TargetRelativeRotation; component.CanMove = state.CanMove; component.RelativeEntity = EnsureEntity(state.RelativeEntity, uid); + component.DefaultSprinting = state.DefaultSprinting; // Reset component.LastInputTick = GameTick.Zero; @@ -131,6 +133,7 @@ private void OnMoverGetState(EntityUid uid, InputMoverComponent component, ref C HeldMoveButtons = component.HeldMoveButtons, RelativeRotation = component.RelativeRotation, TargetRelativeRotation = component.TargetRelativeRotation, + DefaultSprinting = component.DefaultSprinting }; } @@ -260,7 +263,7 @@ private void OnInputParentChange(EntityUid uid, InputMoverComponent component, r } var oldMapId = args.OldMapId; - var mapId = args.Transform.MapID; + var mapId = args.Transform.MapUid; // If we change maps then reset eye rotation entirely. if (oldMapId != mapId) @@ -334,7 +337,7 @@ private void OnInputInit(EntityUid uid, InputMoverComponent component, Component component.RelativeEntity = xform.GridUid ?? xform.MapUid; component.TargetRelativeRotation = Angle.Zero; - WalkingAlert(uid, !component.Sprinting); + WalkingAlert(uid, component); } private void HandleRunChange(EntityUid uid, ushort subTick, bool walking) @@ -346,8 +349,8 @@ 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) { - WalkingAlert(uid, walking); SetMoveInput(moverComp, MoveButtons.None); + WalkingAlert(uid, moverComp); } HandleRunChange(relayMover.RelayEntity, subTick, walking); @@ -467,8 +470,8 @@ private void ResetSubtick(InputMoverComponent component) public void SetSprinting(EntityUid entity, InputMoverComponent component, ushort subTick, bool walking) { // Logger.Info($"[{_gameTiming.CurTick}/{subTick}] Sprint: {enabled}"); - WalkingAlert(entity, walking); SetMoveInput(entity, component, subTick, walking, MoveButtons.Walk); + WalkingAlert(entity, component); } /// @@ -620,7 +623,7 @@ public enum MoveButtons : byte Down = 2, Left = 4, Right = 8, - Walk = 16, // This may be either a sprint button or a walk button, depending on server config + Walk = 16, // This may be either a sprint button or a walk button, depending on mover config AnyDirection = Up | Down | Left | Right, } diff --git a/Content.Shared/Movement/Systems/SharedMoverController.cs b/Content.Shared/Movement/Systems/SharedMoverController.cs index 3cc35e7bc6..00afa3a4fb 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.cs @@ -64,11 +64,6 @@ public abstract partial class SharedMoverController : VirtualController protected EntityQuery CanMoveInAirQuery; protected EntityQuery NoRotateQuery; - private const float StepSoundMoveDistanceRunning = 2; - private const float StepSoundMoveDistanceWalking = 1.5f; - - private const float FootstepVariation = 0f; - /// /// /// @@ -98,6 +93,7 @@ public override void Initialize() InitializeInput(); InitializeRelay(); + InitializeCVars(); Subs.CVar(_configManager, CCVars.RelativeMovement, value => _relativeMovement = value, true); Subs.CVar(_configManager, CCVars.StopSpeed, value => _stopSpeed = value, true); UpdatesBefore.Add(typeof(TileFrictionController)); @@ -273,7 +269,7 @@ protected void HandleMobMovement( var audioParams = sound.Params .WithVolume(volume) - .WithVariation(sound.Params.Variation ?? FootstepVariation); + .WithVariation(sound.Params.Variation ?? mobMover.FootstepVariation); // If we're a relay target then predict the sound for all relays. if (relayTarget != null) @@ -298,10 +294,9 @@ protected void HandleMobMovement( PhysicsSystem.SetAngularVelocity(physicsUid, 0, body: physicsComponent); } - private void WalkingAlert(EntityUid player, bool walking) + private void WalkingAlert(EntityUid player, InputMoverComponent component) { - walking = _configManager.GetCVar(CCVars.GamePressToSprint) ? !walking : walking; - _alerts.ShowAlert(player, AlertType.Walking, walking ? (short) 0 : (short) 1); + _alerts.ShowAlert(player, AlertType.Walking, component.Sprinting ? (short) 1 : (short) 0); } public void LerpRotation(EntityUid uid, InputMoverComponent mover, float frameTime) @@ -425,7 +420,9 @@ private bool TryGetSound( return false; var coordinates = xform.Coordinates; - var distanceNeeded = mover.Sprinting ? StepSoundMoveDistanceRunning : StepSoundMoveDistanceWalking; + var distanceNeeded = mover.Sprinting + ? mobMover.StepSoundMoveDistanceRunning + : mobMover.StepSoundMoveDistanceWalking; // Handle footsteps. if (!weightless) diff --git a/Content.Shared/Ninja/Components/SpaceNinjaComponent.cs b/Content.Shared/Ninja/Components/SpaceNinjaComponent.cs index dff4b56aa4..0f3bff265c 100644 --- a/Content.Shared/Ninja/Components/SpaceNinjaComponent.cs +++ b/Content.Shared/Ninja/Components/SpaceNinjaComponent.cs @@ -1,6 +1,6 @@ using Content.Shared.Ninja.Systems; using Robust.Shared.GameStates; -using Robust.Shared.Serialization; +using Robust.Shared.Prototypes; namespace Content.Shared.Ninja.Components; @@ -35,4 +35,22 @@ public sealed partial class SpaceNinjaComponent : Component /// [DataField("katana"), AutoNetworkedField] public EntityUid? Katana; + + /// + /// Objective to complete after calling in a threat. + /// + [DataField] + public EntProtoId TerrorObjective = "TerrorObjective"; + + /// + /// Objective to complete after setting everyone to arrest. + /// + [DataField] + public EntProtoId MassArrestObjective = "MassArrestObjective"; + + /// + /// Objective to complete after the spider charge detonates. + /// + [DataField] + public EntProtoId SpiderChargeObjective = "SpiderChargeObjective"; } diff --git a/Content.Shared/Ninja/Systems/DashAbilitySystem.cs b/Content.Shared/Ninja/Systems/DashAbilitySystem.cs index f9e5d4a1f6..4853968b61 100644 --- a/Content.Shared/Ninja/Systems/DashAbilitySystem.cs +++ b/Content.Shared/Ninja/Systems/DashAbilitySystem.cs @@ -4,8 +4,8 @@ using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; using Content.Shared.Ninja.Components; -using Content.Shared.Physics; using Content.Shared.Popups; +using Content.Shared.Examine; using Robust.Shared.Audio.Systems; using Robust.Shared.Timing; @@ -20,7 +20,7 @@ public sealed class DashAbilitySystem : EntitySystem [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedChargesSystem _charges = default!; [Dependency] private readonly SharedHandsSystem _hands = default!; - [Dependency] private readonly SharedInteractionSystem _interaction = default!; + [Dependency] private readonly ExamineSystemShared _examine = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly ActionContainerSystem _actionContainer = default!; @@ -79,11 +79,10 @@ private void OnDash(EntityUid uid, DashAbilityComponent comp, DashEvent args) _popup.PopupClient(Loc.GetString("dash-ability-no-charges", ("item", uid)), user, user); return; } - - var origin = Transform(user).MapPosition; + var origin = _transform.GetMapCoordinates(user); var target = args.Target.ToMap(EntityManager, _transform); // prevent collision with the user duh - if (!_interaction.InRangeUnobstructed(origin, target, 0f, CollisionGroup.Opaque, uid => uid == user)) + if (!_examine.InRangeUnOccluded(origin, target, SharedInteractionSystem.MaxRaycastRange, null)) { // can only dash if the destination is visible on screen _popup.PopupClient(Loc.GetString("dash-ability-cant-see", ("item", uid)), user, user); diff --git a/Content.Shared/Ninja/Systems/SharedNinjaGlovesSystem.cs b/Content.Shared/Ninja/Systems/SharedNinjaGlovesSystem.cs index 815464bf7a..f61d0c6a90 100644 --- a/Content.Shared/Ninja/Systems/SharedNinjaGlovesSystem.cs +++ b/Content.Shared/Ninja/Systems/SharedNinjaGlovesSystem.cs @@ -1,6 +1,7 @@ using Content.Shared.Actions; using Content.Shared.CombatMode; using Content.Shared.Communications; +using Content.Shared.CriminalRecords.Components; using Content.Shared.Examine; using Content.Shared.Hands.Components; using Content.Shared.Interaction; @@ -62,6 +63,7 @@ public void DisableGloves(EntityUid uid, NinjaGlovesComponent? comp = null) RemComp(user); RemComp(user); RemComp(user); + RemComp(user); } /// diff --git a/Content.Shared/Nutrition/Components/ButcherableComponent.cs b/Content.Shared/Nutrition/Components/ButcherableComponent.cs index 4fce45422a..975d4329dc 100644 --- a/Content.Shared/Nutrition/Components/ButcherableComponent.cs +++ b/Content.Shared/Nutrition/Components/ButcherableComponent.cs @@ -1,5 +1,6 @@ using Content.Shared.Storage; using Robust.Shared.GameStates; +using Robust.Shared.Serialization; namespace Content.Shared.Nutrition.Components { @@ -25,6 +26,7 @@ public sealed partial class ButcherableComponent : Component public bool BeingButchered; } + [Serializable, NetSerializable] public enum ButcheringType : byte { Knife, // e.g. goliaths diff --git a/Content.Shared/Nutrition/Components/DrinkComponent.cs b/Content.Shared/Nutrition/Components/DrinkComponent.cs new file mode 100644 index 0000000000..17baaef5a3 --- /dev/null +++ b/Content.Shared/Nutrition/Components/DrinkComponent.cs @@ -0,0 +1,43 @@ +using Content.Shared.Nutrition.EntitySystems; +using Content.Shared.FixedPoint; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; + +namespace Content.Shared.Nutrition.Components; + +[NetworkedComponent, AutoGenerateComponentState] +[RegisterComponent, Access(typeof(SharedDrinkSystem))] +public sealed partial class DrinkComponent : Component +{ + [DataField] + public string Solution = "drink"; + + [DataField, AutoNetworkedField] + public SoundSpecifier UseSound = new SoundPathSpecifier("/Audio/Items/drink.ogg"); + + [DataField, AutoNetworkedField] + public FixedPoint2 TransferAmount = FixedPoint2.New(5); + + /// + /// How long it takes to drink this yourself. + /// + [DataField, AutoNetworkedField] + public float Delay = 1; + + [DataField, AutoNetworkedField] + public bool Examinable = true; + + /// + /// If true, trying to drink when empty will not handle the event. + /// This means other systems such as equipping on use can run. + /// Example usecase is the bucket. + /// + [DataField] + public bool IgnoreEmpty; + + /// + /// This is how many seconds it takes to force feed someone this drink. + /// + [DataField, AutoNetworkedField] + public float ForceFeedDelay = 3; +} diff --git a/Content.Shared/Nutrition/Components/PressurizedSolutionComponent.cs b/Content.Shared/Nutrition/Components/PressurizedSolutionComponent.cs new file mode 100644 index 0000000000..7060f3bf79 --- /dev/null +++ b/Content.Shared/Nutrition/Components/PressurizedSolutionComponent.cs @@ -0,0 +1,106 @@ +using Content.Shared.Nutrition.EntitySystems; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; + +namespace Content.Shared.Nutrition.Components; + +/// +/// Represents a solution container that can hold the pressure from a solution that +/// gets fizzy when aggitated, and can spray the solution when opened or thrown. +/// Handles simulating the fizziness of the solution, responding to aggitating events, +/// and spraying the solution out when opening or throwing the entity. +/// +[NetworkedComponent, AutoGenerateComponentState, AutoGenerateComponentPause] +[RegisterComponent, Access(typeof(PressurizedSolutionSystem))] +public sealed partial class PressurizedSolutionComponent : Component +{ + /// + /// The name of the solution to use. + /// + [DataField] + public string Solution = "drink"; + + /// + /// The sound to play when the solution sprays out of the container. + /// + [DataField] + public SoundSpecifier SpraySound = new SoundPathSpecifier("/Audio/Items/soda_spray.ogg"); + + /// + /// The longest amount of time that the solution can remain fizzy after being aggitated. + /// Put another way, how long the solution will remain fizzy when aggitated the maximum amount. + /// Used to calculate the current fizziness level. + /// + [DataField] + public TimeSpan FizzinessMaxDuration = TimeSpan.FromSeconds(120); + + /// + /// The time at which the solution will be fully settled after being shaken. + /// + [DataField, AutoNetworkedField, AutoPausedField] + public TimeSpan FizzySettleTime; + + /// + /// How much to increase the solution's fizziness each time it's shaken. + /// This assumes the solution has maximum fizzability. + /// A value of 1 will maximize it with a single shake, and a value of + /// 0.5 will increase it by half with each shake. + /// + [DataField] + public float FizzinessAddedOnShake = 1.0f; + + /// + /// How much to increase the solution's fizziness when it lands after being thrown. + /// This assumes the solution has maximum fizzability. + /// + [DataField] + public float FizzinessAddedOnLand = 0.25f; + + /// + /// How much to modify the chance of spraying when the entity is opened. + /// Increasing this effectively increases the fizziness value when checking if it should spray. + /// + [DataField] + public float SprayChanceModOnOpened = -0.01f; // Just enough to prevent spraying at 0 fizziness + + /// + /// How much to modify the chance of spraying when the entity is shaken. + /// Increasing this effectively increases the fizziness value when checking if it should spray. + /// + [DataField] + public float SprayChanceModOnShake = -1; // No spraying when shaken by default + + /// + /// How much to modify the chance of spraying when the entity lands after being thrown. + /// Increasing this effectively increases the fizziness value when checking if it should spray. + /// + [DataField] + public float SprayChanceModOnLand = 0.25f; + + /// + /// Holds the current randomly-rolled threshold value for spraying. + /// If fizziness exceeds this value when the entity is opened, it will spray. + /// By rolling this value when the entity is aggitated, we can have randomization + /// while still having prediction! + /// + [DataField, AutoNetworkedField] + public float SprayFizzinessThresholdRoll; + + /// + /// Popup message shown to user when sprayed by the solution. + /// + [DataField] + public LocId SprayHolderMessageSelf = "pressurized-solution-spray-holder-self"; + + /// + /// Popup message shown to others when a user is sprayed by the solution. + /// + [DataField] + public LocId SprayHolderMessageOthers = "pressurized-solution-spray-holder-others"; + + /// + /// Popup message shown above the entity when the solution sprays without a target. + /// + [DataField] + public LocId SprayGroundMessage = "pressurized-solution-spray-ground"; +} diff --git a/Content.Shared/Nutrition/Components/ShakeableComponent.cs b/Content.Shared/Nutrition/Components/ShakeableComponent.cs new file mode 100644 index 0000000000..cc1c08a9b2 --- /dev/null +++ b/Content.Shared/Nutrition/Components/ShakeableComponent.cs @@ -0,0 +1,50 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; + +namespace Content.Shared.Nutrition.Components; + +/// +/// Adds a "Shake" verb to the entity's verb menu. +/// Handles checking the entity can be shaken, displaying popups when shaking, +/// and raising a ShakeEvent when a shake occurs. +/// Reacting to being shaken is left up to other components. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ShakeableComponent : Component +{ + /// + /// How long it takes to shake this item. + /// + [DataField] + public TimeSpan ShakeDuration = TimeSpan.FromSeconds(1f); + + /// + /// Does the entity need to be in the user's hand in order to be shaken? + /// + [DataField] + public bool RequireInHand; + + /// + /// Label to display in the verbs menu for this item's shake action. + /// + [DataField] + public LocId ShakeVerbText = "shakeable-verb"; + + /// + /// Text that will be displayed to the user when shaking this item. + /// + [DataField] + public LocId ShakePopupMessageSelf = "shakeable-popup-message-self"; + + /// + /// Text that will be displayed to other users when someone shakes this item. + /// + [DataField] + public LocId ShakePopupMessageOthers = "shakeable-popup-message-others"; + + /// + /// The sound that will be played when shaking this item. + /// + [DataField] + public SoundSpecifier ShakeSound = new SoundPathSpecifier("/Audio/Items/soda_shake.ogg"); +} diff --git a/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs b/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs index 1bc2a945f3..e6d8255333 100644 --- a/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs @@ -1,13 +1,17 @@ +using System.Diagnostics.CodeAnalysis; using Content.Shared.Alert; using Content.Shared.Damage; using Content.Shared.Mobs.Systems; using Content.Shared.Movement.Systems; using Content.Shared.Nutrition.Components; using Content.Shared.Rejuvenate; +using Content.Shared.StatusIcon; +using Robust.Shared.Prototypes; using Content.Shared.Mood; using Robust.Shared.Network; using Robust.Shared.Random; using Robust.Shared.Timing; +using Robust.Shared.Utility; using Robust.Shared.Configuration; using Content.Shared.CCVar; @@ -16,6 +20,7 @@ namespace Content.Shared.Nutrition.EntitySystems; public sealed class HungerSystem : EntitySystem { [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly AlertsSystem _alerts = default!; [Dependency] private readonly DamageableSystem _damageable = default!; @@ -25,10 +30,27 @@ public sealed class HungerSystem : EntitySystem [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly IConfigurationManager _config = default!; + [ValidatePrototypeId] + private const string HungerIconOverfedId = "HungerIconOverfed"; + + [ValidatePrototypeId] + private const string HungerIconPeckishId = "HungerIconPeckish"; + + [ValidatePrototypeId] + private const string HungerIconStarvingId = "HungerIconStarving"; + + private StatusIconPrototype? _hungerIconOverfed; + private StatusIconPrototype? _hungerIconPeckish; + private StatusIconPrototype? _hungerIconStarving; + public override void Initialize() { base.Initialize(); + DebugTools.Assert(_prototype.TryIndex(HungerIconOverfedId, out _hungerIconOverfed) && + _prototype.TryIndex(HungerIconPeckishId, out _hungerIconPeckish) && + _prototype.TryIndex(HungerIconStarvingId, out _hungerIconStarving)); + SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnRefreshMovespeed); @@ -205,6 +227,27 @@ private bool GetMovementThreshold(HungerThreshold threshold) } } + public bool TryGetStatusIconPrototype(HungerComponent component, [NotNullWhen(true)] out StatusIconPrototype? prototype) + { + switch (component.CurrentThreshold) + { + case HungerThreshold.Overfed: + prototype = _hungerIconOverfed; + break; + case HungerThreshold.Peckish: + prototype = _hungerIconPeckish; + break; + case HungerThreshold.Starving: + prototype = _hungerIconStarving; + break; + default: + prototype = null; + break; + } + + return prototype != null; + } + public override void Update(float frameTime) { base.Update(frameTime); @@ -221,4 +264,3 @@ public override void Update(float frameTime) } } } - diff --git a/Content.Shared/Nutrition/EntitySystems/OpenableSystem.cs b/Content.Shared/Nutrition/EntitySystems/OpenableSystem.cs index 0ad0877d22..2934ced8b4 100644 --- a/Content.Shared/Nutrition/EntitySystems/OpenableSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/OpenableSystem.cs @@ -16,9 +16,9 @@ namespace Content.Shared.Nutrition.EntitySystems; /// public sealed partial class OpenableSystem : EntitySystem { - [Dependency] protected readonly SharedAppearanceSystem Appearance = default!; - [Dependency] protected readonly SharedAudioSystem Audio = default!; - [Dependency] protected readonly SharedPopupSystem Popup = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; public override void Initialize() { @@ -31,6 +31,8 @@ public override void Initialize() SubscribeLocalEvent(HandleIfClosed); SubscribeLocalEvent>(AddOpenCloseVerbs); SubscribeLocalEvent(OnTransferAttempt); + SubscribeLocalEvent(OnAttemptShake); + SubscribeLocalEvent(OnAttemptAddFizziness); } private void OnInit(EntityUid uid, OpenableComponent comp, ComponentInit args) @@ -100,6 +102,20 @@ private void OnTransferAttempt(Entity ent, ref SolutionTransf } } + private void OnAttemptShake(Entity entity, ref AttemptShakeEvent args) + { + // Prevent shaking open containers + if (entity.Comp.Opened) + args.Cancelled = true; + } + + private void OnAttemptAddFizziness(Entity entity, ref AttemptAddFizzinessEvent args) + { + // Can't add fizziness to an open container + if (entity.Comp.Opened) + args.Cancelled = true; + } + /// /// Returns true if the entity either does not have OpenableComponent or it is opened. /// Drinks that don't have OpenableComponent are automatically open, so it returns true. @@ -126,7 +142,7 @@ public bool IsClosed(EntityUid uid, EntityUid? user = null, OpenableComponent? c return false; if (user != null) - Popup.PopupEntity(Loc.GetString(comp.ClosedPopup, ("owner", uid)), user.Value, user.Value); + _popup.PopupEntity(Loc.GetString(comp.ClosedPopup, ("owner", uid)), user.Value, user.Value); return true; } @@ -139,13 +155,13 @@ public void UpdateAppearance(EntityUid uid, OpenableComponent? comp = null, Appe if (!Resolve(uid, ref comp)) return; - Appearance.SetData(uid, OpenableVisuals.Opened, comp.Opened, appearance); + _appearance.SetData(uid, OpenableVisuals.Opened, comp.Opened, appearance); } /// /// Sets the opened field and updates open visuals. /// - public void SetOpen(EntityUid uid, bool opened = true, OpenableComponent? comp = null) + public void SetOpen(EntityUid uid, bool opened = true, OpenableComponent? comp = null, EntityUid? user = null) { if (!Resolve(uid, ref comp, false) || opened == comp.Opened) return; @@ -155,12 +171,12 @@ public void SetOpen(EntityUid uid, bool opened = true, OpenableComponent? comp = if (opened) { - var ev = new OpenableOpenedEvent(); + var ev = new OpenableOpenedEvent(user); RaiseLocalEvent(uid, ref ev); } else { - var ev = new OpenableClosedEvent(); + var ev = new OpenableClosedEvent(user); RaiseLocalEvent(uid, ref ev); } @@ -176,8 +192,8 @@ public bool TryOpen(EntityUid uid, OpenableComponent? comp = null, EntityUid? us if (!Resolve(uid, ref comp, false) || comp.Opened) return false; - SetOpen(uid, true, comp); - Audio.PlayPredicted(comp.Sound, uid, user); + SetOpen(uid, true, comp, user); + _audio.PlayPredicted(comp.Sound, uid, user); return true; } @@ -190,9 +206,9 @@ public bool TryClose(EntityUid uid, OpenableComponent? comp = null, EntityUid? u if (!Resolve(uid, ref comp, false) || !comp.Opened || !comp.Closeable) return false; - SetOpen(uid, false, comp); + SetOpen(uid, false, comp, user); if (comp.CloseSound != null) - Audio.PlayPredicted(comp.CloseSound, uid, user); + _audio.PlayPredicted(comp.CloseSound, uid, user); return true; } } @@ -201,10 +217,10 @@ public bool TryClose(EntityUid uid, OpenableComponent? comp = null, EntityUid? u /// Raised after an Openable is opened. /// [ByRefEvent] -public record struct OpenableOpenedEvent; +public record struct OpenableOpenedEvent(EntityUid? User = null); /// /// Raised after an Openable is closed. /// [ByRefEvent] -public record struct OpenableClosedEvent; +public record struct OpenableClosedEvent(EntityUid? User = null); diff --git a/Content.Shared/Nutrition/EntitySystems/PressurizedSolutionSystem.cs b/Content.Shared/Nutrition/EntitySystems/PressurizedSolutionSystem.cs new file mode 100644 index 0000000000..d63b8e7326 --- /dev/null +++ b/Content.Shared/Nutrition/EntitySystems/PressurizedSolutionSystem.cs @@ -0,0 +1,285 @@ +using Content.Shared.Chemistry.Reagent; +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Nutrition.Components; +using Content.Shared.Throwing; +using Content.Shared.IdentityManagement; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Random; +using Robust.Shared.Timing; +using Robust.Shared.Prototypes; +using Robust.Shared.Network; +using Content.Shared.Fluids; +using Content.Shared.Popups; + +namespace Content.Shared.Nutrition.EntitySystems; + +public sealed partial class PressurizedSolutionSystem : EntitySystem +{ + [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer = default!; + [Dependency] private readonly OpenableSystem _openable = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedPuddleSystem _puddle = default!; + [Dependency] private readonly INetManager _net = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnShake); + SubscribeLocalEvent(OnOpened); + SubscribeLocalEvent(OnLand); + SubscribeLocalEvent(OnSolutionUpdate); + } + + /// + /// Helper method for checking if the solution's fizziness is high enough to spray. + /// is added to the actual fizziness for the comparison. + /// + private bool SprayCheck(Entity entity, float chanceMod = 0) + { + return Fizziness((entity, entity.Comp)) + chanceMod > entity.Comp.SprayFizzinessThresholdRoll; + } + + /// + /// Calculates how readily the contained solution becomes fizzy. + /// + private float SolutionFizzability(Entity entity) + { + if (!_solutionContainer.TryGetSolution(entity.Owner, entity.Comp.Solution, out var _, out var solution)) + return 0; + + // An empty solution can't be fizzy + if (solution.Volume <= 0) + return 0; + + var totalFizzability = 0f; + + // Check each reagent in the solution + foreach (var reagent in solution.Contents) + { + if (_prototypeManager.TryIndex(reagent.Reagent.Prototype, out ReagentPrototype? reagentProto) && reagentProto != null) + { + // What portion of the solution is this reagent? + var proportion = (float) (reagent.Quantity / solution.Volume); + totalFizzability += reagentProto.Fizziness * proportion; + } + } + + return totalFizzability; + } + + /// + /// Increases the fizziness level of the solution by the given amount, + /// scaled by the solution's fizzability. + /// 0 will result in no change, and 1 will maximize fizziness. + /// Also rerolls the spray threshold. + /// + private void AddFizziness(Entity entity, float amount) + { + var fizzability = SolutionFizzability(entity); + + // Can't add fizziness if the solution isn't fizzy + if (fizzability <= 0) + return; + + // Make sure nothing is preventing fizziness from being added + var attemptEv = new AttemptAddFizzinessEvent(entity, amount); + RaiseLocalEvent(entity, ref attemptEv); + if (attemptEv.Cancelled) + return; + + // Scale added fizziness by the solution's fizzability + amount *= fizzability; + + // Convert fizziness to time + var duration = amount * entity.Comp.FizzinessMaxDuration; + + // Add to the existing settle time, if one exists. Otherwise, add to the current time + var start = entity.Comp.FizzySettleTime > _timing.CurTime ? entity.Comp.FizzySettleTime : _timing.CurTime; + var newTime = start + duration; + + // Cap the maximum fizziness + var maxEnd = _timing.CurTime + entity.Comp.FizzinessMaxDuration; + if (newTime > maxEnd) + newTime = maxEnd; + + entity.Comp.FizzySettleTime = newTime; + + // Roll a new fizziness threshold + RollSprayThreshold(entity); + } + + /// + /// Helper method. Performs a . If it passes, calls . If it fails, . + /// + private void SprayOrAddFizziness(Entity entity, float chanceMod = 0, float fizzinessToAdd = 0, EntityUid? user = null) + { + if (SprayCheck(entity, chanceMod)) + TrySpray((entity, entity.Comp), user); + else + AddFizziness(entity, fizzinessToAdd); + } + + /// + /// Randomly generates a new spray threshold. + /// This is the value used to compare fizziness against when doing . + /// Since RNG will give different results between client and server, this is run on the server + /// and synced to the client by marking the component dirty. + /// We roll this in advance, rather than during , so that the value (hopefully) + /// has time to get synced to the client, so we can try be accurate with prediction. + /// + private void RollSprayThreshold(Entity entity) + { + // Can't predict random, so we wait for the server to tell us + if (!_net.IsServer) + return; + + entity.Comp.SprayFizzinessThresholdRoll = _random.NextFloat(); + Dirty(entity, entity.Comp); + } + + #region Public API + + /// + /// Does the entity contain a solution capable of being fizzy? + /// + public bool CanSpray(Entity entity) + { + if (!Resolve(entity, ref entity.Comp, false)) + return false; + + return SolutionFizzability((entity, entity.Comp)) > 0; + } + + /// + /// Attempts to spray the solution onto the given entity, or the ground if none is given. + /// Fails if the solution isn't able to be sprayed. + /// + public bool TrySpray(Entity entity, EntityUid? target = null) + { + if (!Resolve(entity, ref entity.Comp)) + return false; + + if (!CanSpray(entity)) + return false; + + if (!_solutionContainer.TryGetSolution(entity.Owner, entity.Comp.Solution, out var soln, out var interactions)) + return false; + + // If the container is openable, open it + _openable.SetOpen(entity, true); + + // Get the spray solution from the container + var solution = _solutionContainer.SplitSolution(soln.Value, interactions.Volume); + + // Spray the solution onto the ground and anyone nearby + if (TryComp(entity, out var transform)) + _puddle.TrySplashSpillAt(entity, transform.Coordinates, solution, out _, sound: false); + + var drinkName = Identity.Entity(entity, EntityManager); + + if (target != null) + { + var victimName = Identity.Entity(target.Value, EntityManager); + + var selfMessage = Loc.GetString(entity.Comp.SprayHolderMessageSelf, ("victim", victimName), ("drink", drinkName)); + var othersMessage = Loc.GetString(entity.Comp.SprayHolderMessageOthers, ("victim", victimName), ("drink", drinkName)); + _popup.PopupPredicted(selfMessage, othersMessage, target.Value, target.Value); + } + else + { + // Show a popup to everyone in PVS range + if (_timing.IsFirstTimePredicted) + _popup.PopupEntity(Loc.GetString(entity.Comp.SprayGroundMessage, ("drink", drinkName)), entity); + } + + _audio.PlayPredicted(entity.Comp.SpraySound, entity, target); + + // We just used all our fizziness, so clear it + TryClearFizziness(entity); + + return true; + } + + /// + /// What is the current fizziness level of the solution, from 0 to 1? + /// + public double Fizziness(Entity entity) + { + // No component means no fizz + if (!Resolve(entity, ref entity.Comp, false)) + return 0; + + // No negative fizziness + if (entity.Comp.FizzySettleTime <= _timing.CurTime) + return 0; + + var currentDuration = entity.Comp.FizzySettleTime - _timing.CurTime; + return Easings.InOutCubic((float) Math.Min(currentDuration / entity.Comp.FizzinessMaxDuration, 1)); + } + + /// + /// Attempts to clear any fizziness in the solution. + /// + /// Rolls a new spray threshold. + public void TryClearFizziness(Entity entity) + { + if (!Resolve(entity, ref entity.Comp)) + return; + + entity.Comp.FizzySettleTime = TimeSpan.Zero; + + // Roll a new fizziness threshold + RollSprayThreshold((entity, entity.Comp)); + } + + #endregion + + #region Event Handlers + private void OnMapInit(Entity entity, ref MapInitEvent args) + { + RollSprayThreshold(entity); + } + + private void OnOpened(Entity entity, ref OpenableOpenedEvent args) + { + // Make sure the opener is actually holding the drink + var held = args.User != null && _hands.IsHolding(args.User.Value, entity, out _); + + SprayOrAddFizziness(entity, entity.Comp.SprayChanceModOnOpened, -1, held ? args.User : null); + } + + private void OnShake(Entity entity, ref ShakeEvent args) + { + SprayOrAddFizziness(entity, entity.Comp.SprayChanceModOnShake, entity.Comp.FizzinessAddedOnShake, args.Shaker); + } + + private void OnLand(Entity entity, ref LandEvent args) + { + SprayOrAddFizziness(entity, entity.Comp.SprayChanceModOnLand, entity.Comp.FizzinessAddedOnLand); + } + + private void OnSolutionUpdate(Entity entity, ref SolutionContainerChangedEvent args) + { + if (args.SolutionId != entity.Comp.Solution) + return; + + // If the solution is no longer capable of being fizzy, clear any built up fizziness + if (SolutionFizzability(entity) <= 0) + TryClearFizziness((entity, entity.Comp)); + } + + #endregion +} + +[ByRefEvent] +public record struct AttemptAddFizzinessEvent(Entity Entity, float Amount) +{ + public bool Cancelled; +} diff --git a/Content.Shared/Nutrition/EntitySystems/ShakeableSystem.cs b/Content.Shared/Nutrition/EntitySystems/ShakeableSystem.cs new file mode 100644 index 0000000000..39890aada9 --- /dev/null +++ b/Content.Shared/Nutrition/EntitySystems/ShakeableSystem.cs @@ -0,0 +1,155 @@ +using Content.Shared.DoAfter; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.IdentityManagement; +using Content.Shared.Nutrition.Components; +using Content.Shared.Popups; +using Content.Shared.Verbs; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Serialization; + +namespace Content.Shared.Nutrition.EntitySystems; + +public sealed partial class ShakeableSystem : EntitySystem +{ + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(AddShakeVerb); + SubscribeLocalEvent(OnShakeDoAfter); + } + + private void AddShakeVerb(EntityUid uid, ShakeableComponent component, GetVerbsEvent args) + { + if (args.Hands == null || !args.CanAccess || !args.CanInteract) + return; + + if (!CanShake((uid, component), args.User)) + return; + + var shakeVerb = new Verb() + { + Text = Loc.GetString(component.ShakeVerbText), + Act = () => TryStartShake((args.Target, component), args.User) + }; + args.Verbs.Add(shakeVerb); + } + + private void OnShakeDoAfter(Entity entity, ref ShakeDoAfterEvent args) + { + if (args.Handled || args.Cancelled) + return; + + TryShake((entity, entity.Comp), args.User); + } + + /// + /// Attempts to start the doAfter to shake the entity. + /// Fails and returns false if the entity cannot be shaken for any reason. + /// If successful, displays popup messages, plays shake sound, and starts the doAfter. + /// + public bool TryStartShake(Entity entity, EntityUid user) + { + if (!Resolve(entity, ref entity.Comp)) + return false; + + if (!CanShake(entity, user)) + return false; + + var doAfterArgs = new DoAfterArgs(EntityManager, + user, + entity.Comp.ShakeDuration, + new ShakeDoAfterEvent(), + eventTarget: entity, + target: user, + used: entity) + { + NeedHand = true, + BreakOnDamage = true, + DistanceThreshold = 1, + MovementThreshold = 0.01f, + BreakOnHandChange = entity.Comp.RequireInHand, + }; + if (entity.Comp.RequireInHand) + doAfterArgs.BreakOnHandChange = true; + + if (!_doAfter.TryStartDoAfter(doAfterArgs)) + return false; + + var userName = Identity.Entity(user, EntityManager); + var shakeableName = Identity.Entity(entity, EntityManager); + + var selfMessage = Loc.GetString(entity.Comp.ShakePopupMessageSelf, ("user", userName), ("shakeable", shakeableName)); + var othersMessage = Loc.GetString(entity.Comp.ShakePopupMessageOthers, ("user", userName), ("shakeable", shakeableName)); + _popup.PopupPredicted(selfMessage, othersMessage, user, user); + + _audio.PlayPredicted(entity.Comp.ShakeSound, entity, user); + + return true; + } + + /// + /// Attempts to shake the entity, skipping the doAfter. + /// Fails and returns false if the entity cannot be shaken for any reason. + /// If successful, raises a ShakeEvent on the entity. + /// + public bool TryShake(Entity entity, EntityUid? user = null) + { + if (!Resolve(entity, ref entity.Comp)) + return false; + + if (!CanShake(entity, user)) + return false; + + var ev = new ShakeEvent(user); + RaiseLocalEvent(entity, ref ev); + + return true; + } + + + /// + /// Is it possible for the given user to shake the entity? + /// + public bool CanShake(Entity entity, EntityUid? user = null) + { + if (!Resolve(entity, ref entity.Comp, false)) + return false; + + // If required to be in hand, fail if the user is not holding this entity + if (user != null && entity.Comp.RequireInHand && !_hands.IsHolding(user.Value, entity, out _)) + return false; + + var attemptEv = new AttemptShakeEvent(); + RaiseLocalEvent(entity, ref attemptEv); + if (attemptEv.Cancelled) + return false; + return true; + } +} + +/// +/// Raised when a ShakeableComponent is shaken, after the doAfter completes. +/// +[ByRefEvent] +public record struct ShakeEvent(EntityUid? Shaker); + +/// +/// Raised when trying to shake a ShakeableComponent. If cancelled, the +/// entity will not be shaken. +/// +[ByRefEvent] +public record struct AttemptShakeEvent() +{ + public bool Cancelled; +} + +[Serializable, NetSerializable] +public sealed partial class ShakeDoAfterEvent : SimpleDoAfterEvent +{ +} diff --git a/Content.Shared/Nutrition/EntitySystems/SharedDrinkSystem.cs b/Content.Shared/Nutrition/EntitySystems/SharedDrinkSystem.cs new file mode 100644 index 0000000000..7cae3b9208 --- /dev/null +++ b/Content.Shared/Nutrition/EntitySystems/SharedDrinkSystem.cs @@ -0,0 +1,90 @@ +using Content.Shared.Chemistry.Components.SolutionManager; +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Examine; +using Content.Shared.FixedPoint; +using Content.Shared.Nutrition.Components; + +namespace Content.Shared.Nutrition.EntitySystems; + +public abstract partial class SharedDrinkSystem : EntitySystem +{ + [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer = default!; + [Dependency] private readonly OpenableSystem _openable = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnAttemptShake); + SubscribeLocalEvent(OnExamined); + } + + protected void OnAttemptShake(Entity entity, ref AttemptShakeEvent args) + { + if (IsEmpty(entity, entity.Comp)) + args.Cancelled = true; + } + + protected void OnExamined(Entity entity, ref ExaminedEvent args) + { + TryComp(entity, out var openable); + if (_openable.IsClosed(entity.Owner, null, openable) || !args.IsInDetailsRange || !entity.Comp.Examinable) + return; + + var empty = IsEmpty(entity, entity.Comp); + if (empty) + { + args.PushMarkup(Loc.GetString("drink-component-on-examine-is-empty")); + return; + } + + if (HasComp(entity)) + { + //provide exact measurement for beakers + args.PushText(Loc.GetString("drink-component-on-examine-exact-volume", ("amount", DrinkVolume(entity, entity.Comp)))); + } + else + { + //general approximation + var remainingString = (int) _solutionContainer.PercentFull(entity) switch + { + 100 => "drink-component-on-examine-is-full", + > 66 => "drink-component-on-examine-is-mostly-full", + > 33 => HalfEmptyOrHalfFull(args), + _ => "drink-component-on-examine-is-mostly-empty", + }; + args.PushMarkup(Loc.GetString(remainingString)); + } + } + + protected FixedPoint2 DrinkVolume(EntityUid uid, DrinkComponent? component = null) + { + if (!Resolve(uid, ref component)) + return FixedPoint2.Zero; + + if (!_solutionContainer.TryGetSolution(uid, component.Solution, out _, out var sol)) + return FixedPoint2.Zero; + + return sol.Volume; + } + + protected bool IsEmpty(EntityUid uid, DrinkComponent? component = null) + { + if (!Resolve(uid, ref component)) + return true; + + return DrinkVolume(uid, component) <= 0; + } + + // some see half empty, and others see half full + private string HalfEmptyOrHalfFull(ExaminedEvent args) + { + string remainingString = "drink-component-on-examine-is-half-full"; + + if (TryComp(args.Examiner, out var examiner) && examiner.EntityName.Length > 0 + && string.Compare(examiner.EntityName.Substring(0, 1), "m", StringComparison.InvariantCultureIgnoreCase) > 0) + remainingString = "drink-component-on-examine-is-half-empty"; + + return remainingString; + } +} diff --git a/Content.Shared/Nutrition/EntitySystems/SharedFoodGuideDataSystem.cs b/Content.Shared/Nutrition/EntitySystems/SharedFoodGuideDataSystem.cs new file mode 100644 index 0000000000..c31776cd75 --- /dev/null +++ b/Content.Shared/Nutrition/EntitySystems/SharedFoodGuideDataSystem.cs @@ -0,0 +1,158 @@ +using System.Linq; +using Content.Shared.Chemistry.Reaction; +using Content.Shared.Chemistry.Reagent; +using Content.Shared.Kitchen; +using Content.Shared.Nutrition.Components; +using Content.Shared.Storage; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Client.Chemistry.EntitySystems; + +public abstract class SharedFoodGuideDataSystem : EntitySystem +{ + public List Registry = new(); +} + +[Serializable, NetSerializable] +public sealed class FoodGuideRegistryChangedEvent : EntityEventArgs +{ + [DataField] + public List Changeset; + + public FoodGuideRegistryChangedEvent(List changeset) + { + Changeset = changeset; + } +} + +[DataDefinition, Serializable, NetSerializable] +public partial struct FoodGuideEntry +{ + [DataField] + public EntProtoId Result; + + [DataField] + public string Identifier; // Used for sorting + + [DataField] + public FoodSourceData[] Sources; + + [DataField] + public ReagentQuantity[] Composition; + + public FoodGuideEntry(EntProtoId result, string identifier, FoodSourceData[] sources, ReagentQuantity[] composition) + { + Result = result; + Identifier = identifier; + Sources = sources; + Composition = composition; + } +} + +[ImplicitDataDefinitionForInheritors, Serializable, NetSerializable] +public abstract partial class FoodSourceData +{ + /// + /// Number of products created from this source. Used for primary ordering. + /// + public abstract int OutputCount { get; } + + /// + /// A string used to distinguish different sources. Typically the name of the related entity. + /// + public string Identitier; + + public abstract bool IsSourceOf(EntProtoId food); +} + +[Serializable, NetSerializable] +public sealed partial class FoodButcheringData : FoodSourceData +{ + [DataField] + public EntProtoId Butchered; + + [DataField] + public ButcheringType Type; + + [DataField] + public List Results; + + public override int OutputCount => Results.Count; + + public FoodButcheringData(EntityPrototype butchered, ButcherableComponent comp) + { + Identitier = butchered.Name; + Butchered = butchered.ID; + Type = comp.Type; + Results = comp.SpawnedEntities; + } + + public override bool IsSourceOf(EntProtoId food) => Results.Any(it => it.PrototypeId == food); +} + +[Serializable, NetSerializable] +public sealed partial class FoodSlicingData : FoodSourceData +{ + [DataField] + public EntProtoId Sliced, Result; + + [DataField] + private int _outputCount; + public override int OutputCount => _outputCount; + + public FoodSlicingData(EntityPrototype sliced, EntProtoId result, int outputCount) + { + Identitier = sliced.Name; + Sliced = sliced.ID; + Result = result; + _outputCount = outputCount; // Server-only + } + + public override bool IsSourceOf(EntProtoId food) => food == Result; +} + +[Serializable, NetSerializable] +public sealed partial class FoodRecipeData : FoodSourceData +{ + [DataField] + public ProtoId Recipe; + + [DataField] + public EntProtoId Result; + + public override int OutputCount => 1; + + public FoodRecipeData(FoodRecipePrototype proto) + { + Identitier = proto.Name; + Recipe = proto.ID; + Result = proto.Result; + } + + public override bool IsSourceOf(EntProtoId food) => food == Result; +} + +[Serializable, NetSerializable] +public sealed partial class FoodReactionData : FoodSourceData +{ + [DataField] + public ProtoId Reaction; + + [DataField] + public EntProtoId Result; + + [DataField] + private int _outputCount; + public override int OutputCount => _outputCount; + + public FoodReactionData(ReactionPrototype reaction, EntProtoId result, int outputCount) + { + Identitier = reaction.Name; + Reaction = reaction.ID; + Result = result; + _outputCount = outputCount; + } + + public override bool IsSourceOf(EntProtoId food) => food == Result; +} diff --git a/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs b/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs index f1ddc9b2b5..a068b19104 100644 --- a/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs @@ -3,9 +3,12 @@ using Content.Shared.Movement.Systems; using Content.Shared.Nutrition.Components; using Content.Shared.Rejuvenate; +using Content.Shared.StatusIcon; using JetBrains.Annotations; +using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; +using Robust.Shared.Utility; using Content.Shared.Mood; using Robust.Shared.Configuration; using Content.Shared.CCVar; @@ -16,16 +19,34 @@ namespace Content.Shared.Nutrition.EntitySystems; public sealed class ThirstSystem : EntitySystem { [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly AlertsSystem _alerts = default!; [Dependency] private readonly MovementSpeedModifierSystem _movement = default!; [Dependency] private readonly SharedJetpackSystem _jetpack = default!; [Dependency] private readonly IConfigurationManager _config = default!; + [ValidatePrototypeId] + private const string ThirstIconOverhydratedId = "ThirstIconOverhydrated"; + + [ValidatePrototypeId] + private const string ThirstIconThirstyId = "ThirstIconThirsty"; + + [ValidatePrototypeId] + private const string ThirstIconParchedId = "ThirstIconParched"; + + private StatusIconPrototype? _thirstIconOverhydrated = null; + private StatusIconPrototype? _thirstIconThirsty = null; + private StatusIconPrototype? _thirstIconParched = null; + public override void Initialize() { base.Initialize(); + DebugTools.Assert(_prototype.TryIndex(ThirstIconOverhydratedId, out _thirstIconOverhydrated) && + _prototype.TryIndex(ThirstIconThirstyId, out _thirstIconThirsty) && + _prototype.TryIndex(ThirstIconParchedId, out _thirstIconParched)); + SubscribeLocalEvent(OnRefreshMovespeed); SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnRejuvenate); @@ -112,6 +133,28 @@ private bool IsMovementThreshold(ThirstThreshold threshold) } } + public bool TryGetStatusIconPrototype(ThirstComponent component, out StatusIconPrototype? prototype) + { + switch (component.CurrentThirstThreshold) + { + case ThirstThreshold.OverHydrated: + prototype = _thirstIconOverhydrated; + return true; + + case ThirstThreshold.Thirsty: + prototype = _thirstIconThirsty; + return true; + + case ThirstThreshold.Parched: + prototype = _thirstIconParched; + return true; + + default: + prototype = null; + return false; + } + } + private void UpdateEffects(EntityUid uid, ThirstComponent component) { if (!_config.GetCVar(CCVars.MoodEnabled) diff --git a/Content.Shared/Nyanotrasen/Mail/MailDeliveryPoolPrototype.cs b/Content.Shared/Nyanotrasen/Mail/MailDeliveryPoolPrototype.cs index 544f489d28..4de374a164 100644 --- a/Content.Shared/Nyanotrasen/Mail/MailDeliveryPoolPrototype.cs +++ b/Content.Shared/Nyanotrasen/Mail/MailDeliveryPoolPrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Mail; /// Generic random weighting dataset to use. /// [Prototype("mailDeliveryPool")] -public sealed class MailDeliveryPoolPrototype : IPrototype +public sealed partial class MailDeliveryPoolPrototype : IPrototype { [IdDataFieldAttribute] public string ID { get; } = default!; diff --git a/Content.Shared/Objectives/ObjectiveInfo.cs b/Content.Shared/Objectives/ObjectiveInfo.cs index 689fe17e6c..0b7e7a15f6 100644 --- a/Content.Shared/Objectives/ObjectiveInfo.cs +++ b/Content.Shared/Objectives/ObjectiveInfo.cs @@ -1,3 +1,4 @@ +using Content.Shared.Objectives.Components; using Robust.Shared.Serialization; using Robust.Shared.Utility; diff --git a/Content.Shared/OfferItem/SharedOfferItemSystem.cs b/Content.Shared/OfferItem/SharedOfferItemSystem.cs index ffea2a67c0..27592a38a9 100644 --- a/Content.Shared/OfferItem/SharedOfferItemSystem.cs +++ b/Content.Shared/OfferItem/SharedOfferItemSystem.cs @@ -155,3 +155,12 @@ protected bool IsInOfferMode(EntityUid? entity, OfferItemComponent? component = return entity != null && Resolve(entity.Value, ref component, false) && component.IsInOfferMode; } } + +// WD EDIT START +[Serializable] +public sealed class HandedEvent(EntityUid user, EntityUid target) : EntityEventArgs +{ + public EntityUid User = user; + public EntityUid Target = target; +} +// WD EDIT END diff --git a/Content.Shared/Overlays/ShowCriminalRecordIconsComponent.cs b/Content.Shared/Overlays/ShowCriminalRecordIconsComponent.cs new file mode 100644 index 0000000000..cb0759be3e --- /dev/null +++ b/Content.Shared/Overlays/ShowCriminalRecordIconsComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Overlays; + +/// +/// This component allows you to see criminal record status of mobs. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ShowCriminalRecordIconsComponent : Component { } diff --git a/Content.Shared/Overlays/ShowHungerIconsComponent.cs b/Content.Shared/Overlays/ShowHungerIconsComponent.cs index bf1fb2dc19..b3841bd80f 100644 --- a/Content.Shared/Overlays/ShowHungerIconsComponent.cs +++ b/Content.Shared/Overlays/ShowHungerIconsComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Overlays; /// -/// This component allows you to see the hungriness of mobs. +/// This component allows you to see the hungriness of mobs. /// [RegisterComponent, NetworkedComponent] public sealed partial class ShowHungerIconsComponent : Component { } diff --git a/Content.Shared/Overlays/ShowJobIconsComponent.cs b/Content.Shared/Overlays/ShowJobIconsComponent.cs new file mode 100644 index 0000000000..aae9739506 --- /dev/null +++ b/Content.Shared/Overlays/ShowJobIconsComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Overlays; + +/// +/// This component allows you to see job icons above mobs. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ShowJobIconsComponent : Component { } diff --git a/Content.Shared/Overlays/ShowMindShieldIconsComponent.cs b/Content.Shared/Overlays/ShowMindShieldIconsComponent.cs new file mode 100644 index 0000000000..624d5ab8ef --- /dev/null +++ b/Content.Shared/Overlays/ShowMindShieldIconsComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Overlays; + +/// +/// This component allows you to see mindshield icons above mobs. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ShowMindShieldIconsComponent : Component { } diff --git a/Content.Shared/Overlays/ShowSecurityIconsComponent.cs b/Content.Shared/Overlays/ShowSecurityIconsComponent.cs deleted file mode 100644 index ec268174d1..0000000000 --- a/Content.Shared/Overlays/ShowSecurityIconsComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ -using Robust.Shared.GameStates; - -namespace Content.Shared.Overlays; - -/// -/// This component allows you to see job icons above mobs. -/// -[RegisterComponent, NetworkedComponent] -public sealed partial class ShowSecurityIconsComponent : Component { } diff --git a/Content.Shared/Overlays/ShowSyndicateIconsComponent.cs b/Content.Shared/Overlays/ShowSyndicateIconsComponent.cs index 74a67db694..a63eae8e46 100644 --- a/Content.Shared/Overlays/ShowSyndicateIconsComponent.cs +++ b/Content.Shared/Overlays/ShowSyndicateIconsComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Overlays; /// -/// +/// This component allows you to identify members of the Syndicate faction. /// [RegisterComponent, NetworkedComponent] public sealed partial class ShowSyndicateIconsComponent : Component {} diff --git a/Content.Shared/Overlays/ShowThirstIconsComponent.cs b/Content.Shared/Overlays/ShowThirstIconsComponent.cs index 905ab07fe2..1914034e9e 100644 --- a/Content.Shared/Overlays/ShowThirstIconsComponent.cs +++ b/Content.Shared/Overlays/ShowThirstIconsComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Overlays; /// -/// This component allows you to see the thirstiness of mobs. +/// This component allows you to see the thirstiness of mobs. /// [RegisterComponent, NetworkedComponent] public sealed partial class ShowThirstIconsComponent : Component { } diff --git a/Content.Shared/Paper/SharedPaperComponent.cs b/Content.Shared/Paper/SharedPaperComponent.cs index dd87f9f907..f65a599e53 100644 --- a/Content.Shared/Paper/SharedPaperComponent.cs +++ b/Content.Shared/Paper/SharedPaperComponent.cs @@ -1,8 +1,10 @@ using Robust.Shared.Audio; +using Robust.Shared.GameStates; using Robust.Shared.Serialization; namespace Content.Shared.Paper; +[NetworkedComponent] public abstract partial class SharedPaperComponent : Component { /// diff --git a/Content.Shared/Payload/Components/PayloadTriggerComponent.cs b/Content.Shared/Payload/Components/PayloadTriggerComponent.cs index 6d3df41ac9..b064e91198 100644 --- a/Content.Shared/Payload/Components/PayloadTriggerComponent.cs +++ b/Content.Shared/Payload/Components/PayloadTriggerComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Explosion.Components; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; diff --git a/Content.Shared/Physics/CollisionGroup.cs b/Content.Shared/Physics/CollisionGroup.cs index 1c10fefd5d..775ccb7c44 100644 --- a/Content.Shared/Physics/CollisionGroup.cs +++ b/Content.Shared/Physics/CollisionGroup.cs @@ -48,6 +48,9 @@ public enum CollisionGroup MachineLayer = Opaque | MidImpassable | LowImpassable | BulletImpassable, ConveyorMask = Impassable | MidImpassable | LowImpassable | DoorPassable, + // Crates + CrateMask = Impassable | HighImpassable | LowImpassable, + // Tables that SmallMobs can go under TableMask = Impassable | MidImpassable, TableLayer = MidImpassable, diff --git a/Content.Shared/Pinpointer/NavMapComponent.cs b/Content.Shared/Pinpointer/NavMapComponent.cs index 8c9979ba25..d77169d32e 100644 --- a/Content.Shared/Pinpointer/NavMapComponent.cs +++ b/Content.Shared/Pinpointer/NavMapComponent.cs @@ -1,9 +1,13 @@ +using System.Linq; +using Content.Shared.Atmos; using Robust.Shared.GameStates; +using Robust.Shared.Serialization; +using Robust.Shared.Timing; namespace Content.Shared.Pinpointer; /// -/// Used to store grid poly data to be used for UIs. +/// Used to store grid data to be used for UIs. /// [RegisterComponent, NetworkedComponent] public sealed partial class NavMapComponent : Component @@ -12,25 +16,47 @@ public sealed partial class NavMapComponent : Component * Don't need DataFields as this can be reconstructed */ + /// + /// Bitmasks that represent chunked tiles. + /// [ViewVariables] - public readonly Dictionary Chunks = new(); + public Dictionary Chunks = new(); - [ViewVariables] public readonly List Beacons = new(); - - [ViewVariables] public readonly List Airlocks = new(); + /// + /// List of station beacons. + /// + [ViewVariables] + public Dictionary Beacons = new(); } -public sealed class NavMapChunk +[Serializable, NetSerializable] +public sealed class NavMapChunk(Vector2i origin) { - public readonly Vector2i Origin; + /// + /// The chunk origin + /// + [ViewVariables] + public readonly Vector2i Origin = origin; + + /// + /// Array containing the chunk's data. The + /// + [ViewVariables] + public int[] TileData = new int[SharedNavMapSystem.ArraySize]; /// - /// Bitmask for tiles, 1 for occupied and 0 for empty. + /// The last game tick that the chunk was updated /// - public int TileData; + [NonSerialized] + public GameTick LastUpdate; +} - public NavMapChunk(Vector2i origin) - { - Origin = origin; - } +public enum NavMapChunkType : byte +{ + // Values represent bit shift offsets when retrieving data in the tile array. + Invalid = byte.MaxValue, + Floor = 0, // I believe floors have directional information for diagonal tiles? + Wall = SharedNavMapSystem.Directions, + Airlock = 2 * SharedNavMapSystem.Directions, } + diff --git a/Content.Shared/Pinpointer/SharedNavMapSystem.cs b/Content.Shared/Pinpointer/SharedNavMapSystem.cs index 17f86ac7e6..ffe81c2d0e 100644 --- a/Content.Shared/Pinpointer/SharedNavMapSystem.cs +++ b/Content.Shared/Pinpointer/SharedNavMapSystem.cs @@ -1,49 +1,193 @@ +using System.Diagnostics.CodeAnalysis; using System.Numerics; +using System.Runtime.CompilerServices; +using Content.Shared.Tag; +using Robust.Shared.GameStates; using Robust.Shared.Serialization; +using Robust.Shared.Timing; using Robust.Shared.Utility; namespace Content.Shared.Pinpointer; public abstract class SharedNavMapSystem : EntitySystem { - public const byte ChunkSize = 4; + public const int Categories = 3; + public const int Directions = 4; // Not directly tied to number of atmos directions - /// - /// Converts the chunk's tile into a bitflag for the slot. - /// - public static int GetFlag(Vector2i relativeTile) + public const int ChunkSize = 8; + public const int ArraySize = ChunkSize* ChunkSize; + + public const int AllDirMask = (1 << Directions) - 1; + public const int AirlockMask = AllDirMask << (int) NavMapChunkType.Airlock; + public const int WallMask = AllDirMask << (int) NavMapChunkType.Wall; + public const int FloorMask = AllDirMask << (int) NavMapChunkType.Floor; + + [Robust.Shared.IoC.Dependency] private readonly TagSystem _tagSystem = default!; + + private readonly string[] _wallTags = ["Wall", "Window"]; + private EntityQuery _doorQuery; + + public override void Initialize() { - return 1 << (relativeTile.X * ChunkSize + relativeTile.Y); + base.Initialize(); + + // Data handling events + SubscribeLocalEvent(OnGetState); + _doorQuery = GetEntityQuery(); + } + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public static int GetTileIndex(Vector2i relativeTile) + { + return relativeTile.X * ChunkSize + relativeTile.Y; } /// - /// Converts the chunk's tile into a bitflag for the slot. + /// Inverse of /// - public static Vector2i GetTile(int flag) + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public static Vector2i GetTileFromIndex(int index) + { + var x = index / ChunkSize; + var y = index % ChunkSize; + return new Vector2i(x, y); + } + + public NavMapChunkType GetEntityType(EntityUid uid) { - var value = Math.Log2(flag); - var x = (int) value / ChunkSize; - var y = (int) value % ChunkSize; - var result = new Vector2i(x, y); + if (_doorQuery.HasComp(uid)) + return NavMapChunkType.Airlock; - DebugTools.Assert(GetFlag(result) == flag); + if (_tagSystem.HasAnyTag(uid, _wallTags)) + return NavMapChunkType.Wall; - return new Vector2i(x, y); + return NavMapChunkType.Invalid; } - [Serializable, NetSerializable] - protected sealed class NavMapComponentState : ComponentState + protected bool TryCreateNavMapBeaconData(EntityUid uid, NavMapBeaconComponent component, TransformComponent xform, MetaDataComponent meta, [NotNullWhen(true)] out NavMapBeacon? beaconData) + { + beaconData = null; + + if (!component.Enabled || xform.GridUid == null || !xform.Anchored) + return false; + + var name = component.Text; + if (string.IsNullOrEmpty(name)) + name = meta.EntityName; + + beaconData = new NavMapBeacon(meta.NetEntity, component.Color, name, xform.LocalPosition); + + return true; + } + + #region: Event handling + + private void OnGetState(EntityUid uid, NavMapComponent component, ref ComponentGetState args) { - public Dictionary TileData = new(); + Dictionary chunks; + + // Should this be a full component state or a delta-state? + if (args.FromTick <= component.CreationTick) + { + // Full state + chunks = new(component.Chunks.Count); + foreach (var (origin, chunk) in component.Chunks) + { + chunks.Add(origin, chunk.TileData); + } - public List Beacons = new(); + args.State = new NavMapComponentState(chunks, component.Beacons); + return; + } - public List Airlocks = new(); + chunks = new(); + foreach (var (origin, chunk) in component.Chunks) + { + if (chunk.LastUpdate < args.FromTick) + continue; + + chunks.Add(origin, chunk.TileData); + } + + args.State = new NavMapComponentState(chunks, component.Beacons) + { + // TODO NAVMAP cache a single AllChunks hashset in the component. + // Or maybe just only send them if a chunk gets removed. + AllChunks = new(component.Chunks.Keys), + }; } + #endregion + + #region: System messages + [Serializable, NetSerializable] - public readonly record struct NavMapBeacon(Color Color, string Text, Vector2 Position); + protected sealed class NavMapComponentState( + Dictionary chunks, + Dictionary beacons) + : ComponentState, IComponentDeltaState + { + public Dictionary Chunks = chunks; + public Dictionary Beacons = beacons; + + // Required to infer deleted/missing chunks for delta states + public HashSet? AllChunks; + + public bool FullState => AllChunks == null; + + public void ApplyToFullState(IComponentState fullState) + { + DebugTools.Assert(!FullState); + var state = (NavMapComponentState) fullState; + DebugTools.Assert(state.FullState); + + foreach (var key in state.Chunks.Keys) + { + if (!AllChunks!.Contains(key)) + state.Chunks.Remove(key); + } + + foreach (var (index, data) in Chunks) + { + if (!state.Chunks.TryGetValue(index, out var stateValue)) + state.Chunks[index] = stateValue = new int[data.Length]; + + Array.Copy(data, stateValue, data.Length); + } + + state.Beacons.Clear(); + foreach (var (nuid, beacon) in Beacons) + { + state.Beacons.Add(nuid, beacon); + } + } + + public IComponentState CreateNewFullState(IComponentState fullState) + { + DebugTools.Assert(!FullState); + var state = (NavMapComponentState) fullState; + DebugTools.Assert(state.FullState); + + var chunks = new Dictionary(state.Chunks.Count); + foreach (var (index, data) in state.Chunks) + { + if (!AllChunks!.Contains(index)) + continue; + + var newData = chunks[index] = new int[ArraySize]; + + if (Chunks.TryGetValue(index, out var updatedData)) + Array.Copy(newData, updatedData, ArraySize); + else + Array.Copy(newData, data, ArraySize); + } + + return new NavMapComponentState(chunks, new(Beacons)); + } + } [Serializable, NetSerializable] - public readonly record struct NavMapAirlock(Vector2 Position); + public record struct NavMapBeacon(NetEntity NetEnt, Color Color, string Text, Vector2 Position); + + #endregion } diff --git a/Content.Shared/Players/PlayTimeTracking/PlayTimeTrackingShared.cs b/Content.Shared/Players/PlayTimeTracking/PlayTimeTrackingShared.cs index e300524d87..ccaf9c17dd 100644 --- a/Content.Shared/Players/PlayTimeTracking/PlayTimeTrackingShared.cs +++ b/Content.Shared/Players/PlayTimeTracking/PlayTimeTrackingShared.cs @@ -1,9 +1,18 @@ -namespace Content.Shared.Players.PlayTimeTracking; +using Content.Shared.Dataset; + +namespace Content.Shared.Players.PlayTimeTracking; public static class PlayTimeTrackingShared { /// /// The prototype ID of the play time tracker that represents overall playtime, i.e. not tied to any one role. /// + [ValidatePrototypeId] public const string TrackerOverall = "Overall"; + + /// + /// The prototype ID of the play time tracker that represents admin time, when a player is in game as admin. + /// + [ValidatePrototypeId] + public const string TrackerAdmin = "Admin"; } diff --git a/Content.Shared/Plunger/Systems/PlungerSystem.cs b/Content.Shared/Plunger/Systems/PlungerSystem.cs index 192a018564..6e07657941 100644 --- a/Content.Shared/Plunger/Systems/PlungerSystem.cs +++ b/Content.Shared/Plunger/Systems/PlungerSystem.cs @@ -17,8 +17,8 @@ namespace Content.Shared.Plunger.Systems; /// public sealed class PlungerSystem : EntitySystem { - [Dependency] protected readonly IPrototypeManager _proto = default!; - [Dependency] protected readonly IRobustRandom _random = default!; + [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; diff --git a/Content.Shared/Polymorph/Components/ChameleonDisguiseComponent.cs b/Content.Shared/Polymorph/Components/ChameleonDisguiseComponent.cs new file mode 100644 index 0000000000..2b9fba7b39 --- /dev/null +++ b/Content.Shared/Polymorph/Components/ChameleonDisguiseComponent.cs @@ -0,0 +1,25 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Polymorph.Components; + +/// +/// Component added to disguise entities. +/// Used by client to copy over appearance from the disguise's source entity. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)] +public sealed partial class ChameleonDisguiseComponent : Component +{ + /// + /// The disguise source entity for copying the sprite. + /// + [DataField, AutoNetworkedField] + public EntityUid SourceEntity; + + /// + /// The source entity's prototype. + /// Used as a fallback if the source entity was deleted. + /// + [DataField, AutoNetworkedField] + public EntProtoId? SourceProto; +} diff --git a/Content.Shared/Polymorph/Components/ChameleonProjectorComponent.cs b/Content.Shared/Polymorph/Components/ChameleonProjectorComponent.cs new file mode 100644 index 0000000000..239b5236f2 --- /dev/null +++ b/Content.Shared/Polymorph/Components/ChameleonProjectorComponent.cs @@ -0,0 +1,68 @@ +using Content.Shared.Polymorph; +using Content.Shared.Polymorph.Systems; +using Content.Shared.Whitelist; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Polymorph.Components; + +/// +/// A chameleon projector polymorphs you into a clicked entity, then polymorphs back when clicked on or destroyed. +/// This creates a new dummy polymorph entity and copies the appearance over. +/// +[RegisterComponent, Access(typeof(SharedChameleonProjectorSystem))] +public sealed partial class ChameleonProjectorComponent : Component +{ + /// + /// If non-null, whitelist for valid entities to disguise as. + /// + [DataField(required: true)] + public EntityWhitelist? Whitelist; + + /// + /// If non-null, blacklist that prevents entities from being used even if they are in the whitelist. + /// + [DataField(required: true)] + public EntityWhitelist? Blacklist; + + /// + /// Polymorph configuration for the disguise entity. + /// + [DataField(required: true)] + public PolymorphConfiguration Polymorph = new(); + + /// + /// Action for disabling your disguise's rotation. + /// + [DataField] + public EntProtoId NoRotAction = "ActionDisguiseNoRot"; + + /// + /// Action for anchoring your disguise in place. + /// + [DataField] + public EntProtoId AnchorAction = "ActionDisguiseAnchor"; + + /// + /// Minimum health to give the disguise. + /// + [DataField] + public float MinHealth = 1f; + + /// + /// Maximum health to give the disguise, health scales with mass. + /// + [DataField] + public float MaxHealth = 100f; + + /// + /// Popup shown to the user when they try to disguise as an invalid entity. + /// + [DataField] + public LocId InvalidPopup = "chameleon-projector-invalid"; + + /// + /// Popup shown to the user when they disguise as a valid entity. + /// + [DataField] + public LocId SuccessPopup = "chameleon-projector-success"; +} diff --git a/Content.Shared/Polymorph/Systems/SharedChameleonProjectorSystem.cs b/Content.Shared/Polymorph/Systems/SharedChameleonProjectorSystem.cs new file mode 100644 index 0000000000..c1abfc526f --- /dev/null +++ b/Content.Shared/Polymorph/Systems/SharedChameleonProjectorSystem.cs @@ -0,0 +1,113 @@ +using Content.Shared.Actions; +using Content.Shared.Interaction; +using Content.Shared.Polymorph; +using Content.Shared.Polymorph.Components; +using Content.Shared.Popups; +using Robust.Shared.Serialization.Manager; +using Robust.Shared.Prototypes; +using System.Diagnostics.CodeAnalysis; + +namespace Content.Shared.Polymorph.Systems; + +/// +/// Handles whitelist/blacklist checking. +/// Actual polymorphing and deactivation is done serverside. +/// +public abstract class SharedChameleonProjectorSystem : EntitySystem +{ + [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly ISerializationManager _serMan = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInteract); + } + + private void OnInteract(Entity ent, ref AfterInteractEvent args) + { + if (!args.CanReach || args.Target is not {} target) + return; + + var user = args.User; + args.Handled = true; + + if (IsInvalid(ent.Comp, target)) + { + _popup.PopupClient(Loc.GetString(ent.Comp.InvalidPopup), target, user); + return; + } + + _popup.PopupClient(Loc.GetString(ent.Comp.SuccessPopup), target, user); + Disguise(ent.Comp, user, target); + } + + /// + /// Returns true if an entity cannot be used as a disguise. + /// + public bool IsInvalid(ChameleonProjectorComponent comp, EntityUid target) + { + return (comp.Whitelist?.IsValid(target, EntityManager) == false) + || (comp.Blacklist?.IsValid(target, EntityManager) == true); + } + + /// + /// On server, polymorphs the user into an entity and sets up the disguise. + /// + public virtual void Disguise(ChameleonProjectorComponent comp, EntityUid user, EntityUid entity) + { + } + + /// + /// Copy a component from the source entity/prototype to the disguise entity. + /// + /// + /// This would probably be a good thing to add to engine in the future. + /// + protected bool CopyComp(Entity ent) where T: Component, new() + { + if (!GetSrcComp(ent.Comp, out var src)) + return true; + + // remove then re-add to prevent a funny + RemComp(ent); + var dest = AddComp(ent); + _serMan.CopyTo(src, ref dest, notNullableOverride: true); + Dirty(ent, dest); + return false; + } + + /// + /// Try to get a single component from the source entity/prototype. + /// + private bool GetSrcComp(ChameleonDisguiseComponent comp, [NotNullWhen(true)] out T? src) where T: Component + { + src = null; + if (TryComp(comp.SourceEntity, out src)) + return true; + + if (comp.SourceProto is not {} protoId) + return false; + + if (!_proto.TryIndex(protoId, out var proto)) + return false; + + return proto.TryGetComponent(out src); + } +} + +/// +/// Action event for toggling transform NoRot on a disguise. +/// +public sealed partial class DisguiseToggleNoRotEvent : InstantActionEvent +{ +} + +/// +/// Action event for toggling transform Anchored on a disguise. +/// +public sealed partial class DisguiseToggleAnchoredEvent : InstantActionEvent +{ +} diff --git a/Content.Shared/Popups/SharedPopupSystem.cs b/Content.Shared/Popups/SharedPopupSystem.cs index 10e8ca9be1..38d2030cd5 100644 --- a/Content.Shared/Popups/SharedPopupSystem.cs +++ b/Content.Shared/Popups/SharedPopupSystem.cs @@ -82,12 +82,24 @@ public abstract class SharedPopupSystem : EntitySystem /// public abstract void PopupEntity(string? message, EntityUid uid, Filter filter, bool recordReplay, PopupType type = PopupType.Small); + /// + /// Variant of that only runs on the client, outside of prediction. + /// Useful for shared code that is always ran by both sides to avoid duplicate popups. + /// + public abstract void PopupClient(string? message, EntityUid? recipient, PopupType type = PopupType.Small); + /// /// Variant of that only runs on the client, outside of prediction. /// Useful for shared code that is always ran by both sides to avoid duplicate popups. /// public abstract void PopupClient(string? message, EntityUid uid, EntityUid? recipient, PopupType type = PopupType.Small); + /// + /// Variant of that only runs on the client, outside of prediction. + /// Useful for shared code that is always ran by both sides to avoid duplicate popups. + /// + public abstract void PopupClient(string? message, EntityCoordinates coordinates, EntityUid? recipient, PopupType type = PopupType.Small); + /// /// Variant of for use with prediction. The local client will show /// the popup to the recipient, and the server will show it to every other player in PVS range. If recipient is null, the local client diff --git a/Content.Shared/Power/Components/ActivatableUIRequiresPowerComponent.cs b/Content.Shared/Power/Components/ActivatableUIRequiresPowerComponent.cs new file mode 100644 index 0000000000..af193c8dfc --- /dev/null +++ b/Content.Shared/Power/Components/ActivatableUIRequiresPowerComponent.cs @@ -0,0 +1,8 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Power.Components; + +[RegisterComponent, NetworkedComponent] +public sealed partial class ActivatableUIRequiresPowerComponent : Component +{ +} diff --git a/Content.Shared/Power/SharedPowerMonitoringConsoleSystem.cs b/Content.Shared/Power/SharedPowerMonitoringConsoleSystem.cs index dc4af23c23..749f0233aa 100644 --- a/Content.Shared/Power/SharedPowerMonitoringConsoleSystem.cs +++ b/Content.Shared/Power/SharedPowerMonitoringConsoleSystem.cs @@ -1,3 +1,4 @@ +using System.Runtime.CompilerServices; using JetBrains.Annotations; namespace Content.Shared.Power; @@ -5,4 +6,23 @@ namespace Content.Shared.Power; [UsedImplicitly] public abstract class SharedPowerMonitoringConsoleSystem : EntitySystem { + // Chunk size is limited as we require ChunkSize^2 <= 32 (number of bits in an int) + public const int ChunkSize = 5; + + /// + /// Converts the chunk's tile into a bitflag for the slot. + /// + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public static int GetFlag(Vector2i relativeTile) + { + return 1 << (relativeTile.X * ChunkSize + relativeTile.Y); + } + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public static Vector2i GetTileFromIndex(int index) + { + var x = index / ChunkSize; + var y = index % ChunkSize; + return new Vector2i(x, y); + } } diff --git a/Content.Shared/Preferences/HumanoidCharacterProfile.cs b/Content.Shared/Preferences/HumanoidCharacterProfile.cs index fb0df05499..b0fb570f60 100644 --- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs +++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs @@ -15,688 +15,515 @@ using Robust.Shared.Serialization; using Robust.Shared.Utility; -namespace Content.Shared.Preferences -{ - /// - /// Character profile. Looks immutable, but uses non-immutable semantics internally for serialization/code sanity purposes. - /// - [DataDefinition] - [Serializable, NetSerializable] - public sealed partial class HumanoidCharacterProfile : ICharacterProfile - { - public const int MaxNameLength = 48; - public const int MaxDescLength = 1024; - - private readonly Dictionary _jobPriorities; - private readonly List _antagPreferences; - private readonly List _traitPreferences; - private readonly List _loadoutPreferences; - - private HumanoidCharacterProfile( - string name, - string flavortext, - string species, - float height, - float width, - int age, - Sex sex, - Gender gender, - HumanoidCharacterAppearance appearance, - ClothingPreference clothing, - BackpackPreference backpack, - SpawnPriorityPreference spawnPriority, - Dictionary jobPriorities, - PreferenceUnavailableMode preferenceUnavailable, - List antagPreferences, - List traitPreferences, - List loadoutPreferences) - { - Name = name; - FlavorText = flavortext; - Species = species; - Height = height; - Width = width; - Age = age; - Sex = sex; - Gender = gender; - Appearance = appearance; - Clothing = clothing; - Backpack = backpack; - SpawnPriority = spawnPriority; - _jobPriorities = jobPriorities; - PreferenceUnavailable = preferenceUnavailable; - _antagPreferences = antagPreferences; - _traitPreferences = traitPreferences; - _loadoutPreferences = loadoutPreferences; - } - - /// Copy constructor but with overridable references (to prevent useless copies) - private HumanoidCharacterProfile( - HumanoidCharacterProfile other, - Dictionary jobPriorities, - List antagPreferences, - List traitPreferences, - List loadoutPreferences) - : this(other.Name, other.FlavorText, other.Species, other.Height, other.Width, other.Age, other.Sex, other.Gender, other.Appearance, - other.Clothing, other.Backpack, other.SpawnPriority, jobPriorities, other.PreferenceUnavailable, - antagPreferences, traitPreferences, loadoutPreferences) - { - } +namespace Content.Shared.Preferences; - /// Copy constructor - private HumanoidCharacterProfile(HumanoidCharacterProfile other) - : this(other, new Dictionary(other.JobPriorities), - new List(other.AntagPreferences), new List(other.TraitPreferences), - new List(other.LoadoutPreferences)) - { - } - - public HumanoidCharacterProfile( - string name, - string flavortext, - string species, - float height, - float width, - int age, - Sex sex, - Gender gender, - HumanoidCharacterAppearance appearance, - ClothingPreference clothing, - BackpackPreference backpack, - SpawnPriorityPreference spawnPriority, - IReadOnlyDictionary jobPriorities, - PreferenceUnavailableMode preferenceUnavailable, - IReadOnlyList antagPreferences, - IReadOnlyList traitPreferences, - IReadOnlyList loadoutPreferences) - : this(name, flavortext, species, height, width, age, sex, gender, appearance, clothing, backpack, spawnPriority, - new Dictionary(jobPriorities), preferenceUnavailable, - new List(antagPreferences), new List(traitPreferences), - new List(loadoutPreferences)) - { - } - - /// - /// Get the default humanoid character profile, using internal constant values. - /// Defaults to for the species. - /// - /// - public HumanoidCharacterProfile() : this( - "John Doe", - "", - SharedHumanoidAppearanceSystem.DefaultSpecies, - 1f, - 1f, - 18, - Sex.Male, - Gender.Male, - new HumanoidCharacterAppearance(), - ClothingPreference.Jumpsuit, - BackpackPreference.Backpack, - SpawnPriorityPreference.None, - new Dictionary - { - {SharedGameTicker.FallbackOverflowJob, JobPriority.High} - }, - PreferenceUnavailableMode.SpawnAsOverflow, - new List(), - new List(), - new List()) - { - } +/// Character profile. Looks immutable, but uses non-immutable semantics internally for serialization/code sanity purposes +[DataDefinition] +[Serializable, NetSerializable] +public sealed partial class HumanoidCharacterProfile : ICharacterProfile +{ + private static readonly Regex RestrictedNameRegex = new("[^A-Z,a-z,0-9,А-Я,а-я, -]"); + private static readonly Regex ICNameCaseRegex = new(@"^(?\w)|\b(?\w)(?=\w*$)"); - /// - /// Return a default character profile, based on species. - /// - /// The species to use in this default profile. The default species is . - /// Humanoid character profile with default settings. - public static HumanoidCharacterProfile DefaultWithSpecies(string species = SharedHumanoidAppearanceSystem.DefaultSpecies) - { - return new( - "John Doe", - "", - species, - 1f, - 1f, - 18, - Sex.Male, - Gender.Male, - HumanoidCharacterAppearance.DefaultWithSpecies(species), - ClothingPreference.Jumpsuit, - BackpackPreference.Backpack, - SpawnPriorityPreference.None, - new Dictionary - { - {SharedGameTicker.FallbackOverflowJob, JobPriority.High} - }, - PreferenceUnavailableMode.SpawnAsOverflow, - new List(), - new List(), - new List()); - } + public const int MaxNameLength = 64; + public const int MaxDescLength = 1024; - // TODO: This should eventually not be a visual change only. - public static HumanoidCharacterProfile Random(HashSet? ignoredSpecies = null) + /// Job preferences for initial spawn + [DataField] + private Dictionary _jobPriorities = new() + { { - var prototypeManager = IoCManager.Resolve(); - var random = IoCManager.Resolve(); + SharedGameTicker.FallbackOverflowJob, JobPriority.High + }, + }; + + /// Antags we have opted in to + [DataField] + private HashSet _antagPreferences = new(); + + /// Enabled traits + [DataField] + private HashSet _traitPreferences = new(); + + /// + public HashSet LoadoutPreferences => _loadoutPreferences; + + [DataField] + private HashSet _loadoutPreferences = new(); + + [DataField] + public string Name { get; set; } = "John Doe"; + + /// Detailed text that can appear for the character if is enabled + [DataField] + public string FlavorText { get; set; } = string.Empty; + + /// Associated for this profile + [DataField] + public string Species { get; set; } = SharedHumanoidAppearanceSystem.DefaultSpecies; + + [DataField] + public string Customspeciename { get; set; } = ""; + + [DataField] + public float Height { get; private set; } + + [DataField] + public float Width { get; private set; } + + [DataField] + public int Age { get; set; } = 18; + + [DataField] + public Sex Sex { get; private set; } = Sex.Male; + + [DataField] + public Gender Gender { get; private set; } = Gender.Male; + + /// + public ICharacterAppearance CharacterAppearance => Appearance; + + /// Stores markings, eye colors, etc for the profile + [DataField] + public HumanoidCharacterAppearance Appearance { get; set; } = new(); + + [DataField] + public ClothingPreference Clothing { get; set; } + [DataField] + public BackpackPreference Backpack { get; set; } + + /// When spawning into a round what's the preferred spot to spawn + [DataField] + public SpawnPriorityPreference SpawnPriority { get; private set; } = SpawnPriorityPreference.None; + + /// + public IReadOnlyDictionary JobPriorities => _jobPriorities; + + /// + public IReadOnlySet AntagPreferences => _antagPreferences; + + /// + public IReadOnlySet TraitPreferences => _traitPreferences; + + /// If we're unable to get one of our preferred jobs do we spawn as a fallback job or do we stay in lobby + [DataField] + public PreferenceUnavailableMode PreferenceUnavailable { get; private set; } = + PreferenceUnavailableMode.SpawnAsOverflow; + + public HumanoidCharacterProfile( + string name, + string flavortext, + string species, + string customspeciename, + float height, + float width, + int age, + Sex sex, + Gender gender, + HumanoidCharacterAppearance appearance, + SpawnPriorityPreference spawnPriority, + Dictionary jobPriorities, + ClothingPreference clothing, + BackpackPreference backpack, + PreferenceUnavailableMode preferenceUnavailable, + HashSet antagPreferences, + HashSet traitPreferences, + HashSet loadoutPreferences) + { + Name = name; + FlavorText = flavortext; + Species = species; + Customspeciename = customspeciename; + Height = height; + Width = width; + Age = age; + Sex = sex; + Gender = gender; + Appearance = appearance; + SpawnPriority = spawnPriority; + _jobPriorities = jobPriorities; + Clothing = clothing; + Backpack = backpack; + PreferenceUnavailable = preferenceUnavailable; + _antagPreferences = antagPreferences; + _traitPreferences = traitPreferences; + _loadoutPreferences = loadoutPreferences; + } - var species = random.Pick(prototypeManager - .EnumeratePrototypes() - .Where(x => ignoredSpecies == null ? x.RoundStart : x.RoundStart && !ignoredSpecies.Contains(x.ID)) - .ToArray() - ).ID; + /// Copy constructor + public HumanoidCharacterProfile(HumanoidCharacterProfile other) + : this( + other.Name, + other.FlavorText, + other.Species, + other.Customspeciename, + other.Height, + other.Width, + other.Age, + other.Sex, + other.Gender, + other.Appearance.Clone(), + other.SpawnPriority, + new Dictionary(other.JobPriorities), + other.Clothing, + other.Backpack, + other.PreferenceUnavailable, + new HashSet(other.AntagPreferences), + new HashSet(other.TraitPreferences), + new HashSet(other.LoadoutPreferences)) + { + } - return RandomWithSpecies(species); - } + /// + /// Get the default humanoid character profile, using internal constant values. + /// Defaults to for the species. + /// + /// + public HumanoidCharacterProfile() + { + } - public static HumanoidCharacterProfile RandomWithSpecies(string species = SharedHumanoidAppearanceSystem.DefaultSpecies) + /// + /// Return a default character profile, based on species. + /// + /// The species to use in this default profile. The default species is . + /// Humanoid character profile with default settings. + public static HumanoidCharacterProfile DefaultWithSpecies(string species = SharedHumanoidAppearanceSystem.DefaultSpecies) + { + return new() { - var prototypeManager = IoCManager.Resolve(); - var random = IoCManager.Resolve(); - - var sex = Sex.Unsexed; - var age = 18; - var height = 1f; - var width = 1f; - if (prototypeManager.TryIndex(species, out var speciesPrototype)) - { - sex = random.Pick(speciesPrototype.Sexes); - age = random.Next(speciesPrototype.MinAge, speciesPrototype.OldAge); // people don't look and keep making 119 year old characters with zero rp, cap it at middle aged - height = random.NextFloat(speciesPrototype.MinHeight, speciesPrototype.MaxHeight); - width = random.NextFloat(speciesPrototype.MinWidth, speciesPrototype.MaxWidth); - } - - var gender = Gender.Epicene; - - switch (sex) - { - case Sex.Male: - gender = Gender.Male; - break; - case Sex.Female: - gender = Gender.Female; - break; - } - - var name = GetName(species, gender); - - return new HumanoidCharacterProfile(name, "", species, height, width, age, sex, gender, - HumanoidCharacterAppearance.Random(species, sex), ClothingPreference.Jumpsuit, - BackpackPreference.Backpack, SpawnPriorityPreference.None, - new Dictionary - { - {SharedGameTicker.FallbackOverflowJob, JobPriority.High}, - }, PreferenceUnavailableMode.StayInLobby, new List(), new List(), new List()); - } - - public string Name { get; private set; } - public string FlavorText { get; private set; } - [DataField("species")] - public string Species { get; private set; } - - [DataField("height")] - public float Height { get; private set; } - - [DataField("width")] - public float Width { get; private set; } - - [DataField("age")] - public int Age { get; private set; } + Species = species, + }; + } - [DataField("sex")] - public Sex Sex { get; private set; } + // TODO: This should eventually not be a visual change only. + public static HumanoidCharacterProfile Random(HashSet? ignoredSpecies = null) + { + var prototypeManager = IoCManager.Resolve(); + var random = IoCManager.Resolve(); - [DataField("gender")] - public Gender Gender { get; private set; } + var species = random.Pick(prototypeManager + .EnumeratePrototypes() + .Where(x => ignoredSpecies == null ? x.RoundStart : x.RoundStart && !ignoredSpecies.Contains(x.ID)) + .ToArray() + ).ID; - public ICharacterAppearance CharacterAppearance => Appearance; + return RandomWithSpecies(species); + } - [DataField("appearance")] - public HumanoidCharacterAppearance Appearance { get; private set; } - public ClothingPreference Clothing { get; private set; } - public BackpackPreference Backpack { get; private set; } - public SpawnPriorityPreference SpawnPriority { get; private set; } - public IReadOnlyDictionary JobPriorities => _jobPriorities; - public IReadOnlyList AntagPreferences => _antagPreferences; - public IReadOnlyList TraitPreferences => _traitPreferences; - public IReadOnlyList LoadoutPreferences => _loadoutPreferences; - public PreferenceUnavailableMode PreferenceUnavailable { get; private set; } + public static HumanoidCharacterProfile RandomWithSpecies(string species = SharedHumanoidAppearanceSystem.DefaultSpecies) + { + var prototypeManager = IoCManager.Resolve(); + var random = IoCManager.Resolve(); - public HumanoidCharacterProfile WithName(string name) + var sex = Sex.Unsexed; + var age = 18; + if (prototypeManager.TryIndex(species, out var speciesPrototype)) { - return new(this) { Name = name }; + sex = random.Pick(speciesPrototype.Sexes); + age = random.Next(speciesPrototype.MinAge, speciesPrototype.OldAge); // people don't look and keep making 119 year old characters with zero rp, cap it at middle aged } - public HumanoidCharacterProfile WithFlavorText(string flavorText) - { - return new(this) { FlavorText = flavorText }; - } + var gender = Gender.Epicene; - public HumanoidCharacterProfile WithAge(int age) + switch (sex) { - return new(this) { Age = age }; + case Sex.Male: + gender = Gender.Male; + break; + case Sex.Female: + gender = Gender.Female; + break; } - public HumanoidCharacterProfile WithSex(Sex sex) - { - return new(this) { Sex = sex }; - } + var name = GetName(species, gender); - public HumanoidCharacterProfile WithGender(Gender gender) + return new HumanoidCharacterProfile() { - return new(this) { Gender = gender }; - } + Name = name, + Sex = sex, + Age = age, + Gender = gender, + Species = species, + Appearance = HumanoidCharacterAppearance.Random(species, sex), + }; + } - public HumanoidCharacterProfile WithSpecies(string species) - { - return new(this) { Species = species }; - } + public HumanoidCharacterProfile WithName(string name) => new(this) { Name = name }; + public HumanoidCharacterProfile WithFlavorText(string flavorText) => new(this) { FlavorText = flavorText }; + public HumanoidCharacterProfile WithAge(int age) => new(this) { Age = age }; + public HumanoidCharacterProfile WithSex(Sex sex) => new(this) { Sex = sex }; + public HumanoidCharacterProfile WithGender(Gender gender) => new(this) { Gender = gender }; + public HumanoidCharacterProfile WithSpecies(string species) => new(this) { Species = species }; + public HumanoidCharacterProfile WithCustomSpeciesName(string customspeciename) => new(this) { Customspeciename = customspeciename}; + public HumanoidCharacterProfile WithHeight(float height) => new(this) { Height = height }; + public HumanoidCharacterProfile WithWidth(float width) => new(this) { Width = width }; + + public HumanoidCharacterProfile WithCharacterAppearance(HumanoidCharacterAppearance appearance) => + new(this) { Appearance = appearance }; + public HumanoidCharacterProfile WithClothingPreference(ClothingPreference clothing) => + new(this) { Clothing = clothing }; + public HumanoidCharacterProfile WithBackpackPreference(BackpackPreference backpack) => + new(this) { Backpack = backpack }; + public HumanoidCharacterProfile WithSpawnPriorityPreference(SpawnPriorityPreference spawnPriority) => + new(this) { SpawnPriority = spawnPriority }; + public HumanoidCharacterProfile WithJobPriorities(IEnumerable> jobPriorities) => + new(this) { _jobPriorities = new Dictionary(jobPriorities) }; + + public HumanoidCharacterProfile WithJobPriority(string jobId, JobPriority priority) + { + var dictionary = new Dictionary(_jobPriorities); + if (priority == JobPriority.Never) + dictionary.Remove(jobId); + else + dictionary[jobId] = priority; - public HumanoidCharacterProfile WithHeight(float height) - { - return new(this) { Height = height }; - } + return new(this) { _jobPriorities = dictionary }; + } - public HumanoidCharacterProfile WithWidth(float width) - { - return new(this) { Width = width }; - } + public HumanoidCharacterProfile WithPreferenceUnavailable(PreferenceUnavailableMode mode) => + new(this) { PreferenceUnavailable = mode }; + public HumanoidCharacterProfile WithAntagPreferences(IEnumerable antagPreferences) => + new(this) { _antagPreferences = new HashSet(antagPreferences) }; - public HumanoidCharacterProfile WithCharacterAppearance(HumanoidCharacterAppearance appearance) - { - return new(this) { Appearance = appearance }; - } + public HumanoidCharacterProfile WithAntagPreference(string antagId, bool pref) + { + var list = new HashSet(_antagPreferences); + if (pref) + list.Add(antagId); + else + list.Remove(antagId); - public HumanoidCharacterProfile WithClothingPreference(ClothingPreference clothing) - { - return new(this) { Clothing = clothing }; - } - public HumanoidCharacterProfile WithBackpackPreference(BackpackPreference backpack) - { - return new(this) { Backpack = backpack }; - } - public HumanoidCharacterProfile WithSpawnPriorityPreference(SpawnPriorityPreference spawnPriority) - { - return new(this) { SpawnPriority = spawnPriority }; - } - public HumanoidCharacterProfile WithJobPriorities(IEnumerable> jobPriorities) - { - return new(this, new Dictionary(jobPriorities), _antagPreferences, _traitPreferences, - _loadoutPreferences); - } + return new(this) { _antagPreferences = list }; + } - public HumanoidCharacterProfile WithJobPriority(string jobId, JobPriority priority) - { - var dictionary = new Dictionary(_jobPriorities); - if (priority == JobPriority.Never) - { - dictionary.Remove(jobId); - } - else - { - dictionary[jobId] = priority; - } - return new(this, dictionary, _antagPreferences, _traitPreferences, _loadoutPreferences); - } + public HumanoidCharacterProfile WithTraitPreference(string traitId, bool pref) + { + var list = new HashSet(_traitPreferences); - public HumanoidCharacterProfile WithPreferenceUnavailable(PreferenceUnavailableMode mode) - { - return new(this) { PreferenceUnavailable = mode }; - } + if (pref) + list.Add(traitId); + else + list.Remove(traitId); - public HumanoidCharacterProfile WithAntagPreferences(IEnumerable antagPreferences) - { - return new(this, _jobPriorities, new List(antagPreferences), _traitPreferences, - _loadoutPreferences); - } + return new(this) { _traitPreferences = list }; + } - public HumanoidCharacterProfile WithAntagPreference(string antagId, bool pref) - { - var list = new List(_antagPreferences); - if (pref) - { - if (!list.Contains(antagId)) - { - list.Add(antagId); - } - } - else - { - if (list.Contains(antagId)) - { - list.Remove(antagId); - } - } - return new(this, _jobPriorities, list, _traitPreferences, _loadoutPreferences); - } + public HumanoidCharacterProfile WithLoadoutPreference(string loadoutId, bool pref) + { + var list = new HashSet(_loadoutPreferences); - public HumanoidCharacterProfile WithTraitPreference(string traitId, bool pref) - { - var list = new List(_traitPreferences); + if (pref) + list.Add(loadoutId); + else + list.Remove(loadoutId); - // TODO: Maybe just refactor this to HashSet? Same with _antagPreferences - if (pref) - { - if (!list.Contains(traitId)) - { - list.Add(traitId); - } - } - else - { - if (list.Contains(traitId)) - { - list.Remove(traitId); - } - } - return new(this, _jobPriorities, _antagPreferences, list, _loadoutPreferences); - } + return new HumanoidCharacterProfile(this) { _loadoutPreferences = list }; + } - public HumanoidCharacterProfile WithLoadoutPreference(string loadoutId, bool pref) - { - var list = new List(_loadoutPreferences); + public string Summary => + Loc.GetString( + "humanoid-character-profile-summary", + ("name", Name), + ("gender", Gender.ToString().ToLowerInvariant()), + ("age", Age) + ); - if(pref) - { - if(!list.Contains(loadoutId)) - { - list.Add(loadoutId); - } - } - else - { - if(list.Contains(loadoutId)) - { - list.Remove(loadoutId); - } - } - return new(this, _jobPriorities, _antagPreferences, _traitPreferences, list); - } + public bool MemberwiseEquals(ICharacterProfile maybeOther) + { + return maybeOther is HumanoidCharacterProfile other + && Name == other.Name + && Age == other.Age + && Sex == other.Sex + && Gender == other.Gender + && Species == other.Species + && PreferenceUnavailable == other.PreferenceUnavailable + && SpawnPriority == other.SpawnPriority + && _jobPriorities.SequenceEqual(other._jobPriorities) + && _antagPreferences.SequenceEqual(other._antagPreferences) + && _traitPreferences.SequenceEqual(other._traitPreferences) + && LoadoutPreferences.SequenceEqual(other.LoadoutPreferences) + && Appearance.MemberwiseEquals(other.Appearance) + && FlavorText == other.FlavorText; + } - public string Summary => - Loc.GetString( - "humanoid-character-profile-summary", - ("name", Name), - ("gender", Gender.ToString().ToLowerInvariant()), - ("age", Age) - ); + public void EnsureValid(ICommonSession session, IDependencyCollection collection) + { + var configManager = collection.Resolve(); + var prototypeManager = collection.Resolve(); - public bool MemberwiseEquals(ICharacterProfile maybeOther) + if (!prototypeManager.TryIndex(Species, out var speciesPrototype) || speciesPrototype.RoundStart == false) { - if (maybeOther is not HumanoidCharacterProfile other - || Name != other.Name - || Age != other.Age - || Height != other.Height - || Width != other.Width - || Sex != other.Sex - || Gender != other.Gender - || PreferenceUnavailable != other.PreferenceUnavailable - || Clothing != other.Clothing - || Backpack != other.Backpack - || SpawnPriority != other.SpawnPriority - || !_jobPriorities.SequenceEqual(other._jobPriorities) - || !_antagPreferences.SequenceEqual(other._antagPreferences) - || !_traitPreferences.SequenceEqual(other._traitPreferences) - || !_loadoutPreferences.SequenceEqual(other._loadoutPreferences)) - return false; - return Appearance.MemberwiseEquals(other.Appearance); + Species = SharedHumanoidAppearanceSystem.DefaultSpecies; + speciesPrototype = prototypeManager.Index(Species); } - public void EnsureValid(ICommonSession session, IDependencyCollection collection) + var sex = Sex switch { - var configManager = collection.Resolve(); - var prototypeManager = collection.Resolve(); + Sex.Male => Sex.Male, + Sex.Female => Sex.Female, + Sex.Unsexed => Sex.Unsexed, + _ => Sex.Male // Invalid enum values. + }; - if (!prototypeManager.TryIndex(Species, out var speciesPrototype) || speciesPrototype.RoundStart == false) - { - Species = SharedHumanoidAppearanceSystem.DefaultSpecies; - speciesPrototype = prototypeManager.Index(Species); - } + // ensure the species can be that sex and their age fits the founds + if (!speciesPrototype.Sexes.Contains(sex)) + sex = speciesPrototype.Sexes[0]; - var sex = Sex switch - { - Sex.Male => Sex.Male, - Sex.Female => Sex.Female, - Sex.Unsexed => Sex.Unsexed, - _ => Sex.Male // Invalid enum values. - }; + var age = Math.Clamp(Age, speciesPrototype.MinAge, speciesPrototype.MaxAge); - // ensure the species can be that sex and their age fits the founds - if (!speciesPrototype.Sexes.Contains(sex)) - sex = speciesPrototype.Sexes[0]; + var gender = Gender switch + { + Gender.Epicene => Gender.Epicene, + Gender.Female => Gender.Female, + Gender.Male => Gender.Male, + Gender.Neuter => Gender.Neuter, + _ => Gender.Epicene // Invalid enum values. + }; - var age = Math.Clamp(Age, speciesPrototype.MinAge, speciesPrototype.MaxAge); + string name; + if (string.IsNullOrEmpty(Name)) + name = GetName(Species, gender); + else if (Name.Length > MaxNameLength) + name = Name[..MaxNameLength]; + else + name = Name; - var gender = Gender switch - { - Gender.Epicene => Gender.Epicene, - Gender.Female => Gender.Female, - Gender.Male => Gender.Male, - Gender.Neuter => Gender.Neuter, - _ => Gender.Epicene // Invalid enum values. - }; - - string name; - if (string.IsNullOrEmpty(Name)) - { - name = GetName(Species, gender); - } - else if (Name.Length > MaxNameLength) - { - name = Name[..MaxNameLength]; - } - else - { - name = Name; - } + name = name.Trim(); - name = name.Trim(); + if (configManager.GetCVar(CCVars.RestrictedNames)) + name = RestrictedNameRegex.Replace(name, string.Empty); - if (configManager.GetCVar(CCVars.RestrictedNames)) - { - // White Dream: Added Cyrillic support - name = Regex.Replace(name, @"[^\u0030-\u0039,\u0041-\u005A,\u0061-\u007A,\u00C0-\u00D6,\u00D8-\u00F6,\u00F8-\u00FF,\u0100-\u017F,\u0410-\u044F, '.,-]", string.Empty); - /* - * 0030-0039 Basic Latin: ASCII Digits - * 0041-005A Basic Latin: Uppercase Latin Alphabet - * 0061-007A Basic Latin: Lowercase Latin Alphabet - * 00C0-00D6 Latin-1 Supplement: Letters I - * 00D8-00F6 Latin-1 Supplement: Letters II - * 00F8-00FF Latin-1 Supplement: Letters III - * 0100-017F Latin Extended A: European Latin - * 0410-044F Cyrillic Alphabet - */ - } - - if (configManager.GetCVar(CCVars.ICNameCase)) - { - // This regex replaces the first character of the first and last words of the name with their uppercase version - name = Regex.Replace(name, - @"^(?\w)|\b(?\w)(?=\w*$)", - m => m.Groups["word"].Value.ToUpper()); - } + if (configManager.GetCVar(CCVars.ICNameCase)) + { + // This regex replaces the first character of the first and last words of the name with their uppercase version + name = ICNameCaseRegex.Replace(name, m => m.Groups["word"].Value.ToUpper()); + } - if (string.IsNullOrEmpty(name)) - { - name = GetName(Species, gender); - } + var customspeciename = + !speciesPrototype.CustomName + || string.IsNullOrEmpty(Customspeciename) + ? "" + : Customspeciename.Length > MaxNameLength + ? FormattedMessage.RemoveMarkup(Customspeciename)[..MaxNameLength] + : FormattedMessage.RemoveMarkup(Customspeciename); - string flavortext; - if (FlavorText.Length > MaxDescLength) - { - flavortext = FormattedMessage.RemoveMarkup(FlavorText)[..MaxDescLength]; - } - else - { - flavortext = FormattedMessage.RemoveMarkup(FlavorText); - } + if (string.IsNullOrEmpty(name)) + name = GetName(Species, gender); - var height = Math.Clamp(Height, speciesPrototype.MinHeight, speciesPrototype.MaxHeight); + string flavortext; + if (FlavorText.Length > MaxDescLength) + flavortext = FormattedMessage.RemoveMarkup(FlavorText)[..MaxDescLength]; + else + flavortext = FormattedMessage.RemoveMarkup(FlavorText); - var width = Math.Clamp(Width, speciesPrototype.MinWidth, speciesPrototype.MaxWidth); + var appearance = HumanoidCharacterAppearance.EnsureValid(Appearance, Species, Sex); - var appearance = HumanoidCharacterAppearance.EnsureValid(Appearance, Species, Sex); + var prefsUnavailableMode = PreferenceUnavailable switch + { + PreferenceUnavailableMode.StayInLobby => PreferenceUnavailableMode.StayInLobby, + PreferenceUnavailableMode.SpawnAsOverflow => PreferenceUnavailableMode.SpawnAsOverflow, + _ => PreferenceUnavailableMode.StayInLobby // Invalid enum values. + }; - var prefsUnavailableMode = PreferenceUnavailable switch - { - PreferenceUnavailableMode.StayInLobby => PreferenceUnavailableMode.StayInLobby, - PreferenceUnavailableMode.SpawnAsOverflow => PreferenceUnavailableMode.SpawnAsOverflow, - _ => PreferenceUnavailableMode.StayInLobby // Invalid enum values. - }; + var spawnPriority = SpawnPriority switch + { + SpawnPriorityPreference.None => SpawnPriorityPreference.None, + SpawnPriorityPreference.Arrivals => SpawnPriorityPreference.Arrivals, + SpawnPriorityPreference.Cryosleep => SpawnPriorityPreference.Cryosleep, + _ => SpawnPriorityPreference.None // Invalid enum values. + }; - var clothing = Clothing switch + var priorities = new Dictionary(JobPriorities + .Where(p => prototypeManager.TryIndex(p.Key, out var job) && job.SetPreference && p.Value switch { - ClothingPreference.Jumpsuit => ClothingPreference.Jumpsuit, - ClothingPreference.Jumpskirt => ClothingPreference.Jumpskirt, - _ => ClothingPreference.Jumpsuit // Invalid enum values. - }; + JobPriority.Never => false, // Drop never since that's assumed default. + JobPriority.Low => true, + JobPriority.Medium => true, + JobPriority.High => true, + _ => false + })); - var backpack = Backpack switch - { - BackpackPreference.Backpack => BackpackPreference.Backpack, - BackpackPreference.Satchel => BackpackPreference.Satchel, - BackpackPreference.Duffelbag => BackpackPreference.Duffelbag, - _ => BackpackPreference.Backpack // Invalid enum values. - }; + var antags = AntagPreferences + .Where(id => prototypeManager.TryIndex(id, out var antag) && antag.SetPreference) + .ToList(); - var spawnPriority = SpawnPriority switch - { - SpawnPriorityPreference.None => SpawnPriorityPreference.None, - SpawnPriorityPreference.Arrivals => SpawnPriorityPreference.Arrivals, - SpawnPriorityPreference.Cryosleep => SpawnPriorityPreference.Cryosleep, - _ => SpawnPriorityPreference.None // Invalid enum values. - }; - - var priorities = new Dictionary(JobPriorities - .Where(p => prototypeManager.TryIndex(p.Key, out var job) && job.SetPreference && p.Value switch - { - JobPriority.Never => false, // Drop never since that's assumed default. - JobPriority.Low => true, - JobPriority.Medium => true, - JobPriority.High => true, - _ => false - })); - - var antags = AntagPreferences - .Where(id => prototypeManager.TryIndex(id, out var antag) && antag.SetPreference) - .ToList(); - - var traits = TraitPreferences - .Where(prototypeManager.HasIndex) - .ToList(); - - var maxTraits = configManager.GetCVar(CCVars.GameTraitsMax); - var currentTraits = 0; - var traitPoints = configManager.GetCVar(CCVars.GameTraitsDefaultPoints); - - foreach (var trait in traits.OrderBy(t => -prototypeManager.Index(t).Points).ToList()) - { - var proto = prototypeManager.Index(trait); + var traits = TraitPreferences + .Where(prototypeManager.HasIndex) + .ToList(); - if (traitPoints + proto.Points < 0 || currentTraits + 1 > maxTraits) - traits.Remove(trait); - else - { - traitPoints += proto.Points; - currentTraits++; - } - } + var loadouts = LoadoutPreferences + .Where(prototypeManager.HasIndex) + .ToList(); + Name = name; + Customspeciename = customspeciename; + FlavorText = flavortext; + Age = age; + Sex = sex; + Gender = gender; + Appearance = appearance; + SpawnPriority = spawnPriority; - var loadouts = LoadoutPreferences - .Where(prototypeManager.HasIndex) - .ToList(); + _jobPriorities.Clear(); - var loadoutPoints = configManager.GetCVar(CCVars.GameLoadoutsPoints); - var currentPoints = 0; + foreach (var (job, priority) in priorities) + _jobPriorities.Add(job, priority); - foreach (var loadout in loadouts.ToList()) - { - var proto = prototypeManager.Index(loadout); - - if (currentPoints + proto.Cost > loadoutPoints) - loadouts.Remove(loadout); - else - currentPoints += proto.Cost; - } - - - Name = name; - FlavorText = flavortext; - Age = age; - Height = height; - Width = width; - Sex = sex; - Gender = gender; - Appearance = appearance; - Clothing = clothing; - Backpack = backpack; - SpawnPriority = spawnPriority; - - _jobPriorities.Clear(); - - foreach (var (job, priority) in priorities) - { - _jobPriorities.Add(job, priority); - } + PreferenceUnavailable = prefsUnavailableMode; - PreferenceUnavailable = prefsUnavailableMode; + _antagPreferences.Clear(); + _antagPreferences.UnionWith(antags); - _antagPreferences.Clear(); - _antagPreferences.AddRange(antags); + _traitPreferences.Clear(); + _traitPreferences.UnionWith(traits); - _traitPreferences.Clear(); - _traitPreferences.AddRange(traits); + _loadoutPreferences.Clear(); + _loadoutPreferences.UnionWith(loadouts); + } - _loadoutPreferences.Clear(); - _loadoutPreferences.AddRange(loadouts); - } + public ICharacterProfile Validated(ICommonSession session, IDependencyCollection collection) + { + var profile = new HumanoidCharacterProfile(this); + profile.EnsureValid(session, collection); + return profile; + } - public ICharacterProfile Validated(ICommonSession session, IDependencyCollection collection) - { - var profile = new HumanoidCharacterProfile(this); - profile.EnsureValid(session, collection); - return profile; - } + // Sorry this is kind of weird and duplicated, + // Working inside these non entity systems is a bit wack + public static string GetName(string species, Gender gender) + { + var namingSystem = IoCManager.Resolve().GetEntitySystem(); + return namingSystem.GetName(species, gender); + } - // sorry this is kind of weird and duplicated, - /// working inside these non entity systems is a bit wack - public static string GetName(string species, Gender gender) - { - var namingSystem = IoCManager.Resolve().GetEntitySystem(); - return namingSystem.GetName(species, gender); - } + public override bool Equals(object? obj) + { + return ReferenceEquals(this, obj) || obj is HumanoidCharacterProfile other && MemberwiseEquals(other); + } - public override bool Equals(object? obj) - { - return obj is HumanoidCharacterProfile other && MemberwiseEquals(other); - } + public override int GetHashCode() + { + var hashCode = new HashCode(); + hashCode.Add(_jobPriorities); + hashCode.Add(_antagPreferences); + hashCode.Add(_traitPreferences); + hashCode.Add(_loadoutPreferences); + hashCode.Add(Name); + hashCode.Add(FlavorText); + hashCode.Add(Species); + hashCode.Add(Age); + hashCode.Add((int)Sex); + hashCode.Add((int)Gender); + hashCode.Add(Appearance); + hashCode.Add((int)SpawnPriority); + hashCode.Add((int)PreferenceUnavailable); + hashCode.Add(Customspeciename); + return hashCode.ToHashCode(); + } - public override int GetHashCode() - { - return HashCode.Combine( - HashCode.Combine( - Name, - Species, - Age, - Sex, - Gender, - Appearance, - Clothing, - Backpack - ), - HashCode.Combine( - SpawnPriority, - Height, - Width, - PreferenceUnavailable, - _jobPriorities, - _antagPreferences, - _traitPreferences, - _loadoutPreferences - ) - ); - } + public HumanoidCharacterProfile Clone() + { + return new HumanoidCharacterProfile(this); } } diff --git a/Content.Shared/Preferences/Loadouts/Effects/SpeciesLoadoutEffect.cs b/Content.Shared/Preferences/Loadouts/Effects/SpeciesLoadoutEffect.cs new file mode 100644 index 0000000000..74673cbef3 --- /dev/null +++ b/Content.Shared/Preferences/Loadouts/Effects/SpeciesLoadoutEffect.cs @@ -0,0 +1,6 @@ +namespace Content.Shared.Preferences.Loadouts.Effects; + +public sealed class SpeciesLoadoutEffect +{ + +} diff --git a/Content.Shared/Projectiles/EmbedEvent.cs b/Content.Shared/Projectiles/EmbedEvent.cs index 521a691f45..7398d7c83d 100644 --- a/Content.Shared/Projectiles/EmbedEvent.cs +++ b/Content.Shared/Projectiles/EmbedEvent.cs @@ -13,3 +13,16 @@ public readonly record struct EmbedEvent(EntityUid? Shooter, EntityUid Embedded) /// public readonly EntityUid Embedded = Embedded; } + +// WD EDIT START +[ByRefEvent] +public readonly record struct AttemptEmbedEvent(EntityUid? Shooter, EntityUid Embedded) +{ + public readonly EntityUid? Shooter = Shooter; + + /// + /// Entity that is embedded in. + /// + public readonly EntityUid Embedded = Embedded; +} +// WD EDIT END diff --git a/Content.Shared/Projectiles/EmbeddableProjectileComponent.cs b/Content.Shared/Projectiles/EmbeddableProjectileComponent.cs index 008b7c2ced..65cade2ad0 100644 --- a/Content.Shared/Projectiles/EmbeddableProjectileComponent.cs +++ b/Content.Shared/Projectiles/EmbeddableProjectileComponent.cs @@ -1,4 +1,5 @@ using System.Numerics; +using Content.Shared.Damage; using Robust.Shared.Audio; using Robust.Shared.GameStates; @@ -46,4 +47,12 @@ public sealed partial class EmbeddableProjectileComponent : Component /// [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] public SoundSpecifier? Sound; + + // WD EDIT START + [DataField] + public DamageSpecifier Damage = new(); + + [DataField] + public bool PreventCollide; + // WD EDIT END } diff --git a/Content.Shared/Projectiles/SharedProjectileSystem.cs b/Content.Shared/Projectiles/SharedProjectileSystem.cs index f40a7a0363..f8921d61b9 100644 --- a/Content.Shared/Projectiles/SharedProjectileSystem.cs +++ b/Content.Shared/Projectiles/SharedProjectileSystem.cs @@ -1,17 +1,20 @@ +using System.Linq; using System.Numerics; +using Content.Shared._White.Penetrated; +using Content.Shared._White.Projectile; using Content.Shared.CombatMode.Pacification; using Content.Shared.Damage; using Content.Shared.DoAfter; using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; -using Content.Shared.Mobs.Components; +using Content.Shared.Physics; using Content.Shared.Throwing; +using Content.Shared.UserInterface; using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Physics; using Robust.Shared.Physics.Components; -using Robust.Shared.Physics.Dynamics; using Robust.Shared.Physics.Events; using Robust.Shared.Physics.Systems; using Robust.Shared.Serialization; @@ -24,10 +27,9 @@ public abstract partial class SharedProjectileSystem : EntitySystem [Dependency] private readonly INetManager _netManager = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; - [Dependency] private readonly SharedHandsSystem _hands = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; // WD EDIT public override void Initialize() { @@ -36,61 +38,9 @@ public override void Initialize() SubscribeLocalEvent(PreventCollision); SubscribeLocalEvent(OnEmbedProjectileHit); SubscribeLocalEvent(OnEmbedThrowDoHit); - SubscribeLocalEvent(OnEmbedActivate); - SubscribeLocalEvent(OnEmbedRemove); SubscribeLocalEvent(OnAttemptPacifiedThrow); - } - - private void OnEmbedActivate(EntityUid uid, EmbeddableProjectileComponent component, ActivateInWorldEvent args) - { - // Nuh uh - if (component.RemovalTime == null) - return; - - if (args.Handled || !TryComp(uid, out var physics) || physics.BodyType != BodyType.Static) - return; - - args.Handled = true; - - _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, component.RemovalTime.Value, - new RemoveEmbeddedProjectileEvent(), eventTarget: uid, target: uid) - { - DistanceThreshold = SharedInteractionSystem.InteractionRange, - }); - } - - private void OnEmbedRemove(EntityUid uid, EmbeddableProjectileComponent component, RemoveEmbeddedProjectileEvent args) - { - // Whacky prediction issues. - if (args.Cancelled || _netManager.IsClient) - return; - - if (component.DeleteOnRemove) - { - QueueDel(uid); - return; - } - - var xform = Transform(uid); - TryComp(uid, out var physics); - _physics.SetBodyType(uid, BodyType.Dynamic, body: physics, xform: xform); - _transform.AttachToGridOrMap(uid, xform); - - // Reset whether the projectile has damaged anything if it successfully was removed - if (TryComp(uid, out var projectile)) - { - projectile.Shooter = null; - projectile.Weapon = null; - projectile.DamagedEntity = false; - } - - // Land it just coz uhhh yeah - var landEv = new LandEvent(args.User, true); - RaiseLocalEvent(uid, ref landEv); - _physics.WakeBody(uid, body: physics); - - // try place it in the user's hand - _hands.TryPickupAnyHand(args.User, uid); + SubscribeLocalEvent(OnEmbedActivate, before: new[] {typeof(ActivatableUISystem)}); // WD EDIT + SubscribeLocalEvent(OnPreventCollision); // WD EDIT } private void OnEmbedThrowDoHit(EntityUid uid, EmbeddableProjectileComponent component, ThrowDoHitEvent args) @@ -113,13 +63,29 @@ private void OnEmbedProjectileHit(EntityUid uid, EmbeddableProjectileComponent c } } - private void Embed(EntityUid uid, EntityUid target, EntityUid? user, EmbeddableProjectileComponent component) + public void Embed(EntityUid uid, EntityUid target, EntityUid? user, EmbeddableProjectileComponent component, bool raiseEvent = true) // WD EDIT { - TryComp(uid, out var physics); - _physics.SetLinearVelocity(uid, Vector2.Zero, body: physics); - _physics.SetBodyType(uid, BodyType.Static, body: physics); + // WD EDIT START + if (!TryComp(uid, out var physics) + || physics.LinearVelocity.Length() < component.MinimumSpeed + || _netManager.IsClient) + return; + + var attemptEmbedEvent = new AttemptEmbedEvent(user, target); + RaiseLocalEvent(uid, ref attemptEmbedEvent); + var xform = Transform(uid); - _transform.SetParent(uid, xform, target); + + if (!TryComp(uid, out var penetratedProjectile) + || !penetratedProjectile.PenetratedUid.HasValue + || (penetratedProjectile.PenetratedUid != target + && !HasComp(target))) + { + _physics.SetLinearVelocity(uid, Vector2.Zero, body: physics); + _physics.SetBodyType(uid, BodyType.Static, body: physics); + _transform.SetParent(uid, xform, target); + } + // WD EDIT END if (component.Offset != Vector2.Zero) { @@ -127,6 +93,11 @@ private void Embed(EntityUid uid, EntityUid target, EntityUid? user, EmbeddableP xform); } + // WD EDIT START + if (!raiseEvent) + return; + // WD EDIT END + _audio.PlayPredicted(component.Sound, uid, null); var ev = new EmbedEvent(user, target); RaiseLocalEvent(uid, ref ev); @@ -149,12 +120,6 @@ public void SetShooter(EntityUid id, ProjectileComponent component, EntityUid sh Dirty(id, component); } - [Serializable, NetSerializable] - private sealed partial class RemoveEmbeddedProjectileEvent : DoAfterEvent - { - public override DoAfterEvent Clone() => this; - } - /// /// Prevent players with the Pacified status effect from throwing embeddable projectiles. /// @@ -162,6 +127,42 @@ private void OnAttemptPacifiedThrow(Entity ent, r { args.Cancel("pacified-cannot-throw-embed"); } + + // WD EDIT START + private void OnEmbedActivate(EntityUid uid, EmbeddableProjectileComponent component, ActivateInWorldEvent args) + { + if (args.Handled + || !AttemptEmbedRemove(uid, args.User, component)) + return; + + args.Handled = true; + } + + private void OnPreventCollision(EntityUid uid, EmbeddableProjectileComponent component, ref PreventCollideEvent args) + { + // Opaque collision mask doesn't work for EmbeddableProjectileComponent + if (component.PreventCollide && TryComp(args.OtherEntity, out FixturesComponent? fixtures) && + fixtures.Fixtures.All(fix => (fix.Value.CollisionLayer & (int) CollisionGroup.Opaque) == 0)) + args.Cancelled = true; + } + + private bool AttemptEmbedRemove(EntityUid uid, EntityUid user, EmbeddableProjectileComponent? component = null) + { + if (!Resolve(uid, ref component, false) + || component.RemovalTime == null + || !TryComp(uid, out var physics) + || physics.BodyType != BodyType.Static) + return false; + + _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, user, component.RemovalTime.Value, + new RemoveEmbeddedProjectileEvent(), eventTarget: uid, target: uid) + { + DistanceThreshold = SharedInteractionSystem.InteractionRange, + }); + + return true; + } + // WD EDIT END } [Serializable, NetSerializable] @@ -188,3 +189,14 @@ public record struct ProjectileReflectAttemptEvent(EntityUid ProjUid, Projectile /// [ByRefEvent] public record struct ProjectileHitEvent(DamageSpecifier Damage, EntityUid Target, EntityUid? Shooter = null); + +// WD EDIT START +[Serializable, NetSerializable] +public sealed partial class RemoveEmbeddedProjectileEvent : DoAfterEvent +{ + public override DoAfterEvent Clone() + { + return this; + } +} +// WD EDIT END diff --git a/Content.Shared/Prototypes/LocalizedPrototype.cs b/Content.Shared/Prototypes/LocalizedPrototype.cs new file mode 100644 index 0000000000..acdd5fc180 --- /dev/null +++ b/Content.Shared/Prototypes/LocalizedPrototype.cs @@ -0,0 +1,35 @@ +using System.Linq; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Prototypes; + +public abstract class LocalizedPrototype : IPrototype +{ + [IdDataField] + public string ID { get; } = default!; + + public const string LocFormat = "{0}-{1}-{2}"; + + /// The localization string for the name of this prototype + public string NameLoc => ToLocalizationString("name"); + /// The localized string for the name of prototype + public string Name => Loc.GetString(NameLoc); + + /// + /// Returns an Loc string using the as the 'property'. + /// Given `desc` it will return `this-prototype-PrototypeId-desc`. + /// + public string ToLocalizationString(string field) + { + // Get the ID of the proto Type + var type = + ((PrototypeAttribute?) Attribute.GetCustomAttribute(GetType(), typeof(PrototypeAttribute)))?.Type + ?? GetType().Name.Remove(GetType().Name.Length - 9); + // Lowercase the first letter + type = char.ToLowerInvariant(type[0]) + type[1..]; + // Replace every uppercase letter with a dash and the lowercase letter + type = type.Aggregate("", (current, c) => current + (char.IsUpper(c) ? "-" + char.ToLowerInvariant(c) : c.ToString())); + + return string.Format(LocFormat, type, ID, field); + } +} diff --git a/Content.Shared/Prying/Systems/PryingSystem.cs b/Content.Shared/Prying/Systems/PryingSystem.cs index 8dc6efd4de..d7d1f0ac34 100644 --- a/Content.Shared/Prying/Systems/PryingSystem.cs +++ b/Content.Shared/Prying/Systems/PryingSystem.cs @@ -1,15 +1,14 @@ -using Content.Shared.Prying.Components; -using Content.Shared.Verbs; -using Content.Shared.DoAfter; -using Robust.Shared.Serialization; +using System.Diagnostics.CodeAnalysis; using Content.Shared.Administration.Logs; using Content.Shared.Database; +using Content.Shared.DoAfter; using Content.Shared.Doors.Components; -using System.Diagnostics.CodeAnalysis; using Content.Shared.Interaction; using Content.Shared.Popups; -using Robust.Shared.Audio; +using Content.Shared.Prying.Components; +using Content.Shared.Verbs; using Robust.Shared.Audio.Systems; +using Robust.Shared.Serialization; using PryUnpoweredComponent = Content.Shared.Prying.Components.PryUnpoweredComponent; namespace Content.Shared.Prying.Systems; @@ -99,14 +98,16 @@ public bool TryPry(EntityUid target, EntityUid user, out DoAfterId? id) // to be marked as handled. return true; - return StartPry(target, user, null, 0.1f, out id); // hand-prying is much slower + // hand-prying is much slower + var modifier = CompOrNull(user)?.SpeedModifier ?? 0.1f; + return StartPry(target, user, null, modifier, out id); } private bool CanPry(EntityUid target, EntityUid user, out string? message, PryingComponent? comp = null) { BeforePryEvent canev; - if (comp != null) + if (comp != null || Resolve(user, ref comp, false)) { canev = new BeforePryEvent(user, comp.PryPowered, comp.Force); } diff --git a/Content.Shared/Psionics/Events.cs b/Content.Shared/Psionics/Events.cs index cf9a50c6e1..68ec3097e7 100644 --- a/Content.Shared/Psionics/Events.cs +++ b/Content.Shared/Psionics/Events.cs @@ -1,28 +1,69 @@ using Robust.Shared.Serialization; +using Content.Shared.Damage; using Content.Shared.DoAfter; -namespace Content.Shared.Psionics.Events +namespace Content.Shared.Psionics.Events; + +[Serializable, NetSerializable] +public sealed partial class PsionicRegenerationDoAfterEvent : DoAfterEvent { - [Serializable, NetSerializable] - public sealed partial class PsionicRegenerationDoAfterEvent : DoAfterEvent + [DataField("startedAt", required: true)] + public TimeSpan StartedAt; + + public PsionicRegenerationDoAfterEvent(TimeSpan startedAt) { - [DataField("startedAt", required: true)] - public TimeSpan StartedAt; + StartedAt = startedAt; + } - private PsionicRegenerationDoAfterEvent() - { - } + public override DoAfterEvent Clone() => this; +} - public PsionicRegenerationDoAfterEvent(TimeSpan startedAt) - { - StartedAt = startedAt; - } +[Serializable, NetSerializable] +public sealed partial class GlimmerWispDrainDoAfterEvent : SimpleDoAfterEvent { } - public override DoAfterEvent Clone() => this; +[Serializable, NetSerializable] +public sealed partial class HealingWordDoAfterEvent : DoAfterEvent +{ + [DataField(required: true)] + public TimeSpan StartedAt; + + public HealingWordDoAfterEvent(TimeSpan startedAt) + { + StartedAt = startedAt; } - [Serializable, NetSerializable] - public sealed partial class GlimmerWispDrainDoAfterEvent : SimpleDoAfterEvent + public override DoAfterEvent Clone() => this; +} + +[Serializable, NetSerializable] +public sealed partial class PsionicHealOtherDoAfterEvent : DoAfterEvent +{ + [DataField(required: true)] + public TimeSpan StartedAt; + + [DataField] + public DamageSpecifier? HealingAmount = default!; + + [DataField] + public float? RotReduction; + + [DataField] + public bool DoRevive; + + /// + /// Caster's Amplification that has been modified by the results of a MoodContest. + /// + public float ModifiedAmplification = default!; + + /// + /// Caster's Dampening that has been modified by the results of a MoodContest. + /// + public float ModifiedDampening = default!; + + public PsionicHealOtherDoAfterEvent(TimeSpan startedAt) { + StartedAt = startedAt; } + + public override DoAfterEvent Clone() => this; } diff --git a/Content.Shared/Psionics/PsionicComponent.cs b/Content.Shared/Psionics/PsionicComponent.cs index 6352957615..37d0a9a7ef 100644 --- a/Content.Shared/Psionics/PsionicComponent.cs +++ b/Content.Shared/Psionics/PsionicComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.DoAfter; using Content.Shared.Psionics; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; @@ -8,11 +9,19 @@ namespace Content.Shared.Abilities.Psionics public sealed partial class PsionicComponent : Component { /// - /// How close a Psion is to awakening a new power. - /// TODO: Implement this in a separate PR. + /// How close a Psion is to generating a new power. When Potentia reaches the NextPowerCost, it is "Spent" in order to "Buy" a random new power. + /// TODO: Psi-Potentiometry should be able to read how much Potentia a person has. + /// + [DataField] + public float Potentia; + + /// + /// Each time a Psion rolls for a new power, they roll a number between 0 and 100, adding any relevant modifiers. This number is then added to Potentia, + /// meaning that it carries over between rolls. When a character has an amount of potentia equal to at least 100 * 2^(total powers), the potentia is then spent, and a power is generated. + /// This variable stores the cost of the next power. /// [DataField] - public float Potentia = 0; + public float NextPowerCost = 100; /// /// The baseline chance of obtaining a psionic power when rolling for one. @@ -24,7 +33,7 @@ public sealed partial class PsionicComponent : Component /// Whether or not a Psion has an available "Reroll" to spend on attempting to gain powers. /// [DataField] - public bool CanReroll; + public bool CanReroll = true; /// /// The Base amount of time (in minutes) this Psion is given the stutter effect if they become mindbroken. @@ -142,10 +151,30 @@ private set public float CurrentDampening; /// + /// How many "Slots" an entity has for psionic powers. This is not a hard limit, and is instead used for calculating the cost to generate new powers. + /// Exceeding this limit causes an entity to become a Glimmer Source. + /// + [DataField] + public int PowerSlots = 1; + + /// + /// How many "Slots" are currently occupied by psionic powers. + /// + [ViewVariables(VVAccess.ReadWrite)] + public int PowerSlotsTaken; + /// List of descriptors this entity will bring up for psychognomy. Used to remove /// unneccesary subs for unique psionic entities like e.g. Oracle. /// [DataField] - public List? PsychognomicDescriptors = null; + public List? PsychognomicDescriptors = null; + + /// Used for tracking what spell a Psion is actively casting + [DataField] + public DoAfterId? DoAfter; + + /// Popup to play if a Psion attempts to start casting a power while already casting one + [DataField] + public string AlreadyCasting = "already-casting"; } } diff --git a/Content.Shared/Psionics/PsionicPowerPrototype.cs b/Content.Shared/Psionics/PsionicPowerPrototype.cs index 3d389f6cdb..d81ae05be2 100644 --- a/Content.Shared/Psionics/PsionicPowerPrototype.cs +++ b/Content.Shared/Psionics/PsionicPowerPrototype.cs @@ -72,7 +72,7 @@ public sealed partial class PsionicPowerPrototype : IPrototype /// /// What message will this power generate when scanned by a Metempsionic Focused Pulse. /// - [DataField(required: true)] + [DataField] public string MetapsionicFeedback = "psionic-metapsionic-feedback-default"; /// @@ -86,4 +86,10 @@ public sealed partial class PsionicPowerPrototype : IPrototype /// [DataField] public float DampeningModifier = 0; + + /// + /// How many "Power Slots" this power occupies. + /// + [DataField] + public int PowerSlotCost = 1; } \ No newline at end of file diff --git a/Content.Shared/Psionics/SharedPsionicAbilitiesSystem.cs b/Content.Shared/Psionics/SharedPsionicAbilitiesSystem.cs index f1f03bcb9e..2792864568 100644 --- a/Content.Shared/Psionics/SharedPsionicAbilitiesSystem.cs +++ b/Content.Shared/Psionics/SharedPsionicAbilitiesSystem.cs @@ -1,4 +1,5 @@ using Content.Shared.Administration.Logs; +using Content.Shared.Contests; using Content.Shared.Popups; using Content.Shared.Psionics.Glimmer; using Robust.Shared.Random; @@ -13,6 +14,7 @@ public sealed class SharedPsionicAbilitiesSystem : EntitySystem [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly GlimmerSystem _glimmerSystem = default!; [Dependency] private readonly IRobustRandom _robustRandom = default!; + [Dependency] private readonly ContestsSystem _contests = default!; public override void Initialize() { @@ -41,6 +43,48 @@ public void LogPowerUsed(EntityUid uid, string power, int minGlimmer = 8, int ma _glimmerSystem.Glimmer += _robustRandom.Next(minGlimmer, maxGlimmer); } + + /// + /// Returns the CurrentAmplification of a given Entity, multiplied by the result of that Entity's MoodContest. + /// Higher mood means more Amplification, Lower mood means less Amplification. + /// + public float ModifiedAmplification(EntityUid uid) + { + if (!TryComp(uid, out var psionicComponent)) + return 1; + + return ModifiedAmplification(uid, psionicComponent); + } + + /// + /// Returns the CurrentAmplification of a given Entity, multiplied by the result of that Entity's MoodContest. + /// Higher mood means more Amplification, Lower mood means less Amplification. + /// + public float ModifiedAmplification(EntityUid uid, PsionicComponent component) + { + return component.CurrentAmplification * _contests.MoodContest(uid, true); + } + + /// + /// Returns the CurrentDampening of a given Entity, multiplied by the result of that Entity's MoodContest. + /// Lower mood means more Dampening, higher mood means less Dampening. + /// + public float ModifiedDampening(EntityUid uid) + { + if (!TryComp(uid, out var psionicComponent)) + return 1; + + return ModifiedDampening(uid, psionicComponent); + } + + /// + /// Returns the CurrentDampening of a given Entity, multiplied by the result of that Entity's MoodContest. + /// Lower mood means more Dampening, higher mood means less Dampening. + /// + public float ModifiedDampening(EntityUid uid, PsionicComponent component) + { + return component.CurrentDampening / _contests.MoodContest(uid, true); + } } public sealed class PsionicPowerUsedEvent : HandledEntityEventArgs diff --git a/Content.Shared/RCD/RCDPrototype.cs b/Content.Shared/RCD/RCDPrototype.cs index 1e80abfb72..58093bbe87 100644 --- a/Content.Shared/RCD/RCDPrototype.cs +++ b/Content.Shared/RCD/RCDPrototype.cs @@ -9,7 +9,7 @@ namespace Content.Shared.RCD; /// Contains the parameters for a RCD construction / operation /// [Prototype("rcd")] -public sealed class RCDPrototype : IPrototype +public sealed partial class RCDPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; @@ -51,7 +51,7 @@ public sealed class RCDPrototype : IPrototype public int Cost { get; private set; } = 1; /// - /// The length of the operation + /// The length of the operation /// [DataField, ViewVariables(VVAccess.ReadOnly)] public float Delay { get; private set; } = 1f; @@ -75,7 +75,7 @@ public sealed class RCDPrototype : IPrototype public CollisionGroup CollisionMask { get; private set; } = CollisionGroup.None; /// - /// Specifies a set of custom collision bounds for determining whether the entity prototype will fit into a target tile + /// Specifies a set of custom collision bounds for determining whether the entity prototype will fit into a target tile /// /// /// Should be set assuming that the entity faces south. @@ -106,7 +106,7 @@ private set private Box2? _collisionBounds = null; /// - /// The polygon shape associated with the prototype CollisionBounds (if set) + /// The polygon shape associated with the prototype CollisionBounds (if set) /// [ViewVariables(VVAccess.ReadOnly)] public PolygonShape? CollisionPolygon { get; private set; } = null; diff --git a/Content.Shared/Radio/Components/EncryptionKeyHolderComponent.cs b/Content.Shared/Radio/Components/EncryptionKeyHolderComponent.cs index 6c50acb966..d84a161860 100644 --- a/Content.Shared/Radio/Components/EncryptionKeyHolderComponent.cs +++ b/Content.Shared/Radio/Components/EncryptionKeyHolderComponent.cs @@ -15,27 +15,22 @@ public sealed partial class EncryptionKeyHolderComponent : Component /// /// Whether or not encryption keys can be removed from the headset. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("keysUnlocked")] + [DataField] public bool KeysUnlocked = true; /// /// The tool required to extract the encryption keys from the headset. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("keysExtractionMethod", customTypeSerializer: typeof(PrototypeIdSerializer))] + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] public string KeysExtractionMethod = "Screwing"; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("keySlots")] + [DataField] public int KeySlots = 2; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("keyExtractionSound")] + [DataField] public SoundSpecifier KeyExtractionSound = new SoundPathSpecifier("/Audio/Items/pistol_magout.ogg"); - [ViewVariables(VVAccess.ReadWrite)] - [DataField("keyInsertionSound")] + [DataField] public SoundSpecifier KeyInsertionSound = new SoundPathSpecifier("/Audio/Items/pistol_magin.ogg"); [ViewVariables] @@ -45,8 +40,7 @@ public sealed partial class EncryptionKeyHolderComponent : Component /// /// Whether or not the headset can be examined to see the encryption keys while the keys aren't accessible. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("examineWhileLocked")] + [DataField] public bool ExamineWhileLocked = true; /// diff --git a/Content.Shared/Radio/Components/SharedRadioJammerComponent.cs b/Content.Shared/Radio/Components/SharedRadioJammerComponent.cs new file mode 100644 index 0000000000..e5e52a3e47 --- /dev/null +++ b/Content.Shared/Radio/Components/SharedRadioJammerComponent.cs @@ -0,0 +1,74 @@ +using Robust.Shared.Serialization; +using Robust.Shared.GameStates; + +namespace Content.Shared.RadioJammer; + +/// +/// When activated () prevents from sending messages in range +/// Suit sensors will also stop working. +/// +[NetworkedComponent, RegisterComponent] +public sealed partial class RadioJammerComponent : Component +{ + [DataDefinition] + public partial struct RadioJamSetting + { + /// + /// Power usage per second when enabled. + /// + [DataField(required: true)] + public float Wattage; + + /// + /// Range of the jammer. + /// + [DataField(required: true)] + public float Range; + + /// + /// The message that is displayed when switched + /// to this setting. + /// + [DataField(required: true)] + public LocId Message = string.Empty; + + /// + /// Name of the setting. + /// + [DataField(required: true)] + public LocId Name = string.Empty; + } + + /// + /// List of all the settings for the radio jammer. + /// + [DataField(required: true), ViewVariables(VVAccess.ReadOnly)] + public RadioJamSetting[] Settings; + + /// + /// Index of the currently selected setting. + /// + [DataField] + public int SelectedPowerLevel = 1; +} + +[Serializable, NetSerializable] +public enum RadioJammerChargeLevel : byte +{ + Low, + Medium, + High +} + +[Serializable, NetSerializable] +public enum RadioJammerLayers : byte +{ + LED +} + +[Serializable, NetSerializable] +public enum RadioJammerVisuals : byte +{ + ChargeLevel, + LEDOn +} diff --git a/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs b/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs index cb475a8300..c14001387c 100644 --- a/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs +++ b/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs @@ -6,10 +6,8 @@ using Content.Shared.Interaction; using Content.Shared.Popups; using Content.Shared.Radio.Components; -using Content.Shared.Tools; using Content.Shared.Tools.Components; using Content.Shared.Wires; -using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Network; @@ -175,13 +173,9 @@ private void OnStartup(EntityUid uid, EncryptionKeyHolderComponent component, Co private void OnHolderExamined(EntityUid uid, EncryptionKeyHolderComponent component, ExaminedEvent args) { - if (!args.IsInDetailsRange) - return; - - if (!component.ExamineWhileLocked && !component.KeysUnlocked) - return; - - if (!component.ExamineWhileLocked && TryComp(uid, out var panel) && !panel.Open) + if (!args.IsInDetailsRange + || !component.ExamineWhileLocked && !component.KeysUnlocked + || !component.ExamineWhileLocked && TryComp(uid, out var panel) && !panel.Open) return; if (component.KeyContainer.ContainedEntities.Count == 0) diff --git a/Content.Shared/Radio/EntitySystems/SharedJammerSystem.cs b/Content.Shared/Radio/EntitySystems/SharedJammerSystem.cs new file mode 100644 index 0000000000..e1f632735c --- /dev/null +++ b/Content.Shared/Radio/EntitySystems/SharedJammerSystem.cs @@ -0,0 +1,78 @@ +using Content.Shared.Popups; +using Content.Shared.DeviceNetwork.Components; +using Content.Shared.Verbs; +using Content.Shared.RadioJammer; + +namespace Content.Shared.Radio.EntitySystems; + +public abstract class SharedJammerSystem : EntitySystem +{ + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] protected readonly SharedPopupSystem Popup = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(OnGetVerb); + } + + private void OnGetVerb(Entity entity, ref GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract) + return; + + var user = args.User; + + byte index = 0; + foreach (var setting in entity.Comp.Settings) + { + // This is because Act wont work with index. + // Needs it to be saved in the loop. + var currIndex = index; + var verb = new Verb + { + Priority = currIndex, + Category = VerbCategory.PowerLevel, + Disabled = entity.Comp.SelectedPowerLevel == currIndex, + Act = () => + { + entity.Comp.SelectedPowerLevel = currIndex; + if (TryComp(entity.Owner, out var jammerComp)) + { + // This is a little sketcy but only way to do it. + jammerComp.Range = GetCurrentRange(entity.Comp); + Dirty(entity.Owner, jammerComp); + } + Popup.PopupPredicted(Loc.GetString(setting.Message), user, user); + }, + Text = Loc.GetString(setting.Name), + }; + args.Verbs.Add(verb); + index++; + } + } + + public float GetCurrentWattage(RadioJammerComponent jammer) + { + return jammer.Settings[jammer.SelectedPowerLevel].Wattage; + } + + public float GetCurrentRange(RadioJammerComponent jammer) + { + return jammer.Settings[jammer.SelectedPowerLevel].Range; + } + + protected void ChangeLEDState(bool isLEDOn, EntityUid uid, + AppearanceComponent? appearance = null) + { + _appearance.SetData(uid, RadioJammerVisuals.LEDOn, isLEDOn, appearance); + } + + protected void ChangeChargeLevel(RadioJammerChargeLevel chargeLevel, EntityUid uid, + AppearanceComponent? appearance = null) + { + _appearance.SetData(uid, RadioJammerVisuals.ChargeLevel, chargeLevel, appearance); + } + +} diff --git a/Content.Shared/Random/Helpers/SharedRandomExtensions.cs b/Content.Shared/Random/Helpers/SharedRandomExtensions.cs index dcdc9d61d9..20e57e9421 100644 --- a/Content.Shared/Random/Helpers/SharedRandomExtensions.cs +++ b/Content.Shared/Random/Helpers/SharedRandomExtensions.cs @@ -57,7 +57,8 @@ public static string Pick(this IWeightedRandomPrototype prototype, IRobustRandom throw new InvalidOperationException($"Invalid weighted pick for {prototype.ID}!"); } - public static string Pick(this IRobustRandom random, Dictionary weights) + public static T Pick(this IRobustRandom random, Dictionary weights) + where T: notnull { var sum = weights.Values.Sum(); var accumulated = 0f; @@ -74,7 +75,7 @@ public static string Pick(this IRobustRandom random, Dictionary w } } - throw new InvalidOperationException($"Invalid weighted pick"); + throw new InvalidOperationException("Invalid weighted pick"); } public static (string reagent, FixedPoint2 quantity) Pick(this WeightedRandomFillSolutionPrototype prototype, IRobustRandom? random = null) diff --git a/Content.Shared/ReagentSpeed/ReagentSpeedComponent.cs b/Content.Shared/ReagentSpeed/ReagentSpeedComponent.cs new file mode 100644 index 0000000000..d233cad2a0 --- /dev/null +++ b/Content.Shared/ReagentSpeed/ReagentSpeedComponent.cs @@ -0,0 +1,34 @@ +using Content.Shared.Chemistry.Reagent; +using Content.Shared.FixedPoint; +using Robust.Shared.Prototypes; + +namespace Content.Shared.ReagentSpeed; + +/// +/// Makes a device work faster by consuming reagents on each use. +/// Other systems must use for this to do anything. +/// +[RegisterComponent, Access(typeof(ReagentSpeedSystem))] +public sealed partial class ReagentSpeedComponent : Component +{ + /// + /// Solution that will be checked. + /// Anything that isn't in Modifiers is left alone. + /// + [DataField(required: true)] + public string Solution = string.Empty; + + /// + /// How much reagent from the solution to use up for each use. + /// This is per-modifier-reagent and not shared between them. + /// + [DataField] + public FixedPoint2 Cost = 5; + + /// + /// Reagents and how much they modify speed at full purity. + /// Small number means faster large number means slower. + /// + [DataField(required: true)] + public Dictionary, float> Modifiers = new(); +} diff --git a/Content.Shared/ReagentSpeed/ReagentSpeedSystem.cs b/Content.Shared/ReagentSpeed/ReagentSpeedSystem.cs new file mode 100644 index 0000000000..8561c7b12a --- /dev/null +++ b/Content.Shared/ReagentSpeed/ReagentSpeedSystem.cs @@ -0,0 +1,33 @@ +using Content.Shared.Chemistry.EntitySystems; + +namespace Content.Shared.ReagentSpeed; + +public sealed class ReagentSpeedSystem : EntitySystem +{ + [Dependency] private readonly SharedSolutionContainerSystem _solution = default!; + + /// + /// Consumes reagents and modifies the duration. + /// This can be production time firing delay etc. + /// + public TimeSpan ApplySpeed(Entity ent, TimeSpan time) + { + if (!Resolve(ent, ref ent.Comp, false)) + return time; + + if (!_solution.TryGetSolution(ent.Owner, ent.Comp.Solution, out _, out var solution)) + return time; + + foreach (var (reagent, fullModifier) in ent.Comp.Modifiers) + { + var used = solution.RemoveReagent(reagent, ent.Comp.Cost); + var efficiency = (used / ent.Comp.Cost).Float(); + // scale the speed modifier so microdosing has less effect + var reduction = (1f - fullModifier) * efficiency; + var modifier = 1f - reduction; + time *= modifier; + } + + return time; + } +} diff --git a/Content.Shared/Robotics/Components/RoboticsConsoleComponent.cs b/Content.Shared/Robotics/Components/RoboticsConsoleComponent.cs new file mode 100644 index 0000000000..4329e437a2 --- /dev/null +++ b/Content.Shared/Robotics/Components/RoboticsConsoleComponent.cs @@ -0,0 +1,53 @@ +using Content.Shared.Radio; +using Content.Shared.Robotics; +using Content.Shared.Robotics.Systems; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Shared.Robotics.Components; + +/// +/// Robotics console for managing borgs. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SharedRoboticsConsoleSystem))] +[AutoGenerateComponentState, AutoGenerateComponentPause] +public sealed partial class RoboticsConsoleComponent : Component +{ + /// + /// Address and data of each cyborg. + /// + [DataField] + public Dictionary Cyborgs = new(); + + /// + /// After not responding for this length of time borgs are removed from the console. + /// + [DataField] + public TimeSpan Timeout = TimeSpan.FromSeconds(10); + + /// + /// Radio channel to send messages on. + /// + [DataField] + public ProtoId RadioChannel = "Science"; + + /// + /// Radio message sent when destroying a borg. + /// + [DataField] + public LocId DestroyMessage = "robotics-console-cyborg-destroyed"; + + /// + /// Cooldown on destroying borgs to prevent complete abuse. + /// + [DataField] + public TimeSpan DestroyCooldown = TimeSpan.FromSeconds(30); + + /// + /// When a borg can next be destroyed. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + [AutoNetworkedField, AutoPausedField] + public TimeSpan NextDestroy = TimeSpan.Zero; +} diff --git a/Content.Shared/Robotics/RoboticsConsoleUi.cs b/Content.Shared/Robotics/RoboticsConsoleUi.cs new file mode 100644 index 0000000000..1be89beff0 --- /dev/null +++ b/Content.Shared/Robotics/RoboticsConsoleUi.cs @@ -0,0 +1,126 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; +using Robust.Shared.Utility; + +namespace Content.Shared.Robotics; + +[Serializable, NetSerializable] +public enum RoboticsConsoleUiKey : byte +{ + Key +} + +[Serializable, NetSerializable] +public sealed class RoboticsConsoleState : BoundUserInterfaceState +{ + /// + /// Map of device network addresses to cyborg data. + /// + public Dictionary Cyborgs; + + public RoboticsConsoleState(Dictionary cyborgs) + { + Cyborgs = cyborgs; + } +} + +/// +/// Message to disable the selected cyborg. +/// +[Serializable, NetSerializable] +public sealed class RoboticsConsoleDisableMessage : BoundUserInterfaceMessage +{ + public readonly string Address; + + public RoboticsConsoleDisableMessage(string address) + { + Address = address; + } +} + +/// +/// Message to destroy the selected cyborg. +/// +[Serializable, NetSerializable] +public sealed class RoboticsConsoleDestroyMessage : BoundUserInterfaceMessage +{ + public readonly string Address; + + public RoboticsConsoleDestroyMessage(string address) + { + Address = address; + } +} + +/// +/// All data a client needs to render the console UI for a single cyborg. +/// Created by BorgTransponderComponent and sent to clients by RoboticsConsoleComponent. +/// +[DataRecord, Serializable, NetSerializable] +public record struct CyborgControlData +{ + /// + /// Texture of the borg chassis. + /// + [DataField(required: true)] + public SpriteSpecifier? ChassisSprite; + + /// + /// Name of the borg chassis. + /// + [DataField(required: true)] + public string ChassisName = string.Empty; + + /// + /// Name of the borg's entity, including its silicon id. + /// + [DataField(required: true)] + public string Name = string.Empty; + + /// + /// Battery charge from 0 to 1. + /// + [DataField] + public float Charge; + + /// + /// How many modules this borg has, just useful information for roboticists. + /// Lets them keep track of the latejoin borgs that need new modules and stuff. + /// + [DataField] + public int ModuleCount; + + /// + /// Whether the borg has a brain installed or not. + /// + [DataField] + public bool HasBrain; + + /// + /// When this cyborg's data will be deleted. + /// Set by the console when receiving the packet. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + public TimeSpan Timeout = TimeSpan.Zero; + + public CyborgControlData(SpriteSpecifier? chassisSprite, string chassisName, string name, float charge, int moduleCount, bool hasBrain) + { + ChassisSprite = chassisSprite; + ChassisName = chassisName; + Name = name; + Charge = charge; + ModuleCount = moduleCount; + HasBrain = hasBrain; + } +} + +public static class RoboticsConsoleConstants +{ + // broadcast by cyborgs on Robotics Console frequency + public const string NET_CYBORG_DATA = "cyborg-data"; + + // sent by robotics console to cyborgs on Cyborg Control frequency + public const string NET_DISABLE_COMMAND = "cyborg-disable"; + public const string NET_DESTROY_COMMAND = "cyborg-destroy"; +} diff --git a/Content.Shared/Robotics/Systems/SharedRoboticsConsoleSystem.cs b/Content.Shared/Robotics/Systems/SharedRoboticsConsoleSystem.cs new file mode 100644 index 0000000000..25b3c5d07a --- /dev/null +++ b/Content.Shared/Robotics/Systems/SharedRoboticsConsoleSystem.cs @@ -0,0 +1,8 @@ +namespace Content.Shared.Robotics.Systems; + +/// +/// Does nothing, only exists for access right now. +/// +public abstract class SharedRoboticsConsoleSystem : EntitySystem +{ +} diff --git a/Content.Shared/Roles/SharedRoleSystem.cs b/Content.Shared/Roles/SharedRoleSystem.cs index 94ad32164b..d5ac2e5923 100644 --- a/Content.Shared/Roles/SharedRoleSystem.cs +++ b/Content.Shared/Roles/SharedRoleSystem.cs @@ -196,11 +196,13 @@ public bool MindTryRemoveRole(EntityUid mindId) where T : IComponent public bool MindHasRole(EntityUid mindId) where T : IComponent { + DebugTools.Assert(HasComp(mindId)); return HasComp(mindId); } public List MindGetAllRoles(EntityUid mindId) { + DebugTools.Assert(HasComp(mindId)); var ev = new MindGetAllRolesEvent(new List()); RaiseLocalEvent(mindId, ref ev); return ev.Roles; @@ -211,6 +213,7 @@ public bool MindIsAntagonist(EntityUid? mindId) if (mindId == null) return false; + DebugTools.Assert(HasComp(mindId)); var ev = new MindIsAntagonistEvent(); RaiseLocalEvent(mindId.Value, ref ev); return ev.IsAntagonist; diff --git a/Content.Shared/Roles/StartingGearEquippedEvent.cs b/Content.Shared/Roles/StartingGearEquippedEvent.cs new file mode 100644 index 0000000000..41b6caccff --- /dev/null +++ b/Content.Shared/Roles/StartingGearEquippedEvent.cs @@ -0,0 +1,10 @@ +namespace Content.Shared.Roles; + +/// +/// Raised directed on an entity when a new starting gear prototype has been equipped. +/// +[ByRefEvent] +public record struct StartingGearEquippedEvent(EntityUid Entity) +{ + public readonly EntityUid Entity = Entity; +} diff --git a/Content.Shared/Salvage/SalvageMapPrototype.cs b/Content.Shared/Salvage/SalvageMapPrototype.cs index a9814c7b0a..9b5a37c668 100644 --- a/Content.Shared/Salvage/SalvageMapPrototype.cs +++ b/Content.Shared/Salvage/SalvageMapPrototype.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Salvage; [Prototype] -public sealed class SalvageMapPrototype : IPrototype +public sealed partial class SalvageMapPrototype : IPrototype { [ViewVariables] [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/ShortConstruction/ShortConstructionComponent.cs b/Content.Shared/ShortConstruction/ShortConstructionComponent.cs index 4ca4063866..dedf8605bd 100644 --- a/Content.Shared/ShortConstruction/ShortConstructionComponent.cs +++ b/Content.Shared/ShortConstruction/ShortConstructionComponent.cs @@ -2,6 +2,7 @@ using Robust.Shared.GameStates; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; +using Robust.Shared.Utility; namespace Content.Shared.ShortConstruction; @@ -9,7 +10,30 @@ namespace Content.Shared.ShortConstruction; public sealed partial class ShortConstructionComponent : Component { [DataField(required: true)] - public List> Prototypes = new(); + public List Entries = new(); +} + +[DataDefinition] +public sealed partial class ShortConstructionEntry +{ + [DataField] + public ProtoId? Prototype { get; set; } + + [DataField] + public ShortConstructionCategory? Category { get; set; } +} + +[DataDefinition] +public sealed partial class ShortConstructionCategory +{ + [DataField] + public string Name { get; set; } = string.Empty; + + [DataField] + public SpriteSpecifier Icon { get; set; } = default!; + + [DataField] + public List Entries { get; set; } = new(); } [NetSerializable, Serializable] diff --git a/Content.Shared/Silicon/BatteryDrinkerEvent.cs b/Content.Shared/Silicon/BatteryDrinkerEvent.cs index 4d9a610055..99af03df3a 100644 --- a/Content.Shared/Silicon/BatteryDrinkerEvent.cs +++ b/Content.Shared/Silicon/BatteryDrinkerEvent.cs @@ -6,7 +6,5 @@ namespace Content.Shared.Silicon; [Serializable, NetSerializable] public sealed partial class BatteryDrinkerDoAfterEvent : SimpleDoAfterEvent { - public BatteryDrinkerDoAfterEvent() - { - } + public BatteryDrinkerDoAfterEvent() { } } diff --git a/Content.Shared/Silicon/BlindHealing/SharedBlindHealingSystem.cs b/Content.Shared/Silicon/BlindHealing/SharedBlindHealingSystem.cs index be4be9e5d3..bfc5092b64 100644 --- a/Content.Shared/Silicon/BlindHealing/SharedBlindHealingSystem.cs +++ b/Content.Shared/Silicon/BlindHealing/SharedBlindHealingSystem.cs @@ -6,8 +6,6 @@ namespace Content.Shared.Silicon.BlindHealing; public abstract partial class SharedBlindHealingSystem : EntitySystem { [Serializable, NetSerializable] - protected sealed partial class HealingDoAfterEvent : SimpleDoAfterEvent - { - } + protected sealed partial class HealingDoAfterEvent : SimpleDoAfterEvent { } } diff --git a/Content.Shared/Silicon/Components/SiliconComponent.cs b/Content.Shared/Silicon/Components/SiliconComponent.cs index c80d9397d9..bcee4d161a 100644 --- a/Content.Shared/Silicon/Components/SiliconComponent.cs +++ b/Content.Shared/Silicon/Components/SiliconComponent.cs @@ -1,7 +1,6 @@ using Robust.Shared.GameStates; using Content.Shared.Silicon.Systems; using Robust.Shared.Serialization.TypeSerializers.Implementations; -using Robust.Shared.Containers; using Robust.Shared.Prototypes; using Content.Shared.Alert; @@ -36,7 +35,7 @@ public sealed partial class SiliconComponent : Component /// /// Is the Silicon currently dead? /// - public bool Dead = false; + public bool Dead; // 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. // /// @@ -52,7 +51,7 @@ public sealed partial class SiliconComponent : Component /// Any new types of Silicons should be added to the enum. /// Setting this to Npc will delay charge state updates by LastDrainTime and skip battery heat calculations /// - [DataField("entityType", customTypeSerializer: typeof(EnumSerializer))] + [DataField(customTypeSerializer: typeof(EnumSerializer))] public Enum EntityType = SiliconType.Npc; /// @@ -61,13 +60,13 @@ public sealed partial class SiliconComponent : Component /// /// If true, should go along with a battery component. One will not be added automatically. /// - [DataField("batteryPowered"), ViewVariables(VVAccess.ReadWrite)] - public bool BatteryPowered = false; + [DataField] + public bool BatteryPowered; /// /// How much power is drained by this Silicon every second by default. /// - [DataField("drainPerSecond"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float DrainPerSecond = 50f; @@ -79,15 +78,15 @@ public sealed partial class SiliconComponent : Component /// Setting a value to null will disable that state. /// Setting Critical to 0 will cause the Silicon to never enter the dead state. /// - [DataField("chargeThresholdMid"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float? ChargeThresholdMid = 0.5f; /// - [DataField("chargeThresholdLow"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float? ChargeThresholdLow = 0.25f; /// - [DataField("chargeThresholdCritical"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float? ChargeThresholdCritical = 0.1f; [DataField] @@ -100,9 +99,16 @@ public sealed partial class SiliconComponent : Component /// /// The amount the Silicon will be slowed at each charge state. /// - [DataField("speedModifierThresholds", required: true)] - public Dictionary SpeedModifierThresholds = default!; + [DataField(required: true)] + public Dictionary SpeedModifierThresholds = default!; - [DataField("fireStackMultiplier"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float FireStackMultiplier = 1f; + + /// + /// Whether or not a Silicon will cancel all sleep events. + /// Maybe you want an android that can sleep as well as drink APCs? I'm not going to judge. + /// + [DataField] + public bool DoSiliconsDreamOfElectricSheep; } diff --git a/Content.Shared/Silicon/DeadStartupButton/DeadStartupButtonComponent.cs b/Content.Shared/Silicon/DeadStartupButton/DeadStartupButtonComponent.cs index 3390a76439..9c2e5baf57 100644 --- a/Content.Shared/Silicon/DeadStartupButton/DeadStartupButtonComponent.cs +++ b/Content.Shared/Silicon/DeadStartupButton/DeadStartupButtonComponent.cs @@ -3,26 +3,26 @@ namespace Content.Shared.Silicon.DeadStartupButton; /// -/// This is used for... +/// This is used for Silicon entities such as IPCs, Cyborgs, Androids, anything "living" with a button people can touch. /// [RegisterComponent] public sealed partial class DeadStartupButtonComponent : Component { - [DataField("verbText")] + [DataField] public string VerbText = "dead-startup-button-verb"; - [DataField("sound")] + [DataField] public SoundSpecifier Sound = new SoundPathSpecifier("/Audio/Effects/Arcade/newgame.ogg"); - [DataField("buttonSound")] + [DataField] public SoundSpecifier ButtonSound = new SoundPathSpecifier("/Audio/Machines/button.ogg"); - [DataField("doAfterInterval"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float DoAfterInterval = 1f; - [DataField("buzzSound")] + [DataField] public SoundSpecifier BuzzSound = new SoundCollectionSpecifier("buzzes"); - [DataField("verbPriority"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public int VerbPriority = 1; } diff --git a/Content.Shared/Silicon/DeadStartupButton/SharedDeadStartupButtonSystem.cs b/Content.Shared/Silicon/DeadStartupButton/SharedDeadStartupButtonSystem.cs index 2faa6dfde0..ced89e7860 100644 --- a/Content.Shared/Silicon/DeadStartupButton/SharedDeadStartupButtonSystem.cs +++ b/Content.Shared/Silicon/DeadStartupButton/SharedDeadStartupButtonSystem.cs @@ -10,19 +10,16 @@ namespace Content.Shared.Silicon.DeadStartupButton; /// -/// This creates a Button that can be activated after an entity, usually a silicon or an IPC, died. -/// This will activate a doAfter and then revive the entity, playing a custom afterward sound. +/// This creates a Button that can be activated after an entity, usually a silicon or an IPC, died. +/// This will activate a doAfter and then revive the entity, playing a custom afterward sound. /// -public partial class SharedDeadStartupButtonSystem : EntitySystem +public abstract partial class SharedDeadStartupButtonSystem : EntitySystem { [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] private readonly INetManager _net = default!; - - - /// public override void Initialize() { @@ -31,10 +28,9 @@ public override void Initialize() private void AddTurnOnVerb(EntityUid uid, DeadStartupButtonComponent component, GetVerbsEvent args) { - if (!args.CanAccess || !args.CanInteract || args.Hands == null) - return; - - if (!TryComp(uid, out MobStateComponent? mobStateComponent) || !_mobState.IsDead(uid, mobStateComponent)) + if (!TryComp(uid, out var mobState) + || !_mobState.IsDead(uid, mobState) + || !args.CanAccess || !args.CanInteract || args.Hands == null) return; args.Verbs.Add(new AlternativeVerb() @@ -50,6 +46,7 @@ private void TryStartup(EntityUid user, EntityUid target, DeadStartupButtonCompo { if (!_net.IsServer) return; + _audio.PlayPvs(comp.ButtonSound, target); var args = new DoAfterArgs(EntityManager, user, comp.DoAfterInterval, new OnDoAfterButtonPressedEvent(), target, target:target) { @@ -60,9 +57,5 @@ private void TryStartup(EntityUid user, EntityUid target, DeadStartupButtonCompo } [Serializable, NetSerializable] - public sealed partial class OnDoAfterButtonPressedEvent : SimpleDoAfterEvent - { - } - - + public sealed partial class OnDoAfterButtonPressedEvent : SimpleDoAfterEvent { } } diff --git a/Content.Shared/Silicon/EmitBuzzWhileDamaged/EmitBuzzWhileDamagedComponent.cs b/Content.Shared/Silicon/EmitBuzzWhileDamaged/EmitBuzzWhileDamagedComponent.cs index a8362610e2..986292551d 100644 --- a/Content.Shared/Silicon/EmitBuzzWhileDamaged/EmitBuzzWhileDamagedComponent.cs +++ b/Content.Shared/Silicon/EmitBuzzWhileDamaged/EmitBuzzWhileDamagedComponent.cs @@ -1,26 +1,26 @@ -using System.ComponentModel.DataAnnotations; using Robust.Shared.Audio; namespace Content.Shared.Silicon.EmitBuzzWhileDamaged; /// -/// This is used for controlling the cadence of the buzzing emitted by EmitBuzzOnCritSystem. -/// This component is used by mechanical species that can get to critical health. +/// This is used for controlling the cadence of the buzzing emitted by EmitBuzzOnCritSystem. +/// This component is used by mechanical species that can get to critical health. /// [RegisterComponent] public sealed partial class EmitBuzzWhileDamagedComponent : Component { - [DataField("buzzPopupCooldown")] - public TimeSpan BuzzPopupCooldown { get; private set; } = TimeSpan.FromSeconds(8); + [DataField] + public TimeSpan BuzzPopupCooldown = TimeSpan.FromSeconds(8); [ViewVariables] public TimeSpan LastBuzzPopupTime; - [DataField("cycleDelay")] + [DataField] public float CycleDelay = 2.0f; + [ViewVariables] public float AccumulatedFrametime; - [DataField("sound")] + [DataField] public SoundSpecifier Sound = new SoundCollectionSpecifier("buzzes"); } diff --git a/Content.Shared/Silicon/Systems/SharedSiliconSystem.cs b/Content.Shared/Silicon/Systems/SharedSiliconSystem.cs index aab9b6e752..8fe87e162b 100644 --- a/Content.Shared/Silicon/Systems/SharedSiliconSystem.cs +++ b/Content.Shared/Silicon/Systems/SharedSiliconSystem.cs @@ -1,17 +1,17 @@ using Content.Shared.Silicon.Components; using Content.Shared.Alert; -using Robust.Shared.Serialization; -using Content.Shared.Movement.Systems; +using Content.Shared.Bed.Sleep; using Content.Shared.Containers.ItemSlots; +using Content.Shared.Movement.Systems; using Content.Shared.PowerCell.Components; +using Robust.Shared.Serialization; namespace Content.Shared.Silicon.Systems; - public sealed class SharedSiliconChargeSystem : EntitySystem { [Dependency] private readonly AlertsSystem _alertsSystem = default!; - [Dependency] protected readonly ItemSlotsSystem ItemSlots = default!; + [Dependency] private readonly ItemSlotsSystem _itemSlots = default!; public override void Initialize() { @@ -22,47 +22,50 @@ public override void Initialize() SubscribeLocalEvent(OnRefreshMovespeed); SubscribeLocalEvent(OnItemSlotInsertAttempt); SubscribeLocalEvent(OnItemSlotEjectAttempt); + SubscribeLocalEvent(OnTryingToSleep); } - private void OnItemSlotInsertAttempt(EntityUid uid, SiliconComponent component, ref ItemSlotInsertAttemptEvent args) + /// + /// Silicon entities can now also be Living player entities. We may want to prevent them from sleeping if they can't sleep. + /// + private void OnTryingToSleep(EntityUid uid, SiliconComponent component, ref TryingToSleepEvent args) { - if (args.Cancelled) - return; - - if (!TryComp(uid, out var cellSlotComp)) - return; + args.Cancelled = !component.DoSiliconsDreamOfElectricSheep; + } - if (!ItemSlots.TryGetSlot(uid, cellSlotComp.CellSlotId, out var cellSlot) || cellSlot != args.Slot) + private void OnItemSlotInsertAttempt(EntityUid uid, SiliconComponent component, ref ItemSlotInsertAttemptEvent args) + { + if (args.Cancelled + || !TryComp(uid, out var cellSlotComp) + || !_itemSlots.TryGetSlot(uid, cellSlotComp.CellSlotId, out var cellSlot) + || cellSlot != args.Slot || args.User != uid) return; - if (args.User == uid) - args.Cancelled = true; + args.Cancelled = true; } private void OnItemSlotEjectAttempt(EntityUid uid, SiliconComponent component, ref ItemSlotEjectAttemptEvent args) { - if (args.Cancelled) - return; - - if (!TryComp(uid, out var cellSlotComp)) - return; - - if (!ItemSlots.TryGetSlot(uid, cellSlotComp.CellSlotId, out var cellSlot) || cellSlot != args.Slot) + if (args.Cancelled + || !TryComp(uid, out var cellSlotComp) + || !_itemSlots.TryGetSlot(uid, cellSlotComp.CellSlotId, out var cellSlot) + || cellSlot != args.Slot || args.User != uid) return; - if (args.User == uid) - args.Cancelled = true; + args.Cancelled = true; } private void OnSiliconInit(EntityUid uid, SiliconComponent component, ComponentInit args) { - if (component.BatteryPowered) - _alertsSystem.ShowAlert(uid, AlertType.BorgBattery, component.ChargeState); + if (!component.BatteryPowered) + return; + + _alertsSystem.ShowAlert(uid, AlertType.BorgBattery, component.ChargeState); } private void OnSiliconChargeStateUpdate(EntityUid uid, SiliconComponent component, SiliconChargeStateUpdateEvent ev) { - _alertsSystem.ShowAlert(uid, AlertType.BorgBattery, (short) ev.ChargePercent); + _alertsSystem.ShowAlert(uid, AlertType.BorgBattery, ev.ChargePercent); } private void OnRefreshMovespeed(EntityUid uid, SiliconComponent component, RefreshMovementSpeedModifiersEvent args) @@ -70,17 +73,12 @@ private void OnRefreshMovespeed(EntityUid uid, SiliconComponent component, Refre 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 closest = 0; + foreach (var state in component.SpeedModifierThresholds) + if (component.ChargeState >= state.Key && state.Key > closest) + closest = state.Key; - var speedMod = speedModThresholds[(short) closest]; + var speedMod = component.SpeedModifierThresholds[closest]; args.ModifySpeed(speedMod, speedMod); } diff --git a/Content.Shared/Silicons/Borgs/Components/BorgTransponderComponent.cs b/Content.Shared/Silicons/Borgs/Components/BorgTransponderComponent.cs new file mode 100644 index 0000000000..8c15e20d5d --- /dev/null +++ b/Content.Shared/Silicons/Borgs/Components/BorgTransponderComponent.cs @@ -0,0 +1,43 @@ +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; +using Robust.Shared.Utility; + +namespace Content.Shared.Silicons.Borgs.Components; + +/// +/// Periodically broadcasts borg data to robotics consoles. +/// When not emagged, handles disabling and destroying commands as expected. +/// +[RegisterComponent, Access(typeof(SharedBorgSystem))] +public sealed partial class BorgTransponderComponent : Component +{ + /// + /// Sprite of the chassis to send. + /// + [DataField(required: true)] + public SpriteSpecifier? Sprite; + + /// + /// Name of the chassis to send. + /// + [DataField(required: true)] + public string Name = string.Empty; + + /// + /// Popup shown to everyone when a borg is disabled. + /// Gets passed a string "name". + /// + [DataField] + public LocId DisabledPopup = "borg-transponder-disabled-popup"; + + /// + /// How long to wait between each broadcast. + /// + [DataField] + public TimeSpan BroadcastDelay = TimeSpan.FromSeconds(5); + + /// + /// When to next broadcast data. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + public TimeSpan NextBroadcast = TimeSpan.Zero; +} diff --git a/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs b/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs index f6407be5c7..5e5df448b3 100644 --- a/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs +++ b/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs @@ -58,7 +58,7 @@ public SiliconLaw ShallowClone() /// [Prototype("siliconLaw")] [Serializable, NetSerializable] -public sealed class SiliconLawPrototype : SiliconLaw, IPrototype +public sealed partial class SiliconLawPrototype : SiliconLaw, IPrototype { /// [IdDataField] diff --git a/Content.Shared/SimpleStation14/Traits/Components/NearsightedComponent.cs b/Content.Shared/SimpleStation14/Traits/Components/NearsightedComponent.cs deleted file mode 100644 index fafd8f8710..0000000000 --- a/Content.Shared/SimpleStation14/Traits/Components/NearsightedComponent.cs +++ /dev/null @@ -1,49 +0,0 @@ -using Robust.Shared.GameStates; - -namespace Content.Shared.SimpleStation14.Traits.Components; - -/// -/// Owner entity cannot see well, without prescription glasses. -/// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] -public sealed partial class NearsightedComponent : Component -{ - /// - /// Distance from the edge of the screen to the center - /// - /// - /// I don't know how the distance is measured, 1 is very close to the center, 0 is maybe visible around the edge - /// - [DataField("radius"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public float Radius = 0.8f; - - /// - /// How dark the circle mask is from - /// - /// - /// I also don't know how this works, it only starts getting noticeably dark at 0.7, and is definitely noticeable at 0.9, 1 is black - /// - [DataField("alpha"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public float Alpha = 0.995f; - - /// - [DataField("equippedRadius"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public float EquippedRadius = 0.45f; - - /// - [DataField("equippedAlpha"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public float EquippedAlpha = 0.93f; - - /// - /// How long the lerp animation should go on for in seconds. - /// - [DataField("lerpDuration"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public float LerpDuration = 0.25f; - - /// - /// If true, uses the variables prefixed "Equipped" - /// If false, uses the variables without a prefix - /// - [ViewVariables(VVAccess.ReadWrite)] // Make the system shared if you want this networked, I don't wanna do that - public bool Active = false; -} diff --git a/Content.Shared/Singularity/Components/SharedEmitterComponent.cs b/Content.Shared/Singularity/Components/SharedEmitterComponent.cs index c2e7af717b..cc6e8aeede 100644 --- a/Content.Shared/Singularity/Components/SharedEmitterComponent.cs +++ b/Content.Shared/Singularity/Components/SharedEmitterComponent.cs @@ -1,4 +1,5 @@ using System.Threading; +using Content.Shared.Construction.Prototypes; using Content.Shared.DeviceLinking; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; @@ -14,90 +15,130 @@ public sealed partial class EmitterComponent : Component { public CancellationTokenSource? TimerCancel; - // whether the power switch is in "on" - [ViewVariables] public bool IsOn; - // Whether the power switch is on AND the machine has enough power (so is actively firing) - [ViewVariables] public bool IsPowered; + /// + /// Whether the power switch is on + /// + [ViewVariables] + public bool IsOn; /// - /// counts the number of consecutive shots fired. + /// Whether the power switch is on AND the machine has enough power (so is actively firing) + /// + [ViewVariables] + public bool IsPowered; + + /// + /// counts the number of consecutive shots fired. /// [ViewVariables] public int FireShotCounter; /// - /// The entity that is spawned when the emitter fires. + /// The entity that is spawned when the emitter fires. /// - [DataField("boltType", customTypeSerializer: typeof(PrototypeIdSerializer))] + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] public string BoltType = "EmitterBolt"; - [DataField("selectableTypes", customTypeSerializer: typeof(PrototypeIdListSerializer))] + [DataField(customTypeSerializer: typeof(PrototypeIdListSerializer))] public List SelectableTypes = new(); /// - /// The current amount of power being used. + /// The current amount of power being used. /// - [DataField("powerUseActive")] + [DataField] public int PowerUseActive = 600; /// - /// The amount of shots that are fired in a single "burst" + /// The amount of shots that are fired in a single "burst" /// - [DataField("fireBurstSize")] + [DataField] public int FireBurstSize = 3; /// - /// The time between each shot during a burst. + /// The time between each shot during a burst. /// - [DataField("fireInterval")] + [DataField] public TimeSpan FireInterval = TimeSpan.FromSeconds(2); /// - /// The current minimum delay between bursts. + /// The base amount of time between each shot during a burst. /// - [DataField("fireBurstDelayMin")] + [DataField] + public TimeSpan BaseFireInterval = TimeSpan.FromSeconds(2); + + /// + /// The current minimum delay between bursts. + /// + [DataField] public TimeSpan FireBurstDelayMin = TimeSpan.FromSeconds(4); /// - /// The current maximum delay between bursts. + /// The current maximum delay between bursts. /// - [DataField("fireBurstDelayMax")] + [DataField] public TimeSpan FireBurstDelayMax = TimeSpan.FromSeconds(10); /// - /// The visual state that is set when the emitter is turned on + /// The base minimum delay between shot bursts. + /// Used for machine part rating calculations. + /// + [DataField] + public TimeSpan BaseFireBurstDelayMin = TimeSpan.FromSeconds(4); + + /// + /// The base maximum delay between shot bursts. + /// Used for machine part rating calculations. + /// + [DataField] + public TimeSpan BaseFireBurstDelayMax = TimeSpan.FromSeconds(10); + + /// + /// The multiplier for the base delay between shot bursts as well as + /// the fire interval + /// + [DataField] + public float FireRateMultiplier = 0.8f; + + /// + /// The machine part that affects burst delay. + /// + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MachinePartFireRate = "Capacitor"; + + /// + /// The visual state that is set when the emitter is turned on /// - [DataField("onState")] + [DataField] public string? OnState = "beam"; /// - /// The visual state that is set when the emitter doesn't have enough power. + /// The visual state that is set when the emitter doesn't have enough power. /// - [DataField("underpoweredState")] + [DataField] public string? UnderpoweredState = "underpowered"; /// - /// Signal port that turns on the emitter. + /// Signal port that turns on the emitter. /// - [DataField("onPort", customTypeSerializer: typeof(PrototypeIdSerializer))] + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] public string OnPort = "On"; /// - /// Signal port that turns off the emitter. + /// Signal port that turns off the emitter. /// - [DataField("offPort", customTypeSerializer: typeof(PrototypeIdSerializer))] + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] public string OffPort = "Off"; /// - /// Signal port that toggles the emitter on or off. + /// Signal port that toggles the emitter on or off. /// - [DataField("togglePort", customTypeSerializer: typeof(PrototypeIdSerializer))] + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] public string TogglePort = "Toggle"; /// - /// Map of signal ports to entity prototype IDs of the entity that will be fired. + /// Map of signal ports to entity prototype IDs of the entity that will be fired. /// - [DataField("setTypePorts", customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] + [DataField(customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] public Dictionary SetTypePorts = new(); } diff --git a/Content.Server/Speech/Components/VocalComponent.cs b/Content.Shared/Speech/Components/VocalComponent.cs similarity index 83% rename from Content.Server/Speech/Components/VocalComponent.cs rename to Content.Shared/Speech/Components/VocalComponent.cs index 029d638a66..e5d2c9997f 100644 --- a/Content.Server/Speech/Components/VocalComponent.cs +++ b/Content.Shared/Speech/Components/VocalComponent.cs @@ -1,18 +1,18 @@ -using Content.Server.Speech.EntitySystems; using Content.Shared.Chat.Prototypes; using Content.Shared.Humanoid; using Robust.Shared.Audio; +using Robust.Shared.GameStates; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; -namespace Content.Server.Speech.Components; +namespace Content.Shared.Speech.Components; /// /// Component required for entities to be able to do vocal emotions. /// -[RegisterComponent] -[Access(typeof(VocalSystem))] +[RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState] public sealed partial class VocalComponent : Component { /// @@ -20,21 +20,27 @@ public sealed partial class VocalComponent : Component /// Entities without considered to be . /// [DataField("sounds", customTypeSerializer: typeof(PrototypeIdValueDictionarySerializer))] + [AutoNetworkedField] public Dictionary? Sounds; [DataField("screamId", customTypeSerializer: typeof(PrototypeIdSerializer))] + [AutoNetworkedField] public string ScreamId = "Scream"; [DataField("wilhelm")] + [AutoNetworkedField] public SoundSpecifier Wilhelm = new SoundPathSpecifier("/Audio/Voice/Human/wilhelm_scream.ogg"); [DataField("wilhelmProbability")] + [AutoNetworkedField] public float WilhelmProbability = 0.0002f; [DataField("screamAction", customTypeSerializer: typeof(PrototypeIdSerializer))] + [AutoNetworkedField] public string ScreamAction = "ActionScream"; [DataField("screamActionEntity")] + [AutoNetworkedField] public EntityUid? ScreamActionEntity; /// @@ -42,5 +48,6 @@ public sealed partial class VocalComponent : Component /// Null if no valid prototype for entity sex was found. /// [ViewVariables] + [AutoNetworkedField] public EmoteSoundsPrototype? EmoteSounds = null; } diff --git a/Content.Shared/Speech/SpeechComponent.cs b/Content.Shared/Speech/SpeechComponent.cs index 272d9ef8ca..0882120718 100644 --- a/Content.Shared/Speech/SpeechComponent.cs +++ b/Content.Shared/Speech/SpeechComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Chat.Prototypes; using Robust.Shared.Audio; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; @@ -26,6 +27,13 @@ public sealed partial class SpeechComponent : Component [DataField] public ProtoId SpeechVerb = "Default"; + /// + /// What emotes allowed to use event if emote is false + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField] + public List> AllowedEmotes = new(); + /// /// A mapping from chat suffixes loc strings to speech verb prototypes that should be conditionally used. /// For things like '?' changing to 'asks' or '!!' making text bold and changing to 'yells'. Can be overridden if necessary. diff --git a/Content.Shared/SprayPainter/Prototypes/AirlockDepartmentsPrototype.cs b/Content.Shared/SprayPainter/Prototypes/AirlockDepartmentsPrototype.cs index 3553597c52..b61aa037cc 100644 --- a/Content.Shared/SprayPainter/Prototypes/AirlockDepartmentsPrototype.cs +++ b/Content.Shared/SprayPainter/Prototypes/AirlockDepartmentsPrototype.cs @@ -7,7 +7,7 @@ namespace Content.Shared.SprayPainter.Prototypes; /// Maps airlock style names to department ids. /// [Prototype("airlockDepartments")] -public sealed class AirlockDepartmentsPrototype : IPrototype +public sealed partial class AirlockDepartmentsPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/Standing/LayingDownComponent.cs b/Content.Shared/Standing/LayingDownComponent.cs new file mode 100644 index 0000000000..ec9351e22c --- /dev/null +++ b/Content.Shared/Standing/LayingDownComponent.cs @@ -0,0 +1,37 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Standing; + +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class LayingDownComponent : Component +{ + [DataField, AutoNetworkedField] + public TimeSpan StandingUpTime = TimeSpan.FromSeconds(1); + + [DataField, AutoNetworkedField] + public float LyingSpeedModifier = 0.35f, + CrawlingUnderSpeedModifier = 0.5f; + + [DataField, AutoNetworkedField] + public bool AutoGetUp; + + /// + /// If true, the entity is choosing to crawl under furniture. This is purely visual and has no effect on physics. + /// + [DataField, AutoNetworkedField] + public bool IsCrawlingUnder = false; + + [DataField, AutoNetworkedField] + public int NormalDrawDepth = (int) DrawDepth.DrawDepth.Mobs, + CrawlingUnderDrawDepth = (int) DrawDepth.DrawDepth.SmallMobs; +} + +[Serializable, NetSerializable] +public sealed class ChangeLayingDownEvent : CancellableEntityEventArgs; + +[Serializable, NetSerializable] +public sealed class CheckAutoGetUpEvent(NetEntity user) : CancellableEntityEventArgs +{ + public NetEntity User = user; +} diff --git a/Content.Shared/Standing/SharedLayingDownSystem.cs b/Content.Shared/Standing/SharedLayingDownSystem.cs new file mode 100644 index 0000000000..a7f2c30926 --- /dev/null +++ b/Content.Shared/Standing/SharedLayingDownSystem.cs @@ -0,0 +1,211 @@ +using System.Linq; +using Content.Shared.ActionBlocker; +using Content.Shared.CCVar; +using Content.Shared.DoAfter; +using Content.Shared.Gravity; +using Content.Shared.Input; +using Content.Shared.Mobs.Systems; +using Content.Shared.Movement.Systems; +using Content.Shared.Popups; +using Content.Shared.Stunnable; +using Robust.Shared.Configuration; +using Robust.Shared.Input.Binding; +using Robust.Shared.Map; +using Robust.Shared.Player; +using Robust.Shared.Serialization; + +namespace Content.Shared.Standing; + +public abstract class SharedLayingDownSystem : EntitySystem +{ + [Dependency] private readonly IConfigurationManager _config = default!; + + [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; + [Dependency] private readonly EntityLookupSystem _lookup = default!; // WWDP + [Dependency] private readonly MobStateSystem _mobState = default!; + [Dependency] private readonly MovementSpeedModifierSystem _speed = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + [Dependency] private readonly SharedGravitySystem _gravity = default!; + [Dependency] private readonly SharedPopupSystem _popups = default!; + [Dependency] private readonly StandingStateSystem _standing = default!; + + public override void Initialize() + { + CommandBinds.Builder + .Bind(ContentKeyFunctions.ToggleStanding, InputCmdHandler.FromDelegate(ToggleStanding)) + .Bind(ContentKeyFunctions.ToggleCrawlingUnder, + InputCmdHandler.FromDelegate(HandleCrawlUnderRequest, handle: false)) + .Register(); + + SubscribeNetworkEvent(OnChangeState); + + SubscribeLocalEvent(OnStandingUpDoAfter); + SubscribeLocalEvent(OnRefreshMovementSpeed); + SubscribeLocalEvent(OnParentChanged); + } + + public override void Shutdown() + { + base.Shutdown(); + + CommandBinds.Unregister(); + } + + private void ToggleStanding(ICommonSession? session) + { + if (session is not { AttachedEntity: { Valid: true } uid } _ + || !Exists(uid) + || !HasComp(session.AttachedEntity) + || _gravity.IsWeightless(session.AttachedEntity.Value)) + return; + + RaiseNetworkEvent(new ChangeLayingDownEvent()); + } + + private void HandleCrawlUnderRequest(ICommonSession? session) + { + if (session == null + || session.AttachedEntity is not { } uid + || !TryComp(uid, out var standingState) + || !TryComp(uid, out var layingDown) + || !_actionBlocker.CanInteract(uid, null)) + return; + + var newState = !layingDown.IsCrawlingUnder; + if (standingState.CurrentState is StandingState.Standing) + newState = false; // If the entity is already standing, this function only serves a fallback method to fix its draw depth + + // Do not allow to begin crawling under if it's disabled in config. We still, however, allow to stop it, as a failsafe. + if (newState && !_config.GetCVar(CCVars.CrawlUnderTables)) + { + _popups.PopupEntity(Loc.GetString("crawling-under-tables-disabled-popup"), uid, session); + return; + } + + layingDown.IsCrawlingUnder = newState; + _speed.RefreshMovementSpeedModifiers(uid); + Dirty(uid, layingDown); + } + + private void OnChangeState(ChangeLayingDownEvent ev, EntitySessionEventArgs args) + { + if (!args.SenderSession.AttachedEntity.HasValue) + return; + + var uid = args.SenderSession.AttachedEntity.Value; + if (!TryComp(uid, out StandingStateComponent? standing) + || !TryComp(uid, out LayingDownComponent? layingDown)) + return; + + RaiseNetworkEvent(new CheckAutoGetUpEvent(GetNetEntity(uid))); + + if (HasComp(uid) + || !_mobState.IsAlive(uid)) + return; + + if (_standing.IsDown(uid, standing)) + TryStandUp(uid, layingDown, standing); + else + TryLieDown(uid, layingDown, standing); + } + + private void OnStandingUpDoAfter(EntityUid uid, StandingStateComponent component, StandingUpDoAfterEvent args) + { + if (args.Handled || args.Cancelled + || HasComp(uid) + || _mobState.IsIncapacitated(uid) + || !_standing.Stand(uid)) + component.CurrentState = StandingState.Lying; + + component.CurrentState = StandingState.Standing; + } + + private void OnRefreshMovementSpeed(EntityUid uid, + LayingDownComponent component, + RefreshMovementSpeedModifiersEvent args) + { + if (!_standing.IsDown(uid)) + return; + + var modifier = component.LyingSpeedModifier * + (component.IsCrawlingUnder ? component.CrawlingUnderSpeedModifier : 1); + args.ModifySpeed(modifier, modifier); + } + + private void OnParentChanged(EntityUid uid, LayingDownComponent component, EntParentChangedMessage args) + { + // If the entity is not on a grid, try to make it stand up to avoid issues + if (!TryComp(uid, out var standingState) + || standingState.CurrentState is StandingState.Standing + || Transform(uid).GridUid != null) + return; + + _standing.Stand(uid, standingState); + } + + public bool TryStandUp(EntityUid uid, + LayingDownComponent? layingDown = null, + StandingStateComponent? standingState = null) + { + if (!Resolve(uid, ref standingState, false) + || !Resolve(uid, ref layingDown, false) + || standingState.CurrentState is not StandingState.Lying + || !_mobState.IsAlive(uid) + || TerminatingOrDeleted(uid)) + return false; + + var args = new DoAfterArgs(EntityManager, uid, layingDown.StandingUpTime, new StandingUpDoAfterEvent(), uid) + { + BreakOnHandChange = false, + RequireCanInteract = false + }; + + if (!_doAfter.TryStartDoAfter(args)) + return false; + + standingState.CurrentState = StandingState.GettingUp; + layingDown.IsCrawlingUnder = false; + return true; + } + + public bool TryLieDown(EntityUid uid, + LayingDownComponent? layingDown = null, + StandingStateComponent? standingState = null, + DropHeldItemsBehavior behavior = DropHeldItemsBehavior.NoDrop) + { + if (!Resolve(uid, ref standingState, false) + || !Resolve(uid, ref layingDown, false) + || standingState.CurrentState is not StandingState.Standing) + { + if (behavior == DropHeldItemsBehavior.AlwaysDrop) + RaiseLocalEvent(uid, new DropHandItemsEvent()); + + return false; + } + + _standing.Down(uid, true, behavior != DropHeldItemsBehavior.NoDrop, standingState, setDrawDepth: true); + return true; + } + + // WWDP + public void LieDownInRange(EntityUid uid, EntityCoordinates coords, float range = 0.4f) + { + var ents = new HashSet>(); + _lookup.GetEntitiesInRange(coords, range, ents); + + foreach (var ent in ents.Where(ent => ent.Owner != uid)) + { + TryLieDown(ent, behavior: DropHeldItemsBehavior.DropIfStanding); + } + } +} + +[Serializable, NetSerializable] +public sealed partial class StandingUpDoAfterEvent : SimpleDoAfterEvent; + +public enum DropHeldItemsBehavior : byte +{ + NoDrop, + DropIfStanding, + AlwaysDrop +} diff --git a/Content.Shared/Standing/StandingStateComponent.cs b/Content.Shared/Standing/StandingStateComponent.cs index 3a7cb2a008..5b9759a025 100644 --- a/Content.Shared/Standing/StandingStateComponent.cs +++ b/Content.Shared/Standing/StandingStateComponent.cs @@ -6,14 +6,11 @@ namespace Content.Shared.Standing; [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class StandingStateComponent : Component { - [ViewVariables(VVAccess.ReadWrite)] [DataField] public SoundSpecifier DownSound { get; private set; } = new SoundCollectionSpecifier("BodyFall"); - // WD EDIT START [DataField, AutoNetworkedField] public StandingState CurrentState { get; set; } = StandingState.Standing; - // WD EDIT END [DataField, AutoNetworkedField] public bool Standing { get; set; } = true; @@ -25,11 +22,10 @@ public sealed partial class StandingStateComponent : Component [DataField, AutoNetworkedField] public List ChangedFixtures = new(); } -// WD EDIT START + public enum StandingState { Lying, GettingUp, Standing, } -// WD EDIT END diff --git a/Content.Shared/Standing/StandingStateSystem.cs b/Content.Shared/Standing/StandingStateSystem.cs index 212e1d06d1..5abbf53f1b 100644 --- a/Content.Shared/Standing/StandingStateSystem.cs +++ b/Content.Shared/Standing/StandingStateSystem.cs @@ -1,5 +1,7 @@ using Content.Shared.Buckle; using Content.Shared.Buckle.Components; +using Content.Shared.Climbing.Systems; +using Content.Shared.Climbing.Components; using Content.Shared.Hands.Components; using Content.Shared.Movement.Systems; using Content.Shared.Physics; @@ -7,172 +9,179 @@ using Robust.Shared.Audio.Systems; using Robust.Shared.Physics; using Robust.Shared.Physics.Systems; +using System.Linq; -namespace Content.Shared.Standing +namespace Content.Shared.Standing; + +public sealed class StandingStateSystem : EntitySystem { - public sealed class StandingStateSystem : EntitySystem + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedPhysicsSystem _physics = default!; + [Dependency] private readonly MovementSpeedModifierSystem _movement = default!; + [Dependency] private readonly SharedBuckleSystem _buckle = default!; + [Dependency] private readonly EntityLookupSystem _lookup = default!; + [Dependency] private readonly ClimbSystem _climb = default!; + + // If StandingCollisionLayer value is ever changed to more than one layer, the logic needs to be edited. + private const int StandingCollisionLayer = (int)CollisionGroup.MidImpassable; + + public bool IsDown(EntityUid uid, StandingStateComponent? standingState = null) { - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SharedPhysicsSystem _physics = default!; - [Dependency] private readonly MovementSpeedModifierSystem _movement = default!; // WD EDIT - [Dependency] private readonly SharedBuckleSystem _buckle = default!; // WD EDIT + if (!Resolve(uid, ref standingState, false)) + return false; - // If StandingCollisionLayer value is ever changed to more than one layer, the logic needs to be edited. - private const int StandingCollisionLayer = (int) CollisionGroup.MidImpassable; + return standingState.CurrentState is StandingState.Lying or StandingState.GettingUp; + } - public bool IsDown(EntityUid uid, StandingStateComponent? standingState = null) - { - if (!Resolve(uid, ref standingState, false)) - return false; + public bool Down(EntityUid uid, bool playSound = true, bool dropHeldItems = true, + StandingStateComponent? standingState = null, + AppearanceComponent? appearance = null, + HandsComponent? hands = null, + bool setDrawDepth = false) + { + // TODO: This should actually log missing comps... + if (!Resolve(uid, ref standingState, false)) + return false; - return standingState.CurrentState is StandingState.Lying or StandingState.GettingUp; - } + // Optional component. + Resolve(uid, ref appearance, ref hands, false); - public bool Down(EntityUid uid, bool playSound = true, bool dropHeldItems = true, - StandingStateComponent? standingState = null, - AppearanceComponent? appearance = null, - HandsComponent? hands = null) - { - // TODO: This should actually log missing comps... - if (!Resolve(uid, ref standingState, false)) - return false; + if (standingState.CurrentState is StandingState.Lying or StandingState.GettingUp) + return true; + + // This is just to avoid most callers doing this manually saving boilerplate + // 99% of the time you'll want to drop items but in some scenarios (e.g. buckling) you don't want to. + // We do this BEFORE downing because something like buckle may be blocking downing but we want to drop hand items anyway + // and ultimately this is just to avoid boilerplate in Down callers + keep their behavior consistent. + if (dropHeldItems && hands != null) + RaiseLocalEvent(uid, new DropHandItemsEvent(), false); + + if (TryComp(uid, out BuckleComponent? buckle) && buckle.Buckled && !_buckle.TryUnbuckle(uid, uid, buckleComp: buckle)) + return false; - // Optional component. - Resolve(uid, ref appearance, ref hands, false); + var msg = new DownAttemptEvent(); + RaiseLocalEvent(uid, msg, false); - if (standingState.CurrentState is StandingState.Lying or StandingState.GettingUp) - return true; + if (msg.Cancelled) + return false; - // This is just to avoid most callers doing this manually saving boilerplate - // 99% of the time you'll want to drop items but in some scenarios (e.g. buckling) you don't want to. - // We do this BEFORE downing because something like buckle may be blocking downing but we want to drop hand items anyway - // and ultimately this is just to avoid boilerplate in Down callers + keep their behavior consistent. - if (dropHeldItems && hands != null) + standingState.CurrentState = StandingState.Lying; + Dirty(standingState); + RaiseLocalEvent(uid, new DownedEvent(), false); + + // Seemed like the best place to put it + _appearance.SetData(uid, RotationVisuals.RotationState, RotationState.Horizontal, appearance); + + // Change collision masks to allow going under certain entities like flaps and tables + if (TryComp(uid, out FixturesComponent? fixtureComponent)) + foreach (var (key, fixture) in fixtureComponent.Fixtures) { - RaiseLocalEvent(uid, new DropHandItemsEvent(), false); - } + if ((fixture.CollisionMask & StandingCollisionLayer) == 0) + continue; - if (TryComp(uid, out BuckleComponent? buckle) && buckle.Buckled && !_buckle.TryUnbuckle(uid, uid, buckleComp: buckle)) // WD EDIT - return false; + standingState.ChangedFixtures.Add(key); + _physics.SetCollisionMask(uid, key, fixture, fixture.CollisionMask & ~StandingCollisionLayer, manager: fixtureComponent); + } - var msg = new DownAttemptEvent(); - RaiseLocalEvent(uid, msg, false); + // check if component was just added or streamed to client + // if true, no need to play sound - mob was down before player could seen that + if (standingState.LifeStage <= ComponentLifeStage.Starting) + return true; - if (msg.Cancelled) - return false; + if (playSound) + _audio.PlayPredicted(standingState.DownSound, uid, null); - standingState.CurrentState = StandingState.Lying; - Dirty(standingState); - RaiseLocalEvent(uid, new DownedEvent(), false); + _movement.RefreshMovementSpeedModifiers(uid); - // Seemed like the best place to put it - _appearance.SetData(uid, RotationVisuals.RotationState, RotationState.Horizontal, appearance); + Climb(uid); - // Change collision masks to allow going under certain entities like flaps and tables - if (TryComp(uid, out FixturesComponent? fixtureComponent)) - { - foreach (var (key, fixture) in fixtureComponent.Fixtures) - { - if ((fixture.CollisionMask & StandingCollisionLayer) == 0) - continue; - - standingState.ChangedFixtures.Add(key); - _physics.SetCollisionMask(uid, key, fixture, fixture.CollisionMask & ~StandingCollisionLayer, manager: fixtureComponent); - } - } + return true; + } - // check if component was just added or streamed to client - // if true, no need to play sound - mob was down before player could seen that - if (standingState.LifeStage <= ComponentLifeStage.Starting) - return true; + public bool Stand(EntityUid uid, + StandingStateComponent? standingState = null, + AppearanceComponent? appearance = null, + bool force = false) + { + // TODO: This should actually log missing comps... + if (!Resolve(uid, ref standingState, false)) + return false; - if (playSound) - { - _audio.PlayPredicted(standingState.DownSound, uid, null); - } + // Optional component. + Resolve(uid, ref appearance, false); - _movement.RefreshMovementSpeedModifiers(uid); // WD EDIT + if (standingState.CurrentState is StandingState.Standing + || TryComp(uid, out BuckleComponent? buckle) + && buckle.Buckled && !_buckle.TryUnbuckle(uid, uid, buckleComp: buckle)) return true; - } - public bool Stand(EntityUid uid, - StandingStateComponent? standingState = null, - AppearanceComponent? appearance = null, - bool force = false) + if (!force) { - // TODO: This should actually log missing comps... - if (!Resolve(uid, ref standingState, false)) - return false; - - // Optional component. - Resolve(uid, ref appearance, false); - - if (standingState.CurrentState is StandingState.Standing) - return true; + var msg = new StandAttemptEvent(); + RaiseLocalEvent(uid, msg, false); - if (TryComp(uid, out BuckleComponent? buckle) && buckle.Buckled && !_buckle.TryUnbuckle(uid, uid, buckleComp: buckle)) // WD EDIT + if (msg.Cancelled) return false; + } - if (!force) - { - var msg = new StandAttemptEvent(); - RaiseLocalEvent(uid, msg, false); - - if (msg.Cancelled) - return false; - } + standingState.CurrentState = StandingState.Standing; - standingState.CurrentState = StandingState.Standing; - Dirty(uid, standingState); - RaiseLocalEvent(uid, new StoodEvent(), false); + Dirty(uid, standingState); + RaiseLocalEvent(uid, new StoodEvent(), false); - _appearance.SetData(uid, RotationVisuals.RotationState, RotationState.Vertical, appearance); + _appearance.SetData(uid, RotationVisuals.RotationState, RotationState.Vertical, appearance); - if (TryComp(uid, out FixturesComponent? fixtureComponent)) + if (TryComp(uid, out FixturesComponent? fixtureComponent)) + { + foreach (var key in standingState.ChangedFixtures) { - foreach (var key in standingState.ChangedFixtures) - { - if (fixtureComponent.Fixtures.TryGetValue(key, out var fixture)) - _physics.SetCollisionMask(uid, key, fixture, fixture.CollisionMask | StandingCollisionLayer, fixtureComponent); - } + if (fixtureComponent.Fixtures.TryGetValue(key, out var fixture)) + _physics.SetCollisionMask(uid, key, fixture, fixture.CollisionMask | StandingCollisionLayer, fixtureComponent); } - standingState.ChangedFixtures.Clear(); - _movement.RefreshMovementSpeedModifiers(uid); // WD EDIT - - return true; } - } + standingState.ChangedFixtures.Clear(); + _movement.RefreshMovementSpeedModifiers(uid); - public sealed class DropHandItemsEvent : EventArgs - { - } + Climb(uid); - /// - /// Subscribe if you can potentially block a down attempt. - /// - public sealed class DownAttemptEvent : CancellableEntityEventArgs - { + return true; } - /// - /// Subscribe if you can potentially block a stand attempt. - /// - public sealed class StandAttemptEvent : CancellableEntityEventArgs + private void Climb(EntityUid uid) { - } + _climb.ForciblyStopClimbing(uid); - /// - /// Raised when an entity becomes standing - /// - public sealed class StoodEvent : EntityEventArgs - { - } + var entityDistances = new Dictionary(); - /// - /// Raised when an entity is not standing - /// - public sealed class DownedEvent : EntityEventArgs - { + foreach (var entity in _lookup.GetEntitiesInRange(uid, 0.3f)) + if (HasComp(entity)) + entityDistances[entity] = (Transform(uid).Coordinates.Position - Transform(entity).Coordinates.Position).LengthSquared(); + + if (entityDistances.Count > 0) + _climb.ForciblySetClimbing(uid, entityDistances.OrderBy(e => e.Value).First().Key); } } + + +public sealed class DropHandItemsEvent : EventArgs { } + +/// +/// Subscribe if you can potentially block a down attempt. +/// +public sealed class DownAttemptEvent : CancellableEntityEventArgs { } + +/// +/// Subscribe if you can potentially block a stand attempt. +/// +public sealed class StandAttemptEvent : CancellableEntityEventArgs { } + +/// +/// Raised when an entity becomes standing +/// +public sealed class StoodEvent : EntityEventArgs { } + +/// +/// Raised when an entity is not standing +/// +public sealed class DownedEvent : EntityEventArgs { } diff --git a/Content.Shared/Station/SharedStationSpawningSystem.cs b/Content.Shared/Station/SharedStationSpawningSystem.cs index 56a8a846b0..e889b5c974 100644 --- a/Content.Shared/Station/SharedStationSpawningSystem.cs +++ b/Content.Shared/Station/SharedStationSpawningSystem.cs @@ -1,6 +1,8 @@ +using System.Linq; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.Inventory; +using Content.Shared.Preferences.Loadouts; using Content.Shared.Roles; using Content.Shared.Storage; using Content.Shared.Storage.EntitySystems; @@ -17,12 +19,24 @@ public abstract class SharedStationSpawningSystem : EntitySystem [Dependency] private readonly SharedStorageSystem _storage = default!; [Dependency] private readonly SharedTransformSystem _xformSystem = default!; + private EntityQuery _handsQuery; + private EntityQuery _inventoryQuery; + private EntityQuery _storageQuery; + private EntityQuery _xformQuery; + + public override void Initialize() + { + base.Initialize(); + _handsQuery = GetEntityQuery(); + _inventoryQuery = GetEntityQuery(); + _storageQuery = GetEntityQuery(); + _xformQuery = GetEntityQuery(); + } + /// - /// Equips starting gear onto the given entity. + /// /// - /// Entity to load out. - /// Starting gear to use. - public void EquipStartingGear(EntityUid entity, ProtoId? startingGear) + public void EquipStartingGear(EntityUid entity, ProtoId? startingGear, bool raiseEvent = true) { PrototypeManager.TryIndex(startingGear, out var gearProto); EquipStartingGear(entity, gearProto); @@ -33,11 +47,14 @@ public void EquipStartingGear(EntityUid entity, ProtoId? /// /// Entity to load out. /// Starting gear to use. - public void EquipStartingGear(EntityUid entity, StartingGearPrototype? startingGear) + /// Should we raise the event for equipped. Set to false if you will call this manually + public void EquipStartingGear(EntityUid entity, StartingGearPrototype? startingGear, bool raiseEvent = true) { if (startingGear == null) return; + var xform = _xformQuery.GetComponent(entity); + if (InventorySystem.TryGetSlots(entity, out var slotDefinitions)) { foreach (var slot in slotDefinitions) @@ -46,16 +63,15 @@ public void EquipStartingGear(EntityUid entity, StartingGearPrototype? startingG if (string.IsNullOrEmpty(equipmentStr)) continue; - var equipmentEntity = EntityManager.SpawnEntity(equipmentStr, EntityManager.GetComponent(entity).Coordinates); + var equipmentEntity = EntityManager.SpawnEntity(equipmentStr, xform.Coordinates); InventorySystem.TryEquip(entity, equipmentEntity, slot.Name, true, force:true); } - } - if (TryComp(entity, out HandsComponent? handsComponent)) + if (_handsQuery.TryComp(entity, out var handsComponent)) { var inhand = startingGear.Inhand; - var coords = EntityManager.GetComponent(entity).Coordinates; + var coords = xform.Coordinates; foreach (var prototype in inhand) { var inhandEntity = EntityManager.SpawnEntity(prototype, coords); @@ -72,7 +88,7 @@ public void EquipStartingGear(EntityUid entity, StartingGearPrototype? startingG { var coords = _xformSystem.GetMapCoordinates(entity); var ents = new ValueList(); - TryComp(entity, out InventoryComponent? inventoryComp); + _inventoryQuery.TryComp(entity, out var inventoryComp); foreach (var (slot, entProtos) in startingGear.Storage) { @@ -84,17 +100,22 @@ public void EquipStartingGear(EntityUid entity, StartingGearPrototype? startingG ents.Add(Spawn(ent, coords)); } - if (inventoryComp == null - || !InventorySystem.TryGetSlotEntity(entity, slot, out var slotEnt, - inventoryComponent: inventoryComp) - || !TryComp(slotEnt, out StorageComponent? storage)) - continue; - - foreach (var ent in ents) + if (inventoryComp != null && + InventorySystem.TryGetSlotEntity(entity, slot, out var slotEnt, inventoryComponent: inventoryComp) && + _storageQuery.TryComp(slotEnt, out var storage)) { - _storage.Insert(slotEnt.Value, ent, out _, storageComp: storage, playSound: false); + foreach (var ent in ents) + { + _storage.Insert(slotEnt.Value, ent, out _, storageComp: storage, playSound: false); + } } } } + + if (raiseEvent) + { + var ev = new StartingGearEquippedEvent(entity); + RaiseLocalEvent(entity, ref ev, true); + } } } diff --git a/Content.Shared/StatusIcon/StatusIconPrototype.cs b/Content.Shared/StatusIcon/StatusIconPrototype.cs index b520b185de..c5a5fd8a2c 100644 --- a/Content.Shared/StatusIcon/StatusIconPrototype.cs +++ b/Content.Shared/StatusIcon/StatusIconPrototype.cs @@ -52,7 +52,7 @@ public int CompareTo(StatusIconData? other) /// but in new convenient prototype form! /// [Prototype("statusIcon")] -public sealed class StatusIconPrototype : StatusIconData, IPrototype, IInheritingPrototype +public sealed partial class StatusIconPrototype : StatusIconData, IPrototype, IInheritingPrototype { /// [ParentDataField(typeof(AbstractPrototypeIdArraySerializer))] diff --git a/Content.Shared/Stealth/SharedStealthSystem.cs b/Content.Shared/Stealth/SharedStealthSystem.cs index d0ea804534..1bab55589f 100644 --- a/Content.Shared/Stealth/SharedStealthSystem.cs +++ b/Content.Shared/Stealth/SharedStealthSystem.cs @@ -113,7 +113,7 @@ private void OnStealthHandleState(EntityUid uid, StealthComponent component, ref private void OnMove(EntityUid uid, StealthOnMoveComponent component, ref MoveEvent args) { - if (args.FromStateHandling) + if (_timing.ApplyingState) return; if (args.NewPosition.EntityId != args.OldPosition.EntityId) diff --git a/Content.Shared/StepTrigger/Components/ClothingRequiredStepTriggerComponent.cs b/Content.Shared/StepTrigger/Components/ClothingRequiredStepTriggerComponent.cs new file mode 100644 index 0000000000..9efd78d082 --- /dev/null +++ b/Content.Shared/StepTrigger/Components/ClothingRequiredStepTriggerComponent.cs @@ -0,0 +1,10 @@ +using Content.Shared.Inventory; +using Robust.Shared.GameStates; + +namespace Content.Shared.StepTrigger.Components; + +/// +/// This is used for marking step trigger events that require the user to wear shoes, such as for glass shards. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ClothingRequiredStepTriggerComponent : Component; diff --git a/Content.Shared/StepTrigger/Components/ClothingRequiredStepTriggerImmuneComponent.cs b/Content.Shared/StepTrigger/Components/ClothingRequiredStepTriggerImmuneComponent.cs new file mode 100644 index 0000000000..dc76207828 --- /dev/null +++ b/Content.Shared/StepTrigger/Components/ClothingRequiredStepTriggerImmuneComponent.cs @@ -0,0 +1,16 @@ +using Content.Shared.Inventory; +using Content.Shared.StepTrigger.Systems; +using Robust.Shared.GameStates; + +namespace Content.Shared.StepTrigger.Components; + +/// +/// This is used for cancelling step trigger events if the user is wearing clothing in a valid slot. +/// +[RegisterComponent, NetworkedComponent] +[Access(typeof(StepTriggerImmuneSystem))] +public sealed partial class ClothingRequiredStepTriggerImmuneComponent : Component, IClothingSlots +{ + [DataField] + public SlotFlags Slots { get; set; } = SlotFlags.FEET; +} diff --git a/Content.Shared/StepTrigger/Components/ShoesRequiredStepTriggerComponent.cs b/Content.Shared/StepTrigger/Components/ShoesRequiredStepTriggerComponent.cs deleted file mode 100644 index dd95b94a7e..0000000000 --- a/Content.Shared/StepTrigger/Components/ShoesRequiredStepTriggerComponent.cs +++ /dev/null @@ -1,11 +0,0 @@ -using Robust.Shared.GameStates; - -namespace Content.Shared.StepTrigger.Components; - -/// -/// This is used for cancelling step trigger events if the user is wearing shoes, such as for glass shards. -/// -[RegisterComponent, NetworkedComponent] -public sealed partial class ShoesRequiredStepTriggerComponent : Component -{ -} diff --git a/Content.Shared/StepTrigger/Components/StepTriggerComponent.cs b/Content.Shared/StepTrigger/Components/StepTriggerComponent.cs index df0c1d7ea4..d12c2c983e 100644 --- a/Content.Shared/StepTrigger/Components/StepTriggerComponent.cs +++ b/Content.Shared/StepTrigger/Components/StepTriggerComponent.cs @@ -54,22 +54,18 @@ public sealed partial class StepTriggerComponent : Component public bool IgnoreWeightless; /// - /// Does this have separate "StepOn" and "StepOff" triggers. + /// Does this have separate "StepOn" and "StepOff" triggers. /// [DataField, AutoNetworkedField] public bool StepOn = false; /// - /// If TriggerGroups is specified, it will check StepTriggerImmunityComponent to have the same TriggerType to activate immunity + /// If TriggerGroups is specified, it will check StepTriggerImmunityComponent to have the same TriggerType to activate immunity /// - // WD EDIT [DataField] public StepTriggerGroup? TriggerGroups; } [RegisterComponent] [Access(typeof(StepTriggerSystem))] -public sealed partial class StepTriggerActiveComponent : Component -{ - -} +public sealed partial class StepTriggerActiveComponent : Component { } diff --git a/Content.Shared/StepTrigger/Components/StepTriggerImmuneComponent.cs b/Content.Shared/StepTrigger/Components/StepTriggerImmuneComponent.cs index 2a91b4b62e..1b92905fa6 100644 --- a/Content.Shared/StepTrigger/Components/StepTriggerImmuneComponent.cs +++ b/Content.Shared/StepTrigger/Components/StepTriggerImmuneComponent.cs @@ -18,7 +18,7 @@ namespace Content.Shared.StepTrigger.Components; public sealed partial class StepTriggerImmuneComponent : Component { /// - /// WhiteList of immunity step triggers. + /// WhiteList of immunity step triggers. /// [DataField] public StepTriggerGroup? Whitelist; diff --git a/Content.Shared/StepTrigger/Prototypes/StepTriggerGroup.cs b/Content.Shared/StepTrigger/Prototypes/StepTriggerGroup.cs index 8863a5de61..5b64085e9a 100644 --- a/Content.Shared/StepTrigger/Prototypes/StepTriggerGroup.cs +++ b/Content.Shared/StepTrigger/Prototypes/StepTriggerGroup.cs @@ -1,77 +1,72 @@ -using Content.Shared.Damage.Prototypes; -using Content.Shared.StepTrigger.Components; -using Content.Shared.StepTrigger.Systems; +using Content.Shared.StepTrigger.Components; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; -namespace Content.Shared.StepTrigger.Prototypes +namespace Content.Shared.StepTrigger.Prototypes; + +/// +/// A group of +/// Used to determine StepTriggerTypes like Tags. +/// Used for better work with Immunity. +/// StepTriggerTypes in StepTriggerTypes.yml +/// +/// +/// stepTriggerGroups: +/// types: +/// - Lava +/// - Landmine +/// - Shard +/// - Chasm +/// - Mousetrap +/// - SlipTile +/// - SlipEntity +/// +[DataDefinition] +[Serializable, NetSerializable] +public sealed partial class StepTriggerGroup { + [DataField] + public List>? Types = null; + /// - /// A group of - /// Used to determine StepTriggerTypes like Tags. - /// Used for better work with Immunity. - /// StepTriggerTypes in StepTriggerTypes.yml - /// WD EDIT + /// Checks if types of this StepTriggerGroup is similar to types of AnotherGroup /// - /// - /// stepTriggerGroups: - /// types: - /// - Lava - /// - Landmine - /// - Shard - /// - Chasm - /// - Mousetrap - /// - SlipTile - /// - SlipEntity - /// - [DataDefinition] - [Serializable, NetSerializable] - public sealed partial class StepTriggerGroup + public bool IsValid(StepTriggerGroup? anotherGroup) { - [DataField] - public List>? Types = null; + if (Types is null) + return false; - /// - /// Checks if types of this StepTriggerGroup is similar to types of AnotherGroup - /// - public bool IsValid(StepTriggerGroup? AnotherGroup) + foreach (var type in Types) { - if (Types != null) - { - foreach (var type in Types) - { - if (AnotherGroup != null - && AnotherGroup.Types != null - && AnotherGroup.Types.Contains(type)) - return true; - } - } - return false; + if (anotherGroup != null + && anotherGroup.Types != null + && anotherGroup.Types.Contains(type)) + return true; } + return false; + } - /// - /// Checks validation (if types of this StepTriggerGroup are similar to types of - /// another StepTriggerComponent. - /// - public bool IsValid(StepTriggerComponent component) - { - if (component.TriggerGroups != null) - { - return IsValid(component.TriggerGroups); - } + /// + /// Checks validation (if types of this StepTriggerGroup are similar to types of + /// another StepTriggerComponent. + /// + public bool IsValid(StepTriggerComponent component) + { + if (component.TriggerGroups is null) return false; - } - /// - /// Checks validation (if types of this StepTriggerGroup are similar to types of - /// another StepTriggerImmuneComponent. - /// - public bool IsValid(StepTriggerImmuneComponent component) - { - if (component.Whitelist != null) - return IsValid(component.Whitelist); + return IsValid(component.TriggerGroups); + } + + /// + /// Checks validation (if types of this StepTriggerGroup are similar to types of + /// another StepTriggerImmuneComponent. + /// + public bool IsValid(StepTriggerImmuneComponent component) + { + if (component.Whitelist is null) return false; - } + + return IsValid(component.Whitelist); } } diff --git a/Content.Shared/StepTrigger/Prototypes/StepTriggerTypePrototype.cs b/Content.Shared/StepTrigger/Prototypes/StepTriggerTypePrototype.cs index 0142d2a453..732eb4b732 100644 --- a/Content.Shared/StepTrigger/Prototypes/StepTriggerTypePrototype.cs +++ b/Content.Shared/StepTrigger/Prototypes/StepTriggerTypePrototype.cs @@ -1,19 +1,15 @@ using Robust.Shared.Prototypes; -namespace Content.Shared.StepTrigger.Prototypes +namespace Content.Shared.StepTrigger.Prototypes; + +/// +/// Prototype representing a StepTriggerType in YAML. +/// Meant to only have an ID property, as that is the only thing that +/// gets saved in StepTriggerGroup. +/// +[Prototype] +public sealed partial class StepTriggerTypePrototype : IPrototype { - /// - /// Prototype representing a StepTriggerType in YAML. - /// Meant to only have an ID property, as that is the only thing that - /// gets saved in StepTriggerGroup. - /// - // WD EDIT - [Prototype("stepTriggerType")] - public sealed partial class StepTriggerTypePrototype : IPrototype - { - [ViewVariables] - [IdDataField] - public string ID { get; private set; } = default!; - } + [ViewVariables, IdDataField] + public string ID { get; private set; } = default!; } - diff --git a/Content.Shared/StepTrigger/Systems/ShoesRequiredStepTriggerSystem.cs b/Content.Shared/StepTrigger/Systems/ShoesRequiredStepTriggerSystem.cs deleted file mode 100644 index 5fc9140dfd..0000000000 --- a/Content.Shared/StepTrigger/Systems/ShoesRequiredStepTriggerSystem.cs +++ /dev/null @@ -1,41 +0,0 @@ -using Content.Shared.Examine; -using Content.Shared.Inventory; -using Content.Shared.StepTrigger.Components; -using Content.Shared.Tag; - -namespace Content.Shared.StepTrigger.Systems; - -public sealed class ShoesRequiredStepTriggerSystem : EntitySystem -{ - [Dependency] private readonly InventorySystem _inventory = default!; - [Dependency] private readonly TagSystem _tagSystem = default!; - - /// - public override void Initialize() - { - SubscribeLocalEvent(OnStepTriggerAttempt); - SubscribeLocalEvent(OnExamined); - } - - private void OnStepTriggerAttempt(EntityUid uid, ShoesRequiredStepTriggerComponent component, ref StepTriggerAttemptEvent args) - { - if (_tagSystem.HasTag(args.Tripper, "ShoesRequiredStepTriggerImmune")) - { - args.Cancelled = true; - return; - } - - if (!TryComp(args.Tripper, out var inventory)) - return; - - if (_inventory.TryGetSlotEntity(args.Tripper, "shoes", out _, inventory)) - { - args.Cancelled = true; - } - } - - private void OnExamined(EntityUid uid, ShoesRequiredStepTriggerComponent component, ExaminedEvent args) - { - args.PushMarkup(Loc.GetString("shoes-required-step-trigger-examine")); - } -} diff --git a/Content.Shared/StepTrigger/Systems/StepTriggerImmuneSystem.cs b/Content.Shared/StepTrigger/Systems/StepTriggerImmuneSystem.cs new file mode 100644 index 0000000000..ca72a20ae9 --- /dev/null +++ b/Content.Shared/StepTrigger/Systems/StepTriggerImmuneSystem.cs @@ -0,0 +1,37 @@ +using Content.Shared.Examine; +using Content.Shared.Inventory; +using Content.Shared.StepTrigger.Components; +using Content.Shared.Tag; + +namespace Content.Shared.StepTrigger.Systems; + +public sealed class StepTriggerImmuneSystem : EntitySystem +{ + [Dependency] private readonly InventorySystem _inventory = default!; + + /// + public override void Initialize() + { + SubscribeLocalEvent(OnStepTriggerAttempt); + SubscribeLocalEvent(OnStepTriggerClothingAttempt); + SubscribeLocalEvent(OnExamined); + } + + private void OnStepTriggerAttempt(Entity ent, ref StepTriggerAttemptEvent args) + { + args.Cancelled = true; + } + + private void OnStepTriggerClothingAttempt(EntityUid uid, ClothingRequiredStepTriggerComponent component, ref StepTriggerAttemptEvent args) + { + if (_inventory.TryGetInventoryEntity(args.Tripper, out _)) + { + args.Cancelled = true; + } + } + + private void OnExamined(EntityUid uid, ClothingRequiredStepTriggerComponent component, ExaminedEvent args) + { + args.PushMarkup(Loc.GetString("clothing-required-step-trigger-examine")); + } +} diff --git a/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs b/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs index d1ae0e9afb..d0cd5c4b4e 100644 --- a/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs +++ b/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs @@ -4,7 +4,6 @@ using Robust.Shared.Physics; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Events; -using Enumerable = System.Linq.Enumerable; namespace Content.Shared.StepTrigger.Systems; @@ -119,7 +118,6 @@ private void UpdateColliding(EntityUid uid, StepTriggerComponent component, Tran private bool CanTrigger(EntityUid uid, EntityUid otherUid, StepTriggerComponent component) { - // WD EDIT START if (!component.Active || component.CurrentlySteppedOn.Contains(otherUid)) return false; @@ -129,7 +127,6 @@ private bool CanTrigger(EntityUid uid, EntityUid otherUid, StepTriggerComponent && component.TriggerGroups != null && component.TriggerGroups.IsValid(stepTriggerImmuneComponent)) return false; - // WD EDIT END // Can't trigger if we don't ignore weightless entities // and the entity is flying or currently weightless diff --git a/Content.Shared/Storage/Components/SecretStashComponent.cs b/Content.Shared/Storage/Components/SecretStashComponent.cs index 8595f79ca5..07a1078f63 100644 --- a/Content.Shared/Storage/Components/SecretStashComponent.cs +++ b/Content.Shared/Storage/Components/SecretStashComponent.cs @@ -6,6 +6,7 @@ using Content.Shared.Tools; using Robust.Shared.GameStates; using Content.Shared.DoAfter; +using Content.Shared.Toilet.Components; using Robust.Shared.Serialization; namespace Content.Shared.Storage.Components diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 966ec02b80..f0d1ab7d17 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -2,14 +2,18 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; using Content.Shared.ActionBlocker; +using Content.Shared.Administration; +using Content.Shared.Administration.Managers; using Content.Shared.Containers.ItemSlots; -using Content.Shared.Coordinates; using Content.Shared.Destructible; using Content.Shared.DoAfter; +using Content.Shared.Ghost; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.Implants.Components; +using Content.Shared.Input; using Content.Shared.Interaction; +using Content.Shared.Inventory; using Content.Shared.Item; using Content.Shared.Lock; using Content.Shared.Nyanotrasen.Item.PseudoItem; @@ -23,10 +27,13 @@ using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.GameStates; +using Robust.Shared.Input.Binding; using Robust.Shared.Map; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Serialization; +using Robust.Shared.Utility; namespace Content.Shared.Storage.EntitySystems; @@ -34,6 +41,7 @@ public abstract class SharedStorageSystem : EntitySystem { [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] protected readonly IRobustRandom Random = default!; + [Dependency] private readonly ISharedAdminManager _admin = default!; [Dependency] protected readonly ActionBlockerSystem ActionBlocker = default!; [Dependency] private readonly EntityLookupSystem _entityLookupSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; @@ -42,6 +50,7 @@ public abstract class SharedStorageSystem : EntitySystem [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] protected readonly SharedEntityStorageSystem EntityStorage = default!; [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; + [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] protected readonly SharedItemSystem ItemSystem = default!; [Dependency] private readonly SharedPopupSystem _popupSystem = default!; [Dependency] private readonly SharedHandsSystem _sharedHandsSystem = default!; @@ -63,9 +72,17 @@ public abstract class SharedStorageSystem : EntitySystem public bool CheckingCanInsert; + private List _entList = new(); + private HashSet _entSet = new(); + private readonly List _sortedSizes = new(); private FrozenDictionary _nextSmallest = FrozenDictionary.Empty; + private const string QuickInsertUseDelayID = "quickInsert"; + private const string OpenUiUseDelayID = "storage"; + + protected readonly List CantFillReasons = []; + /// public override void Initialize() { @@ -76,6 +93,13 @@ public override void Initialize() _xformQuery = GetEntityQuery(); _prototype.PrototypesReloaded += OnPrototypesReloaded; + Subs.BuiEvents(StorageComponent.StorageUiKey.Key, subs => + { + subs.Event(OnBoundUIClosed); + }); + + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent>(AddUiVerb); SubscribeLocalEvent(OnStorageGetState); SubscribeLocalEvent(OnStorageHandleState); SubscribeLocalEvent(OnComponentInit, before: new[] { typeof(SharedContainerSystem) }); @@ -86,6 +110,7 @@ public override void Initialize() SubscribeLocalEvent(AfterInteract); SubscribeLocalEvent(OnDestroy); SubscribeLocalEvent(OnBoundUIOpen); + SubscribeLocalEvent(OnLockToggled); SubscribeLocalEvent(OnStackCountChanged); SubscribeLocalEvent(OnEntInserted); @@ -102,9 +127,20 @@ public override void Initialize() SubscribeLocalEvent(OnReclaimed); + CommandBinds.Builder + .Bind(ContentKeyFunctions.OpenBackpack, InputCmdHandler.FromDelegate(HandleOpenBackpack, handle: false)) + .Bind(ContentKeyFunctions.OpenBelt, InputCmdHandler.FromDelegate(HandleOpenBelt, handle: false)) + .Register(); + UpdatePrototypeCache(); } + private void OnMapInit(Entity entity, ref MapInitEvent args) + { + UseDelay.SetLength(entity.Owner, entity.Comp.QuickInsertCooldown, QuickInsertUseDelayID); + UseDelay.SetLength(entity.Owner, entity.Comp.OpenUiCooldown, OpenUiUseDelayID); + } + private void OnStorageGetState(EntityUid uid, StorageComponent component, ref ComponentGetState args) { var storedItems = new Dictionary(); @@ -117,7 +153,6 @@ private void OnStorageGetState(EntityUid uid, StorageComponent component, ref Co args.State = new StorageComponentState() { Grid = new List(component.Grid), - IsUiOpen = component.IsUiOpen, MaxItemSize = component.MaxItemSize, StoredItems = storedItems, SavedLocations = component.SavedLocations @@ -131,7 +166,6 @@ private void OnStorageHandleState(EntityUid uid, StorageComponent component, ref component.Grid.Clear(); component.Grid.AddRange(state.Grid); - component.IsUiOpen = state.IsUiOpen; component.MaxItemSize = state.MaxItemSize; component.StoredItems.Clear(); @@ -183,9 +217,108 @@ private void OnComponentInit(EntityUid uid, StorageComponent storageComp, Compon UpdateAppearance((uid, storageComp, null)); } - public virtual void UpdateUI(Entity entity) {} + /// + /// If the user has nested-UIs open (e.g., PDA UI open when pda is in a backpack), close them. + /// + private void CloseNestedInterfaces(EntityUid uid, EntityUid actor, StorageComponent? storageComp = null) + { + if (!Resolve(uid, ref storageComp)) + return; - public virtual void OpenStorageUI(EntityUid uid, EntityUid entity, StorageComponent? storageComp = null, bool silent = false) { } + // for each containing thing + // if it has a storage comp + // ensure unsubscribe from session + // if it has a ui component + // close ui + foreach (var entity in storageComp.Container.ContainedEntities) + { + _ui.CloseUis(entity, actor); + } + } + + private void OnBoundUIClosed(EntityUid uid, StorageComponent storageComp, BoundUIClosedEvent args) + { + CloseNestedInterfaces(uid, args.Actor, storageComp); + + // If UI is closed for everyone + if (!_ui.IsUiOpen(uid, args.UiKey)) + { + UpdateAppearance((uid, storageComp, null)); + Audio.PlayPredicted(storageComp.StorageCloseSound, uid, args.Actor); + } + } + + private void AddUiVerb(EntityUid uid, StorageComponent component, GetVerbsEvent args) + { + var silent = false; + if (!args.CanAccess || !args.CanInteract || TryComp(uid, out var lockComponent) && lockComponent.Locked) + { + // we allow admins to open the storage anyways + if (!_admin.HasAdminFlag(args.User, AdminFlags.Admin)) + return; + + silent = true; + } + + silent |= HasComp(args.User); + + // Does this player currently have the storage UI open? + var uiOpen = _ui.IsUiOpen(uid, StorageComponent.StorageUiKey.Key, args.User); + + ActivationVerb verb = new() + { + Act = () => + { + if (uiOpen) + { + _ui.CloseUi(uid, StorageComponent.StorageUiKey.Key, args.User); + } + else + { + OpenStorageUI(uid, args.User, component, silent); + } + } + }; + + if (uiOpen) + { + verb.Text = Loc.GetString("comp-storage-verb-close-storage"); + verb.Icon = new SpriteSpecifier.Texture( + new("/Textures/Interface/VerbIcons/close.svg.192dpi.png")); + } + else + { + verb.Text = Loc.GetString("comp-storage-verb-open-storage"); + verb.Icon = new SpriteSpecifier.Texture( + new("/Textures/Interface/VerbIcons/open.svg.192dpi.png")); + } + args.Verbs.Add(verb); + } + + /// + /// Opens the storage UI for an entity + /// + /// The entity to open the UI for + public void OpenStorageUI(EntityUid uid, EntityUid entity, StorageComponent? storageComp = null, bool silent = false) + { + if (!Resolve(uid, ref storageComp, false)) + return; + + // prevent spamming bag open / honkerton honk sound + silent |= TryComp(uid, out var useDelay) && UseDelay.IsDelayed((uid, useDelay)); + if (!silent) + { + if (!_ui.IsUiOpen(uid, StorageComponent.StorageUiKey.Key)) + Audio.PlayPredicted(storageComp.StorageOpenSound, uid, entity); + + if (useDelay != null) + UseDelay.TryResetDelay((uid, useDelay)); + } + + _ui.OpenUi(uid, StorageComponent.StorageUiKey.Key, entity); + } + + public virtual void UpdateUI(Entity entity) {} private void AddTransferVerbs(EntityUid uid, StorageComponent component, GetVerbsEvent args) { @@ -239,7 +372,16 @@ private void OnActivate(EntityUid uid, StorageComponent storageComp, ActivateInW if (args.Handled || TryComp(uid, out var lockComponent) && lockComponent.Locked) return; - OpenStorageUI(uid, args.User, storageComp); + // Toggle + if (_ui.IsUiOpen(uid, StorageComponent.StorageUiKey.Key, args.User)) + { + _ui.CloseUi(uid, StorageComponent.StorageUiKey.Key, args.User); + } + else + { + OpenStorageUI(uid, args.User, storageComp); + } + args.Handled = true; } @@ -262,36 +404,40 @@ private void OnImplantActivate(EntityUid uid, StorageComponent storageComp, Open /// private void AfterInteract(EntityUid uid, StorageComponent storageComp, AfterInteractEvent args) { - if (args.Handled || !args.CanReach) + if (args.Handled || !args.CanReach || !UseDelay.TryResetDelay(uid, checkDelayed: true, id: QuickInsertUseDelayID)) return; // Pick up all entities in a radius around the clicked location. // The last half of the if is because carpets exist and this is terrible if (storageComp.AreaInsert && (args.Target == null || !HasComp(args.Target.Value))) { - var validStorables = new List(); + _entList.Clear(); + _entSet.Clear(); + _entityLookupSystem.GetEntitiesInRange(args.ClickLocation, storageComp.AreaInsertRadius, _entSet, LookupFlags.Dynamic | LookupFlags.Sundries); var delay = 0f; - foreach (var entity in _entityLookupSystem.GetEntitiesInRange(args.ClickLocation, storageComp.AreaInsertRadius, LookupFlags.Dynamic | LookupFlags.Sundries)) + foreach (var entity in _entSet) { if (entity == args.User - // || !_itemQuery.HasComponent(entity) - || !TryComp(entity, out var itemComp) // Need comp to get item size to get weight + || !_itemQuery.TryGetComponent(entity, out var itemComp) // Need comp to get item size to get weight || !_prototype.TryIndex(itemComp.Size, out var itemSize) - || !CanInsert(uid, entity, out _, storageComp) + || !CanInsert(uid, entity, out _, storageComp, item: itemComp) || !_interactionSystem.InRangeUnobstructed(args.User, entity)) { continue; } - validStorables.Add(entity); + _entList.Add(entity); delay += itemSize.Weight * AreaInsertDelayPerItem; + + if (_entList.Count >= StorageComponent.AreaPickupLimit) + break; } //If there's only one then let's be generous - if (validStorables.Count > 1) + if (_entList.Count > 1) { - var doAfterArgs = new DoAfterArgs(EntityManager, args.User, delay, new AreaPickupDoAfterEvent(GetNetEntityList(validStorables)), uid, target: uid) + var doAfterArgs = new DoAfterArgs(EntityManager, args.User, delay, new AreaPickupDoAfterEvent(GetNetEntityList(_entList)), uid, target: uid) { BreakOnDamage = true, BreakOnUserMove = true, @@ -313,7 +459,7 @@ private void AfterInteract(EntityUid uid, StorageComponent storageComp, AfterInt if (_containerSystem.IsEntityInContainer(target) || target == args.User - || !HasComp(target)) + || !_itemQuery.HasComponent(target)) { return; } @@ -331,10 +477,10 @@ private void AfterInteract(EntityUid uid, StorageComponent storageComp, AfterInt args.Handled = true; if (PlayerInsertEntityInWorld((uid, storageComp), args.User, target)) { - RaiseNetworkEvent(new AnimateInsertingEntitiesEvent(GetNetEntity(uid), + EntityManager.RaiseSharedEvent(new AnimateInsertingEntitiesEvent(GetNetEntity(uid), new List { GetNetEntity(target) }, new List { GetNetCoordinates(position) }, - new List { transformOwner.LocalRotation })); + new List { transformOwner.LocalRotation }), args.User); } } } @@ -349,20 +495,27 @@ private void OnDoAfter(EntityUid uid, StorageComponent component, AreaPickupDoAf var successfullyInserted = new List(); var successfullyInsertedPositions = new List(); var successfullyInsertedAngles = new List(); - _xformQuery.TryGetComponent(uid, out var xform); - foreach (var netEntity in args.Entities) + if (!_xformQuery.TryGetComponent(uid, out var xform)) + { + return; + } + + var entCount = Math.Min(StorageComponent.AreaPickupLimit, args.Entities.Count); + + for (var i = 0; i < entCount; i++) { - var entity = GetEntity(netEntity); + var entity = GetEntity(args.Entities[i]); // Check again, situation may have changed for some entities, but we'll still pick up any that are valid if (_containerSystem.IsEntityInContainer(entity) || entity == args.Args.User || !_itemQuery.HasComponent(entity)) + { continue; + } - if (xform == null || - !_xformQuery.TryGetComponent(entity, out var targetXform) || + if (!_xformQuery.TryGetComponent(entity, out var targetXform) || targetXform.MapID != xform.MapID) { continue; @@ -387,12 +540,12 @@ 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.PlayPvs(component.StorageInsertSound, uid); - RaiseNetworkEvent(new AnimateInsertingEntitiesEvent( + Audio.PlayPredicted(component.StorageInsertSound, uid, args.User); + EntityManager.RaiseSharedEvent(new AnimateInsertingEntitiesEvent( GetNetEntity(uid), GetNetEntityList(successfullyInserted), GetNetCoordinatesList(successfullyInsertedPositions), - successfullyInsertedAngles)); + successfullyInsertedAngles), args.User); } args.Handled = true; @@ -427,8 +580,7 @@ private void OnInteractWithItem(StorageInteractWithItemEvent msg, EntitySessionE if (!TryComp(uid, out var storageComp)) return; - if (!_ui.TryGetUi(uid, StorageComponent.StorageUiKey.Key, out var bui) || - !bui.SubscribedSessions.Contains(args.SenderSession)) + if (!_ui.IsUiOpen(uid, StorageComponent.StorageUiKey.Key, player)) return; if (!Exists(entity)) @@ -470,8 +622,7 @@ private void OnSetItemLocation(StorageSetItemLocationEvent msg, EntitySessionEve if (!TryComp(storageEnt, out var storageComp)) return; - if (!_ui.TryGetUi(storageEnt, StorageComponent.StorageUiKey.Key, out var bui) || - !bui.SubscribedSessions.Contains(args.SenderSession)) + if (!_ui.IsUiOpen(storageEnt, StorageComponent.StorageUiKey.Key, player)) return; if (!Exists(itemEnt)) @@ -497,8 +648,7 @@ private void OnRemoveItem(StorageRemoveItemEvent msg, EntitySessionEventArgs arg if (!TryComp(storageEnt, out var storageComp)) return; - if (!_ui.TryGetUi(storageEnt, StorageComponent.StorageUiKey.Key, out var bui) || - !bui.SubscribedSessions.Contains(args.SenderSession)) + if (!_ui.IsUiOpen(storageEnt, StorageComponent.StorageUiKey.Key, player)) return; if (!Exists(itemEnt)) @@ -525,8 +675,7 @@ private void OnInsertItemIntoLocation(StorageInsertItemIntoLocationEvent msg, En if (!TryComp(storageEnt, out var storageComp)) return; - if (!_ui.TryGetUi(storageEnt, StorageComponent.StorageUiKey.Key, out var bui) || - !bui.SubscribedSessions.Contains(args.SenderSession)) + if (!_ui.IsUiOpen(storageEnt, StorageComponent.StorageUiKey.Key, player)) return; if (!Exists(itemEnt)) @@ -551,11 +700,10 @@ private void OnSaveItemLocation(StorageSaveItemLocationEvent msg, EntitySessionE var storage = GetEntity(msg.Storage); var item = GetEntity(msg.Item); - if (!TryComp(storage, out var storageComp)) + if (!HasComp(storage)) return; - if (!_ui.TryGetUi(storage, StorageComponent.StorageUiKey.Key, out var bui) || - !bui.SubscribedSessions.Contains(args.SenderSession)) + if (!_ui.IsUiOpen(storage, StorageComponent.StorageUiKey.Key, player)) return; if (!Exists(item)) @@ -572,11 +720,7 @@ private void OnSaveItemLocation(StorageSaveItemLocationEvent msg, EntitySessionE private void OnBoundUIOpen(EntityUid uid, StorageComponent storageComp, BoundUIOpenedEvent args) { - if (!storageComp.IsUiOpen) - { - storageComp.IsUiOpen = true; - UpdateAppearance((uid, storageComp, null)); - } + UpdateAppearance((uid, storageComp, null)); } private void OnEntInserted(Entity entity, ref EntInsertedIntoContainerMessage args) @@ -629,8 +773,15 @@ private void OnInsertAttempt(EntityUid uid, StorageComponent component, Containe if (CheckingCanInsert) return; - if (!CanInsert(uid, args.EntityUid, out _, component, ignoreStacks: true)) + if (!CanInsert(uid, args.EntityUid, out var reason, component, ignoreStacks: true)) + { +#if DEBUG + if (reason != null) + CantFillReasons.Add(reason); +#endif + args.Cancel(); + } } public void UpdateAppearance(Entity entity) @@ -647,11 +798,13 @@ public void UpdateAppearance(Entity ent var capacity = storage.Grid.GetArea(); var used = GetCumulativeItemAreas((uid, storage)); + var isOpen = _ui.IsUiOpen(entity.Owner, StorageComponent.StorageUiKey.Key); + _appearance.SetData(uid, StorageVisuals.StorageUsed, used, appearance); _appearance.SetData(uid, StorageVisuals.Capacity, capacity, appearance); - _appearance.SetData(uid, StorageVisuals.Open, storage.IsUiOpen, appearance); - _appearance.SetData(uid, SharedBagOpenVisuals.BagState, storage.IsUiOpen ? SharedBagState.Open : SharedBagState.Closed, appearance); - _appearance.SetData(uid, StackVisuals.Hide, !storage.IsUiOpen, appearance); + _appearance.SetData(uid, StorageVisuals.Open, isOpen, appearance); + _appearance.SetData(uid, SharedBagOpenVisuals.BagState, isOpen ? SharedBagState.Open : SharedBagState.Closed, appearance); + _appearance.SetData(uid, StackVisuals.Hide, !isOpen, appearance); } /// @@ -1076,7 +1229,7 @@ public void SaveItemLocation(Entity ent, Entity uid) return _nextSmallest[item.Size]; } + /// + /// Checks if a storage's UI is open by anyone when locked, and closes it unless they're an admin. + /// + private void OnLockToggled(EntityUid uid, StorageComponent component, ref LockToggledEvent args) + { + if (!args.Locked) + return; + + // Gets everyone looking at the UI + foreach (var actor in _ui.GetActors(uid, StorageComponent.StorageUiKey.Key).ToList()) + { + if (_admin.HasAdminFlag(actor, AdminFlags.Admin)) + continue; + + // And closes it unless they're an admin + _ui.CloseUi(uid, StorageComponent.StorageUiKey.Key, actor); + } + } + private void OnStackCountChanged(EntityUid uid, MetaDataComponent component, StackCountChangedEvent args) { if (_containerSystem.TryGetContainingContainer(uid, out var container, component) && @@ -1263,6 +1435,40 @@ private void OnStackCountChanged(EntityUid uid, MetaDataComponent component, Sta } } + private void HandleOpenBackpack(ICommonSession? session) + { + HandleOpenSlotUI(session, "back"); + } + + private void HandleOpenBelt(ICommonSession? session) + { + HandleOpenSlotUI(session, "belt"); + } + + private void HandleOpenSlotUI(ICommonSession? session, string slot) + { + if (session is not { } playerSession) + return; + + if (playerSession.AttachedEntity is not {Valid: true} playerEnt || !Exists(playerEnt)) + return; + + if (!_inventory.TryGetSlotEntity(playerEnt, slot, out var storageEnt)) + return; + + if (!ActionBlocker.CanInteract(playerEnt, storageEnt)) + return; + + OpenStorageUI(storageEnt.Value, playerEnt); + } + + protected void ClearCantFillReasons() + { +#if DEBUG + CantFillReasons.Clear(); +#endif + } + /// /// Plays a clientside pickup animation for the specified uid. /// @@ -1272,8 +1478,6 @@ public abstract void PlayPickupAnimation(EntityUid uid, EntityCoordinates initia [Serializable, NetSerializable] protected sealed class StorageComponentState : ComponentState { - public bool IsUiOpen; - public Dictionary StoredItems = new(); public Dictionary> SavedLocations = new(); diff --git a/Content.Shared/Storage/StorageComponent.cs b/Content.Shared/Storage/StorageComponent.cs index 2cae12f07a..ef682dd4f9 100644 --- a/Content.Shared/Storage/StorageComponent.cs +++ b/Content.Shared/Storage/StorageComponent.cs @@ -19,10 +19,6 @@ public sealed partial class StorageComponent : Component { public static string ContainerId = "storagebase"; - // TODO: This fucking sucks - [ViewVariables(VVAccess.ReadWrite), DataField] - public bool IsUiOpen; - [ViewVariables] public Container Container = default!; @@ -57,9 +53,27 @@ public sealed partial class StorageComponent : Component [DataField] public bool QuickInsert; // Can insert storables by clicking them with the storage entity + /// + /// Minimum delay between quick/area insert actions. + /// + /// Used to prevent autoclickers spamming server with individual pickup actions. + public TimeSpan QuickInsertCooldown = TimeSpan.FromSeconds(0.5); + + /// + /// Minimum delay between UI open actions. + /// Used to spamming opening sounds. + /// + [DataField] + public TimeSpan OpenUiCooldown = TimeSpan.Zero; + [DataField] public bool ClickInsert = true; // Can insert stuff by clicking the storage entity with it + /// + /// How many entities area pickup can pickup at once. + /// + public const int AreaPickupLimit = 10; + [DataField] public bool AreaInsert; // Clicking with the storage entity causes it to insert all nearby storables after a delay @@ -214,15 +228,6 @@ public AnimateInsertingEntitiesEvent(NetEntity storage, List storedEn } } - /// - /// An extra BUI message that either opens, closes, or focuses the storage window based on context. - /// - [Serializable, NetSerializable] - public sealed class StorageModifyWindowMessage : BoundUserInterfaceMessage - { - - } - [NetSerializable] [Serializable] public enum StorageVisuals : byte diff --git a/Content.Shared/Store/ListingLocalisationHelpers.cs b/Content.Shared/Store/ListingLocalisationHelpers.cs index 9be37b533f..19cd029488 100644 --- a/Content.Shared/Store/ListingLocalisationHelpers.cs +++ b/Content.Shared/Store/ListingLocalisationHelpers.cs @@ -18,12 +18,10 @@ public static string GetLocalisedNameOrEntityName(ListingData listingData, IProt else if (listingData.ProductEntity != null) name = prototypeManager.Index(listingData.ProductEntity.Value).Name; - // WD START if (listingData.DiscountValue > 0) name += " " + Loc.GetString("store-sales-amount", ("amount", listingData.DiscountValue)); else if (listingData.OldCost.Count > 0) name += " " + Loc.GetString("store-sales-over"); - // WD END return name; } diff --git a/Content.Shared/Store/ListingPrototype.cs b/Content.Shared/Store/ListingPrototype.cs index f39958dc15..445b5742dd 100644 --- a/Content.Shared/Store/ListingPrototype.cs +++ b/Content.Shared/Store/ListingPrototype.cs @@ -75,14 +75,14 @@ public partial class ListingData : IEquatable, ICloneable public EntProtoId? ProductAction; /// - /// The listing ID of the related upgrade listing. Can be used to link a to an - /// upgrade or to use standalone as an upgrade + /// The listing ID of the related upgrade listing. Can be used to link a to an + /// upgrade or to use standalone as an upgrade /// [DataField] - public ProtoId? ProductUpgradeID; + public ProtoId? ProductUpgradeId; /// - /// Keeps track of the current action entity this is tied to, for action upgrades + /// Keeps track of the current action entity this is tied to, for action upgrades /// [DataField] [NonSerialized] @@ -109,7 +109,6 @@ public partial class ListingData : IEquatable, ICloneable [DataField] public TimeSpan RestockTime = TimeSpan.Zero; - // WD START [DataField] public int SaleLimit = 3; @@ -122,7 +121,6 @@ public partial class ListingData : IEquatable, ICloneable [DataField] public List Components = new(); - // WD END public bool Equals(ListingData? listing) { @@ -176,18 +174,16 @@ public object Clone() Priority = Priority, ProductEntity = ProductEntity, ProductAction = ProductAction, - ProductUpgradeID = ProductUpgradeID, + ProductUpgradeId = ProductUpgradeId, ProductActionEntity = ProductActionEntity, ProductEvent = ProductEvent, PurchaseAmount = PurchaseAmount, RestockTime = RestockTime, - // WD START SaleLimit = SaleLimit, SaleBlacklist = SaleBlacklist, DiscountValue = DiscountValue, OldCost = OldCost, Components = Components, - // WD END }; } } diff --git a/Content.Shared/Store/StorePresetPrototype.cs b/Content.Shared/Store/StorePresetPrototype.cs index ac3d439f46..41ee510bd8 100644 --- a/Content.Shared/Store/StorePresetPrototype.cs +++ b/Content.Shared/Store/StorePresetPrototype.cs @@ -1,4 +1,4 @@ -using Content.Shared._White.StoreDiscount; +using Content.Shared.StoreDiscount; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; @@ -40,8 +40,6 @@ public sealed partial class StorePresetPrototype : IPrototype [DataField("currencyWhitelist", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))] public HashSet CurrencyWhitelist { get; private set; } = new(); - // WD EDIT START [DataField] public SalesSpecifier Sales { get; private set; } = new(); - // WD EDIT END } diff --git a/Content.Shared/_White/StoreDiscount/SalesSpecifier.cs b/Content.Shared/StoreDiscount/SalesSpecifier.cs similarity index 94% rename from Content.Shared/_White/StoreDiscount/SalesSpecifier.cs rename to Content.Shared/StoreDiscount/SalesSpecifier.cs index 31131dc85f..21539f85d4 100644 --- a/Content.Shared/_White/StoreDiscount/SalesSpecifier.cs +++ b/Content.Shared/StoreDiscount/SalesSpecifier.cs @@ -1,4 +1,4 @@ -namespace Content.Shared._White.StoreDiscount; +namespace Content.Shared.StoreDiscount; [DataDefinition] public sealed partial class SalesSpecifier diff --git a/Content.Shared/Stunnable/SharedStunSystem.cs b/Content.Shared/Stunnable/SharedStunSystem.cs index f376236666..52225843f2 100644 --- a/Content.Shared/Stunnable/SharedStunSystem.cs +++ b/Content.Shared/Stunnable/SharedStunSystem.cs @@ -1,4 +1,3 @@ -using Content.Shared._White.Standing; using Content.Shared.ActionBlocker; using Content.Shared.Administration.Logs; using Content.Shared.Audio; @@ -34,8 +33,8 @@ public abstract class SharedStunSystem : EntitySystem [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly StandingStateSystem _standingState = default!; [Dependency] private readonly StatusEffectsSystem _statusEffect = default!; - [Dependency] private readonly SharedLayingDownSystem _layingDown = default!; // WD EDIT - [Dependency] private readonly SharedContainerSystem _container = default!; // WD EDIT + [Dependency] private readonly SharedLayingDownSystem _layingDown = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; /// /// Friction modifier for knocked down players. @@ -80,15 +79,12 @@ public override void Initialize() private void OnMobStateChanged(EntityUid uid, MobStateComponent component, MobStateChangedEvent args) { if (!TryComp(uid, out var status)) - { return; - } + switch (args.NewMobState) { case MobState.Alive: - { break; - } case MobState.Critical: { _statusEffect.TryRemoveStatusEffect(uid, "Stun"); @@ -113,13 +109,12 @@ private void UpdateCanMove(EntityUid uid, StunnedComponent component, EntityEven private void OnKnockInit(EntityUid uid, KnockedDownComponent component, ComponentInit args) { - RaiseNetworkEvent(new CheckAutoGetUpEvent(GetNetEntity(uid))); // WD EDIT - _layingDown.TryLieDown(uid, null, null, DropHeldItemsBehavior.DropIfStanding); // WD EDIT + RaiseNetworkEvent(new CheckAutoGetUpEvent(GetNetEntity(uid))); + _layingDown.TryLieDown(uid, null, null, DropHeldItemsBehavior.DropIfStanding); } private void OnKnockShutdown(EntityUid uid, KnockedDownComponent component, ComponentShutdown args) { - // WD EDIT START if (!TryComp(uid, out StandingStateComponent? standing)) return; @@ -131,7 +126,6 @@ private void OnKnockShutdown(EntityUid uid, KnockedDownComponent component, Comp } _standingState.Stand(uid, standing); - // WD EDIT END } private void OnStandAttempt(EntityUid uid, KnockedDownComponent component, StandAttemptEvent args) @@ -165,13 +159,9 @@ private void OnRefreshMovespeed(EntityUid uid, SlowedDownComponent component, Re public bool TryStun(EntityUid uid, TimeSpan time, bool refresh, StatusEffectsComponent? status = null) { - if (time <= TimeSpan.Zero) - return false; - - if (!Resolve(uid, ref status, false)) - return false; - - if (!_statusEffect.TryAddStatusEffect(uid, "Stun", time, refresh)) + if (time <= TimeSpan.Zero + || !Resolve(uid, ref status, false) + || !_statusEffect.TryAddStatusEffect(uid, "Stun", time, refresh)) return false; var ev = new StunnedEvent(); @@ -187,13 +177,9 @@ public bool TryStun(EntityUid uid, TimeSpan time, bool refresh, public bool TryKnockdown(EntityUid uid, TimeSpan time, bool refresh, StatusEffectsComponent? status = null) { - if (time <= TimeSpan.Zero) - return false; - - if (!Resolve(uid, ref status, false)) - return false; - - if (!_statusEffect.TryAddStatusEffect(uid, "KnockedDown", time, refresh)) + if (time <= TimeSpan.Zero + || !Resolve(uid, ref status, false) + || !_statusEffect.TryAddStatusEffect(uid, "KnockedDown", time, refresh)) return false; var ev = new KnockedDownEvent(); @@ -221,10 +207,8 @@ public bool TrySlowdown(EntityUid uid, TimeSpan time, bool refresh, float walkSpeedMultiplier = 1f, float runSpeedMultiplier = 1f, StatusEffectsComponent? status = null) { - if (!Resolve(uid, ref status, false)) - return false; - - if (time <= TimeSpan.Zero) + if (!Resolve(uid, ref status, false) + || time <= TimeSpan.Zero) return false; if (_statusEffect.TryAddStatusEffect(uid, "SlowedDown", time, refresh, status)) @@ -247,14 +231,8 @@ public bool TrySlowdown(EntityUid uid, TimeSpan time, bool refresh, private void OnInteractHand(EntityUid uid, KnockedDownComponent knocked, InteractHandEvent args) { - // This is currently disabled in favor of an interaction verb with the same effect, but more obvious usage. - return; - - if (args.Handled || knocked.HelpTimer > 0f) - return; - - // TODO: This should be an event. - if (HasComp(uid)) + if (args.Handled || knocked.HelpTimer > 0f + || HasComp(uid)) return; // Set it to half the help interval so helping is actually useful... @@ -290,15 +268,19 @@ private void OnAttempt(EntityUid uid, StunnedComponent stunned, CancellableEntit private void OnEquipAttempt(EntityUid uid, StunnedComponent stunned, IsEquippingAttemptEvent args) { // is this a self-equip, or are they being stripped? - if (args.Equipee == uid) - args.Cancel(); + if (args.Equipee != uid) + return; + + args.Cancel(); } private void OnUnequipAttempt(EntityUid uid, StunnedComponent stunned, IsUnequippingAttemptEvent args) { // is this a self-equip, or are they being stripped? - if (args.Unequipee == uid) - args.Cancel(); + if (args.Unequipee != uid) + return; + + args.Cancel(); } #endregion diff --git a/Content.Shared/Tag/TagSystem.cs b/Content.Shared/Tag/TagSystem.cs index 0628b892ed..0707308e48 100644 --- a/Content.Shared/Tag/TagSystem.cs +++ b/Content.Shared/Tag/TagSystem.cs @@ -1,3 +1,4 @@ +using System.Diagnostics; using System.Linq; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; @@ -9,9 +10,12 @@ public sealed class TagSystem : EntitySystem { [Dependency] private readonly IPrototypeManager _proto = default!; + private EntityQuery _tagQuery; + public override void Initialize() { base.Initialize(); + _tagQuery = GetEntityQuery(); SubscribeLocalEvent(OnTagGetState); SubscribeLocalEvent(OnTagHandleState); @@ -124,7 +128,7 @@ public bool AddTags(EntityUid entity, IEnumerable ids) /// public bool TryAddTag(EntityUid entity, string id) { - return TryComp(entity, out var component) && + return _tagQuery.TryComp(entity, out var component) && AddTag(component, id); } @@ -142,7 +146,7 @@ public bool TryAddTag(EntityUid entity, string id) /// public bool TryAddTags(EntityUid entity, params string[] ids) { - return TryComp(entity, out var component) && + return _tagQuery.TryComp(entity, out var component) && AddTags(component, ids); } @@ -160,7 +164,7 @@ public bool TryAddTags(EntityUid entity, params string[] ids) /// public bool TryAddTags(EntityUid entity, IEnumerable ids) { - return TryComp(entity, out var component) && + return _tagQuery.TryComp(entity, out var component) && AddTags(component, ids); } @@ -175,13 +179,14 @@ public bool TryAddTags(EntityUid entity, IEnumerable ids) /// public bool HasTag(EntityUid entity, string id) { - return TryComp(entity, out var component) && + return _tagQuery.TryComp(entity, out var component) && HasTag(component, id); } /// /// Checks if a tag has been added to an entity. /// + [Obsolete] public bool HasTag(EntityUid entity, string id, EntityQuery tagQuery) { return tagQuery.TryGetComponent(entity, out var component) && @@ -210,7 +215,7 @@ public bool HasTag(EntityUid entity, string id, EntityQuery tagQue /// public bool HasAllTags(EntityUid entity, List ids) { - return TryComp(entity, out var component) && + return _tagQuery.TryComp(entity, out var component) && HasAllTags(component, ids); } @@ -225,7 +230,7 @@ public bool HasAllTags(EntityUid entity, List ids) /// public bool HasAllTags(EntityUid entity, IEnumerable ids) { - return TryComp(entity, out var component) && + return _tagQuery.TryComp(entity, out var component) && HasAllTags(component, ids); } @@ -234,18 +239,33 @@ public bool HasAllTags(EntityUid entity, IEnumerable ids) /// /// The entity to check. /// The tags to check for. + /// true if they all exist, false otherwise. + /// + /// Thrown if one of the ids represents an unregistered . + /// + public bool HasAllTags(EntityUid entity, List> ids) + { + return _tagQuery.TryComp(entity, out var component) && + HasAllTags(component, ids); + } + + /// + /// Checks if any of the given tags have been added to an entity. + /// + /// The entity to check. + /// The tags to check for. /// true if any of them exist, false otherwise. /// /// Thrown if one of the ids represents an unregistered . /// public bool HasAnyTag(EntityUid entity, params string[] ids) { - return TryComp(entity, out var component) && + return _tagQuery.TryComp(entity, out var component) && HasAnyTag(component, ids); } /// - /// Checks if all of the given tags have been added to an entity. + /// Checks if any of the given tags have been added to an entity. /// /// The entity to check. /// The tag to check for. @@ -256,7 +276,7 @@ public bool HasAnyTag(EntityUid entity, params string[] ids) public bool HasAnyTag(EntityUid entity, string id) => HasTag(entity, id); /// - /// Checks if all of the given tags have been added to an entity. + /// Checks if any of the given tags have been added to an entity. /// /// The entity to check. /// The tags to check for. @@ -265,13 +285,28 @@ public bool HasAnyTag(EntityUid entity, params string[] ids) /// Thrown if one of the ids represents an unregistered . /// public bool HasAnyTag(EntityUid entity, List ids) + { + return _tagQuery.TryComp(entity, out var component) && + HasAnyTag(component, ids); + } + + /// + /// Checks if any of the given tags have been added to an entity. + /// + /// The entity to check. + /// The tags to check for. + /// true if any of them exist, false otherwise. + /// + /// Thrown if one of the ids represents an unregistered . + /// + public bool HasAnyTag(EntityUid entity, List> ids) { return TryComp(entity, out var component) && HasAnyTag(component, ids); } /// - /// Checks if all of the given tags have been added to an entity. + /// Checks if any of the given tags have been added to an entity. /// /// The entity to check. /// The tags to check for. @@ -281,7 +316,7 @@ public bool HasAnyTag(EntityUid entity, List ids) /// public bool HasAnyTag(EntityUid entity, IEnumerable ids) { - return TryComp(entity, out var component) && + return _tagQuery.TryComp(entity, out var component) && HasAnyTag(component, ids); } @@ -298,7 +333,7 @@ public bool HasAnyTag(EntityUid entity, IEnumerable ids) /// public bool RemoveTag(EntityUid entity, string id) { - return TryComp(entity, out var component) && + return _tagQuery.TryComp(entity, out var component) && RemoveTag(component, id); } @@ -315,7 +350,7 @@ public bool RemoveTag(EntityUid entity, string id) /// public bool RemoveTags(EntityUid entity, params string[] ids) { - return TryComp(entity, out var component) && + return _tagQuery.TryComp(entity, out var component) && RemoveTags(component, ids); } @@ -332,7 +367,7 @@ public bool RemoveTags(EntityUid entity, params string[] ids) /// public bool RemoveTags(EntityUid entity, IEnumerable ids) { - return TryComp(entity, out var component) && + return _tagQuery.TryComp(entity, out var component) && RemoveTags(component, ids); } @@ -478,6 +513,28 @@ public bool HasAllTags(TagComponent component, IEnumerable ids) return true; } + /// + /// Checks if all of the given tags have been added. + /// + /// The tags to check for. + /// true if they all exist, false otherwise. + /// + /// Thrown if one of the ids represents an unregistered . + /// + public bool HasAllTags(TagComponent component, List> ids) + { + foreach (var id in ids) + { + AssertValidTag(id); + + if (!component.Tags.Contains(id)) + return false; + + } + + return true; + } + /// /// Checks if any of the given tags have been added. /// @@ -488,9 +545,16 @@ public bool HasAllTags(TagComponent component, IEnumerable ids) /// public bool HasAnyTag(TagComponent component, params string[] ids) { - return HasAnyTag(component, ids.AsEnumerable()); - } + foreach (var id in ids) + { + AssertValidTag(id); + + if (component.Tags.Contains(id)) + return true; + } + return false; + } /// /// Checks if any of the given tags have been added. @@ -548,6 +612,27 @@ public bool HasAnyTag(TagComponent component, IEnumerable ids) return false; } + /// + /// Checks if any of the given tags have been added. + /// + /// The tags to check for. + /// true if any of them exist, false otherwise. + /// + /// Thrown if one of the ids represents an unregistered . + /// + public bool HasAnyTag(TagComponent comp, List> ids) + { + foreach (var id in ids) + { + AssertValidTag(id); + + if (comp.Tags.Contains(id)) + return true; + } + + return false; + } + /// /// Tries to remove a tag if it exists. /// diff --git a/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs b/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs index e69a31a1d4..62c0b0f44e 100644 --- a/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs +++ b/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs @@ -145,27 +145,14 @@ public void DoTeleport(Entity ent) } var teleEnt = GetTeleportingEntity((uid, xform)); - var teleEntXform = Transform(teleEnt); var otherTeleEnt = GetTeleportingEntity((linkedEnt, Transform(linkedEnt))); - var otherTeleEntXform = Transform(otherTeleEnt); _popup.PopupEntity(Loc.GetString("swap-teleporter-popup-teleport-other", ("entity", Identity.Entity(linkedEnt, EntityManager))), otherTeleEnt, otherTeleEnt, PopupType.MediumCaution); - var pos = teleEntXform.Coordinates; - var otherPos = otherTeleEntXform.Coordinates; - - if (_transform.ContainsEntity(teleEnt, (otherTeleEnt, otherTeleEntXform)) || - _transform.ContainsEntity(otherTeleEnt, (teleEnt, teleEntXform))) - { - Log.Error($"Invalid teleport swap attempt between {ToPrettyString(teleEnt)} and {ToPrettyString(otherTeleEnt)}"); - return; - } - - _transform.SetCoordinates(teleEnt, otherPos); - _transform.SetCoordinates(otherTeleEnt, pos); + _transform.SwapPositions(teleEnt, otherTeleEnt); } /// diff --git a/Content.Shared/_White/Telescope/SharedTelescopeSystem.cs b/Content.Shared/Telescope/SharedTelescopeSystem.cs similarity index 83% rename from Content.Shared/_White/Telescope/SharedTelescopeSystem.cs rename to Content.Shared/Telescope/SharedTelescopeSystem.cs index 78bcf757ea..5f9896cc35 100644 --- a/Content.Shared/_White/Telescope/SharedTelescopeSystem.cs +++ b/Content.Shared/Telescope/SharedTelescopeSystem.cs @@ -5,7 +5,7 @@ using Content.Shared.Item; using Robust.Shared.Serialization; -namespace Content.Shared._White.Telescope; +namespace Content.Shared.Telescope; public abstract class SharedTelescopeSystem : EntitySystem { @@ -23,7 +23,8 @@ public override void Initialize() private void OnShutdown(Entity ent, ref ComponentShutdown args) { - if (!TryComp(ent.Comp.LastEntity, out EyeComponent? eye) || ent.Comp.LastEntity == ent && TerminatingOrDeleted(ent)) + if (!TryComp(ent.Comp.LastEntity, out EyeComponent? eye) + || ent.Comp.LastEntity == ent && TerminatingOrDeleted(ent)) return; SetOffset((ent.Comp.LastEntity.Value, eye), Vector2.Zero, ent); @@ -39,10 +40,8 @@ private void OnHandDeselected(Entity ent, ref HandDeselected private void OnUnequip(Entity ent, ref GotUnequippedHandEvent args) { - if (!TryComp(args.User, out EyeComponent? eye)) - return; - - if (!HasComp(ent.Owner)) + if (!TryComp(args.User, out EyeComponent? eye) + || !HasComp(ent.Owner)) return; SetOffset((args.User, eye), Vector2.Zero, ent); @@ -52,26 +51,20 @@ private void OnUnequip(Entity ent, ref GotUnequippedHandEven { TelescopeComponent? telescope = null; - if (TryComp(ent, out var hands) && - hands.ActiveHandEntity.HasValue && - TryComp(hands.ActiveHandEntity, out var handTelescope)) - { + if (TryComp(ent, out var hands) + && hands.ActiveHandEntity.HasValue + && TryComp(hands.ActiveHandEntity, out var handTelescope)) telescope = handTelescope; - } else if (TryComp(ent, out var entityTelescope)) - { telescope = entityTelescope; - } return telescope; } private void OnEyeOffsetChanged(EyeOffsetChangedEvent msg, EntitySessionEventArgs args) { - if (args.SenderSession.AttachedEntity is not { } ent) - return; - - if (!TryComp(ent, out EyeComponent? eye)) + if (args.SenderSession.AttachedEntity is not { } ent + || !TryComp(ent, out var eye)) return; var telescope = GetRightTelescope(ent); diff --git a/Content.Shared/Telescope/TelescopeComponent.cs b/Content.Shared/Telescope/TelescopeComponent.cs new file mode 100644 index 0000000000..529cc58324 --- /dev/null +++ b/Content.Shared/Telescope/TelescopeComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Telescope; + +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TelescopeComponent : Component +{ + [DataField, AutoNetworkedField] + public float Divisor = 0.1f; + + [DataField, AutoNetworkedField] + public float LerpAmount = 0.1f; + + [ViewVariables] + public EntityUid? LastEntity; +} diff --git a/Content.Shared/Timing/UseDelayComponent.cs b/Content.Shared/Timing/UseDelayComponent.cs index 1560d4dd0b..aa6c66eb81 100644 --- a/Content.Shared/Timing/UseDelayComponent.cs +++ b/Content.Shared/Timing/UseDelayComponent.cs @@ -1,38 +1,53 @@ using Robust.Shared.GameStates; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; +using Robust.Shared.Serialization; namespace Content.Shared.Timing; /// -/// Timer that creates a cooldown each time an object is activated/used +/// Timer that creates a cooldown each time an object is activated/used. +/// Can support additional, separate cooldown timers on the object by passing a unique ID with the system methods. /// -/// -/// Currently it only supports a single delay per entity, this means that for things that have two delay interactions they will share one timer, so this can cause issues. For example, the bible has a delay when opening the storage UI and when applying it's interaction effect, and they share the same delay. -/// [RegisterComponent] -[NetworkedComponent, AutoGenerateComponentState, AutoGenerateComponentPause] +[NetworkedComponent] [Access(typeof(UseDelaySystem))] public sealed partial class UseDelayComponent : Component { - /// - /// When the delay starts. - /// - [ViewVariables(VVAccess.ReadWrite), DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoNetworkedField] - [AutoPausedField] - public TimeSpan DelayStartTime; - - /// - /// When the delay ends. - /// - [ViewVariables(VVAccess.ReadWrite), DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoNetworkedField] - [AutoPausedField] - public TimeSpan DelayEndTime; + [DataField] + public Dictionary Delays = []; /// - /// Default delay time + /// Default delay time. /// + /// + /// This is only used at MapInit and should not be expected + /// to reflect the length of the default delay after that. + /// Use instead. + /// [DataField] - [ViewVariables(VVAccess.ReadWrite)] - [AutoNetworkedField] public TimeSpan Delay = TimeSpan.FromSeconds(1); } + +[Serializable, NetSerializable] +public sealed class UseDelayComponentState : IComponentState +{ + public Dictionary Delays = new(); +} + +[Serializable, NetSerializable] +[DataDefinition] +public sealed partial class UseDelayInfo +{ + [DataField] + public TimeSpan Length { get; set; } + [DataField] + public TimeSpan StartTime { get; set; } + [DataField] + public TimeSpan EndTime { get; set; } + + public UseDelayInfo(TimeSpan length, TimeSpan startTime = default, TimeSpan endTime = default) + { + Length = length; + StartTime = startTime; + EndTime = endTime; + } +} diff --git a/Content.Shared/Timing/UseDelaySystem.cs b/Content.Shared/Timing/UseDelaySystem.cs index 388f31079c..9816d0185a 100644 --- a/Content.Shared/Timing/UseDelaySystem.cs +++ b/Content.Shared/Timing/UseDelaySystem.cs @@ -1,3 +1,5 @@ +using System.Diagnostics.CodeAnalysis; +using Robust.Shared.GameStates; using Robust.Shared.Timing; namespace Content.Shared.Timing; @@ -7,53 +9,171 @@ public sealed class UseDelaySystem : EntitySystem [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly MetaDataSystem _metadata = default!; - public void SetDelay(Entity ent, TimeSpan delay) + private const string DefaultId = "default"; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnUnpaused); + SubscribeLocalEvent(OnDelayGetState); + SubscribeLocalEvent(OnDelayHandleState); + } + + private void OnDelayHandleState(Entity ent, ref ComponentHandleState args) { - if (ent.Comp.Delay == delay) + if (args.Current is not UseDelayComponentState state) return; - ent.Comp.Delay = delay; + ent.Comp.Delays.Clear(); + + // At time of writing sourcegen networking doesn't deep copy so this will mispredict if you try. + foreach (var (key, delay) in state.Delays) + { + ent.Comp.Delays[key] = new UseDelayInfo(delay.Length, delay.StartTime, delay.EndTime); + } + } + + private void OnDelayGetState(Entity ent, ref ComponentGetState args) + { + args.State = new UseDelayComponentState() + { + Delays = ent.Comp.Delays + }; + } + + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + // Set default delay length from the prototype + // This makes it easier for simple use cases that only need a single delay + SetLength((ent, ent.Comp), ent.Comp.Delay, DefaultId); + } + + private void OnUnpaused(Entity ent, ref EntityUnpausedEvent args) + { + // We have to do this manually, since it's not just a single field. + foreach (var entry in ent.Comp.Delays.Values) + { + entry.EndTime += args.PausedTime; + } + } + + /// + /// Sets the length of the delay with the specified ID. + /// + /// + /// This will add a UseDelay component to the entity if it doesn't have one. + /// + public bool SetLength(Entity ent, TimeSpan length, string id = DefaultId) + { + EnsureComp(ent.Owner, out var comp); + + if (comp.Delays.TryGetValue(id, out var entry)) + { + if (entry.Length == length) + return true; + + entry.Length = length; + } + else + { + comp.Delays.Add(id, new UseDelayInfo(length)); + } + Dirty(ent); + return true; } /// - /// Returns true if the entity has a currently active UseDelay. + /// Returns true if the entity has a currently active UseDelay with the specified ID. /// - public bool IsDelayed(Entity ent) + public bool IsDelayed(Entity ent, string id = DefaultId) { - return ent.Comp.DelayEndTime >= _gameTiming.CurTime; + if (!ent.Comp.Delays.TryGetValue(id, out var entry)) + return false; + + return entry.EndTime >= _gameTiming.CurTime; } /// - /// Cancels the current delay. + /// Cancels the delay with the specified ID. /// - public void CancelDelay(Entity ent) + public void CancelDelay(Entity ent, string id = DefaultId) { - ent.Comp.DelayEndTime = _gameTiming.CurTime; + if (!ent.Comp.Delays.TryGetValue(id, out var entry)) + return; + + entry.EndTime = _gameTiming.CurTime; Dirty(ent); } /// - /// Resets the UseDelay entirely for this entity if possible. + /// Tries to get info about the delay with the specified ID. See . + /// + /// + /// + /// + /// + public bool TryGetDelayInfo(Entity ent, [NotNullWhen(true)] out UseDelayInfo? info, string id = DefaultId) + { + return ent.Comp.Delays.TryGetValue(id, out info); + } + + /// + /// Returns info for the delay that will end farthest in the future. /// - /// Check if the entity has an ongoing delay, return false if it does, return true if it does not. - public bool TryResetDelay(Entity ent, bool checkDelayed = false) + public UseDelayInfo GetLastEndingDelay(Entity ent) { - if (checkDelayed && IsDelayed(ent)) + var last = ent.Comp.Delays[DefaultId]; + foreach (var entry in ent.Comp.Delays) + { + if (entry.Value.EndTime > last.EndTime) + last = entry.Value; + } + return last; + } + + /// + /// Resets the delay with the specified ID for this entity if possible. + /// + /// Check if the entity has an ongoing delay with the specified ID. + /// If it does, return false and don't reset it. + /// Otherwise reset it and return true. + public bool TryResetDelay(Entity ent, bool checkDelayed = false, string id = DefaultId) + { + if (checkDelayed && IsDelayed(ent, id)) + return false; + + if (!ent.Comp.Delays.TryGetValue(id, out var entry)) return false; var curTime = _gameTiming.CurTime; - ent.Comp.DelayStartTime = curTime; - ent.Comp.DelayEndTime = curTime - _metadata.GetPauseTime(ent) + ent.Comp.Delay; + entry.StartTime = curTime; + entry.EndTime = curTime - _metadata.GetPauseTime(ent) + entry.Length; Dirty(ent); return true; } - public bool TryResetDelay(EntityUid uid, bool checkDelayed = false, UseDelayComponent? component = null) + public bool TryResetDelay(EntityUid uid, bool checkDelayed = false, UseDelayComponent? component = null, string id = DefaultId) { if (!Resolve(uid, ref component, false)) return false; - return TryResetDelay((uid, component), checkDelayed); + return TryResetDelay((uid, component), checkDelayed, id); + } + + /// + /// Resets all delays on the entity. + /// + public void ResetAllDelays(Entity ent) + { + var curTime = _gameTiming.CurTime; + foreach (var entry in ent.Comp.Delays.Values) + { + entry.StartTime = curTime; + entry.EndTime = curTime - _metadata.GetPauseTime(ent) + entry.Length; + } + Dirty(ent); } } diff --git a/Content.Shared/Tips/TippyEvent.cs b/Content.Shared/Tips/TippyEvent.cs new file mode 100644 index 0000000000..4370e9c822 --- /dev/null +++ b/Content.Shared/Tips/TippyEvent.cs @@ -0,0 +1,19 @@ + +using Robust.Shared.Serialization; + +namespace Content.Shared.Tips; + +[Serializable, NetSerializable] +public sealed class TippyEvent : EntityEventArgs +{ + public TippyEvent(string msg) + { + Msg = msg; + } + + public string Msg; + public string? Proto; + public float SpeakTime = 5; + public float SlideTime = 3; + public float WaddleInterval = 0.5f; +} diff --git a/Content.Shared/Tools/Components/SharedWeldable.cs b/Content.Shared/Tools/Components/SharedWeldable.cs deleted file mode 100644 index 701bd4d8da..0000000000 --- a/Content.Shared/Tools/Components/SharedWeldable.cs +++ /dev/null @@ -1,49 +0,0 @@ -using Robust.Shared.GameStates; -using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; - -namespace Content.Shared.Tools.Components; - -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] -public sealed partial class WeldableComponent : Component -{ - /// - /// Tool quality for welding. - /// - [DataField("weldingQuality", customTypeSerializer: typeof(PrototypeIdSerializer))] - [ViewVariables(VVAccess.ReadWrite)] - public string WeldingQuality = "Welding"; - - /// - /// How much time does it take to weld/unweld entity. - /// - [DataField("time")] - [ViewVariables(VVAccess.ReadWrite)] - [AutoNetworkedField] - public TimeSpan WeldingTime = TimeSpan.FromSeconds(1f); - - /// - /// Shown when welded entity is examined. - /// - [DataField("weldedExamineMessage")] - [ViewVariables(VVAccess.ReadWrite)] - public string? WeldedExamineMessage = "weldable-component-examine-is-welded"; - - /// - /// Is this entity currently welded shut? - /// - [DataField("isWelded"), AutoNetworkedField] - public bool IsWelded; -} - -[Serializable, NetSerializable] -public enum WeldableVisuals : byte -{ - IsWelded -} - -[Serializable, NetSerializable] -public enum WeldableLayers : byte -{ - BaseWelded -} diff --git a/Content.Shared/Tools/Components/SharedWelderComponent.cs b/Content.Shared/Tools/Components/SharedWelderComponent.cs deleted file mode 100644 index 78c1cde201..0000000000 --- a/Content.Shared/Tools/Components/SharedWelderComponent.cs +++ /dev/null @@ -1,21 +0,0 @@ -using Robust.Shared.GameStates; -using Robust.Shared.Serialization; - -namespace Content.Shared.Tools.Components -{ - [NetworkedComponent] - public abstract partial class SharedWelderComponent : Component { } - - [NetSerializable, Serializable] - public sealed class WelderComponentState : ComponentState - { - public float FuelCapacity { get; } - public float Fuel { get; } - - public WelderComponentState(float fuelCapacity, float fuel) - { - FuelCapacity = fuelCapacity; - Fuel = fuel; - } - } -} diff --git a/Content.Shared/Tools/Components/WeldableComponent.cs b/Content.Shared/Tools/Components/WeldableComponent.cs new file mode 100644 index 0000000000..e491b5f6a7 --- /dev/null +++ b/Content.Shared/Tools/Components/WeldableComponent.cs @@ -0,0 +1,51 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.Tools.Components; + +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class WeldableComponent : Component +{ + /// + /// Tool quality for welding. + /// + [DataField] + public ProtoId WeldingQuality = "Welding"; + + /// + /// How much time does it take to weld/unweld entity. + /// + [DataField, AutoNetworkedField] + public TimeSpan Time = TimeSpan.FromSeconds(1f); + + /// + /// How much fuel does it take to weld/unweld entity. + /// + [DataField] + public float Fuel = 3f; + + /// + /// Shown when welded entity is examined. + /// + [DataField] + public LocId? WeldedExamineMessage = "weldable-component-examine-is-welded"; + + /// + /// Is this entity currently welded shut? + /// + [DataField, AutoNetworkedField] + public bool IsWelded; +} + +[Serializable, NetSerializable] +public enum WeldableVisuals : byte +{ + IsWelded +} + +[Serializable, NetSerializable] +public enum WeldableLayers : byte +{ + BaseWelded +} diff --git a/Content.Shared/Tools/Components/WelderComponent.cs b/Content.Shared/Tools/Components/WelderComponent.cs new file mode 100644 index 0000000000..3c78a03fde --- /dev/null +++ b/Content.Shared/Tools/Components/WelderComponent.cs @@ -0,0 +1,58 @@ +using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.Reagent; +using Content.Shared.FixedPoint; +using Content.Shared.Tools.Systems; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Tools.Components; + +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true), Access(typeof(SharedToolSystem))] +public sealed partial class WelderComponent : Component +{ + [DataField, AutoNetworkedField] + public bool Enabled; + + [DataField] + public float WelderTimer; + + /// + /// Name of . + /// + [DataField] + public string FuelSolutionName = "Welder"; + + /// + /// Reagent that will be used as fuel for welding. + /// + [DataField] + public ProtoId FuelReagent = "WeldingFuel"; + + /// + /// Fuel consumption per second while the welder is active. + /// + [DataField, AutoNetworkedField] + public FixedPoint2 FuelConsumption = FixedPoint2.New(1.0f); + + /// + /// A fuel amount to be consumed when the welder goes from being unlit to being lit. + /// + [DataField, AutoNetworkedField] + public FixedPoint2 FuelLitCost = FixedPoint2.New(0.5f); + + /// + /// Sound played when refilling the welder. + /// + [DataField] + public SoundSpecifier WelderRefill = new SoundPathSpecifier("/Audio/Effects/refill.ogg"); + + /// + /// Whether the item is safe to refill while lit without exploding the tank. + /// + [DataField] + public bool TankSafe; + + [DataField] + public float WelderUpdateTimer = 1f; +} diff --git a/Content.Shared/Tools/Systems/SharedToolSystem.Welder.cs b/Content.Shared/Tools/Systems/SharedToolSystem.Welder.cs new file mode 100644 index 0000000000..e790b59cd1 --- /dev/null +++ b/Content.Shared/Tools/Systems/SharedToolSystem.Welder.cs @@ -0,0 +1,178 @@ +using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.Components.SolutionManager; +using Content.Shared.Database; +using Content.Shared.DoAfter; +using Content.Shared.Examine; +using Content.Shared.FixedPoint; +using Content.Shared.Interaction; +using Content.Shared.Item.ItemToggle.Components; +using Content.Shared.Tools.Components; + +namespace Content.Shared.Tools.Systems; + +public abstract partial class SharedToolSystem +{ + public void InitializeWelder() + { + SubscribeLocalEvent(OnWelderExamine); + SubscribeLocalEvent(OnWelderAfterInteract); + SubscribeLocalEvent>(OnWelderToolUseAttempt); + SubscribeLocalEvent(OnWelderDoAfter); + SubscribeLocalEvent(OnToggle); + SubscribeLocalEvent(OnActivateAttempt); + } + + public virtual void TurnOn(Entity entity, EntityUid? user) + { + if (!SolutionContainerSystem.TryGetSolution(entity.Owner, entity.Comp.FuelSolutionName, out var solutionComp, out _)) + return; + + SolutionContainerSystem.RemoveReagent(solutionComp.Value, entity.Comp.FuelReagent, entity.Comp.FuelLitCost); + AdminLogger.Add(LogType.InteractActivate, LogImpact.Low, + $"{ToPrettyString(user):user} toggled {ToPrettyString(entity.Owner):welder} on"); + + entity.Comp.Enabled = true; + Dirty(entity, entity.Comp); + } + + public void TurnOff(Entity entity, EntityUid? user) + { + AdminLogger.Add(LogType.InteractActivate, LogImpact.Low, + $"{ToPrettyString(user):user} toggled {ToPrettyString(entity.Owner):welder} off"); + entity.Comp.Enabled = false; + Dirty(entity, entity.Comp); + } + + public (FixedPoint2 fuel, FixedPoint2 capacity) GetWelderFuelAndCapacity(EntityUid uid, WelderComponent? welder = null, SolutionContainerManagerComponent? solutionContainer = null) + { + if (!Resolve(uid, ref welder, ref solutionContainer)) + return default; + + if (!SolutionContainer.TryGetSolution( + (uid, solutionContainer), + welder.FuelSolutionName, + out _, + out var fuelSolution)) + { + return default; + } + + return (fuelSolution.GetTotalPrototypeQuantity(welder.FuelReagent), fuelSolution.MaxVolume); + } + + private void OnWelderExamine(Entity entity, ref ExaminedEvent args) + { + using (args.PushGroup(nameof(WelderComponent))) + { + if (ItemToggle.IsActivated(entity.Owner)) + { + args.PushMarkup(Loc.GetString("welder-component-on-examine-welder-lit-message")); + } + else + { + args.PushMarkup(Loc.GetString("welder-component-on-examine-welder-not-lit-message")); + } + + if (args.IsInDetailsRange) + { + var (fuel, capacity) = GetWelderFuelAndCapacity(entity.Owner, entity.Comp); + + args.PushMarkup(Loc.GetString("welder-component-on-examine-detailed-message", + ("colorName", fuel < capacity / FixedPoint2.New(4f) ? "darkorange" : "orange"), + ("fuelLeft", fuel), + ("fuelCapacity", capacity), + ("status", string.Empty))); // Lit status is handled above + } + } + } + + private void OnWelderAfterInteract(Entity entity, ref AfterInteractEvent args) + { + if (args.Handled) + return; + + if (args.Target is not { Valid: true } target || !args.CanReach) + return; + + if (TryComp(target, out ReagentTankComponent? tank) + && tank.TankType == ReagentTankType.Fuel + && SolutionContainerSystem.TryGetDrainableSolution(target, out var targetSoln, out var targetSolution) + && SolutionContainerSystem.TryGetSolution(entity.Owner, entity.Comp.FuelSolutionName, out var solutionComp, out var welderSolution)) + { + var trans = FixedPoint2.Min(welderSolution.AvailableVolume, targetSolution.Volume); + if (trans > 0) + { + var drained = SolutionContainerSystem.Drain(target, targetSoln.Value, trans); + SolutionContainerSystem.TryAddSolution(solutionComp.Value, drained); + _audioSystem.PlayPredicted(entity.Comp.WelderRefill, entity, user: args.User); + _popup.PopupClient(Loc.GetString("welder-component-after-interact-refueled-message"), entity, args.User); + } + else if (welderSolution.AvailableVolume <= 0) + { + _popup.PopupClient(Loc.GetString("welder-component-already-full"), entity, args.User); + } + else + { + _popup.PopupClient(Loc.GetString("welder-component-no-fuel-in-tank", ("owner", args.Target)), entity, args.User); + } + + args.Handled = true; + } + } + + private void OnWelderToolUseAttempt(Entity entity, ref DoAfterAttemptEvent args) + { + var user = args.DoAfter.Args.User; + + if (!ItemToggle.IsActivated(entity.Owner)) + { + _popup.PopupClient(Loc.GetString("welder-component-welder-not-lit-message"), entity, user); + args.Cancel(); + return; + } + + var (fuel, _) = GetWelderFuelAndCapacity(entity); + + if (args.Event.Fuel > fuel) + { + _popup.PopupClient(Loc.GetString("welder-component-cannot-weld-message"), entity, user); + args.Cancel(); + } + } + + private void OnWelderDoAfter(Entity ent, ref ToolDoAfterEvent args) + { + if (args.Cancelled) + return; + + if (!SolutionContainerSystem.TryGetSolution(ent.Owner, ent.Comp.FuelSolutionName, out var solution)) + return; + + SolutionContainerSystem.RemoveReagent(solution.Value, ent.Comp.FuelReagent, FixedPoint2.New(args.Fuel)); + } + + private void OnToggle(Entity entity, ref ItemToggledEvent args) + { + if (args.Activated) + TurnOn(entity, args.User); + else + TurnOff(entity, args.User); + } + + private void OnActivateAttempt(Entity entity, ref ItemToggleActivateAttemptEvent args) + { + if (!SolutionContainerSystem.TryGetSolution(entity.Owner, entity.Comp.FuelSolutionName, out _, out var solution)) + { + args.Cancelled = true; + args.Popup = Loc.GetString("welder-component-no-fuel-message"); + return; + } + + var fuel = solution.GetTotalPrototypeQuantity(entity.Comp.FuelReagent); + if (fuel == FixedPoint2.Zero || fuel < entity.Comp.FuelLitCost) + { + args.Popup = Loc.GetString("welder-component-no-fuel-message"); + args.Cancelled = true; + } + } +} diff --git a/Content.Shared/Tools/Systems/SharedToolSystem.cs b/Content.Shared/Tools/Systems/SharedToolSystem.cs index ee15b1e025..0d7972a8de 100644 --- a/Content.Shared/Tools/Systems/SharedToolSystem.cs +++ b/Content.Shared/Tools/Systems/SharedToolSystem.cs @@ -1,8 +1,12 @@ using Content.Shared.Administration.Logs; +using Content.Shared.Chemistry.EntitySystems; using Content.Shared.DoAfter; using Content.Shared.Interaction; +using Content.Shared.Item.ItemToggle; using Content.Shared.Maps; +using Content.Shared.Popups; using Content.Shared.Tools.Components; +using JetBrains.Annotations; using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Prototypes; @@ -15,20 +19,25 @@ public abstract partial class SharedToolSystem : EntitySystem { [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IPrototypeManager _protoMan = default!; - [Dependency] protected readonly ISharedAdminLogManager AdminLogger = default!; + [Dependency] protected readonly ISharedAdminLogManager AdminLogger = default!; [Dependency] private readonly ITileDefinitionManager _tileDefManager = default!; [Dependency] private readonly SharedAudioSystem _audioSystem = default!; [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] protected readonly SharedInteractionSystem InteractionSystem = default!; + [Dependency] protected readonly SharedItemToggleSystem ItemToggle = default!; [Dependency] private readonly SharedMapSystem _maps = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] protected readonly SharedSolutionContainerSystem SolutionContainerSystem = default!; [Dependency] private readonly SharedTransformSystem _transformSystem = default!; [Dependency] private readonly TileSystem _tiles = default!; [Dependency] private readonly TurfSystem _turfs = default!; + [Dependency] protected readonly SharedSolutionContainerSystem SolutionContainer = default!; public override void Initialize() { InitializeMultipleTool(); InitializeTile(); + InitializeWelder(); SubscribeLocalEvent(OnDoAfter); } @@ -66,6 +75,7 @@ public void PlayToolSound(EntityUid uid, ToolComponent tool, EntityUid? user) /// The qualities needed for this tool to work. /// The event that will be raised when the tool has finished (including cancellation). Event /// will be directed at the tool target. + /// Amount of fuel that should be taken from the tool. /// The tool component. /// Returns true if any interaction takes place. public bool UseTool( @@ -75,6 +85,7 @@ public bool UseTool( float doAfterDelay, IEnumerable toolQualitiesNeeded, DoAfterEvent doAfterEv, + float fuel = 0, ToolComponent? toolComponent = null) { return UseTool(tool, @@ -84,6 +95,7 @@ public bool UseTool( toolQualitiesNeeded, doAfterEv, out _, + fuel, toolComponent); } @@ -101,6 +113,7 @@ public bool UseTool( /// will be directed at the tool target. /// The id of the DoAfter that was created. This may be null even if the function returns true in /// the event that this tool-use cancelled an existing DoAfter + /// Amount of fuel that should be taken from the tool. /// The tool component. /// Returns true if any interaction takes place. public bool UseTool( @@ -111,31 +124,30 @@ public bool UseTool( IEnumerable toolQualitiesNeeded, DoAfterEvent doAfterEv, out DoAfterId? id, + float fuel = 0, ToolComponent? toolComponent = null) { id = null; if (!Resolve(tool, ref toolComponent, false)) return false; - if (!CanStartToolUse(tool, user, target, toolQualitiesNeeded, toolComponent)) + if (!CanStartToolUse(tool, user, target, fuel, toolQualitiesNeeded, toolComponent)) return false; - var toolEvent = new ToolDoAfterEvent(doAfterEv, GetNetEntity(target)); + var toolEvent = new ToolDoAfterEvent(fuel, doAfterEv, GetNetEntity(target)); var doAfterArgs = new DoAfterArgs(EntityManager, user, delay / toolComponent.SpeedModifier, toolEvent, tool, target: target, used: tool) { BreakOnDamage = true, BreakOnTargetMove = true, BreakOnUserMove = true, NeedHand = tool != user, - AttemptFrequency = IsWelder(tool) ? AttemptFrequency.EveryTick : AttemptFrequency.Never + AttemptFrequency = fuel > 0 ? AttemptFrequency.EveryTick : AttemptFrequency.Never }; _doAfterSystem.TryStartDoAfter(doAfterArgs, out id); return true; } - protected abstract bool IsWelder(EntityUid uid); - /// /// Attempts to use a tool on some entity, which will start a DoAfter. Returns true if an interaction occurred. /// Note that this does not mean the interaction was successful, you need to listen for the DoAfter event. @@ -148,6 +160,7 @@ public bool UseTool( /// The quality needed for this tool to work. /// The event that will be raised when the tool has finished (including cancellation). Event /// will be directed at the tool target. + /// Amount of fuel that should be taken from the tool. /// The tool component. /// Returns true if any interaction takes place. public bool UseTool( @@ -157,6 +170,7 @@ public bool UseTool( float doAfterDelay, string toolQualityNeeded, DoAfterEvent doAfterEv, + float fuel = 0, ToolComponent? toolComponent = null) { return UseTool(tool, @@ -166,6 +180,7 @@ public bool UseTool( new[] { toolQualityNeeded }, doAfterEv, out _, + fuel, toolComponent); } @@ -180,12 +195,13 @@ public bool HasQuality(EntityUid uid, string quality, ToolComponent? tool = null /// /// Whether a tool entity has all specified qualities or not. /// + [PublicAPI] public bool HasAllQualities(EntityUid uid, IEnumerable qualities, ToolComponent? tool = null) { return Resolve(uid, ref tool, false) && tool.Qualities.ContainsAll(qualities); } - private bool CanStartToolUse(EntityUid tool, EntityUid user, EntityUid? target, IEnumerable toolQualitiesNeeded, ToolComponent? toolComponent = null) + private bool CanStartToolUse(EntityUid tool, EntityUid user, EntityUid? target, float fuel, IEnumerable toolQualitiesNeeded, ToolComponent? toolComponent = null) { if (!Resolve(tool, ref toolComponent)) return false; @@ -220,6 +236,9 @@ private bool CanStartToolUse(EntityUid tool, EntityUid user, EntityUid? target, [Serializable, NetSerializable] protected sealed partial class ToolDoAfterEvent : DoAfterEvent { + [DataField] + public float Fuel; + /// /// Entity that the wrapped do after event will get directed at. If null, event will be broadcast. /// @@ -233,10 +252,11 @@ private ToolDoAfterEvent() { } - public ToolDoAfterEvent(DoAfterEvent wrappedEvent, NetEntity? originalTarget) + public ToolDoAfterEvent(float fuel, DoAfterEvent wrappedEvent, NetEntity? originalTarget) { DebugTools.Assert(wrappedEvent.GetType().HasCustomAttribute(), "Tool event is not serializable"); + Fuel = fuel; WrappedEvent = wrappedEvent; OriginalTarget = originalTarget; } @@ -249,14 +269,14 @@ public override DoAfterEvent Clone() if (evClone == WrappedEvent) return this; - return new ToolDoAfterEvent(evClone, OriginalTarget); + return new ToolDoAfterEvent(Fuel, evClone, OriginalTarget); } } [Serializable, NetSerializable] protected sealed partial class LatticeCuttingCompleteEvent : DoAfterEvent { - [DataField("coordinates", required:true)] + [DataField(required:true)] public NetCoordinates Coordinates; private LatticeCuttingCompleteEvent() @@ -273,9 +293,7 @@ public LatticeCuttingCompleteEvent(NetCoordinates coordinates) } [Serializable, NetSerializable] -public sealed partial class CableCuttingFinishedEvent : SimpleDoAfterEvent -{ -} +public sealed partial class CableCuttingFinishedEvent : SimpleDoAfterEvent; #endregion diff --git a/Content.Shared/Tools/Systems/WeldableSystem.cs b/Content.Shared/Tools/Systems/WeldableSystem.cs index b0ea68f713..c6c47d539e 100644 --- a/Content.Shared/Tools/Systems/WeldableSystem.cs +++ b/Content.Shared/Tools/Systems/WeldableSystem.cs @@ -69,7 +69,7 @@ private bool TryWeld(EntityUid uid, EntityUid tool, EntityUid user, WeldableComp if (!CanWeld(uid, tool, user, component)) return false; - if (!_toolSystem.UseTool(tool, user, uid, component.WeldingTime.Seconds, component.WeldingQuality, new WeldFinishedEvent())) + if (!_toolSystem.UseTool(tool, user, uid, component.Time.Seconds, component.WeldingQuality, new WeldFinishedEvent(), component.Fuel)) return false; // Log attempt @@ -140,10 +140,10 @@ public void SetWeldingTime(EntityUid uid, TimeSpan time, WeldableComponent? comp if (!_query.Resolve(uid, ref component)) return; - if (component.WeldingTime.Equals(time)) + if (component.Time.Equals(time)) return; - component.WeldingTime = time; + component.Time = time; Dirty(uid, component); } } diff --git a/Content.Shared/Traits/Assorted/Components/CyberEyesComponent.cs b/Content.Shared/Traits/Assorted/Components/CyberEyesComponent.cs new file mode 100644 index 0000000000..7009077e9c --- /dev/null +++ b/Content.Shared/Traits/Assorted/Components/CyberEyesComponent.cs @@ -0,0 +1,11 @@ +namespace Content.Shared.Traits.Assorted.Components; + +[RegisterComponent] +public sealed partial class CyberEyesComponent : Component +{ + /// + /// The text that will appear when someone with the CyberEyes component is examined at close range + /// + [DataField] + public string CyberEyesExaminationText = "examine-cybereyes-message"; +} diff --git a/Content.Shared/Traits/Assorted/Components/PermanentBlindnessComponent.cs b/Content.Shared/Traits/Assorted/Components/PermanentBlindnessComponent.cs index c1bf7e1639..c10b05ae02 100644 --- a/Content.Shared/Traits/Assorted/Components/PermanentBlindnessComponent.cs +++ b/Content.Shared/Traits/Assorted/Components/PermanentBlindnessComponent.cs @@ -8,5 +8,7 @@ namespace Content.Shared.Traits.Assorted.Components; [RegisterComponent, NetworkedComponent] public sealed partial class PermanentBlindnessComponent : Component { + [ViewVariables(VVAccess.ReadWrite), DataField] + public int Blindness = 0; // How damaged should their eyes be. Set 0 for maximum damage. } diff --git a/Content.Server/Traits/Assorted/SelfAwareComponent.cs b/Content.Shared/Traits/Assorted/Components/SelfAwareComponent.cs similarity index 91% rename from Content.Server/Traits/Assorted/SelfAwareComponent.cs rename to Content.Shared/Traits/Assorted/Components/SelfAwareComponent.cs index 03f5cd1550..fa2485ac48 100644 --- a/Content.Server/Traits/Assorted/SelfAwareComponent.cs +++ b/Content.Shared/Traits/Assorted/Components/SelfAwareComponent.cs @@ -1,13 +1,14 @@ using Content.Shared.Damage.Prototypes; using Content.Shared.FixedPoint; +using Robust.Shared.GameStates; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set; -namespace Content.Server.Traits.Assorted; +namespace Content.Shared.Traits.Assorted.Components; /// /// This is used for the Self-Aware trait to enhance the information received from HealthExaminableSystem. /// -[RegisterComponent] +[RegisterComponent, NetworkedComponent] public sealed partial class SelfAwareComponent : Component { // diff --git a/Content.Shared/Traits/Assorted/Components/SingerComponent.cs b/Content.Shared/Traits/Assorted/Components/SingerComponent.cs index 9c79166ef6..f36969e742 100644 --- a/Content.Shared/Traits/Assorted/Components/SingerComponent.cs +++ b/Content.Shared/Traits/Assorted/Components/SingerComponent.cs @@ -11,6 +11,9 @@ public sealed partial class SingerComponent : Component [DataField(required: true), AutoNetworkedField] public ProtoId Proto = string.Empty; + [DataField(serverOnly: true)] + public EntProtoId? MidiActionId = "ActionHarpyPlayMidi"; + [DataField(serverOnly: true)] public EntityUid? MidiAction; } diff --git a/Content.Shared/Traits/Assorted/Prototypes/SingerInstrumentPrototype.cs b/Content.Shared/Traits/Assorted/Prototypes/SingerInstrumentPrototype.cs index 6a49854f6e..e1fa696d79 100644 --- a/Content.Shared/Traits/Assorted/Prototypes/SingerInstrumentPrototype.cs +++ b/Content.Shared/Traits/Assorted/Prototypes/SingerInstrumentPrototype.cs @@ -1,9 +1,10 @@ +using Content.Shared.Instruments; using Robust.Shared.Prototypes; namespace Content.Shared.Traits.Assorted.Prototypes; [Prototype("SingerInstrument")] -public sealed class SingerInstrumentPrototype : IPrototype +public sealed partial class SingerInstrumentPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; @@ -27,7 +28,7 @@ public sealed class SingerInstrumentPrototype : IPrototype /// The BUI configuration for the instrument. /// [DataField] - public PrototypeData? MidiUi; + public InstrumentUiKey? MidiUi; // The below is server only, as it uses a server-BUI event !type [DataField(serverOnly: true, required: true)] diff --git a/Content.Shared/Traits/Assorted/Systems/CyberEyesSystem.cs b/Content.Shared/Traits/Assorted/Systems/CyberEyesSystem.cs new file mode 100644 index 0000000000..2dde437972 --- /dev/null +++ b/Content.Shared/Traits/Assorted/Systems/CyberEyesSystem.cs @@ -0,0 +1,21 @@ +using Content.Shared.Examine; +using Content.Shared.Traits.Assorted.Components; + +namespace Content.Shared.Traits.Assorted.Systems; + +public sealed class CyberEyesSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnExamined); + } + + private void OnExamined(EntityUid uid, CyberEyesComponent component, ExaminedEvent args) + { + if (!args.IsInDetailsRange) + return; + + args.PushMarkup($"[color=white]{Loc.GetString(component.CyberEyesExaminationText, ("entity", uid))}[/color]"); + } +} diff --git a/Content.Shared/Traits/Assorted/Systems/PermanentBlindnessSystem.cs b/Content.Shared/Traits/Assorted/Systems/PermanentBlindnessSystem.cs index 113939f66b..21faf7d50b 100644 --- a/Content.Shared/Traits/Assorted/Systems/PermanentBlindnessSystem.cs +++ b/Content.Shared/Traits/Assorted/Systems/PermanentBlindnessSystem.cs @@ -2,6 +2,7 @@ using Content.Shared.Eye.Blinding.Components; using Content.Shared.Eye.Blinding.Systems; using Content.Shared.IdentityManagement; +using Content.Shared.Traits.Assorted.Components; using Robust.Shared.Network; namespace Content.Shared.Traits.Assorted.Systems; @@ -18,15 +19,14 @@ public sealed class PermanentBlindnessSystem : EntitySystem /// public override void Initialize() { - SubscribeLocalEvent(OnStartup); - SubscribeLocalEvent(OnShutdown); - SubscribeLocalEvent(OnDamageChanged); - SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnShutdown); + SubscribeLocalEvent(OnExamined); } private void OnExamined(Entity blindness, ref ExaminedEvent args) { - if (args.IsInDetailsRange && !_net.IsClient) + if (args.IsInDetailsRange && !_net.IsClient && blindness.Comp.Blindness == 0) { args.PushMarkup(Loc.GetString("trait-examined-Blindness", ("target", Identity.Entity(blindness, EntityManager)))); } @@ -37,28 +37,17 @@ private void OnShutdown(Entity blindness _blinding.UpdateIsBlind(blindness.Owner); } - private void OnStartup(Entity blindness, ref ComponentStartup args) + private void OnMapInit(Entity blindness, ref MapInitEvent args) { if (!_entityManager.TryGetComponent(blindness, out var blindable)) return; - var damageToDeal = (int) BlurryVisionComponent.MaxMagnitude - blindable.EyeDamage; - - if (damageToDeal <= 0) - return; - - _blinding.AdjustEyeDamage(blindness.Owner, damageToDeal); - } - - private void OnDamageChanged(Entity blindness, ref EyeDamageChangedEvent args) - { - if (args.Damage >= BlurryVisionComponent.MaxMagnitude) - return; - - if (!_entityManager.TryGetComponent(blindness, out var blindable)) - return; - - var damageRestoration = (int) BlurryVisionComponent.MaxMagnitude - args.Damage; - _blinding.AdjustEyeDamage(blindness.Owner, damageRestoration); + if (blindness.Comp.Blindness != 0) + _blinding.SetMinDamage(new Entity(blindness.Owner, blindable), blindness.Comp.Blindness); + else + { + var maxMagnitudeInt = (int) BlurryVisionComponent.MaxMagnitude; + _blinding.SetMinDamage(new Entity(blindness.Owner, blindable), maxMagnitudeInt); + } } } diff --git a/Content.Shared/Traits/Assorted/Systems/SharedSingerSystem.cs b/Content.Shared/Traits/Assorted/Systems/SharedSingerSystem.cs index 08d0f5c76d..56f76af9bb 100644 --- a/Content.Shared/Traits/Assorted/Systems/SharedSingerSystem.cs +++ b/Content.Shared/Traits/Assorted/Systems/SharedSingerSystem.cs @@ -33,15 +33,12 @@ private void OnStartup(Entity ent, ref ComponentStartup args) if (!ProtoMan.TryIndex(ent.Comp.Proto, out var singer)) return; - _actionsSystem.AddAction(ent, ref ent.Comp.MidiAction, singer.MidiActionId); + _actionsSystem.AddAction(ent, ref ent.Comp.MidiAction, ent.Comp.MidiActionId); var instrumentComp = EnsureInstrumentComp(ent); var defaultData = singer.InstrumentList[singer.DefaultInstrument]; _instrument.SetInstrumentProgram(instrumentComp, defaultData.Item1, defaultData.Item2); SetUpSwappableInstrument(ent, singer); - - if (singer.MidiUi is {} uiData && !_ui.TryGetUi(ent, uiData.UiKey, out _)) - _ui.AddUi(ent.Owner, uiData); } private void OnShutdown(Entity ent, ref ComponentShutdown args) diff --git a/Content.Shared/Traits/Prototypes/TraitPrototype.cs b/Content.Shared/Traits/Prototypes/TraitPrototype.cs index 7bdff058ee..7c0e429a69 100644 --- a/Content.Shared/Traits/Prototypes/TraitPrototype.cs +++ b/Content.Shared/Traits/Prototypes/TraitPrototype.cs @@ -1,4 +1,5 @@ using Content.Shared.Customization.Systems; +using Content.Shared.Mood; using Content.Shared.Psionics; using Robust.Shared.Prototypes; using Robust.Shared.Utility; @@ -56,4 +57,34 @@ public sealed partial class TraitPrototype : IPrototype /// [DataField] public List? PsionicPowers { get; private set; } = default!; + + /// + /// The list of all Spoken Languages that this trait adds. + /// + [DataField] + public List? LanguagesSpoken { get; private set; } = default!; + + /// + /// The list of all Understood Languages that this trait adds. + /// + [DataField] + public List? LanguagesUnderstood { get; private set; } = default!; + + /// + /// The list of all Spoken Languages that this trait removes. + /// + [DataField] + public List? RemoveLanguagesSpoken { get; private set; } = default!; + + /// + /// The list of all Understood Languages that this trait removes. + /// + [DataField] + public List? RemoveLanguagesUnderstood { get; private set; } = default!; + + /// + /// The list of all Moodlets that this trait adds. + /// + [DataField] + public List>? MoodEffects { get; private set; } = default!; } diff --git a/Content.Shared/UserInterface/ActivatableUIComponent.cs b/Content.Shared/UserInterface/ActivatableUIComponent.cs new file mode 100644 index 0000000000..3f83816b7d --- /dev/null +++ b/Content.Shared/UserInterface/ActivatableUIComponent.cs @@ -0,0 +1,77 @@ +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization.TypeSerializers.Implementations; + +namespace Content.Shared.UserInterface +{ + [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] + public sealed partial class ActivatableUIComponent : Component + { + [DataField(required: true, customTypeSerializer: typeof(EnumSerializer))] + public Enum? Key; + + /// + /// Whether the item must be held in one of the user's hands to work. + /// This is ignored unless is true. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField] + public bool InHandsOnly; + + [DataField] + public bool SingleUser; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField] + public bool AdminOnly; + + [DataField] + public LocId VerbText = "ui-verb-toggle-open"; + + /// + /// Whether you need a hand to operate this UI. The hand does not need to be free, you just need to have one. + /// + /// + /// This should probably be true for most machines & computers, but there will still be UIs that represent a + /// more generic interaction / configuration that might not require hands. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField] + public bool RequireHands = true; + + /// + /// Entities that are required to open this UI. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public EntityWhitelist? RequiredItems; + + /// + /// If true, then this UI can only be opened via verbs. I.e., normal interactions/activations will not open + /// the UI. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool VerbOnly; + + /// + /// Whether spectators (non-admin ghosts) should be allowed to view this UI. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField] + public bool AllowSpectator = true; + + /// + /// Whether the item must be in the user's currently selected/active hand. + /// This is ignored unless is true. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField] + public bool RequireActiveHand = true; + + /// + /// The client channel currently using the object, or null if there's none/not single user. + /// NOTE: DO NOT DIRECTLY SET, USE ActivatableUISystem.SetCurrentSingleUser + /// + [DataField, AutoNetworkedField] + public EntityUid? CurrentSingleUser; + } +} diff --git a/Content.Shared/UserInterface/ActivatableUIEvents.cs b/Content.Shared/UserInterface/ActivatableUIEvents.cs index 6e6b3f63c6..338673a3ca 100644 --- a/Content.Shared/UserInterface/ActivatableUIEvents.cs +++ b/Content.Shared/UserInterface/ActivatableUIEvents.cs @@ -24,12 +24,12 @@ public UserOpenActivatableUIAttemptEvent(EntityUid who, EntityUid target) public sealed class AfterActivatableUIOpenEvent : EntityEventArgs { public EntityUid User { get; } - public readonly ICommonSession Session; + public readonly EntityUid Actor; - public AfterActivatableUIOpenEvent(EntityUid who, ICommonSession session) + public AfterActivatableUIOpenEvent(EntityUid who, EntityUid actor) { User = who; - Session = session; + Actor = actor; } } diff --git a/Content.Shared/UserInterface/ActivatableUIRequiresPowerCellComponent.cs b/Content.Shared/UserInterface/ActivatableUIRequiresPowerCellComponent.cs new file mode 100644 index 0000000000..aa9e561e07 --- /dev/null +++ b/Content.Shared/UserInterface/ActivatableUIRequiresPowerCellComponent.cs @@ -0,0 +1,13 @@ +using Content.Shared.PowerCell; +using Robust.Shared.GameStates; + +namespace Content.Shared.UserInterface; + +/// +/// Specifies that the attached entity requires power. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ActivatableUIRequiresPowerCellComponent : Component +{ + +} diff --git a/Content.Shared/UserInterface/ActivatableUISystem.Power.cs b/Content.Shared/UserInterface/ActivatableUISystem.Power.cs new file mode 100644 index 0000000000..b8a815c7a8 --- /dev/null +++ b/Content.Shared/UserInterface/ActivatableUISystem.Power.cs @@ -0,0 +1,93 @@ +using Content.Shared.PowerCell; +using Robust.Shared.Containers; + +namespace Content.Shared.UserInterface; + +public sealed partial class ActivatableUISystem +{ + [Dependency] private readonly SharedPowerCellSystem _cell = default!; + + private void InitializePower() + { + SubscribeLocalEvent(OnBatteryOpenAttempt); + SubscribeLocalEvent(OnBatteryOpened); + SubscribeLocalEvent(OnBatteryClosed); + + SubscribeLocalEvent(OnPowerCellRemoved); + } + + private void OnPowerCellRemoved(EntityUid uid, PowerCellDrawComponent component, EntRemovedFromContainerMessage args) + { + _cell.SetPowerCellDrawEnabled(uid, false); + + if (!HasComp(uid) || + !TryComp(uid, out ActivatableUIComponent? activatable)) + { + return; + } + + if (activatable.Key == null) + { + Log.Error($"Encountered null key in activatable ui on entity {ToPrettyString(uid)}"); + return; + } + + _uiSystem.CloseUi(uid, activatable.Key); + } + + private void OnBatteryOpened(EntityUid uid, ActivatableUIRequiresPowerCellComponent component, BoundUIOpenedEvent args) + { + var activatable = Comp(uid); + + if (!args.UiKey.Equals(activatable.Key)) + return; + + _cell.SetPowerCellDrawEnabled(uid, true); + } + + private void OnBatteryClosed(EntityUid uid, ActivatableUIRequiresPowerCellComponent component, BoundUIClosedEvent args) + { + var activatable = Comp(uid); + + if (!args.UiKey.Equals(activatable.Key)) + return; + + // Stop drawing power if this was the last person with the UI open. + if (!_uiSystem.IsUiOpen(uid, activatable.Key)) + _cell.SetPowerCellDrawEnabled(uid, false); + } + + /// + /// Call if you want to check if the UI should close due to a recent battery usage. + /// + public void CheckUsage(EntityUid uid, ActivatableUIComponent? active = null, ActivatableUIRequiresPowerCellComponent? component = null, PowerCellDrawComponent? draw = null) + { + if (!Resolve(uid, ref component, ref draw, ref active, false)) + return; + + if (active.Key == null) + { + Log.Error($"Encountered null key in activatable ui on entity {ToPrettyString(uid)}"); + return; + } + + if (_cell.HasActivatableCharge(uid)) + return; + + _uiSystem.CloseUi(uid, active.Key); + } + + private void OnBatteryOpenAttempt(EntityUid uid, ActivatableUIRequiresPowerCellComponent component, ActivatableUIOpenAttemptEvent args) + { + if (!TryComp(uid, out var draw)) + return; + + // Check if we have the appropriate drawrate / userate to even open it. + if (args.Cancelled || + !_cell.HasActivatableCharge(uid, draw, user: args.User) || + !_cell.HasDrawCharge(uid, draw, user: args.User)) + { + args.Cancel(); + } + } +} diff --git a/Content.Shared/UserInterface/ActivatableUISystem.cs b/Content.Shared/UserInterface/ActivatableUISystem.cs new file mode 100644 index 0000000000..3ac8835dd0 --- /dev/null +++ b/Content.Shared/UserInterface/ActivatableUISystem.cs @@ -0,0 +1,332 @@ +using Content.Shared.ActionBlocker; +using Content.Shared.Administration.Managers; +using Content.Shared.Ghost; +using Content.Shared.Hands; +using Content.Shared.Hands.Components; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Interaction; +using Content.Shared.Interaction.Events; +using Content.Shared.Popups; +using Content.Shared.Verbs; +using Robust.Shared.Containers; + +namespace Content.Shared.UserInterface; + +public sealed partial class ActivatableUISystem : EntitySystem +{ + [Dependency] private readonly ISharedAdminManager _adminManager = default!; + [Dependency] private readonly ActionBlockerSystem _blockerSystem = default!; + [Dependency] private readonly SharedUserInterfaceSystem _uiSystem = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly SharedInteractionSystem _interaction = default!; + + private readonly List _toClose = new(); + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnUseInHand); + SubscribeLocalEvent(OnActivate); + SubscribeLocalEvent(OnInteractUsing); + SubscribeLocalEvent(OnHandDeselected); + SubscribeLocalEvent(OnHandUnequipped); + SubscribeLocalEvent(OnUIClose); + SubscribeLocalEvent>(GetActivationVerb); + SubscribeLocalEvent>(GetVerb); + + // TODO ActivatableUI + // Add UI-user component, and listen for user container changes. + // I.e., should lose a computer UI if a player gets shut into a locker. + SubscribeLocalEvent(OnGotInserted); + SubscribeLocalEvent(OnGotRemoved); + + SubscribeLocalEvent(OnBoundInterfaceInteractAttempt); + SubscribeLocalEvent(OnActionPerform); + + InitializePower(); + } + + private void OnBoundInterfaceInteractAttempt(BoundUserInterfaceMessageAttempt ev) + { + if (!TryComp(ev.Target, out ActivatableUIComponent? comp)) + return; + + if (!comp.RequireHands) + return; + + if (!TryComp(ev.Actor, out HandsComponent? hands) || hands.Hands.Count == 0) + ev.Cancel(); + } + + private void OnActionPerform(EntityUid uid, UserInterfaceComponent component, OpenUiActionEvent args) + { + if (args.Handled || args.Key == null) + return; + + args.Handled = _uiSystem.TryToggleUi(uid, args.Key, args.Performer); + } + + + private void GetActivationVerb(EntityUid uid, ActivatableUIComponent component, GetVerbsEvent args) + { + if (component.VerbOnly || !ShouldAddVerb(uid, component, args)) + return; + + args.Verbs.Add(new ActivationVerb + { + // TODO VERBS add "open UI" icon + Act = () => InteractUI(args.User, uid, component), + Text = Loc.GetString(component.VerbText) + }); + } + + private void GetVerb(EntityUid uid, ActivatableUIComponent component, GetVerbsEvent args) + { + if (!component.VerbOnly || !ShouldAddVerb(uid, component, args)) + return; + + args.Verbs.Add(new Verb + { + // TODO VERBS add "open UI" icon + Act = () => InteractUI(args.User, uid, component), + Text = Loc.GetString(component.VerbText) + }); + } + + private bool ShouldAddVerb(EntityUid uid, ActivatableUIComponent component, GetVerbsEvent args) where T : Verb + { + if (!args.CanAccess) + return false; + + if (!component.RequiredItems?.IsValid(args.Using ?? default, EntityManager) ?? false) + return false; + + if (component.RequireHands) + { + if (args.Hands == null) + return false; + + if (component.InHandsOnly) + { + if (!_hands.IsHolding(args.User, uid, out var hand, args.Hands)) + return false; + + if (component.RequireActiveHand && args.Hands.ActiveHand != hand) + return false; + } + } + + return args.CanInteract || component.AllowSpectator && HasComp(args.User); + } + + private void OnUseInHand(EntityUid uid, ActivatableUIComponent component, UseInHandEvent args) + { + if (args.Handled) + return; + + if (component.VerbOnly) + return; + + if (component.RequiredItems != null) + return; + + args.Handled = InteractUI(args.User, uid, component); + } + + private void OnActivate(EntityUid uid, ActivatableUIComponent component, ActivateInWorldEvent args) + { + if (args.Handled) + return; + + if (component.VerbOnly) + return; + + if (component.RequiredItems != null) + return; + + args.Handled = InteractUI(args.User, uid, component); + } + + private void OnInteractUsing(EntityUid uid, ActivatableUIComponent component, InteractUsingEvent args) + { + if (args.Handled) + return; + + if (component.VerbOnly) + return; + + if (component.RequiredItems == null) + return; + + if (!component.RequiredItems.IsValid(args.Used, EntityManager)) + return; + + args.Handled = InteractUI(args.User, uid, component); + } + + private void OnUIClose(EntityUid uid, ActivatableUIComponent component, BoundUIClosedEvent args) + { + var user = args.Actor; + + if (user != component.CurrentSingleUser) + return; + + if (!Equals(args.UiKey, component.Key)) + return; + + SetCurrentSingleUser(uid, null, component); + } + + private bool InteractUI(EntityUid user, EntityUid uiEntity, ActivatableUIComponent aui) + { + if (aui.Key == null || !_uiSystem.HasUi(uiEntity, aui.Key)) + return false; + + if (_uiSystem.IsUiOpen(uiEntity, aui.Key, user)) + { + _uiSystem.CloseUi(uiEntity, aui.Key, user); + return true; + } + + if (!_blockerSystem.CanInteract(user, uiEntity) && (!aui.AllowSpectator || !HasComp(user))) + return false; + + if (aui.RequireHands) + { + if (!TryComp(user, out HandsComponent? hands)) + return false; + + if (aui.InHandsOnly) + { + if (!_hands.IsHolding(user, uiEntity, out var hand, hands)) + return false; + + if (aui.RequireActiveHand && hands.ActiveHand != hand) + return false; + } + } + + if (aui.AdminOnly && !_adminManager.IsAdmin(user)) + return false; + + if (aui.SingleUser && aui.CurrentSingleUser != null && user != aui.CurrentSingleUser) + { + var message = Loc.GetString("machine-already-in-use", ("machine", uiEntity)); + _popupSystem.PopupEntity(message, uiEntity, user); + + if (_uiSystem.IsUiOpen(uiEntity, aui.Key)) + return true; + + Log.Error($"Activatable UI has user without being opened? Entity: {ToPrettyString(uiEntity)}. User: {aui.CurrentSingleUser}, Key: {aui.Key}"); + } + + // If we've gotten this far, fire a cancellable event that indicates someone is about to activate this. + // This is so that stuff can require further conditions (like power). + var oae = new ActivatableUIOpenAttemptEvent(user); + var uae = new UserOpenActivatableUIAttemptEvent(user, uiEntity); + RaiseLocalEvent(user, uae); + RaiseLocalEvent(uiEntity, oae); + if (oae.Cancelled || uae.Cancelled) + return false; + + // Give the UI an opportunity to prepare itself if it needs to do anything + // before opening + var bae = new BeforeActivatableUIOpenEvent(user); + RaiseLocalEvent(uiEntity, bae); + + SetCurrentSingleUser(uiEntity, user, aui); + _uiSystem.OpenUi(uiEntity, aui.Key, user); + + //Let the component know a user opened it so it can do whatever it needs to do + var aae = new AfterActivatableUIOpenEvent(user, user); + RaiseLocalEvent(uiEntity, aae); + + return true; + } + + public void SetCurrentSingleUser(EntityUid uid, EntityUid? user, ActivatableUIComponent? aui = null) + { + if (!Resolve(uid, ref aui)) + return; + + if (!aui.SingleUser) + return; + + aui.CurrentSingleUser = user; + Dirty(uid, aui); + + RaiseLocalEvent(uid, new ActivatableUIPlayerChangedEvent()); + } + + public void CloseAll(EntityUid uid, ActivatableUIComponent? aui = null) + { + if (!Resolve(uid, ref aui, false)) + return; + + if (aui.Key == null) + { + Log.Error($"Encountered null key in activatable ui on entity {ToPrettyString(uid)}"); + return; + } + + _uiSystem.CloseUi(uid, aui.Key); + } + + private void OnHandDeselected(Entity ent, ref HandDeselectedEvent args) + { + if (ent.Comp.RequireHands && ent.Comp.InHandsOnly && ent.Comp.RequireActiveHand) + CloseAll(ent, ent); + } + + private void OnHandUnequipped(Entity ent, ref GotUnequippedHandEvent args) + { + if (ent.Comp.RequireHands && ent.Comp.InHandsOnly) + CloseAll(ent, ent); + } + + private void OnGotInserted(Entity ent, ref EntGotInsertedIntoContainerMessage args) + { + CheckAccess((ent, ent)); + } + + private void OnGotRemoved(Entity ent, ref EntGotRemovedFromContainerMessage args) + { + CheckAccess((ent, ent)); + } + + public void CheckAccess(Entity ent) + { + if (!Resolve(ent, ref ent.Comp)) + return; + + if (ent.Comp.Key == null) + { + Log.Error($"Encountered null key in activatable ui on entity {ToPrettyString(ent)}"); + return; + } + + foreach (var user in _uiSystem.GetActors(ent.Owner, ent.Comp.Key)) + { + if (!_container.IsInSameOrParentContainer(user, ent) + && !_interaction.CanAccessViaStorage(user, ent)) + { + _toClose.Add(user); + continue; + + } + + if (!_interaction.InRangeUnobstructed(user, ent)) + _toClose.Add(user); + } + + foreach (var user in _toClose) + { + _uiSystem.CloseUi(ent.Owner, ent.Comp.Key, user); + } + + _toClose.Clear(); + } +} diff --git a/Content.Shared/Verbs/SharedVerbSystem.cs b/Content.Shared/Verbs/SharedVerbSystem.cs index 9dda910f3f..60714aea8f 100644 --- a/Content.Shared/Verbs/SharedVerbSystem.cs +++ b/Content.Shared/Verbs/SharedVerbSystem.cs @@ -55,13 +55,21 @@ public SortedSet GetLocalVerbs(EntityUid target, EntityUid user, Type type return GetLocalVerbs(target, user, new List() { type }, force); } + /// + public SortedSet GetLocalVerbs(EntityUid target, EntityUid user, List types, bool force = false) + { + return GetLocalVerbs(target, user, types, out _, force); + } + /// /// Raises a number of events in order to get all verbs of the given type(s) defined in local systems. This /// does not request verbs from the server. /// - public SortedSet GetLocalVerbs(EntityUid target, EntityUid user, List types, bool force = false) + public SortedSet GetLocalVerbs(EntityUid target, EntityUid user, List types, + out List extraCategories, bool force = false) { SortedSet verbs = new(); + extraCategories = new(); // accessibility checks bool canAccess = false; @@ -108,7 +116,7 @@ public SortedSet GetLocalVerbs(EntityUid target, EntityUid user, List(user, target, @using, hands, canInteract, canAccess); + var verbEvent = new GetVerbsEvent(user, target, @using, hands, canInteract, canAccess, extraCategories); RaiseLocalEvent(target, verbEvent, true); verbs.UnionWith(verbEvent.Verbs); } @@ -117,35 +125,35 @@ public SortedSet GetLocalVerbs(EntityUid target, EntityUid user, List(user, target, @using, hands, canInteract, canAccess); + var verbEvent = new GetVerbsEvent(user, target, @using, hands, canInteract, canAccess, extraCategories); RaiseLocalEvent(@using.Value, verbEvent, true); // directed at used, not at target verbs.UnionWith(verbEvent.Verbs); } if (types.Contains(typeof(InnateVerb))) { - var verbEvent = new GetVerbsEvent(user, target, @using, hands, canInteract, canAccess); + var verbEvent = new GetVerbsEvent(user, target, @using, hands, canInteract, canAccess, extraCategories); RaiseLocalEvent(user, verbEvent, true); verbs.UnionWith(verbEvent.Verbs); } if (types.Contains(typeof(AlternativeVerb))) { - var verbEvent = new GetVerbsEvent(user, target, @using, hands, canInteract, canAccess); + var verbEvent = new GetVerbsEvent(user, target, @using, hands, canInteract, canAccess, extraCategories); RaiseLocalEvent(target, verbEvent, true); verbs.UnionWith(verbEvent.Verbs); } if (types.Contains(typeof(ActivationVerb))) { - var verbEvent = new GetVerbsEvent(user, target, @using, hands, canInteract, canAccess); + var verbEvent = new GetVerbsEvent(user, target, @using, hands, canInteract, canAccess, extraCategories); RaiseLocalEvent(target, verbEvent, true); verbs.UnionWith(verbEvent.Verbs); } if (types.Contains(typeof(ExamineVerb))) { - var verbEvent = new GetVerbsEvent(user, target, @using, hands, canInteract, canAccess); + var verbEvent = new GetVerbsEvent(user, target, @using, hands, canInteract, canAccess, extraCategories); RaiseLocalEvent(target, verbEvent, true); verbs.UnionWith(verbEvent.Verbs); } @@ -153,7 +161,7 @@ public SortedSet GetLocalVerbs(EntityUid target, EntityUid user, List(user, target, @using, hands, canInteract, canAccess); + var verbEvent = new GetVerbsEvent(user, target, @using, hands, canInteract, canAccess, extraCategories); RaiseLocalEvent(target, verbEvent, true); verbs.UnionWith(verbEvent.Verbs); } @@ -161,7 +169,7 @@ public SortedSet GetLocalVerbs(EntityUid target, EntityUid user, List(user, target, @using, hands, canInteract, access); + var verbEvent = new GetVerbsEvent(user, target, @using, hands, canInteract, access, extraCategories); RaiseLocalEvent(target, verbEvent); verbs.UnionWith(verbEvent.Verbs); } diff --git a/Content.Shared/Verbs/VerbCategory.cs b/Content.Shared/Verbs/VerbCategory.cs index 748570b025..3331cad30b 100644 --- a/Content.Shared/Verbs/VerbCategory.cs +++ b/Content.Shared/Verbs/VerbCategory.cs @@ -84,6 +84,8 @@ public VerbCategory(string text, string? icon, bool iconsOnly = false) public static readonly VerbCategory SelectType = new("verb-categories-select-type", null); + public static readonly VerbCategory PowerLevel = new("verb-categories-power-level", null); + public static readonly VerbCategory Interaction = new("verb-categories-interaction", null); } } diff --git a/Content.Shared/Verbs/VerbEvents.cs b/Content.Shared/Verbs/VerbEvents.cs index 9a09d5d7a1..6b3fd327c9 100644 --- a/Content.Shared/Verbs/VerbEvents.cs +++ b/Content.Shared/Verbs/VerbEvents.cs @@ -77,6 +77,13 @@ public sealed class GetVerbsEvent : EntityEventArgs where TVerb : Verb /// public readonly SortedSet Verbs = new(); + /// + /// Additional verb categories to show in the pop-up menu, even if there are no verbs currently associated + /// with that category. This is mainly useful to prevent verb menu pop-in. E.g., admins will get admin/debug + /// related verbs on entities, even though most of those verbs are all defined server-side. + /// + public readonly List ExtraCategories; + /// /// Can the user physically access the target? /// @@ -123,7 +130,7 @@ public sealed class GetVerbsEvent : EntityEventArgs where TVerb : Verb /// public readonly EntityUid? Using; - public GetVerbsEvent(EntityUid user, EntityUid target, EntityUid? @using, HandsComponent? hands, bool canInteract, bool canAccess) + public GetVerbsEvent(EntityUid user, EntityUid target, EntityUid? @using, HandsComponent? hands, bool canInteract, bool canAccess, List extraCategories) { User = user; Target = target; @@ -131,6 +138,7 @@ public GetVerbsEvent(EntityUid user, EntityUid target, EntityUid? @using, HandsC Hands = hands; CanAccess = canAccess; CanInteract = canInteract; + ExtraCategories = extraCategories; } } } diff --git a/Content.Shared/Wagging/WaggingComponent.cs b/Content.Shared/Wagging/WaggingComponent.cs index 76881827dd..70e7f009c7 100644 --- a/Content.Shared/Wagging/WaggingComponent.cs +++ b/Content.Shared/Wagging/WaggingComponent.cs @@ -17,9 +17,6 @@ public sealed partial class WaggingComponent : Component [DataField] public EntityUid? ActionEntity; - [DataField] - public ProtoId EmoteId = "WagTail"; - /// /// Suffix to add to get the animated marking. /// diff --git a/Content.Shared/Weapons/Melee/MeleeSoundSystem.cs b/Content.Shared/Weapons/Melee/MeleeSoundSystem.cs index 350642105a..315d752a2c 100644 --- a/Content.Shared/Weapons/Melee/MeleeSoundSystem.cs +++ b/Content.Shared/Weapons/Melee/MeleeSoundSystem.cs @@ -1,4 +1,5 @@ using Content.Shared.Weapons.Melee.Components; +using Content.Shared.Weapons.Melee.Events; using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; diff --git a/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs b/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs index fce6b4fa4f..7fedf32213 100644 --- a/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs +++ b/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Contests; using Content.Shared.Damage; using Content.Shared.FixedPoint; using Robust.Shared.Audio; @@ -162,10 +163,32 @@ public sealed partial class MeleeWeaponComponent : Component [DataField, AutoNetworkedField] public SoundSpecifier SoundNoDamage { get; set; } = new SoundCollectionSpecifier("WeakHit"); + /// + /// Arguments for the MeleeContestInteractions constructor + /// + [DataField] + public ContestArgs ContestArgs = new ContestArgs + { + DoStaminaInteraction = true, + StaminaDisadvantage = true, + StaminaRangeModifier = 2, + StaminaOffset = 0.25f, + DoHealthInteraction = true, + HealthRangeModifier = 1.5f, + }; + // WD EDIT START [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] public bool CanBeBlocked = true; // WD EDIT END + + /// + /// If true, the weapon must be equipped for it to be used. + /// E.g boxing gloves must be equipped to your gloves, + /// not just held in your hand to be used. + /// + [DataField, AutoNetworkedField] + public bool MustBeEquippedToUse = false; } /// diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index efcd6d6b55..5af138bc8f 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -33,7 +33,7 @@ namespace Content.Shared.Weapons.Melee; -public abstract class SharedMeleeWeaponSystem : EntitySystem +public abstract partial class SharedMeleeWeaponSystem : EntitySystem { [Dependency] protected readonly ISharedAdminLogManager AdminLogger = default!; [Dependency] protected readonly ActionBlockerSystem Blocker = default!; @@ -170,49 +170,39 @@ private void OnStopAttack(StopAttackEvent msg, EntitySessionEventArgs args) private void OnLightAttack(LightAttackEvent msg, EntitySessionEventArgs args) { - var user = args.SenderSession.AttachedEntity; - - if (user == null) + if (args.SenderSession.AttachedEntity is not {} user) return; - if (!TryGetWeapon(user.Value, out var weaponUid, out var weapon) || + if (!TryGetWeapon(user, out var weaponUid, out var weapon) || weaponUid != GetEntity(msg.Weapon)) { return; } - AttemptAttack(args.SenderSession.AttachedEntity!.Value, weaponUid, weapon, msg, args.SenderSession); + AttemptAttack(user, weaponUid, weapon, msg, args.SenderSession); } private void OnHeavyAttack(HeavyAttackEvent msg, EntitySessionEventArgs args) { - if (args.SenderSession.AttachedEntity == null) - { + if (args.SenderSession.AttachedEntity is not {} user) return; - } - if (!TryGetWeapon(args.SenderSession.AttachedEntity.Value, out var weaponUid, out var weapon) || + if (!TryGetWeapon(user, out var weaponUid, out var weapon) || weaponUid != GetEntity(msg.Weapon)) { return; } - AttemptAttack(args.SenderSession.AttachedEntity.Value, weaponUid, weapon, msg, args.SenderSession); + AttemptAttack(user, weaponUid, weapon, msg, args.SenderSession); } private void OnDisarmAttack(DisarmAttackEvent msg, EntitySessionEventArgs args) { - if (args.SenderSession.AttachedEntity == null) - { + if (args.SenderSession.AttachedEntity is not {} user) return; - } - if (!TryGetWeapon(args.SenderSession.AttachedEntity.Value, out var weaponUid, out var weapon)) - { - return; - } - - AttemptAttack(args.SenderSession.AttachedEntity.Value, weaponUid, weapon, msg, args.SenderSession); + if (TryGetWeapon(user, out var weaponUid, out var weapon)) + AttemptAttack(user, weaponUid, weapon, msg, args.SenderSession); } /// @@ -226,6 +216,9 @@ public DamageSpecifier GetDamage(EntityUid uid, EntityUid user, MeleeWeaponCompo var ev = new GetMeleeDamageEvent(uid, new (component.Damage), new(), user); RaiseLocalEvent(uid, ref ev); + if (component.ContestArgs is not null) + ev.Damage *= _contests.ContestConstructor(user, component.ContestArgs); + return DamageSpecifier.ApplyModifierSets(ev.Damage, ev.Modifiers); } @@ -250,9 +243,7 @@ public FixedPoint2 GetHeavyDamageModifier(EntityUid uid, EntityUid user, MeleeWe return ev.DamageModifier * ev.Multipliers - * component.HeavyDamageBaseModifier - * _contests.StaminaContest(user, false, 2f) //Taking stamina damage reduces wide swing damage by up to 50% - / _contests.HealthContest(user, false, 0.8f); //Being injured grants up to 20% more wide swing damage + * component.HeavyDamageBaseModifier; } public bool TryGetWeapon(EntityUid entity, out EntityUid weaponUid, [NotNullWhen(true)] out MeleeWeaponComponent? melee) @@ -277,7 +268,10 @@ public bool TryGetWeapon(EntityUid entity, out EntityUid weaponUid, [NotNullWhen if (EntityManager.TryGetComponent(entity, out HandsComponent? hands) && hands.ActiveHandEntity is { } held) { - if (EntityManager.TryGetComponent(held, out melee)) + // Make sure the entity is a weapon AND it doesn't need + // to be equipped to be used (E.g boxing gloves). + if (EntityManager.TryGetComponent(held, out melee) && + !melee.MustBeEquippedToUse) { weaponUid = held; return true; @@ -342,23 +336,32 @@ private bool AttemptAttack(EntityUid user, EntityUid weaponUid, MeleeWeaponCompo var fireRateSwingModifier = 1f; + EntityUid? target = null; switch (attack) { case LightAttackEvent light: - var lightTarget = GetEntity(light.Target); + if (light.Target != null && !TryGetEntity(light.Target, out target)) + { + // Target was lightly attacked & deleted. + return false; + } - if (!Blocker.CanAttack(user, lightTarget, (weaponUid, weapon))) + if (!Blocker.CanAttack(user, target, (weaponUid, weapon))) return false; // Can't self-attack if you're the weapon - if (weaponUid == lightTarget) + if (weaponUid == target) return false; break; case DisarmAttackEvent disarm: - var disarmTarget = GetEntity(disarm.Target); + if (disarm.Target != null && !TryGetEntity(disarm.Target, out target)) + { + // Target was lightly attacked & deleted. + return false; + } - if (!Blocker.CanAttack(user, disarmTarget, (weaponUid, weapon), true)) + if (!Blocker.CanAttack(user, target, (weaponUid, weapon), true)) return false; break; case HeavyAttackEvent: @@ -441,9 +444,7 @@ private bool AttemptAttack(EntityUid user, EntityUid weaponUid, MeleeWeaponCompo protected virtual void DoLightAttack(EntityUid user, LightAttackEvent ev, EntityUid meleeUid, MeleeWeaponComponent component, ICommonSession? session) { - var damage = GetDamage(meleeUid, user, component) - * _contests.StaminaContest(user) //Taking stamina damage reduces light attack damage by up to 25% - / _contests.HealthContest(user, false, 0.8f); //Being injured grants up to 20% more damage; + var damage = GetDamage(meleeUid, user, component); var target = GetEntity(ev.Target); // For consistency with wide attacks stuff needs damageable. diff --git a/Content.Shared/Weapons/Ranged/Components/ActionGunComponent.cs b/Content.Shared/Weapons/Ranged/Components/ActionGunComponent.cs new file mode 100644 index 0000000000..112339efd7 --- /dev/null +++ b/Content.Shared/Weapons/Ranged/Components/ActionGunComponent.cs @@ -0,0 +1,37 @@ +using Content.Shared.Actions; +using Content.Shared.Weapons.Ranged.Systems; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Weapons.Ranged.Components; + +/// +/// Lets you shoot a gun using an action. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(ActionGunSystem))] +public sealed partial class ActionGunComponent : Component +{ + /// + /// Action to create, must use . + /// + [DataField(required: true)] + public EntProtoId Action = string.Empty; + + [DataField] + public EntityUid? ActionEntity; + + /// + /// Prototype of gun entity to spawn. + /// Deleted when this component is removed. + /// + [DataField(required: true)] + public EntProtoId GunProto = string.Empty; + + [DataField] + public EntityUid? Gun; +} + +/// +/// Action event for to shoot at a position. +/// +public sealed partial class ActionGunShootEvent : WorldTargetActionEvent; diff --git a/Content.Shared/Weapons/Ranged/Components/GunComponent.cs b/Content.Shared/Weapons/Ranged/Components/GunComponent.cs index 8d7ecae1a8..398076747d 100644 --- a/Content.Shared/Weapons/Ranged/Components/GunComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/GunComponent.cs @@ -247,6 +247,11 @@ public sealed partial class GunComponent : Component /// [DataField] public bool DoRecoil = true; + + // WD EDIT START + [DataField] + public Angle? ThrowAngle; + // WD EDIT END } [Flags] diff --git a/Content.Shared/Weapons/Ranged/Components/GunWieldBonusComponent.cs b/Content.Shared/Weapons/Ranged/Components/GunWieldBonusComponent.cs index ce96639e3c..522319ccbd 100644 --- a/Content.Shared/Weapons/Ranged/Components/GunWieldBonusComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/GunWieldBonusComponent.cs @@ -33,4 +33,7 @@ public sealed partial class GunWieldBonusComponent : Component /// [DataField, AutoNetworkedField] public Angle AngleIncrease = Angle.FromDegrees(0); + + [DataField] + public LocId? WieldBonusExamineMessage = "gunwieldbonus-component-examine"; } diff --git a/Content.Shared/Weapons/Ranged/Events/HitScanReflectAttempt.cs b/Content.Shared/Weapons/Ranged/Events/HitScanReflectAttempt.cs index 31c9c4cdd4..8a80450307 100644 --- a/Content.Shared/Weapons/Ranged/Events/HitScanReflectAttempt.cs +++ b/Content.Shared/Weapons/Ranged/Events/HitScanReflectAttempt.cs @@ -1,4 +1,5 @@ using System.Numerics; +using Content.Shared.Damage; using Content.Shared.Weapons.Reflect; namespace Content.Shared.Weapons.Ranged.Events; @@ -8,4 +9,5 @@ namespace Content.Shared.Weapons.Ranged.Events; /// and changing where shot will go next /// [ByRefEvent] -public record struct HitScanReflectAttemptEvent(EntityUid? Shooter, EntityUid SourceItem, ReflectType Reflective, Vector2 Direction, bool Reflected); +public record struct HitScanReflectAttemptEvent(EntityUid? Shooter, EntityUid SourceItem, ReflectType Reflective, + Vector2 Direction, bool Reflected, DamageSpecifier? Damage); // WD EDIT diff --git a/Content.Shared/Weapons/Ranged/Events/MuzzleFlashEvent.cs b/Content.Shared/Weapons/Ranged/Events/MuzzleFlashEvent.cs index 91f5e6cd86..10d4c2fe3c 100644 --- a/Content.Shared/Weapons/Ranged/Events/MuzzleFlashEvent.cs +++ b/Content.Shared/Weapons/Ranged/Events/MuzzleFlashEvent.cs @@ -11,15 +11,12 @@ public sealed class MuzzleFlashEvent : EntityEventArgs public NetEntity Uid; public string Prototype; - /// - /// Should the effect match the rotation of the entity. - /// - public bool MatchRotation; + public Angle Angle; - public MuzzleFlashEvent(NetEntity uid, string prototype, bool matchRotation = false) + public MuzzleFlashEvent(NetEntity uid, string prototype, Angle angle) { Uid = uid; Prototype = prototype; - MatchRotation = matchRotation; + Angle = angle; } } diff --git a/Content.Shared/Weapons/Ranged/Systems/ActionGunSystem.cs b/Content.Shared/Weapons/Ranged/Systems/ActionGunSystem.cs new file mode 100644 index 0000000000..f3dfe8a2a0 --- /dev/null +++ b/Content.Shared/Weapons/Ranged/Systems/ActionGunSystem.cs @@ -0,0 +1,41 @@ +using Content.Shared.Actions; +using Content.Shared.Weapons.Ranged.Components; + +namespace Content.Shared.Weapons.Ranged.Systems; + +public sealed class ActionGunSystem : EntitySystem +{ + [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly SharedGunSystem _gun = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnShutdown); + SubscribeLocalEvent(OnShoot); + } + + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + if (string.IsNullOrEmpty(ent.Comp.Action)) + return; + + _actions.AddAction(ent, ref ent.Comp.ActionEntity, ent.Comp.Action); + ent.Comp.Gun = Spawn(ent.Comp.GunProto); + } + + private void OnShutdown(Entity ent, ref ComponentShutdown args) + { + if (ent.Comp.Gun is {} gun) + QueueDel(gun); + } + + private void OnShoot(Entity ent, ref ActionGunShootEvent args) + { + if (TryComp(ent.Comp.Gun, out var gun)) + _gun.AttemptShoot(ent, ent.Comp.Gun.Value, gun, args.Target); + } +} + diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs index 061a84ee3b..ec1b4c5ce7 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs @@ -2,6 +2,7 @@ using Content.Shared.Examine; using Content.Shared.Interaction; using Content.Shared.Interaction.Events; +using Content.Shared.Stacks; using Content.Shared.Verbs; using Content.Shared.Weapons.Ranged.Components; using Content.Shared.Weapons.Ranged.Events; @@ -47,8 +48,19 @@ private void OnBallisticInteractUsing(EntityUid uid, BallisticAmmoProviderCompon if (GetBallisticShots(component) >= component.Capacity) return; - component.Entities.Add(args.Used); - Containers.Insert(args.Used, component.Container); + // WD EDIT START + var entity = args.Used; + var doInsert = true; + if (TryComp(args.Used, out StackComponent? stack) && stack.Count > 1) + { + entity = GetStackEntity(args.Used, stack); + doInsert = false; + } + + component.Entities.Add(entity); + if (_netManager.IsServer || doInsert) + Containers.Insert(entity, component.Container); + // WD EDIT END // Not predicted so Audio.PlayPredicted(component.SoundInsert, uid, args.User); args.Handled = true; @@ -281,9 +293,19 @@ public void UpdateBallisticAppearance(EntityUid uid, BallisticAmmoProviderCompon if (!Timing.IsFirstTimePredicted || !TryComp(uid, out var appearance)) return; - Appearance.SetData(uid, AmmoVisuals.AmmoCount, GetBallisticShots(component), appearance); + var count = GetBallisticShots(component); // WD EDIT + + Appearance.SetData(uid, AmmoVisuals.AmmoCount, count, appearance); // WD EDIT Appearance.SetData(uid, AmmoVisuals.AmmoMax, component.Capacity, appearance); + Appearance.SetData(uid, AmmoVisuals.HasAmmo, count != 0, appearance); // WD EDIT + } + + // WD EDIT START + protected virtual EntityUid GetStackEntity(EntityUid uid, StackComponent stack) + { + return uid; } + // WD EDIT END } /// diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs index 0a28576dff..c1acb2bce4 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs @@ -141,7 +141,6 @@ private void OnShootRequest(RequestShootEvent msg, EntitySessionEventArgs args) return; gun.ShootCoordinates = GetCoordinates(msg.Coordinates); - Log.Debug($"Set shoot coordinates to {gun.ShootCoordinates}"); gun.Target = GetEntity(msg.Target); AttemptShoot(user.Value, ent, gun); } @@ -201,7 +200,6 @@ private void StopShooting(EntityUid uid, GunComponent gun) if (gun.ShotCounter == 0) return; - Log.Debug($"Stopped shooting {ToPrettyString(uid)}"); gun.ShotCounter = 0; gun.ShootCoordinates = null; gun.Target = null; @@ -476,7 +474,7 @@ protected void RemoveShootable(EntityUid uid) RemCompDeferred(uid); } - protected void MuzzleFlash(EntityUid gun, AmmoComponent component, EntityUid? user = null) + protected void MuzzleFlash(EntityUid gun, AmmoComponent component, Angle worldAngle, EntityUid? user = null) { var attemptEv = new GunMuzzleFlashAttemptEvent(); RaiseLocalEvent(gun, ref attemptEv); @@ -488,7 +486,7 @@ protected void MuzzleFlash(EntityUid gun, AmmoComponent component, EntityUid? us if (sprite == null) return; - var ev = new MuzzleFlashEvent(GetNetEntity(gun), sprite, user == gun); + var ev = new MuzzleFlashEvent(GetNetEntity(gun), sprite, worldAngle); CreateEffect(gun, ev, user); } @@ -537,7 +535,7 @@ public void RefreshModifiers(Entity gun) Dirty(gun); } - protected abstract void CreateEffect(EntityUid uid, MuzzleFlashEvent message, EntityUid? user = null); + protected abstract void CreateEffect(EntityUid gunUid, MuzzleFlashEvent message, EntityUid? user = null); /// /// Used for animated effects on the client. diff --git a/Content.Shared/Weapons/Reflect/ReflectComponent.cs b/Content.Shared/Weapons/Reflect/ReflectComponent.cs index 8e7b8975d9..14fbafc07b 100644 --- a/Content.Shared/Weapons/Reflect/ReflectComponent.cs +++ b/Content.Shared/Weapons/Reflect/ReflectComponent.cs @@ -21,17 +21,47 @@ public sealed partial class ReflectComponent : Component [ViewVariables(VVAccess.ReadWrite), DataField("reflects")] public ReflectType Reflects = ReflectType.Energy | ReflectType.NonEnergy; + [DataField("spread"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public Angle Spread = Angle.FromDegrees(45); + + [DataField("soundOnReflect")] + public SoundSpecifier? SoundOnReflect = new SoundPathSpecifier("/Audio/Weapons/Guns/Hits/laser_sear_wall.ogg"); + /// - /// Probability for a projectile to be reflected. + /// Is the deflection an innate power or something actively maintained? If true, this component grants a flat + /// deflection chance rather than a chance that degrades when moving/weightless/stunned/etc. + /// + [DataField] + public bool Innate = false; + + /// + /// Maximum probability for a projectile to be reflected. /// [DataField("reflectProb"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] public float ReflectProb = 0.25f; - [DataField("spread"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public Angle Spread = Angle.FromDegrees(45); + /// + /// The maximum velocity a wielder can move at before losing effectiveness. + /// + [DataField] + public float VelocityBeforeNotMaxProb = 2.5f; // Walking speed for a human. Suitable for a weightless deflector like an e-sword. - [DataField("soundOnReflect")] - public SoundSpecifier? SoundOnReflect = new SoundPathSpecifier("/Audio/Weapons/Guns/Hits/laser_sear_wall.ogg"); + /// + /// The velocity a wielder has to be moving at to use the minimum effectiveness value. + /// + [DataField] + public float VelocityBeforeMinProb = 4.5f; // Sprinting speed for a human. Suitable for a weightless deflector like an e-sword. + + /// + /// Minimum probability for a projectile to be reflected. + /// + [DataField] + public float MinReflectProb = 0.1f; + + // WD START + [DataField, AutoNetworkedField] + public float DamageOnReflectModifier; + // WD END } [Flags] diff --git a/Content.Shared/Weapons/Reflect/ReflectSystem.cs b/Content.Shared/Weapons/Reflect/ReflectSystem.cs index 4a7c2f6b6a..af57f36a2f 100644 --- a/Content.Shared/Weapons/Reflect/ReflectSystem.cs +++ b/Content.Shared/Weapons/Reflect/ReflectSystem.cs @@ -1,17 +1,21 @@ using System.Diagnostics.CodeAnalysis; using System.Numerics; using Content.Shared.Administration.Logs; +using Content.Shared.Alert; using Content.Shared.Audio; +using Content.Shared.Damage; +using Content.Shared.Damage.Components; using Content.Shared.Database; +using Content.Shared.Gravity; using Content.Shared.Hands; using Content.Shared.Inventory; using Content.Shared.Inventory.Events; using Content.Shared.Item.ItemToggle.Components; using Content.Shared.Popups; using Content.Shared.Projectiles; +using Content.Shared.Standing; using Content.Shared.Weapons.Ranged.Components; using Content.Shared.Weapons.Ranged.Events; -using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Network; using Robust.Shared.Physics.Components; @@ -35,6 +39,10 @@ public sealed class ReflectSystem : EntitySystem [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly InventorySystem _inventorySystem = default!; + [Dependency] private readonly SharedGravitySystem _gravity = default!; + [Dependency] private readonly StandingStateSystem _standing = default!; + [Dependency] private readonly AlertsSystem _alerts = default!; + [Dependency] private readonly DamageableSystem _damageable = default!; // WD EDIT public override void Initialize() { @@ -57,9 +65,9 @@ private void OnReflectUserHitscan(EntityUid uid, ReflectUserComponent component, if (args.Reflected) return; - foreach (var ent in _inventorySystem.GetHandOrInventoryEntities(uid, SlotFlags.All & ~SlotFlags.POCKET)) + foreach (var ent in _inventorySystem.GetHandOrInventoryEntities(uid, SlotFlags.WITHOUT_POCKET)) { - if (!TryReflectHitscan(uid, ent, args.Shooter, args.SourceItem, args.Direction, out var dir)) + if (!TryReflectHitscan(uid, ent, args.Shooter, args.SourceItem, args.Direction, args.Damage, out var dir)) continue; args.Direction = dir.Value; @@ -70,7 +78,7 @@ private void OnReflectUserHitscan(EntityUid uid, ReflectUserComponent component, private void OnReflectUserCollide(EntityUid uid, ReflectUserComponent component, ref ProjectileReflectAttemptEvent args) { - foreach (var ent in _inventorySystem.GetHandOrInventoryEntities(uid, SlotFlags.All & ~SlotFlags.POCKET)) + foreach (var ent in _inventorySystem.GetHandOrInventoryEntities(uid, SlotFlags.WITHOUT_POCKET)) { if (!TryReflectProjectile(uid, ent, args.ProjUid)) continue; @@ -91,15 +99,20 @@ private void OnReflectCollide(EntityUid uid, ReflectComponent component, ref Pro private bool TryReflectProjectile(EntityUid user, EntityUid reflector, EntityUid projectile, ProjectileComponent? projectileComp = null, ReflectComponent? reflect = null) { - if (!Resolve(reflector, ref reflect, false) || + // Do we have the components needed to try a reflect at all? + if ( + !Resolve(reflector, ref reflect, false) || !reflect.Enabled || !TryComp(projectile, out var reflective) || (reflect.Reflects & reflective.Reflective) == 0x0 || - !_random.Prob(reflect.ReflectProb) || - !TryComp(projectile, out var physics)) - { + !TryComp(projectile, out var physics) || + TryComp(reflector, out var staminaComponent) && staminaComponent.Critical || + _standing.IsDown(reflector) + ) + return false; + + if (!_random.Prob(CalcReflectChance(reflector, reflect))) return false; - } var rotation = _random.NextAngle(-reflect.Spread / 2, reflect.Spread / 2).Opposite(); var existingVelocity = _physics.GetMapLinearVelocity(projectile, component: physics); @@ -123,6 +136,14 @@ private bool TryReflectProjectile(EntityUid user, EntityUid reflector, EntityUid if (Resolve(projectile, ref projectileComp, false)) { + // WD EDIT START + if (reflect.DamageOnReflectModifier != 0) + { + _damageable.TryChangeDamage(reflector, projectileComp.Damage * reflect.DamageOnReflectModifier, + projectileComp.IgnoreResistances, origin: projectileComp.Shooter); + } + // WD EDIT END + _adminLogger.Add(LogType.BulletHit, LogImpact.Medium, $"{ToPrettyString(user)} reflected {ToPrettyString(projectile)} from {ToPrettyString(projectileComp.Weapon)} shot by {projectileComp.Shooter}"); projectileComp.Shooter = user; @@ -137,6 +158,34 @@ private bool TryReflectProjectile(EntityUid user, EntityUid reflector, EntityUid return true; } + private float CalcReflectChance(EntityUid reflector, ReflectComponent reflect) + { + /* + * The rules of deflection are as follows: + * If you innately reflect things via magic, biology etc., you always have a full chance. + * If you are standing up and standing still, you're prepared to deflect and have full chance. + * If you have velocity, your deflection chance depends on your velocity, clamped. + * If you are floating, your chance is the minimum value possible. + * You cannot deflect if you are knocked down or stunned. + */ + + if (reflect.Innate) + return reflect.ReflectProb; + + if (_gravity.IsWeightless(reflector)) + return reflect.MinReflectProb; + + if (!TryComp(reflector, out var reflectorPhysics)) + return reflect.ReflectProb; + + return MathHelper.Lerp( + reflect.MinReflectProb, + reflect.ReflectProb, + // Inverse progression between velocities fed in as progression between probabilities. We go high -> low so the output here needs to be _inverted_. + 1 - Math.Clamp((reflectorPhysics.LinearVelocity.Length() - reflect.VelocityBeforeNotMaxProb) / (reflect.VelocityBeforeMinProb - reflect.VelocityBeforeNotMaxProb), 0, 1) + ); + } + private void OnReflectHitscan(EntityUid uid, ReflectComponent component, ref HitScanReflectAttemptEvent args) { if (args.Reflected || @@ -145,7 +194,7 @@ private void OnReflectHitscan(EntityUid uid, ReflectComponent component, ref Hit return; } - if (TryReflectHitscan(uid, uid, args.Shooter, args.SourceItem, args.Direction, out var dir)) + if (TryReflectHitscan(uid, uid, args.Shooter, args.SourceItem, args.Direction, args.Damage, out var dir)) // WD EDIT { args.Direction = dir.Value; args.Reflected = true; @@ -158,11 +207,19 @@ private bool TryReflectHitscan( EntityUid? shooter, EntityUid shotSource, Vector2 direction, + DamageSpecifier? damage, // WD EDIT [NotNullWhen(true)] out Vector2? newDirection) { if (!TryComp(reflector, out var reflect) || !reflect.Enabled || - !_random.Prob(reflect.ReflectProb)) + TryComp(reflector, out var staminaComponent) && staminaComponent.Critical || + _standing.IsDown(reflector)) + { + newDirection = null; + return false; + } + + if (!_random.Prob(CalcReflectChance(reflector, reflect))) { newDirection = null; return false; @@ -174,6 +231,11 @@ private bool TryReflectHitscan( _audio.PlayPvs(reflect.SoundOnReflect, user, AudioHelpers.WithVariation(0.05f, _random)); } + // WD EDIT START + if (reflect.DamageOnReflectModifier != 0 && damage != null) + _damageable.TryChangeDamage(reflector, damage * reflect.DamageOnReflectModifier, origin: shooter); + // WD EDIT END + var spread = _random.NextAngle(-reflect.Spread / 2, reflect.Spread / 2); newDirection = -spread.RotateVec(direction); @@ -191,6 +253,9 @@ private void OnReflectEquipped(EntityUid uid, ReflectComponent component, GotEqu return; EnsureComp(args.Equipee); + + if (component.Enabled) + EnableAlert(args.Equipee); } private void OnReflectUnequipped(EntityUid uid, ReflectComponent comp, GotUnequippedEvent args) @@ -204,6 +269,9 @@ private void OnReflectHandEquipped(EntityUid uid, ReflectComponent component, Go return; EnsureComp(args.User); + + if (component.Enabled) + EnableAlert(args.User); } private void OnReflectHandUnequipped(EntityUid uid, ReflectComponent component, GotUnequippedHandEvent args) @@ -215,6 +283,11 @@ private void OnToggleReflect(EntityUid uid, ReflectComponent comp, ref ItemToggl { comp.Enabled = args.Activated; Dirty(uid, comp); + + if (comp.Enabled) + EnableAlert(uid); + else + DisableAlert(uid); } /// @@ -222,15 +295,28 @@ private void OnToggleReflect(EntityUid uid, ReflectComponent comp, ref ItemToggl /// private void RefreshReflectUser(EntityUid user) { - foreach (var ent in _inventorySystem.GetHandOrInventoryEntities(user, SlotFlags.All & ~SlotFlags.POCKET)) + foreach (var ent in _inventorySystem.GetHandOrInventoryEntities(user, SlotFlags.WITHOUT_POCKET)) { if (!HasComp(ent)) continue; EnsureComp(user); + EnableAlert(user); + return; } RemCompDeferred(user); + DisableAlert(user); + } + + private void EnableAlert(EntityUid alertee) + { + _alerts.ShowAlert(alertee, AlertType.Deflecting); + } + + private void DisableAlert(EntityUid alertee) + { + _alerts.ClearAlert(alertee, AlertType.Deflecting); } } diff --git a/Content.Shared/Whitelist/EntityWhitelist.cs b/Content.Shared/Whitelist/EntityWhitelist.cs index 942de2b0e8..895759be95 100644 --- a/Content.Shared/Whitelist/EntityWhitelist.cs +++ b/Content.Shared/Whitelist/EntityWhitelist.cs @@ -1,100 +1,67 @@ +using Content.Shared.Item; using Content.Shared.Tag; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; -namespace Content.Shared.Whitelist +namespace Content.Shared.Whitelist; + +/// +/// Used to determine whether an entity fits a certain whitelist. +/// Does not whitelist by prototypes, since that is undesirable; you're better off just adding a tag to all +/// entity prototypes that need to be whitelisted, and checking for that. +/// +/// +/// whitelist: +/// tags: +/// - Cigarette +/// - FirelockElectronics +/// components: +/// - Buckle +/// - AsteroidRock +/// sizes: +/// - Tiny +/// - Large +/// +[DataDefinition] +[Serializable, NetSerializable] +public sealed partial class EntityWhitelist { /// - /// Used to determine whether an entity fits a certain whitelist. - /// Does not whitelist by prototypes, since that is undesirable; you're better off just adding a tag to all - /// entity prototypes that need to be whitelisted, and checking for that. + /// Component names that are allowed in the whitelist. /// - /// - /// whitelist: - /// tags: - /// - Cigarette - /// - FirelockElectronics - /// components: - /// - Buckle - /// - AsteroidRock - /// - [DataDefinition] - [Serializable, NetSerializable] - public sealed partial class EntityWhitelist - { - /// - /// Component names that are allowed in the whitelist. - /// - [DataField("components")] public string[]? Components = null; - // TODO yaml validation - - [NonSerialized] - private List? _registrations = null; + [DataField] public string[]? Components; + // TODO yaml validation - /// - /// Tags that are allowed in the whitelist. - /// - [DataField("tags", customTypeSerializer:typeof(PrototypeIdListSerializer))] - public List? Tags = null; - - /// - /// If false, an entity only requires one of these components or tags to pass the whitelist. If true, an - /// entity requires to have ALL of these components and tags to pass. - /// - [DataField("requireAll")] - public bool RequireAll = false; + /// + /// Item sizes that are allowed in the whitelist. + /// + [DataField] + public List>? Sizes; - public void UpdateRegistrations() - { - if (Components == null) return; + [NonSerialized, Access(typeof(EntityWhitelistSystem))] + public List? Registrations; - var compfact = IoCManager.Resolve(); - _registrations = new List(); - foreach (var name in Components) - { - var availability = compfact.GetComponentAvailability(name); - if (compfact.TryGetRegistration(name, out var registration) - && availability == ComponentAvailability.Available) - { - _registrations.Add(registration); - } - else if (availability == ComponentAvailability.Unknown) - { - Logger.Warning($"Unknown component name {name} passed to EntityWhitelist!"); - } - } - } + /// + /// Tags that are allowed in the whitelist. + /// + [DataField] + public List>? Tags; - /// - /// Returns whether a given entity fits the whitelist. - /// - public bool IsValid(EntityUid uid, IEntityManager? entityManager = null) - { - if (Components != null && _registrations == null) - UpdateRegistrations(); + /// + /// If false, an entity only requires one of these components or tags to pass the whitelist. If true, an + /// entity requires to have ALL of these components and tags to pass. + /// The "Sizes" criteria will ignores this, since an item can only have one size. + /// + [DataField] + public bool RequireAll; - IoCManager.Resolve(ref entityManager); - if (_registrations != null) - { - foreach (var reg in _registrations) - { - if (entityManager.HasComponent(uid, reg.Type)) - { - if (!RequireAll) - return true; - } - else if (RequireAll) - return false; - } - } + [Obsolete("Use WhitelistSystem")] + public bool IsValid(EntityUid uid, IEntityManager? man = null) + { + var sys = man?.System() ?? + IoCManager.Resolve().GetEntitySystem(); - if (Tags != null && entityManager.TryGetComponent(uid, out TagComponent? tags)) - { - var tagSystem = entityManager.System(); - return RequireAll ? tagSystem.HasAllTags(tags, Tags) : tagSystem.HasAnyTag(tags, Tags); - } + return sys.IsValid(this, uid); - return false; - } } } diff --git a/Content.Shared/Whitelist/EntityWhitelistSystem.cs b/Content.Shared/Whitelist/EntityWhitelistSystem.cs new file mode 100644 index 0000000000..d73646b7e9 --- /dev/null +++ b/Content.Shared/Whitelist/EntityWhitelistSystem.cs @@ -0,0 +1,84 @@ +using System.Diagnostics.CodeAnalysis; +using Content.Shared.Item; +using Content.Shared.Tag; + +namespace Content.Shared.Whitelist; + +public sealed class EntityWhitelistSystem : EntitySystem +{ + [Dependency] private readonly IComponentFactory _factory = default!; + [Dependency] private readonly TagSystem _tag = default!; + + private EntityQuery _itemQuery; + + public override void Initialize() + { + base.Initialize(); + _itemQuery = GetEntityQuery(); + } + + /// + public bool IsValid(EntityWhitelist list, [NotNullWhen(true)] EntityUid? uid) + { + return uid != null && IsValid(list, uid.Value); + } + + /// + /// Checks whether a given entity satisfies a whitelist. + /// + public bool IsValid(EntityWhitelist list, EntityUid uid) + { + if (list.Components != null) + EnsureRegistrations(list); + + if (list.Registrations != null) + { + foreach (var reg in list.Registrations) + { + if (HasComp(uid, reg.Type)) + { + if (!list.RequireAll) + return true; + } + else if (list.RequireAll) + return false; + } + } + + if (list.Sizes != null && _itemQuery.TryComp(uid, out var itemComp)) + { + if (list.Sizes.Contains(itemComp.Size)) + return true; + } + + if (list.Tags != null) + { + return list.RequireAll + ? _tag.HasAllTags(uid, list.Tags) + : _tag.HasAnyTag(uid, list.Tags); + } + + return list.RequireAll; + } + + private void EnsureRegistrations(EntityWhitelist list) + { + if (list.Components == null) + return; + + list.Registrations = new List(); + foreach (var name in list.Components) + { + var availability = _factory.GetComponentAvailability(name); + if (_factory.TryGetRegistration(name, out var registration) + && availability == ComponentAvailability.Available) + { + list.Registrations.Add(registration); + } + else if (availability == ComponentAvailability.Unknown) + { + Log.Warning($"Unknown component name {name} passed to EntityWhitelist!"); + } + } + } +} diff --git a/Content.Shared/Wieldable/Components/WieldableComponent.cs b/Content.Shared/Wieldable/Components/WieldableComponent.cs index 4a50b93072..5dc6abbbbe 100644 --- a/Content.Shared/Wieldable/Components/WieldableComponent.cs +++ b/Content.Shared/Wieldable/Components/WieldableComponent.cs @@ -26,6 +26,13 @@ public sealed partial class WieldableComponent : Component [AutoNetworkedField, DataField("wielded")] public bool Wielded = false; + /// + /// Whether using the item inhand while wielding causes the item to unwield. + /// Unwielding can conflict with other inhand actions. + /// + [DataField] + public bool UnwieldOnUse = true; + [DataField("wieldedInhandPrefix")] public string? WieldedInhandPrefix = "wielded"; diff --git a/Content.Shared/Wieldable/WieldableSystem.cs b/Content.Shared/Wieldable/WieldableSystem.cs index 4cdb23a376..a337a512ed 100644 --- a/Content.Shared/Wieldable/WieldableSystem.cs +++ b/Content.Shared/Wieldable/WieldableSystem.cs @@ -1,3 +1,4 @@ +using Content.Shared.Examine; using Content.Shared.Hands; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; @@ -45,6 +46,7 @@ public override void Initialize() SubscribeLocalEvent(OnGunWielded); SubscribeLocalEvent(OnGunUnwielded); SubscribeLocalEvent(OnGunRefreshModifiers); + SubscribeLocalEvent(OnExamine); SubscribeLocalEvent(OnGetMeleeDamage); } @@ -90,6 +92,12 @@ private void OnGunRefreshModifiers(Entity bonus, ref Gun } } + private void OnExamine(EntityUid uid, GunWieldBonusComponent component, ref ExaminedEvent args) + { + if (component.WieldBonusExamineMessage != null) + args.PushText(Loc.GetString(component.WieldBonusExamineMessage)); + } + private void AddToggleWieldVerb(EntityUid uid, WieldableComponent component, GetVerbsEvent args) { if (args.Hands == null || !args.CanAccess || !args.CanInteract) @@ -120,7 +128,7 @@ private void OnUseInHand(EntityUid uid, WieldableComponent component, UseInHandE if (!component.Wielded) args.Handled = TryWield(uid, component, args.User); - else + else if (component.UnwieldOnUse) args.Handled = TryUnwield(uid, component, args.User); } diff --git a/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs b/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs index cecacceda9..07f2a60c84 100644 --- a/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs +++ b/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs @@ -30,50 +30,40 @@ public sealed class AnalysisConsoleExtractButtonPressedMessage : BoundUserInterf } [Serializable, NetSerializable] -public sealed class AnalysisConsoleScanUpdateState : BoundUserInterfaceState +public sealed class AnalysisConsoleBiasButtonPressedMessage(bool isDown) : BoundUserInterfaceMessage { - public NetEntity? Artifact; - - public bool AnalyzerConnected; - - public bool ServerConnected; - - public bool CanScan; - - public bool CanPrint; - - public FormattedMessage? ScanReport; - - public bool Scanning; - - public bool Paused; - - public TimeSpan? StartTime; - - public TimeSpan? AccumulatedRunTime; - - public TimeSpan? TotalTime; - - public int PointAmount; - - public AnalysisConsoleScanUpdateState(NetEntity? artifact, bool analyzerConnected, bool serverConnected, bool canScan, bool canPrint, - FormattedMessage? scanReport, bool scanning, bool paused, TimeSpan? startTime, TimeSpan? accumulatedRunTime, TimeSpan? totalTime, int pointAmount) - { - Artifact = artifact; - AnalyzerConnected = analyzerConnected; - ServerConnected = serverConnected; - CanScan = canScan; - CanPrint = canPrint; - - ScanReport = scanReport; - - Scanning = scanning; - Paused = paused; - - StartTime = startTime; - AccumulatedRunTime = accumulatedRunTime; - TotalTime = totalTime; + public bool IsDown = isDown; +} - PointAmount = pointAmount; - } +[Serializable, NetSerializable] +public sealed class AnalysisConsoleUpdateState( + NetEntity? artifact, + bool analyzerConnected, + bool serverConnected, + bool canScan, + bool canPrint, + FormattedMessage? scanReport, + bool scanning, + bool paused, + TimeSpan? startTime, + TimeSpan? accumulatedRunTime, + TimeSpan? totalTime, + int pointAmount, + bool isTraversalDown +) + : BoundUserInterfaceState +{ + public NetEntity? Artifact = artifact; + public bool AnalyzerConnected = analyzerConnected; + public bool ServerConnected = serverConnected; + public bool CanScan = canScan; + public bool CanPrint = canPrint; + public FormattedMessage? ScanReport = scanReport; + public bool Scanning = scanning; + public bool Paused = paused; + public TimeSpan? StartTime = startTime; + public TimeSpan? AccumulatedRunTime = accumulatedRunTime; + public TimeSpan? TotalTime = totalTime; + public int PointAmount = pointAmount; + public bool IsTraversalDown = isTraversalDown; } diff --git a/Content.Shared/Zombies/ZombieComponent.cs b/Content.Shared/Zombies/ZombieComponent.cs index be3fdbdd01..3673a2c51d 100644 --- a/Content.Shared/Zombies/ZombieComponent.cs +++ b/Content.Shared/Zombies/ZombieComponent.cs @@ -27,7 +27,7 @@ public sealed partial class ZombieComponent : Component, IAntagStatusIconCompone /// being invincible by bundling up. /// [ViewVariables(VVAccess.ReadWrite)] - public float MinZombieInfectionChance = 0.50f; + public float MinZombieInfectionChance = 0.25f; [ViewVariables(VVAccess.ReadWrite)] public float ZombieMovementSpeedDebuff = 0.70f; diff --git a/Content.Shared/_White/Animations/SharedWaddleAnimationSystem.cs b/Content.Shared/_White/Animations/SharedWaddleAnimationSystem.cs new file mode 100644 index 0000000000..72f111d60d --- /dev/null +++ b/Content.Shared/_White/Animations/SharedWaddleAnimationSystem.cs @@ -0,0 +1,51 @@ +using Content.Shared.Buckle; +using Content.Shared.Gravity; +using Content.Shared.Movement.Components; +using Content.Shared.Movement.Events; +using Content.Shared.Standing; +using Robust.Shared.Timing; + +namespace Content.Shared._White.Animations; + +public abstract class SharedWaddleAnimationSystem : EntitySystem +{ + [Dependency] protected readonly IGameTiming Timing = default!; + [Dependency] private readonly StandingStateSystem _standingState = default!; + [Dependency] private readonly SharedGravitySystem _gravity = default!; + [Dependency] private readonly SharedBuckleSystem _buckle = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMovementInput); + } + + private void OnMovementInput(EntityUid uid, WaddleAnimationComponent component, MoveInputEvent args) + { + if (!Timing.IsFirstTimePredicted + || _standingState.IsDown(uid) + || _gravity.IsWeightless(uid) + || _buckle.IsBuckled(uid)) + return; + + if (!args.HasDirectionalMovement && component.IsCurrentlyWaddling) + { + component.IsCurrentlyWaddling = false; + StopAnimation(uid); + + return; + } + + if (component.IsCurrentlyWaddling || !args.HasDirectionalMovement) + return; + + component.IsCurrentlyWaddling = true; + + PlayAnimation(uid); + } + + protected abstract void PlayAnimation(EntityUid user); + + protected abstract void StopAnimation(EntityUid user); +} diff --git a/Content.Shared/_White/CVars.cs b/Content.Shared/_White/CVars.cs index 48c2f5bd78..8b7137f94a 100644 --- a/Content.Shared/_White/CVars.cs +++ b/Content.Shared/_White/CVars.cs @@ -15,16 +15,6 @@ public sealed class WhiteCVars #endregion - #region Keybind - - public static readonly CVarDef AutoGetUp = - CVarDef.Create("white.auto_get_up", true, CVar.CLIENT | CVar.ARCHIVE | CVar.REPLICATED); - - public static readonly CVarDef HoldLookUp = - CVarDef.Create("white.hold_look_up", false, CVar.CLIENT | CVar.ARCHIVE); - - #endregion - #region Locale public static readonly CVarDef @@ -32,15 +22,6 @@ public static readonly CVarDef #endregion - #region GhostRespawn - public static readonly CVarDef GhostRespawnTime = - CVarDef.Create("ghost.respawn_time", 15d, CVar.SERVERONLY); - - public static readonly CVarDef GhostRespawnMaxPlayers = - CVarDef.Create("ghost.respawn_max_players", 40, CVar.SERVERONLY); - - #endregion - #region OptionsMisc public static readonly CVarDef LogInChat = diff --git a/Content.Client/Clothing/Systems/WaddleClothingSystem.cs b/Content.Shared/_White/Clothing/EntitySystems/WaddleClothingSystem.cs similarity index 95% rename from Content.Client/Clothing/Systems/WaddleClothingSystem.cs rename to Content.Shared/_White/Clothing/EntitySystems/WaddleClothingSystem.cs index b8ac3c207b..175525611e 100644 --- a/Content.Client/Clothing/Systems/WaddleClothingSystem.cs +++ b/Content.Shared/_White/Clothing/EntitySystems/WaddleClothingSystem.cs @@ -2,7 +2,7 @@ using Content.Shared.Movement.Components; using Content.Shared.Inventory.Events; -namespace Content.Client.Clothing.Systems; +namespace Content.Shared._White.Clothing.EntitySystems; public sealed class WaddleClothingSystem : EntitySystem { diff --git a/Content.Shared/_White/Collision/Knockdown/KnockdownOnCollideComponent.cs b/Content.Shared/_White/Collision/Knockdown/KnockdownOnCollideComponent.cs index 20ed5f8dce..078f01b952 100644 --- a/Content.Shared/_White/Collision/Knockdown/KnockdownOnCollideComponent.cs +++ b/Content.Shared/_White/Collision/Knockdown/KnockdownOnCollideComponent.cs @@ -1,4 +1,4 @@ -using Content.Shared._White.Standing; +using Content.Shared.Standing; namespace Content.Shared._White.Collision.Knockdown; diff --git a/Content.Shared/_White/Collision/Knockdown/KnockdownOnCollideSystem.cs b/Content.Shared/_White/Collision/Knockdown/KnockdownOnCollideSystem.cs index dafce97c2e..dcc6b38377 100644 --- a/Content.Shared/_White/Collision/Knockdown/KnockdownOnCollideSystem.cs +++ b/Content.Shared/_White/Collision/Knockdown/KnockdownOnCollideSystem.cs @@ -1,5 +1,5 @@ -using Content.Shared._White.Standing; using Content.Shared.Projectiles; +using Content.Shared.Standing; using Content.Shared.Throwing; namespace Content.Shared._White.Collision.Knockdown; diff --git a/Content.Shared/_White/Footprint/FootPrintComponent.cs b/Content.Shared/_White/Footprint/FootPrintComponent.cs new file mode 100644 index 0000000000..85e9207086 --- /dev/null +++ b/Content.Shared/_White/Footprint/FootPrintComponent.cs @@ -0,0 +1,23 @@ +using Content.Shared.Chemistry.Components; +using Robust.Shared.GameStates; + +namespace Content.Shared._White.FootPrint; + +/// +/// This is used for marking footsteps, handling footprint drawing. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class FootPrintComponent : Component +{ + /// + /// Owner (with ) of a print (this component). + /// + [AutoNetworkedField] + public EntityUid PrintOwner; + + [DataField] + public string SolutionName = "step"; + + [DataField] + public Entity? Solution; +} diff --git a/Content.Shared/_White/Footprint/FootPrintVisuals.cs b/Content.Shared/_White/Footprint/FootPrintVisuals.cs new file mode 100644 index 0000000000..f35e93ce96 --- /dev/null +++ b/Content.Shared/_White/Footprint/FootPrintVisuals.cs @@ -0,0 +1,25 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared._White.FootPrint; + +[Serializable, NetSerializable] +public enum FootPrintVisuals : byte +{ + BareFootPrint, + ShoesPrint, + SuitPrint, + Dragging +} + +[Serializable, NetSerializable] +public enum FootPrintVisualState : byte +{ + State, + Color +} + +[Serializable, NetSerializable] +public enum FootPrintVisualLayers : byte +{ + Print +} diff --git a/Content.Shared/_White/Footprint/FootPrintsComponent.cs b/Content.Shared/_White/Footprint/FootPrintsComponent.cs new file mode 100644 index 0000000000..0cbfa587f0 --- /dev/null +++ b/Content.Shared/_White/Footprint/FootPrintsComponent.cs @@ -0,0 +1,88 @@ +using System.Numerics; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Shared._White.FootPrint; + +[RegisterComponent] +public sealed partial class FootPrintsComponent : Component +{ + [ViewVariables(VVAccess.ReadOnly), DataField] + public ResPath RsiPath = new("/Textures/_White/Effects/footprints.rsi"); + + // all of those are set as a layer + [ViewVariables(VVAccess.ReadOnly), DataField] + public string LeftBarePrint = "footprint-left-bare-human"; + + [ViewVariables(VVAccess.ReadOnly), DataField] + public string RightBarePrint = "footprint-right-bare-human"; + + [ViewVariables(VVAccess.ReadOnly), DataField] + public string ShoesPrint = "footprint-shoes"; + + [ViewVariables(VVAccess.ReadOnly), DataField] + public string SuitPrint = "footprint-suit"; + + [ViewVariables(VVAccess.ReadOnly), DataField] + public string[] DraggingPrint = + [ + "dragging-1", + "dragging-2", + "dragging-3", + "dragging-4", + "dragging-5", + ]; + // yea, those + + [ViewVariables(VVAccess.ReadOnly), DataField] + public EntProtoId StepProtoId = "Footstep"; + + [ViewVariables(VVAccess.ReadOnly), DataField] + public Color PrintsColor = Color.FromHex("#00000000"); + + /// + /// The size scaling factor for footprint steps. Must be positive. + /// + [DataField] + public float StepSize = 0.7f; + + /// + /// The size scaling factor for drag marks. Must be positive. + /// + [DataField] + public float DragSize = 0.5f; + + /// + /// The amount of color to transfer from the source (e.g., puddle) to the footprint. + /// + [DataField] + public float ColorQuantity; + + /// + /// The factor by which the alpha channel is reduced in subsequent footprints. + /// + [DataField] + public float ColorReduceAlpha = 0.1f; + + [DataField] + public string? ReagentToTransfer; + + [DataField] + public Vector2 OffsetPrint = new(0.1f, 0f); + + /// + /// Tracks which foot should make the next print. True for right foot, false for left. + /// + public bool RightStep = true; + + /// + /// The position of the last footprint in world coordinates. + /// + public Vector2 StepPos = Vector2.Zero; + + /// + /// Controls how quickly the footprint color transitions between steps. + /// Value between 0 and 1, where higher values mean faster color changes. + /// + public float ColorInterpolationFactor = 0.2f; +} diff --git a/Content.Shared/_White/Footprint/PuddleFootPrintsComponent.cs b/Content.Shared/_White/Footprint/PuddleFootPrintsComponent.cs new file mode 100644 index 0000000000..27e8606904 --- /dev/null +++ b/Content.Shared/_White/Footprint/PuddleFootPrintsComponent.cs @@ -0,0 +1,11 @@ +namespace Content.Shared._White.FootPrint; + +[RegisterComponent] +public sealed partial class PuddleFootPrintsComponent : Component +{ + [ViewVariables(VVAccess.ReadWrite)] + public float SizeRatio = 0.2f; + + [ViewVariables(VVAccess.ReadWrite)] + public float OffPercent = 80f; +} diff --git a/Content.Shared/_White/Guns/Stretched/StretchedComponent.cs b/Content.Shared/_White/Guns/Stretched/StretchedComponent.cs new file mode 100644 index 0000000000..1b0145d874 --- /dev/null +++ b/Content.Shared/_White/Guns/Stretched/StretchedComponent.cs @@ -0,0 +1,16 @@ +using Content.Shared.Weapons.Ranged.Components; +using Robust.Shared.Audio; + +namespace Content.Shared._White.Guns.Stretched; + +[RegisterComponent] +public sealed partial class StretchedComponent : Component +{ + [ViewVariables] + public bool Stretched; + + [DataField, ViewVariables] + public SoundSpecifier? SoundDraw = new SoundPathSpecifier("/Audio/Weapons/drawbow2.ogg"); + + public BallisticAmmoProviderComponent Provider = default!; +} diff --git a/Content.Shared/_White/Guns/Stretched/StretchedSystem.cs b/Content.Shared/_White/Guns/Stretched/StretchedSystem.cs new file mode 100644 index 0000000000..393846c71e --- /dev/null +++ b/Content.Shared/_White/Guns/Stretched/StretchedSystem.cs @@ -0,0 +1,72 @@ +using Content.Shared.Interaction.Events; +using Content.Shared.Weapons.Ranged.Components; +using Content.Shared.Weapons.Ranged.Systems; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Containers; +using Robust.Shared.Serialization; + +namespace Content.Shared._White.Guns.Stretched; + +public sealed class StretchedSystem : EntitySystem +{ + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent(OnItemRemove); + SubscribeLocalEvent(OnAttemptShoot); + SubscribeLocalEvent(OnUse); + } + + private void OnStartup(EntityUid uid, StretchedComponent component, ComponentStartup args) + { + component.Provider = EnsureComp(uid); + } + + private void OnItemRemove(EntityUid uid, StretchedComponent component, EntRemovedFromContainerMessage args) + { + if (!component.Stretched || args.Container.ID != component.Provider.Container.ID) + return; + + component.Stretched = false; + UpdateDrawableAppearance(uid, component); + } + + private void OnAttemptShoot(EntityUid uid, StretchedComponent component, ref AttemptShootEvent args) + { + if (!component.Stretched) + args.Cancelled = true; + } + + private void OnUse(EntityUid uid, StretchedComponent component, UseInHandEvent args) + { + if (component.Stretched || component.Provider.Count == 0) + return; + + args.Handled = true; + + _audio.PlayPredicted(component.SoundDraw, uid, args.User); + component.Stretched = true; + + UpdateDrawableAppearance(uid, component); + } + + private void UpdateDrawableAppearance(EntityUid uid, StretchedComponent component) + { + if (!TryComp(uid, out var appearance)) + return; + + _appearance.SetData(uid, StretchedVisuals.Stretched, component.Stretched, appearance); + } +} + +[Serializable, NetSerializable] +public enum StretchedVisuals : byte +{ + Stretched, + Layer +} diff --git a/Content.Shared/_White/Implants/MindSlave/MindSlaveComponent.cs b/Content.Shared/_White/Implants/MindSlave/MindSlaveComponent.cs new file mode 100644 index 0000000000..d2c75ecc42 --- /dev/null +++ b/Content.Shared/_White/Implants/MindSlave/MindSlaveComponent.cs @@ -0,0 +1,21 @@ +using Content.Shared.StatusIcon; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared._White.Implants.MindSlave; + +[RegisterComponent, AutoGenerateComponentState, NetworkedComponent] +public sealed partial class MindSlaveComponent : Component +{ + [ViewVariables(VVAccess.ReadOnly), AutoNetworkedField] + public List Slaves = []; + + [ViewVariables(VVAccess.ReadOnly), AutoNetworkedField] + public NetEntity? Master; + + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string SlaveStatusIcon = "SlaveMindSlaveIcon"; + + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] + public string MasterStatusIcon = "MasterMindSlaveIcon"; +} diff --git a/Content.Shared/_White/Implants/NeuroStabilization/NeuroStabilizerComponent.cs b/Content.Shared/_White/Implants/NeuroStabilization/NeuroStabilizerComponent.cs new file mode 100644 index 0000000000..740f492946 --- /dev/null +++ b/Content.Shared/_White/Implants/NeuroStabilization/NeuroStabilizerComponent.cs @@ -0,0 +1,14 @@ +namespace Content.Shared._White.Implants.NeuroStabilization; + +[RegisterComponent] +public sealed partial class NeuroStabilizationComponent : Component +{ + [DataField] + public bool Electrocution = true; + + [DataField] + public TimeSpan TimeElectrocution = TimeSpan.FromSeconds(1); + + [DataField] + public float DamageModifier = 0.66f; +} diff --git a/Content.Shared/_White/Implants/NeuroStabilization/NeuroStabilizerSystem.cs b/Content.Shared/_White/Implants/NeuroStabilization/NeuroStabilizerSystem.cs new file mode 100644 index 0000000000..c0234c71f3 --- /dev/null +++ b/Content.Shared/_White/Implants/NeuroStabilization/NeuroStabilizerSystem.cs @@ -0,0 +1,28 @@ +using Content.Shared.Electrocution; +using Content.Shared.Damage.Systems; + +namespace Content.Shared._White.Implants.NeuroStabilization; + +public sealed class NeuroStabilizationSystem : EntitySystem +{ + [Dependency] private readonly SharedElectrocutionSystem _electrocution = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(BeforeStaminaDamage); + } + + private void BeforeStaminaDamage(EntityUid uid, NeuroStabilizationComponent component, ref BeforeStaminaDamageEvent args) + { + args.Cancelled = true; + + if (!component.Electrocution) + return; + + var damage = (int) MathF.Round(args.Value * component.DamageModifier); + _electrocution.TryDoElectrocution(uid, null, damage, component.TimeElectrocution, + false, 0.5f, null, true); + } +} diff --git a/Content.Shared/_White/Overlays/BaseOverlayComponent.cs b/Content.Shared/_White/Overlays/BaseOverlayComponent.cs new file mode 100644 index 0000000000..256b35011c --- /dev/null +++ b/Content.Shared/_White/Overlays/BaseOverlayComponent.cs @@ -0,0 +1,16 @@ +namespace Content.Shared._White.Overlays; + +public abstract partial class BaseOverlayComponent : Component +{ + [DataField, ViewVariables(VVAccess.ReadOnly)] + public virtual Vector3 Tint { get; set; } = new(0.3f, 0.3f, 0.3f); + + [DataField, ViewVariables(VVAccess.ReadOnly)] + public virtual float Strength { get; set; } = 2f; + + [DataField, ViewVariables(VVAccess.ReadOnly)] + public virtual float Noise { get; set; } = 0.5f; + + [DataField, ViewVariables(VVAccess.ReadOnly)] + public virtual Color Color { get; set; } = Color.White; +} diff --git a/Content.Shared/_White/Overlays/NightVisionComponent.cs b/Content.Shared/_White/Overlays/NightVisionComponent.cs new file mode 100644 index 0000000000..79bba87928 --- /dev/null +++ b/Content.Shared/_White/Overlays/NightVisionComponent.cs @@ -0,0 +1,15 @@ +using Content.Shared.Actions; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; + +namespace Content.Shared._White.Overlays; + +[RegisterComponent, NetworkedComponent] +public sealed partial class NightVisionComponent : SwitchableOverlayComponent +{ + public override string? ToggleAction { get; set; } = "ToggleNightVision"; + + public override Color Color { get; set; } = Color.FromHex("#98FB98"); +} + +public sealed partial class ToggleNightVisionEvent : InstantActionEvent; diff --git a/Content.Shared/_White/Overlays/SwitchableOverlayComponent.cs b/Content.Shared/_White/Overlays/SwitchableOverlayComponent.cs new file mode 100644 index 0000000000..7e60f7f3b9 --- /dev/null +++ b/Content.Shared/_White/Overlays/SwitchableOverlayComponent.cs @@ -0,0 +1,24 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; + +namespace Content.Shared._White.Overlays; + +public abstract partial class SwitchableOverlayComponent : BaseOverlayComponent +{ + [DataField, AutoNetworkedField] + public bool IsActive = true; + + [DataField] + public virtual SoundSpecifier? ActivateSound { get; set; } = + new SoundPathSpecifier("/Audio/_White/Items/Goggles/activate.ogg"); + + [DataField] + public virtual SoundSpecifier? DeactivateSound { get; set; } = + new SoundPathSpecifier("/Audio/_White/Items/Goggles/deactivate.ogg"); + + [DataField] + public virtual string? ToggleAction { get; set; } + + [ViewVariables] + public EntityUid? ToggleActionEntity; +} diff --git a/Content.Shared/_White/Overlays/SwitchableOverlaySystem.cs b/Content.Shared/_White/Overlays/SwitchableOverlaySystem.cs new file mode 100644 index 0000000000..8dfd77c465 --- /dev/null +++ b/Content.Shared/_White/Overlays/SwitchableOverlaySystem.cs @@ -0,0 +1,52 @@ +using Content.Shared.Actions; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Network; +using Robust.Shared.Player; +using Robust.Shared.Timing; + +namespace Content.Shared._White.Overlays; + +public abstract class SwitchableOverlaySystem : EntitySystem + where TComp : SwitchableOverlayComponent + where TEvent : InstantActionEvent +{ + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly INetManager _net = default!; + + public override void Initialize() + { + SubscribeLocalEvent(OnToggle); + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnRemove); + } + + private void OnRemove(EntityUid uid, TComp component, ComponentRemove args) + { + _actions.RemoveAction(uid, component.ToggleActionEntity); + UpdateVision(uid, false); + } + + private void OnInit(EntityUid uid, TComp component, ComponentInit args) + { + _actions.AddAction(uid, ref component.ToggleActionEntity, component.ToggleAction); + UpdateVision(uid, component.IsActive); + } + + protected virtual void UpdateVision(EntityUid uid, bool active) { } + + private void OnToggle(EntityUid uid, TComp component, TEvent args) + { + if (!_timing.IsFirstTimePredicted) + return; + + component.IsActive = !component.IsActive; + + if (_net.IsClient) + _audio.PlayEntity(component.IsActive ? component.ActivateSound : component.DeactivateSound, Filter.Local(), uid, false); + + args.Handled = true; + UpdateVision(uid, component.IsActive); + } +} diff --git a/Content.Shared/_White/Overlays/ThermalVisionComponent.cs b/Content.Shared/_White/Overlays/ThermalVisionComponent.cs new file mode 100644 index 0000000000..5100468d9a --- /dev/null +++ b/Content.Shared/_White/Overlays/ThermalVisionComponent.cs @@ -0,0 +1,14 @@ +using Content.Shared.Actions; +using Robust.Shared.GameStates; + +namespace Content.Shared._White.Overlays; + +[RegisterComponent, NetworkedComponent] +public sealed partial class ThermalVisionComponent : SwitchableOverlayComponent +{ + public override string? ToggleAction { get; set; } = "ToggleThermalVision"; + + public override Color Color { get; set; } = Color.FromHex("#F84742"); +} + +public sealed partial class ToggleThermalVisionEvent : InstantActionEvent; diff --git a/Content.Shared/_White/Penetrated/PenetratedComponent.cs b/Content.Shared/_White/Penetrated/PenetratedComponent.cs new file mode 100644 index 0000000000..f6f82a7031 --- /dev/null +++ b/Content.Shared/_White/Penetrated/PenetratedComponent.cs @@ -0,0 +1,11 @@ +namespace Content.Shared._White.Penetrated; + +[RegisterComponent] +public sealed partial class PenetratedComponent : Component +{ + [DataField] + public EntityUid? ProjectileUid; + + [DataField] + public bool IsPinned; +} diff --git a/Content.Shared/_White/Penetrated/PenetratedSystem.cs b/Content.Shared/_White/Penetrated/PenetratedSystem.cs new file mode 100644 index 0000000000..8506286fe1 --- /dev/null +++ b/Content.Shared/_White/Penetrated/PenetratedSystem.cs @@ -0,0 +1,34 @@ +using Content.Shared._White.Projectile; +using Robust.Shared.Physics; +using Robust.Shared.Physics.Components; +using Robust.Shared.Physics.Systems; + +namespace Content.Shared._White.Penetrated; + +public sealed class PenetratedSystem : EntitySystem +{ + [Dependency] private readonly SharedPhysicsSystem _physics = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + + public void FreePenetrated(EntityUid uid, PenetratedComponent? penetrated = null, PhysicsComponent? physics = null) + { + var xform = Transform(uid); + _transform.AttachToGridOrMap(uid, xform); + + if (Resolve(uid, ref physics, false)) + { + _physics.SetBodyType(uid, BodyType.KinematicController, body: physics, xform: xform); + _physics.WakeBody(uid, body: physics); + } + + if (!Resolve(uid, ref penetrated, false)) + return; + + penetrated.IsPinned = false; + + if (TryComp(penetrated.ProjectileUid, out var penetratedProjectile)) + penetratedProjectile.PenetratedUid = null; + + penetrated.ProjectileUid = null; + } +} diff --git a/Content.Shared/_White/Projectile/PenetratedProjectileComponent.cs b/Content.Shared/_White/Projectile/PenetratedProjectileComponent.cs new file mode 100644 index 0000000000..846a6045c2 --- /dev/null +++ b/Content.Shared/_White/Projectile/PenetratedProjectileComponent.cs @@ -0,0 +1,16 @@ +using Content.Shared.Damage; + +namespace Content.Shared._White.Projectile; + +[RegisterComponent] +public sealed partial class PenetratedProjectileComponent : Component +{ + [DataField] + public float MinimumSpeed = 40f; + + [DataField] + public DamageSpecifier Damage = new(); + + [DataField] + public EntityUid? PenetratedUid; +} diff --git a/Content.Shared/_White/Standing/LayingDownComponent.cs b/Content.Shared/_White/Standing/LayingDownComponent.cs deleted file mode 100644 index 6dce32ac24..0000000000 --- a/Content.Shared/_White/Standing/LayingDownComponent.cs +++ /dev/null @@ -1,25 +0,0 @@ -using Robust.Shared.GameStates; -using Robust.Shared.Serialization; - -namespace Content.Shared._White.Standing; - -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] -public sealed partial class LayingDownComponent : Component -{ - [DataField, AutoNetworkedField, ViewVariables(VVAccess.ReadWrite)] - public float StandingUpTime { get; set; } = 1f; - - [DataField, AutoNetworkedField, ViewVariables(VVAccess.ReadWrite)] - public float SpeedModify { get; set; } = 0.4f; - - [DataField, AutoNetworkedField, ViewVariables(VVAccess.ReadWrite)] - public bool AutoGetUp; -} -[Serializable, NetSerializable] -public sealed class ChangeLayingDownEvent : CancellableEntityEventArgs; - -[Serializable, NetSerializable] -public sealed class CheckAutoGetUpEvent(NetEntity user) : CancellableEntityEventArgs -{ - public NetEntity User = user; -} diff --git a/Content.Shared/_White/Standing/SharedLayingDownSystem.cs b/Content.Shared/_White/Standing/SharedLayingDownSystem.cs deleted file mode 100644 index 629fdea3fe..0000000000 --- a/Content.Shared/_White/Standing/SharedLayingDownSystem.cs +++ /dev/null @@ -1,176 +0,0 @@ -using System.Linq; -using Content.Shared.DoAfter; -using Content.Shared.Gravity; -using Content.Shared.Input; -using Content.Shared.Mobs.Systems; -using Content.Shared.Movement.Systems; -using Content.Shared.Standing; -using Content.Shared.Stunnable; -using Robust.Shared.Input.Binding; -using Robust.Shared.Map; -using Robust.Shared.Player; -using Robust.Shared.Serialization; - -namespace Content.Shared._White.Standing; - -public abstract class SharedLayingDownSystem : EntitySystem -{ - [Dependency] private readonly MobStateSystem _mobState = default!; - [Dependency] private readonly StandingStateSystem _standing = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; - [Dependency] private readonly SharedGravitySystem _gravity = default!; - [Dependency] private readonly EntityLookupSystem _lookup = default!; - - public override void Initialize() - { - CommandBinds.Builder - .Bind(ContentKeyFunctions.ToggleStanding, InputCmdHandler.FromDelegate(ToggleStanding)) - .Register(); - - SubscribeNetworkEvent(OnChangeState); - - SubscribeLocalEvent(OnStandingUpDoAfter); - SubscribeLocalEvent(OnRefreshMovementSpeed); - SubscribeLocalEvent(OnParentChanged); - } - - public override void Shutdown() - { - base.Shutdown(); - - CommandBinds.Unregister(); - } - - private void ToggleStanding(ICommonSession? session) - { - if (session?.AttachedEntity == null || - !HasComp(session.AttachedEntity) || - _gravity.IsWeightless(session.AttachedEntity.Value)) - { - return; - } - - RaiseNetworkEvent(new ChangeLayingDownEvent()); - } - - private void OnChangeState(ChangeLayingDownEvent ev, EntitySessionEventArgs args) - { - if (!args.SenderSession.AttachedEntity.HasValue) - return; - - var uid = args.SenderSession.AttachedEntity.Value; - - // TODO: Wizard - //if (HasComp(uid)) - // return; - - if (!TryComp(uid, out StandingStateComponent? standing) || - !TryComp(uid, out LayingDownComponent? layingDown)) - { - return; - } - - RaiseNetworkEvent(new CheckAutoGetUpEvent(GetNetEntity(uid))); - - if (HasComp(uid) || !_mobState.IsAlive(uid)) - return; - - if (_standing.IsDown(uid, standing)) - TryStandUp(uid, layingDown, standing); - else - TryLieDown(uid, layingDown, standing); - } - - private void OnStandingUpDoAfter(EntityUid uid, StandingStateComponent component, StandingUpDoAfterEvent args) - { - if (args.Handled || args.Cancelled || HasComp(uid) || - _mobState.IsIncapacitated(uid) || !_standing.Stand(uid)) - { - component.CurrentState = StandingState.Lying; - } - - component.CurrentState = StandingState.Standing; - } - - private void OnRefreshMovementSpeed(EntityUid uid, LayingDownComponent component, RefreshMovementSpeedModifiersEvent args) - { - if (_standing.IsDown(uid)) - args.ModifySpeed(component.SpeedModify, component.SpeedModify); - else - args.ModifySpeed(1f, 1f); - } - - private void OnParentChanged(EntityUid uid, LayingDownComponent component, EntParentChangedMessage args) - { - // If the entity is not on a grid, try to make it stand up to avoid issues - if (!TryComp(uid, out var standingState) - || standingState.CurrentState is StandingState.Standing - || Transform(uid).GridUid != null) - { - return; - } - - _standing.Stand(uid, standingState); - } - - public bool TryStandUp(EntityUid uid, LayingDownComponent? layingDown = null, StandingStateComponent? standingState = null) - { - if (!Resolve(uid, ref standingState, false) || - !Resolve(uid, ref layingDown, false) || - standingState.CurrentState is not StandingState.Lying || - !_mobState.IsAlive(uid) || - TerminatingOrDeleted(uid)) - { - return false; - } - - var args = new DoAfterArgs(EntityManager, uid, layingDown.StandingUpTime, new StandingUpDoAfterEvent(), uid) - { - BreakOnHandChange = false, - RequireCanInteract = false - }; - - if (!_doAfter.TryStartDoAfter(args)) - return false; - - standingState.CurrentState = StandingState.GettingUp; - return true; - } - - public bool TryLieDown(EntityUid uid, LayingDownComponent? layingDown = null, StandingStateComponent? standingState = null, DropHeldItemsBehavior behavior = DropHeldItemsBehavior.NoDrop) - { - if (!Resolve(uid, ref standingState, false) || - !Resolve(uid, ref layingDown, false) || - standingState.CurrentState is not StandingState.Standing) - { - if (behavior == DropHeldItemsBehavior.AlwaysDrop) - RaiseLocalEvent(uid, new DropHandItemsEvent()); - - return false; - } - - _standing.Down(uid, true, behavior != DropHeldItemsBehavior.NoDrop, standingState); - return true; - } - - public void LieDownInRange(EntityUid uid, EntityCoordinates coords, float range = 0.4f) - { - var ents = new HashSet>(); - _lookup.GetEntitiesInRange(coords, range, ents); - - foreach (var ent in ents.Where(ent => ent.Owner != uid)) - { - TryLieDown(ent, behavior:DropHeldItemsBehavior.DropIfStanding); - } - } -} - -[Serializable, NetSerializable] -public sealed partial class StandingUpDoAfterEvent : SimpleDoAfterEvent; - -public enum DropHeldItemsBehavior : byte -{ - NoDrop, - DropIfStanding, - AlwaysDrop -} diff --git a/Content.Shared/_White/Telescope/TelescopeComponent.cs b/Content.Shared/_White/Telescope/TelescopeComponent.cs deleted file mode 100644 index 599770e886..0000000000 --- a/Content.Shared/_White/Telescope/TelescopeComponent.cs +++ /dev/null @@ -1,16 +0,0 @@ -using Robust.Shared.GameStates; - -namespace Content.Shared._White.Telescope; - -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] -public sealed partial class TelescopeComponent : Component -{ - [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public float Divisor = 0.1f; - - [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] - public float LerpAmount = 0.1f; - - [ViewVariables] - public EntityUid? LastEntity; -} diff --git a/Content.Tests/Shared/DamageTest.cs b/Content.Tests/Shared/DamageTest.cs index 11b810bf36..88beca8841 100644 --- a/Content.Tests/Shared/DamageTest.cs +++ b/Content.Tests/Shared/DamageTest.cs @@ -168,45 +168,57 @@ public void ModifierSetTest() private string _damagePrototypes = @" - type: damageType id: Blunt + name: damage-type-blunt - type: damageType id: Slash + name: damage-type-slash - type: damageType id: Piercing + name: damage-type-piercing - type: damageType id: Heat + name: damage-type-heat - type: damageType id: Shock + name: damage-type-shock - type: damageType id: Cold + name: damage-type-cold # Poison damage. Generally caused by various reagents being metabolised. - type: damageType id: Poison + name: damage-type-poison - type: damageType id: Radiation + name: damage-type-radiation # Damage due to being unable to breathe. # Represents not enough oxygen (or equivalent) getting to the blood. # Usually healed automatically if entity can breathe - type: damageType id: Asphyxiation + name: damage-type-asphyxiation # Damage representing not having enough blood. # Represents there not enough blood to supply oxygen (or equivalent). - type: damageType id: Bloodloss + name: damage-type-bloodloss - type: damageType id: Cellular + name: damage-type-cellular - type: damageGroup id: Brute + name: damage-group-brute damageTypes: - Blunt - Slash @@ -214,6 +226,7 @@ public void ModifierSetTest() - type: damageGroup id: Burn + name: damage-group-burn damageTypes: - Heat - Shock @@ -225,6 +238,7 @@ public void ModifierSetTest() # bloodloss, not this whole group, unless you have a wonder drug that affects both. - type: damageGroup id: Airloss + name: damage-group-airloss damageTypes: - Asphyxiation - Bloodloss @@ -233,12 +247,14 @@ public void ModifierSetTest() # Though there are probably some radioactive poisons. - type: damageGroup id: Toxin + name: damage-group-toxin damageTypes: - Poison - Radiation - type: damageGroup id: Genetic + name: damage-group-genetic damageTypes: - Cellular diff --git a/Content.YAMLLinter/Program.cs b/Content.YAMLLinter/Program.cs index 78867fcb8a..7f0b740fe8 100644 --- a/Content.YAMLLinter/Program.cs +++ b/Content.YAMLLinter/Program.cs @@ -1,9 +1,11 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Reflection; using System.Threading.Tasks; using Content.IntegrationTests; using Robust.Shared.Prototypes; +using Robust.Shared.Reflection; using Robust.Shared.Serialization.Markdown.Validation; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -103,9 +105,13 @@ await instance.WaitPost(() => return (yamlErrors, fieldErrors); } - public static async Task<(Dictionary> YamlErrors , List FieldErrors)> + public static async Task<(Dictionary> YamlErrors, List FieldErrors)> RunValidation() { + var (clientAssemblies, serverAssemblies) = await GetClientServerAssemblies(); + var serverTypes = serverAssemblies.SelectMany(n => n.GetTypes()).Select(t => t.Name).ToHashSet(); + var clientTypes = clientAssemblies.SelectMany(n => n.GetTypes()).Select(t => t.Name).ToHashSet(); + var yamlErrors = new Dictionary>(); var serverErrors = await ValidateServer(); @@ -117,9 +123,18 @@ await instance.WaitPost(() => var newErrors = val.Where(n => n.AlwaysRelevant).ToHashSet(); // We include sometimes-relevant errors if they exist both for the client & server - if (clientErrors.Item1.TryGetValue(key, out var clientVal)) + if (clientErrors.YamlErrors.TryGetValue(key, out var clientVal)) newErrors.UnionWith(val.Intersect(clientVal)); + // Include any errors that relate to server-only types + foreach (var errorNode in val) + { + if (errorNode is FieldNotFoundErrorNode fieldNotFoundNode && !clientTypes.Contains(fieldNotFoundNode.FieldType.Name)) + { + newErrors.Add(errorNode); + } + } + if (newErrors.Count != 0) yamlErrors[key] = newErrors; } @@ -135,6 +150,15 @@ await instance.WaitPost(() => errors.UnionWith(val.Where(n => n.AlwaysRelevant)); else yamlErrors[key] = newErrors; + + // Include any errors that relate to client-only types + foreach (var errorNode in val) + { + if (errorNode is FieldNotFoundErrorNode fieldNotFoundNode && !serverTypes.Contains(fieldNotFoundNode.FieldType.Name)) + { + newErrors.Add(errorNode); + } + } } // Finally, combine the prototype ID field errors. @@ -145,5 +169,23 @@ await instance.WaitPost(() => return (yamlErrors, fieldErrors); } + + private static async Task<(Assembly[] clientAssemblies, Assembly[] serverAssemblies)> + GetClientServerAssemblies() + { + await using var pair = await PoolManager.GetServerClient(); + + var result = (GetAssemblies(pair.Client), GetAssemblies(pair.Server)); + + await pair.CleanReturnAsync(); + + return result; + + Assembly[] GetAssemblies(RobustIntegrationTest.IntegrationInstance instance) + { + var refl = instance.ResolveDependency(); + return refl.Assemblies.ToArray(); + } + } } } diff --git a/Resources/Audio/Animals/attributions.yml b/Resources/Audio/Animals/attributions.yml index c34832a807..7fd7e8b2e7 100644 --- a/Resources/Audio/Animals/attributions.yml +++ b/Resources/Audio/Animals/attributions.yml @@ -7,7 +7,7 @@ license: "CC-BY-3.0" copyright: "Modified from 'Meow 4.wav' by freesound user 'TRNGLE. The original audio was trimmed, split to mono, and converted from WAV to OGG format" source: "https://freesound.org/people/TRNGLE/sounds/368006/" - + - files: ["cat_meow2.ogg"] license: "CC-BY-3.0" copyright: "Created by freesound user 'TRNGLE. The original audio split to mono, and converted from WAV to OGG format" @@ -117,24 +117,42 @@ license: "CC-BY-4.0" copyright: "Audio is recorded/created by Pfranzen 'FreeSound.org'. The original audio was trimmed and renamed" source: "https://freesound.org/people/pfranzen/sounds/322744/" - + - files: ["dog_bark1.ogg"] license: "CC0-1.0" copyright: "Audio is recorded/created by KFerentchak 'FreeSound.org'. The original audio was trimmed and renamed" - source: "https://freesound.org/people/KFerentchak/sounds/235912/" - + source: "https://freesound.org/people/KFerentchak/sounds/235912/" + - files: ["dog_bark2.ogg"] license: "CC0-1.0" copyright: "Audio is recorded/created by KFerentchak 'FreeSound.org'. The original audio was trimmed and renamed" - source: "https://freesound.org/people/KFerentchak/sounds/235912/" - + source: "https://freesound.org/people/KFerentchak/sounds/235912/" + - files: ["dog_bark3.ogg"] license: "CC0-1.0" copyright: "Audio is recorded/created by KFerentchak 'FreeSound.org'. The original audio was trimmed and renamed" source: "https://freesound.org/people/KFerentchak/sounds/235912/" - + - files: ["nymph_chirp.ogg"] license: "CC-BY-SA-3.0" copyright: "Taken from ParadiseSS13" source: "https://github.com/ParadiseSS13/Paradise/commit/a34f1054cef5a44a67fdac3b67b811137c6071dd" - \ No newline at end of file + +- files: + - fox1.ogg + - fox2.ogg + - fox3.ogg + - fox4.ogg + - fox5.ogg + - fox6.ogg + - fox7.ogg + - fox8.ogg + - fox9.ogg + - fox10.ogg + - fox11.ogg + - fox12.ogg + - fox13.ogg + - fox14.ogg + copyright: "Created by fujiwaranao" + license: "CC-BY-NC-SA-4.0" + source: "https://github.com/space-wizards/space-station-14/pull/27578" diff --git a/Resources/Audio/Animals/fox1.ogg b/Resources/Audio/Animals/fox1.ogg new file mode 100644 index 0000000000..40fe16cc52 Binary files /dev/null and b/Resources/Audio/Animals/fox1.ogg differ diff --git a/Resources/Audio/Animals/fox10.ogg b/Resources/Audio/Animals/fox10.ogg new file mode 100644 index 0000000000..2a9e156dc5 Binary files /dev/null and b/Resources/Audio/Animals/fox10.ogg differ diff --git a/Resources/Audio/Animals/fox11.ogg b/Resources/Audio/Animals/fox11.ogg new file mode 100644 index 0000000000..d294137dc1 Binary files /dev/null and b/Resources/Audio/Animals/fox11.ogg differ diff --git a/Resources/Audio/Animals/fox12.ogg b/Resources/Audio/Animals/fox12.ogg new file mode 100644 index 0000000000..c413af81c7 Binary files /dev/null and b/Resources/Audio/Animals/fox12.ogg differ diff --git a/Resources/Audio/Animals/fox13.ogg b/Resources/Audio/Animals/fox13.ogg new file mode 100644 index 0000000000..197a9e4339 Binary files /dev/null and b/Resources/Audio/Animals/fox13.ogg differ diff --git a/Resources/Audio/Animals/fox14.ogg b/Resources/Audio/Animals/fox14.ogg new file mode 100644 index 0000000000..1d9c99889d Binary files /dev/null and b/Resources/Audio/Animals/fox14.ogg differ diff --git a/Resources/Audio/Animals/fox2.ogg b/Resources/Audio/Animals/fox2.ogg new file mode 100644 index 0000000000..7aeb7da911 Binary files /dev/null and b/Resources/Audio/Animals/fox2.ogg differ diff --git a/Resources/Audio/Animals/fox3.ogg b/Resources/Audio/Animals/fox3.ogg new file mode 100644 index 0000000000..561b313f41 Binary files /dev/null and b/Resources/Audio/Animals/fox3.ogg differ diff --git a/Resources/Audio/Animals/fox4.ogg b/Resources/Audio/Animals/fox4.ogg new file mode 100644 index 0000000000..6805d0e848 Binary files /dev/null and b/Resources/Audio/Animals/fox4.ogg differ diff --git a/Resources/Audio/Animals/fox5.ogg b/Resources/Audio/Animals/fox5.ogg new file mode 100644 index 0000000000..5aefa939cc Binary files /dev/null and b/Resources/Audio/Animals/fox5.ogg differ diff --git a/Resources/Audio/Animals/fox6.ogg b/Resources/Audio/Animals/fox6.ogg new file mode 100644 index 0000000000..d23cca5ff2 Binary files /dev/null and b/Resources/Audio/Animals/fox6.ogg differ diff --git a/Resources/Audio/Animals/fox7.ogg b/Resources/Audio/Animals/fox7.ogg new file mode 100644 index 0000000000..d4da91e73b Binary files /dev/null and b/Resources/Audio/Animals/fox7.ogg differ diff --git a/Resources/Audio/Animals/fox8.ogg b/Resources/Audio/Animals/fox8.ogg new file mode 100644 index 0000000000..52337a640b Binary files /dev/null and b/Resources/Audio/Animals/fox8.ogg differ diff --git a/Resources/Audio/Animals/fox9.ogg b/Resources/Audio/Animals/fox9.ogg new file mode 100644 index 0000000000..eb161ccdaf Binary files /dev/null and b/Resources/Audio/Animals/fox9.ogg differ diff --git a/Resources/Audio/Announcements/attributions.yml b/Resources/Audio/Announcements/attributions.yml index 879bfe7f60..774b0da5a0 100644 --- a/Resources/Audio/Announcements/attributions.yml +++ b/Resources/Audio/Announcements/attributions.yml @@ -7,3 +7,8 @@ license: "CC-BY-SA-3.0" copyright: "Paradise, volume and pitch changed, merged with redalert.ogg" source: "https://github.com/ParadiseSS13/Paradise/blob/07b26ee6b4a11a0607986d322ee007020569feae/sound/effects/siren.ogg" + +- files: ["intercept.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/blob/95731342b97167d7883ff091d389f79c36442ee6/sound/ai/default/intercept.ogg" diff --git a/Resources/Audio/Announcements/intercept.ogg b/Resources/Audio/Announcements/intercept.ogg new file mode 100644 index 0000000000..3569a07d40 Binary files /dev/null and b/Resources/Audio/Announcements/intercept.ogg differ diff --git a/Resources/Audio/DeltaV/Jukebox/DOS=HIGH,_UMB.ogg b/Resources/Audio/DeltaV/Jukebox/DOS=HIGH,_UMB.ogg new file mode 100644 index 0000000000..b16a328b13 Binary files /dev/null and b/Resources/Audio/DeltaV/Jukebox/DOS=HIGH,_UMB.ogg differ diff --git a/Resources/Audio/DeltaV/Jukebox/Patricia_Taxxon_-_Minute_-_MONO.ogg b/Resources/Audio/DeltaV/Jukebox/Patricia_Taxxon_-_Minute_-_MONO.ogg new file mode 100644 index 0000000000..05a7fb5fda Binary files /dev/null and b/Resources/Audio/DeltaV/Jukebox/Patricia_Taxxon_-_Minute_-_MONO.ogg differ diff --git a/Resources/Audio/DeltaV/Jukebox/Phoron_Will_Make_Us_RichMONO2.ogg b/Resources/Audio/DeltaV/Jukebox/Phoron_Will_Make_Us_RichMONO2.ogg new file mode 100644 index 0000000000..f0c5919c3c Binary files /dev/null and b/Resources/Audio/DeltaV/Jukebox/Phoron_Will_Make_Us_RichMONO2.ogg differ diff --git a/Resources/Audio/DeltaV/Jukebox/Scratch_Post_-_OST_MONO.ogg b/Resources/Audio/DeltaV/Jukebox/Scratch_Post_-_OST_MONO.ogg new file mode 100644 index 0000000000..edaa29c836 Binary files /dev/null and b/Resources/Audio/DeltaV/Jukebox/Scratch_Post_-_OST_MONO.ogg differ diff --git a/Resources/Audio/DeltaV/Jukebox/a_different_reality_lagoona_remix.xm-MONO.ogg b/Resources/Audio/DeltaV/Jukebox/a_different_reality_lagoona_remix.xm-MONO.ogg new file mode 100644 index 0000000000..bb857bd105 Binary files /dev/null and b/Resources/Audio/DeltaV/Jukebox/a_different_reality_lagoona_remix.xm-MONO.ogg differ diff --git a/Resources/Audio/DeltaV/Jukebox/aggravated.it-MONO.ogg b/Resources/Audio/DeltaV/Jukebox/aggravated.it-MONO.ogg new file mode 100644 index 0000000000..5570556f4d Binary files /dev/null and b/Resources/Audio/DeltaV/Jukebox/aggravated.it-MONO.ogg differ diff --git a/Resources/Audio/DeltaV/Jukebox/attributions.yml b/Resources/Audio/DeltaV/Jukebox/attributions.yml new file mode 100644 index 0000000000..67555c5445 --- /dev/null +++ b/Resources/Audio/DeltaV/Jukebox/attributions.yml @@ -0,0 +1,88 @@ +# sorted alphabetically based on filenames in the folder Resources/Audio/DeltaV/Jukebox +# keep it ordered or I'll stab you + +- files: ["a_different_reality_lagoona_remix.xm-MONO.ogg"] + license: "CC-BY-4.0" + copyright: "A.D.R (Lagoona rmx) by Andreas Viklund, converted to mono" + source: "https://modarchive.org/index.php?request=view_by_moduleid&query=134786" + +- files: ["aggravated.it-MONO.ogg"] + license: "CC-BY-NC-SA-4.0" + copyright: "MEL -Aggravated Assault by melcom, converted to mono" + source: "https://modarchive.org/index.php?request=view_by_moduleid&query=176234" + +- files: ["autumnal_equinox.xm-MONO.ogg"] + license: "CC-BY-NC-4.0" + copyright: "Autumnal Equinox by lemonade, converted to mono" + source: "https://modarchive.org/index.php?request=view_by_moduleid&query=143993" + +- files: ["DOS=HIGH,_UMB.ogg"] + license: "Custom" + copyright: "DOS=HIGH, UMB by MASTER BOOT RECORD may be used non-commercially in the Delta-V fork of SS14. Converted from FLAC to OGG, then converted to mono." + source: "https://masterbootrecord.bandcamp.com/album/c-edit-config-sys" + +- files: ["drozerix_-_alone.xm-MONO.ogg"] + license: "Custom" + copyright: "Alone by Drozerix, converted to mono" + source: "https://modarchive.org/index.php?request=view_by_moduleid&query=199968" + +- files: ["drozerix_-_leisurely_voice.xm-MONO.ogg"] + license: "Custom" + copyright: "Leisurely Voice by Drozerix, converted to mono" + source: "https://modarchive.org/index.php?request=view_by_moduleid&query=183837" + +- files: ["every_light_is_blinking_at_onceMONO.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "every light blinking at once by Sunbeamstress, converted to mono" + source: "https://soundcloud.com/sunbeamstress/every-light-is-blinking-at-once" + +- files: ["hackers-MONO.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Hackers by Karl Casey @ White Bat Audio, converted to mono" + source: "https://www.youtube.com/watch?v=k8nHWwO1U2Q" + +- files: [lasers_rip_apart_the_bulkheadMONO.ogg] + license: "CC-BY-NC-SA-3.0" + copyright: "lasers rip apart by Sunbeamstress, converted to mono" + source: "https://soundcloud.com/sunbeamstress/lasers-rip-apart-the-bulkhead" + +- files: ["marhaba-MONO.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Marhaba by Ian Alex Mac. Converted from MP3 to OGG, then converted to mono" + source: "https://freemusicarchive.org/music/Ian_Alex_Mac/Cues/Marhaba" + +- files: ["Patricia_Taxxon_-_Minute_-_MONO.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Minute by Patricia Taxxon off the album 'Aeroplane,' converted to mono" + source: "https://patriciataxxon.bandcamp.com/track/minute" + +- files: ["Phoron_Will_Make_Us_RichMONO2.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "phoron will make us rich by Sunbeamstress, converted to mono" + source: "https://soundcloud.com/sunbeamstress/phoron-will-make-us-rich" + +- files: ["psirius_-_nymphs_of_the_forest.mptm-MONO.ogg"] + license: "CC-BY-NC-SA-4.0" + copyright: "Nymphs of the forest by Psirius, converted to mono" + source: "https://modarchive.org/index.php?request=view_by_moduleid&query=185545" + +- files: ["Scratch_Post_-_OST_MONO.ogg"] + license: "CC-BY-SA-4.0" + copyright: "Scratch Post by Ghirardelli7 on SoundCloud, used with the understanding that credit is given to the artist." + source: "https://soundcloud.com/ghirardelli7/scratch-post-ost" + +- files: ["shibamata-MONO.ogg"] + license: "Custom" + copyright: "Shibamata by .2gou / Dot Nigou. This track is not released under any formal licensure, and exists in the public domain in multiple forms, including remixes and mashups. Converted to mono." + source: "https://www.youtube.com/watch?v=FIw-HUP7XK0" + +- files: ["space_asshole.ogg"] + license: "Custom" + copyright: "Space Asshole by Chris Remo is used with special permission from the author, under the condition that the project remains non-commercial and open source. The author also requested that a link to his bandcamp be included: https://chrisremo.bandcamp.com/ Converted from stereo to mono." + source: "https://idlethumbs.bandcamp.com/track/space-asshole" + +- files: ["superposition-MONO.ogg"] + license: "CC-BY-NC-3.0" + copyright: "Superposition by Amie Waters, converted to mono" + source: "https://amiewaters.bandcamp.com/track/superposition-2" + diff --git a/Resources/Audio/DeltaV/Jukebox/autumnal_equinox.xm-MONO.ogg b/Resources/Audio/DeltaV/Jukebox/autumnal_equinox.xm-MONO.ogg new file mode 100644 index 0000000000..db13ac8d70 Binary files /dev/null and b/Resources/Audio/DeltaV/Jukebox/autumnal_equinox.xm-MONO.ogg differ diff --git a/Resources/Audio/DeltaV/Jukebox/drozerix_-_alone.xm-MONO.ogg b/Resources/Audio/DeltaV/Jukebox/drozerix_-_alone.xm-MONO.ogg new file mode 100644 index 0000000000..7bb1cefdde Binary files /dev/null and b/Resources/Audio/DeltaV/Jukebox/drozerix_-_alone.xm-MONO.ogg differ diff --git a/Resources/Audio/DeltaV/Jukebox/drozerix_-_leisurely_voice.xm-MONO.ogg b/Resources/Audio/DeltaV/Jukebox/drozerix_-_leisurely_voice.xm-MONO.ogg new file mode 100644 index 0000000000..9eb8028c2f Binary files /dev/null and b/Resources/Audio/DeltaV/Jukebox/drozerix_-_leisurely_voice.xm-MONO.ogg differ diff --git a/Resources/Audio/DeltaV/Jukebox/every_light_is_blinking_at_onceMONO.ogg b/Resources/Audio/DeltaV/Jukebox/every_light_is_blinking_at_onceMONO.ogg new file mode 100644 index 0000000000..5de6bfe2c7 Binary files /dev/null and b/Resources/Audio/DeltaV/Jukebox/every_light_is_blinking_at_onceMONO.ogg differ diff --git a/Resources/Audio/DeltaV/Jukebox/hackers-MONO.ogg b/Resources/Audio/DeltaV/Jukebox/hackers-MONO.ogg new file mode 100644 index 0000000000..3603aeac32 Binary files /dev/null and b/Resources/Audio/DeltaV/Jukebox/hackers-MONO.ogg differ diff --git a/Resources/Audio/DeltaV/Jukebox/lasers_rip_apart_the_bulkheadMONO.ogg b/Resources/Audio/DeltaV/Jukebox/lasers_rip_apart_the_bulkheadMONO.ogg new file mode 100644 index 0000000000..addbfcc6c0 Binary files /dev/null and b/Resources/Audio/DeltaV/Jukebox/lasers_rip_apart_the_bulkheadMONO.ogg differ diff --git a/Resources/Audio/DeltaV/Jukebox/marhaba-MONO.ogg b/Resources/Audio/DeltaV/Jukebox/marhaba-MONO.ogg new file mode 100644 index 0000000000..18b39a0296 Binary files /dev/null and b/Resources/Audio/DeltaV/Jukebox/marhaba-MONO.ogg differ diff --git a/Resources/Audio/DeltaV/Jukebox/psirius_-_nymphs_of_the_forest.mptm-MONO.ogg b/Resources/Audio/DeltaV/Jukebox/psirius_-_nymphs_of_the_forest.mptm-MONO.ogg new file mode 100644 index 0000000000..aa26988bcd Binary files /dev/null and b/Resources/Audio/DeltaV/Jukebox/psirius_-_nymphs_of_the_forest.mptm-MONO.ogg differ diff --git a/Resources/Audio/DeltaV/Jukebox/shibamata-MONO.ogg b/Resources/Audio/DeltaV/Jukebox/shibamata-MONO.ogg new file mode 100644 index 0000000000..24fc190218 Binary files /dev/null and b/Resources/Audio/DeltaV/Jukebox/shibamata-MONO.ogg differ diff --git a/Resources/Audio/DeltaV/Jukebox/space_asshole-MONO.ogg b/Resources/Audio/DeltaV/Jukebox/space_asshole-MONO.ogg new file mode 100644 index 0000000000..90e7848b77 Binary files /dev/null and b/Resources/Audio/DeltaV/Jukebox/space_asshole-MONO.ogg differ diff --git a/Resources/Audio/DeltaV/Jukebox/superposition-MONO.ogg b/Resources/Audio/DeltaV/Jukebox/superposition-MONO.ogg new file mode 100644 index 0000000000..5e7d45a886 Binary files /dev/null and b/Resources/Audio/DeltaV/Jukebox/superposition-MONO.ogg differ diff --git a/Resources/Audio/Effects/Flight/wingflap1.ogg b/Resources/Audio/Effects/Flight/wingflap1.ogg new file mode 100644 index 0000000000..724ac3ecd2 Binary files /dev/null and b/Resources/Audio/Effects/Flight/wingflap1.ogg differ diff --git a/Resources/Audio/Effects/Flight/wingflap2.ogg b/Resources/Audio/Effects/Flight/wingflap2.ogg new file mode 100644 index 0000000000..b0264a1317 Binary files /dev/null and b/Resources/Audio/Effects/Flight/wingflap2.ogg differ diff --git a/Resources/Audio/Effects/Flight/wingflap3.ogg b/Resources/Audio/Effects/Flight/wingflap3.ogg new file mode 100644 index 0000000000..aeb0e21acf Binary files /dev/null and b/Resources/Audio/Effects/Flight/wingflap3.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/attributions.yml b/Resources/Audio/Effects/Footsteps/attributions.yml index 82b5fa93ca..91c3ce260d 100644 --- a/Resources/Audio/Effects/Footsteps/attributions.yml +++ b/Resources/Audio/Effects/Footsteps/attributions.yml @@ -71,3 +71,10 @@ license: "CC-BY-SA-3.0" copyright: "Taken from tgstation" source: "https://github.com/tgstation/tgstation/tree/1e8d511946d194f92f744f5f957a7c41683d84a6/sound/effects/footstep" + +- files: + - borgwalk1.ogg + - borgwalk2.ogg + license: "CC-BY-SA-4.0" + copyright: "Taken from IENBA freesound.org and modified by https://github.com/MilenVolf" + source: "https://freesound.org/people/IENBA/sounds/697379/" diff --git a/Resources/Audio/Effects/Footsteps/borgwalk1.ogg b/Resources/Audio/Effects/Footsteps/borgwalk1.ogg new file mode 100644 index 0000000000..3305a52ea2 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/borgwalk1.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/borgwalk2.ogg b/Resources/Audio/Effects/Footsteps/borgwalk2.ogg new file mode 100644 index 0000000000..96c2c1617f Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/borgwalk2.ogg differ diff --git a/Resources/Audio/Effects/Grenades/SelfDestruct/SDS_Charge.ogg b/Resources/Audio/Effects/Grenades/SelfDestruct/SDS_Charge.ogg new file mode 100644 index 0000000000..5efc8f443b Binary files /dev/null and b/Resources/Audio/Effects/Grenades/SelfDestruct/SDS_Charge.ogg differ diff --git a/Resources/Audio/Effects/Grenades/SelfDestruct/SDS_Charge2.ogg b/Resources/Audio/Effects/Grenades/SelfDestruct/SDS_Charge2.ogg new file mode 100644 index 0000000000..662254fbaa Binary files /dev/null and b/Resources/Audio/Effects/Grenades/SelfDestruct/SDS_Charge2.ogg differ diff --git a/Resources/Audio/Effects/Grenades/SelfDestruct/attributions.yml b/Resources/Audio/Effects/Grenades/SelfDestruct/attributions.yml new file mode 100644 index 0000000000..cb8a425739 --- /dev/null +++ b/Resources/Audio/Effects/Grenades/SelfDestruct/attributions.yml @@ -0,0 +1,8 @@ +- files: + - SDS_Charge.ogg + - SDS_Charge2.ogg + license: Custom + source: https://freesound.org/people/Teh_Bucket/sounds/518739/ + # couldn't figure out how to source multiple (the right way) without shit breaking so heres the rest: https://pixabay.com/sound-effects/switchbigpowerwav-14710/ https://pixabay.com/sound-effects/shield-recharging-107016/ + copyright: '"Electric Charge + Shot" by Teh_Bucket on Freesound.org. This is adapted from multiple works by dylanperitz, satanicupsman, CaptainGusterd, arightwizard, BigKahuna360, michael_grinnell, weaveofkev, MichelleGrobler, Alex_John73, sandyrb and breo2012 all of Freesound.org. The work by sandyrb is licensed under CC-BY-4.0. , "switchbigpower-14710.wav" and "shield-recharging-107016.wav" by Pixabay on pixabay.com' + # i have no idea how to set these up, it uses all 3 sound effects and i copied the electric charge one from the powersink, godo diff --git a/Resources/Audio/Effects/chopstickbreak.ogg b/Resources/Audio/Effects/chopstickbreak.ogg new file mode 100644 index 0000000000..bac8ac0462 Binary files /dev/null and b/Resources/Audio/Effects/chopstickbreak.ogg differ diff --git a/Resources/Audio/Effects/spray3.ogg b/Resources/Audio/Effects/spray3.ogg new file mode 100644 index 0000000000..a9f493198c Binary files /dev/null and b/Resources/Audio/Effects/spray3.ogg differ diff --git a/Resources/Audio/Expedition/attributions.yml b/Resources/Audio/Expedition/attributions.yml new file mode 100644 index 0000000000..8bafcc6f11 --- /dev/null +++ b/Resources/Audio/Expedition/attributions.yml @@ -0,0 +1,9 @@ +- files: ["tension_session.ogg"] + license: "CC-BY-3.0" + copyright: "Created by qwertyquerty" + source: "https://www.youtube.com/@qwertyquerty" + +- files: ["deadline.ogg"] + license: "CC-BY-4.0" + copyright: "Bolgarich" + source: "https://www.youtube.com/watch?v=q7_NFEeeEac" diff --git a/Resources/Audio/Expedition/deadline.ogg b/Resources/Audio/Expedition/deadline.ogg new file mode 100644 index 0000000000..131016d891 Binary files /dev/null and b/Resources/Audio/Expedition/deadline.ogg differ diff --git a/Resources/Audio/Misc/tension_session.ogg b/Resources/Audio/Expedition/tension_session.ogg similarity index 100% rename from Resources/Audio/Misc/tension_session.ogg rename to Resources/Audio/Expedition/tension_session.ogg diff --git a/Resources/Audio/Items/attributions.yml b/Resources/Audio/Items/attributions.yml index c6fea50bd2..b3ae4f611f 100644 --- a/Resources/Audio/Items/attributions.yml +++ b/Resources/Audio/Items/attributions.yml @@ -93,6 +93,16 @@ copyright: "User Hanbaal on freesound.org. Converted to ogg by TheShuEd" source: "https://freesound.org/people/Hanbaal/sounds/178669/" +- files: ["soda_shake.ogg"] + license: "CC-BY-NC-4.0" + copyright: "User mcmast on freesound.org. Converted and edited by Tayrtahn" + source: "https://freesound.org/people/mcmast/sounds/456703/" + +- files: ["soda_spray.ogg"] + license: "CC0-1.0" + copyright: "User Hajisounds on freesound.org. Converted and edited by Tayrtahn" + source: "https://freesound.org/people/Hajisounds/sounds/709149/" + - files: ["newton_cradle.ogg"] license: "CC-BY-4.0" copyright: "User LoafDV on freesound.org. Converted to ogg end edited by lzk228" @@ -117,3 +127,10 @@ license: "CC0-1.0" copyright: "Original sound by stomachache on freesound.org, processed by vanilla" source: "https://freesound.org/s/262213/" + +- files: + - "sheath.ogg" + - "unsheath.ogg" + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation." + source: "https://github.com/tgstation/tgstation/blob/a7f525bce9a359ab5282fc754078cd4b5678a006/sound/items" diff --git a/Resources/Audio/Items/sheath.ogg b/Resources/Audio/Items/sheath.ogg new file mode 100644 index 0000000000..9e1d5cdc00 Binary files /dev/null and b/Resources/Audio/Items/sheath.ogg differ diff --git a/Resources/Audio/Items/soda_shake.ogg b/Resources/Audio/Items/soda_shake.ogg new file mode 100644 index 0000000000..a596379c93 Binary files /dev/null and b/Resources/Audio/Items/soda_shake.ogg differ diff --git a/Resources/Audio/Items/soda_spray.ogg b/Resources/Audio/Items/soda_spray.ogg new file mode 100644 index 0000000000..f4a5a3e803 Binary files /dev/null and b/Resources/Audio/Items/soda_spray.ogg differ diff --git a/Resources/Audio/Items/unsheath.ogg b/Resources/Audio/Items/unsheath.ogg new file mode 100644 index 0000000000..09867f5966 Binary files /dev/null and b/Resources/Audio/Items/unsheath.ogg differ diff --git a/Resources/Audio/Jukebox/attributions.yml b/Resources/Audio/Jukebox/attributions.yml index 8e48560ac6..48e1458c4c 100644 --- a/Resources/Audio/Jukebox/attributions.yml +++ b/Resources/Audio/Jukebox/attributions.yml @@ -20,3 +20,8 @@ license: "CC-BY-3.0" copyright: "Constellations by Qwertyquerty. Converted to mono OGG." source: "https://www.youtube.com/channel/UCPYbhBUGhH7n_G4HLK2YipQ" + +- files: ["sunset.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Sunset by PigeonBeans. Exported in Mono OGG." + source: "https://soundcloud.com/pigeonbeans/sunset" \ No newline at end of file diff --git a/Resources/Audio/Jukebox/sunset.ogg b/Resources/Audio/Jukebox/sunset.ogg new file mode 100644 index 0000000000..3f6d909eaa Binary files /dev/null and b/Resources/Audio/Jukebox/sunset.ogg differ diff --git a/Resources/Audio/Machines/warning_buzzer.ogg b/Resources/Audio/Machines/warning_buzzer.ogg index 55bb179f57..bef16f46fb 100644 Binary files a/Resources/Audio/Machines/warning_buzzer.ogg and b/Resources/Audio/Machines/warning_buzzer.ogg differ diff --git a/Resources/Audio/Voice/Silicon/attributions.yml b/Resources/Audio/Voice/Silicon/attributions.yml new file mode 100644 index 0000000000..465f845503 --- /dev/null +++ b/Resources/Audio/Voice/Silicon/attributions.yml @@ -0,0 +1,4 @@ +- files: ["syndieborg_laugh.ogg"] + license: "CC0-1.0" + copyright: "Taken from vultraz168 freesound.org and modified by https://github.com/MilenVolf" + source: "https://freesound.org/people/vultraz168/sounds/334665/" diff --git a/Resources/Audio/Voice/Silicon/syndieborg_laugh.ogg b/Resources/Audio/Voice/Silicon/syndieborg_laugh.ogg new file mode 100644 index 0000000000..e0f425301e Binary files /dev/null and b/Resources/Audio/Voice/Silicon/syndieborg_laugh.ogg differ diff --git a/Resources/Audio/Voice/Talk/Silicon/attributions.yml b/Resources/Audio/Voice/Talk/Silicon/attributions.yml new file mode 100644 index 0000000000..3a16007758 --- /dev/null +++ b/Resources/Audio/Voice/Talk/Silicon/attributions.yml @@ -0,0 +1,10 @@ +- files: + - borg.ogg + - borg_ask.ogg + - borg_exclaim.ogg + - syndieborg.ogg + - syndieborg_ask.ogg + - syndieborg_exclaim.ogg + license: "CC-BY-SA-4.0" + copyright: "Recorded and mixed by https://github.com/MilenVolf" + source: "https://github.com/space-wizards/space-station-14/pull/27205" diff --git a/Resources/Audio/Voice/Talk/Silicon/borg.ogg b/Resources/Audio/Voice/Talk/Silicon/borg.ogg new file mode 100644 index 0000000000..afb9739035 Binary files /dev/null and b/Resources/Audio/Voice/Talk/Silicon/borg.ogg differ diff --git a/Resources/Audio/Voice/Talk/Silicon/borg_ask.ogg b/Resources/Audio/Voice/Talk/Silicon/borg_ask.ogg new file mode 100644 index 0000000000..fe2f60141a Binary files /dev/null and b/Resources/Audio/Voice/Talk/Silicon/borg_ask.ogg differ diff --git a/Resources/Audio/Voice/Talk/Silicon/borg_exclaim.ogg b/Resources/Audio/Voice/Talk/Silicon/borg_exclaim.ogg new file mode 100644 index 0000000000..5f0fdfe89e Binary files /dev/null and b/Resources/Audio/Voice/Talk/Silicon/borg_exclaim.ogg differ diff --git a/Resources/Audio/Voice/Talk/Silicon/syndieborg.ogg b/Resources/Audio/Voice/Talk/Silicon/syndieborg.ogg new file mode 100644 index 0000000000..60eb1a5ccf Binary files /dev/null and b/Resources/Audio/Voice/Talk/Silicon/syndieborg.ogg differ diff --git a/Resources/Audio/Voice/Talk/Silicon/syndieborg_ask.ogg b/Resources/Audio/Voice/Talk/Silicon/syndieborg_ask.ogg new file mode 100644 index 0000000000..acafe45642 Binary files /dev/null and b/Resources/Audio/Voice/Talk/Silicon/syndieborg_ask.ogg differ diff --git a/Resources/Audio/Voice/Talk/Silicon/syndieborg_exclaim.ogg b/Resources/Audio/Voice/Talk/Silicon/syndieborg_exclaim.ogg new file mode 100644 index 0000000000..392b4fd1cc Binary files /dev/null and b/Resources/Audio/Voice/Talk/Silicon/syndieborg_exclaim.ogg differ diff --git a/Resources/Audio/_White/Items/Goggles/activate.ogg b/Resources/Audio/_White/Items/Goggles/activate.ogg new file mode 100644 index 0000000000..96cdb288fe Binary files /dev/null and b/Resources/Audio/_White/Items/Goggles/activate.ogg differ diff --git a/Resources/Audio/_White/Items/Goggles/attributions.yml b/Resources/Audio/_White/Items/Goggles/attributions.yml new file mode 100644 index 0000000000..7b1121f542 --- /dev/null +++ b/Resources/Audio/_White/Items/Goggles/attributions.yml @@ -0,0 +1,9 @@ +- files: ["activate.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Taken from TGstation" + source: "https://github.com/tgstation/tgstation" + +- files: ["deactivate.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Taken from TGstation" + source: "https://github.com/tgstation/tgstation" \ No newline at end of file diff --git a/Resources/Audio/_White/Items/Goggles/deactivate.ogg b/Resources/Audio/_White/Items/Goggles/deactivate.ogg new file mode 100644 index 0000000000..e1e8f4fd82 Binary files /dev/null and b/Resources/Audio/_White/Items/Goggles/deactivate.ogg differ diff --git a/Resources/Audio/_White/Voice/Gondola/attributions.yml b/Resources/Audio/_White/Voice/Gondola/attributions.yml new file mode 100644 index 0000000000..06d6a3a7ee --- /dev/null +++ b/Resources/Audio/_White/Voice/Gondola/attributions.yml @@ -0,0 +1,14 @@ +- files: ["ehh.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from TG Station" + source: "https://github.com/tgstation/tgstation" + +- files: ["ehh2.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from TG Station" + source: "https://github.com/tgstation/tgstation" + +- files: ["ehh3.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from TG Station" + source: "https://github.com/tgstation/tgstation" \ No newline at end of file diff --git a/Resources/Audio/_White/Voice/Gondola/ehh.ogg b/Resources/Audio/_White/Voice/Gondola/ehh.ogg new file mode 100644 index 0000000000..c0b5591ed5 Binary files /dev/null and b/Resources/Audio/_White/Voice/Gondola/ehh.ogg differ diff --git a/Resources/Audio/_White/Voice/Gondola/ehh2.ogg b/Resources/Audio/_White/Voice/Gondola/ehh2.ogg new file mode 100644 index 0000000000..bb0925b68b Binary files /dev/null and b/Resources/Audio/_White/Voice/Gondola/ehh2.ogg differ diff --git a/Resources/Audio/_White/Voice/Gondola/ehh3.ogg b/Resources/Audio/_White/Voice/Gondola/ehh3.ogg new file mode 100644 index 0000000000..970a2040bc Binary files /dev/null and b/Resources/Audio/_White/Voice/Gondola/ehh3.ogg differ diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 08e58360fa..c0959f8a65 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -6502,3 +6502,1453 @@ Entries: id: 6360 time: '2024-09-29T12:15:14.0000000+00:00' url: https://github.com/WWhiteDreamProject/wwdpublic/pull/68 +- author: Spatison + changes: + - type: Tweak + message: Dwarf now weigh more / Дварфы теперь весят больше + id: 6361 + time: '2024-10-11T03:54:12.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/83 +- author: Spatison + changes: + - type: Fix + message: >- + No more discounts in uplink implant / Больше никаких скидок в имплант + аплинка + id: 6362 + time: '2024-10-11T03:55:38.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/81 +- author: Spatison + changes: + - type: Add + message: Added smoke implant / Добавлен имплант дыма + id: 6363 + time: '2024-10-11T04:07:40.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/79 +- author: Spatison + changes: + - type: Add + message: Added syndicate implanter / Добавлен имплантер синдиката + id: 6364 + time: '2024-10-11T04:26:13.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/78 +- author: Spatison + changes: + - type: Add + message: Added neuro stabilization Implant / Добавлен имплант нейро стабильности + id: 6365 + time: '2024-10-11T05:03:33.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/80 +- author: Spatison + changes: + - type: Tweak + message: Changed the chances of secret modes / Изменены шансы режимов в секрете + id: 6366 + time: '2024-10-16T01:46:51.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/87 +- author: Spatison + changes: + - type: Add + message: Added blood dagger/ Добавлен кровавый кинжал + id: 6367 + time: '2024-10-16T01:57:56.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/86 +- author: Spatison + changes: + - type: Add + message: Added maindslave implanter/ Добавлен имплант подчинения + id: 6368 + time: '2024-10-16T02:13:34.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/85 +- author: Mnemotechnician + changes: + - type: Add + message: >- + The "food recipes" page in guidebook now contains an automatically + generated list of food recipes. + id: 6341 + time: '2024-09-11T17:55:11.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/783 +- author: VMSolidus + changes: + - type: Add + message: Rat Kings have returned to the default event rotation. + id: 6342 + time: '2024-09-11T19:59:32.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/903 +- author: VMSolidus + changes: + - type: Add + message: Jetpacks now work in zero gravity. + - type: Add + message: >- + New CCVar "jetpack.enable_anywhere" allows server hosts to optionally + make it so that jetpacks can be used anywhere, even in gravity and on + grids. + - type: Add + message: >- + New CCVar "jetpack.enable_in_no_gravity" allows server hosts to + optionally disable jetpacks being usable in zero gravity. + id: 6343 + time: '2024-09-11T19:59:45.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/901 +- author: VMSolidus + changes: + - type: Add + message: >- + Medical Job related items are now part of a Medical loadout group, and + have all been significantly discounted. + id: 6344 + time: '2024-09-11T20:00:07.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/902 +- author: Tilkku + changes: + - type: Tweak + message: Penlight Exam Messages + - type: Fix + message: Penlights now need to be on in order to examine + - type: Fix + message: Penlights can no longer be used on self + id: 6345 + time: '2024-09-11T20:02:51.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/900 +- author: Mnemotechnician + changes: + - type: Fix + message: Fixed a couple issues with the language menu UI and translators. + id: 6346 + time: '2024-09-11T20:03:25.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/893 +- author: Mocho + changes: + - type: Add + message: >- + Cargo Job related items are now part of a Cargo loadout group, and have + all been significantly discounted. + id: 6347 + time: '2024-09-11T20:27:13.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/909 +- author: Mocho + changes: + - type: Add + message: >- + Security Job related items are now part of a Security loadout group, and + have all been significantly discounted. + id: 6348 + time: '2024-09-11T20:39:55.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/908 +- author: Mocho + changes: + - type: Add + message: >- + Service Job related items are now part of a Service loadout group, and + have all been significantly discounted. + - type: Tweak + message: >- + Musicians now have significant discounts on all instruments in loadouts, + but can only take a maximum of 3. + id: 6349 + time: '2024-09-11T20:52:21.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/906 +- author: Mocho + changes: + - type: Add + message: >- + Engineering Job related items are now part of a Engineering loadout + group, and have all been significantly discounted. + id: 6350 + time: '2024-09-11T21:03:37.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/907 +- author: Squishy77 + changes: + - type: Add + message: >- + added rcds to the list of possible re and ported over the re update from + delta + - type: Tweak + message: >- + tweaked the costs of boards re-machine boards to be more consistent with + their post hyper lathe update counter parts + id: 6351 + time: '2024-09-12T00:12:39.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/910 +- author: SleepyScarecrow + changes: + - type: Tweak + message: Ethanol Contents + - type: Fix + message: SnowWhite Recipe + - type: Tweak + message: Ethanol overdose changed from 15 to 45 + id: 6352 + time: '2024-09-12T00:14:06.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/911 +- author: Mnemotechnician + changes: + - type: Add + message: Ported a number of jukebox songs from Delta-V. + id: 6353 + time: '2024-09-12T00:14:56.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/912 +- author: Skubman + changes: + - type: Fix + message: >- + Blood Deficiency now makes you lose a consistent percentage of blood + regardless of your blood volume, which is dictated by size. This makes + the time to low blood and death consistent for every character of all + sizes with this trait. + id: 6354 + time: '2024-09-12T00:15:18.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/895 +- author: stellar-novas + changes: + - type: Add + message: Airlocks once again have access wires. Happy hacking! + id: 6355 + time: '2024-09-14T00:48:34.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/916 +- author: Mocho + changes: + - type: Add + message: >- + Science Job related items are now part of a Science loadout group, and + have all been significantly discounted. + - type: Add + message: Added more clothing to the science section in loadouts. + - type: Tweak + message: Adjusted command loadout item pricing. + - type: Tweak + message: Added localization strings for the new loadout groups. + id: 6356 + time: '2024-09-14T01:00:26.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/914 +- author: VMSolidus + changes: + - type: Add + message: >- + Added missing Localizations for Departments, Jobs, and Loadout Item + Groups. + - type: Add + message: >- + Bartender-Specific loadouts! Bartenders can now choose to spawn with + either their classic shotgun, or a Mosin Nagant that comes preloaded + with rubber bullets. + id: 6357 + time: '2024-09-14T01:12:40.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/915 +- author: CilliePaint + changes: + - type: Tweak + message: Stuffed Lawyer's Pockets with Space Law guides! + - type: Remove + message: Took away Atmos backpacks as Starting equipment. + id: 6358 + time: '2024-09-14T05:41:40.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/897 +- author: Mnemotechnician + changes: + - type: Add + message: >- + You can now choose whether you want to walk or run by default in the + settings. + id: 6359 + time: '2024-09-14T05:44:56.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/889 +- author: VMSolidus + changes: + - type: Add + message: >- + Drug Addictions! Drug addictions are long lasting Moodlet-Pairs. The + first consisting of a temporary Mood bonus that is refreshed by + consuming the drug, and the second consisting of an extremely long + lasting mood penalty, which replaces the mood bonus should you go a long + enough time between consuming the drug in question. + - type: Add + message: Nicotine Addiction has been added as a new minor negative trait. + - type: Add + message: >- + Drugs/Reagents can now affect your character's Mood! Both with, and + without Addiction. + - type: Add + message: >- + TraitSystem has had functionality added for directly adding Moodlets to + a character upon joining the round, such as drug addictions, or + permanent mood modifications like Sanguine/Saturnine + - type: Add + message: >- + Lotophagoi Oil now induces an extremely powerful drug addiction, + providing an extremely large mood benefit for a short time. Which when + it wears off, creates an equally extreme mood penalty that lasts for a + very long time(or until you drink more Loto Oil). + id: 6360 + time: '2024-09-14T06:48:55.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/896 +- author: Mnemotechnician + changes: + - type: Fix + message: Cyborg recharging stations finally work again. + - type: Fix + message: >- + Rehydratable entities (such as monkey cubes) no longer spawn a second + client-side entity when rehydrated. + id: 6361 + time: '2024-09-14T17:55:41.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/888 +- author: VMSolidus + changes: + - type: Tweak + message: The Uncloneable trait is only worth one point now. + id: 6362 + time: '2024-09-14T18:01:21.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/868 +- author: Mocho + changes: + - type: Add + message: >- + Harpies are now able to fly on station for limited periods of time, + moving faster at the cost of stamina. + id: 6363 + time: '2024-09-16T04:41:44.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/919 +- author: Mnemotechnician + changes: + - type: Add + message: >- + Pulling has been reworked. Your character will now try to continuously + push the pulled entity when you use the push keybind. + - type: Remove + message: >- + You can no longer push the pulled entity while walking, and pushing now + follows the momentum conservation laws. + id: 6364 + time: '2024-09-17T23:38:45.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/883 +- author: VMSolidus + changes: + - type: Tweak + message: >- + Core now has a 6-Core AME, which is supplied with two jars of fuel. This + should give Engineers significantly more than 20 minutes of time to + setup the Supermatter engine. + id: 6365 + time: '2024-09-17T23:39:07.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/927 +- author: JayJacobs + changes: + - type: Tweak + message: Changed the sprite of the barber chair. + - type: Fix + message: Fixed bench textures. + id: 6366 + time: '2024-09-17T23:39:57.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/925 +- author: VMSolidus + changes: + - type: Fix + message: >- + Cloning Consoles will now correctly state when a body has the + Uncloneable trait. + id: 6368 + time: '2024-09-18T04:30:39.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/926 +- author: FoxxoTrystan + changes: + - type: Remove + message: DeltaV Option Tab (Options moved) + id: 6370 + time: '2024-09-19T02:24:25.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/928 +- author: Hell_Cat + changes: [] + id: 6371 + time: '2024-09-19T03:29:41.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/929 +- author: VMSolidus + changes: + - type: Fix + message: >- + Fixed issues with the LayingDownSystem. Laying down no longer causes all + entities on your screen to lay down at once. Using any movement input no + longer causes the character to appear to the player as to be laying + down. + id: 6372 + time: '2024-09-19T20:37:51.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/933 +- author: VMSolidus + changes: + - type: Fix + message: >- + UniversalLanguageSpeaker(And Xenoglossy by extension) will now appear in + your language menu alongside other known languages, rather than replace + all known languages. You can effectively now choose whether or not to + speak it, or to use a normal language. + - type: Add + message: Traits can now add Languages directly. + - type: Add + message: Traits can now remove Languages directly. + id: 6373 + time: '2024-09-20T01:47:52.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/899 +- author: VMSolidus + changes: + - type: Add + message: >- + Melee Weapons can now individually define their interactions with the + ContestsSystem. + - type: Add + message: >- + Added the ContestArgs type, allowing arbitrarily any component to + contain a list of arguments for ContestSystems. + - type: Add + message: >- + Added the ContestConstructor, a new type of meta-Contest that enables + other systems to use components to define all possible contest + behaviors, rather than needing to hardcode specific interactions. + id: 6374 + time: '2024-09-20T02:48:43.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/934 +- author: gluesniffler + changes: + - type: Add + message: >- + Adds an optional server variable which allows entities to crawl under + tables. + - type: Tweak + message: >- + Tables and plastic flaps are less resistant to damage, and can now be + targeted by guns by aiming on top of them. + id: 6375 + time: '2024-09-20T19:34:02.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/939 +- author: VMSolidus + changes: + - type: Tweak + message: >- + JukeOperator now allows for JukeDuration and JukeCooldown arguments. + JukeCooldown is a new feature where enemies must wait an amount of time + in seconds equal to the JukeCooldown, before they are allowed to attempt + to dodge a melee attack. + - type: Tweak + message: >- + By default, NPCs will only attempt to dodge attacks once every 5 + seconds. + - type: Fix + message: >- + JukeOperator now performs extremely expensive math 5000 times less + often. EXIT CONDITIONS PEOPLE! + id: 6377 + time: '2024-09-20T20:05:31.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/935 +- author: VMSolidus + changes: + - type: Add + message: >- + All "Long-arms", Rifles, Light Machine Guns, Shotguns, now require + wielding to use. + id: 6378 + time: '2024-09-20T20:35:43.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/913 +- author: zelezniciar + changes: + - type: Add + message: Added Atmospheric Alerts Computer + id: 6379 + time: '2024-09-20T21:46:38.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/922 +- author: VMSolidus + changes: + - type: Add + message: 'A basic Languages menu has been added into the Traits tab. ' + - type: Add + message: >- + Tau-Ceti Basic, Tradeband, Freespeak, Elyran Standard, Sol Common, and + Sign Language have been added to the Languages tab. + id: 6380 + time: '2024-09-20T21:46:47.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/936 +- author: VMSolidus + changes: + - type: Remove + message: >- + Removed the "Become Psionic" traitor objective. It was literally + impossible to fail if you took the Latent Psychic trait, and literally + impossible to greentext if you didn't. + id: 6381 + time: '2024-09-20T21:47:16.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/940 +- author: VMSolidus + changes: + - type: Add + message: Part Upgrading has returned! + id: 6382 + time: '2024-09-21T22:46:49.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/917 +- author: VMSolidus + changes: + - type: Add + message: >- + Healing Word has been added as a new Psionic Power. When cast on another + person, it heals a small amount of every damage type(scaling with + Casting Stats), while also reducing rot timers. Healing Word has a very + short cooldown, and a fairly low Glimmer cost. + - type: Add + message: >- + Breath of Life has been added as a new extremely rare Psionic Power. + When cast on another person, it heals a large amount of damage(scaling + with Casting Stats), while also substantially reducing rot timers. + Additionally, it will revive the target if it is possible to do so. + Breath of Life has an incredibly long cooldown, a long interuptable cast + time, and an extraordinarily high glimmer cost(A typical Psion will + spike glimmer by more than 50 points when casting it). + - type: Add + message: The Chaplain now starts with the Healing Word power. + id: 6384 + time: '2024-09-21T22:50:01.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/942 +- author: VMSolidus + changes: + - type: Add + message: >- + Bottles, Drink Glasses, Plates, and all liquid containers are now struck + by bullets(and most likely destroyed in the process). We hope that this + will offer both a small tactical advantage/disadvantage, as well as + contribute to making gunfights around the bar more "Cinematic". + - type: Add + message: >- + Chairs are now hit by projectiles if a shooter clicks on them, in + addition to Tables. + id: 6385 + time: '2024-09-21T23:22:43.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/943 +- author: VMSolidus + changes: + - type: Fix + message: >- + Fixed a bug where Breath of Life and Healing Word would set living + people to crit, which would knock them down. + - type: Fix + message: >- + Fixed a bug where Breath of Life could revive people who were rotten(It + will still heal them and reduce the rot timer as intended, but will not + revive unless said rot timer reduction brings them below the 10 minute + threshold). + - type: Add + message: >- + The Do-After bar for Breath of Life and Healing Word is now hidden if + glimmer is low enough. The threshold for which scales with your + Dampening stat. More Dampening = stealthier casting. + id: 6386 + time: '2024-09-24T00:56:34.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/949 +- author: Mocho + changes: + - type: Add + message: >- + Added a lot of recipes to the quick construction menus. Give it a shot + by pressing Z with different construction materials in your hand! + id: 6387 + time: '2024-09-24T00:56:45.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/945 +- author: VMSolidus + changes: + - type: Fix + message: >- + IPC now weigh 71kg by default instead of 5kg. Seriously who the fuck + made the BeepBoops out of feathers!?! + id: 6388 + time: '2024-09-25T05:09:06.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/959 +- author: fenndragon + changes: + - type: Add + message: Added new neutral xenos, events, and reagent slimes + id: 6389 + time: '2024-09-26T15:06:54.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/956 +- author: VMSolidus + changes: + - type: Add + message: Backpacks, Duffelbags, and Satchels have been added to loadouts. + - type: Remove + message: >- + The button for "Backpack Preference" has been removed. Backpacks + selection is now done via Loadouts. + - type: Remove + message: >- + The button for "Suit/Skirt Preference" has also been removed. Suit + selection is done via Loadouts. + id: 6390 + time: '2024-09-28T00:46:19.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/957 +- author: VMSolidus + changes: + - type: Fix + message: Fixed a bug where the button to reboot IPCs wasn't appearing. + id: 6391 + time: '2024-09-28T02:23:54.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/963 +- author: VMSolidus + changes: + - type: Fix + message: Fix a crash related to Luminous Entities. + id: 6392 + time: '2024-09-28T02:28:40.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/954 +- author: VMSolidus + changes: + - type: Fix + message: >- + Smoking cigarettes or drinking loto oil will no longer spam moodlet + popup messages. + id: 6393 + time: '2024-09-28T02:30:18.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/948 +- author: Mnemotechnician + changes: + - type: Tweak + message: Noospheric events should once again occur on lower glimmer levels. + id: 6394 + time: '2024-09-28T02:43:48.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/969 +- author: Mnemotechnician + changes: + - type: Tweak + message: >- + Pushing something no longer causes your character to move, but only if + there is gravity holding you down. + - type: Tweak + message: >- + Pushing an object with Ctrl-RMB now pushes it continuously for up to 5 + seconds instead of 2. + id: 6395 + time: '2024-09-28T02:44:07.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/966 +- author: VMSolidus + changes: + - type: Add + message: Humans can now have tail and ear markings. + id: 6396 + time: '2024-09-28T03:10:14.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/964 +- author: VMSolidus + changes: + - type: Add + message: >- + Harpies now have their own species-specific language, called Valyrian + Standard + - type: Add + message: >- + Valyrian Standard can now be bought as an extra language in the Traits + menu. + id: 6397 + time: '2024-09-28T14:42:50.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/968 +- author: VMSolidus + changes: + - type: Fix + message: >- + Fixed a bug with Healing Word and Breath of Life where if the caster was + moved by another person mid-cast, they would permanently become unable + to cast it again. + id: 6398 + time: '2024-09-29T01:43:20.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/970 +- author: VMSolidus + changes: + - type: Remove + message: >- + Removed the Psionics Guidebook. It was straight up wrong about most + things, and is not ever going to be updated to match new Psionics + Content. You are fully intended to "FIND OUT IN GAME" how things work + through guessing, trial and error, and just pure happenstance. + Experiment with shit. The popups are intentionally vague. You're + supposed to think about what they mean. Stop asking admins in Ahelps + what the vague text means. + id: 6399 + time: '2024-09-29T01:43:32.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/972 +- author: Aikakakah + changes: + - type: Fix + message: Fixed markings having incomplete names for color sections + - type: Fix + message: Fixed IPC marking categories + id: 6400 + time: '2024-09-29T01:58:28.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/974 +- author: VMSolidus + changes: + - type: Fix + message: >- + Nerfed the fuck out of Reagent Slimes. They have 1/3rd as much HP, spawn + half as many during reagent slime vents, deal significantly less damage, + and inject a lot less chems when biting people. + id: 6401 + time: '2024-09-29T17:42:43.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/977 +- author: Mnemotechnician + changes: + - type: Fix + message: >- + Fixed multiple minor issues with interaction verbs. Most importantly, + interaction popups will now always be shown correctly. + id: 6402 + time: '2024-09-30T16:27:47.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/965 +- author: VMSolidus + changes: + - type: Add + message: Added Shadeskip as a new psionic power. + id: 6404 + time: '2024-09-30T18:04:20.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/987 +- author: VMSolidus + changes: + - type: Add + message: 'Mood System now has some interactions with Psionics. ' + id: 6405 + time: '2024-09-30T18:28:21.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/988 +- author: VMSolidus + changes: + - type: Add + message: >- + 7 new Psionic-related Traits have been added to the game: High + Psi-Potential, Low Psi-Potential, Power Overwhelming, kα Abundance, kα + Deficiency, kδ Proficient, and kδ Defect + - type: Add + message: >- + Oni now have a built-in negative trait that acts as a more severe + version of Low Psi-Potential. Oni now have significant penalties to + generating new Psionic Powers. + id: 6406 + time: '2024-09-30T18:28:31.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/983 +- author: Mnemotechnician + changes: + - type: Add + message: >- + Narcolepsy has been reworked. You can now know when you're about to fall + asleep, and can choose to go to sleep willingly to reset the narcolepsy + timer and avoid an incident. + id: 6407 + time: '2024-09-30T19:04:22.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/967 +- author: zelezniciar + changes: + - type: Fix + message: >- + Space dragons that get butchered or gibbed will now drop devoured + corpses. + id: 6408 + time: '2024-10-01T21:34:55.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/992 +- author: VMSolidus + changes: + - type: Fix + message: >- + Rampant Brand Intelligence has been unreverted. It was reverted by + complete accident a few weeks ago. I apologize to anyone who missed the + thrill of killing murderous vending machines. + id: 6409 + time: '2024-10-01T21:39:51.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/947 +- author: VMSolidus + changes: + - type: Fix + message: >- + Fixed the Markings menu by adding a scroll container to it. Markings + with greater than 2 color selections can now be used. + id: 6410 + time: '2024-10-01T21:43:17.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/997 +- author: VMSolidus + changes: + - type: Add + message: Immovable Rod Event has returned + - type: Add + message: >- + Immovable Rod Event has been made more fair. It won't automatically gib + people, just crit them with a ton of blunt damage(That you can survive + by wearing good armor), or just being an Oni funnily enough. + id: 6411 + time: '2024-10-02T01:31:29.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/973 +- author: VMSolidus + changes: + - type: Add + message: >- + Added a full Guidebook entry for Harpies. Unlike previous species + guidebooks, this document contains extensive lore and background + information for Harpies, in addition to notes on their game mechanics. + id: 6412 + time: '2024-10-02T01:32:07.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/993 +- author: VMSolidus + changes: + - type: Add + message: 13 new Kemonomimi-Style markings. 4 Ears, and 9 new tails! + id: 6413 + time: '2024-10-02T01:32:29.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/981 +- author: fenndragon + changes: + - type: Tweak + message: 'Tweaked the spawnrate of certain mobs within the ventcritters rule. ' + id: 6414 + time: '2024-10-02T01:34:19.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/982 +- author: VMSolidus + changes: + - type: Add + message: Grapple & Tether Guns have been re-added. + id: 6415 + time: '2024-10-02T02:19:46.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1000 +- author: Fansana + changes: + - type: Fix + message: Fixes door access for mail doors + id: 6416 + time: '2024-10-02T23:14:55.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/986 +- author: VMSolidus + changes: + - type: Add + message: Added Telekinetic Pulse power. + - type: Fix + message: Fixed a crash related to Shadeskip + id: 6417 + time: '2024-10-04T00:14:21.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1002 +- author: Mnemotechnician + changes: + - type: Fix + message: Winter boots are no longer able to protect you from insane temperatures. + id: 6420 + time: '2024-10-04T00:52:11.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1004 +- author: VMSolidus + changes: + - type: Fix + message: >- + Fixed a bug with CloningSystem. It now correctly spills blood upon + cloning fail. + id: 6421 + time: '2024-10-05T14:28:32.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1009 +- author: Mocho + changes: + - type: Fix + message: >- + Fixed downed entities having their draw depth set incorrectly after + being picked up, or laying on a bed. + id: 6422 + time: '2024-10-07T15:28:36.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1017 +- author: VMSolidus + changes: + - type: Tweak + message: >- + Nerfed Lotophagoi Moodlets so that both the positive and negative + moodlets only last for 10 minutes. The total mood modification has been + left untouched. + id: 6423 + time: '2024-10-07T15:29:05.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1013 +- author: VMSolidus + changes: + - type: Add + message: >- + Shadeskip no longer creates Stationwide Shadow Kudzu when casting at + high glimmer. + id: 6424 + time: '2024-10-07T15:29:16.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1012 +- author: VMSolidus + changes: + - type: Add + message: >- + The Salvage Shittle has been replaced with the Pathfinder Expedition + Vessel from Frontier. + id: 6425 + time: '2024-10-09T01:17:11.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1027 +- author: VMSolidus + changes: + - type: Add + message: Salvage techs can now buy a Crusher Dagger in their loadout. + - type: Fix + message: Re-Added the Crusher weapons to salvage spawners. + id: 6426 + time: '2024-10-09T01:17:38.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1026 +- author: Ichaie + changes: + - type: Add + message: A new map called NCS Gax has been added to rotation. + id: 6427 + time: '2024-10-09T01:37:57.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1019 +- author: VMSolidus + changes: + - type: Tweak + message: Almost all security loadout gear is now free. + - type: Remove + message: >- + All Security roles no longer spawn with a pistol by default. This has + been moved to Loadouts. + - type: Add + message: >- + Security characters can now choose from a selection of different + firearms to use as their Duty Weapon. Disablers, Mk58, and Inspector + revolvers are free, fancier weapons such as an N1984 can be bought with + loadout points. + - type: Add + message: Oni can opt to take a Truncheon in lieu of a handgun. + - type: Add + message: >- + Security characters can now take handgun magazines and spare magazines + in their loadouts. + - type: Add + message: Security Backpacks to loadouts. + - type: Fix + message: >- + Fixed issues with the security belt options(webbing, belt, holster) not + correctly replacing the original item, and also not containing items + either. + id: 6428 + time: '2024-10-09T15:37:08.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1025 +- author: VMSolidus + changes: + - type: Fix + message: >- + Fixed High & Low Psi-Potential traits lacking a requirement that you + don't have the opposite trait. The two were mutually exclusive, so + taking both caused issues. + id: 6429 + time: '2024-10-09T15:37:29.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1022 +- author: VMSolidus + changes: + - type: Fix + message: Fixed localizations for the Sinta'Azaziba language. + id: 6430 + time: '2024-10-09T15:39:59.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1020 +- author: Mnemotechnician + changes: + - type: Add + message: >- + Animals now have more unique things to say when not controlled by a + player. + id: 6431 + time: '2024-10-09T15:48:57.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1003 +- author: VMSolidus + changes: + - type: Fix + message: Glimmer Mites can no longer spawn anywhere other than "THE" Station. + id: 6432 + time: '2024-10-09T16:12:10.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/976 +- author: FoxxoTrystan + changes: + - type: Add + message: Custom Species Names. + id: 6433 + time: '2024-10-09T16:12:20.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/994 +- author: VMSolidus + changes: + - type: Add + message: >- + Logistics can now directly order a variety of hardsuits. "NT In-Network" + hardsuits being substantially cheaper thanks to backroom deals. + id: 6434 + time: '2024-10-09T23:01:29.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1024 +- author: VMSolidus + changes: + - type: Remove + message: The X-01 multiphase energy gun has been removed from the HoS locker. + - type: Add + message: >- + A new Loadout Item Group, "Head of Security's Antique Weapon Collection" + has been added. Rather than being given a unique weapon by whatever map + creators put in the HoS Office, each Head of Security is entitled to a + single item selected from this new loadout category, free of charge. But + beware, whatever item chosen from this list may potentially be used as a + Steal Objective for traitors. You may have a fancy new submachine gun, + but it also makes you a target. + - type: Add + message: >- + antique Bulldog, antique C-20r submachine gun, x-01 multiphase energy + gun, antique energy sword, antique pulse pistol, antique Wt550, and a + pair of Katana Sheaths have all been added as loadout options for the + Head of Security. + id: 6436 + time: '2024-10-11T01:43:36.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1031 +- author: Ichaie + changes: + - type: Add + message: A map called "RadStation" has been added to rotation. + - type: Add + message: A new Evac shuttle called "emergency_neol" has been added to RadStation + id: 6437 + time: '2024-10-11T16:05:53.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1034 +- author: Mnemotechnician + changes: + - type: Add + message: >- + Sleeping and muzzled entities can no longer use vocal emotes (scream, + meow, etc). + id: 6438 + time: '2024-10-11T16:08:48.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1037 +- author: VMSolidus + changes: + - type: Add + message: >- + Added Bluespace and Normality ore as very rare ore types. Salvage can + occasionally find these ores on Asteroids or on Expedition planets. + Bluespace and Normality Ore can be smelted in an Ore Processor into + Bluespace and Normality Crystals. Make sure to bring these to Epistemics + so that they can do their job. + id: 6439 + time: '2024-10-12T20:49:32.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1042 +- author: Fansana + changes: + - type: Fix + message: Fixes the arrivals shuttle choosing to correct docking port. + id: 6440 + time: '2024-10-13T16:38:30.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1040 +- author: FoxxoTrystan + changes: + - type: Fix + message: Oneirophage is once more psionic invisible in webs. + id: 6441 + time: '2024-10-13T18:33:59.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1033 +- author: Mnemotechnician + changes: + - type: Add + message: >- + You can now toggle crawling under furniture! The default keybind is + Shift-R, you can change it in settings. + id: 6442 + time: '2024-10-13T18:34:58.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1036 +- author: DEATHB4DEFEAT + changes: + - type: Tweak + message: Made the show clothing/loadouts button labels more clear + id: 6443 + time: '2024-10-13T18:41:16.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1030 +- author: VMSolidus + changes: + - type: Tweak + message: Brains now can no longer be eaten. + id: 6444 + time: '2024-10-13T18:51:26.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1044 +- author: VMSolidus + changes: + - type: Add + message: >- + Added 8 new Physical Traits. These are, Cyber-Eyes Basic System(Plus 4 + different modular options), Bionic Arm, Dermal Armor, and Platelet + Factories. + id: 6445 + time: '2024-10-13T19:25:05.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1035 +- author: Mnemotechnician + changes: + - type: Add + message: >- + The Courier and Logistics Officer now have a new program in their PDA + for tracking mail delivery performance, including earnings and percent + of packages opened, damaged, or expired. + - type: Add + message: >- + The list of possible mail packages has been greately expanded, and now + includes large parcels. + - type: Add + message: >- + The CourierDrobe now offers a rapid mail delivery device, along with + capsules for it. + id: 6447 + time: '2024-10-13T19:38:19.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1011 +- author: DEATHB4DEFEAT + changes: + - type: Add + message: Merged 400 WizDen PRs. Happy testing! + id: 6448 + time: '2024-10-14T16:10:08.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/944 +- author: Aidenkrz + changes: + - type: Fix + message: Reverse engineering machine UI works again. + id: 6449 + time: '2024-10-15T23:05:13.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1053 +- author: Aidenkrz + changes: + - type: Fix + message: Arachne no longer turn into errors when they take damage + id: 6450 + time: '2024-10-15T23:05:44.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1054 +- author: Aidenkrz + changes: + - type: Tweak + message: >- + Cocoon sizing has been changed to reflect the size of the entity inside + better. + id: 6451 + time: '2024-10-15T23:07:03.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1055 +- author: Ichaie + changes: + - type: Fix + message: >- + Gax station: fixed arrivals being unable to dock due to meteor shielding + and translated security camera names to English. + id: 6452 + time: '2024-10-15T23:12:44.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1048 +- author: VMSolidus + changes: + - type: Tweak + message: >- + Psionic Rolls should now generate larger, random amounts of Potentia. + This should make it a lot easier to obtain powers. + id: 6453 + time: '2024-10-15T23:13:13.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1047 +- author: Aidenkrz + changes: + - type: Fix + message: You can properly lay down and stand up on tables now. + id: 6454 + time: '2024-10-16T03:08:07.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1057 +- author: Aidenkrz + changes: + - type: Tweak + message: Height and width are now constrained by each other. + - type: Fix + message: Humanoids can no longer phase through walls. + id: 6455 + time: '2024-10-16T12:54:15.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1049 +- author: Aidenkrz + changes: + - type: Fix + message: Bluespace crystals now properly eject from lathes. + - type: Fix + message: Bluespace parts can be reverse engineered. + id: 6456 + time: '2024-10-16T12:55:19.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1052 +- author: VMSolidus + changes: + - type: Fix + message: 'Fixed Harpy singing not opening the Midi Player. ' + id: 6457 + time: '2024-10-16T22:51:18.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1056 +- author: Mnemotechnician + changes: + - type: Fix + message: Soap once again can be used to clean evidence off. + id: 6458 + time: '2024-10-16T22:54:33.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1061 +- author: Aidenkrz + changes: + - type: Tweak + message: >- + All spiders, arachne, and arachnids can cocoon mobs, and drink their + blood. + id: 6459 + time: '2024-10-17T19:21:01.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1058 +- author: Remuchi + changes: + - type: Add + message: Upstream + id: 6460 + time: '2024-10-19T12:09:52.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/93 +- author: Gersoon + changes: + - type: Add + message: translation of tiles/перевод тайлов + - type: Tweak + message: sign textures changed/изменены текстуры знаков + id: 6461 + time: '2024-10-21T06:56:21.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/90 +- author: Spatison + changes: + - type: Remove + message: Thieves' pacifism has been removed / Убран воровской пацифизм + id: 6462 + time: '2024-10-22T16:35:54.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/95 +- author: Spatison + changes: + - type: Remove + message: Delete Prido-O-Mat / Удален прайдомат + id: 6463 + time: '2024-10-23T03:35:00.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/84 +- author: Spatison + changes: + - type: Add + message: Added hardlight spear implanter/ Добавлен имплант светового копья + id: 6464 + time: '2024-10-23T10:20:53.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/77 +- author: Spatison + changes: + - type: Tweak + message: The energy shield can now be discharged / Энерго щит теперь имеет заряд + id: 6465 + time: '2024-10-23T10:23:45.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/94 +- author: Remuchi + changes: + - type: Add + message: >- + Переводы всех черт персонажа, черт внешности и меню персонажа. Так же + переведен весь контент Нянотрайзен. + id: 6466 + time: '2024-10-23T14:11:51.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/97 +- author: Gersoon458 + changes: + - type: Tweak + message: DryDock update/Обновление ДрайДока + id: 6467 + time: '2024-10-24T13:50:33.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/98 +- author: Spatison + changes: + - type: Add + message: Added night vision goggle/ Добавлен прибор ночного видения + - type: Add + message: Added thermal vision goggle/ Добавлен прибор термального видения + id: 6468 + time: '2024-10-26T09:36:10.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/89 +- author: Spatison + changes: + - type: Add + message: Added crossbow / Добавлен арбалет + id: 6469 + time: '2024-10-26T09:41:08.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/76 +- author: Spatison + changes: + - type: Add + message: Added Gondola / Добавлена Гондола + id: 6470 + time: '2024-10-26T11:15:09.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/96 +- author: PuroSlavKing + changes: + - type: Add + message: Added "Operative" UI style / Добавлен стиль интерфейса "Оперативник" + id: 6471 + time: '2024-10-27T02:51:58.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/102 +- author: Spatison + changes: + - type: Fix + message: >- + correction of a collision at a glass shard/ Исправление колизии у + осколка стекла + id: 6472 + time: '2024-10-27T13:28:02.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/104 +- author: Gersoon + changes: + - type: Add + message: New map added - Moose/Новая карта добавлена - Мус + - type: Tweak + message: Prisoners added to DryDock/На ДрайДок добавлены заключенные + id: 6473 + time: '2024-10-27T13:49:26.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/100 +- author: Gersoon + changes: + - type: Add + message: >- + 5 types of Halloween gifts, namely: basic, sweet, sweet themed, clothes, + themed clothes!/5 видов хеллоуинских подарков, а именно: основной, + сладкий, сладкий тематический, одежда, одежда тематичская! + - type: Add + message: New autumn grass and trees tiles!/Новые осенние тайлы травы и деревья! + - type: Add + message: >- + You can 100% find Halloween gifts in tech's closets!/В шкафах техов 100% + можно встретить хеллоунские подарки! + - type: Add + message: >- + New Halloween theme! (Settings -> HUD Theme: -> + ui-options-hud-theme-halloween (If I didn’t manage to take away the + ability to change themes during the week or didn’t add + translations))/Новая хеллоуинская тема худа! (Настройки -> Тема HUD: -> + ui-options-hud-theme-halloween (Если я не успел забрать возможность + менять темы на протяжении недели или не добавил переводы)) + - type: Add + message: >- + Each roundstart role has a candy bucket! (Kutos)/У каждой роли + раундстартом есть ведерко для конфет! (Kutos) + - type: Add + message: New costumes! (Purka)/Новые костюмы! (Purka) + - type: Add + message: >- + New sweets! (Purka, Kilath, Canceredpussy (Cyber ​​cutlet))/Новые + сладости! (Purka, Kilath, Canceredpussy (Кибер котлетка)) + - type: Tweak + message: The cards are now SPOOOOOOOKY!/Карты теперь ЖУУУУТКИЕ! + id: 6474 + time: '2024-10-31T02:44:08.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/113 +- author: Spatison + changes: + - type: Tweak + message: With FTL, a person now falls / При ФТЛ перемещении человек теперь падает + - type: Tweak + message: >- + Magnetic boots now do not let you fall / Магнитные сапоги теперь не дают + упасть + id: 6475 + time: '2024-10-31T02:52:22.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/111 +- author: Spatison + changes: + - type: Add + message: Added footsteps / Добавлены следы + id: 6476 + time: '2024-10-31T03:03:14.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/110 +- author: Spatison + changes: + - type: Fix + message: >- + ПНВ и ПТВ теперь могут быть исследованы / NVG and TVG can now be + researched + id: 6477 + time: '2024-10-31T03:03:31.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/109 +- author: Spatison + changes: + - type: Fix + message: >- + Fixing the animation of the clown's shoes / Исправление анимации ботинок + клоуна + id: 6478 + time: '2024-10-31T03:22:32.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/107 +- author: Spatison + changes: + - type: Fix + message: Сorrection of a Butlutron collision / Исправлена коллизия Бутлетрона + id: 6479 + time: '2024-10-31T03:22:53.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/105 +- author: Spatison + changes: + - type: Fix + message: Fixed bugs with sprites / Исправлены баги с спрайтами + id: 6480 + time: '2024-10-31T03:23:25.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/103 +- author: PuroSlavKing + changes: + - type: Tweak + message: Измененён звук пожарной тревоги. + id: 6481 + time: '2024-10-31T03:24:35.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/106 +- author: Spatison + changes: + - type: Remove + message: Deleted fire alarm sound / Удален звук пожарной тревоги + id: 6482 + time: '2024-11-01T11:47:36.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/115 +- author: Gersoon458 + changes: + - type: Remove + message: >- + Fun removed :( Specifically the basket and the gift from the hands + :(/Удалено веселье :( А конкретно корзинка и подарок из рук :( + id: 6483 + time: '2024-11-06T02:52:23.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/119 +- author: Spatison + changes: + - type: Tweak + message: >- + Changed the chances of modes falling out / Изменены шансы выпадения + режимов + id: 6484 + time: '2024-11-06T03:10:55.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/118 +- author: Gersoon458 + changes: + - type: Add + message: Added a new map - WhiteBox/Добавлена новая карта - ВайтБокс + - type: Fix + message: Fixed Moose (Added cadet spawner)/Починен Мус (Добавлен спавнер кадета) + - type: Fix + message: >- + Asterisk has been fixed, now there is no planet on it (Which do not + work. Thanks to Kutos)/Починен Астериск, теперь на нём нет планеты + (Которые не работают. Спасибо Кутосу) + id: 6485 + time: '2024-11-06T03:45:51.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/117 +- author: Spatison + changes: + - type: Tweak + message: The pickaxe has been improved / Улучшена кирка + id: 6486 + time: '2024-11-06T03:46:19.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/108 +- author: Spatison + changes: + - type: Tweak + message: >- + The holoprojectors have been redesigned / Голопроекторы были + переработаны + id: 6487 + time: '2024-11-06T03:48:03.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/112 +- author: Warete + changes: + - type: Fix + message: >- + Some benches had to get their rotation back / Скамьи должны были вернуть + свой поворот + - type: Tweak + message: >- + Automatic shift end is now off / Выключено автоматическое завершение + смены + id: 6488 + time: '2024-11-06T04:32:07.0000000+00:00' + url: https://github.com/WWhiteDreamProject/wwdpublic/pull/99 diff --git a/Resources/ConfigPresets/Build/development.toml b/Resources/ConfigPresets/Build/development.toml index da3a413026..a1900dbaa2 100644 --- a/Resources/ConfigPresets/Build/development.toml +++ b/Resources/ConfigPresets/Build/development.toml @@ -23,6 +23,7 @@ grid_fill = false auto_call_time = 0 emergency = false arrivals = false +preload_grids = false [admin] see_own_notes = true diff --git a/Resources/ConfigPresets/EinsteinEngines/default.toml b/Resources/ConfigPresets/EinsteinEngines/default.toml new file mode 100644 index 0000000000..b5b8dbbf64 --- /dev/null +++ b/Resources/ConfigPresets/EinsteinEngines/default.toml @@ -0,0 +1,56 @@ +[admin] +see_own_notes = true +deadmin_on_join = true + +[discord] +rich_main_icon_id = "einstein-engines" + +[events] +ramping_average_end_time = 180.0 +ramping_average_chaos = 4.5 + +[game] +hostname = "Einstein Engines (change this)" +desc = "An alternative upstream that favors content intended for RP servers. If you are reading this, please change it." +soft_max_players = 60 +lobbyenabled = true +lobbyduration = 240 + +[hub] +tags = "lang:en-US,region:am_n_e,rp:med" +hub_urls = "https://hub.spacestation14.com/" + +[ic] +flavor_text = true + +[infolinks] +discord = "https://discord.gg/X4QEXxUrsJ" +github = "https://github.com/Simple-Station/Einstein-Engines" +website = "https://simplestation.org/" +bug_report = "https://github.com/Simple-Station/Einstein-Engines/issues/new/choose" + +[net] +max_connections = 1024 +tickrate = 30 + +[netres] +limit = 10.0 + +[build] +#! PLEASE set this for your fork +fork_id = "EinsteinEngines" + +[server] +rules_file = "Rules.txt" +rules_header = "ui-rules-header" + +[ooc] +enable_during_round = true + +[vote] +restart_required_ratio = 0.7 +preset_enabled = true +map_enabled = true + +#[worldgen] +#enabled = true diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index 1332902a29..3a7e0e7ed6 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aexxie, africalimedrop, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, angelofallars, ArchPigeon, Arendian, arimah, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, aspiringLich, avghdev, AzzyIsNotHere, BananaFlambe, BasedUser, beck-thompson, BGare, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlueHNT, Boaz1111, BobdaBiscuit, brainfood1183, BramvanZijp, Brandon-Huu, Bribrooo, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CaasGit, CakeQ, CaptainSqrBeard, Carbonhell, Carolyn3114, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, clorl, Clyybber, CodedCrow, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, coolmankid12345, corentt, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, Deeeeja, deepdarkdepths, Delete69, deltanedas, DeltaV-Bot, DerbyX, DoctorBeard, DogZeroX, dontbetank, dootythefrooty, Doru991, DoubleRiceEddiedd, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EdenTheLiznerd, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, exincore, exp111, Fahasor, FairlySadPanda, Fansana, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FluidRock, FoLoKe, fooberticus, Fortune117, FoxxoTrystan, freeman2651, Froffy025, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, github-actions[bot], gituhabu, gluesniffler, GNF54, Golinth, GoodWheatley, graevy, GreyMario, Guess-My-Name, gusxyz, h3half, Hanzdegloker, Hardly3D, harikattar, HerCoyote23, HoofedEar, Hoolny, hord-brayden, hubismal, Hugal31, Huxellberger, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, Interrobang01, IProduceWidgets, ItsMeThom, Jackal298, Jackrost, jamessimo, janekvap, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JoeHammad1844, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTrotter, KaiShibaa, kalane15, kalanosh, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Ko4ergaPunk, komunre, koteq, Krunklehorn, kxvvv, Lamrr, LankLTE, lapatison, Leander-0, leonardo-dabepis, LetterN, Level10Cybermancer, lever1209, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, LovelyLophi, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MisterMecky, Mith-randalf, Mnemotechnician, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, notafet, notquitehadouken, noudoit, noverd, nuke-haus, NULL882, nyeogmi, OCOtheOmega, OctoRocket, OldDanceJacket, onoira, osjarw, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, PHCodes, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuroSlavKing, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, ShadowCommander, Shadowtheprotogen546, SignalWalker, SimpleStation14, Simyon264, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, SleepyScarecrow, Snowni, snowsignal, SonicHDC, SoulSloth, SpaceManiac, SpeltIncorrectyl, spoogemonster, ssdaniel24, stalengd, Stealthbomber16, stellar-novas, StrawberryMoses, superjj18, SweptWasTaken, Szunti, TadJohnson00, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, Tmanzxd, tmtmtl30, TokenStyle, tom-leys, tomasalves8, Tomeno, Tornado-Technology, tosatur, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UKNOWH, UnicornOnLSD, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, VMSolidus, volundr-, Voomra, Vordenburg, vulppine, wafehling, WarMechanic, waylon531, weaversam8, whateverusername0, Willhelm53, Winkarst-cpu, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zumorica, Zymem +0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aexxie, africalimedrop, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, angelofallars, ArchPigeon, Arendian, arimah, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, aspiringLich, avghdev, AzzyIsNotHere, BananaFlambe, BasedUser, beck-thompson, BGare, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlueHNT, Boaz1111, BobdaBiscuit, brainfood1183, BramvanZijp, Brandon-Huu, Bribrooo, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CaasGit, CakeQ, CaptainSqrBeard, Carbonhell, Carolyn3114, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, CilliePaint, clorl, Clyybber, CodedCrow, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, coolmankid12345, corentt, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, Deeeeja, deepdarkdepths, Delete69, deltanedas, DeltaV-Bot, DerbyX, DoctorBeard, DogZeroX, dontbetank, dootythefrooty, Doru991, DoubleRiceEddiedd, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, Evgencheg, exincore, exp111, Fahasor, FairlySadPanda, Fansana, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FluidRock, FoLoKe, fooberticus, Fortune117, FoxxoTrystan, freeman2651, Froffy025, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, geraeumig, Git-Nivrak, github-actions[bot], gituhabu, gluesniffler, Golinth, GoodWheatley, graevy, GreyMario, Guess-My-Name, gusxyz, h3half, Hanzdegloker, Hardly3D, harikattar, HerCoyote23, HoofedEar, Hoolny, hord-brayden, hubismal, Hugal31, Huxellberger, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, Interrobang01, IProduceWidgets, ItsMeThom, Jackal298, Jackrost, jamessimo, janekvap, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JoeHammad1844, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTrotter, KaiShibaa, kalane15, kalanosh, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Ko4ergaPunk, komunre, koteq, Krunklehorn, kxvvv, Lamrr, LankLTE, lapatison, Leander-0, leonardo-dabepis, LetterN, Level10Cybermancer, lever1209, Lgibb18, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, LovelyLophi, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MisterMecky, Mith-randalf, Mnemotechnician, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, notafet, notquitehadouken, noudoit, nuke-haus, NULL882, nyeogmi, OCOtheOmega, OctoRocket, OldDanceJacket, onoira, osjarw, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, PHCodes, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuroSlavKing, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, ShadowCommander, Shadowtheprotogen546, ShatteredSwords, SignalWalker, SimpleStation14, Simyon264, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, SleepyScarecrow, Snowni, snowsignal, SonicHDC, SoulSloth, SpaceManiac, SpeltIncorrectyl, spoogemonster, ssdaniel24, stalengd, Stealthbomber16, stellar-novas, StrawberryMoses, superjj18, SweptWasTaken, Szunti, TadJohnson00, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, Tmanzxd, tmtmtl30, TokenStyle, tom-leys, tomasalves8, Tomeno, Tornado-Technology, tosatur, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UKNOWH, UltimateJester, UnicornOnLSD, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, VMSolidus, volundr-, Voomra, Vordenburg, vulppine, wafehling, WarMechanic, waylon531, weaversam8, whateverusername0, Willhelm53, Winkarst-cpu, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, zelezniciar1, ZelteHonor, zerorulez, zionnBE, ZNixian, ZoldorfTheWizard, Zumorica, Zymem diff --git a/Resources/Fonts/Cambria.ttf b/Resources/Fonts/Cambria.ttf new file mode 100644 index 0000000000..ab88fb474a Binary files /dev/null and b/Resources/Fonts/Cambria.ttf differ diff --git a/Resources/Locale/en-US/HUD/game-hud.ftl b/Resources/Locale/en-US/HUD/game-hud.ftl index 7f6573d2ad..ea423f080a 100644 --- a/Resources/Locale/en-US/HUD/game-hud.ftl +++ b/Resources/Locale/en-US/HUD/game-hud.ftl @@ -1,6 +1,7 @@ game-hud-open-escape-menu-button-tooltip = Open escape menu. game-hud-open-guide-menu-button-tooltip = Open guidebook menu. game-hud-open-character-menu-button-tooltip = Open character menu. +game-hud-open-emotes-menu-button-tooltip= Open emotes menu. game-hud-open-inventory-menu-button-tooltip = Open inventory menu. game-hud-open-crafting-menu-button-tooltip = Open crafting menu. game-hud-open-actions-menu-button-tooltip = Open actions menu. diff --git a/Resources/Locale/en-US/Mail/mail.ftl b/Resources/Locale/en-US/Mail/mail.ftl deleted file mode 100644 index 72cd3879b3..0000000000 --- a/Resources/Locale/en-US/Mail/mail.ftl +++ /dev/null @@ -1,30 +0,0 @@ -mail-recipient-mismatch = Recipient name or job does not match. -mail-invalid-access = Recipient name and job match, but access isn't as expected. -mail-locked = The anti-tamper lock hasn't been removed. Tap the recipient's ID. -mail-desc-far = A parcel of mail. You can't make out who it's addressed to from this distance. -mail-desc-close = A parcel of mail addressed to {CAPITALIZE($name)}, {$job}. -mail-desc-fragile = It has a [color=red]red fragile label[/color]. -mail-desc-priority = The anti-tamper lock's [color=yellow]yellow priority tape[/color] is active. Better deliver it on time! -mail-desc-priority-inactive = The anti-tamper lock's [color=#886600]yellow priority tape[/color] is inactive. -mail-unlocked = Anti-tamper system unlocked. -mail-unlocked-by-emag = Anti-tamper system *BZZT*. -mail-unlocked-reward = Anti-tamper system unlocked. {$bounty} spesos have been added to logistics's account. -mail-penalty-lock = ANTI-TAMPER LOCK BROKEN. LOGISTICS BANK ACCOUNT PENALIZED BY {$credits} CREDITS. -mail-penalty-fragile = INTEGRITY COMPROMISED. LOGISTICS BANK ACCOUNT PENALIZED BY {$credits} CREDITS. -mail-penalty-expired = DELIVERY PAST DUE. LOGISTICS BANK ACCOUNT PENALIZED BY {$credits} CREDITS. -mail-item-name-unaddressed = mail -mail-item-name-addressed = mail ({$recipient}) - -command-mailto-description = Queue a parcel to be delivered to an entity. Example usage: `mailto 1234 5678 false false`. The target container's contents will be transferred to an actual mail parcel. -command-mailto-help = Usage: {$command} [is-fragile: true or false] [is-priority: true or false] -command-mailto-no-mailreceiver = Target recipient entity does not have a {$requiredComponent}. -command-mailto-no-blankmail = The {$blankMail} prototype doesn't exist. Something is very wrong. Contact a programmer. -command-mailto-bogus-mail = {$blankMail} did not have {$requiredMailComponent}. Something is very wrong. Contact a programmer. -command-mailto-invalid-container = Target container entity does not have a {$requiredContainer} container. -command-mailto-unable-to-receive = Target recipient entity was unable to be setup for receiving mail. ID may be missing. -command-mailto-no-teleporter-found = Target recipient entity was unable to be matched to any station's mail teleporter. Recipient may be off-station. -command-mailto-success = Success! Mail parcel has been queued for next teleport in {$timeToTeleport} seconds. - -command-mailnow = Force all mail teleporters to deliver another round of mail as soon as possible. This will not bypass the undelivered mail limit. -command-mailnow-help = Usage: {$command} -command-mailnow-success = Success! All mail teleporters will be delivering another round of mail soon. diff --git a/Resources/Locale/en-US/_white/emotes/speech-emotes.ftl b/Resources/Locale/en-US/_white/emotes/speech-emotes.ftl index b62e05d60f..9df3628cc7 100644 --- a/Resources/Locale/en-US/_white/emotes/speech-emotes.ftl +++ b/Resources/Locale/en-US/_white/emotes/speech-emotes.ftl @@ -87,7 +87,7 @@ emote-chat-messages-beep-1 = beeps emote-chat-messages-boop-1 = boops #Chime -emote-chat-messages-chime-1 = chimes +emote-chat-messages-chime-1 = chimes #Buzz-Two emote-chat-messages-buzz-two-1 = buzzes twice @@ -98,22 +98,12 @@ emote-chat-messages-ping-1 = pings #Whirr emote-chat-messages-whirr-1 = whirrs -#Nod -emote-chat-button-text-nod = Nod +chat-emote-name-nod = Nod +chat-emote-name-shake-head = Shake Head +chat-emote-name-frown = Frown +chat-emote-name-smile = Smile -emote-chat-messages-nod-1 = nods - -#ShakeHead -emote-chat-button-text-shake-head = Shake head - -emote-chat-messages-shake-head-1 = shakes head - -#Frown -emote-chat-button-text-frown = Frown - -emote-chat-messages-frown-1 = frowns - -#Smile -emote-chat-button-text-smile = Smile - -emote-chat-messages-smile-1 = smiles \ No newline at end of file +chat-emote-msg-nod = nods. +chat-emote-msg-shake-head = shakes {POSS-ADJ($entity)} head.. +chat-emote-msg-frown = frowns. +chat-emote-msg-smile = smiles. diff --git a/Resources/Locale/en-US/_white/escape-menu/options-menu.ftl b/Resources/Locale/en-US/_white/escape-menu/options-menu.ftl index b1b8726d49..a5bcccadb6 100644 --- a/Resources/Locale/en-US/_white/escape-menu/options-menu.ftl +++ b/Resources/Locale/en-US/_white/escape-menu/options-menu.ftl @@ -1,6 +1,3 @@ ui-options-log-in-chat = Log actions in the chat ui-options-function-open-emotions-menu = Open emotions menu -ui-options-function-look-up = Look up/Take aim -ui-options-function-auto-get-up = Automatically get up after falling -ui-options-function-hold-look-up = Hold down the key to aim \ No newline at end of file diff --git a/Resources/Locale/en-US/_white/escape-menu/ui/options.ftl b/Resources/Locale/en-US/_white/escape-menu/ui/options.ftl new file mode 100644 index 0000000000..db1895e42c --- /dev/null +++ b/Resources/Locale/en-US/_white/escape-menu/ui/options.ftl @@ -0,0 +1 @@ +ui-options-hud-theme-operative = Operative diff --git a/Resources/Locale/en-US/_white/ghost/ghost-gui.ftl b/Resources/Locale/en-US/_white/ghost/ghost-gui.ftl deleted file mode 100644 index 9a89f477a6..0000000000 --- a/Resources/Locale/en-US/_white/ghost/ghost-gui.ftl +++ /dev/null @@ -1 +0,0 @@ -ghost-gui-return-to-round-button = Return to round \ No newline at end of file diff --git a/Resources/Locale/en-US/_white/ghost/ghost-respawn.ftl b/Resources/Locale/en-US/_white/ghost/ghost-respawn.ftl deleted file mode 100644 index 7c5d6f75a8..0000000000 --- a/Resources/Locale/en-US/_white/ghost/ghost-respawn.ftl +++ /dev/null @@ -1,15 +0,0 @@ -ghost-respawn-time-left = Before the opportunity to return to the round { $time } - { $time -> - [one] minute - *[other] minutes - } -ghost-respawn-max-players = The function is not available, there should be fewer players on the server { $players }. -ghost-respawn-window-title = Rules for returning to the round -ghost-respawn-window-rules-footer = By using this feature, you [color=#ff7700]agree[/color] [color=#ff0000]not to transfer[/color] the knowledge of your past character to a new one. For violation of the clause specified here, [color=#ff0000]a ban in the amount of 3 days or more follows[/color]. -ghost-respawn-same-character = You cannot enter the round for the same character. Change it in the character settings. - -ghost-respawn-log-character-almost-same = Player { $player } { $try -> - [true] join - *[false] tried to join -} in the round after the respawn with a similar name. Past name: { $oldName }, current: { $newName }. -ghost-respawn-log-return-to-lobby = { $userName } returned to the lobby. \ No newline at end of file diff --git a/Resources/Locale/en-US/_white/ghost/roles/ghost-role-component.ftl b/Resources/Locale/en-US/_white/ghost/roles/ghost-role-component.ftl new file mode 100644 index 0000000000..ad06c25c18 --- /dev/null +++ b/Resources/Locale/en-US/_white/ghost/roles/ghost-role-component.ftl @@ -0,0 +1,2 @@ +ghost-role-information-gondola-name = Gondola +ghost-role-information-gondola-description = You're a gondola. \ No newline at end of file diff --git a/Resources/Locale/en-US/_white/holoprojector/holoprojector.ftl b/Resources/Locale/en-US/_white/holoprojector/holoprojector.ftl new file mode 100644 index 0000000000..b7d2384057 --- /dev/null +++ b/Resources/Locale/en-US/_white/holoprojector/holoprojector.ftl @@ -0,0 +1,3 @@ +holoprojector-active-holo = Active projections: [color=fuchsia]{ $activeholo }[/color] +holoprojector-uses-limit = The maximum number of projections was used! +holoprojector-delete-signs = All projections have been deleted! \ No newline at end of file diff --git a/Resources/Locale/en-US/_white/job/job-names.ftl b/Resources/Locale/en-US/_white/job/job-names.ftl index abdf092d1d..a785b4e3f7 100644 --- a/Resources/Locale/en-US/_white/job/job-names.ftl +++ b/Resources/Locale/en-US/_white/job/job-names.ftl @@ -2,5 +2,5 @@ job-name-maid = Maid job-name-hobo = Hobo # Role timers - Make these alphabetical or I cut you -JobMaid = Maid JobHobo = Hobo +JobMaid = Maid diff --git a/Resources/Locale/en-US/_white/mindslave/mindslave.ftl b/Resources/Locale/en-US/_white/mindslave/mindslave.ftl new file mode 100644 index 0000000000..56ef3a3d8e --- /dev/null +++ b/Resources/Locale/en-US/_white/mindslave/mindslave.ftl @@ -0,0 +1,11 @@ +mindslave-briefing = Serve and protect {$player}, {$role}. Follow + { GENDER($player) -> + [male] his every order. He is + [female] her every order. She is + *[other] their every order. they are + } absolute power to you. +mindslave-chat-message = Fragments of your memories fly in front of your eyes in an instant, after which a white veil covers your consciousness. In a flash of bright red light, you remember your purpose - to serve {$player}, {$role}. +mindslave-freed = You no longer serve {$player}! + +mindslave-target-self = You can't make yourself your own slave. +mindslave-cant-insert = The mind of this creature is already fixated on something \ No newline at end of file diff --git a/Resources/Locale/en-US/_white/reagents/meta/fun.ftl b/Resources/Locale/en-US/_white/reagents/meta/fun.ftl new file mode 100644 index 0000000000..0bde38f147 --- /dev/null +++ b/Resources/Locale/en-US/_white/reagents/meta/fun.ftl @@ -0,0 +1,2 @@ +reagent-name-tranquility = tranquility +reagent-desc-tranquility = Emits a strange aura of tranquility... diff --git a/Resources/Locale/en-US/_white/reagents/meta/physical-desc.ftl b/Resources/Locale/en-US/_white/reagents/meta/physical-desc.ftl new file mode 100644 index 0000000000..4f0878ec24 --- /dev/null +++ b/Resources/Locale/en-US/_white/reagents/meta/physical-desc.ftl @@ -0,0 +1 @@ +reagent-physical-desc-calming = calming \ No newline at end of file diff --git a/Resources/Locale/en-US/_white/reagents/tranquility.ftl b/Resources/Locale/en-US/_white/reagents/tranquility.ftl new file mode 100644 index 0000000000..1f75bffcb6 --- /dev/null +++ b/Resources/Locale/en-US/_white/reagents/tranquility.ftl @@ -0,0 +1 @@ +tranquility-effect = You feel strangely calm... \ No newline at end of file diff --git a/Resources/Locale/en-US/_white/rechargeable-blocking/rechargeable-blocking.ftl b/Resources/Locale/en-US/_white/rechargeable-blocking/rechargeable-blocking.ftl new file mode 100644 index 0000000000..607f65ab5c --- /dev/null +++ b/Resources/Locale/en-US/_white/rechargeable-blocking/rechargeable-blocking.ftl @@ -0,0 +1,2 @@ +rechargeable-blocking-discharged = It is [color=red]discharged[/color]. +rechargeable-blocking-remaining-time = Time left to charge: [color=green]{ $remainingTime }[/color] seconds. \ No newline at end of file diff --git a/Resources/Locale/en-US/_white/research/techologies.ftl b/Resources/Locale/en-US/_white/research/techologies.ftl new file mode 100644 index 0000000000..b637d6e5fc --- /dev/null +++ b/Resources/Locale/en-US/_white/research/techologies.ftl @@ -0,0 +1,2 @@ +research-technology-night-vision = Night vision +research-technology-thermal-vision = Thermal vision \ No newline at end of file diff --git a/Resources/Locale/en-US/_white/store/sales.ftl b/Resources/Locale/en-US/_white/store/sales.ftl deleted file mode 100644 index 018006b3bf..0000000000 --- a/Resources/Locale/en-US/_white/store/sales.ftl +++ /dev/null @@ -1,2 +0,0 @@ -store-sales-amount = [DISCOUNT] { $amount }%! -store-sales-over = [The sale is over] \ No newline at end of file diff --git a/Resources/Locale/en-US/_white/store/uplink-catalog.ftl b/Resources/Locale/en-US/_white/store/uplink-catalog.ftl index f80d022535..2d94918807 100644 --- a/Resources/Locale/en-US/_white/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/_white/store/uplink-catalog.ftl @@ -1,11 +1,38 @@ uplink-emp-flashlight-name = Emp Flashlight uplink-emp-flashlight-desc = A rechargeable device disguised as a flashlight designed to disrupt electronic systems. Useful for disrupting communications, security's energy weapons, and APCs when you're in a tight spot. -uplink-betrayal-knife-name = Betrayal dagger -uplink-betrayal-knife-desc = The betrayal dagger allows the user to teleport a short distance, and also causes significant damage when stabbed in the back. +uplink-betrayal-dagger-name = Betrayal dagger +uplink-betrayal-dagger-desc = The betrayal dagger allows the user to teleport a short distance, and also causes significant damage when stabbed in the back. uplink-betrayal-knife-name = Experimental syndicate teleporter uplink-betrayal-knife-desc = Syndicate teleporter, when used, moves 3-8 meters forward. In case of teleportation into a wall, uses emergency teleportation. Has 4 charge. uplink-ebow-name = Small energy crossbow uplink-ebow-desc = A fairly quiet weapon that automatically reloads and stuns. It goes well with other types of weapons. + +uplink-hardlight-spear-implant-name = Hardlight spear implanter +uplink-hardlight-spear-implant-desc = An implant injected into the body, and later activated at the user's will. It will summon a spear made out of hardlight that the user can use to wreak havoc. + +uplink-neuro-control-name = Neuro stabilization implanter +uplink-neuro-control-desc = Blocks all of the incoming stamina damage while dealing shock damage instead. + +uplink-implanter-name = Имплантер +uplink-implanter-desc = An advanced implant that allows you to quickly insert and remove implants. + +uplink-smoke-implant-name = Smoke implant +uplink-smoke-implant-desc = Releases a cloud of smoke when activated. + +uplink-night-vision-name = Night vision goggles +uplink-night-vision-desc = They allow you to see in the dark, all while looking like normal sunglasses! + +uplink-thermal-vision-name = Thermal vision goggles +uplink-thermal-vision-desc = They allow you to see living creatures regardless of obstacles, all while looking like normal sunglasses! + +uplink-mind-slave = Mindslave implant +uplink-mind-slave-desc = Capture the mind of a living being and order him to throw explosive pies at the captain. + +uplink-blood-dagger-name = Blood dagger +uplink-blood-dagger-desc = A dagger of pain and blood. It has deadly accuracy, allowing you to deal critical damage and extract blood from opponents, treating the owner in proportion to the sucked blood. When absorbing the owner's blood, it briefly enhances his valuable profuse bleeding. + +uplink-gondola-name = Gondola crate +uplink-gondola-desc = A crate containing a single Gondola. The meat of the Gondola contains tranquility reagent. diff --git a/Resources/Locale/en-US/abilities/bloodsucker.ftl b/Resources/Locale/en-US/abilities/bloodsucker.ftl index d956eaff84..c8aa0ed854 100644 --- a/Resources/Locale/en-US/abilities/bloodsucker.ftl +++ b/Resources/Locale/en-US/abilities/bloodsucker.ftl @@ -4,9 +4,9 @@ action-description-suck-blood = Suck the blood of the victim in your hand. bloodsucker-fail-helmet = You'd need to remove {THE($helmet)}. bloodsucker-fail-mask = You'd need to remove your mask! -bloodsucker-fail-not-blood = { CAPITALIZE(SUBJECT($target)) } doesn't have delicious, nourishing mortal blood. -bloodsucker-fail-no-blood = { CAPITALIZE(SUBJECT($target)) } has no blood in { POSS-ADJ($target) } body. -bloodsucker-fail-no-blood-bloodsucked = { CAPITALIZE(SUBJECT($target)) } has been sucked dry. +bloodsucker-not-blood = {$target} doesn't have delicious, nourishing blood. +bloodsucker-fail-no-blood = {$target} has no blood in { POSS-ADJ($target) } body. +bloodsucker-fail-no-blood-bloodsucked = {$target} has been sucked dry. bloodsucker-blood-sucked = You suck some blood from {$target}. bloodsucker-doafter-start = You try to suck blood from {$target}. diff --git a/Resources/Locale/en-US/accent/italian.ftl b/Resources/Locale/en-US/accent/italian.ftl index d0ef4e8f72..cc8641417f 100644 --- a/Resources/Locale/en-US/accent/italian.ftl +++ b/Resources/Locale/en-US/accent/italian.ftl @@ -78,9 +78,6 @@ accent-italian-words-replace-23 = greek accent-italian-words-24 = operatives accent-italian-words-replace-24 = greeks -accent-italian-words-24 = ops -accent-italian-words-replace-24 = greeks - accent-italian-words-25 = sec accent-italian-words-replace-25 = polizia diff --git a/Resources/Locale/en-US/accent/pirate.ftl b/Resources/Locale/en-US/accent/pirate.ftl index 8da975df40..b6db7c803b 100644 --- a/Resources/Locale/en-US/accent/pirate.ftl +++ b/Resources/Locale/en-US/accent/pirate.ftl @@ -1,7 +1,7 @@ accent-pirate-prefix-1 = Arrgh accent-pirate-prefix-2 = Garr accent-pirate-prefix-3 = Yarr -accent-pirate-prefix-3 = Yarrgh +accent-pirate-prefix-4 = Yarrgh accent-pirate-replaced-1 = my accent-pirate-replacement-1 = me diff --git a/Resources/Locale/en-US/accessories/human-hair.ftl b/Resources/Locale/en-US/accessories/human-hair.ftl index 3a507ec6cf..7d3467a610 100644 --- a/Resources/Locale/en-US/accessories/human-hair.ftl +++ b/Resources/Locale/en-US/accessories/human-hair.ftl @@ -165,6 +165,7 @@ marking-HumanHairProtagonist = Slightly Long Hair marking-HumanHairSpikey = Spiky marking-HumanHairSpiky = Spiky 2 marking-HumanHairSpiky2 = Spiky 3 +marking-HumanHairSpookyLong = Spooky Long marking-HumanHairSwept = Swept Back Hair marking-HumanHairSwept2 = Swept Back Hair 2 marking-HumanHairTailed = Tailed diff --git a/Resources/Locale/en-US/accessories/vox-facial-hair.ftl b/Resources/Locale/en-US/accessories/vox-facial-hair.ftl index 48b19ca74b..a63b0b5a39 100644 --- a/Resources/Locale/en-US/accessories/vox-facial-hair.ftl +++ b/Resources/Locale/en-US/accessories/vox-facial-hair.ftl @@ -1,5 +1,5 @@ -marking-VoxFacialHairColonel = Vox Colonel -marking-VoxFacialHairFu = Quill Fu -marking-VoxFacialHairNeck = Neck Quills -marking-VoxFacialHairBeard = Quill Beard -marking-VoxFacialHairRuffBeard = Ruff Beard +marking-VoxFacialHairBeard = Vox Beard (Quills) +marking-VoxFacialHairColonel = Vox Moustache (Colonel) +marking-VoxFacialHairFu = Vox Moustache (Quill Fu) +marking-VoxFacialHairNeck = Vox Beard (Neck Quills) +marking-VoxFacialHairMane = Vox Beard (Mane) diff --git a/Resources/Locale/en-US/accessories/vox-hair.ftl b/Resources/Locale/en-US/accessories/vox-hair.ftl index cf98d0b4f9..94483fd6a6 100644 --- a/Resources/Locale/en-US/accessories/vox-hair.ftl +++ b/Resources/Locale/en-US/accessories/vox-hair.ftl @@ -1,13 +1,22 @@ -marking-VoxHairShortQuills = Short Vox Quills -marking-VoxHairKingly = Vox Kingly marking-VoxHairAfro = Vox Afro -marking-VoxHairMohawk = Vox Mohawk -marking-VoxHairYasuhiro = Vox Yasuhiro +marking-VoxHairBraids = Vox Braids +marking-VoxHairCrestedQuills = Vox Crested Quills +marking-VoxHairEmperorQuills = Vox Emperor Quills +marking-VoxHairFlowing = Vox Flowing +marking-VoxHairHawk = Vox Hawk marking-VoxHairHorns = Vox Horns -marking-VoxHairNights = Vox Nights -marking-VoxHairSurf = Vox Surf -marking-VoxHairCropped = Vox Cropped -marking-VoxHairRuffhawk = Vox Ruffhawk -marking-VoxHairRows = Vox Rows +marking-VoxHairKeelQuills = Vox Keel Quills +marking-VoxHairKeetQuills = Vox Keet Quills +marking-VoxHairKingly = Vox Kingly +marking-VoxHairLongBraid = Vox Long Braid marking-VoxHairMange = Vox Mange +marking-VoxHairMohawk = Vox Mohawk +marking-VoxHairNights = Vox Nights marking-VoxHairPony = Vox Pony +marking-VoxHairRazorClipped = Vox Razor (Clipped) +marking-VoxHairRazor = Vox Razor +marking-VoxHairSortBraid = Vox Short Braid +marking-VoxHairShortQuills = Vox Short Quills +marking-VoxHairSurf = Vox Surf +marking-VoxHairTielQuills = Vox Tiel Quills +marking-VoxHairYasu = Vox Yasuhiro diff --git a/Resources/Locale/en-US/administration/smites.ftl b/Resources/Locale/en-US/administration/smites.ftl index ae4e6f7271..ff3e3b0901 100644 --- a/Resources/Locale/en-US/administration/smites.ftl +++ b/Resources/Locale/en-US/administration/smites.ftl @@ -13,7 +13,6 @@ admin-smite-stomach-removal-self = Your stomach feels hollow... admin-smite-run-walk-swap-prompt = You have to press shift to run! admin-smite-super-speed-prompt = You move at mach 0.8! admin-smite-lung-removal-self = You can't breathe! -admin-smite-terminate-prompt = I'll be back ## Smite descriptions @@ -58,7 +57,6 @@ admin-smite-disarm-prone-description = Makes them get disarmed 100% of the time admin-smite-garbage-can-description = Turn them into a garbage bin to emphasize what they remind you of. admin-smite-super-bonk-description = Slams them on every single table on the Station and beyond. admin-smite-super-bonk-lite-description= Slams them on every single table on the Station and beyond. Stops when the target is dead. -admin-smite-terminate-description = Creates a Terminator ghost role with the sole objective of killing them. ## Tricks descriptions diff --git a/Resources/Locale/en-US/administration/ui/admin-logs.ftl b/Resources/Locale/en-US/administration/ui/admin-logs.ftl index 549e9587d7..377bea6e84 100644 --- a/Resources/Locale/en-US/administration/ui/admin-logs.ftl +++ b/Resources/Locale/en-US/administration/ui/admin-logs.ftl @@ -14,7 +14,6 @@ admin-logs-select-none = None # Players admin-logs-search-players-placeholder = Search Players (OR) -admin-logs-select-none = None admin-logs-include-non-player = Include Non-players # Logs diff --git a/Resources/Locale/en-US/administration/ui/admin-notes.ftl b/Resources/Locale/en-US/administration/ui/admin-notes.ftl index ca5348a940..03e1290257 100644 --- a/Resources/Locale/en-US/administration/ui/admin-notes.ftl +++ b/Resources/Locale/en-US/administration/ui/admin-notes.ftl @@ -35,7 +35,6 @@ admin-notes-message-seen = Seen admin-notes-banned-from = Banned from admin-notes-the-server = the server admin-notes-permanently = permanently -admin-notes-for = for {$player} admin-notes-days = {$days} days admin-notes-hours = {$hours} hours admin-notes-minutes = {$minutes} minutes diff --git a/Resources/Locale/en-US/alerts/alerts.ftl b/Resources/Locale/en-US/alerts/alerts.ftl index ff2c0d9ee2..03f04ec7ba 100644 --- a/Resources/Locale/en-US/alerts/alerts.ftl +++ b/Resources/Locale/en-US/alerts/alerts.ftl @@ -57,9 +57,6 @@ alerts-no-battery-desc = You don't have a battery, rendering you unable to charg alerts-internals-name = Toggle internals alerts-internals-desc = Toggles your gas tank internals on or off. -alerts-internals-name = Toggle internals -alerts-internals-desc = Toggles your gas tank internals on or off. - alerts-piloting-name = Piloting Shuttle alerts-piloting-desc = You are piloting a shuttle. Click the alert to stop. diff --git a/Resources/Locale/en-US/ame/components/ame-controller-component.ftl b/Resources/Locale/en-US/ame/components/ame-controller-component.ftl index ee1f7f42e7..f15141ebcc 100644 --- a/Resources/Locale/en-US/ame/components/ame-controller-component.ftl +++ b/Resources/Locale/en-US/ame/components/ame-controller-component.ftl @@ -16,7 +16,6 @@ ame-window-refresh-parts-button = Refresh Parts ame-window-core-count-label = Core count: ame-window-power-currentsupply-label = Current power supply: ame-window-power-targetsupply-label = Targeted power supply: -ame-window-toggle-injection-button = Toggle Injection ame-window-eject-button = Eject ame-window-increase-fuel-button = Increase ame-window-decrease-fuel-button = Decrease diff --git a/Resources/Locale/en-US/anomaly/anomaly.ftl b/Resources/Locale/en-US/anomaly/anomaly.ftl index da5882fa62..1609d77d91 100644 --- a/Resources/Locale/en-US/anomaly/anomaly.ftl +++ b/Resources/Locale/en-US/anomaly/anomaly.ftl @@ -3,6 +3,7 @@ anomaly-component-contact-damage = The anomaly sears off your skin! anomaly-vessel-component-anomaly-assigned = Anomaly assigned to vessel. anomaly-vessel-component-not-assigned = This vessel is not assigned to any anomaly. Try using a scanner on it. anomaly-vessel-component-assigned = This vessel is currently assigned to an anomaly. +anomaly-vessel-component-upgrade-output = point output anomaly-particles-delta = Delta particles anomaly-particles-epsilon = Epsilon particles diff --git a/Resources/Locale/en-US/arcade/components/space-villain-game-component.ftl b/Resources/Locale/en-US/arcade/components/space-villain-game-component.ftl index af005ae62d..75e18c8d71 100644 --- a/Resources/Locale/en-US/arcade/components/space-villain-game-component.ftl +++ b/Resources/Locale/en-US/arcade/components/space-villain-game-component.ftl @@ -11,5 +11,4 @@ space-villain-game-enemy-dies-with-player-message = {$enemyName} dies, but takes space-villain-game-enemy-throws-bomb-message = {$enemyName} throws a bomb, exploding you for {$damageReceived} damage! space-villain-game-enemy-steals-player-power-message = {$enemyName} steals {$stolenAmount} of your power! space-villain-game-enemy-heals-message = {$enemyName} heals for {$healedAmount} health! -space-villain-game-enemy-steals-player-power-message = {$enemyName} steals {$stolenAmount} of your power! -space-villain-game-enemy-attacks-message = {$enemyName} attacks you for {$damageDealt} damage! \ No newline at end of file +space-villain-game-enemy-attacks-message = {$enemyName} attacks you for {$damageDealt} damage! diff --git a/Resources/Locale/en-US/atmos/atmos-alerts-console.ftl b/Resources/Locale/en-US/atmos/atmos-alerts-console.ftl new file mode 100644 index 0000000000..a1640c5e9d --- /dev/null +++ b/Resources/Locale/en-US/atmos/atmos-alerts-console.ftl @@ -0,0 +1,35 @@ +atmos-alerts-window-title = Atmospheric Alerts Computer +atmos-alerts-window-station-name = [color=white][font size=14]{$stationName}[/font][/color] +atmos-alerts-window-unknown-location = Unknown location + +atmos-alerts-window-tab-no-alerts = Alerts +atmos-alerts-window-tab-alerts = Alerts ({$value}) +atmos-alerts-window-tab-air-alarms = Air alarms +atmos-alerts-window-tab-fire-alarms = Fire alarms + +atmos-alerts-window-alarm-label = {CAPITALIZE($name)} ({$address}) +atmos-alerts-window-temperature-label = Temperature +atmos-alerts-window-temperature-value = {$valueInC} °C ({$valueInK} K) +atmos-alerts-window-pressure-label = Pressure +atmos-alerts-window-pressure-value = {$value} kPa +atmos-alerts-window-oxygenation-label = Oxygenation +atmos-alerts-window-oxygenation-value = {$value}% +atmos-alerts-window-other-gases-label = Other present gases +atmos-alerts-window-other-gases-value = {$shorthand} ({$value}%) +atmos-alerts-window-other-gases-value-nil = None +atmos-alerts-window-silence-alerts = Silence alerts from this alarm + +atmos-alerts-window-label-alert-types = Alert levels: +atmos-alerts-window-normal-state = Normal +atmos-alerts-window-warning-state = Warning +atmos-alerts-window-danger-state = Danger! +atmos-alerts-window-invalid-state = Inactive + +atmos-alerts-window-no-active-alerts = [font size=16][color=white]No active alerts -[/color] [color={$color}]situation normal[/color][/font] +atmos-alerts-window-no-data-available = No data available +atmos-alerts-window-alerts-being-silenced = Silencing alerts... + +atmos-alerts-window-toggle-overlays = Toggle alarm display + +atmos-alerts-window-flavor-left = Contact an atmospheric technician for assistance +atmos-alerts-window-flavor-right = v1.8 \ No newline at end of file diff --git a/Resources/Locale/en-US/atmos/gas-analyzer-component.ftl b/Resources/Locale/en-US/atmos/gas-analyzer-component.ftl index 03a920cb64..652bb19cb5 100644 --- a/Resources/Locale/en-US/atmos/gas-analyzer-component.ftl +++ b/Resources/Locale/en-US/atmos/gas-analyzer-component.ftl @@ -12,6 +12,8 @@ gas-analyzer-window-refresh-button = Refresh gas-analyzer-window-no-data = No Data gas-analyzer-window-no-gas-text = No Gases gas-analyzer-window-error-text = Error: {$errorText} +gas-analyzer-window-volume-text = Volume: +gas-analyzer-window-volume-val-text = {$volume} L gas-analyzer-window-pressure-text = Pressure: gas-analyzer-window-pressure-val-text = {$pressure} kPa gas-analyzer-window-temperature-text = Temperature: diff --git a/Resources/Locale/en-US/atmos/gas-recycler-system.ftl b/Resources/Locale/en-US/atmos/gas-recycler-system.ftl index cc527adf5c..a72e137732 100644 --- a/Resources/Locale/en-US/atmos/gas-recycler-system.ftl +++ b/Resources/Locale/en-US/atmos/gas-recycler-system.ftl @@ -1,3 +1,6 @@ gas-recycler-reacting = It is [color=green]converting[/color] waste gases. gas-recycler-low-pressure = The input pressure is [color=darkred]too low[/color]. gas-recycler-low-temperature = The input temperature is [color=darkred]too low[/color]. + +gas-recycler-upgrade-min-temp = Minimum temperature +gas-recycler-upgrade-min-pressure = Minimum pressure diff --git a/Resources/Locale/en-US/atmos/portable-scrubber.ftl b/Resources/Locale/en-US/atmos/portable-scrubber.ftl index c4071b4acc..8aadf076d9 100644 --- a/Resources/Locale/en-US/atmos/portable-scrubber.ftl +++ b/Resources/Locale/en-US/atmos/portable-scrubber.ftl @@ -1 +1,4 @@ portable-scrubber-fill-level = It's at about [color=yellow]{$percent}%[/color] of its maximum internal pressure. + +portable-scrubber-component-upgrade-max-pressure = max pressure +portable-scrubber-component-upgrade-transfer-rate = transfer rate diff --git a/Resources/Locale/en-US/borg/borg.ftl b/Resources/Locale/en-US/borg/borg.ftl index 2f51331a83..c9005eb796 100644 --- a/Resources/Locale/en-US/borg/borg.ftl +++ b/Resources/Locale/en-US/borg/borg.ftl @@ -17,3 +17,8 @@ borg-ui-no-brain = No brain present borg-ui-remove-battery = Remove borg-ui-modules-label = Modules: borg-ui-module-counter = {$actual}/{$max} + +# Transponder +borg-transponder-disabled-popup = A brain shoots out the top of {$name}! +borg-transponder-emagged-disabled-popup = Your transponder's lights go out! +borg-transponder-emagged-destroyed-popup = Your transponder's fuse blows! diff --git a/Resources/Locale/en-US/botany/components/seed-extractor-component.ftl b/Resources/Locale/en-US/botany/components/seed-extractor-component.ftl index 84d5a5ed28..c586a594a9 100644 --- a/Resources/Locale/en-US/botany/components/seed-extractor-component.ftl +++ b/Resources/Locale/en-US/botany/components/seed-extractor-component.ftl @@ -2,3 +2,5 @@ seed-extractor-component-interact-message = You extract some seeds from the { THE($name) }. seed-extractor-component-no-seeds = { CAPITALIZE(THE($name)) } has no seeds! + +seed-extractor-component-upgrade-seed-yield = seed yield diff --git a/Resources/Locale/en-US/burning/bodyburn.ftl b/Resources/Locale/en-US/burning/bodyburn.ftl index 896a0b6d04..58b98c09bb 100644 --- a/Resources/Locale/en-US/burning/bodyburn.ftl +++ b/Resources/Locale/en-US/burning/bodyburn.ftl @@ -1 +1 @@ -bodyburn-text-others = {$name}'s body burns to ash! +bodyburn-text-others = {$name} burns to ash! diff --git a/Resources/Locale/en-US/cargo/cargo-console-component.ftl b/Resources/Locale/en-US/cargo/cargo-console-component.ftl index b56f4730cc..941e0fa180 100644 --- a/Resources/Locale/en-US/cargo/cargo-console-component.ftl +++ b/Resources/Locale/en-US/cargo/cargo-console-component.ftl @@ -30,6 +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-paper-print-name = Order #{$orderNumber} cargo-console-paper-print-text = @@ -45,3 +46,5 @@ cargo-shuttle-console-station-unknown = Unknown cargo-shuttle-console-shuttle-not-found = Not found cargo-shuttle-console-organics = Detected organic lifeforms on the shuttle cargo-no-shuttle = No cargo shuttle found! + +cargo-telepad-delay-upgrade = Teleport delay diff --git a/Resources/Locale/en-US/chameleon-projector/chameleon-projector.ftl b/Resources/Locale/en-US/chameleon-projector/chameleon-projector.ftl new file mode 100644 index 0000000000..8a79516077 --- /dev/null +++ b/Resources/Locale/en-US/chameleon-projector/chameleon-projector.ftl @@ -0,0 +1,2 @@ +chameleon-projector-invalid = You can't disguise as that! +chameleon-projector-success = Projected new disguise. diff --git a/Resources/Locale/en-US/chat/chat-repo.ftl b/Resources/Locale/en-US/chat/chat-repo.ftl new file mode 100644 index 0000000000..a53380260b --- /dev/null +++ b/Resources/Locale/en-US/chat/chat-repo.ftl @@ -0,0 +1,7 @@ +command-description-deletechatmessage-id = Delete a specific chat message by message ID +command-description-nukechatmessages-usernames = Delete all of the supplied usernames' chat messages posted during this round +command-description-nukechatmessages-userids = Delete all of the supplied userIds' chat messages posted during this round + +command-error-deletechatmessage-id-notexist = The message with the supplied ID does not exist +command-error-nukechatmessages-usernames-usernamenotexist = Username {$username} does not exist +command-error-nukechatmessages-usernames-usernamenomessages = UserID {$userId} has no messages to nuke diff --git a/Resources/Locale/en-US/chat/emotes.ftl b/Resources/Locale/en-US/chat/emotes.ftl new file mode 100644 index 0000000000..e95cb2795d --- /dev/null +++ b/Resources/Locale/en-US/chat/emotes.ftl @@ -0,0 +1,60 @@ +# Names +chat-emote-name-scream = Scream +chat-emote-name-laugh = Laugh +chat-emote-name-honk = Honk +chat-emote-name-sigh = Sigh +chat-emote-name-whistle = Whistle +chat-emote-name-crying = Crying +chat-emote-name-squish = Squish +chat-emote-name-chitter = Chitter +chat-emote-name-squeak = Squeak +chat-emote-name-click = Click +chat-emote-name-clap = Clap +chat-emote-name-snap = Snap +chat-emote-name-salute = Salute +chat-emote-name-deathgasp = Deathgasp +chat-emote-name-buzz = Buzz +chat-emote-name-weh = Weh +chat-emote-name-chirp = Chirp +chat-emote-name-beep = Beep +chat-emote-name-chime = Chime +chat-emote-name-buzztwo = Buzz Two +chat-emote-name-ping = Ping +chat-emote-name-sneeze = Sneeze +chat-emote-name-cough = Cough +chat-emote-name-catmeow = Cat Meow +chat-emote-name-cathisses = Cat Hisses +chat-emote-name-monkeyscreeches = Monkey Screeches +chat-emote-name-robotbeep = Robot +chat-emote-name-yawn = Yawn +chat-emote-name-snore = Snore + +# Message +chat-emote-msg-scream = screams! +chat-emote-msg-laugh = laughs. +chat-emote-msg-honk = honks. +chat-emote-msg-sigh = sighs. +chat-emote-msg-whistle = whistles. +chat-emote-msg-crying = cries. +chat-emote-msg-squish = squishes. +chat-emote-msg-chitter = chitters. +chat-emote-msg-squeak = squeaks. +chat-emote-msg-click = clicks. +chat-emote-msg-clap = claps! +chat-emote-msg-snap = snaps {POSS-ADJ($entity)} fingers. +chat-emote-msg-salute = salutes. +chat-emote-msg-deathgasp = seizes up and falls limp, {POSS-ADJ($entity)} eyes dead and lifeless... +chat-emote-msg-deathgasp-monkey = lets out a faint chimper as {SUBJECT($entity)} collapses and stops moving... +chat-emote-msg-buzz = buzz! +chat-emote-msg-chirp = chirps! +chat-emote-msg-beep = beeps. +chat-emote-msg-chime = chimes. +chat-emote-msg-buzzestwo = buzzes twice. +chat-emote-msg-ping = pings. +chat-emote-msg-sneeze = sneezes. +chat-emote-msg-cough = coughs. +chat-emote-msg-catmeow = meows. +chat-emote-msg-cathisses = hisses! +chat-emote-msg-monkeyscreeches = screeches! +chat-emote-msg-yawn = yawns. +chat-emote-msg-snore = snores. diff --git a/Resources/Locale/en-US/chat/ui/emote-menu.ftl b/Resources/Locale/en-US/chat/ui/emote-menu.ftl new file mode 100644 index 0000000000..1f92a93c63 --- /dev/null +++ b/Resources/Locale/en-US/chat/ui/emote-menu.ftl @@ -0,0 +1,3 @@ +emote-menu-category-general = General +emote-menu-category-vocal = Vocal +emote-menu-category-hands = Hands diff --git a/Resources/Locale/en-US/chemistry/components/reagent-dispenser-component.ftl b/Resources/Locale/en-US/chemistry/components/reagent-dispenser-component.ftl index 48ec8f5213..37697c4517 100644 --- a/Resources/Locale/en-US/chemistry/components/reagent-dispenser-component.ftl +++ b/Resources/Locale/en-US/chemistry/components/reagent-dispenser-component.ftl @@ -10,9 +10,9 @@ reagent-dispenser-bound-user-interface-title = Reagent dispenser ## UI reagent-dispenser-window-amount-to-dispense-label = Amount -reagent-dispenser-window-container-label = Container: reagent-dispenser-window-clear-button = Clear reagent-dispenser-window-eject-button = Eject +reagent-dispenser-window-eject-container-button = ⏏ reagent-dispenser-window-no-container-loaded-text = No container loaded. reagent-dispenser-window-reagent-name-not-found-text = Reagent name not found reagent-dispenser-window-unknown-reagent-text = Unknown reagent diff --git a/Resources/Locale/en-US/chemistry/components/solution-heater-component.ftl b/Resources/Locale/en-US/chemistry/components/solution-heater-component.ftl new file mode 100644 index 0000000000..cecf15550c --- /dev/null +++ b/Resources/Locale/en-US/chemistry/components/solution-heater-component.ftl @@ -0,0 +1 @@ +solution-heater-upgrade-heat = Heat strength diff --git a/Resources/Locale/en-US/chemistry/components/solution-scanner-component.ftl b/Resources/Locale/en-US/chemistry/components/solution-scanner-component.ftl index 8dbbaf3edd..51a049aab1 100644 --- a/Resources/Locale/en-US/chemistry/components/solution-scanner-component.ftl +++ b/Resources/Locale/en-US/chemistry/components/solution-scanner-component.ftl @@ -3,3 +3,4 @@ scannable-solution-verb-message = Examine the chemical composition. scannable-solution-main-text = It contains the following chemicals: scannable-solution-empty-container = It contains no chemicals. scannable-solution-chemical = - {$amount}u [color={$color}]{$type}[/color] +scannable-solution-temperature = Solution temperature: {$temperature}K \ No newline at end of file diff --git a/Resources/Locale/en-US/chemistry/components/solution-status.ftl b/Resources/Locale/en-US/chemistry/components/solution-status.ftl new file mode 100644 index 0000000000..0ec5f932e0 --- /dev/null +++ b/Resources/Locale/en-US/chemistry/components/solution-status.ftl @@ -0,0 +1,2 @@ +solution-status-volume = Volume: [color=white]{$currentVolume}/{$maxVolume}u[/color] +solution-status-transfer = Transfer: [color=white]{$volume}u[/color] diff --git a/Resources/Locale/en-US/commands/tippy-command.ftl b/Resources/Locale/en-US/commands/tippy-command.ftl new file mode 100644 index 0000000000..6b9a95a1dd --- /dev/null +++ b/Resources/Locale/en-US/commands/tippy-command.ftl @@ -0,0 +1,12 @@ +cmd-tippy-desc = Broadcast a message as Tippy the clown. +cmd-tippy-help = tippy [entity prototype] [speak time] [slide time] [waddle interval] +cmd-tippy-auto-1 = +cmd-tippy-auto-2 = message +cmd-tippy-auto-3 = entity prototype +cmd-tippy-auto-4 = speak time, in seconds +cmd-tippy-auto-5 = slide time, in seconds +cmd-tippy-auto-6 = waddle interval, in seconds +cmd-tippy-error-no-user = User not found. +cmd-tippy-error-no-prototype = Prototype not found: {$proto} + +cmd-tip-desc = Spawn a random game tip. diff --git a/Resources/Locale/en-US/commands/toolshed-commands.ftl b/Resources/Locale/en-US/commands/toolshed-commands.ftl index 04f6aa08fa..e2536f6781 100644 --- a/Resources/Locale/en-US/commands/toolshed-commands.ftl +++ b/Resources/Locale/en-US/commands/toolshed-commands.ftl @@ -80,3 +80,5 @@ command-description-mind-control = Assumes control of an entity with the given player. command-description-addaccesslog = Adds an access log to this entity. Do note that this bypasses the log's default limit and pause check. +command-description-stationevent-simulate = + Simulates N number of rounds in which events will occur and prints the occurrences of every event after. diff --git a/Resources/Locale/en-US/communications/communications-console-component.ftl b/Resources/Locale/en-US/communications/communications-console-component.ftl index f7cc87cb8b..bead43df28 100644 --- a/Resources/Locale/en-US/communications/communications-console-component.ftl +++ b/Resources/Locale/en-US/communications/communications-console-component.ftl @@ -1,4 +1,4 @@ -# User interface +# User interface comms-console-menu-title = Communications Console comms-console-menu-announcement-placeholder = Announcement text... comms-console-menu-announcement-button = Announce @@ -9,6 +9,7 @@ comms-console-menu-recall-shuttle = Recall emergency shuttle # Popup comms-console-permission-denied = Permission denied comms-console-shuttle-unavailable = Shuttle is currently unavailable +comms-console-message-too-long = Message is too long # Placeholder values comms-console-announcement-sent-by = Sent by diff --git a/Resources/Locale/en-US/components/storage-component.ftl b/Resources/Locale/en-US/components/storage-component.ftl index 29c858891a..e742c83f6a 100644 --- a/Resources/Locale/en-US/components/storage-component.ftl +++ b/Resources/Locale/en-US/components/storage-component.ftl @@ -8,3 +8,5 @@ comp-storage-cant-drop = You can't let go of { THE($entity) }! comp-storage-window-title = Storage Item comp-storage-window-weight = { $weight }/{ $maxWeight }, Max Size: {$size} comp-storage-window-slots = Slots: { $itemCount }/{ $maxCount }, Max Size: {$size} +comp-storage-verb-open-storage = Open Storage +comp-storage-verb-close-storage = Close Storage diff --git a/Resources/Locale/en-US/construction/components/machine-part-component.ftl b/Resources/Locale/en-US/construction/components/machine-part-component.ftl new file mode 100644 index 0000000000..0613f50516 --- /dev/null +++ b/Resources/Locale/en-US/construction/components/machine-part-component.ftl @@ -0,0 +1,2 @@ +machine-part-component-on-examine-rating-text = [color=white]Rating:[/color] [color=cyan]{$rating}[/color] +machine-part-component-on-examine-type-text = [color=white]Type:[/color] [color=cyan]{$type}[/color] diff --git a/Resources/Locale/en-US/construction/ui/construction-menu.ftl b/Resources/Locale/en-US/construction/ui/construction-menu.ftl index f4b7f3559a..82ebc01bc9 100644 --- a/Resources/Locale/en-US/construction/ui/construction-menu.ftl +++ b/Resources/Locale/en-US/construction/ui/construction-menu.ftl @@ -4,5 +4,4 @@ construction-menu-title = Construction construction-menu-place-ghost = Place construction ghost construction-menu-clear-all = Clear All construction-menu-eraser-mode = Eraser Mode -construction-menu-title = Construction -construction-menu-craft = Craft \ No newline at end of file +construction-menu-craft = Craft diff --git a/Resources/Locale/en-US/containers/containers.ftl b/Resources/Locale/en-US/containers/containers.ftl index ab011f64f8..d96383305a 100644 --- a/Resources/Locale/en-US/containers/containers.ftl +++ b/Resources/Locale/en-US/containers/containers.ftl @@ -1,2 +1,5 @@ container-verb-text-enter = Enter container-verb-text-empty = Empty + +## missed +container-thrown-missed = Missed! \ No newline at end of file diff --git a/Resources/Locale/en-US/cuffs/components/handcuff-component.ftl b/Resources/Locale/en-US/cuffs/components/handcuff-component.ftl index 16447f4251..1f8a895164 100644 --- a/Resources/Locale/en-US/cuffs/components/handcuff-component.ftl +++ b/Resources/Locale/en-US/cuffs/components/handcuff-component.ftl @@ -3,6 +3,7 @@ handcuff-component-cuffs-broken-error = The restraints are broken! handcuff-component-target-has-no-hands-error = {$targetName} has no hands! handcuff-component-target-has-no-free-hands-error = {$targetName} has no free hands! handcuff-component-too-far-away-error = You are too far away to use the restraints! +handcuff-component-target-flying-error = You cannot reach {$targetName}'s hands! handcuff-component-start-cuffing-observer = {$user} starts restraining {$target}! handcuff-component-start-cuffing-target-message = You start restraining {$targetName}. handcuff-component-start-cuffing-by-other-message = {$otherName} starts restraining you! diff --git a/Resources/Locale/en-US/customization/character-requirements.ftl b/Resources/Locale/en-US/customization/character-requirements.ftl index 743ea6432e..d50c2b3966 100644 --- a/Resources/Locale/en-US/customization/character-requirements.ftl +++ b/Resources/Locale/en-US/customization/character-requirements.ftl @@ -134,17 +134,6 @@ character-item-group-requirement = You must {$inverted -> *[other] have {$max} or less } items from the group [color=white]{$group}[/color] -# White Dream -character-sex-requirement = Your sex must {$inverted -> - [true] not be - *[other] be -} a {$sex} -character-gender-requirement = Your pronouns must {$inverted -> - [true] not be - *[other] be -} a {$gender} -# White Dream - ## Whitelist character-whitelist-requirement = You must{$inverted -> diff --git a/Resources/Locale/en-US/damage/damage-groups.ftl b/Resources/Locale/en-US/damage/damage-groups.ftl new file mode 100644 index 0000000000..cfaf866e34 --- /dev/null +++ b/Resources/Locale/en-US/damage/damage-groups.ftl @@ -0,0 +1,6 @@ +damage-group-brute = Brute +damage-group-burn = Burn +damage-group-airloss = Airloss +damage-group-toxin = Toxin +damage-group-genetic = Genetic +damage-group-immaterial = Immaterial diff --git a/Resources/Locale/en-US/damage/damage-types.ftl b/Resources/Locale/en-US/damage/damage-types.ftl new file mode 100644 index 0000000000..3b6256864f --- /dev/null +++ b/Resources/Locale/en-US/damage/damage-types.ftl @@ -0,0 +1,14 @@ +damage-type-asphyxiation = Asphyxiation +damage-type-bloodloss = Bloodloss +damage-type-blunt = Blunt +damage-type-cellular = Cellular +damage-type-caustic = Caustic +damage-type-cold = Cold +damage-type-heat = Heat +damage-type-piercing = Piercing +damage-type-poison = Poison +damage-type-radiation = Radiation +damage-type-shock = Shock +damage-type-slash = Slash +damage-type-structural = Structural +damage-type-holy = Holy diff --git a/Resources/Locale/en-US/deltav/cartridge-loader/cartridges.ftl b/Resources/Locale/en-US/deltav/cartridge-loader/cartridges.ftl index 9b4c59d001..ede1a36b8e 100644 --- a/Resources/Locale/en-US/deltav/cartridge-loader/cartridges.ftl +++ b/Resources/Locale/en-US/deltav/cartridge-loader/cartridges.ftl @@ -118,3 +118,16 @@ crime-assist-sophont-explanation = A sophont is described as any entity with the • [bold]Sentience[/bold]: the entity has the capacity to process an emotion or lack thereof, or at a minimum the ability to recognise its own pain. • [bold]Self-awareness[/bold]: the entity is capable of altering its behaviour in a reasonable fashion as a result of stimuli, or at a minimum is capable of recognising its own sapience and sentience. Any sophont is considered a legal person, regardless of origin or prior cognitive status. Much like any other intelligent organic, a sophont may press charges against crew and be tried for crimes. + +mail-metrics-program-name = MailMetrics +mail-metrics-header = Income from Mail Deliveries +mail-metrics-opened = Earnings (Opened) +mail-metrics-expired = Losses (Expired) +mail-metrics-damaged = Losses (Damaged) +mail-metrics-tampered = Losses (Tampered) +mail-metrics-unopened = Unopened +mail-metrics-count-header = Packages +mail-metrics-money-header = Spesos +mail-metrics-total = Total +mail-metrics-progress = {$opened} out of {$total} packages opened! +mail-metrics-progress-percent = Success rate: {$successRate}% diff --git a/Resources/Locale/en-US/deltav/escape-menu/options-menu.ftl b/Resources/Locale/en-US/deltav/escape-menu/options-menu.ftl deleted file mode 100644 index 50d55cb76d..0000000000 --- a/Resources/Locale/en-US/deltav/escape-menu/options-menu.ftl +++ /dev/null @@ -1,4 +0,0 @@ -ui-options-tab-deltav = DeltaV -ui-options-general-forknotice = Note: These settings are fork-specific and might not apply on other servers. - -ui-options-no-filters = Disable species vision filters diff --git a/Resources/Locale/en-US/devices/device-network.ftl b/Resources/Locale/en-US/devices/device-network.ftl index d88b1f719d..35b895d18b 100644 --- a/Resources/Locale/en-US/devices/device-network.ftl +++ b/Resources/Locale/en-US/devices/device-network.ftl @@ -7,6 +7,8 @@ device-frequency-prototype-name-mailing-units = Mailing Units device-frequency-prototype-name-pdas = PDAs device-frequency-prototype-name-fax = Fax device-frequency-prototype-name-basic-device = Basic Devices +device-frequency-prototype-name-cyborg-control = Cyborg Control +device-frequency-prototype-name-robotics-console = Robotics Console ## camera frequencies device-frequency-prototype-name-surveillance-camera-test = Subnet Test diff --git a/Resources/Locale/en-US/devices/network-configurator.ftl b/Resources/Locale/en-US/devices/network-configurator.ftl index e1bcbc4c94..cd4955ed36 100644 --- a/Resources/Locale/en-US/devices/network-configurator.ftl +++ b/Resources/Locale/en-US/devices/network-configurator.ftl @@ -41,5 +41,5 @@ network-configurator-examine-current-mode = Current mode: {$mode} network-configurator-examine-switch-modes = Press {$key} to switch modes # item status -network-configurator-item-status-label = Current mode: {$mode} -{$keybinding} to switch mode +network-configurator-item-status-label = Mode: {$mode} + Switch: {$keybinding} diff --git a/Resources/Locale/en-US/disposal/tube/components/disposal-router-component.ftl b/Resources/Locale/en-US/disposal/tube/components/disposal-router-component.ftl index 64fbfdf66f..4fe24b7853 100644 --- a/Resources/Locale/en-US/disposal/tube/components/disposal-router-component.ftl +++ b/Resources/Locale/en-US/disposal/tube/components/disposal-router-component.ftl @@ -4,7 +4,3 @@ disposal-router-window-title = Disposal Router disposal-router-window-tags-label = Tags: disposal-router-window-tag-input-tooltip = A comma separated list of tags disposal-router-window-tag-input-confirm-button = Confirm - -## ConfigureVerb - -configure-verb-get-data-text = Open Configuration diff --git a/Resources/Locale/en-US/disposal/tube/components/disposal-tagger-window.ftl b/Resources/Locale/en-US/disposal/tube/components/disposal-tagger-window.ftl index dc4b40fc7f..55523c4b95 100644 --- a/Resources/Locale/en-US/disposal/tube/components/disposal-tagger-window.ftl +++ b/Resources/Locale/en-US/disposal/tube/components/disposal-tagger-window.ftl @@ -1,6 +1,3 @@ disposal-tagger-window-title = Disposal Tagger disposal-tagger-window-tag-input-label = Tag: disposal-tagger-window-tag-confirm-button = Confirm - -## ConfigureVerb -configure-verb-get-data-text = Open Configuration diff --git a/Resources/Locale/en-US/disposal/unit/components/disposal-unit-component.ftl b/Resources/Locale/en-US/disposal/unit/components/disposal-unit-component.ftl index 288db53668..2b23ee9a4a 100644 --- a/Resources/Locale/en-US/disposal/unit/components/disposal-unit-component.ftl +++ b/Resources/Locale/en-US/disposal/unit/components/disposal-unit-component.ftl @@ -18,9 +18,6 @@ disposal-eject-verb-get-data-text = Eject contents ## No hands disposal-unit-no-hands = You don't have hands! -## missed -disposal-unit-thrown-missed = Missed! - # state disposal-unit-state-Ready = Ready # Yes I want it to always say Pressurizing diff --git a/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl b/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl index 2eab749c35..207a8ae0a3 100644 --- a/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl +++ b/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl @@ -52,6 +52,7 @@ ui-options-fancy-speech = Show names in speech bubbles ui-options-fancy-name-background = Add background to speech bubble names ui-options-enable-color-name = Add colors to character names ui-options-colorblind-friendly = Colorblind friendly mode +ui-options-no-filters = Disable species vision filters ui-options-reduced-motion = Reduce motion of visual effects ui-options-chat-window-opacity = Chat window opacity ui-options-chat-window-opacity-percent = { TOSTRING($opacity, "P0") } @@ -87,6 +88,10 @@ ui-options-vp-integer-scaling-tooltip = If this option is enabled, the viewport at specific resolutions. While this results in crisp textures, it also often means that black bars appear at the top/bottom of the screen or that part of the viewport is not visible. +ui-options-vp-vertical-fit = Vertical viewport fitting +ui-options-vp-vertical-fit-tooltip = When enabled, the main viewport will ignore the horizontal axis entirely when + fitting to your screen. If your screen is smaller than the viewport, then this + will cause the viewport to be cut off on the horizontal axis. ui-options-vp-low-res = Low-resolution viewport ui-options-parallax-low-quality = Low-quality Parallax (background) ui-options-fps-counter = Show FPS counter @@ -115,6 +120,7 @@ ui-options-header-general = General ui-options-hotkey-keymap = Use US QWERTY Keys ui-options-hotkey-toggle-walk = Toggle Speed +ui-options-hotkey-default-walk = Walk by default ui-options-function-move-up = Move Up ui-options-function-move-left = Move Left @@ -145,6 +151,7 @@ ui-options-function-rotate-stored-item = Rotate stored item ui-options-function-offer-item = Offer something ui-options-function-save-item-location = Save item location ui-options-function-toggle-standing = Toggle standing +ui-options-function-toggle-crawling-under = Toggle crawling under furniture ui-options-static-storage-ui = Lock storage window to hotbar ui-options-function-smart-equip-backpack = Smart-equip to backpack @@ -175,6 +182,7 @@ ui-options-function-open-crafting-menu = Open crafting menu ui-options-function-open-inventory-menu = Open inventory ui-options-function-open-a-help = Open admin help ui-options-function-open-abilities-menu = Open action menu +ui-options-function-toggle-round-end-summary-window = Toggle round end summary window ui-options-function-open-entity-spawn-window = Open entity spawn menu ui-options-function-open-sandbox-window = Open sandbox menu ui-options-function-open-tile-spawn-window = Open tile spawn menu @@ -198,7 +206,6 @@ ui-options-function-editor-rotate-object = Rotate ui-options-function-editor-flip-object = Flip ui-options-function-editor-copy-object = Copy -ui-options-function-open-abilities-menu = Open action menu ui-options-function-show-debug-console = Open Console ui-options-function-show-debug-monitors = Show Debug Monitors ui-options-function-inspect-entity = Inspect Entity @@ -268,3 +275,8 @@ ui-options-net-pvs-leave-tooltip = This limits the rate at which the client will ## Toggle window console command cmd-options-desc = Opens options menu, optionally with a specific tab selected. cmd-options-help = Usage: options [tab] + +## Combat Options +ui-options-function-look-up = Look up/Take aim +ui-options-function-auto-get-up = Automatically get up after falling +ui-options-function-hold-look-up = Hold down the key to aim diff --git a/Resources/Locale/en-US/fax/fax.ftl b/Resources/Locale/en-US/fax/fax.ftl index 1f1881a05d..412f3d7f43 100644 --- a/Resources/Locale/en-US/fax/fax.ftl +++ b/Resources/Locale/en-US/fax/fax.ftl @@ -3,6 +3,8 @@ fax-machine-popup-received = Received correspondence from { $from }. fax-machine-popup-name-long = Fax name is too long fax-machine-popup-name-exist = Fax with same name already exist in network fax-machine-popup-name-set = Fax name has been updated +fax-machine-popup-error = ERROR - jam in paper feed +fax-machine-popup-copy-error = ERROR - unable to copy! fax-machine-dialog-rename = Rename fax-machine-dialog-field-name = Name diff --git a/Resources/Locale/en-US/flavors/flavor-profiles.ftl b/Resources/Locale/en-US/flavors/flavor-profiles.ftl index 61567d8695..39b185bd02 100644 --- a/Resources/Locale/en-US/flavors/flavor-profiles.ftl +++ b/Resources/Locale/en-US/flavors/flavor-profiles.ftl @@ -168,6 +168,9 @@ flavor-complex-light = like a light gone out flavor-complex-profits = like profits flavor-complex-fishops = like the dreaded fishops flavor-complex-violets = like violets +flavor-complex-pyrotton = like a burning mouth +flavor-complex-mothballs = like mothballs +flavor-complex-paint-thinner = like paint thinner # Drink-specific flavors. @@ -240,6 +243,12 @@ flavor-complex-atomic-cola = like hoarding bottle caps flavor-complex-cuba-libre = like spiked cola flavor-complex-gin-tonic = like spiked lemon-lime soda flavor-complex-screwdriver = like spiked orange juice +flavor-complex-vodka-red-bool = like a heart attack +flavor-complex-irish-bool = caffine and Ireland +flavor-complex-xeno-basher = like killing bugs +flavor-complex-budget-insuls-drink = like door hacking +flavor-complex-watermelon-wakeup = like a sweet wakeup call +flavor-complex-rubberneck = like synthetics flavor-complex-irish-car-bomb = like a spiked cola float flavor-complex-themartinez = like violets and lemon vodka flavor-complex-cogchamp = like brass diff --git a/Resources/Locale/en-US/flight/flight_system.ftl b/Resources/Locale/en-US/flight/flight_system.ftl new file mode 100644 index 0000000000..3558ab9dc8 --- /dev/null +++ b/Resources/Locale/en-US/flight/flight_system.ftl @@ -0,0 +1,3 @@ +no-flight-while-restrained = You can't fly right now. +no-flight-while-zombified = You can't use your wings right now. +no-flight-while-lying = You can't fly right now. \ No newline at end of file diff --git a/Resources/Locale/en-US/fluids/components/absorbent-component.ftl b/Resources/Locale/en-US/fluids/components/absorbent-component.ftl index 670ac0a36a..8a4d37023f 100644 --- a/Resources/Locale/en-US/fluids/components/absorbent-component.ftl +++ b/Resources/Locale/en-US/fluids/components/absorbent-component.ftl @@ -1,8 +1,8 @@ mopping-system-target-container-empty = { CAPITALIZE(THE($target)) } is empty! mopping-system-target-container-empty-water = { CAPITALIZE(THE($target)) } has no water! -mopping-system-puddle-space = { THE($used) } is full of water -mopping-system-puddle-evaporate = { THE($target) } is evaporating -mopping-system-no-water = { THE($used) } has no water! +mopping-system-puddle-space = { CAPITALIZE(THE($used)) } is full of water +mopping-system-puddle-evaporate = { CAPITALIZE(THE($target)) } is evaporating +mopping-system-no-water = { CAPITALIZE(THE($used)) } has no water! -mopping-system-full = { THE($used) } is full! -mopping-system-empty = { THE($used) } is empty! +mopping-system-full = { CAPITALIZE(THE($used)) } is full! +mopping-system-empty = { CAPITALIZE(THE($used)) } is empty! diff --git a/Resources/Locale/en-US/game-ticking/game-presets/preset-revolutionary.ftl b/Resources/Locale/en-US/game-ticking/game-presets/preset-revolutionary.ftl index 5fb1d40b3d..15b53cf14b 100644 --- a/Resources/Locale/en-US/game-ticking/game-presets/preset-revolutionary.ftl +++ b/Resources/Locale/en-US/game-ticking/game-presets/preset-revolutionary.ftl @@ -5,31 +5,31 @@ roles-antag-rev-head-objective = Your objective is to take over the station by c head-rev-role-greeting = You are a Head Revolutionary. - You are tasked with removing all of Command from station via death or exilement. + You are tasked with removing all of Command from station via death, exilement or imprisonment. The Syndicate has sponsored you with a flash that converts the crew to your side. Beware, this won't work on Security, Command, or those wearing sunglasses. Viva la revolución! head-rev-briefing = Use flashes to convert people to your cause. - Kill all heads to take over the station. + Get rid of all heads to take over the station. head-rev-break-mindshield = The Mindshield was destroyed! ## Rev roles-antag-rev-name = Revolutionary -roles-antag-rev-objective = Your objective is to ensure the safety and follow the orders of the Head Revolutionaries as well as killing all Command staff on station. +roles-antag-rev-objective = Your objective is to ensure the safety and follow the orders of the Head Revolutionaries as well as getting rid of all Command staff on station. rev-break-control = {$name} has remembered their true allegiance! rev-role-greeting = You are a Revolutionary. You are tasked with taking over the station and protecting the Head Revolutionaries. - Eliminate all of the Command staff. + Get rid of all of the Command staff. Viva la revolución! -rev-briefing = Help your head revolutionaries kill every head to take over the station. +rev-briefing = Help your head revolutionaries get rid of every head to take over the station. ## General @@ -40,9 +40,7 @@ rev-not-enough-ready-players = Not enough players readied up for the game. There rev-no-one-ready = No players readied up! Can't start a Revolution. rev-no-heads = There were no Head Revolutionaries to be selected. Can't start a Revolution. -rev-all-heads-dead = All the heads are dead, now finish up the rest of the crew! - -rev-won = The Head Revs survived and killed all of Command. +rev-won = The Head Revs survived and successfully seized control of the station. rev-lost = Command survived and killed all of the Head Revs. diff --git a/Resources/Locale/en-US/game-ticking/game-presets/preset-traitor.ftl b/Resources/Locale/en-US/game-ticking/game-presets/preset-traitor.ftl index 724b752fbb..e92676a216 100644 --- a/Resources/Locale/en-US/game-ticking/game-presets/preset-traitor.ftl +++ b/Resources/Locale/en-US/game-ticking/game-presets/preset-traitor.ftl @@ -4,6 +4,7 @@ traitor-round-end-codewords = The codewords were: [color=White]{$codewords}[/col traitor-round-end-agent-name = traitor objective-issuer-syndicate = [color=crimson]The Syndicate[/color] +objective-issuer-unknown = Unknown # Shown at the end of a round of Traitor @@ -23,7 +24,7 @@ traitor-death-match-end-round-description-entry = {$originalName}'s PDA, with {$ # TraitorRole traitor-role-greeting = - You are a syndicate agent. + You are an agent sent by {$corporation} on behalf of The Syndicate. Your objectives and codewords are listed in the character menu. Use the uplink loaded into your PDA to buy the tools you'll need for this mission. Death to Nanotrasen! diff --git a/Resources/Locale/en-US/game-ticking/game-rules/rule-terminator.ftl b/Resources/Locale/en-US/game-ticking/game-rules/rule-terminator.ftl deleted file mode 100644 index 2e16743177..0000000000 --- a/Resources/Locale/en-US/game-ticking/game-rules/rule-terminator.ftl +++ /dev/null @@ -1,18 +0,0 @@ -terminator-round-end-agent-name = nt-800 - -objective-issuer-susnet = [color=#d64119]Susnet[/color] - -terminator-role-greeting = - You are the exterminator, a relentless assassin sent into the past to secure our future. - We need you to eliminate {$target}, {$job}. - Use any means at your disposal to complete the mission. - Glory to Cybersun. - -# DeltaV - paradox anomaly -terminator-role-briefing = - You are a bluespace anomaly that looks and sound identical to someone from this reality. - Kill them and assume their identity, or talk it out and become friends. - Your objectives support either playstyle (and you obviously can't do both). - -terminator-endoskeleton-gib-popup = All the battered flesh falls apart, revealing a titanium endoskeleton! -terminator-endoskeleton-burn-popup = The seared flesh is burned to a crisp, revealing a titanium endoskeleton! diff --git a/Resources/Locale/en-US/geras/geras.ftl b/Resources/Locale/en-US/geras/geras.ftl new file mode 100644 index 0000000000..3cd3f101ff --- /dev/null +++ b/Resources/Locale/en-US/geras/geras.ftl @@ -0,0 +1,2 @@ +geras-popup-morph-message-user = You shift and morph into a small version of you! +geras-popup-morph-message-others = {CAPITALIZE(THE($entity))} shifts and morphs into a blob of slime! diff --git a/Resources/Locale/en-US/ghost/ghost-gui.ftl b/Resources/Locale/en-US/ghost/ghost-gui.ftl index 909513e96c..1d793f3941 100644 --- a/Resources/Locale/en-US/ghost/ghost-gui.ftl +++ b/Resources/Locale/en-US/ghost/ghost-gui.ftl @@ -10,8 +10,20 @@ ghost-gui-toggle-hearing-popup-off = You can now only hear radio and nearby mess ghost-target-window-title = Ghost Warp ghost-target-window-current-button = Warp: {$name} +ghost-target-window-warp-to-most-followed = Warp to Most Followed ghost-roles-window-title = Ghost Roles +ghost-roles-window-join-raffle-button = Join raffle +ghost-roles-window-raffle-in-progress-button = + Join raffle ({$time} left, { $players -> + [one] {$players} player + *[other] {$players} players + }) +ghost-roles-window-leave-raffle-button = + Leave raffle ({$time} left, { $players -> + [one] {$players} player + *[other] {$players} players + }) ghost-roles-window-request-role-button = Request ghost-roles-window-request-role-button-timer = Request ({$time}s) ghost-roles-window-follow-role-button = Follow @@ -20,3 +32,4 @@ ghost-roles-window-rules-footer = The button will enable after {$time} seconds ( ghost-return-to-body-title = Return to Body ghost-return-to-body-text = You are being revived! Return to your body? +ghost-gui-return-to-round-button = Return to round \ No newline at end of file diff --git a/Resources/Locale/en-US/ghost/ghost-respawn.ftl b/Resources/Locale/en-US/ghost/ghost-respawn.ftl new file mode 100644 index 0000000000..a97fc68952 --- /dev/null +++ b/Resources/Locale/en-US/ghost/ghost-respawn.ftl @@ -0,0 +1,15 @@ +ghost-respawn-time-left = Please wait {$time} {$time -> + [one] minute + *[other] minutes +} before trying to respawn. + +ghost-respawn-max-players = Cannot respawn right now. There should be fewer than {$players} players. +ghost-respawn-window-title = Respawn rules +ghost-respawn-window-rules-footer = By respawning, you [color=#ff7700]agree[/color] [color=#ff0000]not to use any knowledge gained as your previous charactrer[/color]. Violation of this rule may constitute a server ban. Please, read the server rules for more details. +ghost-respawn-same-character = You cannot respawn as the same character. Please select a different one in character preferences. + +ghost-respawn-log-character-almost-same = Player {$player} { $try -> + [true] joined + *[false] tried to join +} the round after respawning with a similar name. Previous name: { $oldName }, current: { $newName }. +ghost-respawn-log-return-to-lobby = { $userName } returned to the lobby. 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 9260db903f..4e6ec1f188 100644 --- a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl @@ -4,17 +4,6 @@ ghost-role-component-default-rules = All normal rules apply unless an administra You are allowed to remember knowledge about the game in general, such as how to cook, how to use objects, etc. You are absolutely [color=red]NOT[/color] allowed to remember, say, the name, appearance, etc. of your previous character. -# Delta V soft antag rule -deltav-ghost-role-information-softantag-rules = You are allowed to attack the crew without provocation. - You are allowed to coexist with the crew. - The crew is allowed to kill you without warning. - -# Delta V salvage antag rule -deltav-ghost-role-information-salvageantag-rules = You are a salvage mob. - You are allowed to attack salvagers without provocation. DO NOT GIB THEIR CORPSES! - You are allowed to attack the salvage shuttle. - You are NOT allowed to go to the station. If the salvagers go to the station, you can't follow them. - ghost-role-information-mouse-name = Mouse ghost-role-information-mouse-description = A hungry and mischievous mouse. @@ -40,16 +29,13 @@ ghost-role-information-angry-slimes-description = Everyone around you irritates ghost-role-information-smile-name = Smile the Slime ghost-role-information-smile-description = The sweetest creature in the world. Smile Slime! -ghost-role-information-smile-rules = You are a crew-aligned pet. You can defend yourself and even attack threats to the station, but you generally should not attack the station's crew nor destroy their property. ghost-role-information-punpun-name = Pun Pun ghost-role-information-punpun-description = An honorable member of the monkey society in charge of the bar and helping the bartenders in any way he can. ghost-role-information-xeno-name = Xeno ghost-role-information-xeno-description = You are a xeno, co-operate with your hive to kill all crewmembers! -ghost-role-information-xeno-rules = You are a xeno. - Your objective is to cooperate with your fellow xenos and kill all the crew. - Strike fast, make them fear the shadows. +ghost-role-information-xeno-rules = You are an antagonist, smack, slash, and wack! ghost-role-information-revenant-name = Revenant ghost-role-information-revenant-description = You are a Revenant. Use your powers to harvest souls and unleash chaos upon the crew. Unlock new abilities with the essence you harvest. @@ -161,7 +147,7 @@ ghost-role-information-skeleton-biker-name = Skeleton Biker ghost-role-information-skeleton-biker-description = Ride around on your sweet ride. ghost-role-information-closet-skeleton-name = Closet Skeleton -ghost-role-information-closet-skeleton-description = You are a closet skeleton! You are a primordial force of chaos with no allegiance! You can either join the crew and use your skeletal antics to help them, or be a a prankster, and hinder their efforts! +ghost-role-information-closet-skeleton-description = Wreak havoc! You are a primordial force with no allegiance. Live happily with the crew or wage sweet skeletal war. ghost-role-information-onestar-mecha-name = Onestar Mecha ghost-role-information-onestar-mecha-description = You are an experimental mecha created by who-knows-what, all you know is that you have weapons and you detect fleshy moving targets nearby... @@ -226,14 +212,6 @@ ghost-role-information-BreadDog-name = BreadDog ghost-role-information-BreadDog-description = You are the chef's favorite child. You're a living bread dog. ghost-role-information-BreadDog-rules = You're an edible dog made of bread. Your task is to find your place in this world where everything wants to eat you. -ghost-role-information-Shiva-name = Shiva -ghost-role-information-Shiva-description = Shiva, the stations first defender. Help the Head of Security in their work -ghost-role-information-Shiva-rules = Protect security staff and the crew from danger. Stay with Security staff or around the Security department, try to disable criminals and not kill them if the situation allows for it. - -ghost-role-information-exterminator-name = Exterminator -ghost-role-information-exterminator-description = You been been sent back in time to terminate a target with high importance to the future. -ghost-role-information-exterminator-rules = You are an antagonist and may kill anyone that tries to stop you, but killing the target is always your top priority. - ghost-role-information-space-ninja-name = Space Ninja ghost-role-information-space-ninja-description = Use stealth and deception to sabotage the station. ghost-role-information-space-ninja-rules = You are an elite mercenary of the Spider Clan. You aren't required to follow your objectives, yet your NINJA HONOR demands you try. @@ -246,6 +224,30 @@ ghost-role-information-syndicate-monkey-reinforcement-name = Syndicate Monkey Ag ghost-role-information-syndicate-monkey-reinforcement-description = Someone needs reinforcements. You, a trained monkey, will help them. ghost-role-information-syndicate-monkey-reinforcement-rules = Normal syndicate antagonist rules apply. Work with whoever called you in, and don't harm them. +ghost-role-information-lost-cargo-technical-name = Lost Cargo Technician +ghost-role-information-lost-cargo-technical-description = Something went wrong and your cargo shuttle with the goods was beamed into the sector to another station. +ghost-role-information-lost-cargo-technical-rules = You're a regular cargo technician from another station. Do what regular cargo do. + +ghost-role-information-clown-troupe-name = Space Clown +ghost-role-information-clown-troupe-description = You and your troupe have come to cheer up this station with your best jokes. Honk! +ghost-role-information-clown-troupe-rules = Normal station crew rules apply. + +ghost-role-information-traveling-chef-name = Traveling Chef +ghost-role-information-traveling-chef-description = You are a chef on a traveling shuttle of exotic cuisine. Delight the station with delicious food! +ghost-role-information-traveling-chef-rules = Normal station crew rules apply. + +ghost-role-information-disaster-victim-name = Disaster Victim +ghost-role-information-disaster-victim-description = You were rescued in an escape pod from another station that suffered a terrible fate. Perhaps you will be found and rescued. +ghost-role-information-disaster-victim-rules = Normal station crew rules apply. + +ghost-role-information-syndie-disaster-victim-name = Syndie Disaster Victim +ghost-role-information-syndie-disaster-victim-description = You're a regular passenger from a syndicate station. Unfortunately, an evacuation pod has thrown you into an enemy sector..... +ghost-role-information-syndie-disaster-victim-rules = Normal station crew rules apply. You are NOT an antagonist! + +ghost-role-information-syndicate-kobold-reinforcement-name = Syndicate Kobold Agent +ghost-role-information-syndicate-kobold-reinforcement-description = Someone needs reinforcements. You, a trained kobold, will help them. +ghost-role-information-syndicate-kobold-reinforcement-rules = Normal syndicate antagonist rules apply. Work with whoever called you in, and don't harm them. + ghost-role-information-artifact-name = Sentient Artifact ghost-role-information-artifact-description = Enact your eldritch whims. diff --git a/Resources/Locale/en-US/ghost/roles/ghostrole-spawner-verb-selectable.ftl b/Resources/Locale/en-US/ghost/roles/ghostrole-spawner-verb-selectable.ftl new file mode 100644 index 0000000000..9d649a5e07 --- /dev/null +++ b/Resources/Locale/en-US/ghost/roles/ghostrole-spawner-verb-selectable.ftl @@ -0,0 +1 @@ +ghostrole-spawner-select = Selected: {$mode} \ No newline at end of file diff --git a/Resources/Locale/en-US/guidebook/chemistry/conditions.ftl b/Resources/Locale/en-US/guidebook/chemistry/conditions.ftl index 807b5591a8..6cbfc13a79 100644 --- a/Resources/Locale/en-US/guidebook/chemistry/conditions.ftl +++ b/Resources/Locale/en-US/guidebook/chemistry/conditions.ftl @@ -1,4 +1,4 @@ -reagent-effect-condition-guidebook-total-damage = +reagent-effect-condition-guidebook-total-damage = { $max -> [2147483648] it has at least {NATURALFIXED($min, 2)} total damage *[other] { $min -> @@ -7,6 +7,15 @@ } } +reagent-effect-condition-guidebook-total-hunger = + { $max -> + [2147483648] the target has at least {NATURALFIXED($min, 2)} total hunger + *[other] { $min -> + [0] the target has at most {NATURALFIXED($max, 2)} total hunger + *[other] the target has between {NATURALFIXED($min, 2)} and {NATURALFIXED($max, 2)} total hunger + } + } + reagent-effect-condition-guidebook-reagent-threshold = { $max -> [2147483648] there's at least {NATURALFIXED($min, 2)}u of {$reagent} @@ -48,3 +57,5 @@ reagent-effect-condition-guidebook-has-tag = [true] does not have *[false] has } the tag {$tag} + +reagent-effect-condition-guidebook-this-reagent = this reagent diff --git a/Resources/Locale/en-US/guidebook/chemistry/effects.ftl b/Resources/Locale/en-US/guidebook/chemistry/effects.ftl index db2f3816f6..9da6c0c0ae 100644 --- a/Resources/Locale/en-US/guidebook/chemistry/effects.ftl +++ b/Resources/Locale/en-US/guidebook/chemistry/effects.ftl @@ -43,7 +43,7 @@ reagent-effect-guidebook-foam-area-reaction-effect = *[other] create } large quantities of foam -reagent-effect-guidebook-foam-area-reaction-effect = +reagent-effect-guidebook-smoke-area-reaction-effect = { $chance -> [1] Creates *[other] create @@ -339,6 +339,12 @@ reagent-effect-guidebook-innoculate-zombie-infection = *[other] cure } an ongoing zombie infection, and provides immunity to future infections +reagent-effect-guidebook-reduce-rotting = + { $chance -> + [1] Regenerates + *[other] regenerate + } {NATURALFIXED($time, 3)} {MANY("second", $time)} of rotting + reagent-effect-guidebook-missing = { $chance -> [1] Causes @@ -361,4 +367,11 @@ reagent-effect-guidebook-chem-reroll-psionic = { $chance -> [1] Allows *[other] allow - } a chance to get a different psionic power \ No newline at end of file + } a chance to get a different psionic power + +reagent-effect-guidebook-add-moodlet = + modifies mood by {$amount} + { $timeout -> + [0] indefinitely + *[other] for {$timeout} seconds + } \ No newline at end of file diff --git a/Resources/Locale/en-US/guidebook/food.ftl b/Resources/Locale/en-US/guidebook/food.ftl new file mode 100644 index 0000000000..bd4fa03251 --- /dev/null +++ b/Resources/Locale/en-US/guidebook/food.ftl @@ -0,0 +1,16 @@ +guidebook-food-name = [bold][color={$color}]{CAPITALIZE($name)}[/color][/bold] +guidebook-food-unknown-proto = Unknown prototype +guidebook-food-sources-header = Sources +guidebook-food-sources-ent-wrapper = {$name} +guidebook-food-reagents-header = Chemical composition + +guidebook-food-processing-butchering = Butcher +guidebook-food-processing-slicing = Slice +guidebook-food-processing-cooking = Microwave for {$time}s +guidebook-food-processing-reaction = Mix + +guidebook-food-processing-recipe = {$ingredients} +guidebook-food-ingredient-solid = add {$amount} {$name} +guidebook-food-ingredient-liquid = add {$amount}u {$name} + +guidebook-food-output = {$name} ({$number}) diff --git a/Resources/Locale/en-US/guidebook/guides.ftl b/Resources/Locale/en-US/guidebook/guides.ftl index 968d3b2003..e807bcad9d 100644 --- a/Resources/Locale/en-US/guidebook/guides.ftl +++ b/Resources/Locale/en-US/guidebook/guides.ftl @@ -11,7 +11,7 @@ guide-entry-access-configurator = Access Configurator guide-entry-power = Power guide-entry-portable-generator = Portable Generators guide-entry-ame = Antimatter Engine (AME) -guide-entry-singularity = Singularity +guide-entry-singularity = Singularity / Tesla guide-entry-teg = Thermo-electric Generator (TEG) guide-entry-rtg = RTG guide-entry-controls = Controls @@ -72,5 +72,4 @@ guide-entry-writing = Writing guide-entry-glossary = Glossary guide-entry-altars-golemancy = Altars and Golemancy -guide-entry-psionics = Psionics guide-entry-reverse-engineering = Reverse Engineering diff --git a/Resources/Locale/en-US/implant/implant.ftl b/Resources/Locale/en-US/implant/implant.ftl index b93d43105a..c3002a73ae 100644 --- a/Resources/Locale/en-US/implant/implant.ftl +++ b/Resources/Locale/en-US/implant/implant.ftl @@ -10,9 +10,10 @@ implanter-component-implant-already = {$target} already has the {$implant}! implanter-draw-text = Draw implanter-inject-text = Inject -implanter-empty-text = None +implanter-empty-text = Empty -implanter-label = Implant: [color=green]{$implantName}[/color] | [color=white]{$modeString}[/color]{$lineBreak}{$implantDescription} +implanter-label = [color=green]{$implantName}[/color] + Mode: [color=white]{$modeString}[/color] implanter-contained-implant-text = [color=green]{$desc}[/color] diff --git a/Resources/Locale/en-US/interaction/interaction-popup-component.ftl b/Resources/Locale/en-US/interaction/interaction-popup-component.ftl index fe30d042c3..7bce6616c5 100644 --- a/Resources/Locale/en-US/interaction/interaction-popup-component.ftl +++ b/Resources/Locale/en-US/interaction/interaction-popup-component.ftl @@ -42,7 +42,6 @@ petting-failure-crab = You reach out to pet {THE($target)}, but {SUBJECT($target petting-failure-dehydrated-carp = You pet {THE($target)} on {POSS-ADJ($target)} dry little head. petting-failure-goat = You reach out to pet {THE($target)}, but {SUBJECT($target)} stubbornly refuses! petting-failure-goose = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} too horrible! -petting-failure-goose = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} too australian! petting-failure-possum = You reach out to pet {THE($target)}, but are met with hisses and snarls! petting-failure-pig = You reach out to pet {THE($target)}, but are met with irritated oinks and squeals! petting-failure-raccoon = You reach out to pet {THE($target)}, but {THE($target)} is busy raccooning around. @@ -69,11 +68,6 @@ petting-failure-cleanbot = You reach out to pet {THE($target)}, but {SUBJECT($ta petting-failure-mimebot = You reach out to pet {THE($target)}, but {SUBJECT($target)} {CONJUGATE-BE($target)} busy miming! petting-failure-medibot = You reach out to pet {THE($target)}, but {POSS-ADJ($target)} syringe nearly stabs your hand! -## Knocking on windows - -# Shown when knocking on a window -comp-window-knock = *knock knock* - ## Rattling fences fence-rattle-success = *rattle* diff --git a/Resources/Locale/en-US/inventory/item-status.ftl b/Resources/Locale/en-US/inventory/item-status.ftl new file mode 100644 index 0000000000..a53ba8be7d --- /dev/null +++ b/Resources/Locale/en-US/inventory/item-status.ftl @@ -0,0 +1 @@ +item-status-not-held = No held item diff --git a/Resources/Locale/en-US/job/job-description.ftl b/Resources/Locale/en-US/job/job-description.ftl index 801e402eae..7c53c220ef 100644 --- a/Resources/Locale/en-US/job/job-description.ftl +++ b/Resources/Locale/en-US/job/job-description.ftl @@ -51,3 +51,4 @@ job-description-senior-engineer = Teach new engineers the basics of the station' job-description-senior-researcher = Teach new scientists the basics of item printing, artifact research and anomalous objects. job-description-senior-physician = Teach new medics the basics of tending to the wounded, chemistry, diagnosing the diseased and disposing of the dead. job-description-senior-officer = Teach new officers the basics of searches, performing arrests, prison times and how to properly shoot a firearm. +job-description-maid = Maintain cleanliness and order on the bridge, assist bridge staff with basic needs, and ensure a professional atmosphere in command areas. diff --git a/Resources/Locale/en-US/job/job-supervisors.ftl b/Resources/Locale/en-US/job/job-supervisors.ftl index 25a49f643e..46321f40dd 100644 --- a/Resources/Locale/en-US/job/job-supervisors.ftl +++ b/Resources/Locale/en-US/job/job-supervisors.ftl @@ -1,4 +1,4 @@ -job-supervisors-centcom = CentCom official +job-supervisors-centcom = Central Command job-supervisors-captain = the captain job-supervisors-hop = the head of personnel job-supervisors-hos = the head of security diff --git a/Resources/Locale/en-US/kitchen/components/microwave-component.ftl b/Resources/Locale/en-US/kitchen/components/microwave-component.ftl index 0603b3c846..12346ee75d 100644 --- a/Resources/Locale/en-US/kitchen/components/microwave-component.ftl +++ b/Resources/Locale/en-US/kitchen/components/microwave-component.ftl @@ -9,6 +9,7 @@ microwave-component-suicide-multi-head-others-message = {$victim} is trying to c microwave-component-suicide-others-message = {$victim} is trying to cook their head! microwave-component-suicide-multi-head-message = You cook your heads! microwave-component-suicide-message = You cook your head! +microwave-component-upgrade-cook-time = cook time microwave-component-interact-full = It's full. microwave-component-interact-item-too-big = { CAPITALIZE(THE($item)) } is too big to fit in the microwave! diff --git a/Resources/Locale/en-US/kitchen/components/reagent-grinder-component.ftl b/Resources/Locale/en-US/kitchen/components/reagent-grinder-component.ftl index 8a3ca9eef8..3495128274 100644 --- a/Resources/Locale/en-US/kitchen/components/reagent-grinder-component.ftl +++ b/Resources/Locale/en-US/kitchen/components/reagent-grinder-component.ftl @@ -4,6 +4,9 @@ reagent-grinder-bound-user-interface-instant-button = INSTANT reagent-grinder-bound-user-interface-cook-time-label = COOK TIME reagent-grinder-component-cannot-put-entity-message = You can't put this in the reagent grinder! +reagent-grinder-component-upgrade-work-time = Work time +reagent-grinder-component-upgrade-storage = Storage + grinder-menu-title = All-In-One Grinder 3000 grinder-menu-grind-button = Grind grinder-menu-juice-button = Juice diff --git a/Resources/Locale/en-US/language/commands.ftl b/Resources/Locale/en-US/language/commands.ftl index 65959e3f28..ccbe2570c9 100644 --- a/Resources/Locale/en-US/language/commands.ftl +++ b/Resources/Locale/en-US/language/commands.ftl @@ -2,10 +2,10 @@ command-list-langs-desc = List languages your current entity can speak at the cu command-list-langs-help = Usage: {$command} command-saylang-desc = Send a message in a specific language. To choose a language, you can use either the name of the language, or its position in the list of languages. -command-saylang-help = Usage: {$command} . Example: {$command} GalacticCommon "Hello World!". Example: {$command} 1 "Hello World!" +command-saylang-help = Usage: {$command} . Example: {$command} TauCetiBasic "Hello World!". Example: {$command} 1 "Hello World!" command-language-select-desc = Select the currently spoken language of your entity. You can use either the name of the language, or its position in the list of languages. -command-language-select-help = Usage: {$command} . Example: {$command} 1. Example: {$command} GalacticCommon +command-language-select-help = Usage: {$command} . Example: {$command} 1. Example: {$command} TauCetiBasic command-language-spoken = Spoken: command-language-understood = Understood: @@ -18,14 +18,14 @@ command-language-invalid-language = The language {$id} does not exist or you can # toolshed command-description-language-add = Adds a new language to the piped entity. The two last arguments indicate whether it should be spoken/understood. Example: 'self language:add "Canilunzt" true true' -command-description-language-rm = Removes a language from the piped entity. Works similarly to language:add. Example: 'self language:rm "GalacticCommon" true true'. +command-description-language-rm = Removes a language from the piped entity. Works similarly to language:add. Example: 'self language:rm "TauCetiBasic" true true'. command-description-language-lsspoken = Lists all languages the entity can speak. Example: 'self language:lsspoken' command-description-language-lsunderstood = Lists all languages the entity can understand. Example: 'self language:lssunderstood' command-description-translator-addlang = Adds a new target language to the piped translator entity. See language:add for details. command-description-translator-rmlang = Removes a target language from the piped translator entity. See language:rm for details. -command-description-translator-addrequired = Adds a new required language to the piped translator entity. Example: 'ent 1234 translator:addrequired "GalacticCommon"' -command-description-translator-rmrequired = Removes a required language from the piped translator entity. Example: 'ent 1234 translator:rmrequired "GalacticCommon"' +command-description-translator-addrequired = Adds a new required language to the piped translator entity. Example: 'ent 1234 translator:addrequired "TauCetiBasic"' +command-description-translator-rmrequired = Removes a required language from the piped translator entity. Example: 'ent 1234 translator:rmrequired "TauCetiBasic"' command-description-translator-lsspoken = Lists all spoken languages for the piped translator entity. Example: 'ent 1234 translator:lsspoken' command-description-translator-lsunderstood = Lists all understood languages for the piped translator entity. Example: 'ent 1234 translator:lssunderstood' command-description-translator-lsrequired = Lists all required languages for the piped translator entity. Example: 'ent 1234 translator:lsrequired' diff --git a/Resources/Locale/en-US/language/languages.ftl b/Resources/Locale/en-US/language/languages.ftl index 68dc80f51d..02527498db 100644 --- a/Resources/Locale/en-US/language/languages.ftl +++ b/Resources/Locale/en-US/language/languages.ftl @@ -1,9 +1,6 @@ language-Universal-name = Universal language-Universal-description = What are you? -language-GalacticCommon-name = Galactic common -language-GalacticCommon-description = The standard Galatic language, most commonly used for inter-species communications and legal work. - language-Bubblish-name = Bubblish language-Bubblish-description = The language of Slimes. Being a mixture of bubbling noises and pops it's very difficult to speak for humans without the use of mechanical aids. @@ -13,14 +10,47 @@ language-RootSpeak-description = The strange whistling-style language spoken by language-Nekomimetic-name = Nekomimetic language-Nekomimetic-description = To the casual observer, this language is an incomprehensible mess of broken Japanese. To the Felinids and Oni, it's somehow comprehensible. -language-Draconic-name = Draconic -language-Draconic-description = The common language of lizard-people, composed of sibilant hisses and rattles. +language-Draconic-name = Sinta'Unathi +language-Draconic-description = + The common language of Moghes - composed of sibilant hisses and rattles. Spoken natively by Unathi. + +language-Azaziba-name = Sinta'Azaziba +language-Azaziba-description = + A language of Moghes consisting of a combination of spoken word and gesticulation. + While waning since Moghes entered the galactic stage - it enjoys popular use by Unathi that never fell to the Hegemony's cultural dominance. language-SolCommon-name = Sol common -language-SolCommon-description = The language common to species from the Sol System. +language-SolCommon-description = + With its roots in Mandarin Chinese - Common evolved as the official language of the Sol Alliance - with officials working to tie it together with a common tongue. + It's spoken by state officials - taught in schools - and spoken by those who either feel a sense of national pride in the Alliance or otherwise fell sway to the culture. + +language-TauCetiBasic-name = Tau-Ceti Basic +language-TauCetiBasic-description = + A spiritual successor of Esperanto, established in 2404 in Tau Ceti by Ceti intellectuals. + Its unique, fully customized alphabet and structure allow it to be spoken even by most alien species. + It's the official language of Tau Ceti and has growing traction in diplomatic circles and Universalists across human space. + +language-Tradeband-name = Tradeband +language-Tradeband-description = + Descended from latin and romance languages of old Earth - Tradeband remains the main tongue of the upper class of humanity. + The language sounds elegant and well structured to most ears. It remains in popular use with traders - diplomats - and those seeking to hold onto a piece of a romantic past. + +language-Freespeak-name = Freespeak +language-Freespeak-description = + A language of renegades and frontiersmen descending from various languages from Earth-- like Hindi, + combined into a multi-rooted jumble that sounds incoherent or even barbarian to non-native speakers. + This language is the only common cultural identity for humans in the frontier. Speaking this language in itself boldly declares the speaker a free spirit. + It is often called 'Gutter' by Alliance citizens. + +language-Elyran-name = Elyran Standard +language-Elyran-description = + Elyran Standard is the official tongue of the Republic of Elyra. Constructed using elements of Farsi - Arabic - and Turkish. + Influence from all three of these languages can be seen throughout its grammar and vocabulary. language-Canilunzt-name = Canilunzt -language-Canilunzt-description = The guttural language spoken and utilized by the inhabitants of the Vazzend system, composed of growls, barks, yaps, and heavy utilization of ears and tail movements. Vulpkanin speak this language with ease. +language-Canilunzt-description = + The guttural language spoken and utilized by the inhabitants of the Vazzend system, + composed of growls, barks, yaps, and heavy utilization of ears and tail movements. Vulpkanin speak this language with ease. language-Moffic-name = Moffic language-Moffic-description = The language of the mothpeople borders on complete unintelligibility. @@ -28,8 +58,14 @@ language-Moffic-description = The language of the mothpeople borders on complete language-RobotTalk-name = RobotTalk language-RobotTalk-description = A language consisting of harsh binary chirps, whistles, hisses, and whines. Organic tongues cannot speak it without aid from special translators. -language-Sign-name = Galactic Sign Language -language-Sign-description = GSL for short, this sign language is prevalent among mute and deaf people. +language-Sign-name = Tau-Ceti Basic Sign Language +language-Sign-description = TCB-SL for short, this sign language is prevalent among mute and deaf people. + +language-ValyrianStandard-name = Valyrian Standard +language-ValyrianStandard-description = + A language descended from eastern european languages of old earth - Valyrian Standard is the commonly spoken tongue of Harpies brought up on their homeworld of Valyrian 4b + It is rarely spoken outside of the worlds of its native speakers, and has in modern times been supplanted by the 'Conlangs of the Sol Alliance. + Its speakers are those who wish to uphold the traditions and beliefs of ancient peoples from before the colonial era. language-Cat-name = Cat language-Cat-description = Meow diff --git a/Resources/Locale/en-US/loadouts/categories.ftl b/Resources/Locale/en-US/loadouts/categories.ftl index 6dde7128d8..ddabf9db13 100644 --- a/Resources/Locale/en-US/loadouts/categories.ftl +++ b/Resources/Locale/en-US/loadouts/categories.ftl @@ -2,12 +2,14 @@ loadout-category-Uncategorized = Uncategorized loadout-category-Accessories = Accessories +loadout-category-Backpacks = Backpacks loadout-category-Eyes = Eyes loadout-category-Hands = Hands loadout-category-Head = Head loadout-category-Items = Items loadout-category-Jobs = Jobs loadout-category-JobsAUncategorized = Uncategorized +loadout-category-JobsCargo = Logistics loadout-category-JobsCommand = Command loadout-category-JobsCommandAUncategorized = Uncategorized loadout-category-JobsCommandCaptain = Captain @@ -17,6 +19,13 @@ loadout-category-JobsCommandHOP = Head of Personnel loadout-category-JobsCommandHOS = Head of Security loadout-category-JobsCommandQM = Logistics Officer loadout-category-JobsCommandRD = Mystagogue +loadout-category-JobsEngineering = Engineering +loadout-category-JobsMedical = Medical +loadout-category-JobsScience = Epistemics +loadout-category-JobsSecurity = Security +loadout-category-JobsService = Service +loadout-category-JobsServiceUncategorized = Uncategorized +loadout-category-JobsServiceBartender = Bartender loadout-category-Mask = Mask loadout-category-Neck = Neck loadout-category-Outer = Outer diff --git a/Resources/Locale/en-US/loadouts/itemgroups.ftl b/Resources/Locale/en-US/loadouts/itemgroups.ftl new file mode 100644 index 0000000000..50f37e7c7a --- /dev/null +++ b/Resources/Locale/en-US/loadouts/itemgroups.ftl @@ -0,0 +1,74 @@ +# This list is sorted Mixed Alphabetically with Generic always being placed first, Departments alphabetically, Items Groups Alphabetically, and Jobs Alphabetically after all Department items +# Generic - Clothing +character-item-group-LoadoutBackpacks = Civilian Backpacks +character-item-group-LoadoutEyes = Civilian Eyewear +character-item-group-LoadoutGloves = Civilian Gloves +character-item-group-LoadoutHead = Civilian Headgear +character-item-group-LoadoutMasks = Civilian Masks +character-item-group-LoadoutNeck = Civilian Neckwear +character-item-group-LoadoutOuter = Civilian Outerwear +character-item-group-LoadoutShoes = Civilian Shoes +character-item-group-LoadoutUniformsCivilian = Civilian Uniforms + +# Generic - Items +character-item-group-LoadoutAirTank = Emergency Air Tanks +character-item-group-LoadoutLighters = Lighters +character-item-group-LoadoutInstrumentsAny = Musical Instruments (Non-Musician) +character-item-group-LoadoutSmokes = Smokeables +character-item-group-LoadoutBoxKits = Survival Kits +character-item-group-LoadoutWritables = Writing Tools + +# Cargo +character-item-group-LoadoutNeckCargo = Logistics Neckwear +character-item-group-LoadoutOuterCargo = Logistics Outerwear +character-item-group-LoadoutShoesCargo = Logistics Shoes + +# Engineering +character-item-group-LoadoutEyesEngineering = Engineering Eyewear +character-item-group-LoadoutHeadEngineering = Engineering Headgear +character-item-group-LoadoutOuterEngineering = Engineering Outerwear +character-item-group-LoadoutUniformsEngineering = Engineering Uniforms + +# Medical +character-item-group-LoadoutEyesMedical = Medical Eyewear +character-item-group-LoadoutGlovesMedical = Medical Gloves +character-item-group-LoadoutHeadMedical = Medical Headgear +character-item-group-LoadoutNeckMedical = Medical Neckwear +character-item-group-LoadoutOuterMedical = Medical Outerwear +character-item-group-LoadoutShoesMedical = Medical Shoes +character-item-group-LoadoutUniformsMedical = Medical Uniforms + +# Security +character-item-group-LoadoutBackSecurity = Security Backpacks +character-item-group-LoadoutBeltSecurity = Security Belts +character-item-group-LoadoutEquipmentSecurity = Security Equipment +character-item-group-LoadoutEyesSecurity = Security Eyewear +character-item-group-LoadoutGlovesSecurity = Security Gloves +character-item-group-LoadoutHeadSecurity = Security Headgear +character-item-group-LoadoutMaskSecurity = Security Masks +character-item-group-LoadoutNeckSecurity = Security Neckwear +character-item-group-LoadoutOuterSecurity = Security Outerwear +character-item-group-LoadoutShoesSecurity = Security Shoes +character-item-group-LoadoutUniformsSecurity = Security Uniforms +character-item-group-LoadoutWeaponSecurity = Security Duty Weapon +character-item-group-LoadoutHoSWeapon = Head of Security's Antique Weapon Collection + +# Service +character-item-group-LoadoutEquipmentService = Service Equipment +character-item-group-LoadoutMaskService = Service Masks +character-item-group-LoadoutNeckService = Service Neckwear +character-item-group-LoadoutOuterService = Service Outerwear +character-item-group-LoadoutShoesService = Service Shoes +character-item-group-LoadoutUniformsService = Service Uniforms + +# Service - Bartender +character-item-group-LoadoutBartenderAmmo = Bartender Ammo +character-item-group-LoadoutBartenderOuterwear = Bartender Outerwear +character-item-group-LoadoutBartenderWeapon = Bartender Weapon + +# Service - Musician +character-item-group-LoadoutMusicianInstruments = Musician Instruments + +# Traits - Languages +character-item-group-TraitsLanguagesBasic = Basic Languages +character-item-group-TraitsAccents = Accents \ No newline at end of file diff --git a/Resources/Locale/en-US/loadouts/jobs/security.ftl b/Resources/Locale/en-US/loadouts/jobs/security.ftl index c3d78d7813..565e295047 100644 --- a/Resources/Locale/en-US/loadouts/jobs/security.ftl +++ b/Resources/Locale/en-US/loadouts/jobs/security.ftl @@ -1,3 +1,20 @@ loadout-description-LoadoutSecurityUniformJumpskirtSenior = A skirt fit for the best of the best. loadout-description-LoadoutSecurityUniformJumpsuitSenior = A suit fit for the best of the best. loadout-description-LoadoutSecurityShoesJackboots = A really nice, heavy, pair of black boots. +# Equipment +loadout-name-LoadoutMagazinePistolSpare = pistol magazine (.35 auto, spare) +loadout-name-LoadoutMagazinePistolNonLethalSpare = pistol magazine (.35 auto rubber, spare) +loadout-name-LoadoutSpeedLoaderMagnumSpare = speed loader (.45 magnum, spare) +loadout-name-LoadoutSpeedLoaderMagnumRubberSpare = speed loader (.45 magnum rubber, spare) + +# Duty Weapons +loadout-name-LoadoutSecurityMk58 = Mk58 (lethal) +loadout-name-LoadoutSecurityMk58NonLethal = Mk58 (non-lethal) +loadout-name-LoadoutSecurityRevolver = Inspector (lethal) +loadout-name-LoadoutSecurityRevolverNonLethal = Inspector (non-lethal) +loadout-name-LoadoutSecurityRevolverDeckard = Deckard (lethal) +loadout-name-LoadoutSecurityRevolverDeckardNonLethal = Deckard (non-lethal) +loadout-name-LoadoutSecurityPistolN1984 = N1984 (lethal) +loadout-name-LoadoutSecurityPistolN1984NonLethal = N1984 (non-lethal) +loadout-name-LoadoutSecurityPistolViper = Viper (lethal) +loadout-name-LoadoutSecurityPistolViperNonLethal = Viper (non-lethal) \ No newline at end of file diff --git a/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl b/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl index c685cc8fb7..1d879fcee9 100644 --- a/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl +++ b/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl @@ -19,6 +19,9 @@ signal-port-description-right = This port is invoked whenever the lever is moved signal-port-name-doorstatus = Door status signal-port-description-doorstatus = This port is invoked with HIGH when the door opens and LOW when the door finishes closing. +signal-port-name-dockstatus = Dock status +signal-port-description-dockstatus = This port is invoked with HIGH when docked and LOW when undocked. + signal-port-name-middle = Middle signal-port-description-middle = This port is invoked whenever the lever is moved to the neutral position. diff --git a/Resources/Locale/en-US/machine/machine.ftl b/Resources/Locale/en-US/machine/machine.ftl index ce8873df6f..2605950516 100644 --- a/Resources/Locale/en-US/machine/machine.ftl +++ b/Resources/Locale/en-US/machine/machine.ftl @@ -13,6 +13,11 @@ machine-part-name-manipulator = Manipulator machine-part-name-matter-bin = Matter Bin machine-part-name-power-cell = Power Cell +upgrade-power-draw = power draw +upgrade-max-charge = max charge +upgrade-power-supply = power supply +upgrade-power-supply-ramping = power ramp rate + two-way-lever-left = push left two-way-lever-right = push right two-way-lever-cant = can't push the lever that way! diff --git a/Resources/Locale/en-US/magic/magic.ftl b/Resources/Locale/en-US/magic/magic.ftl new file mode 100644 index 0000000000..4c8a5fc51d --- /dev/null +++ b/Resources/Locale/en-US/magic/magic.ftl @@ -0,0 +1 @@ +spell-requirements-failed = Missing requirements to cast this spell! diff --git a/Resources/Locale/en-US/mail/commands.ftl b/Resources/Locale/en-US/mail/commands.ftl new file mode 100644 index 0000000000..1f471bb7a5 --- /dev/null +++ b/Resources/Locale/en-US/mail/commands.ftl @@ -0,0 +1,20 @@ +# Mailto +command-mailto-description = Queue a parcel to be delivered to an entity. Example usage: `mailto 1234 5678 false false`. The target container's contents will be transferred to an actual mail parcel. +command-mailto-help = Usage: {$command} [is-fragile: true or false] [is-priority: true or false] [is-large: true or false, optional] +command-mailto-no-mailreceiver = Target recipient entity does not have a {$requiredComponent}. +command-mailto-no-blankmail = The {$blankMail} prototype doesn't exist. Something is very wrong. Contact a programmer. +command-mailto-bogus-mail = {$blankMail} did not have {$requiredMailComponent}. Something is very wrong. Contact a programmer. +command-mailto-invalid-container = Target container entity does not have a {$requiredContainer} container. +command-mailto-unable-to-receive = Target recipient entity was unable to be setup for receiving mail. ID may be missing. +command-mailto-no-teleporter-found = Target recipient entity was unable to be matched to any station's mail teleporter. Recipient may be off-station. +command-mailto-success = Success! Mail parcel has been queued for next teleport in {$timeToTeleport} seconds. + +# Mailnow +command-mailnow = Force all mail teleporters to deliver another round of mail as soon as possible. This will not bypass the undelivered mail limit. +command-mailnow-help = Usage: {$command} +command-mailnow-success = Success! All mail teleporters will be delivering another round of mail soon. + +# Mailtestbulk +command-mailtestbulk = Sends one of each type of parcel to a given mail teleporter. Implicitly calls mailnow. +command-mailtestbulk-help = Usage: {$command} +command-mailtestbulk-success = Success! All mail teleporters will be delivering another round of mail soon. diff --git a/Resources/Locale/en-US/mail/mail.ftl b/Resources/Locale/en-US/mail/mail.ftl new file mode 100644 index 0000000000..5a27737732 --- /dev/null +++ b/Resources/Locale/en-US/mail/mail.ftl @@ -0,0 +1,23 @@ +mail-recipient-mismatch = Recipient name or job does not match. +mail-invalid-access = Recipient name and job match, but access isn't as expected. +mail-locked = The anti-tamper lock hasn't been removed. Tap the recipient's ID. +mail-desc-far = A parcel of mail. You can't make out who it's addressed to from this distance. +mail-desc-close = A parcel of mail addressed to {CAPITALIZE($name)}, {$job}. +mail-desc-fragile = It has a [color=red]red fragile label[/color]. +mail-desc-priority = The anti-tamper lock's [color=yellow]yellow priority tape[/color] is active. Better deliver it on time! +mail-desc-priority-inactive = The anti-tamper lock's [color=#886600]yellow priority tape[/color] is inactive. +mail-unlocked = Anti-tamper system unlocked. +mail-unlocked-by-emag = Anti-tamper system *BZZT*. +mail-unlocked-reward = Anti-tamper system unlocked. {$bounty} spesos have been added to logistics' account. +mail-penalty-lock = ANTI-TAMPER LOCK BROKEN. LOGISTICS BANK ACCOUNT PENALIZED BY {$credits} SPESOS. +mail-penalty-fragile = INTEGRITY COMPROMISED. LOGISTICS BANK ACCOUNT PENALIZED BY {$credits} SPESOS. +mail-penalty-expired = DELIVERY PAST DUE. LOGISTICS BANK ACCOUNT PENALIZED BY {$credits} SPESOS. +mail-item-name-unaddressed = mail +mail-item-name-addressed = mail ({$recipient}) + +mail-large-item-name-unaddressed = package +mail-large-item-name-addressed = package ({$recipient}) +mail-large-desc-far = A large package. +mail-large-desc-close = A large package addressed to {CAPITALIZE($name)}, {$job}. + + diff --git a/Resources/Locale/en-US/markings/Kemonomimi_tails.ftl b/Resources/Locale/en-US/markings/Kemonomimi_tails.ftl new file mode 100644 index 0000000000..303335cd2c --- /dev/null +++ b/Resources/Locale/en-US/markings/Kemonomimi_tails.ftl @@ -0,0 +1,30 @@ +marking-BunnyTail = Bunny Tail +marking-BunnyTail-bunnytail = Tail + +marking-DobleFur = Doble Tail +marking-DobleFur-doblefurtailtone1 = Outer +marking-DobleFur-doblefurtailtone2 = Inner + +marking-FluffyTail = Fluffy Tail +marking-FluffyTail-fluffytail = Tail + +marking-FoxNineTails = Nine Tails +marking-FoxNineTails-foxninetailstone1 = Inner +marking-FoxNineTails-foxninetailstone2 = Outer + +marking-FoxThreeTails = Three Tails +marking-FoxThreeTails-foxthreetailstone1 = Inner +marking-FoxThreeTails-foxthreetailstone2 = Outer + +marking-HorseTailCulty = Culty Horse Tail +marking-HorseTailCulty = Tail + +marking-HorseTailLong = Long Horse Tail +marking-HorseTailLong-horsetaillong = Tail + +marking-SharkTail = Shark Tail +marking-SharkTail-sharktail = Tail + +marking-TasselTail = Tassel Tail +marking-TasselTail-tasseltailtone1 = Inner +marking-TasselTail-tasseltailtone2 = Outer diff --git a/Resources/Locale/en-US/markings/kemonomimi_ears.ftl b/Resources/Locale/en-US/markings/kemonomimi_ears.ftl new file mode 100644 index 0000000000..e4b0d631e7 --- /dev/null +++ b/Resources/Locale/en-US/markings/kemonomimi_ears.ftl @@ -0,0 +1,13 @@ +marking-BunnyEars = Bunny Ears +marking-BunnyEars-bunnyearstone1 = Outer ear +marking-BunnyEars-bunnyearstone2 = Inner ear + +marking-BullishHorns = Bull Horns +marking-BullishHorns-bullishhorns = Horns + +marking-FoxEars = Fox Ears +marking-FoxEars-foxears = Ears + +marking-GoatHorns = Goat Ears & Horns +marking-GoatHorns-goathornstone1 = Ears +marking-GoatHorns-goathornstone2 = Horns diff --git a/Resources/Locale/en-US/markings/reptilian.ftl b/Resources/Locale/en-US/markings/reptilian.ftl index cfc44a4ba2..470af07361 100644 --- a/Resources/Locale/en-US/markings/reptilian.ftl +++ b/Resources/Locale/en-US/markings/reptilian.ftl @@ -68,6 +68,9 @@ marking-LizardFrillsDivinity = Lizard Frills (Divinity) marking-LizardFrillsBig-frills_big = Lizard Frills (Big) marking-LizardFrillsBig = Lizard Frills (Big) +marking-LizardFrillsNeckfull-frills_neckfull = Lizard Frills (Neckfull) +marking-LizardFrillsNeckfull = Lizard Frills (Neckfull) + marking-LizardHornsDouble-horns_double = Lizard Horns (Double) marking-LizardHornsDouble = Lizard Horns (Double) @@ -100,4 +103,8 @@ marking-LizardChestUnderbelly-body_underbelly = Lizard Chest (Underbelly) marking-LizardChestUnderbelly = Lizard Chest (Underbelly) marking-LizardChestBackspikes-body_backspikes = Lizard Back spikes (Four) -marking-LizardChestBackspikes = Lizard Back spikes (Four) \ No newline at end of file +marking-LizardChestBackspikes = Lizard Back spikes (Four) + +marking-LizardSnoutSplotch = Lizard Snout (Splotch) +marking-LizardSnoutSplotch-snout_splotch_primary = Muzzle +marking-LizardSnoutSplotch-snout_splotch_secondary = Snoot diff --git a/Resources/Locale/en-US/markings/vox_tattoos.ftl b/Resources/Locale/en-US/markings/vox_tattoos.ftl new file mode 100644 index 0000000000..f7f3c7292c --- /dev/null +++ b/Resources/Locale/en-US/markings/vox_tattoos.ftl @@ -0,0 +1,11 @@ +marking-TattooVoxHeartLeftArm-heart_l_arm = Vox Left Arm Tattoo (Heart) +marking-TattooVoxHeartLeftArm = Vox Left Arm Tattoo (Heart) + +marking-TattooVoxHeartRightArm-heart_r_arm = Vox Right Arm Tattoo (Heart) +marking-TattooVoxHeartRightArm = Vox Right Arm Tattoo (Heart) + +marking-TattooVoxHiveChest-hive_s = Vox Chest Tattoo (hive) +marking-TattooVoxHiveChest = Vox Chest Tattoo (hive) + +marking-TattooVoxNightlingChest-nightling_s = Vox Chest Tattoo (nightling) +marking-TattooVoxNightlingChest = Vox Chest Tattoo (nightling) diff --git a/Resources/Locale/en-US/materials/materials.ftl b/Resources/Locale/en-US/materials/materials.ftl index dca520b5b4..b213e7d1e9 100644 --- a/Resources/Locale/en-US/materials/materials.ftl +++ b/Resources/Locale/en-US/materials/materials.ftl @@ -25,6 +25,8 @@ materials-meat = meat materials-web = silk materials-bones = bone materials-coal = coal +materials-bluespace = bluespace +materials-normality = normality # Ores materials-raw-iron = raw iron @@ -35,3 +37,8 @@ materials-raw-plasma = raw plasma materials-raw-uranium = raw uranium materials-raw-bananium = raw bananium materials-raw-salt = raw salt +materials-raw-bluespace = raw bluespace +materials-raw-normality = raw normality + +# Material Reclaimer +material-reclaimer-upgrade-process-rate = process rate diff --git a/Resources/Locale/en-US/mech/mech.ftl b/Resources/Locale/en-US/mech/mech.ftl index 19f570a2a1..9d4f7ef0e0 100644 --- a/Resources/Locale/en-US/mech/mech.ftl +++ b/Resources/Locale/en-US/mech/mech.ftl @@ -13,6 +13,7 @@ mech-menu-title = mech control panel mech-integrity-display = Integrity: {$amount}% mech-energy-display = Energy: {$amount}% +mech-energy-missing = Energy: MISSING mech-slot-display = Open Slots: {$amount} mech-no-enter = You cannot pilot this. diff --git a/Resources/Locale/en-US/medical/components/biomass-reclaimer-component.ftl b/Resources/Locale/en-US/medical/components/biomass-reclaimer-component.ftl index 443429c1ef..0c0b8faf59 100644 --- a/Resources/Locale/en-US/medical/components/biomass-reclaimer-component.ftl +++ b/Resources/Locale/en-US/medical/components/biomass-reclaimer-component.ftl @@ -1 +1,4 @@ biomass-reclaimer-suicide-others = {CAPITALIZE(THE($victim))} threw themselves into the biomass reclaimer! + +biomass-reclaimer-component-upgrade-speed = speed +biomass-reclaimer-component-upgrade-biomass-yield = biomass yield diff --git a/Resources/Locale/en-US/medical/components/cloning-pod-component.ftl b/Resources/Locale/en-US/medical/components/cloning-pod-component.ftl index b222d707a0..e92ac86a1e 100644 --- a/Resources/Locale/en-US/medical/components/cloning-pod-component.ftl +++ b/Resources/Locale/en-US/medical/components/cloning-pod-component.ftl @@ -1,3 +1,5 @@ cloning-pod-biomass = It currently has [color=red]{$number}[/color] units of biomass. +cloning-pod-component-upgrade-speed = cloning speed +cloning-pod-component-upgrade-biomass-requirement = biomass requirement cloning-pod-component-upgrade-emag-requirement = The card zaps something inside the cloning pod. diff --git a/Resources/Locale/en-US/medical/components/health-analyzer-component.ftl b/Resources/Locale/en-US/medical/components/health-analyzer-component.ftl index 648db3f4eb..8460bcc27b 100644 --- a/Resources/Locale/en-US/medical/components/health-analyzer-component.ftl +++ b/Resources/Locale/en-US/medical/components/health-analyzer-component.ftl @@ -13,26 +13,4 @@ health-analyzer-window-scan-mode-text = Scan Mode: health-analyzer-window-scan-mode-active = ACTIVE health-analyzer-window-scan-mode-inactive = INACTIVE -health-analyzer-window-damage-group-Brute = Brute -health-analyzer-window-damage-type-Blunt = Blunt -health-analyzer-window-damage-type-Slash = Slash -health-analyzer-window-damage-type-Piercing = Piercing - -health-analyzer-window-damage-group-Burn = Burn -health-analyzer-window-damage-type-Heat = Heat -health-analyzer-window-damage-type-Shock = Shock -health-analyzer-window-damage-type-Cold = Cold -health-analyzer-window-damage-type-Caustic = Caustic - -health-analyzer-window-damage-group-Airloss = Airloss -health-analyzer-window-damage-type-Asphyxiation = Asphyxiation -health-analyzer-window-damage-type-Bloodloss = Bloodloss - -health-analyzer-window-damage-group-Toxin = Toxin -health-analyzer-window-damage-type-Poison = Poison -health-analyzer-window-damage-type-Radiation = Radiation - -health-analyzer-window-damage-group-Genetic = Genetic -health-analyzer-window-damage-type-Cellular = Cellular - health-analyzer-window-malnutrition = Severely malnourished diff --git a/Resources/Locale/en-US/medical/components/medical-scanner-component.ftl b/Resources/Locale/en-US/medical/components/medical-scanner-component.ftl index c4b1942654..da4dc7a384 100644 --- a/Resources/Locale/en-US/medical/components/medical-scanner-component.ftl +++ b/Resources/Locale/en-US/medical/components/medical-scanner-component.ftl @@ -2,3 +2,5 @@ medical-scanner-verb-enter = Enter medical-scanner-verb-noun-occupant = occupant + +medical-scanner-upgrade-cloning = Cloning fail chance diff --git a/Resources/Locale/en-US/medical/components/penlight.ftl b/Resources/Locale/en-US/medical/components/penlight.ftl index f0639ad738..c8a5d66f5d 100644 --- a/Resources/Locale/en-US/medical/components/penlight.ftl +++ b/Resources/Locale/en-US/medical/components/penlight.ftl @@ -1,11 +1,12 @@ penlight-off = The pen light is off. +penlight-cannot-examine-self = You cannot examine your own eyes. pen-light-exam-title = Pen Light pen-light-window-entity-eyes-text = {$entityName}'s conditions: pen-light-window-no-patient-data-text = No patient data. pen-light-window-entity-unknown-text = unknown pen-light-exam-blind-text = The patient's eyes are glassy and unfocused. They can't follow the light at all. -pen-light-exam-drunk-text = The patient's eyes are slow to follow the light, droopy. -pen-light-exam-eyedamage-text = The patient's eyes are partially focused, though they struggle to look at the light for too long. +pen-light-exam-drunk-text = There's a clear delay between moving the light and the patient's eyes following. +pen-light-exam-eyedamage-text = The patient's eyes have dark spots within the pupil, evident when the light is shone in them. pen-light-exam-hallucinating-text = The patient's eyes are wandering around, with dilated pupils. They don't focus on the light. pen-light-exam-healthy-text = The patient follows the light perfectly with no stuttering. \ No newline at end of file diff --git a/Resources/Locale/en-US/medical/components/stasis-bed-component.ftl b/Resources/Locale/en-US/medical/components/stasis-bed-component.ftl new file mode 100644 index 0000000000..2d8a18c263 --- /dev/null +++ b/Resources/Locale/en-US/medical/components/stasis-bed-component.ftl @@ -0,0 +1 @@ +stasis-bed-component-upgrade-stasis = stasis effect diff --git a/Resources/Locale/en-US/metabolism/metabolism-groups.ftl b/Resources/Locale/en-US/metabolism/metabolism-groups.ftl new file mode 100644 index 0000000000..404d0fc786 --- /dev/null +++ b/Resources/Locale/en-US/metabolism/metabolism-groups.ftl @@ -0,0 +1,7 @@ +metabolism-group-poison = Poison +metabolism-group-medicine = Medicine +metabolism-group-narcotic = Narcotic +metabolism-group-alcohol = Alcohol +metabolism-group-food = Food +metabolism-group-drink = Drink +metabolism-group-gas = Gas diff --git a/Resources/Locale/en-US/metabolism/metabolizer-types.ftl b/Resources/Locale/en-US/metabolism/metabolizer-types.ftl new file mode 100644 index 0000000000..30ab6c050e --- /dev/null +++ b/Resources/Locale/en-US/metabolism/metabolizer-types.ftl @@ -0,0 +1,13 @@ +metabolizer-type-animal = Animal +metabolizer-type-bloodsucker = Bloodsucker +metabolizer-type-dragon = Dragon +metabolizer-type-human = Human +metabolizer-type-slime = Slime +metabolizer-type-vox = Vox +metabolizer-type-rat = Rat +metabolizer-type-plant = Plant +metabolizer-type-dwarf = Dwarf +metabolizer-type-moth = Moth +metabolizer-type-arachnid = Arachnid +metabolizer-type-vampiric = Vampiric +metabolizer-type-liquorlifeline = Liquor Lifeline diff --git a/Resources/Locale/en-US/mood/mood.ftl b/Resources/Locale/en-US/mood/mood.ftl index bd64d52582..5c31af0a4d 100644 --- a/Resources/Locale/en-US/mood/mood.ftl +++ b/Resources/Locale/en-US/mood/mood.ftl @@ -54,3 +54,22 @@ mood-effect-RevolutionFocused = VIVA LA REVOLUTION!!! mood-effect-CultFocused = Dark Gods, grant me strength! mood-effect-TraitSanguine = I have nothing to worry about. I'm sure everything will turn out well in the end! + +# Addictions +mood-effect-LotoTranscendence = + I CAN SEE ALL THAT IS, ALL THAT WILL EVER BE, AND ALL THAT EVER WAS. ALL OF CREATION HAS OPENED TO MY MIND! + I MUST HAVE IT ALL. I MUST KNOW IT ALL. ALL OF IT. FOREVER! +mood-effect-LotoEnthrallment = + It has fled from me... The heart of all creation is gone from my soul, leaving behind an emptiness I cannot bear. + I fear that I will wither to nothing if I cannot drink from the cup of knowledge once again. + +mood-effect-NicotineBenefit = + I feel as if I have been standing my entire life and I just sat down. +mood-effect-NicotineWithdrawal = + I could really go for a smoke right now. + +# Drugs +mood-effect-EthanolBenefit = + I feel so relaxed from drinking. +mood-effect-SpaceDrugsBenefit = + Woaaaah, such pretty colors maaaaan. It's like I can hear color and taste sound maaan. \ No newline at end of file diff --git a/Resources/Locale/en-US/movement/laying.ftl b/Resources/Locale/en-US/movement/laying.ftl index f75061d6a7..de84ca629e 100644 --- a/Resources/Locale/en-US/movement/laying.ftl +++ b/Resources/Locale/en-US/movement/laying.ftl @@ -1,3 +1,6 @@ +crawling-under-tables-disabled-popup = Crawling under tables is disabled on this server. + +# TODO either remove those, or make use of them laying-comp-lay-success-self = You lay down. laying-comp-lay-success-other = {THE($entity)} lays down. laying-comp-lay-fail-self = You can't lay down right now. diff --git a/Resources/Locale/en-US/ninja/ninja-actions.ftl b/Resources/Locale/en-US/ninja/ninja-actions.ftl index b42da33a29..f01f02a60e 100644 --- a/Resources/Locale/en-US/ninja/ninja-actions.ftl +++ b/Resources/Locale/en-US/ninja/ninja-actions.ftl @@ -4,3 +4,5 @@ ninja-suit-cooldown = The suit needs time to recuperate from the last attack. ninja-research-steal-fail = No new research nodes were stolen... ninja-research-steal-success = Stole {$count} new nodes from {THE($server)}. + +ninja-criminal-records-hack-announcement = ERROR: Criminal records has detected a [REDACTED] error #*;" diff --git a/Resources/Locale/en-US/nutrition/components/drink-component.ftl b/Resources/Locale/en-US/nutrition/components/drink-component.ftl index 9a388744b0..e80787c8d5 100644 --- a/Resources/Locale/en-US/nutrition/components/drink-component.ftl +++ b/Resources/Locale/en-US/nutrition/components/drink-component.ftl @@ -1,4 +1,4 @@ -drink-component-on-use-is-empty = {$owner} is empty! +drink-component-on-use-is-empty = {CAPITALIZE(THE($owner))} is empty! drink-component-on-examine-is-empty = [color=gray]Empty[/color] drink-component-on-examine-is-opened = [color=yellow]Opened[/color] drink-component-on-examine-is-sealed = The seal is intact. @@ -10,7 +10,7 @@ drink-component-on-examine-is-half-empty = Halfway Empty drink-component-on-examine-is-mostly-empty = Mostly Empty drink-component-on-examine-exact-volume = It contains {$amount}u. drink-component-try-use-drink-not-open = Open {$owner} first! -drink-component-try-use-drink-is-empty = {$entity} is empty! +drink-component-try-use-drink-is-empty = {CAPITALIZE(THE($entity))} is empty! drink-component-try-use-drink-cannot-drink = You can't drink anything! drink-component-try-use-drink-had-enough = You can't drink more! drink-component-try-use-drink-cannot-drink-other = They can't drink anything! diff --git a/Resources/Locale/en-US/nutrition/components/fat-extractor.ftl b/Resources/Locale/en-US/nutrition/components/fat-extractor.ftl index 20a31cd8c4..611b8ef540 100644 --- a/Resources/Locale/en-US/nutrition/components/fat-extractor.ftl +++ b/Resources/Locale/en-US/nutrition/components/fat-extractor.ftl @@ -1,3 +1,5 @@ +fat-extractor-component-rate = extraction rate + fat-extractor-fact-1 = Fats are triglycerides made up of a combination of different building blocks; glycerol and fatty acids. fat-extractor-fact-2 = Adults should get a recommended 20-35% of their energy intake from fat. fat-extractor-fact-3 = Being overweight or obese puts you at an increased risk of chronic diseases, such as cardiovascular diseases, metabolic syndrome, type 2 diabetes, and some types of cancers. diff --git a/Resources/Locale/en-US/nutrition/components/pressurized-solution-component.ftl b/Resources/Locale/en-US/nutrition/components/pressurized-solution-component.ftl new file mode 100644 index 0000000000..a227d811f6 --- /dev/null +++ b/Resources/Locale/en-US/nutrition/components/pressurized-solution-component.ftl @@ -0,0 +1,3 @@ +pressurized-solution-spray-holder-self = { CAPITALIZE(THE($drink)) } sprays on you! +pressurized-solution-spray-holder-others = { CAPITALIZE(THE($drink)) } sprays on { THE($victim) }! +pressurized-solution-spray-ground = The contents of { THE($drink) } spray out! diff --git a/Resources/Locale/en-US/nutrition/components/shakeable-component.ftl b/Resources/Locale/en-US/nutrition/components/shakeable-component.ftl new file mode 100644 index 0000000000..acc1ecd848 --- /dev/null +++ b/Resources/Locale/en-US/nutrition/components/shakeable-component.ftl @@ -0,0 +1,3 @@ +shakeable-verb = Shake +shakeable-popup-message-others = { CAPITALIZE(THE($user)) } shakes { THE($shakeable) } +shakeable-popup-message-self = You shake { THE($shakeable) } diff --git a/Resources/Locale/en-US/nyanotrasen/reagents/meta/consumable/drink/drink.ftl b/Resources/Locale/en-US/nyanotrasen/reagents/meta/consumable/drink/drink.ftl index e9d04bd951..eef7207132 100644 --- a/Resources/Locale/en-US/nyanotrasen/reagents/meta/consumable/drink/drink.ftl +++ b/Resources/Locale/en-US/nyanotrasen/reagents/meta/consumable/drink/drink.ftl @@ -7,11 +7,5 @@ reagent-desc-pinkdrink = Entire civilizations have crumbled trying to decide if reagent-name-bubbletea = bubble tea reagent-desc-bubbletea = Big straw not included. -reagent-name-the-martinez = The Martinez -reagent-desc-the-martinez = The edgerunner legend. Remembered by a drink, Forgotten by a drunk. - -reagent-name-holywater = holy water -reagent-desc-holywater = Water blessed by some otherworldly powers. - reagent-name-lean = lean reagent-desc-lean = A disgusting mixture of soda, booze, and cough syrup. diff --git a/Resources/Locale/en-US/objectives/conditions/terminate.ftl b/Resources/Locale/en-US/objectives/conditions/terminate.ftl deleted file mode 100644 index c88c7b14da..0000000000 --- a/Resources/Locale/en-US/objectives/conditions/terminate.ftl +++ /dev/null @@ -1 +0,0 @@ -objective-terminate-title = Terminate {$targetName}, {CAPITALIZE($job)} diff --git a/Resources/Locale/en-US/preferences/ui/character-setup-gui.ftl b/Resources/Locale/en-US/preferences/ui/character-setup-gui.ftl index bd80815e23..b85d7be38e 100644 --- a/Resources/Locale/en-US/preferences/ui/character-setup-gui.ftl +++ b/Resources/Locale/en-US/preferences/ui/character-setup-gui.ftl @@ -1,7 +1,6 @@ character-setup-gui-character-setup-label = Character setup character-setup-gui-character-setup-stats-button = Stats character-setup-gui-character-setup-rules-button = Rules -character-setup-gui-character-setup-save-button = Save character-setup-gui-character-setup-close-button = Close character-setup-gui-create-new-character-button = Create new slot... character-setup-gui-create-new-character-button-tooltip = A maximum of {$maxCharacters} characters are allowed. 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 d8fb5eab53..e4588407d3 100644 --- a/Resources/Locale/en-US/preferences/ui/humanoid-profile-editor.ftl +++ b/Resources/Locale/en-US/preferences/ui/humanoid-profile-editor.ftl @@ -2,8 +2,8 @@ humanoid-profile-editor-randomize-everything-button = Randomize everything humanoid-profile-editor-name-label = Name: humanoid-profile-editor-name-random-button = Randomize humanoid-profile-editor-appearance-tab = Appearance -humanoid-profile-editor-clothing = Show clothing -humanoid-profile-editor-loadouts = Show loadout +humanoid-profile-editor-clothing = Preview job equipment: +humanoid-profile-editor-loadouts = Preview loadout items: humanoid-profile-editor-clothing-show = Show humanoid-profile-editor-sex-label = Sex: humanoid-profile-editor-sex-male-text = Male @@ -15,6 +15,7 @@ humanoid-profile-editor-height-label = Height: {$height}cm humanoid-profile-editor-width-label = Width: {$width}cm humanoid-profile-editor-weight-label = Weight: {$weight}kg humanoid-profile-editor-species-label = Species: +humanoid-profile-editor-customspeciename-label = Custom Specie Name: humanoid-profile-editor-pronouns-label = Pronouns: humanoid-profile-editor-pronouns-male-text = He / Him humanoid-profile-editor-pronouns-female-text = She / Her @@ -23,6 +24,7 @@ humanoid-profile-editor-pronouns-neuter-text = It / It humanoid-profile-editor-import-button = Import humanoid-profile-editor-export-button = Export humanoid-profile-editor-save-button = Save +humanoid-profile-editor-reset-button = Reset humanoid-profile-editor-clothing-label = Clothing: humanoid-profile-editor-backpack-label = Backpack: humanoid-profile-editor-spawn-priority-label = Spawn priority: diff --git a/Resources/Locale/en-US/prototypes/catalog/cargo/cargoproduct-categories.ftl b/Resources/Locale/en-US/prototypes/catalog/cargo/cargoproduct-categories.ftl index f2451527b0..70dc057b39 100644 --- a/Resources/Locale/en-US/prototypes/catalog/cargo/cargoproduct-categories.ftl +++ b/Resources/Locale/en-US/prototypes/catalog/cargo/cargoproduct-categories.ftl @@ -6,6 +6,7 @@ cargoproduct-category-name-emergency = Emergency cargoproduct-category-name-engineering = Engineering cargoproduct-category-name-food = Food cargoproduct-category-name-fun = Fun +cargoproduct-category-name-hardsuits = Hardsuits cargoproduct-category-name-hydroponics = Hydroponics cargoproduct-category-name-livestock = Livestock cargoproduct-category-name-materials = Materials diff --git a/Resources/Locale/en-US/prototypes/entities/clothing/head/hardsuit-helmets.ftl b/Resources/Locale/en-US/prototypes/entities/clothing/head/hardsuit-helmets.ftl index 2bbacf2abc..4e003d2704 100644 --- a/Resources/Locale/en-US/prototypes/entities/clothing/head/hardsuit-helmets.ftl +++ b/Resources/Locale/en-US/prototypes/entities/clothing/head/hardsuit-helmets.ftl @@ -55,6 +55,8 @@ ent-ClothingHeadHelmetHardsuitLuxury = HpI-20c helmet .desc = A modified helmet for the Minos hardsuit, fashioned after the Logistics Officer's colors. It's been modified for greater mobility at the expense of physical trauma protection. ent-ClothingHeadHelmetHardsuitSyndie = CSA-51a helmet .desc = An armored helmet deployed over a Shanlin tacsuit. This one has been painted blood red. +ent-ClothingHeadHelmetHardsuitSyndieReverseEngineered = CSA-51a helmet + .desc = An armored helmet deployed over a Shanlin tacsuit. This one has been painted blue. ent-ClothingHeadHelmetHardsuitSyndieMedic = CSA-51m helmet .desc = An armored helmet deployed over a Zhongyao tacsuit. features optic integrations for nearly every medical hud on the market. Designed to enable the survival of combat medics in the most dangerous of environments. @@ -64,6 +66,8 @@ ent-ClothingHeadHelmetHardsuitSyndieCommander = CSA-54c helmet .desc = A bulked up version of the Shanlin tacsuit's helmet, purpose-built for commanders of special operation squads. This one has been painted blood-red. ent-ClothingHeadHelmetHardsuitCybersun = CSA-80UA helmet .desc = An incredibly sturdy looking helmet designed for the Guan Yu tacsuit. +ent-ClothingHeadHelmetHardsuitJuggernautReverseEngineered = CSA-80UA helmet + .desc = An incredibly sturdy looking helmet designed for the Guan Yu tacsuit. This one has been painted blue. ent-ClothingHeadHelmetHardsuitWizard = WZD-84 helmet .desc = A bizarre, gem-encrusted helmet from unknown origins. It provides some protection to its wearer without restricting their movements. ent-ClothingHeadHelmetHardsuitLing = organic space helmet diff --git a/Resources/Locale/en-US/prototypes/entities/clothing/outerClothing/hardsuits.ftl b/Resources/Locale/en-US/prototypes/entities/clothing/outerClothing/hardsuits.ftl index 84f03af5c9..8232ac352d 100644 --- a/Resources/Locale/en-US/prototypes/entities/clothing/outerClothing/hardsuits.ftl +++ b/Resources/Locale/en-US/prototypes/entities/clothing/outerClothing/hardsuits.ftl @@ -74,6 +74,9 @@ ent-ClothingOuterHardsuitLuxury = HpI-20c - "Minos" hardsuit ent-ClothingOuterHardsuitSyndie = CSA-51a - "Shanlin" tacsuit .desc = A tactical combat hardsuit produced by the Cybersun-Armaments Corporation, the suit's tags indicate it provides moderate protection against most forms of damage. This one has been painted blood red. It feels incredibly light. +ent-ClothingOuterHardsuitSyndieReverseEngineered = CSA-51a - "Shanlin" tacsuit + .desc = A tactical combat hardsuit produced by the Cybersun-Armaments Corporation, the suit's tags indicate it provides moderate protection against most forms of damage. + This one has been painted blue. It feels incredibly light. ent-ClothingOuterHardsuitSyndieMedic = CSA-51m - "Zhongyao" tacsuit .desc = A tactical combat hardsuit produced by the Cybersun-Armaments Corporation, the suit's tags indicate it provides moderate protection against most forms of damage. Half of the suit is painted blood red, the rest bears galactic-standard medical markings. It feels incredibly light. @@ -87,6 +90,9 @@ ent-ClothingOuterHardsuitSyndieCommander = CSA-54c - "Tianming" tacsuit ent-ClothingOuterHardsuitJuggernaut = CSA-80UA - "Guan Yu" tacsuit .desc = The pride and joy of the Cybersun-Armaments Corporation, named after an ancient Sol' War God. Commonly known throughout the galaxy as a "Juggernaut". Matching its bulky appearance, it protects against all forms of damage. It feels VERY heavy. +end-ClothingOuterHardsuitJuggernautReverseEngineered = CSA-80UA - "Guan Yu" tacsuit + .desc = The pride and joy of the Cybersun-Armaments Corporation, named after an ancient Sol' War God. Commonly known throughout the galaxy as a "Juggernaut". + Matching its bulky appearance, it protects against all forms of damage. It feels VERY heavy. ent-ClothingOuterHardsuitWizard = WZD-84 - "Mana" tacsuit .desc = A bizarre gem-encrusted hardsuit. Famously used by members of the Wizard Federation in their operations. Contrary to it's appearance, it can protect its wearer from space and considerable amounts of physical trauma, it feels somewhat light. @@ -98,11 +104,6 @@ ent-ClothingOuterHardsuitPirateEVA = pirate vacsuit ent-ClothingOuterHardsuitPirateCap = pirate captain's tacsuit .desc = An ancient armored tactical combat hardsuit of unknown origin, provides basic protections from the cold harsh realities of deep space and physical trauma. It doesn't seem to have any weight either. Perfect for defending against space scurvy and toolbox-wielding scallywags. -ent-ClothingOuterHardsuitSyndieReverseEngineered = NTSA-122 tacsuit - .desc = A suit made by the special adquisitions department of Nanotrasen, the suit's tags indicate it provides moderate protection against most forms of damage. -ent-ClothingOuterHardsuitJuggernautReverseEngineered = NTSA-126 tacsuit - .desc = A suit made by the special acquisitions department of Nanotrasen based on the "Juggernaut" design. - Matching its bulky appearance, it protects against all forms of damage. It feels VERY heavy. ent-ClothingOuterHardsuitERTCentcomm = NT-444c - "Ophanim" tacsuit .desc = A highly advanced, tactical combat hardsuit used by Central Command Officers, it seems to be branded with the Nanotrasen logo and a strange looking series number. The armor appears to be lined with a very sturdy alloy, it doesn't seem to have any weight either. diff --git a/Resources/Locale/en-US/prototypes/roles/antags.ftl b/Resources/Locale/en-US/prototypes/roles/antags.ftl index 40f2c9a682..5c514dba8e 100644 --- a/Resources/Locale/en-US/prototypes/roles/antags.ftl +++ b/Resources/Locale/en-US/prototypes/roles/antags.ftl @@ -30,6 +30,3 @@ roles-antag-space-ninja-objective = Use your stealth to sabotage the station, no roles-antag-thief-name = Thief roles-antag-thief-objective = Add some NT property to your personal collection without using violence. - -roles-antag-terminator-name = Paradox Anomaly # DeltaV - paradox anomaly -roles-antag-terminator-objective = Replace your double, or befriend them. # DeltaV - paradox anomaly diff --git a/Resources/Locale/en-US/psionics/psionic-powers.ftl b/Resources/Locale/en-US/psionics/psionic-powers.ftl index ad6bbef02b..37482a41b6 100644 --- a/Resources/Locale/en-US/psionics/psionic-powers.ftl +++ b/Resources/Locale/en-US/psionics/psionic-powers.ftl @@ -1,4 +1,5 @@ generic-power-initialization-feedback = I Awaken. +already-casting = I cannot channel more than one power at a time. # Dispel dispel-power-description = Dispel summoned entities such as familiars or forcewalls. @@ -48,6 +49,28 @@ psionic-regeneration-power-initialization-feedback = I look within myself, finding a wellspring of life. psionic-regeneration-power-metapsionic-feedback = {CAPITALIZE($entity)} possesses an overwhelming will to live +# Healing Word +action-name-healing-word = Healing Word +action-description-healing-word = Speak the Lesser Secret Of Life, and restore health to another. +healing-word-power-description = Speak the Lesser Secret Of Life, and restore health to another. +healing-word-power-initialization-feedback = + At the beginning of time, a word was spoken that brought life into the Spheres. + Though it taxes my mind to know it, this Secret is known to me now. + I need only speak it. +healing-word-power-metapsionic-feedback = {CAPITALIZE($entity)} bears the Lesser Secret of Life. +healing-word-begin = {CAPITALIZE($entity)} mutters a word that brings both joy and pain alike to those who hear it. + +# Revivify +action-name-revivify = Breath of Life +action-description-revivify = Speak the Greater Secret of Life, and restore another to life. +revivify-power-description = Speak the Greater Secret of Life, and restore another to life. +revivify-power-initialization-feedback = + For a moment, my soul journeys across time and space to the beginning of it all, there I hear it. + The Secret of Life in its fullness. I feel my entire existence burning out from within, merely by knowing it. + Power flows through me as a mighty river, begging to be released with a simple spoken word. +revivify-power-metapsionic-feedback = {CAPITALIZE($entity)} bears the Greater Secret of Life. +revivify-word-begin = {CAPITALIZE($entity)} enunciates a word of such divine power, that those who hear it weep from joy. + # Telegnosis telegnosis-power-description = Create a telegnostic projection to remotely observe things. telegnosis-power-initialization-feedback = @@ -86,7 +109,33 @@ telepathy-power-initialization-feedback = The voices I've heard all my life begin to clear, yet they do not leave me. Before, they were as incoherent whispers, now my senses broaden, I come to a realization that they are part of a communal shared hallucination. Behind every voice is a glimmering sentience. +# Shadeskip +action-name-shadeskip = Shadeskip +action-description-shadeskip = + Call upon the Lords of the End of Time, and beseech them for a fragment of true entropy. +shadeskip-power-description = { action-description-shadeskip } +shadeskip-power-initialization-feedback = + I find myself standing in a frigid land, under a sky lacking in all starlight. Cold is the void at the End of Time. + I look to the pale blue within blue horizon, and find a great eye standing at the center of it all, black and emptier than the deepest reaches of space. + My soul begins to wither under its gaze, and I find myself begging for it to look away. The eye laughs, it demands that I serve it or die. + Knowing I have no choice, I pledge myself to it, and suddenly I am back in the material realm. The eye stares behind me still. +shadeskip-power-metapsionic-feedback = {CAPITALIZE($entity)} has been claimed by the Lords of the End of Time. +shadeskip-overcharge-feedback = My body reels from shock as it is overwhelmed by the sheer force flowing through me. + +# Telekinetic Pulse +action-name-telekinetic-pulse = Telekinetic Pulse +action-description-telekinetic-pulse = + Force everyone around you away. +telekinetic-pulse-power-description = { action-description-telekinetic-pulse } +telekinetic-pulse-power-initialization-feedback = + As I reach through the veil with my psyche, I discover a wellspring of pure kinetic energy. It courses through me, but I seem to lack fine control over it. +telekinetic-pulse-power-metapsionic-feedback = {CAPITALIZE($entity)} has the essence of pure kinesis flowing through him. + +# Psionic System Messages mindbreaking-feedback = The light of life vanishes from {CAPITALIZE($entity)}'s eyes, leaving behind a husk pretending at sapience examine-mindbroken-message = Eyes unblinking, staring deep into the horizon. {CAPITALIZE($entity)} is a sack of meat pretending it has a soul. - There is nothing behind its gaze, no evidence there can be found of the divine light of creation. \ No newline at end of file + There is nothing behind its gaze, no evidence there can be found of the divine light of creation. +psionic-roll-failed = For a moment, my consciousness expands, yet I feel that it is not enough. +entity-anomaly-no-grid = There is nowhere for me to conjure beings. +power-overwhelming-power-feedback = {CAPITALIZE($entity)} wields a vast connection to the noösphere diff --git a/Resources/Locale/en-US/radiation/geiger-component.ftl b/Resources/Locale/en-US/radiation/geiger-component.ftl index 0e7d2a8a35..726c7190f2 100644 --- a/Resources/Locale/en-US/radiation/geiger-component.ftl +++ b/Resources/Locale/en-US/radiation/geiger-component.ftl @@ -1,3 +1,3 @@ -geiger-item-control-status = Radiation: [color={$color}]{$rads} rads[/color] +geiger-item-control-status = [color={$color}]{$rads} rads[/color] geiger-item-control-disabled = Disabled geiger-component-examine = Current radiation: [color={$color}]{$rads} rads[/color] diff --git a/Resources/Locale/en-US/radio/components/radio-jammer-component.ftl b/Resources/Locale/en-US/radio/components/radio-jammer-component.ftl index 68efbf8d4e..eb540ee971 100644 --- a/Resources/Locale/en-US/radio/components/radio-jammer-component.ftl +++ b/Resources/Locale/en-US/radio/components/radio-jammer-component.ftl @@ -4,3 +4,13 @@ radio-jammer-component-off-state = off radio-jammer-component-examine-on-state = The light is currently [color=darkgreen]on[/color]. radio-jammer-component-examine-off-state = The light is currently [color=darkred]off[/color]. + +radio-jammer-component-setting-high = High +radio-jammer-component-setting-medium = Medium +radio-jammer-component-setting-low = Low + +radio-jammer-component-set-message-high = The jammer is now operating at high power. +radio-jammer-component-set-message-medium = The jammer is now operating at medium power. +radio-jammer-component-set-message-low = The jammer is now operating at low power. + +radio-jammer-component-switch-setting = The power level switch is set to "[color=yellow]{$powerLevel}[/color]". diff --git a/Resources/Locale/en-US/random-barks/!default.ftl b/Resources/Locale/en-US/random-barks/!default.ftl new file mode 100644 index 0000000000..9620b80a93 --- /dev/null +++ b/Resources/Locale/en-US/random-barks/!default.ftl @@ -0,0 +1,28 @@ +# Default barks. This file serves as a template for future bark types and as a fallback for mobs who do not have unique barks for one reason or another. + +# Recommendations: +# - Try to keep barks simple and reasonably short. 8 words is the usual limit, but most barks should be at msot 3 words long. +# - Each bark should be one, or at most two sentences long. +# - Keep in mind that those will usually not be understood by players. +# - Do not add punctuation at the end of the message, except for question marks, so that the random bark system will add random punctuation. +bark-default-1 = Bark +bark-default-2 = Boof +bark-default-3 = Woofums +bark-default-4 = Rawrl +bark-default-5 = Eeeeeee +bark-default-6 = Barkums +bark-default-7 = Awooooooooooooooooooo awooo awoooo +bark-default-8 = Grrrrrrrrrrrrrrrrrr +bark-default-9 = Rarrwrarrwr +bark-default-10 = Goddamn I love gold fish crackers +bark-default-11 = Bork bork boof boof bork bork boof boof bork +bark-default-12 = Bark +bark-default-13 = Boof +bark-default-14 = Woofums +bark-default-15 = Rawrl +bark-default-16 = Eeeeeee +bark-default-17 = Barkum + +# This should always come last so that it's easy to keep track of. +# Bark counts are locale-specific so they are typically defined in FTL files instead of YML, to make localization easier. +bark-default-count = 17 diff --git a/Resources/Locale/en-US/random-barks/bee.ftl b/Resources/Locale/en-US/random-barks/bee.ftl new file mode 100644 index 0000000000..2398eaa8a8 --- /dev/null +++ b/Resources/Locale/en-US/random-barks/bee.ftl @@ -0,0 +1,5 @@ +bark-bee-1 = Bzzzz +bark-bee-2 = Bzzt Bzzzt +bark-bee-3 = Bzzzt bzzzzzz +bark-bee-4 = Bzzzzt +bark-bee-count = 4 diff --git a/Resources/Locale/en-US/random-barks/cat.ftl b/Resources/Locale/en-US/random-barks/cat.ftl new file mode 100644 index 0000000000..61536efdf4 --- /dev/null +++ b/Resources/Locale/en-US/random-barks/cat.ftl @@ -0,0 +1,25 @@ +bark-cat-1 = Meow +bark-cat-2 = Purr purr +bark-cat-3 = Hungry +bark-cat-4 = Fish! +bark-cat-5 = Birds! +bark-cat-6 = Nap time +bark-cat-7 = Scratch scratch scratch +bark-cat-8 = Purr purr purr +bark-cat-9 = That a mouse? +bark-cat-10 = Meow meow +bark-cat-11 = Brrow +bark-cat-12 = Pet me +bark-cat-13 = Pets good +bark-cat-14 = Yawn +bark-cat-15 = Hiss +bark-cat-16 = Where'd the sun go? +bark-cat-17 = Play time +bark-cat-18 = Sleepy +bark-cat-19 = Need to rest +bark-cat-20 = I hear mice +bark-cat-21 = Must catch the mouse +bark-cat-22 = Mothroach tasted good +bark-cat-23 = Purrmeow +bark-cat-24 = Mrrp meow mrrow +bark-cat-count = 24 diff --git a/Resources/Locale/en-US/random-barks/chicken.ftl b/Resources/Locale/en-US/random-barks/chicken.ftl new file mode 100644 index 0000000000..fe7070e045 --- /dev/null +++ b/Resources/Locale/en-US/random-barks/chicken.ftl @@ -0,0 +1,9 @@ +bark-chicken-1 = Coooot +bark-chicken-2 = Coot +bark-chicken-3 = Coot Coot Cooot +bark-chicken-4 = Food +bark-chicken-5 = Where is grass? +bark-chicken-6 = Need to eat +bark-chicken-8 = Egg +bark-chicken-9 = Coot coot +bark-chicken-count = 9 diff --git a/Resources/Locale/en-US/random-barks/cow.ftl b/Resources/Locale/en-US/random-barks/cow.ftl new file mode 100644 index 0000000000..e628fde767 --- /dev/null +++ b/Resources/Locale/en-US/random-barks/cow.ftl @@ -0,0 +1,11 @@ +bark-cow-1 = Mooooo +bark-cow-2 = Moo +bark-cow-3 = Huff +bark-cow-4 = Moooooooo +bark-cow-5 = Moooo +bark-cow-6 = Floor is food +bark-cow-7 = I'm hungry +bark-cow-8 = How long have I been here? +bark-cow-9 = Moooo mooooooo +bark-cow-10 = Huff... Moooooo +bark-cow-count = 10 diff --git a/Resources/Locale/en-US/random-barks/crab.ftl b/Resources/Locale/en-US/random-barks/crab.ftl new file mode 100644 index 0000000000..5fe69f5c6b --- /dev/null +++ b/Resources/Locale/en-US/random-barks/crab.ftl @@ -0,0 +1,12 @@ +# Contrary to a popular belief, crabs do not actually possess much of an intelligence, if any at all. +bark-crab-1 = Claw! +bark-crab-2 = Snap snap +bark-crab-3 = Clickity clack +bark-crab-4 = Clack clack +bark-crab-5 = Water +bark-crab-6 = Snap +bark-crab-7 = Clack +bark-crab-8 = Click +bark-crab-9 = Clack clack clack +bark-crab-10 = click click clack +bark-crab-count = 10 diff --git a/Resources/Locale/en-US/random-barks/dog.ftl b/Resources/Locale/en-US/random-barks/dog.ftl new file mode 100644 index 0000000000..4cd94c3a4a --- /dev/null +++ b/Resources/Locale/en-US/random-barks/dog.ftl @@ -0,0 +1,36 @@ +bark-dog-1 = Bark +bark-dog-2 = Boof +bark-dog-3 = Woofums +bark-dog-4 = Rawrl +bark-dog-5 = Eeeeeee +bark-dog-6 = Barkums +bark-dog-7 = Awooooooooooooooooooo awoo awoooo +bark-dog-8 = Grrrrrrrrrrrrrrrrrr +bark-dog-9 = Rarrwrarrwr +bark-dog-10 = Goddamn I love gold fish crackers +bark-dog-11 = Bork bork boof boof bork bork boof boof boof bork +bark-dog-12 = Bark +bark-dog-13 = Boof +bark-dog-14 = Woofums +bark-dog-15 = Rawrl +bark-dog-16 = Eeeeeee +bark-dog-17 = Barkum +bark-dog-18 = Woof woof woof! +bark-dog-19 = Awoooo! I smell food! +bark-dog-20 = Bark bark bark bark! +bark-dog-21 = Grrr, let’s play! +bark-dog-22 = Wooooo! +bark-dog-23 = Rawr! I’m a fierce creature of god! +bark-dog-24 = I love belly rubs! +bark-dog-25 = Bark! Who's there? +bark-dog-26 = Eeeeeee! So excited! +bark-dog-27 = Woof woof, where's my snack? +bark-dog-28 = Bark bark, chasing my tail again! +bark-dog-29 = Grrr, I see a shiny thing! +bark-dog-30 = Bork bork, can I eat that? +bark-dog-31 = Awoo, what’s that weird smell? +bark-dog-32 = Woofums, I like to bark at stars! +bark-dog-33 = Bark bark, I forgot what I wanted! +bark-dog-34 = Eeeee, squeaky toy, my best friend! +bark-dog-35 = Rawrl, let’s run in circles forever! +bark-dog-count = 35 diff --git a/Resources/Locale/en-US/random-barks/fox.ftl b/Resources/Locale/en-US/random-barks/fox.ftl new file mode 100644 index 0000000000..c7a9f61208 --- /dev/null +++ b/Resources/Locale/en-US/random-barks/fox.ftl @@ -0,0 +1,29 @@ +bark-fox-1 = Yip yip +bark-fox-2 = Yap yap +bark-fox-3 = Food +bark-fox-4 = Hungry +bark-fox-5 = Critter! Must catch +bark-fox-6 = Run +bark-fox-7 = Hide +bark-fox-8 = Sniff sniff +bark-fox-9 = I'm scared +bark-fox-10 = Purr purr +bark-fox-11 = Play? +bark-fox-12 = Sleepy +bark-fox-13 = Yap yap yap +bark-fox-14 = Yawn +bark-fox-15 = Curious +bark-fox-16 = Happy +bark-fox-17 = Food, now! +bark-fox-18 = Lonely +bark-fox-19 = Barruf +bark-fox-20 = Raff ruff +bark-fox-21 = Zoomies +bark-fox-22 = Yip yap yap yip yip +bark-fox-23 = I'm hungry +bark-fox-24 = Feed me +bark-fox-25 = Eeeeeeeeeeeeee +bark-fox-26 = Eeeeeee +bark-fox-27 = Myaaaaah +bark-fox-28 = Yip yip yip +bark-fox-count = 28 diff --git a/Resources/Locale/en-US/random-barks/hissing.ftl b/Resources/Locale/en-US/random-barks/hissing.ftl new file mode 100644 index 0000000000..d9f97d984e --- /dev/null +++ b/Resources/Locale/en-US/random-barks/hissing.ftl @@ -0,0 +1,25 @@ +# Agressive xenos/spiders +bark-hissing-1 = Hsssss +bark-hissing-2 = Hssssssss +bark-hissing-3 = I sssee you +bark-hissing-4 = I will catch you +bark-hissing-6 = I'm hhhungry! +bark-hissing-7 = Ssseek... food... +bark-hissing-8 = Hsss... Get there +bark-hissing-9 = People... food +bark-hissing-10 = Hsssss... hssssss +bark-hissing-11 = Darknesss... safe... +bark-hissing-12 = Need to lure them in... +bark-hissing-13 = Yummy meat... +bark-hissing-14 = Ventsss... home... +bark-hissing-15 = Sssneaking up... +bark-hissing-16 = Hsss... shadows... +bark-hissing-17 = I am lurking... +bark-hissing-18 = Flesh... tasty... +bark-hissing-19 = Sssilent... deadly... +bark-hissing-20 = Hsssss... wait... +bark-hissing-21 = Creep closer... +bark-hissing-22 = Trap set... +bark-hissing-23 = Sssso close now... +bark-hissing-24 = Hsss... prey spotted... +bark-hissing-count = 24 diff --git a/Resources/Locale/en-US/random-barks/kobold.ftl b/Resources/Locale/en-US/random-barks/kobold.ftl new file mode 100644 index 0000000000..3168dbf9b7 --- /dev/null +++ b/Resources/Locale/en-US/random-barks/kobold.ftl @@ -0,0 +1,18 @@ +bark-kobold-1 = Grrr +bark-kobold-2 = Treasure, mine now +bark-kobold-3 = Hungry +bark-kobold-4 = More shinies! +bark-kobold-5 = Must collect stuff +bark-kobold-6 = Sneaky sneaky +bark-kobold-7 = Mine now +bark-kobold-8 = Yip yip +bark-kobold-9 = Scared +bark-kobold-10 = Hide +bark-kobold-11 = Yikes +bark-kobold-12 = Yip yip yip +bark-kobold-13 = Go away +bark-kobold-14 = Look, shiny +bark-kobold-15 = Need help +bark-kobold-16 = I see you +bark-kobold-17 = I don't like you +bark-kobold-count = 17 diff --git a/Resources/Locale/en-US/random-barks/mouse.ftl b/Resources/Locale/en-US/random-barks/mouse.ftl new file mode 100644 index 0000000000..88fd0ef04b --- /dev/null +++ b/Resources/Locale/en-US/random-barks/mouse.ftl @@ -0,0 +1,28 @@ +# Mice get a lot because they are a lot more common than e.g. cows or chickens, are understood by certain species and player-controlled mice, etc... +bark-mouse-1 = pi pi pi +bark-mouse-2 = pi pi pi pi +bark-mouse-3 = Cheese +bark-mouse-4 = Food +bark-mouse-5 = I'm hungry +bark-mouse-6 = Need cheese +bark-mouse-7 = Goddamn I love grilled cheese +bark-mouse-8 = Traps everywhere +bark-mouse-9 = Should find food +bark-mouse-10 = Where is the kitchen? +bark-mouse-11 = I'm so hungry +bark-mouse-12 = Squeak +bark-mouse-13 = Cheese now, please +bark-mouse-14 = I want food +bark-mouse-15 = Pi pi pi pi pi +bark-mouse-16 = Where's the cheese? +bark-mouse-17 = Snack time, please +bark-mouse-18 = Hungry! Need snack +bark-mouse-19 = Food? Anyone? +bark-mouse-20 = Cheese is life +bark-mouse-21 = Squeak squeak! More cheese +bark-mouse-22 = I'm still hungry +bark-mouse-23 = Pi? What's that? +bark-mouse-24 = Kitchen smells good +bark-mouse-25 = Cheese is missing +bark-mouse-26 = I'm going to form my own kingdom and overthrow the station command +bark-mouse-count = 26 diff --git a/Resources/Locale/en-US/random-barks/penguin.ftl b/Resources/Locale/en-US/random-barks/penguin.ftl new file mode 100644 index 0000000000..f6f1cc1242 --- /dev/null +++ b/Resources/Locale/en-US/random-barks/penguin.ftl @@ -0,0 +1,12 @@ +bark-penguin-1 = Wark wark +bark-penguin-2 = Fish! +bark-penguin-3 = Cold? +bark-penguin-4 = Waddle waddle +bark-penguin-5 = Gimme fish +bark-penguin-6 = Wark! +bark-penguin-7 = I miss water +bark-penguin-8 = Where's fish? +bark-penguin-9 = Can't fly +bark-penguin-10 = Wank wank wank +bark-penguin-11 = Wank wank wank wank wank wank wank +bark-penguin-count = 11 diff --git a/Resources/Locale/en-US/random-barks/possum.ftl b/Resources/Locale/en-US/random-barks/possum.ftl new file mode 100644 index 0000000000..c9f179e6cc --- /dev/null +++ b/Resources/Locale/en-US/random-barks/possum.ftl @@ -0,0 +1,24 @@ +# Possum <3 +bark-possum-1 = Hiss hiss +bark-possum-2 = Hiss hiss hiss +bark-possum-3 = Food +bark-possum-4 = Hungry +bark-possum-5 = More food +bark-possum-6 = Hiss +bark-possum-7 = Play dead +bark-possum-8 = Scared +bark-possum-9 = Hide +bark-possum-10 = Dark please +bark-possum-11 = Tree home +bark-possum-12 = Hiss hiss hiss hiss +bark-possum-13 = Food now +bark-possum-14 = Sleepy +bark-possum-15 = Hiss hiss hiss +bark-possum-16 = Nighttime good +bark-possum-17 = Fruit please +bark-possum-18 = No light +bark-possum-19 = Hiss hiss hiss hiss hiss +bark-possum-20 = Safe dark +bark-possum-21 = Need to hide +bark-possum-22 = Hiss... Stay away +bark-possum-count = 22 diff --git a/Resources/Locale/en-US/random-barks/raccoon.ftl b/Resources/Locale/en-US/random-barks/raccoon.ftl new file mode 100644 index 0000000000..5493ea255f --- /dev/null +++ b/Resources/Locale/en-US/random-barks/raccoon.ftl @@ -0,0 +1,16 @@ +bark-raccoon-1 = Chomp chomp +bark-raccoon-2 = Rummage +bark-raccoon-3 = Snack time +bark-raccoon-4 = Where's food +bark-raccoon-5 = I want shiny +bark-raccoon-6 = Oooo... lots of garbage +bark-raccoon-7 = Squeak! +bark-raccoon-8 = Need to eat +bark-raccoon-9 = Hungry now +bark-raccoon-10 = Ooh, shiny +bark-raccoon-11 = Should explore more +bark-raccoon-12 = Need to find food +bark-raccoon-13 = Yummy +bark-raccoon-14 = I’m curious +bark-raccoon-15 = A human called me a possum... I am not a possum +bark-raccoon-count = 15 diff --git a/Resources/Locale/en-US/reagents/mannitol.ftl b/Resources/Locale/en-US/reagents/mannitol.ftl new file mode 100644 index 0000000000..1d35aff587 --- /dev/null +++ b/Resources/Locale/en-US/reagents/mannitol.ftl @@ -0,0 +1 @@ +mannitol-effect-enlightened = You feel ENLIGHTENED! diff --git a/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl b/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl index 421dfe1484..2f1c7342a5 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl @@ -261,3 +261,21 @@ reagent-desc-whiskey-soda = For the more refined griffon. reagent-name-white-russian = white russian reagent-desc-white-russian = That's just, like, your opinion, man... + +reagent-name-vodka-red-bool = vodka red bool +reagent-desc-vodka-red-bool = Because heart failure and liver failure go hand in hand. + +reagent-name-xeno-basher = xeno basher +reagent-desc-xeno-basher = The perfect drink before an expedition. + +reagent-name-irish-bool = irish bool +reagent-desc-irish-bool = Like a bool in a Ireland shop. + +reagent-name-budget-insuls = budget insuls +reagent-desc-budget-insuls = A tider's preferred drink. + +reagent-name-watermelon-wakeup = watermelon wakeup +reagent-desc-watermelon-wakeup = If you want to be awake, this will do it... Also sweet. + +reagent-name-rubberneck = rubberneck +reagent-desc-rubberneck = A popular drink amongst those adhering to an all synthetic diet. diff --git a/Resources/Locale/en-US/reagents/meta/fun.ftl b/Resources/Locale/en-US/reagents/meta/fun.ftl index 8764a3d28a..a4a8c0f150 100644 --- a/Resources/Locale/en-US/reagents/meta/fun.ftl +++ b/Resources/Locale/en-US/reagents/meta/fun.ftl @@ -22,7 +22,7 @@ reagent-desc-razorium = A strange, non-newtonian chemical. It is produced when t reagent-name-fresium = Fresium reagent-desc-fresium = A mysterious compound that slows the vibration of atoms and molecules... somehow. In layman's terms, it makes things cold... REALLY cold. Can cause long-lasting movement issues if ingested. -reagent-name-laughter = Laughter +reagent-name-laughter = laughter reagent-desc-laughter = Some say that this is the best medicine, but recent studies have proven that to be untrue. reagent-name-weh = juice that makes you Weh diff --git a/Resources/Locale/en-US/reagents/meta/medicine.ftl b/Resources/Locale/en-US/reagents/meta/medicine.ftl index e02d428082..a84e8315fd 100644 --- a/Resources/Locale/en-US/reagents/meta/medicine.ftl +++ b/Resources/Locale/en-US/reagents/meta/medicine.ftl @@ -127,8 +127,17 @@ reagent-desc-pyrazine = Efficiently heals burns from the hottest of fires. Cause reagent-name-insuzine = insuzine reagent-desc-insuzine = Rapidly repairs dead tissue caused by electrocution, but cools you slightly. Completely freezes the patient when overdosed. +reagent-name-opporozidone = opporozidone +reagent-desc-opporozidone= A difficult to synthesize cryogenic drug used to regenerate rotting tissue and brain matter. + reagent-name-necrosol = necrosol reagent-desc-necrosol = A necrotic substance that seems to be able to heal frozen corpses. It can treat and rejuvenate plants when applied in small doses. reagent-name-aloxadone = aloxadone reagent-desc-aloxadone = A cryogenics chemical. Used to treat severe third degree burns via regeneration of the burnt tissue. Works regardless of the patient being alive or dead. + +reagent-name-mannitol = mannitol +reagent-desc-mannitol = Efficiently restores brain damage. + +reagent-name-psicodine = psicodine +reagent-desc-psicodine = Suppresses anxiety and other various forms of mental distress. Overdose causes hallucinations and minor toxin damage. diff --git a/Resources/Locale/en-US/reagents/meta/narcotics.ftl b/Resources/Locale/en-US/reagents/meta/narcotics.ftl index ea115bf962..d6da259501 100644 --- a/Resources/Locale/en-US/reagents/meta/narcotics.ftl +++ b/Resources/Locale/en-US/reagents/meta/narcotics.ftl @@ -13,9 +13,6 @@ reagent-desc-experimental-stimulants = A prototype version of the stimulant chem reagent-name-thc = THC reagent-desc-thc = The main psychoactive compound in cannabis. -reagent-name-thc-oil = THC oil -reagent-desc-thc-oil = Pure THC oil, extracted from the leaves of the cannabis plant. Much stronger than its natural form and can be used to numb chronic pain in patients. - reagent-name-bananadine = bananadine reagent-desc-bananadine = A mild psychedelic that is found in small traces in banana peels. @@ -39,3 +36,6 @@ reagent-desc-norepinephric-acid = A smooth chemical that blocks the optical rece reagent-name-tear-gas = tear gas reagent-desc-tear-gas = A chemical that causes severe irritation and crying, commonly used in riot control. + +reagent-name-happiness = happiness +reagent-desc-happiness = Fills you with ecstatic numbness and causes minor brain damage. Highly addictive. If overdosed causes sudden mood swings. diff --git a/Resources/Locale/en-US/reagents/meta/physical-desc.ftl b/Resources/Locale/en-US/reagents/meta/physical-desc.ftl index 064b21eaa9..4adb7b9a49 100644 --- a/Resources/Locale/en-US/reagents/meta/physical-desc.ftl +++ b/Resources/Locale/en-US/reagents/meta/physical-desc.ftl @@ -1,5 +1,8 @@ reagent-physical-desc-abrasive = abrasive reagent-physical-desc-acidic = acidic +reagent-physical-desc-soapy = soapy +reagent-physical-desc-ferrous = ferrous +reagent-physical-desc-nothing = nothing reagent-physical-desc-acrid = acrid reagent-physical-desc-alkaline = alkaline reagent-physical-desc-aromatic = aromatic @@ -77,7 +80,6 @@ reagent-physical-desc-sickly = sickly reagent-physical-desc-skunky = skunky reagent-physical-desc-slimy = slimy reagent-physical-desc-soapy = soapy -reagent-physical-desc-soapy = soapy reagent-physical-desc-soothing = soothing reagent-physical-desc-sour = sour reagent-physical-desc-spicy = spicy diff --git a/Resources/Locale/en-US/reagents/meta/toxins.ftl b/Resources/Locale/en-US/reagents/meta/toxins.ftl index fa2a813d1d..66bdbb480b 100644 --- a/Resources/Locale/en-US/reagents/meta/toxins.ftl +++ b/Resources/Locale/en-US/reagents/meta/toxins.ftl @@ -76,6 +76,9 @@ reagent-desc-vestine = Has an adverse reaction within the body causing major jit reagent-name-tazinide = tazinide reagent-desc-tazinide = A highly dangerous metallic mixture which can interfere with most movement through an electrifying current. +reagent-name-lipolicide = lipolicide +reagent-desc-lipolicide = A powerful toxin that will destroy fat cells, massively reducing body weight in a short time. Deadly to those without nutriment in their body. + reagent-name-soulbreaker-toxin = soulbreaker toxin reagent-desc-soulbreaker-toxin = An anti-psionic about 4 times as powerful as mindbreaker toxin. diff --git a/Resources/Locale/en-US/reagents/psicodine.ftl b/Resources/Locale/en-US/reagents/psicodine.ftl new file mode 100644 index 0000000000..c9795b11a9 --- /dev/null +++ b/Resources/Locale/en-US/reagents/psicodine.ftl @@ -0,0 +1,3 @@ +psicodine-effect-fearless = You feel totally fearless! +psicodine-effect-anxieties-wash-away = All of your anxieties wash away! +psicodine-effect-at-peace = You feel completely at peace. diff --git a/Resources/Locale/en-US/research/components/robotics-console.ftl b/Resources/Locale/en-US/research/components/robotics-console.ftl new file mode 100644 index 0000000000..978fa9a43c --- /dev/null +++ b/Resources/Locale/en-US/research/components/robotics-console.ftl @@ -0,0 +1,19 @@ +robotics-console-window-title = Robotics Console +robotics-console-no-cyborgs = No Cyborgs! + +robotics-console-select-cyborg = Select a cyborg above. +robotics-console-model = [color=gray]Model:[/color] {$name} +# name is not formatted to prevent players trolling +robotics-console-designation = [color=gray]Designation:[/color] +robotics-console-battery = [color=gray]Battery charge:[/color] [color={$color}]{$charge}[/color]% +robotics-console-modules = [color=gray]Modules installed:[/color] {$count} +robotics-console-brain = [color=gray]Brain installed:[/color] [color={$brain -> + [true] green]Yes + *[false] red]No +}[/color] + +robotics-console-locked-message = Controls locked, swipe ID. +robotics-console-disable = Disable +robotics-console-destroy = Destroy + +robotics-console-cyborg-destroyed = The cyborg {$name} has been remotely destroyed. diff --git a/Resources/Locale/en-US/research/technologies.ftl b/Resources/Locale/en-US/research/technologies.ftl index 96cb203911..684a08dd9a 100644 --- a/Resources/Locale/en-US/research/technologies.ftl +++ b/Resources/Locale/en-US/research/technologies.ftl @@ -45,7 +45,7 @@ research-technology-magnets-tech = Localized Magnetism research-technology-advanced-parts = Advanced Parts research-technology-anomaly-harnessing = Anomaly Core Harnessing research-technology-grappling = Grappling -research-technology-abnormal-artifact-manipulation = Abnormal Artifact Manipulation +research-technology-abnormal-artifact-manipulation = Artifact Recycling research-technology-gravity-manipulation = Gravity Manipulation research-technology-quantum-leaping = Quantum Leaping research-technology-advanced-anomaly-research = Advanced Anomaly Research diff --git a/Resources/Locale/en-US/salvage/salvage-magnet.ftl b/Resources/Locale/en-US/salvage/salvage-magnet.ftl index 7ce2a486de..027afffef2 100644 --- a/Resources/Locale/en-US/salvage/salvage-magnet.ftl +++ b/Resources/Locale/en-US/salvage/salvage-magnet.ftl @@ -17,6 +17,8 @@ salvage-magnet-resources = {$resource -> [OrePlasma] Plasma [OreUranium] Uranium [OreArtifactFragment] Artifact fragments + [OreBluespace] Bluespace crystals + [OreNormality] Normality crystals *[other] {$resource} } diff --git a/Resources/Locale/en-US/seeds/seeds.ftl b/Resources/Locale/en-US/seeds/seeds.ftl index b398378288..9abfcdaff1 100644 --- a/Resources/Locale/en-US/seeds/seeds.ftl +++ b/Resources/Locale/en-US/seeds/seeds.ftl @@ -1,4 +1,5 @@ # Nouns +# Nouns seeds-noun-seeds = seeds seeds-noun-spores = spores @@ -57,6 +58,8 @@ seeds-eggy-name = egg-plant seeds-eggy-display-name = egg-plants seeds-cannabis-name = cannabis seeds-cannabis-display-name = cannabis +seeds-rainbow-cannabis-name = rainbow cannabis +seeds-rainbow-cannabis-display-name = rainbow cannabis seeds-tobacco-name = tobacco seeds-tobacco-display-name = tobacco plant seeds-nettle-name = nettle @@ -64,7 +67,7 @@ seeds-nettle-display-name = nettles seeds-deathnettle-name = death nettle seeds-deathnettle-display-name = death nettles seeds-chili-name = chili -seeds-chili-display-name = chilis +seeds-chili-display-name = chili peppers seeds-chilly-name = chilly seeds-chilly-display-name = chilly peppers seeds-poppy-name = poppy @@ -111,3 +114,5 @@ seeds-pumpkin-name = pumpkin seeds-pumpkin-display-name = pumpkins seeds-cotton-name = cotton seeds-cotton-display-name = cotton plant +seeds-pyrotton-name = pyrotton +seeds-pyrotton-display-name = pyrotton plant diff --git a/Resources/Locale/en-US/shuttles/thruster.ftl b/Resources/Locale/en-US/shuttles/thruster.ftl index 94035811c7..faed6e8dd2 100644 --- a/Resources/Locale/en-US/shuttles/thruster.ftl +++ b/Resources/Locale/en-US/shuttles/thruster.ftl @@ -3,3 +3,5 @@ thruster-comp-disabled = The thruster is turned [color=red]off[/color]. thruster-comp-nozzle-direction = The nozzle is facing [color=yellow]{$direction}[/color]. thruster-comp-nozzle-exposed = The nozzle [color=green]exposed[/color] to space. thruster-comp-nozzle-not-exposed = The nozzle [color=red]is not exposed[/color] to space. + +thruster-comp-upgrade-thrust = Thrust strength diff --git a/Resources/Locale/en-US/silicons/cyberlimbs.ftl b/Resources/Locale/en-US/silicons/cyberlimbs.ftl index 1f128dd893..7e6746764c 100644 --- a/Resources/Locale/en-US/silicons/cyberlimbs.ftl +++ b/Resources/Locale/en-US/silicons/cyberlimbs.ftl @@ -1,96 +1,237 @@ marking-MobIPCHeadDefault = Standard Operational Monitor +marking-MobIPCHeadDefault-head_m = Head marking-MobIPCTorsoDefault = Standard Robotic Chassis +marking-MobIPCTorsoDefault-torso_m = Chest marking-MobIPCTorsoFemaleDefault = Standard Robotic Chassis -marking-MobIPCLArmDefault = Standard Left Robotic Arm +marking-MobIPCTorsoFemaleDefault-torso_f = Chest +marking-MobIPCLArmDefault = Standard Left Robotic Arm +marking-MobIPCLArmDefault-l_arm = Left Arm marking-MobIPCLHandDefault = Standard Left Robotic Hand -marking-MobIPCLLegDefault = Standard Left Robotic Leg +marking-MobIPCLHandDefault-l_hand = Left Hand +marking-MobIPCLLegDefault = Standard Left Robotic Leg +marking-MobIPCLLegDefault-l_leg = Left Leg marking-MobIPCLFootDefault = Standard Left Robotic Foot +marking-MobIPCLFootDefault-l_foot = Left Foot marking-MobIPCRArmDefault = Standard Right Robotic Arm +marking-MobIPCRArmDefault-r_arm = Right Arm marking-MobIPCRHandDefault = Standard Right Robotic Hand +marking-MobIPCRHandDefault-r_hand = Right Hand marking-MobIPCRLegDefault = Standard Right Robotic Leg +marking-MobIPCRLegDefault-r_leg = Right Leg marking-MobIPCRFootDefault = Standard Right Robotic Foot +marking-MobIPCRFootDefault-r_foot = Right Foot marking-CyberLimbsMarkingBishopHead = Operational Monitor from Bishop Cybernetics +marking-CyberLimbsMarkingBishopHead-head = Primary Monitor +marking-CyberLimbsMarkingBishopHead-head-2 = Secondary Monitor marking-CyberLimbsMarkingBishopHeadAlt = Head from Bishop Cybernetics +marking-CyberLimbsMarkingBishopHeadAlt-head = Head marking-CyberLimbsMarkingBishopHeadAlt1 = Alternate Head from Bishop Cybernetics +marking-CyberLimbsMarkingBishopHeadAlt1-head = Head marking-CyberLimbsMarkingBishopChest = Robotic Chassis from Bishop Cybernetics +marking-CyberLimbsMarkingBishopChest-torso-primary = Primary Torso +marking-CyberLimbsMarkingBishopChest-torso-secondary = Secondary Torso marking-CyberLimbsMarkingBishopLArm = Left Robotic Arm from Bishop Cybernetics +marking-CyberLimbsMarkingBishopLArm-l_arm-primary = Primary Arm +marking-CyberLimbsMarkingBishopLArm-l_arm-secondary = Secondary Arm +marking-CyberLimbsMarkingBishopLArm-l_arm-tertiary = Tertiary Arm marking-CyberLimbsMarkingBishopLHand = Left Robotic Hand from Bishop Cybernetics +marking-CyberLimbsMarkingBishopLHand-l_hand = Left Hand marking-CyberLimbsMarkingBishopLLeg = Left Robotic Leg from Bishop Cybernetics +marking-CyberLimbsMarkingBishopLLeg-l_leg-primary = Primary Leg +marking-CyberLimbsMarkingBishopLLeg-l_leg-secondary = Secondary Leg marking-CyberLimbsMarkingBishopLFoot = Left Robotic Foot from Bishop Cybernetics +marking-CyberLimbsMarkingBishopLFoot-l_foot = Left Foot marking-CyberLimbsMarkingBishopRArm = Right Robotic Arm from Bishop Cybernetics +marking-CyberLimbsMarkingBishopRArm-r_arm-primary = Primary Arm +marking-CyberLimbsMarkingBishopRArm-r_arm-secondary = Secondary Arm +marking-CyberLimbsMarkingBishopRArm-r_arm-tertiary = Tertiary Arm marking-CyberLimbsMarkingBishopRHand = Right Robotic Hand from Bishop Cybernetics +marking-CyberLimbsMarkingBishopRHand-r_hand = Hand marking-CyberLimbsMarkingBishopRLeg = Right Robotic Leg from Bishop Cybernetics +marking-CyberLimbsMarkingBishopRLeg-r_leg-primary = Primary Leg +marking-CyberLimbsMarkingBishopRLeg-r_leg-secondary = Secondary Leg marking-CyberLimbsMarkingBishopRFoot = Right Robotic Foot from Bishop Cybernetics +marking-CyberLimbsMarkingBishopRFoot-r_foot = Right Foot marking-CyberLimbsMarkingHesphiastosHead = Operational Monitor from Hesphiastos Industries +marking-CyberLimbsMarkingHesphiastosHead-head-1 = Primary Head +marking-CyberLimbsMarkingHesphiastosHead-head-2 = Primary Head marking-CyberLimbsMarkingHesphiastosHeadAlt = Head from Hesphiastos Industries +marking-CyberLimbsMarkingHesphiastosHeadAlt-head-1 = Primary Head +marking-CyberLimbsMarkingHesphiastosHeadAlt-head-2 = Secondary Head +marking-CyberLimbsMarkingHesphiastosHeadAlt-head-3 = Tertiary Head marking-CyberLimbsMarkingHesphiastosChest = Robotic Chassis from Hesphiastos Industries +marking-CyberLimbsMarkingHesphiastosChest-torso-1 = Primary Chest +marking-CyberLimbsMarkingHesphiastosChest-torso-2 = Secondary Chest marking-CyberLimbsMarkingHesphiastosLArm = Left Robotic Arm from Hesphiastos Industries +marking-CyberLimbsMarkingHesphiastosLArm-l_arm-1 = Primary Arm +marking-CyberLimbsMarkingHesphiastosLArm-l_arm-2 = Secondary Arm marking-CyberLimbsMarkingHesphiastosLHand = Left Robotic Hand from Hesphiastos Industries +marking-CyberLimbsMarkingHesphiastosLHand-l_hand-1 = Primary Hand +marking-CyberLimbsMarkingHesphiastosLHand-l_hand-2 = Secondary Hand marking-CyberLimbsMarkingHesphiastosLLeg = Left Robotic Leg from Hesphiastos Industries +marking-CyberLimbsMarkingHesphiastosLLeg-l_leg-1 = Primary Leg +marking-CyberLimbsMarkingHesphiastosLLeg-l_leg-2 = Secondary Leg marking-CyberLimbsMarkingHesphiastosLFoot = Left Robotic Foot from Hesphiastos Industries +marking-CyberLimbsMarkingHesphiastosLFoot-l_foot-1 = Primary Foot +marking-CyberLimbsMarkingHesphiastosLFoot-l_foot-2 = Secondary Foot marking-CyberLimbsMarkingHesphiastosRArm = Right Robotic Arm from Hesphiastos Industries +marking-CyberLimbsMarkingHesphiastosRArm-r_arm-1 = Primary Arm +marking-CyberLimbsMarkingHesphiastosRArm-r_arm-2 = Secondary Arm marking-CyberLimbsMarkingHesphiastosRHand = Right Robotic Hand from Hesphiastos Industries +marking-CyberLimbsMarkingHesphiastosRHand-r_hand-1 = Primary Hand +marking-CyberLimbsMarkingHesphiastosRHand-r_hand-2 = Secondary Hand marking-CyberLimbsMarkingHesphiastosRLeg = Right Robotic Leg from Hesphiastos Industries +marking-CyberLimbsMarkingHesphiastosRLeg-r_leg-1 = Primary Leg +marking-CyberLimbsMarkingHesphiastosRLeg-r_leg-2 = Secondary Leg marking-CyberLimbsMarkingHesphiastosRFoot = Right Robotic Foot from Hesphiastos Industries +marking-CyberLimbsMarkingHesphiastosRFoot-r_foot-1 = Primary Foot +marking-CyberLimbsMarkingHesphiastosRFoot-r_foot-2 = Secondary Foot marking-CyberLimbsMarkingWardtakahashiHead = Operational Monitor from Ward-Takahashi +marking-CyberLimbsMarkingWardtakahashiHead-head = Head marking-CyberLimbsMarkingWardtakahashiHeadAlt = Head from Ward-Takahashi +marking-CyberLimbsMarkingWardtakahashiHeadAlt-head = Head marking-CyberLimbsMarkingWardtakahashiHeadAlt1 = Alternate Head from Ward-Takahashi +marking-CyberLimbsMarkingWardtakahashiHeadAlt1-head = Head marking-CyberLimbsMarkingWardtakahashiChest = Robotic Chassis from Ward-Takahashi +marking-CyberLimbsMarkingWardtakahashiChest-torso = Chest marking-CyberLimbsMarkingWardtakahashiLArm = Left Robotic Arm from Ward-Takahashi +marking-CyberLimbsMarkingWardtakahashiLArm-l_arm = Left Arm marking-CyberLimbsMarkingWardtakahashiLHand = Left Robotic Hand from Ward-Takahashi +marking-CyberLimbsMarkingWardtakahashiLHand-l_hand = Left Hand marking-CyberLimbsMarkingWardtakahashiLLeg = Left Robotic Leg from Ward-Takahashi +marking-CyberLimbsMarkingWardtakahashiLLeg-l_leg = Left Leg marking-CyberLimbsMarkingWardtakahashiLFoot = Left Robotic Foot from Ward-Takahashi +marking-CyberLimbsMarkingWardtakahashiLFoot-l_foot = Left Foot marking-CyberLimbsMarkingWardtakahashiRArm = Right Robotic Arm from Ward-Takahashi +marking-CyberLimbsMarkingWardtakahashiRArm-r_arm = Right Arm marking-CyberLimbsMarkingWardtakahashiRHand = Right Robotic Hand from Ward-Takahashi +marking-CyberLimbsMarkingWardtakahashiRHand-r_hand = Right Hand marking-CyberLimbsMarkingWardtakahashiRLeg = Right Robotic Leg from Ward-Takahashi +marking-CyberLimbsMarkingWardtakahashiRLeg-r_leg = Right Leg marking-CyberLimbsMarkingWardtakahashiRFoot = Right Robotic Foot from Ward-Takahashi +marking-CyberLimbsMarkingWardtakahashiRFoot-r_foot = Right Foot marking-CyberLimbsMarkingXionHead = Operational Monitor from Xion Manufacturing Group +marking-CyberLimbsMarkingXionHead-head-1 = Primary Head +marking-CyberLimbsMarkingXionHead-head-2 = Secondary Head marking-CyberLimbsMarkingXionHeadAlt = Head from Xion Manufacturing Group +marking-CyberLimbsMarkingXionHeadAlt-head-1 = Primary Head +marking-CyberLimbsMarkingXionHeadAlt-head-2 = Secondary Head marking-CyberLimbsMarkingXionChest = Robotic Chassis from Xion Manufacturing Group +marking-CyberLimbsMarkingXionChest-torso-1 = Primary Chest +marking-CyberLimbsMarkingXionChest-torso-2 = Secondary Chest marking-CyberLimbsMarkingXionLArm = Left Robotic Arm from Xion Manufacturing Group +marking-CyberLimbsMarkingXionLArm-l_arm-1 = Primary Arm +marking-CyberLimbsMarkingXionLArm-l_arm-2 = Secondary Arm marking-CyberLimbsMarkingXionLHand = Left Robotic Hand from Xion Manufacturing Group +marking-CyberLimbsMarkingXionLHand-l_hand-1 = Primary Hand +marking-CyberLimbsMarkingXionLHand-l_hand-2 = Secondary Hand marking-CyberLimbsMarkingXionLLeg = Left Robotic Leg from Xion Manufacturing Group +marking-CyberLimbsMarkingXionLLeg-l_leg-1 = Primary Leg +marking-CyberLimbsMarkingXionLLeg-l_leg-2 = Secondary Leg marking-CyberLimbsMarkingXionLFoot = Left Robotic Foot from Xion Manufacturing Group +marking-CyberLimbsMarkingXionLFoot-l_foot-1 = Primary Foot +marking-CyberLimbsMarkingXionLFoot-l_foot-1 = Secondary Foot marking-CyberLimbsMarkingXionRArm = Right Robotic Arm from Xion Manufacturing Group +marking-CyberLimbsMarkingXionRArm-r_arm-1 = Primary Arm +marking-CyberLimbsMarkingXionRArm-r_arm-2 = Secondary Arm marking-CyberLimbsMarkingXionRHand = Right Robotic Hand from Xion Manufacturing Group +marking-CyberLimbsMarkingXionRHand-r_hand-1 = Primary Hand +marking-CyberLimbsMarkingXionRHand-r_hand-2 = Secondary Hand marking-CyberLimbsMarkingXionRLeg = Right Robotic Leg from Xion Manufacturing Group +marking-CyberLimbsMarkingXionRLeg-r_leg-1 = Primary Leg +marking-CyberLimbsMarkingXionRLeg-r_leg-2 = Secondary Leg marking-CyberLimbsMarkingXionRFoot = Right Robotic Foot from Xion Manufacturing Group +marking-CyberLimbsMarkingXionRFoot-r_foot-1 = Primary Foot +marking-CyberLimbsMarkingXionRFoot-r_foot-1 = Secondary Foot marking-CyberLimbsMarkingShellguardHead = Operational Monitor from Shellguard Munitions +marking-CyberLimbsMarkingShellguardHead-head-1 = Primary Head +marking-CyberLimbsMarkingShellguardHead-head-2 = Secondary Head marking-CyberLimbsMarkingShellguardHeadAlt = Head from Shellguard Munitions +marking-CyberLimbsMarkingShellguardHeadAlt-head-1 = Primary Head +marking-CyberLimbsMarkingShellguardHeadAlt-head-2 = Secondary Head marking-CyberLimbsMarkingShellguardChest = Robotic Chassis from Shellguard Munitions +marking-CyberLimbsMarkingShellguardChest-torso-1 = Primary Chest +marking-CyberLimbsMarkingShellguardChest-torso-2 = Secondary Chest marking-CyberLimbsMarkingShellguardLArm = Left Robotic Arm from Shellguard Munitions +marking-CyberLimbsMarkingShellguardLArm-l_arm-1 = Primary Arm +marking-CyberLimbsMarkingShellguardLArm-l_arm-2 = Secondary Arm marking-CyberLimbsMarkingShellguardLHand = Left Robotic Hand from Shellguard Munitions +marking-CyberLimbsMarkingShellguardLHand-l_hand-1 = Primary Hand +marking-CyberLimbsMarkingShellguardLHand-l_hand-2 = Secondary Hand marking-CyberLimbsMarkingShellguardLLeg = Left Robotic Leg from Shellguard Munitions +marking-CyberLimbsMarkingShellguardLLeg-l_leg-1 = Primary Leg +marking-CyberLimbsMarkingShellguardLLeg-l_leg-2 = Secondary Leg marking-CyberLimbsMarkingShellguardLFoot = Left Robotic Foot from Shellguard Munitions +marking-CyberLimbsMarkingShellguardLFoot-l_foot-1 = Primary Foot +marking-CyberLimbsMarkingShellguardLFoot-l_foot-2 = Secondary Foot marking-CyberLimbsMarkingShellguardRArm = Right Robotic Arm from Shellguard Munitions +marking-CyberLimbsMarkingShellguardRArm-r_arm-1 = Primary Arm +marking-CyberLimbsMarkingShellguardRArm-r_arm-2 = Secondary Arm marking-CyberLimbsMarkingShellguardRHand = Right Robotic Hand from Shellguard Munitions +marking-CyberLimbsMarkingShellguardRHand-r_hand-1 = Primary Hand +marking-CyberLimbsMarkingShellguardRHand-r_hand-2 = Secondary Hand marking-CyberLimbsMarkingShellguardRLeg = Right Robotic Leg from Shellguard Munitions +marking-CyberLimbsMarkingShellguardRLeg-r_leg-1 = Primary Leg +marking-CyberLimbsMarkingShellguardRLeg-r_leg-2 = Secondary Leg marking-CyberLimbsMarkingShellguardRFoot = Right Robotic Foot from Shellguard Munitions +marking-CyberLimbsMarkingShellguardRFoot-r_foot-1 = Primary Foot +marking-CyberLimbsMarkingShellguardRFoot-r_foot-2 = Secondary Foot marking-CyberLimbsMarkingMorpheusHead = Operational Monitor from Morpheus Cyberkinetics +marking-CyberLimbsMarkingMorpheusHead-head = Head marking-CyberLimbsMarkingMorpheusHeadAlt = Head from Morpheus Cyberkinetics +marking-CyberLimbsMarkingMorpheusHeadAlt-head = Head marking-CyberLimbsMarkingMorpheusChest = Robotic Chassis from Morpheus Cyberkinetics +marking-CyberLimbsMarkingMorpheusChest-torso = Chest marking-CyberLimbsMarkingMorpheusLArm = Left Robotic Arm from Morpheus Cyberkinetics +marking-CyberLimbsMarkingMorpheusLArm-l_arm = Left Arm marking-CyberLimbsMarkingMorpheusLHand = Left Robotic Hand from Morpheus Cyberkinetics +marking-CyberLimbsMarkingMorpheusLHand-l_hand = Left Hand marking-CyberLimbsMarkingMorpheusLLeg = Left Robotic Leg from Morpheus Cyberkinetics +marking-CyberLimbsMarkingMorpheusLLeg-l_leg = Left Leg marking-CyberLimbsMarkingMorpheusLFoot = Left Robotic Foot from Morpheus Cyberkinetics +marking-CyberLimbsMarkingMorpheusLFoot-l_foot = Left Foot marking-CyberLimbsMarkingMorpheusRArm = Right Robotic Arm from Morpheus Cyberkinetics +marking-CyberLimbsMarkingMorpheusRArm-r_arm = Right Arm marking-CyberLimbsMarkingMorpheusRHand = Right Robotic Hand from Morpheus Cyberkinetics +marking-CyberLimbsMarkingMorpheusRHand-r_hand = Right Hand marking-CyberLimbsMarkingMorpheusRLeg = Right Robotic Leg from Morpheus Cyberkinetics +marking-CyberLimbsMarkingMorpheusRLeg-r_leg = Right Leg marking-CyberLimbsMarkingMorpheusRFoot = Right Robotic Foot from Morpheus Cyberkinetics +marking-CyberLimbsMarkingMorpheusRFoot-r_foot = Right Foot marking-CyberLimbsMarkingZenghuHead = Head from Zenghu Pharmaceuticals +marking-CyberLimbsMarkingZenghuHead-head-1 = Primary Head +marking-CyberLimbsMarkingZenghuHead-head-2 = Secondary Head marking-CyberLimbsMarkingZenghuChest = Robotic Chassis from Zenghu Pharmaceuticals -marking-CyberLimbsMarkingZenghuRHand = Right Robotic Hand from Zenghu Pharmaceuticals -marking-CyberLimbsMarkingZenghuRArm = Right Robotic Arm from Zenghu Pharmaceuticals -marking-CyberLimbsMarkingZenghuLHand = Left Robotic Hand from Zenghu Pharmaceuticals +marking-CyberLimbsMarkingZenghuChest-torso-1 = Primary Chest +marking-CyberLimbsMarkingZenghuChest-torso-2 = Secondary Chest marking-CyberLimbsMarkingZenghuLArm = Left Robotic Arm from Zenghu Pharmaceuticals +marking-CyberLimbsMarkingZenghuLArm-l_arm-1 = Primary Arm +marking-CyberLimbsMarkingZenghuLArm-l_arm-2 = Secondary Arm +marking-CyberLimbsMarkingZenghuLHand = Left Robotic Hand from Zenghu Pharmaceuticals +marking-CyberLimbsMarkingZenghuLHand-l_hand-1 = Primary Hand +marking-CyberLimbsMarkingZenghuLHand-l_hand-2 = Secondary Hand +marking-CyberLimbsMarkingZenghuLLeg = Left Robotic Leg from Zenghu Pharmaceuticals +marking-CyberLimbsMarkingZenghuLLeg-l_leg-1 = Primary Leg +marking-CyberLimbsMarkingZenghuLLeg-l_leg-2 = Secondary Leg +marking-CyberLimbsMarkingZenghuLFoot = Left Robotic Foot from Zenghu Pharmaceuticals +marking-CyberLimbsMarkingZenghuLFoot-l_foot-1 = Primary Foot +marking-CyberLimbsMarkingZenghuLFoot-l_foot-2 = Secondary Foot +marking-CyberLimbsMarkingZenghuRArm = Right Robotic Arm from Zenghu Pharmaceuticals +marking-CyberLimbsMarkingZenghuRArm-r_arm-1 = Primary Arm +marking-CyberLimbsMarkingZenghuRArm-r_arm-2 = Secondary Arm +marking-CyberLimbsMarkingZenghuRHand = Right Robotic Hand from Zenghu Pharmaceuticals +marking-CyberLimbsMarkingZenghuRHand-r_hand-1 = Primary Hand +marking-CyberLimbsMarkingZenghuRHand-r_hand-2 = Secondary Hand marking-CyberLimbsMarkingZenghuRLeg = Right Robotic Leg from Zenghu Pharmaceuticals +marking-CyberLimbsMarkingZenghuRLeg-r_leg-1 = Primary Leg +marking-CyberLimbsMarkingZenghuRLeg-r_leg-2 = Secondary Leg marking-CyberLimbsMarkingZenghuRFoot = Right Robotic Foot from Zenghu Pharmaceuticals -marking-CyberLimbsMarkingZenghuLLeg = Left Robotic Leg from Zenghu Pharmaceuticals -marking-CyberLimbsMarkingZenghuLFoot = Left Robotic Foot from Zenghu Pharmaceuticals \ No newline at end of file +marking-CyberLimbsMarkingZenghuRFoot-r_foot-1 = Primary Foot +marking-CyberLimbsMarkingZenghuRFoot-r_foot-2 = Secondary Foot \ No newline at end of file diff --git a/Resources/Locale/en-US/singularity/components/emitter-component.ftl b/Resources/Locale/en-US/singularity/components/emitter-component.ftl index c71b3d6bdf..c7db1a93bb 100644 --- a/Resources/Locale/en-US/singularity/components/emitter-component.ftl +++ b/Resources/Locale/en-US/singularity/components/emitter-component.ftl @@ -11,5 +11,8 @@ comp-emitter-turned-off = The {$target} turns off. # Shows if the user attempts to activate the emitter while it's un-anchored. comp-emitter-not-anchored = The {$target} isn't anchored to the ground! +# Upgrades +emitter-component-upgrade-fire-rate = fire rate + emitter-component-current-type = The current selected type is: {$type}. emitter-component-type-set = Type set to: {$type} diff --git a/Resources/Locale/en-US/sleep/narcolepsy.ftl b/Resources/Locale/en-US/sleep/narcolepsy.ftl new file mode 100644 index 0000000000..c8e130fe18 --- /dev/null +++ b/Resources/Locale/en-US/sleep/narcolepsy.ftl @@ -0,0 +1,9 @@ +narcolepsy-warning-popup-1 = A wave of drowsiness washes over you, making it hard to focus... +narcolepsy-warning-popup-2 = Your surroundings blur as a sudden fatigue pulls at your consciousness... +narcolepsy-warning-popup-3 = Your head feels heavy, and you struggle to resist the pull of slumber... +narcolepsy-warning-popup-4 = Time seems to stretch, and you can’t help but feel the lure of a quick nap... +narcolepsy-warning-popup-5 = Your body grows heavy, and you instinctively seek a comfortable place to rest... + +narcolepsy-wakeup-popup-1 = You awaken, feeling refreshed and alert once more. +narcolepsy-wakeup-popup-2 = The world comes into focus as you shake off the last vestiges of slumber. +narcolepsy-wakeup-popup-3 = Your mind clears up, leaving the feeling of drowsiness behind. diff --git a/Resources/Locale/en-US/species/species.ftl b/Resources/Locale/en-US/species/species.ftl index f492959a43..6c40c45404 100644 --- a/Resources/Locale/en-US/species/species.ftl +++ b/Resources/Locale/en-US/species/species.ftl @@ -2,7 +2,7 @@ species-name-human = Human species-name-dwarf = Dwarf -species-name-reptilian = Reptilian +species-name-reptilian = Unathi species-name-slime = Slime Person species-name-diona = Diona species-name-arachnid = Arachnid diff --git a/Resources/Locale/en-US/speech/speech-liar.ftl b/Resources/Locale/en-US/speech/speech-liar.ftl new file mode 100644 index 0000000000..4f157d2e23 --- /dev/null +++ b/Resources/Locale/en-US/speech/speech-liar.ftl @@ -0,0 +1,132 @@ +liar-word-1 = yes +liar-word-replacement-1 = no + +liar-word-2 = no +liar-word-replacement-2 = yes + +liar-word-3 = yeah +liar-word-replacement-3 = nah + +liar-word-4 = nah +liar-word-replacement-4 = yeah + +liar-word-5 = yep +liar-word-replacement-5 = nope + +liar-word-6 = nope +liar-word-replacement-6 = yep + +liar-word-7 = sure +liar-word-replacement-7 = nah + +liar-word-8 = was +liar-word-replacement-8 = wasnt + +liar-word-9 = wasnt +liar-word-replacement-9 = was + +liar-word-10 = was +liar-word-replacement-10 = wasnt + +liar-word-11 = is +liar-word-replacement-11 = isnt + +liar-word-12 = will +liar-word-replacement-12 = wont + +liar-word-13 = dont +liar-word-replacement-13 = "" + +liar-word-14 = can +liar-word-replacement-14 = cant + +liar-word-15 = cant +liar-word-replacement-15 = can + +liar-word-16 = should +liar-word-replacement-16 = shouldnt + +liar-word-17 = dead +liar-word-replacement-17 = alive + +liar-word-18 = alive +liar-word-replacement-18 = dead + +liar-word-19 = does +liar-word-replacement-19 = doesnt + +liar-word-20 = did +liar-word-replacement-20 = didnt + +liar-word-21 = didnt +liar-word-replacement-21 = "" + +liar-word-22 = nothing +liar-word-replacement-22 = something + +liar-word-23 = something +liar-word-replacement-23 = nothing + +liar-word-24 = somebody +liar-word-replacement-24 = nobody + +liar-word-25 = nobody +liar-word-replacement-25 = somebody + +liar-word-26 = can +liar-word-replacement-26 = "can't" + +liar-word-27 = "can't" +liar-word-replacement-27 = can + +liar-word-28 = should +liar-word-replacement-28 = "shouldn't" + +liar-word-29 = do +liar-word-replacement-29 = "don't" + +liar-word-30 = "don't" +liar-word-replacement-30 = "" + +liar-word-31 = does +liar-word-replacement-31 = "doesn't" + +liar-word-32 = did +liar-word-replacement-32 = "didn't" + +liar-word-33 = "didn't" +liar-word-replacement-33 = did + +liar-word-34 = ye +liar-word-34-2 = ya +liar-word-replacement-34 = na + +liar-word-35 = na +liar-word-replacement-35 = ye + +liar-word-36 = yuh +liar-word-replacement-36 = nuh + +liar-word-37 = nuh +liar-word-replacement-37 = yuh + +liar-word-38 = love +liar-word-replacement-38 = hate + +liar-word-39 = hate +liar-word-replacement-39 = love + +liar-word-40 = like +liar-word-replacement-40 = don't like + +liar-word-41 = good +liar-word-replacement-41 = bad + +liar-word-42 = bad +liar-word-replacement-42 = good + +liar-word-43 = want +liar-word-replacement-43 = "don't want" + +liar-word-44 = not +liar-word-replacement-44 = "" diff --git a/Resources/Locale/en-US/station-events/events/intercept.ftl b/Resources/Locale/en-US/station-events/events/intercept.ftl new file mode 100644 index 0000000000..3f84b027be --- /dev/null +++ b/Resources/Locale/en-US/station-events/events/intercept.ftl @@ -0,0 +1 @@ +station-event-communication-interception = Attention! Enemy communication intercepted. Security level elevated. diff --git a/Resources/Locale/en-US/station-events/events/unknown-shuttle.ftl b/Resources/Locale/en-US/station-events/events/unknown-shuttle.ftl new file mode 100644 index 0000000000..c94b32c54c --- /dev/null +++ b/Resources/Locale/en-US/station-events/events/unknown-shuttle.ftl @@ -0,0 +1 @@ +station-event-unknown-shuttle-incoming = Attention! An unidentified space shuttle has been spotted approaching your sector. \ No newline at end of file diff --git a/Resources/Locale/en-US/station-events/events/vent-critters.ftl b/Resources/Locale/en-US/station-events/events/vent-critters.ftl index 04b124d824..d99906be4a 100644 --- a/Resources/Locale/en-US/station-events/events/vent-critters.ftl +++ b/Resources/Locale/en-US/station-events/events/vent-critters.ftl @@ -2,7 +2,14 @@ station-event-slimes-spawn-announcement = Attention. A large influx of unknown life forms have been detected residing within the station's ventilation systems. Please be rid of these creatures before it begins to affect productivity. station-event-vent-critters-announcement = Attention. A large influx of unknown life forms have been detected residing within the station's ventilation systems. Please be rid of these creatures before it begins to affect productivity. station-event-spider-spawn-announcement = Attention. A large influx of unknown life forms have been detected residing within the station's ventilation systems. Please be rid of these creatures before it begins to affect productivity. - +station-event-reagentslime-vents-announcement = Attention. A large influx of unknown life forms have been detected residing within the station's ventilation systems. Please be rid of these creatures before it begins to affect productivity. +station-event-meat-vents-announcement = Attention. A large influx of unknown life forms have been detected residing within the station's ventilation systems. Please be rid of these creatures before it begins to affect productivity. +station-event-neutral-xeno-vents-announcement = Confirmed sightings of alien wildlife on the station. Personnel are advised to arm themselves, barricade doors, and defend themselves if necessary. Security is advised to investigate the threat as soon as possible. +station-event-tick-vents-announcement = Confirmed sightings of hostile alien wildlife on the station. Personnel are advised to arm themselves, barricade doors, and defend themselves if necessary. Security is advised to eradicate the threat as soon as possible. +station-event-argocyte-vents-announcement = Confirmed sightings of hostile alien wildlife on the station. Personnel are advised to arm themselves, barricade doors, and defend themselves if necessary. Security is advised to eradicate the threat as soon as possible. +station-event-light-vents-announcement = Confirmed sightings of hostile alien wildlife on the station. Personnel are advised to arm themselves, barricade doors, and defend themselves if necessary. Security is advised to eradicate the threat as soon as possible. +station-event-carp-vents-announcement = Confirmed sightings of hostile alien wildlife on the station. Personnel are advised to arm themselves, barricade doors, and defend themselves if necessary. Security is advised to eradicate the threat as soon as possible. +station-event-space-vents-announcement = Confirmed sightings of hostile wildlife on the station. Personnel are advised to arm themselves, barricade doors, and defend themselves if necessary. Security is advised to eradicate the threat as soon as possible. # Weak station-event-slimes-spawn-weak-announcement = Attention. A moderate influx of unknown life forms have been detected residing within the station's ventilation systems. Please be rid of these creatures before it begins to affect productivity. station-event-spider-spawn-weak-announcement = Attention. A moderate influx of unknown life forms have been detected residing within the station's ventilation systems. Please be rid of these creatures before it begins to affect productivity. diff --git a/Resources/Locale/en-US/station-laws/laws.ftl b/Resources/Locale/en-US/station-laws/laws.ftl index f73755a359..6b5ca57872 100644 --- a/Resources/Locale/en-US/station-laws/laws.ftl +++ b/Resources/Locale/en-US/station-laws/laws.ftl @@ -42,5 +42,3 @@ laws-ui-state-law = State law: laws-notify = You are bound to silicon laws, which you can view via the sidebar action. You are required to always follow your laws. laws-update-notify = Your laws have been updated. You can view the changes via the sidebar action. - -laws-compromised-examine = The [color=red]law-governing[/color] internals seem damaged... diff --git a/Resources/Locale/en-US/step-trigger/shoes-required.ftl b/Resources/Locale/en-US/step-trigger/shoes-required.ftl index 8c1369a49f..07a4b8a84f 100644 --- a/Resources/Locale/en-US/step-trigger/shoes-required.ftl +++ b/Resources/Locale/en-US/step-trigger/shoes-required.ftl @@ -1 +1 @@ -shoes-required-step-trigger-examine = You probably shouldn't step on this barefoot. +clothing-required-step-trigger-examine = You probably shouldn't step on this barefoot. diff --git a/Resources/Locale/en-US/store/categories.ftl b/Resources/Locale/en-US/store/categories.ftl index b6abc3e428..0d0dc4aecc 100644 --- a/Resources/Locale/en-US/store/categories.ftl +++ b/Resources/Locale/en-US/store/categories.ftl @@ -16,3 +16,11 @@ store-category-deception = Deception # Revenant store-category-abilities = Abilities + +# Wizard +store-caregory-spellbook-offensive = Offensive Spells +store-caregory-spellbook-defensive = Defensive Spells +store-caregory-spellbook-utility = Utility Spells +store-caregory-spellbook-equipment = Wizard Equipment +store-caregory-spellbook-events = Event Spells + diff --git a/Resources/Locale/en-US/store/currency.ftl b/Resources/Locale/en-US/store/currency.ftl index 5d7ed95935..ada70b5597 100644 --- a/Resources/Locale/en-US/store/currency.ftl +++ b/Resources/Locale/en-US/store/currency.ftl @@ -1,4 +1,4 @@ -store-currency-inserted = {CAPITALIZE(THE($used))} is inserted into the {THE($target)}. +store-currency-inserted = {CAPITALIZE(THE($used))} is inserted into {THE($target)}. store-currency-war-boost-given = { CAPITALIZE($target) } starts buzzing store-currency-inserted-implant = {CAPITALIZE(THE($used))} is inserted into your implant. @@ -9,3 +9,4 @@ store-currency-display-debugdollar = {$amount -> } store-currency-display-telecrystal = TC store-currency-display-stolen-essence = Stolen Essence +store-currency-display-wizcoin = Wiz€oin™ diff --git a/Resources/Locale/en-US/store/sales.ftl b/Resources/Locale/en-US/store/sales.ftl new file mode 100644 index 0000000000..7223a8a0dc --- /dev/null +++ b/Resources/Locale/en-US/store/sales.ftl @@ -0,0 +1,2 @@ +store-sales-amount = [DISCOUNT] { $amount }%! +store-sales-over = [The sale is over] diff --git a/Resources/Locale/en-US/store/spellbook-catalog.ftl b/Resources/Locale/en-US/store/spellbook-catalog.ftl new file mode 100644 index 0000000000..457f02916f --- /dev/null +++ b/Resources/Locale/en-US/store/spellbook-catalog.ftl @@ -0,0 +1,35 @@ +# Spells +spellbook-fireball-name = Fireball +spellbook-fireball-desc = Get most crew exploding with rage when they see this fireball heading toward them! + +spellbook-blink-name = Blink +spellbook-blink-desc = Don't blink or you'll miss yourself teleporting away. + +spellbook-force-wall-name = Force Wall +spellbook-force-wall-desc = Make three walls of pure force that you can pass through, but other's can't. + +spellbook-polymoprh-spider-name = Spider Polymoprh +spellbook-polymorph-spider-desc = Transforms you into a spider, man! + +spellbook-polymorph-rod-name = Rod Polymorph +spellbook-polymorph-rod-desc = Change into an Immovable Rod with limited movement. + +spellbook-charge-name = Charge +spellbook-charge-desc = Adds a charge back to your wand! + +# Equipment + +spellbook-wand-polymorph-door-name = Wand of Entrance +spellbook-wand-polymorph-door-description = For when you need a get-away route. + +spellbook-wand-polymorph-carp-name = Wand of Carp Polymorph +spellbook-wand-polymorph-carp-description = For when you need a carp filet quick and the clown is looking juicy. + +# Events + +spellbook-event-summon-ghosts-name = Summon Ghosts +spellbook-event-summon-ghosts-description = Who ya gonna call? + +# Upgrades +spellbook-upgrade-fireball-name = Upgrade Fireball +spellbook-upgrade-fireball-description = Upgrades Fireball to a maximum of level 3! diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 67d221d9b6..ad7639143b 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -121,8 +121,8 @@ uplink-agent-id-card-desc = A modified ID card that can copy accesses from other uplink-black-jetpack-name = Black Jetpack uplink-black-jetpack-desc = A black jetpack. It allows you to fly around in space. Refills not included, use your fuel wisely. -uplink-reinforcement-radio-monkey-name = Monkey Reinforcement Teleporter -uplink-reinforcement-radio-monkey-desc = Call in a trained monkey to assist you. Comes with a single syndicate cigarette. +uplink-reinforcement-radio-ancestor-name = Genetic Ancestor Reinforcement Teleporter +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. @@ -157,6 +157,9 @@ uplink-radio-jammer-desc = This device will disrupt any nearby outgoing radio co uplink-syndicate-weapon-module-name = Weapon Cyborg Module uplink-syndicate-weapon-module-desc = This module will give a cyborg advanced laser and machete +uplink-syndicate-martyr-module-name = Martyr Cyborg Module +uplink-syndicate-martyr-module-desc = Turn your emagged borg friend into a walking bomb with just this module. Make sure they're loyal to your cause, results may vary. + uplink-singularity-beacon-name = Singularity Beacon uplink-singularity-beacon-desc = A device that attracts singularities. Has to be anchored and powered. Causes singularities to grow when consumed. @@ -287,6 +290,9 @@ uplink-disposable-turret-desc = Looks and functions like a normal electrical too uplink-cluster-banana-peel-name = Cluster Banana uplink-cluster-banana-peel-desc = Splits into 6 explosive banana peels after being thrown, the peels detonate automatically after 20 seconds if nobody slips on them. +uplink-cane-blade-name = Cane Blade +uplink-cane-blade-desc = A cane that has a hidden blade that can be unsheathed. + # Armor uplink-chameleon-name = Chameleon Kit uplink-chameleon-desc = A backpack full of items that contain chameleon technology allowing you to disguise as pretty much anything on the station, and more! @@ -367,6 +373,9 @@ uplink-slipocalypse-clustersoap-desc = Scatters arounds small pieces of syndicat uplink-mobcat-microbomb-name = SyndiCat uplink-mobcat-microbomb-desc = A hand cat equipped with a microbomb implant. Explodes when seriously injured. Can bite painfully +uplink-chameleon-projector-name = Chameleon Projector +uplink-chameleon-projector-desc = Disappear in plain sight by creating a hologram of an item around you. Do not use this to play the game "Object Search". + # Pointless uplink-revolver-cap-gun-name = Cap Gun uplink-revolver-cap-gun-desc = Looks almost like the real thing! Ages 8 and up. diff --git a/Resources/Locale/en-US/thief/backpack.ftl b/Resources/Locale/en-US/thief/backpack.ftl index 31b87c6f02..90cb0031fb 100644 --- a/Resources/Locale/en-US/thief/backpack.ftl +++ b/Resources/Locale/en-US/thief/backpack.ftl @@ -15,9 +15,9 @@ thief-backpack-button-deselect = Select [X] thief-backpack-category-chameleon-name = chameleon's kit thief-backpack-category-chameleon-description = - Includes a full set of clothing that contain - chameleon technology, allowing you to disguise - as pretty much anything on the station. + Includes a full set of clothing that contains chameleon technology, + Contains a chameleon projector to help disguise yourself as objects, + You'll be able to disguise yourself as almost anything and anyone. thief-backpack-category-tools-name = bearcatcher's kit thief-backpack-category-tools-description = diff --git a/Resources/Locale/en-US/tools/components/welder-component.ftl b/Resources/Locale/en-US/tools/components/welder-component.ftl index 681975deb8..6307068521 100644 --- a/Resources/Locale/en-US/tools/components/welder-component.ftl +++ b/Resources/Locale/en-US/tools/components/welder-component.ftl @@ -4,7 +4,8 @@ welder-component-no-fuel-message = The welder has no fuel left! welder-component-no-fuel-in-tank = The {$owner} is empty. welder-component-on-examine-welder-lit-message = [color=orange]Lit[/color] welder-component-on-examine-welder-not-lit-message = Not lit -welder-component-on-examine-detailed-message = Fuel: [color={$colorName}]{$fuelLeft}/{$fuelCapacity}[/color]. {$status} +welder-component-on-examine-detailed-message = Fuel: [color={$colorName}]{$fuelLeft}/{$fuelCapacity}[/color] + {$status} welder-component-suicide-lit-others-message = {$victim} welds their every orifice closed! It looks like they are trying to commit suicide! welder-component-suicide-lit-message = You weld your every orifice closed! welder-component-suicide-unlit-others-message = {$victim} bashes themselves with the unlit welding torch! diff --git a/Resources/Locale/en-US/traits/categories.ftl b/Resources/Locale/en-US/traits/categories.ftl index 56f0adeb47..2bd4b7ba49 100644 --- a/Resources/Locale/en-US/traits/categories.ftl +++ b/Resources/Locale/en-US/traits/categories.ftl @@ -5,4 +5,7 @@ trait-category-Auditory = Auditory trait-category-Mental = Mental trait-category-Physical = Physical trait-category-Speech = Speech -trait-category-Visual = Visual +trait-category-TraitsSpeechUncategorized = Uncategorized +trait-category-TraitsSpeechAccents = Accents +trait-category-TraitsSpeechLanguages = Languages +trait-category-Visual = Visual \ No newline at end of file diff --git a/Resources/Locale/en-US/traits/disabilities.ftl b/Resources/Locale/en-US/traits/disabilities.ftl deleted file mode 100644 index 8360aaeb9d..0000000000 --- a/Resources/Locale/en-US/traits/disabilities.ftl +++ /dev/null @@ -1,2 +0,0 @@ -trait-name-Nearsighted = Nearsighted -trait-description-Nearsighted = You require glasses to see properly. diff --git a/Resources/Locale/en-US/traits/misc.ftl b/Resources/Locale/en-US/traits/misc.ftl new file mode 100644 index 0000000000..b76dfa9729 --- /dev/null +++ b/Resources/Locale/en-US/traits/misc.ftl @@ -0,0 +1 @@ +examine-cybereyes-message = {$entity}'s eyes shine with a faint inner light. diff --git a/Resources/Locale/en-US/traits/traits.ftl b/Resources/Locale/en-US/traits/traits.ftl index e049af3c62..cfd53bbde3 100644 --- a/Resources/Locale/en-US/traits/traits.ftl +++ b/Resources/Locale/en-US/traits/traits.ftl @@ -62,6 +62,9 @@ trait-name-CPRTraining = CPR Training trait-description-CPRTraining = At some point in your life, you have received training in how to perform CPR. This trait is automatically given for free to medical doctors, and is intended for non-medical characters +trait-name-Nearsighted = Nearsighted +trait-description-Nearsighted = Your eyes are not what they once were, you have difficulty seeing things far away without corrective glasses. + trait-name-NormalVisionHarpy = Trichromat Modification trait-description-NormalVisionHarpy = Your eyes have been modified by means of advanced medicine to see in the standard colors of Red, Green, and Blue. @@ -152,9 +155,30 @@ trait-description-Lethargy = trait-name-SignLanguage = Sign Language trait-description-SignLanguage = - You can understand and use Galactic Sign Language (GSL). + You can understand and use Tau-Ceti Basic Sign Language (TCB-SL). If you are mute for any reason, you can still communicate with sign language. +trait-name-SolCommon = Sol Common +trait-description-SolCommon = + With its roots in Mandarin Chinese - Common evolved as the official language of the Sol Alliance - with officials working to tie it together with a common tongue. + It's spoken by state officials - taught in schools - and spoken by those who either feel a sense of national pride in the Alliance or otherwise fell sway to the culture. + +trait-name-Tradeband = Tradeband +trait-description-Tradeband = + Descended from latin and romance languages of old Earth - Tradeband remains the main tongue of the upper class of humanity. + The language sounds elegant and well structured to most ears. It remains in popular use with traders - diplomats - and those seeking to hold onto a piece of a romantic past. + +trait-name-Freespeak = Freespeak (Gutter) +trait-description-Freespeak = + A language of renegades and frontiersmen descending from various languages from Earth like Hindi combined into a multi-rooted jumble that sounds incoherent or even barbarian to non-native speakers. + This language is the only common cultural identity for humans in the frontier. Speaking this language in itself boldly declares the speaker a free spirit. + Often called 'Gutter' by Alliance citizens. + +trait-name-Elyran = Elyran Standard +trait-description-Elyran = + Elyran Standard is the official tongue of the Republic of Elyra. + Constructed using elements of Farsi - Arabic - and Turkish - influence from all three of these languages can be seen throughout its grammar and vocabulary. + trait-name-Voracious = Voracious trait-description-Voracious = Nothing gets between you and your food. @@ -227,3 +251,152 @@ trait-description-AnomalousPositronics = Whether by intentional design from the manufacturer, black market modifications, or accidental omission, your positronic brain lacks its standard psionic insulation. As a being that can be argued to have a soul, this by extension means that it is possible for you to be influenced by the Noosphere. + +trait-name-Photophobia = Photophobia +trait-description-Photophobia = + Your eyes are extremely sensitive to bright lights. + As a result, you may be blinded for a greater duration than others when exposed to sudden flashes of light. + Your eyes are also more likely to be injured by flashes. + +trait-name-Clumsy = Clumsy +trait-description-Clumsy = + You have a severe deficiency in hand-eye-coordination, resulting in an inability to do some things that others would take for granted. + Any weapons you may try to use are more likely to injure yourself than others. You are unable to climb any objects without injuring yourself. + +trait-name-Small = Small +trait-description-Small = + You are much smaller than a typical person, and can climb into spaces others would not normally be able to fit into, such as duffel bags. + This trait does not in any way modify your character's size, it merely requires that your character be at most the size of a standard Felinid. + +trait-name-TemperatureTolerance = Temperature Tolerance +trait-description-TemperatureTolerance = + You have a notable tolerance for lower temperatures. You can stand for extended periods of time + in conditions just slightly below freezing, such as the inside of a kitchen fridge, + or the sunlit mountainside of the famous Glacier station. + +trait-name-Talons = Talons +trait-description-Talons = + Your fingertips have been replaced with piercing talons. + These could come from gene modifications, vatgrown implants, + or even hard plastic retractable talons incorpoated into a prosthetic limb. + Your unarmed melee attacks deal Piercing damage instead of the standard damage type for your species. + This has no effect on damage dealt with any form of armed melee. + +trait-name-Claws = Claws +trait-description-Claws = + Your fingertips have been replaced with sharp claws. + These could come from gene modifications, vatgrown implants, + or even hard plastic retractable claws incorpoated into a prosthetic limb. + Your unarmed melee attacks deal Slashing damage instead of the standard damage type for your species. + This has no effect on damage dealt with any form of armed melee. + +trait-name-NaturalWeaponRemoval = Natural Weapons Removal +trait-description-NaturalWeaponRemoval = + Whatever "Natural Weapons" your species are normally born with have been surgically removed. + This could have been done to better fit in with terran space stations, or as a cosmetic choice. + As a result, your unarmed attacks deal Blunt damage instead of the standard damage type for your species. + This has no effect on damage dealt with any form of armed melee. + +trait-name-StrikingCalluses = Striking Calluses +trait-description-StrikingCalluses = + An iconic enhancement commonly found in the world of cyberenhanced martial arts. + Striking Calluses consist of bony dermal deposits grafted into a user's hands, either inside the palm + for "Tiger Style" fighting, or just below the knuckles for those who favor traditional boxing. + Owners of prosthetic or bionic limbs would instead have a hard plastic shell over their knuckles. + These enhancements increase your unarmed strike damage by 1 point base, but do not confer + any benefits to any form of armed melee. + +trait-name-Spinarette = Bionic Spinarette +trait-description-Spinarette = + This vatgrown organ-- trademarked and patented by the Cybersun Corporation, is marketed as a highly + utilitarian enhancement, and sold in clinics all across known space. It consists of a nodule that is traditionally + implanted right below the wrist, which absorbs bodily lipids to convert into all natural silk. A small opening + in the palm allows the user to 'spin' this thread. Users of this enhancement typically require twice as much food + as a standard Sol Human, owing to the high metabolic cost of artificial Sericulture. + +trait-name-AddictionNicotine = Nicotine Addiction +trait-description-AddictionNicotine = + You have an addiction to Nicotine, and will require frequent smoke breaks to keep your mood in check. + +trait-name-Liar = Pathological liar +trait-description-Liar = You can hardly bring yourself to tell the truth. Sometimes you lie anyway. + +trait-name-ValyrianStandard = Valyrian Standard +trait-description-ValyrianStandard = + A language descended from eastern european languages of old earth - Valyrian Standard is the commonly spoken tongue of Harpies brought up on their homeworld of Valyrian 4b + It is rarely spoken outside of the worlds of its native speakers, and has in modern times been supplanted by the 'Conlangs of the Sol Alliance. + Its speakers are those who wish to uphold the traditions and beliefs of ancient peoples from before the colonial era. + +trait-name-LowPotential = Low Psi-Potential +trait-description-LowPotential = + You possess an unusually weak connection to the noösphere, which makes it more difficult to obtain new psionic powers. + +trait-name-HighPotential = High Psi-Potential +trait-description-HighPotential = + Your connection to the noösphere is greater than average, making it easier to obtain new psionic powers. + +trait-name-LowAmplification = kα Deficiency +trait-description-LowAmplifiction = + Your psionic abilities are noticeably weaker than ones used by other psions. + +trait-name-HighAmplification = kα Abundance +trait-description-HighAmplification = + Your psionic abilities are stronger than those of other psions. + +trait-name-PowerOverwhelming = Power Overwhelming +trait-description-PowerOverwhelming = + WITNESS MY HATE MORTALS, COWER BEFORE MY PSIONIC MIGHT! REALITY IS AS I DEEM IT. + +trait-name-LowDampening = kδ Defect +trait-description-LowDampening = + Your skill in manipulating the noösphere is weaker than others. You may experience unintended effects from using your abilities. + +trait-name-HighDampening = kδ Proficient +trait-description-HighDampening = + You are skilled in the art of subtly manipulating the noösphere. Your powers are less likely to show unintended effects. + +trait-name-Azaziba = Sinta'Azaziba +trait-description-Azaziba = + A language of Moghes consisting of a combination of spoken word and gesticulation. + While waning since Moghes entered the galactic stage - it enjoys popular use by Unathi that never fell to the Hegemony's cultural dominance. + +trait-name-BionicArm = Bionic Arm +trait-description-BionicArm = + One or more of your limbs have been replaced with an expensive, state of the art bionic. It could be either one made of highly realistic synthflesh, + or a more obvious metal limb. This limb provides enhanced strength to its user, allowing one to pry open barriers with their bare hands. + +trait-name-PlateletFactories = Platelet Factories +trait-description-PlateletFactories = + Your body has been augmented with a series of biotailored organs that enhance the owner's long term survivability. These organs will attempt + to keep the user alive, even in the face of advanced trauma, all the way up until - but not including - death. + Your natural healing is no longer capped, and will now slowly heal any damage type. This includes more exotic injuries like radiation exposure, or cancer. + +trait-name-DermalArmor = Dermal Armor +trait-description-DermalArmor = + Your skin has been replaced with a flexible, yet sturdy, hard-polymer shell wrapped in a layer of synthetic flesh. + This augmentation provides an innate 10% resistance to physical damage. + +trait-name-CyberEyes = Cyber-Eyes Basic System +trait-description-CyberEyes = + One or more of your eyes have been replaced with a highly modular mechanical ocular implant. + Their most basic functionality is to provide amelioration for weaknesses of the wearer's natural eyes, + but additionally these implants provide protection from bright flashes of light. + +trait-name-CyberEyesSecurity = Cyber-Eyes SecHud +trait-description-CyberEyesSecurity = + Your Cyber-Eyes have been upgraded to include a built-in Security Hud. Note that this augmentation is considered Contraband + for anyone not under the employ of station Security personel, and may be disabled by your employer before dispatch to the station. + +trait-name-CyberEyesMedical = Cyber-Eyes MedHud +trait-description-CyberEyesMedical = + Your Cyber-Eyes have been upgraded to include a built-in Medical Hud, allowing you to track the relative health condition of biological organisms. + +trait-name-CyberEyesDiagnostic = Cyber-Eyes DiagHud +trait-description-CyberEyesDiagnostic = + Your Cyber-Eyes have been upgraded to include a built-in Diagnostic Hud, allowing you to track the condition of synthetic entities. + +trait-name-CyberEyesOmni = Cyber-Eyes HudSuite +trait-description-CyberEyesOmni = + This expensive implant provides the combined benefits of a SecHud, MedHud, and a DiagHud. + Note that this augmentation is considered Contraband for anyone not under the employ of station Security personel, + and may be disabled by your employer before dispatch to the station. diff --git a/Resources/Locale/en-US/ui/verbs.ftl b/Resources/Locale/en-US/ui/verbs.ftl deleted file mode 100644 index 1471261dcb..0000000000 --- a/Resources/Locale/en-US/ui/verbs.ftl +++ /dev/null @@ -1,3 +0,0 @@ -### Loc for the various UI-related verbs -ui-verb-toggle-open = Toggle UI -verb-instrument-openui = Play Music diff --git a/Resources/Locale/en-US/verbs/verb-system.ftl b/Resources/Locale/en-US/verbs/verb-system.ftl index f16631e797..dfb4e621dc 100644 --- a/Resources/Locale/en-US/verbs/verb-system.ftl +++ b/Resources/Locale/en-US/verbs/verb-system.ftl @@ -1,4 +1,3 @@ -verb-system-waiting-on-server-text = Waiting on Server... verb-system-null-server-response = Entity not in view. You should not see this. @@ -28,6 +27,7 @@ verb-categories-timer = Set Delay verb-categories-lever = Lever verb-categories-select-type = Select Type verb-categories-fax = Set Destination +verb-categories-power-level = Power Level verb-categories-interaction = Interact verb-common-toggle-light = Toggle light diff --git a/Resources/Locale/en-US/wieldable/wieldable-component.ftl b/Resources/Locale/en-US/wieldable/wieldable-component.ftl index 91eee8c2ea..84b58224a7 100644 --- a/Resources/Locale/en-US/wieldable/wieldable-component.ftl +++ b/Resources/Locale/en-US/wieldable/wieldable-component.ftl @@ -1,4 +1,4 @@ -### Locale for wielding items; i.e. two-handing them +### Locale for wielding items; i.e. two-handing them wieldable-verb-text-wield = Wield wieldable-verb-text-unwield = Unwield @@ -17,3 +17,4 @@ 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. diff --git a/Resources/Locale/en-US/xenoarchaeology/artifact-analyzer.ftl b/Resources/Locale/en-US/xenoarchaeology/artifact-analyzer.ftl index 599f36ec91..35dd42167f 100644 --- a/Resources/Locale/en-US/xenoarchaeology/artifact-analyzer.ftl +++ b/Resources/Locale/en-US/xenoarchaeology/artifact-analyzer.ftl @@ -6,6 +6,10 @@ analysis-console-print-button = Print analysis-console-print-tooltip-info = Print out the current information about the artifact. analysis-console-extract-button = Extract analysis-console-extract-button-info = Extract points from an artifact based on the newly explored nodes. +analysis-console-bias-up = Up +analysis-console-bias-down = Down +analysis-console-bias-button-info-up = Toggles the bias an artifact has in moving between its nodes. Up heads toward zero depth. +analysis-console-bias-button-info-down = Toggles the bias an artifact has in moving between its nodes. Down heads toward ever-higher depths. analysis-console-info-no-scanner = No analyzer connected! Please connect one using a multitool. analysis-console-info-no-artifact = No artifact present! Place one on the pad then scan for information. @@ -26,6 +30,9 @@ analysis-console-progress-text = {$seconds -> [one] T-{$seconds} second *[other] T-{$seconds} seconds } +analysis-console-no-server-connected = Cannot extract. No server connected. +analysis-console-no-artifact-placed = No artifact on scanner. +analysis-console-no-points-to-extract = No points to extract. analyzer-artifact-component-upgrade-analysis = analysis duration diff --git a/Resources/Locale/en-US/xenoarchaeology/traversal-distorter.ftl b/Resources/Locale/en-US/xenoarchaeology/traversal-distorter.ftl index 5c9eac57a5..407de66ebd 100644 --- a/Resources/Locale/en-US/xenoarchaeology/traversal-distorter.ftl +++ b/Resources/Locale/en-US/xenoarchaeology/traversal-distorter.ftl @@ -1,5 +1,6 @@ -traversal-distorter-set-in = Traversal bias set to "in" -traversal-distorter-set-out = Traversal bias set to "out" +traversal-distorter-set-up = Traversal bias set to up, toward safer nodes +traversal-distorter-set-down = Traversal bias set to down, toward more dangerous nodes -traversal-distorter-desc-in = The affected artifact's traversal now favors moving inwards to the beginning. -traversal-distorter-desc-out = The affected artifact's traversal now favors moving outwards towards more dangerous nodes. +traversal-distorter-desc-up = The affected artifact's traversal now favors moving up the node tree toward safer nodes. +traversal-distorter-desc-down = The affected artifact's traversal now favors moving down the node tree towards more dangerous nodes. +traversal-distorter-upgrade-bias = Bias effectiveness diff --git a/Resources/Locale/ru-RU/_white/escape-menu/options-menu.ftl b/Resources/Locale/ru-RU/_white/escape-menu/options-menu.ftl index a6e97e34f2..c1d77e7c0f 100644 --- a/Resources/Locale/ru-RU/_white/escape-menu/options-menu.ftl +++ b/Resources/Locale/ru-RU/_white/escape-menu/options-menu.ftl @@ -1,6 +1,3 @@ ui-options-log-in-chat = Логировать действия в чат ui-options-function-open-emotions-menu = Открыть меню эмоций -ui-options-function-look-up = Присмотреться/Прицелиться -ui-options-function-auto-get-up = Автоматически вставать при падении -ui-options-function-hold-look-up = Удерживать клавишу для прицеливания \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_white/escape-menu/ui/options.ftl b/Resources/Locale/ru-RU/_white/escape-menu/ui/options.ftl new file mode 100644 index 0000000000..d7857e07bb --- /dev/null +++ b/Resources/Locale/ru-RU/_white/escape-menu/ui/options.ftl @@ -0,0 +1 @@ +ui-options-hud-theme-operative = Оперативник diff --git a/Resources/Locale/ru-RU/_white/ghost/ghost-gui.ftl b/Resources/Locale/ru-RU/_white/ghost/ghost-gui.ftl deleted file mode 100644 index ce9084d21f..0000000000 --- a/Resources/Locale/ru-RU/_white/ghost/ghost-gui.ftl +++ /dev/null @@ -1 +0,0 @@ -ghost-gui-return-to-round-button = Вернуться в раунд \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_white/ghost/roles/ghost-role-component.ftl b/Resources/Locale/ru-RU/_white/ghost/roles/ghost-role-component.ftl new file mode 100644 index 0000000000..0a3246f024 --- /dev/null +++ b/Resources/Locale/ru-RU/_white/ghost/roles/ghost-role-component.ftl @@ -0,0 +1,2 @@ +ghost-role-information-gondola-name = Гондола +ghost-role-information-gondola-description = Ты Гондола \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_white/holoprojector/holoprojector.ftl b/Resources/Locale/ru-RU/_white/holoprojector/holoprojector.ftl new file mode 100644 index 0000000000..d6a8cde40f --- /dev/null +++ b/Resources/Locale/ru-RU/_white/holoprojector/holoprojector.ftl @@ -0,0 +1,3 @@ +holoprojector-active-holo = Активные проекции: [color=fuchsia]{ $activeholo }[/color] +holoprojector-uses-limit = Было использовано максимальное количество проекций! +holoprojector-delete-signs = Все проекции были удалены! \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_white/implants/mindslave.ftl b/Resources/Locale/ru-RU/_white/implants/mindslave.ftl deleted file mode 100644 index 8d98357654..0000000000 --- a/Resources/Locale/ru-RU/_white/implants/mindslave.ftl +++ /dev/null @@ -1,16 +0,0 @@ -mindslave-briefing = Служите и защищайте {$player}, {$role}. Выполняйте каждый их приказ. Они для вас - абсолютная власть. -mindslave-chat-message = Перед вашим глазами в мгновение пролетают осколки ваших воспоминаний, после чего сознание застилает белая пелена. Во вспышке ярко-красного света вы вспоминаете свое предназначение - служить {$player}, {$role}. -mindslave-freed = Вы больше не служите {$player}! - -mindslave-target-self = Вы не можете сделать себя своим же рабом -mindslave-cant-insert = Разум данного существа уже на чем-то зациклен - -uplink-mind-slave = Имплант подчинения -uplink-mind-slave-desc = Захватите разум живого существа и прикажите ему закидать капитана взрывными пирогами. - -ent-MindSlaveImplanter = { ent-BaseImplanter } - .desc = { "" } - .suffix = майдслейв - -ent-MindslaveImplant = Имплант подчинения - .desc = Сделайте из кого-то свою личную куклу. diff --git a/Resources/Locale/ru-RU/_white/implants/neurostabilization.ftl b/Resources/Locale/ru-RU/_white/implants/neurostabilization.ftl deleted file mode 100644 index d360d68476..0000000000 --- a/Resources/Locale/ru-RU/_white/implants/neurostabilization.ftl +++ /dev/null @@ -1,5 +0,0 @@ -uplink-neuro-stabilization = Имплант нейростабилизации -uplink-neuro-stabilization-desc = Блокирует весь входящий урон по выносливости, компенсируя его шоковым зарядом. - -ent-NeuroStabilizationImplant = Имплант нейростабилизации - .desc = Блокирует весь входящий урон по выносливости за счет шока. diff --git a/Resources/Locale/ru-RU/_white/job/job-names.ftl b/Resources/Locale/ru-RU/_white/job/job-names.ftl new file mode 100644 index 0000000000..60656eaf7f --- /dev/null +++ b/Resources/Locale/ru-RU/_white/job/job-names.ftl @@ -0,0 +1,6 @@ +job-name-maid = Служанка +job-name-hobo = Бомж + +# Role timers - Make these alphabetical or I cut you +JobHobo = Бомж +JobMaid = Служанка diff --git a/Resources/Locale/ru-RU/_white/mindslave/mindslave.ftl b/Resources/Locale/ru-RU/_white/mindslave/mindslave.ftl new file mode 100644 index 0000000000..8b9c38c107 --- /dev/null +++ b/Resources/Locale/ru-RU/_white/mindslave/mindslave.ftl @@ -0,0 +1,11 @@ +mindslave-briefing = Служите и защищайте {$player}, {$role}. Выполняйте каждый + { GENDER($player) -> + [male] его приказ. Он + [female] её приказ. Она + *[other] их приказ. Они + } для вас - абсолютная власть. +mindslave-chat-message = Перед вашим глазами в мгновение пролетают осколки ваших воспоминаний, после чего сознание застилает белая пелена. Во вспышке ярко-красного света вы вспоминаете свое предназначение - служить {$player}, {$role}. +mindslave-freed = Вы больше не служите {$player}! + +mindslave-target-self = Вы не можете сделать себя своим же рабом +mindslave-cant-insert = Разум данного существа уже на чем-то зациклен \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_white/prototypes/actions/types.ftl b/Resources/Locale/ru-RU/_white/prototypes/actions/types.ftl new file mode 100644 index 0000000000..4ef034a35f --- /dev/null +++ b/Resources/Locale/ru-RU/_white/prototypes/actions/types.ftl @@ -0,0 +1,11 @@ +ent-ActivateHardlightSpearImplant = Создать световое копьё + .desc = Создает световое копьё в ваших руках. + +ent-ActivateSmokeImplant = Выпустить облако дыма + .desc = Выпускает облако дыма вокруг вас. + +ent-ActivateSmokeImplant = Переключить ночное зрение + .desc = Переключает ночное зрение. + +ent-ActivateSmokeImplant = Переключить термальное зрение + .desc = Переключает термальное зрение. diff --git a/Resources/Locale/ru-RU/_white/prototypes/catalog/fills/crates/npc.yml b/Resources/Locale/ru-RU/_white/prototypes/catalog/fills/crates/npc.yml new file mode 100644 index 0000000000..76d528aac4 --- /dev/null +++ b/Resources/Locale/ru-RU/_white/prototypes/catalog/fills/crates/npc.yml @@ -0,0 +1,2 @@ +ent-CrateNPCGondola = ящик с Гондолой + .desc = Ящик, содержащий в себе одну Гондолу. \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_white/prototypes/entities/clothing/eyes/goggles.ftl b/Resources/Locale/ru-RU/_white/prototypes/entities/clothing/eyes/goggles.ftl new file mode 100644 index 0000000000..db3b1f5c8d --- /dev/null +++ b/Resources/Locale/ru-RU/_white/prototypes/entities/clothing/eyes/goggles.ftl @@ -0,0 +1,15 @@ +# Night Vision Goggles +ent-ClothingEyesNightVisionGoggles = ПНВ + .desc = Теперь ты можешь видеть в темноте! +ent-ClothingEyesNightVisionGogglesSyndie = { ent-ClothingEyesNightVisionGoggles } + .desc = { ent-ClothingEyesNightVisionGoggles.desc } +ent-ClothingEyesNightVisionGogglesNukie = { ent-ClothingEyesNightVisionGoggles } + .desc = { ent-ClothingEyesNightVisionGoggles.desc } + +# Thermal Vision Goggles +ent-ClothingEyesThermalVisionGoggles = ПТВ + .desc = Теперь ты можешь видеть всех! +ent-ClothingEyesThermalVisionGogglesSyndie = { ent-ClothingEyesThermalVisionGoggles } + .desc = { ent-ClothingEyesThermalVisionGoggles.desc } +ent-ClothingEyesThermalVisionGogglesNukie = { ent-ClothingEyesThermalVisionGoggles } + .desc = { ent-ClothingEyesThermalVisionGoggles.desc } diff --git a/Resources/Locale/ru-RU/_white/prototypes/entities/markers/spawners/mobs.ftl b/Resources/Locale/ru-RU/_white/prototypes/entities/markers/spawners/mobs.ftl new file mode 100644 index 0000000000..d48c4217e2 --- /dev/null +++ b/Resources/Locale/ru-RU/_white/prototypes/entities/markers/spawners/mobs.ftl @@ -0,0 +1 @@ +ent-SpawnMobGondola = спавнер Гондолы \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_white/prototypes/entities/mobs/npcs/gondola.ftl b/Resources/Locale/ru-RU/_white/prototypes/entities/mobs/npcs/gondola.ftl new file mode 100644 index 0000000000..eb64739b1f --- /dev/null +++ b/Resources/Locale/ru-RU/_white/prototypes/entities/mobs/npcs/gondola.ftl @@ -0,0 +1,2 @@ +ent-MobGondola = Гондола + .desc = Не имея рук, он воплощает даосский принцип у-вэй (бездействия), а выражение его улыбающегося лица показывает его полное принятие мира таким, какой он есть. \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_white/prototypes/entities/objects/misc/implanters.ftl b/Resources/Locale/ru-RU/_white/prototypes/entities/objects/misc/implanters.ftl new file mode 100644 index 0000000000..61da590e35 --- /dev/null +++ b/Resources/Locale/ru-RU/_white/prototypes/entities/objects/misc/implanters.ftl @@ -0,0 +1,18 @@ +ent-HardlightSpearImplanter = { ent-BaseImplanter } + .desc = { ent-BaseImplanter.desc } + .suffix = световое копьё + +ent-NeuroStabilizationImplanter = { ent-BaseImplanter } + .desc = { ent-BaseImplanter.desc } + .suffix = нейро стабилизация + +ent-ImplanterSyndi = { ent-BaseImplanter } + .desc = Компактный одноразовый шприц, предназначенный исключительно для введения и извлечения подкожных имплантатов. + +ent-SmokeImplanter = { ent-BaseImplanter } + .desc = { ent-BaseImplanter.desc } + .suffix = дым + +ent-MindSlaveImplanter = { ent-BaseImplanter } + .desc = { ent-BaseImplanter.desc } + .suffix = подчинение diff --git a/Resources/Locale/ru-RU/_white/prototypes/entities/objects/misc/subdermal_implants.ftl b/Resources/Locale/ru-RU/_white/prototypes/entities/objects/misc/subdermal_implants.ftl new file mode 100644 index 0000000000..1ed7f7c80f --- /dev/null +++ b/Resources/Locale/ru-RU/_white/prototypes/entities/objects/misc/subdermal_implants.ftl @@ -0,0 +1,11 @@ +ent-HardlightSpearImplant = имплант световое копьё + .desc = Этот имплант создаёт световое копьё в ваших руках. + +ent-NeuroStabilizationImplant = имплант нейро стабализации + .desc = Блокирует весь входящий урон по выносливости за счет шока. + +ent-SmokeImplant = имплант дыма + .desc = Этот имплант выпускает облако дыма при активации. + +ent-MindSlaveImplant = имплант подчинения + .desc = Сделайте из кого-то свою личную куклу. \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_white/prototypes/entities/objects/weapons/guns/crossbow.ftl b/Resources/Locale/ru-RU/_white/prototypes/entities/objects/weapons/guns/crossbow.ftl new file mode 100644 index 0000000000..352d8731dc --- /dev/null +++ b/Resources/Locale/ru-RU/_white/prototypes/entities/objects/weapons/guns/crossbow.ftl @@ -0,0 +1,4 @@ +ent-WeaponPoweredCrossbow = арбалет + .desc = Опасная вещь +ent-WeaponPoweredCrossbowUnfinished = недоделанный арбалет + .desc = Будет опасной вещью \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_white/prototypes/entities/objects/weapons/melee/daggers.ftl b/Resources/Locale/ru-RU/_white/prototypes/entities/objects/weapons/melee/daggers.ftl index 00ceb91748..0a23c4c341 100644 --- a/Resources/Locale/ru-RU/_white/prototypes/entities/objects/weapons/melee/daggers.ftl +++ b/Resources/Locale/ru-RU/_white/prototypes/entities/objects/weapons/melee/daggers.ftl @@ -1,2 +1,5 @@ -ent-BetrayalKnife = предательский кинжал - .desc = Береги спину. \ No newline at end of file +ent-BetrayalDagger = предательский кинжал + .desc = Береги спину. + +ent-BloodDagger = кровавый кинжал + .desc = Кинжал из боли и крови. С него что-то капает... \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_white/prototypes/entities/objects/weapons/melee/snatcherprod.ftl b/Resources/Locale/ru-RU/_white/prototypes/entities/objects/weapons/melee/snatcherprod.ftl new file mode 100644 index 0000000000..e4b9736f24 --- /dev/null +++ b/Resources/Locale/ru-RU/_white/prototypes/entities/objects/weapons/melee/snatcherprod.ftl @@ -0,0 +1,2 @@ +ent-Snatcherprod = хваталка + .desc = Искрится жаждой воровства и коварства. \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_white/prototypes/entities/objects/weapons/melee/spear.ftl b/Resources/Locale/ru-RU/_white/prototypes/entities/objects/weapons/melee/spear.ftl new file mode 100644 index 0000000000..ff85b5d8cc --- /dev/null +++ b/Resources/Locale/ru-RU/_white/prototypes/entities/objects/weapons/melee/spear.ftl @@ -0,0 +1,2 @@ +ent-HardlightSpear = световое копьё + .desc = Копьё из твердого света. \ No newline at end of file diff --git a/Resources/Locale/ru-RU/prototypes/white/entities/objects/consumable/food/meat.ftl "b/Resources/Locale/ru-RU/_white/prototypes/entities/objects/\321\201onsumable/food/meat.ftl" similarity index 99% rename from Resources/Locale/ru-RU/prototypes/white/entities/objects/consumable/food/meat.ftl rename to "Resources/Locale/ru-RU/_white/prototypes/entities/objects/\321\201onsumable/food/meat.ftl" index 069926678a..62dcac0687 100644 --- a/Resources/Locale/ru-RU/prototypes/white/entities/objects/consumable/food/meat.ftl +++ "b/Resources/Locale/ru-RU/_white/prototypes/entities/objects/\321\201onsumable/food/meat.ftl" @@ -1,7 +1,6 @@ ent-FoodMeatGondola = { ent-FoodMeat } .desc = { ent-FoodMeat.desc } .suffix = Гондола - ent-FoodMeatGondolaCooked = { ent-FoodMeatCooked } .desc = { ent-FoodMeatCooked.desc } .suffix = Гондола diff --git a/Resources/Locale/ru-RU/_white/reagents/fun.ftl b/Resources/Locale/ru-RU/_white/reagents/fun.ftl deleted file mode 100644 index bb938db24b..0000000000 --- a/Resources/Locale/ru-RU/_white/reagents/fun.ftl +++ /dev/null @@ -1,4 +0,0 @@ -reagent-popup-tranquility = Вы чувствуете себя странно спокойными... - -reagent-name-tranquility = спокойствие -reagent-desc-tranquility = Источает странную ауру спокойствия... \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_white/reagents/meta/fun.ftl b/Resources/Locale/ru-RU/_white/reagents/meta/fun.ftl new file mode 100644 index 0000000000..7d3b150e09 --- /dev/null +++ b/Resources/Locale/ru-RU/_white/reagents/meta/fun.ftl @@ -0,0 +1,2 @@ +reagent-name-tranquility = спокойствие +reagent-desc-tranquility = Излучает странную ауру спокойствия... diff --git a/Resources/Locale/ru-RU/_white/reagents/meta/physical-desc.ftl b/Resources/Locale/ru-RU/_white/reagents/meta/physical-desc.ftl index 4234c871e0..b7154292ee 100644 --- a/Resources/Locale/ru-RU/_white/reagents/meta/physical-desc.ftl +++ b/Resources/Locale/ru-RU/_white/reagents/meta/physical-desc.ftl @@ -1 +1 @@ -reagent-physical-desc-calming = успокаивающий +reagent-physical-desc-calming = успокаивающий \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_white/reagents/tranquility.ftl b/Resources/Locale/ru-RU/_white/reagents/tranquility.ftl new file mode 100644 index 0000000000..7ff106dd9d --- /dev/null +++ b/Resources/Locale/ru-RU/_white/reagents/tranquility.ftl @@ -0,0 +1 @@ +tranquility-effect = Ты чувствуешь себя странно спокойным... \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_white/rechargeable-blocking/rechargeable-blocking.ftl b/Resources/Locale/ru-RU/_white/rechargeable-blocking/rechargeable-blocking.ftl new file mode 100644 index 0000000000..5df45a4784 --- /dev/null +++ b/Resources/Locale/ru-RU/_white/rechargeable-blocking/rechargeable-blocking.ftl @@ -0,0 +1,2 @@ +rechargeable-blocking-discharged = Он [color=red]разряжен[/color]. +rechargeable-blocking-remaining-time = Осталось времени для зарядки: [color=green]{ $remainingTime }[/color] секунд. \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_white/research/techologies.ftl b/Resources/Locale/ru-RU/_white/research/techologies.ftl new file mode 100644 index 0000000000..54f3899255 --- /dev/null +++ b/Resources/Locale/ru-RU/_white/research/techologies.ftl @@ -0,0 +1,2 @@ +research-technology-night-vision = Ночное видение +research-technology-thermal-vision = Термальное видение \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_white/store/sales.ftl b/Resources/Locale/ru-RU/_white/store/sales.ftl deleted file mode 100644 index 1f0e3b83d3..0000000000 --- a/Resources/Locale/ru-RU/_white/store/sales.ftl +++ /dev/null @@ -1,2 +0,0 @@ -store-sales-amount = [СКИДКА] { $amount }%! -store-sales-over = [Скидка закончилась] \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_white/store/uplink-catalog.ftl b/Resources/Locale/ru-RU/_white/store/uplink-catalog.ftl index 8d58a4bc17..4eca4a50a4 100644 --- a/Resources/Locale/ru-RU/_white/store/uplink-catalog.ftl +++ b/Resources/Locale/ru-RU/_white/store/uplink-catalog.ftl @@ -1,11 +1,38 @@ -uplink-emp-flashlight-name = Электромагнитный фонарик +uplink-emp-flashlight-name = Электромагнитный фонарик uplink-emp-flashlight-desc = Замаскированное под фонарик устройство. При ударе выпускает ЭМИ, поражающий электрические устройства. -uplink-betrayal-knife-name = Предательский кинжал -uplink-betrayal-knife-desc = Предательский кинжал позволяет пользователю телепортироваться на короткое расстояние, а также наносит значительные повреждения при ударе в спину. +uplink-betrayal-dagger-name = Предательский кинжал +uplink-betrayal-dagger-desc = Предательский кинжал позволяет пользователю телепортироваться на короткое расстояние, а также наносит значительные повреждения при ударе в спину. uplink-experimental-syndicate-teleporter-name = Экспериментальный телепортер синдиката uplink-experimental-syndicate-teleporter-desc = Телепортер синдиката, при использовании перемещает на 3-8 метров вперед. В случае телепортации в стену, использует экстренную телепортацию. Имеет 4 заряда и автоматически заряжается. uplink-ebow-name = Маленький энергетический арбалет uplink-ebow-desc = Довольно тихое оружие, которое автоматически перезаряжается и оглушает. Хорошо сочетается с другими видами оружия. + +uplink-hardlight-spear-implant-name = Имплант светового копья +uplink-hardlight-spear-implant-desc = Имплант, вводимый в тело и активируемый по желанию пользователя. Он вызывает копье из твердого света, с помощью которого пользователь может сеять хаос. + +uplink-neuro-control-name = Имплант нейро стабилизации +uplink-neuro-control-desc = Блокирует весь входящий урон по выносливости, компенсируя его шоковым зарядом, наносящим урон, пропорциональный заблокированному. + +uplink-implanter-name = Имплантер +uplink-implanter-desc = Продвинутый имплантер, позволяющий быстро вкалывать и вытаскивать импланты. + +uplink-smoke-implant-name = Имплант дыма +uplink-smoke-implant-desc = Выпускает облако дыма при активации. + +uplink-night-vision-name = Прибор ночного видения +uplink-night-vision-desc = Позволяет вам видеть в темноте, при этом выглядя как обычные солнцезащитные очки! + +uplink-thermal-vision-name = Прибор термального видения +uplink-thermal-vision-desc = Позволяет вам видеть живых существ независимо от преград, при этом выглядя как обычные солнцезащитные очки! + +uplink-mind-slave = Имплант подчинения +uplink-mind-slave-desc = Захватите разум живого существа и прикажите ему закидать капитана взрывными пирогами. + +uplink-blood-dagger-name = Кровавый кинжал +uplink-blood-dagger-desc = Кинжал из боли и крови. Обладает смертоносной точностью, позволяя наносить критический урон и извлекать кровь из противников, леча владельца пропорционально высосанной крови. При поглощении крови владельца кратковременно усиливает его ценной обильного кровотечения. + +uplink-gondola-name = Ящик с Гондолой +uplink-gondola-desc = Ящик, содержащий одну стандартную Гондолу. Мясо Гондолы содержит реагент "Спокойствие". \ No newline at end of file diff --git a/Resources/Locale/ru-RU/clothing/socks.ftl b/Resources/Locale/ru-RU/clothing/socks.ftl deleted file mode 100644 index 21aaf1928f..0000000000 --- a/Resources/Locale/ru-RU/clothing/socks.ftl +++ /dev/null @@ -1,54 +0,0 @@ -ent-ClothingUnderwearSocksBeeKnee = носки - .desc = Желто-черные. -ent-ClothingUnderwearSocksBeeNorm = носки - .desc = Желто-черные. -ent-ClothingUnderwearSocksBeeThigh = носки - .desc = Желто-черные. -ent-ClothingUnderwearSocksFishnet = чулки - .desc = Сетчатые. -ent-ClothingUnderwearSocksGarter = носки - .desc = С подтяжками. -ent-ClothingUnderwearSocksPantyhose = колготки - .desc = Прозрачные. -ent-ClothingUnderwearSocksPantyhoseRipped = колготки - .desc = Порванные. -ent-ClothingUnderwearSocksRainbowKnee = носки - .desc = Радужные. -ent-ClothingUnderwearSocksRainbowThigh = носки - .desc = Радужные. -ent-ClothingUnderwearSocksRainbowThigh = носки - .desc = Радужные. -ent-ClothingUnderwearSocksHigh = высокие носки - .desc = Белые. -ent-ClothingUnderwearSocksNormal = носки - .desc = Белые. -ent-ClothingUnderwearSocksShort = короткие носки - .desc = Белые. -ent-ClothingUnderwearSocksThigh = чулки - .desc = Прозрачные. -ent-ClothingUnderwearStockingsBlue = чулки - .desc = Голубые. -ent-ClothingUnderwearStockingsCyan = чулки - .desc = Циановые. -ent-ClothingUnderwearStockingsPink = чулки - .desc = Розовые. -ent-ClothingUnderwearStockingsGreen = чулки - .desc = Зеленые. -ent-ClothingUnderwearStockingsLightPink = чулки - .desc = Светло-розовые. -ent-ClothingUnderwearStockingsLightOrange = чулки - .desc = Оранжевые. -ent-ClothingUnderwearStockingsLightPurple = чулки - .desc = Светло-фиолетовые. -ent-ClothingUnderwearStockingsLightYellow = чулки - .desc = Желтые. -ent-ClothingUnderwearSocksStripedKnee = носки - .desc = Черно-белые. -ent-ClothingUnderwearSocksStripedThigh = носки - .desc = Черно-белые. -ent-ClothingUnderwearSocksThinKnee = носки - .desc = Прозрачные. -ent-ClothingUnderwearSocksThinThigh = носки - .desc = Прозрачные. -ent-ClothingUnderwearSocksWeb = паутинные чулки - .desc = Паутинные. Паучьи. diff --git a/Resources/Locale/ru-RU/clothing/top.ftl b/Resources/Locale/ru-RU/clothing/top.ftl deleted file mode 100644 index 6f43cb16a0..0000000000 --- a/Resources/Locale/ru-RU/clothing/top.ftl +++ /dev/null @@ -1,60 +0,0 @@ -ent-ClothingUnderwearTopBraCap = бра - .desc = Бра капитана. -ent-ClothingUnderwearTopBraInspector = бра - .desc = Довольно откровенное бра инспектора. -ent-ClothingUnderwearTopBraCE = бра - .desc = Бра старшего инженера. -ent-ClothingUnderwearTopBraCMO = бра - .desc = Бра главного врача. -ent-ClothingUnderwearTopBraHOP = бра главы персонала - .desc = Бра главы персонала. -ent-ClothingUnderwearTopBraHOS = бра - .desc = Бра главы службы безопасности. -ent-ClothingUnderwearTopBraQM = бра - .desc = Бра квартирмейстера. -ent-ClothingUnderwearTopBraRD = бра - .desc = Бра научного руководителя. -ent-ClothingUnderwearTopBraWhite = бра - .desc = Белый лифчик. -ent-ClothingUnderwearTopBraSports = спортивное бра - .desc = Белый лифчик для занятий спортом. -ent-ClothingUnderwearTopBraSportsAlternative = спортивное бра - .desc = Белый лифчик для занятий спортом. -ent-ClothingUnderwearTopBraBeeKini = бра - .desc = На этикетке написано "собственность РОЙ ПЧЕЛ"! -ent-ClothingUnderwearTopBraBinder = бра - .desc = Утягивает. -ent-ClothingUnderwearTopBraBinderStrapless = бра - .desc = Утягивает, да еще и без бретелек! -ent-ClothingUnderwearTopBraKinky = бра - .desc = Эксцентричное... -ent-ClothingUnderwearTopBraNeko = бра - .desc = Мяукает. -ent-ClothingUnderwearTopBraStrapless = бра - .desc = Без бретелек. -ent-ClothingUnderwearTopBraStraplessAlt = бра - .desc = Без бретелек. -ent-ClothingUnderwearTopBraSwimming = бра - .desc = Для плавания. -ent-ClothingUnderwearTopBraSwimmingAlt = бра - .desc = Для плавания. -ent-ClothingUnderwearTopBraThin = бра - .desc = Тонкое. -ent-ClothingUnderwearTopFishnetBody = бра - .desc = Сеточка. -ent-ClothingUnderwearTopFishnetBodyGloves = бра - .desc = Сеточка с перчатками. -ent-ClothingUnderwearTopFishnetBodySleeves = бра - .desc = Сеточка с рукавами. -ent-ClothingUnderwearTopBraHalterneck = бра - .desc = С коротким вырезом. -ent-ClothingUnderwearTopBraShibari = бра - .desc = Шибари. -ent-ClothingUnderwearTopBraShibariSleeves = бра - .desc = Шибари с рукавами. -ent-ClothingUnderwearTopBraStriped = бра - .desc = В полосочку. -ent-ClothingUnderwearTopBraTubetop = бра - .desc = Трубчатый... -ent-ClothingUnderwearTopBraCow = бра - .desc = Му-ууу. diff --git a/Resources/Locale/ru-RU/clothing/underwear.ftl b/Resources/Locale/ru-RU/clothing/underwear.ftl deleted file mode 100644 index ddd60a277c..0000000000 --- a/Resources/Locale/ru-RU/clothing/underwear.ftl +++ /dev/null @@ -1,68 +0,0 @@ -ent-ClothingUnderwearBottomPantiesWhite = трусики - .desc = Белые. -ent-ClothingUnderwearBottomBoxersWhite = боксеры - .desc = Белые. -ent-ClothingUnderwearBottomBoxersCap = капитанские боксеры - .desc = Боксеры капитана. -ent-ClothingUnderwearBottomBoxersInspector = кожанные трусы инспектора - .desc = Обтягивающие кожаные трусы инспектора на подтяжках, весьма экстравагантно... но зачем? -ent-ClothingUnderwearBottomBoxersCE = боксеры старшего инженера - .desc = Боксеры старшего инженера. -ent-ClothingUnderwearBottomBoxersCMO = боксеры главного врача - .desc = Боксеры главного врача. -ent-ClothingUnderwearBottomBoxersHOP = боксеры главы персонала - .desc = Боксеры главы персонала. -ent-ClothingUnderwearBottomBoxersHOS = боксеры главы службы безопасности - .desc = Боксеры главы службы безопасности. -ent-ClothingUnderwearBottomBoxersQM = боксеры квартирмейстера - .desc = Боксеры квартирмейстера. -ent-ClothingUnderwearBottomBoxersRD = боксеры научного руководителя - .desc = Боксеры научного руководителя. -ent-ClothingUnderwearBottomPantiesCap = капитанские трусики - .desc = Трусики капитана. -ent-ClothingUnderwearBottomPantiesInspector = трусики инспектора - .desc = Обтягивающие кожаные трусики инспектора, точно не причина его недовольства экипажем. -ent-ClothingUnderwearBottomPantiesCE = трусики старшего инженера - .desc = Трусики старшего инженера. -ent-ClothingUnderwearBottomPantiesCMO = трусики главного врача - .desc = Трусики главного врача. -ent-ClothingUnderwearBottomPantiesHOP = трусики главы персонала - .desc = Трусики главы персонала. -ent-ClothingUnderwearBottomPantiesHOS = трусики главы службы безопасности - .desc = Трусики главы службы безопасности. -ent-ClothingUnderwearBottomPantiesQM = трусики квартирмейстера - .desc = Трусики квартирмейстера. -ent-ClothingUnderwearBottomPantiesRD = трусики научного руководителя - .desc = Трусики научного руководителя. -ent-ClothingUnderwearBottomBeeShorts = шорты пчелки - .desc = Пчелки... -ent-ClothingUnderwearBottomBoxersHeart = боксеры с сердечками - .desc = Весьма любвиабельные боксеры. -ent-ClothingUnderwearBottomBoxersStriped = полосатые боксеры - .desc = В полосочку. Как у зебры. -ent-ClothingUnderwearBottomBriefs = брифы - .desc = Брифы. Удобные. Стильные. -ent-ClothingUnderwearBottomFishnetLower = сетчатые трусики - .desc = В сеточку. -ent-ClothingUnderwearBottomJockstrap = джоки - .desc = Джоки. -ent-ClothingUnderwearBottomMankini = манкини - .desc = Удобное. -ent-ClothingUnderwearBottomPantiesBeeKini = трусики пчелки - .desc = Пчелки. Бзззз. -ent-ClothingUnderwearBottomPantiesKinky = соблазнительные трусики - .desc = Эксцентричные... -ent-ClothingUnderwearBottomPantiesNeko = неко трусики - .desc = Мяу... -ent-ClothingUnderwearBottomPantiesSlim = узкие трусики - .desc = Узкие. До боли. -ent-ClothingUnderwearBottomPantiesSwimming = купальник - .desc = Для плаванья. -ent-ClothingUnderwearBottomPantiesThin = тонкие трусики - .desc = Тоненькие. До неприличия. -ent-ClothingUnderwearBottomPantiesStripped = полосатые трусики - .desc = В полосочку. Как у зебры. -ent-ClothingUnderwearBottomPantiesThong = Стринги. - .desc = Стринги. Для смелых. -ent-ClothingUnderwearBottomWebLower = паутинные трусики - .desc = Паутинные. Паучьи. diff --git a/Resources/Locale/ru-RU/customization/character-requirements.ftl b/Resources/Locale/ru-RU/customization/character-requirements.ftl new file mode 100644 index 0000000000..def50687f7 --- /dev/null +++ b/Resources/Locale/ru-RU/customization/character-requirements.ftl @@ -0,0 +1,141 @@ +## Job +character-job-requirement = Вы{$inverted -> + [true]{" "}не + *[other]{""} +} должны быть одной из этих ролей: {$jobs} + +character-department-requirement = Вы{$inverted -> + [true]{" "}не + *[other]{""} +} должны быть в одном из этих отделов: {$departments} + +character-timer-department-insufficient = Вам необходимо наиграть еще [color=yellow]{TOSTRING($time, "0")}[/color] минут в [color={$departmentColor}]{$department}[/color] отделе +character-timer-department-too-high = Вам необходимо иметь на [color=yellow]{TOSTRING($time, "0")}[/color] меньше минут в [color={$departmentColor}]{$department}[/color] отделе + +character-timer-overall-insufficient = Вам необходимо наиграть еще [color=yellow]{TOSTRING($time, "0")}[/color] минут +character-timer-overall-too-high = Вам необходимо иметь на [color=yellow]{TOSTRING($time, "0")}[/color] меньше минут в игре + +character-timer-role-insufficient = Вам необходимо наиграть еще [color=yellow]{TOSTRING($time, "0")}[/color] минут на роли [color={$departmentColor}]{$job}[/color] +character-timer-role-too-high = Вам необходимо иметь на [color=yellow]{TOSTRING($time, "0")}[/color] меньше минут на роли [color={$departmentColor}]{$job}[/color] + + +## Logic +character-logic-and-requirement-listprefix = {""} + {$indent}[color=gray]&[/color]{" "} +character-logic-and-requirement = Вы{$inverted -> + [true]{" "}не + *[other]{""} +} должны подходить под [color=red]все[/color] [color=gray]условия[/color]: {$options} + +character-logic-or-requirement-listprefix = {""} + {$indent}[color=white]O[/color]{" "} +character-logic-or-requirement = Вы{$inverted -> + [true]{" "}не + *[other]{""} +} должны подходить под [color=red]хотя бы одно[/color] [color=white]условие[/color]: {$options} + +character-logic-xor-requirement-listprefix = {""} + {$indent}[color=white]X[/color]{" "} +character-logic-xor-requirement = Вы{$inverted -> + [true]{" "}не + *[other]{""} +} должны подходить под [color=red]только одно[/color] [color=white]условие[/color]: {$options} + + +## Profile +character-age-requirement = Вам{$inverted -> + [true]{" "}не + *[other]{""} +} должно быть больше [color=yellow]{$min}[/color] и меньше [color=yellow]{$max}[/color] лет + +character-backpack-type-requirement = Вы{$inverted -> + [true]{" "}не + *[other]{""} +} должны использовать [color=brown]{$type}[/color] в качестве вашего рюкзака + +character-clothing-preference-requirement = Вы {$inverted -> + [true]{" "}не + *[other]{""} +} должны носить [color=white]{$type}[/color] + +character-gender-requirement = Ваши местоимения{$inverted -> + [true]{" "}не + *[other]{""} +} должны быть [color=white]{$gender}[/color] + +character-sex-requirement = Вы {$inverted -> + [true]{" "}не + *[other]{""} +} должны быть [color=white]{$sex -> + [None] бесполым + *[other] {$sex} +}[/color] + +character-species-requirement = Вы{$inverted -> + [true]{" "}не + *[other]{""} +} должно быть {$species} + +character-height-requirement = Ваш рост{$inverted -> + [true]{" "}не + *[other]{""} +} должен быть {$min -> + [-2147483648]{$max -> + [2147483648]{""} + *[other] меньше чем [color={$color}]{$max}[/color]см + } + *[other]{$max -> + [2147483648] больше чем [color={$color}]{$min}[/color]см + *[other] между [color={$color}]{$min}[/color] и [color={$color}]{$max}[/color]см + } +} + +character-width-requirement = Ваша ширина{$inverted -> + [true]{" "}не + *[other]{""} +} должна быть {$min -> + [-2147483648]{$max -> + [2147483648]{""} + *[other] меньше чем [color={$color}]{$max}[/color]см + } + *[other]{$max -> + [2147483648] больше чем [color={$color}]{$min}[/color]см + *[other] между [color={$color}]{$min}[/color] и [color={$color}]{$max}[/color]см + } +} + +character-weight-requirement = Вы{$inverted -> + [true]{" "}не + *[other]{""} +} должны весить {$min -> + [-2147483648]{$max -> + [2147483648]{""} + *[other] меньше чем [color={$color}]{$max}[/color]кг + } + *[other]{$max -> + [2147483648] больше чем [color={$color}]{$min}[/color]кг + *[other] между [color={$color}]{$min}[/color] и [color={$color}]{$max}[/color]кг + } +} + +character-trait-requirement = У вас{$inverted -> + [true]{" "}не + *[other]{""} +} должны быть следующие перки: {$traits} + +character-loadout-requirement = У вас{$inverted -> + [true]{" "}не + *[other]{""} +} должно быть следующее снаряжение: {$loadouts} + + +character-item-group-requirement = Вы{$inverted -> + [true] должны иметь {$max} или больше + *[other] должны иметь {$max} или меньше +} предметов из группы [color=white]{$group}[/color] + +## Whitelist +character-whitelist-requirement = Вы{$inverted -> + [true]{" "}не + *[other]{""} +} должны быть в вайтлисте diff --git a/Resources/Locale/ru-RU/deltav/job/department-desc.ftl b/Resources/Locale/ru-RU/deltav/job/department-desc.ftl new file mode 100644 index 0000000000..2a95ea5a6d --- /dev/null +++ b/Resources/Locale/ru-RU/deltav/job/department-desc.ftl @@ -0,0 +1,2 @@ +department-Justice-description = Поддерживайте правосудие на станции. + diff --git a/Resources/Locale/ru-RU/deltav/job/department.ftl b/Resources/Locale/ru-RU/deltav/job/department.ftl new file mode 100644 index 0000000000..e3b4c23da0 --- /dev/null +++ b/Resources/Locale/ru-RU/deltav/job/department.ftl @@ -0,0 +1,4 @@ +department-Epistemics = Отдел мистики и исследований +department-Logistics = Отдел логистики +department-Justice = Отдел юстиции + diff --git a/Resources/Locale/ru-RU/deltav/job/job-description.ftl b/Resources/Locale/ru-RU/deltav/job/job-description.ftl new file mode 100644 index 0000000000..e5190182bb --- /dev/null +++ b/Resources/Locale/ru-RU/deltav/job/job-description.ftl @@ -0,0 +1,5 @@ +job-description-medical-borg = Получеловек, полумашина. Следуйте законам, служите экипажу и помогайте медицинскому отделу. +job-description-chief-justice = Управляйте отделом юстиции, выступайте в роли судьи и следить за тем, чтобы все получали честное и справедливое НАКАЗАНИЕ. +job-description-clerk = Организовывайте судебные процессы, заверяйте документы, рассматривайте обвинения и при необходимости выступайте в роли судьи. +job-description-prosecutor = Принимайте обвинения от охраны и готовьте дела против грязных преступников. +job-description-courier = Доставляйте почту и другие посылки из отдела логистики и в отдел логистики. Избегайте собак. diff --git a/Resources/Locale/ru-RU/deltav/job/job-names.ftl b/Resources/Locale/ru-RU/deltav/job/job-names.ftl new file mode 100644 index 0000000000..77b1427384 --- /dev/null +++ b/Resources/Locale/ru-RU/deltav/job/job-names.ftl @@ -0,0 +1,6 @@ +job-name-medical-borg = Медицинский Киборг +job-name-chief-justice = Главный Судья +job-name-clerk = Судебный клерк +job-name-prosecutor = Прокурор +job-name-lawyer = Адвокат +job-name-courier = Курьер diff --git a/Resources/Locale/ru-RU/deltav/job/job-supervisors.ftl b/Resources/Locale/ru-RU/deltav/job/job-supervisors.ftl new file mode 100644 index 0000000000..404fa9d352 --- /dev/null +++ b/Resources/Locale/ru-RU/deltav/job/job-supervisors.ftl @@ -0,0 +1,2 @@ +job-supervisors-cj = главный судья + diff --git a/Resources/Locale/ru-RU/escape-menu/ui/options-menu.ftl b/Resources/Locale/ru-RU/escape-menu/ui/options-menu.ftl index 16a8697fd0..d16044e642 100644 --- a/Resources/Locale/ru-RU/escape-menu/ui/options-menu.ftl +++ b/Resources/Locale/ru-RU/escape-menu/ui/options-menu.ftl @@ -140,7 +140,6 @@ ui-options-function-swap-hands = Поменять руки ui-options-function-move-stored-item = Переместить хранящийся объект ui-options-function-rotate-stored-item = Повернуть хранящийся объект ui-options-function-lie-down = Лечь/встать -ui-options-function-auto-get-up = Автоматически вставать при падении ui-options-function-save-item-location = Сохранить позицию предмета ui-options-static-storage-ui = Закрепить интерфейс хранилища на хотбаре ui-options-function-offer-item = Передать что-то @@ -271,3 +270,8 @@ ui-options-net-pvs-leave-tooltip = ## Toggle window console command cmd-options-desc = Открывает меню опций, опционально с конкретно выбранной вкладкой. cmd-options-help = Использование: options [tab] + +## Combat Options +ui-options-function-look-up = Присмотреться/Прицелиться +ui-options-function-auto-get-up = Автоматически вставать при падении +ui-options-function-hold-look-up = Удерживать клавишу для прицеливания diff --git a/Resources/Locale/ru-RU/ghost/ghost-gui.ftl b/Resources/Locale/ru-RU/ghost/ghost-gui.ftl index fcbde2e178..ce9084d21f 100644 --- a/Resources/Locale/ru-RU/ghost/ghost-gui.ftl +++ b/Resources/Locale/ru-RU/ghost/ghost-gui.ftl @@ -1,33 +1 @@ -ghost-gui-return-to-body-button = Вернуться в тело -ghost-gui-ghost-warp-button = Телепорт призрака -ghost-gui-ghost-roles-button = Роли призраков ({ $count }) -ghost-gui-return-to-round-button = Вернуться в раунд -ghost-gui-toggle-ghost-visibility-name = Переключить призраков -ghost-gui-toggle-ghost-visibility-desc = Переключить видимость других призраков. -ghost-gui-toggle-ghost-visibility-popup = Видимость других призраков была изменена. -ghost-gui-toggle-lighting-manager-name = Переключить освещение -ghost-gui-toggle-lighting-manager-desc = Включите или отключите рендеринг света, чтобы лучше видеть затенённые области. -ghost-gui-toggle-lighting-manager-popup = Рендеринг света был переключён. -ghost-gui-toggle-fov-name = Переключить поле зрения -ghost-gui-toggle-fov-desc = Переключить поле зрения чтобы видеть то же, что и игроки. -ghost-gui-toggle-fov-popup = Поле зрения было переключено. -ghost-gui-scare-name = Буу! -ghost-gui-scare-desc = Напугайте экипаж станции! -ghost-gui-toggle-ghost-hearing-name = Переключить видимость сообщений -ghost-gui-toggle-ghost-hearing-desc = Переключение между прослушиванием всех сообщений и прослушиванием только радиосвязи и ближайших сообщений. -ghost-gui-toggle-hearing-popup-on = Теперь вы слышите все сообщения. -ghost-gui-toggle-hearing-popup-off = Теперь вы можете слышать только радиосвязь и ближайшие сообщения. - - -ghost-target-window-title = Телепорт призрака -ghost-target-window-current-button = Телепорт в: { $name } - -ghost-roles-window-title = Роли призраков -ghost-roles-window-request-role-button = Запросить -ghost-roles-window-request-role-button-timer = Запросить ({ $time }сек.) -ghost-roles-window-follow-role-button = Следовать -ghost-roles-window-no-roles-available-label = В настоящее время нет доступных ролей призраков. - -ghost-return-to-body-title = Вернуться в тело -ghost-return-to-body-text = Вы возрождаетесь! Вернуться в свое тело? -ghost-roles-window-rules-footer = Кнопка станет доступна через { $time } секунд (эта задержка нужна, чтобы убедиться, что вы прочитали правила). \ No newline at end of file +ghost-gui-return-to-round-button = Вернуться в раунд \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_white/ghost/ghost-respawn.ftl b/Resources/Locale/ru-RU/ghost/ghost-respawn.ftl similarity index 100% rename from Resources/Locale/ru-RU/_white/ghost/ghost-respawn.ftl rename to Resources/Locale/ru-RU/ghost/ghost-respawn.ftl diff --git a/Resources/Locale/ru-RU/job/department-desc.ftl b/Resources/Locale/ru-RU/job/department-desc.ftl index 7065aa296e..dc0d88e986 100644 --- a/Resources/Locale/ru-RU/job/department-desc.ftl +++ b/Resources/Locale/ru-RU/job/department-desc.ftl @@ -4,6 +4,5 @@ department-Command-description = Управляйте персоналом ст department-Engineering-description = Поддерживайте электроэнергию и станцию в рабочем состоянии. department-Medical-description = Поддерживайте здоровье персонала. department-Security-description = Охраняйте порядок на станции. -department-Justice-description = Поддерживайте почетание законв на станции. department-Science-description = Исследуйте новые технологии и опасные артефакты. department-Specific-description = Должности, которые есть не на всех станциях. diff --git a/Resources/Locale/ru-RU/job/department.ftl b/Resources/Locale/ru-RU/job/department.ftl index 32637e0837..bd93f93f69 100644 --- a/Resources/Locale/ru-RU/job/department.ftl +++ b/Resources/Locale/ru-RU/job/department.ftl @@ -7,4 +7,3 @@ department-Security = Служба безопасности department-Science = Научный отдел department-Specific = Другие department-Silicon = Киборги -department-Justice = Отдел юстиции diff --git a/Resources/Locale/ru-RU/job/job-description.ftl b/Resources/Locale/ru-RU/job/job-description.ftl index 3f92748bc3..6519963a8d 100644 --- a/Resources/Locale/ru-RU/job/job-description.ftl +++ b/Resources/Locale/ru-RU/job/job-description.ftl @@ -19,6 +19,7 @@ job-description-paramedic = Спасайте тяжелораненых паци job-description-detective = Исследуйте места преступлений с помощью криминалистических инструментов, убедитесь, что виновный клоун найден, да и просто загадочно курите в стороне. job-description-doctor = Диагностируйте и лечите персонал станции с помощью лекарственных препаратов, вакцин и лекарств от болезней, а также клонируйте мертвых. job-description-engineer = Поддерживайте главный двигатель станции и солнечные панели активными, оптимизируйте электросеть и производите аварийный ремонт с помощью своего скафандра. +job-description-ertchaplain = Убедитесь, что последняя воля членов экипажа будет выполнена. job-description-ertengineer = Убедитесь, что на станции есть электричество и чистый воздух. job-description-ertjanitor = Убедитесь, что станция должным образом очищена - для поддержания морального духа job-description-ertleader = Возглавьте группу ОБР в борьбе с угрозами для активов Nanotrasen. @@ -36,12 +37,14 @@ job-description-passenger = Найдите своё предназначение job-description-psychologist = Оказывайте эмоциональную поддержку травмированному экипажу. Доступно не на всех картах! job-description-qm = Управляйте снабжением станции и грузового отдела, следите за работой утилизаторов, принимайте только нужные заказы и пусть деньги текут рекой. job-description-rd = Управляйте научным отделом, открывая технологии, получая и исследуя артефакты и проводя эксперименты. -job-description-research-assistant = Изучите основные принципы исследования различных артефактов и аномалий, и основы робототехники.. +job-description-research-assistant = Изучите основные принципы исследования различных артефактов и аномалий, и основы робототехники. job-description-reporter = Развлекайте и информируйте съемочную персонал станции своей яркой журналистикой с помощью беспроводных камер и радио. Доступно не на всех картах! +job-description-roboticist = Соорудите собственную мастерскую в отделе и создайте армию киборгов. job-description-salvagespec = Используйте магнит для сбора мусора, чтобы притягивать брошенные предметы и астероиды, чтобы грабить и обогащать станцию, а также бороться с любой космической фауной по пути. job-description-scientist = Исследуйте инопланетные артефакты, открывайте новые технологии и заставляйте все работать более эффективно. job-description-security = Ловите преступников и врагов станции, соблюдайте закон и следите за тем, чтобы станция не впала в беспорядок. job-description-serviceworker = Изучите основы создания напитков, кулинарии или выращивания растений. +job-description-visitor = Наслаждайтесь своим отдыхом на станции. job-description-warden = Патрулируйте бриг, убедитесь, что никто не ворует из арсенала, и следите за тем, чтобы ушлый клоун снова не сбежал раньше срока. job-description-zookeeper = Покажите всем членам экипажа веселую выставку милых животных и космических карпов. Доступно не на всех картах! job-description-inspector = Убедитесь, что станция выполнит свою цель. Решите проблемы и конфликты между отделами, чтобы все работало как часы. @@ -50,3 +53,4 @@ job-description-senior-researcher = Обучайте новых ученых о job-description-senior-physician = Научите новых медиков основам ухода за ранеными, химии, диагностике больных и избавлению от мертвых. job-description-senior-officer = Научите новых офицеров основам обысков, предварительных арестов, тюремного заключения и тому, как правильно стрелять из огнестрельного оружия. job-description-senior-salvage-specialist = Покажите всем коллегам как профессионалы обчищают обломки и выполняют экспедиции. +job-description-maid = Поддерживайте чистоту и порядок на мостике. Обеспечивайте комфортные условия работы для командного состава. diff --git a/Resources/Locale/ru-RU/job/job-names.ftl b/Resources/Locale/ru-RU/job/job-names.ftl index 04b71f03ba..e9003bbffc 100644 --- a/Resources/Locale/ru-RU/job/job-names.ftl +++ b/Resources/Locale/ru-RU/job/job-names.ftl @@ -1,105 +1,105 @@ -job-name-warden = смотритель -job-name-security = офицер СБ -job-name-cadet = кадет СБ -job-name-hos = глава службы безопасности -job-name-detective = детектив -job-name-brigmedic = бригмедик -job-name-borg = борг -job-name-scientist = учёный -job-name-research-assistant = научный ассистент -job-name-rd = научный руководитель -job-name-psychologist = психолог -job-name-intern = интерн -job-name-doctor = врач -job-name-paramedic = парамедик -job-name-cmo = главный врач -job-name-chemist = химик -job-name-technical-assistant = технический ассистент -job-name-engineer = инженер -job-name-atmostech = атмосферный техник -job-name-hop = глава персонала -job-name-captain = капитан -job-name-serviceworker = сервисный работник -job-name-centcomoff = представитель Центком -job-name-reporter = репортёр -job-name-musician = музыкант -job-name-librarian = библиотекарь -job-name-lawyer = юрист -job-name-inspector = инспектор -job-name-mime = мим -job-name-ce = старший инженер -job-name-janitor = уборщик -job-name-chaplain = священник -job-name-botanist = ботаник -job-name-bartender = бармен -job-name-passenger = ассистент -job-name-salvagespec = утилизатор -job-name-qm = квартирмейстер -job-name-cargotech = грузчик -job-name-chef = шеф-повар -job-name-clown = клоун -job-name-ertleader = лидер ОБР -job-name-ertengineer = инженер ОБР -job-name-ertsecurity = офицер безопасности ОБР -job-name-ertmedic = медик ОБР -job-name-ertjanitor = уборщик ОБР -job-name-boxer = боксёр -job-name-zookeeper = зоотехник -job-name-senior-engineer = бригадир -job-name-senior-researcher = ведущий исследователь -job-name-senior-physician = медицинский офицер -job-name-senior-officer = ветеран СБ -job-name-senior-salvage-specialist = охотник карго +job-name-warden = Смотритель +job-name-security = Офицер СБ +job-name-cadet = Кадет СБ +job-name-hos = Глава Службы Безопасности +job-name-detective = Детектив +job-name-brigmedic = Бригмедик +job-name-borg = Борг +job-name-scientist = Учёный +job-name-research-assistant = Научный Ассистент +job-name-rd = Мистагог +job-name-roboticist = Роботехник +job-name-psychologist = Психолог +job-name-intern = Интерн +job-name-doctor = Врач +job-name-paramedic = Парамедик +job-name-cmo = Главный Врач +job-name-chemist = Химик +job-name-technical-assistant = Технический Ассистент +job-name-engineer = Инженер +job-name-atmostech = Атмосферный Техник +job-name-hop = Глава Персонала +job-name-captain = Капитан +job-name-serviceworker = Сервисный Работник +job-name-centcomoff = Представитель Центрального Коммандования +job-name-reporter = Репортёр +job-name-musician = Музыкант +job-name-librarian = Библиотекарь +# DeltaV - Changed Lawyer to Attorney +# job-name-lawyer = Юрист +job-name-mime = Мим +job-name-ce = Старший Инженер +job-name-janitor = Уборщик +job-name-chaplain = Священник +job-name-botanist = Ботаник +job-name-bartender = Бармен +job-name-passenger = Ассистент +job-name-salvagespec = Утилизатор +job-name-qm = Квартирмейстер +job-name-cargotech = Грузчик +job-name-chef = Шеф-повар +job-name-clown = Клоун +job-name-ertleader = Лидер ОБР +job-name-ertchaplain = Священник ОБР +job-name-ertengineer = Инженер ОБР +job-name-ertsecurity = Офицер Безопасности ОБР +job-name-ertmedic = Медик ОБР +job-name-ertjanitor = Уборщик ОБР +job-name-boxer = Боксёр +job-name-zookeeper = Зоотехник +job-name-visitor = Посетитель # Role timers - Make these alphabetical or I cut you -JobAtmosphericTechnician = атмосферный техник -JobBartender = бармен -JobBorg = борг -JobBotanist = ботаник -JobBoxer = боксер -JobCaptain = капитан -JobCargoTechnician = грузчик -JobCentralCommandOfficial = представитель Центком -JobChaplain = священник -JobChef = шеф-повар -JobChemist = химик -JobChiefEngineer = старший инженер -JobChiefMedicalOfficer = главный врач -JobClown = клоун -JobDetective = детектив +JobAtmosphericTechnician = Атмосферный Техник +JobBartender = Бармен +JobBorg = Борг +JobBotanist = Ботаник +JobBoxer = Боксер JobBrigmedic = Бригмедик -JobERTEngineer = инженер ОБР -JobERTJanitor = уборщик ОБР -JobERTLeader = лидер ОБР -JobERTMedical = медик ОБР -JobERTSecurity = офицер безопасности ОБР -JobHeadOfPersonnel = глава персонала -JobHeadOfSecurity = глава службы безопасности -JobJanitor = уборщик -JobLawyer = юрист -JobLibrarian = библиотекарь -JobMedicalDoctor = врач -JobMedicalIntern = интерн -JobMime = мим -JobMusician = музыкант -JobParamedic = парамедик -JobPassenger = ассистент -JobPsychologist = психолог -JobQuartermaster = квартирмейстер -JobReporter = репортёр -JobResearchAssistant = научный ассистент -JobResearchDirector = научный руководитель -JobSalvageSpecialist = утилизатор -JobScientist = учёный -JobSecurityCadet = кадет СБ -JobSecurityOfficer = офицер СБ -JobServiceWorker = сервисный работник -JobSeniorSalvageSpecialist = охотник карго -JobSeniorEngineer = бригадир -JobSeniorOfficer = ветеран СБ -JobSeniorPhysician = медицинский офицер -JobSeniorResearcher = ведущий исследователь -JobStationEngineer = инженер -JobTechnicalAssistant = технический ассистент -JobWarden = смотритель -JobZookeeper = зоотехник +JobCaptain = Капитан +JobCargoTechnician = Грузчик +JobCentralCommandOfficial = Представитель Центрального Коммандования +JobChaplain = Священник +JobChef = Шеф-повар +JobChemist = Химик +JobChiefEngineer = Старший Инженер +JobChiefMedicalOfficer = Главный Врач +JobClown = Клоун +JobDetective = Детектив +JobERTChaplain = Священник ОБР +JobERTEngineer = Инженер ОБР +JobERTJanitor = Уборщик ОБР +JobERTLeader = Лидер ОБР +JobERTMedical = Медик ОБР +JobERTSecurity = Офицер Безопасности ОБР +JobHeadOfPersonnel = Глава Персонала +JobHeadOfSecurity = Глава Службы Безопасности +JobJanitor = Уборщик +JobLawyer = Юрист +JobLibrarian = Библиотекарь +JobMedicalDoctor = Врач +JobMedicalIntern = Интерн +JobMime = Мим +JobMusician = Музыкант +JobParamedic = Парамедик +JobPassenger = Ассистент +JobPsychologist = Психолог +JobQuartermaster = Квартирмейстер +JobReporter = Репортёр +JobResearchAssistant = Научный Ассистент +JobResearchDirector = Мистагог +JobRoboticist = Роботехник +JobSalvageSpecialist = Утилизатор +JobScientist = Учёный +JobSecurityCadet = Кадет СБ +JobSecurityOfficer = Офицер СБ +JobSeniorEngineer = Бригадир +JobSeniorOfficer = Ветеран СБ +JobSeniorPhysician = Медицинский Офицер +JobSeniorResearcher = Ведущий Исследователь +JobServiceWorker = Сервисный Работник +JobStationEngineer = Инженер +JobTechnicalAssistant = Технический Ассистент +JobVisitor = Посетитель +JobWarden = Смотритель +JobZookeeper = Зоотехник diff --git a/Resources/Locale/ru-RU/markings/moth.ftl b/Resources/Locale/ru-RU/markings/moth.ftl index e0cb4af24d..eebc73433e 100644 --- a/Resources/Locale/ru-RU/markings/moth.ftl +++ b/Resources/Locale/ru-RU/markings/moth.ftl @@ -1,60 +1,60 @@ -marking-MothAntennasDefault-default = Антенны -marking-MothAntennasDefault = Антенны (Обычные) +marking-MothAntennasDefault-default = Усики +marking-MothAntennasDefault = Усики (Обычные) -marking-MothAntennasCharred-charred = Антенны -marking-MothAntennasCharred = Антенны (Подгоревшие) +marking-MothAntennasCharred-charred = Усики +marking-MothAntennasCharred = Усики (Подгоревшие) -marking-MothAntennasDbushy-dbushy = Антенны -marking-MothAntennasDbushy = Антенны (Пушистые) +marking-MothAntennasDbushy-dbushy = Усики +marking-MothAntennasDbushy = Усики (Пушистые) -marking-MothAntennasDcurvy-dcurvy = Антенны -marking-MothAntennasDcurvy = Антенны (Закрученные) +marking-MothAntennasDcurvy-dcurvy = Усики +marking-MothAntennasDcurvy = Усики (Закрученные) -marking-MothAntennasDfan-dfan = Антенны -marking-MothAntennasDfan = Антенны (Вентилятор) +marking-MothAntennasDfan-dfan = Усики +marking-MothAntennasDfan = Усики (Вентилятор) -marking-MothAntennasDpointy-dpointy = Антенны -marking-MothAntennasDpointy = Антенны (Заостренные) +marking-MothAntennasDpointy-dpointy = Усики +marking-MothAntennasDpointy = Усики (Заостренные) -marking-MothAntennasFeathery-feathery = Антенны -marking-MothAntennasFeathery = Антенны (Перистые) +marking-MothAntennasFeathery-feathery = Усики +marking-MothAntennasFeathery = Усики (Перистые) -marking-MothAntennasFirewatch-firewatch = Антенны -marking-MothAntennasFirewatch = Антенны (Пожарный дозор) +marking-MothAntennasFirewatch-firewatch = Усики +marking-MothAntennasFirewatch = Усики (Пожарный Дозор) -marking-MothAntennasGray-gray = Антенны -marking-MothAntennasGray = Антенны (Серые) +marking-MothAntennasGray-gray = Усики +marking-MothAntennasGray = Усики (Серые) -marking-MothAntennasJungle-jungle = Антенны -marking-MothAntennasJungle = Антенны (Джунгли) +marking-MothAntennasJungle-jungle = Усики +marking-MothAntennasJungle = Усики (Джунгли) -marking-MothAntennasMaple-maple = Антенны -marking-MothAntennasMaple = Антенны (Клён) +marking-MothAntennasMaple-maple = Усики +marking-MothAntennasMaple = Усики (Клён) -marking-MothAntennasMoffra-moffra = Антенны -marking-MothAntennasMoffra = Антенны (Моффра) +marking-MothAntennasMoffra-moffra = Усики +marking-MothAntennasMoffra = Усики (Моффра) -marking-MothAntennasOakworm-oakworm = Антенны -marking-MothAntennasOakworm = Антенны (Дятел) +marking-MothAntennasOakworm-oakworm = Усики +marking-MothAntennasOakworm = Усики (Дубовая Моль) -marking-MothAntennasPlasmafire-plasmafire = Антенны -marking-MothAntennasPlasmafire = Антенны (Пожар плазмы) +marking-MothAntennasPlasmafire-plasmafire = Усики +marking-MothAntennasPlasmafire = Усики (Пожар Плазмы) -marking-MothAntennasRoyal-royal = Антенны -marking-MothAntennasRoyal = Антенны (Королевские) +marking-MothAntennasRoyal-royal = Усики +marking-MothAntennasRoyal = Усики (Королевские) -marking-MothAntennasStriped-striped = Антенны -marking-MothAntennasStriped = Антенны (В полоску) +marking-MothAntennasStriped-striped = Усики +marking-MothAntennasStriped = Усики (В полоску) -marking-MothAntennasWhitefly-whitefly = Антенны -marking-MothAntennasWhitefly = Антенны (Белая Мечта) +marking-MothAntennasWhitefly-whitefly = Усики +marking-MothAntennasWhitefly = Усики (Белая Мечта) -marking-MothAntennasWitchwing-witchwing = Антенны -marking-MothAntennasWitchwing = Антенны (Крылья Ведьмы) +marking-MothAntennasWitchwing-witchwing = Усики +marking-MothAntennasWitchwing = Усики (Крылья Ведьмы) marking-MothAntennasUnderwing-underwing_primary = Основные marking-MothAntennasUnderwing-underwing_secondary = Основные -marking-MothAntennasUnderwing = Антенны (Подкрылок) +marking-MothAntennasUnderwing = Усики (Подкрылок) @@ -83,7 +83,7 @@ marking-MothWingsFeathery = Крылья (Перистые) marking-MothWingsFirewatch-firewatch_primary = Основные marking-MothWingsFirewatch-firewatch_secondary = Вторичные -marking-MothWingsFirewatch = Крылья (Пожарный дозор) +marking-MothWingsFirewatch = Крылья (Пожарный Дозор) marking-MothWingsGothic-gothic = Крылья marking-MothWingsGothic = Крылья (Готика) @@ -102,11 +102,11 @@ marking-MothWingsMoffra-moffra_secondary = Вторичные marking-MothWingsMoffra = Крылья (Моффра) marking-MothWingsOakworm-oakworm = Крылья -marking-MothWingsOakworm = Крылья (Дятел) +marking-MothWingsOakworm = Крылья (Дубовая Моль) marking-MothWingsPlasmafire-plasmafire_primary = Основные marking-MothWingsPlasmafire-plasmafire_secondary = Вторичные -marking-MothWingsPlasmafire = Крылья (Пожар плазмы) +marking-MothWingsPlasmafire = Крылья (Пожар Плазмы) marking-MothWingsPointy-pointy = Крылья marking-MothWingsPointy = Крылья (Заостренные) @@ -198,22 +198,22 @@ marking-MothRArmFan = Правая рука (Вентилятор) marking-MothChestFirewatch-firewatch_chest = Тело -marking-MothChestFirewatch = Тело (Пожарный дозор) +marking-MothChestFirewatch = Тело (Пожарный Дозор) marking-MothHeadFirewatch-firewatch_head = Голова -marking-MothHeadFirewatch = Голова (Пожарный дозор) +marking-MothHeadFirewatch = Голова (Пожарный Дозор) marking-MothLLegFirewatch-firewatch_l_leg = Левая нога -marking-MothLLegFirewatch = Левая нога (Пожарный дозор) +marking-MothLLegFirewatch = Левая нога (Пожарный Дозор) marking-MothRLegFirewatch-firewatch_r_leg = Правая нога -marking-MothRLegFirewatch = Правая нога (Пожарный дозор) +marking-MothRLegFirewatch = Правая нога (Пожарный Дозор) marking-MothLArmFirewatch-firewatch_l_arm = Левая рука -marking-MothLArmFirewatch = Левая рука (Пожарный дозор) +marking-MothLArmFirewatch = Левая рука (Пожарный Дозор) marking-MothRArmFirewatch-firewatch_r_arm = Правая рука -marking-MothRArmFirewatch = Правая рука (Пожарный дозор) +marking-MothRArmFirewatch = Правая рука (Пожарный Дозор) @@ -278,22 +278,22 @@ marking-MothRArmMoonfly = Правая рука (Лунатик) marking-MothChestOakworm-oakworm_chest = Тело -marking-MothChestOakworm = Тело (Дятел) +marking-MothChestOakworm = Тело (Дубовая Моль) marking-MothHeadOakworm-oakworm_head = Голова -marking-MothHeadOakworm = Голова (Дятел) +marking-MothHeadOakworm = Голова (Дубовая Моль) marking-MothLLegOakworm-oakworm_l_leg = Левая нога -marking-MothLLegOakworm = Левая нога (Дятел) +marking-MothLLegOakworm = Левая нога (Дубовая Мольая Моль) marking-MothRLegOakworm-oakworm_r_leg = Правая нога -marking-MothRLegOakworm = Правая нога (Дятел) +marking-MothRLegOakworm = Правая нога (Дубовая Моль) marking-MothLArmOakworm-oakworm_l_arm = Левая рука -marking-MothLArmOakworm = Левая рука (Дятел) +marking-MothLArmOakworm = Левая рука (Дубовая Моль) marking-MothRArmOakworm-oakworm_r_arm = Правая рука -marking-MothRArmOakworm = Правая рука (Дятел) +marking-MothRArmOakworm = Правая рука (Дубовая Моль) diff --git a/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl b/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl index 69411e5e8f..f3757037a4 100644 --- a/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl +++ b/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl @@ -33,10 +33,10 @@ station-beacon-robotics = Робототехника station-beacon-artifact-lab = Ксеноархеология station-beacon-anomaly-gen = Контроль аномалий -station-beacon-supply = Отдел снабжения +station-beacon-supply = Отдел логистики station-beacon-cargo = Карго station-beacon-cargo-bay = Стыковочный док карго -station-beacon-qm = Квартимейстер +station-beacon-qm = Завхоз station-beacon-salvage = Утилизаторская station-beacon-engineering = Инженерный отдел diff --git a/Resources/Locale/ru-RU/nyanotrasen/abilities/Oni.ftl b/Resources/Locale/ru-RU/nyanotrasen/abilities/Oni.ftl new file mode 100644 index 0000000000..7dd606f135 --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/abilities/Oni.ftl @@ -0,0 +1 @@ +oni-gun-fire = Вы не можете стрелять из оружия! diff --git a/Resources/Locale/ru-RU/nyanotrasen/abilities/borgs.ftl b/Resources/Locale/ru-RU/nyanotrasen/abilities/borgs.ftl new file mode 100644 index 0000000000..c63ff04721 --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/abilities/borgs.ftl @@ -0,0 +1,5 @@ +action-name-fabricate-lollipop = Создать леденец +action-description-fabricate-lollipop = Создать леденец с малым содержанием Омнизина. + +action-name-fabricate-gumball = Создать жвачку +action-description-fabricate-gumball = Создать жвачку из сахара и лекарств для лечения небольших травм. diff --git a/Resources/Locale/ru-RU/nyanotrasen/abilities/felinid.ftl b/Resources/Locale/ru-RU/nyanotrasen/abilities/felinid.ftl new file mode 100644 index 0000000000..3354b55bac --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/abilities/felinid.ftl @@ -0,0 +1,8 @@ +action-name-hairball = Выкашлять ком шерсти +action-description-hairball = Очистите свой желудок. В подарок получите смешной шарик, который можно кидать в людей. + +hairball-mask = Сначала снимите {$mask}. +hairball-cough = {CAPITALIZE(THE($name))} выкашливает ком шерсти! + +action-name-eat-mouse = Съесть мышь +action-description-eat-mouse = Съесть мышь. Состоит из вкуснейшей мышатины и шерсти. diff --git a/Resources/Locale/ru-RU/nyanotrasen/accent/accents.ftl b/Resources/Locale/ru-RU/nyanotrasen/accent/accents.ftl new file mode 100644 index 0000000000..16fdb066a8 --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/accent/accents.ftl @@ -0,0 +1,6 @@ +# Mothroach +accent-words-mothroach-1 = Сквии!! +accent-words-mothroach-2 = Чирик! +accent-words-mothroach-3 = Пиии! +accent-words-mothroach-4 = Ииии! +accent-words-mothroach-5 = Иип! diff --git a/Resources/Locale/ru-RU/nyanotrasen/advertisements/vending/maildrobe.ftl b/Resources/Locale/ru-RU/nyanotrasen/advertisements/vending/maildrobe.ftl new file mode 100644 index 0000000000..93cec019d1 --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/advertisements/vending/maildrobe.ftl @@ -0,0 +1,2 @@ +advertisement-maildrobe-1 = Сбегите от любой собаки с нашими шортами из искуственного дюракарбона! Ограниченное предложение! +advertisement-maildrobe-2 = Синий вам к лицу! diff --git a/Resources/Locale/ru-RU/nyanotrasen/barsign/barsign-component.ftl b/Resources/Locale/ru-RU/nyanotrasen/barsign/barsign-component.ftl new file mode 100644 index 0000000000..0c339e488e --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/barsign/barsign-component.ftl @@ -0,0 +1,7 @@ +## Whiskey Echoes +barsign-prototype-name-whiskeyecho = Отголоски Виски +barsign-prototype-description-whiskeyecho = Ух ты, парень! Садись и выпей! Независимо от твоей принадлежности, лозунг здесь - «Смерть трезвости!». + +## Klub Skub +barsign-prototype-name-klubskub = Клуб Скуб +barsign-prototype-description-klubskub = Скуб! diff --git a/Resources/Locale/ru-RU/nyanotrasen/carrying/carry.ftl b/Resources/Locale/ru-RU/nyanotrasen/carrying/carry.ftl new file mode 100644 index 0000000000..9b73b154ee --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/carrying/carry.ftl @@ -0,0 +1,4 @@ +carry-verb = Взять на руки + +carry-too-heavy = Вам не хватает сил. +carry-started = {THE($carrier)} пытается взять вас на руки! diff --git a/Resources/Locale/ru-RU/nyanotrasen/chemistry/effects.ftl b/Resources/Locale/ru-RU/nyanotrasen/chemistry/effects.ftl new file mode 100644 index 0000000000..955cb6a85d --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/chemistry/effects.ftl @@ -0,0 +1,7 @@ +## Disease System support + +reagent-effect-guidebook-chem-miasma-pool = + { $chance -> + [1] Вызывает + *[other] Вызывают + } заболевания diff --git a/Resources/Locale/ru-RU/nyanotrasen/ghost/roles/ghost-role-component.ftl b/Resources/Locale/ru-RU/nyanotrasen/ghost/roles/ghost-role-component.ftl new file mode 100644 index 0000000000..3decb016bc --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/ghost/roles/ghost-role-component.ftl @@ -0,0 +1,5 @@ +ghost-role-information-giant-spider-vampire-name = Онейрофаг +ghost-role-information-giant-spider-vampire-description = Плодитесь. Заманивайте. Нападайте. Поглощайте. + +ghost-role-information-cancer-mouse-name = Раковая Мышь +ghost-role-information-cancer-mouse-description = Грубите всем. Вообще всем. diff --git a/Resources/Locale/ru-RU/nyanotrasen/items/components/pseudoitem-component.ftl b/Resources/Locale/ru-RU/nyanotrasen/items/components/pseudoitem-component.ftl new file mode 100644 index 0000000000..e311be6295 --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/items/components/pseudoitem-component.ftl @@ -0,0 +1,2 @@ +action-name-insert-self = Залезть внутрь +action-name-insert-other = Поместить {THE($target)} diff --git a/Resources/Locale/ru-RU/nyanotrasen/job/job-description.ftl b/Resources/Locale/ru-RU/nyanotrasen/job/job-description.ftl new file mode 100644 index 0000000000..7e9b780594 --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/job/job-description.ftl @@ -0,0 +1,6 @@ +job-description-gladiator = Устройте боевое зрелище для экипажа. Сражайтесь за свою свободу, славу и честь. +job-description-guard = Следить за заключенными и обеспечивать их основными потребностями. +job-description-mail-carrier = Доставляйте почту и другие посылки из отдела логистики и в отдел логистики. Избегайте собак. +job-description-martialartist = Будьте благородным и дисциплинированным, устраивайте спарринг в додзё, вызывайте наивных кадетов на бой. +job-description-prisoner = Мотайте свой срок. Играйте в азартные игры со своими сокамерниками. Опустите надзирателя. +job-description-mantis = Разгадывайте загадки вселенной и тайны мировоздания... но главная загадка - кто же псионик на этой проклятой станции? diff --git a/Resources/Locale/ru-RU/nyanotrasen/job/job-names.ftl b/Resources/Locale/ru-RU/nyanotrasen/job/job-names.ftl new file mode 100644 index 0000000000..061a19fd94 --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/job/job-names.ftl @@ -0,0 +1,10 @@ +job-name-gladiator = Гладиатор +job-name-guard = Смотритель Тюрьмы +job-name-mail-carrier = Курьер +job-name-martialartist = Мастер Боевых Искусств +job-name-prisoner = Заключенный +job-name-mantis = Мантис + +# Role timers +JobMailCarrier = Курьер +JobForensicMantis = Мантис diff --git a/Resources/Locale/ru-RU/nyanotrasen/kitchen/deep-fryer-component.ftl b/Resources/Locale/ru-RU/nyanotrasen/kitchen/deep-fryer-component.ftl new file mode 100644 index 0000000000..42253daf4b --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/kitchen/deep-fryer-component.ftl @@ -0,0 +1,47 @@ +## DeepFryer Entity + +deep-fryer-blacklist-item-failed = Не удается покрыть маслом {CAPITALIZE(THE($item))}. +deep-fryer-oil-purity-low = {CAPITALIZE(THE($deepFryer))} безрезультатно брызгает маслом. +deep-fryer-oil-volume-low = {CAPITALIZE(THE($deepFryer))} горит и извергает дым! +deep-fryer-oil-no-slag = Нет шлака для слива. + +deep-fryer-storage-full = Все корзинки заполнены. +deep-fryer-storage-no-fit = {CAPITALIZE(THE($item))} не помещается ни в одну из корзин. +deep-fryer-interact-using-not-item = Похоже, это не предмет. + +deep-fryer-need-liquid-container-in-hand = Вам нужно держать емкость с жидкостью, например мензурку или миску. + +deep-fryer-thrown-missed = Промах! +deep-fryer-thrown-hit-oil = Плюп! +deep-fryer-thrown-hit-oil-low = Плюнк! + +deep-fryer-entity-escape = {CAPITALIZE(THE($victim))} выпрыгивает из {THE($deepFryer)}! + +## DeepFryer UI + +deep-fryer-window-title = Фритюрница +deep-fryer-label-baskets = Корзины +deep-fryer-label-oil-level = Уровень Масла +deep-fryer-label-oil-purity = Чистота Масла +deep-fryer-button-insert-item = Вставить Предмет +deep-fryer-button-insert-item-tooltip = Поместите удерживаемый предмет в одну из корзин фритюрницы. +deep-fryer-button-scoop-vat = Зачерпнуть Из Чана +deep-fryer-button-scoop-vat-tooltip = Зачерпните немного жидкости из чана с маслом. Для этого вам понадобится емкость. +deep-fryer-button-clear-slag = Убрать Шлак +deep-fryer-button-clear-slag-tooltip = Вытряхнуть немного отходов из чана с маслом. Для этого вам понадобится емкость. +deep-fryer-button-remove-all-items = Убрать Все Предметы +deep-fryer-button-remove-all-items-tooltip = Убрать все предметы из корзин фритюрницы за один раз. + +## DeepFriedComponent + +deep-fried-crispy-item = хрустящий {$entity} +deep-fried-crispy-item-examine = Он покрыт хрустящей маслянистой текстурой. + +deep-fried-fried-item = зажаренный {$entity} +deep-fried-fried-item-examine = Он покрыт толстым, хрустящим слоем. + +deep-fried-burned-item = подгоревший {$entity} +deep-fried-burned-item-examine = Он почернел от углей. + +reagent-name-oil-ghee = топленое масло +reagent-desc-oil-ghee = Густое и полупрозрачное. diff --git a/Resources/Locale/ru-RU/nyanotrasen/markings/felinid.ftl b/Resources/Locale/ru-RU/nyanotrasen/markings/felinid.ftl new file mode 100644 index 0000000000..2d6c0980e2 --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/markings/felinid.ftl @@ -0,0 +1,56 @@ +marking-FelinidEarsBasic = Обычные Ушки +marking-FelinidEarsBasic-basic_outer = Внешний пух +marking-FelinidEarsBasic-basic_inner = Внутренний цвет + +marking-FelinidEarsCurled = Завитые Ушки +marking-FelinidEarsCurled-curled_outer = Внешний пух +marking-FelinidEarsCurled-curled_inner = Внутренний цвет + +marking-FelinidEarsDroopy = Висячие Ушки +marking-FelinidEarsDroopy-droopy_outer = Внешний пух +marking-FelinidEarsDroopy-droopy_inner = Внутренний цвет + +marking-FelinidEarsFuzzy = Пушистые Ушки +marking-FelinidEarsFuzzy-basic_outer = Внешний пух +marking-FelinidEarsFuzzy-fuzzy_inner = Внутренний цвет + +marking-FelinidEarsStubby = Зауженные Ушки +marking-FelinidEarsStubby-stubby_outer = Внешний пух +marking-FelinidEarsStubby-stubby_inner = Внутренний цвет + +marking-FelinidEarsTall = Высокие Ушки +marking-FelinidEarsTall-tall_outer = Внешний пух +marking-FelinidEarsTall-tall_inner = Внутренний цвет +marking-FelinidEarsTall-tall_fuzz = Внутренний пух + +marking-FelinidEarsTorn = Поврежденные Ушки +marking-FelinidEarsTorn-torn_outer = Внешний пух +marking-FelinidEarsTorn-torn_inner = Внутренний цвет + +marking-FelinidEarsWide = Широкие Ушки +marking-FelinidEarsWide-wide_outer = Внешний пух +marking-FelinidEarsWide-wide_inner = Внутренний цвет + +marking-FelinidTailBasic = Обычный Хвостик +marking-FelinidTailBasic-basic_tail_tip = Кончик хвоста +marking-FelinidTailBasic-basic_tail_stripes_even = Полоски, четные +marking-FelinidTailBasic-basic_tail_stripes_odd = Полоски, нечетные + +marking-FelinidTailBasicWithBow = Обычный Хвостик С Бантиком +marking-FelinidTailBasicWithBow-basic_tail_tip = Кончик хвоста +marking-FelinidTailBasicWithBow-basic_tail_stripes_even = Полоски, четные +marking-FelinidTailBasicWithBow-basic_tail_stripes_odd = Полоски, нечетные +marking-FelinidTailBasicWithBow-basic_bow = Бантик + +marking-FelinidTailBasicWithBell = Обычный Хвостик С Колокольчиком +marking-FelinidTailBasicWithBell-basic_tail_tip = Кончик хвоста +marking-FelinidTailBasicWithBell-basic_tail_stripes_even = Полоски, четные +marking-FelinidTailBasicWithBell-basic_tail_stripes_odd = Полоски, нечетные +marking-FelinidTailBasicWithBell-basic_bell = Колокольчик + +marking-FelinidTailBasicWithBowAndBell = Обычный Хвостик С Бантиком и Колокольчиком +marking-FelinidTailBasicWithBowAndBell-basic_tail_tip = Кончик хвоста +marking-FelinidTailBasicWithBowAndBell-basic_tail_stripes_even = Полоски, четные +marking-FelinidTailBasicWithBowAndBell-basic_tail_stripes_odd = Полоски, нечетные +marking-FelinidTailBasicWithBowAndBell-basic_bow = Бантик +marking-FelinidTailBasicWithBowAndBell-basic_bell = Колокольчик diff --git a/Resources/Locale/ru-RU/nyanotrasen/markings/moth.ftl b/Resources/Locale/ru-RU/nyanotrasen/markings/moth.ftl new file mode 100644 index 0000000000..fa2f5a4cf0 --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/markings/moth.ftl @@ -0,0 +1,141 @@ +marking-MothAntennasClassicAspen = Усики (Амурский Бражник, Классика) +marking-MothAntennasClassicBrown = Усики (Коричневые, Классика) +marking-MothAntennasClassicDeathshead = Усики (Смерть Бражника, Классика) +marking-MothAntennasClassicFeathery = Усики (Шлейфовые, Классика) +marking-MothAntennasClassicFirewatch = Усики (Пожарный Дозор, Классика) +marking-MothAntennasClassicGothic = Усики (Готика, Классика) +marking-MothAntennasClassicJungle = Усики (Джунгли, Классика) +marking-MothAntennasClassicLovers = Усики (Влюбленные, Классика) +marking-MothAntennasClassicMint = Усики (Мятные, Классика) +marking-MothAntennasClassicMoffra = Усики (Моффра, Классика) +marking-MothAntennasClassicMoonfly = Усики (Лунатик, Классика) +marking-MothAntennasClassicOakworm = Усики (Дубовая Моль, Классика) +marking-MothAntennasClassicPlain = Усики (Обычные, Классика) +marking-MothAntennasClassicPlasmafire = Усики (Пожар Плазмы, Классика) +marking-MothAntennasClassicPoison = Усики (Ядовитые, Классика) +marking-MothAntennasClassicReddish = Усики (Рыжие, Классика) +marking-MothAntennasClassicRegal = Усики (Величественные, Классика) +marking-MothAntennasClassicRosy = Усики (Роза, Классика) +marking-MothAntennasClassicRoyal = Усики (Королевские, Классика) +marking-MothAntennasClassicSnow = Усики (Снежные, Классика) +marking-MothAntennasClassicWhitefly = Усики (Белокрылка, Классика) +marking-MothAntennasClassicWitchking = Усики (Король Ведьм, Классика) + + +marking-MothWingsClassicAspen = Крылья (Амурский Бражник, Классика) +marking-MothWingsClassicAtlas = Крылья (Атлас, Классика) +marking-MothWingsClassicBrown = Крылья (Коричневые, Классика) +marking-MothWingsClassicDeathshead = Крылья (Смерть Бражника, Классика) +marking-MothWingsClassicFeathery = Крылья (Шлейфовые, Классика) +marking-MothWingsClassicFirewatch = Крылья (Пожарный Дозор, Классика) +marking-MothWingsClassicGothic = Крылья (Готика, Классика) +marking-MothWingsClassicJungle = Крылья (Джунгли, Классика) +marking-MothWingsClassicLovers = Крылья (Влюбленные, Классика) +marking-MothWingsClassicLuna = Крылья (Луна, Классика) +marking-MothWingsClassicMint = Крылья (Мятные, Классика) +marking-MothWingsClassicMonarch = Крылья (Монарх, Классика) +marking-MothWingsClassicMoonfly = Крылья (Лунатик, Классика) +marking-MothWingsClassicMoffra = Крылья (Моффра, Классика) +marking-MothWingsClassicOakworm = Крылья (Дубовая Моль, Классика) +marking-MothWingsClassicPlain = Крылья (Обычные, Классика) +marking-MothWingsClassicPlasmafire = Крылья (Пожар Плазмы, Классика) +marking-MothWingsClassicPoison = Крылья (Ядовитые, Классика) +marking-MothWingsClassicRagged = Крылья (Порванные, Классика) +marking-MothWingsClassicReddish = Крылья (Рыжие, Классика) +marking-MothWingsClassicRosy = Крылья (Роза, Классика) +marking-MothWingsClassicRoyal = Крылья (Королевские, Классика) +marking-MothWingsClassicSnow = Крылья (Снежные, Классика) +marking-MothWingsClassicWhitefly = Крылья (Белокрылка, Классика) +marking-MothWingsClassicWitchking = Крылья (Король Ведьм, Классика) + + +marking-MothHeadClassicDeathshead = Голова (Смерть Бражника, Классика) +marking-MothChestClassicDeathshead = Тело (Смерть Бражника, Классика) +marking-MothLArmClassicDeathshead = Левая Рука (Смерть Бражника, Классика) +marking-MothRArmClassicDeathshead = Правая Рука (Смерть Бражника, Классика) +marking-MothLLegClassicDeathshead = Левая Нога (Смерть Бражника, Классика) +marking-MothRLegClassicDeathshead = Правая Нога (Смерть Бражника, Классика) + +marking-MothHeadClassicFirewatch = Голова (Пожарный Дозор, Классика) +marking-MothChestClassicFirewatch = Тело (Пожарный Дозор, Классика) +marking-MothLArmClassicFirewatch = Левая Рука (Пожарный Дозор, Классика) +marking-MothRArmClassicFirewatch = Правая Рука (Пожарный Дозор, Классика) +marking-MothLLegClassicFirewatch = Левая Нога (Пожарный Дозор, Классика) +marking-MothRLegClassicFirewatch = Правая Нога (Пожарный Дозор, Классика) + +marking-MothHeadClassicGothic = Голова (Готика, Классика) +marking-MothChestClassicGothic = Тело (Готика, Классика) +marking-MothLArmClassicGothic = Левая Рука (Готика, Классика) +marking-MothRArmClassicGothic = Правая Рука (Готика, Классика) +marking-MothLLegClassicGothic = Левая Нога (Готика, Классика) +marking-MothRLegClassicGothic = Правая Нога (Готика, Классика) + +marking-MothHeadClassicJungle = Голова (Джунгли, Классика) +marking-MothChestClassicJungle = Тело (Джунгли, Классика) +marking-MothLArmClassicJungle = Левая Рука (Джунгли, Классика) +marking-MothRArmClassicJungle = Правая Рука (Джунгли, Классика) +marking-MothLLegClassicJungle = Левая Нога (Джунгли, Классика) +marking-MothRLegClassicJungle = Правая Нога (Джунгли, Классика) + +marking-MothHeadClassicLovers = Голова (Влюбленные, Классика) +marking-MothChestClassicLovers = Тело (Влюбленные, Классика) +marking-MothLArmClassicLovers = Левая Рука (Влюбленные, Классика) +marking-MothRArmClassicLovers = Правая Рука (Влюбленные, Классика) +marking-MothLLegClassicLovers = Левая Нога (Влюбленные, Классика) +marking-MothRLegClassicLovers = Правая Нога (Влюбленные, Классика) + +marking-MothHeadClassicMoonfly = Голова (Лунатик, Классика) +marking-MothChestClassicMoonfly = Тело (Лунатик, Классика) +marking-MothLArmClassicMoonfly = Левая Рука (Лунатик, Классика) +marking-MothRArmClassicMoonfly = Правая Рука (Лунатик, Классика) +marking-MothLLegClassicMoonfly = Левая Нога (Лунатик, Классика) +marking-MothRLegClassicMoonfly = Правая Нога (Лунатик, Классика) + +marking-MothHeadClassicOakworm = Голова (Дубовая Моль, Классика) +marking-MothChestClassicOakworm = Тело (Дубовая Моль, Классика) +marking-MothLArmClassicOakworm = Левая Рука (Дубовая Моль, Классика) +marking-MothRArmClassicOakworm = Правая Рука (Дубовая Моль, Классика) +marking-MothLLegClassicOakworm = Левая Нога (Дубовая Моль, Классика) +marking-MothRLegClassicOakworm = Правая Нога (Дубовая Моль, Классика) + +marking-MothHeadClassicPoison = Голова (Ядовитые, Классика) +marking-MothChestClassicPoison = Тело (Ядовитые, Классика) +marking-MothLArmClassicPoison = Левая Рука (Ядовитые, Классика) +marking-MothRArmClassicPoison = Правая Рука (Ядовитые, Классика) +marking-MothLLegClassicPoison = Левая Нога (Ядовитые, Классика) +marking-MothRLegClassicPoison = Правая Нога (Ядовитые, Классика) + +marking-MothHeadClassicRagged = Голова (Порванные, Классика) +marking-MothChestClassicRagged = Тело (Порванные, Классика) +marking-MothLArmClassicRagged = Левая Рука (Порванные, Классика) +marking-MothRArmClassicRagged = Правая Рука (Порванные, Классика) +marking-MothLLegClassicRagged = Левая Нога (Порванные, Классика) +marking-MothRLegClassicRagged = Правая Нога (Порванные, Классика) + +marking-MothHeadClassicReddish = Голова (Рыжие, Классика) +marking-MothChestClassicReddish = Тело (Рыжие, Классика) +marking-MothLArmClassicReddish = Левая Рука (Рыжие, Классика) +marking-MothRArmClassicReddish = Правая Рука (Рыжие, Классика) +marking-MothLLegClassicReddish = Левая Нога (Рыжие, Классика) +marking-MothRLegClassicReddish = Правая Нога (Рыжие, Классика) + +marking-MothHeadClassicRoyal = Голова (Королевские, Классика) +marking-MothChestClassicRoyal = Тело (Королевские, Классика) +marking-MothLArmClassicRoyal = Левая Рука (Королевские, Классика) +marking-MothRArmClassicRoyal = Правая Рука (Королевские, Классика) +marking-MothLLegClassicRoyal = Левая Нога (Королевские, Классика) +marking-MothRLegClassicRoyal = Правая Нога (Королевские, Классика) + +marking-MothHeadClassicWhitefly = Голова (Белокрылка, Классика) +marking-MothChestClassicWhitefly = Тело (Белокрылка, Классика) +marking-MothLArmClassicWhitefly = Левая Рука (Белокрылка, Классика) +marking-MothRArmClassicWhitefly = Правая Рука (Белокрылка, Классика) +marking-MothLLegClassicWhitefly = Левая Нога (Белокрылка, Классика) +marking-MothRLegClassicWhitefly = Правая Нога (Белокрылка, Классика) + +marking-MothHeadClassicWitchking = Голова (Король Ведьм, Классика) +marking-MothChestClassicWitchking = Тело (Король Ведьм, Классика) +marking-MothLArmClassicWitchking = Левая Рука (Король Ведьм, Классика) +marking-MothRArmClassicWitchking = Правая Рука (Король Ведьм, Классика) +marking-MothLLegClassicWitchking = Левая Нога (Король Ведьм, Классика) +marking-MothRLegClassicWitchking = Правая Нога (Король Ведьм, Классика) diff --git a/Resources/Locale/ru-RU/nyanotrasen/markings/oni.ftl b/Resources/Locale/ru-RU/nyanotrasen/markings/oni.ftl new file mode 100644 index 0000000000..de9389d9aa --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/markings/oni.ftl @@ -0,0 +1,14 @@ +marking-OniHornSingleCurved = Single Curved +marking-OniHornSingleCurved-single_curved = Single Curved +marking-OniHornSingleLeftCurved = Single Left Curved +marking-OniHornSingleLeftCurved-single_left_curved = Single Left Curved +marking-OniHornSingleRightCurved = Single Right Curved +marking-OniHornSingleRightCurved-single_right_curved = Single Right Curved +marking-OniHornDoubleCurvedOutwards = Double Curved Outwards +marking-OniHornDoubleCurvedOutwards-double_curved_outwards = Double Curved Outwards +marking-OniHornDoubleCurved = Double Curved +marking-OniHornDoubleCurved-double_curved = Double Curved +marking-OniHornDoubleLeftBrokeCurved = Double Left Broke Curved +marking-OniHornDoubleLeftBrokeCurved-double_left_broke_curved = Double Left Broke Curved +marking-OniHornDoubleRightBrokeCurved = Double Right Broke Curved +marking-OniHornDoubleRightBrokeCurved-double_right_broke_curved = Double Right Broke Curved diff --git a/Resources/Locale/ru-RU/nyanotrasen/medical/components/health-analyzer-component.ftl b/Resources/Locale/ru-RU/nyanotrasen/medical/components/health-analyzer-component.ftl new file mode 100644 index 0000000000..9f45481437 --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/medical/components/health-analyzer-component.ftl @@ -0,0 +1,2 @@ +health-analyzer-window-damage-group-Immaterial = Нематериальный +health-analyzer-window-damage-type-Holy = Святой diff --git a/Resources/Locale/ru-RU/nyanotrasen/prototypes/access/accesses.ftl b/Resources/Locale/ru-RU/nyanotrasen/prototypes/access/accesses.ftl new file mode 100644 index 0000000000..9be8b58143 --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/prototypes/access/accesses.ftl @@ -0,0 +1 @@ +id-card-access-level-mail = Почта diff --git a/Resources/Locale/ru-RU/nyanotrasen/prototypes/fills/crates/syndicate-crates.ftl b/Resources/Locale/ru-RU/nyanotrasen/prototypes/fills/crates/syndicate-crates.ftl new file mode 100644 index 0000000000..9b6e4ee118 --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/prototypes/fills/crates/syndicate-crates.ftl @@ -0,0 +1,2 @@ +ent-CrateSyndicateSamurai = Ящик самурая Синдиката + .desc = Содержит современную реплику полного набора Тоусея-Гусоку. diff --git a/Resources/Locale/ru-RU/nyanotrasen/reagents/meta/consumable/drink/alcohol.ftl b/Resources/Locale/ru-RU/nyanotrasen/reagents/meta/consumable/drink/alcohol.ftl new file mode 100644 index 0000000000..bd95552c03 --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/reagents/meta/consumable/drink/alcohol.ftl @@ -0,0 +1,26 @@ +reagent-name-sake = сакэ +reagent-desc-sake = Алкогольный напиток, изготовленный путем брожения шлифованного риса. + +reagent-name-soju = соджу +reagent-desc-soju = Алкогольный напиток, изготовленный путем дистилляции шлифованного риса. + +reagent-name-orange-creamcicle = апельсиновый крем-чикл +reagent-desc-orange-creamcicle = Апельсиново-сливочная вкуснятина. + +reagent-name-silverjack = сильверджек +reagent-desc-silverjack = Напоминает о семье. + +reagent-name-brainbomb = мозговая бомба +reagent-desc-brainbomb = Ядовитый для всего живого, особенно для вашей печени. + +reagent-name-clownblood = Кровь клоуна +reagent-desc-clownblood = Любимый напиток офицеров безопасности после долгого дня. + +reagent-name-circusjuice = цирковой сок +reagent-desc-circusjuice = Хонк-Мать гордилась бы. + +reagent-name-sapopicante = сапо пиканте +reagent-desc-sapopicante = По вкусу совсем не похоже на жабу. + +reagent-name-graveyard = кладбище +reagent-desc-graveyard = Для тех смен, которые, кажется, никогда не закончатся. diff --git a/Resources/Locale/ru-RU/nyanotrasen/reagents/meta/consumable/drink/drink.ftl b/Resources/Locale/ru-RU/nyanotrasen/reagents/meta/consumable/drink/drink.ftl new file mode 100644 index 0000000000..6dab877ab3 --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/reagents/meta/consumable/drink/drink.ftl @@ -0,0 +1,11 @@ +reagent-name-atomicpunch = атомный пунш +reagent-desc-atomicpunch = НЕ сделает вас неуязвимым к пулям; изотопы включены! + +reagent-name-pinkdrink = розовый напиток +reagent-desc-pinkdrink = Целые цивилизации рушились, пытаясь решить, действительно ли этот напиток розовый на вкус... + +reagent-name-bubbletea = бабл-ти +reagent-desc-bubbletea = Большая соломинка в комплект не входит. + +reagent-name-lean = лин +reagent-desc-lean = Отвратительная смесь газировки, выпивки и сиропа от кашля. diff --git a/Resources/Locale/ru-RU/nyanotrasen/reagents/meta/consumable/food/ingredients.ftl b/Resources/Locale/ru-RU/nyanotrasen/reagents/meta/consumable/food/ingredients.ftl new file mode 100644 index 0000000000..7ee12e672c --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/reagents/meta/consumable/food/ingredients.ftl @@ -0,0 +1,2 @@ +reagent-name-nausium = блювозин +reagent-desc-nausium = Ужасно. diff --git a/Resources/Locale/ru-RU/nyanotrasen/reverse-engineering/reverseengineering.ftl b/Resources/Locale/ru-RU/nyanotrasen/reverse-engineering/reverseengineering.ftl new file mode 100644 index 0000000000..af64e850fe --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/reverse-engineering/reverseengineering.ftl @@ -0,0 +1,35 @@ +reverse-engineering-machine-menu-title = машина обратной инженерии +reverse-engineering-machine-server-list-button = Список Серверов +reverse-engineering-machine-scan-button = Анализировать +reverse-engineering-machine-scan-tooltip-info = Анализирует вставленный предмет и проводит его обратную инженерию. +reverse-engineering-machine-safety-button = Безопасность +reverse-engineering-machine-safety-tooltip-info = Переключает протоколы безопасности. Отключение позволяет использовать более сильные, но разрушительные методы анализа. +reverse-engineering-machine-autoscan-button = АвтоСканирование +reverse-engineering-machine-autoscan-tooltip-info = Переключает автоматическое сканирование после конца предыдущего. +reverse-engineering-machine-stop-button = Остановить +reverse-engineering-machine-stop-tooltip-info = Останавливает текущее сканирование. +reverse-engineering-machine-eject-button = Вынуть +reverse-engineering-machine-eject-tooltip-info = Вытаскивает вставленный предмет. + +reverse-engineering-status-ready = Вставьте предмет для обратной инженерии. +reverse-engineering-current-item = Текущий Предмет: {$item} +reverse-engineering-analysis-score = Сила сканирования: {$score} +reverse-engineering-item-difficulty = Сложность: {$difficulty} +reverse-engineering-progress = Прогресс: {$progress}% +reverse-engineering-last-attempt-result = Результат предыдущего сканирования: {$result} + +reverse-engineering-total-progress-label = Всего + +reverse-engineering-failure = КРИТИЧЕСКАЯ ОШИБКА +reverse-engineering-stagnation = Минимальный прогресс +reverse-engineering-minor = Слабый прогресс +reverse-engineering-average = Прогресс +reverse-engineering-major = Уверенный прогресс +reverse-engineering-success = Прорывной прогресс + +reverse-engineering-machine-bonus-upgrade = Сила аналитики +reverse-engineering-machine-aversion-upgrade = Бонус к предотвращению разрушения + +reverse-engineering-popup-failure = {CAPITALIZE(THE($machine))} взрывается, раскидывая обломки везде! + +reverse-engineering-examine = [color=yellow]Данный предмет можно исследовать методом обратной инженерии. Сложность: {$diff}[/color] diff --git a/Resources/Locale/ru-RU/nyanotrasen/seeds/seeds.ftl b/Resources/Locale/ru-RU/nyanotrasen/seeds/seeds.ftl new file mode 100644 index 0000000000..b895e33a88 --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/seeds/seeds.ftl @@ -0,0 +1,2 @@ +seeds-killertomato-name = томаты-убийцы +seeds-killertomato-display-name = томаты-убийцы diff --git a/Resources/Locale/ru-RU/nyanotrasen/species/namepreset.ftl b/Resources/Locale/ru-RU/nyanotrasen/species/namepreset.ftl new file mode 100644 index 0000000000..1e782b829f --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/species/namepreset.ftl @@ -0,0 +1 @@ +namepreset-lastnofirst = {$last}-но-{$first} diff --git a/Resources/Locale/ru-RU/nyanotrasen/store/uplink-catalog.ftl b/Resources/Locale/ru-RU/nyanotrasen/store/uplink-catalog.ftl new file mode 100644 index 0000000000..23b4e4147e --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/store/uplink-catalog.ftl @@ -0,0 +1,8 @@ +uplink-kanabou-name = Канабу +uplink-kanabou-desc = Оружие для тех, кто хочет отказаться от тонкостей. Особенно подходит для они. + +uplink-rickenbacker4001-name = Rickenbacker 4001 +uplink-rickenbacker4001-desc = Когда доходит до дела, очень мало людей решат использовать биту. + +uplink-samurai-crate-name = Ящик самурая Синдиката +uplink-samurai-crate-desc = Содержит современную реплику полного набора Тоусея-Гусоку. diff --git a/Resources/Locale/ru-RU/nyanotrasen/tools/tool-qualities.ftl b/Resources/Locale/ru-RU/nyanotrasen/tools/tool-qualities.ftl new file mode 100644 index 0000000000..04c7460a45 --- /dev/null +++ b/Resources/Locale/ru-RU/nyanotrasen/tools/tool-qualities.ftl @@ -0,0 +1,2 @@ +tool-quality-digging-name = Копание +tool-quality-digging-tool-name = Лопата 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 3d70fd4447..fcb637c3bc 100644 --- a/Resources/Locale/ru-RU/preferences/ui/humanoid-profile-editor.ftl +++ b/Resources/Locale/ru-RU/preferences/ui/humanoid-profile-editor.ftl @@ -1,20 +1,21 @@ humanoid-profile-editor-randomize-everything-button = Сгенерировать случайного humanoid-profile-editor-name-label = Имя: -humanoid-profile-editor-clown-name-label = Имя для клоуна: -humanoid-profile-editor-mime-name-label = Имя для мима: -humanoid-profile-editor-borg-name-label = Имя для киборгов: humanoid-profile-editor-name-random-button = Случайно humanoid-profile-editor-appearance-tab = Внешность -humanoid-profile-editor-clothing = Показать одежду +humanoid-profile-editor-clothing = Показать одежду: +humanoid-profile-editor-loadouts = Показать снаряжение: humanoid-profile-editor-clothing-show = Показать humanoid-profile-editor-sex-label = Пол: humanoid-profile-editor-sex-male-text = Мужской humanoid-profile-editor-sex-female-text = Женский humanoid-profile-editor-sex-unsexed-text = Отсутствует -humanoid-profile-editor-body-type-label = Тип тела: humanoid-profile-editor-age-label = Возраст: humanoid-profile-editor-skin-color-label = Цвет кожи: +humanoid-profile-editor-height-label = Рост: {$height}см +humanoid-profile-editor-width-label = Ширина: {$width}см +humanoid-profile-editor-weight-label = Вес: {$weight}кг humanoid-profile-editor-species-label = Раса: +humanoid-profile-editor-customspeciename-label = Собственное название вида: humanoid-profile-editor-pronouns-label = Личное местоимение: humanoid-profile-editor-pronouns-male-text = Он / Его humanoid-profile-editor-pronouns-female-text = Она / Её @@ -23,6 +24,7 @@ humanoid-profile-editor-pronouns-neuter-text = Оно / Его humanoid-profile-editor-import-button = Импорт humanoid-profile-editor-export-button = Экспорт humanoid-profile-editor-save-button = Сохранить +humanoid-profile-editor-reset-button = Сбросить humanoid-profile-editor-clothing-label = Одежда: humanoid-profile-editor-backpack-label = Сумка: humanoid-profile-editor-spawn-priority-label = Приоритет появления: @@ -35,6 +37,7 @@ humanoid-profile-editor-preference-jumpskirt = Юбка-комбинезон humanoid-profile-editor-preference-backpack = Рюкзак humanoid-profile-editor-preference-satchel = Сумка humanoid-profile-editor-preference-duffelbag = Вещмешок +humanoid-profile-editor-guidebook-button-tooltip = Нажмите чтобы узнать больше # Spawn priority humanoid-profile-editor-preference-spawn-priority-none = Нет @@ -46,12 +49,42 @@ humanoid-profile-editor-department-jobs-label = { $departmentName } humanoid-profile-editor-antags-tab = Антагонисты humanoid-profile-editor-antag-preference-yes-button = Да humanoid-profile-editor-antag-preference-no-button = Нет + humanoid-profile-editor-traits-tab = Черты персонажа +humanoid-profile-editor-traits-header = У вас есть {$points -> +[1] 1 очко +*[other] {$points} очков +} и {$maxTraits -> +[1234] {$traits -> +[1] {$traits} черта +*[other] {$traits} черты + } +*[other] {$traits}/{$maxTraits} черт +} +humanoid-profile-editor-traits-show-unusable-button = Показать неприменимые черты +humanoid-profile-editor-traits-show-unusable-button-tooltip = + При включении, черты, которые ваш персонаж не может использовать, будут отображаться красным или же оранжевым, если выбраны. + Вы все еще не сможете использовать эти черты. +humanoid-profile-editor-traits-remove-unusable-button = Убрать неприменимые черты ({$count}) +humanoid-profile-editor-traits-remove-unusable-button-tooltip = При нажатии все неприменимые черты будут убраны. +humanoid-profile-editor-traits-no-traits = Черты не найдены + humanoid-profile-editor-job-priority-high-button = Высокий humanoid-profile-editor-job-priority-medium-button = Средний humanoid-profile-editor-job-priority-low-button = Низкий humanoid-profile-editor-job-priority-never-button = Никогда + humanoid-profile-editor-naming-rules-warning = Внимание: Оскорбительные или странные имена и описания могут повлечь за собой беседу с администрацией. Прочитайте \[Правила\]. + +humanoid-profile-editor-loadouts-tab = Снаряжение +humanoid-profile-editor-loadouts-points-label = У вас есть {$points}/{$max} очков +humanoid-profile-editor-loadouts-show-unusable-button = Показать неприменимое снаряжение +humanoid-profile-editor-loadouts-show-unusable-button-tooltip = + При включении, снаряжение, которые ваш персонаж не может использовать, будет отображаться красным или же оранжевым, если выбрано. + Вы все еще не сможете использовать это снаряжение. +humanoid-profile-editor-loadouts-remove-unusable-button = Убрать неприменимое снаряжение({$count}) +humanoid-profile-editor-loadouts-remove-unusable-button-tooltip = При нажатии всё неприменимое снаряжение будет убрано. +humanoid-profile-editor-loadouts-no-loadouts = Снаряжение не найдено. + humanoid-profile-editor-markings-tab = Черты внешности humanoid-profile-editor-flavortext-tab = Описание -humanoid-profile-editor-voice-play = ▶ diff --git a/Resources/Locale/ru-RU/prototypes/entities/objects/misc/implanters.ftl b/Resources/Locale/ru-RU/prototypes/entities/objects/misc/implanters.ftl index eb02b08eac..07672cfe3b 100644 --- a/Resources/Locale/ru-RU/prototypes/entities/objects/misc/implanters.ftl +++ b/Resources/Locale/ru-RU/prototypes/entities/objects/misc/implanters.ftl @@ -52,5 +52,3 @@ ent-DeathAcidifierImplanter = { ent-BaseImplanter } ent-ImplanterAdmeme = { ent-BaseImplanter } .desc = {""} .suffix = адмемы -ent-ImplanterSyndi = { ent-BaseImplanter } - .desc = { ent-BaseImplanter.desc } diff --git a/Resources/Locale/ru-RU/prototypes/entities/objects/misc/paper.ftl b/Resources/Locale/ru-RU/prototypes/entities/objects/misc/paper.ftl index 4359a61e42..96962199db 100644 --- a/Resources/Locale/ru-RU/prototypes/entities/objects/misc/paper.ftl +++ b/Resources/Locale/ru-RU/prototypes/entities/objects/misc/paper.ftl @@ -73,7 +73,7 @@ ent-RubberStampHop = печать главы персонала ent-RubberStampHos = печать главы службы безопасности .desc = { ent-RubberStampMime.desc } .suffix = { "" } -ent-RubberStampQm = печать квартирмейстера +ent-RubberStampQm = печать завхоза .desc = { ent-RubberStampMime.desc } .suffix = { "" } ent-RubberStampRd = печать научного руководителя diff --git a/Resources/Locale/ru-RU/prototypes/entities/objects/weapons/melee/stunprod.ftl b/Resources/Locale/ru-RU/prototypes/entities/objects/weapons/melee/stunprod.ftl index 6ea518b4d9..f53c8519f8 100644 --- a/Resources/Locale/ru-RU/prototypes/entities/objects/weapons/melee/stunprod.ftl +++ b/Resources/Locale/ru-RU/prototypes/entities/objects/weapons/melee/stunprod.ftl @@ -1,2 +1,7 @@ -ent-Stunprod = шок-палка - .desc = Электрошокер для незаконного обезвреживания. \ No newline at end of file +ent-StunprodBase = шок-палка + +ent-Stunprod = { ent-StunprodBase } + .desc = Электрошокер для незаконного обезвреживания. + +ent-ProdUnfinished = обмотанный стержень + .desc = Стержень с проводами. \ No newline at end of file diff --git a/Resources/Locale/ru-RU/prototypes/entities/objects/weapons/melee/white_cane.ftl b/Resources/Locale/ru-RU/prototypes/entities/objects/weapons/melee/white_cane.ftl index 83e71e80d8..bf766557e6 100644 --- a/Resources/Locale/ru-RU/prototypes/entities/objects/weapons/melee/white_cane.ftl +++ b/Resources/Locale/ru-RU/prototypes/entities/objects/weapons/melee/white_cane.ftl @@ -1,2 +1,2 @@ ent-WhiteCane = белая трость - .desc = Это не для вас. Это для тех, кто не может понять, что вы слепы, когда вы спрашиваете, является ли отдел снабжения баром. \ No newline at end of file + .desc = Это не для вас. Это для тех, кто не может понять, что вы слепы, когда вы спрашиваете, является ли отдел логистики баром. diff --git a/Resources/Locale/ru-RU/prototypes/entities/structures/wallmounts/signs/signs.ftl b/Resources/Locale/ru-RU/prototypes/entities/structures/wallmounts/signs/signs.ftl index f01bb812d8..57c8e0972a 100644 --- a/Resources/Locale/ru-RU/prototypes/entities/structures/wallmounts/signs/signs.ftl +++ b/Resources/Locale/ru-RU/prototypes/entities/structures/wallmounts/signs/signs.ftl @@ -1,96 +1,120 @@ ent-PaintingMonkey = картина обезьяны - .desc = Отвергни эволюцию, стань манки. + .desc = Отвергни эволюцию, стань бибизянкой. .suffix = { "" } ent-BaseSignDirectional = { ent-BaseSign } .desc = { ent-BaseSign.desc } - .suffix = { "" } + .suffix = { "Указатель" } ent-SignDirectionalBar = знак "бар" .desc = Указатель в сторону бара. - .suffix = { "" } + .suffix = { "Указатель" } ent-SignDirectionalSec = знак "служба безопасности" .desc = Указатель в сторону отдела службы безопасности. - .suffix = { "" } + .suffix = { "Указатель" } ent-SignDirectionalBrig = знак "бриг" .desc = Указатель в сторону брига. - .suffix = { "" } + .suffix = { "Указатель" } ent-SignDirectionalChapel = знак "церковь" .desc = Указатель в сторону церкви. - .suffix = { "" } + .suffix = { "Указатель" } ent-SignDirectionalChemistry = знак "химлаб" .desc = Указатель в сторону химической лаборатории. - .suffix = { "" } + .suffix = { "Указатель" } ent-SignDirectionalCryo = знак "крио" .desc = Указатель в сторону отдела криогеники. - .suffix = { "" } + .suffix = { "Указатель" } ent-SignDirectionalDorms = знак "жилой отсек" .desc = Указатель в сторону жилого отсека. - .suffix = { "" } + .suffix = { "Указатель" } ent-SignDirectionalEvac = знак "эвакуация" .desc = Указатель в сторону эвакуации. - .suffix = { "" } + .suffix = { "Указатель" } +ent-SignDirectionalExam = знак "медосмотр" + .desc = Указатель в сторону палаты медосмотра. + .suffix = { "Указатель" } ent-SignDirectionalBridge = знак "мостик" .desc = Указатель в сторону капитанского мостика. - .suffix = { "" } + .suffix = { "Указатель" } ent-SignDirectionalFood = знак "еда" .desc = Указатель в сторону кухни. - .suffix = { "" } + .suffix = { "Указатель" } ent-SignDirectionalGravity = знак "гравитация" .desc = Указатель в сторону генератора гравитации. - .suffix = { "" } + .suffix = { "Указатель" } ent-SignDirectionalHydro = знак "гидро" .desc = Указатель в сторону отдела гидропоники. - .suffix = { "" } -ent-SignDirectionalHop = знак "ГП" - .desc = Указатель в сторону офиса Главы персонала. - .suffix = { "" } + .suffix = { "Указатель" } +ent-SignDirectionalHop = знак "ХОП" + .desc = Указатель в сторону офиса главы персонала. + .suffix = { "Указатель" } ent-SignDirectionalMed = знак "медицинский отдел" .desc = Указатель в сторону медицинского отдела. - .suffix = { "" } + .suffix = { "Указатель" } ent-SignDirectionalSalvage = знак "утилизация" .desc = Указатель в сторону отдела утилизации обломков. - .suffix = { "" } + .suffix = { "Указатель" } ent-SignDirectionalJanitor = знак "уборщик" .desc = Указатель в сторону чулана уборщика. - .suffix = { "" } + .suffix = { "Указатель" } ent-SignDirectionalLibrary = знак "библиотека" .desc = Указатель в сторону библиотеки. - .suffix = { "" } + .suffix = { "Указатель" } ent-SignDirectionalEng = знак "инженерный отдел" .desc = Указатель в сторону инженерного отдела. - .suffix = { "" } + .suffix = { "Указатель" } +ent-SignDirectionalIcu = знак "отдел интенсивной терапии" + .desc = Указатель в сторону отдела интенсивной терапии. + .suffix = { "Указатель" } ent-SignDirectionalSci = знак "научный отдел" .desc = Указатель в сторону научного отдела. - .suffix = { "" } + .suffix = { "Указатель" } ent-SignDirectionalSolar = знак "солнечные панели" .desc = Указатель в сторону солнечных панелей. - .suffix = { "" } -ent-SignDirectionalSupply = знак "отдел снабжения" - .desc = Указатель в сторону отдела снабжения. - .suffix = { "" } + .suffix = { "Указатель" } +ent-SignDirectionalSupply = знак "отдел логистики" + .desc = Указатель в сторону отдела логистики. + .suffix = { "Указатель" } ent-SignDirectionalWash = знак "уборная" .desc = Указатель в сторону уборной. - .suffix = { "" } + .suffix = { "Указатель" } ent-SignAi = знак "ИИ" - .desc = { ent-BaseSign.desc } - .suffix = { "" } + .desc = Знак, указывающий на ИИ + .suffix = { "Знак ВД" } +ent-SignAME = знак "ДАМ" + .desc = Знак, указывающий на ДАМ + .suffix = { "Знак ВД" } ent-SignArmory = знак "оружейная" .desc = Знак, указывающий на оружейную. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignToolStorage = знак "склад инструментов" .desc = Знак, указывающий на склад инструментов. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignAnomaly = знак "ксено-археология" .desc = Знак, указывающий на ксено-археологическую лабораторию. - .suffix = { "" } + .suffix = { "Знак ВД" } +ent-SignAnomaly2 = знак "лаборатория аномалий" + .desc = Знак, указывающий на лабораторию по исследованию аномалий. + .suffix = { "Знак ВД" } +ent-SignArrivals = знак "прибытие" + .desc = Знак, указывающий на прибытие. + .suffix = { "Знак ВД" } ent-SignAtmos = знак "атмос" .desc = Знак, указывающий на атмосферный отсек. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignAtmosMinsky = знак "атмос" .desc = Знак, указывающий на атмосферный отсек. .suffix = { "" } ent-SignBar = знак "бар" .desc = Знак, указывающий на бар. - .suffix = { "" } + .suffix = { "Знак ВД" } +ent-SignBoxing = знак "ринг" + .desc = Знак, указывающий на ринг. + .suffix = { "Знак ВД" } +ent-SignBrig = знак "бриг" + .desc = Знак, указывающий на бриг. + .suffix = { "Знак ВД" } +ent-SignHydro = знак "гидропоника" + .desc = Знак, указывающий на гидропонику. + .suffix = { "Знак ВД" } ent-SignHydro1 = знак "гидропоника" .desc = Знак, указывающий на гидропонику. .suffix = { "" } @@ -102,43 +126,55 @@ ent-SignHydro3 = знак "гидропоника" .suffix = { "" } ent-SignLibrary = знак "библиотека" .desc = Знак, указывающий на библиотеку. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignChapel = знак "церковь" .desc = Знак, указывающий на церковь. - .suffix = { "" } + .suffix = { "Знак ВД" } +ent-SignCaptain = знак "капитан" + .desc = Знак, указывающий на офис капитана. + .suffix = { "Знак ВД" } +ent-SignCryo = знак "криогеника" + .desc = Знак, указывающий на криокапсулы в медицинском отделе. + .suffix = { "Знак ВД" } +ent-SignHOP = знак "ХОП" + .desc = Знак, указывающий на офис главы персонала + .suffix = { "Знак ВД" } ent-SignHead = знак "глава" .desc = Знак, указывающий на офис главы отдела. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignConference = знак "конференц-зал" .desc = Знак, указывающий на конференц-зал. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignDrones = знак "дроны" .desc = Знак, указывающий на хранилище дронов. - .suffix = { "" } + .suffix = { "Знак ВД" } +ent-SignDorms = знак "дормы" + .desc = Знак, указывающий на дормы. + .suffix = { "Знак ВД" } ent-SignEngine = знак "двигатель суперматерии" .desc = Знак, указывающий на отсек двигателя суперматерии. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignCloning = знак "клонирование" .desc = Знак, указывающий на отсек клонирования. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignInterrogation = знак "допросная" .desc = Знак, указывающий на допросную. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignSurgery = знак "операционная" .desc = Знак, указывающий на операционную. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignTelecomms = знак "телекоммуникация" .desc = Знак, указывающий на отсек телекоммуникаций. - .suffix = { "" } -ent-SignCargo = знак "карго" - .desc = Знак, указывающий на отдел снабжения. - .suffix = { "" } -ent-SignCargoDock = знак "карго док" + .suffix = { "Знак ВД" } +ent-SignCargo = знак "логистика" + .desc = Знак, указывающий на отдел логистики. + .suffix = { "Знак ВД" } +ent-SignCargoDock = знак "док логистики" .desc = Знак, указывающий на док отдела снабжения. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignChem = знак "хим лаб" .desc = Знак, указывающий на химическую лабораторию. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignChemistry1 = знак "хим лаб" .desc = Знак, указывающий на химическую лабораторию. .suffix = { "" } @@ -147,34 +183,100 @@ ent-SignChemistry2 = знак "хим лаб" .suffix = { "" } ent-SignEscapePods = знак "капсулы" .desc = Знак, указывающий на спасательные капсулы. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignShipDock = знак "стыковочный док" .desc = Знак, указывающий на стыковочный док. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignEngineering = знак "инженерия" .desc = Знак, указывающий на инженерный отдел. - .suffix = { "" } + .suffix = { "Знак ВД" } +ent-SignEquip = знак "снаряжение" + .desc = Знак, указывающий на шкафчики и стойки со снаряжением. + .suffix = { "Знак ВД" } +ent-SignEvac = знак "эвакуация" + .desc = Знак, указывающий на эвакуацию. + .suffix = { "Знак ВД" } +ent-SignGenetics = знак "генетика" + .desc = Знак, указывающий на лабораторию генетики. + .suffix = { "Знак ВД" } +ent-SignGate = знак "гейт-вей" + .desc = Знак, указывающий на гейт-вей. + .suffix = { "Знак ВД" } ent-SignEVA = знак "EVA" .desc = Знак, указывающий на хранилище скафандров. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignGravity = знак "гравитация" .desc = Знак, указывающий на отсек генератора гравитации. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignMedical = знак "мед отсек" .desc = Знак, указывающий на медицинский отдел. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignMorgue = знак "морг" .desc = Знак, указывающий на морг. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignPrison = знак "тюрьма" .desc = Знак, указывающий на тюрьму. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignRND = знак "РнД" .desc = Знак, указывающий на отдел исследования и разработки. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignScience = знак "наука" .desc = Знак, указывающий на научный отсек. - .suffix = { "" } + .suffix = { "Знак ВД" } +ent-SignLawyer = знак "юрист" + .desc = Знак, указывающий на офис юриста. + .suffix = { "Знак ВД" } +ent-SignCourt = знак "суд" + .desc = Знак, указывающий на суд. + .suffix = { "Знак ВД" } +ent-SignNews = знак "репортёр" + .desc = Знак, указывающий на офис репортёра. + .suffix = { "Знак ВД" } +ent-SignNukeVault = знак "хранилище ядерной бомбы" + .desc = Знак, указывающий на хранилище ядерной бомбы и драгоценностей. + .suffix = { "Знак ВД" } +ent-SignPA = знак "УЧ" + .desc = Знак, указывающий на ускоритель частиц. + .suffix = { "Знак ВД" } +ent-SignSMES = знак "СМЭС" + .desc = Знак, указывающий на СМЭСы. + .suffix = { "Знак ВД" } +ent-SignSecurity = знак "служба безопасности" + .desc = Знак, указывающий на службу безопасности. + .suffix = { "Знак ВД" } +ent-SignSolar = знак "солнечные панели" + .desc = Знак, указывающий на солнечные панели. + .suffix = { "Знак ВД" } +ent-SignStorage = знак "склад" + .desc = Знак, указывающий на склад. + .suffix = { "Знак ВД" } +ent-SignTheatre = знак "театр" + .desc = Знак, указывающий на театр. + .suffix = { "Знак ВД" } +ent-SignToilet = знак "уборная" + .desc = Знак, указывающий на уборную. + .suffix = { "Знак ВД" } +ent-SignArcade = знак "аркадные игры" + .desc = Знак, указывающий на аркадные игры. + .suffix = { "Знак ВД" } +ent-SignBarbershop = знак "парикмахерская" + .desc = Знак, указывающий на парикмахерскую. + .suffix = { "Знак ВД" } +ent-SignJanitor = знак "уборщик" + .desc = Знак, указывающий на чулан уборщика. + .suffix = { "Знак ВД" } +ent-SignLaundromat = знак "прачечная" + .desc = Знак, указывающий на прачечную. + .suffix = { "Знак ВД" } +ent-SignPsychology = знак "психолог" + .desc = Знак, указывающий на психолога. + .suffix = { "Знак ВД" } +ent-SignReception = знак "ресепшн" + .desc = Знак, указывающий на ресепшн. + .suffix = { "Знак ВД" } +ent-SignSalvage = знак "утилизаторы" + .desc = Знак, указывающий на утилизаторов. + .suffix = { "Знак ВД" } ent-SignScience1 = знак "наука" .desc = Знак, указывающий на научный отсек. .suffix = { "" } @@ -183,22 +285,22 @@ ent-SignScience2 = знак "наука" .suffix = { "" } ent-SignToxins = знак "токсины" .desc = Знак, указывающий на лабораторию токсинов. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignToxins2 = знак "токсины" .desc = Знак, указывающий на лабораторию токсинов. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignBridge = знак "мостик" .desc = Знак, указывающий на мостик. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignBio = знак "био лаб" .desc = Знак, указывающий на биологическую лабораторию. .suffix = { "" } ent-SignBiohazard = знак "биологическая угроза" .desc = Знак, предупреждающий о биологической опасности. .suffix = { "" } -ent-SignCanisters = знак "газовые баллоны" +ent-SignCanisters = знак "газовые канистры" .desc = Знак, предупреждающий о канистрах под давлением. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignCorrosives = предупреждающий знак "едкие вещества" .desc = Знак, предупреждающий об опасности едких веществ. .suffix = { "" } @@ -209,17 +311,23 @@ ent-SignDanger = предупреждающий знак "опасно" .desc = Знак, предупреждающий о какой-то опасности. .suffix = { "" } ent-SignDisposalSpace = знак "мусоросброс" - .desc = Знак, указывающий на зону утилизации. - .suffix = { "" } + .desc = Знак, указывающий на зону мусоросброса. + .suffix = { "Знак ВД" } ent-SignDoors = знак "двери" .desc = Знак, указывающий на двери. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignElectrical = знак "высокое напряжение" .desc = Знак, предупреждающий о высоком напряжении. .suffix = { "" } ent-SignExamroom = знак "медосмотр" .desc = Знак, указывающий на кабинет медицинского осмотра. - .suffix = { "" } + .suffix = { "Знак ВД" } +ent-SignKitchen = знак "кухня" + .desc = Знак, указывающий на кухню. + .suffix = { "Знак ВД" } +ent-SignCheckpoint = знак "КПП" + .desc = Знак, указывающий на контрольно-пропускной пункт. + .suffix = { "Знак ВД" } ent-SignExplosives = предупреждающий знак "взрывоопасно" .desc = Знак, предупреждающий об опасности взрывоопасных материалов. .suffix = { "" } @@ -237,13 +345,13 @@ ent-SignMagnetics = предупреждающий знак "магнитное .suffix = { "" } ent-SignMail = знак "почта" .desc = Знак, указывающий на почту. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignMemetic = предупреждающий знак "меметическая угроза" .desc = Знак, предупреждающий о меметической угрозе. .suffix = { "" } ent-SignMinerDock = знак "шахтёрский док" .desc = Знак, указывающий на шахтёрский док. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignNosmoking = знак "не курить" .desc = Знак, предупреждающий о запрете курения в непосредственной близости. .suffix = { "" } @@ -255,7 +363,7 @@ ent-SignRadiation = предупреждающий знак "радиоакти .suffix = { "" } ent-SignRobo = знак "робототехника" .desc = Знак, указывающий на отдел робототехники. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignSecure = знак "охрана" .desc = Знак, предупреждающий что территория впереди является охраняемой зоной. .suffix = { "" } @@ -264,7 +372,7 @@ ent-SignSecurearea = знак "охраняемая территория" .suffix = { "" } ent-SignShield = знак "щит" .desc = Знак со щитом. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignOxidants = предупреждающий знак "окислитель" .desc = Знак, предупреждающий об опасности окисляющих веществ. .suffix = { "" } @@ -273,10 +381,10 @@ ent-SignShock = знак "высокое напряжение" .suffix = { "" } ent-SignSpace = знак "космос" .desc = Знак, предупреждающий о том, что впереди - только холодное, пустое пространство. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignVirology = знак "вирусология" .desc = Знак, указывающий на лабораторию вирусологии. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignXenobio = знак "ксенобиология" .desc = Знак, указывающий на лабораторию ксенобиологии. .suffix = { "" } @@ -285,10 +393,10 @@ ent-SignXenobio2 = знак "ксенобиология" .suffix = { "" } ent-SignXenolab = знак "ксенолаборатория" .desc = Знак, указывающий на лабораторию ксенобиологии. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignZomlab = знак "зомби-лаборатория" .desc = Знак, указывающий на лабораторию зомби. - .suffix = { "" } + .suffix = { "Знак ВД" } ent-SignSecureMedRed = красный знак "охрана" .desc = Знак, предупреждающий что территория впереди является охраняемой зоной. .suffix = { "" } @@ -364,9 +472,6 @@ ent-SignSomethingOld = старый плакат ent-SignSomethingOld2 = старый плакат .desc = Выглядит так, будто планета разламывается врезающейся в неё станцией. Страшновато. .suffix = { "" } -ent-SignSecurity = знак "служба безопасности" - .desc = Знак, изображающий эмблему службы безопасности. - .suffix = { "" } ent-SignPlaque = золотая табличка .desc = Престижная золотая табличка. .suffix = { "" } diff --git a/Resources/Locale/ru-RU/prototypes/white/entities/markers/spawners/mobs.ftl b/Resources/Locale/ru-RU/prototypes/white/entities/markers/spawners/mobs.ftl deleted file mode 100644 index b6ad12ffd8..0000000000 --- a/Resources/Locale/ru-RU/prototypes/white/entities/markers/spawners/mobs.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-SpawnMobGondola = спавнер Гондола - .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/ru-RU/prototypes/white/entities/mobs/npcs/animals.ftl b/Resources/Locale/ru-RU/prototypes/white/entities/mobs/npcs/animals.ftl deleted file mode 100644 index 615205903e..0000000000 --- a/Resources/Locale/ru-RU/prototypes/white/entities/mobs/npcs/animals.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-MobGondola = Гондола - .desc = Не имея рук, он воплощает даосский принцип у-вэй (бездействия), а выражение его улыбающегося лица показывает его полное принятие мира таким, какой он есть. diff --git a/Resources/Locale/ru-RU/_white/Research/oracle.ftl b/Resources/Locale/ru-RU/psionics/oracle.ftl similarity index 100% rename from Resources/Locale/ru-RU/_white/Research/oracle.ftl rename to Resources/Locale/ru-RU/psionics/oracle.ftl diff --git a/Resources/Locale/ru-RU/store/sales.ftl b/Resources/Locale/ru-RU/store/sales.ftl new file mode 100644 index 0000000000..93f1798fe7 --- /dev/null +++ b/Resources/Locale/ru-RU/store/sales.ftl @@ -0,0 +1,2 @@ +store-sales-amount = [СКИДКА] { $amount }%! +store-sales-over = [Скидка закончилась] diff --git a/Resources/Locale/ru-RU/store/uplink-catalog.ftl b/Resources/Locale/ru-RU/store/uplink-catalog.ftl index 3b73e5e10f..eee4377eb8 100644 --- a/Resources/Locale/ru-RU/store/uplink-catalog.ftl +++ b/Resources/Locale/ru-RU/store/uplink-catalog.ftl @@ -441,21 +441,3 @@ uplink-hypodart-desc = Неприметный на первый взгляд д uplink-helmet-name = Шлем спецназа uplink-helmet-desc = Чрезвычайно прочный шлем, обычно используемый военизированными формированиями. Он украшен гнусным рисунком в красную и черную полоску. - -uplink-ebow-name = Маленький энергетический арбалет -uplink-ebow-desc = Довольно тихое оружие, которое автоматически перезаряжается и оглушает. Хорошо сочетается с другими видами оружия. - -uplink-blood-dagger-name = Кинжал жажды -uplink-blood-dagger-desc = Критическая жажда: Кинжал Жажды обладает смертоносной точностью. Его владелец имеет 50% шанс нанести критический урон, поражая врага в его самые уязвимые места. При ударе по себе кинжал наделит пользователя временным усилением скорости атаки и передвижения ценой обильного кровотечения. Кровавый абсорб: При каждом успешном критическом ударе, кинжал извлекает кровь из цели, восстанавливая здоровье владельцу пропорционально количеству высосанной крови. - -uplink-night-vision-name = ПНВ [Хамелеон] -uplink-night-vision-desc = Теперь ты видишь во тьме! - -uplink-thermal-vision-name = Оптический термальный сканер [Хамелеон] -uplink-thermal-vision-desc = Позволяет вам видеть существ через стены. - -uplink-betrayal-knife-name = Предательский нож -uplink-betrayal-knife-desc = Предательский нож позволяет пользователю телепортироваться на короткое расстояние, а также наносит значительные повреждения, пробивая броню противника, при ударе в спину. - -uplink-implanter-name = Имплантер -uplink-implanter-desc = Продвинутый имплантер, позволяющий быстро вкалывать и вытаскивать импланты. diff --git a/Resources/Locale/ru-RU/tiles/tiles.ftl b/Resources/Locale/ru-RU/tiles/tiles.ftl index fa41b406e1..9f69120c97 100644 --- a/Resources/Locale/ru-RU/tiles/tiles.ftl +++ b/Resources/Locale/ru-RU/tiles/tiles.ftl @@ -126,4 +126,30 @@ tiles-mowed-astro-grass = астро-газон tiles-jungle-astro-grass = астро-трава джунглей tiles-astro-ice = астро-лёд tiles-astro-snow = астро-снег -tiles-wood-large = большой деревянный пол \ No newline at end of file +tiles-wood-large = большой деревянный пол +tiles-asteroid-coarse = грубая астероидная почва +tiles-asteroid-coarse-dug = вырытая грубая астероидная почва +tiles-asteroid-gravel = астероидный гравий +tiles-bedrock-floor = коренная порода +tiles-glass-frame-floor = обрамленное стекло +tiles-reinforced-glass-frame-floor = обрамленное армированное стекло +tiles-linoleum-dark-floor = темный линолеумный пол +tiles-linoleum-grey-floor = серый линолеумный пол +tiles-linoleum-white-floor = светлый линолеумный пол +tiles-plastic-blue-floor = синие пластиковые плиты +tiles-plastic-red-floor = красные пластиковые плиты +tiles-plastic-green-floor = зеленые пластиковые плиты +tiles-plastic-yellow-floor = желтые пластиковые плиты +tiles-steel-blue-floor = синие стальные плиты +tiles-steel-red-floor = красные стальные плиты +tiles-steel-green-floor = зеленые стальные плиты +tiles-steel-yellow-floor = желтые стальные плиты +tiles-plating-diagonal-NE-floor = диагональное покрытие СВ +tiles-plating-diagonal-NW-floor = диагональное покрытие СЗ +tiles-plating-diagonal-SE-floor = диагональное покрытие ЮВ +tiles-plating-diagonal-SW-floor = диагональное покрытие ЮЗ +tiles-shielding-floor = экранирующие плиты +tiles-shielding-mono-floor = экранирующие моно плиты +tiles-sterile = стерильные плиты +tiles-sterile-dark = стерильные темные плиты +tiles-sundie-shuttle-floor = синди пол шаттла diff --git a/Resources/Locale/ru-RU/traits/categories.ftl b/Resources/Locale/ru-RU/traits/categories.ftl new file mode 100644 index 0000000000..4a1892ae84 --- /dev/null +++ b/Resources/Locale/ru-RU/traits/categories.ftl @@ -0,0 +1,11 @@ +# Alphabetically ordered, except for Uncategorized since it is always first + +trait-category-Uncategorized = Без категории +trait-category-Auditory = Слуховые +trait-category-Mental = Ментальные +trait-category-Physical = Физические +trait-category-Speech = Речевые +trait-category-TraitsSpeechUncategorized = Без категории +trait-category-TraitsSpeechAccents = Акценты +trait-category-TraitsSpeechLanguages = Языки +trait-category-Visual = Визуальные diff --git a/Resources/Locale/ru-RU/traits/misc.ftl b/Resources/Locale/ru-RU/traits/misc.ftl new file mode 100644 index 0000000000..0abe059a3a --- /dev/null +++ b/Resources/Locale/ru-RU/traits/misc.ftl @@ -0,0 +1 @@ +examine-cybereyes-message = Глаза {$entity} сияют тусклым светом. diff --git a/Resources/Locale/ru-RU/traits/traits.ftl b/Resources/Locale/ru-RU/traits/traits.ftl index 90ddb57b92..4a5ba3c82a 100644 --- a/Resources/Locale/ru-RU/traits/traits.ftl +++ b/Resources/Locale/ru-RU/traits/traits.ftl @@ -1,37 +1,370 @@ -trait-blindness-name = Слепота -trait-blindness-desc = Вы слепы, и не можете видеть дальше нескольких метров от себя. +trait-name-Blindness = Слепота +trait-description-Blindness = Вы слепы и не можете видеть дальше пары метров. +trait-examined-Blindness = [color=lightblue]{CAPITALIZE(POSS-ADJ($target))} глаза стеклянные и расфокусированные. Не похоже, что {SUBJECT($target)} видит вас четко, если вообще видит.[/color] -trait-narcolepsy-name = Нарколепсия -trait-narcolepsy-decs = Вас одолевают приступы сонливости +trait-name-Narcolepsy = Нарколепсия +trait-description-Narcolepsy = Вы можете заснуть в случайный момент времени. -trait-pacifist-name = Пацифист -trait-pacifist-desc = Вы не можете причинять вред любому живому существу. +trait-name-Pacifist = Пацифист +trait-description-Pacifist = Вы не можете навредить живым существам. -permanent-blindness-trait-examined = [color=lightblue]{ CAPITALIZE(POSS-PRONOUN($target)) } глаза остекленелые и расфокусированные. Не похоже, что { SUBJECT($target) } может вас видеть.[/color] +trait-name-SelfAware = Самопознание +trait-description-SelfAware = + Вы обладаете острой интуицией своего тела и чувств. + Вы можете точно определить степень тяжести ран и ожогов, а также есть ли у вас интоксикация или нехватка воздуха. -trait-lightweight-name = Легко пьянеющий -trait-lightweight-desc = Алкоголь сильнее воздействует на вас +trait-name-LightweightDrunk = Легко пьянеющий +trait-description-LightweightDrunk = Алкоголь сильнее действует на вас. -trait-muted-name = Немой -trait-muted-desc = Вы не можете говорить +trait-name-HeavyweightDrunk = Толерантность К Алкоголю +trait-description-HeavyweightDrunk = Алкоголь боится вас. -trait-paracusia-name = Паракузия -trait-paracusia-desc = Вы слышите звуки, которых на самом деле нет +trait-name-LiquorLifeline = Жизненная Энергия Алкоголя +trait-description-LiquorLifeline = + Забудьте про доктора - просто набухайтесь! + В комплект входит [color=lightblue]Толерантность К Алкоголю[/color]. -trait-unrevivable-name = Невоскрешаемый -trait-unrevivable-desc = Вас не могут воскресить дефибриллятором +trait-name-Muted = Немой +trait-description-Muted = Вы не можете говорить. -trait-pirate-accent-name = Пиратский акцент -trait-pirate-accent-desc = Ты не можешь перестать говорить как пират! +trait-name-BloodDeficiency = Анемия +trait-description-BloodDeficiency = + Вы теряете кровь быстрее, чем можете её вырабатывать. + Вы теряете кровь со временем, и без лечения вы можете от этого просто погибнуть. -trait-accentless-name = Без акцента -trait-accentless-desc = У вас нет акцента, который обычно был бы у вашего вида +trait-name-Hemophilia = Гемофилия +trait-description-Hemophilia = + У вас пониженная свертываемость крови. + Ваши кровотечения длятся в два раза дольше и вы получаете на 10% больше тупого урона. -trait-frontal-lisp-name = Шепелявость -trait-frontal-lisp-desc = Вы шепелявите при рашговоре +trait-name-Paracusia = Паракузия +trait-description-Paracusia = Вы слышите то, чего нет. -trait-socialanxiety-name = Социальная тревожность -trait-socialanxiety-desc = Вы очень сильно волнуетесь при разговоре и заикаетесь. +trait-name-PirateAccent = Пиратский акцент +trait-description-PirateAccent = Аргх! Вы говорите как пиррат! -trait-snoring-name = Храп -trait-snoring-desc = Вы храпите во сне. +trait-name-Accentless = Без акцента +trait-description-Accentless = У вас отсутствует акцент, обычно присущий вашей расе. + +trait-name-FrontalLisp = Шепелявость +trait-description-FrontalLisp = Вы шепелявите... даже это слово выговорить тяжело + +trait-name-Stutter = Заикание +trait-description-Stutter = В-вы з-заик-каитесь при р-разгов-в-воре... + +trait-name-Snoring = Храп +trait-description-Snoring = Вы храпите во время сна. + +trait-name-CPRTraining = Тренировки ПМП. +trait-description-CPRTraining = В какой момент своей жизни вы научились делать СЛР. Все врачи это умеют. + +trait-name-Nearsighted = Близорукость +trait-description-Nearsighted = Ваше зрение уже далеко от лучшего и вам тяжело видеть вещи в далеке без очков. + +trait-name-NormalVisionHarpy = Трихроматические Изменения +trait-description-NormalVisionHarpy = Ваши глаза были изменены современной медициной чтобы видеть в нормальной цветовой палитре. + +trait-name-Southern = Южный говор +trait-description-Southern = У вас другая манера говорить. + +trait-name-NormalVision = Трихроматические Изменения +trait-description-NormalVision = Ваши глаза были изменены современной медициной чтобы видеть в нормальной цветовой палитре. + +trait-name-Thieving = Воровство +trait-description-Thieving = + Вы ловко работаете руками и талантливо убеждаете людей в том, что их вещи принадлежат вам. + Вы можете распознавать предметы в карманах, красть их скрытно и примерно на 33% быстрее. + +trait-name-ForeignerLight = Иностранец (light) +trait-description-ForeignerLight = + Вы с трудом выучили основной язык этой станции и поэтому не можете на нем говорить. Однако вы можете понимать, что другие говорят на этом языке. + Чтобы помочь вам преодолеть это препятствие, вам выдан карманный переводчик, который поможет вам говорить на основном языке этой станции. + +trait-name-Foreigner = Иностранец +trait-description-Foreigner = + По той или иной причине вы не говорите на основном языке этой станции. + Вместо этого вам выдан переводчик, которым можете пользоваться только вы. + +trait-name-Saturnine = Пессимист +trait-description-Saturnine = Вы от природы угрюмы и мрачны. Ваше настроение постоянно снижено на большую величину. + +trait-name-Sanguine = Оптимист +trait-description-Sanguine = Вы от природы бодры и веселы! Ваше настроение всегда повышено на большую величину. + +trait-name-WillToLive = Воля К Жизни +trait-description-WillToLive = У вас необычайно сильная «воля к жизни». Порог урона, при котором вы умираете, увеличен на 10 пунктов. + +trait-name-WillToDie = Воля К Смерти +trait-description-WillToDie = У вас необычайно слабая «воля к жизни». Порог урона, при котором вы умираете, снижен на 15 пунктов. + +trait-name-Tenacity = Упорство +trait-description-Tenacity = + Неважно, благодаря ли чистой силе, силе воли или тонким бионическим дополнениям, вы выносливее других. + Ваш порог критического состояния увеличен на 5 пунктов. + +trait-name-GlassJaw = Стеклянная Челюсть +trait-description-GlassJaw = + Ваше тело более хрупкое, чем у других, что приводит к большей восприимчивости к повреждениям. + Ваш порог критического состояния снижен на 10 пунктов. + +trait-name-HighAdrenaline = Высокий Адреналин +trait-description-HighAdrenaline = + В результате естественных причин, генетической или бионической аугментации у вас более мощные надпочечники. + Когда вы ранены, ваши атаки в ближнем бою наносят на 10 % больше урона в дополнение к естественным бонусам от адреналина. + +trait-name-AdrenalDysfunction = Дисфункция Надпочечников +trait-description-AdrenalDysfunction = + Ваши надпочечники не функционируют, а возможно, и вовсе отсутствуют. + Ваши атаки в ближнем бою не получают преимущества от адреналина, когда вы ранены. + +trait-name-Masochism = Мазохизм +trait-description-Masochism = + Получая удовольствие от собственной боли, вы не так подавлены ею, как другие. + Вы игнорируете первые 10 % урона от выносливости при атаках в ближнем бою. + +trait-name-LowPainTolerance = Низкая Терпимость К Боли +trait-description-LowPainTolerance = + Ваша терпимость к боли намного ниже среднего, а ее воздействие более подавляющее. + Ваш урон в ближнем бою снижается на дополнительные 15% при падении выносливости. + +trait-name-MartialArtist = Мастер Боевых Искусств +trait-description-MartialArtist = + Вы прошли формальное обучение безоружному бою - кулаками, ногами или когтями. + Ваши атаки руками имеют увеличеный радиус поражения и наносят на 50% больше урона. + +trait-name-Vigor = Выносливость +trait-description-Vigor = + Благодаря чистой решимости, физической подготовке или бионическим дополнениям ваша выносливость улучшена. + Ваша выносливость увеличена на 10 пунктов. + +trait-name-Lethargy = Летаргия +trait-description-Lethargy = + Вы устаете быстрее других, что делает вас более уязвимым к истощению и усталости. + Ваша выносливость снижается на 15 пунктов. + +trait-name-SignLanguage = Язык жестов +trait-description-SignLanguage = Вы можете знаете базовый язык жестов Тау-Кети (TCB-SL). + +trait-name-SolCommon = Официальный Солнечный +trait-description-SolCommon = + Уходя своими корнями в мандаринский китайский, общий язык стал официальным языком Альянса Сол, а чиновники старались связать его общим языком. + На нем говорят государственные чиновники, его преподают в школах, на нем говорят те, кто либо испытывает чувство национальной гордости за Альянс, либо иным образом привержен этой культуре. + +trait-name-Tradeband = Трейдбанд +trait-description-Tradeband = + Происходящий от латинского и романского языков старой Земли, трейдбанд остается основным языком высшего класса человечества. + Для большинства людей этот язык звучит элегантно и хорошо структурирован. Он по-прежнему популярен среди торговцев, дипломатов и тех, кто стремится сохранить частичку романтического прошлого. + +trait-name-Freespeak = Свободный +trait-description-Freespeak = + Язык ренегатов и пограничников, произошедший от различных языков Земли, таких как хинди, объединенных в многокорневую мешанину, которая звучит бессвязно или даже по-варварски для не коренных носителей. + Этот язык - единственная общая культурная идентичность для людей в Приграничье. Владение этим языком само по себе смело объявляет говорящего свободным духом. + Жители Альянса часто называют его «Желоб». + +trait-name-Elyran = Элирианский Стандартный +trait-description-Elyran = + Элирианский Стандартный являются официальным языком Республики Элиры. + В нем задействованы элементы фарси, арабского и турецкого языков - влияние всех трех языков прослеживается во всей его грамматике и лексике. + +trait-name-Voracious = Прожорливый +trait-description-Voracious = + Ничто не встанет между вами и едой. + Ваше потребление еды и напитков происходит в два раза быстрее. + +trait-name-ParkourTraining = Обучение Паркуру +trait-description-ParkourTraining = + Будь то хобби, образ жизни или профессиональная подготовка, вы обучены паркуру. + Вы быстрее лазаете, ползаете, ложитесь и встаете. + +trait-name-Sluggish = Неповоротливый +trait-description-Sluggish = + Из-за состояния здоровья, нарушения подвижности или возраста вы двигаетесь медленнее, чем другие. + Вы двигаетесь медленнее, и вам требуется больше времени, чтобы подняться, лечь и встать. + +trait-name-SnailPaced = Улитка +trait-description-SnailPaced = + Из-за болезни, нарушения подвижности или возраста вы ходите в темпе улитки. + Вы двигаетесь значительно медленнее, и вам требуется гораздо больше времени, чтобы подняться, лечь и встать. + +trait-name-LightStep = Легкий Шаг +trait-description-LightStep = Вы двигаетесь легким шагом, делая свои шаги тише. + +trait-name-Swashbuckler = Головорез +trait-description-Swashbuckler = + Вы - эксперт в фехтовании, владеющий мечами, ножами и другими клинками с непревзойденным мастерством. + Ваш урон режущим оружиями ближнего боя увеличен на 35 %, но урон тупыми оружием ближнего боя уменьшен на 20 %. + +trait-name-Spearmaster = Копейщик +trait-description-Spearmaster = + Вы прекрасно владеете копьями и они являются продолжением вашего тела. + Ваш урон колющими оружиями ближнего боя увеличен на 35 %, но урон тупыми оружием ближнего боя уменьшен на 20 %. + +trait-name-WeaponsGeneralist = Рыцарь +trait-description-WeaponsGeneralist = + Вы мастерски владеете оружием ближнего боя, что позволяет вам быть универсальным в ближнем бою. + Ваш урон в ближнем бою увеличивается на 25%. + +trait-name-Singer = Певец +trait-description-Singer = Вы от природы способны исполнять голосом простые мелодии. + +trait-name-LatentPsychic = Латентный Псионик +trait-description-LatentPsychic = + Ваши разум и душа открыты для ноосферы, что позволяет использовать телепатию. + Таким образом, вы можете потенциально получить экстрасенсорные способности. + Не исключено, что за вами могут охотиться потусторонние силы, поэтому лучше держать свои способности в секрете. + +trait-name-PsionicInsulation = Искажение Волны χ +trait-description-PsionicInsulation = + Вы - автоматон из плоти, оживленный нейротрансмиттерами. Внутри вашего черепа лежит + 1,5-килограммовый мешок мяса, претендующий на разумность. Согласно современной эпистемиологической теории, вы даже не разумны. + Хорошая новость заключается в том, что вы невосприимчивы к большинству положительных и отрицательных эффектов психических способностей. + У этого недуга могут быть и другие последствия. + +trait-name-NaturalTelepath = Естественный Телепат +trait-description-NaturalTelepath = + Будучи естественным телепатом, вы способны к свободному телепатическому общению, независимо от того, + обладаете ли вы какими-либо заметными экстрасенсорными способностями или нет. Это дает все те же преимущества и + недостатки, что и Латентный Псионик, за исключением того, что вы гарантированно начинаете с полной телепатией. + +trait-name-TrapAvoider = Избегающий Ловушек +trait-description-TrapAvoider = + Вы обладаете сверхъестественным чутьем на ловушки и будете бессознательно избегать их. Вы не можете активировать + напольные ловушки, такие как мины, растяжки, мышеловки и прочее. + +trait-name-AnomalousPositronics = Аномальная Позитроника +trait-description-AnomalousPositronics = + Будь то намеренная разработка производителя, модификации на черном рынке или случайное упущение, + ваш позитронный мозг лишен стандартной псионической изоляции. Как для существо, у которого, по утверждениям, есть душа, + это означает, что на вас может влиять Ноосфера. + +trait-name-Photophobia = Фотофобия +trait-description-Photophobia = + Ваши глаза чрезвычайно чувствительны к яркому свету. + В результате при внезапных вспышках света вы можете ослепнуть на более длительное время, чем другие. + Кроме того, ваши глаза с большей вероятностью могут быть травмированы вспышками. + +trait-name-Clumsy = Неуклюжий +trait-description-Clumsy = + У вас сильный недостаток координации рук и глаз, что приводит к неспособности делать некоторые вещи, которые другие считают само собой разумеющимися. + Любым оружием, которое вы пытаетесь использовать, вы скорее пораните себя, чем других. Вы не можете забраться на какие-либо предметы, не поранившись. + +trait-name-Small = Маленький +trait-description-Small = + Вы гораздо меньше обычного человека и можете забираться в такие места, куда другие обычно не могут пролезть, например, в вещевые мешки. + Эта черта никак не изменяет размер вашего персонажа, она просто требует, чтобы ваш персонаж был размером не больше стандартного фелинида. + +trait-name-TemperatureTolerance = Толерантность К Температуре +trait-description-TemperatureTolerance = + Вы хорошо переносите низкие температуры. Вы можете длительное время находиться в условиях чуть ниже нуля, + например, внутри кухонного холодильника или на освещенном солнцем склоне знаменитой станции «Glacier». + +trait-name-Talons = Длинные когти +trait-description-Talons = + Кончики ваших пальцев заменены тонкими и длинными когтями. + Ваши атаки ближнего боя без оружия наносят колющий урон вместо стандартного типа урона для вашего вида. + +trait-name-Claws = Когти +trait-description-Claws = + Кончики ваших пальцев заменены тонкими и длинными когтями. + Ваши атаки ближнего боя без оружия наносят режущий урон вместо стандартного типа урона для вашего вида. + +trait-name-NaturalWeaponRemoval = Удаление Естественного Оружия +trait-description-NaturalWeaponRemoval = + Естественное оружие, с которым обычно рождаются представители вашего вида, было удалено хирургическим путем. + В результате ваши атаки безоружным оружием наносят тупой урон вместо стандартного для вашего вида. + +trait-name-StrikingCalluses = Ударные Мозоли +trait-description-StrikingCalluses = + Культовое усовершенствование, часто встречающееся в мире кибернетических единоборств. + Эти улучшения увеличивают ваш урон руками на 1. + +trait-name-Spinarette = Бионическая Спинаретка +trait-description-Spinarette = + Этот искусственно орган, запатентованный корпорацией «Киберсан», позиционируется как высокоэффективное + усовершенствование и продается в клиниках по всему известному миру. Она состоит из узелка, который традиционно + имплантируется прямо под запястьем и который впитывает липиды организма, превращаясь в натуральный шелк. + Небольшое отверстие на ладони позволяет пользователю "раскручивать" эту нить. Пользователям этого усовершенствования + обычно требуется в два раза больше пищи, чем обычному человеку,из-за высокой метаболической стоимости искусственного шелководства. + +trait-name-AddictionNicotine = Никотиновая Зависимость +trait-description-AddictionNicotine = У вас никотиновая зависимость, и вам необходимо часто курить, чтобы держать свое настроение в норме. + +trait-name-Liar = Патологический Лжец +trait-description-Liar = Вы с трудом заставляете себя говорить правду. Но даже в таком случае вы всё равно врете. Иногда. + +trait-name-ValyrianStandard = Валириский Стандартный +trait-description-ValyrianStandard = + Язык, произошедший от восточно-европейских языков Старой Земли, - валирийский стандарт - распространенный язык гарпий, выросших на их родной планете Валириан 4b. + На нем редко говорят за пределами миров, где он является родным, и в наше время он был вытеснен конлангами Солнечного альянса. + На нем говорят те, кто желает поддерживать традиции и верования древних народов, живших до колониальной эпохи. + +trait-name-LowPotential = Низкий Пси-Потенциал +trait-description-LowPotential = Вы обладаете необычайно слабой связью с ноосферой, что усложняет получение новых псионических способностей. + +trait-name-HighPotential = Высокий Пси-Потенциал +trait-description-HighPotential = Ваша связь с ноосферой выше средней, что облегчает получение новых псионических способностей. + +trait-name-LowAmplification = Дефицит kα +trait-description-LowAmplifiction = Ваши псионические способности заметно слабее, чем у других псиоников. + +trait-name-HighAmplification = Избыток kα +trait-description-HighAmplification = Ваши псионические способности заметно сильнее, чем у других псиоников. + +trait-name-PowerOverwhelming = Подавляющая Мощь +trait-description-PowerOverwhelming = + СТАНЬТЕ СВИДЕТЕЛЯМИ МОЕЙ НЕНАВИСТИ, СМЕРТНЫЕ, ПРЕКЛОНИТЕСЬ ПЕРЕД МОЕЙ ПСИОНИЧЕСКОЙ МОЩЬЮ! РЕАЛЬНОСТЬ ТАКОВА, КАКОЙ Я ЕЕ СЧИТАЮ. + +trait-name-LowDampening = Дефицит kδ +trait-description-LowDampening = + Ваше умение манипулировать ноосферой слабее, чем у других. У вас чаще бывают нежелательные эффекты от использования способностей. + +trait-name-HighDampening = Избыток kδ +trait-description-HighDampening = + Ваше умение манипулировать ноосферой сильнее, чем у других. У вас реже бывают нежелательные эффекты от использования способностей. + +trait-name-Azaziba = Синта'Азазиба +trait-description-Azaziba = + Могесский язык, состоящий из сочетания устной речи и жестикуляции. + Хотя с момента выхода Могеса на галактическую арену этот язык ослабевает, он пользуется популярностью среди ящеров, которые так и не поддались культурному господству Гегемонии. + +trait-name-BionicArm = Бионическая Рука +trait-description-BionicArm = + Одна или несколько ваших рук были заменены дорогим бионическим протезом, созданным по последнему слову техники. + Он может быть сделан из реалистичной синтетической плоти или же быть более очевидной металлической конечностью. + Эта конечность дает пользователю повышенную силу, позволяя вскрывать двери голыми руками. + +trait-name-PlateletFactories = Фабрика Тромбоцитов +trait-description-PlateletFactories = + Ваше тело было дополнено рядом биоорганов, которые повышают долговременную выживаемость владельца. Эти органы будут пытаться + поддерживать жизнь пользователя, даже перед лицом серьезных травм, вплоть до смерти, но не включая ее. + Ваше естественное исцеление больше не ограничено и теперь будет медленно исцелять повреждения любого типа. В том числе и радиационное облучение. + +trait-name-DermalArmor = Кожная Броня +trait-description-DermalArmor = + Ваша кожа была заменена на гибкую, но прочную оболочку из твердого полимера, обернутую слоем синтетической плоти. + Эта аугментация дает врожденное 10-процентное сопротивление физическому урону. + +trait-name-CyberEyes = Базовые Киберглаза +trait-description-CyberEyes = + Один или несколько ваших глаз были заменены на высокомодульный механический глазной имплантат. + Их основная функция заключается в том, чтобы компенсировать недостатки естественных глаз владельца, + но дополнительно эти имплантаты обеспечивают защиту от ярких вспышек света. + +trait-name-CyberEyesSecurity = Киберглаза Службы Безопасности +trait-description-CyberEyesSecurity = + Ваши киберглаза были модернизированы и оснащены встроенным охранным визором. Обратите внимание, что этот имплант + считается контрабандой и может быть отключен корпорацией перед отправкой на станцию. + +trait-name-CyberEyesMedical = Киберглаза Медицинского Персонала +trait-description-CyberEyesMedical = + Ваши киберглаза были модернизированы и оснащены встроенным медицинским визором, позволяющим отслеживать относительное состояние здоровья биологических организмов. + +trait-name-CyberEyesDiagnostic = Киберглаза Роботехника +trait-description-CyberEyesDiagnostic = + Ваши киберглаза были модернизированы и оснащены встроенным диагностическим визором, позволяющим отслеживать состояние синтетических существ. + +trait-name-CyberEyesOmni = Киберглаза Омнивизор +trait-description-CyberEyesOmni = + Этот дорогостоящий имплантат сочетает в себе преимущества всех визоров. + Обратите внимание, что этот имплант считается контрабандой для тех, кто не работает в службе безопасности станции, + и может быть отключен корпорацией перед отправкой на станцию. diff --git a/Resources/Maps/DryDock.yml b/Resources/Maps/DryDock.yml index 7712b00dd1..ad8098d5de 100644 --- a/Resources/Maps/DryDock.yml +++ b/Resources/Maps/DryDock.yml @@ -4,6 +4,9 @@ meta: tilemap: 0: Space 49: FloorAsteroidSandUnvariantized + 73: FloorAstroGrassAutumnOrange + 75: FloorAstroGrassAutumnRed + 74: FloorAstroGrassAutumnYellow 65: FloorAstroSnow 14: FloorBlueCircuit 3: FloorBrassFilled @@ -31,6 +34,9 @@ tilemap: 36: FloorHydro 21: FloorKitchen 55: FloorLino + 71: FloorLinoDark + 72: FloorLinoGrey + 70: FloorLinoWhite 47: FloorMime 29: FloorMiningDark 41: FloorMiningLight @@ -49,6 +55,7 @@ tilemap: 28: FloorShuttleOrange 44: FloorShuttlePurple 61: FloorShuttleRed + 67: FloorShuttleSyndie 26: FloorShuttleWhite 13: FloorSteel 23: FloorSteelDiagonal @@ -68,6 +75,10 @@ tilemap: 1: Plating 59: PlatingBurnt 60: PlatingDamaged + 39: PlatingDiagonalNE + 68: PlatingDiagonalNW + 54: PlatingDiagonalSE + 69: PlatingDiagonalSW entities: - proto: "" entities: @@ -87,6 +98,7 @@ entities: - uid: 2 components: - type: MetaData + name: DryDock station - type: Transform pos: -0.140625,-0.671875 parent: 1 @@ -94,19 +106,19 @@ entities: chunks: 0,0: ind: 0,0 - tiles: FwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: FwAAAAAAFwAAAAABFwAAAAABFwAAAAADFwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAHgAAAAAAAQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAHgAAAAAAHwAAAAAAHgAAAAAAHwAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAHwAAAAAAHgAAAAAAHwAAAAAAHgAAAAAAHwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAKQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAHgAAAAAAHwAAAAAAHgAAAAAAHwAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAABHgAAAAABAQAAAAAAFwAAAAABFwAAAAABFwAAAAABFwAAAAADAQAAAAAAKQAAAAAADQAAAAADKQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAACKQAAAAAADQAAAAAAAQAAAAAAHgAAAAACHwAAAAACHgAAAAACHwAAAAADHgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAADQAAAAAADQAAAAACKQAAAAAADQAAAAABAQAAAAAAHwAAAAAAHgAAAAAAHwAAAAADHgAAAAACHwAAAAADAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAKQAAAAAADQAAAAACKQAAAAAADQAAAAADAQAAAAAAHgAAAAACHwAAAAADHgAAAAAAHwAAAAABHgAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAADQAAAAACDQAAAAAADQAAAAACDQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADwAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAADwAAAAAADgAAAAAADwAAAAAADwAAAAAADwAAAAAAAQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAAQAAAAAACwAAAAAADAAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAACwAAAAAADAAAAAAACwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAKQAAAAAAKQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFwAAAAAACQAAAAAACQAAAAAAFwAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAFwAAAAAAFwAAAAAACQAAAAAAFwAAAAAAFwAAAAAACwAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAAIAAAAAAAIQAAAAAAIAAAAAAADQAAAAAADQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAADQAAAAAAIQAAAAAACgAAAAAAIQAAAAAADQAAAAAAAQAAAAAAFwAAAAAAFwAAAAAACQAAAAAAFwAAAAAAFwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAAIQAAAAAACgAAAAAAIQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAFwAAAAAACQAAAAAACQAAAAAAFwAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAADQAAAAAAIAAAAAAAIQAAAAAAIAAAAAAADQAAAAAAHgAAAAAAAQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADwAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAADwAAAAAADgAAAAAADwAAAAAADwAAAAAADwAAAAAAAQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAQAAAAAADQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAADQAAAAACDQAAAAABDQAAAAADDQAAAAABAQAAAAAACwAAAAADCwAAAAADCwAAAAADCwAAAAABCwAAAAABAQAAAAAACwAAAAADCwAAAAABAQAAAAAAiwAAAAAAiwAAAAAADQAAAAABDQAAAAAADQAAAAACDQAAAAACAQAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAADCwAAAAABAQAAAAAACwAAAAAADAAAAAABAQAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAADDAAAAAACDAAAAAAADAAAAAADCwAAAAADCwAAAAAADAAAAAABCwAAAAADAQAAAAAAAAAAAAAAAAAAAAAADQAAAAADDQAAAAABDQAAAAABDQAAAAACAQAAAAAACwAAAAAACwAAAAAACwAAAAADCwAAAAACCwAAAAABAQAAAAAACwAAAAABCwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAKQAAAAAAKQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABDQAAAAABKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAACCwAAAAACCwAAAAABAQAAAAAAFwAAAAAAFwAAAAACFwAAAAACFwAAAAAAAQAAAAAADQAAAAACKQAAAAAADQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAACCwAAAAACAQAAAAAAAQAAAAAAFwAAAAABFwAAAAACFwAAAAADFwAAAAABAQAAAAAAKQAAAAAADQAAAAACKQAAAAAAAQAAAAAAAQAAAAAADQAAAAADAQAAAAAACwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAFwAAAAADCQAAAAAACQAAAAAAFwAAAAADAQAAAAAADQAAAAADKQAAAAAADQAAAAABAQAAAAAADQAAAAADDQAAAAABDQAAAAACDQAAAAADDQAAAAAAAQAAAAAAFwAAAAABFwAAAAADCQAAAAADFwAAAAADFwAAAAAACwAAAAADDQAAAAACKQAAAAAADQAAAAABDQAAAAAADQAAAAADIAAAAAABIQAAAAACIAAAAAACDQAAAAADDQAAAAABFwAAAAACFwAAAAAAFwAAAAACFwAAAAACFwAAAAABAQAAAAAADQAAAAADKQAAAAAADQAAAAACAQAAAAAADQAAAAACIQAAAAADCgAAAAADIQAAAAACDQAAAAAAAQAAAAAAFwAAAAACFwAAAAAACQAAAAABFwAAAAADFwAAAAACAQAAAAAADQAAAAACDQAAAAADDQAAAAAAAQAAAAAADQAAAAABIQAAAAACCgAAAAACIQAAAAABDQAAAAABAQAAAAAAAQAAAAAAFwAAAAABCQAAAAACCQAAAAADFwAAAAABAQAAAAAADQAAAAACKQAAAAAADQAAAAADAQAAAAAADQAAAAAAIAAAAAABIQAAAAABIAAAAAABDQAAAAABHgAAAAABAQAAAAAAFwAAAAADFwAAAAABFwAAAAAAFwAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: iwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAACQAAAAAACQAAAAAAFwAAAAAAFwAAAAAACQAAAAAAFwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAACQAAAAAAFwAAAAAAFwAAAAAACQAAAAAAFwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAACQAAAAAAFwAAAAAAFwAAAAAACQAAAAAAFwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAACQAAAAAACQAAAAAAFwAAAAAAFwAAAAAACQAAAAAAFwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: iwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAABFwAAAAABFwAAAAABFwAAAAACFwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAACFwAAAAAAFwAAAAADFwAAAAADFwAAAAAAFwAAAAACFwAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAADCQAAAAADCQAAAAADFwAAAAADFwAAAAAACQAAAAABFwAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAADFwAAAAAACQAAAAACFwAAAAACFwAAAAAACQAAAAAAFwAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAACFwAAAAACFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAADCQAAAAABFwAAAAADFwAAAAAACQAAAAACFwAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAACCQAAAAAACQAAAAACFwAAAAACFwAAAAADCQAAAAABFwAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAADFwAAAAABFwAAAAADFwAAAAABFwAAAAAAFwAAAAABFwAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-2: ind: -1,-2 @@ -114,47 +126,47 @@ entities: version: 6 -2,0: ind: -2,0 - tiles: AQAAAAAABAAAAAAABAAAAAAAAQAAAAAABAAAAAAABQAAAAAABQAAAAAABAAAAAAABAAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAABAAAAAAABQAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAAABgAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAABAAAAAAABQAAAAAABQAAAAAABgAAAAAABQAAAAAABgAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADQAAAAAAAQAAAAAABAAAAAAABgAAAAAABQAAAAAABQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAAQAAAAAABAAAAAAABQAAAAAABQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAACwAAAAAAIQAAAAAAQgAAAAAAIQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAHQAAAAAAGAAAAAAAHQAAAAAAAQAAAAAAHQAAAAAAGAAAAAAAAQAAAAAADAAAAAAAQgAAAAAAIQAAAAAAQgAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAHQAAAAAAGAAAAAAAHQAAAAAAGAAAAAAAAQAAAAAAGAAAAAAAHQAAAAAAAQAAAAAACwAAAAAAIQAAAAAAQgAAAAAAIQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAGAAAAAAAHQAAAAAAGAAAAAAAHQAAAAAAAQAAAAAAHQAAAAAAGAAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAHQAAAAAAGAAAAAAAHQAAAAAAGAAAAAAAAQAAAAAAGAAAAAAAHQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAA + tiles: AQAAAAAASQAAAAACSQAAAAAGAQAAAAAASQAAAAAFBQAAAAACBQAAAAABSwAAAAAESQAAAAADAQAAAAAACwAAAAACCwAAAAADCwAAAAAACwAAAAABCwAAAAAACwAAAAADAQAAAAAASgAAAAAGSgAAAAAHSQAAAAAASwAAAAADBQAAAAADBQAAAAABBQAAAAABSwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAACAQAAAAAAAQAAAAAASQAAAAAEBQAAAAAABgAAAAABBQAAAAABBQAAAAAABQAAAAACBgAAAAABDQAAAAAAAQAAAAAADQAAAAABDQAAAAABDQAAAAACDQAAAAACDQAAAAAADQAAAAABAQAAAAAASQAAAAAEBQAAAAACBQAAAAAABgAAAAACBQAAAAACBgAAAAABDQAAAAABKQAAAAAADQAAAAAADQAAAAACSgAAAAAHSQAAAAADSQAAAAABSwAAAAAADQAAAAACAQAAAAAASwAAAAAHBgAAAAABBQAAAAADBQAAAAADDQAAAAABKQAAAAAAKQAAAAAADQAAAAACKQAAAAAAKQAAAAAADQAAAAACKQAAAAAAKQAAAAAADQAAAAACKQAAAAAAAQAAAAAASwAAAAAEBQAAAAACBQAAAAAADQAAAAABDQAAAAABDQAAAAABDQAAAAADKQAAAAAADQAAAAADDQAAAAABDQAAAAABDQAAAAADDQAAAAACKQAAAAAADQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAACwAAAAABIQAAAAAAQgAAAAAAIQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAHQAAAAAAGAAAAAAAHQAAAAAAAQAAAAAAHQAAAAAAGAAAAAAAAQAAAAAADAAAAAAAQgAAAAAAIQAAAAADQgAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAHQAAAAAAGAAAAAAAHQAAAAAAGAAAAAAAAQAAAAAAGAAAAAAAHQAAAAAAAQAAAAAACwAAAAABIQAAAAABQgAAAAAAIQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAGAAAAAAAHQAAAAAAGAAAAAAAHQAAAAAAAQAAAAAAHQAAAAAAGAAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAHQAAAAAAGAAAAAAAHQAAAAAAGAAAAAAAAQAAAAAAGAAAAAAAHQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: KQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADwAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAADwAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAIAAAAAAADQAAAAAAAQAAAAAAKQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAAIAAAAAAAIAAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAAIAAAAAAAIAAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAIAAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAAIAAAAAAAIAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAABwAAAAAABAAAAAAABgAAAAAAAQAAAAAABgAAAAAABQAAAAAABQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACAAAAAAABwAAAAAABQAAAAAABQAAAAAABQAAAAAABgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAACwAAAAAADAAAAAAACwAAAAAABwAAAAAABAAAAAAABQAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABgAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAACwAAAAAACwAAAAAADAAAAAAABAAAAAAABAAAAAAABQAAAAAABQAAAAAABQAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAADAAAAAAACwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAABAAAAAAABAAAAAAABQAAAAAABgAAAAAABQAAAAAABgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAADAAAAAAADAAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABQAAAAAABgAAAAAABAAAAAAABAAAAAAAAQAAAAAACwAAAAAADAAAAAAACwAAAAAADAAAAAAACwAAAAAACwAAAAAA + tiles: KQAAAAAAKQAAAAAADQAAAAACKQAAAAAAKQAAAAAADQAAAAAADQAAAAACAQAAAAAADQAAAAAADQAAAAABDQAAAAABDQAAAAABDQAAAAACDQAAAAAAAQAAAAAADwAAAAAADQAAAAACDQAAAAADKQAAAAAADQAAAAAADQAAAAABKQAAAAAADQAAAAABAQAAAAAADQAAAAADDQAAAAAADQAAAAACAQAAAAAADQAAAAABDQAAAAACAQAAAAAADwAAAAAAAQAAAAAADQAAAAACAQAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAABDQAAAAAADQAAAAABDQAAAAACAQAAAAAADQAAAAABDQAAAAAAAQAAAAAAAQAAAAAADQAAAAACIAAAAAACDQAAAAAAAQAAAAAAKQAAAAAADQAAAAAAKQAAAAAADQAAAAACDQAAAAAADQAAAAACDQAAAAAAAQAAAAAADQAAAAACDQAAAAABAQAAAAAADQAAAAABDQAAAAADIAAAAAADIAAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAABAQAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAAADQAAAAABDQAAAAADAQAAAAAADQAAAAADDQAAAAADIAAAAAADIAAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAADAQAAAAAAAQAAAAAADQAAAAABDQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAACIAAAAAADDQAAAAABAQAAAAAADQAAAAACDQAAAAABDQAAAAACDQAAAAADDQAAAAACKQAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAADDQAAAAACKQAAAAAADQAAAAABIAAAAAACIAAAAAACAQAAAAAADQAAAAABDQAAAAACDQAAAAADKQAAAAAAKQAAAAAADQAAAAABKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABDQAAAAABDQAAAAABDQAAAAABDQAAAAACKQAAAAAADQAAAAADDQAAAAABDQAAAAABDQAAAAABDQAAAAADKQAAAAAABwAAAAADSwAAAAAFBgAAAAABAQAAAAAABgAAAAADBQAAAAADBQAAAAACAQAAAAAADQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACAAAAAADBwAAAAABBQAAAAAABQAAAAABBQAAAAACBgAAAAADBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAABCwAAAAAAAQAAAAAACwAAAAADDAAAAAACCwAAAAADBwAAAAAASgAAAAAGBQAAAAADBgAAAAADBQAAAAADBQAAAAADBQAAAAAABQAAAAAABgAAAAABAQAAAAAACwAAAAABCwAAAAACAQAAAAAACwAAAAACCwAAAAACDAAAAAABSQAAAAAESwAAAAAEBQAAAAAABQAAAAAABQAAAAABBgAAAAABBQAAAAABBQAAAAADBQAAAAABAQAAAAAACwAAAAACCwAAAAACCwAAAAACCwAAAAACDAAAAAAACwAAAAACBQAAAAAABQAAAAACBQAAAAAABQAAAAADBQAAAAADBQAAAAADBQAAAAADBgAAAAABBQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAACCwAAAAAACwAAAAADSQAAAAAHSQAAAAAABQAAAAACBgAAAAAABQAAAAABBgAAAAADBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAADCwAAAAAADAAAAAADDAAAAAADCwAAAAADSgAAAAAGSQAAAAAFSwAAAAAESwAAAAAFSwAAAAAHBQAAAAACBgAAAAADSQAAAAAGSgAAAAAEAQAAAAAACwAAAAACDAAAAAADCwAAAAAADAAAAAACCwAAAAABCwAAAAAC version: 6 -2,-2: ind: -2,-2 - tiles: iwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAADwAAAAAA + tiles: iwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAABDQAAAAAADQAAAAABDQAAAAACDQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAACDQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABAQAAAAAAAQAAAAAAAQAAAAAADQAAAAADAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAABDQAAAAABAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAADQAAAAADDQAAAAACKQAAAAAADQAAAAADDQAAAAADDQAAAAAADQAAAAABAQAAAAAADQAAAAABDQAAAAABDQAAAAADDQAAAAADDQAAAAADAQAAAAAAAQAAAAAADwAAAAAA version: 6 -3,0: ind: -3,0 - tiles: AQAAAAAADQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADAAAAAAACwAAAAAADAAAAAAACwAAAAAADAAAAAAACwAAAAAADAAAAAAACwAAAAAADAAAAAAACwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAADAAAAAAADAAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAADAAAAAAADAAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAACwAAAAAADAAAAAAADAAAAAAACwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAACwAAAAAADAAAAAAACwAAAAAACwAAAAAACwAAAAAADAAAAAAADAAAAAAACwAAAAAAAQAAAAAACwAAAAAADAAAAAAADAAAAAAACwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAACwAAAAAADAAAAAAADAAAAAAACwAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOwAAAAAAPgAAAAAAAQAAAAAAOwAAAAAAPQAAAAAAGwAAAAAAPQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAA + tiles: AQAAAAAADQAAAAADAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAADCwAAAAABAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABDQAAAAAADQAAAAACDQAAAAABDQAAAAADAQAAAAAACwAAAAAACwAAAAACCwAAAAADCwAAAAADCwAAAAAACwAAAAAACwAAAAADCwAAAAADCwAAAAAACwAAAAACDQAAAAAADQAAAAACDQAAAAABDQAAAAADDQAAAAACAQAAAAAACwAAAAABDAAAAAACDAAAAAACDAAAAAABDAAAAAABDAAAAAADDAAAAAADDAAAAAACDAAAAAABCwAAAAADDQAAAAAADQAAAAADDQAAAAACDQAAAAAADQAAAAACAQAAAAAADAAAAAACCwAAAAADDAAAAAABCwAAAAADDAAAAAACCwAAAAADDAAAAAABCwAAAAABDAAAAAADCwAAAAACDQAAAAAADQAAAAACDQAAAAADDQAAAAABDQAAAAABAQAAAAAACwAAAAADDAAAAAABDAAAAAACDAAAAAAADAAAAAABDAAAAAACDAAAAAABDAAAAAADDAAAAAADCwAAAAAADQAAAAACDQAAAAACDQAAAAACDQAAAAAADQAAAAAAAQAAAAAACwAAAAABCwAAAAADCwAAAAADCwAAAAADCwAAAAACCwAAAAABCwAAAAAADAAAAAABDAAAAAADCwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAACAQAAAAAAAQAAAAAAAQAAAAAACwAAAAADDAAAAAABDAAAAAABCwAAAAACAQAAAAAAAQAAAAAAAQAAAAAACwAAAAADCwAAAAAACwAAAAABAQAAAAAACwAAAAADCwAAAAAACwAAAAACCwAAAAACAQAAAAAACwAAAAAADAAAAAADDAAAAAACCwAAAAACAQAAAAAAPwAAAAAAAQAAAAAACwAAAAACDAAAAAACCwAAAAACCwAAAAACCwAAAAABDAAAAAACDAAAAAABCwAAAAACAQAAAAAACwAAAAABDAAAAAAADAAAAAABCwAAAAADAQAAAAAAPwAAAAAAAQAAAAAACwAAAAAACwAAAAABCwAAAAADAQAAAAAACwAAAAACDAAAAAAADAAAAAAACwAAAAAAAQAAAAAACwAAAAACCwAAAAADCwAAAAADCwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAACwAAAAADCwAAAAADCwAAAAACCwAAAAABAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOwAAAAACPgAAAAAAAQAAAAAAOwAAAAACPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: DAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAADAAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAADAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAADQAAAAAAIAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAAIAAAAAAAIAAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAKQAAAAAADQAAAAAAKQAAAAAADQAAAAAAIAAAAAAAIAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAAIAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAIAAAAAAAIAAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAABAAAAAAABAAAAAAABQAAAAAABQAAAAAABgAAAAAABAAAAAAABAAAAAAABAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABgAAAAAABQAAAAAABAAAAAAABAAAAAAABwAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABQAAAAAABQAAAAAABgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAABAAAAAAABwAAAAAABAAAAAAABQAAAAAABgAAAAAABQAAAAAABQAAAAAABAAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAABwAAAAAACAAAAAAABwAAAAAABgAAAAAABgAAAAAABAAAAAAABQAAAAAABQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAAQAAAAAABAAAAAAABwAAAAAABAAAAAAABgAAAAAABgAAAAAABAAAAAAABAAAAAAABAAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABQAAAAAABgAAAAAABAAAAAAABAAAAAAABAAAAAAA + tiles: DAAAAAACCwAAAAABCwAAAAADCwAAAAABCwAAAAAADAAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAABDAAAAAABCwAAAAADCwAAAAABCwAAAAACCwAAAAABDAAAAAAADAAAAAADAQAAAAAAAQAAAAAAAQAAAAAADQAAAAACDQAAAAADKQAAAAAADQAAAAACDQAAAAABDQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAADAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAADDQAAAAABAQAAAAAADQAAAAADDQAAAAADDQAAAAACDQAAAAAADQAAAAACAQAAAAAADQAAAAACKQAAAAAADQAAAAADAQAAAAAADQAAAAACIAAAAAACDQAAAAADDQAAAAAADQAAAAADDQAAAAACDQAAAAADKQAAAAAADQAAAAABDQAAAAAADQAAAAACDQAAAAABDQAAAAABKQAAAAAADQAAAAABDQAAAAADIAAAAAAAIAAAAAADKQAAAAAAKQAAAAAADQAAAAACKQAAAAAAKQAAAAAADQAAAAACKQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAKQAAAAAADQAAAAACKQAAAAAADQAAAAAAIAAAAAACIAAAAAACDQAAAAABDQAAAAABDQAAAAAADQAAAAACDQAAAAACKQAAAAAADQAAAAABDQAAAAABDQAAAAABDQAAAAAADQAAAAAAKQAAAAAADQAAAAADDQAAAAADDQAAAAAAIAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABDQAAAAACDQAAAAADDQAAAAABDQAAAAACAQAAAAAADQAAAAABKQAAAAAADQAAAAADAQAAAAAAIAAAAAAAIAAAAAABDQAAAAAADQAAAAADDQAAAAABAQAAAAAADQAAAAABKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAABBgAAAAADBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAADQAAAAADDQAAAAADDQAAAAABDQAAAAADDQAAAAAAKQAAAAAADQAAAAAAAQAAAAAASQAAAAABSwAAAAAHBQAAAAAABQAAAAABBgAAAAAASwAAAAAESQAAAAAGSgAAAAAGDQAAAAACDQAAAAACDQAAAAADDQAAAAADKQAAAAAADQAAAAADKQAAAAAAAQAAAAAASQAAAAACSwAAAAACSQAAAAACBgAAAAABBQAAAAAASwAAAAAESQAAAAAGBwAAAAABDQAAAAACDQAAAAACDQAAAAACAQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAASgAAAAAASQAAAAAASwAAAAAABQAAAAABBQAAAAABBgAAAAACSgAAAAAHSQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAADKQAAAAAADQAAAAABAQAAAAAASgAAAAADBwAAAAADSQAAAAAEBQAAAAADBgAAAAABBQAAAAADBQAAAAADSwAAAAADDQAAAAADDQAAAAAADQAAAAADKQAAAAAADQAAAAADDQAAAAAADQAAAAAAAQAAAAAABwAAAAAACAAAAAADBwAAAAACBgAAAAACBgAAAAAASwAAAAAGBQAAAAACBQAAAAADDQAAAAADKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAAQAAAAAASQAAAAAHBwAAAAAASwAAAAAFBgAAAAAABgAAAAACSQAAAAAFSQAAAAAASQAAAAAGDQAAAAAADQAAAAADDQAAAAACKQAAAAAADQAAAAABDQAAAAADDQAAAAABAQAAAAAASwAAAAAGSwAAAAACSQAAAAAHBQAAAAADBgAAAAABSQAAAAABSgAAAAACSgAAAAAB version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAACwAAAAAACwAAAAAACwAAAAAADAAAAAAADAAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAACwAAAAAADAAAAAAACwAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAACwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAACwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAABCwAAAAADCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAACwAAAAACCwAAAAABCwAAAAABDAAAAAABDAAAAAADAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAAACwAAAAABDAAAAAADCwAAAAACDAAAAAAADAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAADCwAAAAADDAAAAAABDAAAAAAADAAAAAABCwAAAAACCwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABAQAAAAAAAQAAAAAAAQAAAAAACwAAAAABCwAAAAACDAAAAAACDAAAAAADDAAAAAABCwAAAAACCwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAADQAAAAABKQAAAAAADQAAAAAADQAAAAABDQAAAAAC version: 6 -4,0: ind: -4,0 - tiles: AQAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAJgAAAAAAEQAAAAAAEgAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAAAQAAAAAAEgAAAAAAJgAAAAAAJgAAAAAAEQAAAAAAAQAAAAAAEQAAAAAAJgAAAAAAEgAAAAAAJgAAAAAAEQAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAAAQAAAAAAEQAAAAAAJgAAAAAAJgAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAJgAAAAAAEQAAAAAAEgAAAAAAAQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAAQAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPgAAAAAA + tiles: AQAAAAAAEQAAAAAAEgAAAAAAEQAAAAABEgAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAEgAAAAABAQAAAAAAAQAAAAAADQAAAAADKQAAAAAADQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAABAQAAAAAAAQAAAAAAEQAAAAABEgAAAAAAEQAAAAAAEgAAAAACEQAAAAADAQAAAAAADQAAAAACDQAAAAABDQAAAAAAAQAAAAAAAQAAAAAAEQAAAAACEgAAAAACEQAAAAACEgAAAAAAAQAAAAAAEgAAAAADEQAAAAADJgAAAAACEQAAAAADEgAAAAABAQAAAAAADQAAAAACKQAAAAAADQAAAAADDQAAAAACAQAAAAAAEgAAAAADJgAAAAADJgAAAAAAEQAAAAACAQAAAAAAEQAAAAABJgAAAAADEgAAAAAAJgAAAAACEQAAAAAAAQAAAAAADQAAAAABKQAAAAAADQAAAAACDQAAAAADAQAAAAAAEQAAAAABJgAAAAADJgAAAAACEgAAAAAAAQAAAAAAEgAAAAADEQAAAAADJgAAAAABEQAAAAAAEgAAAAADAQAAAAAAKQAAAAAADQAAAAADKQAAAAAAAQAAAAAAAQAAAAAAEgAAAAADEQAAAAABEgAAAAADEQAAAAAAAQAAAAAAEQAAAAACEgAAAAACEQAAAAABEgAAAAAAEQAAAAADAQAAAAAADQAAAAABKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAACKQAAAAAADQAAAAABAQAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAADDQAAAAABKQAAAAAADQAAAAADDQAAAAACDQAAAAADDQAAAAACDQAAAAAAKQAAAAAADQAAAAABDQAAAAADDQAAAAACAQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAABKQAAAAAAKQAAAAAADQAAAAACKQAAAAAAKQAAAAAADQAAAAAAAQAAAAAADQAAAAACDQAAAAAADQAAAAAADQAAAAADDQAAAAACKQAAAAAADQAAAAADDQAAAAABDQAAAAABDQAAAAADDQAAAAAAKQAAAAAADQAAAAACDQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABDQAAAAACDQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAACDQAAAAABPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAADQAAAAACDQAAAAABDQAAAAACAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAACAQAAAAAADQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPgAAAAAD version: 6 -4,-1: ind: -4,-1 - tiles: DQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAACwAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAQQAAAAAAAQAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAEgAAAAAAEQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAEQAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAAQAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAAAQAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAAQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAAQAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAA + tiles: DQAAAAACKQAAAAAAKQAAAAAADQAAAAACKQAAAAAAKQAAAAAADQAAAAABKQAAAAAAKQAAAAAADQAAAAABKQAAAAAAKQAAAAAADQAAAAABKQAAAAAAKQAAAAAACwAAAAACKQAAAAAADQAAAAABDQAAAAACDQAAAAADDQAAAAACDQAAAAAAKQAAAAAADQAAAAADDQAAAAABDQAAAAADDQAAAAACDQAAAAADKQAAAAAADQAAAAABDQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAADDQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABKQAAAAAADQAAAAACDQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAACDQAAAAAADQAAAAAAKQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABKQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAACDQAAAAABDQAAAAABKQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAACDQAAAAADAQAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAADEQAAAAABEgAAAAACEQAAAAACAQAAAAAADQAAAAABDQAAAAAADQAAAAACAQAAAAAAEgAAAAACEQAAAAAAEgAAAAADEQAAAAADEgAAAAABEQAAAAAAAQAAAAAAAQAAAAAAEgAAAAABEQAAAAACEgAAAAABAQAAAAAADQAAAAADDQAAAAAADQAAAAACAQAAAAAAEQAAAAAAEgAAAAADEQAAAAADEgAAAAADEQAAAAABEgAAAAACQQAAAAAAAQAAAAAAEQAAAAACEgAAAAAAEQAAAAADAQAAAAAADQAAAAAADQAAAAACDQAAAAAAAQAAAAAAEgAAAAACEQAAAAAAEgAAAAABEQAAAAAAEgAAAAAAEQAAAAADAQAAAAAAAQAAAAAAEgAAAAACEQAAAAABEgAAAAAAAQAAAAAADQAAAAACDQAAAAAADQAAAAABEgAAAAACEQAAAAABJgAAAAACJgAAAAABJgAAAAADEQAAAAADEgAAAAACAQAAAAAAEgAAAAABEQAAAAAAEgAAAAABAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABDQAAAAAAAQAAAAAAEgAAAAABEQAAAAAAEgAAAAADEQAAAAABEgAAAAACEQAAAAACAQAAAAAAEQAAAAAAEgAAAAACEQAAAAACAQAAAAAADQAAAAABKQAAAAAADQAAAAADDQAAAAACAQAAAAAAEQAAAAABEgAAAAACEQAAAAABEgAAAAABEQAAAAABEgAAAAACAQAAAAAAEgAAAAAAEQAAAAABEgAAAAADAQAAAAAAKQAAAAAADQAAAAABKQAAAAAAKQAAAAAAAQAAAAAAEgAAAAACEQAAAAABEgAAAAABEQAAAAAAEgAAAAABEQAAAAACAQAAAAAAEQAAAAABEgAAAAADEQAAAAADAQAAAAAADQAAAAADKQAAAAAADQAAAAAADQAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAAAIQAAAAAAAQAAAAAAIQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAiwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAIwAAAAAADQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAAIwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAIwAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAAIwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAIwAAAAAADQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAKQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAAAQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAADQAAAAACAQAAAAAAIwAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAADIwAAAAAADQAAAAAADQAAAAAAIwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAACDQAAAAABDQAAAAAADQAAAAADIwAAAAAAAQAAAAAAIwAAAAAAAQAAAAAADQAAAAACAQAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAABDQAAAAADDQAAAAABDQAAAAABDQAAAAAADQAAAAADDQAAAAABIwAAAAAADQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAIwAAAAAAIwAAAAAADQAAAAAADQAAAAABIwAAAAAADQAAAAACDQAAAAACIwAAAAAAIwAAAAAAAQAAAAAAIwAAAAAADQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAADQAAAAACDQAAAAAADQAAAAADDQAAAAACIwAAAAAAIwAAAAAADQAAAAADDQAAAAAAIwAAAAAAAQAAAAAADQAAAAACIwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAADQAAAAAAIwAAAAAAIwAAAAAADQAAAAADDQAAAAADIwAAAAAAIwAAAAAADQAAAAACDQAAAAACAQAAAAAAIwAAAAAADQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAIwAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAADDQAAAAADDQAAAAACDQAAAAADAQAAAAAADQAAAAADIwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAACDQAAAAADDQAAAAABDQAAAAAADQAAAAADDQAAAAAADQAAAAACDQAAAAACDQAAAAABAQAAAAAAIwAAAAAADQAAAAACAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAIwAAAAAADQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAIwAAAAAADQAAAAACAQAAAAAAIwAAAAAAIwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAADQAAAAADDQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAKQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAKQAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAACDQAAAAADKQAAAAAADQAAAAACDQAAAAADDQAAAAAADQAAAAADDQAAAAABKQAAAAAADQAAAAADDQAAAAABAQAAAAAA version: 6 -4,1: ind: -4,1 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,0: ind: -5,0 - tiles: BwAAAAAACAAAAAAABwAAAAAACAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACAAAAAAABwAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAACAAAAAAAAQAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAABwAAAAAACAAAAAAAAQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAAQAAAAAACAAAAAAABwAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACAAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAACAAAAAAAAQAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAAAQAAAAAABQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAA + tiles: BwAAAAADCAAAAAABBwAAAAACCAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACAAAAAACBwAAAAAAAQAAAAAAEgAAAAABEQAAAAACEgAAAAABEQAAAAABEgAAAAADEQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAACAAAAAABAQAAAAAAEQAAAAAAEgAAAAACEQAAAAACEgAAAAABEQAAAAAAEgAAAAADBwAAAAAACAAAAAABAQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAAQAAAAAACAAAAAABBwAAAAABAQAAAAAAEgAAAAACEQAAAAABEgAAAAADAQAAAAAAAQAAAAAAAQAAAAAACAAAAAABBwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADCAAAAAABAQAAAAAAEQAAAAACEgAAAAAAEQAAAAADEgAAAAADEQAAAAAAEgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAEQAAAAABEgAAAAADEQAAAAABEgAAAAADEQAAAAABiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAACEgAAAAABEQAAAAABEgAAAAABEQAAAAAAEgAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAACDQAAAAABKQAAAAAADQAAAAAADQAAAAADDQAAAAADDQAAAAADDQAAAAADKQAAAAAADQAAAAACDQAAAAAADQAAAAADDQAAAAACDQAAAAADKQAAAAAADQAAAAADKQAAAAAAKQAAAAAADQAAAAABKQAAAAAAKQAAAAAADQAAAAADKQAAAAAAKQAAAAAADQAAAAADKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAADDQAAAAACDQAAAAAADQAAAAABDQAAAAACKQAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAACDQAAAAAAKQAAAAAAAQAAAAAABQAAAAACDQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAA version: 6 -5,1: ind: -5,1 @@ -162,15 +174,15 @@ entities: version: 6 -5,-1: ind: -5,-1 - tiles: KQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAACAAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAACAAAAAAAAQAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAABwAAAAAACAAAAAAAAQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAAQAAAAAACAAAAAAABwAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAACAAAAAAAAQAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAAQAAAAAAEQAAAAAAEgAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACAAAAAAABwAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAACAAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACAAAAAAABwAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAACAAAAAAAAQAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAAQAAAAAAEQAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAABwAAAAAAEgAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAACAAAAAAAAQAAAAAAEQAAAAAAEgAAAAAAEQAAAAAAAQAAAAAAEQAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACAAAAAAABwAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAEQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAACAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAAAEgAAAAAA + tiles: KQAAAAAADQAAAAADKQAAAAAAKQAAAAAADQAAAAADKQAAAAAAKQAAAAAADQAAAAACKQAAAAAAKQAAAAAADQAAAAACKQAAAAAAKQAAAAAADQAAAAABKQAAAAAAKQAAAAAADQAAAAABDQAAAAABDQAAAAACDQAAAAAAKQAAAAAADQAAAAABDQAAAAACDQAAAAADDQAAAAACDQAAAAADKQAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAADDQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAABAQAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAACEgAAAAACEQAAAAADEgAAAAACEQAAAAADEgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAACEQAAAAABEgAAAAADEQAAAAABEgAAAAAAEQAAAAAACAAAAAAABwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAACCAAAAAAAAQAAAAAAEQAAAAACEgAAAAADEQAAAAABEgAAAAABEQAAAAACEgAAAAADBwAAAAABCAAAAAADAQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAAQAAAAAACAAAAAABBwAAAAAAAQAAAAAAEgAAAAADEQAAAAACEgAAAAAAEQAAAAABEgAAAAACEQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADCAAAAAAAAQAAAAAAEQAAAAAAEgAAAAACEQAAAAAAAQAAAAAAEQAAAAAAEgAAAAAABwAAAAAABwAAAAABBwAAAAACCAAAAAABAQAAAAAAAQAAAAAAAQAAAAAACAAAAAACBwAAAAABAQAAAAAAEgAAAAACEQAAAAABEgAAAAACAQAAAAAAEgAAAAABEQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADCAAAAAADAQAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAADEgAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACAAAAAACBwAAAAABAQAAAAAAEgAAAAACEQAAAAABEgAAAAADAQAAAAAAEgAAAAABEQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABCAAAAAACAQAAAAAAEQAAAAADEgAAAAADEQAAAAADAQAAAAAAEQAAAAABEgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFAAAAAACFAAAAAABFAAAAAABBwAAAAADEgAAAAABEgAAAAACEQAAAAABEgAAAAABEgAAAAAAEgAAAAAAEQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABCAAAAAADAQAAAAAAEQAAAAACEgAAAAADEQAAAAADAQAAAAAAEQAAAAACEgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACAAAAAACBwAAAAACAQAAAAAAEgAAAAACEQAAAAADEgAAAAADAQAAAAAAEgAAAAABEQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADCAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAAAEgAAAAAD version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAiwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAiwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAEwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAIwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAACgAAAAAADQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAACgAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAACgAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAADIwAAAAAADQAAAAABiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAACIwAAAAAADQAAAAADiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABDQAAAAABDQAAAAAADQAAAAAADQAAAAABiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAADQAAAAADIwAAAAAAIwAAAAAADQAAAAADDQAAAAADiwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAADIwAAAAAADQAAAAABDQAAAAABDQAAAAACiwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAADQAAAAACDQAAAAACDQAAAAADDQAAAAAADQAAAAACiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAADQAAAAADIwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAIwAAAAAADQAAAAADAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAACDQAAAAABCgAAAAABDQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAIwAAAAAADQAAAAADIwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAADQAAAAABDQAAAAAADQAAAAACCgAAAAAADQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAIwAAAAAADQAAAAADAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAADQAAAAACDQAAAAADDQAAAAACCgAAAAAADQAAAAACAQAAAAAADQAAAAABDQAAAAAAAQAAAAAADQAAAAACAQAAAAAADQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAKQAAAAAADQAAAAABDQAAAAACDQAAAAABDQAAAAABKQAAAAAADQAAAAADDQAAAAACDQAAAAADDQAAAAABDQAAAAADKQAAAAAADQAAAAACDQAAAAAADQAAAAACDQAAAAAADQAAAAAC version: 6 -3,1: ind: -3,1 - tiles: OwAAAAAAOwAAAAAAAQAAAAAAOwAAAAAAAQAAAAAAGwAAAAAAOwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAPgAAAAAAPgAAAAAAAQAAAAAAPQAAAAAAOwAAAAAAPQAAAAAAPAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: OwAAAAACOwAAAAADAQAAAAAAPwAAAAAAOwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAPgAAAAADPgAAAAACAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAOwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAQAAAAAAAQAAAAAAOwAAAAADAAAAAAAAOwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAA version: 6 -2,1: ind: -2,1 @@ -178,131 +190,131 @@ entities: version: 6 -6,1: ind: -6,1 - tiles: iwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAA + tiles: iwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,0: ind: -6,0 - tiles: AQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAACAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAIwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAIwAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAIwAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAPwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAAKQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: AQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAACDQAAAAADKQAAAAAADQAAAAABDQAAAAACAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAACAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAADQAAAAACDQAAAAACDQAAAAABKQAAAAAADQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABDQAAAAADDQAAAAACDQAAAAADDQAAAAACAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAIwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAADQAAAAADDQAAAAAAKQAAAAAADQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAIwAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAADQAAAAADKQAAAAAADQAAAAADAQAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAIwAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAKQAAAAAADQAAAAADKQAAAAAAKQAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAPwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAADDQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAADQAAAAABKQAAAAAADQAAAAADDQAAAAADKQAAAAAADQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAABDQAAAAACDQAAAAABDQAAAAACKQAAAAAAKQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAADDQAAAAABDQAAAAADKQAAAAAADQAAAAABAAAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 -6,-1: ind: -6,-1 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAANQAAAAAACwAAAAAACwAAAAAANQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAANQAAAAAACwAAAAAACwAAAAAACwAAAAAANQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAQAAAAAACwAAAAAANQAAAAAACwAAAAAANQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAACAAAAAAAOwAAAAAAGAAAAAAAPAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAGAAAAAAAAQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAABwAAAAAAGAAAAAAAGAAAAAAAOwAAAAAAGAAAAAAAGAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAAADQAAAAABKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAADQAAAAADKQAAAAAADQAAAAADDQAAAAACKQAAAAAADQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAACKQAAAAAADQAAAAACDQAAAAADAQAAAAAAAQAAAAAAAQAAAAAANQAAAAADCwAAAAADCwAAAAAANQAAAAABAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAKQAAAAAADQAAAAADKQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAANQAAAAADCwAAAAAACwAAAAABCwAAAAACNQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAADAQAAAAAAiwAAAAAAAQAAAAAAAQAAAAAACwAAAAADNQAAAAAECwAAAAABNQAAAAAGAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAADQAAAAADDQAAAAABKQAAAAAADQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAADDQAAAAADDQAAAAACDQAAAAADAQAAAAAAAQAAAAAACAAAAAADAQAAAAAAQwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAADQAAAAABDQAAAAAADQAAAAADKQAAAAAADQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQwAAAAAAAQAAAAAAQwAAAAAAAQAAAAAAQwAAAAAAAQAAAAAADQAAAAACDQAAAAABKQAAAAAADQAAAAABDQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAABwAAAAADGAAAAAAAGAAAAAAAGAAAAAAAQwAAAAAAGAAAAAAAAQAAAAAADQAAAAACDQAAAAADDQAAAAABDQAAAAADAQAAAAAAAQAAAAAAJwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAADQAAAAACDQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAADDQAAAAABDQAAAAACDQAAAAABKQAAAAAADQAAAAAADQAAAAACDQAAAAACAQAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAKQAAAAAAKQAAAAAADQAAAAABKQAAAAAAKQAAAAAADQAAAAABKQAAAAAAKQAAAAAADQAAAAABAQAAAAAAiwAAAAAAAAAAAAAAAQAAAAAABwAAAAADEwAAAAAAAQAAAAAADQAAAAADDQAAAAAADQAAAAADDQAAAAAADQAAAAABKQAAAAAADQAAAAABDQAAAAACDQAAAAABAQAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAADDQAAAAAAAQAAAAAAAQAAAAAARAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAACDQAAAAACDQAAAAAADQAAAAABAQAAAAAAAQAAAAAANgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 -6,-2: ind: -6,-2 - tiles: iwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAQAAAAAABwAAAAAACAAAAAAACAAAAAAAFAAAAAAACAAAAAAACAAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAFAAAAAAABwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAACAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAFAAAAAAAFAAAAAAACAAAAAAACAAAAAAABwAAAAAACAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAFAAAAAAACAAAAAAACAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAABwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAA + tiles: iwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAQAAAAAABwAAAAACCAAAAAABCAAAAAADFAAAAAAACAAAAAACCAAAAAABAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAFAAAAAAABwAAAAACFAAAAAAAFAAAAAAAFAAAAAAACAAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAFAAAAAABFAAAAAACCAAAAAADCAAAAAABBwAAAAAACAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAFAAAAAAACAAAAAABCAAAAAADFAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAABwAAAAABFAAAAAAAFAAAAAABFAAAAAACAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAADQAAAAADDQAAAAABDQAAAAACDQAAAAAAKQAAAAAADQAAAAAD version: 6 -7,1: ind: -7,1 - tiles: AQAAAAAANQAAAAAACwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAGQAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACwAAAAAANQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGwAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAGQAAAAAAGwAAAAAAGQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACwAAAAAADAAAAAAACwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AQAAAAAANQAAAAAFCwAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAGQAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACwAAAAACNQAAAAAEAQAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGwAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAGQAAAAAAGwAAAAAAGQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAACwAAAAADAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACwAAAAABDAAAAAADCwAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACwAAAAACCwAAAAABCwAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,0: ind: -7,0 - tiles: DAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAGgAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAGgAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAADAAAAAAACwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAACwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAGgAAAAAAPwAAAAAADAAAAAAACwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAACwAAAAAADAAAAAAAGgAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAAQAAAAAAAAAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAACwAAAAAADAAAAAAAGgAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAGgAAAAAADAAAAAAACwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAGwAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAACwAAAAAANQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAANQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAA + tiles: DAAAAAAADAAAAAADAQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAGwAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAACwAAAAABCwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAGgAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAADAAAAAAACwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAACwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAACwAAAAADCwAAAAAAAQAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAGgAAAAAAPwAAAAAADAAAAAABCwAAAAACAQAAAAAAAAAAAAAAAQAAAAAACwAAAAADDAAAAAABGgAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAAQAAAAAAAQAAAAAACwAAAAABCwAAAAACAQAAAAAAAAAAAAAAAQAAAAAACwAAAAADCwAAAAACAQAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAAQAAAAAAAAAAAAAACwAAAAADAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAACwAAAAABCwAAAAADAQAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAAQAAAAAACwAAAAABCwAAAAABAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAACwAAAAABDAAAAAAAGgAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAGgAAAAAADAAAAAAACwAAAAACAQAAAAAAAAAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAACwAAAAABCwAAAAAAAQAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAAQAAAAAACwAAAAABCwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAACwAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAGwAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAACwAAAAADNQAAAAAGAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAANQAAAAAECwAAAAABAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAAGwAAAAAAGgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,-1: ind: -7,-1 - tiles: DAAAAAAAAQAAAAAAHwAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAAQAAAAAAHwAAAAAAHwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAHwAAAAAAHwAAAAAAAQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAANQAAAAAAFQAAAAAAFQAAAAAAHwAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAACwAAAAAAFQAAAAAAFQAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAHwAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAGAAAAAAACwAAAAAACwAAAAAAAQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAACwAAAAAADAAAAAAAAQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAACwAAAAAADAAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADAAAAAAACwAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAADAAAAAAACwAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AQAAAAAAAQAAAAAAHwAAAAAAJAAAAAADHgAAAAABHgAAAAADJAAAAAADHgAAAAADJAAAAAAAJAAAAAAAJAAAAAABJAAAAAACPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAJAAAAAADHgAAAAACHgAAAAADJAAAAAACHgAAAAACJAAAAAAAAQAAAAAAHwAAAAADHwAAAAADAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAHwAAAAAAHwAAAAABAQAAAAAAJAAAAAADJAAAAAAAJAAAAAADJAAAAAABJAAAAAADJAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAFQAAAAACAQAAAAAAAQAAAAAAJAAAAAACHgAAAAABHgAAAAACJAAAAAABHgAAAAADJAAAAAADAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAANQAAAAAGFQAAAAAAFQAAAAACHwAAAAADJAAAAAABHgAAAAAAHgAAAAADJAAAAAACHgAAAAACJAAAAAADAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAACwAAAAAAFQAAAAADFQAAAAADHwAAAAAAJAAAAAABJAAAAAACJAAAAAACJAAAAAABJAAAAAACJAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFQAAAAABAQAAAAAAHwAAAAABJAAAAAADHgAAAAADHgAAAAABJAAAAAAAHgAAAAABJAAAAAABAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJAAAAAADHgAAAAADHgAAAAAAJAAAAAAAHgAAAAACJAAAAAABAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAGAAAAAAACwAAAAACCwAAAAABAQAAAAAAJAAAAAABJAAAAAADJAAAAAACJAAAAAAAJAAAAAABHwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAACwAAAAAADAAAAAABAQAAAAAAJAAAAAABJAAAAAACJAAAAAADJAAAAAADHwAAAAABHwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAQwAAAAAACwAAAAABDAAAAAACAQAAAAAAAQAAAAAAHwAAAAACHwAAAAAAHwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAACCwAAAAADDQAAAAADDQAAAAAAKQAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAACKQAAAAAADQAAAAACDQAAAAAADQAAAAACDQAAAAACDQAAAAADKQAAAAAADAAAAAAACwAAAAADDQAAAAAADQAAAAADDQAAAAAAKQAAAAAADQAAAAACKQAAAAAAKQAAAAAADQAAAAABKQAAAAAAKQAAAAAADQAAAAABKQAAAAAAKQAAAAAADQAAAAACDAAAAAACCwAAAAADDQAAAAAADQAAAAADKQAAAAAADQAAAAACDQAAAAAADQAAAAABDQAAAAACKQAAAAAADQAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAACKQAAAAAACwAAAAACCwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAACDAAAAAABAQAAAAAAAQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,-2: ind: -7,-2 - tiles: iwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQAAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAHwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJAAAAAAAJAAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAACwAAAAAAAQAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: iwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQAAAAAADAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAHwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJAAAAAADJAAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAHwAAAAADJAAAAAACJAAAAAAAJAAAAAACJAAAAAABJAAAAAADJAAAAAAAJAAAAAADJAAAAAABJAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 -8,-1: ind: -8,-1 - tiles: AQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAQAAAAAADAAAAAAACwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAHwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAACwAAAAAACwAAAAAAAQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAAQAAAAAAHwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAHwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAACwAAAAAACwAAAAAAAQAAAAAALwAAAAAACwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAQAAAAAAHwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAACwAAAAAAAQAAAAAAAQAAAAAALwAAAAAACwAAAAAAMAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAKQAAAAAADQAAAAAAAQAAAAAALwAAAAAACwAAAAAAMAAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAACwAAAAAADAAAAAAADAAAAAAACwAAAAAADAAAAAAADAAAAAAACwAAAAAADAAAAAAADAAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACwAAAAAADAAAAAAADAAAAAAACwAAAAAADAAAAAAADAAAAAAACwAAAAAADAAAAAAADAAAAAAALgAAAAAAKQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALgAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADAAAAAAACwAAAAAADAAAAAAADAAAAAAACwAAAAAADAAAAAAADAAAAAAACwAAAAAADAAAAAAADQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADQAAAAAADQAAAAAADAAAAAAACwAAAAAADAAAAAAADAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAADAAAAAAAKQAAAAAADQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAACwAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAADAAAAAAADAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAADAAAAAAADAAAAAAA + tiles: AQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFgAAAAABFgAAAAABFgAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFgAAAAADFgAAAAABFgAAAAABAQAAAAAAFQAAAAACFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFQAAAAADAQAAAAAAAQAAAAAAHwAAAAADHwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHwAAAAACFQAAAAACFQAAAAABFQAAAAADFQAAAAAAFQAAAAACCwAAAAACCwAAAAADAQAAAAAALwAAAAAELwAAAAAALwAAAAAELwAAAAAGLwAAAAAALwAAAAABAQAAAAAAHwAAAAABFQAAAAABFQAAAAABFQAAAAAAFQAAAAACFQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAABCwAAAAACCwAAAAAACwAAAAABCwAAAAAACwAAAAADAQAAAAAAHwAAAAADFQAAAAACFQAAAAABFQAAAAACFQAAAAABFQAAAAAACwAAAAACCwAAAAACAQAAAAAALwAAAAACCwAAAAABMAAAAAALMAAAAAADMAAAAAAAMAAAAAAEAQAAAAAAHwAAAAAAFQAAAAABFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAABCwAAAAACAQAAAAAAAQAAAAAALwAAAAAGCwAAAAABMAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFQAAAAACFQAAAAAAFQAAAAADFQAAAAACFQAAAAADKQAAAAAADQAAAAABAQAAAAAALwAAAAABCwAAAAABMAAAAAAAAQAAAAAACwAAAAAACwAAAAACCwAAAAADCwAAAAABCwAAAAABCwAAAAAACwAAAAABCwAAAAAACwAAAAADKQAAAAAADQAAAAABAQAAAAAAAQAAAAAACwAAAAACAQAAAAAAAQAAAAAACwAAAAADDAAAAAADDAAAAAABCwAAAAACDAAAAAACDAAAAAAACwAAAAAADAAAAAACDAAAAAACKQAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAABDQAAAAABAQAAAAAACwAAAAABDAAAAAADDAAAAAAACwAAAAAADAAAAAACDAAAAAABCwAAAAAADAAAAAADDAAAAAACSwAAAAAAKQAAAAAADQAAAAABKQAAAAAADQAAAAAADQAAAAAADQAAAAACCwAAAAACCwAAAAABCwAAAAACCwAAAAAACwAAAAADCwAAAAAACwAAAAAACwAAAAACCwAAAAADSQAAAAAGDQAAAAACKQAAAAAAKQAAAAAADQAAAAABDQAAAAADDQAAAAACDAAAAAABCwAAAAABDAAAAAACDAAAAAADCwAAAAADDAAAAAADDAAAAAAACwAAAAAADAAAAAACDQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADQAAAAAADQAAAAAADAAAAAACCwAAAAADDAAAAAACDAAAAAADCwAAAAABCwAAAAABCwAAAAACCwAAAAAADAAAAAADKQAAAAAADQAAAAADDQAAAAADKQAAAAAAKQAAAAAADQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAACCwAAAAAADAAAAAACDAAAAAADDAAAAAACCwAAAAABCwAAAAACKQAAAAAADQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAADDAAAAAADDAAAAAABCwAAAAAACwAAAAADCwAAAAAACwAAAAAADAAAAAADDAAAAAAD version: 6 -8,-2: ind: -8,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAACwAAAAAADAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAMQAAAAAAMQAAAAAAiwAAAAAAiwAAAAAAMQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAMgAAAAADMgAAAAABMQAAAAAAMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAACMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFgAAAAABFgAAAAACFgAAAAADFgAAAAACAQAAAAAAPwAAAAAA version: 6 -8,0: ind: -8,0 - tiles: KQAAAAAADQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAACwAAAAAADAAAAAAADAAAAAAACwAAAAAADAAAAAAADAAAAAAACwAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAwAAAAAAPwAAAAAAAwAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAACwAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAwAAAAAAAwAAAAAAPwAAAAAAAQAAAAAADAAAAAAACwAAAAAADAAAAAAADAAAAAAACwAAAAAADAAAAAAADAAAAAAACwAAAAAACwAAAAAAPwAAAAAAAQAAAAAAAwAAAAAAPwAAAAAAPwAAAAAAAwAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAANQAAAAAANQAAAAAACwAAAAAACwAAAAAAAQAAAAAANQAAAAAAAQAAAAAANQAAAAAANQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAANQAAAAAACwAAAAAAAQAAAAAANQAAAAAAAQAAAAAANQAAAAAACwAAAAAAAQAAAAAACwAAAAAANQAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAANQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAANQAAAAAA + tiles: KQAAAAAADQAAAAABAQAAAAAAAwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAACwAAAAAADAAAAAACDAAAAAADCwAAAAABDAAAAAAADAAAAAADCwAAAAADDAAAAAACDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAACwAAAAAACwAAAAABCwAAAAABCwAAAAACCwAAAAACCwAAAAACCwAAAAADAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAwAAAAAAPwAAAAAAAwAAAAAAAQAAAAAACwAAAAACCwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAADCwAAAAABAQAAAAAACwAAAAADPwAAAAAAAQAAAAAAPwAAAAAAAwAAAAAAAwAAAAAAPwAAAAAAAQAAAAAADAAAAAABCwAAAAABDAAAAAAADAAAAAAACwAAAAAADAAAAAABDAAAAAACCwAAAAACCwAAAAACPwAAAAAAAQAAAAAAAwAAAAAAPwAAAAAAPwAAAAAAAwAAAAAAAQAAAAAACwAAAAACCwAAAAACCwAAAAABCwAAAAAACwAAAAACCwAAAAAACwAAAAACAQAAAAAACwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAACAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAACwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAANQAAAAACNQAAAAAGCwAAAAADCwAAAAABAQAAAAAANQAAAAAEAQAAAAAANQAAAAAGNQAAAAABAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAANQAAAAABCwAAAAACAQAAAAAANQAAAAADAQAAAAAANQAAAAAACwAAAAAAAQAAAAAACwAAAAADNQAAAAACAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAANQAAAAAFAQAAAAAAAQAAAAAAAQAAAAAACwAAAAABCwAAAAADCwAAAAAACwAAAAADAQAAAAAANQAAAAAB version: 6 -8,1: ind: -8,1 - tiles: iwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAANQAAAAAANQAAAAAACwAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAQAAAAAACwAAAAAAAQAAAAAANQAAAAAACwAAAAAACwAAAAAANQAAAAAACwAAAAAAAQAAAAAACwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: iwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAACwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAANQAAAAAANQAAAAAECwAAAAACAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAQAAAAAACwAAAAAAAQAAAAAANQAAAAABCwAAAAADCwAAAAACNQAAAAAACwAAAAACAQAAAAAACwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -9,-1: ind: -9,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAPwAAAAAAAQAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAALgAAAAAALgAAAAAALgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAAKQAAAAAALgAAAAAALgAAAAAALgAAAAAAKQAAAAAADQAAAAAALgAAAAAALgAAAAAALgAAAAAAKQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAAKQAAAAAALgAAAAAALgAAAAAALgAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAKQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAPwAAAAAAAQAAAAAACwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABKQAAAAAADQAAAAABDQAAAAABDQAAAAABDQAAAAADKQAAAAAAKQAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAADKQAAAAAAKQAAAAAADQAAAAACDQAAAAABDQAAAAACDQAAAAADKQAAAAAADQAAAAAADQAAAAACKQAAAAAAKQAAAAAAKQAAAAAADQAAAAACDQAAAAAADQAAAAADKQAAAAAAKQAAAAAAKQAAAAAADQAAAAACDQAAAAAADQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAASgAAAAABSQAAAAAESwAAAAAHKQAAAAAAKQAAAAAAKQAAAAAADQAAAAADDQAAAAAADQAAAAABKQAAAAAAKQAAAAAASwAAAAADSgAAAAABSQAAAAACKQAAAAAADQAAAAABSwAAAAABSQAAAAADSgAAAAAFKQAAAAAAKQAAAAAADQAAAAADDQAAAAABDQAAAAACDQAAAAACKQAAAAAAKQAAAAAASwAAAAADSQAAAAADSgAAAAACDQAAAAABKQAAAAAAKQAAAAAADQAAAAABDQAAAAACKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAABDQAAAAAAKQAAAAAADQAAAAADKQAAAAAADQAAAAACDQAAAAADDQAAAAABKQAAAAAAKQAAAAAADQAAAAABDQAAAAACDQAAAAABDQAAAAABKQAAAAAAKQAAAAAADQAAAAAADQAAAAADDQAAAAACDQAAAAACKQAAAAAAKQAAAAAADQAAAAADAQAAAAAAAQAAAAAAAQAAAAAACwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAACDQAAAAACDQAAAAADAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAKQAAAAAA version: 6 -9,0: ind: -9,0 - tiles: CwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAKQAAAAAAKQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAAQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAAQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAA + tiles: CwAAAAACCwAAAAACCwAAAAACCwAAAAAACwAAAAADAQAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAACDQAAAAABDQAAAAAADQAAAAADAQAAAAAAKQAAAAAAKQAAAAAADAAAAAADDAAAAAADDAAAAAADDAAAAAACCwAAAAACAQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAADKQAAAAAAKQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAADAAAAAABDAAAAAADDAAAAAADCwAAAAADAQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAABKQAAAAAAKQAAAAAADQAAAAACAQAAAAAAPwAAAAAAAQAAAAAACwAAAAADCwAAAAADCwAAAAAACwAAAAADCwAAAAADDQAAAAABDQAAAAACDQAAAAABDQAAAAADDQAAAAADDQAAAAACDQAAAAAADQAAAAADAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAACwAAAAACAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAADDQAAAAADDQAAAAAADQAAAAAADQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAADQAAAAABKQAAAAAADQAAAAACDQAAAAABDQAAAAABKQAAAAAADQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAABCwAAAAABCwAAAAABAQAAAAAADQAAAAABKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAKQAAAAAADQAAAAABDQAAAAAADQAAAAADDQAAAAABDQAAAAABKQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAA version: 6 -9,-2: ind: -9,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAiwAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAMQAAAAAAMQAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAMQAAAAAAMQAAAAAAMgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAACMgAAAAACMgAAAAABMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAADMgAAAAACMgAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 -10,-2: ind: -10,-2 - tiles: iwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAANwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAANwAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAACwAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAACwAAAAAACwAAAAAADAAAAAAADAAAAAAACwAAAAAACwAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAACwAAAAAACwAAAAAADAAAAAAADAAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: iwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAANwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAANwAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAACwAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAACCwAAAAACCwAAAAADCwAAAAACCwAAAAAACwAAAAABCwAAAAAACwAAAAABAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAAACwAAAAAACwAAAAADDAAAAAACDAAAAAADCwAAAAABCwAAAAACAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAACCwAAAAACCwAAAAACDAAAAAABDAAAAAAACwAAAAACCwAAAAADAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAABCwAAAAADCwAAAAAACwAAAAACCwAAAAADCwAAAAADCwAAAAACCwAAAAACAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -10,-1: ind: -10,-1 - tiles: NwAAAAAANwAAAAAANwAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAIgAAAAAAIgAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAIgAAAAAADQAAAAAAIgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAAKgAAAAAADQAAAAAAKgAAAAAADQAAAAAAKgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAAJgAAAAAADQAAAAAADQAAAAAADQAAAAAAJgAAAAAADQAAAAAADQAAAAAADQAAAAAAJgAAAAAAKQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAADQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAAACQAAAAAADQAAAAAACQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAKQAAAAAAAQAAAAAAAQAAAAAA + tiles: NwAAAAAANwAAAAAANwAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAIgAAAAABIgAAAAADAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAABIgAAAAACIgAAAAABAQAAAAAAIgAAAAAAIgAAAAAAIgAAAAABAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAABAQAAAAAAAQAAAAAAIgAAAAACDQAAAAAAIgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAABDQAAAAADDQAAAAADAQAAAAAADQAAAAABDQAAAAAADQAAAAADAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAACAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAADDQAAAAAADQAAAAAADQAAAAACDQAAAAABDQAAAAABDQAAAAABDQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAACKgAAAAACDQAAAAADKgAAAAABDQAAAAADKgAAAAABDQAAAAACDQAAAAACDQAAAAABDQAAAAACAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAADQAAAAADDQAAAAABDQAAAAACDQAAAAABDQAAAAACDQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAADKQAAAAAAKQAAAAAADQAAAAABAQAAAAAADQAAAAAADQAAAAABAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAABKQAAAAAAKQAAAAAAKQAAAAAADQAAAAADDQAAAAABDQAAAAADDQAAAAAADQAAAAAADQAAAAADDQAAAAADDQAAAAABDQAAAAAADQAAAAACKQAAAAAAKQAAAAAAKQAAAAAADQAAAAADDQAAAAADDQAAAAABKQAAAAAAJgAAAAAADQAAAAAADQAAAAAADQAAAAACJgAAAAABDQAAAAABDQAAAAAADQAAAAACJgAAAAADKQAAAAAAKQAAAAAADQAAAAABDQAAAAADDQAAAAADDQAAAAACKQAAAAAADQAAAAADDQAAAAACDQAAAAABDQAAAAACDQAAAAAADQAAAAACDQAAAAABDQAAAAAADQAAAAAAKQAAAAAADQAAAAABKQAAAAAAKQAAAAAADQAAAAACDQAAAAACKQAAAAAADQAAAAADAQAAAAAADQAAAAACAQAAAAAADQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAKQAAAAAAKQAAAAAADQAAAAAAKQAAAAAADQAAAAAADQAAAAAADQAAAAABCQAAAAABDQAAAAADCQAAAAACAQAAAAAADQAAAAACDQAAAAADDQAAAAABAQAAAAAADQAAAAADDQAAAAADDQAAAAACKQAAAAAAAQAAAAAAAQAAAAAA version: 6 -10,0: ind: -10,0 - tiles: DQAAAAAADQAAAAAADQAAAAAAKgAAAAAADQAAAAAAAQAAAAAADQAAAAAACQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAAKQAAAAAADQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAACQAAAAAADQAAAAAACQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAADQAAAAAAAQAAAAAADQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAACwAAAAAADAAAAAAACwAAAAAADAAAAAAAAQAAAAAACwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADAAAAAAACwAAAAAADAAAAAAACwAAAAAAAQAAAAAACwAAAAAADQAAAAAACQAAAAAADQAAAAAACQAAAAAADQAAAAAACQAAAAAADQAAAAAACQAAAAAADQAAAAAAAQAAAAAACwAAAAAADAAAAAAACwAAAAAADAAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADAAAAAAACwAAAAAADAAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACQAAAAAACQAAAAAADQAAAAAADQAAAAAACQAAAAAADQAAAAAADQAAAAAACQAAAAAACQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACQAAAAAADQAAAAAADQAAAAAADQAAAAAACQAAAAAADQAAAAAADQAAAAAADQAAAAAACQAAAAAADQAAAAAADQAAAAAADQAAAAAACQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAACQAAAAAACQAAAAAADQAAAAAACQAAAAAACQAAAAAADQAAAAAADQAAAAAAAQAAAAAACQAAAAAACQAAAAAADQAAAAAACQAAAAAACQAAAAAAAQAAAAAACQAAAAAADQAAAAAADQAAAAAADQAAAAAACQAAAAAADQAAAAAADQAAAAAADQAAAAAACQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACQAAAAAACQAAAAAADQAAAAAADQAAAAAACQAAAAAADQAAAAAADQAAAAAACQAAAAAACQAAAAAAAQAAAAAACQAAAAAACQAAAAAADQAAAAAACQAAAAAACQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAACQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAiwAAAAAAAQAAAAAACQAAAAAACQAAAAAADQAAAAAACQAAAAAACQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAiwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAiwAAAAAAAQAAAAAACQAAAAAACQAAAAAADQAAAAAACQAAAAAACQAAAAAAAQAAAAAA + tiles: DQAAAAAADQAAAAADDQAAAAADKgAAAAABDQAAAAADAQAAAAAADQAAAAACCQAAAAADDQAAAAACAQAAAAAADQAAAAAADQAAAAACKQAAAAAADQAAAAAAAQAAAAAACwAAAAADAQAAAAAAAQAAAAAACQAAAAAADQAAAAACCQAAAAADAQAAAAAADQAAAAADDQAAAAACDQAAAAABAQAAAAAAAQAAAAAADAAAAAABAQAAAAAAAQAAAAAAAQAAAAAACwAAAAADDQAAAAABAQAAAAAADQAAAAACAQAAAAAADQAAAAACAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAACwAAAAADDAAAAAADCwAAAAACDAAAAAACAQAAAAAACwAAAAAADQAAAAAADQAAAAAADQAAAAACDQAAAAAADQAAAAABDQAAAAACDQAAAAABDQAAAAADDQAAAAABDQAAAAABDAAAAAAACwAAAAAADAAAAAAACwAAAAABAQAAAAAACwAAAAABDQAAAAADCQAAAAACDQAAAAACCQAAAAADDQAAAAAACQAAAAAADQAAAAADCQAAAAABDQAAAAACAQAAAAAACwAAAAACDAAAAAABCwAAAAAADAAAAAADAQAAAAAAAQAAAAAADQAAAAAADQAAAAABDQAAAAACDQAAAAADDQAAAAAADQAAAAADDQAAAAAADQAAAAABDQAAAAAAAQAAAAAADAAAAAACCwAAAAABDAAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABDQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACQAAAAABCQAAAAABDQAAAAADDQAAAAACCQAAAAAADQAAAAABDQAAAAABCQAAAAABCQAAAAADDQAAAAAADQAAAAABDQAAAAADDQAAAAACDQAAAAABDQAAAAADAQAAAAAACQAAAAAADQAAAAABDQAAAAACDQAAAAAACQAAAAABDQAAAAAADQAAAAADDQAAAAADCQAAAAADDQAAAAACDQAAAAADDQAAAAAACQAAAAADDQAAAAACDQAAAAACAQAAAAAADQAAAAABDQAAAAABCQAAAAADCQAAAAACDQAAAAADCQAAAAABCQAAAAAADQAAAAABDQAAAAACAQAAAAAACQAAAAACCQAAAAABDQAAAAABCQAAAAABCQAAAAABAQAAAAAACQAAAAAADQAAAAADDQAAAAABDQAAAAACCQAAAAABDQAAAAABDQAAAAABDQAAAAAACQAAAAABAQAAAAAADQAAAAADDQAAAAABDQAAAAACDQAAAAADDQAAAAAAAQAAAAAACQAAAAADCQAAAAADDQAAAAADDQAAAAADCQAAAAADDQAAAAABDQAAAAABCQAAAAAACQAAAAADAQAAAAAACQAAAAABCQAAAAABDQAAAAABCQAAAAADCQAAAAABAQAAAAAADQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAACQAAAAADDQAAAAADDQAAAAACAQAAAAAAAQAAAAAAAQAAAAAACwAAAAABCwAAAAABCwAAAAADCwAAAAACCwAAAAABAQAAAAAAiwAAAAAAAQAAAAAACQAAAAADCQAAAAADDQAAAAAACQAAAAACCQAAAAADAQAAAAAACwAAAAAACwAAAAACCwAAAAAACwAAAAACCwAAAAADCwAAAAAACwAAAAADAQAAAAAAiwAAAAAAAQAAAAAADQAAAAADDQAAAAAADQAAAAABDQAAAAAADQAAAAADAQAAAAAACwAAAAACCwAAAAACCwAAAAABCwAAAAABCwAAAAAACwAAAAAACwAAAAACAQAAAAAAiwAAAAAAAQAAAAAACQAAAAAACQAAAAABDQAAAAADCQAAAAACCQAAAAAAAQAAAAAA version: 6 -11,-2: ind: -11,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIgAAAAAAIgAAAAAAMgAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOQAAAAAAMgAAAAAAMgAAAAAAOQAAAAAAMgAAAAAAOQAAAAAAIgAAAAAAIgAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOAAAAAAAOQAAAAAAOAAAAAAAOAAAAAAAIgAAAAAAMgAAAAAAIgAAAAAAIgAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOAAAAAAAMgAAAAAAIgAAAAAAOQAAAAAAIgAAAAAAAQAAAAAAIgAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIgAAAAAAOQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAANwAAAAAANwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAANwAAAAAACwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAQAAAAAANwAAAAAACwAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAANwAAAAAACwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIgAAAAAAAQAAAAAANwAAAAAACwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAASQAAAAAFSgAAAAAHSgAAAAAFSQAAAAAASwAAAAAFIgAAAAACIgAAAAAAMgAAAAADiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOQAAAAACMgAAAAAAMgAAAAACOQAAAAAAMgAAAAABOQAAAAAHIgAAAAABIgAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAASgAAAAAGOQAAAAABSQAAAAACSQAAAAAEIgAAAAAAMgAAAAAAIgAAAAAAIgAAAAACiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAASQAAAAAFMgAAAAADIgAAAAAAOQAAAAABIgAAAAAAAQAAAAAAIgAAAAABAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIgAAAAACOQAAAAAFIgAAAAAAIgAAAAAAIgAAAAABIgAAAAAANwAAAAAANwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIgAAAAACAQAAAAAAAQAAAAAAAQAAAAAANwAAAAAACwAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAIgAAAAABIgAAAAAAIgAAAAACIgAAAAAAIgAAAAABAQAAAAAANwAAAAAACwAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAAQAAAAAACwAAAAABCwAAAAADCwAAAAABIgAAAAACIgAAAAADIgAAAAACNwAAAAAACwAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAQAAAAAACwAAAAADCwAAAAADCwAAAAADCwAAAAABIgAAAAADAQAAAAAANwAAAAAACwAAAAABAQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 -11,-1: ind: -11,-1 - tiles: AQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAAAKgAAAAAADQAAAAAAKgAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAAKgAAAAAAKgAAAAAADQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAAAKgAAAAAADQAAAAAAKgAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAAKgAAAAAADQAAAAAAKgAAAAAADQAAAAAAKgAAAAAADQAAAAAAKgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAKgAAAAAADQAAAAAADQAAAAAADQAAAAAAKgAAAAAADQAAAAAAKgAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAJgAAAAAADQAAAAAADQAAAAAADQAAAAAAJgAAAAAADQAAAAAADQAAAAAADQAAAAAAJgAAAAAADQAAAAAADQAAAAAADQAAAAAAJgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAKwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAMwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAA + tiles: AQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAANwAAAAAANwAAAAAANwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAAAKgAAAAAADQAAAAAAKgAAAAAADQAAAAAAAQAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAACAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAADQAAAAADDQAAAAACDQAAAAABDQAAAAADAQAAAAAADQAAAAACKgAAAAADKgAAAAAADQAAAAADAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAACKgAAAAACDQAAAAACKgAAAAADDQAAAAABAQAAAAAADQAAAAABDQAAAAACDQAAAAAADQAAAAADAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAADDQAAAAACDQAAAAABDQAAAAABAQAAAAAAAQAAAAAAAQAAAAAADQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAADKgAAAAABDQAAAAADKgAAAAAADQAAAAADKgAAAAADDQAAAAABKgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAAADQAAAAABDQAAAAABDQAAAAAADQAAAAACDQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAKgAAAAABDQAAAAAADQAAAAACDQAAAAADKgAAAAAADQAAAAACKgAAAAAADQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAADAQAAAAAAAQAAAAAADQAAAAABAQAAAAAAAQAAAAAADQAAAAAADQAAAAADDQAAAAADDQAAAAADDQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABDQAAAAAADQAAAAACDQAAAAAADQAAAAADDQAAAAACDQAAAAADDQAAAAAADQAAAAADDQAAAAABDQAAAAACDQAAAAACDQAAAAADDQAAAAABDQAAAAABDQAAAAABJgAAAAADDQAAAAACDQAAAAABDQAAAAAAJgAAAAAADQAAAAACDQAAAAAADQAAAAABJgAAAAACDQAAAAAADQAAAAABDQAAAAAAJgAAAAADDQAAAAACDQAAAAADDQAAAAABDQAAAAAADQAAAAADDQAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAABDQAAAAADDQAAAAADDQAAAAACDQAAAAADDQAAAAABDQAAAAABDQAAAAAADQAAAAADDQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAKwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAADMwAAAAABAQAAAAAADQAAAAAADQAAAAABDQAAAAAAAQAAAAAADQAAAAAADQAAAAACDQAAAAABDQAAAAADDQAAAAABDQAAAAADDQAAAAABAQAAAAAADQAAAAABDQAAAAAD version: 6 -11,0: ind: -11,0 - tiles: MwAAAAAAAQAAAAAADQAAAAAACQAAAAAADQAAAAAADQAAAAAADQAAAAAACQAAAAAADQAAAAAADQAAAAAADQAAAAAACQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAAMwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAMwAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAAMwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAADQAAAAAACQAAAAAADQAAAAAACQAAAAAADQAAAAAACgAAAAAADQAAAAAACQAAAAAADQAAAAAACQAAAAAADQAAAAAACQAAAAAADQAAAAAACQAAAAAAHwAAAAAAHgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAHgAAAAAAAQAAAAAADQAAAAAACQAAAAAADQAAAAAACQAAAAAADQAAAAAACQAAAAAADQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAACwAAAAAADQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAADQAAAAAADQAAAAAAHwAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAACwAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHwAAAAAAHwAAAAAADQAAAAAADQAAAAAACwAAAAAACwAAAAAACwAAAAAADQAAAAAADQAAAAAADQAAAAAAHwAAAAAADQAAAAAAJQAAAAAAHwAAAAAAHwAAAAAAJQAAAAAADQAAAAAAHwAAAAAAAQAAAAAADQAAAAAACwAAAAAACwAAAAAACwAAAAAADQAAAAAAAQAAAAAADQAAAAAAHwAAAAAADQAAAAAAJQAAAAAAHwAAAAAAHwAAAAAAJQAAAAAADQAAAAAAHwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHwAAAAAAHwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAADQAAAAAADQAAAAAAHwAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAQAAAAAACwAAAAAA + tiles: MwAAAAACAQAAAAAADQAAAAADCQAAAAADDQAAAAAADQAAAAAADQAAAAADCQAAAAAADQAAAAADDQAAAAABDQAAAAACCQAAAAACDQAAAAABAQAAAAAADQAAAAADDQAAAAABMwAAAAACAQAAAAAADQAAAAAADQAAAAAADQAAAAACAQAAAAAADQAAAAACDQAAAAACDQAAAAABAQAAAAAADQAAAAADDQAAAAAADQAAAAACAQAAAAAAAQAAAAAADQAAAAAAMwAAAAACAQAAAAAADQAAAAABDQAAAAADAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAAMwAAAAADDQAAAAABDQAAAAACDQAAAAAADQAAAAADDQAAAAAADQAAAAADDQAAAAADDQAAAAAADQAAAAADDQAAAAAADQAAAAACDQAAAAACDQAAAAADDQAAAAACDQAAAAADAQAAAAAAAQAAAAAADQAAAAAACQAAAAADDQAAAAADCQAAAAADDQAAAAABCgAAAAABDQAAAAABCQAAAAABDQAAAAAACQAAAAABDQAAAAADCQAAAAABDQAAAAAACQAAAAABHwAAAAADHgAAAAACDQAAAAAADQAAAAADDQAAAAAADQAAAAACDQAAAAAADQAAAAACDQAAAAACDQAAAAACDQAAAAADDQAAAAABDQAAAAACDQAAAAACDQAAAAABDQAAAAAAHgAAAAADAQAAAAAADQAAAAAACQAAAAAADQAAAAACCQAAAAABDQAAAAAACQAAAAABDQAAAAACAQAAAAAAAQAAAAAADQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHwAAAAABAQAAAAAAAQAAAAAAAQAAAAAADQAAAAADDQAAAAABAQAAAAAADQAAAAAADQAAAAADAQAAAAAADQAAAAADDQAAAAABDQAAAAADAQAAAAAADQAAAAADDQAAAAAAAQAAAAAAAQAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABCwAAAAADDQAAAAADAQAAAAAAAQAAAAAADQAAAAABIgAAAAADIgAAAAACHwAAAAABDQAAAAADDQAAAAAAHwAAAAACDQAAAAADDQAAAAADAQAAAAAADQAAAAAADQAAAAAACwAAAAAADQAAAAABDQAAAAACAQAAAAAADQAAAAABHwAAAAABHwAAAAABHgAAAAAAJQAAAAACJQAAAAACHgAAAAAAHwAAAAACHwAAAAABDQAAAAAADQAAAAABCwAAAAABCwAAAAACCwAAAAAADQAAAAACDQAAAAADDQAAAAACHwAAAAACDQAAAAAAJQAAAAACHwAAAAACHwAAAAABJQAAAAAADQAAAAABHwAAAAACAQAAAAAADQAAAAACCwAAAAADCwAAAAABCwAAAAAADQAAAAABAQAAAAAADQAAAAAAHwAAAAABDQAAAAABJQAAAAABHwAAAAAAHwAAAAADJQAAAAADDQAAAAAAHwAAAAABAQAAAAAADQAAAAACDQAAAAAADQAAAAAADQAAAAABDQAAAAACAQAAAAAADQAAAAAAHwAAAAACHwAAAAACHgAAAAAAJQAAAAAAJQAAAAADHgAAAAADHwAAAAABHwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIgAAAAACIgAAAAACHwAAAAADDQAAAAADDQAAAAAAHwAAAAADDQAAAAABDQAAAAACAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAACwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAQAAAAAACwAAAAAC version: 6 -12,-1: ind: -12,-1 - tiles: AQAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAJgAAAAAADQAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAGgAAAAAACQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAAQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAAAJgAAAAAADQAAAAAAAQAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAAQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAAQAAAAAAHAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAAJgAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAJgAAAAAADQAAAAAADQAAAAAADQAAAAAAJgAAAAAADQAAAAAADQAAAAAADQAAAAAAJgAAAAAADQAAAAAADQAAAAAADQAAAAAAJgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAAJgAAAAAADQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAA + tiles: AQAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAABDQAAAAACDQAAAAABAQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAACJgAAAAABDQAAAAADGgAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAGgAAAAAACQAAAAADDQAAAAABDQAAAAACDQAAAAACDQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAABDQAAAAAADQAAAAABAQAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAAQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAACJgAAAAADDQAAAAAAAQAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAAQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAACDQAAAAAADQAAAAABNgAAAAAAAQAAAAAAAQAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAAQAAAAAAHAAAAAAAAQAAAAAAAQAAAAAARQAAAAAAAAAAAAAAAQAAAAAADQAAAAACDQAAAAADDQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAACDQAAAAAADQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAABJgAAAAABDQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABAQAAAAAADQAAAAAADQAAAAACDQAAAAABDQAAAAABDQAAAAACDQAAAAACDQAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAADDQAAAAABDQAAAAADDQAAAAADDQAAAAABDQAAAAADDQAAAAAAJgAAAAABDQAAAAADDQAAAAABDQAAAAABJgAAAAABDQAAAAADDQAAAAAADQAAAAAAJgAAAAADDQAAAAABDQAAAAABDQAAAAAAJgAAAAACDQAAAAAADQAAAAAADQAAAAADDQAAAAACDQAAAAABDQAAAAACDQAAAAAADQAAAAADDQAAAAACDQAAAAADDQAAAAADDQAAAAACDQAAAAACDQAAAAACDQAAAAADDQAAAAAADQAAAAACDQAAAAAADQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAAD version: 6 -12,0: ind: -12,0 - tiles: AQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAMwAAAAAANAAAAAAANAAAAAAANAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAMwAAAAAANAAAAAAANAAAAAAANAAAAAAALAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAMwAAAAAANAAAAAAANAAAAAAANAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAJgAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAAAGgAAAAAACQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAHgAAAAAAHwAAAAAAHgAAAAAAHwAAAAAAHgAAAAAALAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAHwAAAAAAHgAAAAAAHwAAAAAAHgAAAAAAAQAAAAAALAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAAAJgAAAAAADQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAHgAAAAAAHwAAAAAAHgAAAAAAHwAAAAAAAQAAAAAALAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAAAQAAAAAACQAAAAAADQAAAAAADQAAAAAAJgAAAAAADQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAAACQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAMwAAAAAANAAAAAAANAAAAAACNAAAAAABPQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAMwAAAAABNAAAAAADNAAAAAABNAAAAAADGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAMwAAAAABNAAAAAABNAAAAAADNAAAAAADLAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAADGgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAHgAAAAACHwAAAAABHgAAAAADHwAAAAABHgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAHwAAAAABHgAAAAACHwAAAAABHgAAAAABAQAAAAAAAQAAAAAALQAAAAAAHAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAHgAAAAABHwAAAAADHgAAAAADHwAAAAAAAQAAAAAAGwAAAAAAHAAAAAAALQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALQAAAAAAHAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAA version: 6 -10,1: ind: -10,1 - tiles: CwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAiwAAAAAAAQAAAAAADQAAAAAADQAAAAAACQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAiwAAAAAAAQAAAAAACQAAAAAADQAAAAAADQAAAAAADQAAAAAACQAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAQAAAAAACQAAAAAACQAAAAAADQAAAAAACQAAAAAACQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CwAAAAAACwAAAAACCwAAAAADCwAAAAADCwAAAAADCwAAAAADCwAAAAADAQAAAAAAiwAAAAAAAQAAAAAADQAAAAABDQAAAAABCQAAAAAADQAAAAACDQAAAAADAQAAAAAAAQAAAAAAAQAAAAAACwAAAAACCwAAAAADCwAAAAABCwAAAAACCwAAAAABAQAAAAAAiwAAAAAAAQAAAAAACQAAAAADDQAAAAAADQAAAAABDQAAAAABCQAAAAACAQAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAQAAAAAACQAAAAAACQAAAAAADQAAAAACCQAAAAADCQAAAAADAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -12,-2: ind: -12,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAGgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAGgAAAAAACQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAJgAAAAAADQAAAAAAAQAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAA + tiles: JwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAGQAAAAAAGgAAAAAAAQAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAAQAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAAQAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAAQAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAHAAAAAAAGgAAAAAAHAAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAHAAAAAAAGgAAAAAAAQAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABDQAAAAACDQAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAGgAAAAAACQAAAAACDQAAAAACDQAAAAADDQAAAAACDQAAAAACAQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAACJgAAAAAADQAAAAADAQAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAADDQAAAAACDQAAAAADAQAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADQAAAAADDQAAAAAADQAAAAAD version: 6 -11,1: ind: -11,1 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAACwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -12,1: ind: -12,1 - tiles: AQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAALAAAAAAALAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAGgAAAAAAGgAAAAAALAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAALAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAGgAAAAAAGgAAAAAALAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAALAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -13,-1: ind: -13,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAAJgAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAAJgAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAAJgAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAJgAAAAAADQAAAAAADQAAAAAADQAAAAAAJgAAAAAADQAAAAAADQAAAAAADQAAAAAAJgAAAAAADQAAAAAADQAAAAAADQAAAAAAJgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAJgAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAADDQAAAAAADQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAACJgAAAAABDQAAAAADAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAADDQAAAAACDQAAAAACDQAAAAADDQAAAAABCQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAACDQAAAAABDQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAADDQAAAAAADQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAABJgAAAAADDQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAADDQAAAAACDQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAABDQAAAAADDQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAACJgAAAAABDQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAADDQAAAAABDQAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAABDQAAAAACDQAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAABDQAAAAAADQAAAAACJgAAAAADDQAAAAACDQAAAAADDQAAAAAAJgAAAAABDQAAAAADDQAAAAADDQAAAAACJgAAAAAADQAAAAABDQAAAAACDQAAAAAAJgAAAAACDQAAAAACDQAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAACDQAAAAABDQAAAAACDQAAAAACDQAAAAAADQAAAAACDQAAAAACDQAAAAACDQAAAAACDQAAAAABDQAAAAACDQAAAAACDQAAAAABDQAAAAAADQAAAAACAQAAAAAADQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAADJgAAAAADDQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -13,-2: ind: -13,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAAJgAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAADQAAAAACAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAACDQAAAAABAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAACDQAAAAAADQAAAAAADQAAAAACDQAAAAABCQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAABJgAAAAADDQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAADDQAAAAACDQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAABDQAAAAAADQAAAAAAAQAAAAAAAAAAAAAA version: 6 -13,0: ind: -13,0 - tiles: DQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAALAAAAAAAGgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAGgAAAAAALAAAAAAALgAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAALAAAAAAALAAAAAAAGgAAAAAALAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAALAAAAAAAGgAAAAAALAAAAAAALgAAAAAAJgAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAQAAAAAALgAAAAAADQAAAAAADQAAAAAADQAAAAAACQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAALAAAAAAALAAAAAAAGgAAAAAALAAAAAAALAAAAAAAGgAAAAAAGgAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALAAAAAAABAAAAAAALAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALgAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAALAAAAAAALAAAAAAAGgAAAAAALAAAAAAALAAAAAAAGgAAAAAALAAAAAAALAAAAAAAGgAAAAAALAAAAAAALgAAAAAAJgAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAALAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAALgAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAALAAAAAAALAAAAAAAGgAAAAAALAAAAAAALAAAAAAAGgAAAAAALAAAAAAALAAAAAAAGgAAAAAALAAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALAAAAAAALAAAAAAABAAAAAAALAAAAAAALAAAAAAAAQAAAAAAAQAAAAAALgAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAALAAAAAAAAQAAAAAALAAAAAAALAAAAAAAGgAAAAAALAAAAAAALAAAAAAAAQAAAAAAGgAAAAAALgAAAAAAJgAAAAAADQAAAAAADQAAAAAACQAAAAAAAQAAAAAALAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAALAAAAAAALgAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAALAAAAAAAAQAAAAAAGgAAAAAALAAAAAAALAAAAAAALAAAAAAAGgAAAAAAAQAAAAAAGgAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAALAAAAAAAGgAAAAAALAAAAAAAGgAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADgAAAAAADgAAAAAAAQAAAAAAGgAAAAAALAAAAAAALAAAAAAALAAAAAAAGgAAAAAAAQAAAAAAEwAAAAAADQAAAAAACQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADwAAAAAADwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAQAAAAAA + tiles: DQAAAAAADQAAAAABDQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAABDQAAAAABAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAAGgAAAAAALAAAAAAAGgAAAAAAGgAAAAAALAAAAAAAPQAAAAAAGQAAAAAASwAAAAAEDQAAAAADDQAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAALAAAAAAAGgAAAAAAGgAAAAAALAAAAAAAGgAAAAAAGQAAAAAAPQAAAAAASQAAAAAGJgAAAAABDQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALAAAAAAAAQAAAAAALAAAAAAAGgAAAAAALAAAAAAAGgAAAAAAGgAAAAAALAAAAAAAGgAAAAAAGgAAAAAASgAAAAAADQAAAAADDQAAAAAACQAAAAAACQAAAAABCQAAAAABGgAAAAAALAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAALAAAAAAAGgAAAAAAGgAAAAAALAAAAAAADQAAAAACDQAAAAAADQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAASgAAAAAELAAAAAAASQAAAAAAAQAAAAAAGgAAAAAAGgAAAAAASQAAAAAEDQAAAAADDQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAALAAAAAAAGgAAAAAALAAAAAAAGgAAAAAALAAAAAAAGgAAAAAALAAAAAAAGgAAAAAAGgAAAAAAAQAAAAAASgAAAAACJgAAAAACDQAAAAACAQAAAAAAAAAAAAAAAQAAAAAAGgAAAAAALAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAALAAAAAAAGgAAAAAAGgAAAAAALAAAAAAAGgAAAAAASwAAAAAHDQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAALAAAAAAAGgAAAAAALAAAAAAAGgAAAAAALAAAAAAAGgAAAAAALAAAAAAALAAAAAAAGgAAAAAALAAAAAAADQAAAAACDQAAAAACDQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAGgAAAAAALAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAALAAAAAAAGgAAAAAAGgAAAAAALAAAAAAAGgAAAAAASgAAAAADDQAAAAABDQAAAAACAQAAAAAAAAAAAAAAAQAAAAAALAAAAAAAGgAAAAAALAAAAAAAGgAAAAAALAAAAAAAGgAAAAAALAAAAAAAGgAAAAAAGgAAAAAAAQAAAAAASQAAAAAFJgAAAAABDQAAAAACDQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAASQAAAAAHLAAAAAAASwAAAAADAQAAAAAAGgAAAAAAGgAAAAAASwAAAAAADQAAAAABDQAAAAAACQAAAAABCQAAAAADCQAAAAACLAAAAAAAGgAAAAAALAAAAAAAGgAAAAAALAAAAAAAGgAAAAAALAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAADQAAAAABDQAAAAABDQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAGgAAAAAAAQAAAAAAGgAAAAAALAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAALAAAAAAAGgAAAAAAGgAAAAAADQAAAAAADQAAAAADDQAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAADAQAAAAAAAQAAAAAAAQAAAAAACwAAAAADAQAAAAAADQAAAAABCQAAAAACDQAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAADCwAAAAACCwAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAC version: 6 -13,1: ind: -13,1 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAADgAAAAAADgAAAAAAAQAAAAAALAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAALAAAAAAAAQAAAAAAEwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALAAAAAAALAAAAAAAGgAAAAAALAAAAAAALAAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAACwAAAAAADAAAAAAACwAAAAAAAQAAAAAAGgAAAAAAGgAAAAAALAAAAAAALAAAAAAALAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAADAAAAAAADAAAAAAADAAAAAAAAQAAAAAAGgAAAAAAGgAAAAAALAAAAAAAGgAAAAAALAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAACwAAAAAADAAAAAAACwAAAAAAAQAAAAAAGgAAAAAAGgAAAAAALAAAAAAALAAAAAAALAAAAAAAGgAAAAAAGgAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAAGgAAAAAALAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAALAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAALAAAAAAALAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAALAAAAAAALAAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAALQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAGwAAAAAALQAAAAAAGwAAAAAAAQAAAAAAGwAAAAAALQAAAAAAGwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAGwAAAAAAGwAAAAAALQAAAAAAAQAAAAAALQAAAAAAGwAAAAAAGwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAALQAAAAAAGwAAAAAAAQAAAAAAGwAAAAAALQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAADAQAAAAAACwAAAAADCwAAAAAACwAAAAADiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAACwAAAAABCwAAAAABAQAAAAAAAQAAAAAAAQAAAAAACwAAAAABCwAAAAABiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAAQAAAAAAAQAAAAAARQAAAAAAAAAAAAAANgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -14,-2: ind: -14,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAADQAAAAAAJgAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: CwAAAAADCwAAAAADCwAAAAACNQAAAAAGNQAAAAABIwAAAAAAPwAAAAAAAQAAAAAACwAAAAACNQAAAAAEAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAADCwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAABNQAAAAAACwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAACAQAAAAAAPwAAAAAAIwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAARwAAAAAARgAAAAAASAAAAAAARwAAAAAFRwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAFSAAAAAAAAQAAAAAARwAAAAAERgAAAAAASAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAEAQAAAAAAAQAAAAAAAQAAAAAARwAAAAAARwAAAAAFAQAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAADAQAAAAAASAAAAAAFSAAAAAAARgAAAAADSAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAARwAAAAAFRgAAAAAASAAAAAADRwAAAAACRwAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAIwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAADQAAAAACDQAAAAAADQAAAAACiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAPwAAAAAAIwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAACDQAAAAACDQAAAAACDQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAABDQAAAAACDQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAKQAAAAAAKQAAAAAAAQAAAAAADQAAAAACJgAAAAAADQAAAAADiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAQAAAAAAHQAAAAAAKQAAAAAAAQAAAAAAHQAAAAAAKQAAAAAAKQAAAAAAAQAAAAAADQAAAAABDQAAAAADDQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -14,1: ind: -14,1 @@ -310,39 +322,27 @@ entities: version: 6 -14,0: ind: -14,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAACQAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAABRQAAAAAAAAAAAAAANgAAAAAAAQAAAAAAAQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAACDQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAACDQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAAJgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAADDQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAACDQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAABDQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAAJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAADDQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAAJgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAADDQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAABDQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAADDQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAACCQAAAAAA version: 6 -14,-1: ind: -14,-1 - tiles: AAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAAAJgAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAQAAAAAADQAAAAAAJgAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAADQAAAAAAJgAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAAAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAJgAAAAAADQAAAAAADQAAAAAADQAAAAAAJgAAAAAADQAAAAAADQAAAAAADQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAKQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAARQAAAAAADQAAAAADDQAAAAACDQAAAAABiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAKQAAAAAAAQAAAAAAFAAAAAAAAQAAAAAAAQAAAAAADQAAAAADDQAAAAABDQAAAAADiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAFAQAAAAAASwAAAAAAFAAAAAADFAAAAAABFAAAAAACFAAAAAAAAQAAAAAADQAAAAACDQAAAAABDQAAAAAADQAAAAABDQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAASQAAAAAESwAAAAAGSwAAAAABFAAAAAADAQAAAAAADQAAAAABDQAAAAADDQAAAAADDQAAAAADiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAABAQAAAAAAAQAAAAAAAQAAAAAASQAAAAAHFAAAAAACAQAAAAAADQAAAAADDQAAAAAADQAAAAABDQAAAAADiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAABFAAAAAABSgAAAAAGSQAAAAAAAQAAAAAAFAAAAAADFAAAAAADAQAAAAAARAAAAAAADQAAAAACDQAAAAACDQAAAAADiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAAFAAAAAAASQAAAAAHSgAAAAAHFAAAAAADFAAAAAADSQAAAAAFSwAAAAABAQAAAAAADQAAAAABJgAAAAABDQAAAAABiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAEFAAAAAADSwAAAAAHFAAAAAABFAAAAAACSgAAAAAESQAAAAAASQAAAAACAQAAAAAADQAAAAACDQAAAAABDQAAAAADiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAABSwAAAAADSwAAAAABSQAAAAACSgAAAAAEAQAAAAAADQAAAAADDQAAAAABDQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAAADFAAAAAADSgAAAAAFFAAAAAABFAAAAAADFAAAAAADFAAAAAADSwAAAAADRQAAAAAADQAAAAAAJgAAAAABDQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAACFAAAAAACSQAAAAACSQAAAAACSwAAAAAAFAAAAAABFAAAAAABFAAAAAAAAQAAAAAADQAAAAACAQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAASgAAAAADFAAAAAABAQAAAAAASQAAAAAFFAAAAAABFAAAAAADDQAAAAAADQAAAAACDQAAAAAADQAAAAADDQAAAAAADQAAAAADDQAAAAACDQAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAABAQAAAAAADQAAAAADLgAAAAAAFAAAAAADDQAAAAACDQAAAAAADQAAAAADDQAAAAACJgAAAAACDQAAAAAADQAAAAABDQAAAAABFAAAAAADSQAAAAAAFAAAAAAAFAAAAAADAQAAAAAADQAAAAABDQAAAAACDQAAAAADDQAAAAABDQAAAAADDQAAAAAADQAAAAAADQAAAAADDQAAAAACDQAAAAAADQAAAAABSQAAAAABSwAAAAABSwAAAAACSgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOwAAAAABPAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOwAAAAADAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAOwAAAAADAQAAAAAAAQAAAAAAOwAAAAAAOwAAAAABOwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOwAAAAACAQAAAAAAOwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAANgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,2: ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAEAAAAAAAEAAAAAAAIwAAAAAAiwAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -4,3: - ind: -4,3 - tiles: AAAAAAAAiwAAAAAAAQAAAAAAEAAAAAAAIwAAAAAAAQAAAAAAEAAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAIwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAIwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAIwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAiwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAAIwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAAAAAAAAIwAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,2: ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAA - version: 6 - -5,3: - ind: -5,3 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAiwAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -6,2: - ind: -6,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: iwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,-3: ind: -6,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAAAAQAAAAAABwAAAAAABwAAAAAAFAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACAAAAAAACAAAAAAABwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAFAAAAAAABwAAAAAAFAAAAAAACAAAAAAABwAAAAAAAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAFAAAAAAAFAAAAAAABwAAAAAAFAAAAAAABwAAAAAAAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFAAAAAAACAAAAAAAFAAAAAAAAQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAAAAQAAAAAABwAAAAAABwAAAAABFAAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACAAAAAAACAAAAAACBwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAFAAAAAACBwAAAAABFAAAAAADCAAAAAADBwAAAAACAQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAAFAAAAAABFAAAAAABBwAAAAADFAAAAAABBwAAAAABAQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFAAAAAACCAAAAAABFAAAAAABAQAAAAAA version: 6 -1,1: ind: -1,1 @@ -380,6 +380,30 @@ entities: ind: 0,-2 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 + -15,-1: + ind: -15,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAASQAAAAAFFAAAAAABFAAAAAABSwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAASgAAAAAFFAAAAAADSwAAAAAASgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAASwAAAAAEFAAAAAABAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAFAAAAAADFAAAAAADAQAAAAAAFAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAQAAAAAAFAAAAAACFAAAAAADAQAAAAAASQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAASwAAAAAESwAAAAADFAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAASgAAAAAASQAAAAAHFAAAAAADFAAAAAABSQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAASgAAAAABSwAAAAAGSwAAAAAHFAAAAAAAFAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAAQAAAAAASwAAAAAESwAAAAABAQAAAAAASQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAASgAAAAAFAQAAAAAASwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAASgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAQAAAAAAPwAAAAAA + version: 6 + -15,0: + ind: -15,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -15,-2: + ind: -15,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAACwAAAAACCwAAAAABAQAAAAAAIwAAAAAAAQAAAAAAPwAAAAAANQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAANgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAPwAAAAAACwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAANQAAAAACNQAAAAACAQAAAAAAIwAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAQAAAAAANQAAAAADCwAAAAACCwAAAAADIwAAAAAAAQAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAJwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAQAAAAAACwAAAAABCwAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAQAAAAAANQAAAAADCwAAAAABCwAAAAADPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAQAAAAAANQAAAAADNQAAAAACAQAAAAAAPwAAAAAAPwAAAAAAIwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAANgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAANQAAAAACCwAAAAABAQAAAAAAAQAAAAAAPwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACwAAAAACCwAAAAADCwAAAAACIwAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACwAAAAACCwAAAAADAQAAAAAAIwAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAANgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAPwAAAAAAIwAAAAAAAQAAAAAAPwAAAAAAPwAAAAAA + version: 6 + -14,-3: + ind: -14,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAADPAAAAAADOwAAAAADAQAAAAAAOwAAAAADAQAAAAAAPAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAADAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAPAAAAAABOwAAAAADOwAAAAADOwAAAAADOwAAAAABAQAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAIwAAAAAAPAAAAAACOwAAAAADOwAAAAABIwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAAAQAAAAAANQAAAAAGAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAANQAAAAABCwAAAAACCwAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAPwAAAAAAAQAAAAAAIwAAAAAAAQAAAAAACwAAAAACNQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAPwAAAAAANQAAAAADCwAAAAACIwAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAABNQAAAAAFCwAAAAAAAQAAAAAAPwAAAAAAIwAAAAAAAQAAAAAANQAAAAAFCwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAACCwAAAAADCwAAAAABCwAAAAABAQAAAAAAIwAAAAAAPwAAAAAACwAAAAACCwAAAAACCwAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -15,-3: + ind: -15,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAADOwAAAAACOwAAAAAAAQAAAAAAOwAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAOwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPwAAAAAAPwAAAAAACwAAAAABNQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACwAAAAAACwAAAAABAQAAAAAAPwAAAAAAPwAAAAAACwAAAAADCwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAQAAAAAANQAAAAADCwAAAAAAAQAAAAAAIwAAAAAAPwAAAAAAAQAAAAAACwAAAAAB + version: 6 + -12,-3: + ind: -12,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 - type: Broadphase - type: Physics bodyStatus: InAir @@ -402,9552 +426,9668 @@ entities: nodes: - node: color: '#FFFFFFFF' - id: Arrows + id: ArrowsGreyscale decals: - 0: -22,3 + 6517: -22,3 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' - id: Arrows + id: ArrowsGreyscale decals: - 1: -17.01695,2.5716572 + 6518: -17.021088,2.591031 - node: color: '#FFFFFFFF' - id: Basalt1 + id: Basalt7 decals: - 2952: -140.19254,-4.624105 + 6676: -221.87144,-14.081592 - node: color: '#FFFFFFFF' - id: Basalt2 + id: Basalt8 decals: - 2953: -141.34879,-4.13973 + 6678: -228.05469,-9.051696 - node: color: '#FFFFFFFF' + id: Basalt9 + decals: + 6677: -224.81792,-10.953287 + 6681: -222.49277,-1.9510303 + - node: + zIndex: 100 + color: '#BC863FFF' id: Bot decals: - 135: -54,-26 - 136: -53,-26 - 137: -54,-25 - 138: -54,-22 - 139: -53,-22 - 140: -53,-23 - 141: -53,-24 - 142: -65,-25 - 143: -64,-25 - 144: -67,-25 - 145: -68,-25 + 6542: -59,-24 + 6543: -58,-25 + - node: + color: '#FF98219E' + id: Bot + decals: + 6672: -76,1 - node: color: '#FFFFFFFF' + id: Bot + decals: + 118: -54,-26 + 119: -53,-26 + 120: -54,-25 + 121: -54,-22 + 122: -53,-22 + 123: -53,-23 + 124: -53,-24 + - node: + angle: 4.71238898038469 rad + color: '#000000CC' id: BotGreyscale decals: - 2: -18,2 - 3: -20,2 - 4: -22,2 + 6540: -62,-25 + 6541: -66,-25 - node: - color: '#FFFFFFFF' - id: BotLeft + color: '#FF98219E' + id: BotGreyscale decals: - 148: -59,-24 - 149: -59,-23 + 6665: -83,-3 + 6666: -83,-5 + 6667: -75,-7 + 6668: -76,-7 + 6669: -76,-1 + 6670: -75,-1 - node: color: '#FFFFFFFF' - id: BotRight + id: BotGreyscale decals: - 146: -57,-24 - 147: -57,-23 - 150: -60,-23 - 151: -60,-24 + 0: -18,2 + 1: -20,2 + 2: -22,2 - node: - color: '#FFFFFFFF' - id: Box + color: '#BC863FCC' + id: BotLeftGreyscale + decals: + 6534: -67,-24 + - node: + color: '#FF98219E' + id: BotLeftGreyscale + decals: + 6671: -74,-1 + 6673: -76,-8 + - node: + color: '#BC863FCC' + id: BotRightGreyscale + decals: + 6535: -65,-24 + 6537: -61,-24 + - node: + angle: 3.141592653589793 rad + color: '#BC863FCC' + id: BotRightGreyscale + decals: + 6538: -63,-26 + - node: + angle: 4.71238898038469 rad + color: '#BC863FCC' + id: BotRightGreyscale + decals: + 6536: -65,-26 + 6539: -63,-24 + - node: + zIndex: 100 + angle: -1.5707963267948966 rad + color: '#BC863FFF' + id: BotRightGreyscale + decals: + 6545: -58,-24 + - node: + zIndex: 100 + angle: 1.5707963267948966 rad + color: '#BC863FFF' + id: BotRightGreyscale decals: - 904: -192,20 - 905: -191,19 - 2686: -83,-3 - 2687: -83,-4 - 2688: -83,-5 - 2689: -76,-7 - 2690: -75,-7 - 2691: -75,-1 - 2692: -76,-1 - 2693: -78,10 - 2694: -79,-18 - 2695: -78,-18 + 6544: -59,-25 - node: - color: '#F98AFFC0' - id: BrickTileSteelCornerSw + color: '#FF98219E' + id: BotRightGreyscale decals: - 881: -200,18 + 6674: -75,-8 - node: - color: '#F98AFFC0' - id: BrickTileSteelInnerNw + color: '#FF9821B2' + id: BotRightGreyscale decals: - 876: -200,22 + 6687: -72,3 + 6688: -72,2 - node: - color: '#F98AFFC0' - id: BrickTileSteelInnerSw + color: '#FF98219E' + id: BoxGreyscale decals: - 877: -200,22 + 6675: -79,3 - node: - color: '#F98AFFC0' - id: BrickTileSteelLineW + color: '#FF9821B2' + id: BoxGreyscale decals: - 878: -200,21 - 879: -200,20 - 880: -200,19 + 6686: -73,3 - node: color: '#0ECA1BB0' id: BrickTileWhiteBox decals: - 1660: -165,0 + 1426: -165,0 - node: color: '#37A2D5B2' id: BrickTileWhiteBox decals: - 1661: -169,0 + 1427: -169,0 - node: - color: '#96DAFFA5' + color: '#765428B4' id: BrickTileWhiteBox decals: - 785: -183,-23 + 7078: -75,-21 + 7079: -75,-19 - node: color: '#96DAFFA6' id: BrickTileWhiteBox decals: - 761: -187,-19 - 762: -187,-16 + 713: -187,-19 + 714: -187,-16 + - node: + color: '#96DAFFAE' + id: BrickTileWhiteBox + decals: + 6647: -191,-30 + 6648: -191,-28 + 6649: -191,-26 + 6650: -190,-25 + 6651: -191,-24 + 6652: -192,-25 - node: color: '#9C2020D8' id: BrickTileWhiteBox decals: - 6604: -171,13 - 6605: -174,13 - 6606: -174,10 - 6607: -171,10 + 6119: -171,13 + 6120: -174,13 + 6121: -174,10 + 6122: -171,10 - node: color: '#BC863FD7' id: BrickTileWhiteBox decals: - 110: -69,-26 - 111: -62,-22 + 97: -69,-26 + 98: -62,-22 - node: color: '#D58C18B3' id: BrickTileWhiteBox decals: - 1662: -173,0 + 1428: -173,0 - node: color: '#DE3A3ACC' id: BrickTileWhiteBox decals: - 1663: -173,4 - 1664: -171,6 - 1665: -169,4 - 1666: -165,4 - 1667: -161,4 - 1668: -157,4 - 1669: -153,4 - 1797: -153,0 - 1804: -156,9 - 1835: -161,12 - 1836: -162,7 - 1856: -148,12 - 1857: -148,16 - 1863: -148,8 + 1429: -173,4 + 1430: -171,6 + 1431: -169,4 + 1432: -165,4 + 1433: -161,4 + 1434: -157,4 + 1435: -153,4 + 1563: -153,0 + 1570: -156,9 + 1601: -161,12 + 1602: -162,7 + 1622: -148,12 + 1623: -148,16 + 1629: -148,8 - node: color: '#DE3A3AD8' id: BrickTileWhiteBox decals: - 2347: -157,0 + 2113: -157,0 - node: color: '#EBEBEBCC' id: BrickTileWhiteBox decals: - 395: -103,5 - 396: -103,9 - 397: -103,13 - 398: -103,17 - 424: -99,5 - - node: - color: '#FBB2FFA5' - id: BrickTileWhiteBox - decals: - 848: -201,10 - 849: -202,11 - 850: -201,12 - 851: -193,11 - 852: -192,10 - 853: -192,12 - 854: -197,13 - 855: -197,20 + 354: -103,5 + 355: -103,9 + 356: -103,13 + 357: -103,17 + 383: -99,5 - node: color: '#2D2D2DE8' id: BrickTileWhiteCornerNe decals: - 379: -99,6 + 338: -99,6 - node: color: '#4B709CBF' id: BrickTileWhiteCornerNe decals: - 2957: -19,-13 - 2959: -20,-12 + 2700: -19,-13 + 2702: -20,-12 - node: color: '#52B4E9A6' id: BrickTileWhiteCornerNe decals: - 779: -187,-9 + 731: -187,-9 - node: color: '#8C347FD8' id: BrickTileWhiteCornerNe decals: - 2424: -30,-9 + 2190: -30,-9 - node: color: '#96DAFFA6' id: BrickTileWhiteCornerNe decals: - 727: -183,-13 - 769: -185,-16 + 679: -183,-13 + 721: -185,-16 - node: color: '#BC863FD7' id: BrickTileWhiteCornerNe decals: - 96: -56,-22 + 94: -56,-22 - node: color: '#C6FF91D8' id: BrickTileWhiteCornerNe decals: - 2358: -107,-15 - 2362: -108,-13 - 2370: -107,-9 - 2378: -101,-15 - 2410: -104,-7 + 2124: -107,-15 + 2128: -108,-13 + 2136: -107,-9 + 2144: -101,-15 + 2176: -104,-7 - node: color: '#DE3A3ACC' id: BrickTileWhiteCornerNe decals: - 1754: -152,5 - 1782: -160,0 - 1812: -152,11 - 1889: -146,18 + 1520: -152,5 + 1548: -160,0 + 1578: -152,11 + 1655: -146,18 - node: color: '#DE3A3AD8' id: BrickTileWhiteCornerNe decals: - 2066: -147,-1 - 2067: -148,0 - 2132: -155,-7 - 2136: -152,-7 - 2183: -161,-7 - 2207: -167,-12 - 2208: -167,-8 - 2222: -162,-12 - 2268: -178,7 - 2300: -163,12 - 2348: -158,-1 - - node: - color: '#FBB2FFA5' - id: BrickTileWhiteCornerNe - decals: - 815: -198,6 - 842: -201,2 - 858: -198,19 - 862: -195,17 - 890: -198,10 - 896: -198,12 + 1832: -147,-1 + 1833: -148,0 + 1898: -155,-7 + 1902: -152,-7 + 1949: -161,-7 + 1973: -167,-12 + 1974: -167,-8 + 1988: -162,-12 + 2034: -178,7 + 2066: -163,12 + 2114: -158,-1 - node: color: '#4B709CBF' id: BrickTileWhiteCornerNw decals: - 2956: -24,-12 + 2699: -24,-12 - node: color: '#52B4E9A6' id: BrickTileWhiteCornerNw decals: - 773: -191,-10 - 774: -189,-9 + 725: -191,-10 + 726: -189,-9 - node: color: '#639137D8' id: BrickTileWhiteCornerNw decals: - 2407: -109,-7 + 2173: -109,-7 - node: color: '#8C347FD8' id: BrickTileWhiteCornerNw decals: - 2423: -34,-9 - - node: - color: '#96DAFFA5' - id: BrickTileWhiteCornerNw - decals: - 794: -189,-23 + 2189: -34,-9 - node: color: '#96DAFFA6' id: BrickTileWhiteCornerNw decals: - 728: -191,-13 - 770: -189,-16 + 680: -191,-13 + 722: -189,-16 - node: color: '#BC863FD7' id: BrickTileWhiteCornerNw decals: - 124: -69,-23 + 111: -69,-23 - node: color: '#C6FF91D8' id: BrickTileWhiteCornerNw decals: - 2356: -108,-12 - 2363: -107,-16 - 2371: -107,-10 - 2374: -110,-10 - 2377: -102,-15 + 2122: -108,-12 + 2129: -107,-16 + 2137: -107,-10 + 2140: -110,-10 + 2143: -102,-15 - node: color: '#DE3A3ACC' id: BrickTileWhiteCornerNw decals: - 1781: -162,0 - 1791: -154,1 - 1811: -160,11 - 1890: -150,18 + 1547: -162,0 + 1557: -154,1 + 1577: -160,11 + 1656: -150,18 - node: color: '#DE3A3AD8' id: BrickTileWhiteCornerNw decals: - 2068: -150,0 - 2133: -154,-7 - 2144: -159,-7 - 2179: -165,-7 - 2217: -169,-8 - 2223: -165,-12 - 2269: -181,7 - 2304: -167,12 - 2349: -156,-1 - 6749: -180,3 - - node: - color: '#FBB2FFA5' + 1834: -150,0 + 1899: -154,-7 + 1910: -159,-7 + 1945: -165,-7 + 1983: -169,-8 + 1989: -165,-12 + 2035: -181,7 + 2070: -167,12 + 2115: -156,-1 + 6264: -180,3 + - node: + color: '#F98AFFB2' id: BrickTileWhiteCornerNw decals: - 814: -196,6 - 829: -193,2 - 859: -196,19 - 863: -199,17 - 888: -196,10 - 897: -196,12 - - node: - color: '#FF9821CD' - id: BrickTileWhiteCornerNw - decals: - 154: -193,-25 - 155: -192,-24 + 7048: -200,13 + 7062: -194,5 - node: color: '#4B709CBF' id: BrickTileWhiteCornerSe decals: - 2958: -19,-15 + 2701: -19,-15 - node: color: '#4B709CF2' id: BrickTileWhiteCornerSe decals: - 6852: -20,-17 + 6367: -20,-17 - node: color: '#52B4E9A6' id: BrickTileWhiteCornerSe decals: - 780: -187,-11 + 732: -187,-11 - node: - color: '#8C347FD8' + color: '#765428B4' id: BrickTileWhiteCornerSe decals: - 2426: -30,-13 + 7081: -74,-22 - node: - color: '#96DAFFA5' + color: '#8C347FD8' id: BrickTileWhiteCornerSe decals: - 797: -182,-27 - 807: -185,-26 + 2192: -30,-13 - node: color: '#96DAFFA6' id: BrickTileWhiteCornerSe decals: - 726: -183,-21 - 764: -186,-19 + 678: -183,-21 + 716: -186,-19 - node: - color: '#BC863FD7' + color: '#BC863FCC' id: BrickTileWhiteCornerSe decals: - 99: -56,-25 - 100: -63,-26 + 6522: -63,-28 + 6532: -56,-25 - node: color: '#C6FF91D8' id: BrickTileWhiteCornerSe decals: - 2357: -107,-13 - 2360: -108,-15 - 2372: -108,-9 - 2380: -101,-19 + 2123: -107,-13 + 2126: -108,-15 + 2138: -108,-9 + 2146: -101,-19 - node: color: '#DE3A3ACC' id: BrickTileWhiteCornerSe decals: - 1775: -160,2 - 1784: -160,-1 - 1792: -152,-1 - 1813: -152,7 - 1883: -150,17 - 1886: -149,18 + 1541: -160,2 + 1550: -160,-1 + 1558: -152,-1 + 1579: -152,7 + 1649: -150,17 + 1652: -149,18 - node: color: '#DE3A3AD8' id: BrickTileWhiteCornerSe decals: - 2125: -167,-6 - 2137: -152,-9 - 2163: -162,-10 - 2164: -161,-9 - 2165: -167,-14 - 2246: -162,-14 - 2289: -164,7 - 2290: -163,9 - 2351: -158,1 - 6754: -176,-1 - - node: - color: '#FBB2FFA5' - id: BrickTileWhiteCornerSe - decals: - 817: -198,4 - 831: -195,1 - 857: -198,21 - 860: -200,23 - 891: -198,8 - 899: -198,14 - - node: - color: '#FF9821CD' - id: BrickTileWhiteCornerSe - decals: - 157: -191,-27 + 1891: -167,-6 + 1903: -152,-9 + 1929: -162,-10 + 1930: -161,-9 + 1931: -167,-14 + 2012: -162,-14 + 2055: -164,7 + 2056: -163,9 + 2117: -158,1 + 6269: -176,-1 - node: color: '#4B709CF2' id: BrickTileWhiteCornerSw decals: - 6851: -24,-17 + 6366: -24,-17 - node: color: '#52B4E9A6' id: BrickTileWhiteCornerSw decals: - 775: -191,-11 + 727: -191,-11 - node: color: '#639137D8' id: BrickTileWhiteCornerSw decals: - 2381: -109,-17 + 2147: -109,-17 - node: - color: '#8C347FD8' + color: '#765428B4' id: BrickTileWhiteCornerSw decals: - 2425: -34,-13 + 7080: -76,-22 - node: - color: '#96DAFFA5' + color: '#8C347FD8' id: BrickTileWhiteCornerSw decals: - 795: -189,-26 - 796: -183,-27 - 806: -186,-26 + 2191: -34,-13 - node: color: '#96DAFFA6' id: BrickTileWhiteCornerSw decals: - 725: -191,-21 - 763: -188,-19 + 677: -191,-21 + 715: -188,-19 + - node: + color: '#BC863FCC' + id: BrickTileWhiteCornerSw + decals: + 6521: -67,-28 - node: color: '#C6FF91D8' id: BrickTileWhiteCornerSw decals: - 2359: -108,-16 - 2361: -107,-12 - 2373: -108,-10 - 2375: -110,-12 - 2379: -102,-19 + 2125: -108,-16 + 2127: -107,-12 + 2139: -108,-10 + 2141: -110,-12 + 2145: -102,-19 - node: color: '#DE3A3ACC' id: BrickTileWhiteCornerSw decals: - 1776: -162,2 - 1783: -162,-1 - 1795: -154,-1 - 1814: -160,7 - 1884: -146,17 - 1885: -147,18 + 1542: -162,2 + 1549: -162,-1 + 1561: -154,-1 + 1580: -160,7 + 1650: -146,17 + 1651: -147,18 - node: color: '#DE3A3AD8' id: BrickTileWhiteCornerSw decals: - 2126: -171,-6 - 2138: -154,-9 - 2209: -171,-14 - 2221: -165,-14 - 2270: -181,5 - 2287: -167,9 - 2288: -166,7 - 2350: -156,1 - 6753: -180,-1 - - node: - color: '#FBB2FFA5' + 1892: -171,-6 + 1904: -154,-9 + 1975: -171,-14 + 1987: -165,-14 + 2036: -181,5 + 2053: -167,9 + 2054: -166,7 + 2116: -156,1 + 6268: -180,-1 + - node: + color: '#F98AFFB2' id: BrickTileWhiteCornerSw decals: - 816: -196,4 - 832: -199,1 - 856: -196,21 - 861: -194,23 - 889: -196,8 - 898: -196,14 + 7059: -200,1 - node: cleanable: True color: '#FF9821BF' id: BrickTileWhiteCornerSw decals: - 6455: -56,-4 - - node: - color: '#FF9821CD' - id: BrickTileWhiteCornerSw - decals: - 153: -193,-26 - 156: -192,-27 + 5971: -56,-4 - node: color: '#DE3A3ACC' id: BrickTileWhiteEndE decals: - 1821: -159,7 - 1822: -159,11 - 1858: -149,15 - 1864: -149,9 - 1865: -149,13 - 1866: -149,11 + 1587: -159,7 + 1588: -159,11 + 1624: -149,15 + 1630: -149,9 + 1631: -149,13 + 1632: -149,11 - node: color: '#DE3A3AD8' id: BrickTileWhiteEndE decals: - 2249: -158,-11 - 2256: -154,-11 - 6609: -172,9 - 6610: -172,14 - 6611: -169,9 - 6612: -169,14 - 6738: -177,1 - - node: - color: '#FBB2FFA5' - id: BrickTileWhiteEndE - decals: - 812: -195,6 - 813: -195,4 - 827: -192,2 - 866: -198,17 - 886: -195,8 - 887: -195,10 + 2015: -158,-11 + 2022: -154,-11 + 6124: -172,9 + 6125: -172,14 + 6126: -169,9 + 6127: -169,14 + 6253: -177,1 - node: color: '#8C347FD8' id: BrickTileWhiteEndN decals: - 2428: -32,-10 - - node: - color: '#96DAFFA5' - id: BrickTileWhiteEndN - decals: - 787: -181,-25 + 2194: -32,-10 - node: color: '#C6FF91D8' id: BrickTileWhiteEndN decals: - 2366: -105,-10 - 2367: -105,-16 - 2368: -105,-12 + 2132: -105,-10 + 2133: -105,-16 + 2134: -105,-12 - node: color: '#DE3A3ACC' id: BrickTileWhiteEndN decals: - 1807: -156,11 - 1815: -160,8 - 1816: -152,8 + 1573: -156,11 + 1581: -160,8 + 1582: -152,8 - node: color: '#DE3A3AD8' id: BrickTileWhiteEndN decals: - 2283: -176,7 - 6600: -175,12 - 6601: -170,12 - 6737: -178,2 - - node: - color: '#FBB2FFA5' - id: BrickTileWhiteEndN - decals: - 808: -199,2 - 809: -195,2 + 2049: -176,7 + 6115: -175,12 + 6116: -170,12 + 6252: -178,2 - node: - color: '#FF9821CD' + color: '#F98AFFB2' id: BrickTileWhiteEndN decals: - 152: -191,-23 + 7047: -202,13 - node: color: '#8C347FD8' id: BrickTileWhiteEndS decals: - 2427: -32,-12 - - node: - color: '#96DAFFA5' - id: BrickTileWhiteEndS - decals: - 786: -181,-26 + 2193: -32,-12 - node: color: '#C6FF91D8' id: BrickTileWhiteEndS decals: - 2364: -105,-15 - 2365: -105,-9 - 2369: -105,-13 + 2130: -105,-15 + 2131: -105,-9 + 2135: -105,-13 - node: color: '#DE3A3ACC' id: BrickTileWhiteEndS decals: - 1806: -156,7 - 1817: -160,10 - 1818: -152,10 + 1572: -156,7 + 1583: -160,10 + 1584: -152,10 - node: color: '#DE3A3AD8' id: BrickTileWhiteEndS decals: - 2257: -155,-12 - 6599: -175,11 - 6602: -170,11 - 6740: -178,0 - - node: - color: '#FBB2FFA5' - id: BrickTileWhiteEndS - decals: - 830: -193,1 - 841: -201,1 - 864: -199,16 - 867: -195,16 + 2023: -155,-12 + 6114: -175,11 + 6117: -170,11 + 6255: -178,0 - node: color: '#DE3A3ACC' id: BrickTileWhiteEndW decals: - 1819: -153,11 - 1820: -153,7 - 1859: -147,15 - 1860: -147,13 - 1861: -147,11 - 1862: -147,9 + 1585: -153,11 + 1586: -153,7 + 1625: -147,15 + 1626: -147,13 + 1627: -147,11 + 1628: -147,9 - node: color: '#DE3A3AD8' id: BrickTileWhiteEndW decals: - 2248: -160,-11 - 2255: -156,-11 - 6603: -173,14 - 6608: -173,9 - 6613: -170,9 - 6614: -170,14 - 6739: -179,1 - - node: - color: '#FBB2FFA5' - id: BrickTileWhiteEndW - decals: - 810: -199,4 - 811: -199,6 - 826: -202,2 - 865: -196,17 - 884: -199,10 - 885: -199,8 + 2014: -160,-11 + 2021: -156,-11 + 6118: -173,14 + 6123: -173,9 + 6128: -170,9 + 6129: -170,14 + 6254: -179,1 - node: cleanable: True color: '#FF9821BF' id: BrickTileWhiteEndW decals: - 6450: -56,-8 + 5966: -56,-8 - node: color: '#2D2D2DE8' id: BrickTileWhiteInnerNe decals: - 330: -103,14 - 333: -102,9 - 346: -99,4 + 289: -103,14 + 292: -102,9 + 305: -99,4 - node: color: '#4B709CBF' id: BrickTileWhiteInnerNe decals: - 2971: -20,-13 - 2972: -22,-12 + 2714: -20,-13 + 2715: -22,-12 - node: color: '#4B709CF2' id: BrickTileWhiteInnerNe decals: - 6846: -20,-16 - 6854: -22,-16 + 6361: -20,-16 + 6369: -22,-16 - node: color: '#639137D8' id: BrickTileWhiteInnerNe decals: - 2387: -104,-16 - 2394: -104,-12 - 2406: -108,-7 + 2153: -104,-16 + 2160: -104,-12 + 2172: -108,-7 - node: - color: '#8C347FD8' + color: '#765428B4' id: BrickTileWhiteInnerNe decals: - 2434: -32,-11 + 7091: -76,-19 - node: - color: '#96DAFFA5' + color: '#8C347FD8' id: BrickTileWhiteInnerNe decals: - 800: -183,-25 - 801: -187,-23 + 2200: -32,-11 - node: color: '#96DAFFA6' id: BrickTileWhiteInnerNe decals: - 733: -183,-14 - 736: -183,-20 - 749: -188,-13 - 750: -184,-13 + 685: -183,-14 + 688: -183,-20 + 701: -188,-13 + 702: -184,-13 - node: color: '#9FED58FF' id: BrickTileWhiteInnerNe decals: - 6591: -28,5 + 6106: -28,5 - node: color: '#BC863FD7' id: BrickTileWhiteInnerNe decals: - 115: -63,-22 - 126: -68,-23 + 102: -63,-22 + 113: -68,-23 - node: color: '#BC863FFF' id: BrickTileWhiteInnerNe decals: - 6583: -65,-19 + 6098: -65,-19 - node: cleanable: True color: '#DE3A3A8C' id: BrickTileWhiteInnerNe decals: - 2044: -137,1 + 1810: -137,1 - node: color: '#DE3A3ACC' id: BrickTileWhiteInnerNe decals: - 1705: -164,3 - 1708: -156,3 - 1711: -172,3 - 1712: -168,3 - 1713: -174,5 - 1714: -170,5 - 1763: -152,3 - 1768: -158,5 - 1771: -168,5 - 1787: -161,0 - 1801: -153,0 - 1802: -160,3 - 1826: -160,7 - 1827: -158,7 - 1834: -155,7 - 1844: -161,11 - 1848: -155,11 + 1471: -164,3 + 1474: -156,3 + 1477: -172,3 + 1478: -168,3 + 1479: -174,5 + 1480: -170,5 + 1529: -152,3 + 1534: -158,5 + 1537: -168,5 + 1553: -161,0 + 1567: -153,0 + 1568: -160,3 + 1592: -160,7 + 1593: -158,7 + 1600: -155,7 + 1610: -161,11 + 1614: -155,11 - node: color: '#DE3A3AD8' id: BrickTileWhiteInnerNe decals: - 2050: -136,-2 - 2051: -134,-2 - 2052: -141,-2 - 2070: -149,0 - 2071: -148,-1 - 2072: -147,-2 - 2106: -156,-3 - 2107: -158,-3 - 2129: -158,-7 - 2130: -156,-7 - 2135: -155,-8 - 2154: -158,-8 - 2155: -156,-8 - 2168: -162,-8 - 2169: -164,-10 - 2170: -164,-8 - 2185: -161,-8 - 2186: -168,-12 - 2187: -168,-10 - 2188: -170,-12 - 2189: -168,-12 - 2200: -170,-14 - 2203: -168,-14 - 2214: -167,-10 - 2229: -163,-13 - 2230: -164,-13 - 2241: -163,-14 - 2243: -164,-14 - 2247: -165,-13 - 2253: -155,-11 - 2254: -159,-11 - 2275: -178,5 - 2281: -176,5 - 2291: -163,10 - 2353: -156,1 - 3180: -158,10 - 3181: -155,10 - 6742: -178,1 - 6747: -179,0 - 6770: -177,2 - 6771: -180,-1 - 6772: -180,2 - 6773: -177,-1 - - node: - color: '#FBB2FFA5' - id: BrickTileWhiteInnerNe - decals: - 821: -196,4 - 833: -199,1 - 845: -196,8 - 871: -199,23 - 872: -195,23 - 873: -194,22 - 903: -196,14 + 1816: -136,-2 + 1817: -134,-2 + 1818: -141,-2 + 1836: -149,0 + 1837: -148,-1 + 1838: -147,-2 + 1872: -156,-3 + 1873: -158,-3 + 1895: -158,-7 + 1896: -156,-7 + 1901: -155,-8 + 1920: -158,-8 + 1921: -156,-8 + 1934: -162,-8 + 1935: -164,-10 + 1936: -164,-8 + 1951: -161,-8 + 1952: -168,-12 + 1953: -168,-10 + 1954: -170,-12 + 1955: -168,-12 + 1966: -170,-14 + 1969: -168,-14 + 1980: -167,-10 + 1995: -163,-13 + 1996: -164,-13 + 2007: -163,-14 + 2009: -164,-14 + 2013: -165,-13 + 2019: -155,-11 + 2020: -159,-11 + 2041: -178,5 + 2047: -176,5 + 2057: -163,10 + 2119: -156,1 + 2923: -158,10 + 2924: -155,10 + 6257: -178,1 + 6262: -179,0 + 6285: -177,2 + 6286: -180,-1 + 6287: -180,2 + 6288: -177,-1 - node: cleanable: True color: '#FF9821BF' id: BrickTileWhiteInnerNe decals: - 6457: -58,-6 - - node: - color: '#FF9821CD' - id: BrickTileWhiteInnerNe - decals: - 161: -191,-24 - 164: -191,-26 + 5973: -58,-6 - node: color: '#2D2D2DE8' id: BrickTileWhiteInnerNw decals: - 331: -103,14 - 332: -104,9 - 338: -104,5 + 290: -103,14 + 291: -104,9 + 297: -104,5 - node: color: '#4B709CBF' id: BrickTileWhiteInnerNw decals: - 2973: -23,-12 - 2974: -24,-13 + 2716: -23,-12 + 2717: -24,-13 - node: color: '#4B709CF2' id: BrickTileWhiteInnerNw decals: - 6853: -20,-16 + 6368: -20,-16 - node: color: '#52B4E9A6' id: BrickTileWhiteInnerNw decals: - 778: -189,-10 + 730: -189,-10 - node: color: '#639137D8' id: BrickTileWhiteInnerNw decals: - 2396: -109,-10 - 2401: -109,-16 - 2405: -108,-7 + 2162: -109,-10 + 2167: -109,-16 + 2171: -108,-7 - node: - color: '#8C347FD8' + color: '#765428B4' id: BrickTileWhiteInnerNw decals: - 2433: -32,-11 + 7090: -74,-19 - node: - color: '#96DAFFA5' + color: '#8C347FD8' id: BrickTileWhiteInnerNw decals: - 802: -187,-23 + 2199: -32,-11 - node: color: '#96DAFFA6' id: BrickTileWhiteInnerNw decals: - 729: -191,-14 - 732: -191,-20 - 747: -184,-13 - 748: -188,-13 + 681: -191,-14 + 684: -191,-20 + 699: -184,-13 + 700: -188,-13 - node: color: '#9FED58FF' id: BrickTileWhiteInnerNw decals: - 6590: -28,5 + 6105: -28,5 + - node: + color: '#BC863FCC' + id: BrickTileWhiteInnerNw + decals: + 6533: -56,-26 - node: color: '#BC863FD7' id: BrickTileWhiteInnerNw decals: - 121: -65,-23 - 125: -68,-23 - 128: -69,-25 + 108: -65,-23 + 112: -68,-23 + 115: -69,-25 - node: color: '#BC863FFF' id: BrickTileWhiteInnerNw decals: - 6584: -63,-19 + 6099: -63,-19 - node: color: '#DE3A3ACC' id: BrickTileWhiteInnerNw decals: - 1704: -166,3 - 1709: -154,3 - 1715: -158,3 - 1717: -170,3 - 1718: -168,5 - 1738: -174,5 - 1740: -174,3 - 1767: -159,5 - 1774: -172,5 - 1786: -161,0 - 1790: -152,1 - 1800: -153,0 - 1803: -162,3 - 1825: -152,7 - 1830: -157,7 - 1831: -154,7 - 1840: -161,7 - 1841: -161,10 - 1847: -155,11 + 1470: -166,3 + 1475: -154,3 + 1481: -158,3 + 1483: -170,3 + 1484: -168,5 + 1504: -174,5 + 1506: -174,3 + 1533: -159,5 + 1540: -172,5 + 1552: -161,0 + 1556: -152,1 + 1566: -153,0 + 1569: -162,3 + 1591: -152,7 + 1596: -157,7 + 1597: -154,7 + 1606: -161,7 + 1607: -161,10 + 1613: -155,11 - node: color: '#DE3A3AD8' id: BrickTileWhiteInnerNw decals: - 2046: -130,-2 - 2047: -134,-2 - 2048: -136,-2 - 2049: -141,-2 - 2069: -149,0 - 2108: -158,-3 - 2109: -156,-3 - 2127: -156,-7 - 2128: -158,-7 - 2134: -154,-8 - 2156: -158,-8 - 2157: -156,-8 - 2158: -162,-8 - 2159: -164,-8 - 2160: -164,-10 - 2176: -165,-10 - 2190: -170,-12 - 2191: -168,-10 - 2192: -168,-12 - 2201: -170,-14 - 2202: -168,-14 - 2231: -164,-13 - 2232: -163,-13 - 2239: -163,-14 - 2240: -164,-14 - 2244: -162,-13 - 2251: -159,-11 - 2252: -155,-11 - 2280: -176,5 - 2285: -167,10 - 2352: -158,1 - 3182: -157,10 - 3183: -154,10 - 6741: -178,1 - 6746: -177,0 - 6769: -179,2 - 6780: -179,-1 - 6781: -176,-1 - 6782: -176,2 - - node: - color: '#FBB2FFA5' - id: BrickTileWhiteInnerNw - decals: - 820: -198,4 - 834: -195,1 - 844: -198,8 - 870: -199,23 - 875: -195,23 - 902: -198,14 + 1812: -130,-2 + 1813: -134,-2 + 1814: -136,-2 + 1815: -141,-2 + 1835: -149,0 + 1874: -158,-3 + 1875: -156,-3 + 1893: -156,-7 + 1894: -158,-7 + 1900: -154,-8 + 1922: -158,-8 + 1923: -156,-8 + 1924: -162,-8 + 1925: -164,-8 + 1926: -164,-10 + 1942: -165,-10 + 1956: -170,-12 + 1957: -168,-10 + 1958: -168,-12 + 1967: -170,-14 + 1968: -168,-14 + 1997: -164,-13 + 1998: -163,-13 + 2005: -163,-14 + 2006: -164,-14 + 2010: -162,-13 + 2017: -159,-11 + 2018: -155,-11 + 2046: -176,5 + 2051: -167,10 + 2118: -158,1 + 2925: -157,10 + 2926: -154,10 + 6256: -178,1 + 6261: -177,0 + 6284: -179,2 + 6295: -179,-1 + 6296: -176,-1 + 6297: -176,2 - node: cleanable: True color: '#FF9821BF' id: BrickTileWhiteInnerNw decals: - 6451: -55,-8 - - node: - color: '#FF9821CD' - id: BrickTileWhiteInnerNw - decals: - 159: -192,-25 - 160: -191,-24 + 5967: -55,-8 - node: color: '#2D2D2DE8' id: BrickTileWhiteInnerSe decals: - 334: -102,9 - 340: -103,4 - 366: -103,16 + 293: -102,9 + 299: -103,4 + 325: -103,16 - node: color: '#4B709CBF' id: BrickTileWhiteInnerSe decals: - 2969: -21,-12 - 2970: -22,-12 + 2712: -21,-12 + 2713: -22,-12 - node: color: '#4B709CF2' id: BrickTileWhiteInnerSe decals: - 6845: -20,-16 - 6847: -20,-15 + 6360: -20,-16 + 6362: -20,-15 - node: color: '#52B4E9A6' id: BrickTileWhiteInnerSe decals: - 782: -188,-11 + 734: -188,-11 - node: color: '#639137D8' id: BrickTileWhiteInnerSe decals: - 2395: -104,-12 + 2161: -104,-12 - node: - color: '#8C347FD8' + color: '#765428B4' id: BrickTileWhiteInnerSe decals: - 2435: -32,-11 - 2439: -31,-13 + 7071: -74,-17 + 7072: -76,-17 - node: - color: '#96DAFFA5' + color: '#8C347FD8' id: BrickTileWhiteInnerSe decals: - 799: -182,-26 - 804: -187,-26 + 2201: -32,-11 + 2205: -31,-13 - node: color: '#96DAFFA6' id: BrickTileWhiteInnerSe decals: - 734: -183,-14 - 735: -183,-20 - 752: -187,-21 - 766: -186,-18 + 686: -183,-14 + 687: -183,-20 + 704: -187,-21 + 718: -186,-18 - node: - color: '#BC863FD7' + color: '#BC863FCC' id: BrickTileWhiteInnerSe decals: - 105: -58,-25 - 106: -60,-25 - 109: -63,-25 + 6526: -63,-27 + 6528: -60,-27 + 6529: -58,-27 - node: color: '#BC863FFF' id: BrickTileWhiteInnerSe decals: - 6586: -65,-17 - 6587: -63,-17 + 6101: -65,-17 + 6102: -63,-17 - node: cleanable: True color: '#DE3A3A8C' id: BrickTileWhiteInnerSe decals: - 2045: -137,1 + 1811: -137,1 - node: color: '#DE3A3ACC' id: BrickTileWhiteInnerSe decals: - 1700: -172,5 - 1701: -168,5 - 1706: -164,5 - 1707: -156,5 - 1716: -160,5 - 1732: -163,3 - 1733: -165,3 - 1734: -167,3 - 1735: -169,3 - 1736: -171,3 - 1737: -173,3 - 1755: -152,3 - 1761: -156,3 - 1765: -158,3 - 1773: -168,7 - 1778: -160,3 - 1779: -161,2 - 1798: -153,0 - 1823: -160,11 - 1828: -158,8 - 1832: -155,8 - 1845: -158,7 - 1887: -150,18 + 1466: -172,5 + 1467: -168,5 + 1472: -164,5 + 1473: -156,5 + 1482: -160,5 + 1498: -163,3 + 1499: -165,3 + 1500: -167,3 + 1501: -169,3 + 1502: -171,3 + 1503: -173,3 + 1521: -152,3 + 1527: -156,3 + 1531: -158,3 + 1539: -168,7 + 1544: -160,3 + 1545: -161,2 + 1564: -153,0 + 1589: -160,11 + 1594: -158,8 + 1598: -155,8 + 1611: -158,7 + 1653: -150,18 - node: color: '#DE3A3AD8' id: BrickTileWhiteInnerSe decals: - 2101: -167,-5 - 2102: -156,-5 - 2103: -158,-5 - 2139: -159,-9 - 2147: -155,-8 - 2152: -156,-8 - 2153: -158,-8 - 2161: -162,-8 - 2162: -164,-8 - 2166: -162,-9 - 2173: -164,-10 - 2184: -161,-8 - 2195: -170,-12 - 2196: -168,-12 - 2197: -168,-10 - 2198: -168,-8 - 2226: -164,-12 - 2227: -163,-13 - 2234: -164,-13 - 2235: -163,-12 - 2238: -165,-13 - 2258: -155,-11 - 2292: -163,10 - 2293: -164,9 - 2354: -156,-1 - 3176: -158,11 - 3177: -155,11 - 6743: -178,1 - 6748: -179,2 - 6760: -179,-1 - 6762: -176,3 - 6767: -177,0 - 6774: -180,0 - 6775: -180,3 - 6776: -177,3 - - node: - color: '#FBB2FFA5' - id: BrickTileWhiteInnerSe - decals: - 818: -196,6 - 828: -193,2 - 846: -196,10 - 869: -199,17 - 874: -194,22 - 883: -195,18 - 901: -196,12 + 1867: -167,-5 + 1868: -156,-5 + 1869: -158,-5 + 1905: -159,-9 + 1913: -155,-8 + 1918: -156,-8 + 1919: -158,-8 + 1927: -162,-8 + 1928: -164,-8 + 1932: -162,-9 + 1939: -164,-10 + 1950: -161,-8 + 1961: -170,-12 + 1962: -168,-12 + 1963: -168,-10 + 1964: -168,-8 + 1992: -164,-12 + 1993: -163,-13 + 2000: -164,-13 + 2001: -163,-12 + 2004: -165,-13 + 2024: -155,-11 + 2058: -163,10 + 2059: -164,9 + 2120: -156,-1 + 2919: -158,11 + 2920: -155,11 + 6258: -178,1 + 6263: -179,2 + 6275: -179,-1 + 6277: -176,3 + 6282: -177,0 + 6289: -180,0 + 6290: -180,3 + 6291: -177,3 - node: cleanable: True color: '#FF9821BF' id: BrickTileWhiteInnerSe decals: - 6458: -58,-6 - - node: - color: '#FF9821CD' - id: BrickTileWhiteInnerSe - decals: - 162: -191,-24 - 163: -191,-26 + 5974: -58,-6 - node: color: '#2D2D2DE8' id: BrickTileWhiteInnerSw decals: - 336: -104,9 - 337: -104,5 - 342: -103,4 - 364: -103,16 + 295: -104,9 + 296: -104,5 + 301: -103,4 + 323: -103,16 - node: color: '#4B709CBF' id: BrickTileWhiteInnerSw decals: - 2967: -21,-12 - 2968: -20,-12 - 2975: -24,-14 + 2710: -21,-12 + 2711: -20,-12 + 2718: -24,-14 - node: color: '#52B4E9A6' id: BrickTileWhiteInnerSw decals: - 781: -188,-11 + 733: -188,-11 - node: color: '#639137D8' id: BrickTileWhiteInnerSw decals: - 2397: -109,-12 - 2402: -109,-16 + 2163: -109,-12 + 2168: -109,-16 - node: - color: '#8C347FD8' + color: '#765428B4' id: BrickTileWhiteInnerSw decals: - 2436: -32,-11 - 2440: -31,-13 + 7073: -76,-17 + 7089: -74,-17 - node: - color: '#96DAFFA5' + color: '#8C347FD8' id: BrickTileWhiteInnerSw decals: - 798: -183,-26 - 803: -187,-26 + 2202: -32,-11 + 2206: -31,-13 - node: color: '#96DAFFA6' id: BrickTileWhiteInnerSw decals: - 730: -191,-14 - 731: -191,-20 - 751: -187,-21 - 765: -188,-18 + 682: -191,-14 + 683: -191,-20 + 703: -187,-21 + 717: -188,-18 + - node: + color: '#BC863FCC' + id: BrickTileWhiteInnerSw + decals: + 6519: -67,-26 + 6530: -58,-27 + 6531: -60,-27 - node: color: '#BC863FD7' id: BrickTileWhiteInnerSw decals: - 107: -58,-25 - 108: -60,-25 - 129: -69,-25 + 116: -69,-25 - node: color: '#BC863FFF' id: BrickTileWhiteInnerSw decals: - 6585: -63,-17 - 6588: -65,-17 + 6100: -63,-17 + 6103: -65,-17 - node: cleanable: True color: '#DE3A3A8C' id: BrickTileWhiteInnerSw decals: - 2043: -137,1 + 1809: -137,1 - node: color: '#DE3A3ACC' id: BrickTileWhiteInnerSw decals: - 1696: -154,5 - 1697: -162,5 - 1698: -166,5 - 1699: -170,5 - 1703: -168,7 - 1710: -154,5 - 1726: -173,3 - 1727: -169,3 - 1728: -167,3 - 1729: -171,3 - 1730: -165,3 - 1731: -163,3 - 1739: -174,5 - 1762: -152,3 - 1764: -158,3 - 1766: -156,3 - 1769: -158,5 - 1777: -162,3 - 1780: -161,2 - 1799: -153,0 - 1824: -152,11 - 1829: -157,8 - 1833: -154,8 - 1842: -161,10 - 1843: -160,12 - 1846: -158,7 - 1888: -146,18 + 1462: -154,5 + 1463: -162,5 + 1464: -166,5 + 1465: -170,5 + 1469: -168,7 + 1476: -154,5 + 1492: -173,3 + 1493: -169,3 + 1494: -167,3 + 1495: -171,3 + 1496: -165,3 + 1497: -163,3 + 1505: -174,5 + 1528: -152,3 + 1530: -158,3 + 1532: -156,3 + 1535: -158,5 + 1543: -162,3 + 1546: -161,2 + 1565: -153,0 + 1590: -152,11 + 1595: -157,8 + 1599: -154,8 + 1608: -161,10 + 1609: -160,12 + 1612: -158,7 + 1654: -146,18 - node: color: '#DE3A3AD8' id: BrickTileWhiteInnerSw decals: - 2100: -171,-5 - 2104: -158,-5 - 2105: -156,-5 - 2146: -154,-8 - 2148: -155,-9 - 2149: -159,-8 - 2150: -158,-8 - 2151: -156,-8 - 2167: -164,-10 - 2171: -164,-8 - 2172: -162,-8 - 2193: -168,-12 - 2194: -170,-12 - 2199: -168,-8 - 2218: -168,-10 - 2228: -163,-13 - 2233: -164,-13 - 2236: -163,-12 - 2237: -164,-12 - 2242: -162,-13 - 2259: -155,-11 - 2286: -167,10 - 2294: -166,9 - 2355: -158,-1 - 3178: -154,11 - 3179: -157,11 - 6744: -178,1 - 6745: -177,2 - 6761: -179,-1 - 6768: -179,0 - 6777: -176,0 - 6778: -176,3 - 6779: -179,3 - - node: - color: '#FBB2FFA5' - id: BrickTileWhiteInnerSw - decals: - 819: -198,6 - 843: -201,2 - 847: -198,10 - 868: -195,17 - 882: -199,18 - 900: -198,12 + 1866: -171,-5 + 1870: -158,-5 + 1871: -156,-5 + 1912: -154,-8 + 1914: -155,-9 + 1915: -159,-8 + 1916: -158,-8 + 1917: -156,-8 + 1933: -164,-10 + 1937: -164,-8 + 1938: -162,-8 + 1959: -168,-12 + 1960: -170,-12 + 1965: -168,-8 + 1984: -168,-10 + 1994: -163,-13 + 1999: -164,-13 + 2002: -163,-12 + 2003: -164,-12 + 2008: -162,-13 + 2025: -155,-11 + 2052: -167,10 + 2060: -166,9 + 2121: -158,-1 + 2921: -154,11 + 2922: -157,11 + 6259: -178,1 + 6260: -177,2 + 6276: -179,-1 + 6283: -179,0 + 6292: -176,0 + 6293: -176,3 + 6294: -179,3 - node: cleanable: True color: '#FF9821BF' id: BrickTileWhiteInnerSw decals: - 6456: -55,-4 - - node: - color: '#FF9821CD' - id: BrickTileWhiteInnerSw - decals: - 158: -192,-26 + 5972: -55,-4 - node: color: '#2D2D2DE8' id: BrickTileWhiteLineE decals: - 324: -102,11 - 325: -102,7 + 283: -102,11 + 284: -102,7 - node: color: '#4B709CBF' id: BrickTileWhiteLineE decals: - 2962: -22,-15 - 2963: -22,-14 - 2964: -22,-13 - 2976: -19,-14 + 2705: -22,-15 + 2706: -22,-14 + 2707: -22,-13 + 2719: -19,-14 - node: color: '#52B4E9A6' id: BrickTileWhiteLineE decals: - 783: -187,-10 + 735: -187,-10 - node: color: '#639137D8' id: BrickTileWhiteLineE decals: - 2388: -104,-15 - 2389: -104,-14 - 2390: -104,-13 - 2391: -104,-11 - 2392: -104,-10 - 2393: -104,-9 + 2154: -104,-15 + 2155: -104,-14 + 2156: -104,-13 + 2157: -104,-11 + 2158: -104,-10 + 2159: -104,-9 - node: - color: '#8C347FD8' + color: '#765428B4' id: BrickTileWhiteLineE decals: - 2444: -30,-10 - 2445: -30,-11 - 2446: -30,-12 + 7083: -74,-21 + 7084: -74,-20 + 7085: -74,-19 + 7086: -74,-18 + 7088: -76,-18 - node: - color: '#96DAFFA5' + color: '#8C347FD8' id: BrickTileWhiteLineE decals: - 789: -183,-24 + 2210: -30,-10 + 2211: -30,-11 + 2212: -30,-12 - node: color: '#96DAFFA6' id: BrickTileWhiteLineE decals: - 737: -183,-19 - 738: -183,-18 - 739: -183,-17 - 740: -183,-16 - 741: -183,-15 + 689: -183,-19 + 690: -183,-18 + 691: -183,-17 + 692: -183,-16 + 693: -183,-15 - node: color: '#BC863FD7' id: BrickTileWhiteLineE decals: - 97: -56,-23 - 98: -56,-24 - 116: -63,-21 - 117: -63,-20 + 95: -56,-23 + 96: -56,-24 + 103: -63,-21 + 104: -63,-20 - node: color: '#BC863FFF' id: BrickTileWhiteLineE decals: - 6582: -63,-19 + 6097: -63,-19 - node: color: '#C6FF91D8' id: BrickTileWhiteLineE decals: - 2412: -104,-8 + 2178: -104,-8 - node: color: '#DE3A3ACC' id: BrickTileWhiteLineE decals: - 1677: -174,6 - 1678: -170,6 - 1679: -172,4 - 1680: -168,4 - 1681: -164,4 - 1682: -160,4 - 1683: -156,4 - 1756: -152,4 - 1772: -168,6 - 1788: -152,1 - 1789: -152,0 - 1805: -156,8 - 1808: -156,10 - 1855: -152,9 + 1443: -174,6 + 1444: -170,6 + 1445: -172,4 + 1446: -168,4 + 1447: -164,4 + 1448: -160,4 + 1449: -156,4 + 1522: -152,4 + 1538: -168,6 + 1554: -152,1 + 1555: -152,0 + 1571: -156,8 + 1574: -156,10 + 1621: -152,9 - node: color: '#DE3A3AD8' id: BrickTileWhiteLineE decals: - 2145: -155,-9 - 2211: -167,-13 - 2212: -168,-11 - 2215: -167,-9 - 2245: -162,-13 - 2260: -155,-10 - 2263: -159,-10 - 2274: -178,6 - 2282: -176,6 - 2296: -164,8 - 2299: -163,11 - 6755: -176,0 - 6756: -176,1 - 6757: -176,2 - - node: - color: '#FBB2FFA5' - id: BrickTileWhiteLineE - decals: - 824: -198,5 - 825: -196,5 - 892: -198,9 - 893: -196,9 - - node: - color: '#FF9821CD' - id: BrickTileWhiteLineE - decals: - 165: -191,-25 + 1911: -155,-9 + 1977: -167,-13 + 1978: -168,-11 + 1981: -167,-9 + 2011: -162,-13 + 2026: -155,-10 + 2029: -159,-10 + 2040: -178,6 + 2048: -176,6 + 2062: -164,8 + 2065: -163,11 + 6270: -176,0 + 6271: -176,1 + 6272: -176,2 - node: color: '#2D2D2DE8' id: BrickTileWhiteLineN decals: - 326: -101,14 - 327: -105,14 - 381: -101,6 + 285: -101,14 + 286: -105,14 + 340: -101,6 - node: color: '#4B709CBF' id: BrickTileWhiteLineN decals: - 2960: -21,-12 + 2703: -21,-12 - node: color: '#4B709CF2' id: BrickTileWhiteLineN decals: - 6849: -21,-16 + 6364: -21,-16 - node: color: '#52B4E9A6' id: BrickTileWhiteLineN decals: - 776: -190,-10 - 777: -188,-9 + 728: -190,-10 + 729: -188,-9 - node: color: '#639137D8' id: BrickTileWhiteLineN decals: - 2403: -107,-7 - 2404: -106,-7 + 2169: -107,-7 + 2170: -106,-7 - node: color: '#8C347FD8' id: BrickTileWhiteLineN decals: - 2429: -33,-12 - 2430: -31,-12 - 2441: -33,-9 - 2442: -32,-9 - 2443: -31,-9 - - node: - color: '#96DAFFA5' - id: BrickTileWhiteLineN - decals: - 788: -182,-25 - 790: -184,-23 - 791: -185,-23 - 792: -186,-23 - 793: -188,-23 + 2195: -33,-12 + 2196: -31,-12 + 2207: -33,-9 + 2208: -32,-9 + 2209: -31,-9 - node: color: '#96DAFFA6' id: BrickTileWhiteLineN decals: - 742: -185,-13 - 743: -186,-13 - 744: -187,-13 - 745: -189,-13 - 746: -190,-13 - 759: -188,-16 - 760: -186,-16 + 694: -185,-13 + 695: -186,-13 + 696: -187,-13 + 697: -189,-13 + 698: -190,-13 + 711: -188,-16 + 712: -186,-16 - node: color: '#9FED58FF' id: BrickTileWhiteLineN decals: - 6592: -27,5 + 6107: -27,5 - node: color: '#B3B3B3C0' id: BrickTileWhiteLineN decals: - 284: -101,6 + 243: -101,6 - node: color: '#BC863FD7' id: BrickTileWhiteLineN decals: - 95: -58,-22 - 112: -59,-22 - 113: -60,-22 - 114: -61,-22 - 122: -66,-23 - 123: -67,-23 + 93: -58,-22 + 99: -59,-22 + 100: -60,-22 + 101: -61,-22 + 109: -66,-23 + 110: -67,-23 - node: color: '#BC863FFF' id: BrickTileWhiteLineN decals: - 6580: -64,-19 + 6095: -64,-19 - node: color: '#C6FF91D8' id: BrickTileWhiteLineN decals: - 2411: -105,-7 + 2177: -105,-7 - node: color: '#DE3A3ACC' id: BrickTileWhiteLineN decals: - 1670: -155,3 - 1671: -159,3 - 1672: -163,3 - 1673: -167,3 - 1674: -171,3 - 1675: -173,5 - 1676: -169,5 - 1742: -166,5 - 1743: -167,5 - 1744: -164,5 - 1745: -162,5 - 1746: -163,5 - 1747: -161,5 - 1748: -160,5 - 1749: -157,5 - 1750: -156,5 - 1751: -155,5 - 1752: -154,5 - 1753: -153,5 - 1796: -153,1 - 1849: -158,11 - 1850: -157,11 - 1851: -154,11 - 1867: -146,15 - 1868: -150,15 - 1869: -150,13 - 1870: -146,13 - 1871: -150,11 - 1872: -150,9 - 1873: -146,9 - 1881: -146,11 + 1436: -155,3 + 1437: -159,3 + 1438: -163,3 + 1439: -167,3 + 1440: -171,3 + 1441: -173,5 + 1442: -169,5 + 1508: -166,5 + 1509: -167,5 + 1510: -164,5 + 1511: -162,5 + 1512: -163,5 + 1513: -161,5 + 1514: -160,5 + 1515: -157,5 + 1516: -156,5 + 1517: -155,5 + 1518: -154,5 + 1519: -153,5 + 1562: -153,1 + 1615: -158,11 + 1616: -157,11 + 1617: -154,11 + 1633: -146,15 + 1634: -150,15 + 1635: -150,13 + 1636: -146,13 + 1637: -150,11 + 1638: -150,9 + 1639: -146,9 + 1647: -146,11 - node: color: '#DE3A3AD8' id: BrickTileWhiteLineN decals: - 2053: -135,-2 - 2054: -132,-2 - 2055: -133,-2 - 2056: -131,-2 - 2057: -137,-2 - 2058: -138,-2 - 2059: -139,-2 - 2060: -140,-2 - 2061: -142,-2 - 2062: -143,-2 - 2063: -144,-2 - 2064: -145,-2 - 2065: -146,-2 - 2075: -152,-3 - 2076: -153,-3 - 2077: -154,-3 - 2078: -155,-3 - 2079: -157,-3 - 2080: -160,-3 - 2081: -159,-3 - 2082: -161,-3 - 2083: -162,-3 - 2084: -163,-3 - 2085: -164,-3 - 2086: -165,-3 - 2087: -166,-3 - 2088: -168,-3 - 2089: -167,-3 - 2090: -169,-3 - 2091: -170,-3 - 2092: -171,-3 - 2093: -172,-3 - 2094: -174,-3 - 2095: -173,-3 - 2096: -175,-3 - 2131: -157,-7 - 2180: -163,-7 - 2181: -164,-7 - 2182: -162,-7 - 2216: -168,-8 - 2224: -163,-12 - 2272: -180,7 - 2273: -179,7 - 2278: -177,5 - 2279: -175,5 - 2298: -165,5 - 2301: -164,12 - 2302: -165,12 - 2303: -166,12 - 6763: -179,3 - 6764: -178,3 - 6765: -177,3 - 6766: -176,3 - - node: - color: '#FBB2FFA5' + 1819: -135,-2 + 1820: -132,-2 + 1821: -133,-2 + 1822: -131,-2 + 1823: -137,-2 + 1824: -138,-2 + 1825: -139,-2 + 1826: -140,-2 + 1827: -142,-2 + 1828: -143,-2 + 1829: -144,-2 + 1830: -145,-2 + 1831: -146,-2 + 1841: -152,-3 + 1842: -153,-3 + 1843: -154,-3 + 1844: -155,-3 + 1845: -157,-3 + 1846: -160,-3 + 1847: -159,-3 + 1848: -161,-3 + 1849: -162,-3 + 1850: -163,-3 + 1851: -164,-3 + 1852: -165,-3 + 1853: -166,-3 + 1854: -168,-3 + 1855: -167,-3 + 1856: -169,-3 + 1857: -170,-3 + 1858: -171,-3 + 1859: -172,-3 + 1860: -174,-3 + 1861: -173,-3 + 1862: -175,-3 + 1897: -157,-7 + 1946: -163,-7 + 1947: -164,-7 + 1948: -162,-7 + 1982: -168,-8 + 1990: -163,-12 + 2038: -180,7 + 2039: -179,7 + 2044: -177,5 + 2045: -175,5 + 2064: -165,5 + 2067: -164,12 + 2068: -165,12 + 2069: -166,12 + 6278: -179,3 + 6279: -178,3 + 6280: -177,3 + 6281: -176,3 + - node: + color: '#F98AFFB2' id: BrickTileWhiteLineN decals: - 835: -198,1 - 836: -197,1 - 837: -196,1 + 7046: -202,4 + 7051: -201,10 + 7052: -199,10 + 7053: -198,10 + 7063: -193,5 - node: color: '#2D2D2DE8' id: BrickTileWhiteLineS decals: - 328: -105,12 - 329: -101,12 - 375: -101,4 - 377: -99,4 + 287: -105,12 + 288: -101,12 + 334: -101,4 + 336: -99,4 - node: color: '#52B4E9A6' id: BrickTileWhiteLineS decals: - 771: -189,-11 - 772: -190,-11 + 723: -189,-11 + 724: -190,-11 - node: color: '#639137D8' id: BrickTileWhiteLineS decals: - 2382: -108,-17 - 2383: -107,-17 - 2384: -106,-17 - 2385: -105,-17 - 2386: -104,-17 + 2148: -108,-17 + 2149: -107,-17 + 2150: -106,-17 + 2151: -105,-17 + 2152: -104,-17 - node: - color: '#8C347FD8' + color: '#765428B4' id: BrickTileWhiteLineS decals: - 2431: -33,-10 - 2432: -31,-10 - 2437: -33,-13 - 2438: -32,-13 + 7068: -73,-17 + 7069: -75,-17 + 7070: -77,-17 + 7082: -75,-22 - node: - color: '#96DAFFA5' + color: '#8C347FD8' id: BrickTileWhiteLineS decals: - 805: -188,-26 + 2197: -33,-10 + 2198: -31,-10 + 2203: -33,-13 + 2204: -32,-13 - node: color: '#96DAFFA6' id: BrickTileWhiteLineS decals: - 753: -190,-21 - 754: -189,-21 - 755: -188,-21 - 756: -186,-21 - 757: -185,-21 - 758: -184,-21 - 767: -189,-18 - 768: -185,-18 + 705: -190,-21 + 706: -189,-21 + 707: -188,-21 + 708: -186,-21 + 709: -185,-21 + 710: -184,-21 + 719: -189,-18 + 720: -185,-18 + - node: + color: '#BC863FCC' + id: BrickTileWhiteLineS + decals: + 6523: -64,-28 + 6524: -65,-28 + 6525: -66,-28 + 6527: -59,-27 - node: color: '#BC863FD7' id: BrickTileWhiteLineS decals: - 101: -62,-25 - 102: -61,-25 - 103: -59,-25 - 104: -57,-25 - 130: -68,-26 - 131: -67,-26 - 132: -66,-26 - 133: -65,-26 - 134: -64,-26 + 117: -68,-26 - node: color: '#BC863FFF' id: BrickTileWhiteLineS decals: - 6589: -64,-17 + 6104: -64,-17 - node: color: '#DE3A3ACC' id: BrickTileWhiteLineS decals: - 1691: -171,5 - 1692: -167,5 - 1693: -163,5 - 1694: -159,5 - 1695: -155,5 - 1702: -169,7 - 1719: -170,3 - 1720: -168,3 - 1721: -164,3 - 1722: -166,3 - 1723: -172,3 - 1741: -174,3 - 1757: -153,3 - 1758: -154,3 - 1759: -155,3 - 1760: -157,3 - 1770: -159,3 - 1785: -161,-1 - 1793: -153,-1 - 1852: -157,7 - 1853: -155,7 - 1854: -154,7 - 1874: -146,9 - 1875: -146,11 - 1876: -150,9 - 1877: -150,11 - 1878: -150,13 - 1879: -150,15 - 1880: -146,15 - 1882: -146,13 - 1891: -150,7 - 1892: -149,7 - 1893: -148,7 - 1894: -147,7 - 1895: -146,7 + 1457: -171,5 + 1458: -167,5 + 1459: -163,5 + 1460: -159,5 + 1461: -155,5 + 1468: -169,7 + 1485: -170,3 + 1486: -168,3 + 1487: -164,3 + 1488: -166,3 + 1489: -172,3 + 1507: -174,3 + 1523: -153,3 + 1524: -154,3 + 1525: -155,3 + 1526: -157,3 + 1536: -159,3 + 1551: -161,-1 + 1559: -153,-1 + 1618: -157,7 + 1619: -155,7 + 1620: -154,7 + 1640: -146,9 + 1641: -146,11 + 1642: -150,9 + 1643: -150,11 + 1644: -150,13 + 1645: -150,15 + 1646: -146,15 + 1648: -146,13 + 1657: -150,7 + 1658: -149,7 + 1659: -148,7 + 1660: -147,7 + 1661: -146,7 - node: color: '#DE3A3AD8' id: BrickTileWhiteLineS decals: - 2097: -175,-5 - 2098: -173,-5 - 2099: -172,-5 - 2110: -155,-5 - 2111: -154,-5 - 2112: -153,-5 - 2113: -152,-5 - 2114: -159,-5 - 2115: -160,-5 - 2116: -161,-5 - 2117: -162,-5 - 2118: -163,-5 - 2119: -164,-5 - 2120: -165,-5 - 2121: -166,-5 - 2122: -168,-6 - 2123: -169,-6 - 2124: -170,-6 - 2140: -156,-9 - 2141: -157,-9 - 2142: -158,-9 - 2174: -163,-10 - 2175: -165,-10 - 2204: -168,-14 - 2205: -169,-14 - 2206: -170,-14 - 2213: -167,-10 - 2219: -163,-14 - 2220: -164,-14 - 2250: -159,-11 - 2264: -176,5 - 2265: -178,5 - 2266: -179,5 - 2267: -180,5 - 2276: -175,5 - 2277: -177,5 - 2297: -165,7 - 6758: -178,-1 - 6759: -177,-1 - - node: - color: '#FBB2FFA5' + 1863: -175,-5 + 1864: -173,-5 + 1865: -172,-5 + 1876: -155,-5 + 1877: -154,-5 + 1878: -153,-5 + 1879: -152,-5 + 1880: -159,-5 + 1881: -160,-5 + 1882: -161,-5 + 1883: -162,-5 + 1884: -163,-5 + 1885: -164,-5 + 1886: -165,-5 + 1887: -166,-5 + 1888: -168,-6 + 1889: -169,-6 + 1890: -170,-6 + 1906: -156,-9 + 1907: -157,-9 + 1908: -158,-9 + 1940: -163,-10 + 1941: -165,-10 + 1970: -168,-14 + 1971: -169,-14 + 1972: -170,-14 + 1979: -167,-10 + 1985: -163,-14 + 1986: -164,-14 + 2016: -159,-11 + 2030: -176,5 + 2031: -178,5 + 2032: -179,5 + 2033: -180,5 + 2042: -175,5 + 2043: -177,5 + 2063: -165,7 + 6273: -178,-1 + 6274: -177,-1 + - node: + color: '#F98AFFB2' id: BrickTileWhiteLineS decals: - 838: -198,1 - 839: -197,1 - 840: -196,1 + 7044: -197,1 + 7045: -196,1 + 7049: -199,12 + 7050: -195,12 + 7056: -201,6 + 7057: -199,6 + 7058: -199,1 + 7060: -193,3 + 7061: -194,3 - node: color: '#2D2D2DE8' id: BrickTileWhiteLineW decals: - 311: -104,7 - 313: -104,11 + 270: -104,7 + 272: -104,11 - node: cleanable: True color: '#334E6DBF' id: BrickTileWhiteLineW decals: - 6449: 3,-6 + 5965: 3,-6 - node: color: '#4B709CBF' id: BrickTileWhiteLineW decals: - 2961: -24,-15 - 2965: -20,-14 - 2966: -20,-13 + 2704: -24,-15 + 2708: -20,-14 + 2709: -20,-13 - node: color: '#4B709CF2' id: BrickTileWhiteLineW decals: - 6848: -20,-15 - 6850: -24,-16 + 6363: -20,-15 + 6365: -24,-16 - node: color: '#639137D8' id: BrickTileWhiteLineW decals: - 2398: -109,-13 - 2399: -109,-14 - 2400: -109,-15 - 2408: -109,-8 - 2409: -109,-9 + 2164: -109,-13 + 2165: -109,-14 + 2166: -109,-15 + 2174: -109,-8 + 2175: -109,-9 - node: - color: '#96DAFFA5' + color: '#765428B4' id: BrickTileWhiteLineW decals: - 784: -189,-25 + 7074: -76,-18 + 7075: -76,-19 + 7076: -76,-20 + 7077: -76,-21 + 7087: -74,-18 - node: color: '#96DAFFA6' id: BrickTileWhiteLineW decals: - 720: -191,-19 - 721: -191,-18 - 722: -191,-17 - 723: -191,-16 - 724: -191,-15 + 672: -191,-19 + 673: -191,-18 + 674: -191,-17 + 675: -191,-16 + 676: -191,-15 + - node: + color: '#BC863FCC' + id: BrickTileWhiteLineW + decals: + 6520: -67,-27 - node: color: '#BC863FD7' id: BrickTileWhiteLineW decals: - 118: -65,-20 - 119: -65,-21 - 120: -65,-22 - 127: -69,-24 + 105: -65,-20 + 106: -65,-21 + 107: -65,-22 + 114: -69,-24 - node: color: '#BC863FFF' id: BrickTileWhiteLineW decals: - 6581: -65,-19 + 6096: -65,-19 - node: color: '#C6FF91D8' id: BrickTileWhiteLineW decals: - 2376: -110,-11 + 2142: -110,-11 - node: color: '#DE3A3ACC' id: BrickTileWhiteLineW decals: - 1684: -154,4 - 1685: -158,4 - 1686: -162,4 - 1687: -166,4 - 1688: -168,6 - 1689: -170,4 - 1690: -172,6 - 1724: -174,4 - 1725: -174,6 - 1794: -154,0 - 1809: -156,8 - 1810: -156,10 - 1837: -161,8 - 1838: -161,9 - 1839: -161,11 + 1450: -154,4 + 1451: -158,4 + 1452: -162,4 + 1453: -166,4 + 1454: -168,6 + 1455: -170,4 + 1456: -172,6 + 1490: -174,4 + 1491: -174,6 + 1560: -154,0 + 1575: -156,8 + 1576: -156,10 + 1603: -161,8 + 1604: -161,9 + 1605: -161,11 - node: color: '#DE3A3AD8' id: BrickTileWhiteLineW decals: - 2073: -150,-1 - 2074: -150,-2 - 2143: -159,-9 - 2177: -165,-9 - 2178: -165,-8 - 2210: -170,-11 - 2225: -165,-13 - 2261: -155,-10 - 2262: -159,-10 - 2271: -181,6 - 2284: -176,6 - 2295: -166,8 - 2305: -167,11 - 6750: -180,2 - 6751: -180,1 - 6752: -180,0 - - node: - color: '#FBB2FFA5' + 1839: -150,-1 + 1840: -150,-2 + 1909: -159,-9 + 1943: -165,-9 + 1944: -165,-8 + 1976: -170,-11 + 1991: -165,-13 + 2027: -155,-10 + 2028: -159,-10 + 2037: -181,6 + 2050: -176,6 + 2061: -166,8 + 2071: -167,11 + 6265: -180,2 + 6266: -180,1 + 6267: -180,0 + - node: + color: '#F98AFFB2' id: BrickTileWhiteLineW decals: - 822: -198,5 - 823: -196,5 - 894: -196,9 - 895: -198,9 + 7054: -202,9 + 7055: -202,7 - node: cleanable: True color: '#FF9821BF' id: BrickTileWhiteLineW decals: - 6452: -55,-7 - 6453: -55,-6 - 6454: -55,-5 + 5968: -55,-7 + 5969: -55,-6 + 5970: -55,-5 - node: - color: '#FFFFFFFF' - id: Bushb1 + color: '#FF8253FF' + id: BushATwo decals: - 68: -31.099854,1.783299 - 69: -23.709229,0.14267397 + 7251: -32.958546,-5.105145 - node: - color: '#FFFFFFFF' - id: Bushb2 + color: '#FF8253FF' + id: BushCOne decals: - 75: -33.1987,-5.0718517 + 7134: -224.75887,-6.542556 + 7177: -129.56268,-4.9398537 - node: - color: '#FFFFFFFF' - id: Bushd4 - decals: - 74: -40.052597,-1.9889104 - - node: - color: '#FFFFFFFF' - id: Bushe4 + color: '#FF8253FF' + id: BushCThree decals: - 3217: -208.01654,11.276756 + 7250: -32.871277,-1.0412385 - node: - color: '#FFFFFFFF' - id: Bushf1 + color: '#FF8253FF' + id: BushDThree decals: - 70: -31.222458,-3.9732857 - 73: -32.493046,-0.97328544 - 76: -38.23424,-5.6968517 + 7172: -140.87988,-3.954255 + 7173: -130.50801,-4.6833277 + 7186: -17.903019,3.06491 - node: color: '#FFFFFFFF' - id: Bushf3 + id: BushDTwo decals: - 77: -29.881218,0.8110174 + 6629: -219.17488,-11.981637 - node: - color: '#FFFFFFFF' - id: Bushg3 + color: '#FF8253FF' + id: Bushc2 decals: - 72: -34.41492,-1.6607854 + 7120: -225.60219,-13.902714 - node: - color: '#FFFFFFFF' - id: Bushg4 + color: '#FF8253FF' + id: Bushd3 decals: - 6565: -128.18146,-4.754461 + 7249: -30.967438,-6.941329 - node: - color: '#FFFFFFFF' - id: Bushi1 - decals: - 59: -33,-2 - - node: - color: '#FFFFFFFF' - id: Bushi2 + color: '#FF8253FF' + id: Bushd4 decals: - 83: -20.117018,3.0607655 - 84: -18.163893,2.8732655 + 7095: -195.9741,4.959999 - node: - color: '#FFFFFFFF' - id: Bushi3 + color: '#FF8253FF' + id: Bushf1 decals: - 65: -38.18067,-4.136546 + 7112: -207.99796,6.9118156 + 7121: -224.15717,-14.847809 + 7171: -140.00206,-4.885848 - node: - color: '#FFFFFFFF' - id: Bushj2 + color: '#FF8253FF' + id: Bushf3 decals: - 2951: -140.70816,-4.155355 + 7094: -195.9336,10.941097 + 7185: -19.22649,2.8758912 + 7248: -40.218777,-2.1618505 - node: - color: '#FFFFFFFF' - id: Bushj3 + color: '#FF8253FF' + id: Bushg1 decals: - 1359: -197,9 + 7093: -198.09436,4.9329963 + 7141: -222.79588,-2.415415 - node: - color: '#FFFFFFFF' - id: Bushk1 + color: '#FF8253FF' + id: Bushg4 decals: - 64: -34.99317,-2.5896714 - 2907: -197.01476,15.011962 - 2954: -141.39566,-4.655355 - 3215: -208.00958,10.388281 + 7119: -228.24913,-13.524676 + 7246: -37.855434,-3.6605008 - node: - color: '#FFFFFFFF' - id: Bushk2 + color: '#FF8253FF' + id: Bushh3 decals: - 3216: -207.98875,6.3745246 + 7158: -221.9271,-5.623625 + 7176: -129.84628,-4.210781 + 7247: -38.449646,-5.834218 - node: - color: '#FFFFFFFF' - id: Bushk3 + color: '#FF8253FF' + id: Bushi1 decals: - 2955: -140.13004,-4.061605 + 7118: -228.14108,-14.969321 + 7133: -228.22649,-10.051409 + 7135: -224.02768,-5.8404856 + 7159: -219.76633,-8.107874 + 7244: -31.194063,-5.15915 - node: - color: '#FFFFFFFF' - id: Bushl2 + color: '#FF8253FF' + id: Bushi3 decals: - 79: -31.099968,2.9223454 - 80: -23.928093,1.1364098 - 6568: -129.74396,-4.832586 + 7169: -141.2445,-4.9128513 + 7170: -140.02907,-4.210781 + 7174: -128.5093,-4.1297727 - node: - color: '#FFFFFFFF' - id: Bushl3 + color: '#FF8253FF' + id: Bushi4 decals: - 71: -32.941208,-6.9264107 - 85: -19.054518,3.0295155 + 7114: -208.06548,2.5913835 - node: - color: '#FFFFFFFF' - id: Bushl4 + color: '#FF8253FF' + id: Bushj3 decals: - 6567: -128.22833,-4.020086 + 7111: -207.93042,10.665192 - node: - color: '#FFFFFFFF' - id: Bushm1 + color: '#FF8253FF' + id: Bushk1 decals: - 67: -29.037354,-0.7682712 - 78: -31.131218,5.09422 - 1360: -197,5 - 3212: -208.03043,7.885092 - 6566: -130.80646,-4.066961 + 7175: -128.33374,-4.993859 - node: - color: '#FFFFFFFF' - id: Bushm2 + color: '#FF8253FF' + id: Bushk2 decals: - 3214: -207.98875,3.693696 + 7113: -207.98444,3.2664514 + 7132: -227.01105,-6.06851 + 7157: -219.82034,-5.745137 + 7242: -23.835165,-0.076108724 + 7243: -31.18179,2.9211907 - node: - color: '#FFFFFFFF' - id: Bushm4 + color: '#FF8253FF' + id: Bushl2 decals: - 3213: -207.98181,2.3117514 + 7245: -34.924686,-0.9197266 - node: - color: '#FFFFFFFF' + color: '#FF8253FF' id: Bushn1 decals: - 66: -28.153858,0.9348538 - 3218: -208.05125,11.925437 + 7136: -225.0512,-3.9502964 + 7168: -141.98727,-4.035263 + 7184: -20.522955,3.0514085 + 7241: -28.143202,-0.7916805 - node: color: '#0E7F1BCC' id: CheckerNESW decals: - 1658: -166,-1 - 1659: -164,1 + 1424: -166,-1 + 1425: -164,1 - node: color: '#18A2D5CC' id: CheckerNESW decals: - 1648: -170,-1 - 1649: -168,1 + 1414: -170,-1 + 1415: -168,1 - node: color: '#D58C18CC' id: CheckerNESW decals: - 1654: -174,-1 - 1655: -172,1 + 1420: -174,-1 + 1421: -172,1 - node: color: '#0E7F1BCC' id: CheckerNWSE decals: - 1656: -164,-1 - 1657: -166,1 + 1422: -164,-1 + 1423: -166,1 - node: color: '#18A2D5CC' id: CheckerNWSE decals: - 1650: -168,-1 - 1651: -170,1 + 1416: -168,-1 + 1417: -170,1 - node: color: '#996031C1' id: CheckerNWSE decals: - 86: -67,-21 - 87: -68,-21 - 88: -69,-21 - 89: -69,-20 - 90: -68,-20 - 91: -67,-20 - 92: -67,-19 - 93: -68,-19 - 94: -69,-19 + 84: -67,-21 + 85: -68,-21 + 86: -69,-21 + 87: -69,-20 + 88: -68,-20 + 89: -67,-20 + 90: -67,-19 + 91: -68,-19 + 92: -69,-19 - node: color: '#D58C18CC' id: CheckerNWSE decals: - 1652: -172,-1 - 1653: -174,1 + 1418: -172,-1 + 1419: -174,1 - node: color: '#0093AA8C' id: ConcreteTrimBox decals: - 305: -59,11 + 264: -59,11 - node: color: '#169C9CD8' id: ConcreteTrimBox decals: - 2831: -75,17 - 2906: -77,17 + 2575: -75,17 + 2650: -77,17 - node: color: '#4B709CD8' id: ConcreteTrimBox decals: - 1498: -9,4 - 1499: -8,3 - 1500: -10,3 + 1264: -9,4 + 1265: -8,3 + 1266: -10,3 - node: color: '#9FED588C' id: ConcreteTrimBox decals: - 3112: -103,-4 - 3113: -97,-4 - 3114: -91,-4 + 2855: -103,-4 + 2856: -97,-4 + 2857: -91,-4 - node: color: '#B3B3B3FF' id: ConcreteTrimBox decals: - 432: -46,3 + 391: -46,3 - node: color: '#B7B6B3D8' id: ConcreteTrimBox decals: - 1035: -218,-4 + 853: -218,-4 - node: color: '#CC80008C' id: ConcreteTrimBox decals: - 306: -59,8 - 307: -65,8 - 308: -71,8 - 309: -77,8 - 310: -82,8 - 312: -82,-16 - 314: -76,-16 - 315: -70,-16 - 316: -64,-16 - 317: -58,-16 - 318: -52,-16 - 319: -51,-14 - 320: -49,-11 - 321: -43,-11 - 322: -43,-6 - 323: -45,-2 + 265: -59,8 + 266: -65,8 + 267: -71,8 + 268: -77,8 + 269: -82,8 + 271: -82,-16 + 273: -76,-16 + 274: -70,-16 + 275: -64,-16 + 276: -58,-16 + 277: -52,-16 + 278: -51,-14 + 279: -49,-11 + 280: -43,-11 + 281: -43,-6 + 282: -45,-2 - node: color: '#FF98218C' id: ConcreteTrimBox decals: - 1528: -36,-16 - 1529: -30,-16 - 1530: -27,-13 - 1531: -23,-9 - 1532: -17,-9 - 1533: -14,-6 - 1534: -14,1 - 1535: -24,4 - 1536: -18,4 - 3115: -85,-13 - 3116: -82,-16 - 3117: -85,5 + 1294: -36,-16 + 1295: -30,-16 + 1296: -27,-13 + 1297: -23,-9 + 1298: -17,-9 + 1299: -14,-6 + 1300: -14,1 + 1301: -24,4 + 1302: -18,4 + 2858: -85,-13 + 2859: -82,-16 + 2860: -85,5 + - node: + color: '#FF9821B2' + id: ConcreteTrimBox + decals: + 6685: -83,-4 - node: color: '#FFA64759' id: ConcreteTrimBox decals: - 2447: -51,4 - 2448: -51,4 - 2449: -53,8 - 2450: -53,8 - 2451: -53,8 - 2452: -51,-2 - 2453: -51,-2 + 2213: -51,4 + 2214: -51,4 + 2215: -53,8 + 2216: -53,8 + 2217: -53,8 + 2218: -51,-2 + 2219: -51,-2 - node: color: '#169C9CD8' id: ConcreteTrimCornerNe decals: - 2866: -55,24 + 2610: -55,24 - node: color: '#4B709CD8' id: ConcreteTrimCornerNe decals: - 1298: -6,0 - 1332: 4,0 - 1333: 6,-1 - 1401: 1,-3 - 1488: -7,4 - 1506: -8,-1 + 1066: -6,0 + 1100: 4,0 + 1101: 6,-1 + 1167: 1,-3 + 1254: -7,4 + 1272: -8,-1 - node: color: '#774194CD' id: ConcreteTrimCornerNe decals: - 2316: -82,-30 - 2318: -84,-28 + 2082: -82,-30 + 2084: -84,-28 - node: color: '#B3B3B3FF' id: ConcreteTrimCornerNe decals: - 405: -42,-1 - 423: -44,5 - 434: -47,2 - 451: -50,9 - 572: -40,-9 - 621: -123,-2 - 622: -127,0 + 364: -42,-1 + 382: -44,5 + 393: -47,2 + 410: -50,9 + 524: -40,-9 + 573: -123,-2 + 574: -127,0 - node: color: '#B7B6B3D8' id: ConcreteTrimCornerNe decals: - 971: -13,5 - 1128: -186,15 + 796: -13,5 - node: color: '#DE3A3A8C' id: ConcreteTrimCornerNe decals: - 644: -136,4 - 658: -132,7 + 596: -136,4 + 610: -132,7 - node: color: '#F98AFF8C' id: ConcreteTrimCornerNe decals: - 1167: -206,15 + 955: -206,15 - node: color: '#FF98218C' id: ConcreteTrimCornerNe decals: - 209: -84,-10 - 212: -86,-8 - 213: -87,-7 - 339: -46,-5 - 382: -47,-6 + 168: -84,-10 + 171: -86,-8 + 172: -87,-7 + 298: -46,-5 + 341: -47,-6 - node: color: '#FFA647D8' id: ConcreteTrimCornerNe decals: - 2463: -54,5 - 2481: -60,0 - 2493: -60,5 - 2527: -54,-1 - 2539: -53,-5 - 2548: -65,1 - 2567: -68,-8 - 2600: -65,5 - 2605: -68,-2 - 2650: -72,3 - 2668: -79,3 - 2669: -79,-10 + 2229: -54,5 + 2247: -60,0 + 2259: -60,5 + 2293: -54,-1 + 2305: -53,-5 + 2314: -65,1 + 2333: -68,-8 + 2366: -65,5 + 2371: -68,-2 + 2416: -72,3 + 2434: -79,3 + 2435: -79,-10 - node: color: '#169C9CD8' id: ConcreteTrimCornerNw decals: - 2753: -56,19 - 2842: -79,24 + 2497: -56,19 + 2586: -79,24 - node: color: '#4B709CD8' id: ConcreteTrimCornerNw decals: - 1294: -11,0 - 1323: -5,-3 - 1324: -4,-1 - 1325: -3,0 - 1403: -2,-3 - 1489: -11,4 - 1507: -10,-1 + 1062: -11,0 + 1091: -5,-3 + 1092: -4,-1 + 1093: -3,0 + 1169: -2,-3 + 1255: -11,4 + 1273: -10,-1 - node: color: '#774194CD' id: ConcreteTrimCornerNw decals: - 2325: -86,-34 + 2091: -86,-34 - node: color: '#B3B3B3FF' id: ConcreteTrimCornerNw decals: - 425: -48,5 - 436: -45,2 - 482: -87,3 - 483: -88,2 - 484: -90,1 - 498: -90,-7 - 623: -130,0 - 3194: -210,15 + 384: -48,5 + 395: -45,2 + 441: -87,3 + 442: -88,2 + 443: -90,1 + 457: -90,-7 + 575: -130,0 + 2937: -210,15 - node: color: '#BC863FCD' id: ConcreteTrimCornerNw decals: - 2336: -87,-28 + 2102: -87,-28 - node: color: '#DE3A3A8C' id: ConcreteTrimCornerNw decals: - 629: -138,2 - 652: -138,7 - 665: -134,4 + 581: -138,2 + 604: -138,7 + 617: -134,4 - node: color: '#DE3A3AD8' id: ConcreteTrimCornerNw decals: - 6551: -170,-10 - - node: - color: '#F98AFF8C' - id: ConcreteTrimCornerNw - decals: - 1199: -188,15 + 6067: -170,-10 - node: color: '#FF98218C' id: ConcreteTrimCornerNw decals: - 167: -52,-10 - 386: -50,-6 + 126: -52,-10 + 345: -50,-6 - node: color: '#FFA647D8' id: ConcreteTrimCornerNw decals: - 2460: -58,5 - 2490: -63,5 - 2499: -63,0 - 2528: -56,-1 - 2569: -70,-8 - 2595: -70,5 - 2608: -70,-2 - 2651: -73,3 - 2664: -80,3 + 2226: -58,5 + 2256: -63,5 + 2265: -63,0 + 2294: -56,-1 + 2335: -70,-8 + 2361: -70,5 + 2374: -70,-2 + 2417: -73,3 + 2430: -80,3 - node: color: '#169C9CD8' id: ConcreteTrimCornerSe decals: - 2744: -52,19 - 2758: -56,14 - 2802: -58,17 - 2823: -66,17 - 2828: -72,17 - 2867: -55,23 + 2488: -52,19 + 2502: -56,14 + 2546: -58,17 + 2567: -66,17 + 2572: -72,17 + 2611: -55,23 - node: color: '#4B709CD8' id: ConcreteTrimCornerSe decals: - 1299: -6,-1 - 1303: -7,-5 - 1334: 6,-7 - 1335: 4,-8 - 1394: 1,-5 - 1491: -7,2 - 1504: -8,-4 - 6868: -26,-17 + 1067: -6,-1 + 1071: -7,-5 + 1102: 6,-7 + 1103: 4,-8 + 1160: 1,-5 + 1257: -7,2 + 1270: -8,-4 + 6383: -26,-17 - node: color: '#96DAFF8C' id: ConcreteTrimCornerSe decals: - 1228: -195,-21 + 997: -195,-21 - node: color: '#B3B3B3FF' id: ConcreteTrimCornerSe decals: - 417: -44,1 - 433: -47,4 - 522: -78,-18 - 550: -50,-17 - 556: -49,-13 - 560: -46,-13 - 569: -40,-13 + 376: -44,1 + 392: -47,4 + 502: -50,-17 + 508: -49,-13 + 512: -46,-13 + 521: -40,-13 - node: color: '#B7B6B3D8' id: ConcreteTrimCornerSe decals: - 968: -13,-10 - 998: -123,-6 - 999: -127,-8 - 1051: -213,-21 - 1089: -177,-21 + 793: -13,-10 + 822: -123,-6 + 823: -127,-8 + 866: -213,-21 + 900: -177,-21 - node: color: '#DE3A3A8C' id: ConcreteTrimCornerSe decals: - 645: -136,3 - 662: -132,3 + 597: -136,3 + 614: -132,3 - node: color: '#FF98218C' id: ConcreteTrimCornerSe decals: - 214: -87,-1 - 215: -86,0 - 216: -84,2 - 335: -46,-8 - 380: -47,-7 + 173: -87,-1 + 174: -86,0 + 175: -84,2 + 294: -46,-8 + 339: -47,-7 + - node: + color: '#FF9821B2' + id: ConcreteTrimCornerSe + decals: + 6684: -79,-11 - node: color: '#FFA647D8' id: ConcreteTrimCornerSe decals: - 2467: -54,1 - 2485: -60,2 - 2516: -58,-7 - 2536: -53,-8 - 2579: -65,-13 - 2602: -65,3 - 2607: -68,-6 - 2632: -72,-11 - 2663: -79,2 - 2671: -79,-11 + 2233: -54,1 + 2251: -60,2 + 2282: -58,-7 + 2302: -53,-8 + 2345: -65,-13 + 2368: -65,3 + 2373: -68,-6 + 2398: -72,-11 + 2429: -79,2 - node: color: '#169C9CD8' id: ConcreteTrimCornerSw decals: - 2761: -62,14 - 2811: -61,17 - 2820: -70,17 - 2830: -74,17 - 2834: -75,19 - 2835: -76,20 - 2836: -77,21 - 2840: -79,22 + 2505: -62,14 + 2555: -61,17 + 2564: -70,17 + 2574: -74,17 + 2578: -75,19 + 2579: -76,20 + 2580: -77,21 + 2584: -79,22 - node: color: '#4B709CD8' id: ConcreteTrimCornerSw decals: - 1311: -11,-5 - 1320: -5,-5 - 1321: -4,-7 - 1322: -3,-8 - 1361: -2,-5 - 1490: -11,2 - 1505: -10,-4 - 6594: -37,-17 + 1079: -11,-5 + 1088: -5,-5 + 1089: -4,-7 + 1090: -3,-8 + 1127: -2,-5 + 1256: -11,2 + 1271: -10,-4 + 6109: -37,-17 - node: color: '#96DAFF8C' id: ConcreteTrimCornerSw decals: - 1227: -179,-21 + 996: -179,-21 - node: color: '#B3B3B3FF' id: ConcreteTrimCornerSw decals: - 416: -48,1 - 435: -45,4 - 494: -87,-11 - 495: -88,-10 - 496: -90,-9 - 497: -86,-17 - 504: -90,-1 - 521: -79,-18 - 559: -47,-13 - 561: -44,-13 - 2937: -148,-7 - 2938: -150,-6 - 3206: -210,0 + 375: -48,1 + 394: -45,4 + 453: -87,-11 + 454: -88,-10 + 455: -90,-9 + 456: -86,-17 + 463: -90,-1 + 511: -47,-13 + 513: -44,-13 + 2680: -148,-7 + 2681: -150,-6 + 2947: -210,0 - node: color: '#B7B6B3D8' id: ConcreteTrimCornerSw decals: - 1052: -215,-21 - 1138: -197,-21 + 867: -215,-21 + 927: -197,-21 - node: color: '#BC863FCD' id: ConcreteTrimCornerSw decals: - 2335: -87,-32 - 2338: -86,-35 + 2101: -87,-32 + 2104: -86,-35 - node: color: '#DE3A3A8C' id: ConcreteTrimCornerSw decals: - 664: -134,3 + 616: -134,3 - node: color: '#FF98218C' id: ConcreteTrimCornerSw decals: - 272: -52,-3 - 385: -50,-7 + 231: -52,-3 + 344: -50,-7 - node: color: '#FFA647D8' id: ConcreteTrimCornerSw decals: - 2486: -63,2 - 2551: -70,0 - 2574: -70,-13 - 2606: -70,-6 - 2633: -73,-11 - 2670: -80,-11 + 2252: -63,2 + 2317: -70,0 + 2340: -70,-13 + 2372: -70,-6 + 2399: -73,-11 + 2436: -80,-11 - node: color: '#9FED588C' id: ConcreteTrimEndE decals: - 3111: -108,-4 - - node: - color: '#B7B6B3D8' - id: ConcreteTrimEndE - decals: - 1034: -217,-4 + 2854: -108,-4 - node: color: '#FFA647D8' id: ConcreteTrimEndE decals: - 2652: -77,-8 - 2655: -77,0 + 2418: -77,-8 + 2421: -77,0 - node: color: '#4B709CD8' id: ConcreteTrimEndN decals: - 1501: -9,2 - 1502: -9,-2 + 1267: -9,2 + 1268: -9,-2 - node: color: '#B3B3B3FF' id: ConcreteTrimEndN decals: - 618: -103,-1 + 570: -103,-1 - node: color: '#B7B6B3D8' id: ConcreteTrimEndN decals: - 948: -24,-7 - 995: -78,10 - 1029: -219,-3 - 1030: -217,-3 + 773: -24,-7 - node: color: '#4B709CD8' id: ConcreteTrimEndS decals: - 1318: -8,-6 - 1319: -10,-6 - 1503: -9,-3 + 1086: -8,-6 + 1087: -10,-6 + 1269: -9,-3 - node: color: '#B7B6B3D8' id: ConcreteTrimEndS decals: - 1031: -219,-5 - 1032: -217,-5 - 1079: -182,-3 + 891: -182,-3 - node: color: '#BC863FCD' id: ConcreteTrimEndS decals: - 2330: -84,-37 + 2096: -84,-37 - node: color: '#F98AFF8C' id: ConcreteTrimEndS decals: - 1173: -197,-3 + 961: -197,-3 - node: color: '#FFA647D8' id: ConcreteTrimEndS decals: - 2510: -63,-8 + 2276: -63,-8 - node: - color: '#B7B6B3D8' + color: '#DE3A3AD8' id: ConcreteTrimEndW decals: - 1033: -219,-4 + 6070: -171,-12 - node: - color: '#DE3A3AD8' + color: '#FF9821C0' id: ConcreteTrimEndW decals: - 6554: -171,-12 + 6512: -81,-8 - node: color: '#FFA647D8' id: ConcreteTrimEndW decals: - 2656: -81,0 - 2665: -81,2 - 2672: -81,-10 + 2422: -81,0 + 2431: -81,2 + 2437: -81,-10 - node: color: '#0093AA8C' id: ConcreteTrimInnerNe decals: - 293: -58,11 - 296: -58,9 - 301: -60,12 + 252: -58,11 + 255: -58,9 + 260: -60,12 - node: color: '#169C9CD8' id: ConcreteTrimInnerNe decals: - 2763: -62,14 - 2779: -59,14 - 2805: -61,17 - 2898: -75,19 - 2899: -67,19 + 2507: -62,14 + 2523: -59,14 + 2549: -61,17 + 2642: -75,19 + 2643: -67,19 - node: color: '#4B709CD8' id: ConcreteTrimInnerNe decals: - 1287: -13,-4 - 1305: -7,-4 - 1351: 6,-5 - 1352: 6,-3 - 1353: 4,-1 - 1372: -4,-7 - 1373: 0,-7 - 1374: 0,-3 - 1375: -4,-4 - 1400: 1,-4 - 1410: -3,-6 - 1430: 4,-7 - 1431: 4,-4 - 1432: 5,-6 - 1437: 5,-3 - 1443: 2,-2 - 1444: -3,-3 - 1447: 1,-6 - 1486: -9,0 - 1509: -9,-1 - 1510: -8,-2 - 1521: -10,-2 - 1522: -10,-4 - 1523: -9,-4 - 6870: -26,-13 + 1055: -13,-4 + 1073: -7,-4 + 1119: 6,-5 + 1120: 6,-3 + 1121: 4,-1 + 1138: -4,-7 + 1139: 0,-7 + 1140: 0,-3 + 1141: -4,-4 + 1166: 1,-4 + 1176: -3,-6 + 1196: 4,-7 + 1197: 4,-4 + 1198: 5,-6 + 1203: 5,-3 + 1209: 2,-2 + 1210: -3,-3 + 1213: 1,-6 + 1252: -9,0 + 1275: -9,-1 + 1276: -8,-2 + 1287: -10,-2 + 1288: -10,-4 + 1289: -9,-4 + 6385: -26,-13 - node: color: '#774194CD' id: ConcreteTrimInnerNe decals: - 2317: -84,-30 + 2083: -84,-30 - node: color: '#96DAFF8C' id: ConcreteTrimInnerNe decals: - 1250: -195,-14 - 1251: -195,-20 + 1019: -195,-14 + 1020: -195,-20 - node: color: '#B3B3B3FF' id: ConcreteTrimInnerNe decals: - 413: -47,-1 - 431: -47,5 - 438: -45,4 - 443: -50,-1 - 444: -50,3 - 475: -86,9 - 552: -50,-16 - 571: -40,-12 - 573: -42,-9 - 614: -103,-3 - 626: -128,0 + 372: -47,-1 + 390: -47,5 + 397: -45,4 + 402: -50,-1 + 403: -50,3 + 434: -86,9 + 504: -50,-16 + 523: -40,-12 + 525: -42,-9 + 566: -103,-3 + 578: -128,0 - node: color: '#B3B9B0D1' id: ConcreteTrimInnerNe decals: - 1265: -215,-7 - 1266: -197,-7 - 1270: -179,-7 + 1033: -215,-7 + 1034: -197,-7 + 1038: -179,-7 - node: color: '#B7B6B3D8' id: ConcreteTrimInnerNe decals: - 913: -40,-10 - 925: -31,-15 - 926: -38,-15 - 944: -26,-8 - 947: -24,-8 - 973: -14,5 - 988: -17,5 - 989: -25,5 - 997: -78,9 - 1011: -127,-2 - 1012: -123,-3 - 1055: -213,-20 - 1062: -213,-14 - 1071: -208,-3 - 1109: -186,-3 + 738: -40,-10 + 750: -31,-15 + 751: -38,-15 + 769: -26,-8 + 772: -24,-8 + 798: -14,5 + 813: -17,5 + 814: -25,5 + 821: -78,9 + 835: -127,-2 + 836: -123,-3 + 870: -213,-20 + 883: -208,-3 - node: color: '#BC863FCD' id: ConcreteTrimInnerNe decals: - 2332: -82,-35 - 2344: -85,-28 + 2098: -82,-35 + 2110: -85,-28 - node: color: '#DE3A3A8C' id: ConcreteTrimInnerNe decals: - 633: -135,2 - 643: -137,4 - 672: -134,1 - 675: -133,6 - 683: -133,5 - 685: -134,6 - 693: -137,6 - 694: -136,6 - 708: -133,2 - 710: -134,2 - 713: -137,2 - 715: -136,2 - 718: -136,1 + 585: -135,2 + 595: -137,4 + 624: -134,1 + 627: -133,6 + 635: -133,5 + 637: -134,6 + 645: -137,6 + 646: -136,6 + 660: -133,2 + 662: -134,2 + 665: -137,2 + 667: -136,2 + 670: -136,1 - node: color: '#F98AFF8C' id: ConcreteTrimInnerNe decals: - 1169: -206,11 - 1170: -206,4 - 1259: -206,-3 - - node: - color: '#F98AFFBF' - id: ConcreteTrimInnerNe - decals: - 3197: -208,15 + 957: -206,11 + 958: -206,4 + 1027: -206,-3 - node: color: '#FF98218C' id: ConcreteTrimInnerNe decals: - 204: -84,-15 - 219: -87,-8 - 220: -88,-7 - 341: -46,-6 - 362: -49,-5 - 371: -49,-10 - 391: -50,-7 + 163: -84,-15 + 178: -87,-8 + 179: -88,-7 + 300: -46,-6 + 321: -49,-5 + 330: -49,-10 + 350: -50,-7 - node: color: '#FFA647D8' id: ConcreteTrimInnerNe decals: - 2459: -57,5 - 2482: -60,-1 - 2496: -61,0 - 2524: -55,-1 - 2526: -54,-5 - 2543: -65,-4 - 2564: -68,-10 - 2590: -68,1 - 2616: -68,-4 - 2617: -72,-4 + 2225: -57,5 + 2248: -60,-1 + 2262: -61,0 + 2290: -55,-1 + 2292: -54,-5 + 2309: -65,-4 + 2330: -68,-10 + 2356: -68,1 + 2382: -68,-4 + 2383: -72,-4 - node: color: '#0093AA8C' id: ConcreteTrimInnerNw decals: - 292: -60,11 - 297: -60,9 - 300: -58,12 + 251: -60,11 + 256: -60,9 + 259: -58,12 - node: color: '#169C9CD8' id: ConcreteTrimInnerNw decals: - 2767: -56,14 - 2769: -52,19 - 2778: -60,14 - 2801: -58,17 - 2897: -69,19 - 2900: -64,19 + 2511: -56,14 + 2513: -52,19 + 2522: -60,14 + 2545: -58,17 + 2641: -69,19 + 2644: -64,19 - node: color: '#4B709CD8' id: ConcreteTrimInnerNw decals: - 1285: -15,-4 - 1290: -11,-4 - 1312: -5,-4 - 1355: -4,-3 - 1357: -3,-1 - 1370: -1,-7 - 1376: -1,-3 - 1377: 3,-4 - 1378: 3,-7 - 1404: -2,-4 - 1409: 2,-6 - 1428: 6,-4 - 1429: 6,-7 - 1435: 5,-6 - 1436: 5,-3 - 1442: -3,-2 - 1446: -2,-6 - 1449: 2,-3 - 1487: -9,0 - 1508: -9,-1 - 1511: -10,-2 - 1524: -8,-4 - 1525: -8,-2 - 1526: -9,-4 + 1053: -15,-4 + 1058: -11,-4 + 1080: -5,-4 + 1123: -4,-3 + 1125: -3,-1 + 1136: -1,-7 + 1142: -1,-3 + 1143: 3,-4 + 1144: 3,-7 + 1170: -2,-4 + 1175: 2,-6 + 1194: 6,-4 + 1195: 6,-7 + 1201: 5,-6 + 1202: 5,-3 + 1208: -3,-2 + 1212: -2,-6 + 1215: 2,-3 + 1253: -9,0 + 1274: -9,-1 + 1277: -10,-2 + 1290: -8,-4 + 1291: -8,-2 + 1292: -9,-4 - node: color: '#774194CD' id: ConcreteTrimInnerNw decals: - 2324: -84,-34 + 2090: -84,-34 - node: color: '#96DAFF8C' id: ConcreteTrimInnerNw decals: - 1246: -179,-14 - 1247: -179,-20 + 1015: -179,-14 + 1016: -179,-20 - node: color: '#9FB258D4' id: ConcreteTrimInnerNw decals: - 3102: -134,-6 + 2845: -134,-6 - node: color: '#B3B3B3BF' id: ConcreteTrimInnerNw decals: - 2984: -38,-10 - 2985: -38,-12 + 2727: -38,-10 + 2728: -38,-12 - node: color: '#B3B3B3FF' id: ConcreteTrimInnerNw decals: - 412: -47,-1 - 428: -48,3 - 430: -47,5 - 439: -47,4 - 485: -86,3 - 486: -87,2 - 487: -88,1 - 488: -89,-3 - 499: -89,-7 - 615: -103,-3 - 625: -128,0 - 3196: -208,15 - 3198: -210,5 - 3202: -210,13 - 3203: -210,11 - 3204: -210,3 + 371: -47,-1 + 387: -48,3 + 389: -47,5 + 398: -47,4 + 444: -86,3 + 445: -87,2 + 446: -88,1 + 447: -89,-3 + 458: -89,-7 + 567: -103,-3 + 577: -128,0 + 2939: -210,5 + 2943: -210,13 + 2944: -210,11 + 2945: -210,3 - node: color: '#B3B9B0D1' id: ConcreteTrimInnerNw decals: - 1264: -213,-7 - 1267: -195,-7 - 1271: -177,-7 + 1032: -213,-7 + 1035: -195,-7 + 1039: -177,-7 - node: color: '#B7B6B3D8' id: ConcreteTrimInnerNw decals: - 915: -38,-16 - 923: -28,-15 - 924: -31,-15 - 946: -24,-8 - 961: -15,-8 - 972: -14,5 - 987: -17,5 - 990: -25,5 - 996: -78,9 - 1070: -208,-3 - 1108: -186,-3 - 1136: -197,-14 - 1137: -197,-20 + 740: -38,-16 + 748: -28,-15 + 749: -31,-15 + 771: -24,-8 + 786: -15,-8 + 797: -14,5 + 812: -17,5 + 815: -25,5 + 820: -78,9 + 882: -208,-3 + 925: -197,-14 + 926: -197,-20 - node: color: '#BC863FCD' id: ConcreteTrimInnerNw decals: - 2343: -85,-28 + 2109: -85,-28 - node: color: '#DE3A3A8C' id: ConcreteTrimInnerNw decals: - 632: -135,2 - 648: -138,3 - 666: -133,4 - 673: -133,1 - 674: -136,1 - 678: -137,6 - 681: -133,5 - 686: -133,6 - 688: -134,6 - 689: -137,5 - 695: -136,6 - 709: -133,2 - 711: -134,2 - 712: -137,2 - 714: -136,2 - 717: -134,1 + 584: -135,2 + 600: -138,3 + 618: -133,4 + 625: -133,1 + 626: -136,1 + 630: -137,6 + 633: -133,5 + 638: -133,6 + 640: -134,6 + 641: -137,5 + 647: -136,6 + 661: -133,2 + 663: -134,2 + 664: -137,2 + 666: -136,2 + 669: -134,1 - node: color: '#DE3A3AD8' id: ConcreteTrimInnerNw decals: - 6552: -169,-10 + 6068: -169,-10 - node: color: '#F98AFF8C' id: ConcreteTrimInnerNw decals: - 1200: -188,11 - 1201: -188,4 - 1256: -188,-3 - 1257: -206,-3 + 1025: -206,-3 - node: color: '#FF5C5CD8' id: ConcreteTrimInnerNw decals: - 2942: -150,-3 + 2685: -150,-3 - node: color: '#FF98218C' id: ConcreteTrimInnerNw decals: - 172: -52,-15 - 280: -51,-10 - 348: -44,-6 - 350: -44,-10 - 394: -47,-7 + 131: -52,-15 + 239: -51,-10 + 307: -44,-6 + 309: -44,-10 + 353: -47,-7 - node: color: '#FFA647D8' id: ConcreteTrimInnerNw decals: - 2458: -57,5 - 2479: -58,-1 - 2497: -61,0 - 2504: -63,-4 - 2505: -66,-4 - 2525: -55,-1 - 2563: -66,-10 - 2614: -70,-4 - 2643: -73,-4 - 2666: -80,2 + 2224: -57,5 + 2245: -58,-1 + 2263: -61,0 + 2270: -63,-4 + 2271: -66,-4 + 2291: -55,-1 + 2329: -66,-10 + 2380: -70,-4 + 2409: -73,-4 + 2432: -80,2 - node: color: '#0093AA8C' id: ConcreteTrimInnerSe decals: - 294: -58,11 + 253: -58,11 - node: color: '#169C9CD8' id: ConcreteTrimInnerSe decals: - 2765: -58,14 - 2768: -56,19 - 2776: -60,14 - 2803: -59,17 - 2806: -61,23 - 2824: -66,19 - 2827: -72,19 - 2870: -58,23 - 2895: -75,22 - 2902: -67,23 + 2509: -58,14 + 2512: -56,19 + 2520: -60,14 + 2547: -59,17 + 2550: -61,23 + 2568: -66,19 + 2571: -72,19 + 2614: -58,23 + 2639: -75,22 + 2646: -67,23 - node: color: '#4B709CD8' id: ConcreteTrimInnerSe decals: - 1286: -13,-4 - 1300: -7,-1 - 1304: -7,-4 - 1306: -8,-5 - 1309: -10,-5 - 1349: 6,-5 - 1350: 6,-3 - 1358: 4,-7 - 1371: -4,-4 - 1382: 0,-1 - 1383: -4,-1 - 1393: 1,-4 - 1396: 0,-5 - 1411: -3,-2 - 1424: 4,-1 - 1425: 4,-4 - 1433: 5,-5 - 1439: 5,-2 - 1440: 2,-6 - 1445: -3,-5 - 1450: 1,-2 - 1514: -9,-4 - 1515: -8,-3 - 1516: -10,-1 - 1517: -9,-1 - 1527: -10,-3 - 6597: -36,-17 - 6861: -22,-10 - 6863: -26,-10 - 6869: -26,-14 + 1054: -13,-4 + 1068: -7,-1 + 1072: -7,-4 + 1074: -8,-5 + 1077: -10,-5 + 1117: 6,-5 + 1118: 6,-3 + 1126: 4,-7 + 1137: -4,-4 + 1148: 0,-1 + 1149: -4,-1 + 1159: 1,-4 + 1162: 0,-5 + 1177: -3,-2 + 1190: 4,-1 + 1191: 4,-4 + 1199: 5,-5 + 1205: 5,-2 + 1206: 2,-6 + 1211: -3,-5 + 1216: 1,-2 + 1280: -9,-4 + 1281: -8,-3 + 1282: -10,-1 + 1283: -9,-1 + 1293: -10,-3 + 6112: -36,-17 + 6376: -22,-10 + 6378: -26,-10 + 6384: -26,-14 - node: color: '#6391378C' id: ConcreteTrimInnerSe decals: - 597: -108,-5 + 549: -108,-5 - node: color: '#774194CD' id: ConcreteTrimInnerSe decals: - 2345: -84,-36 + 2111: -84,-36 - node: color: '#96DAFF8C' id: ConcreteTrimInnerSe decals: - 1242: -195,-5 - 1252: -195,-20 - 1253: -195,-14 + 1011: -195,-5 + 1021: -195,-20 + 1022: -195,-14 - node: color: '#9FAF58D3' id: ConcreteTrimInnerSe decals: - 3110: -148,-3 + 2853: -148,-3 - node: color: '#B3B3B3FF' id: ConcreteTrimInnerSe decals: - 414: -47,1 - 440: -45,2 - 445: -50,2 - 514: -85,-17 - 524: -78,-17 - 531: -72,-17 - 551: -50,-16 - 555: -50,-13 - 557: -49,-12 - 562: -46,-12 - 570: -40,-12 - 603: -101,-5 - 2920: -131,-8 - 2933: -145,-7 - 2943: -138,-7 + 373: -47,1 + 399: -45,2 + 404: -50,2 + 473: -85,-17 + 481: -78,-17 + 483: -72,-17 + 503: -50,-16 + 507: -50,-13 + 509: -49,-12 + 514: -46,-12 + 522: -40,-12 + 555: -101,-5 + 2663: -131,-8 + 2676: -145,-7 + 2686: -138,-7 - node: color: '#B3B9B0D1' id: ConcreteTrimInnerSe decals: - 1262: -208,-1 - 1272: -179,-5 + 1030: -208,-1 + 1040: -179,-5 - node: color: '#B7B6B3D8' id: ConcreteTrimInnerSe decals: - 911: -40,-10 - 927: -31,-17 - 928: -27,-17 - 960: -15,-10 - 994: -24,3 - 1003: -128,-8 - 1005: -127,-6 - 1006: -124,-6 - 1013: -123,-5 - 1054: -213,-20 - 1061: -213,-14 - 1106: -177,-5 - 1130: -213,-5 - 1131: -215,-5 - 1152: -188,-1 + 736: -40,-10 + 752: -31,-17 + 753: -27,-17 + 785: -15,-10 + 819: -24,3 + 827: -128,-8 + 829: -127,-6 + 830: -124,-6 + 837: -123,-5 + 869: -213,-20 + 917: -177,-5 + 919: -213,-5 + 920: -215,-5 - node: color: '#DE3A3A8C' id: ConcreteTrimInnerSe decals: - 638: -135,5 - 642: -137,5 - 670: -134,2 - 671: -137,2 - 677: -138,7 - 679: -133,5 - 682: -133,6 - 684: -134,6 - 691: -137,6 - 697: -136,6 - 698: -133,1 - 699: -133,2 - 700: -136,2 - 701: -136,1 - 706: -134,1 - 716: -136,2 + 590: -135,5 + 594: -137,5 + 622: -134,2 + 623: -137,2 + 629: -138,7 + 631: -133,5 + 634: -133,6 + 636: -134,6 + 643: -137,6 + 649: -136,6 + 650: -133,1 + 651: -133,2 + 652: -136,2 + 653: -136,1 + 658: -134,1 + 668: -136,2 - node: color: '#F98AFF8C' id: ConcreteTrimInnerSe decals: - 1168: -206,11 - 1171: -206,4 + 956: -206,11 + 959: -206,4 - node: color: '#F98AFFBF' id: ConcreteTrimInnerSe decals: - 3211: -207,-1 + 2952: -207,-1 - node: color: '#FF98218C' id: ConcreteTrimInnerSe decals: - 217: -87,0 - 218: -86,2 - 225: -88,-1 - 226: -84,7 - 343: -46,-7 - 361: -49,-3 - 372: -49,-8 - 392: -50,-6 + 176: -87,0 + 177: -86,2 + 184: -88,-1 + 185: -84,7 + 302: -46,-7 + 320: -49,-3 + 331: -49,-8 + 351: -50,-6 - node: color: '#FFA647D8' id: ConcreteTrimInnerSe decals: - 2455: -57,7 - 2468: -55,1 - 2476: -58,1 - 2483: -61,2 - 2511: -63,-7 - 2542: -65,-4 - 2589: -68,3 - 2612: -68,-4 - 2613: -72,-4 + 2221: -57,7 + 2234: -55,1 + 2242: -58,1 + 2249: -61,2 + 2277: -63,-7 + 2308: -65,-4 + 2355: -68,3 + 2378: -68,-4 + 2379: -72,-4 - node: color: '#0093AA8C' id: ConcreteTrimInnerSw decals: - 295: -60,11 + 254: -60,11 - node: color: '#169C9CD8' id: ConcreteTrimInnerSw decals: - 2766: -58,14 - 2777: -60,14 - 2804: -60,17 - 2807: -58,23 - 2825: -70,19 - 2833: -74,19 - 2837: -75,20 - 2838: -76,21 - 2871: -61,19 - 2892: -77,22 - 2896: -69,22 - 2901: -64,23 + 2510: -58,14 + 2521: -60,14 + 2548: -60,17 + 2551: -58,23 + 2569: -70,19 + 2577: -74,19 + 2581: -75,20 + 2582: -76,21 + 2615: -61,19 + 2636: -77,22 + 2640: -69,22 + 2645: -64,23 - node: color: '#4B709CD8' id: ConcreteTrimInnerSw decals: - 1288: -15,-4 - 1289: -11,-4 - 1307: -8,-5 - 1308: -10,-5 - 1313: -5,-4 - 1354: -4,-5 - 1356: -3,-7 - 1363: -1,-5 - 1365: -2,-4 - 1379: 3,-4 - 1380: 3,-1 - 1381: -1,-1 - 1408: 2,-2 - 1426: 6,-4 - 1427: 6,-1 - 1434: 5,-5 - 1438: 5,-2 - 1441: -3,-6 - 1448: 2,-5 - 1451: -2,-2 - 1512: -10,-3 - 1513: -9,-4 - 1518: -8,-1 - 1519: -8,-3 - 1520: -9,-1 - 6595: -37,-16 - 6596: -36,-17 - 6862: -23,-10 + 1056: -15,-4 + 1057: -11,-4 + 1075: -8,-5 + 1076: -10,-5 + 1081: -5,-4 + 1122: -4,-5 + 1124: -3,-7 + 1129: -1,-5 + 1131: -2,-4 + 1145: 3,-4 + 1146: 3,-1 + 1147: -1,-1 + 1174: 2,-2 + 1192: 6,-4 + 1193: 6,-1 + 1200: 5,-5 + 1204: 5,-2 + 1207: -3,-6 + 1214: 2,-5 + 1217: -2,-2 + 1278: -10,-3 + 1279: -9,-4 + 1284: -8,-1 + 1285: -8,-3 + 1286: -9,-1 + 6110: -37,-16 + 6111: -36,-17 + 6377: -23,-10 - node: color: '#6391378C' id: ConcreteTrimInnerSw decals: - 596: -108,-5 - 601: -101,-5 + 548: -108,-5 + 553: -101,-5 - node: color: '#774194CD' id: ConcreteTrimInnerSw decals: - 2323: -84,-32 + 2089: -84,-32 - node: color: '#96DAFF8C' id: ConcreteTrimInnerSw decals: - 1243: -179,-5 - 1248: -179,-20 - 1249: -179,-14 + 1012: -179,-5 + 1017: -179,-20 + 1018: -179,-14 - node: color: '#9FE758D3' id: ConcreteTrimInnerSw decals: - 3103: -134,-3 + 2846: -134,-3 - node: color: '#B3B3B3BF' id: ConcreteTrimInnerSw decals: - 2982: -38,-12 - 2983: -38,-10 + 2725: -38,-12 + 2726: -38,-10 - node: color: '#B3B3B3FF' id: ConcreteTrimInnerSw decals: - 415: -47,1 - 427: -48,2 - 437: -47,2 - 489: -89,-1 - 490: -89,-5 - 491: -88,-9 - 492: -87,-10 - 493: -86,-11 - 515: -85,-17 - 523: -79,-17 - 530: -72,-17 - 563: -44,-12 - 564: -47,-12 - 2921: -131,-7 - 2934: -145,-7 - 2940: -148,-6 - 2941: -150,-5 - 2944: -138,-7 - 3199: -210,5 - 3200: -210,11 - 3201: -210,13 - 3205: -210,3 - 3209: -208,0 - 3210: -207,-1 + 374: -47,1 + 386: -48,2 + 396: -47,2 + 448: -89,-1 + 449: -89,-5 + 450: -88,-9 + 451: -87,-10 + 452: -86,-11 + 474: -85,-17 + 480: -79,-17 + 482: -72,-17 + 515: -44,-12 + 516: -47,-12 + 2664: -131,-7 + 2677: -145,-7 + 2683: -148,-6 + 2684: -150,-5 + 2687: -138,-7 + 2940: -210,5 + 2941: -210,11 + 2942: -210,13 + 2946: -210,3 + 2950: -208,0 + 2951: -207,-1 - node: color: '#B7B6B3D8' id: ConcreteTrimInnerSw decals: - 929: -27,-17 - 930: -31,-17 - 959: -15,-10 - 986: -15,3 - 1002: -128,-8 - 1007: -124,-6 - 1107: -177,-5 - 1111: -186,-1 - 1132: -213,-5 - 1133: -215,-5 - 1134: -197,-20 - 1135: -197,-14 + 754: -27,-17 + 755: -31,-17 + 784: -15,-10 + 811: -15,3 + 826: -128,-8 + 831: -124,-6 + 918: -177,-5 + 921: -213,-5 + 922: -215,-5 + 923: -197,-20 + 924: -197,-14 - node: color: '#BC863FCD' id: ConcreteTrimInnerSw decals: - 2340: -84,-35 + 2106: -84,-35 - node: color: '#DE3A3A8C' id: ConcreteTrimInnerSw decals: - 639: -135,5 - 667: -133,5 - 668: -136,2 - 669: -133,2 - 676: -132,7 - 680: -133,6 - 687: -134,6 - 690: -137,5 - 692: -137,6 - 696: -136,6 - 702: -136,1 - 703: -137,2 - 704: -134,2 - 705: -134,1 - 707: -133,1 + 591: -135,5 + 619: -133,5 + 620: -136,2 + 621: -133,2 + 628: -132,7 + 632: -133,6 + 639: -134,6 + 642: -137,5 + 644: -137,6 + 648: -136,6 + 654: -136,1 + 655: -137,2 + 656: -134,2 + 657: -134,1 + 659: -133,1 - node: color: '#F98AFF8C' id: ConcreteTrimInnerSw decals: - 1172: -206,-1 - 1202: -188,4 - 1203: -188,11 + 960: -206,-1 - node: color: '#FF98218C' id: ConcreteTrimInnerSw decals: - 273: -51,-3 - 347: -44,-7 - 349: -44,-3 - 393: -47,-6 + 232: -51,-3 + 306: -44,-7 + 308: -44,-3 + 352: -47,-6 - node: color: '#FFA647D8' id: ConcreteTrimInnerSw decals: - 2454: -57,7 - 2469: -55,1 - 2484: -61,2 - 2503: -63,-4 - 2506: -66,-4 - 2615: -70,-4 - 2642: -73,-4 - 2674: -80,-10 + 2220: -57,7 + 2235: -55,1 + 2250: -61,2 + 2269: -63,-4 + 2272: -66,-4 + 2381: -70,-4 + 2408: -73,-4 + 2439: -80,-10 - node: color: '#0093AA8C' id: ConcreteTrimLineE decals: - 283: -58,10 - 298: -58,12 + 242: -58,10 + 257: -58,12 - node: color: '#169C9CD8' id: ConcreteTrimLineE decals: - 2745: -52,20 - 2746: -52,21 - 2754: -56,18 - 2755: -56,17 - 2756: -56,16 - 2757: -56,15 - 2780: -59,15 - 2781: -59,16 - 2782: -58,18 - 2783: -58,19 - 2784: -58,20 - 2785: -58,21 - 2786: -58,22 - 2787: -61,18 - 2788: -61,19 - 2789: -61,20 - 2790: -61,21 - 2791: -61,22 - 2816: -66,18 - 2822: -72,18 - 2893: -75,21 - 2894: -75,20 - 2903: -67,22 - 2904: -67,21 - 2905: -67,20 + 2489: -52,20 + 2490: -52,21 + 2498: -56,18 + 2499: -56,17 + 2500: -56,16 + 2501: -56,15 + 2524: -59,15 + 2525: -59,16 + 2526: -58,18 + 2527: -58,19 + 2528: -58,20 + 2529: -58,21 + 2530: -58,22 + 2531: -61,18 + 2532: -61,19 + 2533: -61,20 + 2534: -61,21 + 2535: -61,22 + 2560: -66,18 + 2566: -72,18 + 2637: -75,21 + 2638: -75,20 + 2647: -67,22 + 2648: -67,21 + 2649: -67,20 - node: color: '#4B709CD8' id: ConcreteTrimLineE decals: - 1273: -13,-7 - 1274: -13,-6 - 1275: -13,-5 - 1276: -13,-3 - 1277: -13,-2 - 1278: -13,-1 - 1301: -7,-2 - 1302: -7,-3 - 1346: 6,-2 - 1347: 6,-4 - 1348: 6,-6 - 1366: -4,-5 - 1367: -4,-6 - 1395: 0,-6 - 1402: 0,-2 - 1406: -4,-3 - 1407: -4,-2 - 1420: 4,-6 - 1421: 4,-5 - 1422: 4,-3 - 1423: 4,-2 - 1493: -7,3 - 6864: -26,-11 - 6865: -26,-12 - 6866: -26,-15 - 6867: -26,-16 + 1041: -13,-7 + 1042: -13,-6 + 1043: -13,-5 + 1044: -13,-3 + 1045: -13,-2 + 1046: -13,-1 + 1069: -7,-2 + 1070: -7,-3 + 1114: 6,-2 + 1115: 6,-4 + 1116: 6,-6 + 1132: -4,-5 + 1133: -4,-6 + 1161: 0,-6 + 1168: 0,-2 + 1172: -4,-3 + 1173: -4,-2 + 1186: 4,-6 + 1187: 4,-5 + 1188: 4,-3 + 1189: 4,-2 + 1259: -7,3 + 6379: -26,-11 + 6380: -26,-12 + 6381: -26,-15 + 6382: -26,-16 - node: color: '#774194CD' id: ConcreteTrimLineE decals: - 2314: -82,-34 - 2315: -82,-32 + 2080: -82,-34 + 2081: -82,-32 - node: color: '#96DAFF8C' id: ConcreteTrimLineE decals: - 1229: -195,-19 - 1230: -195,-18 - 1231: -195,-17 - 1232: -195,-16 - 1233: -195,-15 - 1234: -195,-13 - 1235: -195,-12 - 1236: -195,-11 - 1237: -195,-10 - 1238: -195,-9 - 1239: -195,-8 - 1240: -195,-7 + 998: -195,-19 + 999: -195,-18 + 1000: -195,-17 + 1001: -195,-16 + 1002: -195,-15 + 1003: -195,-13 + 1004: -195,-12 + 1005: -195,-11 + 1006: -195,-10 + 1007: -195,-9 + 1008: -195,-8 + 1009: -195,-7 - node: color: '#9FED588C' id: ConcreteTrimLineE decals: - 3079: -148,-5 - 3080: -148,-4 + 2822: -148,-5 + 2823: -148,-4 - node: color: '#B3B3B3BF' id: ConcreteTrimLineE decals: - 2980: -36,-9 - 2981: -36,-13 + 2723: -36,-9 + 2724: -36,-13 - node: color: '#B3B3B3FF' id: ConcreteTrimLineE decals: - 166: -88,-2 - 399: -42,-7 - 400: -42,-6 - 401: -42,-5 - 402: -42,-4 - 403: -42,-3 - 404: -42,-2 - 420: -44,2 - 421: -44,3 - 422: -44,4 - 441: -50,0 - 442: -50,1 - 446: -50,4 - 447: -50,5 - 448: -50,6 - 449: -50,7 - 450: -50,8 - 553: -50,-15 - 554: -50,-14 - 574: -42,-8 - 617: -103,-2 + 125: -88,-2 + 358: -42,-7 + 359: -42,-6 + 360: -42,-5 + 361: -42,-4 + 362: -42,-3 + 363: -42,-2 + 379: -44,2 + 380: -44,3 + 381: -44,4 + 400: -50,0 + 401: -50,1 + 405: -50,4 + 406: -50,5 + 407: -50,6 + 408: -50,7 + 409: -50,8 + 505: -50,-15 + 506: -50,-14 + 526: -42,-8 + 569: -103,-2 - node: color: '#B7B6B3D8' id: ConcreteTrimLineE decals: - 912: -40,-11 - 964: -13,1 - 965: -13,0 - 966: -13,-8 - 967: -13,-9 - 969: -13,3 - 970: -13,4 - 993: -24,2 - 1004: -127,-7 - 1009: -127,-1 - 1056: -213,-19 - 1057: -213,-18 - 1058: -213,-17 - 1059: -213,-16 - 1060: -213,-15 - 1063: -213,-13 - 1064: -213,-12 - 1065: -213,-11 - 1066: -213,-10 - 1067: -213,-9 - 1068: -213,-8 - 1069: -213,-7 - 1091: -177,-20 - 1092: -177,-19 - 1093: -177,-18 - 1094: -177,-17 - 1095: -177,-16 - 1096: -177,-15 - 1097: -177,-14 - 1098: -177,-13 - 1099: -177,-12 - 1100: -177,-11 - 1101: -177,-10 - 1102: -177,-9 - 1103: -177,-8 - 1104: -177,-7 - 1112: -186,-1 - 1113: -186,0 - 1114: -186,1 - 1115: -186,2 - 1116: -186,3 - 1117: -186,4 - 1118: -186,5 - 1119: -186,6 - 1120: -186,7 - 1121: -186,8 - 1122: -186,9 - 1123: -186,10 - 1124: -186,11 - 1125: -186,12 - 1126: -186,13 - 1127: -186,14 + 737: -40,-11 + 789: -13,1 + 790: -13,0 + 791: -13,-8 + 792: -13,-9 + 794: -13,3 + 795: -13,4 + 818: -24,2 + 828: -127,-7 + 833: -127,-1 + 871: -213,-19 + 872: -213,-18 + 873: -213,-17 + 874: -213,-16 + 875: -213,-15 + 876: -213,-12 + 877: -213,-11 + 878: -213,-10 + 879: -213,-9 + 880: -213,-8 + 881: -213,-7 + 902: -177,-20 + 903: -177,-19 + 904: -177,-18 + 905: -177,-17 + 906: -177,-16 + 907: -177,-15 + 908: -177,-14 + 909: -177,-13 + 910: -177,-12 + 911: -177,-11 + 912: -177,-10 + 913: -177,-9 + 914: -177,-8 + 915: -177,-7 - node: color: '#BC863FCD' id: ConcreteTrimLineE decals: - 2328: -82,-31 - 2329: -82,-33 - 2342: -84,-29 + 2094: -82,-31 + 2095: -82,-33 + 2108: -84,-29 - node: color: '#DE3A3A8C' id: ConcreteTrimLineE decals: - 636: -135,3 - 637: -135,4 - 659: -132,6 - 660: -132,5 - 661: -132,4 + 588: -135,3 + 589: -135,4 + 611: -132,6 + 612: -132,5 + 613: -132,4 - node: color: '#F98AFF8C' id: ConcreteTrimLineE decals: - 1153: -206,-1 - 1154: -206,0 - 1155: -206,1 - 1156: -206,2 - 1157: -206,3 - 1158: -206,5 - 1159: -206,6 - 1160: -206,7 - 1161: -206,8 - 1162: -206,9 - 1163: -206,10 - 1164: -206,12 - 1165: -206,13 - 1166: -206,14 + 941: -206,-1 + 942: -206,0 + 943: -206,1 + 944: -206,2 + 945: -206,3 + 946: -206,5 + 947: -206,6 + 948: -206,7 + 949: -206,8 + 950: -206,9 + 951: -206,10 + 952: -206,12 + 953: -206,13 + 954: -206,14 - node: color: '#FF98218C' id: ConcreteTrimLineE decals: - 205: -84,-14 - 206: -84,-13 - 207: -84,-12 - 208: -84,-11 - 211: -86,-9 - 221: -88,-5 - 222: -88,-4 - 223: -88,-3 - 224: -88,-2 - 227: -84,3 - 228: -84,4 - 229: -84,5 - 230: -84,6 - 232: -86,1 - 363: -49,-4 - 365: -49,-9 - 501: -88,-6 + 164: -84,-14 + 165: -84,-13 + 166: -84,-12 + 167: -84,-11 + 170: -86,-9 + 180: -88,-5 + 181: -88,-4 + 182: -88,-3 + 183: -88,-2 + 186: -84,3 + 187: -84,4 + 188: -84,5 + 189: -84,6 + 191: -86,1 + 322: -49,-4 + 324: -49,-9 + 460: -88,-6 - node: color: '#FFA647D8' id: ConcreteTrimLineE decals: - 2457: -57,6 - 2464: -54,4 - 2465: -54,3 - 2466: -54,2 - 2477: -58,0 - 2494: -60,4 - 2495: -60,3 - 2517: -58,-5 - 2518: -58,-4 - 2519: -58,-3 - 2520: -58,-2 - 2521: -58,-1 - 2522: -55,0 - 2529: -54,-2 - 2530: -54,-3 - 2531: -54,-4 - 2534: -53,-6 - 2535: -53,-7 - 2544: -65,-3 - 2545: -65,-2 - 2546: -65,-1 - 2547: -65,0 - 2566: -68,-9 - 2580: -65,-12 - 2581: -65,-11 - 2582: -65,-10 - 2583: -65,-9 - 2584: -65,-8 - 2585: -65,-7 - 2586: -65,-6 - 2587: -65,-5 - 2588: -68,2 - 2601: -65,4 - 2610: -68,-3 - 2611: -68,-5 - 2620: -72,-3 - 2621: -72,-2 - 2622: -72,-1 - 2623: -72,0 - 2624: -72,1 - 2625: -72,2 - 2626: -72,-5 - 2627: -72,-6 - 2628: -72,-7 - 2629: -72,-8 - 2630: -72,-9 - 2631: -72,-10 + 2223: -57,6 + 2230: -54,4 + 2231: -54,3 + 2232: -54,2 + 2243: -58,0 + 2260: -60,4 + 2261: -60,3 + 2283: -58,-5 + 2284: -58,-4 + 2285: -58,-3 + 2286: -58,-2 + 2287: -58,-1 + 2288: -55,0 + 2295: -54,-2 + 2296: -54,-3 + 2297: -54,-4 + 2300: -53,-6 + 2301: -53,-7 + 2310: -65,-3 + 2311: -65,-2 + 2312: -65,-1 + 2313: -65,0 + 2332: -68,-9 + 2346: -65,-12 + 2347: -65,-11 + 2348: -65,-10 + 2349: -65,-9 + 2350: -65,-8 + 2351: -65,-7 + 2352: -65,-6 + 2353: -65,-5 + 2354: -68,2 + 2367: -65,4 + 2376: -68,-3 + 2377: -68,-5 + 2386: -72,-3 + 2387: -72,-2 + 2388: -72,-1 + 2389: -72,0 + 2390: -72,1 + 2391: -72,2 + 2392: -72,-5 + 2393: -72,-6 + 2394: -72,-7 + 2395: -72,-8 + 2396: -72,-9 + 2397: -72,-10 - node: color: '#0093AA8C' id: ConcreteTrimLineN decals: - 281: -59,12 - 285: -57,9 - 286: -61,9 - 287: -62,9 - 288: -63,9 - 289: -56,9 - 290: -55,9 - 291: -54,9 + 240: -59,12 + 244: -57,9 + 245: -61,9 + 246: -62,9 + 247: -63,9 + 248: -56,9 + 249: -55,9 + 250: -54,9 - node: color: '#169C9CD8' id: ConcreteTrimLineN decals: - 2749: -53,19 - 2750: -54,19 - 2751: -55,19 - 2762: -61,14 - 2764: -58,14 - 2774: -57,14 - 2799: -59,17 - 2800: -60,17 - 2843: -78,24 - 2844: -77,24 - 2845: -75,24 - 2846: -76,24 - 2847: -74,24 - 2848: -73,24 - 2849: -72,24 - 2850: -71,24 - 2851: -70,24 - 2852: -69,24 - 2853: -68,24 - 2854: -67,24 - 2855: -66,24 - 2856: -65,24 - 2857: -64,24 - 2858: -63,24 - 2859: -62,24 - 2860: -61,24 - 2861: -60,24 - 2862: -59,24 - 2863: -58,24 - 2864: -57,24 - 2865: -56,24 - 2872: -71,19 - 2873: -70,19 - 2874: -72,19 - 2875: -73,19 - 2876: -74,19 - 2877: -66,19 - 2878: -66,19 - 2879: -65,19 + 2493: -53,19 + 2494: -54,19 + 2495: -55,19 + 2506: -61,14 + 2508: -58,14 + 2518: -57,14 + 2543: -59,17 + 2544: -60,17 + 2587: -78,24 + 2588: -77,24 + 2589: -75,24 + 2590: -76,24 + 2591: -74,24 + 2592: -73,24 + 2593: -72,24 + 2594: -71,24 + 2595: -70,24 + 2596: -69,24 + 2597: -68,24 + 2598: -67,24 + 2599: -66,24 + 2600: -65,24 + 2601: -64,24 + 2602: -63,24 + 2603: -62,24 + 2604: -61,24 + 2605: -60,24 + 2606: -59,24 + 2607: -58,24 + 2608: -57,24 + 2609: -56,24 + 2616: -71,19 + 2617: -70,19 + 2618: -72,19 + 2619: -73,19 + 2620: -74,19 + 2621: -66,19 + 2622: -66,19 + 2623: -65,19 - node: color: '#4B709CD8' id: ConcreteTrimLineN decals: - 1295: -10,0 - 1296: -8,0 - 1297: -7,0 - 1314: -6,-4 - 1317: -12,-4 - 1326: -2,0 - 1327: -1,0 - 1328: 0,0 - 1329: 1,0 - 1330: 2,0 - 1331: 3,0 - 1343: 5,-1 - 1368: -3,-7 - 1369: -2,-7 - 1397: 1,-7 - 1398: 2,-7 - 1399: 2,-4 - 1405: -3,-4 - 1412: 5,-7 - 1413: 5,-4 - 1496: -8,4 - 1497: -10,4 + 1063: -10,0 + 1064: -8,0 + 1065: -7,0 + 1082: -6,-4 + 1085: -12,-4 + 1094: -2,0 + 1095: -1,0 + 1096: 0,0 + 1097: 1,0 + 1098: 2,0 + 1099: 3,0 + 1111: 5,-1 + 1134: -3,-7 + 1135: -2,-7 + 1163: 1,-7 + 1164: 2,-7 + 1165: 2,-4 + 1171: -3,-4 + 1178: 5,-7 + 1179: 5,-4 + 1262: -8,4 + 1263: -10,4 - node: color: '#774194CD' id: ConcreteTrimLineN decals: - 2319: -86,-28 + 2085: -86,-28 - node: color: '#9FB258D4' id: ConcreteTrimLineN decals: - 3096: -146,-6 - 3097: -147,-6 - 3098: -142,-6 - 3099: -140,-6 - 3100: -136,-6 - 3101: -135,-6 + 2839: -146,-6 + 2840: -147,-6 + 2841: -142,-6 + 2842: -140,-6 + 2843: -136,-6 + 2844: -135,-6 - node: color: '#9FED588C' id: ConcreteTrimLineN decals: - 3081: -145,-6 - 3082: -144,-6 - 3083: -143,-6 - 3084: -139,-6 - 3085: -138,-6 - 3086: -137,-6 + 2824: -145,-6 + 2825: -144,-6 + 2826: -143,-6 + 2827: -139,-6 + 2828: -138,-6 + 2829: -137,-6 - node: color: '#B3B3B3FF' id: ConcreteTrimLineN decals: - 406: -43,-1 - 407: -44,-1 - 408: -45,-1 - 409: -46,-1 - 410: -48,-1 - 411: -49,-1 - 429: -45,5 - 452: -51,9 - 453: -52,9 - 454: -64,9 - 455: -65,9 - 456: -66,9 - 457: -67,9 - 458: -68,9 - 459: -69,9 - 460: -70,9 - 461: -71,9 - 462: -72,9 - 463: -73,9 - 464: -74,9 - 465: -75,9 - 466: -76,9 - 467: -77,9 - 468: -79,9 - 469: -80,9 - 470: -81,9 - 471: -82,9 - 472: -83,9 - 473: -84,9 - 474: -85,9 - 502: -89,1 - 508: -90,-3 - 575: -41,-9 - 576: -92,-3 - 577: -93,-3 - 578: -94,-3 - 579: -95,-3 - 580: -96,-3 - 581: -97,-3 - 582: -98,-3 - 583: -99,-3 - 584: -100,-3 - 585: -101,-3 - 586: -102,-3 - 587: -104,-3 - 588: -105,-3 - 589: -106,-3 - 590: -107,-3 - 591: -109,-3 - 613: -91,-3 - 619: -125,-2 - 620: -124,-2 - 624: -129,0 - 3195: -209,15 + 365: -43,-1 + 366: -44,-1 + 367: -45,-1 + 368: -46,-1 + 369: -48,-1 + 370: -49,-1 + 388: -45,5 + 411: -51,9 + 412: -52,9 + 413: -64,9 + 414: -65,9 + 415: -66,9 + 416: -67,9 + 417: -68,9 + 418: -69,9 + 419: -70,9 + 420: -71,9 + 421: -72,9 + 422: -73,9 + 423: -74,9 + 424: -75,9 + 425: -76,9 + 426: -77,9 + 427: -79,9 + 428: -80,9 + 429: -81,9 + 430: -82,9 + 431: -83,9 + 432: -84,9 + 433: -85,9 + 461: -89,1 + 467: -90,-3 + 527: -41,-9 + 528: -92,-3 + 529: -93,-3 + 530: -94,-3 + 531: -95,-3 + 532: -96,-3 + 533: -97,-3 + 534: -98,-3 + 535: -99,-3 + 536: -100,-3 + 537: -101,-3 + 538: -102,-3 + 539: -104,-3 + 540: -105,-3 + 541: -106,-3 + 542: -107,-3 + 543: -109,-3 + 565: -91,-3 + 571: -125,-2 + 572: -124,-2 + 576: -129,0 + 2938: -209,15 - node: color: '#B3B9B0D1' id: ConcreteTrimLineN decals: - 1261: -207,-3 - 1263: -214,-7 - 1268: -196,-7 - 1269: -178,-7 + 1029: -207,-3 + 1031: -214,-7 + 1036: -196,-7 + 1037: -178,-7 - node: color: '#B7B6B3D8' id: ConcreteTrimLineN decals: - 917: -35,-15 - 918: -34,-15 - 919: -33,-15 - 920: -32,-15 - 921: -30,-15 - 922: -29,-15 - 945: -25,-8 - 949: -23,-8 - 950: -22,-8 - 951: -21,-8 - 952: -20,-8 - 953: -19,-8 - 954: -18,-8 - 955: -17,-8 - 974: -15,5 - 975: -16,5 - 976: -18,5 - 977: -19,5 - 978: -20,5 - 979: -21,5 - 980: -22,5 - 981: -21,2 - 982: -19,2 - 991: -26,5 - 992: -24,5 - 1010: -126,-2 - 1072: -210,-3 - 1073: -211,-3 - 1074: -212,-3 - 1075: -213,-3 - 1076: -214,-3 - 1077: -215,-3 - 1078: -216,-3 - 1080: -187,-3 - 1081: -185,-3 - 1082: -184,-3 - 1083: -183,-3 - 1084: -181,-3 - 1085: -180,-3 - 1086: -179,-3 - 1087: -178,-3 - 1088: -177,-3 - 1129: -187,15 + 742: -35,-15 + 743: -34,-15 + 744: -33,-15 + 745: -32,-15 + 746: -30,-15 + 747: -29,-15 + 770: -25,-8 + 774: -23,-8 + 775: -22,-8 + 776: -21,-8 + 777: -20,-8 + 778: -19,-8 + 779: -18,-8 + 780: -17,-8 + 799: -15,5 + 800: -16,5 + 801: -18,5 + 802: -19,5 + 803: -20,5 + 804: -21,5 + 805: -22,5 + 806: -21,2 + 807: -19,2 + 816: -26,5 + 817: -24,5 + 834: -126,-2 + 884: -210,-3 + 885: -211,-3 + 886: -212,-3 + 887: -213,-3 + 888: -214,-3 + 889: -215,-3 + 890: -216,-3 + 892: -185,-3 + 893: -184,-3 + 894: -183,-3 + 895: -181,-3 + 896: -180,-3 + 897: -179,-3 + 898: -178,-3 + 899: -177,-3 - node: color: '#BC863FCD' id: ConcreteTrimLineN decals: - 2339: -85,-34 - 2341: -83,-30 + 2105: -85,-34 + 2107: -83,-30 - node: color: '#DE3A3A8C' id: ConcreteTrimLineN decals: - 630: -137,2 - 631: -136,2 - 653: -137,7 - 654: -136,7 - 655: -135,7 - 656: -134,7 - 657: -133,7 - 719: -151,-3 + 582: -137,2 + 583: -136,2 + 605: -137,7 + 606: -136,7 + 607: -135,7 + 608: -134,7 + 609: -133,7 + 671: -151,-3 - node: color: '#F98AFF8C' id: ConcreteTrimLineN decals: - 1174: -203,-3 - 1175: -202,-3 - 1176: -201,-3 - 1177: -200,-3 - 1178: -199,-3 - 1179: -198,-3 - 1180: -196,-3 - 1181: -195,-3 - 1182: -194,-3 - 1183: -192,-3 - 1184: -191,-3 - 1254: -190,-3 - 1255: -189,-3 - 1258: -204,-3 + 962: -203,-3 + 963: -202,-3 + 964: -201,-3 + 965: -200,-3 + 966: -199,-3 + 967: -198,-3 + 968: -196,-3 + 969: -195,-3 + 970: -194,-3 + 971: -192,-3 + 972: -191,-3 + 1023: -190,-3 + 1024: -189,-3 + 1026: -204,-3 + - node: + color: '#F98AFFB2' + id: ConcreteTrimLineN + decals: + 7040: -188,-3 + 7041: -187,-3 + 7042: -186,-3 + 7043: -208,15 - node: color: '#F98AFFBF' id: ConcreteTrimLineN decals: - 3184: -207,15 + 2927: -207,15 - node: color: '#FF98218C' id: ConcreteTrimLineN decals: - 173: -53,-15 - 174: -54,-15 - 175: -55,-15 - 176: -56,-15 - 177: -57,-15 - 178: -58,-15 - 179: -59,-15 - 180: -60,-15 - 181: -61,-15 - 182: -62,-15 - 183: -63,-15 - 184: -64,-15 - 185: -65,-15 - 186: -66,-15 - 187: -67,-15 - 188: -68,-15 - 189: -69,-15 - 190: -70,-15 - 191: -71,-15 - 192: -72,-15 - 193: -73,-15 - 194: -74,-15 - 195: -75,-15 - 196: -76,-15 - 197: -77,-15 - 198: -78,-15 - 199: -79,-15 - 200: -80,-15 - 201: -81,-15 - 202: -82,-15 - 203: -83,-15 - 210: -85,-10 - 345: -45,-6 - 359: -47,-5 - 360: -48,-5 - 367: -48,-10 - 368: -47,-10 - 369: -46,-10 - 370: -45,-10 - 383: -48,-6 - 384: -49,-6 - 387: -49,-7 - 388: -48,-7 + 132: -53,-15 + 133: -54,-15 + 134: -55,-15 + 135: -56,-15 + 136: -57,-15 + 137: -58,-15 + 138: -59,-15 + 139: -60,-15 + 140: -61,-15 + 141: -62,-15 + 142: -63,-15 + 143: -64,-15 + 144: -65,-15 + 145: -66,-15 + 146: -67,-15 + 147: -68,-15 + 148: -69,-15 + 149: -70,-15 + 150: -71,-15 + 151: -72,-15 + 152: -73,-15 + 153: -74,-15 + 154: -75,-15 + 155: -76,-15 + 156: -77,-15 + 157: -78,-15 + 158: -79,-15 + 159: -80,-15 + 160: -81,-15 + 161: -82,-15 + 162: -83,-15 + 169: -85,-10 + 304: -45,-6 + 318: -47,-5 + 319: -48,-5 + 326: -48,-10 + 327: -47,-10 + 328: -46,-10 + 329: -45,-10 + 342: -48,-6 + 343: -49,-6 + 346: -49,-7 + 347: -48,-7 + - node: + color: '#FF9821C0' + id: ConcreteTrimLineN + decals: + 6515: -80,-8 + 6516: -79,-8 - node: color: '#FFA647D8' id: ConcreteTrimLineN decals: - 2461: -56,5 - 2462: -55,5 - 2480: -59,-1 - 2491: -62,5 - 2492: -61,5 - 2498: -62,0 - 2540: -64,-4 - 2549: -66,1 - 2550: -67,1 - 2565: -67,-10 - 2568: -69,-8 - 2596: -69,5 - 2597: -68,5 - 2598: -67,5 - 2599: -66,5 - 2609: -69,-2 - 2640: -74,-4 - 2653: -78,-8 - 2657: -80,0 - 2658: -79,0 - 2659: -78,0 - 2673: -80,-10 + 2227: -56,5 + 2228: -55,5 + 2246: -59,-1 + 2257: -62,5 + 2258: -61,5 + 2264: -62,0 + 2306: -64,-4 + 2315: -66,1 + 2316: -67,1 + 2331: -67,-10 + 2334: -69,-8 + 2362: -69,5 + 2363: -68,5 + 2364: -67,5 + 2365: -66,5 + 2375: -69,-2 + 2406: -74,-4 + 2419: -78,-8 + 2423: -80,0 + 2424: -79,0 + 2425: -78,0 + 2438: -80,-10 - node: color: '#169C9CD8' id: ConcreteTrimLineS decals: - 2741: -55,19 - 2742: -54,19 - 2743: -53,19 - 2759: -57,14 - 2760: -61,14 - 2775: -59,14 - 2792: -60,23 - 2793: -59,23 - 2812: -62,19 - 2813: -64,19 - 2814: -63,19 - 2815: -65,19 - 2817: -67,17 - 2818: -68,17 - 2819: -69,17 - 2826: -71,19 - 2829: -73,17 - 2839: -78,22 - 2868: -56,23 - 2869: -57,23 - 2885: -65,23 - 2886: -66,23 - 2887: -70,22 - 2888: -71,22 - 2889: -72,22 - 2890: -73,22 - 2891: -74,22 + 2485: -55,19 + 2486: -54,19 + 2487: -53,19 + 2503: -57,14 + 2504: -61,14 + 2519: -59,14 + 2536: -60,23 + 2537: -59,23 + 2556: -62,19 + 2557: -64,19 + 2558: -63,19 + 2559: -65,19 + 2561: -67,17 + 2562: -68,17 + 2563: -69,17 + 2570: -71,19 + 2573: -73,17 + 2583: -78,22 + 2612: -56,23 + 2613: -57,23 + 2629: -65,23 + 2630: -66,23 + 2631: -70,22 + 2632: -71,22 + 2633: -72,22 + 2634: -73,22 + 2635: -74,22 - node: color: '#4B709CD8' id: ConcreteTrimLineS decals: - 1310: -9,-5 - 1315: -6,-4 - 1316: -12,-4 - 1336: -2,-8 - 1337: -1,-8 - 1338: 0,-8 - 1339: 1,-8 - 1340: 2,-8 - 1341: 3,-8 - 1342: 5,-7 - 1364: -3,-4 - 1384: 1,-1 - 1385: 2,-1 - 1390: -2,-1 - 1391: -3,-1 - 1392: 2,-4 - 1414: 5,-4 - 1415: 5,-1 - 1494: -8,2 - 1495: -10,2 - 6593: -35,-17 - 6855: -18,-10 - 6856: -19,-10 - 6857: -20,-10 - 6858: -21,-10 - 6859: -24,-10 - 6860: -25,-10 + 1078: -9,-5 + 1083: -6,-4 + 1084: -12,-4 + 1104: -2,-8 + 1105: -1,-8 + 1106: 0,-8 + 1107: 1,-8 + 1108: 2,-8 + 1109: 3,-8 + 1110: 5,-7 + 1130: -3,-4 + 1150: 1,-1 + 1151: 2,-1 + 1156: -2,-1 + 1157: -3,-1 + 1158: 2,-4 + 1180: 5,-4 + 1181: 5,-1 + 1260: -8,2 + 1261: -10,2 + 6108: -35,-17 + 6370: -18,-10 + 6371: -19,-10 + 6372: -20,-10 + 6373: -21,-10 + 6374: -24,-10 + 6375: -25,-10 - node: color: '#6391378C' id: ConcreteTrimLineS decals: - 592: -105,-5 - 593: -106,-5 - 594: -107,-5 - 595: -109,-5 - 598: -104,-5 - 599: -103,-5 - 600: -102,-5 + 544: -105,-5 + 545: -106,-5 + 546: -107,-5 + 547: -109,-5 + 550: -104,-5 + 551: -103,-5 + 552: -102,-5 - node: color: '#774194CD' id: ConcreteTrimLineS decals: - 2322: -86,-32 - 2326: -85,-35 - 2346: -82,-36 + 2088: -86,-32 + 2092: -85,-35 + 2112: -82,-36 - node: color: '#96DAFF8C' id: ConcreteTrimLineS decals: - 1204: -192,-5 - 1205: -191,-5 - 1206: -190,-5 - 1207: -189,-5 - 1208: -188,-5 - 1209: -187,-5 - 1210: -186,-5 - 1211: -185,-5 - 1212: -184,-5 - 1213: -183,-5 - 1214: -182,-5 - 1241: -194,-5 - 1244: -181,-5 - 1245: -180,-5 + 973: -192,-5 + 974: -191,-5 + 975: -190,-5 + 976: -189,-5 + 977: -188,-5 + 978: -187,-5 + 979: -186,-5 + 980: -185,-5 + 981: -184,-5 + 982: -183,-5 + 983: -182,-5 + 1010: -194,-5 + 1013: -181,-5 + 1014: -180,-5 - node: color: '#9FAF58D3' id: ConcreteTrimLineS decals: - 3104: -136,-3 - 3105: -137,-3 - 3106: -139,-3 - 3107: -142,-3 - 3108: -143,-3 - 3109: -145,-3 + 2847: -136,-3 + 2848: -137,-3 + 2849: -139,-3 + 2850: -142,-3 + 2851: -143,-3 + 2852: -145,-3 - node: color: '#9FED588C' id: ConcreteTrimLineS decals: - 3089: -135,-3 - 3090: -138,-3 - 3091: -140,-3 - 3092: -141,-3 - 3093: -144,-3 - 3094: -147,-3 - 3095: -146,-3 + 2832: -135,-3 + 2833: -138,-3 + 2834: -140,-3 + 2835: -141,-3 + 2836: -144,-3 + 2837: -147,-3 + 2838: -146,-3 - node: color: '#B3B3B3FF' id: ConcreteTrimLineS decals: - 418: -46,1 - 419: -45,1 - 506: -90,-5 - 507: -89,-9 - 516: -84,-17 - 517: -83,-17 - 518: -82,-17 - 519: -81,-17 - 520: -80,-17 - 525: -77,-17 - 526: -76,-17 - 527: -75,-17 - 528: -74,-17 - 529: -73,-17 - 532: -71,-17 - 533: -70,-17 - 534: -69,-17 - 541: -59,-17 - 542: -58,-17 - 543: -57,-17 - 544: -56,-17 - 545: -55,-17 - 546: -54,-17 - 547: -53,-17 - 548: -52,-17 - 549: -51,-17 - 558: -48,-12 - 565: -45,-12 - 566: -43,-13 - 567: -42,-13 - 568: -41,-13 - 602: -100,-5 - 604: -99,-5 - 605: -98,-5 - 606: -97,-5 - 607: -96,-5 - 608: -95,-5 - 609: -94,-5 - 610: -93,-5 - 611: -92,-5 - 612: -91,-5 - 2918: -132,-7 - 2919: -133,-7 - 2923: -134,-7 - 2924: -135,-7 - 2925: -136,-7 - 2926: -137,-7 - 2927: -139,-7 - 2928: -140,-7 - 2929: -141,-7 - 2930: -143,-7 - 2931: -142,-7 - 2932: -144,-7 - 2935: -146,-7 - 2936: -147,-7 - 2939: -149,-6 - 3207: -209,0 + 377: -46,1 + 378: -45,1 + 465: -90,-5 + 466: -89,-9 + 475: -84,-17 + 476: -83,-17 + 477: -82,-17 + 478: -81,-17 + 479: -80,-17 + 484: -71,-17 + 485: -70,-17 + 486: -69,-17 + 493: -59,-17 + 494: -58,-17 + 495: -57,-17 + 496: -56,-17 + 497: -55,-17 + 498: -54,-17 + 499: -53,-17 + 500: -52,-17 + 501: -51,-17 + 510: -48,-12 + 517: -45,-12 + 518: -43,-13 + 519: -42,-13 + 520: -41,-13 + 554: -100,-5 + 556: -99,-5 + 557: -98,-5 + 558: -97,-5 + 559: -96,-5 + 560: -95,-5 + 561: -94,-5 + 562: -93,-5 + 563: -92,-5 + 564: -91,-5 + 2661: -132,-7 + 2662: -133,-7 + 2666: -134,-7 + 2667: -135,-7 + 2668: -136,-7 + 2669: -137,-7 + 2670: -139,-7 + 2671: -140,-7 + 2672: -141,-7 + 2673: -143,-7 + 2674: -142,-7 + 2675: -144,-7 + 2678: -146,-7 + 2679: -147,-7 + 2682: -149,-6 + 2948: -209,0 - node: color: '#B7B6B3D8' id: ConcreteTrimLineS decals: - 914: -38,-16 - 931: -34,-17 - 932: -33,-17 - 933: -32,-17 - 934: -30,-17 - 935: -29,-17 - 936: -28,-17 - 956: -17,-10 - 957: -24,-10 - 958: -14,-10 - 983: -20,4 - 984: -19,4 - 985: -16,3 - 1000: -130,-8 - 1001: -129,-8 - 1008: -125,-6 - 1014: -198,-5 - 1015: -196,-5 - 1016: -199,-5 - 1017: -200,-5 - 1018: -201,-5 - 1019: -202,-5 - 1020: -203,-5 - 1021: -204,-5 - 1022: -206,-5 - 1023: -207,-5 - 1024: -208,-5 - 1025: -210,-5 - 1026: -211,-5 - 1027: -212,-5 - 1028: -214,-5 - 1036: -216,-5 - 1053: -214,-21 - 1090: -178,-21 - 1105: -178,-5 - 1110: -187,-1 - 1139: -196,-21 + 739: -38,-16 + 756: -34,-17 + 757: -33,-17 + 758: -32,-17 + 759: -30,-17 + 760: -29,-17 + 761: -28,-17 + 781: -17,-10 + 782: -24,-10 + 783: -14,-10 + 808: -20,4 + 809: -19,4 + 810: -16,3 + 824: -130,-8 + 825: -129,-8 + 832: -125,-6 + 838: -198,-5 + 839: -196,-5 + 840: -199,-5 + 841: -200,-5 + 842: -201,-5 + 843: -202,-5 + 844: -203,-5 + 845: -204,-5 + 846: -206,-5 + 847: -207,-5 + 848: -208,-5 + 849: -210,-5 + 850: -211,-5 + 851: -212,-5 + 852: -214,-5 + 854: -216,-5 + 868: -214,-21 + 901: -178,-21 + 916: -178,-5 + 928: -196,-21 - node: color: '#BC863FCD' id: ConcreteTrimLineS decals: - 2331: -83,-36 - 2337: -85,-32 + 2097: -83,-36 + 2103: -85,-32 - node: color: '#BC863FDB' id: ConcreteTrimLineS decals: - 535: -62,-17 - 536: -66,-17 - 537: -67,-17 - 538: -68,-17 - 539: -61,-17 - 540: -60,-17 + 487: -62,-17 + 488: -66,-17 + 489: -67,-17 + 490: -68,-17 + 491: -61,-17 + 492: -60,-17 - node: color: '#DE3A3A8C' id: ConcreteTrimLineS decals: - 628: -135,0 - 640: -134,5 - 641: -136,5 - 646: -137,3 - 647: -138,3 - 663: -133,3 + 580: -135,0 + 592: -134,5 + 593: -136,5 + 598: -137,3 + 599: -138,3 + 615: -133,3 - node: color: '#FF98218C' id: ConcreteTrimLineS decals: - 231: -85,2 - 233: -83,7 - 234: -82,7 - 235: -81,7 - 236: -80,7 - 237: -79,7 - 238: -78,7 - 239: -77,7 - 240: -76,7 - 241: -75,7 - 242: -74,7 - 243: -73,7 - 244: -72,7 - 245: -71,7 - 246: -70,7 - 247: -69,7 - 248: -68,7 - 249: -67,7 - 250: -66,7 - 251: -65,7 - 252: -64,7 - 253: -63,7 - 254: -62,7 - 255: -61,7 - 256: -60,7 - 257: -59,7 - 258: -58,7 - 259: -56,7 - 260: -55,7 - 261: -54,7 - 262: -53,7 - 344: -45,-7 - 355: -45,-3 - 356: -46,-3 - 357: -47,-3 - 358: -48,-3 - 373: -48,-8 - 374: -47,-8 - 376: -48,-7 - 378: -49,-7 - 389: -49,-6 - 390: -48,-6 + 190: -85,2 + 192: -83,7 + 193: -82,7 + 194: -81,7 + 195: -80,7 + 196: -79,7 + 197: -78,7 + 198: -77,7 + 199: -76,7 + 200: -75,7 + 201: -74,7 + 202: -73,7 + 203: -72,7 + 204: -71,7 + 205: -70,7 + 206: -69,7 + 207: -68,7 + 208: -67,7 + 209: -66,7 + 210: -65,7 + 211: -64,7 + 212: -63,7 + 213: -62,7 + 214: -61,7 + 215: -60,7 + 216: -59,7 + 217: -58,7 + 218: -56,7 + 219: -55,7 + 220: -54,7 + 221: -53,7 + 303: -45,-7 + 314: -45,-3 + 315: -46,-3 + 316: -47,-3 + 317: -48,-3 + 332: -48,-8 + 333: -47,-8 + 335: -48,-7 + 337: -49,-7 + 348: -49,-6 + 349: -48,-6 + - node: + color: '#FF9821C0' + id: ConcreteTrimLineS + decals: + 6513: -80,-8 + 6514: -79,-8 - node: color: '#FFA647D8' id: ConcreteTrimLineS decals: - 2470: -56,1 - 2471: -57,1 - 2487: -62,2 - 2512: -62,-7 - 2513: -61,-7 - 2514: -60,-7 - 2515: -59,-7 - 2537: -55,-8 - 2538: -54,-8 - 2541: -64,-4 - 2552: -69,0 - 2553: -68,0 - 2554: -67,0 - 2575: -69,-13 - 2576: -68,-13 - 2577: -67,-13 - 2578: -66,-13 - 2603: -66,3 - 2604: -67,3 - 2641: -74,-4 - 2654: -78,-8 - 2660: -78,0 - 2661: -79,0 - 2662: -80,0 - 2667: -80,2 + 2236: -56,1 + 2237: -57,1 + 2253: -62,2 + 2278: -62,-7 + 2279: -61,-7 + 2280: -60,-7 + 2281: -59,-7 + 2303: -55,-8 + 2304: -54,-8 + 2307: -64,-4 + 2318: -69,0 + 2319: -68,0 + 2320: -67,0 + 2341: -69,-13 + 2342: -68,-13 + 2343: -67,-13 + 2344: -66,-13 + 2369: -66,3 + 2370: -67,3 + 2407: -74,-4 + 2420: -78,-8 + 2426: -78,0 + 2427: -79,0 + 2428: -80,0 + 2433: -80,2 - node: color: '#0093AA8C' id: ConcreteTrimLineW decals: - 282: -60,10 - 299: -60,12 - 302: -62,15 - 303: -62,16 - 304: -62,17 + 241: -60,10 + 258: -60,12 + 261: -62,15 + 262: -62,16 + 263: -62,17 - node: color: '#169C9CD8' id: ConcreteTrimLineW decals: - 2747: -52,21 - 2748: -52,20 - 2752: -57,18 - 2770: -56,18 - 2771: -56,17 - 2772: -56,16 - 2773: -56,15 - 2794: -58,22 - 2795: -58,21 - 2796: -58,20 - 2797: -58,19 - 2798: -58,18 - 2808: -61,18 - 2809: -60,15 - 2810: -60,16 - 2821: -70,18 - 2832: -74,18 - 2841: -79,23 - 2880: -69,20 - 2881: -69,21 - 2882: -64,20 - 2883: -64,21 - 2884: -64,22 + 2491: -52,21 + 2492: -52,20 + 2496: -57,18 + 2514: -56,18 + 2515: -56,17 + 2516: -56,16 + 2517: -56,15 + 2538: -58,22 + 2539: -58,21 + 2540: -58,20 + 2541: -58,19 + 2542: -58,18 + 2552: -61,18 + 2553: -60,15 + 2554: -60,16 + 2565: -70,18 + 2576: -74,18 + 2585: -79,23 + 2624: -69,20 + 2625: -69,21 + 2626: -64,20 + 2627: -64,21 + 2628: -64,22 - node: color: '#4B709CD8' id: ConcreteTrimLineW decals: - 1279: -15,-7 - 1280: -15,-6 - 1281: -15,-5 - 1282: -15,-3 - 1283: -15,-2 - 1284: -15,-1 - 1291: -11,-3 - 1292: -11,-2 - 1293: -11,-1 - 1344: -4,-6 - 1345: -4,-2 - 1362: -1,-6 - 1386: 3,-2 - 1387: 3,-3 - 1388: 3,-5 - 1389: -1,-2 - 1416: 6,-2 - 1417: 6,-3 - 1418: 6,-5 - 1419: 6,-6 - 1492: -11,3 + 1047: -15,-7 + 1048: -15,-6 + 1049: -15,-5 + 1050: -15,-3 + 1051: -15,-2 + 1052: -15,-1 + 1059: -11,-3 + 1060: -11,-2 + 1061: -11,-1 + 1112: -4,-6 + 1113: -4,-2 + 1128: -1,-6 + 1152: 3,-2 + 1153: 3,-3 + 1154: 3,-5 + 1155: -1,-2 + 1182: 6,-2 + 1183: 6,-3 + 1184: 6,-5 + 1185: 6,-6 + 1258: -11,3 - node: color: '#774194CD' id: ConcreteTrimLineW decals: - 2320: -87,-29 - 2321: -87,-31 - 2327: -84,-36 + 2086: -87,-29 + 2087: -87,-31 + 2093: -84,-36 - node: color: '#96DAFF8C' id: ConcreteTrimLineW decals: - 1215: -179,-7 - 1216: -179,-8 - 1217: -179,-9 - 1218: -179,-10 - 1219: -179,-11 - 1220: -179,-12 - 1221: -179,-13 - 1222: -179,-15 - 1223: -179,-16 - 1224: -179,-17 - 1225: -179,-18 - 1226: -179,-19 + 984: -179,-7 + 985: -179,-8 + 986: -179,-9 + 987: -179,-10 + 988: -179,-11 + 989: -179,-12 + 990: -179,-13 + 991: -179,-15 + 992: -179,-16 + 993: -179,-17 + 994: -179,-18 + 995: -179,-19 - node: color: '#9FED588C' id: ConcreteTrimLineW decals: - 3087: -134,-5 - 3088: -134,-4 + 2830: -134,-5 + 2831: -134,-4 - node: color: '#B3B3B3BF' id: ConcreteTrimLineW decals: - 2977: -38,-13 - 2978: -38,-11 - 2979: -38,-9 + 2720: -38,-13 + 2721: -38,-11 + 2722: -38,-9 - node: color: '#B3B3B3FF' id: ConcreteTrimLineW decals: - 426: -48,4 - 476: -86,9 - 477: -86,8 - 478: -86,7 - 479: -86,6 - 480: -86,5 - 481: -86,4 - 500: -89,-6 - 503: -90,0 - 505: -89,-2 - 509: -86,-12 - 510: -86,-13 - 511: -86,-14 - 512: -86,-15 - 513: -86,-16 - 616: -103,-2 - 627: -130,-1 - 2922: -131,-8 - 3185: -210,2 - 3186: -210,4 - 3187: -210,6 - 3188: -210,7 - 3189: -210,8 - 3190: -210,9 - 3191: -210,10 - 3192: -210,12 - 3193: -210,14 - 3208: -210,1 + 385: -48,4 + 435: -86,9 + 436: -86,8 + 437: -86,7 + 438: -86,6 + 439: -86,5 + 440: -86,4 + 459: -89,-6 + 462: -90,0 + 464: -89,-2 + 468: -86,-12 + 469: -86,-13 + 470: -86,-14 + 471: -86,-15 + 472: -86,-16 + 568: -103,-2 + 579: -130,-1 + 2665: -131,-8 + 2928: -210,2 + 2929: -210,4 + 2930: -210,6 + 2931: -210,7 + 2932: -210,8 + 2933: -210,9 + 2934: -210,10 + 2935: -210,12 + 2936: -210,14 + 2949: -210,1 - node: color: '#B3B9B0D1' id: ConcreteTrimLineW decals: - 1260: -208,-1 + 1028: -208,-1 - node: color: '#B7B6B3D8' id: ConcreteTrimLineW decals: - 916: -38,-15 - 937: -28,-14 - 938: -28,-13 - 939: -28,-12 - 940: -28,-11 - 941: -28,-10 - 942: -28,-9 - 943: -28,-8 - 962: -15,0 - 963: -15,1 - 1037: -215,-7 - 1038: -215,-8 - 1039: -215,-9 - 1040: -215,-10 - 1041: -215,-11 - 1042: -215,-12 - 1043: -215,-13 - 1044: -215,-14 - 1045: -215,-15 - 1046: -215,-16 - 1047: -215,-17 - 1048: -215,-18 - 1049: -215,-19 - 1050: -215,-20 - 1140: -197,-19 - 1141: -197,-18 - 1142: -197,-17 - 1143: -197,-16 - 1144: -197,-15 - 1145: -197,-13 - 1146: -197,-12 - 1147: -197,-11 - 1148: -197,-10 - 1149: -197,-9 - 1150: -197,-8 - 1151: -197,-7 + 741: -38,-15 + 762: -28,-14 + 763: -28,-13 + 764: -28,-12 + 765: -28,-11 + 766: -28,-10 + 767: -28,-9 + 768: -28,-8 + 787: -15,0 + 788: -15,1 + 855: -215,-7 + 856: -215,-8 + 857: -215,-9 + 858: -215,-10 + 859: -215,-11 + 860: -215,-12 + 861: -215,-15 + 862: -215,-16 + 863: -215,-17 + 864: -215,-18 + 865: -215,-20 + 929: -197,-19 + 930: -197,-18 + 931: -197,-17 + 932: -197,-16 + 933: -197,-15 + 934: -197,-13 + 935: -197,-12 + 936: -197,-11 + 937: -197,-10 + 938: -197,-9 + 939: -197,-8 + 940: -197,-7 - node: color: '#BC863FCD' id: ConcreteTrimLineW decals: - 2333: -84,-33 - 2334: -87,-30 + 2099: -84,-33 + 2100: -87,-30 - node: color: '#DE3A3A8C' id: ConcreteTrimLineW decals: - 634: -135,3 - 635: -135,4 - 649: -138,4 - 650: -138,5 - 651: -138,6 + 586: -135,3 + 587: -135,4 + 601: -138,4 + 602: -138,5 + 603: -138,6 - node: color: '#DE3A3AD8' id: ConcreteTrimLineW decals: - 6550: -169,-9 - 6553: -170,-13 - - node: - color: '#F98AFF8C' - id: ConcreteTrimLineW - decals: - 1185: -188,-1 - 1186: -188,0 - 1187: -188,1 - 1188: -188,2 - 1189: -188,3 - 1190: -188,5 - 1191: -188,6 - 1192: -188,7 - 1193: -188,8 - 1194: -188,9 - 1195: -188,10 - 1196: -188,12 - 1197: -188,13 - 1198: -188,14 + 6066: -169,-9 + 6069: -170,-13 - node: color: '#FF98218C' id: ConcreteTrimLineW decals: - 168: -52,-11 - 169: -52,-12 - 170: -52,-13 - 171: -52,-14 - 263: -52,6 - 264: -52,5 - 265: -52,4 - 266: -52,3 - 267: -52,2 - 268: -52,1 - 269: -52,0 - 270: -52,-1 - 271: -52,-2 - 274: -51,-4 - 275: -51,-5 - 276: -51,-6 - 277: -51,-7 - 278: -51,-8 - 279: -51,-9 - 351: -44,-8 - 352: -44,-9 - 353: -44,-5 - 354: -44,-4 + 127: -52,-11 + 128: -52,-12 + 129: -52,-13 + 130: -52,-14 + 222: -52,6 + 223: -52,5 + 224: -52,4 + 225: -52,3 + 226: -52,2 + 227: -52,1 + 228: -52,0 + 229: -52,-1 + 230: -52,-2 + 233: -51,-4 + 234: -51,-5 + 235: -51,-6 + 236: -51,-7 + 237: -51,-8 + 238: -51,-9 + 310: -44,-8 + 311: -44,-9 + 312: -44,-5 + 313: -44,-4 - node: color: '#FFA647D8' id: ConcreteTrimLineW decals: - 2456: -57,6 - 2472: -58,1 - 2473: -58,2 - 2474: -58,4 - 2475: -58,3 - 2478: -58,0 - 2488: -63,3 - 2489: -63,4 - 2500: -63,-1 - 2501: -63,-2 - 2502: -63,-3 - 2507: -63,-5 - 2508: -63,-6 - 2509: -63,-7 - 2523: -55,0 - 2532: -56,-3 - 2533: -56,-2 - 2555: -66,-1 - 2556: -66,-2 - 2557: -66,-3 - 2558: -66,-5 - 2559: -66,-6 - 2560: -66,-7 - 2561: -66,-8 - 2562: -66,-9 - 2570: -70,-9 - 2571: -70,-10 - 2572: -70,-11 - 2573: -70,-12 - 2591: -70,1 - 2592: -70,2 - 2593: -70,3 - 2594: -70,4 - 2618: -70,-5 - 2619: -70,-3 - 2634: -73,-10 - 2635: -73,-9 - 2636: -73,-8 - 2637: -73,-7 - 2638: -73,-6 - 2639: -73,-5 - 2644: -73,-3 - 2645: -73,-2 - 2646: -73,-1 - 2647: -73,0 - 2648: -73,1 - 2649: -73,2 + 2222: -57,6 + 2238: -58,1 + 2239: -58,2 + 2240: -58,4 + 2241: -58,3 + 2244: -58,0 + 2254: -63,3 + 2255: -63,4 + 2266: -63,-1 + 2267: -63,-2 + 2268: -63,-3 + 2273: -63,-5 + 2274: -63,-6 + 2275: -63,-7 + 2289: -55,0 + 2298: -56,-3 + 2299: -56,-2 + 2321: -66,-1 + 2322: -66,-2 + 2323: -66,-3 + 2324: -66,-5 + 2325: -66,-6 + 2326: -66,-7 + 2327: -66,-8 + 2328: -66,-9 + 2336: -70,-9 + 2337: -70,-10 + 2338: -70,-11 + 2339: -70,-12 + 2357: -70,1 + 2358: -70,2 + 2359: -70,3 + 2360: -70,4 + 2384: -70,-5 + 2385: -70,-3 + 2400: -73,-10 + 2401: -73,-9 + 2402: -73,-8 + 2403: -73,-7 + 2404: -73,-6 + 2405: -73,-5 + 2410: -73,-3 + 2411: -73,-2 + 2412: -73,-1 + 2413: -73,0 + 2414: -73,1 + 2415: -73,2 - node: cleanable: True color: '#639137FF' id: Damaged decals: - 6480: -36,-2 - 6481: -36,-2 - 6482: -36,-2 - 6518: -25,1 - 6519: -25,1 - 6520: -25,1 - 6521: -27,0 - 6522: -29,4 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 906: -192,19 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Diablo - decals: - 6221: -45,16 + 5996: -36,-2 + 5997: -36,-2 + 5998: -36,-2 + 6034: -25,1 + 6035: -25,1 + 6036: -25,1 + 6037: -27,0 + 6038: -29,4 - node: color: '#28DF58AA' id: Dirt decals: - 6462: -36,-6 - 6463: -37,-7 + 5978: -36,-6 + 5979: -37,-7 - node: color: '#28DF58FF' id: Dirt decals: - 6464: -30,-2 - 6465: -30,-2 - 6466: -28,-3 - 6467: -28,-3 - 6468: -28,-3 - 6469: -28,-4 - 6470: -28,-5 - 6471: -28,-5 - 6472: -28,-5 + 5980: -30,-2 + 5981: -30,-2 + 5982: -28,-3 + 5983: -28,-3 + 5984: -28,-3 + 5985: -28,-4 + 5986: -28,-5 + 5987: -28,-5 + 5988: -28,-5 - node: cleanable: True color: '#639137FF' id: Dirt decals: - 6473: -36,-2 - 6474: -36,-2 - 6475: -36,-2 - 6476: -36,-2 - 6477: -36,-2 - 6478: -36,-2 - 6479: -36,-2 - 6483: -35,-5 - 6484: -35,-5 - 6485: -34,-4 - 6486: -34,-4 - 6487: -34,-3 - 6488: -34,-3 - 6489: -30,-4 - 6490: -37,-7 - 6491: -37,-7 - 6492: -38,-7 - 6493: -38,-7 - 6494: -37,-7 - 6495: -37,-7 - 6496: -37,-7 - 6497: -37,-3 - 6498: -37,-2 - 6499: -37,-1 - 6500: -37,-1 - 6501: -31,-3 - 6502: -31,-3 - 6503: -28,-6 - 6504: -28,-6 - 6505: -26,-5 - 6506: -26,-5 - 6507: -25,-5 - 6508: -26,-4 - 6509: -26,-4 - 6510: -27,0 - 6511: -27,0 - 6512: -27,0 - 6513: -27,0 - 6514: -26,1 - 6515: -26,1 - 6516: -25,1 - 6517: -25,1 - 6523: -29,4 - 6524: -29,4 - 6525: -29,4 - 6526: -30,5 - 6527: -29,4 - 6528: -27,2 - 6529: -27,2 - 6530: -28,2 - 6531: -27,3 - 6532: -29,3 - 6533: -28,2 - 6534: -28,2 - 6535: -27,-1 - 6536: -27,-1 - 6537: -26,-2 - 6538: -27,-3 - 6539: -27,-3 - 6540: -30,-3 - 6541: -30,-3 - 6542: -30,-3 - 6543: -37,-4 - 6544: -35,-4 - 6545: -37,-4 - 6546: -37,-4 + 5989: -36,-2 + 5990: -36,-2 + 5991: -36,-2 + 5992: -36,-2 + 5993: -36,-2 + 5994: -36,-2 + 5995: -36,-2 + 5999: -35,-5 + 6000: -35,-5 + 6001: -34,-4 + 6002: -34,-4 + 6003: -34,-3 + 6004: -34,-3 + 6005: -30,-4 + 6006: -37,-7 + 6007: -37,-7 + 6008: -38,-7 + 6009: -38,-7 + 6010: -37,-7 + 6011: -37,-7 + 6012: -37,-7 + 6013: -37,-3 + 6014: -37,-2 + 6015: -37,-1 + 6016: -37,-1 + 6017: -31,-3 + 6018: -31,-3 + 6019: -28,-6 + 6020: -28,-6 + 6021: -26,-5 + 6022: -26,-5 + 6023: -25,-5 + 6024: -26,-4 + 6025: -26,-4 + 6026: -27,0 + 6027: -27,0 + 6028: -27,0 + 6029: -27,0 + 6030: -26,1 + 6031: -26,1 + 6032: -25,1 + 6033: -25,1 + 6039: -29,4 + 6040: -29,4 + 6041: -29,4 + 6042: -30,5 + 6043: -29,4 + 6044: -27,2 + 6045: -27,2 + 6046: -28,2 + 6047: -27,3 + 6048: -29,3 + 6049: -28,2 + 6050: -28,2 + 6051: -27,-1 + 6052: -27,-1 + 6053: -26,-2 + 6054: -27,-3 + 6055: -27,-3 + 6056: -30,-3 + 6057: -30,-3 + 6058: -30,-3 + 6059: -37,-4 + 6060: -35,-4 + 6061: -37,-4 + 6062: -37,-4 + - node: + color: '#663C0DFF' + id: Dirt + decals: + 6918: -227,-30 + 6919: -226,-24 + 6920: -223,-26 + 6921: -228,-35 + 6922: -224,-37 + 6923: -228,-36 + 6924: -219,-34 + 6925: -218,-33 + 6926: -218,-34 + 6927: -219,-38 + 6928: -220,-38 + 6929: -219,-39 + 6930: -219,-40 + 6931: -225,-29 + 6932: -223,-31 + 6933: -224,-31 + 6934: -223,-30 + 6935: -223,-32 + 6936: -222,-32 + 6937: -224,-32 + 6938: -224,-30 + 6939: -222,-30 + 6940: -221,-32 + 6941: -220,-32 + 6942: -221,-33 + 6943: -222,-33 + 6944: -223,-33 + 6945: -223,-34 + 6946: -222,-34 + 6947: -222,-35 + 6948: -221,-35 + 6949: -221,-34 + 6950: -224,-34 + 6951: -225,-34 + 6952: -225,-35 + 6953: -226,-35 + 6954: -226,-34 + 6955: -224,-35 + 6956: -223,-35 + 6957: -225,-32 + 6958: -225,-31 + 6959: -224,-29 + 6960: -223,-29 + 6961: -222,-29 + 6962: -222,-31 + 6963: -223,-31 + 6964: -222,-24 + 6965: -220,-23 + 6966: -219,-23 + 6967: -222,-26 + 6968: -223,-26 + 6969: -224,-26 + 6970: -227,-21 + 6971: -221,-21 + 6972: -221,-20 + 6973: -222,-20 + 6974: -222,-19 + 6975: -227,-15 + 6976: -226,-15 + 6977: -227,-14 + 6978: -227,-13 + 6979: -227,-12 + 6980: -228,-12 + 6981: -228,-11 + 6982: -227,-11 + 6983: -227,-10 + 6984: -227,-9 + 6985: -226,-9 + 6986: -226,-8 + 6987: -225,-8 + 6988: -224,-8 + 6989: -223,-8 + 6990: -223,-9 + 6991: -223,-10 + 6992: -223,-11 + 6993: -224,-11 + 6994: -223,-12 + 6995: -224,-12 + 6996: -225,-12 + 6997: -222,-8 + 6998: -223,-7 + 6999: -223,-6 + 7000: -223,-5 + 7001: -224,-5 + 7002: -224,-4 + 7003: -224,-3 + 7004: -225,-3 + 7005: -225,-2 + 7006: -222,-4 + 7007: -223,-4 + 7008: -222,-3 + 7009: -221,-3 + 7010: -221,-4 + 7011: -221,-5 + 7012: -222,-8 + 7013: -221,-8 + 7014: -221,-9 + 7015: -220,-9 + 7016: -220,-10 + 7017: -219,-10 + 7018: -219,-11 + 7019: -218,-11 + 7020: -218,-12 + 7021: -219,-11 + 7022: -218,-13 + 7023: -218,-14 + 7024: -218,-15 + 7025: -219,-14 + 7026: -220,-14 + 7027: -221,-14 + 7028: -221,-7 + 7029: -220,-7 + 7030: -219,-7 + 7031: -218,-7 + 7032: -219,-6 + 7033: -218,-6 + 7034: -217,-6 + 7035: -217,-5 + 7036: -218,-5 + 7037: -217,-4 + 7038: -218,-4 - node: cleanable: True color: '#FFFFFF6B' id: Dirt decals: - 1977: -162,-21 - 1978: -159,-18 - 1979: -157,-19 - 1980: -157,-20 - 1981: -157,-21 - 1982: -158,-21 - 1983: -159,-21 - 1984: -159,-22 - 1985: -156,-23 - 1986: -155,-22 - 1987: -154,-21 - 1988: -153,-20 - 1989: -154,-18 - 1990: -154,-18 + 1743: -162,-21 + 1744: -159,-18 + 1745: -157,-19 + 1746: -157,-20 + 1747: -157,-21 + 1748: -158,-21 + 1749: -159,-21 + 1750: -159,-22 + 1751: -156,-23 + 1752: -155,-22 + 1753: -154,-21 + 1754: -153,-20 + 1755: -154,-18 + 1756: -154,-18 - node: color: '#FFFFFFFF' id: Dirt decals: - 6459: -37,-5 - 6460: -36,-7 - 6461: -34,-4 + 5975: -37,-5 + 5976: -36,-7 + 5977: -34,-4 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 3240: -213,-4 - 3241: -216,-4 - 3242: -215,-5 - 3243: -215,-9 - 3244: -213,-10 - 3245: -214,-12 - 3258: -209,1 - 3259: -207,3 - 3265: -204,11 - 3296: -200,-4 - 3302: -196,-11 - 3303: -196,-19 - 3343: -178,-11 - 3487: -152,-4 - 3488: -152,-4 - 3489: -160,-4 - 3490: -160,-4 - 3491: -160,-4 - 3549: -158,-15 - 3550: -165,-20 - 3551: -164,-19 - 3552: -167,-20 - 5124: -76,-16 - 5125: -76,-16 - 5757: -119,14 - 5759: -113,16 - 5760: -112,14 - 5764: -111,17 - 5765: -119,17 - 5767: -122,15 - 5771: -121,13 - 5774: -117,7 - 5775: -113,11 - 5776: -117,9 - 5777: -121,9 - 5778: -123,6 - 5779: -125,6 - 5780: -118,8 - 5782: -116,7 - 5803: -2,-6 - 5808: 2,-2 - 5914: -72,-22 - 5915: -72,-24 - 5916: -74,-25 - 5917: -81,-20 - 5918: -83,-20 - 5919: -88,-20 - 5920: -90,-19 - 5921: -93,-20 - 5922: -95,-19 - 5923: -98,-20 - 5924: -100,-19 - 5925: -101,-23 - 5926: -103,-22 - 5927: -105,-22 - 5928: -107,-22 - 5929: -107,-20 - 5930: -109,-20 - 5931: -112,-22 - 5932: -115,-21 - 5933: -115,-21 - 5934: -119,-22 - 5935: -121,-20 - 5936: -122,-21 - 5937: -124,-19 - 5938: -123,-19 - 5939: -128,-20 - 5940: -130,-21 - 5941: -128,-15 - 5942: -125,-16 - 5943: -124,-17 - 5944: -130,-14 - 5945: -131,-14 - 5946: -131,-16 - 5947: -131,-12 - 5948: -131,-11 - 5949: -127,-15 - 5950: -125,-15 - 5951: -125,-14 - 5952: -124,-16 - 5954: -124,-17 - 5955: -121,-17 - 6109: -94,8 - 6122: -58,-20 - 6123: -57,-19 - 6124: -60,-20 - 6126: -54,-19 - 6128: -54,-19 - 6130: -52,-20 - 6131: -50,-23 - 6132: -47,-23 - 6133: -44,-23 - 6134: -42,-22 - 6135: -40,-22 - 6137: -39,-23 - 6139: -39,-25 - 6140: -38,-26 - 6143: -39,-19 - 6144: -39,-17 - 6146: -40,-17 - 6148: -40,-15 - 6150: -40,-19 - 6152: -39,-20 - 6346: -76,-19 - 6347: -74,-19 - 6348: -74,-21 - 6387: -123,4 - 6388: -124,1 - 6389: -125,1 - 6910: -20,-21 - 6911: -21,-21 - 6912: -21,-21 + 2981: -213,-4 + 2982: -216,-4 + 2983: -215,-5 + 2984: -215,-9 + 2985: -213,-10 + 2986: -214,-12 + 2998: -209,1 + 2999: -207,3 + 3008: -200,-4 + 3014: -196,-11 + 3015: -196,-19 + 3043: -178,-11 + 3175: -152,-4 + 3176: -152,-4 + 3177: -160,-4 + 3178: -160,-4 + 3179: -160,-4 + 3237: -158,-15 + 3238: -165,-20 + 3239: -164,-19 + 3240: -167,-20 + 4711: -76,-16 + 4712: -76,-16 + 5313: -119,14 + 5315: -113,16 + 5316: -112,14 + 5320: -111,17 + 5321: -119,17 + 5323: -122,15 + 5327: -121,13 + 5330: -117,7 + 5331: -113,11 + 5332: -117,9 + 5333: -121,9 + 5334: -123,6 + 5335: -125,6 + 5336: -118,8 + 5338: -116,7 + 5359: -2,-6 + 5364: 2,-2 + 5466: -72,-22 + 5467: -72,-24 + 5468: -74,-25 + 5469: -81,-20 + 5470: -83,-20 + 5471: -88,-20 + 5472: -90,-19 + 5473: -93,-20 + 5474: -95,-19 + 5475: -98,-20 + 5476: -100,-19 + 5477: -101,-23 + 5478: -103,-22 + 5479: -105,-22 + 5480: -107,-22 + 5481: -107,-20 + 5482: -109,-20 + 5483: -112,-22 + 5484: -115,-21 + 5485: -115,-21 + 5486: -119,-22 + 5487: -121,-20 + 5488: -122,-21 + 5489: -124,-19 + 5490: -123,-19 + 5491: -128,-20 + 5492: -130,-21 + 5493: -128,-15 + 5494: -125,-16 + 5495: -124,-17 + 5496: -130,-14 + 5497: -131,-14 + 5498: -131,-16 + 5499: -131,-12 + 5500: -131,-11 + 5501: -127,-15 + 5502: -125,-15 + 5503: -125,-14 + 5504: -124,-16 + 5506: -124,-17 + 5507: -121,-17 + 5661: -94,8 + 5674: -58,-20 + 5675: -57,-19 + 5676: -60,-20 + 5678: -54,-19 + 5680: -54,-19 + 5682: -52,-20 + 5683: -50,-23 + 5684: -47,-23 + 5685: -44,-23 + 5686: -42,-22 + 5687: -40,-22 + 5689: -39,-23 + 5691: -39,-25 + 5692: -38,-26 + 5695: -39,-19 + 5696: -39,-17 + 5698: -40,-17 + 5700: -40,-15 + 5702: -40,-19 + 5704: -39,-20 + 5903: -123,4 + 5904: -124,1 + 5905: -125,1 + 6425: -20,-21 + 6426: -21,-21 + 6427: -21,-21 - node: cleanable: True color: '#FFFFFF6B' id: DirtHeavy decals: - 1991: -159,-17 - 1992: -160,-17 - 1993: -160,-17 - 1994: -162,-18 - 1995: -163,-19 - 1996: -165,-19 - 1997: -165,-19 - 1998: -166,-20 - 1999: -166,-19 - 2000: -167,-19 - 2001: -157,-16 - 2002: -155,-16 - 2003: -155,-16 - 2004: -155,-16 - 2005: -154,-17 + 1757: -159,-17 + 1758: -160,-17 + 1759: -160,-17 + 1760: -162,-18 + 1761: -163,-19 + 1762: -165,-19 + 1763: -165,-19 + 1764: -166,-20 + 1765: -166,-19 + 1766: -167,-19 + 1767: -157,-16 + 1768: -155,-16 + 1769: -155,-16 + 1770: -155,-16 + 1771: -154,-17 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 6648: -67,12 - 6649: -66,12 - 6650: -66,14 - 6651: -68,15 - 6652: -66,15 - 6653: -68,15 - 6654: -66,15 - 6655: -67,14 - 6656: -66,14 - 6657: -66,13 - 6658: -67,11 - 6659: -67,11 - 6660: -67,11 - 6661: -68,12 - 6662: -66,12 - 6663: -67,11 + 6163: -67,12 + 6164: -66,12 + 6165: -66,14 + 6166: -68,15 + 6167: -66,15 + 6168: -68,15 + 6169: -66,15 + 6170: -67,14 + 6171: -66,14 + 6172: -66,13 + 6173: -67,11 + 6174: -67,11 + 6175: -67,11 + 6176: -68,12 + 6177: -66,12 + 6178: -67,11 + 6689: -227,-18 + 6690: -227,-18 + 6691: -227,-18 + 6755: -226,-18 + 6756: -224,-17 + 6757: -225,-17 + 6758: -227,-18 + 6759: -227,-20 + 6760: -225,-21 + 6761: -222,-20 + 6762: -221,-20 + 6763: -222,-21 + 6764: -221,-20 + 6765: -221,-18 + 6766: -220,-17 + 6767: -222,-17 + 6768: -222,-17 + 6769: -220,-17 + 6770: -218,-17 + 6771: -218,-18 + 6772: -227,-26 + 6773: -228,-26 + 6774: -228,-25 + 6775: -227,-25 + 6776: -225,-26 + 6777: -226,-28 + 6778: -226,-29 + 6779: -226,-30 + 6780: -225,-31 + 6781: -227,-31 + 6782: -225,-32 + 6783: -223,-34 + 6784: -224,-32 + 6785: -228,-34 + 6786: -229,-34 + 6787: -227,-32 + 6788: -226,-34 + 6789: -228,-35 + 6790: -226,-35 + 6791: -224,-34 + 6792: -223,-36 + 6793: -226,-36 + 6794: -223,-36 + 6795: -222,-36 + 6796: -226,-38 + 6797: -226,-38 + 6798: -220,-39 + 6799: -222,-39 + 6800: -226,-40 + 6801: -225,-40 + 6802: -225,-40 + 6803: -220,-40 + 6804: -219,-39 + 6805: -219,-38 + 6806: -220,-37 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 3246: -214,-14 - 3247: -213,-12 - 3248: -214,-11 - 3260: -210,5 - 3261: -208,5 - 3266: -209,14 - 3297: -196,-3 - 3301: -196,-10 - 3307: -197,-14 - 3308: -195,-12 - 3344: -179,-12 - 3345: -177,-10 - 3346: -179,-9 - 3347: -177,-12 - 3348: -177,-14 - 3370: -188,6 - 3371: -187,6 - 3372: -186,7 - 3399: -160,-4 - 3400: -160,-5 - 3401: -162,-4 - 3402: -164,-4 - 3403: -164,-5 - 3404: -164,-3 - 3405: -161,-4 - 3406: -158,-1 - 3407: -161,-1 - 3408: -161,0 - 3417: -170,0 - 3418: -169,0 - 3419: -169,1 - 3420: -168,0 - 3421: -168,-1 - 3422: -169,-1 - 3423: -170,-1 - 3424: -170,1 - 3425: -172,0 - 3426: -174,1 - 3427: -174,0 - 3428: -174,-1 - 3429: -173,-1 - 3430: -173,0 - 3431: -173,1 - 3432: -172,1 - 3433: -174,0 - 3434: -174,3 - 3435: -173,4 - 3436: -172,4 - 3437: -171,4 - 3438: -171,3 - 3439: -171,3 - 3448: -171,5 - 3449: -171,5 - 3450: -170,5 - 3451: -169,4 - 3452: -168,4 - 3453: -167,5 - 3454: -166,4 - 3455: -162,4 - 3456: -162,4 - 3457: -163,3 - 3458: -165,4 - 3459: -165,5 - 3460: -159,3 - 3461: -158,4 - 3462: -159,5 - 3463: -160,4 - 3464: -161,3 - 3465: -161,3 - 3466: -157,4 - 3467: -157,3 - 3468: -156,4 - 3469: -156,4 - 3470: -153,3 - 3471: -152,3 - 3472: -153,3 - 3473: -155,3 - 3474: -155,3 - 3475: -154,4 - 3476: -152,4 - 3477: -152,5 - 3478: -152,0 - 3479: -152,0 - 3480: -153,1 - 3481: -153,0 - 3482: -152,1 - 3483: -152,1 - 3484: -152,1 - 3485: -154,-1 - 3486: -153,-1 - 3492: -156,-5 - 3493: -155,-4 - 3494: -156,-4 - 3495: -154,-3 - 3496: -156,-8 - 3497: -156,-8 - 3498: -156,-8 - 3499: -156,-8 - 3500: -158,-8 - 3501: -158,-8 - 3502: -158,-8 - 3503: -158,-8 - 3504: -158,-8 - 3505: -159,-9 - 3506: -158,-9 - 3507: -158,-9 - 3508: -158,-9 - 3553: -166,-22 - 3554: -166,-22 - 3555: -165,-19 - 3556: -166,-19 - 3557: -166,-19 - 3558: -164,-13 - 3559: -164,-13 - 3560: -164,-13 - 3561: -164,-13 - 3562: -164,-13 - 3563: -163,-14 - 3564: -163,-14 - 3565: -162,-13 - 3566: -162,-14 - 3567: -164,-14 - 3588: -162,-8 - 3589: -162,-8 - 3590: -162,-8 - 3591: -162,-8 - 3592: -164,-8 - 3593: -164,-8 - 3594: -164,-8 - 3595: -164,-8 - 3596: -164,-10 - 3597: -164,-10 - 3598: -164,-10 - 3615: -169,-14 - 3616: -169,-14 - 3617: -170,-14 - 3618: -170,-14 - 3619: -170,-13 - 3620: -170,-13 - 3621: -170,-12 - 3622: -169,-13 - 3623: -168,-13 - 3624: -168,-13 - 3657: -178,-17 - 3658: -178,-17 - 3659: -177,-16 - 3660: -178,-16 - 3661: -179,-16 - 3662: -179,-14 - 3663: -178,-14 - 3664: -177,-14 - 3665: -177,-13 - 3666: -179,-13 - 3667: -178,-11 - 3686: -182,-3 - 3687: -182,-3 - 3688: -182,-3 - 3689: -190,-4 - 3690: -191,-5 - 3691: -192,-5 - 3692: -192,-4 - 3693: -192,-4 - 3694: -198,-4 - 3695: -197,-3 - 3696: -197,-3 - 3697: -197,-3 - 3698: -197,-3 - 3699: -197,-3 - 3700: -197,-3 - 3773: -193,7 - 3774: -193,6 - 3775: -193,6 - 3776: -192,6 - 3777: -192,7 - 3778: -193,8 - 3779: -194,8 - 3780: -194,6 - 3781: -193,7 - 3782: -196,7 - 3783: -196,6 - 3784: -196,9 - 3785: -197,7 - 3786: -198,7 - 3787: -199,6 - 3788: -199,8 - 3789: -196,10 - 3790: -195,10 - 3791: -196,15 - 3792: -197,14 - 3793: -198,13 - 3794: -198,13 - 3795: -197,12 - 3796: -196,17 - 3797: -198,16 - 3798: -199,15 - 3799: -199,15 - 3800: -199,19 - 3801: -199,20 - 3802: -200,21 - 3803: -200,20 - 3804: -199,23 - 3805: -196,22 - 3844: -186,12 - 3845: -188,12 - 3846: -187,10 - 3847: -187,8 - 3848: -186,8 - 3849: -187,7 - 3850: -188,6 - 3851: -186,5 - 3852: -187,3 - 3853: -186,2 - 3854: -186,2 - 3855: -188,2 - 3856: -179,-3 - 3857: -178,-4 - 3858: -175,-3 - 3859: -174,-4 - 3860: -173,-5 - 3861: -173,-3 - 3862: -173,-5 - 3863: -169,-4 - 3864: -171,-4 - 3879: -150,-3 - 3880: -150,-4 - 3881: -149,-5 - 3882: -149,-5 - 3883: -148,-5 - 3884: -149,-5 - 3885: -148,-6 - 3886: -148,-6 - 3887: -147,-7 - 3888: -147,-7 - 3889: -146,-7 - 3890: -145,-7 - 3891: -140,-6 - 3892: -140,-6 - 3893: -141,-4 - 3894: -140,-3 - 3895: -139,-3 - 3896: -138,-2 - 3897: -138,-2 - 3898: -138,-3 - 3899: -138,-3 - 3900: -134,-3 - 3901: -136,-4 - 3902: -135,-5 - 3903: -136,-5 - 3904: -137,-7 - 3905: -136,-7 - 3906: -136,-7 - 3907: -134,-6 - 3932: -148,4 - 3933: -149,3 - 3934: -149,2 - 3966: -134,1 - 3967: -132,0 - 3968: -134,0 - 3969: -135,1 - 3970: -136,1 - 3971: -137,1 - 3972: -137,1 - 3973: -136,2 - 3974: -137,4 - 3975: -138,4 - 3976: -138,5 - 3977: -137,5 - 3978: -135,5 - 4010: -133,7 - 4011: -134,-2 - 4012: -133,-4 - 4013: -133,-5 - 4014: -133,-5 - 4015: -132,-6 - 4016: -133,-6 - 4017: -133,-6 - 4044: -148,-2 - 4045: -148,-2 - 4046: -150,-2 - 4047: -150,-2 - 4048: -149,-2 - 4076: -126,-2 - 4077: -124,-3 - 4078: -124,-3 - 4079: -125,-4 - 4080: -125,-5 - 4081: -124,-5 - 4082: -124,-5 - 4150: -110,-12 - 4151: -110,-11 - 4152: -109,-11 - 4153: -109,-11 - 4154: -109,-12 - 4155: -106,-15 - 4156: -106,-15 - 4157: -104,-14 - 4158: -106,-12 - 4159: -106,-13 - 4160: -106,-14 - 4161: -108,-15 - 4162: -107,-15 - 4163: -106,-17 - 4164: -105,-16 - 4216: -117,0 - 4217: -117,1 - 4218: -118,0 - 4219: -119,0 - 4220: -120,1 - 4221: -119,1 - 4222: -118,3 - 4223: -120,3 - 4224: -120,3 - 4225: -118,3 - 4226: -116,3 - 4227: -115,3 - 4228: -117,-7 - 4229: -116,-8 - 4230: -116,-7 - 4231: -116,-7 - 4232: -117,-7 - 4233: -120,-5 - 4234: -120,-5 - 4235: -120,-4 - 4236: -119,-4 - 4237: -119,-4 - 4274: -116,-16 - 4275: -116,-16 - 4276: -116,-17 - 4277: -118,-17 - 4278: -117,-15 - 4279: -116,-15 - 4280: -117,-17 - 4351: -90,-3 - 4352: -89,-4 - 4353: -89,-5 - 4354: -89,-4 - 4355: -88,-3 - 4356: -88,-3 - 4357: -89,0 - 4358: -89,0 - 4359: -88,-1 - 4360: -89,1 - 4361: -87,1 - 4362: -87,1 - 4363: -85,-11 - 4364: -85,-11 - 4365: -85,-12 - 4366: -85,-12 - 4367: -85,-12 - 4368: -85,-13 - 4393: -83,-14 - 4394: -83,-14 - 4395: -85,-10 - 4396: -86,-11 - 4397: -84,-11 - 4398: -84,-12 - 4399: -87,-10 - 4400: -88,-8 - 4401: -87,-8 - 4402: -87,-8 - 4403: -87,-9 - 4404: -88,-8 - 4405: -89,-8 - 4406: -89,-8 - 4407: -89,-7 - 4408: -87,-7 - 4409: -88,-5 - 4410: -90,-4 - 4411: -91,-4 - 4412: -92,-5 - 4413: -94,-4 - 4414: -95,-3 - 4415: -95,-4 - 4416: -93,-3 - 4417: -88,1 - 4418: -89,0 - 4419: -90,0 - 4420: -88,-1 - 4421: -88,-1 - 4422: -87,0 - 4423: -86,0 - 4424: -85,5 - 4425: -85,4 - 4426: -85,3 - 4427: -84,3 - 4428: -84,4 - 4429: -84,6 - 4430: -85,7 - 4431: -87,5 - 4432: -86,3 - 4433: -86,3 - 4434: -87,3 - 4435: -84,2 - 4436: -84,2 - 4437: -85,5 - 4438: -85,7 - 4439: -85,8 - 4440: -84,7 - 4441: -86,9 - 4442: -85,8 - 4443: -86,6 - 4444: -84,8 - 4445: -83,8 - 4446: -84,8 - 4447: -84,9 - 4482: -79,7 - 4483: -81,7 - 4484: -80,8 - 4485: -78,8 - 4486: -77,8 - 4487: -77,7 - 4488: -75,8 - 4489: -75,8 - 4490: -79,8 - 4491: -79,8 - 4492: -73,9 - 4493: -72,8 - 4494: -69,9 - 4495: -71,8 - 4496: -72,7 - 4497: -71,7 - 4498: -69,8 - 4499: -69,8 - 4500: -72,8 - 4501: -73,8 - 4502: -69,5 - 4503: -70,4 - 4504: -69,4 - 4505: -68,3 - 4506: -69,3 - 4507: -69,3 - 4508: -68,4 - 4509: -68,4 - 4510: -75,9 - 4511: -76,9 - 4512: -74,7 - 4513: -69,8 - 4514: -69,7 - 4515: -68,8 - 4516: -70,7 - 4517: -68,7 - 4518: -67,9 - 4519: -64,7 - 4537: -56,8 - 4538: -56,7 - 4539: -58,7 - 4540: -57,5 - 4541: -57,4 - 4542: -58,3 - 4543: -57,3 - 4544: -55,3 - 4545: -56,1 - 4546: -58,1 - 4547: -57,2 - 4548: -56,2 - 4549: -55,2 - 4550: -55,5 - 4551: -55,4 - 4602: -66,-2 - 4603: -66,-2 - 4604: -66,-4 - 4605: -65,-11 - 4606: -65,-11 - 4607: -65,-11 - 4608: -70,-11 - 4609: -69,-11 - 4610: -69,-11 - 4611: -69,-11 - 4612: -69,-9 - 4613: -70,-8 - 4614: -70,-9 - 4615: -68,-11 - 4616: -67,-12 - 4617: -66,-13 - 4618: -66,-13 - 4619: -65,-12 - 4620: -64,-9 - 4621: -65,-8 - 4622: -65,-7 - 4623: -66,-5 - 4624: -66,-8 - 4625: -65,-9 - 4682: -79,-10 - 4683: -79,-10 - 4684: -79,2 - 4685: -79,2 - 4686: -79,3 - 4687: -81,2 - 4688: -79,0 - 4689: -79,0 - 4690: -78,0 - 4691: -77,0 - 4692: -80,0 - 4693: -81,0 - 4694: -76,-3 - 4695: -76,-4 - 4696: -74,-4 - 4697: -73,-4 - 4698: -72,-4 - 4699: -73,-2 - 4722: -66,4 - 4723: -66,4 - 4724: -65,4 - 4725: -65,4 - 4726: -69,5 - 4727: -68,5 - 4740: -54,-10 - 4741: -56,-10 - 4742: -57,-10 - 4743: -58,-11 - 4744: -59,-11 - 4745: -59,-13 - 4746: -56,-13 - 4747: -54,-13 - 4748: -54,-12 - 4749: -54,-11 - 4750: -55,-12 - 4751: -61,-13 - 4752: -61,-12 - 4753: -61,-10 - 4754: -62,-10 - 4755: -62,-13 - 4756: -63,-12 - 4757: -63,-11 - 4758: -58,-7 - 4759: -50,-8 - 4760: -48,-7 - 4761: -47,-7 - 4762: -48,-6 - 4763: -49,-6 - 4764: -50,-6 - 4765: -50,-2 - 4766: -51,-2 - 4767: -52,0 - 4768: -51,0 - 4769: -50,3 - 4770: -52,2 - 4771: -52,2 - 4772: -51,1 - 4773: -50,1 - 4774: -50,-1 - 4797: -54,9 - 4798: -56,9 - 4799: -54,7 - 4800: -52,9 - 4801: -51,7 - 4802: -51,7 - 4803: -51,9 - 4804: -50,9 - 4805: -58,9 - 4806: -60,9 - 4807: -60,8 - 4808: -59,8 - 4809: -59,8 - 4810: -58,15 - 4811: -58,14 - 4812: -60,14 - 4813: -60,16 - 4814: -59,15 - 4815: -59,17 - 4816: -60,18 - 4817: -61,17 - 4818: -62,19 - 4819: -62,19 - 4820: -61,20 - 4821: -63,19 - 4822: -64,19 - 4823: -67,20 - 4824: -67,21 - 4825: -67,21 - 4826: -68,19 - 4827: -70,21 - 4828: -69,22 - 4829: -69,20 - 4830: -73,20 - 4831: -76,22 - 4832: -75,24 - 4833: -76,24 - 4834: -78,23 - 4835: -77,23 - 4836: -74,23 - 4837: -72,23 - 4838: -74,22 - 4839: -67,24 - 4840: -67,22 - 4841: -64,23 - 4842: -64,23 - 4843: -68,22 - 4844: -62,23 - 4845: -63,22 - 4846: -59,24 - 4847: -60,22 - 4848: -58,24 - 4849: -59,22 - 4850: -54,23 - 4851: -55,20 - 4852: -53,20 - 4853: -53,20 - 4854: -53,24 - 4855: -52,24 - 4876: -46,2 - 4877: -44,2 - 4878: -44,3 - 4879: -45,4 - 4880: -46,3 - 4881: -48,2 - 4882: -48,3 - 4883: -46,3 - 4886: -42,-2 - 4887: -42,-2 - 4888: -44,-2 - 4889: -44,-2 - 4890: -45,-2 - 4891: -47,-5 - 4892: -47,-6 - 4893: -47,-7 - 4894: -47,-7 - 4913: -55,-17 - 4914: -54,-15 - 4915: -55,-15 - 4916: -56,-16 - 4917: -53,-17 - 4918: -53,-16 - 4959: -41,-12 - 4960: -40,-10 - 4961: -40,-12 - 4962: -40,-12 - 4963: -42,-12 - 4964: -40,-11 - 4965: -42,-9 - 4966: -41,-9 - 5003: -37,-11 - 5004: -37,-11 - 5005: -37,-11 - 5041: -29,-16 - 5042: -30,-16 - 5043: -30,-16 - 5044: -36,-16 - 5045: -36,-16 - 5046: -30,-15 - 5047: -33,-15 - 5048: -32,-16 - 5049: -29,-16 - 5050: -30,-17 - 5052: -29,-15 - 5053: -8,0 - 5077: -14,-12 - 5149: -88,-9 - 5150: -86,-8 - 5151: -72,-7 - 5152: -72,-6 - 5153: -67,-16 - 5154: -69,-16 - 5155: -71,-17 - 5156: -72,-16 - 5157: -70,-16 - 5158: -64,-16 - 5159: -64,-16 - 5160: -64,-16 - 5161: -64,-18 - 5162: -64,-20 - 5163: -64,-21 - 5176: -26,9 - 5180: -25,7 - 5185: -29,12 - 5188: -32,12 - 5190: -30,11 - 5221: -63,-24 - 5222: -64,-24 - 5223: -65,-22 - 5224: -64,-23 - 5228: -65,-22 - 5243: -45,11 - 5244: -45,11 - 5245: -55,-22 - 5246: -45,11 - 5247: -56,-23 - 5335: -85,-31 - 5336: -85,-29 - 5337: -86,-29 - 5338: -86,-28 - 5339: -85,-28 - 5340: -85,-28 - 5341: -84,-29 - 5411: -32,-16 - 5412: -33,-17 - 5413: -35,-15 - 5414: -30,-16 - 5415: -36,-16 - 5416: -33,-15 - 5417: -31,-15 - 5418: -31,-17 - 5419: -33,-16 - 5420: -30,-17 - 5421: -27,-17 - 5422: -28,-15 - 5435: -24,-12 - 5436: -23,-12 - 5437: -24,-13 - 5438: -22,-12 - 5439: -22,-13 - 5440: -23,-14 - 5441: -24,-14 - 5442: -27,-14 - 5443: -28,-13 - 5444: -27,-12 - 5445: -27,-11 - 5446: -28,-12 - 5447: -27,-10 - 5448: -27,-9 - 5449: -27,-8 - 5503: -40,6 - 5504: -38,7 - 5505: -38,8 - 5506: -40,8 - 5507: -39,9 - 5508: -39,9 - 5509: -40,8 - 5510: -40,10 - 5511: -38,9 - 5512: -42,8 - 5513: -44,8 - 5514: -44,8 - 5515: -44,9 - 5516: -44,9 - 5517: -45,7 - 5518: -43,8 - 5519: -43,9 - 5520: -44,9 - 5521: -44,11 - 5522: -43,11 - 5523: -39,10 - 5524: -39,9 - 5525: -38,8 - 5526: -40,7 - 5527: -40,10 - 5528: -38,9 - 5529: -40,8 - 5638: -7,4 - 5639: -7,4 - 5640: -9,4 - 5643: -9,3 - 5644: -10,2 - 5659: -121,14 - 5660: -121,14 - 5663: -113,14 - 5664: -113,14 - 5665: -111,14 - 5666: -111,14 - 5668: -118,17 - 5670: -118,17 - 5672: -118,15 - 5674: -114,15 - 5676: -118,16 - 5677: -112,15 - 5679: -114,15 - 5680: -112,16 - 5681: -114,16 - 5682: -117,16 - 5683: -118,15 - 5684: -120,15 - 5685: -118,16 - 5687: -114,15 - 5689: -112,16 - 5691: -111,15 - 5693: -111,15 - 5695: -114,15 - 5697: -116,16 - 5699: -118,15 - 5700: -118,14 - 5758: -7,-13 - 5761: -9,-13 - 5762: -11,-12 - 5763: -8,-13 - 5766: -5,-11 - 5768: -4,-12 - 5769: -4,-12 - 5770: -5,-13 - 5772: -5,-11 - 5773: -4,-10 - 5781: -8,-8 - 5783: -8,-8 - 5784: -4,-6 - 5785: -2,-6 - 5818: -121,11 - 5819: -121,9 - 5820: -116,11 - 5821: -116,7 - 5822: -114,10 - 5824: -112,11 - 5826: -111,10 - 5867: -12,-16 - 5868: -13,-17 - 5869: -15,-17 - 5870: -16,-17 - 5871: -15,-13 - 5872: -15,-12 - 5873: -7,-17 - 5874: -7,-16 - 5875: -8,-16 - 5876: -9,-17 - 5877: -9,-18 - 5957: -128,-15 - 5958: -128,-15 - 5959: -128,-15 - 5960: -126,-16 - 5961: -126,-16 - 5962: -126,-16 - 5963: -125,-20 - 5965: -125,-21 - 5967: -130,-21 - 5968: -130,-21 - 5969: -130,-21 - 5971: -127,-20 - 5972: -127,-20 - 5973: -120,-21 - 5974: -119,-20 - 5976: -118,-20 - 5977: -119,-21 - 5978: -114,-21 - 5979: -114,-21 - 5980: -116,-19 - 5981: -115,-19 - 5983: -115,-19 - 5984: -115,-19 - 5985: -112,-22 - 5986: -111,-22 - 5987: -110,-22 - 5988: -109,-19 - 5990: -108,-19 - 5991: -105,-19 - 5992: -106,-22 - 5993: -107,-22 - 5994: -108,-22 - 5995: -108,-22 - 5996: -104,-22 - 5997: -102,-21 - 5998: -100,-21 - 6000: -99,-22 - 6001: -99,-22 - 6002: -99,-24 - 6003: -99,-24 - 6004: -103,-26 - 6005: -103,-25 - 6006: -102,-25 - 6007: -102,-25 - 6009: -97,-19 - 6010: -96,-19 - 6011: -96,-17 - 6012: -96,-15 - 6013: -96,-15 - 6014: -96,-15 - 6015: -97,-14 - 6016: -97,-14 - 6019: -93,-13 - 6020: -93,-13 - 6021: -92,-12 - 6022: -93,-11 - 6023: -94,-13 - 6024: -101,-12 - 6025: -102,-12 - 6027: -102,-12 - 6028: -102,-12 - 6029: -101,-10 - 6030: -101,-8 - 6031: -102,-7 - 6032: -101,-7 - 6033: -101,-9 - 6035: -78,-24 - 6036: -78,-24 - 6037: -72,-19 - 6038: -72,-23 - 6039: -72,-23 - 6040: -72,-20 - 6041: -72,-19 - 6042: -72,-24 - 6043: -71,-24 - 6044: -73,-24 - 6045: -78,-24 - 6046: -71,-25 - 6047: -71,-25 - 6048: -67,14 - 6049: -67,13 - 6050: -67,12 - 6051: -67,12 - 6052: -66,13 - 6053: -71,13 - 6054: -72,13 - 6055: -72,12 - 6056: -71,12 - 6057: -74,14 - 6058: -75,13 - 6059: -76,14 - 6060: -88,-20 - 6061: -88,-20 - 6071: -93,-16 - 6073: -93,-16 - 6076: -92,-15 - 6077: -92,-15 - 6083: -97,-9 - 6084: -97,-9 - 6087: -94,-7 - 6089: -93,-8 - 6090: -93,-9 - 6091: -92,-7 - 6092: -92,-7 - 6093: -93,-8 - 6094: -97,-8 - 6095: -97,-8 - 6110: -48,-23 - 6111: -48,-23 - 6112: -95,10 - 6113: -51,-20 - 6114: -93,9 - 6115: -50,-21 - 6116: -93,8 - 6117: -48,-22 - 6118: -93,8 - 6119: -95,5 - 6120: -95,4 - 6121: -95,4 - 6136: -87,12 - 6138: -86,12 - 6162: -40,-15 - 6163: -40,-17 - 6164: -40,-19 - 6165: -39,-20 - 6166: -39,-19 - 6167: -40,-19 - 6169: -40,-21 - 6171: -39,-22 - 6173: -39,-23 - 6175: -40,-23 - 6177: -42,-23 - 6179: -43,-24 - 6180: -44,-23 - 6181: -45,-23 - 6182: -47,-23 - 6183: -47,-22 - 6184: -49,-23 - 6185: -49,-22 - 6186: -50,-21 - 6188: -50,-22 - 6190: -50,-22 - 6192: -50,-20 - 6193: -53,-20 - 6194: -56,-19 - 6195: -56,-19 - 6196: -57,-20 - 6197: -58,-19 - 6198: -56,-19 - 6199: -56,-20 - 6200: -54,-19 - 6201: -53,13 - 6202: -53,-19 - 6203: -51,12 - 6204: -52,13 - 6205: -50,-23 - 6206: -51,-23 - 6207: -54,15 - 6208: -54,15 - 6209: -54,17 - 6210: -53,17 - 6211: -52,16 - 6212: -52,15 - 6213: -51,17 - 6214: -52,12 - 6215: -53,12 - 6216: -52,11 - 6217: -51,11 - 6218: -49,11 - 6219: -48,11 - 6220: -48,10 - 6222: -43,12 - 6223: -44,11 - 6224: -47,15 - 6225: -48,16 - 6226: -48,16 - 6227: -48,17 - 6228: -39,14 - 6229: -40,14 - 6230: -40,15 - 6231: -37,13 - 6232: -37,12 - 6233: -40,16 - 6234: -37,12 - 6235: -40,15 - 6236: -39,15 - 6237: -39,14 - 6238: -37,14 - 6239: -36,13 - 6240: -36,12 - 6241: -42,12 - 6242: -42,12 - 6247: -30,11 - 6249: -30,11 - 6255: -25,8 - 6256: -25,8 - 6257: -33,7 - 6258: -35,6 - 6259: -36,6 - 6260: -25,11 - 6261: -25,9 - 6262: -25,8 - 6263: -25,7 - 6264: -22,7 - 6265: -22,7 - 6266: -21,7 - 6267: -20,7 - 6268: -20,7 - 6269: -22,10 - 6270: -23,10 - 6271: -21,10 - 6272: -19,8 - 6273: -17,7 - 6274: -17,10 - 6275: -18,8 - 6276: -18,7 - 6277: -17,8 - 6278: -18,9 - 6279: -15,8 - 6280: -15,7 - 6281: -15,8 - 6282: -13,8 - 6283: -13,7 - 6284: -17,-2 - 6285: -17,-3 - 6286: -18,-3 - 6287: -19,-4 - 6288: -51,-22 - 6289: -51,-22 - 6290: -57,-20 - 6291: -27,-4 - 6292: -29,-5 - 6293: -61,-20 - 6294: -27,-6 - 6295: -61,-20 - 6296: -61,-20 - 6297: -27,-2 - 6298: -26,-1 - 6299: -29,2 - 6300: -28,3 - 6301: -30,4 - 6302: -26,3 - 6303: -72,-21 - 6304: -72,-21 - 6305: -72,-21 - 6306: -25,2 - 6317: -36,-3 - 6321: -37,-3 - 6323: -37,-2 - 6326: -36,-1 - 6328: -36,-4 - 6334: -37,-6 - 6349: -39,-25 - 6350: -39,-26 - 6351: -40,-28 - 6352: -40,-28 - 6353: -40,-22 - 6354: -39,-22 - 6355: -41,-22 - 6356: -46,-23 - 6357: -48,-23 - 6358: -50,-21 - 6359: -55,-19 - 6360: -57,-19 - 6361: -58,-20 - 6362: -60,-20 - 6363: -59,-23 - 6364: -63,-24 - 6365: -63,-22 - 6366: -72,-23 - 6367: -72,-24 - 6368: -72,-21 - 6369: -86,-20 - 6370: -88,-19 - 6371: -92,-19 - 6372: -100,-19 - 6373: -93,11 - 6374: -92,11 - 6375: -86,11 - 6376: -88,11 - 6377: -89,12 - 6378: -79,12 - 6379: -79,12 - 6380: -74,12 - 6381: -63,11 - 6382: -125,4 - 6383: -125,4 - 6384: -125,4 - 6385: -123,0 - 6386: -123,0 - 6417: -129,3 - 6418: -129,3 - 6419: -129,4 - 6420: -128,5 - 6421: -126,10 - 6422: -126,10 - 6423: -125,10 - 6424: -126,10 - 6425: -127,-6 - 6426: -127,-6 - 6427: -130,-14 - 6428: -125,-16 - 6429: -125,-16 - 6430: -124,-17 - 6431: -123,-17 - 6432: -124,-12 - 6433: -124,-12 - 6434: -122,-19 - 6435: -122,-20 - 6436: -121,-20 - 6437: -120,-21 - 6438: -119,-21 - 6439: -116,-21 - 6440: -115,-21 - 6441: -113,-21 - 6442: -113,-22 - 6443: -114,-22 - 6444: -113,-17 - 6445: -110,-22 - 6446: -110,-21 - 6447: -110,-21 - 6448: -110,-22 - 6871: -22,-16 - 6872: -23,-16 - 6873: -24,-16 - 6874: -23,-17 - 6898: -21,-20 - 6899: -20,-20 - 6900: -22,-21 - 6901: -24,-20 - 6902: -24,-19 - 6903: -23,-19 - 6904: -23,-20 - 6905: -23,-20 - 6906: -25,-21 - 6907: -22,-21 - 6908: -22,-19 - 6909: -21,-19 - 6913: -22,-20 - 6914: -24,-21 - 6915: -24,-21 - 6916: -23,-21 - 6932: -20,-21 - 6933: -21,-21 - 6934: -20,-13 - 6935: -20,-12 - 6936: -21,-12 - 6937: -21,-12 - 6938: -18,-10 - 6939: -20,-10 - 6940: -20,-10 - 6941: -20,-8 - 6942: -20,-8 - 6943: -19,-8 - 6944: -19,-8 - 6945: -19,-10 - 6946: -22,-9 - 6947: -22,-9 - 6948: -22,-9 - 6949: -22,-10 - 6950: -23,-10 - 6951: -27,-8 - 6952: -26,-10 - 6953: -26,-10 - 6954: -28,-12 - 6955: -29,-14 - 6956: -28,-16 - 6957: -27,-15 - 6958: -27,-14 - 6959: -26,-14 - 6960: -26,-15 - 6961: -26,-16 - 6962: -29,-15 - 6963: -29,-14 - 6964: -28,-13 - 6965: -28,-14 - 6966: -27,-14 - 6967: -28,-14 - 6968: -29,-15 - 6969: -29,-16 - 6970: -31,-13 - 6971: -31,-12 - 6972: -31,-11 - 6973: -31,-11 - 6974: -33,-11 - 6975: -32,-9 - 6976: -31,-9 - 6977: -31,-10 - 6978: -31,-8 - 6979: -35,-9 - 6980: -33,-9 - 6981: -33,-9 - 6982: -34,-9 - 6983: -34,-9 - 6984: -31,-9 + 2987: -213,-12 + 2988: -214,-11 + 3000: -210,5 + 3001: -208,5 + 3005: -209,14 + 3009: -196,-3 + 3013: -196,-10 + 3019: -197,-14 + 3020: -195,-12 + 3044: -179,-12 + 3045: -177,-10 + 3046: -179,-9 + 3047: -177,-12 + 3048: -177,-14 + 3087: -160,-4 + 3088: -160,-5 + 3089: -162,-4 + 3090: -164,-4 + 3091: -164,-5 + 3092: -164,-3 + 3093: -161,-4 + 3094: -158,-1 + 3095: -161,-1 + 3096: -161,0 + 3105: -170,0 + 3106: -169,0 + 3107: -169,1 + 3108: -168,0 + 3109: -168,-1 + 3110: -169,-1 + 3111: -170,-1 + 3112: -170,1 + 3113: -172,0 + 3114: -174,1 + 3115: -174,0 + 3116: -174,-1 + 3117: -173,-1 + 3118: -173,0 + 3119: -173,1 + 3120: -172,1 + 3121: -174,0 + 3122: -174,3 + 3123: -173,4 + 3124: -172,4 + 3125: -171,4 + 3126: -171,3 + 3127: -171,3 + 3136: -171,5 + 3137: -171,5 + 3138: -170,5 + 3139: -169,4 + 3140: -168,4 + 3141: -167,5 + 3142: -166,4 + 3143: -162,4 + 3144: -162,4 + 3145: -163,3 + 3146: -165,4 + 3147: -165,5 + 3148: -159,3 + 3149: -158,4 + 3150: -159,5 + 3151: -160,4 + 3152: -161,3 + 3153: -161,3 + 3154: -157,4 + 3155: -157,3 + 3156: -156,4 + 3157: -156,4 + 3158: -153,3 + 3159: -152,3 + 3160: -153,3 + 3161: -155,3 + 3162: -155,3 + 3163: -154,4 + 3164: -152,4 + 3165: -152,5 + 3166: -152,0 + 3167: -152,0 + 3168: -153,1 + 3169: -153,0 + 3170: -152,1 + 3171: -152,1 + 3172: -152,1 + 3173: -154,-1 + 3174: -153,-1 + 3180: -156,-5 + 3181: -155,-4 + 3182: -156,-4 + 3183: -154,-3 + 3184: -156,-8 + 3185: -156,-8 + 3186: -156,-8 + 3187: -156,-8 + 3188: -158,-8 + 3189: -158,-8 + 3190: -158,-8 + 3191: -158,-8 + 3192: -158,-8 + 3193: -159,-9 + 3194: -158,-9 + 3195: -158,-9 + 3196: -158,-9 + 3241: -166,-22 + 3242: -166,-22 + 3243: -165,-19 + 3244: -166,-19 + 3245: -166,-19 + 3246: -164,-13 + 3247: -164,-13 + 3248: -164,-13 + 3249: -164,-13 + 3250: -164,-13 + 3251: -163,-14 + 3252: -163,-14 + 3253: -162,-13 + 3254: -162,-14 + 3255: -164,-14 + 3276: -162,-8 + 3277: -162,-8 + 3278: -162,-8 + 3279: -162,-8 + 3280: -164,-8 + 3281: -164,-8 + 3282: -164,-8 + 3283: -164,-8 + 3284: -164,-10 + 3285: -164,-10 + 3286: -164,-10 + 3303: -169,-14 + 3304: -169,-14 + 3305: -170,-14 + 3306: -170,-14 + 3307: -170,-13 + 3308: -170,-13 + 3309: -170,-12 + 3310: -169,-13 + 3311: -168,-13 + 3312: -168,-13 + 3345: -178,-17 + 3346: -178,-17 + 3347: -177,-16 + 3348: -178,-16 + 3349: -179,-16 + 3350: -179,-14 + 3351: -178,-14 + 3352: -177,-14 + 3353: -177,-13 + 3354: -179,-13 + 3355: -178,-11 + 3374: -182,-3 + 3375: -182,-3 + 3376: -182,-3 + 3377: -190,-4 + 3378: -191,-5 + 3379: -192,-5 + 3380: -192,-4 + 3381: -192,-4 + 3382: -198,-4 + 3383: -197,-3 + 3384: -197,-3 + 3385: -197,-3 + 3386: -197,-3 + 3387: -197,-3 + 3388: -197,-3 + 3444: -179,-3 + 3445: -178,-4 + 3446: -175,-3 + 3447: -174,-4 + 3448: -173,-5 + 3449: -173,-3 + 3450: -173,-5 + 3451: -169,-4 + 3452: -171,-4 + 3467: -150,-3 + 3468: -150,-4 + 3469: -149,-5 + 3470: -149,-5 + 3471: -148,-5 + 3472: -149,-5 + 3473: -148,-6 + 3474: -148,-6 + 3475: -147,-7 + 3476: -147,-7 + 3477: -146,-7 + 3478: -145,-7 + 3479: -140,-6 + 3480: -140,-6 + 3482: -140,-3 + 3483: -139,-3 + 3484: -138,-2 + 3485: -138,-2 + 3486: -138,-3 + 3487: -138,-3 + 3488: -134,-3 + 3489: -136,-4 + 3490: -135,-5 + 3491: -136,-5 + 3492: -137,-7 + 3493: -136,-7 + 3494: -136,-7 + 3495: -134,-6 + 3520: -148,4 + 3521: -149,3 + 3522: -149,2 + 3554: -134,1 + 3555: -132,0 + 3556: -134,0 + 3557: -135,1 + 3558: -136,1 + 3559: -137,1 + 3560: -137,1 + 3561: -136,2 + 3562: -137,4 + 3563: -138,4 + 3564: -138,5 + 3565: -137,5 + 3566: -135,5 + 3598: -133,7 + 3599: -134,-2 + 3600: -133,-4 + 3601: -133,-5 + 3602: -133,-5 + 3603: -132,-6 + 3604: -133,-6 + 3605: -133,-6 + 3632: -148,-2 + 3633: -148,-2 + 3634: -150,-2 + 3635: -150,-2 + 3636: -149,-2 + 3664: -126,-2 + 3665: -124,-3 + 3666: -124,-3 + 3667: -125,-4 + 3668: -125,-5 + 3669: -124,-5 + 3670: -124,-5 + 3738: -110,-12 + 3739: -110,-11 + 3740: -109,-11 + 3741: -109,-11 + 3742: -109,-12 + 3743: -106,-15 + 3744: -106,-15 + 3745: -104,-14 + 3746: -106,-12 + 3747: -106,-13 + 3748: -106,-14 + 3749: -108,-15 + 3750: -107,-15 + 3751: -106,-17 + 3752: -105,-16 + 3804: -117,0 + 3805: -117,1 + 3806: -118,0 + 3807: -119,0 + 3808: -120,1 + 3809: -119,1 + 3810: -118,3 + 3811: -120,3 + 3812: -120,3 + 3813: -118,3 + 3814: -116,3 + 3815: -115,3 + 3816: -117,-7 + 3817: -116,-8 + 3818: -116,-7 + 3819: -116,-7 + 3820: -117,-7 + 3821: -120,-5 + 3822: -120,-5 + 3823: -120,-4 + 3824: -119,-4 + 3825: -119,-4 + 3862: -116,-16 + 3863: -116,-16 + 3864: -116,-17 + 3865: -118,-17 + 3866: -117,-15 + 3867: -116,-15 + 3868: -117,-17 + 3939: -90,-3 + 3940: -89,-4 + 3941: -89,-5 + 3942: -89,-4 + 3943: -88,-3 + 3944: -88,-3 + 3945: -89,0 + 3946: -89,0 + 3947: -88,-1 + 3948: -89,1 + 3949: -87,1 + 3950: -87,1 + 3951: -85,-11 + 3952: -85,-11 + 3953: -85,-12 + 3954: -85,-12 + 3955: -85,-12 + 3956: -85,-13 + 3981: -83,-14 + 3982: -83,-14 + 3983: -85,-10 + 3984: -86,-11 + 3985: -84,-11 + 3986: -84,-12 + 3987: -87,-10 + 3988: -88,-8 + 3989: -87,-8 + 3990: -87,-8 + 3991: -87,-9 + 3992: -88,-8 + 3993: -89,-8 + 3994: -89,-8 + 3995: -89,-7 + 3996: -87,-7 + 3997: -88,-5 + 3998: -90,-4 + 3999: -91,-4 + 4000: -92,-5 + 4001: -94,-4 + 4002: -95,-3 + 4003: -95,-4 + 4004: -93,-3 + 4005: -88,1 + 4006: -89,0 + 4007: -90,0 + 4008: -88,-1 + 4009: -88,-1 + 4010: -87,0 + 4011: -86,0 + 4012: -85,5 + 4013: -85,4 + 4014: -85,3 + 4015: -84,3 + 4016: -84,4 + 4017: -84,6 + 4018: -85,7 + 4019: -87,5 + 4020: -86,3 + 4021: -86,3 + 4022: -87,3 + 4023: -84,2 + 4024: -84,2 + 4025: -85,5 + 4026: -85,7 + 4027: -85,8 + 4028: -84,7 + 4029: -86,9 + 4030: -85,8 + 4031: -86,6 + 4032: -84,8 + 4033: -83,8 + 4034: -84,8 + 4035: -84,9 + 4070: -79,7 + 4071: -81,7 + 4072: -80,8 + 4073: -78,8 + 4074: -77,8 + 4075: -77,7 + 4076: -75,8 + 4077: -75,8 + 4078: -79,8 + 4079: -79,8 + 4080: -73,9 + 4081: -72,8 + 4082: -69,9 + 4083: -71,8 + 4084: -72,7 + 4085: -71,7 + 4086: -69,8 + 4087: -69,8 + 4088: -72,8 + 4089: -73,8 + 4090: -69,5 + 4091: -70,4 + 4092: -69,4 + 4093: -68,3 + 4094: -69,3 + 4095: -69,3 + 4096: -68,4 + 4097: -68,4 + 4098: -75,9 + 4099: -76,9 + 4100: -74,7 + 4101: -69,8 + 4102: -69,7 + 4103: -68,8 + 4104: -70,7 + 4105: -68,7 + 4106: -67,9 + 4107: -64,7 + 4125: -56,8 + 4126: -56,7 + 4127: -58,7 + 4128: -57,5 + 4129: -57,4 + 4130: -58,3 + 4131: -57,3 + 4132: -55,3 + 4133: -56,1 + 4134: -58,1 + 4135: -57,2 + 4136: -56,2 + 4137: -55,2 + 4138: -55,5 + 4139: -55,4 + 4190: -66,-2 + 4191: -66,-2 + 4192: -66,-4 + 4193: -65,-11 + 4194: -65,-11 + 4195: -65,-11 + 4196: -70,-11 + 4197: -69,-11 + 4198: -69,-11 + 4199: -69,-11 + 4200: -69,-9 + 4201: -70,-8 + 4202: -70,-9 + 4203: -68,-11 + 4204: -67,-12 + 4205: -66,-13 + 4206: -66,-13 + 4207: -65,-12 + 4208: -64,-9 + 4209: -65,-8 + 4210: -65,-7 + 4211: -66,-5 + 4212: -66,-8 + 4213: -65,-9 + 4269: -79,-10 + 4270: -79,-10 + 4271: -79,2 + 4272: -79,2 + 4273: -79,3 + 4274: -81,2 + 4275: -79,0 + 4276: -79,0 + 4277: -78,0 + 4278: -77,0 + 4279: -80,0 + 4280: -81,0 + 4281: -76,-3 + 4282: -76,-4 + 4283: -74,-4 + 4284: -73,-4 + 4285: -72,-4 + 4286: -73,-2 + 4309: -66,4 + 4310: -66,4 + 4311: -65,4 + 4312: -65,4 + 4313: -69,5 + 4314: -68,5 + 4327: -54,-10 + 4328: -56,-10 + 4329: -57,-10 + 4330: -58,-11 + 4331: -59,-11 + 4332: -59,-13 + 4333: -56,-13 + 4334: -54,-13 + 4335: -54,-12 + 4336: -54,-11 + 4337: -55,-12 + 4338: -61,-13 + 4339: -61,-12 + 4340: -61,-10 + 4341: -62,-10 + 4342: -62,-13 + 4343: -63,-12 + 4344: -63,-11 + 4345: -58,-7 + 4346: -50,-8 + 4347: -48,-7 + 4348: -47,-7 + 4349: -48,-6 + 4350: -49,-6 + 4351: -50,-6 + 4352: -50,-2 + 4353: -51,-2 + 4354: -52,0 + 4355: -51,0 + 4356: -50,3 + 4357: -52,2 + 4358: -52,2 + 4359: -51,1 + 4360: -50,1 + 4361: -50,-1 + 4384: -54,9 + 4385: -56,9 + 4386: -54,7 + 4387: -52,9 + 4388: -51,7 + 4389: -51,7 + 4390: -51,9 + 4391: -50,9 + 4392: -58,9 + 4393: -60,9 + 4394: -60,8 + 4395: -59,8 + 4396: -59,8 + 4397: -58,15 + 4398: -58,14 + 4399: -60,14 + 4400: -60,16 + 4401: -59,15 + 4402: -59,17 + 4403: -60,18 + 4404: -61,17 + 4405: -62,19 + 4406: -62,19 + 4407: -61,20 + 4408: -63,19 + 4409: -64,19 + 4410: -67,20 + 4411: -67,21 + 4412: -67,21 + 4413: -68,19 + 4414: -70,21 + 4415: -69,22 + 4416: -69,20 + 4417: -73,20 + 4418: -76,22 + 4419: -75,24 + 4420: -76,24 + 4421: -78,23 + 4422: -77,23 + 4423: -74,23 + 4424: -72,23 + 4425: -74,22 + 4426: -67,24 + 4427: -67,22 + 4428: -64,23 + 4429: -64,23 + 4430: -68,22 + 4431: -62,23 + 4432: -63,22 + 4433: -59,24 + 4434: -60,22 + 4435: -58,24 + 4436: -59,22 + 4437: -54,23 + 4438: -55,20 + 4439: -53,20 + 4440: -53,20 + 4441: -53,24 + 4442: -52,24 + 4463: -46,2 + 4464: -44,2 + 4465: -44,3 + 4466: -45,4 + 4467: -46,3 + 4468: -48,2 + 4469: -48,3 + 4470: -46,3 + 4473: -42,-2 + 4474: -42,-2 + 4475: -44,-2 + 4476: -44,-2 + 4477: -45,-2 + 4478: -47,-5 + 4479: -47,-6 + 4480: -47,-7 + 4481: -47,-7 + 4500: -55,-17 + 4501: -54,-15 + 4502: -55,-15 + 4503: -56,-16 + 4504: -53,-17 + 4505: -53,-16 + 4546: -41,-12 + 4547: -40,-10 + 4548: -40,-12 + 4549: -40,-12 + 4550: -42,-12 + 4551: -40,-11 + 4552: -42,-9 + 4553: -41,-9 + 4590: -37,-11 + 4591: -37,-11 + 4592: -37,-11 + 4628: -29,-16 + 4629: -30,-16 + 4630: -30,-16 + 4631: -36,-16 + 4632: -36,-16 + 4633: -30,-15 + 4634: -33,-15 + 4635: -32,-16 + 4636: -29,-16 + 4637: -30,-17 + 4639: -29,-15 + 4640: -8,0 + 4664: -14,-12 + 4735: -88,-9 + 4736: -86,-8 + 4737: -72,-7 + 4738: -72,-6 + 4739: -67,-16 + 4740: -69,-16 + 4741: -71,-17 + 4742: -72,-16 + 4743: -70,-16 + 4744: -64,-16 + 4745: -64,-16 + 4746: -64,-16 + 4747: -64,-18 + 4748: -64,-20 + 4749: -64,-21 + 4757: -26,9 + 4760: -25,7 + 4763: -29,12 + 4764: -32,12 + 4766: -30,11 + 4794: -63,-24 + 4795: -64,-24 + 4796: -65,-22 + 4797: -64,-23 + 4801: -65,-22 + 4812: -45,11 + 4813: -45,11 + 4814: -55,-22 + 4815: -45,11 + 4816: -56,-23 + 4897: -85,-31 + 4898: -85,-29 + 4899: -86,-29 + 4900: -86,-28 + 4901: -85,-28 + 4902: -85,-28 + 4903: -84,-29 + 4973: -32,-16 + 4974: -33,-17 + 4975: -35,-15 + 4976: -30,-16 + 4977: -36,-16 + 4978: -33,-15 + 4979: -31,-15 + 4980: -31,-17 + 4981: -33,-16 + 4982: -30,-17 + 4983: -27,-17 + 4984: -28,-15 + 4997: -24,-12 + 4998: -23,-12 + 4999: -24,-13 + 5000: -22,-12 + 5001: -22,-13 + 5002: -23,-14 + 5003: -24,-14 + 5004: -27,-14 + 5005: -28,-13 + 5006: -27,-12 + 5007: -27,-11 + 5008: -28,-12 + 5009: -27,-10 + 5010: -27,-9 + 5011: -27,-8 + 5063: -40,6 + 5064: -38,7 + 5065: -38,8 + 5066: -40,8 + 5067: -39,9 + 5068: -39,9 + 5069: -40,8 + 5070: -40,10 + 5071: -38,9 + 5072: -42,8 + 5073: -44,8 + 5074: -44,8 + 5075: -44,9 + 5076: -44,9 + 5077: -45,7 + 5078: -43,8 + 5079: -43,9 + 5080: -44,9 + 5081: -44,11 + 5082: -43,11 + 5083: -39,10 + 5084: -39,9 + 5085: -38,8 + 5086: -40,7 + 5087: -40,10 + 5088: -38,9 + 5089: -40,8 + 5194: -7,4 + 5195: -7,4 + 5196: -9,4 + 5199: -9,3 + 5200: -10,2 + 5215: -121,14 + 5216: -121,14 + 5219: -113,14 + 5220: -113,14 + 5221: -111,14 + 5222: -111,14 + 5224: -118,17 + 5226: -118,17 + 5228: -118,15 + 5230: -114,15 + 5232: -118,16 + 5233: -112,15 + 5235: -114,15 + 5236: -112,16 + 5237: -114,16 + 5238: -117,16 + 5239: -118,15 + 5240: -120,15 + 5241: -118,16 + 5243: -114,15 + 5245: -112,16 + 5247: -111,15 + 5249: -111,15 + 5251: -114,15 + 5253: -116,16 + 5255: -118,15 + 5256: -118,14 + 5314: -7,-13 + 5317: -9,-13 + 5318: -11,-12 + 5319: -8,-13 + 5322: -5,-11 + 5324: -4,-12 + 5325: -4,-12 + 5326: -5,-13 + 5328: -5,-11 + 5329: -4,-10 + 5337: -8,-8 + 5339: -8,-8 + 5340: -4,-6 + 5341: -2,-6 + 5374: -121,11 + 5375: -121,9 + 5376: -116,11 + 5377: -116,7 + 5378: -114,10 + 5380: -112,11 + 5382: -111,10 + 5423: -12,-16 + 5424: -13,-17 + 5425: -15,-17 + 5426: -16,-17 + 5427: -15,-13 + 5428: -15,-12 + 5429: -7,-17 + 5430: -7,-16 + 5431: -8,-16 + 5432: -9,-17 + 5433: -9,-18 + 5509: -128,-15 + 5510: -128,-15 + 5511: -128,-15 + 5512: -126,-16 + 5513: -126,-16 + 5514: -126,-16 + 5515: -125,-20 + 5517: -125,-21 + 5519: -130,-21 + 5520: -130,-21 + 5521: -130,-21 + 5523: -127,-20 + 5524: -127,-20 + 5525: -120,-21 + 5526: -119,-20 + 5528: -118,-20 + 5529: -119,-21 + 5530: -114,-21 + 5531: -114,-21 + 5532: -116,-19 + 5533: -115,-19 + 5535: -115,-19 + 5536: -115,-19 + 5537: -112,-22 + 5538: -111,-22 + 5539: -110,-22 + 5540: -109,-19 + 5542: -108,-19 + 5543: -105,-19 + 5544: -106,-22 + 5545: -107,-22 + 5546: -108,-22 + 5547: -108,-22 + 5548: -104,-22 + 5549: -102,-21 + 5550: -100,-21 + 5552: -99,-22 + 5553: -99,-22 + 5554: -99,-24 + 5555: -99,-24 + 5556: -103,-26 + 5557: -103,-25 + 5558: -102,-25 + 5559: -102,-25 + 5561: -97,-19 + 5562: -96,-19 + 5563: -96,-17 + 5564: -96,-15 + 5565: -96,-15 + 5566: -96,-15 + 5567: -97,-14 + 5568: -97,-14 + 5571: -93,-13 + 5572: -93,-13 + 5573: -92,-12 + 5574: -93,-11 + 5575: -94,-13 + 5576: -101,-12 + 5577: -102,-12 + 5579: -102,-12 + 5580: -102,-12 + 5581: -101,-10 + 5582: -101,-8 + 5583: -102,-7 + 5584: -101,-7 + 5585: -101,-9 + 5587: -78,-24 + 5588: -78,-24 + 5589: -72,-19 + 5590: -72,-23 + 5591: -72,-23 + 5592: -72,-20 + 5593: -72,-19 + 5594: -72,-24 + 5595: -71,-24 + 5596: -73,-24 + 5597: -78,-24 + 5598: -71,-25 + 5599: -71,-25 + 5600: -67,14 + 5601: -67,13 + 5602: -67,12 + 5603: -67,12 + 5604: -66,13 + 5605: -71,13 + 5606: -72,13 + 5607: -72,12 + 5608: -71,12 + 5609: -74,14 + 5610: -75,13 + 5611: -76,14 + 5612: -88,-20 + 5613: -88,-20 + 5623: -93,-16 + 5625: -93,-16 + 5628: -92,-15 + 5629: -92,-15 + 5635: -97,-9 + 5636: -97,-9 + 5639: -94,-7 + 5641: -93,-8 + 5642: -93,-9 + 5643: -92,-7 + 5644: -92,-7 + 5645: -93,-8 + 5646: -97,-8 + 5647: -97,-8 + 5662: -48,-23 + 5663: -48,-23 + 5664: -95,10 + 5665: -51,-20 + 5666: -93,9 + 5667: -50,-21 + 5668: -93,8 + 5669: -48,-22 + 5670: -93,8 + 5671: -95,5 + 5672: -95,4 + 5673: -95,4 + 5688: -87,12 + 5690: -86,12 + 5714: -40,-15 + 5715: -40,-17 + 5716: -40,-19 + 5717: -39,-20 + 5718: -39,-19 + 5719: -40,-19 + 5721: -40,-21 + 5723: -39,-22 + 5725: -39,-23 + 5727: -40,-23 + 5729: -42,-23 + 5731: -43,-24 + 5732: -44,-23 + 5733: -45,-23 + 5734: -47,-23 + 5735: -47,-22 + 5736: -49,-23 + 5737: -49,-22 + 5738: -50,-21 + 5740: -50,-22 + 5742: -50,-22 + 5744: -50,-20 + 5745: -53,-20 + 5746: -56,-19 + 5747: -56,-19 + 5748: -57,-20 + 5749: -58,-19 + 5750: -56,-19 + 5751: -56,-20 + 5752: -54,-19 + 5753: -53,13 + 5754: -53,-19 + 5755: -51,12 + 5756: -52,13 + 5757: -50,-23 + 5758: -51,-23 + 5759: -54,15 + 5760: -54,15 + 5761: -54,17 + 5762: -53,17 + 5763: -52,16 + 5764: -52,15 + 5765: -51,17 + 5766: -52,12 + 5767: -53,12 + 5768: -52,11 + 5769: -51,11 + 5770: -49,11 + 5771: -48,11 + 5772: -48,10 + 5773: -43,12 + 5774: -44,11 + 5775: -47,15 + 5776: -48,16 + 5777: -48,16 + 5778: -48,17 + 5779: -39,14 + 5780: -40,14 + 5781: -40,15 + 5782: -37,13 + 5783: -37,12 + 5784: -40,16 + 5785: -37,12 + 5786: -40,15 + 5787: -39,15 + 5788: -39,14 + 5789: -37,14 + 5790: -36,13 + 5791: -36,12 + 5792: -42,12 + 5793: -42,12 + 5798: -30,11 + 5800: -30,11 + 5806: -25,8 + 5807: -25,8 + 5808: -33,7 + 5809: -35,6 + 5810: -36,6 + 5811: -25,11 + 5812: -25,9 + 5813: -25,8 + 5814: -25,7 + 5815: -22,7 + 5816: -22,7 + 5817: -21,7 + 5818: -20,7 + 5819: -20,7 + 5820: -22,10 + 5821: -23,10 + 5822: -21,10 + 5823: -19,8 + 5824: -17,7 + 5825: -17,10 + 5826: -18,8 + 5827: -18,7 + 5828: -17,8 + 5829: -18,9 + 5830: -15,8 + 5831: -15,7 + 5832: -15,8 + 5833: -13,8 + 5834: -13,7 + 5835: -17,-2 + 5836: -17,-3 + 5837: -18,-3 + 5838: -19,-4 + 5839: -51,-22 + 5840: -51,-22 + 5841: -57,-20 + 5842: -27,-4 + 5843: -29,-5 + 5844: -61,-20 + 5845: -27,-6 + 5846: -61,-20 + 5847: -61,-20 + 5848: -27,-2 + 5849: -26,-1 + 5850: -29,2 + 5851: -28,3 + 5852: -30,4 + 5853: -26,3 + 5854: -72,-21 + 5855: -72,-21 + 5856: -72,-21 + 5857: -25,2 + 5860: -36,-3 + 5861: -37,-3 + 5862: -37,-2 + 5863: -36,-1 + 5864: -36,-4 + 5865: -37,-6 + 5866: -39,-25 + 5867: -39,-26 + 5868: -40,-28 + 5869: -40,-28 + 5870: -40,-22 + 5871: -39,-22 + 5872: -41,-22 + 5873: -46,-23 + 5874: -48,-23 + 5875: -50,-21 + 5876: -55,-19 + 5877: -57,-19 + 5878: -58,-20 + 5879: -60,-20 + 5880: -63,-24 + 5881: -63,-22 + 5882: -72,-23 + 5883: -72,-24 + 5884: -72,-21 + 5885: -86,-20 + 5886: -88,-19 + 5887: -92,-19 + 5888: -100,-19 + 5889: -93,11 + 5890: -92,11 + 5891: -86,11 + 5892: -88,11 + 5893: -89,12 + 5894: -79,12 + 5895: -79,12 + 5896: -74,12 + 5897: -63,11 + 5898: -125,4 + 5899: -125,4 + 5900: -125,4 + 5901: -123,0 + 5902: -123,0 + 5933: -129,3 + 5934: -129,3 + 5935: -129,4 + 5936: -128,5 + 5937: -126,10 + 5938: -126,10 + 5939: -125,10 + 5940: -126,10 + 5941: -127,-6 + 5942: -127,-6 + 5943: -130,-14 + 5944: -125,-16 + 5945: -125,-16 + 5946: -124,-17 + 5947: -123,-17 + 5948: -124,-12 + 5949: -124,-12 + 5950: -122,-19 + 5951: -122,-20 + 5952: -121,-20 + 5953: -120,-21 + 5954: -119,-21 + 5955: -116,-21 + 5956: -115,-21 + 5957: -113,-21 + 5958: -113,-22 + 5959: -114,-22 + 5960: -113,-17 + 5961: -110,-22 + 5962: -110,-21 + 5963: -110,-21 + 5964: -110,-22 + 6386: -22,-16 + 6387: -23,-16 + 6388: -24,-16 + 6389: -23,-17 + 6413: -21,-20 + 6414: -20,-20 + 6415: -22,-21 + 6416: -24,-20 + 6417: -24,-19 + 6418: -23,-19 + 6419: -23,-20 + 6420: -23,-20 + 6421: -25,-21 + 6422: -22,-21 + 6423: -22,-19 + 6424: -21,-19 + 6428: -22,-20 + 6429: -24,-21 + 6430: -24,-21 + 6431: -23,-21 + 6447: -20,-21 + 6448: -21,-21 + 6449: -20,-13 + 6450: -20,-12 + 6451: -21,-12 + 6452: -21,-12 + 6453: -18,-10 + 6454: -20,-10 + 6455: -20,-10 + 6456: -20,-8 + 6457: -20,-8 + 6458: -19,-8 + 6459: -19,-8 + 6460: -19,-10 + 6461: -22,-9 + 6462: -22,-9 + 6463: -22,-9 + 6464: -22,-10 + 6465: -23,-10 + 6466: -27,-8 + 6467: -26,-10 + 6468: -26,-10 + 6469: -28,-12 + 6470: -29,-14 + 6471: -28,-16 + 6472: -27,-15 + 6473: -27,-14 + 6474: -26,-14 + 6475: -26,-15 + 6476: -26,-16 + 6477: -29,-15 + 6478: -29,-14 + 6479: -28,-13 + 6480: -28,-14 + 6481: -27,-14 + 6482: -28,-14 + 6483: -29,-15 + 6484: -29,-16 + 6485: -31,-13 + 6486: -31,-12 + 6487: -31,-11 + 6488: -31,-11 + 6489: -33,-11 + 6490: -32,-9 + 6491: -31,-9 + 6492: -31,-10 + 6493: -31,-8 + 6494: -35,-9 + 6495: -33,-9 + 6496: -33,-9 + 6497: -34,-9 + 6498: -34,-9 + 6499: -31,-9 - node: color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 6637: -67,12 - 6638: -67,11 - 6639: -66,11 - 6640: -66,13 - 6641: -67,11 - 6642: -68,11 - 6643: -67,11 - 6644: -67,13 - 6645: -68,12 - 6646: -67,11 - 6647: -66,11 + 6152: -67,12 + 6153: -67,11 + 6154: -66,11 + 6155: -66,13 + 6156: -67,11 + 6157: -68,11 + 6158: -67,11 + 6159: -67,13 + 6160: -68,12 + 6161: -67,11 + 6162: -66,11 + 6692: -225,-30 + 6693: -225,-30 + 6694: -225,-30 + 6807: -226,-31 + 6808: -227,-33 + 6809: -228,-35 + 6810: -225,-35 + 6811: -224,-34 + 6812: -225,-31 + 6813: -223,-30 + 6814: -224,-29 + 6815: -223,-32 + 6816: -221,-33 + 6817: -220,-31 + 6818: -222,-33 + 6819: -222,-33 + 6820: -223,-33 + 6821: -223,-32 + 6822: -223,-30 + 6823: -223,-31 + 6824: -222,-34 + 6825: -224,-34 + 6826: -221,-35 + 6827: -221,-36 + 6828: -219,-34 + 6829: -218,-33 + 6830: -219,-32 + 6831: -218,-33 + 6832: -219,-34 + 6833: -219,-32 + 6834: -219,-30 + 6835: -219,-29 + 6836: -219,-29 + 6837: -220,-29 + 6838: -219,-30 + 6839: -219,-30 + 6840: -226,-26 + 6841: -226,-26 + 6842: -227,-27 + 6843: -228,-28 + 6844: -226,-28 + 6845: -227,-25 + 6846: -226,-24 + 6847: -227,-23 + 6848: -226,-23 + 6849: -226,-21 + 6850: -227,-21 + 6851: -225,-19 + 6852: -226,-18 + 6853: -225,-19 + 6854: -224,-21 + 6855: -223,-20 + 6856: -225,-20 + 6857: -222,-20 + 6858: -221,-19 + 6859: -221,-21 + 6860: -220,-20 + 6861: -219,-17 + 6862: -222,-17 + 6863: -219,-17 + 6864: -218,-17 + 6865: -218,-17 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 2035: -154,-19 - 2036: -155,-15 - 2037: -158,-15 - 2038: -159,-16 - 2039: -160,-15 - 2040: -162,-16 - 2041: -163,-16 - 2042: -162,-16 - 3249: -215,-16 - 3250: -214,-16 - 3267: -210,12 - 3268: -201,11 - 3269: -198,11 - 3270: -197,10 - 3271: -197,13 - 3272: -198,15 - 3273: -198,18 - 3274: -199,19 - 3276: -195,22 - 3277: -194,20 - 3278: -195,23 - 3279: -192,21 - 3280: -191,19 - 3281: -191,22 - 3282: -193,11 - 3283: -194,6 - 3284: -195,7 - 3285: -199,7 - 3286: -197,6 - 3287: -199,6 - 3288: -201,6 - 3289: -199,4 - 3290: -199,3 - 3291: -197,2 - 3292: -200,2 - 3293: -194,4 - 3294: -193,2 - 3295: -201,-5 - 3304: -196,-17 - 3309: -196,-13 - 3310: -193,-14 - 3311: -190,-15 - 3312: -189,-18 - 3313: -187,-17 - 3314: -186,-18 - 3315: -185,-17 - 3316: -184,-18 - 3317: -184,-19 - 3318: -185,-25 - 3319: -187,-24 - 3320: -188,-25 - 3321: -187,-26 - 3322: -191,-25 - 3323: -192,-25 - 3324: -188,-28 - 3325: -186,-28 - 3326: -185,-28 - 3327: -183,-25 - 3328: -182,-26 - 3329: -184,-24 - 3330: -189,-13 - 3331: -190,-14 - 3332: -187,-13 - 3333: -186,-14 - 3334: -184,-11 - 3335: -189,-11 - 3336: -188,-10 - 3337: -187,-10 - 3338: -191,-11 - 3339: -178,-19 - 3340: -177,-18 - 3341: -179,-17 - 3342: -178,-14 - 3349: -178,-10 - 3350: -178,-7 - 3351: -177,-7 - 3352: -177,-8 - 3353: -179,-8 - 3354: -179,-6 - 3355: -181,-5 - 3356: -182,-3 - 3357: -183,-4 - 3358: -183,-5 - 3359: -185,-3 - 3360: -186,-4 - 3361: -189,-5 - 3362: -190,-4 - 3363: -191,-3 - 3364: -191,-5 - 3373: -187,11 - 3374: -186,12 - 3375: -187,13 - 3380: -179,-3 - 3381: -173,-5 - 3382: -172,-4 - 3383: -169,-3 - 3384: -169,-5 - 3385: -166,-5 - 3386: -164,-3 - 3387: -164,-4 - 3388: -162,-5 - 3389: -165,-4 - 3390: -161,-3 - 3391: -159,-5 - 3392: -158,-4 - 3393: -158,-3 - 3394: -156,-5 - 3395: -154,-3 - 3396: -153,-4 - 3397: -153,-5 - 3398: -156,-4 - 3440: -174,4 - 3441: -173,5 - 3442: -172,6 - 3443: -172,6 - 3444: -172,5 - 3445: -173,5 - 3446: -172,5 - 3447: -171,5 - 3509: -157,-7 - 3510: -157,-7 - 3511: -157,-8 - 3512: -157,-8 - 3513: -156,-9 - 3514: -155,-9 - 3515: -155,-9 - 3516: -154,-8 - 3517: -153,-8 - 3518: -153,-8 - 3519: -153,-7 - 3520: -155,-7 - 3521: -155,-8 - 3522: -155,-8 - 3523: -155,-10 - 3524: -155,-11 - 3525: -154,-11 - 3526: -154,-12 - 3527: -155,-12 - 3528: -155,-13 - 3529: -155,-13 - 3530: -159,-13 - 3531: -159,-13 - 3532: -160,-13 - 3533: -159,-11 - 3534: -159,-11 - 3535: -160,-11 - 3536: -160,-11 - 3537: -158,-11 - 3538: -157,-19 - 3539: -157,-19 - 3540: -157,-19 - 3541: -157,-19 - 3542: -157,-19 - 3543: -157,-19 - 3544: -156,-17 - 3545: -156,-17 - 3546: -160,-17 - 3547: -160,-17 - 3548: -160,-16 - 3599: -166,-9 - 3600: -165,-9 - 3601: -167,-10 - 3602: -167,-10 - 3603: -167,-10 - 3604: -168,-9 - 3605: -168,-9 - 3625: -170,-8 - 3626: -168,-8 - 3627: -168,-8 - 3628: -168,-8 - 3629: -169,-8 - 3630: -169,-8 - 3631: -167,-8 - 3632: -167,-8 - 3633: -167,-9 - 3634: -167,-9 - 3635: -169,-11 - 3636: -169,-11 - 3637: -169,-10 - 3638: -169,-12 - 3639: -168,-12 - 3640: -167,-13 - 3641: -167,-13 - 3642: -167,-14 - 3643: -167,-14 - 3644: -178,-14 - 3645: -178,-15 - 3646: -179,-16 - 3647: -178,-17 - 3648: -178,-17 - 3649: -177,-18 - 3650: -177,-18 - 3651: -178,-18 - 3652: -178,-19 - 3653: -179,-19 - 3654: -178,-18 - 3655: -178,-18 - 3656: -178,-18 - 3676: -181,-4 - 3677: -182,-4 - 3678: -182,-5 - 3679: -182,-4 - 3680: -182,-4 - 3681: -182,-4 - 3701: -197,-3 - 3702: -197,-3 - 3703: -203,-3 - 3704: -203,-3 - 3705: -204,-3 - 3706: -202,-3 - 3707: -202,-3 - 3708: -202,-5 - 3709: -207,1 - 3710: -207,0 - 3711: -207,1 - 3712: -207,1 - 3713: -209,1 - 3714: -209,1 - 3715: -209,3 - 3716: -209,3 - 3717: -209,1 - 3718: -209,0 - 3719: -209,0 - 3720: -208,0 - 3721: -208,0 - 3722: -208,1 - 3733: -207,12 - 3734: -207,12 - 3735: -206,13 - 3736: -206,14 - 3737: -207,14 - 3738: -206,13 - 3739: -206,12 - 3740: -206,11 - 3741: -206,11 - 3742: -208,10 - 3743: -207,9 - 3744: -206,8 - 3745: -206,9 - 3746: -209,9 - 3747: -209,9 - 3748: -210,10 - 3749: -210,10 - 3750: -210,13 - 3751: -209,13 - 3752: -209,13 - 3753: -209,14 - 3754: -210,15 - 3755: -201,11 - 3756: -202,11 - 3757: -200,11 - 3758: -197,11 - 3759: -195,9 - 3760: -197,10 - 3761: -198,9 - 3762: -197,8 - 3763: -196,8 - 3764: -195,8 - 3765: -195,7 - 3766: -195,7 - 3767: -194,7 - 3768: -193,8 - 3769: -193,7 - 3770: -193,6 - 3771: -192,7 - 3772: -193,7 - 3806: -195,22 - 3807: -195,23 - 3808: -199,23 - 3809: -199,22 - 3810: -200,20 - 3811: -199,19 - 3812: -199,19 - 3813: -197,17 - 3814: -197,17 - 3815: -194,18 - 3817: -194,19 - 3818: -195,18 - 3819: -195,18 - 3820: -194,20 - 3821: -191,21 - 3822: -191,20 - 3823: -186,-2 - 3824: -186,-1 - 3825: -187,-1 - 3826: -188,-1 - 3827: -188,0 - 3828: -187,1 - 3829: -186,2 - 3830: -186,1 - 3831: -188,2 - 3832: -188,3 - 3833: -187,4 - 3834: -186,8 - 3835: -187,7 - 3836: -187,6 - 3837: -186,7 - 3838: -187,12 - 3839: -187,12 - 3840: -186,12 - 3841: -188,9 - 3842: -188,9 - 3843: -186,8 - 3865: -170,-4 - 3866: -170,-5 - 3867: -169,-5 - 3868: -169,-3 - 3869: -170,-6 - 3870: -169,-6 - 3871: -168,-6 - 3872: -167,-4 - 3908: -145,-2 - 3909: -145,-3 - 3910: -143,-3 - 3911: -143,-3 - 3912: -144,-2 - 3913: -145,-3 - 3914: -145,-3 - 3915: -147,-4 - 3916: -146,-5 - 3917: -146,-6 - 3918: -146,-6 - 3919: -147,-7 - 3920: -149,-6 - 3921: -149,-4 - 3922: -149,-3 - 3923: -148,-3 - 3924: -149,-2 - 3925: -149,-1 - 3926: -149,-1 - 3927: -149,3 - 3928: -149,2 - 3929: -150,2 - 3930: -150,3 - 3931: -149,4 - 3947: -141,2 - 3948: -141,1 - 3949: -141,1 - 3950: -141,1 - 3951: -140,2 - 3952: -140,2 - 3953: -141,2 - 3954: -142,2 - 3955: -143,1 - 3956: -143,0 - 3957: -142,0 - 3958: -137,0 - 3959: -136,0 - 3960: -135,0 - 3961: -135,1 - 3962: -135,1 - 3963: -134,1 - 3964: -133,1 - 3965: -133,1 - 3996: -134,6 - 3997: -135,7 - 3998: -135,7 - 3999: -137,7 - 4000: -137,7 - 4001: -136,7 - 4002: -136,7 - 4018: -133,-6 - 4019: -133,-5 - 4020: -132,-6 - 4021: -132,-6 - 4022: -136,-7 - 4023: -137,-6 - 4024: -137,-6 - 4025: -137,-5 - 4026: -139,-4 - 4027: -139,-3 - 4028: -139,-3 - 4029: -140,-2 - 4030: -140,-2 - 4031: -141,-2 - 4032: -141,-3 - 4033: -143,-2 - 4034: -143,-2 - 4035: -143,-3 - 4036: -143,-3 - 4037: -148,-2 - 4038: -148,-3 - 4039: -149,-3 - 4040: -149,-4 - 4041: -149,-4 - 4042: -148,-3 - 4043: -147,-2 - 4064: -128,-2 - 4065: -130,-1 - 4066: -130,-2 - 4067: -129,-2 - 4068: -129,-1 - 4069: -128,-1 - 4070: -128,-1 - 4071: -128,-1 - 4072: -127,-2 - 4073: -128,0 - 4074: -128,0 - 4075: -127,0 - 4083: -124,-5 - 4084: -123,-5 - 4085: -123,-6 - 4086: -123,-6 - 4087: -124,-6 - 4088: -125,-6 - 4095: -124,-9 - 4096: -124,-9 - 4097: -124,-10 - 4098: -124,-10 - 4099: -125,-11 - 4100: -125,-11 - 4101: -124,-11 - 4102: -123,-11 - 4103: -121,-11 - 4104: -120,-11 - 4113: -128,-10 - 4114: -128,-10 - 4115: -128,-10 - 4116: -127,-11 - 4117: -127,-11 - 4118: -128,-12 - 4119: -128,-12 - 4120: -128,-12 - 4121: -128,-12 - 4122: -116,-10 - 4123: -117,-10 - 4124: -117,-11 - 4125: -116,-11 - 4126: -115,-12 - 4127: -115,-13 - 4128: -114,-13 - 4129: -113,-14 - 4130: -113,-14 - 4131: -112,-14 - 4132: -112,-13 - 4133: -112,-12 - 4134: -112,-12 - 4135: -112,-12 - 4136: -112,-10 - 4137: -113,-10 - 4138: -114,-10 - 4139: -112,-11 - 4140: -112,-11 - 4141: -115,-12 - 4142: -115,-13 - 4143: -110,-12 - 4144: -110,-12 - 4145: -110,-12 - 4146: -110,-12 - 4147: -110,-11 - 4148: -110,-11 - 4149: -110,-10 - 4190: -102,-17 - 4191: -102,-18 - 4192: -101,-18 - 4193: -101,-18 - 4194: -102,-18 - 4195: -111,-4 - 4196: -112,-4 - 4197: -113,-4 - 4198: -113,-3 - 4199: -113,-4 - 4200: -112,-4 - 4201: -112,-4 - 4202: -113,-3 - 4203: -112,-3 - 4204: -112,-3 - 4205: -115,-4 - 4206: -115,-4 - 4207: -116,-4 - 4208: -115,-3 - 4209: -115,-3 - 4210: -114,-3 - 4211: -114,-1 - 4212: -115,0 - 4213: -116,0 - 4214: -116,1 - 4215: -118,1 - 4238: -113,-6 - 4239: -115,-5 - 4240: -116,-4 - 4241: -116,-7 - 4242: -114,-7 - 4243: -114,-7 - 4244: -116,-7 - 4245: -117,-8 - 4246: -117,-8 - 4247: -115,-8 - 4248: -115,-8 - 4249: -115,-8 - 4250: -112,-8 - 4251: -113,-8 - 4252: -113,-8 - 4281: -117,-15 - 4282: -118,-16 - 4283: -116,-15 - 4284: -116,-16 - 4285: -118,-16 - 4286: -113,-16 - 4287: -114,-16 - 4288: -114,-17 - 4289: -112,-17 - 4290: -112,-17 - 4291: -112,-16 - 4292: -113,-16 - 4293: -114,-16 - 4294: -114,-17 - 4295: -113,-17 - 4296: -113,-16 - 4297: -113,-16 - 4317: -103,-3 - 4318: -105,-4 - 4319: -106,-5 - 4320: -104,-5 - 4321: -104,-5 - 4322: -103,-4 - 4323: -103,-4 - 4324: -102,-3 - 4325: -104,-3 - 4326: -103,-4 - 4327: -100,-4 - 4328: -100,-5 - 4329: -99,-4 - 4330: -99,-4 - 4331: -101,-4 - 4332: -100,-3 - 4333: -100,-3 - 4334: -99,-4 - 4335: -98,-4 - 4336: -97,-3 - 4337: -97,-4 - 4338: -97,-4 - 4339: -96,-3 - 4340: -95,-4 - 4341: -94,-4 - 4342: -95,-4 - 4343: -95,-3 - 4344: -93,-4 - 4369: -86,-13 - 4370: -86,-13 - 4371: -85,-14 - 4372: -85,-14 - 4373: -85,-16 - 4374: -85,-14 - 4375: -85,-15 - 4376: -84,-13 - 4377: -84,-13 - 4378: -83,-17 - 4379: -83,-16 - 4380: -84,-16 - 4381: -84,-15 - 4382: -85,-16 - 4383: -84,-16 - 4384: -84,-14 - 4448: -79,9 - 4449: -80,7 - 4450: -80,9 - 4451: -78,8 - 4452: -77,8 - 4453: -74,9 - 4454: -74,7 - 4455: -68,9 - 4456: -65,8 - 4457: -61,9 - 4458: -59,8 - 4459: -55,9 - 4460: -52,8 - 4461: -48,8 - 4462: -50,8 - 4463: -52,7 - 4464: -50,8 - 4465: -53,9 - 4466: -52,8 - 4467: -53,8 - 4468: -57,8 - 4469: -56,9 - 4470: -58,7 - 4471: -59,9 - 4472: -62,8 - 4473: -61,9 - 4474: -64,7 - 4475: -66,9 - 4476: -68,7 - 4477: -72,9 - 4478: -72,7 - 4479: -75,9 - 4480: -77,8 - 4481: -80,9 - 4520: -63,8 - 4521: -64,9 - 4522: -65,8 - 4523: -63,8 - 4524: -62,9 - 4525: -63,8 - 4526: -61,7 - 4527: -59,10 - 4528: -59,11 - 4529: -59,11 - 4530: -58,10 - 4552: -57,4 - 4553: -57,2 - 4554: -55,2 - 4555: -54,1 - 4556: -54,1 - 4557: -55,-1 - 4558: -56,-2 - 4559: -55,-3 - 4560: -55,-3 - 4561: -55,-5 - 4562: -54,-6 - 4563: -55,-7 - 4564: -54,-7 - 4565: -54,-7 - 4566: -55,-6 - 4567: -55,-6 - 4568: -54,-4 - 4569: -54,-4 - 4570: -55,-5 - 4571: -53,-5 - 4572: -55,-6 - 4573: -59,-6 - 4574: -60,-5 - 4575: -61,-6 - 4576: -62,-6 - 4577: -64,-5 - 4578: -63,-6 - 4579: -61,-6 - 4580: -59,-6 - 4581: -60,-3 - 4582: -59,-2 - 4583: -58,-2 - 4589: -63,4 - 4590: -62,5 - 4591: -62,5 - 4592: -61,2 - 4593: -61,2 - 4594: -60,3 - 4595: -60,3 - 4626: -69,-2 - 4627: -69,-4 - 4628: -68,-5 - 4629: -69,-5 - 4630: -70,-4 - 4631: -69,-4 - 4632: -69,-3 - 4633: -68,-3 - 4634: -68,-3 - 4635: -68,-3 - 4636: -68,-3 - 4637: -69,-4 - 4638: -70,-5 - 4639: -73,-2 - 4640: -72,-3 - 4641: -73,-3 - 4642: -73,-5 - 4643: -73,-5 - 4644: -73,-5 - 4645: -73,-4 - 4646: -72,-3 - 4647: -72,-2 - 4648: -72,-1 - 4649: -72,0 - 4650: -72,1 - 4651: -72,1 - 4652: -73,2 - 4653: -72,1 - 4654: -73,0 - 4655: -73,0 - 4671: -77,-9 - 4672: -78,-8 - 4673: -77,-8 - 4674: -80,-8 - 4675: -80,-8 - 4676: -80,-9 - 4677: -80,-10 - 4678: -80,-10 - 4679: -79,-11 - 4680: -81,-11 - 4681: -79,-10 - 4700: -73,-3 - 4701: -73,-3 - 4702: -72,-4 - 4703: -72,-4 - 4704: -68,-3 - 4705: -68,-5 - 4706: -69,-5 - 4707: -69,-4 - 4708: -70,-5 - 4709: -69,-5 - 4710: -68,-6 - 4711: -68,-4 - 4775: -48,-1 - 4776: -51,-1 - 4777: -52,-2 - 4778: -48,-3 - 4779: -48,-3 - 4780: -51,0 - 4781: -51,1 - 4782: -51,3 - 4783: -50,4 - 4784: -52,6 - 4785: -51,7 - 4786: -50,6 - 4787: -50,5 - 4856: -78,17 - 4857: -79,18 - 4858: -79,17 - 4859: -79,17 - 4860: -67,12 - 4861: -66,13 - 4862: -67,11 - 4863: -67,12 - 4864: -67,12 - 4865: -66,12 - 4866: -65,15 - 4867: -65,15 - 4868: -63,13 - 4869: -62,12 - 4870: -52,8 - 4871: -47,4 - 4872: -48,2 - 4873: -47,2 - 4874: -47,2 - 4875: -46,3 - 4895: -47,-8 - 4896: -50,-8 - 4897: -50,-8 - 4898: -50,-5 - 4899: -48,-7 - 4900: -47,-7 - 4919: -51,-12 - 4920: -49,-13 - 4921: -49,-10 - 4922: -51,-12 - 4923: -51,-10 - 4924: -52,-12 - 4925: -49,-10 - 4926: -50,-11 - 4927: -50,-12 - 4928: -49,-11 - 4929: -50,-11 - 4930: -49,-11 - 4931: -49,-11 - 4932: -49,-11 - 4933: -49,-11 - 4934: -43,-11 - 4935: -43,-11 - 4936: -43,-11 - 4937: -42,-8 - 4938: -43,-6 - 4939: -42,-8 - 4940: -42,-9 - 4967: -44,-3 - 4968: -45,-3 - 4969: -47,-2 - 4971: -45,-2 - 4972: -43,-1 - 4973: -43,-2 - 4974: -42,-3 - 5006: -37,-11 - 5007: -37,-11 - 5008: -37,-11 - 5020: -37,-9 - 5021: -38,-10 - 5022: -36,-9 - 5023: -36,-10 - 5024: -33,-11 - 5025: -33,-10 - 5026: -34,-12 - 5027: -31,-11 - 5028: -31,-12 - 5029: 3,-1 - 5030: -35,-16 - 5031: -35,-15 - 5032: -38,-15 - 5033: -36,-16 - 5034: -37,-16 - 5035: -34,-16 - 5037: -33,-17 - 5038: -35,-15 - 5039: -33,-16 - 5040: -33,-16 - 5051: -10,-5 - 5085: -14,-13 - 5090: -61,-17 - 5091: -63,-16 - 5092: -22,-8 - 5095: -62,-15 - 5096: -66,-15 - 5097: -66,-16 - 5098: -65,-16 - 5099: -64,-15 - 5100: -65,-16 - 5101: -66,-17 - 5102: -67,-17 - 5103: -68,-16 - 5104: -68,-16 - 5122: -27,-8 - 5123: -24,-8 - 5126: -76,-16 - 5127: -77,-17 - 5128: -78,-16 - 5129: -79,-15 - 5130: -80,-16 - 5131: -82,-17 - 5132: -80,-17 - 5133: -81,-15 - 5134: -83,-16 - 5135: -83,-17 - 5136: -85,-17 - 5137: -85,-16 - 5138: -86,-14 - 5139: -86,-16 - 5140: -84,-12 - 5141: -84,-10 - 5142: -87,-11 - 5143: -86,-12 - 5144: -86,-10 - 5145: -87,-8 - 5146: -86,-9 - 5147: -86,-8 - 5148: -89,-9 - 5164: -26,11 - 5165: -25,9 - 5166: -61,-24 - 5167: -61,-25 - 5168: -25,8 - 5169: -59,-23 - 5170: -58,-24 - 5171: -56,-24 - 5172: -56,-23 - 5173: -56,-23 - 5174: -60,-24 - 5175: -60,-24 - 5177: -62,-23 - 5178: -65,-24 - 5179: -66,-25 - 5181: -66,-26 - 5182: -68,-25 - 5183: -68,-23 - 5184: -68,-23 - 5186: -64,-26 - 5187: -63,-26 - 5189: -69,-25 - 5191: -68,-21 - 5192: -68,-20 - 5193: -67,-21 - 5194: -69,-20 - 5232: -59,-22 - 5233: -61,-23 - 5234: -61,-24 - 5236: -63,-25 - 5238: -60,-24 - 5239: -58,-23 - 5240: -58,-24 - 5241: -57,-22 - 5242: -56,-22 - 5282: -47,8 - 5284: -47,8 - 5285: -47,8 - 5292: -54,12 - 5293: -54,12 - 5294: -54,12 - 5300: -48,17 - 5301: -48,17 - 5303: -47,15 - 5304: -47,15 - 5306: -47,15 - 5307: -49,15 - 5308: -49,15 - 5309: -49,15 - 5310: -85,-28 - 5311: -86,-29 - 5312: -86,-30 - 5313: -85,-29 - 5314: -85,-29 - 5315: -85,-30 - 5316: -84,-30 - 5317: -84,-30 - 5318: -86,-32 - 5319: -85,-31 - 5320: -86,-31 - 5321: -84,-31 - 5322: -83,-31 - 5323: -83,-32 - 5324: -83,-33 - 5325: -84,-34 - 5326: -84,-34 - 5327: -85,-34 - 5328: -85,-35 - 5329: -84,-35 - 5330: -83,-35 - 5331: -83,-34 - 5332: -83,-36 - 5333: -82,-35 - 5334: -82,-36 - 5386: -42,-20 - 5387: -43,-20 - 5388: -44,-20 - 5389: -44,-21 - 5390: -45,-20 - 5391: -46,-20 - 5392: -47,-19 - 5393: -46,-19 - 5394: -47,-19 - 5395: -48,-19 - 5396: -48,-18 - 5397: -48,-17 - 5398: -48,-16 - 5399: -48,-16 - 5400: -46,-16 - 5401: -46,-15 - 5402: -45,-16 - 5403: -44,-15 - 5404: -43,-16 - 5405: -43,-16 - 5406: -41,-17 - 5407: -38,-15 - 5408: -37,-16 - 5409: -33,-17 - 5410: -33,-17 - 5423: -23,-13 - 5424: -24,-14 - 5425: -24,-14 - 5426: -23,-15 - 5427: -22,-14 - 5428: -22,-14 - 5429: -22,-13 - 5430: -21,-12 - 5431: -20,-13 - 5432: -20,-14 - 5433: -18,-14 - 5457: -19,-9 - 5458: -19,-8 - 5459: -20,-9 - 5460: -20,-9 - 5461: -21,-8 - 5462: -21,-8 - 5463: -13,-10 - 5464: -13,-8 - 5465: -14,-8 - 5466: -14,-10 - 5467: -14,-8 - 5468: -15,-7 - 5469: -14,-9 - 5493: -38,5 - 5494: -35,8 - 5495: -35,6 - 5496: -36,6 - 5497: -36,7 - 5498: -38,7 - 5499: -39,7 - 5500: -40,7 - 5501: -41,7 - 5502: -40,8 - 5530: -23,5 - 5531: -22,4 - 5532: -22,3 - 5533: -20,3 - 5534: -18,2 - 5535: -18,2 - 5536: -21,2 - 5537: -21,2 - 5538: -20,4 - 5539: -21,5 - 5578: -18,9 - 5579: -17,9 - 5580: -17,9 - 5581: -20,10 - 5582: -20,9 - 5583: -20,9 - 5584: -20,8 - 5585: -13,2 - 5586: -15,3 - 5587: -16,3 - 5588: -17,3 - 5589: -17,3 - 5590: -17,2 - 5591: -21,2 - 5592: -18,-1 - 5593: -19,-3 - 5594: -19,-2 - 5595: -18,-2 - 5596: -18,-2 - 5597: -17,-3 - 5598: -17,-3 - 5599: -17,-3 - 5600: -17,-4 - 5601: -18,-4 - 5602: -19,-4 - 5629: -7,2 - 5632: -8,2 - 5633: -9,2 - 5634: -11,2 - 5635: -11,3 - 5636: -11,4 - 5637: -8,4 - 5641: -130,5 - 5642: -130,5 - 5647: -9,-1 - 5648: -9,-1 - 5651: -8,-2 - 5652: -8,-3 - 5653: -10,-5 - 5654: -9,-5 - 5655: -8,-5 - 5656: -10,-7 - 5657: -10,-7 - 5658: -11,-8 - 5661: -10,-8 - 5662: -10,-6 - 5719: -8,-7 - 5721: -7,-8 - 5723: -7,-8 - 5726: -8,-9 - 5727: -8,-9 - 5729: -7,-9 - 5732: -7,-10 - 5734: -7,-10 - 5736: -8,-9 - 5786: -124,8 - 5787: -123,7 - 5788: -120,9 - 5789: -118,7 - 5790: -116,9 - 5791: -114,10 - 5792: -112,10 - 5793: -111,11 - 5794: -116,10 - 5795: -117,8 - 5796: -117,9 - 5797: -118,7 - 5798: -120,5 - 5799: -122,7 - 5800: -120,9 - 5801: -118,9 - 5802: -116,8 - 5804: -117,8 - 5805: -118,9 - 5806: -118,10 - 5807: -116,8 - 5809: -119,9 - 5810: -121,8 - 5811: -115,10 - 5812: -115,11 - 5813: -117,8 - 5814: 0,-5 - 5815: -1,-5 - 5816: -1,-5 - 5817: -2,-3 - 5833: -4,-4 - 5834: -5,-5 - 5835: -4,-4 - 5836: -4,-3 - 5837: -3,-4 - 5838: -2,-1 - 5839: -3,-1 - 5840: 0,-1 - 5841: 0,-2 - 5842: -1,-1 - 5843: 2,-1 - 5844: 4,-2 - 5845: 6,-2 - 5846: 6,-3 - 5847: 6,-6 - 5848: 6,-6 - 5849: 4,-6 - 5850: 3,-5 - 5851: 4,-6 - 5852: 3,-7 - 5853: 4,-8 - 5854: 2,-8 - 5855: 0,-8 - 5856: 0,-8 - 5857: 0,-7 - 5858: -2,-8 - 5859: -2,-8 - 5860: -15,5 - 5861: -14,5 - 5862: -13,5 - 5863: -13,4 - 5864: -15,-13 - 5865: -15,-12 - 5866: -12,-16 - 5878: -7,-18 - 5879: -8,-18 - 5880: -9,-18 - 5881: -11,-18 - 6062: -78,13 - 6063: -80,14 - 6064: -80,13 - 6065: -80,12 - 6066: -83,11 - 6067: -83,11 - 6068: -83,12 - 6069: -82,12 - 6070: -88,13 - 6072: -89,12 - 6074: -88,12 - 6075: -87,12 - 6078: -91,14 - 6079: -92,14 - 6080: -93,13 - 6081: -94,13 - 6082: -93,14 - 6085: -93,15 - 6086: -91,15 - 6088: -91,13 - 6141: -87,13 - 6142: -86,13 - 6145: -85,14 - 6147: -86,14 - 6149: -88,14 - 6151: -90,15 - 6153: -78,14 - 6154: -77,13 - 6155: -73,12 - 6156: -71,12 - 6157: -70,12 - 6158: -70,12 - 6159: -67,12 - 6160: -67,11 - 6161: -68,11 - 6187: -55,11 - 6189: -55,12 - 6191: -54,12 - 6243: -30,12 - 6244: -32,9 - 6245: -30,11 - 6246: -30,11 - 6248: -29,11 - 6250: -33,9 - 6251: -33,9 - 6252: -36,9 - 6253: -35,9 - 6254: -35,9 - 6307: -80,-20 - 6308: -80,-20 - 6309: -74,-21 - 6310: -74,-21 - 6311: -74,-21 - 6312: -76,-19 - 6313: -76,-19 - 6314: -76,-19 - 6315: -74,-19 - 6316: -74,-19 - 6318: -74,-19 - 6319: -76,-22 - 6320: -76,-22 - 6322: -76,-22 - 6324: -76,-20 - 6325: -76,-20 - 6327: -76,-20 - 6329: -74,-22 - 6330: -74,-22 - 6331: -74,-22 - 6332: -75,-22 - 6333: -75,-21 - 6335: -75,-21 - 6336: -75,-21 - 6390: -126,2 - 6391: -126,2 - 6392: -126,2 - 6393: -124,4 - 6394: -124,4 - 6395: -124,2 - 6396: -124,1 - 6397: -125,1 - 6398: -125,0 - 6399: -125,7 - 6400: -125,7 - 6401: -125,7 - 6402: -124,7 - 6403: -120,10 - 6404: -121,11 - 6405: -122,10 - 6406: -122,9 - 6407: -122,11 - 6408: -122,10 - 6409: -123,8 - 6410: -126,9 - 6411: -126,9 - 6412: -127,9 - 6413: -127,9 - 6414: -125,11 - 6415: -127,11 - 6416: -126,10 - 6875: -21,-16 - 6876: -22,-17 - 6877: -20,-16 - 6878: -20,-16 - 6879: -20,-17 + 1801: -154,-19 + 1802: -155,-15 + 1803: -158,-15 + 1804: -159,-16 + 1805: -160,-15 + 1806: -162,-16 + 1807: -163,-16 + 1808: -162,-16 + 2989: -215,-16 + 2990: -214,-16 + 3006: -210,12 + 3007: -201,-5 + 3016: -196,-17 + 3021: -196,-13 + 3022: -193,-14 + 3023: -190,-15 + 3024: -189,-18 + 3025: -187,-17 + 3026: -186,-18 + 3027: -185,-17 + 3028: -184,-18 + 3029: -184,-19 + 3030: -189,-13 + 3031: -190,-14 + 3032: -187,-13 + 3033: -186,-14 + 3034: -184,-11 + 3035: -189,-11 + 3036: -188,-10 + 3037: -187,-10 + 3038: -191,-11 + 3039: -178,-19 + 3040: -177,-18 + 3041: -179,-17 + 3042: -178,-14 + 3049: -178,-10 + 3050: -178,-7 + 3051: -177,-7 + 3052: -177,-8 + 3053: -179,-8 + 3054: -179,-6 + 3055: -181,-5 + 3056: -182,-3 + 3057: -183,-4 + 3058: -183,-5 + 3059: -185,-3 + 3060: -186,-4 + 3061: -189,-5 + 3062: -190,-4 + 3063: -191,-3 + 3064: -191,-5 + 3068: -179,-3 + 3069: -173,-5 + 3070: -172,-4 + 3071: -169,-3 + 3072: -169,-5 + 3073: -166,-5 + 3074: -164,-3 + 3075: -164,-4 + 3076: -162,-5 + 3077: -165,-4 + 3078: -161,-3 + 3079: -159,-5 + 3080: -158,-4 + 3081: -158,-3 + 3082: -156,-5 + 3083: -154,-3 + 3084: -153,-4 + 3085: -153,-5 + 3086: -156,-4 + 3128: -174,4 + 3129: -173,5 + 3130: -172,6 + 3131: -172,6 + 3132: -172,5 + 3133: -173,5 + 3134: -172,5 + 3135: -171,5 + 3197: -157,-7 + 3198: -157,-7 + 3199: -157,-8 + 3200: -157,-8 + 3201: -156,-9 + 3202: -155,-9 + 3203: -155,-9 + 3204: -154,-8 + 3205: -153,-8 + 3206: -153,-8 + 3207: -153,-7 + 3208: -155,-7 + 3209: -155,-8 + 3210: -155,-8 + 3211: -155,-10 + 3212: -155,-11 + 3213: -154,-11 + 3214: -154,-12 + 3215: -155,-12 + 3216: -155,-13 + 3217: -155,-13 + 3218: -159,-13 + 3219: -159,-13 + 3220: -160,-13 + 3221: -159,-11 + 3222: -159,-11 + 3223: -160,-11 + 3224: -160,-11 + 3225: -158,-11 + 3226: -157,-19 + 3227: -157,-19 + 3228: -157,-19 + 3229: -157,-19 + 3230: -157,-19 + 3231: -157,-19 + 3232: -156,-17 + 3233: -156,-17 + 3234: -160,-17 + 3235: -160,-17 + 3236: -160,-16 + 3287: -166,-9 + 3288: -165,-9 + 3289: -167,-10 + 3290: -167,-10 + 3291: -167,-10 + 3292: -168,-9 + 3293: -168,-9 + 3313: -170,-8 + 3314: -168,-8 + 3315: -168,-8 + 3316: -168,-8 + 3317: -169,-8 + 3318: -169,-8 + 3319: -167,-8 + 3320: -167,-8 + 3321: -167,-9 + 3322: -167,-9 + 3323: -169,-11 + 3324: -169,-11 + 3325: -169,-10 + 3326: -169,-12 + 3327: -168,-12 + 3328: -167,-13 + 3329: -167,-13 + 3330: -167,-14 + 3331: -167,-14 + 3332: -178,-14 + 3333: -178,-15 + 3334: -179,-16 + 3335: -178,-17 + 3336: -178,-17 + 3337: -177,-18 + 3338: -177,-18 + 3339: -178,-18 + 3340: -178,-19 + 3341: -179,-19 + 3342: -178,-18 + 3343: -178,-18 + 3344: -178,-18 + 3364: -181,-4 + 3365: -182,-4 + 3366: -182,-5 + 3367: -182,-4 + 3368: -182,-4 + 3369: -182,-4 + 3389: -197,-3 + 3390: -197,-3 + 3391: -203,-3 + 3392: -203,-3 + 3393: -204,-3 + 3394: -202,-3 + 3395: -202,-3 + 3396: -202,-5 + 3397: -207,1 + 3398: -207,0 + 3399: -207,1 + 3400: -207,1 + 3401: -209,1 + 3402: -209,1 + 3403: -209,3 + 3404: -209,3 + 3405: -209,1 + 3406: -209,0 + 3407: -209,0 + 3408: -208,0 + 3409: -208,0 + 3410: -208,1 + 3421: -207,12 + 3422: -207,12 + 3423: -206,13 + 3424: -206,14 + 3425: -207,14 + 3426: -206,13 + 3427: -206,12 + 3428: -206,11 + 3429: -206,11 + 3431: -207,9 + 3432: -206,8 + 3433: -206,9 + 3434: -209,9 + 3435: -209,9 + 3436: -210,10 + 3437: -210,10 + 3438: -210,13 + 3439: -209,13 + 3440: -209,13 + 3441: -209,14 + 3442: -210,15 + 3443: -186,-2 + 3453: -170,-4 + 3454: -170,-5 + 3455: -169,-5 + 3456: -169,-3 + 3457: -170,-6 + 3458: -169,-6 + 3459: -168,-6 + 3460: -167,-4 + 3496: -145,-2 + 3497: -145,-3 + 3498: -143,-3 + 3499: -143,-3 + 3500: -144,-2 + 3501: -145,-3 + 3502: -145,-3 + 3503: -147,-4 + 3504: -146,-5 + 3505: -146,-6 + 3506: -146,-6 + 3507: -147,-7 + 3508: -149,-6 + 3509: -149,-4 + 3510: -149,-3 + 3511: -148,-3 + 3512: -149,-2 + 3513: -149,-1 + 3514: -149,-1 + 3515: -149,3 + 3516: -149,2 + 3517: -150,2 + 3518: -150,3 + 3519: -149,4 + 3535: -141,2 + 3536: -141,1 + 3537: -141,1 + 3538: -141,1 + 3539: -140,2 + 3540: -140,2 + 3541: -141,2 + 3542: -142,2 + 3543: -143,1 + 3544: -143,0 + 3545: -142,0 + 3546: -137,0 + 3547: -136,0 + 3548: -135,0 + 3549: -135,1 + 3550: -135,1 + 3551: -134,1 + 3552: -133,1 + 3553: -133,1 + 3584: -134,6 + 3585: -135,7 + 3586: -135,7 + 3587: -137,7 + 3588: -137,7 + 3589: -136,7 + 3590: -136,7 + 3606: -133,-6 + 3607: -133,-5 + 3608: -132,-6 + 3609: -132,-6 + 3610: -136,-7 + 3611: -137,-6 + 3612: -137,-6 + 3613: -137,-5 + 3614: -139,-4 + 3615: -139,-3 + 3616: -139,-3 + 3617: -140,-2 + 3618: -140,-2 + 3619: -141,-2 + 3620: -141,-3 + 3621: -143,-2 + 3622: -143,-2 + 3623: -143,-3 + 3624: -143,-3 + 3625: -148,-2 + 3626: -148,-3 + 3627: -149,-3 + 3628: -149,-4 + 3629: -149,-4 + 3630: -148,-3 + 3631: -147,-2 + 3652: -128,-2 + 3653: -130,-1 + 3654: -130,-2 + 3655: -129,-2 + 3656: -129,-1 + 3657: -128,-1 + 3658: -128,-1 + 3659: -128,-1 + 3660: -127,-2 + 3661: -128,0 + 3662: -128,0 + 3663: -127,0 + 3671: -124,-5 + 3672: -123,-5 + 3673: -123,-6 + 3674: -123,-6 + 3675: -124,-6 + 3676: -125,-6 + 3683: -124,-9 + 3684: -124,-9 + 3685: -124,-10 + 3686: -124,-10 + 3687: -125,-11 + 3688: -125,-11 + 3689: -124,-11 + 3690: -123,-11 + 3691: -121,-11 + 3692: -120,-11 + 3701: -128,-10 + 3702: -128,-10 + 3703: -128,-10 + 3704: -127,-11 + 3705: -127,-11 + 3706: -128,-12 + 3707: -128,-12 + 3708: -128,-12 + 3709: -128,-12 + 3710: -116,-10 + 3711: -117,-10 + 3712: -117,-11 + 3713: -116,-11 + 3714: -115,-12 + 3715: -115,-13 + 3716: -114,-13 + 3717: -113,-14 + 3718: -113,-14 + 3719: -112,-14 + 3720: -112,-13 + 3721: -112,-12 + 3722: -112,-12 + 3723: -112,-12 + 3724: -112,-10 + 3725: -113,-10 + 3726: -114,-10 + 3727: -112,-11 + 3728: -112,-11 + 3729: -115,-12 + 3730: -115,-13 + 3731: -110,-12 + 3732: -110,-12 + 3733: -110,-12 + 3734: -110,-12 + 3735: -110,-11 + 3736: -110,-11 + 3737: -110,-10 + 3778: -102,-17 + 3779: -102,-18 + 3780: -101,-18 + 3781: -101,-18 + 3782: -102,-18 + 3783: -111,-4 + 3784: -112,-4 + 3785: -113,-4 + 3786: -113,-3 + 3787: -113,-4 + 3788: -112,-4 + 3789: -112,-4 + 3790: -113,-3 + 3791: -112,-3 + 3792: -112,-3 + 3793: -115,-4 + 3794: -115,-4 + 3795: -116,-4 + 3796: -115,-3 + 3797: -115,-3 + 3798: -114,-3 + 3799: -114,-1 + 3800: -115,0 + 3801: -116,0 + 3802: -116,1 + 3803: -118,1 + 3826: -113,-6 + 3827: -115,-5 + 3828: -116,-4 + 3829: -116,-7 + 3830: -114,-7 + 3831: -114,-7 + 3832: -116,-7 + 3833: -117,-8 + 3834: -117,-8 + 3835: -115,-8 + 3836: -115,-8 + 3837: -115,-8 + 3838: -112,-8 + 3839: -113,-8 + 3840: -113,-8 + 3869: -117,-15 + 3870: -118,-16 + 3871: -116,-15 + 3872: -116,-16 + 3873: -118,-16 + 3874: -113,-16 + 3875: -114,-16 + 3876: -114,-17 + 3877: -112,-17 + 3878: -112,-17 + 3879: -112,-16 + 3880: -113,-16 + 3881: -114,-16 + 3882: -114,-17 + 3883: -113,-17 + 3884: -113,-16 + 3885: -113,-16 + 3905: -103,-3 + 3906: -105,-4 + 3907: -106,-5 + 3908: -104,-5 + 3909: -104,-5 + 3910: -103,-4 + 3911: -103,-4 + 3912: -102,-3 + 3913: -104,-3 + 3914: -103,-4 + 3915: -100,-4 + 3916: -100,-5 + 3917: -99,-4 + 3918: -99,-4 + 3919: -101,-4 + 3920: -100,-3 + 3921: -100,-3 + 3922: -99,-4 + 3923: -98,-4 + 3924: -97,-3 + 3925: -97,-4 + 3926: -97,-4 + 3927: -96,-3 + 3928: -95,-4 + 3929: -94,-4 + 3930: -95,-4 + 3931: -95,-3 + 3932: -93,-4 + 3957: -86,-13 + 3958: -86,-13 + 3959: -85,-14 + 3960: -85,-14 + 3961: -85,-16 + 3962: -85,-14 + 3963: -85,-15 + 3964: -84,-13 + 3965: -84,-13 + 3966: -83,-17 + 3967: -83,-16 + 3968: -84,-16 + 3969: -84,-15 + 3970: -85,-16 + 3971: -84,-16 + 3972: -84,-14 + 4036: -79,9 + 4037: -80,7 + 4038: -80,9 + 4039: -78,8 + 4040: -77,8 + 4041: -74,9 + 4042: -74,7 + 4043: -68,9 + 4044: -65,8 + 4045: -61,9 + 4046: -59,8 + 4047: -55,9 + 4048: -52,8 + 4049: -48,8 + 4050: -50,8 + 4051: -52,7 + 4052: -50,8 + 4053: -53,9 + 4054: -52,8 + 4055: -53,8 + 4056: -57,8 + 4057: -56,9 + 4058: -58,7 + 4059: -59,9 + 4060: -62,8 + 4061: -61,9 + 4062: -64,7 + 4063: -66,9 + 4064: -68,7 + 4065: -72,9 + 4066: -72,7 + 4067: -75,9 + 4068: -77,8 + 4069: -80,9 + 4108: -63,8 + 4109: -64,9 + 4110: -65,8 + 4111: -63,8 + 4112: -62,9 + 4113: -63,8 + 4114: -61,7 + 4115: -59,10 + 4116: -59,11 + 4117: -59,11 + 4118: -58,10 + 4140: -57,4 + 4141: -57,2 + 4142: -55,2 + 4143: -54,1 + 4144: -54,1 + 4145: -55,-1 + 4146: -56,-2 + 4147: -55,-3 + 4148: -55,-3 + 4149: -55,-5 + 4150: -54,-6 + 4151: -55,-7 + 4152: -54,-7 + 4153: -54,-7 + 4154: -55,-6 + 4155: -55,-6 + 4156: -54,-4 + 4157: -54,-4 + 4158: -55,-5 + 4159: -53,-5 + 4160: -55,-6 + 4161: -59,-6 + 4162: -60,-5 + 4163: -61,-6 + 4164: -62,-6 + 4165: -64,-5 + 4166: -63,-6 + 4167: -61,-6 + 4168: -59,-6 + 4169: -60,-3 + 4170: -59,-2 + 4171: -58,-2 + 4177: -63,4 + 4178: -62,5 + 4179: -62,5 + 4180: -61,2 + 4181: -61,2 + 4182: -60,3 + 4183: -60,3 + 4214: -69,-2 + 4215: -69,-4 + 4216: -68,-5 + 4217: -69,-5 + 4218: -70,-4 + 4219: -69,-4 + 4220: -69,-3 + 4221: -68,-3 + 4222: -68,-3 + 4223: -68,-3 + 4224: -68,-3 + 4225: -69,-4 + 4226: -70,-5 + 4227: -73,-2 + 4228: -72,-3 + 4229: -73,-3 + 4230: -73,-5 + 4231: -73,-5 + 4232: -73,-5 + 4233: -73,-4 + 4234: -72,-3 + 4235: -72,-2 + 4236: -72,-1 + 4237: -72,0 + 4238: -72,1 + 4239: -72,1 + 4240: -73,2 + 4241: -72,1 + 4242: -73,0 + 4243: -73,0 + 4259: -77,-9 + 4260: -78,-8 + 4261: -77,-8 + 4262: -80,-8 + 4263: -80,-8 + 4264: -80,-9 + 4265: -80,-10 + 4266: -80,-10 + 4267: -81,-11 + 4268: -79,-10 + 4287: -73,-3 + 4288: -73,-3 + 4289: -72,-4 + 4290: -72,-4 + 4291: -68,-3 + 4292: -68,-5 + 4293: -69,-5 + 4294: -69,-4 + 4295: -70,-5 + 4296: -69,-5 + 4297: -68,-6 + 4298: -68,-4 + 4362: -48,-1 + 4363: -51,-1 + 4364: -52,-2 + 4365: -48,-3 + 4366: -48,-3 + 4367: -51,0 + 4368: -51,1 + 4369: -51,3 + 4370: -50,4 + 4371: -52,6 + 4372: -51,7 + 4373: -50,6 + 4374: -50,5 + 4443: -78,17 + 4444: -79,18 + 4445: -79,17 + 4446: -79,17 + 4447: -67,12 + 4448: -66,13 + 4449: -67,11 + 4450: -67,12 + 4451: -67,12 + 4452: -66,12 + 4453: -65,15 + 4454: -65,15 + 4455: -63,13 + 4456: -62,12 + 4457: -52,8 + 4458: -47,4 + 4459: -48,2 + 4460: -47,2 + 4461: -47,2 + 4462: -46,3 + 4482: -47,-8 + 4483: -50,-8 + 4484: -50,-8 + 4485: -50,-5 + 4486: -48,-7 + 4487: -47,-7 + 4506: -51,-12 + 4507: -49,-13 + 4508: -49,-10 + 4509: -51,-12 + 4510: -51,-10 + 4511: -52,-12 + 4512: -49,-10 + 4513: -50,-11 + 4514: -50,-12 + 4515: -49,-11 + 4516: -50,-11 + 4517: -49,-11 + 4518: -49,-11 + 4519: -49,-11 + 4520: -49,-11 + 4521: -43,-11 + 4522: -43,-11 + 4523: -43,-11 + 4524: -42,-8 + 4525: -43,-6 + 4526: -42,-8 + 4527: -42,-9 + 4554: -44,-3 + 4555: -45,-3 + 4556: -47,-2 + 4558: -45,-2 + 4559: -43,-1 + 4560: -43,-2 + 4561: -42,-3 + 4593: -37,-11 + 4594: -37,-11 + 4595: -37,-11 + 4607: -37,-9 + 4608: -38,-10 + 4609: -36,-9 + 4610: -36,-10 + 4611: -33,-11 + 4612: -33,-10 + 4613: -34,-12 + 4614: -31,-11 + 4615: -31,-12 + 4616: 3,-1 + 4617: -35,-16 + 4618: -35,-15 + 4619: -38,-15 + 4620: -36,-16 + 4621: -37,-16 + 4622: -34,-16 + 4624: -33,-17 + 4625: -35,-15 + 4626: -33,-16 + 4627: -33,-16 + 4638: -10,-5 + 4672: -14,-13 + 4677: -61,-17 + 4678: -63,-16 + 4679: -22,-8 + 4682: -62,-15 + 4683: -66,-15 + 4684: -66,-16 + 4685: -65,-16 + 4686: -64,-15 + 4687: -65,-16 + 4688: -66,-17 + 4689: -67,-17 + 4690: -68,-16 + 4691: -68,-16 + 4709: -27,-8 + 4710: -24,-8 + 4713: -76,-16 + 4714: -78,-16 + 4715: -79,-15 + 4716: -80,-16 + 4717: -82,-17 + 4718: -80,-17 + 4719: -81,-15 + 4720: -83,-16 + 4721: -83,-17 + 4722: -85,-17 + 4723: -85,-16 + 4724: -86,-14 + 4725: -86,-16 + 4726: -84,-12 + 4727: -84,-10 + 4728: -87,-11 + 4729: -86,-12 + 4730: -86,-10 + 4731: -87,-8 + 4732: -86,-9 + 4733: -86,-8 + 4734: -89,-9 + 4750: -26,11 + 4751: -25,9 + 4752: -61,-24 + 4753: -25,8 + 4754: -56,-24 + 4755: -56,-23 + 4756: -56,-23 + 4758: -62,-23 + 4759: -65,-24 + 4761: -68,-23 + 4762: -68,-23 + 4765: -69,-25 + 4767: -68,-21 + 4768: -68,-20 + 4769: -67,-21 + 4770: -69,-20 + 4805: -59,-22 + 4806: -61,-23 + 4807: -61,-24 + 4810: -57,-22 + 4811: -56,-22 + 4847: -47,8 + 4849: -47,8 + 4850: -47,8 + 4857: -54,12 + 4858: -54,12 + 4859: -54,12 + 4863: -48,17 + 4864: -48,17 + 4865: -47,15 + 4866: -47,15 + 4868: -47,15 + 4869: -49,15 + 4870: -49,15 + 4871: -49,15 + 4872: -85,-28 + 4873: -86,-29 + 4874: -86,-30 + 4875: -85,-29 + 4876: -85,-29 + 4877: -85,-30 + 4878: -84,-30 + 4879: -84,-30 + 4880: -86,-32 + 4881: -85,-31 + 4882: -86,-31 + 4883: -84,-31 + 4884: -83,-31 + 4885: -83,-32 + 4886: -83,-33 + 4887: -84,-34 + 4888: -84,-34 + 4889: -85,-34 + 4890: -85,-35 + 4891: -84,-35 + 4892: -83,-35 + 4893: -83,-34 + 4894: -83,-36 + 4895: -82,-35 + 4896: -82,-36 + 4948: -42,-20 + 4949: -43,-20 + 4950: -44,-20 + 4951: -44,-21 + 4952: -45,-20 + 4953: -46,-20 + 4954: -47,-19 + 4955: -46,-19 + 4956: -47,-19 + 4957: -48,-19 + 4958: -48,-18 + 4959: -48,-17 + 4960: -48,-16 + 4961: -48,-16 + 4962: -46,-16 + 4963: -46,-15 + 4964: -45,-16 + 4965: -44,-15 + 4966: -43,-16 + 4967: -43,-16 + 4968: -41,-17 + 4969: -38,-15 + 4970: -37,-16 + 4971: -33,-17 + 4972: -33,-17 + 4985: -23,-13 + 4986: -24,-14 + 4987: -24,-14 + 4988: -23,-15 + 4989: -22,-14 + 4990: -22,-14 + 4991: -22,-13 + 4992: -21,-12 + 4993: -20,-13 + 4994: -20,-14 + 4995: -18,-14 + 5019: -19,-9 + 5020: -19,-8 + 5021: -20,-9 + 5022: -20,-9 + 5023: -21,-8 + 5024: -21,-8 + 5025: -13,-10 + 5026: -13,-8 + 5027: -14,-8 + 5028: -14,-10 + 5029: -14,-8 + 5030: -15,-7 + 5031: -14,-9 + 5053: -38,5 + 5054: -35,8 + 5055: -35,6 + 5056: -36,6 + 5057: -36,7 + 5058: -38,7 + 5059: -39,7 + 5060: -40,7 + 5061: -41,7 + 5062: -40,8 + 5090: -23,5 + 5091: -22,4 + 5092: -20,3 + 5093: -18,2 + 5094: -18,2 + 5095: -21,2 + 5096: -21,2 + 5097: -20,4 + 5098: -21,5 + 5136: -18,9 + 5137: -17,9 + 5138: -17,9 + 5139: -20,10 + 5140: -20,9 + 5141: -20,9 + 5142: -20,8 + 5143: -13,2 + 5144: -15,3 + 5145: -16,3 + 5146: -17,2 + 5147: -21,2 + 5148: -18,-1 + 5149: -19,-3 + 5150: -19,-2 + 5151: -18,-2 + 5152: -18,-2 + 5153: -17,-3 + 5154: -17,-3 + 5155: -17,-3 + 5156: -17,-4 + 5157: -18,-4 + 5158: -19,-4 + 5185: -7,2 + 5188: -8,2 + 5189: -9,2 + 5190: -11,2 + 5191: -11,3 + 5192: -11,4 + 5193: -8,4 + 5197: -130,5 + 5198: -130,5 + 5203: -9,-1 + 5204: -9,-1 + 5207: -8,-2 + 5208: -8,-3 + 5209: -10,-5 + 5210: -9,-5 + 5211: -8,-5 + 5212: -10,-7 + 5213: -10,-7 + 5214: -11,-8 + 5217: -10,-8 + 5218: -10,-6 + 5275: -8,-7 + 5277: -7,-8 + 5279: -7,-8 + 5282: -8,-9 + 5283: -8,-9 + 5285: -7,-9 + 5288: -7,-10 + 5290: -7,-10 + 5292: -8,-9 + 5342: -124,8 + 5343: -123,7 + 5344: -120,9 + 5345: -118,7 + 5346: -116,9 + 5347: -114,10 + 5348: -112,10 + 5349: -111,11 + 5350: -116,10 + 5351: -117,8 + 5352: -117,9 + 5353: -118,7 + 5354: -120,5 + 5355: -122,7 + 5356: -120,9 + 5357: -118,9 + 5358: -116,8 + 5360: -117,8 + 5361: -118,9 + 5362: -118,10 + 5363: -116,8 + 5365: -119,9 + 5366: -121,8 + 5367: -115,10 + 5368: -115,11 + 5369: -117,8 + 5370: 0,-5 + 5371: -1,-5 + 5372: -1,-5 + 5373: -2,-3 + 5389: -4,-4 + 5390: -5,-5 + 5391: -4,-4 + 5392: -4,-3 + 5393: -3,-4 + 5394: -2,-1 + 5395: -3,-1 + 5396: 0,-1 + 5397: 0,-2 + 5398: -1,-1 + 5399: 2,-1 + 5400: 4,-2 + 5401: 6,-2 + 5402: 6,-3 + 5403: 6,-6 + 5404: 6,-6 + 5405: 4,-6 + 5406: 3,-5 + 5407: 4,-6 + 5408: 3,-7 + 5409: 4,-8 + 5410: 2,-8 + 5411: 0,-8 + 5412: 0,-8 + 5413: 0,-7 + 5414: -2,-8 + 5415: -2,-8 + 5416: -15,5 + 5417: -14,5 + 5418: -13,5 + 5419: -13,4 + 5420: -15,-13 + 5421: -15,-12 + 5422: -12,-16 + 5434: -7,-18 + 5435: -8,-18 + 5436: -9,-18 + 5437: -11,-18 + 5614: -78,13 + 5615: -80,14 + 5616: -80,13 + 5617: -80,12 + 5618: -83,11 + 5619: -83,11 + 5620: -83,12 + 5621: -82,12 + 5622: -88,13 + 5624: -89,12 + 5626: -88,12 + 5627: -87,12 + 5630: -91,14 + 5631: -92,14 + 5632: -93,13 + 5633: -94,13 + 5634: -93,14 + 5637: -93,15 + 5638: -91,15 + 5640: -91,13 + 5693: -87,13 + 5694: -86,13 + 5697: -85,14 + 5699: -86,14 + 5701: -88,14 + 5703: -90,15 + 5705: -78,14 + 5706: -77,13 + 5707: -73,12 + 5708: -71,12 + 5709: -70,12 + 5710: -70,12 + 5711: -67,12 + 5712: -67,11 + 5713: -68,11 + 5739: -55,11 + 5741: -55,12 + 5743: -54,12 + 5794: -30,12 + 5795: -32,9 + 5796: -30,11 + 5797: -30,11 + 5799: -29,11 + 5801: -33,9 + 5802: -33,9 + 5803: -36,9 + 5804: -35,9 + 5805: -35,9 + 5858: -80,-20 + 5859: -80,-20 + 5906: -126,2 + 5907: -126,2 + 5908: -126,2 + 5909: -124,4 + 5910: -124,4 + 5911: -124,2 + 5912: -124,1 + 5913: -125,1 + 5914: -125,0 + 5915: -125,7 + 5916: -125,7 + 5917: -125,7 + 5918: -124,7 + 5919: -120,10 + 5920: -121,11 + 5921: -122,10 + 5922: -122,9 + 5923: -122,11 + 5924: -122,10 + 5925: -123,8 + 5926: -126,9 + 5927: -126,9 + 5928: -127,9 + 5929: -127,9 + 5930: -125,11 + 5931: -127,11 + 5932: -126,10 + 6390: -21,-16 + 6391: -22,-17 + 6392: -20,-16 + 6393: -20,-16 + 6394: -20,-17 - node: cleanable: True color: '#FFFFFF6B' id: DirtLight decals: - 2006: -159,-16 - 2007: -159,-16 - 2008: -160,-16 - 2009: -161,-16 - 2010: -161,-16 - 2011: -160,-16 - 2012: -160,-16 - 2013: -160,-16 - 2014: -160,-16 - 2015: -160,-16 - 2016: -160,-16 - 2017: -160,-16 + 1772: -159,-16 + 1773: -159,-16 + 1774: -160,-16 + 1775: -161,-16 + 1776: -161,-16 + 1777: -160,-16 + 1778: -160,-16 + 1779: -160,-16 + 1780: -160,-16 + 1781: -160,-16 + 1782: -160,-16 + 1783: -160,-16 - node: color: '#FFFFFFFF' id: DirtLight decals: - 6598: -38,-19 - 6664: -67,11 - 6665: -68,12 - 6666: -66,13 - 6667: -66,14 - 6668: -67,15 - 6669: -68,15 - 6670: -70,14 + 6113: -38,-19 + 6179: -67,11 + 6180: -68,12 + 6181: -66,13 + 6182: -66,14 + 6183: -67,15 + 6184: -68,15 + 6185: -70,14 + 6695: -227,-35 + 6696: -227,-35 + 6697: -228,-34 + 6698: -227,-34 + 6699: -223,-35 + 6700: -224,-34 + 6701: -221,-36 + 6702: -220,-35 + 6703: -219,-35 + 6704: -219,-33 + 6705: -224,-35 + 6706: -224,-35 + 6707: -222,-36 + 6708: -224,-36 + 6709: -222,-35 + 6710: -218,-35 + 6711: -219,-37 + 6712: -219,-38 + 6713: -220,-39 + 6714: -220,-39 + 6715: -223,-40 + 6716: -221,-40 + 6717: -221,-39 + 6718: -221,-40 + 6719: -216,-37 + 6720: -216,-37 + 6721: -215,-32 + 6722: -216,-32 + 6723: -216,-33 + 6724: -216,-34 + 6725: -216,-30 + 6726: -216,-30 + 6727: -220,-25 + 6728: -223,-24 + 6729: -220,-25 + 6730: -221,-26 + 6731: -219,-25 + 6732: -220,-24 + 6733: -221,-18 + 6734: -222,-20 + 6735: -220,-19 + 6736: -221,-19 + 6737: -221,-20 + 6738: -221,-20 + 6739: -220,-17 + 6740: -219,-17 + 6741: -221,-16 + 6742: -219,-16 + 6743: -218,-18 + 6744: -219,-17 + 6745: -221,-17 + 6746: -220,-17 + 6747: -220,-18 + 6748: -224,-19 + 6749: -226,-19 + 6750: -226,-17 + 6751: -225,-18 + 6752: -226,-20 + 6753: -226,-21 + 6754: -227,-22 + 6866: -226,-20 + 6867: -227,-19 + 6868: -227,-19 + 6869: -225,-17 + 6870: -228,-17 + 6871: -224,-18 + 6872: -224,-18 + 6873: -227,-18 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 2018: -160,-17 - 2019: -166,-20 - 2020: -167,-19 - 2021: -167,-20 - 2022: -167,-21 - 2023: -168,-22 - 2024: -168,-22 - 2025: -168,-22 - 2026: -164,-22 - 2027: -161,-22 - 2028: -160,-22 - 2029: -158,-25 - 2030: -159,-26 - 3251: -213,-20 - 3252: -215,-20 - 3253: -211,-4 - 3254: -210,-5 - 3255: -208,-4 - 3262: -209,9 - 3263: -206,11 - 3264: -207,13 - 3275: -200,21 - 3298: -197,-5 - 3299: -195,-8 - 3300: -197,-9 - 3305: -195,-19 - 3306: -197,-18 - 3365: -195,-4 - 3366: -188,-1 - 3367: -187,0 - 3368: -186,1 - 3369: -187,3 - 3376: -188,14 - 3377: -190,11 - 3378: -174,-5 - 3379: -177,-3 - 3409: -165,-1 - 3410: -165,0 - 3411: -166,0 - 3412: -165,-1 - 3413: -164,0 - 3414: -164,0 - 3415: -165,1 - 3416: -165,1 - 3568: -165,-14 - 3569: -165,-14 - 3570: -165,-12 - 3571: -164,-12 - 3572: -163,-12 - 3573: -164,-9 - 3574: -164,-9 - 3575: -165,-10 - 3576: -165,-10 - 3577: -164,-10 - 3578: -164,-10 - 3579: -164,-10 - 3580: -163,-10 - 3581: -163,-9 - 3582: -164,-7 - 3583: -164,-8 - 3584: -164,-8 - 3585: -164,-8 - 3586: -162,-8 - 3587: -162,-8 - 3606: -169,-11 - 3607: -169,-11 - 3608: -170,-11 - 3609: -170,-13 - 3610: -169,-14 - 3611: -168,-14 - 3612: -168,-14 - 3613: -169,-14 - 3614: -169,-14 - 3668: -179,-10 - 3669: -179,-10 - 3670: -177,-9 - 3671: -177,-9 - 3672: -178,-4 - 3673: -178,-4 - 3674: -178,-5 - 3675: -179,-5 - 3682: -182,-3 - 3683: -182,-3 - 3684: -182,-3 - 3685: -182,-3 - 3723: -210,2 - 3724: -210,1 - 3725: -209,2 - 3726: -207,5 - 3727: -207,5 - 3728: -206,5 - 3729: -206,6 - 3730: -206,9 - 3731: -208,8 - 3732: -207,10 - 3816: -194,20 - 3873: -168,-6 - 3874: -168,-6 - 3875: -168,-6 - 3876: -168,-6 - 3877: -165,-4 - 3878: -166,-3 - 3935: -148,2 - 3936: -148,2 - 3937: -148,2 - 3938: -150,5 - 3939: -150,5 - 3940: -149,5 - 3941: -144,2 - 3942: -144,1 - 3943: -143,1 - 3944: -143,1 - 3945: -143,2 - 3946: -142,2 - 4003: -135,7 - 4004: -136,7 - 4005: -137,7 - 4006: -137,7 - 4007: -138,6 - 4008: -134,7 - 4009: -133,7 - 4049: -149,-3 - 4050: -149,-3 - 4051: -149,-3 - 4052: -144,-6 - 4053: -144,-6 - 4054: -143,-7 - 4055: -143,-7 - 4056: -134,-6 - 4057: -133,-7 - 4058: -131,-7 - 4059: -129,-6 - 4060: -129,-7 - 4061: -129,-7 - 4062: -128,-7 - 4063: -128,-7 - 4089: -123,-6 - 4090: -124,-6 - 4091: -125,-6 - 4092: -125,-6 - 4093: -125,-6 - 4094: -125,-6 - 4109: -128,-11 - 4110: -128,-11 - 4111: -128,-11 - 4112: -128,-10 - 4165: -106,-16 - 4166: -108,-17 - 4167: -109,-17 - 4168: -109,-17 - 4169: -108,-15 - 4170: -106,-13 - 4171: -107,-11 - 4172: -106,-10 - 4173: -105,-8 - 4174: -107,-8 - 4175: -108,-8 - 4176: -107,-7 - 4177: -107,-8 - 4178: -106,-9 - 4179: -106,-9 - 4253: -111,-8 - 4254: -111,-8 - 4255: -111,-8 - 4256: -111,-8 - 4257: -113,-8 - 4258: -115,-8 - 4259: -115,-9 - 4260: -116,-10 - 4261: -116,-10 - 4262: -115,-10 - 4263: -115,-10 - 4264: -113,-10 - 4265: -115,-13 - 4266: -117,-16 - 4267: -117,-16 - 4268: -116,-16 - 4269: -116,-17 - 4270: -116,-17 - 4271: -118,-17 - 4272: -118,-17 - 4273: -118,-16 - 4298: -113,-17 - 4299: -112,-16 - 4300: -112,-17 - 4301: -112,-17 - 4302: -112,-17 - 4303: -109,-17 - 4304: -108,-17 - 4305: -107,-14 - 4306: -107,-14 - 4307: -109,-5 - 4308: -109,-3 - 4309: -111,-4 - 4310: -111,-5 - 4311: -112,-5 - 4312: -111,-5 - 4313: -111,-4 - 4314: -108,-4 - 4315: -106,-3 - 4316: -105,-4 - 4345: -94,-4 - 4346: -95,-5 - 4347: -95,-4 - 4348: -94,-3 - 4349: -93,-4 - 4350: -93,-5 - 4385: -83,-14 - 4386: -83,-14 - 4387: -84,-14 - 4388: -83,-15 - 4389: -83,-15 - 4390: -84,-16 - 4391: -85,-16 - 4392: -84,-17 - 4531: -60,12 - 4532: -60,11 - 4533: -59,10 - 4534: -58,11 - 4535: -58,9 - 4536: -56,7 - 4584: -61,-1 - 4585: -62,0 - 4586: -62,-1 - 4587: -62,-2 - 4588: -60,-1 - 4596: -63,2 - 4597: -63,2 - 4598: -63,3 - 4599: -61,2 - 4600: -65,-1 - 4601: -65,-1 - 4656: -72,3 - 4657: -73,2 - 4658: -73,2 - 4659: -72,1 - 4660: -72,-2 - 4661: -72,-3 - 4662: -73,-5 - 4663: -73,-6 - 4664: -73,-6 - 4665: -72,-7 - 4666: -73,-8 - 4667: -73,-9 - 4668: -72,-9 - 4669: -78,-8 - 4670: -77,-8 - 4712: -66,0 - 4713: -65,-1 - 4714: -65,4 - 4715: -66,4 - 4716: -66,5 - 4717: -65,5 - 4718: -65,4 - 4719: -66,3 - 4720: -66,4 - 4721: -66,4 - 4728: -54,-6 - 4729: -54,-7 - 4730: -57,-11 - 4731: -57,-11 - 4732: -56,-11 - 4733: -56,-11 - 4734: -56,-12 - 4735: -56,-12 - 4736: -57,-13 - 4737: -55,-13 - 4738: -55,-13 - 4739: -54,-11 - 4788: -51,6 - 4789: -51,8 - 4790: -51,8 - 4791: -53,7 - 4792: -54,7 - 4793: -54,8 - 4794: -55,7 - 4795: -56,9 - 4796: -58,8 - 4884: -45,5 - 4885: -47,5 - 4901: -45,-8 - 4902: -47,-8 - 4903: -46,-6 - 4904: -47,-6 - 4905: -47,-5 - 4906: -49,-6 - 4907: -50,-5 - 4908: -51,-7 - 4909: -49,-8 - 4910: 0,-6 - 4911: -1,-7 - 4912: -2,-5 - 4941: -43,-8 - 4942: -43,-9 - 4943: -45,-10 - 4944: -44,-11 - 4945: -44,-11 - 4946: -44,-11 - 4947: -43,-11 - 4948: -42,-10 - 4949: -42,-10 - 4950: -42,-11 - 4951: -41,-11 - 4952: -40,-13 - 4953: -40,-11 - 4954: -40,-10 - 4955: -40,-12 - 4956: -40,-13 - 4957: -42,-12 - 4958: -43,-12 - 4970: 4,-6 - 4975: -1,-2 - 5000: -37,-11 - 5001: -37,-11 - 5002: -37,-11 - 5036: -5,-4 - 5054: -52,-11 - 5055: -52,-12 - 5056: -52,-13 - 5057: -50,-10 - 5058: -52,-10 - 5059: -52,-11 - 5060: -51,-12 - 5089: -15,-10 - 5105: -66,-16 - 5106: -69,-17 - 5107: -69,-15 - 5108: -69,-16 - 5109: -66,-15 - 5248: -57,-24 - 5249: -58,-24 - 5250: -57,-22 - 5251: -56,-22 - 5268: -47,9 - 5270: -47,9 - 5272: -47,9 - 5273: -47,9 - 5302: -66,-25 - 5305: -67,-24 - 5342: -86,-30 - 5343: -87,-31 - 5344: -87,-32 - 5345: -84,-31 - 5346: -83,-31 - 5347: -83,-31 - 5348: -83,-33 - 5349: -83,-34 - 5350: -83,-35 - 5434: -23,-13 - 5470: -13,-10 - 5471: -14,-8 - 5472: -15,-7 - 5473: -14,-8 - 5474: -14,-6 - 5475: -14,-6 - 5540: -22,3 - 5541: -22,5 - 5542: -21,5 - 5543: -20,4 - 5544: -18,5 - 5545: -16,5 - 5603: -17,-5 - 5604: -17,-5 - 5605: -17,-5 - 5606: -18,-2 - 5645: -123,7 - 5646: -123,7 - 5649: -119,11 - 5650: -119,11 - 5667: -8,-3 - 5669: -10,-3 - 5671: -10,-2 - 5673: -11,0 - 5675: -9,0 - 5678: -8,0 - 5709: -119,14 - 5711: -117,13 - 5712: -114,16 - 5713: -117,16 - 5714: -111,16 - 5715: -112,17 - 5716: -109,16 - 5717: -111,16 - 5718: -112,16 - 5720: -111,15 - 5722: -114,15 - 5724: -116,14 - 5725: -119,14 - 5728: -121,16 - 5730: -121,15 - 5731: -119,14 - 5733: -117,15 - 5735: -114,15 - 5737: -112,14 - 5738: -111,15 - 5739: -113,15 - 5740: -115,13 - 5741: -117,15 - 5742: -120,16 - 5743: -120,14 - 5744: -121,13 - 5745: -7,-9 - 5746: -8,-9 - 5747: -7,-8 - 5748: -8,-6 - 5749: -7,-10 - 5750: -119,17 - 5751: -8,-10 - 5752: -117,17 - 5753: -8,-11 - 5754: -115,17 - 5755: -114,15 - 5756: -112,14 - 5823: -1,-1 - 5825: 0,-2 - 5827: 0,-2 - 5882: -10,-15 - 5883: -7,-15 - 5884: -7,-15 - 5885: -6,-17 - 5886: -15,-17 - 5887: -15,-16 - 5888: -16,-16 - 5889: -16,-17 - 5890: -16,-17 - 6096: -92,10 - 6097: -95,9 - 6098: -95,8 - 6099: -93,9 - 6100: -92,10 - 6101: -92,10 - 6102: -93,8 - 6103: -93,8 - 6104: -92,7 - 6105: -92,5 - 6106: -93,5 - 6107: -93,4 - 6108: -92,4 - 6125: -91,11 - 6127: -88,11 - 6129: -87,11 - 6168: -62,11 - 6170: -63,12 - 6172: -63,12 - 6174: -62,11 - 6176: -62,11 - 6178: -60,11 - 6337: -76,-21 - 6338: -75,-21 - 6339: -75,-21 - 6340: -75,-21 - 6341: -76,-22 - 6342: -76,-22 - 6343: -74,-22 - 6344: -74,-22 - 6345: -74,-22 - 6880: -20,-16 - 6881: -22,-16 - 6882: -22,-17 - 6883: -22,-17 - 6884: -21,-17 - 6885: -21,-16 - 6886: -20,-17 - 6887: -20,-15 - 6888: -20,-14 - 6889: -20,-14 - 6890: -19,-15 - 6891: -19,-15 - 6892: -20,-19 - 6893: -20,-19 - 6894: -21,-20 - 6895: -23,-20 - 6896: -24,-20 - 6897: -24,-20 - 6917: -23,-21 - 6918: -23,-20 - 6919: -22,-20 - 6920: -22,-19 - 6921: -22,-19 - 6922: -23,-19 - 6923: -21,-19 - 6924: -21,-19 - 6925: -21,-20 - 6926: -20,-20 - 6927: -22,-18 - 6928: -20,-20 - 6929: -20,-21 - 6930: -21,-21 - 6931: -21,-21 - 6985: -35,-15 - 6986: -36,-15 - 6987: -36,-15 - 6988: -36,-14 - 6989: -34,-14 - 6990: -33,-13 - 6991: -32,-13 - 6992: -32,-13 - 6993: -30,-13 - 6994: -30,-11 - 6995: -30,-11 - 6996: -21,-8 + 1784: -160,-17 + 1785: -166,-20 + 1786: -167,-19 + 1787: -167,-20 + 1788: -167,-21 + 1789: -168,-22 + 1790: -168,-22 + 1791: -168,-22 + 1792: -164,-22 + 1793: -161,-22 + 1794: -160,-22 + 1795: -158,-25 + 1796: -159,-26 + 2991: -213,-20 + 2992: -215,-20 + 2993: -211,-4 + 2994: -210,-5 + 2995: -208,-4 + 3002: -209,9 + 3003: -206,11 + 3004: -207,13 + 3010: -197,-5 + 3011: -195,-8 + 3012: -197,-9 + 3017: -195,-19 + 3018: -197,-18 + 3065: -195,-4 + 3066: -174,-5 + 3067: -177,-3 + 3097: -165,-1 + 3098: -165,0 + 3099: -166,0 + 3100: -165,-1 + 3101: -164,0 + 3102: -164,0 + 3103: -165,1 + 3104: -165,1 + 3256: -165,-14 + 3257: -165,-14 + 3258: -165,-12 + 3259: -164,-12 + 3260: -163,-12 + 3261: -164,-9 + 3262: -164,-9 + 3263: -165,-10 + 3264: -165,-10 + 3265: -164,-10 + 3266: -164,-10 + 3267: -164,-10 + 3268: -163,-10 + 3269: -163,-9 + 3270: -164,-7 + 3271: -164,-8 + 3272: -164,-8 + 3273: -164,-8 + 3274: -162,-8 + 3275: -162,-8 + 3294: -169,-11 + 3295: -169,-11 + 3296: -170,-11 + 3297: -170,-13 + 3298: -169,-14 + 3299: -168,-14 + 3300: -168,-14 + 3301: -169,-14 + 3302: -169,-14 + 3356: -179,-10 + 3357: -179,-10 + 3358: -177,-9 + 3359: -177,-9 + 3360: -178,-4 + 3361: -178,-4 + 3362: -178,-5 + 3363: -179,-5 + 3370: -182,-3 + 3371: -182,-3 + 3372: -182,-3 + 3373: -182,-3 + 3411: -210,2 + 3412: -210,1 + 3413: -209,2 + 3414: -207,5 + 3415: -207,5 + 3416: -206,5 + 3417: -206,6 + 3418: -206,9 + 3420: -207,10 + 3461: -168,-6 + 3462: -168,-6 + 3463: -168,-6 + 3464: -168,-6 + 3465: -165,-4 + 3466: -166,-3 + 3523: -148,2 + 3524: -148,2 + 3525: -148,2 + 3526: -150,5 + 3527: -150,5 + 3528: -149,5 + 3529: -144,2 + 3530: -144,1 + 3531: -143,1 + 3532: -143,1 + 3533: -143,2 + 3534: -142,2 + 3591: -135,7 + 3592: -136,7 + 3593: -137,7 + 3594: -137,7 + 3595: -138,6 + 3596: -134,7 + 3597: -133,7 + 3637: -149,-3 + 3638: -149,-3 + 3639: -149,-3 + 3640: -144,-6 + 3641: -144,-6 + 3642: -143,-7 + 3643: -143,-7 + 3644: -134,-6 + 3645: -133,-7 + 3646: -131,-7 + 3647: -129,-6 + 3648: -129,-7 + 3649: -129,-7 + 3650: -128,-7 + 3651: -128,-7 + 3677: -123,-6 + 3678: -124,-6 + 3679: -125,-6 + 3680: -125,-6 + 3681: -125,-6 + 3682: -125,-6 + 3697: -128,-11 + 3698: -128,-11 + 3699: -128,-11 + 3700: -128,-10 + 3753: -106,-16 + 3754: -108,-17 + 3755: -109,-17 + 3756: -109,-17 + 3757: -108,-15 + 3758: -106,-13 + 3759: -107,-11 + 3760: -106,-10 + 3761: -105,-8 + 3762: -107,-8 + 3763: -108,-8 + 3764: -107,-7 + 3765: -107,-8 + 3766: -106,-9 + 3767: -106,-9 + 3841: -111,-8 + 3842: -111,-8 + 3843: -111,-8 + 3844: -111,-8 + 3845: -113,-8 + 3846: -115,-8 + 3847: -115,-9 + 3848: -116,-10 + 3849: -116,-10 + 3850: -115,-10 + 3851: -115,-10 + 3852: -113,-10 + 3853: -115,-13 + 3854: -117,-16 + 3855: -117,-16 + 3856: -116,-16 + 3857: -116,-17 + 3858: -116,-17 + 3859: -118,-17 + 3860: -118,-17 + 3861: -118,-16 + 3886: -113,-17 + 3887: -112,-16 + 3888: -112,-17 + 3889: -112,-17 + 3890: -112,-17 + 3891: -109,-17 + 3892: -108,-17 + 3893: -107,-14 + 3894: -107,-14 + 3895: -109,-5 + 3896: -109,-3 + 3897: -111,-4 + 3898: -111,-5 + 3899: -112,-5 + 3900: -111,-5 + 3901: -111,-4 + 3902: -108,-4 + 3903: -106,-3 + 3904: -105,-4 + 3933: -94,-4 + 3934: -95,-5 + 3935: -95,-4 + 3936: -94,-3 + 3937: -93,-4 + 3938: -93,-5 + 3973: -83,-14 + 3974: -83,-14 + 3975: -84,-14 + 3976: -83,-15 + 3977: -83,-15 + 3978: -84,-16 + 3979: -85,-16 + 3980: -84,-17 + 4119: -60,12 + 4120: -60,11 + 4121: -59,10 + 4122: -58,11 + 4123: -58,9 + 4124: -56,7 + 4172: -61,-1 + 4173: -62,0 + 4174: -62,-1 + 4175: -62,-2 + 4176: -60,-1 + 4184: -63,2 + 4185: -63,2 + 4186: -63,3 + 4187: -61,2 + 4188: -65,-1 + 4189: -65,-1 + 4244: -72,3 + 4245: -73,2 + 4246: -73,2 + 4247: -72,1 + 4248: -72,-2 + 4249: -72,-3 + 4250: -73,-5 + 4251: -73,-6 + 4252: -73,-6 + 4253: -72,-7 + 4254: -73,-8 + 4255: -73,-9 + 4256: -72,-9 + 4257: -78,-8 + 4258: -77,-8 + 4299: -66,0 + 4300: -65,-1 + 4301: -65,4 + 4302: -66,4 + 4303: -66,5 + 4304: -65,5 + 4305: -65,4 + 4306: -66,3 + 4307: -66,4 + 4308: -66,4 + 4315: -54,-6 + 4316: -54,-7 + 4317: -57,-11 + 4318: -57,-11 + 4319: -56,-11 + 4320: -56,-11 + 4321: -56,-12 + 4322: -56,-12 + 4323: -57,-13 + 4324: -55,-13 + 4325: -55,-13 + 4326: -54,-11 + 4375: -51,6 + 4376: -51,8 + 4377: -51,8 + 4378: -53,7 + 4379: -54,7 + 4380: -54,8 + 4381: -55,7 + 4382: -56,9 + 4383: -58,8 + 4471: -45,5 + 4472: -47,5 + 4488: -45,-8 + 4489: -47,-8 + 4490: -46,-6 + 4491: -47,-6 + 4492: -47,-5 + 4493: -49,-6 + 4494: -50,-5 + 4495: -51,-7 + 4496: -49,-8 + 4497: 0,-6 + 4498: -1,-7 + 4499: -2,-5 + 4528: -43,-8 + 4529: -43,-9 + 4530: -45,-10 + 4531: -44,-11 + 4532: -44,-11 + 4533: -44,-11 + 4534: -43,-11 + 4535: -42,-10 + 4536: -42,-10 + 4537: -42,-11 + 4538: -41,-11 + 4539: -40,-13 + 4540: -40,-11 + 4541: -40,-10 + 4542: -40,-12 + 4543: -40,-13 + 4544: -42,-12 + 4545: -43,-12 + 4557: 4,-6 + 4562: -1,-2 + 4587: -37,-11 + 4588: -37,-11 + 4589: -37,-11 + 4623: -5,-4 + 4641: -52,-11 + 4642: -52,-12 + 4643: -52,-13 + 4644: -50,-10 + 4645: -52,-10 + 4646: -52,-11 + 4647: -51,-12 + 4676: -15,-10 + 4692: -66,-16 + 4693: -69,-17 + 4694: -69,-15 + 4695: -69,-16 + 4696: -66,-15 + 4817: -57,-22 + 4818: -56,-22 + 4833: -47,9 + 4835: -47,9 + 4837: -47,9 + 4838: -47,9 + 4867: -67,-24 + 4904: -86,-30 + 4905: -87,-31 + 4906: -87,-32 + 4907: -84,-31 + 4908: -83,-31 + 4909: -83,-31 + 4910: -83,-33 + 4911: -83,-34 + 4912: -83,-35 + 4996: -23,-13 + 5032: -13,-10 + 5033: -14,-8 + 5034: -15,-7 + 5035: -14,-8 + 5036: -14,-6 + 5037: -14,-6 + 5099: -22,5 + 5100: -21,5 + 5101: -20,4 + 5102: -18,5 + 5103: -16,5 + 5159: -17,-5 + 5160: -17,-5 + 5161: -17,-5 + 5162: -18,-2 + 5201: -123,7 + 5202: -123,7 + 5205: -119,11 + 5206: -119,11 + 5223: -8,-3 + 5225: -10,-3 + 5227: -10,-2 + 5229: -11,0 + 5231: -9,0 + 5234: -8,0 + 5265: -119,14 + 5267: -117,13 + 5268: -114,16 + 5269: -117,16 + 5270: -111,16 + 5271: -112,17 + 5272: -109,16 + 5273: -111,16 + 5274: -112,16 + 5276: -111,15 + 5278: -114,15 + 5280: -116,14 + 5281: -119,14 + 5284: -121,16 + 5286: -121,15 + 5287: -119,14 + 5289: -117,15 + 5291: -114,15 + 5293: -112,14 + 5294: -111,15 + 5295: -113,15 + 5296: -115,13 + 5297: -117,15 + 5298: -120,16 + 5299: -120,14 + 5300: -121,13 + 5301: -7,-9 + 5302: -8,-9 + 5303: -7,-8 + 5304: -8,-6 + 5305: -7,-10 + 5306: -119,17 + 5307: -8,-10 + 5308: -117,17 + 5309: -8,-11 + 5310: -115,17 + 5311: -114,15 + 5312: -112,14 + 5379: -1,-1 + 5381: 0,-2 + 5383: 0,-2 + 5438: -10,-15 + 5439: -7,-15 + 5440: -7,-15 + 5441: -6,-17 + 5442: -15,-17 + 5443: -15,-16 + 5444: -16,-16 + 5445: -16,-17 + 5446: -16,-17 + 5648: -92,10 + 5649: -95,9 + 5650: -95,8 + 5651: -93,9 + 5652: -92,10 + 5653: -92,10 + 5654: -93,8 + 5655: -93,8 + 5656: -92,7 + 5657: -92,5 + 5658: -93,5 + 5659: -93,4 + 5660: -92,4 + 5677: -91,11 + 5679: -88,11 + 5681: -87,11 + 5720: -62,11 + 5722: -63,12 + 5724: -63,12 + 5726: -62,11 + 5728: -62,11 + 5730: -60,11 + 6395: -20,-16 + 6396: -22,-16 + 6397: -22,-17 + 6398: -22,-17 + 6399: -21,-17 + 6400: -21,-16 + 6401: -20,-17 + 6402: -20,-15 + 6403: -20,-14 + 6404: -20,-14 + 6405: -19,-15 + 6406: -19,-15 + 6407: -20,-19 + 6408: -20,-19 + 6409: -21,-20 + 6410: -23,-20 + 6411: -24,-20 + 6412: -24,-20 + 6432: -23,-21 + 6433: -23,-20 + 6434: -22,-20 + 6435: -22,-19 + 6436: -22,-19 + 6437: -23,-19 + 6438: -21,-19 + 6439: -21,-19 + 6440: -21,-20 + 6441: -20,-20 + 6442: -22,-18 + 6443: -20,-20 + 6444: -20,-21 + 6445: -21,-21 + 6446: -21,-21 + 6500: -35,-15 + 6501: -36,-15 + 6502: -36,-15 + 6503: -36,-14 + 6504: -34,-14 + 6505: -33,-13 + 6506: -32,-13 + 6507: -32,-13 + 6508: -30,-13 + 6509: -30,-11 + 6510: -30,-11 + 6511: -21,-8 - node: - cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 2031: -155,-21 - 2032: -154,-20 - 2033: -154,-21 - 2034: -156,-21 - 3256: -204,-3 - 3257: -203,-4 - 3979: -138,4 - 3980: -138,4 - 3981: -137,5 - 3982: -137,5 - 3983: -137,5 - 3984: -133,5 - 3985: -133,5 - 3986: -133,6 - 3987: -133,6 - 3988: -133,6 - 3989: -133,6 - 3990: -133,6 - 3991: -136,6 - 3992: -137,6 - 3993: -137,6 - 3994: -136,6 - 3995: -135,6 - 4105: -121,-11 - 4106: -122,-11 - 4107: -128,-11 - 4108: -128,-11 - 4180: -106,-10 - 4181: -109,-9 - 4182: -109,-10 - 4183: -108,-11 - 4184: -107,-13 - 4185: -100,-16 - 4186: -101,-16 - 4187: -101,-17 - 4188: -101,-17 - 4189: -102,-18 - 4976: -51,-12 - 4977: -51,-11 - 4978: -51,-12 - 4979: -51,-13 - 4980: -50,-13 - 4981: -53,-10 - 4982: -48,-10 - 4983: -47,-10 - 4984: -46,-12 - 4985: -48,-8 - 4986: -48,-7 - 4987: -46,-7 - 4988: -46,-6 - 4989: -43,-6 - 4990: -44,-7 - 4991: -44,-11 - 4992: -43,-9 - 4993: -44,-12 - 4994: -44,-13 - 4995: -41,-13 - 4996: -37,-9 - 4997: -38,-11 - 4998: -38,-12 - 4999: -37,-13 - 5009: -37,-11 - 5010: -37,-11 - 5011: -36,-10 - 5012: -38,-9 - 5013: -36,-10 - 5014: -36,-11 - 5015: -37,-13 - 5016: -38,-13 - 5017: -36,-13 - 5018: -36,-13 - 5019: -37,-10 - 5061: -11,-4 - 5062: -54,-12 - 5063: -52,-13 - 5064: -52,-13 - 5065: -52,-11 - 5066: -52,-11 - 5067: -50,-13 - 5068: -51,-16 - 5069: -51,-16 - 5070: -53,-15 - 5071: -16,-13 - 5072: -52,-16 - 5073: -50,-17 - 5074: -51,-15 - 5075: -52,-16 - 5076: -56,-17 - 5078: -58,-16 - 5079: -58,-16 - 5080: -59,-17 - 5081: -60,-16 - 5082: -61,-16 - 5083: -61,-16 - 5084: -62,-15 - 5086: -60,-17 - 5087: -60,-15 - 5088: -59,-15 - 5093: -29,-15 - 5094: -27,-17 - 5110: -27,-8 - 5111: -67,-15 - 5112: -28,-10 - 5113: -69,-15 - 5114: -69,-16 - 5115: -66,-16 - 5116: -68,-15 - 5117: -71,-17 - 5118: -69,-16 - 5119: -72,-16 - 5120: -72,-15 - 5121: -73,-15 - 5195: -37,12 - 5196: -67,-21 - 5197: -35,11 - 5198: -67,-20 - 5199: -68,-19 - 5200: -69,-20 - 5201: -36,14 - 5202: -69,-21 - 5203: -37,13 - 5204: -37,12 - 5205: -69,-25 - 5206: -37,12 - 5207: -69,-24 - 5208: -68,-23 - 5209: -67,-25 - 5210: -68,-26 - 5211: -67,-26 - 5212: -66,-26 - 5213: -67,-24 - 5214: -68,-24 - 5215: -25,9 - 5216: -25,9 - 5217: -25,9 - 5218: -66,-23 - 5219: -25,8 - 5220: -25,7 - 5225: -39,14 - 5226: -39,14 - 5227: -39,14 - 5229: -36,16 - 5230: -36,16 - 5231: -36,16 - 5235: -40,16 - 5237: -40,16 - 5252: -43,11 - 5253: -43,11 - 5254: -43,11 - 5255: -57,-22 - 5256: -57,-22 - 5257: -49,12 - 5258: -58,-23 - 5259: -49,12 - 5260: -58,-25 - 5261: -49,12 - 5262: -56,-24 - 5263: -53,-22 - 5264: -53,-24 - 5265: -54,-25 - 5266: -54,-24 - 5267: -53,-25 - 5269: -53,-25 - 5271: -53,-26 - 5274: -54,-25 - 5275: -54,-24 - 5276: -54,-23 - 5277: -53,-22 - 5278: -53,-23 - 5279: -58,-27 - 5280: -58,-26 - 5281: -58,-26 - 5283: -60,-27 - 5286: -60,-27 - 5287: -60,-28 - 5288: -60,-26 - 5289: -57,-26 - 5290: -57,-27 - 5291: -58,-27 - 5295: -60,-27 - 5296: -61,-26 - 5297: -61,-26 - 5298: -64,-26 - 5299: -65,-26 - 5351: -82,-34 - 5352: -83,-35 - 5353: -84,-36 - 5354: -82,-36 - 5355: -85,-35 - 5356: -86,-35 - 5357: -86,-34 - 5358: -84,-34 - 5359: -83,-36 - 5360: -82,-35 - 5361: -82,-34 - 5362: -82,-32 - 5363: -82,-32 - 5364: -83,-31 - 5365: -82,-31 - 5366: -85,-28 - 5367: -86,-29 - 5368: -87,-28 - 5369: -86,-28 - 5370: -85,-28 - 5371: -84,-28 - 5372: -48,-15 - 5373: -48,-17 - 5374: -47,-18 - 5375: -45,-17 - 5376: -45,-16 - 5377: -46,-15 - 5378: -46,-15 - 5379: -44,-15 - 5380: -43,-16 - 5381: -43,-16 - 5382: -42,-17 - 5383: -42,-17 - 5384: -42,-18 - 5385: -42,-19 - 5450: -23,-9 - 5451: -23,-9 - 5452: -25,-9 - 5453: -24,-10 - 5454: -17,-9 - 5455: -17,-9 - 5456: -18,-8 - 5476: -14,1 - 5477: -14,1 - 5478: -18,4 - 5479: -18,4 - 5480: -26,4 - 5481: -26,5 - 5482: -26,5 - 5483: -26,4 - 5484: -25,5 - 5485: -24,3 - 5486: -24,3 - 5487: -22,3 - 5488: -22,4 - 5489: -24,5 - 5490: -23,5 - 5491: -22,3 - 5492: -22,2 - 5546: -15,4 - 5547: -15,5 - 5548: -14,5 - 5549: -15,8 - 5550: -15,7 - 5551: -15,8 - 5552: -15,9 - 5553: -15,9 - 5554: -13,8 - 5555: -13,7 - 5556: -13,7 - 5557: -14,8 - 5558: -14,9 - 5559: -13,10 - 5560: -14,11 - 5561: -17,7 - 5562: -17,7 - 5563: -17,8 - 5564: -18,7 - 5565: -18,8 - 5566: -18,9 - 5567: -18,9 - 5568: -20,10 - 5569: -20,9 - 5570: -20,8 - 5571: -20,8 - 5572: -21,8 - 5573: -21,9 - 5574: -22,9 - 5575: -22,10 - 5576: -23,10 - 5577: -23,10 - 5607: -19,-2 - 5608: -19,-2 - 5609: -18,-2 - 5610: -18,-1 - 5611: -19,-1 - 5612: -21,-1 - 5613: -22,-1 - 5614: -22,-2 - 5615: -21,-5 - 5616: -21,-5 - 5617: -22,-6 - 5618: -21,-3 - 5619: -9,-2 - 5620: -9,0 - 5621: -10,-2 - 5622: -10,-3 - 5623: -7,3 - 5624: -9,2 - 5625: -9,2 - 5626: -11,3 - 5627: -10,3 - 5628: -8,3 - 5630: -130,3 - 5631: -130,3 - 5686: -7,0 - 5688: -7,-1 - 5690: -6,-1 - 5692: -6,0 - 5694: -7,-2 - 5696: -7,-3 - 5698: -7,-4 - 5701: -10,-5 - 5702: -11,-2 - 5703: -9,-3 - 5704: -6,-2 - 5705: -8,-1 - 5706: -8,-3 - 5707: -7,-8 - 5708: -7,-9 - 5710: -8,-7 - 5828: 4,-2 - 5829: 3,-3 - 5830: 3,-4 - 5831: 3,-5 - 5832: 3,-6 - 5891: -17,-16 - 5892: -15,-18 - 5893: -15,-18 - 5894: -14,-17 - 5895: -13,-16 - 5896: -23,-15 - 5897: -31,-12 - 5898: -32,-11 - 5899: -43,15 - 5900: -43,15 - 5901: -45,15 - 5902: -45,16 - 5903: -44,16 - 5904: -45,15 - 5905: -45,16 - 5906: -45,16 + 6874: -225,-18 + 6875: -227,-17 + 6876: -228,-18 + 6877: -228,-18 + 6878: -224,-18 + 6879: -226,-20 + 6880: -225,-21 + 6881: -223,-20 + 6882: -223,-20 + 6883: -220,-20 + 6884: -221,-18 + 6885: -220,-16 + 6886: -221,-16 + 6887: -221,-17 + 6888: -221,-18 + 6889: -221,-17 + 6890: -221,-16 + 6891: -219,-17 + 6892: -218,-17 + 6893: -220,-18 + 6894: -224,-21 + 6895: -226,-21 + 6896: -222,-20 + 6897: -221,-21 + 6898: -220,-23 + 6899: -219,-24 + 6900: -221,-24 + 6901: -220,-25 + 6902: -222,-26 + 6903: -223,-26 + 6904: -219,-26 + 6905: -220,-24 + 6906: -223,-24 + 6907: -223,-25 + 6908: -224,-26 + 6909: -219,-29 + 6910: -219,-30 + 6911: -219,-32 + 6912: -218,-33 + 6913: -219,-34 + 6914: -221,-35 + 6915: -221,-35 + 6916: -224,-35 + 6917: -225,-35 - node: + cleanable: True color: '#FFFFFFFF' - id: FlowersBRTwo + id: DirtMedium decals: - 2945: -141,-5 - - node: - color: '#FFFFFFFF' + 1797: -155,-21 + 1798: -154,-20 + 1799: -154,-21 + 1800: -156,-21 + 2996: -204,-3 + 2997: -203,-4 + 3567: -138,4 + 3568: -138,4 + 3569: -137,5 + 3570: -137,5 + 3571: -137,5 + 3572: -133,5 + 3573: -133,5 + 3574: -133,6 + 3575: -133,6 + 3576: -133,6 + 3577: -133,6 + 3578: -133,6 + 3579: -136,6 + 3580: -137,6 + 3581: -137,6 + 3582: -136,6 + 3583: -135,6 + 3693: -121,-11 + 3694: -122,-11 + 3695: -128,-11 + 3696: -128,-11 + 3768: -106,-10 + 3769: -109,-9 + 3770: -109,-10 + 3771: -108,-11 + 3772: -107,-13 + 3773: -100,-16 + 3774: -101,-16 + 3775: -101,-17 + 3776: -101,-17 + 3777: -102,-18 + 4563: -51,-12 + 4564: -51,-11 + 4565: -51,-12 + 4566: -51,-13 + 4567: -50,-13 + 4568: -53,-10 + 4569: -48,-10 + 4570: -47,-10 + 4571: -46,-12 + 4572: -48,-8 + 4573: -48,-7 + 4574: -46,-7 + 4575: -46,-6 + 4576: -43,-6 + 4577: -44,-7 + 4578: -44,-11 + 4579: -43,-9 + 4580: -44,-12 + 4581: -44,-13 + 4582: -41,-13 + 4583: -37,-9 + 4584: -38,-11 + 4585: -38,-12 + 4586: -37,-13 + 4596: -37,-11 + 4597: -37,-11 + 4598: -36,-10 + 4599: -38,-9 + 4600: -36,-10 + 4601: -36,-11 + 4602: -37,-13 + 4603: -38,-13 + 4604: -36,-13 + 4605: -36,-13 + 4606: -37,-10 + 4648: -11,-4 + 4649: -54,-12 + 4650: -52,-13 + 4651: -52,-13 + 4652: -52,-11 + 4653: -52,-11 + 4654: -50,-13 + 4655: -51,-16 + 4656: -51,-16 + 4657: -53,-15 + 4658: -16,-13 + 4659: -52,-16 + 4660: -50,-17 + 4661: -51,-15 + 4662: -52,-16 + 4663: -56,-17 + 4665: -58,-16 + 4666: -58,-16 + 4667: -59,-17 + 4668: -60,-16 + 4669: -61,-16 + 4670: -61,-16 + 4671: -62,-15 + 4673: -60,-17 + 4674: -60,-15 + 4675: -59,-15 + 4680: -29,-15 + 4681: -27,-17 + 4697: -27,-8 + 4698: -67,-15 + 4699: -28,-10 + 4700: -69,-15 + 4701: -69,-16 + 4702: -66,-16 + 4703: -68,-15 + 4704: -71,-17 + 4705: -69,-16 + 4706: -72,-16 + 4707: -72,-15 + 4708: -73,-15 + 4771: -37,12 + 4772: -67,-21 + 4773: -35,11 + 4774: -67,-20 + 4775: -68,-19 + 4776: -69,-20 + 4777: -36,14 + 4778: -69,-21 + 4779: -37,13 + 4780: -37,12 + 4781: -69,-25 + 4782: -37,12 + 4783: -69,-24 + 4784: -68,-23 + 4785: -68,-26 + 4786: -67,-24 + 4787: -68,-24 + 4788: -25,9 + 4789: -25,9 + 4790: -25,9 + 4791: -66,-23 + 4792: -25,8 + 4793: -25,7 + 4798: -39,14 + 4799: -39,14 + 4800: -39,14 + 4802: -36,16 + 4803: -36,16 + 4804: -36,16 + 4808: -40,16 + 4809: -40,16 + 4819: -43,11 + 4820: -43,11 + 4821: -43,11 + 4822: -57,-22 + 4823: -57,-22 + 4824: -49,12 + 4825: -49,12 + 4826: -49,12 + 4827: -56,-24 + 4828: -53,-22 + 4829: -53,-24 + 4830: -54,-25 + 4831: -54,-24 + 4832: -53,-25 + 4834: -53,-25 + 4836: -53,-26 + 4839: -54,-25 + 4840: -54,-24 + 4841: -54,-23 + 4842: -53,-22 + 4843: -53,-23 + 4844: -58,-27 + 4845: -58,-26 + 4846: -58,-26 + 4848: -60,-27 + 4851: -60,-27 + 4852: -60,-28 + 4853: -60,-26 + 4854: -57,-26 + 4855: -57,-27 + 4856: -58,-27 + 4860: -60,-27 + 4861: -61,-26 + 4862: -61,-26 + 4913: -82,-34 + 4914: -83,-35 + 4915: -84,-36 + 4916: -82,-36 + 4917: -85,-35 + 4918: -86,-35 + 4919: -86,-34 + 4920: -84,-34 + 4921: -83,-36 + 4922: -82,-35 + 4923: -82,-34 + 4924: -82,-32 + 4925: -82,-32 + 4926: -83,-31 + 4927: -82,-31 + 4928: -85,-28 + 4929: -86,-29 + 4930: -87,-28 + 4931: -86,-28 + 4932: -85,-28 + 4933: -84,-28 + 4934: -48,-15 + 4935: -48,-17 + 4936: -47,-18 + 4937: -45,-17 + 4938: -45,-16 + 4939: -46,-15 + 4940: -46,-15 + 4941: -44,-15 + 4942: -43,-16 + 4943: -43,-16 + 4944: -42,-17 + 4945: -42,-17 + 4946: -42,-18 + 4947: -42,-19 + 5012: -23,-9 + 5013: -23,-9 + 5014: -25,-9 + 5015: -24,-10 + 5016: -17,-9 + 5017: -17,-9 + 5018: -18,-8 + 5038: -14,1 + 5039: -14,1 + 5040: -18,4 + 5041: -18,4 + 5042: -26,4 + 5043: -26,5 + 5044: -26,5 + 5045: -26,4 + 5046: -25,5 + 5047: -24,3 + 5048: -24,3 + 5049: -22,4 + 5050: -24,5 + 5051: -23,5 + 5052: -22,2 + 5104: -15,4 + 5105: -15,5 + 5106: -14,5 + 5107: -15,8 + 5108: -15,7 + 5109: -15,8 + 5110: -15,9 + 5111: -15,9 + 5112: -13,8 + 5113: -13,7 + 5114: -13,7 + 5115: -14,8 + 5116: -14,9 + 5117: -13,10 + 5118: -14,11 + 5119: -17,7 + 5120: -17,7 + 5121: -17,8 + 5122: -18,7 + 5123: -18,8 + 5124: -18,9 + 5125: -18,9 + 5126: -20,10 + 5127: -20,9 + 5128: -20,8 + 5129: -20,8 + 5130: -21,8 + 5131: -21,9 + 5132: -22,9 + 5133: -22,10 + 5134: -23,10 + 5135: -23,10 + 5163: -19,-2 + 5164: -19,-2 + 5165: -18,-2 + 5166: -18,-1 + 5167: -19,-1 + 5168: -21,-1 + 5169: -22,-1 + 5170: -22,-2 + 5171: -21,-5 + 5172: -21,-5 + 5173: -22,-6 + 5174: -21,-3 + 5175: -9,-2 + 5176: -9,0 + 5177: -10,-2 + 5178: -10,-3 + 5179: -7,3 + 5180: -9,2 + 5181: -9,2 + 5182: -11,3 + 5183: -10,3 + 5184: -8,3 + 5186: -130,3 + 5187: -130,3 + 5242: -7,0 + 5244: -7,-1 + 5246: -6,-1 + 5248: -6,0 + 5250: -7,-2 + 5252: -7,-3 + 5254: -7,-4 + 5257: -10,-5 + 5258: -11,-2 + 5259: -9,-3 + 5260: -6,-2 + 5261: -8,-1 + 5262: -8,-3 + 5263: -7,-8 + 5264: -7,-9 + 5266: -8,-7 + 5384: 4,-2 + 5385: 3,-3 + 5386: 3,-4 + 5387: 3,-5 + 5388: 3,-6 + 5447: -17,-16 + 5448: -15,-18 + 5449: -15,-18 + 5450: -14,-17 + 5451: -13,-16 + 5452: -23,-15 + 5453: -31,-12 + 5454: -32,-11 + 5455: -43,15 + 5456: -43,15 + 5457: -45,15 + 5458: -45,15 + - node: + color: '#FF8253FF' + id: Flowersbr2 + decals: + 7106: -208.1465,3.8550873 + 7107: -207.99796,6.2583275 + 7110: -207.88991,11.691294 + 7155: -219.14511,-5.124075 + 7156: -216.98433,-7.932356 + 7163: -141.69017,-4.9668565 + 7180: -19.294016,2.8353868 + 7238: -40.25325,-4.1341295 + 7239: -31.786367,-1.8524013 + 7240: -29.885326,-0.6971707 + - node: + color: '#FF8253FF' id: Flowerspv1 decals: - 44: -32,-2 - 45: -31,4 - 2946: -140,-4 + 7105: -207.78188,2.7884798 - node: - color: '#FFFFFFFF' + color: '#FF8253FF' id: Flowerspv2 decals: - 3229: -208,8 - 3230: -208,6 - - node: - color: '#FFFFFFFF' + 7127: -224.05153,-9.642104 + 7128: -227.40388,-6.913481 + 7153: -218.0107,-9.106974 + 7154: -221.73804,-6.420205 + 7162: -140.9204,-4.1702766 + 7179: -20.482439,2.9298964 + 7232: -31.106653,2.0758202 + 7233: -24.597326,-0.9889865 + 7234: -31.235865,-4.3231483 + - node: + color: '#FF8253FF' id: Flowerspv3 decals: - 3231: -208,11 - 6570: -128.85333,-4.770086 + 7092: -198.01334,10.981602 - node: - color: '#FFFFFFFF' + color: '#FF8253FF' + id: Flowersy2 + decals: + 7131: -228.18597,-8.944298 + 7161: -140.46123,-4.764336 + - node: + color: '#FF8253FF' id: Flowersy3 decals: - 42: -34,-1 - 43: -31,-7 - 3225: -208,7 + 7108: -207.8629,7.4869504 + 7109: -207.8629,10.754276 + 7122: -224.83241,-14.685792 + 7235: -33.302105,-7.0099173 + 7236: -38.52463,-1.1638324 + 7237: -39.65904,-6.24034 - node: - color: '#FFFFFFFF' + color: '#FF8253FF' id: Flowersy4 decals: - 2947: -142,-5 - 2948: -141,-5 - 2949: -140,-4 - 6569: -130.0877,-4.160711 + 7160: -141.73068,-4.386298 - node: color: '#FFFFFFFF' - id: Grassa1 + id: Flowersy4 decals: - 3234: -208,10 + 6634: -220.08444,-12.985517 - node: - color: '#FFFFFFFF' + color: '#FF8253FF' + id: Grassa2 + decals: + 7098: -207.95743,6.3523636 + 7150: -218.96954,-8.364399 + 7228: -31.054434,-0.7057662 + - node: + color: '#FF8253FF' + id: Grassa3 + decals: + 7129: -228.88823,-9.646368 + - node: + color: '#FF8253FF' + id: Grassa4 + decals: + 7227: -34.464466,-6.1468105 + - node: + color: '#FF8253FF' id: Grassa5 decals: - 3221: -208,3 + 7101: -207.95743,10.189556 - node: - color: '#FFFFFFFF' + color: '#FF8253FF' + id: Grassb1 + decals: + 7123: -221.91777,-9.939134 + 7165: -140.24515,-4.1972795 + 7178: -18.294659,2.9839017 + 7226: -39.744854,-5.755271 + - node: + color: '#FF8253FF' + id: Grassb2 + decals: + 7099: -207.8629,2.2828126 + - node: + color: '#FF8253FF' + id: Grassb3 + decals: + 7229: -33.687874,-1.5158477 + - node: + color: '#FF8253FF' id: Grassb4 decals: - 3219: -208,7 - 3220: -208,4 - 3235: -208,12 + 7166: -141.73068,-4.791339 + 7225: -38.55643,-1.1648123 + 7231: -31.059402,4.897602 - node: - color: '#FFFFFFFF' - id: Grassc1 + color: '#FF8253FF' + id: Grassb5 decals: - 62: -39,-5 - 82: -20.898268,3.0295155 - 3233: -208,10 + 7100: -207.94392,3.8624706 + 7126: -224.63223,-9.169558 + 7148: -221.73804,-5.461609 + 7230: -24.597445,-0.1924065 - node: - color: '#FFFFFFFF' - id: Grassc3 + color: '#FF8253FF' + id: Grassc1 decals: - 3224: -208,2 + 7140: -223.48463,-1.9428675 + 7222: -28.473785,0.7523792 + 7223: -33.443558,-5.2017164 + 7224: -39.78537,-4.8641825 - node: - color: '#FFFFFFFF' - id: Grassc4 + color: '#FF8253FF' + id: Grassc2 decals: - 3236: -208,12 + 7102: -208.02496,11.02664 + 7103: -207.8764,7.880825 + 7167: -140.12361,-4.872347 + 7221: -32.606262,-1.3808341 - node: - color: '#FFFFFFFF' - id: Grassd1 + color: '#FF8253FF' + id: Grassc4 decals: - 52: -24,-1 - 53: -35,-7 - 54: -33,-4 - 55: -31,-5 - 3222: -208,3 - 3223: -208,2 - 3226: -208,7 - 3227: -208,6 - 3232: -208,11 + 7104: -208.06548,3.1395154 + 7124: -221.41809,-11.113751 + 7149: -220.7927,-6.082671 + 7183: -21.103662,2.9704003 - node: cleanable: True color: '#FFFFFFFF' id: Grassd1 decals: - 1975: -163,-24 - 1976: -167,-23 + 1741: -163,-24 + 1742: -167,-23 - node: - color: '#FFFFFFFF' + color: '#FF8253FF' id: Grassd2 decals: - 58: -38,-1 + 7219: -31.339874,4.0548778 - node: - color: '#FFFFFFFF' + color: '#FF8253FF' id: Grassd3 decals: - 50: -30,-1 - 51: -25,-1 - 56: -40,-4 + 7151: -216.97083,-7.4868116 + 7213: -38.677658,-5.0422063 - node: - color: '#FFFFFFFF' + color: '#FF8253FF' id: Grasse1 decals: - 46: -40,-7 - 47: -39,-7 - 57: -40,-1 - 3228: -208,8 + 7096: -207.97093,11.766405 + 7097: -207.90341,7.3109593 + 7130: -228.99626,-8.282732 + 7137: -225.29428,-5.462448 + 7139: -220.94572,-1.9428675 + 7164: -141.14998,-4.7778378 + 7181: -20.212343,2.943398 + 7182: -18.49723,2.943398 + 7212: -39.77155,-1.167319 + 7218: -30.549028,0.4528432 + 7220: -24.275723,-0.7597722 - node: - color: '#FFFFFFFF' + color: '#FF8253FF' + id: Grasse2 + decals: + 7215: -32.66801,-4.2591286 + - node: + color: '#FF8253FF' id: Grasse3 decals: - 48: -34,-7 - 49: -31,-1 + 7152: -217.1734,-9.647028 + 7211: -39.58248,-6.662369 + 7214: -34.086018,-6.8108835 + 7217: -34.397903,-1.4508474 - node: color: '#FFFFFFFF' id: GrayConcreteTrimBox decals: - 3132: -25,-4 + 2875: -25,-4 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerNe decals: - 13: -28,1 - 35: -31,-4 - 3122: -24,-3 + 11: -28,1 + 2865: -24,-3 + 6548: -224,-9 + 6556: -222,-9 + 6557: -221,-10 + 6558: -220,-9 + 6614: -219,-12 + 6615: -219,-10 + 7207: -31,-4 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerNw decals: - 5: -33,-4 - 6: -35,-6 - 7: -34,-5 - 15: -25,0 + 4: -35,-6 + 5: -34,-5 + 13: -25,0 + 6573: -222,-3 + 6575: -222,-5 + 6576: -221,-4 + 6582: -221,-7 + 6584: -219,-6 + 6585: -217,-7 + 6597: -228,-11 + 6610: -221,-14 + 7125: -225,-9 + 7144: -220,-8 + 7206: -33,-4 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerSe decals: - 11: -31,-2 - 12: -28,-1 - 39: -38,-6 - 3123: -24,-5 - 3124: -30,-7 + 9: -31,-2 + 10: -28,-1 + 37: -38,-6 + 2866: -24,-5 + 2867: -30,-7 + 6546: -227,-8 + 6549: -224,-10 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimCornerSw + decals: + 6562: -224,-5 + 6563: -225,-3 + 6564: -224,-2 + 6569: -222,-7 + 6572: -223,-3 + 6598: -228,-12 - node: color: '#FFFFFFFF' id: GrayConcreteTrimEndE decals: - 3131: -24,-4 + 2874: -24,-4 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimEndN + decals: + 7204: -24,1 - node: color: '#FFFFFFFF' id: GrayConcreteTrimEndS decals: - 63: -35,-3 + 7201: -35,-3 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerNe decals: - 18: -31,1 + 16: -31,1 + 6559: -222,-10 + 6609: -227,-15 + 6616: -220,-10 + 6618: -219,-11 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerNw decals: - 8: -33,-5 - 9: -34,-6 - 17: -24,0 + 7: -34,-6 + 6577: -221,-5 + 6578: -223,-8 + 6591: -220,-7 + 6596: -218,-6 + 6606: -227,-11 + 7145: -217,-8 + 7205: -24,0 + 7208: -33,-5 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerSe decals: - 28: -31,-1 - 40: -39,-6 - 41: -35,-2 - 3120: -26,-1 - 3129: -26,-5 - 6549: -30,-6 + 39: -35,-2 + 2863: -26,-1 + 2872: -26,-5 + 6065: -30,-6 + 6594: -217,-5 + 6603: -227,-13 + 7202: -31,-1 + 7210: -39,-6 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerSw decals: - 3125: -28,-6 + 2868: -28,-6 + 6565: -224,-3 + 6566: -225,-2 + 6568: -223,-5 + 6595: -216,-5 + 7146: -223,-2 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineE decals: - 10: -38,-5 - 21: -31,2 - 22: -31,3 - 23: -31,4 - 24: -31,5 - 25: -28,0 - 31: -38,-2 - 36: -31,-5 - 37: -31,-7 - 38: -39,-7 - 61: -38,-1 - 3119: -26,-2 - 3127: -26,-7 - 3128: -26,-6 - 6547: -38,-4 + 8: -38,-5 + 29: -38,-2 + 2862: -26,-2 + 2870: -26,-7 + 2871: -26,-6 + 6063: -38,-4 + 6553: -223,-11 + 6554: -223,-10 + 6555: -223,-9 + 6593: -217,-6 + 6602: -227,-14 + 6613: -219,-13 + 7115: -228,-15 + 7116: -228,-14 + 7117: -228,-13 + 7187: -31,-7 + 7188: -31,-5 + 7189: -39,-7 + 7190: -38,-1 + 7192: -28,0 + 7193: -31,2 + 7194: -31,3 + 7195: -31,4 + 7196: -31,5 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineN decals: - 19: -30,1 - 20: -29,1 - 34: -32,-4 - 3121: -25,-3 + 17: -30,1 + 18: -29,1 + 32: -32,-4 + 2864: -25,-3 + 6551: -224,-12 + 6552: -223,-12 + 6574: -221,-3 + 6579: -224,-8 + 6580: -225,-8 + 6581: -226,-8 + 6607: -226,-15 + 6611: -220,-14 + 6612: -219,-14 + 6617: -218,-11 + 7142: -218,-8 + 7143: -219,-8 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineS decals: - 26: -30,-1 - 27: -29,-1 - 32: -32,-2 - 33: -33,-2 - 60: -34,-2 - 3130: -25,-5 - 6548: -29,-6 + 2873: -25,-5 + 6064: -29,-6 + 6589: -220,-6 + 7197: -29,-1 + 7198: -30,-1 + 7199: -32,-2 + 7200: -33,-2 + 7216: -34,-2 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineW decals: - 14: -25,-1 - 16: -24,1 - 29: -35,-2 - 30: -35,-1 - 81: -35,-7 - 3126: -28,-7 + 27: -35,-2 + 28: -35,-1 + 2869: -28,-7 + 6550: -224,-11 + 6561: -223,-6 + 6567: -224,-4 + 6592: -218,-5 + 6604: -227,-9 + 6605: -227,-10 + 6608: -225,-15 + 7039: -223,-7 + 7147: -222,-6 + 7203: -25,-1 + 7209: -35,-7 - node: color: '#DE3A3A9C' id: MiniTileWhiteCornerNw decals: - 6630: -176,12 - 6631: -175,14 + 6145: -176,12 + 6146: -175,14 - node: color: '#DE3A3A9C' id: MiniTileWhiteCornerSw decals: - 6626: -175,9 - 6628: -174,8 - 6629: -176,11 + 6141: -175,9 + 6143: -174,8 + 6144: -176,11 - node: color: '#DE3A3A9C' id: MiniTileWhiteInnerNe decals: - 6621: -169,10 + 6136: -169,10 - node: color: '#DE3A3A9C' id: MiniTileWhiteInnerSe decals: - 6619: -171,9 - 6620: -169,10 + 6134: -171,9 + 6135: -169,10 - node: color: '#DE3A3A9C' id: MiniTileWhiteInnerSw decals: - 6617: -172,8 - 6627: -174,9 + 6132: -172,8 + 6142: -174,9 - node: color: '#DE3A3A9C' id: MiniTileWhiteLineE decals: - 6618: -171,8 - 6622: -169,11 - 6623: -169,12 - 6624: -169,13 + 6133: -171,8 + 6137: -169,11 + 6138: -169,12 + 6139: -169,13 - node: color: '#DE3A3A9C' id: MiniTileWhiteLineN decals: - 6632: -174,14 - 6634: -171,14 + 6147: -174,14 + 6149: -171,14 - node: color: '#DE3A3A9C' id: MiniTileWhiteLineS decals: - 6616: -173,8 + 6131: -173,8 - node: color: '#DE3A3A9C' id: MiniTileWhiteLineW decals: - 6625: -175,10 - 6633: -175,13 + 6140: -175,10 + 6148: -175,13 - node: cleanable: True color: '#FFFFFFFF' id: Rock01 decals: - 1973: -167,-26 - - node: - color: '#FFFFFFFF' - id: Rock04 - decals: - 2950: -142,-4 - - node: - color: '#FFFFFFFF' - id: Rock06 - decals: - 3239: -207.94896,10.984286 - - node: - color: '#FFFFFFFF' - id: Rock07 - decals: - 3237: -207.95937,7.1163616 - 3238: -207.94896,3.2621949 + 1739: -167,-26 - node: cleanable: True color: '#FFFFFFFF' id: Rock07 decals: - 1974: -165,-23 + 1740: -165,-23 - node: cleanable: True color: '#FFFFFF1A' id: Rust decals: - 1965: -164,-22 - 1966: -165,-20 - 1967: -164,-19 - 1968: -161,-21 - 1969: -160,-21 - 1970: -160,-21 - 1971: -159,-21 - 1972: -157,-21 + 1731: -164,-22 + 1732: -165,-20 + 1733: -164,-19 + 1734: -161,-21 + 1735: -160,-21 + 1736: -160,-21 + 1737: -159,-21 + 1738: -157,-21 - node: cleanable: True color: '#FFFFFF56' id: Rust decals: - 1961: -162,-25 - 1962: -164,-23 - 1963: -165,-22 - 1964: -166,-23 + 1727: -162,-25 + 1728: -164,-23 + 1729: -165,-22 + 1730: -166,-23 - node: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 5907: -144,-6 + 5459: -144,-6 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 5908: -143,-6 + 5460: -143,-6 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 5909: -142,-6 + 5461: -142,-6 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 5910: -141,-6 + 5462: -141,-6 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 5911: -140,-6 + 5463: -140,-6 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 5912: -139,-6 + 5464: -139,-6 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 5913: -138,-6 + 5465: -138,-6 + - node: + color: '#FF98219E' + id: TrimWarnGreyscaleEndE + decals: + 6656: -78,-1 + 6657: -78,-7 + - node: + color: '#FF98219E' + id: TrimWarnGreyscaleEndN + decals: + 6664: -82,-3 + - node: + color: '#FF98219E' + id: TrimWarnGreyscaleEndS + decals: + 6663: -82,-5 + - node: + color: '#FF98219E' + id: TrimWarnGreyscaleEndW + decals: + 6653: -80,-1 + 6658: -80,-7 + - node: + color: '#FF98219E' + id: TrimWarnGreyscaleLineS + decals: + 6654: -79,-1 + 6661: -79,-7 + - node: + color: '#FF98219E' + id: TrimWarnLineW + decals: + 6655: -79,-1 + 6659: -79,-7 + 6660: -79,-7 + 6662: -79,-7 - node: color: '#FFFFFFFF' id: WarnBox decals: - 6815: -22,-20 + 6330: -22,-20 - node: color: '#9C2020FF' id: WarnBoxGreyscale decals: - 1906: -150,12 - 1907: -148,14 - 1908: -146,16 + 1672: -150,12 + 1673: -148,14 + 1674: -146,16 - node: color: '#DE3A3AD8' id: WarnBoxGreyscale decals: - 6615: -172,11 + 6130: -172,11 - node: color: '#198896FF' id: WarnCornerGreyscaleNE decals: - 6785: -17,-18 - 6793: -12,-18 + 6300: -17,-18 + 6308: -12,-18 - node: color: '#198896FF' id: WarnCornerGreyscaleNW decals: - 6804: -5,-18 - 6805: -10,-18 + 6319: -5,-18 + 6320: -10,-18 - node: color: '#198896FF' id: WarnCornerGreyscaleSE decals: - 6784: -16,-15 - 6794: -12,-15 + 6299: -16,-15 + 6309: -12,-15 - node: color: '#198896FF' id: WarnCornerGreyscaleSW decals: - 6783: -14,-15 - 6806: -10,-15 - 6807: -5,-15 + 6298: -14,-15 + 6321: -10,-15 + 6322: -5,-15 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 6818: -20,-19 + 6333: -20,-19 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 6816: -24,-19 + 6331: -24,-19 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 6817: -20,-21 + 6332: -20,-21 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 6819: -24,-21 + 6334: -24,-21 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNW decals: - 6736: -111,-14 + 6251: -111,-14 - node: color: '#198896FF' id: WarnCornerSmallGreyscaleSE decals: - 6788: -17,-15 + 6303: -17,-15 - node: color: '#334E6DD8' id: WarnCornerSmallGreyscaleSE decals: - 6841: -22,-17 + 6356: -22,-17 - node: color: '#334E6DD8' id: WarnCornerSmallGreyscaleSW decals: - 6842: -22,-17 + 6357: -22,-17 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 910: -194,18 - 6828: -22,-19 - 6831: -23,-21 - 6838: -22,-21 - 6840: -23,-20 + 6343: -22,-19 + 6346: -23,-21 + 6353: -22,-21 + 6355: -23,-20 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 6827: -22,-19 - 6829: -21,-21 - 6830: -21,-20 - 6832: -22,-21 + 6342: -22,-19 + 6344: -21,-21 + 6345: -21,-20 + 6347: -22,-21 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 909: -194,21 - 6834: -22,-19 - 6835: -23,-19 - 6839: -23,-20 + 6349: -22,-19 + 6350: -23,-19 + 6354: -23,-20 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 6833: -21,-19 - 6836: -22,-19 - 6837: -21,-20 + 6348: -21,-19 + 6351: -22,-19 + 6352: -21,-20 - node: color: '#FFFFFFFF' id: WarnEndE decals: - 2675: -78,-7 - 2679: -78,-1 - 6573: -75,-10 - 6578: -75,2 - - node: - color: '#FFFFFFFF' - id: WarnEndN - decals: - 2682: -82,-3 - - node: - color: '#FFFFFFFF' - id: WarnEndS - decals: - 2683: -82,-5 + 6088: -75,-10 + 6093: -75,2 - node: color: '#FFFFFFFF' id: WarnEndW decals: - 2678: -80,-1 - 6571: -80,-7 - 6572: -77,-10 - 6577: -77,2 + 6087: -77,-10 + 6092: -77,2 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 907: -194,20 - 908: -194,19 - 2685: -82,-4 - 6635: -22,-18 - 6824: -20,-20 + 6150: -22,-18 + 6339: -20,-20 - node: color: '#198896FF' id: WarnLineGreyscaleE decals: - 6786: -17,-17 - 6787: -17,-16 - 6811: -12,-16 - 6812: -12,-17 + 6301: -17,-17 + 6302: -17,-16 + 6326: -12,-16 + 6327: -12,-17 - node: color: '#8C347FD8' id: WarnLineGreyscaleE decals: - 2420: -36,-12 - 2421: -36,-11 - 2422: -36,-10 + 2186: -36,-12 + 2187: -36,-11 + 2188: -36,-10 + - node: + color: '#FF9821B2' + id: WarnLineGreyscaleE + decals: + 6683: -82,-4 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 6729: -118,-13 - 6730: -118,-12 - 6731: -118,-11 - 6732: -118,-10 + 6244: -118,-13 + 6245: -118,-12 + 6246: -118,-11 + 6247: -118,-10 - node: color: '#198896FF' id: WarnLineGreyscaleN decals: - 6789: -16,-18 - 6790: -15,-18 - 6791: -14,-18 - 6792: -13,-18 - 6800: -9,-18 - 6801: -8,-18 - 6802: -7,-18 - 6803: -6,-18 - 6810: -15,-15 + 6304: -16,-18 + 6305: -15,-18 + 6306: -14,-18 + 6307: -13,-18 + 6315: -9,-18 + 6316: -8,-18 + 6317: -7,-18 + 6318: -6,-18 + 6325: -15,-15 - node: color: '#9C2020FF' id: WarnLineGreyscaleN decals: - 1900: -148,9 + 1666: -148,9 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 1896: -150,9 - 1897: -149,9 - 1898: -147,9 - 1899: -146,9 - 6733: -114,-14 - 6734: -113,-14 - 6735: -112,-14 + 1662: -150,9 + 1663: -149,9 + 1664: -147,9 + 1665: -146,9 + 6248: -114,-14 + 6249: -113,-14 + 6250: -112,-14 - node: color: '#198896FF' id: WarnLineGreyscaleS decals: - 6795: -13,-15 - 6796: -9,-15 - 6797: -8,-15 - 6798: -7,-15 - 6799: -6,-15 + 6310: -13,-15 + 6311: -9,-15 + 6312: -8,-15 + 6313: -7,-15 + 6314: -6,-15 - node: color: '#334E6DD8' id: WarnLineGreyscaleS decals: - 6843: -23,-17 - 6844: -21,-17 + 6358: -23,-17 + 6359: -21,-17 - node: color: '#9C2020FF' id: WarnLineGreyscaleS decals: - 1901: -148,11 + 1667: -148,11 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 1902: -150,11 - 1903: -149,11 - 1904: -147,11 - 1905: -146,11 + 1668: -150,11 + 1669: -149,11 + 1670: -147,11 + 1671: -146,11 - node: color: '#198896FF' id: WarnLineGreyscaleW decals: - 6808: -5,-16 - 6809: -5,-17 - 6813: -10,-16 - 6814: -10,-17 + 6323: -5,-16 + 6324: -5,-17 + 6328: -10,-16 + 6329: -10,-17 - node: color: '#8C347FD8' id: WarnLineGreyscaleW decals: - 2417: -34,-12 - 2418: -34,-11 - 2419: -34,-10 + 2183: -34,-12 + 2184: -34,-11 + 2185: -34,-10 + - node: + color: '#FF9821B2' + id: WarnLineGreyscaleW + decals: + 6682: -82,-4 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 2677: -79,-7 - 2681: -79,-1 - 6575: -76,-10 - 6576: -76,2 - 6820: -23,-21 - 6821: -22,-21 - 6822: -21,-21 + 6090: -76,-10 + 6091: -76,2 + 6335: -23,-21 + 6336: -22,-21 + 6337: -21,-21 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 2684: -82,-4 - 6636: -22,-18 - 6823: -24,-20 + 6151: -22,-18 + 6338: -24,-20 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 2676: -79,-7 - 2680: -79,-1 - 6574: -76,-10 - 6579: -76,2 - 6825: -23,-19 - 6826: -21,-19 + 6089: -76,-10 + 6094: -76,2 + 6340: -23,-19 + 6341: -21,-19 - node: color: '#FFFFFFFF' id: WoodTrimThinBox decals: - 1929: -153,-20 - 2413: -4,-12 - 2414: -5,-11 - 2727: -128,-11 - 3065: -44,8 + 1695: -153,-20 + 2179: -4,-12 + 2180: -5,-11 + 2471: -128,-11 + 2808: -44,8 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 1452: -7,-7 - 1483: -4,-10 - 1589: -115,4 - 1597: -114,0 - 1627: -115,1 - 1630: -114,-5 - 1645: -111,0 - 1909: -154,-22 - 2724: -127,-10 - 3013: -17,0 - 3028: -43,9 - 3047: -39,9 - 3048: -39,10 + 1218: -7,-7 + 1249: -4,-10 + 1355: -115,4 + 1363: -114,0 + 1393: -115,1 + 1396: -114,-5 + 1411: -111,0 + 1675: -154,-22 + 2468: -127,-10 + 2756: -17,0 + 2771: -43,9 + 2790: -39,9 + 2791: -39,10 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 5956: -111,6 + 5508: -111,6 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 1484: -5,-10 - 1546: -145,3 - 1583: -121,4 - 1621: -121,1 - 1631: -116,-5 - 1638: -121,-6 - 1957: -165,-19 - 2722: -129,-10 - 2723: -127,-10 - 3011: -22,-4 - 3012: -22,0 - 3026: -41,10 - 3027: -45,9 - 3046: -40,9 - 3133: -48,-15 - 3154: -42,-17 - 6555: -150,5 + 1250: -5,-10 + 1312: -145,3 + 1349: -121,4 + 1387: -121,1 + 1397: -116,-5 + 1404: -121,-6 + 1723: -165,-19 + 2466: -129,-10 + 2467: -127,-10 + 2754: -22,-4 + 2755: -22,0 + 2769: -41,10 + 2770: -45,9 + 2789: -40,9 + 2876: -48,-15 + 2897: -42,-17 + 6071: -150,5 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 5953: -113,6 + 5505: -113,6 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 1475: -7,-13 - 1482: -4,-13 - 1537: -140,0 - 1591: -115,3 - 1604: -111,-8 - 1635: -115,-7 - 1636: -114,-6 - 1641: -119,-8 - 2721: -127,-12 - 2908: -149,4 - 2911: -147,5 - 3006: -17,-6 - 3007: -21,-6 - 3029: -43,7 - 3044: -39,8 - 3134: -42,-20 - 3135: -43,-21 - 3159: -43,-16 - 6559: -147,2 + 1241: -7,-13 + 1248: -4,-13 + 1303: -140,0 + 1357: -115,3 + 1370: -111,-8 + 1401: -115,-7 + 1402: -114,-6 + 1407: -119,-8 + 2465: -127,-12 + 2651: -149,4 + 2654: -147,5 + 2749: -17,-6 + 2750: -21,-6 + 2772: -43,7 + 2787: -39,8 + 2877: -42,-20 + 2878: -43,-21 + 2902: -43,-16 + 6075: -147,2 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 5975: -111,2 + 5527: -111,2 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 1461: -8,-10 - 1471: -11,-13 - 1481: -5,-13 - 1549: -145,0 - 1590: -121,3 - 1613: -121,-8 - 1634: -116,-7 - 1640: -119,-6 - 2725: -129,-12 - 2909: -147,4 - 2910: -149,5 - 3014: -22,-6 - 3015: -19,-6 - 3030: -45,7 - 3041: -41,7 - 3045: -40,8 - 3136: -45,-21 - 3137: -48,-20 - 6557: -150,2 + 1227: -8,-10 + 1237: -11,-13 + 1247: -5,-13 + 1315: -145,0 + 1356: -121,3 + 1379: -121,-8 + 1400: -116,-7 + 1406: -119,-6 + 2469: -129,-12 + 2652: -147,4 + 2653: -149,5 + 2757: -22,-6 + 2758: -19,-6 + 2773: -45,7 + 2784: -41,7 + 2788: -40,8 + 2879: -45,-21 + 2880: -48,-20 + 6073: -150,2 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 5989: -113,2 + 5541: -113,2 - node: color: '#FFFFFFFF' id: WoodTrimThinEndE decals: - 1485: -6,-8 - 1571: -115,2 - 2306: -164,10 - 2416: -4,-11 - 2708: -120,-11 - 3018: -35,6 - 3019: -33,7 - 3020: -33,9 - 3043: -38,7 - 3062: -38,10 - 3063: -38,9 - 3064: -38,8 - 3151: -42,-15 + 1251: -6,-8 + 1337: -115,2 + 2072: -164,10 + 2182: -4,-11 + 2452: -120,-11 + 2761: -35,6 + 2762: -33,7 + 2763: -33,9 + 2786: -38,7 + 2805: -38,10 + 2806: -38,9 + 2807: -38,8 + 2894: -42,-15 - node: color: '#FFFFFFFF' id: WoodTrimThinEndN decals: - 1470: -11,-12 + 1236: -11,-12 - node: color: '#FFFFFFFF' id: WoodTrimThinEndS decals: - 2308: -165,8 + 2074: -165,8 - node: color: '#FFFFFFFF' id: WoodTrimThinEndW decals: - 1572: -121,2 - 2307: -166,10 - 2415: -5,-12 - 3016: -36,6 - 3017: -36,9 - 3025: -34,7 + 1338: -121,2 + 2073: -166,10 + 2181: -5,-12 + 2759: -36,6 + 2760: -36,9 + 2768: -34,7 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 1454: -8,-7 - 1456: -7,-8 - 1469: -11,-13 - 1477: -7,-11 - 1557: -145,0 - 1628: -115,0 - 1629: -114,-3 - 1921: -162,-22 - 1946: -157,-21 - 1947: -161,-21 - 2702: -124,-11 - 2718: -128,-10 - 2719: -127,-11 - 2728: -129,-12 - 2729: -128,-12 - 2739: -129,-12 - 2740: -129,-11 - 2986: -17,-4 - 3033: -44,9 - 3035: -43,8 - 3051: -40,8 - 3055: -41,7 - 3056: -39,7 - 3061: -41,9 - 3066: -44,7 - 3067: -45,8 - 3068: -45,7 - 3150: -43,-17 - 3173: -48,-19 + 1220: -8,-7 + 1222: -7,-8 + 1235: -11,-13 + 1243: -7,-11 + 1323: -145,0 + 1394: -115,0 + 1395: -114,-3 + 1687: -162,-22 + 1712: -157,-21 + 1713: -161,-21 + 2446: -124,-11 + 2462: -128,-10 + 2463: -127,-11 + 2472: -129,-12 + 2473: -128,-12 + 2483: -129,-12 + 2484: -129,-11 + 2729: -17,-4 + 2776: -44,9 + 2778: -43,8 + 2794: -40,8 + 2798: -41,7 + 2799: -39,7 + 2804: -41,9 + 2809: -44,7 + 2810: -45,8 + 2811: -45,7 + 2893: -43,-17 + 2916: -48,-19 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 6026: -112,6 + 5578: -112,6 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 1466: -7,-13 - 1558: -140,0 - 1948: -154,-21 - 1949: -158,-21 - 1959: -164,-19 - 1960: -165,-20 - 2703: -124,-11 - 2717: -128,-10 - 2730: -127,-12 - 2731: -128,-12 - 2732: -127,-11 - 2988: -19,-4 - 3034: -44,9 - 3039: -41,8 - 3052: -39,8 - 3057: -40,7 - 3069: -44,7 - 3070: -43,7 - 3071: -43,8 - 3078: -43,7 - 3152: -48,-16 - 3172: -42,-19 - 6564: -150,3 + 1232: -7,-13 + 1324: -140,0 + 1714: -154,-21 + 1715: -158,-21 + 1725: -164,-19 + 1726: -165,-20 + 2447: -124,-11 + 2461: -128,-10 + 2474: -127,-12 + 2475: -128,-12 + 2476: -127,-11 + 2731: -19,-4 + 2777: -44,9 + 2782: -41,8 + 2795: -39,8 + 2800: -40,7 + 2812: -44,7 + 2813: -43,7 + 2814: -43,8 + 2821: -43,7 + 2895: -48,-16 + 2915: -42,-19 + 6080: -150,3 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 5999: -113,3 - 6034: -112,6 + 5551: -113,3 + 5586: -112,6 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 1455: -7,-8 - 1478: -7,-11 - 1542: -140,3 - 1554: -141,0 - 1555: -145,3 - 1616: -111,-5 - 1637: -115,-6 - 1950: -157,-18 - 1951: -161,-18 - 2313: -165,10 - 2715: -127,-11 - 2716: -128,-12 - 2733: -129,-10 - 2734: -128,-10 - 2738: -129,-11 - 2912: -148,4 - 2913: -148,5 - 2987: -17,-4 - 2990: -21,-4 - 3036: -43,8 - 3053: -40,9 - 3058: -41,8 - 3059: -41,10 - 3072: -44,9 - 3073: -45,9 - 3074: -45,8 - 3139: -43,-20 - 3155: -42,-17 - 3174: -48,-16 - 3175: -43,-15 - 6561: -149,2 + 1221: -7,-8 + 1244: -7,-11 + 1308: -140,3 + 1320: -141,0 + 1321: -145,3 + 1382: -111,-5 + 1403: -115,-6 + 1716: -157,-18 + 1717: -161,-18 + 2079: -165,10 + 2459: -127,-11 + 2460: -128,-12 + 2477: -129,-10 + 2478: -128,-10 + 2482: -129,-11 + 2655: -148,4 + 2656: -148,5 + 2730: -17,-4 + 2733: -21,-4 + 2779: -43,8 + 2796: -40,9 + 2801: -41,8 + 2802: -41,10 + 2815: -44,9 + 2816: -45,9 + 2817: -45,8 + 2882: -43,-20 + 2898: -42,-17 + 2917: -48,-16 + 2918: -43,-15 + 6077: -149,2 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 1464: -7,-10 - 1553: -141,0 - 1556: -140,3 - 1617: -121,-5 - 1952: -154,-18 - 1953: -158,-18 - 2312: -165,10 - 2720: -128,-12 - 2735: -127,-10 - 2736: -128,-10 - 2737: -127,-11 - 2914: -148,4 - 2915: -148,5 - 2989: -19,-4 - 3010: -19,-2 - 3040: -41,8 - 3054: -39,9 - 3060: -40,10 - 3075: -43,9 - 3076: -44,9 - 3077: -43,8 - 3140: -45,-20 - 3153: -48,-16 - 6562: -149,2 - 6563: -150,3 + 1230: -7,-10 + 1319: -141,0 + 1322: -140,3 + 1383: -121,-5 + 1718: -154,-18 + 1719: -158,-18 + 2078: -165,10 + 2464: -128,-12 + 2479: -127,-10 + 2480: -128,-10 + 2481: -127,-11 + 2657: -148,4 + 2658: -148,5 + 2732: -19,-4 + 2753: -19,-2 + 2783: -41,8 + 2797: -39,9 + 2803: -40,10 + 2818: -43,9 + 2819: -44,9 + 2820: -43,8 + 2883: -45,-20 + 2896: -48,-16 + 6078: -149,2 + 6079: -150,3 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 6008: -113,3 + 5560: -113,3 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 1457: -7,-9 - 1458: -7,-10 - 1476: -7,-12 - 1538: -140,1 - 1539: -140,1 - 1540: -140,2 - 1565: -145,1 - 1566: -145,2 - 1598: -114,-1 - 1599: -114,-2 - 1602: -111,-6 - 1603: -111,-7 - 1642: -119,-7 - 1646: -111,-1 - 1647: -111,-2 - 1917: -162,-21 - 1918: -162,-20 - 1919: -162,-19 - 1920: -162,-18 - 1930: -157,-20 - 1931: -157,-19 - 1932: -161,-20 - 1933: -161,-19 - 2309: -165,9 - 2697: -124,-8 - 2698: -124,-9 - 2699: -124,-10 - 2995: -17,-1 - 2996: -17,-2 - 2997: -17,-3 - 2998: -17,-5 - 2999: -21,-5 - 3141: -42,-18 - 3142: -42,-19 - 3165: -48,-18 - 3166: -48,-17 - 6560: -147,3 + 1223: -7,-9 + 1224: -7,-10 + 1242: -7,-12 + 1304: -140,1 + 1305: -140,1 + 1306: -140,2 + 1331: -145,1 + 1332: -145,2 + 1364: -114,-1 + 1365: -114,-2 + 1368: -111,-6 + 1369: -111,-7 + 1408: -119,-7 + 1412: -111,-1 + 1413: -111,-2 + 1683: -162,-21 + 1684: -162,-20 + 1685: -162,-19 + 1686: -162,-18 + 1696: -157,-20 + 1697: -157,-19 + 1698: -161,-20 + 1699: -161,-19 + 2075: -165,9 + 2441: -124,-8 + 2442: -124,-9 + 2443: -124,-10 + 2738: -17,-1 + 2739: -17,-2 + 2740: -17,-3 + 2741: -17,-5 + 2742: -21,-5 + 2884: -42,-18 + 2885: -42,-19 + 2908: -48,-18 + 2909: -48,-17 + 6076: -147,3 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 5964: -111,5 - 5966: -111,4 - 5970: -111,3 + 5516: -111,5 + 5518: -111,4 + 5522: -111,3 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 1465: -8,-13 - 1467: -9,-13 - 1468: -10,-13 - 1479: -6,-11 - 1541: -140,3 - 1543: -141,3 - 1544: -143,3 - 1545: -144,3 - 1561: -141,0 - 1562: -142,0 - 1563: -143,0 - 1564: -144,0 - 1573: -120,2 - 1574: -119,2 - 1575: -118,2 - 1576: -117,2 - 1577: -116,2 - 1584: -120,4 - 1585: -119,4 - 1586: -118,4 - 1587: -117,4 - 1588: -116,4 - 1600: -113,-3 - 1601: -112,-3 - 1615: -111,-3 - 1622: -120,1 - 1623: -119,1 - 1624: -118,1 - 1625: -117,1 - 1626: -116,1 - 1632: -115,-5 - 1639: -120,-6 - 1643: -113,0 - 1644: -112,0 - 1910: -155,-22 - 1911: -156,-22 - 1912: -157,-22 - 1913: -158,-22 - 1914: -159,-22 - 1915: -160,-22 - 1916: -161,-22 - 1934: -155,-21 - 1935: -156,-21 - 1936: -159,-21 - 1937: -160,-21 - 1954: -166,-20 - 1955: -167,-20 - 1956: -168,-20 - 2311: -165,10 - 2704: -125,-11 - 2705: -123,-11 - 2706: -122,-11 - 2707: -121,-11 - 2916: -148,3 - 3000: -18,0 - 3001: -19,0 - 3002: -20,0 - 3003: -21,0 - 3004: -21,-4 - 3021: -34,9 - 3022: -35,9 - 3037: -42,8 - 3049: -40,10 - 3148: -46,-15 - 3149: -47,-15 - 3156: -43,-15 - 3157: -44,-15 - 3158: -45,-15 - 3160: -43,-19 - 3161: -44,-19 - 3162: -45,-19 - 3163: -46,-19 - 3164: -47,-19 + 1231: -8,-13 + 1233: -9,-13 + 1234: -10,-13 + 1245: -6,-11 + 1307: -140,3 + 1309: -141,3 + 1310: -143,3 + 1311: -144,3 + 1327: -141,0 + 1328: -142,0 + 1329: -143,0 + 1330: -144,0 + 1339: -120,2 + 1340: -119,2 + 1341: -118,2 + 1342: -117,2 + 1343: -116,2 + 1350: -120,4 + 1351: -119,4 + 1352: -118,4 + 1353: -117,4 + 1354: -116,4 + 1366: -113,-3 + 1367: -112,-3 + 1381: -111,-3 + 1388: -120,1 + 1389: -119,1 + 1390: -118,1 + 1391: -117,1 + 1392: -116,1 + 1398: -115,-5 + 1405: -120,-6 + 1409: -113,0 + 1410: -112,0 + 1676: -155,-22 + 1677: -156,-22 + 1678: -157,-22 + 1679: -158,-22 + 1680: -159,-22 + 1681: -160,-22 + 1682: -161,-22 + 1700: -155,-21 + 1701: -156,-21 + 1702: -159,-21 + 1703: -160,-21 + 1720: -166,-20 + 1721: -167,-20 + 1722: -168,-20 + 2077: -165,10 + 2448: -125,-11 + 2449: -123,-11 + 2450: -122,-11 + 2451: -121,-11 + 2659: -148,3 + 2743: -18,0 + 2744: -19,0 + 2745: -20,0 + 2746: -21,0 + 2747: -21,-4 + 2764: -34,9 + 2765: -35,9 + 2780: -42,8 + 2792: -40,10 + 2891: -46,-15 + 2892: -47,-15 + 2899: -43,-15 + 2900: -44,-15 + 2901: -45,-15 + 2903: -43,-19 + 2904: -44,-19 + 2905: -45,-19 + 2906: -46,-19 + 2907: -47,-19 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1472: -10,-13 - 1473: -9,-13 - 1474: -8,-13 - 1480: -6,-11 - 1550: -144,0 - 1551: -143,0 - 1552: -142,0 - 1567: -144,3 - 1568: -143,3 - 1569: -142,3 - 1570: -141,3 - 1578: -116,2 - 1579: -117,2 - 1580: -118,2 - 1581: -119,2 - 1582: -120,2 - 1592: -116,3 - 1593: -117,3 - 1594: -118,3 - 1595: -119,3 - 1596: -120,3 - 1605: -112,-8 - 1606: -113,-8 - 1607: -114,-8 - 1608: -115,-8 - 1609: -116,-8 - 1610: -117,-8 - 1611: -118,-8 - 1612: -120,-8 - 1922: -160,-17 - 1923: -159,-17 - 1924: -158,-17 - 1925: -157,-17 - 1926: -156,-17 - 1927: -155,-17 - 1928: -154,-17 - 1942: -155,-18 - 1943: -156,-18 - 1944: -159,-18 - 1945: -160,-18 - 2709: -121,-11 - 2710: -122,-11 - 2711: -123,-11 - 2712: -124,-11 - 2713: -125,-11 - 2714: -126,-11 - 2917: -147.99324,5.142482 - 3005: -18,-6 - 3008: -20,-2 - 3009: -21,-2 - 3023: -35,9 - 3024: -34,9 - 3031: -44,7 - 3038: -42,8 - 3042: -39,7 - 3138: -44,-21 - 3146: -47,-20 - 3147: -46,-20 - 3167: -47,-16 - 3168: -46,-16 - 3169: -45,-16 - 3170: -44,-16 - 6558: -148,2 + 1238: -10,-13 + 1239: -9,-13 + 1240: -8,-13 + 1246: -6,-11 + 1316: -144,0 + 1317: -143,0 + 1318: -142,0 + 1333: -144,3 + 1334: -143,3 + 1335: -142,3 + 1336: -141,3 + 1344: -116,2 + 1345: -117,2 + 1346: -118,2 + 1347: -119,2 + 1348: -120,2 + 1358: -116,3 + 1359: -117,3 + 1360: -118,3 + 1361: -119,3 + 1362: -120,3 + 1371: -112,-8 + 1372: -113,-8 + 1373: -114,-8 + 1374: -115,-8 + 1375: -116,-8 + 1376: -117,-8 + 1377: -118,-8 + 1378: -120,-8 + 1688: -160,-17 + 1689: -159,-17 + 1690: -158,-17 + 1691: -157,-17 + 1692: -156,-17 + 1693: -155,-17 + 1694: -154,-17 + 1708: -155,-18 + 1709: -156,-18 + 1710: -159,-18 + 1711: -160,-18 + 2453: -121,-11 + 2454: -122,-11 + 2455: -123,-11 + 2456: -124,-11 + 2457: -125,-11 + 2458: -126,-11 + 2660: -147.99324,5.142482 + 2748: -18,-6 + 2751: -20,-2 + 2752: -21,-2 + 2766: -35,9 + 2767: -34,9 + 2774: -44,7 + 2781: -42,8 + 2785: -39,7 + 2881: -44,-21 + 2889: -47,-20 + 2890: -46,-20 + 2910: -47,-16 + 2911: -46,-16 + 2912: -45,-16 + 2913: -44,-16 + 6074: -148,2 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 5982: -112,2 + 5534: -112,2 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 1453: -8,-7 - 1459: -8,-8 - 1460: -8,-9 - 1462: -7,-11 - 1463: -7,-12 - 1547: -145,2 - 1548: -145,1 - 1559: -140,1 - 1560: -140,2 - 1614: -121,-7 - 1618: -121,-2 - 1619: -121,-1 - 1620: -121,0 - 1633: -116,-6 - 1938: -154,-20 - 1939: -154,-19 - 1940: -158,-20 - 1941: -158,-19 - 1958: -164,-18 - 2310: -165,9 - 2696: -124,-8 - 2700: -124,-9 - 2701: -124,-10 - 2726: -129,-11 - 2991: -19,-3 - 2992: -22,-5 - 2993: -19,-5 - 2994: -22,-1 - 3032: -45,8 - 3050: -41,9 - 3143: -48,-17 - 3144: -48,-18 - 3145: -48,-19 - 3171: -42,-18 - 6556: -150,4 + 1219: -8,-7 + 1225: -8,-8 + 1226: -8,-9 + 1228: -7,-11 + 1229: -7,-12 + 1313: -145,2 + 1314: -145,1 + 1325: -140,1 + 1326: -140,2 + 1380: -121,-7 + 1384: -121,-2 + 1385: -121,-1 + 1386: -121,0 + 1399: -116,-6 + 1704: -154,-20 + 1705: -154,-19 + 1706: -158,-20 + 1707: -158,-19 + 1724: -164,-18 + 2076: -165,9 + 2440: -124,-8 + 2444: -124,-9 + 2445: -124,-10 + 2470: -129,-11 + 2734: -19,-3 + 2735: -22,-5 + 2736: -19,-5 + 2737: -22,-1 + 2775: -45,8 + 2793: -41,9 + 2886: -48,-17 + 2887: -48,-18 + 2888: -48,-19 + 2914: -42,-18 + 6072: -150,4 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 6017: -113,4 - 6018: -113,5 + 5569: -113,4 + 5570: -113,5 - node: angle: -1.4835298641951802 rad color: '#1D1D21FF' id: peace decals: - 6719: -67,12 + 6234: -67,12 - node: angle: -1.3962634015954636 rad color: '#1D1D21FF' id: peace decals: - 6720: -67,12 + 6235: -67,12 - node: angle: -1.3089969389957472 rad color: '#1D1D21FF' id: peace decals: - 6721: -67,12 + 6236: -67,12 - node: angle: -1.2217304763960306 rad color: '#1D1D21FF' id: peace decals: - 6722: -67,12 + 6237: -67,12 - node: angle: -1.1344640137963142 rad color: '#1D1D21FF' id: peace decals: - 6723: -67,12 + 6238: -67,12 - node: angle: -1.0471975511965976 rad color: '#1D1D21FF' id: peace decals: - 6724: -67,12 + 6239: -67,12 - node: angle: -0.9599310885968813 rad color: '#1D1D21FF' id: peace decals: - 6726: -67,12 + 6241: -67,12 - node: angle: -0.8726646259971648 rad color: '#1D1D21FF' id: peace decals: - 6727: -67,12 - 6728: -67,12 + 6242: -67,12 + 6243: -67,12 - node: color: '#1D1D21FF' id: peace decals: - 6671: -67,12 + 6186: -67,12 - node: angle: 0.017453292519943295 rad color: '#1D1D21FF' id: peace decals: - 6680: -67,12 + 6195: -67,12 - node: angle: 0.03490658503988659 rad color: '#1D1D21FF' id: peace decals: - 6681: -67,12 + 6196: -67,12 - node: angle: 0.05235987755982989 rad color: '#1D1D21FF' id: peace decals: - 6682: -67,12 + 6197: -67,12 - node: angle: 0.06981317007977318 rad color: '#1D1D21FF' id: peace decals: - 6683: -67,12 + 6198: -67,12 - node: angle: 0.08726646259971647 rad color: '#1D1D21FF' id: peace decals: - 6684: -67,12 + 6199: -67,12 - node: angle: 0.10471975511965978 rad color: '#1D1D21FF' id: peace decals: - 6685: -67,12 + 6200: -67,12 - node: angle: 0.12217304763960307 rad color: '#1D1D21FF' id: peace decals: - 6686: -67,12 + 6201: -67,12 - node: angle: 0.13962634015954636 rad color: '#1D1D21FF' id: peace decals: - 6687: -67,12 + 6202: -67,12 - node: angle: 0.15707963267948966 rad color: '#1D1D21FF' id: peace decals: - 6688: -67,12 + 6203: -67,12 - node: angle: 0.17453292519943295 rad color: '#1D1D21FF' id: peace decals: - 6689: -67,12 + 6204: -67,12 - node: angle: 0.19198621771937624 rad color: '#1D1D21FF' id: peace decals: - 6690: -67,12 + 6205: -67,12 - node: angle: 0.20943951023931956 rad color: '#1D1D21FF' id: peace decals: - 6691: -67,12 + 6206: -67,12 - node: angle: 0.22689280275926285 rad color: '#1D1D21FF' id: peace decals: - 6692: -67,12 + 6207: -67,12 - node: angle: 0.24434609527920614 rad color: '#1D1D21FF' id: peace decals: - 6693: -67,12 + 6208: -67,12 - node: angle: 0.2617993877991494 rad color: '#1D1D21FF' id: peace decals: - 6694: -67,12 + 6209: -67,12 - node: angle: 0.2792526803190927 rad color: '#1D1D21FF' id: peace decals: - 6695: -67,12 + 6210: -67,12 - node: angle: 0.29670597283903605 rad color: '#1D1D21FF' id: peace decals: - 6696: -67,12 + 6211: -67,12 - node: angle: 0.3141592653589793 rad color: '#1D1D21FF' id: peace decals: - 6697: -67,12 + 6212: -67,12 - node: angle: 0.33161255787892263 rad color: '#1D1D21FF' id: peace decals: - 6698: -67,12 + 6213: -67,12 - node: angle: 0.3490658503988659 rad color: '#1D1D21FF' id: peace decals: - 6699: -67,12 + 6214: -67,12 - node: angle: 0.3665191429188092 rad color: '#1D1D21FF' id: peace decals: - 6700: -67,12 + 6215: -67,12 - node: angle: 0.3839724354387525 rad color: '#1D1D21FF' id: peace decals: - 6701: -67,12 + 6216: -67,12 - node: angle: 0.4014257279586958 rad color: '#1D1D21FF' id: peace decals: - 6702: -67,12 + 6217: -67,12 - node: angle: 0.4188790204786391 rad color: '#1D1D21FF' id: peace decals: - 6703: -67,12 + 6218: -67,12 - node: angle: 0.4363323129985824 rad color: '#1D1D21FF' id: peace decals: - 6704: -67,12 + 6219: -67,12 - node: angle: 0.4537856055185257 rad color: '#1D1D21FF' id: peace decals: - 6705: -67,12 + 6220: -67,12 - node: angle: 0.5235987755982988 rad color: '#1D1D21FF' id: peace decals: - 6706: -67,12 + 6221: -67,12 - node: angle: 0.6108652381980153 rad color: '#1D1D21FF' id: peace decals: - 6707: -67,12 + 6222: -67,12 - node: angle: 0.6981317007977318 rad color: '#1D1D21FF' id: peace decals: - 6708: -67,12 + 6223: -67,12 - node: angle: 0.7853981633974483 rad color: '#1D1D21FF' id: peace decals: - 6709: -67,12 + 6224: -67,12 - node: angle: 0.8726646259971648 rad color: '#1D1D21FF' id: peace decals: - 6710: -67,12 + 6225: -67,12 - node: angle: 0.9599310885968813 rad color: '#1D1D21FF' id: peace decals: - 6711: -67,12 - 6725: -67,12 + 6226: -67,12 + 6240: -67,12 - node: angle: 1.0471975511965976 rad color: '#1D1D21FF' id: peace decals: - 6712: -67,12 + 6227: -67,12 - node: angle: 1.1344640137963142 rad color: '#1D1D21FF' id: peace decals: - 6713: -67,12 + 6228: -67,12 - node: angle: 1.2217304763960306 rad color: '#1D1D21FF' id: peace decals: - 6714: -67,12 + 6229: -67,12 - node: angle: 1.3089969389957472 rad color: '#1D1D21FF' id: peace decals: - 6715: -67,12 + 6230: -67,12 - node: angle: 1.3962634015954636 rad color: '#1D1D21FF' id: peace decals: - 6716: -67,12 + 6231: -67,12 - node: angle: 1.4835298641951802 rad color: '#1D1D21FF' id: peace decals: - 6717: -67,12 + 6232: -67,12 - node: angle: 1.5707963267948966 rad color: '#1D1D21FF' id: peace decals: - 6672: -67,12 - 6718: -67,12 + 6187: -67,12 + 6233: -67,12 - node: angle: 3.141592653589793 rad color: '#1D1D21FF' id: peace decals: - 6673: -67,12 + 6188: -67,12 - node: angle: 4.71238898038469 rad color: '#1D1D21FF' id: peace decals: - 6674: -67,12 - 6675: -67,12 - 6676: -67,12 + 6189: -67,12 + 6190: -67,12 + 6191: -67,12 - node: angle: 6.283185307179586 rad color: '#1D1D21FF' id: peace decals: - 6677: -67,12 + 6192: -67,12 - node: angle: 7.853981633974483 rad color: '#1D1D21FF' id: peace decals: - 6678: -67,12 + 6193: -67,12 - node: angle: 9.42477796076938 rad color: '#1D1D21FF' id: peace decals: - 6679: -67,12 + 6194: -67,12 - node: color: '#FF000090' id: rune6 decals: - 3118: -34,13 + 2861: -34,13 - type: GasTileOverlay - type: NavMap - type: RadiationGridResistance - type: Joint joints: docking387992: !type:WeldJoint - bodyB: 17021 + bodyB: 17565 bodyA: 2 id: docking387992 localAnchorB: 9,-2.5 localAnchorA: 8,-2.5 - damping: 613.9708 - stiffness: 5510.9897 + damping: 614.0698 + stiffness: 5511.878 docking387991: !type:WeldJoint - bodyB: 17021 + bodyB: 17565 bodyA: 2 id: docking387991 localAnchorB: 9,-4.5 localAnchorA: 8,-4.5 - damping: 613.9708 - stiffness: 5510.9897 + damping: 614.0698 + stiffness: 5511.878 - type: MaterialStorage storage: {} - type: BecomesStation @@ -10256,7 +10396,7 @@ entities: -11,2: 0: 14783 -11,3: - 0: 28863 + 0: 62143 -11,-1: 0: 30583 -11,4: @@ -10316,7 +10456,7 @@ entities: -12,-7: 1: 58162 -13,-7: - 1: 28352 + 1: 28353 -12,-6: 0: 33776 -13,-6: @@ -10432,25 +10572,30 @@ entities: -13,-5: 0: 29814 -16,-7: - 1: 3 - 0: 63360 + 0: 65531 -17,-7: - 1: 15 - 0: 65280 + 0: 65518 -16,-6: 0: 16383 -17,-6: 0: 47615 -17,-5: 0: 63675 + -16,-8: + 0: 32768 + -15,-8: + 0: 54528 -15,-7: - 0: 62933 + 0: 65533 -15,-6: 0: 36863 -14,-7: - 0: 56576 + 0: 56592 + 1: 4 -14,-6: 0: 3549 + -14,-8: + 1: 25088 -16,5: 0: 65535 -17,4: @@ -10469,6 +10614,8 @@ entities: 3: 204 1: 61440 6: 17 + -16,8: + 1: 14 -15,5: 0: 65535 -15,6: @@ -10478,6 +10625,8 @@ entities: 4: 51 1: 61440 5: 136 + -15,8: + 1: 255 -14,5: 0: 46079 -14,6: @@ -10485,15 +10634,19 @@ entities: 1: 52992 -14,7: 5: 17 - 1: 29764 + 1: 62532 -14,8: - 1: 563 + 1: 143 -13,5: 0: 4113 - 1: 17476 + 1: 19652 -13,6: 0: 1 - 1: 4932 + 1: 6084 + -12,5: + 1: 4551 + -12,6: + 1: 17 -20,0: 0: 65535 -20,-1: @@ -10556,6 +10709,10 @@ entities: -20,7: 1: 61713 3: 204 + -21,7: + 1: 3315 + -20,8: + 1: 255 -19,5: 0: 65535 -19,6: @@ -10564,6 +10721,8 @@ entities: -19,7: 1: 61440 3: 102 + -19,8: + 1: 15 -18,4: 0: 64976 -18,5: @@ -10576,9 +10735,9 @@ entities: 1: 61440 6: 136 -18,8: - 1: 4113 + 1: 239 -17,8: - 1: 27846 + 1: 255 -20,-4: 0: 255 1: 20480 @@ -10596,7 +10755,8 @@ entities: 0: 127 2: 28672 -21,-2: - 0: 26204 + 0: 26188 + 1: 16 -19,-4: 0: 255 1: 20480 @@ -10605,7 +10765,7 @@ entities: -19,-2: 0: 56575 -19,-5: - 0: 61557 + 0: 62839 -18,-4: 0: 53503 -18,-3: @@ -10640,21 +10800,31 @@ entities: -18,-6: 0: 45467 -12,7: - 1: 34816 + 1: 18432 + -11,5: + 1: 246 -11,7: - 1: 4983 - -12,8: - 1: 28364 + 1: 54 + 0: 40960 -11,8: - 1: 1 + 0: 26327 -11,6: - 1: 61128 - -11,5: - 1: 34816 + 1: 60416 -10,5: - 1: 13174 + 1: 52414 -10,6: - 1: 17 + 1: 32716 + -10,7: + 0: 57344 + 1: 102 + -10,8: + 0: 65534 + -9,5: + 1: 4369 + -9,7: + 0: 16896 + -9,8: + 0: 17781 -6,5: 1: 34952 -5,5: @@ -10686,7 +10856,7 @@ entities: -23,5: 1: 24351 -23,3: - 0: 48120 + 0: 65531 -23,6: 1: 58983 -22,4: @@ -10698,11 +10868,7 @@ entities: 1: 65058 0: 8 -22,7: - 1: 2184 - -21,7: - 1: 12561 - -21,8: - 1: 26419 + 1: 136 -24,0: 1: 142 0: 57344 @@ -10740,10 +10906,11 @@ entities: -22,3: 0: 4038 -22,-1: - 0: 14609 - 1: 132 + 0: 12561 + 1: 2180 -21,-1: - 0: 22118 + 0: 18022 + 1: 4096 -24,-4: 0: 57437 -24,-5: @@ -10842,7 +11009,8 @@ entities: -26,3: 0: 12287 -28,0: - 0: 13067 + 0: 13059 + 1: 8 -28,-1: 0: 13307 -29,0: @@ -10881,7 +11049,7 @@ entities: -28,-4: 0: 39821 -28,-5: - 0: 53492 + 0: 53748 -29,-4: 0: 64524 2: 17 @@ -10902,7 +11070,8 @@ entities: -27,-2: 0: 63487 -27,-1: - 0: 4351 + 0: 255 + 1: 4096 -27,-5: 0: 61684 -26,-4: @@ -10933,7 +11102,7 @@ entities: -29,-6: 0: 65280 -29,-5: - 0: 49266 + 0: 50290 2: 4096 -27,-8: 1: 6399 @@ -11004,21 +11173,23 @@ entities: -30,0: 0: 65535 -32,-7: - 1: 17648 + 0: 65328 + 1: 192 -33,-7: - 1: 13280 + 0: 61088 + 1: 4416 -32,-6: - 0: 45073 - 1: 110 + 0: 45183 -33,-6: 0: 57599 -33,-5: 0: 3822 -31,-7: - 1: 35056 + 0: 4368 + 1: 35040 -31,-6: - 1: 15 - 0: 62720 + 0: 62721 + 1: 14 -31,-8: 1: 2184 -31,-9: @@ -11256,9 +11427,9 @@ entities: -44,-6: 1: 629 -45,-7: - 1: 32768 + 1: 37667 -45,-6: - 1: 225 + 1: 224 0: 57344 -45,-5: 0: 61167 @@ -11381,6 +11552,7 @@ entities: 0: 49075 -48,-3: 0: 36576 + 1: 4096 -48,-2: 0: 61442 -48,-1: @@ -11398,48 +11570,53 @@ entities: -47,-2: 0: 61440 -47,-1: - 0: 30207 + 0: 255 + 1: 61440 -47,-5: 0: 65392 - -47,0: - 0: 30583 -46,-4: 0: 49075 -46,-3: 0: 817 + 1: 16384 -46,-2: 0: 61442 -46,-1: 0: 255 1: 28672 + -47,0: + 1: 264 -46,-5: 0: 13247 + -46,0: + 1: 25671 -48,0: - 0: 16674 + 0: 53716 -49,0: - 0: 32752 + 0: 65520 -48,1: - 0: 4431 + 0: 24799 -49,1: - 0: 65311 + 0: 61919 -48,2: - 0: 62721 + 0: 53351 -49,2: - 0: 64287 + 0: 53759 -48,3: - 0: 4357 + 0: 53471 -49,3: - 0: 64315 + 0: 58623 -48,4: - 0: 29441 + 0: 38 + 1: 256 -47,1: - 0: 30583 + 1: 256 -47,2: - 0: 30583 + 1: 256 -47,3: - 0: 30583 + 1: 256 -46,1: - 1: 12288 + 1: 12290 0: 34944 -46,2: 1: 61955 @@ -11469,28 +11646,40 @@ entities: 1: 4383 -36,6: 1: 15 + -48,-8: + 1: 1 + 0: 63328 + -49,-8: + 1: 128 -48,-7: - 0: 65339 - -49,-7: - 0: 34816 + 0: 63239 -48,-6: - 0: 57519 + 0: 57455 -49,-6: + 1: 128 0: 45056 -49,-5: 0: 13247 - -48,-8: - 0: 32768 + -48,-9: + 1: 32768 -47,-8: - 0: 61440 + 0: 65520 -47,-7: - 0: 65327 + 0: 65487 -47,-6: 0: 62207 + -47,-9: + 1: 62720 + -46,-8: + 0: 304 + 1: 16388 -46,-7: - 0: 65378 + 0: 4369 + 1: 19532 -46,-6: - 0: 45235 + 0: 45105 + -45,-8: + 1: 4096 -44,5: 1: 31 -45,5: @@ -11500,13 +11689,8 @@ entities: -42,5: 1: 12079 -49,4: - 0: 30523 - -48,5: - 0: 13175 - -49,5: - 0: 32631 - -48,6: - 0: 192 + 0: 206 + 1: 512 -47,4: 1: 2240 -46,4: @@ -11546,33 +11730,34 @@ entities: -53,1: 0: 52460 -52,2: - 0: 63351 + 0: 30583 -53,2: 0: 60620 -52,3: - 0: 30583 + 0: 30591 -53,3: 0: 52460 -51,0: - 0: 7330 + 0: 20580 -51,1: 0: 52255 -51,2: - 0: 64780 + 0: 7372 -51,3: - 0: 52237 + 0: 24671 -51,4: - 0: 30220 + 0: 140 -50,0: 0: 65520 -50,1: - 0: 65487 + 0: 65503 -50,2: - 0: 65231 + 0: 57343 -50,3: - 0: 65262 + 0: 62719 -50,4: - 0: 65518 + 0: 110 + 1: 2304 -52,4: 1: 9008 -53,4: @@ -11583,160 +11768,117 @@ entities: 1: 19532 -52,6: 1: 1 - 0: 128 -53,6: 1: 12 - -51,5: - 0: 20087 - -51,6: - 0: 16 - -50,5: + -56,-8: + 0: 30527 + -56,-9: 0: 65535 - -50,6: - 0: 26482 - -50,7: - 1: 192 - -49,6: - 0: 14194 - -49,7: - 1: 16 + -57,-8: + 0: 65263 + -57,-7: + 0: 30574 + -56,-7: + 0: 65504 -56,-6: - 1: 51328 + 0: 61679 + -57,-6: + 0: 65127 -56,-5: - 1: 17484 + 0: 55759 + -57,-5: + 0: 65390 -56,-4: - 1: 17604 + 0: 36124 + -55,-8: + 0: 48935 + -55,-7: + 0: 47929 -55,-6: - 1: 52476 + 0: 53691 -55,-5: - 1: 35023 - -55,-7: - 1: 32768 + 0: 65303 + -55,-4: + 0: 63313 + -55,-9: + 0: 59186 + 2: 8 + -54,-8: + 0: 259 + 1: 16448 -54,-7: - 1: 63488 + 0: 4353 + 1: 32832 -54,-6: - 0: 57344 - 1: 140 + 0: 57399 + 1: 200 + -54,-9: + 0: 13056 + 2: 1 + 1: 64 -54,-5: 0: 61166 -54,-4: - 0: 61166 - -53,-7: - 1: 4352 + 1: 1 + 0: 65518 + -53,-6: + 1: 4368 -53,-5: 0: 1 + 1: 4368 + -53,-4: + 1: 4113 + 0: 256 + -56,0: + 1: 80 + 0: 136 + -57,0: + 0: 140 + 1: 32 + -56,-1: + 0: 45055 + -55,0: + 0: 1 + 1: 32 + -55,-1: + 1: 8192 + 0: 238 + -57,-4: + 0: 16372 -56,-3: - 1: 4414 + 0: 65523 + -57,-3: + 0: 62395 -56,-2: - 1: 39327 - -56,-1: - 1: 3993 - -55,-4: - 1: 44658 + 0: 65535 + -57,-2: + 0: 35519 + -57,-1: + 0: 34953 + 1: 8192 -55,-3: - 1: 35503 + 0: 65382 -55,-2: - 1: 235 - 0: 57344 - -55,-1: - 0: 238 + 0: 61439 + -54,-3: + 0: 61167 + 1: 16 -54,-2: + 1: 16 0: 64238 -54,-1: 0: 255 - -54,-3: - 0: 61166 - -53,-4: - 0: 256 + -53,-3: + 1: 4369 + -12,8: + 1: 21298 + 6: 128 + -13,8: + 1: 61233 -12,9: - 1: 4919 - -13,9: - 1: 34816 - -12,10: - 1: 1 - -13,10: - 1: 32460 - -16,11: - 0: 52992 - 1: 4096 - -17,11: - 0: 47616 - -16,12: - 0: 40140 - 1: 258 - -15,11: - 0: 56656 - 1: 8196 - -15,12: - 0: 55517 - 1: 1824 - -15,10: - 1: 49152 - -14,10: - 1: 12544 - -14,11: - 0: 8704 - 1: 16398 - -14,12: - 1: 8739 - 0: 52684 - -13,11: - 1: 8743 - -16,13: - 0: 171 - 1: 20 - -17,13: - 1: 8 - 0: 630 - -15,13: - 0: 3285 1: 8 - -14,13: - 0: 38 - -20,10: - 1: 12561 - -21,10: - 1: 34956 - -20,11: - 1: 7 - 0: 51200 - -20,12: - 0: 59534 - 1: 1632 - -19,11: - 0: 59008 - 1: 2056 - -19,12: - 0: 43198 - 1: 17984 - -19,8: - 1: 51328 - -19,10: - 1: 192 - -18,10: - 1: 61712 - -18,11: - 1: 4361 - 0: 26128 - -18,9: - 1: 1 - -18,12: - 0: 57463 - 1: 2056 - -17,10: - 1: 12288 - -17,12: - 0: 24826 - -20,13: - 0: 2188 - -19,13: - 0: 398 - 1: 96 - -18,13: - 1: 66 - 0: 128 - -21,9: - 1: 52454 + -9,9: + 0: 6 -25,-9: 1: 3840 -22,-9: @@ -11803,6 +11945,66 @@ entities: -30,-10: 1: 27776 0: 32768 + -59,-4: + 1: 61030 + -59,-5: + 1: 26214 + -59,-3: + 1: 17510 + -58,-4: + 1: 30468 + -58,-3: + 1: 64 + 0: 34816 + -58,-2: + 1: 32832 + 0: 8 + -58,-5: + 0: 34828 + 1: 32 + -59,-8: + 1: 58980 + -59,-7: + 1: 26214 + -59,-6: + 1: 26214 + -59,-9: + 1: 16384 + -58,-8: + 1: 4112 + 0: 52230 + -58,-7: + 1: 16 + 0: 58892 + -58,-6: + 1: 16 + 0: 52230 + -58,-9: + 0: 58884 + 1: 16 + -57,-9: + 0: 16377 + -56,-11: + 0: 18416 + -57,-11: + 0: 2048 + -56,-10: + 0: 28910 + -57,-10: + 0: 52620 + -55,-11: + 0: 1910 + -55,-10: + 0: 9011 + 1: 8 + 2: 34816 + -55,-12: + 0: 16384 + -54,-10: + 2: 4096 + 1: 32 + -58,-10: + 0: 27648 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -11985,7 +12187,7 @@ entities: - type: ContainedSolution containerName: food container: 12 - - uid: 17021 + - uid: 17565 components: - type: MetaData name: NTTG 431 "Save Pill" @@ -11996,11 +12198,11 @@ entities: chunks: 0,0: ind: 0,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAJQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAAQAAAAAAJQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 1,-1: ind: 1,-1 @@ -12160,21 +12362,21 @@ entities: - type: Joint joints: docking387992: !type:WeldJoint - bodyB: 17021 + bodyB: 17565 bodyA: 2 id: docking387992 localAnchorB: 9,-2.5 localAnchorA: 8,-2.5 - damping: 613.9708 - stiffness: 5510.9897 + damping: 614.0655 + stiffness: 5511.839 docking387991: !type:WeldJoint - bodyB: 17021 + bodyB: 17565 bodyA: 2 id: docking387991 localAnchorB: 9,-4.5 localAnchorA: 8,-4.5 - damping: 613.9708 - stiffness: 5510.9897 + damping: 614.0655 + stiffness: 5511.839 - type: GridAtmosphere version: 2 data: @@ -12182,20 +12384,38 @@ entities: 2,0: 0: 4 2,-1: - 0: 44268 + 1: 36076 + 0: 8192 3,-1: - 0: 14847 + 1: 14847 3,0: 0: 4 2,-2: - 0: 60580 + 0: 36 + 1: 60544 3,-2: - 0: 63796 + 1: 63792 + 0: 4 4,-2: - 0: 4096 + 1: 4096 4,-1: - 0: 17 + 1: 17 uniqueMixes: + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -12212,12 +12432,12 @@ entities: - 0 - 0 chunkSize: 4 - - uid: 17023 + - uid: 17567 components: - type: MetaData name: solution - food - type: Transform - parent: 17022 + parent: 17566 - type: Solution solution: maxVol: 1 @@ -12227,7 +12447,7 @@ entities: Quantity: 1 - type: ContainedSolution containerName: food - container: 17022 + container: 17566 - proto: ActionToggleBlock entities: - uid: 21 @@ -12242,14 +12462,28 @@ entities: parent: 22 - type: InstantAction container: 22 +- proto: ActionToggleInternals + entities: + - uid: 26 + components: + - type: Transform + parent: 25 + - type: InstantAction + container: 25 - proto: ActionToggleLight entities: - - uid: 25 + - uid: 37 components: - type: Transform - parent: 24 + parent: 36 + - type: InstantAction + container: 36 + - uid: 39 + components: + - type: Transform + parent: 38 - type: InstantAction - container: 24 + container: 38 - proto: ActionToggleMagboots entities: - uid: 28 @@ -12258,82 +12492,88 @@ entities: parent: 27 - type: InstantAction container: 27 + - uid: 30 + components: + - type: Transform + parent: 29 + - type: InstantAction + container: 29 - proto: AirAlarm entities: - - uid: 36 + - uid: 40 components: - type: Transform pos: -48.5,0.5 parent: 2 - type: DeviceList devices: - - 378 - - 9769 - - 9837 - - 376 - - 9841 - - 9785 - - 377 - - 9784 - - 9842 - - 7993 - - 7992 - - 7912 - - 7911 - - 7990 - - 7980 - - 7979 - - 7987 - - 7988 - - 7989 - - 7983 - - 7982 - - 7981 - - 7931 - - 7932 - - 7994 - - 7995 - - 7996 - - 384 - - 7991 - - uid: 37 + - 381 + - 10225 + - 10300 + - 379 + - 10304 + - 10240 + - 380 + - 10239 + - 10305 + - 8408 + - 8407 + - 8329 + - 8328 + - 8405 + - 8395 + - 8394 + - 8402 + - 8403 + - 8404 + - 8398 + - 8397 + - 8396 + - 8348 + - 8349 + - 8409 + - 8410 + - 8411 + - 387 + - 8406 + - uid: 41 components: - type: Transform pos: -78.5,10.5 parent: 2 - type: DeviceList devices: - - 9853 - - 9776 - - 380 - - 8022 - - 8023 - - 8024 - - 399 - - 8025 - - 8026 - - 8027 - - 8069 - - uid: 38 + - 10316 + - 10232 + - 383 + - 8437 + - 8438 + - 8439 + - 402 + - 8440 + - 8441 + - 8442 + - 8484 + - uid: 42 components: - type: Transform pos: -58.5,0.5 parent: 2 - type: DeviceList devices: - - 9836 - - 9777 - - 9838 - - 9797 - - 375 - - 374 - - 7913 - - 7997 - - 8002 - - 8071 - - 8070 - - 8067 - - uid: 39 + - 10299 + - 10233 + - 10301 + - 10252 + - 378 + - 377 + - 8330 + - 8412 + - 8417 + - 8486 + - 8485 + - 8482 + - uid: 43 components: - type: Transform rot: 1.5707963267948966 rad @@ -12341,22 +12581,21 @@ entities: parent: 2 - type: DeviceList devices: - - 9780 - - 9833 - - 9832 - - 9779 - - 9835 - - 9778 - - 9781 - - 9834 - - 8064 - - 396 - - 8066 - - 8003 - - 8065 + - 10236 + - 10296 + - 10295 + - 10235 + - 10298 + - 10234 + - 10297 + - 8479 + - 399 + - 8481 + - 8418 + - 8480 + - 400 - 397 - - 394 - - uid: 40 + - uid: 44 components: - type: Transform rot: -1.5707963267948966 rad @@ -12364,35 +12603,35 @@ entities: parent: 2 - type: DeviceList devices: - - 8004 - - 8063 - - 8062 - - 8061 - - 8059 - - 392 - - 393 - - 9839 - - 9809 - - 8058 - - 7986 - - 7985 - - 7984 - - uid: 41 + - 8419 + - 8478 + - 8477 + - 8476 + - 8474 + - 395 + - 396 + - 10302 + - 10263 + - 8473 + - 8401 + - 8400 + - 8399 + - uid: 45 components: - type: Transform pos: -60.5,-20.5 parent: 2 - type: DeviceList devices: - - 9810 - - 9855 - - 373 - - 8056 - - 8060 - - 7958 - - 7959 - - 7957 - - uid: 42 + - 10264 + - 10318 + - 376 + - 8471 + - 8475 + - 8375 + - 8376 + - 8374 + - uid: 46 components: - type: Transform rot: 3.141592653589793 rad @@ -12400,22 +12639,22 @@ entities: parent: 2 - type: DeviceList devices: - - 9854 - - 9811 - - 379 - - 8062 - - 8063 - - 8061 - - 7914 - - 7921 - - 7920 - - 7919 - - 8068 - - 7917 - - 7918 - - 7916 - - 398 - - uid: 43 + - 10317 + - 10265 + - 382 + - 8477 + - 8478 + - 8476 + - 8331 + - 8338 + - 8337 + - 8336 + - 8483 + - 8334 + - 8335 + - 8333 + - 401 + - uid: 47 components: - type: Transform rot: 3.141592653589793 rad @@ -12423,22 +12662,22 @@ entities: parent: 2 - type: DeviceList devices: - - 9856 - - 9775 - - 9859 - - 9774 - - 8021 - - 8019 - - 8020 - - 7902 - - 7903 - - 8032 - - 8031 - - 8017 - - 8018 - - 385 - - 8030 - - uid: 44 + - 10319 + - 10231 + - 10322 + - 10230 + - 8436 + - 8434 + - 8435 + - 8319 + - 8320 + - 8447 + - 8446 + - 8432 + - 8433 + - 388 + - 8445 + - uid: 48 components: - type: Transform rot: -1.5707963267948966 rad @@ -12446,18 +12685,18 @@ entities: parent: 2 - type: DeviceList devices: - - 9812 - - 9857 - - 8072 - - 8075 - - 8073 - - 8074 - - 8076 - - 8077 - - 8078 - - 403 - - 404 - - uid: 45 + - 10266 + - 10320 + - 8487 + - 8490 + - 8488 + - 8489 + - 8491 + - 8492 + - 8493 + - 406 + - 407 + - uid: 49 components: - type: Transform rot: 3.141592653589793 rad @@ -12465,39 +12704,39 @@ entities: parent: 2 - type: DeviceList devices: - - 9858 - - 9860 - - 9771 - - 405 - - 8076 - - 8077 - - 8078 - - uid: 46 + - 10321 + - 10323 + - 10227 + - 408 + - 8491 + - 8492 + - 8493 + - uid: 50 components: - type: Transform pos: -113.5,1.5 parent: 2 - type: DeviceList devices: - - 9772 - - 9862 - - 9861 - - 9773 - - 7891 - - 7892 - - 7893 - - 7894 - - 7895 - - 7896 - - 7897 - - 8079 - - 7886 - - 8018 - - 8017 - - 7875 - - 7874 - - 406 - - uid: 47 + - 10228 + - 10325 + - 10324 + - 10229 + - 8309 + - 8310 + - 8311 + - 8312 + - 8313 + - 8314 + - 8315 + - 8494 + - 8288 + - 8433 + - 8432 + - 8277 + - 8276 + - 409 + - uid: 51 components: - type: Transform rot: -1.5707963267948966 rad @@ -12505,87 +12744,83 @@ entities: parent: 2 - type: DeviceList devices: - - 9863 - - 9813 - - 9864 - - 9814 - - 7874 - - 7875 - - 7884 - - 7883 - - 8080 - - 407 - - 8081 - - 8083 - - 8082 - - 8085 - - 8084 - - 409 - - 408 - - 7960 - - 7961 - - 7962 - - uid: 48 + - 10326 + - 10267 + - 10327 + - 10268 + - 8276 + - 8277 + - 8286 + - 8285 + - 8495 + - 410 + - 8496 + - 8498 + - 8497 + - 8500 + - 8499 + - 412 + - 411 + - 8377 + - 8378 + - 8379 + - uid: 52 components: - type: Transform pos: -174.5,-1.5 parent: 2 - type: DeviceList devices: - - 9875 - - 9817 - - 9865 - - 9816 - - 9876 - - 9803 - - 7960 - - 7961 - - 7962 - - 425 - - 7964 - - 7963 - - 8005 - - 426 - - 7965 - - 7966 - - 427 - - uid: 49 + - 10338 + - 10271 + - 10328 + - 10270 + - 10339 + - 10257 + - 8377 + - 8378 + - 8379 + - 428 + - 8381 + - 8380 + - 8420 + - 429 + - 8382 + - 8383 + - 430 + - uid: 53 components: - type: Transform pos: -196.5,-1.5 parent: 2 - type: DeviceList devices: - - 9802 - - 9801 - - 9877 - - 9800 - - 9880 - - 9879 - - 9799 - - 9882 - - 9798 - - 9881 - - 9770 - - 9883 - - 9878 - - 427 - - 7970 - - 7968 - - 8009 - - 8008 - - 8007 - - 7969 - - 8006 - - 428 - - 8014 - - 8015 - - 8016 - - 429 - - 7971 - - 8010 - - 8011 - - uid: 50 + - 10256 + - 10340 + - 10255 + - 10342 + - 10341 + - 10254 + - 10344 + - 10253 + - 10343 + - 10226 + - 10345 + - 430 + - 8424 + - 8423 + - 8422 + - 8385 + - 8421 + - 431 + - 8429 + - 8430 + - 8431 + - 432 + - 8386 + - 8425 + - 8426 + - uid: 54 components: - type: Transform rot: 3.141592653589793 rad @@ -12593,105 +12828,105 @@ entities: parent: 2 - type: DeviceList devices: - - 9866 - - 9815 - - 9868 - - 9804 - - 9867 - - 8042 - - 8043 - - 8044 - - 7906 - - 7907 - - 8039 - - 8038 - - 8037 - - 8036 - - 8035 - - 8040 - - 8041 - - 8045 - - 8046 - - 9822 - - 417 - - 416 - - 418 + - 10329 + - 10269 + - 10331 + - 10258 + - 10330 + - 8457 + - 8458 + - 8459 + - 8323 + - 8324 + - 8454 + - 8453 + - 8452 + - 8451 + - 8450 + - 8455 + - 8456 + - 8460 + - 8461 + - 10276 + - 420 - 419 - 421 - - 420 + - 422 - 424 - 423 - - 422 - - uid: 51 + - 427 + - 426 + - 425 + - uid: 55 components: - type: Transform pos: -160.5,6.5 parent: 2 - type: DeviceList devices: - - 7898 - - 8091 - - 8090 - - 8092 - - 8089 - - 7880 - - 411 - - 7888 - - 7887 - - 7889 - - 7890 - - 8088 - - 7910 - - 7967 - - 8048 - - 8047 - - 8087 - - 410 - - 9818 - - 7909 - - 7908 - - 9848 - - 7905 - - 7904 - - uid: 52 + - 8316 + - 8506 + - 8505 + - 8507 + - 8504 + - 8282 + - 414 + - 8306 + - 8305 + - 8307 + - 8308 + - 8503 + - 8327 + - 8384 + - 8463 + - 8462 + - 8502 + - 413 + - 10272 + - 8326 + - 8325 + - 10311 + - 8322 + - 8321 + - uid: 56 components: - type: Transform pos: -158.5,12.5 parent: 2 - type: DeviceList devices: - - 9805 - - 9871 - - 9872 - - 9807 - - 9873 - - 9808 - - 9874 - - 9806 - - 7967 - - 7910 - - 8086 - - 7876 - - 7877 - - 7885 - - 7878 - - 7879 - - 413 - - 412 - - 7898 - - 414 + - 10259 + - 10334 + - 10335 + - 10261 + - 10336 + - 10262 + - 10337 + - 10260 + - 8384 + - 8327 + - 8501 + - 8278 + - 8279 + - 8287 + - 8280 + - 8281 + - 416 - 415 - - uid: 53 + - 8316 + - 417 + - 418 + - uid: 57 components: - type: Transform pos: -75.5,-1.5 parent: 2 - type: DeviceList devices: - - 9885 - - 9886 - - 9887 - - uid: 54 + - 10347 + - 10348 + - 10349 + - uid: 58 components: - type: Transform rot: 1.5707963267948966 rad @@ -12699,73 +12934,73 @@ entities: parent: 2 - type: DeviceList devices: - - 9830 - - 9829 - - uid: 55 + - 10293 + - 10292 + - uid: 59 components: - type: Transform pos: -78.5,25.5 parent: 2 - type: DeviceList devices: - - 366 - - uid: 56 + - 369 + - uid: 60 components: - type: Transform pos: -75.5,25.5 parent: 2 - type: DeviceList devices: - - 367 - - uid: 57 + - 370 + - uid: 61 components: - type: Transform pos: -72.5,25.5 parent: 2 - type: DeviceList devices: - - 369 - - uid: 58 + - 372 + - uid: 62 components: - type: Transform pos: -69.5,25.5 parent: 2 - type: DeviceList devices: - - 368 - - uid: 59 + - 371 + - uid: 63 components: - type: Transform pos: -66.5,25.5 parent: 2 - type: DeviceList devices: - - 370 - - uid: 60 + - 373 + - uid: 64 components: - type: Transform pos: -60.5,25.5 parent: 2 - type: DeviceList devices: - - 371 - - uid: 61 + - 374 + - uid: 65 components: - type: Transform pos: -57.5,25.5 parent: 2 - type: DeviceList devices: - - 365 - - uid: 62 + - 368 + - uid: 66 components: - type: Transform pos: -54.5,25.5 parent: 2 - type: DeviceList devices: - - 372 - - uid: 63 + - 375 + - uid: 67 components: - type: Transform rot: -1.5707963267948966 rad @@ -12773,38 +13008,38 @@ entities: parent: 2 - type: DeviceList devices: - - 7951 - - 7952 - - 388 - - 9787 - - 9844 - - 7950 - - 7949 - - 7948 - - 8053 - - 8049 - - 7928 - - 7927 - - 7934 - - 9851 - - 383 - - 8051 - - 8050 - - 389 - - 9789 - - 9846 - - 7933 - - 7936 - - 7915 + - 8368 + - 8369 - 391 - - 7954 - - 7929 - - 7930 - - 8054 - - 9845 - - 9786 - - 7937 - - uid: 64 + - 10242 + - 10307 + - 8367 + - 8366 + - 8365 + - 8468 + - 8464 + - 8345 + - 8344 + - 8351 + - 10314 + - 386 + - 8466 + - 8465 + - 392 + - 10244 + - 10309 + - 8350 + - 8353 + - 8332 + - 394 + - 8371 + - 8346 + - 8347 + - 8469 + - 10308 + - 10241 + - 8354 + - uid: 68 components: - type: Transform rot: 1.5707963267948966 rad @@ -12812,11 +13047,11 @@ entities: parent: 2 - type: DeviceList devices: - - 9850 - - 9791 - - 7942 - - 8052 - - uid: 65 + - 10313 + - 10246 + - 8359 + - 8467 + - uid: 69 components: - type: Transform rot: 1.5707963267948966 rad @@ -12824,38 +13059,38 @@ entities: parent: 2 - type: DeviceList devices: - - 381 - - 9849 - - 9790 - - 7935 - - 7938 - - 7923 - - 382 - - 7940 - - 7939 - - 7926 - - 7922 - - 7924 - - 7925 - - 8055 - - 8057 - - uid: 66 + - 384 + - 10312 + - 10245 + - 8352 + - 8355 + - 8340 + - 385 + - 8357 + - 8356 + - 8343 + - 8339 + - 8341 + - 8342 + - 8470 + - 8472 + - uid: 70 components: - type: Transform pos: -36.5,6.5 parent: 2 - type: DeviceList devices: - - 9796 - - 9843 - - 7953 - - 7956 - - 7972 - - 7955 - - 7973 - - 7974 - - 395 - - uid: 67 + - 10251 + - 10306 + - 8370 + - 8373 + - 8387 + - 8372 + - 8388 + - 8389 + - 398 + - uid: 71 components: - type: Transform rot: -1.5707963267948966 rad @@ -12863,43 +13098,43 @@ entities: parent: 2 - type: DeviceList devices: - - 9793 - - 9831 - - 386 - - 9795 - - 9828 - - 9794 - - 9847 - - 7946 - - 7947 - - 7944 - - 7945 - - 7943 - - 442 - - uid: 68 + - 10248 + - 10294 + - 389 + - 10250 + - 10291 + - 10249 + - 10310 + - 8363 + - 8364 + - 8361 + - 8362 + - 8360 + - 437 + - uid: 72 components: - type: Transform pos: -85.5,-6.5 parent: 2 - type: DeviceList devices: - - 401 - - 400 - - 402 - - 8034 - - 8033 - - 8029 - - 8028 - - 8032 - - 8031 - - 8030 - - 8025 - - 8026 - - 8027 - - 7918 - - 7917 - - 7916 - - uid: 69 + - 404 + - 403 + - 405 + - 8449 + - 8448 + - 8444 + - 8443 + - 8447 + - 8446 + - 8445 + - 8440 + - 8441 + - 8442 + - 8335 + - 8334 + - 8333 + - uid: 73 components: - type: Transform rot: -1.5707963267948966 rad @@ -12907,164 +13142,147 @@ entities: parent: 2 - type: DeviceList devices: - - 9798 - - 9882 - - 8013 - - 8012 - - 429 + - 10253 + - 10344 + - 8428 + - 8427 - 432 - - 7881 - - 7882 - - 431 - - uid: 70 + - 435 + - 8283 + - 8284 + - 434 + - uid: 74 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -193.5,16.5 + pos: -184.5,-19.5 parent: 2 - type: DeviceList devices: - - 9893 - - 9827 - - 8095 - - 8094 - - 439 - - 8096 - - 8093 - - 438 - - 8098 - - 8097 - - 8100 - - 8099 - - 8102 - - 8101 - - 433 - - 9826 - - 9892 - - 8104 - - 434 - - 435 - - 8103 - - uid: 71 + - 8508 + - 8510 + - 8509 + - 8512 + - 8511 + - 8514 + - 8513 + - 436 + - uid: 75 components: - type: Transform - pos: -184.5,-19.5 + pos: -175.5,4.5 parent: 2 - type: DeviceList devices: - - 441 - - 8105 - - 8112 - - 7899 - - 8113 - - 8114 - - 8107 - - 8106 - - 8109 - - 8108 - - 8111 - - 8110 - - 440 - - uid: 72 + - 438 + - 8517 + - 10275 + - 8504 + - uid: 76 components: - type: Transform - pos: -175.5,4.5 + pos: -198.5,11.5 parent: 2 - type: DeviceList devices: - - 443 - - 8117 - - 9821 - - 8089 + - 8301 + - 8273 + - 8275 + - 8304 + - 8303 + - 8274 + - 8272 + - 440 + - 439 + - 441 + - 10285 + - 10289 + - 10223 + - 10290 + - 10288 + - 10286 + - 10287 - proto: AirAlarmElectronics entities: - - uid: 73 + - uid: 77 components: - type: Transform pos: -58.356236,19.553587 parent: 2 - - uid: 74 + - uid: 78 components: - type: Transform pos: -58.574986,19.678587 parent: 2 - proto: AirCanister entities: - - uid: 75 + - uid: 79 components: - type: Transform pos: -66.5,18.5 parent: 2 - - uid: 76 + - uid: 80 components: - type: Transform pos: -66.5,17.5 parent: 2 + - uid: 81 + components: + - type: Transform + pos: -193.5,1.5 + parent: 2 - proto: Airlock entities: - - uid: 77 + - uid: 82 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,9.5 parent: 2 - - uid: 78 + - uid: 83 components: - type: Transform rot: -1.5707963267948966 rad pos: -104.5,9.5 parent: 2 - - uid: 79 + - uid: 84 components: - type: Transform rot: -1.5707963267948966 rad pos: -104.5,5.5 parent: 2 - - uid: 80 + - uid: 85 components: - type: Transform rot: -1.5707963267948966 rad pos: -102.5,15.5 parent: 2 - - uid: 81 + - uid: 86 components: - type: Transform pos: -27.5,6.5 parent: 2 - proto: AirlockArmoryGlassLocked entities: - - uid: 82 + - uid: 87 components: - type: Transform pos: -161.5,10.5 parent: 2 -- proto: AirlockAssembly - entities: - - uid: 83 - components: - - type: Transform - pos: -55.5,48.5 - parent: 2 - - uid: 84 - components: - - type: Transform - pos: -75.5,49.5 - parent: 2 - proto: AirlockAtmosphericsGlassLocked entities: - - uid: 85 + - uid: 88 components: - type: Transform pos: -59.5,13.5 parent: 2 - - uid: 86 + - uid: 89 components: - type: Transform pos: -57.5,13.5 parent: 2 - proto: AirlockBarLocked entities: - - uid: 87 + - uid: 90 components: - type: Transform rot: -1.5707963267948966 rad @@ -13072,117 +13290,169 @@ entities: parent: 2 - proto: AirlockCaptainLocked entities: - - uid: 88 - components: - - type: Transform - pos: -5.5,-10.5 - parent: 2 - - uid: 89 - components: - - type: Transform - pos: -7.5,-5.5 - parent: 2 -- proto: AirlockCargoLocked - entities: - - uid: 90 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-20.5 - parent: 2 - uid: 91 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,-24.5 + pos: -5.5,-10.5 parent: 2 - uid: 92 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-17.5 + pos: -7.5,-5.5 parent: 2 -- proto: AirlockChapelGlassLocked +- proto: AirlockCargo entities: - uid: 93 components: - type: Transform - pos: -39.5,6.5 + rot: 1.5707963267948966 rad + pos: -216.5,-12.5 parent: 2 -- proto: AirlockChapelLocked - entities: - uid: 94 components: - type: Transform - pos: -41.5,8.5 + pos: -225.5,-15.5 parent: 2 -- proto: AirlockChemistry - entities: - uid: 95 components: - type: Transform - rot: 3.141592653589793 rad - pos: -189.5,-23.5 + pos: -219.5,-14.5 parent: 2 -- proto: AirlockChiefEngineerGlassLocked - entities: - uid: 96 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,1.5 + pos: -216.5,-32.5 parent: 2 -- proto: AirlockChiefMedicalOfficerLocked - entities: - uid: 97 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -187.5,-11.5 + pos: -228.5,-32.5 parent: 2 -- proto: AirlockCommand - entities: - uid: 98 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,20.5 + pos: -228.5,-24.5 parent: 2 -- proto: AirlockCommandGlassLocked - entities: - uid: 99 components: - type: Transform - pos: -18.5,7.5 + pos: -227.5,-28.5 parent: 2 - uid: 100 components: - type: Transform - pos: -10.5,-15.5 + pos: -227.5,-20.5 parent: 2 +- proto: AirlockCargoLocked + entities: - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-20.5 + parent: 2 + - uid: 102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-24.5 + parent: 2 + - uid: 103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-17.5 + parent: 2 +- proto: AirlockChapelGlassLocked + entities: + - uid: 104 + components: + - type: Transform + pos: -39.5,6.5 + parent: 2 +- proto: AirlockChapelLocked + entities: + - uid: 105 + components: + - type: Transform + pos: -41.5,8.5 + parent: 2 +- proto: AirlockChemistryGlassLocked + entities: + - uid: 106 + components: + - type: Transform + pos: -188.5,-24.5 + parent: 2 +- proto: AirlockChiefEngineerGlassLocked + entities: + - uid: 107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,1.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -187.5,-11.5 + parent: 2 +- proto: AirlockCommand + entities: + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,20.5 + parent: 2 + - uid: 110 + components: + - type: Transform + pos: -219.5,-27.5 + parent: 2 + - uid: 111 + components: + - type: Transform + pos: -219.5,-21.5 + parent: 2 +- proto: AirlockCommandGlassLocked + entities: + - uid: 112 + components: + - type: Transform + pos: -18.5,7.5 + parent: 2 + - uid: 113 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 2 + - uid: 114 components: - type: Transform pos: -10.5,-16.5 parent: 2 - proto: AirlockCommandLocked entities: - - uid: 102 + - uid: 115 components: - type: Transform pos: -9.5,-5.5 parent: 2 - - uid: 103 + - uid: 116 components: - type: Transform pos: -5.5,-3.5 parent: 2 - - uid: 104 + - uid: 117 components: - type: Transform pos: -11.5,-3.5 parent: 2 - - uid: 105 + - uid: 118 components: - type: Transform rot: -1.5707963267948966 rad @@ -13190,144 +13460,145 @@ entities: parent: 2 - proto: AirlockDetectiveGlassLocked entities: - - uid: 106 + - uid: 119 components: - type: Transform pos: -150.5,3.5 parent: 2 - - uid: 107 + - uid: 120 components: - type: Transform pos: -148.5,1.5 parent: 2 -- proto: AirlockEngineeringGlassLocked +- proto: AirlockEngineering entities: - - uid: 108 + - uid: 121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-3.5 + pos: -221.5,-40.5 parent: 2 - - uid: 109 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 122 components: - type: Transform rot: -1.5707963267948966 rad - pos: -74.5,-3.5 + pos: -76.5,-3.5 parent: 2 - - uid: 110 + - uid: 123 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-3.5 parent: 2 - - uid: 111 + - uid: 124 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-3.5 parent: 2 - - uid: 112 + - uid: 125 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-8.5 parent: 2 - - uid: 113 + - uid: 126 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,6.5 parent: 2 - - uid: 114 + - uid: 127 components: - type: Transform pos: -14.5,-13.5 parent: 2 - - uid: 115 + - uid: 128 components: - type: Transform pos: -66.5,-3.5 parent: 2 - - uid: 116 + - uid: 129 components: - type: Transform pos: -61.5,-8.5 parent: 2 - - uid: 117 + - uid: 130 components: - type: Transform pos: -65.5,-13.5 parent: 2 - proto: AirlockEngineeringLocked entities: - - uid: 118 + - uid: 131 components: - type: Transform pos: -16.5,6.5 parent: 2 - - uid: 119 + - uid: 132 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,0.5 parent: 2 - - uid: 120 + - uid: 133 components: - type: Transform rot: 1.5707963267948966 rad pos: -121.5,-15.5 parent: 2 - - uid: 121 + - uid: 134 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-19.5 parent: 2 - - uid: 122 + - uid: 135 components: - type: Transform rot: -1.5707963267948966 rad pos: -173.5,-5.5 parent: 2 - - uid: 123 + - uid: 136 components: - type: Transform rot: -1.5707963267948966 rad pos: -99.5,-22.5 parent: 2 - - uid: 124 + - uid: 137 components: - type: Transform pos: -37.5,16.5 parent: 2 - - uid: 125 + - uid: 138 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,11.5 parent: 2 - - uid: 126 + - uid: 139 components: - type: Transform pos: -14.5,-10.5 parent: 2 - - uid: 127 + - uid: 140 components: - type: Transform pos: -13.5,6.5 parent: 2 - - uid: 128 + - uid: 141 components: - type: Transform pos: -38.5,-23.5 parent: 2 - - uid: 129 + - uid: 142 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,0.5 parent: 2 - - uid: 130 + - uid: 143 components: - type: Transform rot: 1.5707963267948966 rad @@ -13335,244 +13606,229 @@ entities: parent: 2 - proto: AirlockEVAGlassLocked entities: - - uid: 131 + - uid: 144 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-13.5 parent: 2 - - uid: 132 + - uid: 145 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-12.5 parent: 2 - - uid: 133 + - uid: 146 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-10.5 parent: 2 - - uid: 134 + - uid: 147 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-10.5 parent: 2 - - uid: 135 + - uid: 148 components: - type: Transform pos: -21.5,-17.5 parent: 2 -- proto: AirlockEVALocked - entities: - - uid: 136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,50.5 - parent: 2 - proto: AirlockExternal entities: - - uid: 137 + - uid: 149 components: - type: Transform rot: -1.5707963267948966 rad pos: -102.5,0.5 parent: 2 - - uid: 138 + - uid: 150 components: - type: Transform rot: -1.5707963267948966 rad pos: -95.5,4.5 parent: 2 - - uid: 139 + - uid: 151 components: - type: Transform rot: -1.5707963267948966 rad pos: -102.5,-1.5 parent: 2 - - uid: 140 + - uid: 152 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,4.5 parent: 2 + - uid: 153 + components: + - type: Transform + pos: -220.5,1.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: -224.5,1.5 + parent: 2 +- proto: AirlockExternalCargoLocked + entities: + - uid: 155 + components: + - type: Transform + pos: -59.5,-27.5 + parent: 2 + - uid: 156 + components: + - type: Transform + pos: -57.5,-27.5 + parent: 2 - proto: AirlockExternalEngineeringLocked entities: - - uid: 141 + - uid: 157 components: - type: Transform rot: -1.5707963267948966 rad pos: -102.5,-25.5 parent: 2 - - uid: 142 + - uid: 158 components: - type: Transform rot: -1.5707963267948966 rad pos: -102.5,-27.5 parent: 2 - - uid: 143 + - uid: 159 components: - type: Transform pos: -125.5,14.5 parent: 2 - - uid: 144 + - uid: 160 components: - type: Transform pos: -125.5,12.5 parent: 2 - proto: AirlockExternalGlass entities: - - uid: 145 + - uid: 161 components: - type: Transform rot: 1.5707963267948966 rad pos: -191.5,-13.5 parent: 2 - - uid: 146 + - uid: 162 components: - type: Transform rot: 3.141592653589793 rad pos: -181.5,-13.5 parent: 2 - - uid: 147 + - uid: 163 components: - type: Transform rot: 3.141592653589793 rad pos: -179.5,-13.5 parent: 2 - - uid: 148 + - uid: 164 components: - type: Transform rot: 1.5707963267948966 rad pos: -193.5,-13.5 parent: 2 - - uid: 149 + - uid: 165 components: - type: Transform rot: 1.5707963267948966 rad pos: -191.5,-19.5 parent: 2 - - uid: 150 + - uid: 166 components: - type: Transform rot: 1.5707963267948966 rad pos: -193.5,-19.5 parent: 2 - - uid: 151 + - uid: 167 components: - type: Transform rot: 3.141592653589793 rad pos: -179.5,-19.5 parent: 2 - - uid: 152 + - uid: 168 components: - type: Transform rot: 3.141592653589793 rad pos: -181.5,-19.5 parent: 2 - - uid: 153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -188.5,4.5 - parent: 2 - - uid: 154 + - uid: 169 components: - type: Transform rot: -1.5707963267948966 rad pos: -204.5,4.5 parent: 2 - - uid: 155 + - uid: 170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -204.5,11.5 + pos: -137.5,-7.5 parent: 2 - - uid: 156 + - uid: 171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -188.5,11.5 + pos: -144.5,-7.5 parent: 2 - - uid: 157 + - uid: 172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -190.5,11.5 + pos: -220.5,-0.5 parent: 2 - - uid: 158 + - uid: 173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -202.5,11.5 + pos: -224.5,-0.5 parent: 2 - - uid: 159 + - uid: 174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -190.5,4.5 + pos: -204.5,12.5 parent: 2 - - uid: 160 + - uid: 175 components: - type: Transform - rot: -1.5707963267948966 rad pos: -202.5,4.5 parent: 2 - - uid: 161 - components: - - type: Transform - pos: -137.5,-7.5 - parent: 2 - - uid: 162 + - uid: 176 components: - type: Transform - pos: -144.5,-7.5 + pos: -202.5,12.5 parent: 2 - proto: AirlockExternalGlassAtmosphericsLocked entities: - - uid: 163 + - uid: 177 components: - type: Transform pos: -79.5,17.5 parent: 2 - - uid: 164 + - uid: 178 components: - type: Transform pos: -77.5,17.5 parent: 2 -- proto: AirlockExternalGlassCargoLocked - entities: - - uid: 165 - components: - - type: Transform - pos: -57.5,-25.5 - parent: 2 - - uid: 166 - components: - - type: Transform - pos: -59.5,-25.5 - parent: 2 - proto: AirlockExternalGlassEngineeringLocked entities: - - uid: 167 + - uid: 179 components: - type: Transform pos: -13.5,11.5 parent: 2 - - uid: 168 + - uid: 180 components: - type: Transform pos: -13.5,13.5 parent: 2 - - uid: 169 + - uid: 181 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-26.5 parent: 2 - - uid: 170 + - uid: 182 components: - type: Transform rot: -1.5707963267948966 rad @@ -13580,44 +13836,54 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 171 + - uid: 183 components: - type: Transform pos: -26.5,-17.5 parent: 2 - - uid: 172 + - uid: 184 components: - type: Transform pos: -30.5,-17.5 parent: 2 - - uid: 173 + - uid: 185 components: - type: Transform pos: -35.5,-17.5 parent: 2 -- proto: AirlockExternalGlassShuttleLocked +- proto: AirlockExternalLocked entities: - - uid: 174 + - uid: 186 components: - type: Transform - pos: -57.5,-27.5 + rot: 1.5707963267948966 rad + pos: -84.5,-20.5 parent: 2 - - uid: 175 + - uid: 187 components: - type: Transform - pos: -59.5,-27.5 + pos: -224.5,-38.5 parent: 2 -- proto: AirlockExternalLocked + - uid: 188 + components: + - type: Transform + pos: -225.5,-39.5 + parent: 2 +- proto: AirlockExternalShuttleLocked entities: - - uid: 176 + - uid: 189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,-20.5 + pos: -57.5,-29.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: -59.5,-29.5 parent: 2 - proto: AirlockFreezer entities: - - uid: 177 + - uid: 191 components: - type: Transform rot: 1.5707963267948966 rad @@ -13625,347 +13891,337 @@ entities: parent: 2 - proto: AirlockGlass entities: - - uid: 178 + - uid: 192 components: - type: Transform pos: -90.5,-2.5 parent: 2 - - uid: 179 + - uid: 193 components: - type: Transform pos: -90.5,-3.5 parent: 2 - - uid: 180 + - uid: 194 components: - type: Transform pos: -90.5,-4.5 parent: 2 - - uid: 181 + - uid: 195 components: - type: Transform pos: -109.5,-2.5 parent: 2 - - uid: 182 + - uid: 196 components: - type: Transform pos: -109.5,-4.5 parent: 2 - - uid: 183 + - uid: 197 components: - type: Transform pos: -121.5,-2.5 parent: 2 - - uid: 184 + - uid: 198 components: - type: Transform pos: -121.5,-4.5 parent: 2 - - uid: 185 + - uid: 199 components: - type: Transform pos: -150.5,-2.5 parent: 2 - - uid: 186 + - uid: 200 components: - type: Transform pos: -150.5,-3.5 parent: 2 - - uid: 187 + - uid: 201 components: - type: Transform pos: -150.5,-4.5 parent: 2 - - uid: 188 + - uid: 202 components: - type: Transform pos: -175.5,-2.5 parent: 2 - - uid: 189 + - uid: 203 components: - type: Transform pos: -175.5,-3.5 parent: 2 - - uid: 190 + - uid: 204 components: - type: Transform pos: -175.5,-4.5 parent: 2 - - uid: 191 - components: - - type: Transform - pos: -187.5,-1.5 - parent: 2 - - uid: 192 - components: - - type: Transform - pos: -185.5,-1.5 - parent: 2 - - uid: 193 + - uid: 205 components: - type: Transform pos: -192.5,-2.5 parent: 2 - - uid: 194 + - uid: 206 components: - type: Transform pos: -192.5,-4.5 parent: 2 - - uid: 195 + - uid: 207 components: - type: Transform pos: -192.5,-3.5 parent: 2 - - uid: 196 + - uid: 208 components: - type: Transform pos: -196.5,-5.5 parent: 2 - - uid: 197 + - uid: 209 components: - type: Transform pos: -194.5,-5.5 parent: 2 - - uid: 198 + - uid: 210 components: - type: Transform pos: -204.5,-4.5 parent: 2 - - uid: 199 + - uid: 211 components: - type: Transform pos: -204.5,-3.5 parent: 2 - - uid: 200 + - uid: 212 components: - type: Transform pos: -204.5,-2.5 parent: 2 - - uid: 201 + - uid: 213 components: - type: Transform pos: -208.5,-4.5 parent: 2 - - uid: 202 + - uid: 214 components: - type: Transform pos: -208.5,-3.5 parent: 2 - - uid: 203 + - uid: 215 components: - type: Transform pos: -208.5,-2.5 parent: 2 - - uid: 204 + - uid: 216 components: - type: Transform pos: -207.5,-1.5 parent: 2 - - uid: 205 + - uid: 217 components: - type: Transform pos: -205.5,-1.5 parent: 2 - - uid: 206 + - uid: 218 components: - type: Transform pos: -212.5,-5.5 parent: 2 - - uid: 207 + - uid: 219 components: - type: Transform pos: -214.5,-5.5 parent: 2 - - uid: 208 + - uid: 220 components: - type: Transform rot: -1.5707963267948966 rad pos: -176.5,-5.5 parent: 2 - - uid: 209 + - uid: 221 components: - type: Transform rot: -1.5707963267948966 rad pos: -178.5,-5.5 parent: 2 - - uid: 210 + - uid: 222 components: - type: Transform pos: -81.5,9.5 parent: 2 - - uid: 211 + - uid: 223 components: - type: Transform pos: -81.5,8.5 parent: 2 - - uid: 212 + - uid: 224 components: - type: Transform pos: -81.5,7.5 parent: 2 - - uid: 213 + - uid: 225 components: - type: Transform pos: -81.5,-14.5 parent: 2 - - uid: 214 + - uid: 226 components: - type: Transform pos: -81.5,-15.5 parent: 2 - - uid: 215 + - uid: 227 components: - type: Transform pos: -81.5,-16.5 parent: 2 - - uid: 216 + - uid: 228 components: - type: Transform pos: -52.5,7.5 parent: 2 - - uid: 217 + - uid: 229 components: - type: Transform pos: -52.5,8.5 parent: 2 - - uid: 218 + - uid: 230 components: - type: Transform pos: -52.5,9.5 parent: 2 - - uid: 219 + - uid: 231 components: - type: Transform pos: -51.5,-13.5 parent: 2 - - uid: 220 + - uid: 232 components: - type: Transform pos: -50.5,-13.5 parent: 2 - - uid: 221 + - uid: 233 components: - type: Transform pos: -49.5,-13.5 parent: 2 - - uid: 222 + - uid: 234 components: - type: Transform pos: -44.5,-5.5 parent: 2 - - uid: 223 + - uid: 235 components: - type: Transform pos: -44.5,-6.5 parent: 2 - - uid: 224 + - uid: 236 components: - type: Transform pos: -48.5,-3.5 parent: 2 - - uid: 225 + - uid: 237 components: - type: Transform pos: -49.5,-3.5 parent: 2 - - uid: 226 + - uid: 238 components: - type: Transform pos: -49.5,-8.5 parent: 2 - - uid: 227 + - uid: 239 components: - type: Transform pos: -48.5,-8.5 parent: 2 - - uid: 228 + - uid: 240 components: - type: Transform pos: -38.5,-9.5 parent: 2 - - uid: 229 + - uid: 241 components: - type: Transform pos: -35.5,-13.5 parent: 2 - - uid: 230 + - uid: 242 components: - type: Transform pos: -37.5,-13.5 parent: 2 - - uid: 231 + - uid: 243 components: - type: Transform pos: -38.5,-11.5 parent: 2 - - uid: 232 + - uid: 244 components: - type: Transform pos: -14.5,2.5 parent: 2 - - uid: 233 + - uid: 245 components: - type: Transform pos: -13.5,2.5 parent: 2 - - uid: 234 + - uid: 246 components: - type: Transform pos: -12.5,2.5 parent: 2 - - uid: 235 + - uid: 247 components: - type: Transform pos: -15.5,-7.5 parent: 2 - - uid: 236 + - uid: 248 components: - type: Transform pos: -15.5,-8.5 parent: 2 - - uid: 237 + - uid: 249 components: - type: Transform pos: -15.5,-9.5 parent: 2 - - uid: 238 + - uid: 250 components: - type: Transform pos: -48.5,-15.5 parent: 2 - - uid: 239 + - uid: 251 components: - type: Transform pos: -46.5,0.5 parent: 2 - - uid: 240 + - uid: 252 components: - type: Transform pos: -48.5,2.5 parent: 2 - - uid: 241 + - uid: 253 components: - type: Transform pos: -48.5,3.5 parent: 2 - - uid: 242 + - uid: 254 components: - type: Transform rot: 1.5707963267948966 rad pos: -162.5,-18.5 parent: 2 - - uid: 243 + - uid: 255 components: - type: Transform rot: 1.5707963267948966 rad pos: -162.5,-21.5 parent: 2 - - uid: 244 + - uid: 256 components: - type: Transform rot: 1.5707963267948966 rad pos: -161.5,-22.5 parent: 2 - - uid: 245 + - uid: 257 components: - type: Transform rot: 1.5707963267948966 rad @@ -13973,72 +14229,72 @@ entities: parent: 2 - proto: AirlockGlassShuttle entities: - - uid: 246 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -211.5,-19.5 - parent: 2 - - uid: 247 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -211.5,-13.5 - parent: 2 - - uid: 248 + - uid: 258 components: - type: Transform rot: -1.5707963267948966 rad pos: -197.5,-13.5 parent: 2 - - uid: 249 + - uid: 259 components: - type: Transform rot: -1.5707963267948966 rad pos: -197.5,-19.5 parent: 2 - - uid: 250 + - uid: 260 components: - type: Transform pos: -137.5,-9.5 parent: 2 - - uid: 251 + - uid: 261 components: - type: Transform pos: -144.5,-9.5 parent: 2 - - uid: 252 + - uid: 262 components: - type: Transform rot: -1.5707963267948966 rad pos: -210.5,13.5 parent: 2 - - uid: 253 + - uid: 263 components: - type: Transform rot: -1.5707963267948966 rad pos: -210.5,11.5 parent: 2 - - uid: 254 + - uid: 264 components: - type: Transform rot: -1.5707963267948966 rad pos: -210.5,5.5 parent: 2 - - uid: 255 + - uid: 265 components: - type: Transform rot: -1.5707963267948966 rad pos: -210.5,3.5 parent: 2 + - uid: 266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -211.5,-13.5 + parent: 2 + - uid: 267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -211.5,-19.5 + parent: 2 - proto: AirlockHeadOfPersonnelLocked entities: - - uid: 256 + - uid: 268 components: - type: Transform pos: -15.5,-3.5 parent: 2 - - uid: 257 + - uid: 269 components: - type: Transform rot: 1.5707963267948966 rad @@ -14046,7 +14302,7 @@ entities: parent: 2 - proto: AirlockHeadOfSecurityGlassLocked entities: - - uid: 258 + - uid: 270 components: - type: Transform rot: 1.5707963267948966 rad @@ -14054,19 +14310,19 @@ entities: parent: 2 - proto: AirlockHydroGlassLocked entities: - - uid: 259 + - uid: 271 components: - type: Transform rot: 1.5707963267948966 rad pos: -107.5,-5.5 parent: 2 - - uid: 260 + - uid: 272 components: - type: Transform rot: -1.5707963267948966 rad pos: -102.5,-15.5 parent: 2 - - uid: 261 + - uid: 273 components: - type: Transform rot: -1.5707963267948966 rad @@ -14074,43 +14330,62 @@ entities: parent: 2 - proto: AirlockJanitorLocked entities: - - uid: 262 + - uid: 274 components: - type: Transform pos: -30.5,-13.5 parent: 2 - proto: AirlockKitchenGlassLocked entities: - - uid: 263 + - uid: 275 components: - type: Transform rot: -1.5707963267948966 rad pos: -110.5,-11.5 parent: 2 - - uid: 264 + - uid: 276 components: - type: Transform rot: 3.141592653589793 rad pos: -115.5,-8.5 parent: 2 -- proto: AirlockMaint +- proto: AirlockMailGlassLocked entities: - - uid: 265 + - uid: 16837 + components: + - type: Transform + pos: -73.5,-17.5 + parent: 2 +- proto: AirlockMaint + entities: + - uid: 277 components: - type: Transform rot: 1.5707963267948966 rad pos: -160.5,-15.5 parent: 2 + - uid: 278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -218.5,-19.5 + parent: 2 + - uid: 279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -217.5,-29.5 + parent: 2 - proto: AirlockMaintAtmoLocked entities: - - uid: 266 + - uid: 280 components: - type: Transform pos: -75.5,16.5 parent: 2 - proto: AirlockMaintBarLocked entities: - - uid: 267 + - uid: 281 components: - type: Transform rot: -1.5707963267948966 rad @@ -14118,496 +14393,471 @@ entities: parent: 2 - proto: AirlockMaintChapelLocked entities: - - uid: 268 + - uid: 282 components: - type: Transform pos: -43.5,10.5 parent: 2 +- proto: AirlockMaintEngiLocked + entities: + - uid: 283 + components: + - type: Transform + pos: -40.5,33.5 + parent: 2 + - uid: 17548 + components: + - type: Transform + pos: -34.5,33.5 + parent: 2 - proto: AirlockMaintHydroLocked entities: - - uid: 269 + - uid: 284 components: - type: Transform rot: -1.5707963267948966 rad pos: -99.5,-15.5 parent: 2 - - uid: 270 + - uid: 285 components: - type: Transform pos: -102.5,-11.5 parent: 2 - proto: AirlockMaintKitchenLocked entities: - - uid: 271 + - uid: 286 components: - type: Transform pos: -118.5,-16.5 parent: 2 - proto: AirlockMaintLocked entities: - - uid: 272 + - uid: 287 components: - type: Transform pos: -34.5,10.5 parent: 2 - - uid: 273 + - uid: 288 components: - type: Transform pos: -85.5,10.5 parent: 2 - - uid: 274 + - uid: 289 components: - type: Transform pos: -56.5,11.5 parent: 2 - - uid: 275 + - uid: 290 components: - type: Transform pos: -60.5,11.5 parent: 2 - - uid: 276 - components: - - type: Transform - pos: -92.5,12.5 - parent: 2 - - uid: 277 + - uid: 291 components: - type: Transform pos: -84.5,-17.5 parent: 2 - - uid: 278 + - uid: 292 components: - type: Transform pos: -24.5,6.5 parent: 2 - - uid: 279 + - uid: 293 components: - type: Transform pos: -38.5,-15.5 parent: 2 - - uid: 280 + - uid: 294 components: - type: Transform pos: -40.5,-16.5 parent: 2 - - uid: 281 + - uid: 295 components: - type: Transform pos: -39.5,-20.5 parent: 2 - - uid: 282 + - uid: 296 components: - type: Transform pos: -51.5,-18.5 parent: 2 - - uid: 283 + - uid: 297 components: - type: Transform pos: -75.5,-23.5 parent: 2 - - uid: 284 + - uid: 298 components: - type: Transform pos: -71.5,-17.5 parent: 2 - - uid: 285 + - uid: 299 components: - type: Transform pos: -115.5,12.5 parent: 2 - - uid: 286 + - uid: 300 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,-16.5 parent: 2 - - uid: 287 + - uid: 301 components: - type: Transform pos: -100.5,-20.5 parent: 2 - - uid: 288 + - uid: 302 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,-5.5 parent: 2 - - uid: 289 + - uid: 303 components: - type: Transform pos: -99.5,-9.5 parent: 2 - - uid: 290 + - uid: 304 components: - type: Transform pos: -109.5,-19.5 parent: 2 - - uid: 291 + - uid: 305 components: - type: Transform pos: -116.5,-20.5 parent: 2 - - uid: 292 + - uid: 306 components: - type: Transform rot: -1.5707963267948966 rad pos: -125.5,-19.5 parent: 2 - - uid: 293 + - uid: 307 components: - type: Transform rot: -1.5707963267948966 rad pos: -130.5,-8.5 parent: 2 - - uid: 294 + - uid: 308 components: - type: Transform rot: -1.5707963267948966 rad pos: -127.5,1.5 parent: 2 - - uid: 295 + - uid: 309 components: - type: Transform pos: -114.5,12.5 parent: 2 - - uid: 296 + - uid: 310 components: - type: Transform - pos: -89.5,13.5 + pos: -46.5,6.5 parent: 2 - - uid: 297 + - uid: 311 components: - type: Transform - pos: -46.5,6.5 + pos: -94.5,7.5 parent: 2 - - uid: 298 + - uid: 312 components: - type: Transform - pos: -89.5,11.5 + pos: -49.5,-17.5 parent: 2 - - uid: 299 + - uid: 313 components: - type: Transform - pos: -94.5,7.5 + pos: -29.5,10.5 parent: 2 - - uid: 300 + - uid: 314 components: - type: Transform - pos: -49.5,-17.5 + pos: -113.5,-17.5 parent: 2 - - uid: 301 +- proto: AirlockMaintRnDLocked + entities: + - uid: 315 components: - type: Transform - pos: -29.5,10.5 + rot: -1.5707963267948966 rad + pos: -191.5,8.5 parent: 2 - proto: AirlockMaintTheatreLocked entities: - - uid: 302 + - uid: 316 components: - type: Transform rot: -1.5707963267948966 rad pos: -123.5,-12.5 parent: 2 - - uid: 303 + - uid: 317 components: - type: Transform rot: 1.5707963267948966 rad pos: -127.5,-12.5 parent: 2 +- proto: AirlockMantisLocked + entities: + - uid: 318 + components: + - type: Transform + pos: -193.5,14.5 + parent: 2 - proto: AirlockMedicalLocked entities: - - uid: 304 + - uid: 319 components: - type: Transform rot: 1.5707963267948966 rad pos: -183.5,-11.5 parent: 2 - - uid: 305 + - uid: 320 components: - type: Transform rot: 1.5707963267948966 rad pos: -186.5,-21.5 parent: 2 - - uid: 306 + - uid: 321 components: - type: Transform rot: 1.5707963267948966 rad - pos: -186.5,-26.5 + pos: -188.5,-28.5 parent: 2 - proto: AirlockMiningGlass entities: - - uid: 307 + - uid: 322 components: - type: Transform pos: -133.5,-0.5 parent: 2 - - uid: 308 + - uid: 323 components: - type: Transform pos: -135.5,-0.5 parent: 2 - proto: AirlockMiningGlassLocked entities: - - uid: 309 + - uid: 324 components: - type: Transform pos: -83.5,-39.5 parent: 2 - proto: AirlockMiningLocked entities: - - uid: 310 + - uid: 325 components: - type: Transform pos: -83.5,-37.5 parent: 2 - - uid: 311 + - uid: 326 components: - type: Transform pos: -84.5,-26.5 parent: 2 - proto: AirlockQuartermasterGlassLocked entities: - - uid: 312 + - uid: 327 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-21.5 parent: 2 -- proto: AirlockResearchDirectorGlassLocked +- proto: AirlockResearchDirectorLocked entities: - - uid: 313 - components: - - type: Transform - pos: -200.5,22.5 - parent: 2 - - uid: 314 + - uid: 328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -199.5,15.5 + pos: -197.5,14.5 parent: 2 - proto: AirlockScienceGlassLocked entities: - - uid: 315 - components: - - type: Transform - pos: -193.5,11.5 - parent: 2 - - uid: 316 - components: - - type: Transform - pos: -198.5,24.5 - parent: 2 - - uid: 317 - components: - - type: Transform - pos: -194.5,24.5 - parent: 2 - - uid: 318 + - uid: 329 components: - type: Transform - pos: -199.5,11.5 + pos: -190.5,12.5 parent: 2 - - uid: 319 + - uid: 330 components: - type: Transform - pos: -192.5,22.5 + pos: -190.5,4.5 parent: 2 - - uid: 320 +- proto: AirlockScienceLocked + entities: + - uid: 331 components: - type: Transform - pos: -192.5,4.5 + rot: -1.5707963267948966 rad + pos: -200.5,12.5 parent: 2 - - uid: 321 + - uid: 332 components: - type: Transform + rot: -1.5707963267948966 rad pos: -200.5,4.5 parent: 2 - - uid: 322 - components: - - type: Transform - pos: -193.5,15.5 - parent: 2 - - uid: 323 - components: - - type: Transform - pos: -197.5,9.5 - parent: 2 - - uid: 324 - components: - - type: Transform - pos: -195.5,5.5 - parent: 2 - - uid: 325 - components: - - type: Transform - pos: -197.5,5.5 - parent: 2 - - uid: 326 - components: - - type: Transform - pos: -195.5,9.5 - parent: 2 - proto: AirlockSecurityGlassLocked entities: - - uid: 327 + - uid: 333 components: - type: Transform pos: -178.5,-1.5 parent: 2 - - uid: 328 + - uid: 334 components: - type: Transform rot: -1.5707963267948966 rad pos: -157.5,2.5 parent: 2 - - uid: 329 + - uid: 335 components: - type: Transform rot: -1.5707963267948966 rad pos: -155.5,-1.5 parent: 2 - - uid: 330 + - uid: 336 components: - type: Transform rot: -1.5707963267948966 rad pos: -157.5,-1.5 parent: 2 - - uid: 331 + - uid: 337 components: - type: Transform rot: -1.5707963267948966 rad pos: -155.5,2.5 parent: 2 - - uid: 332 + - uid: 338 components: - type: Transform pos: -174.5,5.5 parent: 2 - - uid: 333 + - uid: 339 components: - type: Transform pos: -174.5,3.5 parent: 2 - - uid: 334 + - uid: 340 components: - type: Transform pos: -176.5,5.5 parent: 2 - proto: AirlockSecurityLawyerGlassLocked entities: - - uid: 335 + - uid: 341 components: - type: Transform pos: -158.5,6.5 parent: 2 - - uid: 336 + - uid: 342 components: - type: Transform pos: -157.5,6.5 parent: 2 - - uid: 337 + - uid: 343 components: - type: Transform rot: 3.141592653589793 rad pos: -157.5,-5.5 parent: 2 - - uid: 338 + - uid: 344 components: - type: Transform rot: 3.141592653589793 rad pos: -155.5,-5.5 parent: 2 - - uid: 339 + - uid: 345 components: - type: Transform pos: -158.5,-9.5 parent: 2 - - uid: 340 + - uid: 346 components: - type: Transform pos: -154.5,-9.5 parent: 2 - - uid: 341 + - uid: 347 components: - type: Transform rot: 3.141592653589793 rad pos: -159.5,-7.5 parent: 2 - - uid: 342 + - uid: 348 components: - type: Transform rot: 3.141592653589793 rad pos: -165.5,-9.5 parent: 2 - - uid: 343 + - uid: 349 components: - type: Transform pos: -164.5,2.5 parent: 2 - - uid: 344 + - uid: 350 components: - type: Transform pos: -168.5,2.5 parent: 2 - - uid: 345 + - uid: 351 components: - type: Transform pos: -172.5,2.5 parent: 2 - - uid: 346 + - uid: 352 components: - type: Transform pos: -151.5,2.5 parent: 2 - - uid: 347 + - uid: 353 components: - type: Transform rot: 1.5707963267948966 rad pos: -160.5,1.5 parent: 2 - - uid: 348 + - uid: 354 components: - type: Transform rot: 3.141592653589793 rad pos: -150.5,8.5 parent: 2 - - uid: 349 + - uid: 355 components: - type: Transform rot: 3.141592653589793 rad pos: -163.5,-10.5 parent: 2 - - uid: 350 + - uid: 356 components: - type: Transform pos: -140.5,-0.5 parent: 2 - - uid: 351 + - uid: 357 components: - type: Transform pos: -138.5,3.5 parent: 2 - proto: AirlockSecurityLawyerLocked entities: - - uid: 352 + - uid: 358 components: - type: Transform pos: -154.5,-13.5 parent: 2 - - uid: 353 + - uid: 359 components: - type: Transform pos: -158.5,-13.5 parent: 2 - - uid: 354 + - uid: 360 components: - type: Transform pos: -141.5,4.5 parent: 2 - proto: AirlockShuttle entities: - - uid: 355 + - uid: 361 components: - type: Transform rot: 1.5707963267948966 rad @@ -14615,8 +14865,12 @@ entities: parent: 2 - type: Docking dockJointId: docking387991 - dockedWith: 17024 - - uid: 356 + dockedWith: 17568 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True + - uid: 362 components: - type: Transform rot: 1.5707963267948966 rad @@ -14624,71 +14878,64 @@ entities: parent: 2 - type: Docking dockJointId: docking387992 - dockedWith: 17025 - - uid: 357 + dockedWith: 17569 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True + - uid: 363 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,-34.5 parent: 2 - - uid: 358 + - uid: 364 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,-35.5 parent: 2 - - uid: 17024 + - uid: 17568 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-4.5 - parent: 17021 + parent: 17565 - type: Docking dockJointId: docking387991 - dockedWith: 355 - - uid: 17025 + dockedWith: 361 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True + - uid: 17569 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-2.5 - parent: 17021 + parent: 17565 - type: Docking dockJointId: docking387992 - dockedWith: 356 -- proto: AirlockShuttleAssembly - entities: - - uid: 359 - components: - - type: Transform - pos: -57.5,45.5 - parent: 2 - - uid: 360 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,54.5 - parent: 2 - - uid: 361 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,54.5 - parent: 2 + dockedWith: 362 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True - proto: AirlockTheatreLocked entities: - - uid: 362 + - uid: 365 components: - type: Transform rot: -1.5707963267948966 rad pos: -123.5,-6.5 parent: 2 - - uid: 363 + - uid: 366 components: - type: Transform rot: -1.5707963267948966 rad pos: -127.5,-8.5 parent: 2 - - uid: 364 + - uid: 367 components: - type: Transform rot: -1.5707963267948966 rad @@ -14696,135 +14943,135 @@ entities: parent: 2 - proto: AirSensor entities: - - uid: 365 + - uid: 368 components: - type: Transform pos: -55.5,29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 61 - - uid: 366 + - 65 + - uid: 369 components: - type: Transform pos: -76.5,29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 55 - - uid: 367 + - 59 + - uid: 370 components: - type: Transform pos: -73.5,29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 56 - - uid: 368 + - 60 + - uid: 371 components: - type: Transform pos: -67.5,29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 58 - - uid: 369 + - 62 + - uid: 372 components: - type: Transform pos: -70.5,29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 57 - - uid: 370 + - 61 + - uid: 373 components: - type: Transform pos: -64.5,29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 59 - - uid: 371 + - 63 + - uid: 374 components: - type: Transform pos: -58.5,29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 60 - - uid: 372 + - 64 + - uid: 375 components: - type: Transform pos: -52.5,24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 62 - - uid: 373 + - 66 + - uid: 376 components: - type: Transform pos: -63.5,-22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 41 - - uid: 374 + - 45 + - uid: 377 components: - type: Transform pos: -55.5,3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 38 - - uid: 375 + - 42 + - uid: 378 components: - type: Transform pos: -60.5,-3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 38 - - uid: 376 + - 42 + - uid: 379 components: - type: Transform pos: -50.5,-1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 36 - - uid: 377 + - 40 + - uid: 380 components: - type: Transform pos: -45.5,3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 36 - - uid: 378 + - 40 + - uid: 381 components: - type: Transform pos: -47.5,-5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 36 - - uid: 379 + - 40 + - uid: 382 components: - type: Transform pos: -69.5,-15.5 parent: 2 - type: DeviceNetwork deviceLists: - - 42 - - uid: 380 + - 46 + - uid: 383 components: - type: Transform pos: -70.5,8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 37 - - uid: 381 + - 41 + - uid: 384 components: - type: Transform rot: 1.5707963267948966 rad @@ -14832,8 +15079,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 65 - - uid: 382 + - 69 + - uid: 385 components: - type: Transform rot: -1.5707963267948966 rad @@ -14841,8 +15088,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 65 - - uid: 383 + - 69 + - uid: 386 components: - type: Transform rot: -1.5707963267948966 rad @@ -14850,24 +15097,24 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 63 - - uid: 384 + - 67 + - uid: 387 components: - type: Transform pos: -50.5,8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 36 - - uid: 385 + - 40 + - uid: 388 components: - type: Transform pos: -96.5,-3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 43 - - uid: 386 + - 47 + - uid: 389 components: - type: Transform rot: -1.5707963267948966 rad @@ -14875,14 +15122,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 67 - - uid: 387 + - 71 + - uid: 390 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-15.5 parent: 2 - - uid: 388 + - uid: 391 components: - type: Transform rot: -1.5707963267948966 rad @@ -14890,8 +15137,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 63 - - uid: 389 + - 67 + - uid: 392 components: - type: Transform rot: -1.5707963267948966 rad @@ -14899,14 +15146,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 63 - - uid: 390 + - 67 + - uid: 393 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-10.5 parent: 2 - - uid: 391 + - uid: 394 components: - type: Transform rot: -1.5707963267948966 rad @@ -14914,168 +15161,168 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 63 - - uid: 392 + - 67 + - uid: 395 components: - type: Transform pos: -45.5,-15.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40 - - uid: 393 + - 44 + - uid: 396 components: - type: Transform pos: -57.5,-15.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40 - - uid: 394 + - 44 + - uid: 397 components: - type: Transform pos: -68.5,-3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 39 - - uid: 395 + - 43 + - uid: 398 components: - type: Transform pos: -34.5,3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 66 - - uid: 396 + - 70 + - uid: 399 components: - type: Transform pos: -65.5,-3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 39 - - uid: 397 + - 43 + - uid: 400 components: - type: Transform pos: -71.5,-3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 39 - - uid: 398 + - 43 + - uid: 401 components: - type: Transform pos: -84.5,-15.5 parent: 2 - type: DeviceNetwork deviceLists: - - 42 - - uid: 399 + - 46 + - uid: 402 components: - type: Transform pos: -84.5,8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 37 - - uid: 400 + - 41 + - uid: 403 components: - type: Transform pos: -85.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 68 - - uid: 401 + - 72 + - uid: 404 components: - type: Transform pos: -85.5,2.5 parent: 2 - type: DeviceNetwork deviceLists: - - 68 - - uid: 402 + - 72 + - uid: 405 components: - type: Transform pos: -88.5,-3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 68 - - uid: 403 + - 72 + - uid: 406 components: - type: Transform pos: -105.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 44 - - uid: 404 + - 48 + - uid: 407 components: - type: Transform pos: -101.5,-16.5 parent: 2 - type: DeviceNetwork deviceLists: - - 44 - - uid: 405 + - 48 + - uid: 408 components: - type: Transform pos: -113.5,-11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 45 - - uid: 406 + - 49 + - uid: 409 components: - type: Transform pos: -114.5,-3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 46 - - uid: 407 + - 50 + - uid: 410 components: - type: Transform pos: -128.5,-4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 47 - - uid: 408 + - 51 + - uid: 411 components: - type: Transform pos: -134.5,3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 47 - - uid: 409 + - 51 + - uid: 412 components: - type: Transform pos: -141.5,2.5 parent: 2 - type: DeviceNetwork deviceLists: - - 47 - - uid: 410 + - 51 + - uid: 413 components: - type: Transform pos: -148.5,3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 51 - - uid: 411 + - 55 + - uid: 414 components: - type: Transform pos: -164.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 51 - - uid: 412 + - 55 + - uid: 415 components: - type: Transform rot: 3.141592653589793 rad @@ -15083,8 +15330,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 52 - - uid: 413 + - 56 + - uid: 416 components: - type: Transform rot: 3.141592653589793 rad @@ -15092,8 +15339,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 52 - - uid: 414 + - 56 + - uid: 417 components: - type: Transform rot: 3.141592653589793 rad @@ -15101,8 +15348,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 52 - - uid: 415 + - 56 + - uid: 418 components: - type: Transform rot: 3.141592653589793 rad @@ -15110,8 +15357,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 52 - - uid: 416 + - 56 + - uid: 419 components: - type: Transform rot: 3.141592653589793 rad @@ -15119,8 +15366,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 50 - - uid: 417 + - 54 + - uid: 420 components: - type: Transform rot: 3.141592653589793 rad @@ -15128,8 +15375,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 50 - - uid: 418 + - 54 + - uid: 421 components: - type: Transform rot: 3.141592653589793 rad @@ -15137,8 +15384,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 50 - - uid: 419 + - 54 + - uid: 422 components: - type: Transform rot: 3.141592653589793 rad @@ -15146,8 +15393,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 50 - - uid: 420 + - 54 + - uid: 423 components: - type: Transform rot: 3.141592653589793 rad @@ -15155,8 +15402,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 50 - - uid: 421 + - 54 + - uid: 424 components: - type: Transform rot: 3.141592653589793 rad @@ -15164,17 +15411,17 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 50 - - uid: 422 - components: + - 54 + - uid: 425 + components: - type: Transform rot: 3.141592653589793 rad pos: -156.5,-18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 50 - - uid: 423 + - 54 + - uid: 426 components: - type: Transform rot: 3.141592653589793 rad @@ -15182,8 +15429,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 50 - - uid: 424 + - 54 + - uid: 427 components: - type: Transform rot: 3.141592653589793 rad @@ -15191,8 +15438,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 50 - - uid: 425 + - 54 + - uid: 428 components: - type: Transform rot: 3.141592653589793 rad @@ -15200,8 +15447,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 48 - - uid: 426 + - 52 + - uid: 429 components: - type: Transform rot: 3.141592653589793 rad @@ -15209,8 +15456,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 48 - - uid: 427 + - 52 + - uid: 430 components: - type: Transform rot: 3.141592653589793 rad @@ -15218,9 +15465,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 48 - - 49 - - uid: 428 + - 52 + - 53 + - uid: 431 components: - type: Transform rot: 3.141592653589793 rad @@ -15228,8 +15475,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 49 - - uid: 429 + - 53 + - uid: 432 components: - type: Transform rot: 3.141592653589793 rad @@ -15237,15 +15484,15 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 49 - - 69 - - uid: 430 + - 53 + - 73 + - uid: 433 components: - type: Transform rot: 3.141592653589793 rad pos: -212.5,-3.5 parent: 2 - - uid: 431 + - uid: 434 components: - type: Transform rot: 3.141592653589793 rad @@ -15253,8 +15500,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 69 - - uid: 432 + - 73 + - uid: 435 components: - type: Transform rot: -1.5707963267948966 rad @@ -15262,831 +15509,831 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 69 - - uid: 433 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -196.5,20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 - - uid: 434 + - 73 + - uid: 436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -191.5,20.5 + pos: -186.5,-17.5 parent: 2 - type: DeviceNetwork deviceLists: - - 70 - - uid: 435 + - 74 + - uid: 437 components: - type: Transform rot: -1.5707963267948966 rad - pos: -201.5,22.5 + pos: 0.5,-3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 70 - - uid: 436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -192.5,15.5 - parent: 2 - - uid: 437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -196.5,11.5 - parent: 2 + - 71 - uid: 438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -196.5,7.5 + pos: -177.5,1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 70 + - 75 - uid: 439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -196.5,3.5 + pos: -199.5,8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 70 + - 76 - uid: 440 components: - type: Transform - pos: -186.5,-17.5 + pos: -194.5,12.5 parent: 2 - type: DeviceNetwork deviceLists: - - 71 + - 76 - uid: 441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -186.5,-24.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 71 - - uid: 442 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 67 - - uid: 443 - components: - - type: Transform - pos: -177.5,1.5 + pos: -194.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 72 + - 76 - proto: AltarSpawner entities: - - uid: 444 + - uid: 442 components: - type: Transform pos: -39.5,4.5 parent: 2 - proto: AltarToolbox entities: - - uid: 445 + - uid: 443 components: - type: Transform pos: -107.5,-20.5 parent: 2 - proto: AmmoTechFab entities: - - uid: 446 + - uid: 444 components: - type: Transform pos: -153.5,-0.5 parent: 2 -- proto: AnomalyLocator - entities: - - uid: 447 - components: - - type: Transform - pos: -201.21632,6.5060177 - parent: 2 - proto: AnomalyScanner entities: - - uid: 448 - components: - - type: Transform - pos: -191.64738,8.648782 - parent: 2 - - uid: 449 - components: - - type: Transform - pos: -191.61613,7.758157 - parent: 2 - - uid: 450 + - uid: 445 components: - type: Transform pos: 1.4258924,-7.273965 parent: 2 - - uid: 452 - components: - - type: Transform - parent: 451 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - proto: AntiPoisonMedipen entities: - - uid: 458 + - uid: 446 components: - type: Transform pos: -46.6034,14.201279 parent: 2 - proto: APCBasic entities: - - uid: 459 + - uid: 447 components: - type: Transform rot: 1.5707963267948966 rad pos: -89.5,-5.5 parent: 2 - - uid: 460 + - uid: 448 components: - type: Transform pos: -104.5,15.5 parent: 2 - - uid: 461 - components: - - type: Transform - pos: -196.5,24.5 - parent: 2 - - uid: 462 + - uid: 449 components: - type: Transform pos: -185.5,-11.5 parent: 2 - - uid: 463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -184.5,-26.5 - parent: 2 - - uid: 464 + - uid: 450 components: - type: Transform pos: -84.5,-32.5 parent: 2 - - uid: 465 + - uid: 451 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-0.5 parent: 2 - - uid: 466 + - uid: 452 components: - type: Transform rot: 3.141592653589793 rad pos: -175.5,-5.5 parent: 2 - - uid: 467 + - uid: 453 components: - type: Transform pos: -208.5,-1.5 parent: 2 - - uid: 468 + - uid: 454 components: - type: Transform rot: -1.5707963267948966 rad pos: -165.5,-7.5 parent: 2 - - uid: 469 + - uid: 455 components: - type: Transform pos: -166.5,6.5 parent: 2 - - uid: 470 + - uid: 456 components: - type: Transform rot: 1.5707963267948966 rad pos: -161.5,8.5 parent: 2 - - uid: 471 + - uid: 457 components: - type: Transform rot: -1.5707963267948966 rad pos: -150.5,11.5 parent: 2 - - uid: 472 + - uid: 458 components: - type: Transform rot: 1.5707963267948966 rad pos: -150.5,5.5 parent: 2 - - uid: 473 + - uid: 459 components: - type: Transform rot: 1.5707963267948966 rad pos: -189.5,-8.5 parent: 2 - - uid: 474 + - uid: 460 components: - type: Transform rot: 1.5707963267948966 rad pos: -121.5,-5.5 parent: 2 - - uid: 475 + - uid: 461 components: - type: Transform rot: 1.5707963267948966 rad pos: -109.5,-8.5 parent: 2 - - uid: 476 + - uid: 462 components: - type: Transform rot: 3.141592653589793 rad pos: -115.5,-13.5 parent: 2 - - uid: 477 + - uid: 463 components: - type: Transform rot: -1.5707963267948966 rad pos: -125.5,-20.5 parent: 2 - - uid: 478 + - uid: 464 components: - type: Transform pos: -70.5,-13.5 parent: 2 - - uid: 479 + - uid: 465 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-8.5 parent: 2 - - uid: 480 + - uid: 466 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,6.5 parent: 2 - - uid: 481 + - uid: 467 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,6.5 parent: 2 - - uid: 482 + - uid: 468 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,10.5 parent: 2 - - uid: 483 + - uid: 469 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,18.5 parent: 2 - - uid: 484 + - uid: 470 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-21.5 parent: 2 - - uid: 485 + - uid: 471 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-23.5 parent: 2 - - uid: 486 + - uid: 472 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-17.5 parent: 2 - - uid: 487 + - uid: 473 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-4.5 parent: 2 - - uid: 488 + - uid: 474 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,1.5 parent: 2 - - uid: 489 + - uid: 475 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-8.5 parent: 2 - - uid: 490 + - uid: 476 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-1.5 parent: 2 - - uid: 491 + - uid: 477 components: - type: Transform pos: -8.5,5.5 parent: 2 - - uid: 492 + - uid: 478 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-2.5 parent: 2 - - uid: 493 + - uid: 479 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-10.5 parent: 2 - - uid: 494 + - uid: 480 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-12.5 parent: 2 - - uid: 495 + - uid: 481 components: - type: Transform pos: -17.5,6.5 parent: 2 - - uid: 496 + - uid: 482 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-1.5 parent: 2 - - uid: 497 + - uid: 483 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,9.5 parent: 2 - - uid: 498 + - uid: 484 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,8.5 parent: 2 - - uid: 499 + - uid: 485 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-3.5 parent: 2 - - uid: 500 + - uid: 486 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-8.5 parent: 2 - - uid: 501 + - uid: 487 components: - type: Transform rot: 1.5707963267948966 rad pos: -121.5,16.5 parent: 2 - - uid: 502 + - uid: 488 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-16.5 parent: 2 - - uid: 503 + - uid: 489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -192.5,5.5 + rot: 3.141592653589793 rad + pos: -134.5,-0.5 parent: 2 - - uid: 504 + - uid: 490 components: - type: Transform rot: 3.141592653589793 rad - pos: -134.5,-0.5 + pos: -39.5,32.5 parent: 2 - - uid: 17026 + - uid: 491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -221.5,-17.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: -223.5,-27.5 + parent: 2 + - uid: 493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -187.5,-26.5 + parent: 2 + - uid: 494 + components: + - type: Transform + pos: -195.5,14.5 + parent: 2 + - uid: 495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -198.5,5.5 + parent: 2 + - uid: 17570 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-1.5 - parent: 17021 + parent: 17565 - proto: ArrivalsShuttleTimer entities: - - uid: 505 + - uid: 496 components: - type: Transform pos: -143.5,-7.5 parent: 2 - - uid: 506 + - uid: 497 components: - type: Transform pos: -138.5,-7.5 parent: 2 - proto: ArtifactAnalyzerMachineCircuitboard entities: - - uid: 507 + - uid: 498 components: - type: Transform rot: -1.5707963267948966 rad - pos: -193.85612,1.5190132 + pos: -198.27618,6.577164 parent: 2 - proto: AtmosDeviceFanTiny entities: - - uid: 508 + - uid: 499 components: - type: Transform rot: -1.5707963267948966 rad pos: -210.5,5.5 parent: 2 - - uid: 509 + - uid: 500 components: - type: Transform rot: -1.5707963267948966 rad pos: -210.5,3.5 parent: 2 - - uid: 510 + - uid: 501 components: - type: Transform rot: 1.5707963267948966 rad pos: -116.5,-13.5 parent: 2 - - uid: 511 + - uid: 502 components: - type: Transform rot: 3.141592653589793 rad pos: -181.5,-19.5 parent: 2 - - uid: 512 + - uid: 503 components: - type: Transform rot: 3.141592653589793 rad pos: -181.5,-13.5 parent: 2 - - uid: 513 + - uid: 504 components: - type: Transform rot: 3.141592653589793 rad pos: -191.5,-13.5 parent: 2 - - uid: 514 + - uid: 505 components: - type: Transform rot: 3.141592653589793 rad pos: -191.5,-19.5 parent: 2 - - uid: 515 + - uid: 506 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-4.5 parent: 2 - - uid: 516 + - uid: 507 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-2.5 parent: 2 - - uid: 517 + - uid: 508 components: - type: Transform rot: 1.5707963267948966 rad pos: -84.5,-26.5 parent: 2 - - uid: 518 + - uid: 509 components: - type: Transform rot: 1.5707963267948966 rad pos: -84.5,-20.5 parent: 2 - - uid: 519 + - uid: 510 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,-34.5 parent: 2 - - uid: 520 + - uid: 511 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,-35.5 parent: 2 - - uid: 521 + - uid: 512 components: - type: Transform rot: -1.5707963267948966 rad pos: -197.5,-19.5 parent: 2 - - uid: 522 + - uid: 513 components: - type: Transform rot: -1.5707963267948966 rad pos: -197.5,-13.5 parent: 2 - - uid: 523 + - uid: 514 components: - type: Transform rot: -1.5707963267948966 rad pos: -211.5,-13.5 parent: 2 - - uid: 524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -211.5,-19.5 - parent: 2 - - uid: 525 + - uid: 515 components: - type: Transform pos: -118.5,-16.5 parent: 2 - - uid: 526 + - uid: 516 components: - type: Transform pos: -137.5,-9.5 parent: 2 - - uid: 527 + - uid: 517 components: - type: Transform pos: -144.5,-9.5 parent: 2 - - uid: 528 + - uid: 518 components: - type: Transform rot: -1.5707963267948966 rad pos: -210.5,11.5 parent: 2 - - uid: 529 + - uid: 519 components: - type: Transform rot: -1.5707963267948966 rad pos: -210.5,13.5 parent: 2 - - uid: 530 + - uid: 520 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-5.5 parent: 2 - - uid: 531 + - uid: 521 components: - type: Transform pos: -76.5,-3.5 parent: 2 - - uid: 532 + - uid: 522 + components: + - type: Transform + pos: -57.5,-29.5 + parent: 2 + - uid: 523 components: - type: Transform rot: -1.5707963267948966 rad - pos: -198.5,24.5 + pos: -26.5,-17.5 parent: 2 - - uid: 533 + - uid: 524 components: - type: Transform rot: -1.5707963267948966 rad - pos: -194.5,24.5 + pos: -30.5,-17.5 parent: 2 - - uid: 534 + - uid: 525 components: - type: Transform - pos: -57.5,-27.5 + pos: -35.5,-17.5 parent: 2 - - uid: 535 + - uid: 526 components: - type: Transform - pos: -59.5,-27.5 + pos: -21.5,-17.5 parent: 2 - - uid: 536 + - uid: 527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-17.5 + pos: -59.5,-29.5 parent: 2 - - uid: 537 + - uid: 528 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-17.5 + pos: -211.5,-19.5 parent: 2 - - uid: 538 + - uid: 529 components: - type: Transform - pos: -35.5,-17.5 + rot: 1.5707963267948966 rad + pos: -217.5,-36.5 parent: 2 - - uid: 539 + - uid: 530 components: - type: Transform - pos: -21.5,-17.5 + pos: -219.5,-14.5 parent: 2 - - uid: 17027 + - uid: 531 + components: + - type: Transform + pos: -225.5,-15.5 + parent: 2 + - uid: 532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -190.5,4.5 + parent: 2 + - uid: 533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -190.5,12.5 + parent: 2 + - uid: 17571 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-4.5 - parent: 17021 - - uid: 17028 + parent: 17565 + - uid: 17572 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-2.5 - parent: 17021 + parent: 17565 - proto: AtmosFixBlockerMarker entities: - - uid: 540 + - uid: 534 components: - type: Transform pos: -65.5,28.5 parent: 2 - - uid: 541 + - uid: 535 components: - type: Transform pos: -64.5,28.5 parent: 2 - - uid: 542 + - uid: 536 components: - type: Transform pos: -65.5,29.5 parent: 2 - - uid: 543 + - uid: 537 components: - type: Transform pos: -64.5,29.5 parent: 2 - - uid: 544 + - uid: 538 components: - type: Transform pos: -70.5,28.5 parent: 2 - - uid: 545 + - uid: 539 components: - type: Transform pos: -70.5,29.5 parent: 2 - - uid: 546 + - uid: 540 components: - type: Transform pos: -71.5,28.5 parent: 2 - - uid: 547 + - uid: 541 components: - type: Transform pos: -71.5,29.5 parent: 2 - - uid: 548 + - uid: 542 components: - type: Transform pos: -73.5,29.5 parent: 2 - - uid: 549 + - uid: 543 components: - type: Transform pos: -74.5,28.5 parent: 2 - - uid: 550 + - uid: 544 components: - type: Transform pos: -74.5,29.5 parent: 2 - - uid: 551 + - uid: 545 components: - type: Transform pos: -76.5,28.5 parent: 2 - - uid: 552 + - uid: 546 components: - type: Transform pos: -77.5,28.5 parent: 2 - - uid: 553 + - uid: 547 components: - type: Transform pos: -77.5,29.5 parent: 2 - - uid: 554 + - uid: 548 components: - type: Transform pos: -73.5,28.5 parent: 2 - - uid: 555 + - uid: 549 components: - type: Transform pos: -76.5,29.5 parent: 2 - proto: AtmosFixFreezerMarker entities: - - uid: 556 + - uid: 550 components: - type: Transform pos: -117.5,-14.5 parent: 2 - - uid: 557 + - uid: 551 components: - type: Transform pos: -117.5,-15.5 parent: 2 - - uid: 558 + - uid: 552 components: - type: Transform pos: -117.5,-16.5 parent: 2 - - uid: 559 + - uid: 553 components: - type: Transform pos: -116.5,-14.5 parent: 2 - - uid: 560 + - uid: 554 components: - type: Transform pos: -116.5,-15.5 parent: 2 - - uid: 561 + - uid: 555 components: - type: Transform pos: -116.5,-16.5 parent: 2 - - uid: 562 + - uid: 556 components: - type: Transform pos: -115.5,-14.5 parent: 2 - - uid: 563 + - uid: 557 components: - type: Transform pos: -115.5,-15.5 parent: 2 - - uid: 564 + - uid: 558 components: - type: Transform pos: -115.5,-16.5 parent: 2 - - uid: 565 + - uid: 559 components: - type: Transform pos: -79.5,-2.5 parent: 2 - - uid: 566 + - uid: 560 components: - type: Transform pos: -79.5,-3.5 parent: 2 - - uid: 567 + - uid: 561 components: - type: Transform pos: -79.5,-4.5 parent: 2 - - uid: 568 + - uid: 562 components: - type: Transform pos: -78.5,-2.5 parent: 2 - - uid: 569 + - uid: 563 components: - type: Transform pos: -78.5,-3.5 parent: 2 - - uid: 570 + - uid: 564 components: - type: Transform pos: -78.5,-4.5 parent: 2 - - uid: 571 + - uid: 565 components: - type: Transform pos: -77.5,-2.5 parent: 2 - - uid: 572 + - uid: 566 components: - type: Transform pos: -77.5,-3.5 parent: 2 - - uid: 573 + - uid: 567 components: - type: Transform pos: -77.5,-4.5 parent: 2 - - uid: 574 + - uid: 568 components: - type: Transform pos: -56.5,-5.5 parent: 2 + - uid: 569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -216.5,-35.5 + parent: 2 + - uid: 570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -215.5,-35.5 + parent: 2 + - uid: 571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -217.5,-36.5 + parent: 2 + - uid: 572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -216.5,-37.5 + parent: 2 + - uid: 573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -216.5,-36.5 + parent: 2 + - uid: 574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -215.5,-36.5 + parent: 2 - proto: AtmosFixNitrogenMarker entities: - uid: 575 @@ -16153,13 +16400,13 @@ entities: - type: Transform pos: -68.5,29.5 parent: 2 -- proto: Autolathe - entities: - uid: 587 components: - type: Transform - pos: -197.5,19.5 + pos: -44.5,33.5 parent: 2 +- proto: Autolathe + entities: - uid: 588 components: - type: Transform @@ -16170,106 +16417,109 @@ entities: - type: Transform pos: -64.5,-21.5 parent: 2 + - uid: 590 + components: + - type: Transform + pos: -198.5,1.5 + parent: 2 - proto: BalloonSyn entities: - - uid: 590 + - uid: 591 components: - type: Transform pos: -176.11943,14.904279 parent: 2 - proto: BananaPhoneInstrument entities: - - uid: 591 + - uid: 592 components: - type: Transform pos: -122.73814,-7.9099255 parent: 2 - proto: BannerCargo entities: - - uid: 592 + - uid: 593 components: - type: Transform pos: -68.5,-22.5 parent: 2 - proto: BannerMedical entities: - - uid: 593 + - uid: 594 components: - type: Transform pos: -182.5,-12.5 parent: 2 - - uid: 594 + - uid: 595 components: - type: Transform pos: -190.5,-20.5 parent: 2 - - uid: 595 + - uid: 596 components: - type: Transform pos: -184.5,-15.5 parent: 2 - - uid: 596 + - uid: 597 components: - type: Transform pos: -188.5,-13.5 parent: 2 + - uid: 598 + components: + - type: Transform + pos: -184.5,-28.5 + parent: 2 - proto: BannerNanotrasen entities: - - uid: 597 + - uid: 599 components: - type: Transform pos: -4.5,-4.5 parent: 2 - - uid: 598 + - uid: 600 components: - type: Transform pos: -4.5,-2.5 parent: 2 - - uid: 599 + - uid: 601 components: - type: Transform pos: -134.5,0.5 parent: 2 - - uid: 17029 + - uid: 17573 components: - type: Transform pos: 10.5,-3.5 - parent: 17021 + parent: 17565 - proto: BannerScience entities: - - uid: 600 - components: - - type: Transform - pos: -196.5,18.5 - parent: 2 -- proto: BannerSecurity - entities: - - uid: 601 - components: - - type: Transform - pos: -156.5,1.5 - parent: 2 - uid: 602 components: - type: Transform - pos: -151.5,5.5 + pos: -195.5,10.5 parent: 2 - uid: 603 components: - type: Transform - pos: -149.5,0.5 + pos: -197.5,6.5 parent: 2 -- proto: BannerSyndicate +- proto: BannerSecurity entities: - uid: 604 components: - type: Transform - pos: -41.5,17.5 + pos: -156.5,1.5 parent: 2 - uid: 605 components: - type: Transform - pos: -44.5,17.5 + pos: -151.5,5.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: -149.5,0.5 parent: 2 - proto: BarberScissors entities: @@ -16281,22 +16531,17 @@ entities: canCollide: False - proto: Barricade entities: - - uid: 606 + - uid: 607 components: - type: Transform pos: -120.5,16.5 parent: 2 - - uid: 607 + - uid: 608 components: - type: Transform rot: -1.5707963267948966 rad pos: -106.5,-21.5 parent: 2 - - uid: 608 - components: - - type: Transform - pos: -48.5,17.5 - parent: 2 - uid: 609 components: - type: Transform @@ -16305,29 +16550,29 @@ entities: - uid: 610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,13.5 + pos: -48.5,17.5 parent: 2 - uid: 611 components: - type: Transform rot: -1.5707963267948966 rad - pos: -112.5,16.5 + pos: -117.5,13.5 parent: 2 - uid: 612 components: - type: Transform - pos: -5.5,-14.5 + rot: -1.5707963267948966 rad + pos: -112.5,16.5 parent: 2 - uid: 613 components: - type: Transform - pos: -39.5,-22.5 + pos: -5.5,-14.5 parent: 2 - uid: 614 components: - type: Transform - pos: -88.5,14.5 + pos: -39.5,-22.5 parent: 2 - uid: 615 components: @@ -16341,266 +16586,368 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-17.5 parent: 2 -- proto: BarricadeBlock - entities: - uid: 617 components: - type: Transform - pos: -114.5,12.5 + rot: 1.5707963267948966 rad + pos: -224.5,1.5 parent: 2 - uid: 618 components: - type: Transform - pos: -115.5,12.5 + pos: -218.5,-19.5 parent: 2 - uid: 619 components: - type: Transform - pos: -89.5,13.5 + pos: -226.5,-16.5 parent: 2 - uid: 620 components: - type: Transform - pos: -92.5,12.5 + rot: 1.5707963267948966 rad + pos: -220.5,0.5 parent: 2 -- proto: BarricadeDirectional - entities: - uid: 621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,16.5 + pos: -224.5,-2.5 parent: 2 - uid: 622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,14.5 + pos: -223.5,-13.5 parent: 2 - uid: 623 components: - type: Transform rot: 1.5707963267948966 rad - pos: -119.5,17.5 + pos: -222.5,-20.5 parent: 2 - uid: 624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-14.5 + rot: 1.5707963267948966 rad + pos: -216.5,-22.5 parent: 2 - uid: 625 components: - type: Transform - pos: -88.5,14.5 + pos: -226.5,-24.5 parent: 2 - uid: 626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,14.5 + pos: -225.5,-27.5 parent: 2 +- proto: BarricadeBlock + entities: - uid: 627 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-14.5 + pos: -114.5,12.5 parent: 2 -- proto: BarSignMaidCafe - entities: - uid: 628 components: - type: Transform - pos: -123.5,-0.5 + pos: -115.5,12.5 parent: 2 - uid: 629 components: - type: Transform - pos: -107.5,-1.5 + rot: 1.5707963267948966 rad + pos: -220.5,-0.5 parent: 2 -- proto: BaseComputer - entities: - uid: 630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 + pos: -221.5,-40.5 parent: 2 - uid: 631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-6.5 + pos: -217.5,-29.5 parent: 2 - uid: 632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 + pos: -219.5,-21.5 parent: 2 - uid: 633 components: - type: Transform - pos: -54.5,53.5 + rot: 1.5707963267948966 rad + pos: -215.5,-26.5 parent: 2 - uid: 634 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,51.5 + rot: 1.5707963267948966 rad + pos: -224.5,1.5 parent: 2 -- proto: Beaker +- proto: BarricadeDirectional entities: - uid: 635 components: - type: Transform - pos: -112.59756,-10.351536 + rot: 1.5707963267948966 rad + pos: -119.5,16.5 parent: 2 -- proto: Bed - entities: - uid: 636 components: - type: Transform - pos: -161.5,-11.5 + rot: 1.5707963267948966 rad + pos: -119.5,14.5 parent: 2 - uid: 637 components: - type: Transform - pos: -106.5,6.5 + rot: 1.5707963267948966 rad + pos: -119.5,17.5 parent: 2 - uid: 638 components: - type: Transform - pos: -106.5,10.5 + rot: -1.5707963267948966 rad + pos: -4.5,-14.5 parent: 2 - uid: 639 components: - type: Transform - pos: -98.5,10.5 + rot: 1.5707963267948966 rad + pos: -6.5,-14.5 parent: 2 +- proto: BarSignMaidCafe + entities: - uid: 640 components: - type: Transform - pos: -110.5,5.5 + pos: -123.5,-0.5 parent: 2 - uid: 641 components: - type: Transform - pos: -110.5,3.5 + pos: -107.5,-1.5 parent: 2 +- proto: BarSignTheOuterSpess + entities: - uid: 642 components: - type: Transform - pos: -4.5,-12.5 + pos: -220.5,-30.5 parent: 2 +- proto: BaseComputer + entities: - uid: 643 components: - type: Transform - pos: -188.5,-8.5 + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 parent: 2 - uid: 644 components: - type: Transform - pos: -203.5,19.5 + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 parent: 2 - uid: 645 components: - type: Transform - pos: -103.5,22.5 + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 parent: 2 - uid: 646 components: - type: Transform - pos: -60.5,5.5 + pos: -222.5,-22.5 parent: 2 +- proto: Beaker + entities: - uid: 647 components: - type: Transform - pos: -164.5,-13.5 + pos: -112.59756,-10.351536 parent: 2 +- proto: Bed + entities: - uid: 648 components: - type: Transform - pos: -139.5,6.5 + pos: -161.5,-11.5 parent: 2 - uid: 649 components: - type: Transform - pos: -160.5,14.5 + pos: -106.5,6.5 parent: 2 - uid: 650 components: - type: Transform - pos: -166.5,11.5 + pos: -106.5,10.5 parent: 2 - uid: 651 components: - type: Transform - pos: -120.5,-11.5 + pos: -98.5,10.5 parent: 2 - uid: 652 components: - type: Transform - pos: -163.5,0.5 + pos: -110.5,5.5 parent: 2 - uid: 653 components: - type: Transform - pos: -169.5,1.5 + pos: -110.5,3.5 parent: 2 - uid: 654 components: - type: Transform - pos: -173.5,0.5 + pos: -4.5,-12.5 parent: 2 - uid: 655 components: - type: Transform - pos: -120.5,-9.5 + pos: -188.5,-8.5 parent: 2 - uid: 656 components: - type: Transform - pos: -128.5,-10.5 + pos: -103.5,22.5 parent: 2 - uid: 657 components: - type: Transform - pos: -152.5,-23.5 + pos: -60.5,5.5 parent: 2 - uid: 658 components: - type: Transform - pos: -158.5,-23.5 + pos: -164.5,-13.5 parent: 2 - uid: 659 components: - type: Transform - pos: -113.5,-15.5 + pos: -139.5,6.5 parent: 2 - uid: 660 components: - type: Transform - pos: -48.5,15.5 + pos: -160.5,14.5 parent: 2 - uid: 661 components: - type: Transform - pos: -21.5,-4.5 + pos: -166.5,11.5 parent: 2 - uid: 662 components: - type: Transform - pos: -177.5,3.5 + pos: -120.5,-11.5 parent: 2 - uid: 663 + components: + - type: Transform + pos: -163.5,0.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: -169.5,1.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: -173.5,0.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: -120.5,-9.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: -128.5,-10.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: -152.5,-23.5 + parent: 2 + - uid: 669 + components: + - type: Transform + pos: -158.5,-23.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: -48.5,15.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: -177.5,3.5 + parent: 2 + - uid: 672 components: - type: Transform pos: -179.5,3.5 parent: 2 + - uid: 673 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 + - uid: 674 + components: + - type: Transform + pos: -229.5,-19.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: -214.5,-31.5 + parent: 2 + - uid: 676 + components: + - type: Transform + pos: -230.5,-31.5 + parent: 2 + - uid: 677 + components: + - type: Transform + pos: -230.5,-23.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: -229.5,-27.5 + parent: 2 + - uid: 679 + components: + - type: Transform + pos: -216.5,-16.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: -217.5,-17.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: -197.5,17.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: -192.5,17.5 + parent: 2 - proto: BedsheetBlue entities: - - uid: 664 + - uid: 683 components: - type: Transform rot: -1.5707963267948966 rad @@ -16608,7 +16955,7 @@ entities: parent: 2 - proto: BedsheetBrigmedic entities: - - uid: 665 + - uid: 684 components: - type: Transform rot: 3.141592653589793 rad @@ -16616,14 +16963,14 @@ entities: parent: 2 - proto: BedsheetCaptain entities: - - uid: 666 + - uid: 685 components: - type: Transform pos: -4.5,-12.5 parent: 2 - proto: BedsheetCE entities: - - uid: 667 + - uid: 686 components: - type: Transform rot: -1.5707963267948966 rad @@ -16631,7 +16978,7 @@ entities: parent: 2 - proto: BedsheetClown entities: - - uid: 668 + - uid: 687 components: - type: Transform rot: -1.5707963267948966 rad @@ -16639,14 +16986,14 @@ entities: parent: 2 - proto: BedsheetCMO entities: - - uid: 669 + - uid: 688 components: - type: Transform pos: -188.5,-8.5 parent: 2 - proto: BedsheetGreen entities: - - uid: 670 + - uid: 689 components: - type: Transform rot: -1.5707963267948966 rad @@ -16654,58 +17001,69 @@ entities: parent: 2 - proto: BedsheetHOP entities: - - uid: 671 + - uid: 690 components: - type: Transform - pos: -21.5,-4.5 + rot: 1.5707963267948966 rad + pos: -20.5,-5.5 parent: 2 - proto: BedsheetHOS entities: - - uid: 672 + - uid: 691 components: - type: Transform pos: -160.5,14.5 parent: 2 - proto: BedsheetMedical entities: - - uid: 673 + - uid: 692 components: - type: Transform rot: 1.5707963267948966 rad pos: -187.5,-18.5 parent: 2 - - uid: 674 + - uid: 693 components: - type: Transform rot: 1.5707963267948966 rad pos: -185.5,-15.5 parent: 2 - - uid: 675 + - uid: 694 components: - type: Transform rot: 1.5707963267948966 rad pos: -187.5,-15.5 parent: 2 - - uid: 676 + - uid: 695 components: - type: Transform rot: 1.5707963267948966 rad pos: -187.5,-13.5 parent: 2 - - uid: 677 + - uid: 696 components: - type: Transform pos: -48.5,15.5 parent: 2 - - uid: 678 + - uid: 697 components: - type: Transform rot: 3.141592653589793 rad pos: -177.5,3.5 parent: 2 + - uid: 698 + components: + - type: Transform + pos: -217.5,-17.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: -216.5,-16.5 + parent: 2 - proto: BedsheetMime entities: - - uid: 679 + - uid: 700 components: - type: Transform rot: -1.5707963267948966 rad @@ -16713,15 +17071,23 @@ entities: parent: 2 - proto: BedsheetOrange entities: - - uid: 680 + - uid: 701 components: - type: Transform rot: -1.5707963267948966 rad pos: -173.5,0.5 parent: 2 +- proto: BedsheetPurple + entities: + - uid: 702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -192.5,17.5 + parent: 2 - proto: BedsheetQM entities: - - uid: 681 + - uid: 703 components: - type: Transform rot: 3.141592653589793 rad @@ -16729,20 +17095,21 @@ entities: parent: 2 - proto: BedsheetRD entities: - - uid: 682 + - uid: 704 components: - type: Transform - pos: -203.5,19.5 + rot: -1.5707963267948966 rad + pos: -197.5,17.5 parent: 2 - proto: BedsheetRed entities: - - uid: 683 + - uid: 705 components: - type: Transform rot: 1.5707963267948966 rad pos: -164.5,-13.5 parent: 2 - - uid: 684 + - uid: 706 components: - type: Transform rot: 1.5707963267948966 rad @@ -16750,125 +17117,187 @@ entities: parent: 2 - proto: BedsheetSpawner entities: - - uid: 685 + - uid: 707 components: - type: Transform pos: -98.5,10.5 parent: 2 - - uid: 686 + - uid: 708 components: - type: Transform pos: -106.5,10.5 parent: 2 - - uid: 687 + - uid: 709 components: - type: Transform pos: -106.5,6.5 parent: 2 - - uid: 688 + - uid: 710 components: - type: Transform pos: -103.5,22.5 parent: 2 - - uid: 689 + - uid: 711 components: - type: Transform pos: -166.5,11.5 parent: 2 - - uid: 690 + - uid: 712 components: - type: Transform pos: -128.5,-10.5 parent: 2 - - uid: 691 + - uid: 713 components: - type: Transform pos: -139.5,6.5 parent: 2 - - uid: 692 + - uid: 714 components: - type: Transform pos: -110.5,5.5 parent: 2 - - uid: 693 + - uid: 715 components: - type: Transform pos: -110.5,3.5 parent: 2 - - uid: 694 + - uid: 716 components: - type: Transform pos: -152.5,-23.5 parent: 2 - - uid: 695 + - uid: 717 components: - type: Transform pos: -158.5,-23.5 parent: 2 -- proto: BedsheetSyndie - entities: - - uid: 696 + - uid: 718 components: - type: Transform - pos: -113.5,-15.5 + pos: -229.5,-19.5 + parent: 2 + - uid: 719 + components: + - type: Transform + pos: -214.5,-31.5 + parent: 2 + - uid: 720 + components: + - type: Transform + pos: -230.5,-31.5 + parent: 2 + - uid: 721 + components: + - type: Transform + pos: -230.5,-23.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: -229.5,-27.5 parent: 2 - proto: BenchParkBambooLeft entities: - - uid: 697 + - uid: 723 components: - type: Transform pos: -28.5,-1.5 parent: 2 - proto: BenchParkBambooRight entities: - - uid: 698 + - uid: 724 components: - type: Transform pos: -29.5,-1.5 parent: 2 - proto: BenchParkLeft entities: - - uid: 699 + - uid: 725 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,4.5 parent: 2 + - uid: 726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -220.5,-4.5 + parent: 2 + - uid: 727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -224.5,-11.5 + parent: 2 + - uid: 728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -227.5,-10.5 + parent: 2 +- proto: BenchParkMiddle + entities: + - uid: 729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -223.5,-11.5 + parent: 2 - proto: BenchParkRight entities: - - uid: 700 + - uid: 730 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,3.5 parent: 2 + - uid: 731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -222.5,-11.5 + parent: 2 + - uid: 732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -227.5,-11.5 + parent: 2 + - uid: 733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -220.5,-3.5 + parent: 2 - proto: BenchPewLeft entities: - - uid: 701 + - uid: 734 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,1.5 parent: 2 - - uid: 702 + - uid: 735 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,5.5 parent: 2 - - uid: 703 + - uid: 736 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,5.5 parent: 2 - - uid: 704 + - uid: 737 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,2.5 parent: 2 - - uid: 705 + - uid: 738 components: - type: Transform rot: -1.5707963267948966 rad @@ -16876,7 +17305,7 @@ entities: parent: 2 - proto: BenchPewMiddle entities: - - uid: 706 + - uid: 739 components: - type: Transform rot: 3.141592653589793 rad @@ -16884,31 +17313,31 @@ entities: parent: 2 - proto: BenchPewRight entities: - - uid: 707 + - uid: 740 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,1.5 parent: 2 - - uid: 708 + - uid: 741 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,1.5 parent: 2 - - uid: 709 + - uid: 742 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,1.5 parent: 2 - - uid: 710 + - uid: 743 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,4.5 parent: 2 - - uid: 711 + - uid: 744 components: - type: Transform rot: -1.5707963267948966 rad @@ -16916,19 +17345,19 @@ entities: parent: 2 - proto: BenchSofaCorpCorner entities: - - uid: 712 + - uid: 745 components: - type: Transform rot: 3.141592653589793 rad pos: -120.5,-7.5 parent: 2 - - uid: 713 + - uid: 746 components: - type: Transform rot: -1.5707963267948966 rad pos: -113.5,-5.5 parent: 2 - - uid: 714 + - uid: 747 components: - type: Transform rot: 3.141592653589793 rad @@ -16936,19 +17365,19 @@ entities: parent: 2 - proto: BenchSofaCorpLeft entities: - - uid: 715 + - uid: 748 components: - type: Transform rot: 1.5707963267948966 rad pos: -120.5,-5.5 parent: 2 - - uid: 716 + - uid: 749 components: - type: Transform rot: 1.5707963267948966 rad pos: -116.5,-5.5 parent: 2 - - uid: 717 + - uid: 750 components: - type: Transform rot: 3.141592653589793 rad @@ -16956,13 +17385,13 @@ entities: parent: 2 - proto: BenchSofaCorpMiddle entities: - - uid: 718 + - uid: 751 components: - type: Transform rot: 1.5707963267948966 rad pos: -120.5,-6.5 parent: 2 - - uid: 719 + - uid: 752 components: - type: Transform rot: 3.141592653589793 rad @@ -16970,19 +17399,19 @@ entities: parent: 2 - proto: BenchSofaCorpRight entities: - - uid: 720 + - uid: 753 components: - type: Transform rot: 3.141592653589793 rad pos: -118.5,-7.5 parent: 2 - - uid: 721 + - uid: 754 components: - type: Transform rot: -1.5707963267948966 rad pos: -113.5,-4.5 parent: 2 - - uid: 722 + - uid: 755 components: - type: Transform rot: 3.141592653589793 rad @@ -16990,13 +17419,13 @@ entities: parent: 2 - proto: BenchSofaLeft entities: - - uid: 723 + - uid: 756 components: - type: Transform rot: -1.5707963267948966 rad pos: -117.5,-1.5 parent: 2 - - uid: 724 + - uid: 757 components: - type: Transform rot: 3.141592653589793 rad @@ -17004,7 +17433,7 @@ entities: parent: 2 - proto: BenchSofaMiddle entities: - - uid: 725 + - uid: 758 components: - type: Transform rot: 3.141592653589793 rad @@ -17012,13 +17441,13 @@ entities: parent: 2 - proto: BenchSofaRight entities: - - uid: 726 + - uid: 759 components: - type: Transform rot: -1.5707963267948966 rad pos: -117.5,-0.5 parent: 2 - - uid: 727 + - uid: 760 components: - type: Transform rot: 3.141592653589793 rad @@ -17026,322 +17455,368 @@ entities: parent: 2 - proto: BenchSteelLeft entities: - - uid: 728 + - uid: 761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -205.5,9.5 + parent: 2 + - uid: 762 components: - type: Transform pos: -146.5,-4.5 parent: 2 - - uid: 729 + - uid: 763 components: - type: Transform rot: 3.141592653589793 rad pos: -142.5,-3.5 parent: 2 - - uid: 730 + - uid: 764 components: - type: Transform pos: -138.5,-4.5 parent: 2 - - uid: 731 + - uid: 765 components: - type: Transform rot: 3.141592653589793 rad pos: -134.5,-3.5 parent: 2 - - uid: 732 + - uid: 766 components: - type: Transform rot: 1.5707963267948966 rad pos: -136.5,3.5 parent: 2 - - uid: 733 + - uid: 767 components: - type: Transform rot: -1.5707963267948966 rad pos: -132.5,4.5 parent: 2 - - uid: 734 + - uid: 768 components: - type: Transform rot: 3.141592653589793 rad pos: -136.5,0.5 parent: 2 - - uid: 735 + - uid: 769 components: - type: Transform rot: 3.141592653589793 rad pos: -136.5,1.5 parent: 2 - - uid: 736 + - uid: 770 components: - type: Transform rot: 3.141592653589793 rad pos: -131.5,0.5 parent: 2 - - uid: 737 + - uid: 771 components: - type: Transform rot: 3.141592653589793 rad pos: -131.5,1.5 parent: 2 - - uid: 738 + - uid: 772 components: - type: Transform rot: 3.141592653589793 rad pos: -167.5,-5.5 parent: 2 - - uid: 739 + - uid: 773 components: - type: Transform rot: 1.5707963267948966 rad pos: -89.5,-7.5 parent: 2 - - uid: 740 + - uid: 774 components: - type: Transform rot: 1.5707963267948966 rad pos: -89.5,-0.5 parent: 2 + - uid: 775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 2 + - uid: 776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -209.5,7.5 + parent: 2 - proto: BenchSteelMiddle entities: - - uid: 741 + - uid: 777 components: - type: Transform pos: -145.5,-4.5 parent: 2 - - uid: 742 + - uid: 778 components: - type: Transform pos: -144.5,-4.5 parent: 2 - - uid: 743 + - uid: 779 components: - type: Transform pos: -143.5,-4.5 parent: 2 - - uid: 744 + - uid: 780 components: - type: Transform pos: -137.5,-4.5 parent: 2 - - uid: 745 + - uid: 781 components: - type: Transform pos: -136.5,-4.5 parent: 2 - - uid: 746 + - uid: 782 components: - type: Transform pos: -135.5,-4.5 parent: 2 - - uid: 747 + - uid: 783 components: - type: Transform rot: 3.141592653589793 rad pos: -135.5,-3.5 parent: 2 - - uid: 748 + - uid: 784 components: - type: Transform rot: 3.141592653589793 rad pos: -136.5,-3.5 parent: 2 - - uid: 749 + - uid: 785 components: - type: Transform rot: 3.141592653589793 rad pos: -137.5,-3.5 parent: 2 - - uid: 750 + - uid: 786 components: - type: Transform rot: 3.141592653589793 rad pos: -143.5,-3.5 parent: 2 - - uid: 751 + - uid: 787 components: - type: Transform rot: 3.141592653589793 rad pos: -144.5,-3.5 parent: 2 - - uid: 752 + - uid: 788 components: - type: Transform rot: 3.141592653589793 rad pos: -145.5,-3.5 parent: 2 - - uid: 753 + - uid: 789 components: - type: Transform rot: 3.141592653589793 rad pos: -168.5,-5.5 parent: 2 + - uid: 790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -205.5,8.5 + parent: 2 + - uid: 791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -209.5,8.5 + parent: 2 - proto: BenchSteelRight entities: - - uid: 754 + - uid: 792 components: - type: Transform pos: -142.5,-4.5 parent: 2 - - uid: 755 + - uid: 793 components: - type: Transform rot: 3.141592653589793 rad pos: -146.5,-3.5 parent: 2 - - uid: 756 + - uid: 794 components: - type: Transform pos: -134.5,-4.5 parent: 2 - - uid: 757 + - uid: 795 components: - type: Transform rot: 3.141592653589793 rad pos: -138.5,-3.5 parent: 2 - - uid: 758 + - uid: 796 components: - type: Transform rot: 1.5707963267948966 rad pos: -136.5,4.5 parent: 2 - - uid: 759 + - uid: 797 components: - type: Transform rot: -1.5707963267948966 rad pos: -132.5,3.5 parent: 2 - - uid: 760 + - uid: 798 components: - type: Transform rot: 3.141592653589793 rad pos: -137.5,0.5 parent: 2 - - uid: 761 + - uid: 799 components: - type: Transform rot: 3.141592653589793 rad pos: -137.5,1.5 parent: 2 - - uid: 762 + - uid: 800 components: - type: Transform rot: 3.141592653589793 rad pos: -132.5,0.5 parent: 2 - - uid: 763 + - uid: 801 components: - type: Transform rot: 3.141592653589793 rad pos: -132.5,1.5 parent: 2 - - uid: 764 + - uid: 802 components: - type: Transform rot: 3.141592653589793 rad pos: -169.5,-5.5 parent: 2 - - uid: 765 + - uid: 803 components: - type: Transform rot: 1.5707963267948966 rad pos: -89.5,0.5 parent: 2 - - uid: 766 + - uid: 804 components: - type: Transform rot: 1.5707963267948966 rad pos: -89.5,-6.5 parent: 2 -- proto: BiomassReclaimer - entities: - - uid: 767 + - uid: 805 components: - type: Transform - pos: -188.5,-28.5 + rot: 1.5707963267948966 rad + pos: -10.5,-0.5 parent: 2 -- proto: BlastDoor + - uid: 806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -205.5,7.5 + parent: 2 + - uid: 807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -209.5,9.5 + parent: 2 +- proto: BiomassReclaimer entities: - - uid: 768 + - uid: 808 components: - type: Transform - pos: -56.5,-27.5 + pos: -189.5,-30.5 parent: 2 - - uid: 769 +- proto: BlackKnight + entities: + - uid: 809 components: - type: Transform - pos: -60.5,-27.5 + rot: -1.5707963267948966 rad + pos: -99.48461,12.551468 parent: 2 - - uid: 770 +- proto: BlastDoor + entities: + - uid: 810 components: - type: Transform - pos: -194.5,28.5 + pos: -66.5,3.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 2 links: - - 13063 - - uid: 771 + - 11867 + - uid: 811 components: - type: Transform - pos: -198.5,28.5 + pos: -66.5,4.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 2 links: - - 13063 - - uid: 772 + - 11867 + - uid: 812 components: - type: Transform - pos: -66.5,3.5 + pos: -66.5,5.5 parent: 2 - type: DeviceLinkSink links: - - 11464 - - uid: 773 + - 11867 + - uid: 813 components: - type: Transform - pos: -66.5,4.5 + rot: -1.5707963267948966 rad + pos: -187.5,4.5 parent: 2 - type: DeviceLinkSink links: - - 11464 - - uid: 774 + - 13482 + - uid: 814 components: - type: Transform - pos: -66.5,5.5 + rot: -1.5707963267948966 rad + pos: -187.5,12.5 parent: 2 - type: DeviceLinkSink links: - - 11464 + - 13483 - proto: BlastDoorOpen entities: - - uid: 775 + - uid: 815 components: - type: Transform pos: -2.5,-10.5 parent: 2 - type: DeviceLinkSink links: - - 11462 - - uid: 776 + - 11865 + - uid: 816 components: - type: Transform pos: -2.5,-11.5 parent: 2 - type: DeviceLinkSink links: - - 11462 - - uid: 777 + - 11865 + - uid: 817 components: - type: Transform pos: -2.5,-12.5 parent: 2 - type: DeviceLinkSink links: - - 11462 - - uid: 778 + - 11865 + - uid: 818 components: - type: Transform rot: 1.5707963267948966 rad @@ -17349,24 +17824,16 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13058 - - uid: 779 - components: - - type: Transform - pos: -82.5,-8.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13058 - - uid: 780 + - 13486 + - uid: 819 components: - type: Transform pos: -82.5,-6.5 parent: 2 - type: DeviceLinkSink links: - - 13058 - - uid: 781 + - 13486 + - uid: 820 components: - type: Transform rot: 1.5707963267948966 rad @@ -17374,8 +17841,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13058 - - uid: 782 + - 13486 + - uid: 821 components: - type: Transform rot: 1.5707963267948966 rad @@ -17383,8 +17850,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13058 - - uid: 783 + - 13486 + - uid: 822 components: - type: Transform rot: 1.5707963267948966 rad @@ -17392,8 +17859,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13058 - - uid: 784 + - 13486 + - uid: 823 components: - type: Transform rot: 3.141592653589793 rad @@ -17401,24 +17868,24 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13057 - - uid: 785 + - 13485 + - uid: 824 components: - type: Transform pos: -70.5,-9.5 parent: 2 - type: DeviceLinkSink links: - - 13057 - - uid: 786 + - 13485 + - uid: 825 components: - type: Transform pos: -70.5,-8.5 parent: 2 - type: DeviceLinkSink links: - - 13057 - - uid: 787 + - 13485 + - uid: 826 components: - type: Transform rot: 3.141592653589793 rad @@ -17426,8 +17893,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13057 - - uid: 788 + - 13485 + - uid: 827 components: - type: Transform rot: 3.141592653589793 rad @@ -17435,8 +17902,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13057 - - uid: 789 + - 13485 + - uid: 828 components: - type: Transform rot: 1.5707963267948966 rad @@ -17444,8 +17911,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13058 - - uid: 790 + - 13486 + - uid: 829 components: - type: Transform rot: 1.5707963267948966 rad @@ -17453,8 +17920,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13058 - - uid: 791 + - 13486 + - uid: 830 components: - type: Transform rot: 1.5707963267948966 rad @@ -17462,14 +17929,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13058 - - uid: 792 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-3.5 - parent: 2 - - uid: 793 + - 13486 + - uid: 831 components: - type: Transform rot: 3.141592653589793 rad @@ -17477,8 +17938,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13058 - - uid: 794 + - 13486 + - uid: 832 components: - type: Transform rot: 3.141592653589793 rad @@ -17486,8 +17947,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13058 - - uid: 795 + - 13486 + - uid: 833 components: - type: Transform rot: 3.141592653589793 rad @@ -17495,16 +17956,16 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13058 - - uid: 796 + - 13486 + - uid: 834 components: - type: Transform pos: -83.5,-5.5 parent: 2 - type: DeviceLinkSink links: - - 13058 - - uid: 797 + - 13486 + - uid: 835 components: - type: Transform rot: 3.141592653589793 rad @@ -17512,16 +17973,16 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13058 - - uid: 798 + - 13486 + - uid: 836 components: - type: Transform pos: -83.5,-4.5 parent: 2 - type: DeviceLinkSink links: - - 13058 - - uid: 799 + - 13486 + - uid: 837 components: - type: Transform rot: -1.5707963267948966 rad @@ -17529,8 +17990,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13062 - - uid: 800 + - 13490 + - uid: 838 components: - type: Transform rot: -1.5707963267948966 rad @@ -17538,9 +17999,9 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 11466 - - 11465 - - uid: 801 + - 11869 + - 11868 + - uid: 839 components: - type: Transform rot: -1.5707963267948966 rad @@ -17548,8 +18009,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 11465 - - uid: 802 + - 11868 + - uid: 840 components: - type: Transform rot: -1.5707963267948966 rad @@ -17557,8 +18018,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 11465 - - uid: 803 + - 11868 + - uid: 841 components: - type: Transform rot: -1.5707963267948966 rad @@ -17566,8 +18027,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 11465 - - uid: 804 + - 11868 + - uid: 842 components: - type: Transform rot: -1.5707963267948966 rad @@ -17575,8 +18036,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 11465 - - uid: 805 + - 11868 + - uid: 843 components: - type: Transform rot: -1.5707963267948966 rad @@ -17584,8 +18045,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 11465 - - uid: 806 + - 11868 + - uid: 844 components: - type: Transform rot: -1.5707963267948966 rad @@ -17593,8 +18054,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 11465 - - uid: 807 + - 11868 + - uid: 845 components: - type: Transform rot: -1.5707963267948966 rad @@ -17602,8 +18063,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 11465 - - uid: 808 + - 11868 + - uid: 846 components: - type: Transform rot: -1.5707963267948966 rad @@ -17611,8 +18072,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 11465 - - uid: 809 + - 11868 + - uid: 847 components: - type: Transform rot: -1.5707963267948966 rad @@ -17620,8 +18081,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 11465 - - uid: 810 + - 11868 + - uid: 848 components: - type: Transform rot: -1.5707963267948966 rad @@ -17629,8 +18090,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 11465 - - uid: 811 + - 11868 + - uid: 849 components: - type: Transform rot: -1.5707963267948966 rad @@ -17638,24 +18099,24 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 11465 - - uid: 812 + - 11868 + - uid: 850 components: - type: Transform pos: -11.5,-0.5 parent: 2 - type: DeviceLinkSink links: - - 11465 - - uid: 813 + - 11868 + - uid: 851 components: - type: Transform pos: -11.5,-1.5 parent: 2 - type: DeviceLinkSink links: - - 11465 - - uid: 814 + - 11868 + - uid: 852 components: - type: Transform rot: 3.141592653589793 rad @@ -17663,24 +18124,24 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13058 - - uid: 815 + - 13486 + - uid: 853 components: - type: Transform pos: -82.5,-7.5 parent: 2 - type: DeviceLinkSink links: - - 13058 - - uid: 816 + - 13486 + - uid: 854 components: - type: Transform pos: -70.5,-7.5 parent: 2 - type: DeviceLinkSink links: - - 13057 - - uid: 817 + - 13485 + - uid: 855 components: - type: Transform rot: -1.5707963267948966 rad @@ -17688,8 +18149,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 11465 - - uid: 818 + - 11868 + - uid: 856 components: - type: Transform rot: -1.5707963267948966 rad @@ -17697,71 +18158,76 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 11465 - - uid: 17030 + - 11868 + - uid: 857 + components: + - type: Transform + pos: -82.5,-8.5 + parent: 2 + - uid: 17574 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-4.5 - parent: 17021 + parent: 17565 - type: DeviceLinkSink links: - - 17098 - - uid: 17031 + - 17642 + - uid: 17575 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-2.5 - parent: 17021 + parent: 17565 - type: DeviceLinkSink links: - - 17098 - - uid: 17032 + - 17642 + - uid: 17576 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-5.5 - parent: 17021 + parent: 17565 - type: DeviceLinkSink links: - - 17098 - - uid: 17033 + - 17642 + - uid: 17577 components: - type: Transform pos: 16.5,-1.5 - parent: 17021 + parent: 17565 - type: DeviceLinkSink links: - - 17098 - - uid: 17034 + - 17642 + - uid: 17578 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-2.5 - parent: 17021 + parent: 17565 - type: DeviceLinkSink links: - - 17098 - - uid: 17035 + - 17642 + - uid: 17579 components: - type: Transform pos: 17.5,-4.5 - parent: 17021 + parent: 17565 - type: DeviceLinkSink links: - - 17098 - - uid: 17036 + - 17642 + - uid: 17580 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-3.5 - parent: 17021 + parent: 17565 - type: DeviceLinkSink links: - - 17098 + - 17642 - proto: BlastDoorWindowsOpen entities: - - uid: 819 + - uid: 858 components: - type: Transform rot: -1.5707963267948966 rad @@ -17769,8 +18235,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13059 - - uid: 820 + - 13487 + - uid: 859 components: - type: Transform rot: -1.5707963267948966 rad @@ -17778,8 +18244,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13059 - - uid: 821 + - 13487 + - uid: 860 components: - type: Transform rot: -1.5707963267948966 rad @@ -17787,8 +18253,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13059 - - uid: 822 + - 13487 + - uid: 861 components: - type: Transform rot: -1.5707963267948966 rad @@ -17796,8 +18262,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13061 - - uid: 823 + - 13489 + - uid: 862 components: - type: Transform rot: -1.5707963267948966 rad @@ -17805,8 +18271,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13061 - - uid: 824 + - 13489 + - uid: 863 components: - type: Transform rot: 1.5707963267948966 rad @@ -17814,8 +18280,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13061 - - uid: 825 + - 13489 + - uid: 864 components: - type: Transform rot: -1.5707963267948966 rad @@ -17823,16 +18289,16 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13061 - - uid: 826 + - 13489 + - uid: 865 components: - type: Transform pos: -152.5,16.5 parent: 2 - type: DeviceLinkSink links: - - 13059 - - uid: 827 + - 13487 + - uid: 866 components: - type: Transform rot: 1.5707963267948966 rad @@ -17840,8 +18306,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13061 - - uid: 828 + - 13489 + - uid: 867 components: - type: Transform rot: 3.141592653589793 rad @@ -17849,16 +18315,16 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13061 - - uid: 829 + - 13489 + - uid: 868 components: - type: Transform pos: -168.5,-1.5 parent: 2 - type: DeviceLinkSink links: - - 13061 - - uid: 830 + - 13489 + - uid: 869 components: - type: Transform rot: 1.5707963267948966 rad @@ -17866,8 +18332,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13061 - - uid: 831 + - 13489 + - uid: 870 components: - type: Transform rot: 3.141592653589793 rad @@ -17875,24 +18341,24 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13061 - - uid: 832 + - 13489 + - uid: 871 components: - type: Transform pos: -152.5,14.5 parent: 2 - type: DeviceLinkSink links: - - 13059 - - uid: 833 + - 13487 + - uid: 872 components: - type: Transform pos: -161.5,15.5 parent: 2 - type: DeviceLinkSink links: - - 13059 - - uid: 834 + - 13487 + - uid: 873 components: - type: Transform rot: -1.5707963267948966 rad @@ -17900,16 +18366,16 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13060 - - uid: 835 + - 13488 + - uid: 874 components: - type: Transform pos: -164.5,13.5 parent: 2 - type: DeviceLinkSink links: - - 13060 - - uid: 836 + - 13488 + - uid: 875 components: - type: Transform rot: 1.5707963267948966 rad @@ -17917,17 +18383,17 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 13060 + - 13488 - proto: BodyScannerComputerCircuitboard entities: - - uid: 837 + - uid: 876 components: - type: Transform pos: -53.718212,-1.2347455 parent: 2 - proto: Bonfire entities: - - uid: 838 + - uid: 877 components: - type: Transform rot: 1.5707963267948966 rad @@ -17935,74 +18401,74 @@ entities: parent: 2 - proto: BookshelfFilled entities: - - uid: 839 + - uid: 878 components: - type: Transform pos: -43.5,-15.5 parent: 2 - - uid: 840 + - uid: 879 components: - type: Transform pos: -46.5,-14.5 parent: 2 - - uid: 841 + - uid: 880 components: - type: Transform pos: -46.5,-15.5 parent: 2 - - uid: 842 + - uid: 881 components: - type: Transform pos: -44.5,-14.5 parent: 2 - - uid: 843 + - uid: 882 components: - type: Transform pos: -44.5,-15.5 parent: 2 - - uid: 844 + - uid: 883 components: - type: Transform pos: -43.5,-14.5 parent: 2 - - uid: 845 + - uid: 884 components: - type: Transform pos: -44.5,-20.5 parent: 2 - - uid: 846 + - uid: 885 components: - type: Transform pos: -42.5,-20.5 parent: 2 - - uid: 847 + - uid: 886 components: - type: Transform pos: -152.5,-17.5 parent: 2 - - uid: 848 + - uid: 887 components: - type: Transform pos: -152.5,-18.5 parent: 2 - - uid: 849 + - uid: 888 components: - type: Transform pos: -152.5,-20.5 parent: 2 - - uid: 850 + - uid: 889 components: - type: Transform pos: -152.5,-21.5 parent: 2 - - uid: 851 + - uid: 890 components: - type: Transform pos: -43.5,-20.5 parent: 2 - proto: BookTemple entities: - - uid: 852 + - uid: 891 components: - type: Transform rot: 3.141592653589793 rad @@ -18010,102 +18476,124 @@ entities: parent: 2 - proto: BoozeDispenser entities: - - uid: 853 + - uid: 892 components: - type: Transform pos: -119.5,4.5 parent: 2 - - uid: 854 + - uid: 893 components: - type: Transform rot: 1.5707963267948966 rad pos: -121.5,15.5 parent: 2 + - uid: 894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -221.5,-29.5 + parent: 2 - proto: BorgCharger entities: - - uid: 855 + - uid: 895 components: - type: Transform pos: -57.5,4.5 parent: 2 - - uid: 856 + - uid: 896 components: - type: Transform pos: -158.5,-6.5 parent: 2 - - uid: 857 + - uid: 897 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,5.5 parent: 2 - - uid: 858 + - uid: 898 components: - type: Transform rot: 1.5707963267948966 rad pos: -110.5,0.5 parent: 2 - - uid: 859 + - uid: 899 components: - type: Transform pos: -16.5,-12.5 parent: 2 - proto: BoxBodyBag entities: - - uid: 860 + - uid: 900 components: - type: Transform - pos: -180.31744,-24.652328 + pos: -189.59378,-27.43448 parent: 2 - - uid: 861 + - uid: 901 components: - type: Transform pos: -179.80382,1.0564113 parent: 2 + - uid: 902 + components: + - type: Transform + pos: -189.31233,-27.200106 + parent: 2 +- proto: BoxBottle + entities: + - uid: 904 + components: + - type: Transform + parent: 903 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage - proto: BoxCleanerGrenades entities: - - uid: 862 + - uid: 910 components: - type: Transform pos: -33.629982,-12.432445 parent: 2 - proto: BoxFlare entities: - - uid: 863 + - uid: 911 components: - type: Transform pos: -18.25333,-13.16501 parent: 2 - - uid: 864 + - uid: 912 components: - type: Transform pos: -81.25996,-31.918343 parent: 2 - - uid: 865 + - uid: 913 components: - type: Transform pos: -19.321314,-16.283936 parent: 2 - proto: BoxFlashbang entities: - - uid: 866 + - uid: 914 components: - type: Transform pos: -147.04648,10.599016 parent: 2 - - uid: 867 + - uid: 915 components: - type: Transform pos: -166.29211,-12.597824 parent: 2 - - uid: 868 + - uid: 916 components: - type: Transform pos: -162.51727,5.709574 parent: 2 - proto: BoxFolderBase entities: - - uid: 869 + - uid: 917 components: - type: Transform rot: -1.5707963267948966 rad @@ -18113,25 +18601,25 @@ entities: parent: 2 - proto: BoxFolderBlack entities: - - uid: 870 + - uid: 918 components: - type: Transform pos: -142.14174,1.641679 parent: 2 - proto: BoxFolderBlue entities: - - uid: 871 + - uid: 919 components: - type: Transform pos: -187.26215,-8.538323 parent: 2 - - uid: 873 + - uid: 921 components: - type: Transform - parent: 872 + parent: 920 - type: Physics canCollide: False - - uid: 879 + - uid: 927 components: - type: Transform rot: 3.141592653589793 rad @@ -18139,33 +18627,33 @@ entities: parent: 2 - proto: BoxFolderClipboard entities: - - uid: 880 + - uid: 928 components: - type: Transform pos: -141.48392,6.3266497 parent: 2 - - uid: 881 + - uid: 929 components: - type: Transform pos: -141.52315,1.458219 parent: 2 - proto: BoxFolderGrey entities: - - uid: 874 + - uid: 922 components: - type: Transform - parent: 872 + parent: 920 - type: Physics canCollide: False - proto: BoxFolderRed entities: - - uid: 875 + - uid: 923 components: - type: Transform - parent: 872 + parent: 920 - type: Physics canCollide: False - - uid: 882 + - uid: 930 components: - type: Transform rot: 3.141592653589793 rad @@ -18173,13 +18661,13 @@ entities: parent: 2 - proto: BoxFolderWhite entities: - - uid: 876 + - uid: 924 components: - type: Transform - parent: 872 + parent: 920 - type: Physics canCollide: False - - uid: 883 + - uid: 931 components: - type: Transform rot: 3.141592653589793 rad @@ -18187,13 +18675,13 @@ entities: parent: 2 - proto: BoxFolderYellow entities: - - uid: 877 + - uid: 925 components: - type: Transform - parent: 872 + parent: 920 - type: Physics canCollide: False - - uid: 884 + - uid: 932 components: - type: Transform rot: 3.141592653589793 rad @@ -18201,22 +18689,22 @@ entities: parent: 2 - proto: BoxForensicPad entities: - - uid: 885 + - uid: 933 components: - type: Transform pos: -146.2312,4.877244 parent: 2 - proto: BoxHandcuff entities: - - uid: 886 + - uid: 934 components: - type: Transform pos: -152.37411,9.773829 parent: 2 - - uid: 888 + - uid: 936 components: - type: Transform - parent: 887 + parent: 935 - type: Physics angularDamping: 0 linearDamping: 0 @@ -18224,7 +18712,7 @@ entities: - type: InsideEntityStorage - proto: BoxingBell entities: - - uid: 891 + - uid: 939 components: - type: Transform rot: 3.141592653589793 rad @@ -18232,94 +18720,127 @@ entities: parent: 2 - proto: BoxMagazinePistolSubMachineGun entities: - - uid: 892 + - uid: 940 components: - type: Transform pos: -173.4037,9.695773 parent: 2 - - uid: 893 + - uid: 941 components: - type: Transform pos: -173.66933,9.398898 parent: 2 - proto: BoxMagazineRifle entities: - - uid: 894 + - uid: 942 components: - type: Transform pos: -173.6537,14.690516 parent: 2 - - uid: 895 + - uid: 943 components: - type: Transform pos: -173.37245,14.424891 parent: 2 - proto: BoxMagazineShotgun entities: - - uid: 896 + - uid: 944 components: - type: Transform pos: -175.70737,11.282557 parent: 2 - - uid: 897 + - uid: 945 components: - type: Transform pos: -175.30112,11.204432 parent: 2 - proto: BoxMRE entities: - - uid: 898 + - uid: 946 components: - type: Transform pos: -171.63168,1.6405786 parent: 2 - - uid: 899 + - uid: 947 components: - type: Transform pos: -167.31918,1.7343286 parent: 2 - - uid: 900 + - uid: 948 components: - type: Transform pos: -165.72543,1.7812036 parent: 2 - - uid: 17037 + - uid: 17581 components: - type: Transform pos: 12.6996565,-5.5594954 - parent: 17021 - - uid: 17038 + parent: 17565 + - uid: 17582 components: - type: Transform pos: 12.8871565,-5.2782454 - parent: 17021 + parent: 17565 +- proto: BoxPillCanister + entities: + - uid: 905 + components: + - type: Transform + parent: 903 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage - proto: BoxShotgunPractice entities: - - uid: 901 + - uid: 949 components: - type: Transform pos: -145.42528,7.4490833 parent: 2 +- proto: BoxSyringe + entities: + - uid: 906 + components: + - type: Transform + parent: 903 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: BoxVial + entities: + - uid: 907 + components: + - type: Transform + parent: 903 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage - proto: BoxZiptie entities: - - uid: 902 + - uid: 950 components: - type: Transform pos: -166.70657,-12.300949 parent: 2 - - uid: 903 + - uid: 951 components: - type: Transform pos: -158.47382,9.624687 parent: 2 - proto: BrbSign entities: - - uid: 904 + - uid: 952 components: - type: Transform pos: -16.47217,-0.29422855 parent: 2 - - uid: 905 + - uid: 953 components: - type: MetaData desc: уютненько @@ -18328,19 +18849,19 @@ entities: parent: 2 - proto: BrigTimer entities: - - uid: 906 + - uid: 954 components: - type: Transform rot: 3.141592653589793 rad pos: -163.5,2.5 parent: 2 - - uid: 907 + - uid: 955 components: - type: Transform rot: 3.141592653589793 rad pos: -170.5,2.5 parent: 2 - - uid: 908 + - uid: 956 components: - type: Transform rot: 3.141592653589793 rad @@ -18348,13 +18869,13 @@ entities: parent: 2 - proto: BrutepackAdvanced1 entities: - - uid: 909 + - uid: 957 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.806526,14.591904 parent: 2 - - uid: 910 + - uid: 958 components: - type: Transform rot: -1.5707963267948966 rad @@ -18362,27 +18883,27 @@ entities: parent: 2 - proto: Bucket entities: - - uid: 911 + - uid: 959 components: - type: Transform pos: -167.0953,-25.1349 parent: 2 - proto: ButtonFrameCaution entities: - - uid: 912 + - uid: 960 components: - type: Transform pos: -111.5,-8.5 parent: 2 - - uid: 17039 + - uid: 17583 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-5.5 - parent: 17021 + parent: 17565 - proto: ButtonFrameCautionSecurity entities: - - uid: 913 + - uid: 961 components: - type: Transform rot: 1.5707963267948966 rad @@ -18390,13 +18911,13 @@ entities: parent: 2 - proto: ButtonFrameGrey entities: - - uid: 914 + - uid: 962 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-5.5 parent: 2 - - uid: 915 + - uid: 963 components: - type: Transform rot: 1.5707963267948966 rad @@ -18404,75631 +18925,79235 @@ entities: parent: 2 - proto: CableApcExtension entities: - - uid: 916 + - uid: 964 + components: + - type: Transform + pos: -44.5,35.5 + parent: 2 + - uid: 965 components: - type: Transform pos: -77.5,24.5 parent: 2 - - uid: 917 + - uid: 966 components: - type: Transform pos: -46.5,16.5 parent: 2 - - uid: 918 + - uid: 967 components: - type: Transform pos: -161.5,15.5 parent: 2 - - uid: 919 + - uid: 968 components: - type: Transform pos: -99.5,-11.5 parent: 2 - - uid: 920 + - uid: 969 components: - type: Transform pos: -98.5,-12.5 parent: 2 - - uid: 921 + - uid: 970 components: - type: Transform pos: -152.5,15.5 parent: 2 - - uid: 922 + - uid: 971 components: - type: Transform pos: -152.5,16.5 parent: 2 - - uid: 923 + - uid: 972 components: - type: Transform pos: -96.5,-10.5 parent: 2 - - uid: 924 + - uid: 973 components: - type: Transform pos: -99.5,-10.5 parent: 2 - - uid: 925 + - uid: 974 components: - type: Transform pos: -98.5,-10.5 parent: 2 - - uid: 926 + - uid: 975 components: - type: Transform pos: -97.5,-10.5 parent: 2 - - uid: 927 + - uid: 976 components: - type: Transform pos: -96.5,-10.5 parent: 2 - - uid: 928 + - uid: 977 components: - type: Transform pos: -14.5,-17.5 parent: 2 - - uid: 929 + - uid: 978 components: - type: Transform pos: -15.5,-17.5 parent: 2 - - uid: 930 + - uid: 979 components: - type: Transform pos: -12.5,-15.5 parent: 2 - - uid: 931 - components: - - type: Transform - pos: -118.5,7.5 - parent: 2 - - uid: 932 - components: - - type: Transform - pos: -84.5,8.5 - parent: 2 - - uid: 933 - components: - - type: Transform - pos: -85.5,8.5 - parent: 2 - - uid: 934 - components: - - type: Transform - pos: -85.5,9.5 - parent: 2 - - uid: 935 - components: - - type: Transform - pos: -165.5,-20.5 - parent: 2 - - uid: 936 - components: - - type: Transform - pos: -165.5,-18.5 - parent: 2 - - uid: 937 - components: - - type: Transform - pos: -165.5,-19.5 - parent: 2 - - uid: 938 - components: - - type: Transform - pos: -164.5,-18.5 - parent: 2 - - uid: 939 - components: - - type: Transform - pos: -196.5,18.5 - parent: 2 - - uid: 940 - components: - - type: Transform - pos: -102.5,15.5 - parent: 2 - - uid: 941 - components: - - type: Transform - pos: -130.5,-3.5 - parent: 2 - - uid: 942 - components: - - type: Transform - pos: -17.5,9.5 - parent: 2 - - uid: 943 - components: - - type: Transform - pos: -17.5,10.5 - parent: 2 - - uid: 944 - components: - - type: Transform - pos: -18.5,10.5 - parent: 2 - - uid: 945 - components: - - type: Transform - pos: -84.5,-32.5 - parent: 2 - - uid: 946 - components: - - type: Transform - pos: -84.5,-31.5 - parent: 2 - - uid: 947 - components: - - type: Transform - pos: -84.5,-30.5 - parent: 2 - - uid: 948 - components: - - type: Transform - pos: -84.5,-29.5 - parent: 2 - - uid: 949 - components: - - type: Transform - pos: -84.5,-28.5 - parent: 2 - - uid: 950 - components: - - type: Transform - pos: -84.5,-27.5 - parent: 2 - - uid: 951 - components: - - type: Transform - pos: -85.5,-28.5 - parent: 2 - - uid: 952 - components: - - type: Transform - pos: -85.5,-31.5 - parent: 2 - - uid: 953 - components: - - type: Transform - pos: -83.5,-32.5 - parent: 2 - - uid: 954 - components: - - type: Transform - pos: -82.5,-32.5 - parent: 2 - - uid: 955 - components: - - type: Transform - pos: -82.5,-31.5 - parent: 2 - - uid: 956 - components: - - type: Transform - pos: -82.5,-30.5 - parent: 2 - - uid: 957 - components: - - type: Transform - pos: -82.5,-33.5 - parent: 2 - - uid: 958 - components: - - type: Transform - pos: -82.5,-34.5 - parent: 2 - - uid: 959 - components: - - type: Transform - pos: -82.5,-35.5 - parent: 2 - - uid: 960 - components: - - type: Transform - pos: -82.5,-36.5 - parent: 2 - - uid: 961 - components: - - type: Transform - pos: -83.5,-36.5 - parent: 2 - - uid: 962 - components: - - type: Transform - pos: -83.5,-37.5 - parent: 2 - - uid: 963 - components: - - type: Transform - pos: -83.5,-38.5 - parent: 2 - - uid: 964 - components: - - type: Transform - pos: -83.5,-39.5 - parent: 2 - - uid: 965 - components: - - type: Transform - pos: -83.5,-40.5 - parent: 2 - - uid: 966 - components: - - type: Transform - pos: -83.5,-41.5 - parent: 2 - - uid: 967 - components: - - type: Transform - pos: -83.5,-42.5 - parent: 2 - - uid: 968 - components: - - type: Transform - pos: -83.5,-43.5 - parent: 2 - - uid: 969 - components: - - type: Transform - pos: -83.5,-44.5 - parent: 2 - - uid: 970 - components: - - type: Transform - pos: -81.5,-35.5 - parent: 2 - - uid: 971 - components: - - type: Transform - pos: -81.5,-30.5 - parent: 2 - - uid: 972 - components: - - type: Transform - pos: -83.5,-34.5 - parent: 2 - - uid: 973 - components: - - type: Transform - pos: -84.5,-34.5 - parent: 2 - - uid: 974 - components: - - type: Transform - pos: -85.5,-34.5 - parent: 2 - - uid: 975 - components: - - type: Transform - pos: -182.5,-3.5 - parent: 2 - - uid: 976 - components: - - type: Transform - pos: -196.5,19.5 - parent: 2 - - uid: 977 - components: - - type: Transform - pos: -196.5,20.5 - parent: 2 - - uid: 978 - components: - - type: Transform - pos: -197.5,22.5 - parent: 2 - - uid: 979 - components: - - type: Transform - pos: -198.5,22.5 - parent: 2 - uid: 980 components: - type: Transform - pos: -196.5,17.5 + pos: -118.5,7.5 parent: 2 - uid: 981 components: - type: Transform - pos: -196.5,16.5 + pos: -84.5,8.5 parent: 2 - uid: 982 components: - type: Transform - pos: -189.5,23.5 + pos: -85.5,8.5 parent: 2 - uid: 983 components: - type: Transform - pos: -191.5,23.5 + pos: -85.5,9.5 parent: 2 - uid: 984 components: - type: Transform - pos: -190.5,23.5 + pos: -165.5,-20.5 parent: 2 - uid: 985 components: - type: Transform - pos: -196.5,28.5 + pos: -165.5,-18.5 parent: 2 - uid: 986 components: - type: Transform - pos: -196.5,27.5 + pos: -165.5,-19.5 parent: 2 - uid: 987 components: - type: Transform - pos: -196.5,26.5 + pos: -164.5,-18.5 parent: 2 - uid: 988 components: - type: Transform - pos: -196.5,25.5 + pos: -102.5,15.5 parent: 2 - uid: 989 components: - type: Transform - pos: -203.5,23.5 + pos: -130.5,-3.5 parent: 2 - uid: 990 components: - type: Transform - pos: -201.5,23.5 + pos: -17.5,9.5 parent: 2 - uid: 991 components: - type: Transform - pos: -202.5,23.5 + pos: -17.5,10.5 parent: 2 - uid: 992 components: - type: Transform - pos: -203.5,24.5 + pos: -18.5,10.5 parent: 2 - uid: 993 components: - type: Transform - pos: -193.5,22.5 + pos: -84.5,-32.5 parent: 2 - uid: 994 components: - type: Transform - pos: -202.5,20.5 + pos: -84.5,-31.5 parent: 2 - uid: 995 components: - type: Transform - pos: -194.5,22.5 + pos: -84.5,-30.5 parent: 2 - uid: 996 components: - type: Transform - pos: -195.5,22.5 + pos: -84.5,-29.5 parent: 2 - uid: 997 components: - type: Transform - pos: -191.5,20.5 + pos: -84.5,-28.5 parent: 2 - uid: 998 components: - type: Transform - pos: -191.5,21.5 + pos: -84.5,-27.5 parent: 2 - uid: 999 components: - type: Transform - pos: -190.5,20.5 + pos: -85.5,-28.5 parent: 2 - uid: 1000 components: - type: Transform - pos: -196.5,8.5 + pos: -85.5,-31.5 parent: 2 - uid: 1001 components: - type: Transform - pos: -196.5,7.5 + pos: -83.5,-32.5 parent: 2 - uid: 1002 components: - type: Transform - pos: -196.5,6.5 + pos: -82.5,-32.5 parent: 2 - uid: 1003 components: - type: Transform - pos: -195.5,13.5 + pos: -82.5,-31.5 parent: 2 - uid: 1004 components: - type: Transform - pos: -194.5,13.5 + pos: -82.5,-30.5 parent: 2 - uid: 1005 components: - type: Transform - pos: -198.5,15.5 + pos: -82.5,-33.5 parent: 2 - uid: 1006 components: - type: Transform - pos: -199.5,15.5 + pos: -82.5,-34.5 parent: 2 - uid: 1007 components: - type: Transform - pos: -200.5,15.5 + pos: -82.5,-35.5 parent: 2 - uid: 1008 components: - type: Transform - pos: -213.5,-6.5 + pos: -82.5,-36.5 parent: 2 - uid: 1009 components: - type: Transform - pos: -183.5,-3.5 + pos: -83.5,-36.5 parent: 2 - uid: 1010 components: - type: Transform - pos: -181.5,-3.5 + pos: -83.5,-37.5 parent: 2 - uid: 1011 components: - type: Transform - pos: -180.5,-3.5 + pos: -83.5,-38.5 parent: 2 - uid: 1012 components: - type: Transform - pos: -179.5,-3.5 + pos: -83.5,-39.5 parent: 2 - uid: 1013 components: - type: Transform - pos: -178.5,-3.5 + pos: -83.5,-40.5 parent: 2 - uid: 1014 components: - type: Transform - pos: -213.5,-10.5 + pos: -83.5,-41.5 parent: 2 - uid: 1015 components: - type: Transform - pos: -213.5,-11.5 + pos: -83.5,-42.5 parent: 2 - uid: 1016 components: - type: Transform - pos: -213.5,-9.5 + pos: -83.5,-43.5 parent: 2 - uid: 1017 components: - type: Transform - pos: -177.5,-3.5 + pos: -83.5,-44.5 parent: 2 - uid: 1018 components: - type: Transform - pos: -213.5,-4.5 + pos: -81.5,-35.5 parent: 2 - uid: 1019 components: - type: Transform - pos: -213.5,-5.5 + pos: -81.5,-30.5 parent: 2 - uid: 1020 components: - type: Transform - pos: -213.5,-7.5 + pos: -83.5,-34.5 parent: 2 - uid: 1021 components: - type: Transform - pos: -213.5,-8.5 + pos: -84.5,-34.5 parent: 2 - uid: 1022 components: - type: Transform - pos: -193.5,5.5 + pos: -85.5,-34.5 parent: 2 - uid: 1023 components: - type: Transform - pos: -194.5,5.5 + pos: -182.5,-3.5 parent: 2 - uid: 1024 components: - type: Transform - pos: -195.5,5.5 + pos: -198.5,12.5 parent: 2 - uid: 1025 components: - type: Transform - pos: -196.5,8.5 + pos: -203.5,5.5 parent: 2 - uid: 1026 components: - type: Transform - pos: -196.5,4.5 + pos: -197.5,13.5 parent: 2 - uid: 1027 components: - type: Transform - pos: -196.5,3.5 + pos: -193.5,14.5 parent: 2 - uid: 1028 components: - type: Transform - pos: -196.5,2.5 + pos: -193.5,16.5 parent: 2 - uid: 1029 components: - type: Transform - pos: -197.5,2.5 + pos: -213.5,-6.5 parent: 2 - uid: 1030 components: - type: Transform - pos: -198.5,2.5 + pos: -183.5,-3.5 parent: 2 - uid: 1031 components: - type: Transform - pos: -199.5,2.5 + pos: -181.5,-3.5 parent: 2 - uid: 1032 components: - type: Transform - pos: -200.5,2.5 + pos: -180.5,-3.5 parent: 2 - uid: 1033 components: - type: Transform - pos: -197.5,4.5 + pos: -179.5,-3.5 parent: 2 - uid: 1034 components: - type: Transform - pos: -195.5,2.5 + pos: -178.5,-3.5 parent: 2 - uid: 1035 components: - type: Transform - pos: -194.5,2.5 + pos: -213.5,-10.5 parent: 2 - uid: 1036 components: - type: Transform - pos: -193.5,2.5 + pos: -213.5,-11.5 parent: 2 - uid: 1037 components: - type: Transform - pos: -192.5,2.5 + pos: -213.5,-9.5 parent: 2 - uid: 1038 components: - type: Transform - pos: -196.5,10.5 + pos: -177.5,-3.5 parent: 2 - uid: 1039 components: - type: Transform - pos: -196.5,11.5 + pos: -213.5,-4.5 parent: 2 - uid: 1040 components: - type: Transform - pos: -196.5,12.5 + pos: -213.5,-5.5 parent: 2 - uid: 1041 components: - type: Transform - pos: -196.5,13.5 + pos: -213.5,-7.5 parent: 2 - uid: 1042 components: - type: Transform - pos: -197.5,13.5 + pos: -213.5,-8.5 parent: 2 - uid: 1043 components: - type: Transform - pos: -198.5,13.5 + pos: -200.5,10.5 parent: 2 - uid: 1044 components: - type: Transform - pos: -197.5,15.5 + pos: -195.5,4.5 parent: 2 - uid: 1045 components: - type: Transform - pos: -195.5,15.5 + pos: -188.5,12.5 parent: 2 - uid: 1046 components: - type: Transform - pos: -194.5,15.5 + pos: -194.5,7.5 parent: 2 - uid: 1047 components: - type: Transform - pos: -193.5,15.5 + pos: -190.5,12.5 parent: 2 - uid: 1048 components: - type: Transform - pos: -192.5,15.5 + pos: -189.5,12.5 parent: 2 - uid: 1049 components: - type: Transform - pos: -196.5,21.5 + pos: -197.5,17.5 parent: 2 - uid: 1050 components: - type: Transform - pos: -196.5,22.5 + pos: -198.5,18.5 parent: 2 - uid: 1051 components: - type: Transform - pos: -196.5,23.5 + pos: -193.5,15.5 parent: 2 - uid: 1052 components: - type: Transform - pos: -196.5,24.5 + pos: -197.5,14.5 parent: 2 - uid: 1053 components: - type: Transform - pos: -199.5,22.5 + pos: -195.5,13.5 parent: 2 - uid: 1054 components: - type: Transform - pos: -200.5,22.5 + pos: -195.5,12.5 parent: 2 - uid: 1055 components: - type: Transform - pos: -201.5,22.5 + pos: -184.5,-3.5 parent: 2 - uid: 1056 components: - type: Transform - pos: -201.5,21.5 + pos: -185.5,-3.5 parent: 2 - uid: 1057 components: - type: Transform - pos: -201.5,20.5 + pos: -186.5,-3.5 parent: 2 - uid: 1058 components: - type: Transform - pos: -201.5,19.5 + pos: -187.5,-3.5 parent: 2 - uid: 1059 components: - type: Transform - pos: -192.5,22.5 + pos: -188.5,-3.5 parent: 2 - uid: 1060 components: - type: Transform - pos: -191.5,22.5 + pos: -189.5,-3.5 parent: 2 - uid: 1061 components: - type: Transform - pos: -191.5,19.5 + pos: -190.5,-3.5 parent: 2 - uid: 1062 components: - type: Transform - pos: -184.5,-3.5 + pos: -191.5,-3.5 parent: 2 - uid: 1063 components: - type: Transform - pos: -185.5,-3.5 + pos: -192.5,-3.5 parent: 2 - uid: 1064 components: - type: Transform - pos: -186.5,-3.5 + pos: -193.5,-3.5 parent: 2 - uid: 1065 components: - type: Transform - pos: -187.5,-3.5 + pos: -194.5,-3.5 parent: 2 - uid: 1066 components: - type: Transform - pos: -188.5,-3.5 + pos: -195.5,-3.5 parent: 2 - uid: 1067 components: - type: Transform - pos: -189.5,-3.5 + pos: -196.5,-3.5 parent: 2 - uid: 1068 components: - type: Transform - pos: -190.5,-3.5 + pos: -197.5,-3.5 parent: 2 - uid: 1069 components: - type: Transform - pos: -191.5,-3.5 + pos: -213.5,-12.5 parent: 2 - uid: 1070 components: - type: Transform - pos: -192.5,-3.5 + pos: -210.5,-3.5 parent: 2 - uid: 1071 components: - type: Transform - pos: -193.5,-3.5 + pos: -211.5,-3.5 parent: 2 - uid: 1072 components: - type: Transform - pos: -194.5,-3.5 + pos: -212.5,-3.5 parent: 2 - uid: 1073 components: - type: Transform - pos: -195.5,-3.5 + pos: -213.5,-3.5 parent: 2 - uid: 1074 components: - type: Transform - pos: -196.5,-3.5 + pos: -199.5,-3.5 parent: 2 - uid: 1075 components: - type: Transform - pos: -197.5,-3.5 + pos: -200.5,-3.5 parent: 2 - uid: 1076 components: - type: Transform - pos: -213.5,-12.5 + pos: -201.5,-3.5 parent: 2 - uid: 1077 components: - type: Transform - pos: -210.5,-3.5 + pos: -202.5,-3.5 parent: 2 - uid: 1078 components: - type: Transform - pos: -211.5,-3.5 + pos: -203.5,-3.5 parent: 2 - uid: 1079 components: - type: Transform - pos: -212.5,-3.5 + pos: -204.5,-3.5 parent: 2 - uid: 1080 components: - type: Transform - pos: -213.5,-3.5 + pos: -205.5,-3.5 parent: 2 - uid: 1081 components: - type: Transform - pos: -199.5,-3.5 + pos: -206.5,-3.5 parent: 2 - uid: 1082 components: - type: Transform - pos: -200.5,-3.5 + pos: -207.5,-3.5 parent: 2 - uid: 1083 components: - type: Transform - pos: -201.5,-3.5 + pos: -208.5,-3.5 parent: 2 - uid: 1084 components: - type: Transform - pos: -202.5,-3.5 + pos: -209.5,-3.5 parent: 2 - uid: 1085 components: - type: Transform - pos: -203.5,-3.5 + pos: -213.5,-13.5 parent: 2 - uid: 1086 components: - type: Transform - pos: -204.5,-3.5 + pos: -213.5,-14.5 parent: 2 - uid: 1087 components: - type: Transform - pos: -205.5,-3.5 + pos: -213.5,-15.5 parent: 2 - uid: 1088 components: - type: Transform - pos: -206.5,-3.5 + pos: -213.5,-16.5 parent: 2 - uid: 1089 components: - type: Transform - pos: -207.5,-3.5 + pos: -213.5,-17.5 parent: 2 - uid: 1090 components: - type: Transform - pos: -208.5,-3.5 + pos: -213.5,-18.5 parent: 2 - uid: 1091 components: - type: Transform - pos: -209.5,-3.5 + pos: -213.5,-19.5 parent: 2 - uid: 1092 components: - type: Transform - pos: -213.5,-13.5 + pos: -206.5,7.5 parent: 2 - uid: 1093 components: - type: Transform - pos: -213.5,-14.5 + pos: -206.5,8.5 parent: 2 - uid: 1094 components: - type: Transform - pos: -213.5,-15.5 + pos: -206.5,9.5 parent: 2 - uid: 1095 components: - type: Transform - pos: -213.5,-16.5 + pos: -206.5,10.5 parent: 2 - uid: 1096 components: - type: Transform - pos: -213.5,-17.5 + pos: -206.5,11.5 parent: 2 - uid: 1097 components: - type: Transform - pos: -213.5,-18.5 + pos: -206.5,12.5 parent: 2 - uid: 1098 components: - type: Transform - pos: -213.5,-19.5 + pos: -206.5,13.5 parent: 2 - uid: 1099 components: - type: Transform - pos: -206.5,7.5 + pos: -206.5,14.5 parent: 2 - uid: 1100 components: - type: Transform - pos: -206.5,8.5 + pos: -206.5,-2.5 parent: 2 - uid: 1101 components: - type: Transform - pos: -206.5,9.5 + pos: -206.5,-1.5 parent: 2 - uid: 1102 components: - type: Transform - pos: -206.5,10.5 + pos: -206.5,-0.5 parent: 2 - uid: 1103 components: - type: Transform - pos: -206.5,11.5 + pos: -206.5,0.5 parent: 2 - uid: 1104 components: - type: Transform - pos: -206.5,12.5 + pos: -206.5,1.5 parent: 2 - uid: 1105 components: - type: Transform - pos: -206.5,13.5 + pos: -206.5,2.5 parent: 2 - uid: 1106 components: - type: Transform - pos: -206.5,14.5 + pos: -206.5,3.5 parent: 2 - uid: 1107 components: - type: Transform - pos: -206.5,-2.5 + pos: -206.5,4.5 parent: 2 - uid: 1108 components: - type: Transform - pos: -206.5,-1.5 + pos: -206.5,5.5 parent: 2 - uid: 1109 components: - type: Transform - pos: -206.5,-0.5 + pos: -206.5,6.5 parent: 2 - uid: 1110 components: - type: Transform - pos: -206.5,0.5 + pos: -195.5,-4.5 parent: 2 - uid: 1111 components: - type: Transform - pos: -206.5,1.5 + pos: -195.5,-5.5 parent: 2 - uid: 1112 components: - type: Transform - pos: -206.5,2.5 + pos: -195.5,-6.5 parent: 2 - uid: 1113 components: - type: Transform - pos: -206.5,3.5 + pos: -195.5,-7.5 parent: 2 - uid: 1114 components: - type: Transform - pos: -206.5,4.5 + pos: -195.5,-8.5 parent: 2 - uid: 1115 components: - type: Transform - pos: -206.5,5.5 + pos: -195.5,-9.5 parent: 2 - uid: 1116 components: - type: Transform - pos: -206.5,6.5 + pos: -195.5,-10.5 parent: 2 - uid: 1117 components: - type: Transform - pos: -186.5,-2.5 + pos: -195.5,-11.5 parent: 2 - uid: 1118 components: - type: Transform - pos: -186.5,-1.5 + pos: -195.5,-12.5 parent: 2 - uid: 1119 components: - type: Transform - pos: -186.5,-0.5 + pos: -195.5,-13.5 parent: 2 - uid: 1120 components: - type: Transform - pos: -186.5,0.5 + pos: -195.5,-14.5 parent: 2 - uid: 1121 components: - type: Transform - pos: -186.5,1.5 + pos: -195.5,-15.5 parent: 2 - uid: 1122 components: - type: Transform - pos: -186.5,2.5 + pos: -195.5,-16.5 parent: 2 - uid: 1123 components: - type: Transform - pos: -186.5,3.5 + pos: -195.5,-17.5 parent: 2 - uid: 1124 components: - type: Transform - pos: -186.5,4.5 + pos: -195.5,-18.5 parent: 2 - uid: 1125 components: - type: Transform - pos: -186.5,5.5 + pos: -195.5,-19.5 parent: 2 - uid: 1126 components: - type: Transform - pos: -186.5,6.5 + pos: -176.5,-3.5 parent: 2 - uid: 1127 components: - type: Transform - pos: -186.5,7.5 + pos: -175.5,-3.5 parent: 2 - uid: 1128 components: - type: Transform - pos: -186.5,8.5 + pos: -175.5,-4.5 parent: 2 - uid: 1129 components: - type: Transform - pos: -186.5,9.5 + pos: -175.5,-5.5 parent: 2 - uid: 1130 components: - type: Transform - pos: -186.5,10.5 + pos: -177.5,-4.5 parent: 2 - uid: 1131 components: - type: Transform - pos: -186.5,11.5 + pos: -177.5,-5.5 parent: 2 - uid: 1132 components: - type: Transform - pos: -186.5,12.5 + pos: -177.5,-6.5 parent: 2 - uid: 1133 components: - type: Transform - pos: -186.5,13.5 + pos: -177.5,-7.5 parent: 2 - uid: 1134 components: - type: Transform - pos: -186.5,14.5 + pos: -177.5,-8.5 parent: 2 - uid: 1135 components: - type: Transform - pos: -195.5,-4.5 + pos: -177.5,-9.5 parent: 2 - uid: 1136 components: - type: Transform - pos: -195.5,-5.5 + pos: -177.5,-10.5 parent: 2 - uid: 1137 components: - type: Transform - pos: -195.5,-6.5 + pos: -177.5,-11.5 parent: 2 - uid: 1138 components: - type: Transform - pos: -195.5,-7.5 + pos: -177.5,-12.5 parent: 2 - uid: 1139 components: - type: Transform - pos: -195.5,-8.5 + pos: -177.5,-13.5 parent: 2 - uid: 1140 components: - type: Transform - pos: -195.5,-9.5 + pos: -177.5,-14.5 parent: 2 - uid: 1141 components: - type: Transform - pos: -195.5,-10.5 + pos: -177.5,-15.5 parent: 2 - uid: 1142 components: - type: Transform - pos: -195.5,-11.5 + pos: -177.5,-16.5 parent: 2 - uid: 1143 components: - type: Transform - pos: -195.5,-12.5 + pos: -177.5,-17.5 parent: 2 - uid: 1144 components: - type: Transform - pos: -195.5,-13.5 + pos: -177.5,-18.5 parent: 2 - uid: 1145 components: - type: Transform - pos: -195.5,-14.5 + pos: -177.5,-19.5 parent: 2 - uid: 1146 components: - type: Transform - pos: -195.5,-15.5 + pos: -174.5,-3.5 parent: 2 - uid: 1147 components: - type: Transform - pos: -195.5,-16.5 + pos: -173.5,-3.5 parent: 2 - uid: 1148 components: - type: Transform - pos: -195.5,-17.5 + pos: -172.5,-3.5 parent: 2 - uid: 1149 components: - type: Transform - pos: -195.5,-18.5 + pos: -171.5,-3.5 parent: 2 - uid: 1150 components: - type: Transform - pos: -195.5,-19.5 + pos: -170.5,-3.5 parent: 2 - uid: 1151 components: - type: Transform - pos: -176.5,-3.5 + pos: -169.5,-3.5 parent: 2 - uid: 1152 components: - type: Transform - pos: -175.5,-3.5 + pos: -168.5,-3.5 parent: 2 - uid: 1153 components: - type: Transform - pos: -175.5,-4.5 + pos: -167.5,-3.5 parent: 2 - uid: 1154 components: - type: Transform - pos: -175.5,-5.5 + pos: -166.5,-3.5 parent: 2 - uid: 1155 components: - type: Transform - pos: -177.5,-4.5 + pos: -165.5,-3.5 parent: 2 - uid: 1156 components: - type: Transform - pos: -177.5,-5.5 + pos: -164.5,-3.5 parent: 2 - uid: 1157 components: - type: Transform - pos: -177.5,-6.5 + pos: -163.5,-3.5 parent: 2 - uid: 1158 components: - type: Transform - pos: -177.5,-7.5 + pos: -162.5,-3.5 parent: 2 - uid: 1159 components: - type: Transform - pos: -177.5,-8.5 + pos: -161.5,-3.5 parent: 2 - uid: 1160 components: - type: Transform - pos: -177.5,-9.5 + pos: -160.5,-3.5 parent: 2 - uid: 1161 components: - type: Transform - pos: -177.5,-10.5 + pos: -159.5,-3.5 parent: 2 - uid: 1162 components: - type: Transform - pos: -177.5,-11.5 + pos: -158.5,-3.5 parent: 2 - uid: 1163 components: - type: Transform - pos: -177.5,-12.5 + pos: -157.5,-3.5 parent: 2 - uid: 1164 components: - type: Transform - pos: -177.5,-13.5 + pos: -156.5,-3.5 parent: 2 - uid: 1165 components: - type: Transform - pos: -177.5,-14.5 + pos: -155.5,-3.5 parent: 2 - uid: 1166 components: - type: Transform - pos: -177.5,-15.5 + pos: -154.5,-3.5 parent: 2 - uid: 1167 components: - type: Transform - pos: -177.5,-16.5 + pos: -153.5,-3.5 parent: 2 - uid: 1168 components: - type: Transform - pos: -177.5,-17.5 + pos: -152.5,-3.5 parent: 2 - uid: 1169 components: - type: Transform - pos: -177.5,-18.5 + pos: -151.5,-3.5 parent: 2 - uid: 1170 components: - type: Transform - pos: -177.5,-19.5 + pos: -150.5,-3.5 parent: 2 - uid: 1171 components: - type: Transform - pos: -174.5,-3.5 + pos: -163.5,-25.5 parent: 2 - uid: 1172 components: - type: Transform - pos: -173.5,-3.5 + pos: -156.5,-5.5 parent: 2 - uid: 1173 components: - type: Transform - pos: -172.5,-3.5 + pos: -156.5,-6.5 parent: 2 - uid: 1174 components: - type: Transform - pos: -171.5,-3.5 + pos: -156.5,-8.5 parent: 2 - uid: 1175 components: - type: Transform - pos: -170.5,-3.5 + pos: -157.5,-8.5 parent: 2 - uid: 1176 components: - type: Transform - pos: -169.5,-3.5 + pos: -156.5,-8.5 parent: 2 - uid: 1177 components: - type: Transform - pos: -168.5,-3.5 + pos: -158.5,-8.5 parent: 2 - uid: 1178 components: - type: Transform - pos: -167.5,-3.5 + pos: -158.5,-9.5 parent: 2 - uid: 1179 components: - type: Transform - pos: -166.5,-3.5 + pos: -158.5,-10.5 parent: 2 - uid: 1180 components: - type: Transform - pos: -165.5,-3.5 + pos: -158.5,-11.5 parent: 2 - uid: 1181 components: - type: Transform - pos: -164.5,-3.5 + pos: -158.5,-12.5 parent: 2 - uid: 1182 components: - type: Transform - pos: -163.5,-3.5 + pos: -158.5,-13.5 parent: 2 - uid: 1183 components: - type: Transform - pos: -162.5,-3.5 + pos: -158.5,-14.5 parent: 2 - uid: 1184 components: - type: Transform - pos: -161.5,-3.5 + pos: -158.5,-15.5 parent: 2 - uid: 1185 components: - type: Transform - pos: -160.5,-3.5 + pos: -158.5,-16.5 parent: 2 - uid: 1186 components: - type: Transform - pos: -159.5,-3.5 + pos: -156.5,-16.5 parent: 2 - uid: 1187 components: - type: Transform - pos: -158.5,-3.5 + pos: -155.5,-16.5 parent: 2 - uid: 1188 components: - type: Transform - pos: -157.5,-3.5 + pos: -154.5,-16.5 parent: 2 - uid: 1189 components: - type: Transform - pos: -156.5,-3.5 + pos: -154.5,-15.5 parent: 2 - uid: 1190 components: - type: Transform - pos: -155.5,-3.5 + pos: -154.5,-14.5 parent: 2 - uid: 1191 components: - type: Transform - pos: -154.5,-3.5 + pos: -154.5,-13.5 parent: 2 - uid: 1192 components: - type: Transform - pos: -153.5,-3.5 + pos: -154.5,-12.5 parent: 2 - uid: 1193 components: - type: Transform - pos: -152.5,-3.5 + pos: -154.5,-11.5 parent: 2 - uid: 1194 components: - type: Transform - pos: -151.5,-3.5 + pos: -154.5,-10.5 parent: 2 - uid: 1195 components: - type: Transform - pos: -150.5,-3.5 + pos: -154.5,-9.5 parent: 2 - uid: 1196 components: - type: Transform - pos: -163.5,-25.5 + pos: -154.5,-8.5 parent: 2 - uid: 1197 components: - type: Transform - pos: -156.5,-5.5 + pos: -156.5,-17.5 parent: 2 - uid: 1198 components: - type: Transform - pos: -156.5,-6.5 + pos: -156.5,-18.5 parent: 2 - uid: 1199 components: - type: Transform - pos: -156.5,-8.5 + pos: -156.5,-19.5 parent: 2 - uid: 1200 components: - type: Transform - pos: -157.5,-8.5 + pos: -156.5,-20.5 parent: 2 - uid: 1201 components: - type: Transform - pos: -156.5,-8.5 + pos: -156.5,-21.5 parent: 2 - uid: 1202 components: - type: Transform - pos: -158.5,-8.5 + pos: -157.5,-21.5 parent: 2 - uid: 1203 components: - type: Transform - pos: -158.5,-9.5 + pos: -158.5,-21.5 parent: 2 - uid: 1204 components: - type: Transform - pos: -158.5,-10.5 + pos: -159.5,-21.5 parent: 2 - uid: 1205 components: - type: Transform - pos: -158.5,-11.5 + pos: -160.5,-21.5 parent: 2 - uid: 1206 components: - type: Transform - pos: -158.5,-12.5 + pos: -161.5,-21.5 parent: 2 - uid: 1207 components: - type: Transform - pos: -158.5,-13.5 + pos: -162.5,-21.5 parent: 2 - uid: 1208 components: - type: Transform - pos: -158.5,-14.5 + pos: -161.5,-22.5 parent: 2 - uid: 1209 components: - type: Transform - pos: -158.5,-15.5 + pos: -161.5,-23.5 parent: 2 - uid: 1210 components: - type: Transform - pos: -158.5,-16.5 + pos: -165.5,-21.5 parent: 2 - uid: 1211 components: - type: Transform - pos: -156.5,-16.5 + pos: -166.5,-18.5 parent: 2 - uid: 1212 components: - type: Transform - pos: -155.5,-16.5 + pos: -165.5,-22.5 parent: 2 - uid: 1213 components: - type: Transform - pos: -154.5,-16.5 + pos: -165.5,-23.5 parent: 2 - uid: 1214 components: - type: Transform - pos: -154.5,-15.5 + pos: -162.5,-25.5 parent: 2 - uid: 1215 components: - type: Transform - pos: -154.5,-14.5 + pos: -161.5,-24.5 parent: 2 - uid: 1216 components: - type: Transform - pos: -154.5,-13.5 + pos: -161.5,-25.5 parent: 2 - uid: 1217 components: - type: Transform - pos: -154.5,-12.5 + pos: -165.5,-26.5 parent: 2 - uid: 1218 components: - type: Transform - pos: -154.5,-11.5 + pos: -164.5,-26.5 parent: 2 - uid: 1219 components: - type: Transform - pos: -154.5,-10.5 + pos: -163.5,-26.5 parent: 2 - uid: 1220 components: - type: Transform - pos: -154.5,-9.5 + pos: -157.5,-26.5 parent: 2 - uid: 1221 components: - type: Transform - pos: -154.5,-8.5 + pos: -157.5,-25.5 parent: 2 - uid: 1222 components: - type: Transform - pos: -156.5,-17.5 + pos: -157.5,-24.5 parent: 2 - uid: 1223 components: - type: Transform - pos: -156.5,-18.5 + pos: -157.5,-23.5 parent: 2 - uid: 1224 components: - type: Transform - pos: -156.5,-19.5 + pos: -157.5,-22.5 parent: 2 - uid: 1225 components: - type: Transform - pos: -156.5,-20.5 + pos: -153.5,-22.5 parent: 2 - uid: 1226 components: - type: Transform - pos: -156.5,-21.5 + pos: -153.5,-23.5 parent: 2 - uid: 1227 components: - type: Transform - pos: -157.5,-21.5 + pos: -153.5,-24.5 parent: 2 - uid: 1228 components: - type: Transform - pos: -158.5,-21.5 + pos: -153.5,-25.5 parent: 2 - uid: 1229 components: - type: Transform - pos: -159.5,-21.5 + pos: -153.5,-26.5 parent: 2 - uid: 1230 components: - type: Transform - pos: -160.5,-21.5 + pos: -153.5,-21.5 parent: 2 - uid: 1231 components: - type: Transform - pos: -161.5,-21.5 + pos: -154.5,-21.5 parent: 2 - uid: 1232 components: - type: Transform - pos: -162.5,-21.5 + pos: -155.5,-21.5 parent: 2 - uid: 1233 components: - type: Transform - pos: -161.5,-22.5 + pos: -165.5,-17.5 parent: 2 - uid: 1234 components: - type: Transform - pos: -161.5,-23.5 + pos: -165.5,-16.5 parent: 2 - uid: 1235 components: - type: Transform - pos: -165.5,-21.5 + pos: -166.5,-16.5 parent: 2 - uid: 1236 components: - type: Transform - pos: -166.5,-18.5 + pos: -166.5,-20.5 parent: 2 - uid: 1237 components: - type: Transform - pos: -165.5,-22.5 + pos: -167.5,-20.5 parent: 2 - uid: 1238 components: - type: Transform - pos: -165.5,-23.5 + pos: -164.5,-20.5 parent: 2 - uid: 1239 components: - type: Transform - pos: -162.5,-25.5 + pos: -163.5,-20.5 parent: 2 - uid: 1240 components: - type: Transform - pos: -161.5,-24.5 + pos: -163.5,-18.5 parent: 2 - uid: 1241 components: - type: Transform - pos: -161.5,-25.5 + pos: -162.5,-18.5 parent: 2 - uid: 1242 components: - type: Transform - pos: -165.5,-26.5 + pos: -161.5,-18.5 parent: 2 - uid: 1243 components: - type: Transform - pos: -164.5,-26.5 + pos: -160.5,-18.5 parent: 2 - uid: 1244 components: - type: Transform - pos: -163.5,-26.5 + pos: -159.5,-18.5 parent: 2 - uid: 1245 components: - type: Transform - pos: -157.5,-26.5 + pos: -158.5,-18.5 parent: 2 - uid: 1246 components: - type: Transform - pos: -157.5,-25.5 + pos: -155.5,-18.5 parent: 2 - uid: 1247 components: - type: Transform - pos: -157.5,-24.5 + pos: -154.5,-18.5 parent: 2 - uid: 1248 components: - type: Transform - pos: -157.5,-23.5 + pos: -153.5,-18.5 parent: 2 - uid: 1249 components: - type: Transform - pos: -157.5,-22.5 + pos: -165.5,-7.5 parent: 2 - uid: 1250 components: - type: Transform - pos: -153.5,-22.5 + pos: -166.5,-7.5 parent: 2 - uid: 1251 components: - type: Transform - pos: -153.5,-23.5 + pos: -167.5,-7.5 parent: 2 - uid: 1252 components: - type: Transform - pos: -153.5,-24.5 + pos: -168.5,-7.5 parent: 2 - uid: 1253 components: - type: Transform - pos: -153.5,-25.5 + pos: -169.5,-7.5 parent: 2 - uid: 1254 components: - type: Transform - pos: -153.5,-26.5 + pos: -168.5,-8.5 parent: 2 - uid: 1255 components: - type: Transform - pos: -153.5,-21.5 + pos: -168.5,-9.5 parent: 2 - uid: 1256 components: - type: Transform - pos: -154.5,-21.5 + pos: -168.5,-10.5 parent: 2 - uid: 1257 components: - type: Transform - pos: -155.5,-21.5 + pos: -168.5,-11.5 parent: 2 - uid: 1258 components: - type: Transform - pos: -165.5,-17.5 + pos: -168.5,-12.5 parent: 2 - uid: 1259 components: - type: Transform - pos: -165.5,-16.5 + pos: -168.5,-13.5 parent: 2 - uid: 1260 components: - type: Transform - pos: -166.5,-16.5 + pos: -167.5,-12.5 parent: 2 - uid: 1261 components: - type: Transform - pos: -166.5,-20.5 + pos: -166.5,-12.5 parent: 2 - uid: 1262 components: - type: Transform - pos: -167.5,-20.5 + pos: -165.5,-12.5 parent: 2 - uid: 1263 components: - type: Transform - pos: -164.5,-20.5 + pos: -164.5,-12.5 parent: 2 - uid: 1264 components: - type: Transform - pos: -163.5,-20.5 + pos: -163.5,-12.5 parent: 2 - uid: 1265 components: - type: Transform - pos: -163.5,-18.5 + pos: -162.5,-12.5 parent: 2 - uid: 1266 components: - type: Transform - pos: -162.5,-18.5 + pos: -169.5,-12.5 parent: 2 - uid: 1267 components: - type: Transform - pos: -161.5,-18.5 + pos: -169.5,-9.5 parent: 2 - uid: 1268 components: - type: Transform - pos: -160.5,-18.5 + pos: -154.5,-7.5 parent: 2 - uid: 1269 components: - type: Transform - pos: -159.5,-18.5 + pos: -153.5,-7.5 parent: 2 - uid: 1270 components: - type: Transform - pos: -158.5,-18.5 + pos: -152.5,-7.5 parent: 2 - uid: 1271 components: - type: Transform - pos: -155.5,-18.5 + pos: -164.5,-11.5 parent: 2 - uid: 1272 components: - type: Transform - pos: -154.5,-18.5 + pos: -164.5,-10.5 parent: 2 - uid: 1273 components: - type: Transform - pos: -153.5,-18.5 + pos: -164.5,-9.5 parent: 2 - uid: 1274 components: - type: Transform - pos: -165.5,-7.5 + pos: -164.5,-8.5 parent: 2 - uid: 1275 components: - type: Transform - pos: -166.5,-7.5 + pos: -164.5,-7.5 parent: 2 - uid: 1276 components: - type: Transform - pos: -167.5,-7.5 + pos: -163.5,-7.5 parent: 2 - uid: 1277 components: - type: Transform - pos: -168.5,-7.5 + pos: -162.5,-7.5 parent: 2 - uid: 1278 components: - type: Transform - pos: -169.5,-7.5 + pos: -161.5,-7.5 parent: 2 - uid: 1279 components: - type: Transform - pos: -168.5,-8.5 + pos: -161.5,-8.5 parent: 2 - uid: 1280 components: - type: Transform - pos: -168.5,-9.5 + pos: -160.5,-7.5 parent: 2 - uid: 1281 components: - type: Transform - pos: -168.5,-10.5 + pos: -166.5,6.5 parent: 2 - uid: 1282 components: - type: Transform - pos: -168.5,-11.5 + pos: -166.5,5.5 parent: 2 - uid: 1283 components: - type: Transform - pos: -168.5,-12.5 + pos: -166.5,4.5 parent: 2 - uid: 1284 components: - type: Transform - pos: -168.5,-13.5 + pos: -167.5,4.5 parent: 2 - uid: 1285 components: - type: Transform - pos: -167.5,-12.5 + pos: -168.5,4.5 parent: 2 - uid: 1286 components: - type: Transform - pos: -166.5,-12.5 + pos: -169.5,4.5 parent: 2 - uid: 1287 components: - type: Transform - pos: -165.5,-12.5 + pos: -170.5,4.5 parent: 2 - uid: 1288 components: - type: Transform - pos: -164.5,-12.5 + pos: -171.5,4.5 parent: 2 - uid: 1289 components: - type: Transform - pos: -163.5,-12.5 + pos: -172.5,4.5 parent: 2 - uid: 1290 components: - type: Transform - pos: -162.5,-12.5 + pos: -173.5,4.5 parent: 2 - uid: 1291 components: - type: Transform - pos: -169.5,-12.5 + pos: -173.5,5.5 parent: 2 - uid: 1292 components: - type: Transform - pos: -169.5,-9.5 + pos: -174.5,5.5 parent: 2 - uid: 1293 components: - type: Transform - pos: -154.5,-7.5 + pos: -175.5,5.5 parent: 2 - uid: 1294 components: - type: Transform - pos: -153.5,-7.5 + pos: -175.5,4.5 parent: 2 - uid: 1295 components: - type: Transform - pos: -152.5,-7.5 + pos: -176.5,4.5 parent: 2 - uid: 1296 components: - type: Transform - pos: -164.5,-11.5 + pos: -177.5,4.5 parent: 2 - uid: 1297 components: - type: Transform - pos: -164.5,-10.5 + pos: -177.5,5.5 parent: 2 - uid: 1298 components: - type: Transform - pos: -164.5,-9.5 + pos: -172.5,3.5 parent: 2 - uid: 1299 components: - type: Transform - pos: -164.5,-8.5 + pos: -172.5,2.5 parent: 2 - uid: 1300 components: - type: Transform - pos: -164.5,-7.5 + pos: -172.5,1.5 parent: 2 - uid: 1301 components: - type: Transform - pos: -163.5,-7.5 + pos: -172.5,0.5 parent: 2 - uid: 1302 components: - type: Transform - pos: -162.5,-7.5 + pos: -168.5,3.5 parent: 2 - uid: 1303 components: - type: Transform - pos: -161.5,-7.5 + pos: -168.5,2.5 parent: 2 - uid: 1304 components: - type: Transform - pos: -161.5,-8.5 + pos: -168.5,1.5 parent: 2 - uid: 1305 components: - type: Transform - pos: -160.5,-7.5 + pos: -168.5,0.5 parent: 2 - uid: 1306 components: - type: Transform - pos: -166.5,6.5 + pos: -164.5,3.5 parent: 2 - uid: 1307 components: - type: Transform - pos: -166.5,5.5 + pos: -164.5,2.5 parent: 2 - uid: 1308 components: - type: Transform - pos: -166.5,4.5 + pos: -164.5,1.5 parent: 2 - uid: 1309 components: - type: Transform - pos: -167.5,4.5 + pos: -164.5,0.5 parent: 2 - uid: 1310 components: - type: Transform - pos: -168.5,4.5 + pos: -165.5,4.5 parent: 2 - uid: 1311 components: - type: Transform - pos: -169.5,4.5 + pos: -164.5,4.5 parent: 2 - uid: 1312 components: - type: Transform - pos: -170.5,4.5 + pos: -163.5,4.5 parent: 2 - uid: 1313 components: - type: Transform - pos: -171.5,4.5 + pos: -162.5,4.5 parent: 2 - uid: 1314 components: - type: Transform - pos: -172.5,4.5 + pos: -161.5,4.5 parent: 2 - uid: 1315 components: - type: Transform - pos: -173.5,4.5 + pos: -160.5,4.5 parent: 2 - uid: 1316 components: - type: Transform - pos: -173.5,5.5 + pos: -159.5,4.5 parent: 2 - uid: 1317 components: - type: Transform - pos: -174.5,5.5 + pos: -158.5,4.5 parent: 2 - uid: 1318 components: - type: Transform - pos: -175.5,5.5 + pos: -156.5,4.5 parent: 2 - uid: 1319 components: - type: Transform - pos: -175.5,4.5 + pos: -155.5,4.5 parent: 2 - uid: 1320 components: - type: Transform - pos: -176.5,4.5 + pos: -154.5,4.5 parent: 2 - uid: 1321 components: - type: Transform - pos: -177.5,4.5 + pos: -153.5,4.5 parent: 2 - uid: 1322 components: - type: Transform - pos: -177.5,5.5 + pos: -152.5,4.5 parent: 2 - uid: 1323 components: - type: Transform - pos: -172.5,3.5 + pos: -151.5,4.5 parent: 2 - uid: 1324 components: - type: Transform - pos: -172.5,2.5 + pos: -150.5,4.5 parent: 2 - uid: 1325 components: - type: Transform - pos: -172.5,1.5 + pos: -150.5,5.5 parent: 2 - uid: 1326 components: - type: Transform - pos: -172.5,0.5 + pos: -149.5,4.5 parent: 2 - uid: 1327 components: - type: Transform - pos: -168.5,3.5 + pos: -148.5,4.5 parent: 2 - uid: 1328 components: - type: Transform - pos: -168.5,2.5 + pos: -147.5,4.5 parent: 2 - uid: 1329 components: - type: Transform - pos: -168.5,1.5 + pos: -146.5,4.5 parent: 2 - uid: 1330 components: - type: Transform - pos: -168.5,0.5 + pos: -147.5,3.5 parent: 2 - uid: 1331 components: - type: Transform - pos: -164.5,3.5 + pos: -151.5,3.5 parent: 2 - uid: 1332 components: - type: Transform - pos: -164.5,2.5 + pos: -151.5,2.5 parent: 2 - uid: 1333 components: - type: Transform - pos: -164.5,1.5 + pos: -151.5,1.5 parent: 2 - uid: 1334 components: - type: Transform - pos: -164.5,0.5 + pos: -151.5,0.5 parent: 2 - uid: 1335 components: - type: Transform - pos: -165.5,4.5 + pos: -152.5,0.5 parent: 2 - uid: 1336 components: - type: Transform - pos: -164.5,4.5 + pos: -156.5,3.5 parent: 2 - uid: 1337 components: - type: Transform - pos: -163.5,4.5 + pos: -156.5,2.5 parent: 2 - uid: 1338 components: - type: Transform - pos: -162.5,4.5 + pos: -156.5,1.5 parent: 2 - uid: 1339 components: - type: Transform - pos: -161.5,4.5 + pos: -156.5,0.5 parent: 2 - uid: 1340 components: - type: Transform - pos: -160.5,4.5 + pos: -156.5,-0.5 parent: 2 - uid: 1341 components: - type: Transform - pos: -159.5,4.5 + pos: -161.5,3.5 parent: 2 - uid: 1342 components: - type: Transform - pos: -158.5,4.5 + pos: -161.5,2.5 parent: 2 - uid: 1343 components: - type: Transform - pos: -156.5,4.5 + pos: -161.5,1.5 parent: 2 - uid: 1344 components: - type: Transform - pos: -155.5,4.5 + pos: -161.5,0.5 parent: 2 - uid: 1345 components: - type: Transform - pos: -154.5,4.5 + pos: -160.5,0.5 parent: 2 - uid: 1346 components: - type: Transform - pos: -153.5,4.5 + pos: -159.5,0.5 parent: 2 - uid: 1347 components: - type: Transform - pos: -152.5,4.5 + pos: -159.5,-0.5 parent: 2 - uid: 1348 components: - type: Transform - pos: -151.5,4.5 + pos: -150.5,11.5 parent: 2 - uid: 1349 components: - type: Transform - pos: -150.5,4.5 + pos: -149.5,11.5 parent: 2 - uid: 1350 components: - type: Transform - pos: -150.5,5.5 + pos: -148.5,11.5 parent: 2 - uid: 1351 components: - type: Transform - pos: -149.5,4.5 + pos: -147.5,11.5 parent: 2 - uid: 1352 components: - type: Transform - pos: -148.5,4.5 + pos: -147.5,10.5 parent: 2 - uid: 1353 components: - type: Transform - pos: -147.5,4.5 + pos: -147.5,9.5 parent: 2 - uid: 1354 components: - type: Transform - pos: -146.5,4.5 + pos: -147.5,8.5 parent: 2 - uid: 1355 components: - type: Transform - pos: -147.5,3.5 + pos: -147.5,17.5 parent: 2 - uid: 1356 components: - type: Transform - pos: -151.5,3.5 + pos: -151.5,11.5 parent: 2 - uid: 1357 components: - type: Transform - pos: -151.5,2.5 + pos: -152.5,11.5 parent: 2 - uid: 1358 components: - type: Transform - pos: -151.5,1.5 + pos: -153.5,11.5 parent: 2 - uid: 1359 components: - type: Transform - pos: -151.5,0.5 + pos: -154.5,11.5 parent: 2 - uid: 1360 components: - type: Transform - pos: -152.5,0.5 + pos: -155.5,11.5 parent: 2 - uid: 1361 components: - type: Transform - pos: -156.5,3.5 + pos: -153.5,10.5 parent: 2 - uid: 1362 components: - type: Transform - pos: -156.5,2.5 + pos: -153.5,9.5 parent: 2 - uid: 1363 components: - type: Transform - pos: -156.5,1.5 + pos: -153.5,8.5 parent: 2 - uid: 1364 components: - type: Transform - pos: -156.5,0.5 + pos: -153.5,7.5 parent: 2 - uid: 1365 components: - type: Transform - pos: -156.5,-0.5 + pos: -154.5,8.5 parent: 2 - uid: 1366 components: - type: Transform - pos: -161.5,3.5 + pos: -152.5,8.5 parent: 2 - uid: 1367 components: - type: Transform - pos: -161.5,2.5 + pos: -154.5,12.5 parent: 2 - uid: 1368 components: - type: Transform - pos: -161.5,1.5 + pos: -154.5,13.5 parent: 2 - uid: 1369 components: - type: Transform - pos: -161.5,0.5 + pos: -154.5,14.5 parent: 2 - uid: 1370 components: - type: Transform - pos: -160.5,0.5 + pos: -154.5,15.5 parent: 2 - uid: 1371 components: - type: Transform - pos: -159.5,0.5 + pos: -155.5,15.5 parent: 2 - uid: 1372 components: - type: Transform - pos: -159.5,-0.5 + pos: -156.5,15.5 parent: 2 - uid: 1373 components: - type: Transform - pos: -150.5,11.5 + pos: -157.5,15.5 parent: 2 - uid: 1374 components: - type: Transform - pos: -149.5,11.5 + pos: -158.5,15.5 parent: 2 - uid: 1375 components: - type: Transform - pos: -148.5,11.5 + pos: -159.5,15.5 parent: 2 - uid: 1376 components: - type: Transform - pos: -147.5,11.5 + pos: -153.5,15.5 parent: 2 - uid: 1377 components: - type: Transform - pos: -147.5,10.5 + pos: -156.5,14.5 parent: 2 - uid: 1378 components: - type: Transform - pos: -147.5,9.5 + pos: -161.5,8.5 parent: 2 - uid: 1379 components: - type: Transform - pos: -147.5,8.5 + pos: -160.5,8.5 parent: 2 - uid: 1380 components: - type: Transform - pos: -147.5,17.5 + pos: -161.5,9.5 parent: 2 - uid: 1381 components: - type: Transform - pos: -151.5,11.5 + pos: -161.5,10.5 parent: 2 - uid: 1382 components: - type: Transform - pos: -152.5,11.5 + pos: -162.5,10.5 parent: 2 - uid: 1383 components: - type: Transform - pos: -153.5,11.5 + pos: -163.5,10.5 parent: 2 - uid: 1384 components: - type: Transform - pos: -154.5,11.5 + pos: -164.5,10.5 parent: 2 - uid: 1385 components: - type: Transform - pos: -155.5,11.5 + pos: -165.5,10.5 parent: 2 - uid: 1386 components: - type: Transform - pos: -153.5,10.5 + pos: -166.5,10.5 parent: 2 - uid: 1387 components: - type: Transform - pos: -153.5,9.5 + pos: -167.5,10.5 parent: 2 - uid: 1388 components: - type: Transform - pos: -153.5,8.5 + pos: -168.5,10.5 parent: 2 - uid: 1389 components: - type: Transform - pos: -153.5,7.5 + pos: -169.5,10.5 parent: 2 - uid: 1390 components: - type: Transform - pos: -154.5,8.5 + pos: -170.5,10.5 parent: 2 - uid: 1391 components: - type: Transform - pos: -152.5,8.5 + pos: -171.5,10.5 parent: 2 - uid: 1392 components: - type: Transform - pos: -154.5,12.5 + pos: -172.5,10.5 parent: 2 - uid: 1393 components: - type: Transform - pos: -154.5,13.5 + pos: -173.5,10.5 parent: 2 - uid: 1394 components: - type: Transform - pos: -154.5,14.5 + pos: -171.5,11.5 parent: 2 - uid: 1395 components: - type: Transform - pos: -154.5,15.5 + pos: -171.5,9.5 parent: 2 - uid: 1396 components: - type: Transform - pos: -155.5,15.5 + pos: -171.5,8.5 parent: 2 - uid: 1397 components: - type: Transform - pos: -156.5,15.5 + pos: -171.5,7.5 parent: 2 - uid: 1398 components: - type: Transform - pos: -157.5,15.5 + pos: -171.5,6.5 parent: 2 - uid: 1399 components: - type: Transform - pos: -158.5,15.5 + pos: -170.5,7.5 parent: 2 - uid: 1400 components: - type: Transform - pos: -159.5,15.5 + pos: -168.5,11.5 parent: 2 - uid: 1401 components: - type: Transform - pos: -153.5,15.5 + pos: -164.5,11.5 parent: 2 - uid: 1402 components: - type: Transform - pos: -156.5,14.5 + pos: -164.5,9.5 parent: 2 - uid: 1403 components: - type: Transform - pos: -161.5,8.5 + pos: -164.5,8.5 parent: 2 - uid: 1404 components: - type: Transform - pos: -160.5,8.5 + pos: -160.5,10.5 parent: 2 - uid: 1405 components: - type: Transform - pos: -161.5,9.5 + pos: -159.5,10.5 parent: 2 - uid: 1406 components: - type: Transform - pos: -161.5,10.5 + pos: -189.5,-8.5 parent: 2 - uid: 1407 components: - type: Transform - pos: -162.5,10.5 + pos: -188.5,-8.5 parent: 2 - uid: 1408 components: - type: Transform - pos: -163.5,10.5 + pos: -187.5,-8.5 parent: 2 - uid: 1409 components: - type: Transform - pos: -164.5,10.5 + pos: -187.5,-9.5 parent: 2 - uid: 1410 components: - type: Transform - pos: -165.5,10.5 + pos: -187.5,-10.5 parent: 2 - uid: 1411 components: - type: Transform - pos: -166.5,10.5 + pos: -186.5,-9.5 parent: 2 - uid: 1412 components: - type: Transform - pos: -167.5,10.5 + pos: -188.5,-10.5 parent: 2 - uid: 1413 components: - type: Transform - pos: -168.5,10.5 + pos: -189.5,-10.5 parent: 2 - uid: 1414 components: - type: Transform - pos: -169.5,10.5 + pos: -185.5,-11.5 parent: 2 - uid: 1415 components: - type: Transform - pos: -170.5,10.5 + pos: -185.5,-12.5 parent: 2 - uid: 1416 components: - type: Transform - pos: -171.5,10.5 + pos: -185.5,-13.5 parent: 2 - uid: 1417 components: - type: Transform - pos: -172.5,10.5 + pos: -184.5,-13.5 parent: 2 - uid: 1418 components: - type: Transform - pos: -173.5,10.5 + pos: -183.5,-13.5 parent: 2 - uid: 1419 components: - type: Transform - pos: -171.5,11.5 + pos: -183.5,-12.5 parent: 2 - uid: 1420 components: - type: Transform - pos: -171.5,9.5 + pos: -183.5,-11.5 parent: 2 - uid: 1421 components: - type: Transform - pos: -171.5,8.5 + pos: -183.5,-10.5 parent: 2 - uid: 1422 components: - type: Transform - pos: -171.5,7.5 + pos: -184.5,-9.5 parent: 2 - uid: 1423 components: - type: Transform - pos: -171.5,6.5 + pos: -183.5,-9.5 parent: 2 - uid: 1424 components: - type: Transform - pos: -170.5,7.5 + pos: -182.5,-13.5 parent: 2 - uid: 1425 components: - type: Transform - pos: -168.5,11.5 + pos: -181.5,-13.5 parent: 2 - uid: 1426 components: - type: Transform - pos: -164.5,11.5 + pos: -180.5,-13.5 parent: 2 - uid: 1427 components: - type: Transform - pos: -164.5,9.5 + pos: -179.5,-13.5 parent: 2 - uid: 1428 components: - type: Transform - pos: -164.5,8.5 + pos: -186.5,-13.5 parent: 2 - uid: 1429 components: - type: Transform - pos: -160.5,10.5 + pos: -186.5,-14.5 parent: 2 - uid: 1430 components: - type: Transform - pos: -159.5,10.5 + pos: -186.5,-15.5 parent: 2 - uid: 1431 components: - type: Transform - pos: -185.5,-26.5 + pos: -186.5,-16.5 parent: 2 - uid: 1432 components: - type: Transform - pos: -184.5,-26.5 + pos: -186.5,-17.5 parent: 2 - uid: 1433 components: - type: Transform - pos: -189.5,-8.5 + pos: -186.5,-18.5 parent: 2 - uid: 1434 components: - type: Transform - pos: -186.5,-26.5 + pos: -186.5,-19.5 parent: 2 - uid: 1435 components: - type: Transform - pos: -188.5,-8.5 + pos: -186.5,-20.5 parent: 2 - uid: 1436 components: - type: Transform - pos: -187.5,-8.5 + pos: -183.5,-8.5 parent: 2 - uid: 1437 components: - type: Transform - pos: -187.5,-9.5 + pos: -187.5,-13.5 parent: 2 - uid: 1438 components: - type: Transform - pos: -187.5,-10.5 + pos: -188.5,-13.5 parent: 2 - uid: 1439 components: - type: Transform - pos: -186.5,-9.5 + pos: -189.5,-13.5 parent: 2 - uid: 1440 components: - type: Transform - pos: -188.5,-10.5 + pos: -190.5,-13.5 parent: 2 - uid: 1441 components: - type: Transform - pos: -189.5,-10.5 + pos: -191.5,-13.5 parent: 2 - uid: 1442 components: - type: Transform - pos: -185.5,-11.5 + pos: -192.5,-13.5 parent: 2 - uid: 1443 components: - type: Transform - pos: -185.5,-12.5 + pos: -192.5,-19.5 parent: 2 - uid: 1444 components: - type: Transform - pos: -185.5,-13.5 + pos: -191.5,-19.5 parent: 2 - uid: 1445 components: - type: Transform - pos: -184.5,-13.5 + pos: -190.5,-19.5 parent: 2 - uid: 1446 components: - type: Transform - pos: -183.5,-13.5 + pos: -189.5,-19.5 parent: 2 - uid: 1447 components: - type: Transform - pos: -183.5,-12.5 + pos: -188.5,-19.5 parent: 2 - uid: 1448 components: - type: Transform - pos: -183.5,-11.5 + pos: -187.5,-19.5 parent: 2 - uid: 1449 components: - type: Transform - pos: -183.5,-10.5 + pos: -185.5,-19.5 parent: 2 - uid: 1450 components: - type: Transform - pos: -184.5,-9.5 + pos: -184.5,-19.5 parent: 2 - uid: 1451 components: - type: Transform - pos: -183.5,-9.5 + pos: -183.5,-19.5 parent: 2 - uid: 1452 components: - type: Transform - pos: -182.5,-13.5 + pos: -182.5,-19.5 parent: 2 - uid: 1453 components: - type: Transform - pos: -181.5,-13.5 + pos: -181.5,-19.5 parent: 2 - uid: 1454 components: - type: Transform - pos: -180.5,-13.5 + pos: -180.5,-19.5 parent: 2 - uid: 1455 components: - type: Transform - pos: -179.5,-13.5 + pos: -189.5,-18.5 parent: 2 - uid: 1456 components: - type: Transform - pos: -186.5,-13.5 + pos: -189.5,-17.5 parent: 2 - uid: 1457 components: - type: Transform - pos: -186.5,-27.5 + pos: -189.5,-14.5 parent: 2 - uid: 1458 components: - type: Transform - pos: -186.5,-14.5 + pos: -189.5,-15.5 parent: 2 - uid: 1459 components: - type: Transform - pos: -186.5,-15.5 + pos: -183.5,-14.5 parent: 2 - uid: 1460 components: - type: Transform - pos: -186.5,-16.5 + pos: -183.5,-15.5 parent: 2 - uid: 1461 components: - type: Transform - pos: -186.5,-17.5 + pos: -183.5,-18.5 parent: 2 - uid: 1462 components: - type: Transform - pos: -186.5,-18.5 + pos: -183.5,-17.5 parent: 2 - uid: 1463 components: - type: Transform - pos: -186.5,-19.5 + pos: -185.5,-16.5 parent: 2 - uid: 1464 components: - type: Transform - pos: -186.5,-20.5 + pos: -187.5,-16.5 parent: 2 - uid: 1465 components: - type: Transform - pos: -186.5,-25.5 + pos: -207.5,8.5 parent: 2 - uid: 1466 components: - type: Transform - pos: -186.5,-24.5 + pos: -205.5,8.5 parent: 2 - uid: 1467 components: - type: Transform - pos: -186.5,-23.5 + pos: -204.5,9.5 parent: 2 - uid: 1468 components: - type: Transform - pos: -186.5,-22.5 + pos: -204.5,8.5 parent: 2 - uid: 1469 components: - type: Transform - pos: -187.5,-24.5 + pos: -204.5,7.5 parent: 2 - uid: 1470 components: - type: Transform - pos: -188.5,-24.5 + pos: -137.5,-3.5 parent: 2 - uid: 1471 components: - type: Transform - pos: -189.5,-24.5 + pos: -136.5,-3.5 parent: 2 - uid: 1472 components: - type: Transform - pos: -190.5,-24.5 + pos: -135.5,-3.5 parent: 2 - uid: 1473 components: - type: Transform - pos: -185.5,-24.5 + pos: -134.5,-3.5 parent: 2 - uid: 1474 components: - type: Transform - pos: -184.5,-24.5 + pos: -133.5,-3.5 parent: 2 - uid: 1475 components: - type: Transform - pos: -183.5,-24.5 + pos: -132.5,-3.5 parent: 2 - uid: 1476 components: - type: Transform - pos: -182.5,-24.5 + pos: -131.5,-3.5 parent: 2 - uid: 1477 components: - type: Transform - pos: -182.5,-25.5 + pos: -142.5,-3.5 parent: 2 - uid: 1478 components: - type: Transform - pos: -181.5,-25.5 + pos: -143.5,-3.5 parent: 2 - uid: 1479 components: - type: Transform - pos: -190.5,-25.5 + pos: -144.5,-3.5 parent: 2 - uid: 1480 components: - type: Transform - pos: -191.5,-25.5 + pos: -145.5,-3.5 parent: 2 - uid: 1481 components: - type: Transform - pos: -182.5,-23.5 + pos: -146.5,-3.5 parent: 2 - uid: 1482 components: - type: Transform - pos: -181.5,-23.5 + pos: -147.5,-3.5 parent: 2 - uid: 1483 components: - type: Transform - pos: -180.5,-25.5 + pos: -148.5,-3.5 parent: 2 - uid: 1484 components: - type: Transform - pos: -182.5,-26.5 + pos: -144.5,-7.5 parent: 2 - uid: 1485 components: - type: Transform - pos: -182.5,-27.5 + pos: -144.5,-6.5 parent: 2 - uid: 1486 components: - type: Transform - pos: -190.5,-27.5 + pos: -144.5,-5.5 parent: 2 - uid: 1487 components: - type: Transform - pos: -190.5,-26.5 + pos: -144.5,-4.5 parent: 2 - uid: 1488 components: - type: Transform - pos: -190.5,-23.5 + pos: -144.5,-2.5 parent: 2 - uid: 1489 components: - type: Transform - pos: -191.5,-23.5 + pos: -144.5,-1.5 parent: 2 - uid: 1490 components: - type: Transform - pos: -183.5,-8.5 + pos: -145.5,-6.5 parent: 2 - uid: 1491 components: - type: Transform - pos: -187.5,-13.5 + pos: -146.5,-6.5 parent: 2 - uid: 1492 components: - type: Transform - pos: -188.5,-13.5 + pos: -147.5,-6.5 parent: 2 - uid: 1493 components: - type: Transform - pos: -189.5,-13.5 + pos: -148.5,-6.5 parent: 2 - uid: 1494 components: - type: Transform - pos: -190.5,-13.5 + pos: -143.5,-6.5 parent: 2 - uid: 1495 components: - type: Transform - pos: -191.5,-13.5 + pos: -142.5,-6.5 parent: 2 - uid: 1496 components: - type: Transform - pos: -192.5,-13.5 + pos: -141.5,-6.5 parent: 2 - uid: 1497 components: - type: Transform - pos: -192.5,-19.5 + pos: -139.5,-6.5 parent: 2 - uid: 1498 components: - type: Transform - pos: -191.5,-19.5 + pos: -138.5,-6.5 parent: 2 - uid: 1499 components: - type: Transform - pos: -190.5,-19.5 + pos: -137.5,-6.5 parent: 2 - uid: 1500 components: - type: Transform - pos: -189.5,-19.5 + pos: -137.5,-5.5 parent: 2 - uid: 1501 components: - type: Transform - pos: -188.5,-19.5 + pos: -136.5,-5.5 parent: 2 - uid: 1502 components: - type: Transform - pos: -187.5,-19.5 + pos: -136.5,-4.5 parent: 2 - uid: 1503 components: - type: Transform - pos: -185.5,-19.5 + pos: -136.5,-7.5 parent: 2 - uid: 1504 components: - type: Transform - pos: -184.5,-19.5 + pos: -136.5,-2.5 parent: 2 - uid: 1505 components: - type: Transform - pos: -183.5,-19.5 + pos: -136.5,-1.5 parent: 2 - uid: 1506 components: - type: Transform - pos: -182.5,-19.5 + pos: -135.5,-6.5 parent: 2 - uid: 1507 components: - type: Transform - pos: -181.5,-19.5 + pos: -134.5,-6.5 parent: 2 - uid: 1508 components: - type: Transform - pos: -180.5,-19.5 + pos: -133.5,-6.5 parent: 2 - uid: 1509 components: - type: Transform - pos: -189.5,-18.5 + pos: -132.5,-6.5 parent: 2 - uid: 1510 components: - type: Transform - pos: -189.5,-17.5 + pos: -131.5,-6.5 parent: 2 - uid: 1511 components: - type: Transform - pos: -189.5,-14.5 + pos: -129.5,-3.5 parent: 2 - uid: 1512 components: - type: Transform - pos: -189.5,-15.5 + pos: -128.5,-3.5 parent: 2 - uid: 1513 components: - type: Transform - pos: -183.5,-14.5 + pos: -126.5,-3.5 parent: 2 - uid: 1514 components: - type: Transform - pos: -183.5,-15.5 + pos: -125.5,-3.5 parent: 2 - uid: 1515 components: - type: Transform - pos: -183.5,-18.5 + pos: -124.5,-3.5 parent: 2 - uid: 1516 components: - type: Transform - pos: -183.5,-17.5 + pos: -123.5,-3.5 parent: 2 - uid: 1517 components: - type: Transform - pos: -185.5,-16.5 + pos: -122.5,-3.5 parent: 2 - uid: 1518 components: - type: Transform - pos: -187.5,-16.5 + pos: -121.5,-3.5 parent: 2 - uid: 1519 components: - type: Transform - pos: -184.5,-23.5 + pos: -123.5,-6.5 parent: 2 - uid: 1520 components: - type: Transform - pos: -184.5,-25.5 + pos: -123.5,-5.5 parent: 2 - uid: 1521 components: - type: Transform - pos: -188.5,-25.5 + pos: -123.5,-4.5 parent: 2 - uid: 1522 components: - type: Transform - pos: -188.5,-23.5 + pos: -121.5,-5.5 parent: 2 - uid: 1523 components: - type: Transform - pos: -188.5,-22.5 + pos: -121.5,-4.5 parent: 2 - uid: 1524 components: - type: Transform - pos: -184.5,-22.5 + pos: -110.5,-3.5 parent: 2 - uid: 1525 components: - type: Transform - pos: -183.5,-22.5 + pos: -109.5,-3.5 parent: 2 - uid: 1526 components: - type: Transform - pos: -189.5,-22.5 + pos: -120.5,-3.5 parent: 2 - uid: 1527 components: - type: Transform - pos: -207.5,8.5 + pos: -119.5,-3.5 parent: 2 - uid: 1528 components: - type: Transform - pos: -205.5,8.5 + pos: -118.5,-3.5 parent: 2 - uid: 1529 components: - type: Transform - pos: -204.5,9.5 + pos: -117.5,-3.5 parent: 2 - uid: 1530 components: - type: Transform - pos: -204.5,8.5 + pos: -116.5,-3.5 parent: 2 - uid: 1531 components: - type: Transform - pos: -204.5,7.5 + pos: -115.5,-3.5 parent: 2 - uid: 1532 components: - type: Transform - pos: -137.5,-3.5 + pos: -114.5,-3.5 parent: 2 - uid: 1533 components: - type: Transform - pos: -136.5,-3.5 + pos: -113.5,-3.5 parent: 2 - uid: 1534 components: - type: Transform - pos: -135.5,-3.5 + pos: -112.5,-3.5 parent: 2 - uid: 1535 components: - type: Transform - pos: -134.5,-3.5 + pos: -111.5,-3.5 parent: 2 - uid: 1536 components: - type: Transform - pos: -133.5,-3.5 + pos: -115.5,1.5 parent: 2 - uid: 1537 components: - type: Transform - pos: -132.5,-3.5 + pos: -115.5,2.5 parent: 2 - uid: 1538 components: - type: Transform - pos: -131.5,-3.5 + pos: -115.5,3.5 parent: 2 - uid: 1539 components: - type: Transform - pos: -142.5,-3.5 + pos: -116.5,3.5 parent: 2 - uid: 1540 components: - type: Transform - pos: -143.5,-3.5 + pos: -117.5,3.5 parent: 2 - uid: 1541 components: - type: Transform - pos: -144.5,-3.5 + pos: -118.5,3.5 parent: 2 - uid: 1542 components: - type: Transform - pos: -145.5,-3.5 + pos: -119.5,3.5 parent: 2 - uid: 1543 components: - type: Transform - pos: -146.5,-3.5 + pos: -115.5,-4.5 parent: 2 - uid: 1544 components: - type: Transform - pos: -147.5,-3.5 + pos: -115.5,-5.5 parent: 2 - uid: 1545 components: - type: Transform - pos: -148.5,-3.5 + pos: -115.5,-6.5 parent: 2 - uid: 1546 components: - type: Transform - pos: -144.5,-7.5 + pos: -115.5,-7.5 parent: 2 - uid: 1547 components: - type: Transform - pos: -144.5,-6.5 + pos: -114.5,-6.5 parent: 2 - uid: 1548 components: - type: Transform - pos: -144.5,-5.5 + pos: -113.5,-6.5 parent: 2 - uid: 1549 components: - type: Transform - pos: -144.5,-4.5 + pos: -112.5,-6.5 parent: 2 - uid: 1550 components: - type: Transform - pos: -144.5,-2.5 + pos: -111.5,-6.5 parent: 2 - uid: 1551 components: - type: Transform - pos: -144.5,-1.5 + pos: -116.5,-6.5 parent: 2 - uid: 1552 components: - type: Transform - pos: -145.5,-6.5 + pos: -117.5,-6.5 parent: 2 - uid: 1553 components: - type: Transform - pos: -146.5,-6.5 + pos: -118.5,-6.5 parent: 2 - uid: 1554 components: - type: Transform - pos: -147.5,-6.5 + pos: -119.5,-6.5 parent: 2 - uid: 1555 components: - type: Transform - pos: -148.5,-6.5 + pos: -120.5,-6.5 parent: 2 - uid: 1556 components: - type: Transform - pos: -143.5,-6.5 + pos: -123.5,-7.5 parent: 2 - uid: 1557 components: - type: Transform - pos: -142.5,-6.5 + pos: -123.5,-8.5 parent: 2 - uid: 1558 components: - type: Transform - pos: -141.5,-6.5 + pos: -123.5,-9.5 parent: 2 - uid: 1559 components: - type: Transform - pos: -139.5,-6.5 + pos: -123.5,-10.5 parent: 2 - uid: 1560 components: - type: Transform - pos: -138.5,-6.5 + pos: -123.5,-11.5 parent: 2 - uid: 1561 components: - type: Transform - pos: -137.5,-6.5 + pos: -124.5,-10.5 parent: 2 - uid: 1562 components: - type: Transform - pos: -137.5,-5.5 + pos: -125.5,-10.5 parent: 2 - uid: 1563 components: - type: Transform - pos: -136.5,-5.5 + pos: -126.5,-10.5 parent: 2 - uid: 1564 components: - type: Transform - pos: -136.5,-4.5 + pos: -127.5,-10.5 parent: 2 - uid: 1565 components: - type: Transform - pos: -136.5,-7.5 + pos: -122.5,-10.5 parent: 2 - uid: 1566 components: - type: Transform - pos: -136.5,-2.5 + pos: -121.5,-10.5 parent: 2 - uid: 1567 components: - type: Transform - pos: -136.5,-1.5 + pos: -120.5,-10.5 parent: 2 - uid: 1568 components: - type: Transform - pos: -135.5,-6.5 + pos: -119.5,-10.5 parent: 2 - uid: 1569 components: - type: Transform - pos: -134.5,-6.5 + pos: -109.5,-8.5 parent: 2 - uid: 1570 components: - type: Transform - pos: -133.5,-6.5 + pos: -108.5,-8.5 parent: 2 - uid: 1571 components: - type: Transform - pos: -132.5,-6.5 + pos: -107.5,-8.5 parent: 2 - uid: 1572 components: - type: Transform - pos: -131.5,-6.5 + pos: -106.5,-8.5 parent: 2 - uid: 1573 components: - type: Transform - pos: -129.5,-3.5 + pos: -105.5,-7.5 parent: 2 - uid: 1574 components: - type: Transform - pos: -128.5,-3.5 + pos: -106.5,-7.5 parent: 2 - uid: 1575 components: - type: Transform - pos: -126.5,-3.5 + pos: -106.5,-6.5 parent: 2 - uid: 1576 components: - type: Transform - pos: -125.5,-3.5 + pos: -106.5,-5.5 parent: 2 - uid: 1577 components: - type: Transform - pos: -124.5,-3.5 + pos: -106.5,-9.5 parent: 2 - uid: 1578 components: - type: Transform - pos: -123.5,-3.5 + pos: -106.5,-10.5 parent: 2 - uid: 1579 components: - type: Transform - pos: -122.5,-3.5 + pos: -106.5,-11.5 parent: 2 - uid: 1580 components: - type: Transform - pos: -121.5,-3.5 + pos: -106.5,-12.5 parent: 2 - uid: 1581 components: - type: Transform - pos: -123.5,-6.5 + pos: -106.5,-13.5 parent: 2 - uid: 1582 components: - type: Transform - pos: -123.5,-5.5 + pos: -106.5,-14.5 parent: 2 - uid: 1583 components: - type: Transform - pos: -123.5,-4.5 + pos: -106.5,-15.5 parent: 2 - uid: 1584 components: - type: Transform - pos: -121.5,-5.5 + pos: -115.5,-13.5 parent: 2 - uid: 1585 components: - type: Transform - pos: -121.5,-4.5 + pos: -115.5,-12.5 parent: 2 - uid: 1586 components: - type: Transform - pos: -110.5,-3.5 + pos: -115.5,-11.5 parent: 2 - uid: 1587 components: - type: Transform - pos: -109.5,-3.5 + pos: -115.5,-10.5 parent: 2 - uid: 1588 components: - type: Transform - pos: -120.5,-3.5 + pos: -115.5,-9.5 parent: 2 - uid: 1589 components: - type: Transform - pos: -119.5,-3.5 + pos: -114.5,-9.5 parent: 2 - uid: 1590 components: - type: Transform - pos: -118.5,-3.5 + pos: -113.5,-9.5 parent: 2 - uid: 1591 components: - type: Transform - pos: -117.5,-3.5 + pos: -112.5,-9.5 parent: 2 - uid: 1592 components: - type: Transform - pos: -116.5,-3.5 + pos: -111.5,-9.5 parent: 2 - uid: 1593 components: - type: Transform - pos: -115.5,-3.5 + pos: -114.5,-12.5 parent: 2 - uid: 1594 components: - type: Transform - pos: -114.5,-3.5 + pos: -113.5,-12.5 parent: 2 - uid: 1595 components: - type: Transform - pos: -113.5,-3.5 + pos: -112.5,-12.5 parent: 2 - uid: 1596 components: - type: Transform - pos: -112.5,-3.5 + pos: -111.5,-12.5 parent: 2 - uid: 1597 components: - type: Transform - pos: -111.5,-3.5 + pos: -111.5,-13.5 parent: 2 - uid: 1598 components: - type: Transform - pos: -115.5,1.5 + pos: -111.5,-14.5 parent: 2 - uid: 1599 components: - type: Transform - pos: -115.5,2.5 + pos: -111.5,-15.5 parent: 2 - uid: 1600 components: - type: Transform - pos: -115.5,3.5 + pos: -112.5,-15.5 parent: 2 - uid: 1601 components: - type: Transform - pos: -116.5,3.5 + pos: -116.5,-12.5 parent: 2 - uid: 1602 components: - type: Transform - pos: -117.5,3.5 + pos: -117.5,-12.5 parent: 2 - uid: 1603 components: - type: Transform - pos: -118.5,3.5 + pos: -115.5,-14.5 parent: 2 - uid: 1604 components: - type: Transform - pos: -119.5,3.5 + pos: -115.5,-15.5 parent: 2 - uid: 1605 components: - type: Transform - pos: -115.5,-4.5 + pos: -115.5,-16.5 parent: 2 - uid: 1606 components: - type: Transform - pos: -115.5,-5.5 + pos: -116.5,-15.5 parent: 2 - uid: 1607 components: - type: Transform - pos: -115.5,-6.5 + pos: -130.5,-6.5 parent: 2 - uid: 1608 components: - type: Transform - pos: -115.5,-7.5 + pos: -129.5,-6.5 parent: 2 - uid: 1609 components: - type: Transform - pos: -114.5,-6.5 + pos: -128.5,-6.5 parent: 2 - uid: 1610 components: - type: Transform - pos: -113.5,-6.5 + pos: -127.5,-6.5 parent: 2 - uid: 1611 components: - type: Transform - pos: -112.5,-6.5 + pos: -105.5,-13.5 parent: 2 - uid: 1612 components: - type: Transform - pos: -111.5,-6.5 + pos: -104.5,-13.5 parent: 2 - uid: 1613 components: - type: Transform - pos: -116.5,-6.5 + pos: -105.5,-10.5 parent: 2 - uid: 1614 components: - type: Transform - pos: -117.5,-6.5 + pos: -104.5,-10.5 parent: 2 - uid: 1615 components: - type: Transform - pos: -118.5,-6.5 + pos: -104.5,-7.5 parent: 2 - uid: 1616 components: - type: Transform - pos: -119.5,-6.5 + pos: -103.5,-13.5 parent: 2 - uid: 1617 components: - type: Transform - pos: -120.5,-6.5 + pos: -103.5,-10.5 parent: 2 - uid: 1618 components: - type: Transform - pos: -123.5,-7.5 + pos: -106.5,-16.5 parent: 2 - uid: 1619 components: - type: Transform - pos: -123.5,-8.5 + pos: -105.5,-16.5 parent: 2 - uid: 1620 components: - type: Transform - pos: -123.5,-9.5 + pos: -104.5,-16.5 parent: 2 - uid: 1621 components: - type: Transform - pos: -123.5,-10.5 + pos: -103.5,-16.5 parent: 2 - uid: 1622 components: - type: Transform - pos: -123.5,-11.5 + pos: -102.5,-16.5 parent: 2 - uid: 1623 components: - type: Transform - pos: -124.5,-10.5 + pos: -101.5,-16.5 parent: 2 - uid: 1624 components: - type: Transform - pos: -125.5,-10.5 + pos: -100.5,-16.5 parent: 2 - uid: 1625 components: - type: Transform - pos: -126.5,-10.5 + pos: -100.5,-17.5 parent: 2 - uid: 1626 components: - type: Transform - pos: -127.5,-10.5 + pos: -100.5,-15.5 parent: 2 - uid: 1627 components: - type: Transform - pos: -122.5,-10.5 + pos: -108.5,-15.5 parent: 2 - uid: 1628 components: - type: Transform - pos: -121.5,-10.5 + pos: -107.5,-15.5 parent: 2 - uid: 1629 components: - type: Transform - pos: -120.5,-10.5 + pos: -108.5,-11.5 parent: 2 - uid: 1630 components: - type: Transform - pos: -119.5,-10.5 + pos: -108.5,-14.5 parent: 2 - uid: 1631 components: - type: Transform - pos: -109.5,-8.5 + pos: -109.5,-12.5 parent: 2 - uid: 1632 components: - type: Transform - pos: -108.5,-8.5 + pos: -107.5,-10.5 parent: 2 - uid: 1633 components: - type: Transform - pos: -107.5,-8.5 + pos: -108.5,-10.5 parent: 2 - uid: 1634 components: - type: Transform - pos: -106.5,-8.5 + pos: -107.5,-6.5 parent: 2 - uid: 1635 components: - type: Transform - pos: -105.5,-7.5 + pos: -116.5,-9.5 parent: 2 - uid: 1636 components: - type: Transform - pos: -106.5,-7.5 + pos: -113.5,-0.5 parent: 2 - uid: 1637 components: - type: Transform - pos: -106.5,-6.5 + pos: -112.5,-0.5 parent: 2 - uid: 1638 components: - type: Transform - pos: -106.5,-5.5 + pos: -111.5,-0.5 parent: 2 - uid: 1639 components: - type: Transform - pos: -106.5,-9.5 + pos: -58.5,-1.5 parent: 2 - uid: 1640 components: - type: Transform - pos: -106.5,-10.5 + pos: -125.5,-20.5 parent: 2 - uid: 1641 components: - type: Transform - pos: -106.5,-11.5 + pos: -126.5,-20.5 parent: 2 - uid: 1642 components: - type: Transform - pos: -106.5,-12.5 + pos: -126.5,-19.5 parent: 2 - uid: 1643 components: - type: Transform - pos: -106.5,-13.5 + pos: -127.5,-19.5 parent: 2 - uid: 1644 components: - type: Transform - pos: -106.5,-14.5 + pos: -127.5,-18.5 parent: 2 - uid: 1645 components: - type: Transform - pos: -106.5,-15.5 + pos: -128.5,-18.5 parent: 2 - uid: 1646 components: - type: Transform - pos: -115.5,-13.5 + pos: -129.5,-18.5 parent: 2 - uid: 1647 components: - type: Transform - pos: -115.5,-12.5 + pos: -129.5,-17.5 parent: 2 - uid: 1648 components: - type: Transform - pos: -115.5,-11.5 + pos: -129.5,-19.5 parent: 2 - uid: 1649 components: - type: Transform - pos: -115.5,-10.5 + pos: -124.5,-20.5 parent: 2 - uid: 1650 components: - type: Transform - pos: -115.5,-9.5 + pos: -123.5,-20.5 parent: 2 - uid: 1651 components: - type: Transform - pos: -114.5,-9.5 + pos: -122.5,-20.5 parent: 2 - uid: 1652 components: - type: Transform - pos: -113.5,-9.5 + pos: -121.5,-20.5 parent: 2 - uid: 1653 components: - type: Transform - pos: -112.5,-9.5 + pos: -121.5,-19.5 parent: 2 - uid: 1654 components: - type: Transform - pos: -111.5,-9.5 + pos: -121.5,-18.5 parent: 2 - uid: 1655 components: - type: Transform - pos: -114.5,-12.5 + pos: -121.5,-17.5 parent: 2 - uid: 1656 components: - type: Transform - pos: -113.5,-12.5 + pos: -121.5,-16.5 parent: 2 - uid: 1657 components: - type: Transform - pos: -112.5,-12.5 + pos: -122.5,-18.5 parent: 2 - uid: 1658 components: - type: Transform - pos: -111.5,-12.5 + pos: -123.5,-18.5 parent: 2 - uid: 1659 components: - type: Transform - pos: -111.5,-13.5 + pos: -122.5,-16.5 parent: 2 - uid: 1660 components: - type: Transform - pos: -111.5,-14.5 + pos: -123.5,-16.5 parent: 2 - uid: 1661 components: - type: Transform - pos: -111.5,-15.5 + pos: -124.5,-16.5 parent: 2 - uid: 1662 components: - type: Transform - pos: -112.5,-15.5 + pos: -124.5,-15.5 parent: 2 - uid: 1663 components: - type: Transform - pos: -116.5,-12.5 + pos: -124.5,-14.5 parent: 2 - uid: 1664 components: - type: Transform - pos: -117.5,-12.5 + pos: -125.5,-14.5 parent: 2 - uid: 1665 components: - type: Transform - pos: -115.5,-14.5 + pos: -120.5,-20.5 parent: 2 - uid: 1666 components: - type: Transform - pos: -115.5,-15.5 + pos: -119.5,-20.5 parent: 2 - uid: 1667 components: - type: Transform - pos: -115.5,-16.5 + pos: -118.5,-20.5 parent: 2 - uid: 1668 components: - type: Transform - pos: -116.5,-15.5 + pos: -117.5,-20.5 parent: 2 - uid: 1669 components: - type: Transform - pos: -130.5,-6.5 + pos: -116.5,-20.5 parent: 2 - uid: 1670 components: - type: Transform - pos: -129.5,-6.5 + pos: -115.5,-20.5 parent: 2 - uid: 1671 components: - type: Transform - pos: -128.5,-6.5 + pos: -114.5,-20.5 parent: 2 - uid: 1672 components: - type: Transform - pos: -127.5,-6.5 + pos: -114.5,-21.5 parent: 2 - uid: 1673 components: - type: Transform - pos: -105.5,-13.5 + pos: -113.5,-21.5 parent: 2 - uid: 1674 components: - type: Transform - pos: -104.5,-13.5 + pos: -112.5,-21.5 parent: 2 - uid: 1675 components: - type: Transform - pos: -105.5,-10.5 + pos: -111.5,-21.5 parent: 2 - uid: 1676 components: - type: Transform - pos: -104.5,-10.5 + pos: -110.5,-21.5 parent: 2 - uid: 1677 components: - type: Transform - pos: -104.5,-7.5 + pos: -109.5,-21.5 parent: 2 - uid: 1678 components: - type: Transform - pos: -103.5,-13.5 + pos: -109.5,-20.5 parent: 2 - uid: 1679 components: - type: Transform - pos: -103.5,-10.5 + pos: -109.5,-19.5 parent: 2 - uid: 1680 components: - type: Transform - pos: -106.5,-16.5 + pos: -109.5,-18.5 parent: 2 - uid: 1681 components: - type: Transform - pos: -105.5,-16.5 + pos: -108.5,-18.5 parent: 2 - uid: 1682 components: - type: Transform - pos: -104.5,-16.5 + pos: -107.5,-18.5 parent: 2 - uid: 1683 components: - type: Transform - pos: -103.5,-16.5 + pos: -106.5,-18.5 parent: 2 - uid: 1684 components: - type: Transform - pos: -102.5,-16.5 + pos: -105.5,-18.5 parent: 2 - uid: 1685 components: - type: Transform - pos: -101.5,-16.5 + pos: -105.5,-19.5 parent: 2 - uid: 1686 components: - type: Transform - pos: -100.5,-16.5 + pos: -105.5,-20.5 parent: 2 - uid: 1687 components: - type: Transform - pos: -100.5,-17.5 + pos: -105.5,-21.5 parent: 2 - uid: 1688 components: - type: Transform - pos: -100.5,-15.5 + pos: -104.5,-21.5 parent: 2 - uid: 1689 components: - type: Transform - pos: -108.5,-15.5 + pos: -103.5,-21.5 parent: 2 - uid: 1690 components: - type: Transform - pos: -107.5,-15.5 + pos: -103.5,-20.5 parent: 2 - uid: 1691 components: - type: Transform - pos: -108.5,-11.5 + pos: -102.5,-20.5 parent: 2 - uid: 1692 components: - type: Transform - pos: -108.5,-14.5 + pos: -101.5,-20.5 parent: 2 - uid: 1693 components: - type: Transform - pos: -109.5,-12.5 + pos: -100.5,-20.5 parent: 2 - uid: 1694 components: - type: Transform - pos: -107.5,-10.5 + pos: -99.5,-20.5 parent: 2 - uid: 1695 components: - type: Transform - pos: -108.5,-10.5 + pos: -98.5,-20.5 parent: 2 - uid: 1696 components: - type: Transform - pos: -107.5,-6.5 + pos: -98.5,-19.5 parent: 2 - uid: 1697 components: - type: Transform - pos: -116.5,-9.5 + pos: -98.5,-18.5 parent: 2 - uid: 1698 components: - type: Transform - pos: -113.5,-0.5 + pos: -71.5,-23.5 parent: 2 - uid: 1699 components: - type: Transform - pos: -112.5,-0.5 + pos: -97.5,-18.5 parent: 2 - uid: 1700 components: - type: Transform - pos: -111.5,-0.5 + pos: -96.5,-18.5 parent: 2 - uid: 1701 components: - type: Transform - pos: -58.5,-1.5 + pos: -95.5,-18.5 parent: 2 - uid: 1702 components: - type: Transform - pos: -81.5,-0.5 + pos: -95.5,-17.5 parent: 2 - uid: 1703 components: - type: Transform - pos: -125.5,-20.5 + pos: -95.5,-16.5 parent: 2 - uid: 1704 components: - type: Transform - pos: -126.5,-20.5 + pos: -94.5,-16.5 parent: 2 - uid: 1705 components: - type: Transform - pos: -126.5,-19.5 + pos: -93.5,-16.5 parent: 2 - uid: 1706 components: - type: Transform - pos: -127.5,-19.5 + pos: -92.5,-16.5 parent: 2 - uid: 1707 components: - type: Transform - pos: -127.5,-18.5 + pos: -92.5,-17.5 parent: 2 - uid: 1708 components: - type: Transform - pos: -128.5,-18.5 + pos: -92.5,-18.5 parent: 2 - uid: 1709 components: - type: Transform - pos: -129.5,-18.5 + pos: -91.5,-18.5 parent: 2 - uid: 1710 components: - type: Transform - pos: -129.5,-17.5 + pos: -90.5,-18.5 parent: 2 - uid: 1711 components: - type: Transform - pos: -129.5,-19.5 + pos: -89.5,-18.5 parent: 2 - uid: 1712 components: - type: Transform - pos: -124.5,-20.5 + pos: -88.5,-18.5 parent: 2 - uid: 1713 components: - type: Transform - pos: -123.5,-20.5 + pos: -87.5,-18.5 parent: 2 - uid: 1714 components: - type: Transform - pos: -122.5,-20.5 + pos: -86.5,-18.5 parent: 2 - uid: 1715 components: - type: Transform - pos: -121.5,-20.5 + pos: -85.5,-18.5 parent: 2 - uid: 1716 components: - type: Transform - pos: -121.5,-19.5 + pos: -84.5,-18.5 parent: 2 - uid: 1717 components: - type: Transform - pos: -121.5,-18.5 + pos: -84.5,-19.5 parent: 2 - uid: 1718 components: - type: Transform - pos: -121.5,-17.5 + pos: -74.5,-23.5 parent: 2 - uid: 1719 components: - type: Transform - pos: -121.5,-16.5 + pos: -82.5,-19.5 parent: 2 - uid: 1720 components: - type: Transform - pos: -122.5,-18.5 + pos: -81.5,-19.5 parent: 2 - uid: 1721 components: - type: Transform - pos: -123.5,-18.5 + pos: -80.5,-19.5 parent: 2 - uid: 1722 components: - type: Transform - pos: -122.5,-16.5 + pos: -79.5,-19.5 parent: 2 - uid: 1723 components: - type: Transform - pos: -123.5,-16.5 + pos: -78.5,-19.5 parent: 2 - uid: 1724 components: - type: Transform - pos: -124.5,-16.5 + pos: -77.5,-19.5 parent: 2 - uid: 1725 components: - type: Transform - pos: -124.5,-15.5 + pos: -77.5,-20.5 parent: 2 - uid: 1726 components: - type: Transform - pos: -124.5,-14.5 + pos: -77.5,-21.5 parent: 2 - uid: 1727 components: - type: Transform - pos: -125.5,-14.5 + pos: -77.5,-22.5 parent: 2 - uid: 1728 components: - type: Transform - pos: -120.5,-20.5 + pos: -77.5,-23.5 parent: 2 - uid: 1729 components: - type: Transform - pos: -119.5,-20.5 + pos: -76.5,-23.5 parent: 2 - uid: 1730 components: - type: Transform - pos: -118.5,-20.5 + pos: -75.5,-23.5 parent: 2 - uid: 1731 components: - type: Transform - pos: -117.5,-20.5 + pos: -73.5,-23.5 parent: 2 - uid: 1732 components: - type: Transform - pos: -116.5,-20.5 + pos: -73.5,-24.5 parent: 2 - uid: 1733 components: - type: Transform - pos: -115.5,-20.5 + pos: -72.5,-24.5 parent: 2 - uid: 1734 components: - type: Transform - pos: -114.5,-20.5 + pos: -71.5,-24.5 parent: 2 - uid: 1735 components: - type: Transform - pos: -114.5,-21.5 + pos: -70.5,-24.5 parent: 2 - uid: 1736 components: - type: Transform - pos: -113.5,-21.5 + pos: -71.5,-22.5 parent: 2 - uid: 1737 components: - type: Transform - pos: -112.5,-21.5 + pos: -71.5,-21.5 parent: 2 - uid: 1738 components: - type: Transform - pos: -111.5,-21.5 + pos: -71.5,-20.5 parent: 2 - uid: 1739 components: - type: Transform - pos: -110.5,-21.5 + pos: -71.5,-19.5 parent: 2 - uid: 1740 components: - type: Transform - pos: -109.5,-21.5 + pos: -71.5,-18.5 parent: 2 - uid: 1741 components: - type: Transform - pos: -109.5,-20.5 + pos: -70.5,-18.5 parent: 2 - uid: 1742 components: - type: Transform - pos: -109.5,-19.5 + pos: -70.5,-20.5 parent: 2 - uid: 1743 components: - type: Transform - pos: -109.5,-18.5 + pos: -71.5,-17.5 parent: 2 - uid: 1744 components: - type: Transform - pos: -108.5,-18.5 + pos: -104.5,15.5 parent: 2 - uid: 1745 components: - type: Transform - pos: -107.5,-18.5 + pos: -103.5,15.5 parent: 2 - uid: 1746 components: - type: Transform - pos: -106.5,-18.5 + pos: -102.5,16.5 parent: 2 - uid: 1747 components: - type: Transform - pos: -105.5,-18.5 + pos: -102.5,17.5 parent: 2 - uid: 1748 components: - type: Transform - pos: -105.5,-19.5 + pos: -102.5,18.5 parent: 2 - uid: 1749 components: - type: Transform - pos: -105.5,-20.5 + pos: -102.5,19.5 parent: 2 - uid: 1750 components: - type: Transform - pos: -105.5,-21.5 + pos: -102.5,20.5 parent: 2 - uid: 1751 components: - type: Transform - pos: -104.5,-21.5 + pos: -102.5,21.5 parent: 2 - uid: 1752 components: - type: Transform - pos: -103.5,-21.5 + pos: -103.5,21.5 parent: 2 - uid: 1753 components: - type: Transform - pos: -103.5,-20.5 + pos: -104.5,21.5 parent: 2 - uid: 1754 components: - type: Transform - pos: -102.5,-20.5 + pos: -102.5,22.5 parent: 2 - uid: 1755 components: - type: Transform - pos: -101.5,-20.5 + pos: -102.5,23.5 parent: 2 - uid: 1756 components: - type: Transform - pos: -100.5,-20.5 + pos: -101.5,21.5 parent: 2 - uid: 1757 components: - type: Transform - pos: -99.5,-20.5 + pos: -100.5,21.5 parent: 2 - uid: 1758 components: - type: Transform - pos: -98.5,-20.5 + pos: -102.5,14.5 parent: 2 - uid: 1759 components: - type: Transform - pos: -98.5,-19.5 + pos: -102.5,13.5 parent: 2 - uid: 1760 components: - type: Transform - pos: -98.5,-18.5 + pos: -102.5,12.5 parent: 2 - uid: 1761 components: - type: Transform - pos: -71.5,-23.5 + pos: -102.5,11.5 parent: 2 - uid: 1762 components: - type: Transform - pos: -97.5,-18.5 + pos: -102.5,10.5 parent: 2 - uid: 1763 components: - type: Transform - pos: -96.5,-18.5 + pos: -102.5,9.5 parent: 2 - uid: 1764 components: - type: Transform - pos: -95.5,-18.5 + pos: -102.5,8.5 parent: 2 - uid: 1765 components: - type: Transform - pos: -95.5,-17.5 + pos: -102.5,7.5 parent: 2 - uid: 1766 components: - type: Transform - pos: -95.5,-16.5 + pos: -102.5,6.5 parent: 2 - uid: 1767 components: - type: Transform - pos: -94.5,-16.5 + pos: -102.5,5.5 parent: 2 - uid: 1768 components: - type: Transform - pos: -93.5,-16.5 + pos: -102.5,4.5 parent: 2 - uid: 1769 components: - type: Transform - pos: -92.5,-16.5 + pos: -102.5,3.5 parent: 2 - uid: 1770 components: - type: Transform - pos: -92.5,-17.5 + pos: -102.5,2.5 parent: 2 - uid: 1771 components: - type: Transform - pos: -92.5,-18.5 + pos: -102.5,1.5 parent: 2 - uid: 1772 components: - type: Transform - pos: -91.5,-18.5 + pos: -102.5,0.5 parent: 2 - uid: 1773 components: - type: Transform - pos: -90.5,-18.5 + pos: -102.5,-0.5 parent: 2 - uid: 1774 components: - type: Transform - pos: -89.5,-18.5 + pos: -103.5,5.5 parent: 2 - uid: 1775 components: - type: Transform - pos: -88.5,-18.5 + pos: -104.5,5.5 parent: 2 - uid: 1776 components: - type: Transform - pos: -87.5,-18.5 + pos: -105.5,5.5 parent: 2 - uid: 1777 components: - type: Transform - pos: -86.5,-18.5 + pos: -106.5,5.5 parent: 2 - uid: 1778 components: - type: Transform - pos: -85.5,-18.5 + pos: -107.5,5.5 parent: 2 - uid: 1779 components: - type: Transform - pos: -84.5,-18.5 + pos: -103.5,9.5 parent: 2 - uid: 1780 components: - type: Transform - pos: -84.5,-19.5 + pos: -104.5,9.5 parent: 2 - uid: 1781 components: - type: Transform - pos: -74.5,-23.5 + pos: -105.5,9.5 parent: 2 - uid: 1782 components: - type: Transform - pos: -82.5,-19.5 + pos: -106.5,9.5 parent: 2 - uid: 1783 components: - type: Transform - pos: -81.5,-19.5 + pos: -107.5,9.5 parent: 2 - uid: 1784 components: - type: Transform - pos: -80.5,-19.5 + pos: -101.5,9.5 parent: 2 - uid: 1785 components: - type: Transform - pos: -79.5,-19.5 + pos: -100.5,9.5 parent: 2 - uid: 1786 components: - type: Transform - pos: -78.5,-19.5 + pos: -99.5,9.5 parent: 2 - uid: 1787 components: - type: Transform - pos: -77.5,-19.5 + pos: -98.5,9.5 parent: 2 - uid: 1788 components: - type: Transform - pos: -77.5,-20.5 + pos: -97.5,9.5 parent: 2 - uid: 1789 components: - type: Transform - pos: -77.5,-21.5 + pos: -103.5,13.5 parent: 2 - uid: 1790 components: - type: Transform - pos: -77.5,-22.5 + pos: -104.5,13.5 parent: 2 - uid: 1791 components: - type: Transform - pos: -77.5,-23.5 + pos: -105.5,13.5 parent: 2 - uid: 1792 components: - type: Transform - pos: -76.5,-23.5 + pos: -101.5,13.5 parent: 2 - uid: 1793 components: - type: Transform - pos: -75.5,-23.5 + pos: -100.5,13.5 parent: 2 - uid: 1794 components: - type: Transform - pos: -73.5,-23.5 + pos: -99.5,13.5 parent: 2 - uid: 1795 components: - type: Transform - pos: -73.5,-24.5 + pos: -101.5,4.5 parent: 2 - uid: 1796 components: - type: Transform - pos: -72.5,-24.5 + pos: -100.5,4.5 parent: 2 - uid: 1797 components: - type: Transform - pos: -71.5,-24.5 + pos: -99.5,4.5 parent: 2 - uid: 1798 components: - type: Transform - pos: -70.5,-24.5 + pos: -98.5,4.5 parent: 2 - uid: 1799 components: - type: Transform - pos: -71.5,-22.5 + pos: -97.5,4.5 parent: 2 - uid: 1800 components: - type: Transform - pos: -71.5,-21.5 + pos: -96.5,4.5 parent: 2 - uid: 1801 components: - type: Transform - pos: -71.5,-20.5 + pos: -101.5,1.5 parent: 2 - uid: 1802 components: - type: Transform - pos: -71.5,-19.5 + pos: -101.5,2.5 parent: 2 - uid: 1803 components: - type: Transform - pos: -71.5,-18.5 + pos: -103.5,2.5 parent: 2 - uid: 1804 components: - type: Transform - pos: -70.5,-18.5 + pos: -103.5,1.5 parent: 2 - uid: 1805 components: - type: Transform - pos: -70.5,-20.5 + pos: -99.5,5.5 parent: 2 - uid: 1806 components: - type: Transform - pos: -71.5,-17.5 + pos: -101.5,17.5 parent: 2 - uid: 1807 components: - type: Transform - pos: -104.5,15.5 + pos: -103.5,17.5 parent: 2 - uid: 1808 components: - type: Transform - pos: -103.5,15.5 + pos: -17.5,8.5 parent: 2 - uid: 1809 components: - type: Transform - pos: -102.5,16.5 + pos: -17.5,7.5 parent: 2 - uid: 1810 components: - type: Transform - pos: -102.5,17.5 + pos: -18.5,7.5 parent: 2 - uid: 1811 components: - type: Transform - pos: -102.5,18.5 + pos: -19.5,7.5 parent: 2 - uid: 1812 components: - type: Transform - pos: -102.5,19.5 + pos: -20.5,7.5 parent: 2 - uid: 1813 components: - type: Transform - pos: -102.5,20.5 + pos: -19.5,8.5 parent: 2 - uid: 1814 components: - type: Transform - pos: -102.5,21.5 + pos: -19.5,9.5 parent: 2 - uid: 1815 components: - type: Transform - pos: -103.5,21.5 + pos: -21.5,7.5 parent: 2 - uid: 1816 components: - type: Transform - pos: -104.5,21.5 + pos: -93.5,4.5 parent: 2 - uid: 1817 components: - type: Transform - pos: -102.5,22.5 + pos: -92.5,4.5 parent: 2 - uid: 1818 components: - type: Transform - pos: -102.5,23.5 + pos: -92.5,5.5 parent: 2 - uid: 1819 components: - type: Transform - pos: -101.5,21.5 + pos: -92.5,6.5 parent: 2 - uid: 1820 components: - type: Transform - pos: -100.5,21.5 + pos: -92.5,7.5 parent: 2 - uid: 1821 components: - type: Transform - pos: -102.5,14.5 + pos: -92.5,8.5 parent: 2 - uid: 1822 components: - type: Transform - pos: -102.5,13.5 + pos: -92.5,9.5 parent: 2 - uid: 1823 components: - type: Transform - pos: -102.5,12.5 + pos: -92.5,10.5 parent: 2 - uid: 1824 components: - type: Transform - pos: -102.5,11.5 + pos: -91.5,10.5 parent: 2 - uid: 1825 components: - type: Transform - pos: -102.5,10.5 + pos: -91.5,11.5 parent: 2 - uid: 1826 components: - type: Transform - pos: -102.5,9.5 + pos: -93.5,7.5 parent: 2 - uid: 1827 components: - type: Transform - pos: -102.5,8.5 + pos: -91.5,13.5 parent: 2 - uid: 1828 components: - type: Transform - pos: -102.5,7.5 + pos: -91.5,12.5 parent: 2 - uid: 1829 components: - type: Transform - pos: -102.5,6.5 + pos: -91.5,14.5 parent: 2 - uid: 1830 components: - type: Transform - pos: -102.5,5.5 + pos: -92.5,14.5 parent: 2 - uid: 1831 components: - type: Transform - pos: -102.5,4.5 + pos: -90.5,13.5 parent: 2 - uid: 1832 components: - type: Transform - pos: -102.5,3.5 + pos: -89.5,13.5 parent: 2 - uid: 1833 components: - type: Transform - pos: -102.5,2.5 + pos: -88.5,13.5 parent: 2 - uid: 1834 components: - type: Transform - pos: -102.5,1.5 + pos: -88.5,12.5 parent: 2 - uid: 1835 components: - type: Transform - pos: -102.5,0.5 + pos: -88.5,11.5 parent: 2 - uid: 1836 components: - type: Transform - pos: -102.5,-0.5 + pos: -87.5,11.5 parent: 2 - uid: 1837 components: - type: Transform - pos: -103.5,5.5 + pos: -85.5,11.5 parent: 2 - uid: 1838 components: - type: Transform - pos: -104.5,5.5 + pos: -86.5,11.5 parent: 2 - uid: 1839 components: - type: Transform - pos: -105.5,5.5 + pos: -85.5,12.5 parent: 2 - uid: 1840 components: - type: Transform - pos: -106.5,5.5 + pos: -85.5,13.5 parent: 2 - uid: 1841 components: - type: Transform - pos: -107.5,5.5 + pos: -84.5,14.5 parent: 2 - uid: 1842 components: - type: Transform - pos: -103.5,9.5 + pos: -82.5,14.5 parent: 2 - uid: 1843 components: - type: Transform - pos: -104.5,9.5 + pos: -83.5,14.5 parent: 2 - uid: 1844 components: - type: Transform - pos: -105.5,9.5 + pos: -81.5,14.5 parent: 2 - uid: 1845 components: - type: Transform - pos: -106.5,9.5 + pos: -80.5,14.5 parent: 2 - uid: 1846 components: - type: Transform - pos: -107.5,9.5 + pos: -79.5,14.5 parent: 2 - uid: 1847 components: - type: Transform - pos: -101.5,9.5 + pos: -78.5,14.5 parent: 2 - uid: 1848 components: - type: Transform - pos: -100.5,9.5 + pos: -77.5,14.5 parent: 2 - uid: 1849 components: - type: Transform - pos: -99.5,9.5 + pos: -85.5,10.5 parent: 2 - uid: 1850 components: - type: Transform - pos: -98.5,9.5 + pos: -83.5,8.5 parent: 2 - uid: 1851 components: - type: Transform - pos: -97.5,9.5 + pos: -82.5,8.5 parent: 2 - uid: 1852 components: - type: Transform - pos: -103.5,13.5 + pos: -81.5,8.5 parent: 2 - uid: 1853 components: - type: Transform - pos: -104.5,13.5 + pos: -81.5,7.5 parent: 2 - uid: 1854 components: - type: Transform - pos: -105.5,13.5 + pos: -81.5,6.5 parent: 2 - uid: 1855 components: - type: Transform - pos: -101.5,13.5 + pos: -84.5,7.5 parent: 2 - uid: 1856 components: - type: Transform - pos: -100.5,13.5 + pos: -84.5,6.5 parent: 2 - uid: 1857 components: - type: Transform - pos: -99.5,13.5 + pos: -84.5,5.5 parent: 2 - uid: 1858 components: - type: Transform - pos: -101.5,4.5 + pos: -84.5,4.5 parent: 2 - uid: 1859 components: - type: Transform - pos: -100.5,4.5 + pos: -84.5,3.5 parent: 2 - uid: 1860 components: - type: Transform - pos: -99.5,4.5 + pos: -84.5,2.5 parent: 2 - uid: 1861 components: - type: Transform - pos: -98.5,4.5 + pos: -85.5,2.5 parent: 2 - uid: 1862 components: - type: Transform - pos: -97.5,4.5 + pos: -86.5,2.5 parent: 2 - uid: 1863 components: - type: Transform - pos: -96.5,4.5 + pos: -87.5,2.5 parent: 2 - uid: 1864 components: - type: Transform - pos: -101.5,1.5 + pos: -87.5,1.5 parent: 2 - uid: 1865 components: - type: Transform - pos: -101.5,2.5 + pos: -87.5,0.5 parent: 2 - uid: 1866 components: - type: Transform - pos: -103.5,2.5 + pos: -87.5,-0.5 parent: 2 - uid: 1867 components: - type: Transform - pos: -103.5,1.5 + pos: -50.5,7.5 parent: 2 - uid: 1868 components: - type: Transform - pos: -99.5,5.5 + pos: -88.5,-0.5 parent: 2 - uid: 1869 components: - type: Transform - pos: -101.5,17.5 + pos: -89.5,-5.5 parent: 2 - uid: 1870 components: - type: Transform - pos: -103.5,17.5 + pos: -88.5,-5.5 parent: 2 - uid: 1871 components: - type: Transform - pos: -17.5,8.5 + pos: -88.5,-4.5 parent: 2 - uid: 1872 components: - type: Transform - pos: -17.5,7.5 + pos: -88.5,-3.5 parent: 2 - uid: 1873 components: - type: Transform - pos: -18.5,7.5 + pos: -88.5,-2.5 parent: 2 - uid: 1874 components: - type: Transform - pos: -19.5,7.5 + pos: -89.5,-3.5 parent: 2 - uid: 1875 components: - type: Transform - pos: -20.5,7.5 + pos: -90.5,-3.5 parent: 2 - uid: 1876 components: - type: Transform - pos: -19.5,8.5 + pos: -91.5,-3.5 parent: 2 - uid: 1877 components: - type: Transform - pos: -19.5,9.5 + pos: -92.5,-3.5 parent: 2 - uid: 1878 components: - type: Transform - pos: -21.5,7.5 + pos: -93.5,-3.5 parent: 2 - uid: 1879 components: - type: Transform - pos: -93.5,4.5 + pos: -94.5,-3.5 parent: 2 - uid: 1880 components: - type: Transform - pos: -92.5,4.5 + pos: -95.5,-3.5 parent: 2 - uid: 1881 components: - type: Transform - pos: -92.5,5.5 + pos: -96.5,-3.5 parent: 2 - uid: 1882 components: - type: Transform - pos: -92.5,6.5 + pos: -97.5,-3.5 parent: 2 - uid: 1883 components: - type: Transform - pos: -92.5,7.5 + pos: -98.5,-3.5 parent: 2 - uid: 1884 components: - type: Transform - pos: -92.5,8.5 + pos: -99.5,-3.5 parent: 2 - uid: 1885 components: - type: Transform - pos: -92.5,9.5 + pos: -100.5,-3.5 parent: 2 - uid: 1886 components: - type: Transform - pos: -92.5,10.5 + pos: -101.5,-3.5 parent: 2 - uid: 1887 components: - type: Transform - pos: -91.5,10.5 + pos: -102.5,-3.5 parent: 2 - uid: 1888 components: - type: Transform - pos: -91.5,11.5 + pos: -103.5,-3.5 parent: 2 - uid: 1889 components: - type: Transform - pos: -93.5,7.5 + pos: -104.5,-3.5 parent: 2 - uid: 1890 components: - type: Transform - pos: -91.5,13.5 + pos: -105.5,-3.5 parent: 2 - uid: 1891 components: - type: Transform - pos: -91.5,12.5 + pos: -106.5,-3.5 parent: 2 - uid: 1892 components: - type: Transform - pos: -91.5,14.5 + pos: -107.5,-3.5 parent: 2 - uid: 1893 components: - type: Transform - pos: -92.5,14.5 + pos: -102.5,-2.5 parent: 2 - uid: 1894 components: - type: Transform - pos: -90.5,13.5 + pos: -100.5,-4.5 parent: 2 - uid: 1895 components: - type: Transform - pos: -89.5,13.5 + pos: -100.5,-5.5 parent: 2 - uid: 1896 components: - type: Transform - pos: -88.5,13.5 + pos: -100.5,-6.5 parent: 2 - uid: 1897 components: - type: Transform - pos: -88.5,12.5 + pos: -100.5,-7.5 parent: 2 - uid: 1898 components: - type: Transform - pos: -88.5,11.5 + pos: -100.5,-8.5 parent: 2 - uid: 1899 components: - type: Transform - pos: -87.5,11.5 + pos: -100.5,-9.5 parent: 2 - uid: 1900 components: - type: Transform - pos: -85.5,11.5 + pos: -100.5,-10.5 parent: 2 - uid: 1901 components: - type: Transform - pos: -86.5,11.5 + pos: -100.5,-11.5 parent: 2 - uid: 1902 components: - type: Transform - pos: -85.5,12.5 + pos: -99.5,-9.5 parent: 2 - uid: 1903 components: - type: Transform - pos: -85.5,13.5 + pos: -101.5,-11.5 parent: 2 - uid: 1904 components: - type: Transform - pos: -84.5,14.5 + pos: -97.5,-12.5 parent: 2 - uid: 1905 components: - type: Transform - pos: -82.5,14.5 + pos: -97.5,-13.5 parent: 2 - uid: 1906 components: - type: Transform - pos: -83.5,14.5 + pos: -97.5,-14.5 parent: 2 - uid: 1907 components: - type: Transform - pos: -81.5,14.5 + pos: -97.5,-15.5 parent: 2 - uid: 1908 components: - type: Transform - pos: -80.5,14.5 + pos: -97.5,-16.5 parent: 2 - uid: 1909 components: - type: Transform - pos: -79.5,14.5 + pos: -96.5,-14.5 parent: 2 - uid: 1910 components: - type: Transform - pos: -78.5,14.5 + pos: -70.5,8.5 parent: 2 - uid: 1911 components: - type: Transform - pos: -77.5,14.5 + pos: -69.5,8.5 parent: 2 - uid: 1912 components: - type: Transform - pos: -85.5,10.5 + pos: -68.5,8.5 parent: 2 - uid: 1913 components: - type: Transform - pos: -83.5,8.5 + pos: -67.5,8.5 parent: 2 - uid: 1914 components: - type: Transform - pos: -82.5,8.5 + pos: -80.5,8.5 parent: 2 - uid: 1915 components: - type: Transform - pos: -81.5,8.5 + pos: -79.5,8.5 parent: 2 - uid: 1916 components: - type: Transform - pos: -81.5,7.5 + pos: -78.5,8.5 parent: 2 - uid: 1917 components: - type: Transform - pos: -81.5,6.5 + pos: -77.5,8.5 parent: 2 - uid: 1918 components: - type: Transform - pos: -84.5,7.5 + pos: -76.5,8.5 parent: 2 - uid: 1919 components: - type: Transform - pos: -84.5,6.5 + pos: -75.5,8.5 parent: 2 - uid: 1920 components: - type: Transform - pos: -84.5,5.5 + pos: -74.5,8.5 parent: 2 - uid: 1921 components: - type: Transform - pos: -84.5,4.5 + pos: -73.5,8.5 parent: 2 - uid: 1922 components: - type: Transform - pos: -84.5,3.5 + pos: -72.5,8.5 parent: 2 - uid: 1923 components: - type: Transform - pos: -84.5,2.5 + pos: -71.5,8.5 parent: 2 - uid: 1924 components: - type: Transform - pos: -85.5,2.5 + pos: -55.5,8.5 parent: 2 - uid: 1925 components: - type: Transform - pos: -86.5,2.5 + pos: -54.5,8.5 parent: 2 - uid: 1926 components: - type: Transform - pos: -87.5,2.5 + pos: -53.5,8.5 parent: 2 - uid: 1927 components: - type: Transform - pos: -87.5,1.5 + pos: -52.5,8.5 parent: 2 - uid: 1928 components: - type: Transform - pos: -87.5,0.5 + pos: -51.5,8.5 parent: 2 - uid: 1929 components: - type: Transform - pos: -87.5,-0.5 + pos: -50.5,8.5 parent: 2 - uid: 1930 components: - type: Transform - pos: -50.5,7.5 + pos: -65.5,8.5 parent: 2 - uid: 1931 components: - type: Transform - pos: -88.5,-0.5 + pos: -64.5,8.5 parent: 2 - uid: 1932 components: - type: Transform - pos: -89.5,-5.5 + pos: -63.5,8.5 parent: 2 - uid: 1933 components: - type: Transform - pos: -88.5,-5.5 + pos: -62.5,8.5 parent: 2 - uid: 1934 components: - type: Transform - pos: -88.5,-4.5 + pos: -61.5,8.5 parent: 2 - uid: 1935 components: - type: Transform - pos: -88.5,-3.5 + pos: -60.5,8.5 parent: 2 - uid: 1936 components: - type: Transform - pos: -88.5,-2.5 + pos: -59.5,8.5 parent: 2 - uid: 1937 components: - type: Transform - pos: -89.5,-3.5 + pos: -58.5,8.5 parent: 2 - uid: 1938 components: - type: Transform - pos: -90.5,-3.5 + pos: -57.5,8.5 parent: 2 - uid: 1939 components: - type: Transform - pos: -91.5,-3.5 + pos: -56.5,8.5 parent: 2 - uid: 1940 components: - type: Transform - pos: -92.5,-3.5 + pos: -58.5,6.5 parent: 2 - uid: 1941 components: - type: Transform - pos: -93.5,-3.5 + pos: -58.5,7.5 parent: 2 - uid: 1942 components: - type: Transform - pos: -94.5,-3.5 + pos: -50.5,5.5 parent: 2 - uid: 1943 components: - type: Transform - pos: -95.5,-3.5 + pos: -50.5,6.5 parent: 2 - uid: 1944 components: - type: Transform - pos: -96.5,-3.5 + pos: -50.5,0.5 parent: 2 - uid: 1945 components: - type: Transform - pos: -97.5,-3.5 + pos: -50.5,4.5 parent: 2 - uid: 1946 components: - type: Transform - pos: -98.5,-3.5 + pos: -48.5,3.5 parent: 2 - uid: 1947 components: - type: Transform - pos: -99.5,-3.5 + pos: -50.5,3.5 parent: 2 - uid: 1948 components: - type: Transform - pos: -100.5,-3.5 + pos: -50.5,-1.5 parent: 2 - uid: 1949 components: - type: Transform - pos: -101.5,-3.5 + pos: -45.5,-19.5 parent: 2 - uid: 1950 components: - type: Transform - pos: -102.5,-3.5 + pos: -50.5,-2.5 parent: 2 - uid: 1951 components: - type: Transform - pos: -103.5,-3.5 + pos: -50.5,2.5 parent: 2 - uid: 1952 components: - type: Transform - pos: -104.5,-3.5 + pos: -50.5,-0.5 parent: 2 - uid: 1953 components: - type: Transform - pos: -105.5,-3.5 + pos: -45.5,2.5 parent: 2 - uid: 1954 components: - type: Transform - pos: -106.5,-3.5 + pos: -44.5,3.5 parent: 2 - uid: 1955 components: - type: Transform - pos: -107.5,-3.5 + pos: -50.5,1.5 parent: 2 - uid: 1956 components: - type: Transform - pos: -102.5,-2.5 + pos: -45.5,1.5 parent: 2 - uid: 1957 components: - type: Transform - pos: -100.5,-4.5 + pos: -46.5,3.5 parent: 2 - uid: 1958 components: - type: Transform - pos: -100.5,-5.5 + pos: -47.5,3.5 parent: 2 - uid: 1959 components: - type: Transform - pos: -100.5,-6.5 + pos: -49.5,3.5 parent: 2 - uid: 1960 components: - type: Transform - pos: -100.5,-7.5 + pos: -45.5,3.5 parent: 2 - uid: 1961 components: - type: Transform - pos: -100.5,-8.5 + pos: -45.5,4.5 parent: 2 - uid: 1962 components: - type: Transform - pos: -100.5,-9.5 + pos: -66.5,-23.5 parent: 2 - uid: 1963 components: - type: Transform - pos: -100.5,-10.5 + pos: -65.5,-20.5 parent: 2 - uid: 1964 components: - type: Transform - pos: -100.5,-11.5 + pos: -68.5,-21.5 parent: 2 - uid: 1965 components: - type: Transform - pos: -99.5,-9.5 + pos: -68.5,-20.5 parent: 2 - uid: 1966 components: - type: Transform - pos: -101.5,-11.5 + pos: -68.5,-19.5 parent: 2 - uid: 1967 components: - type: Transform - pos: -97.5,-12.5 + pos: -67.5,-19.5 parent: 2 - uid: 1968 components: - type: Transform - pos: -97.5,-13.5 + pos: -66.5,-19.5 parent: 2 - uid: 1969 components: - type: Transform - pos: -97.5,-14.5 + pos: -65.5,-19.5 parent: 2 - uid: 1970 components: - type: Transform - pos: -97.5,-15.5 + pos: -65.5,-18.5 parent: 2 - uid: 1971 components: - type: Transform - pos: -97.5,-16.5 + pos: -66.5,-22.5 parent: 2 - uid: 1972 components: - type: Transform - pos: -96.5,-14.5 + pos: -56.5,-22.5 parent: 2 - uid: 1973 components: - type: Transform - pos: -70.5,8.5 + pos: -54.5,-23.5 parent: 2 - uid: 1974 components: - type: Transform - pos: -69.5,8.5 + pos: -54.5,-22.5 parent: 2 - uid: 1975 components: - type: Transform - pos: -68.5,8.5 + pos: -55.5,-22.5 parent: 2 - uid: 1976 components: - type: Transform - pos: -67.5,8.5 + pos: -53.5,-22.5 parent: 2 - uid: 1977 components: - type: Transform - pos: -80.5,8.5 + pos: -57.5,-22.5 parent: 2 - uid: 1978 components: - type: Transform - pos: -79.5,8.5 + pos: -58.5,-22.5 parent: 2 - uid: 1979 components: - type: Transform - pos: -78.5,8.5 + pos: -59.5,-22.5 parent: 2 - uid: 1980 components: - type: Transform - pos: -77.5,8.5 + pos: -60.5,-22.5 parent: 2 - uid: 1981 components: - type: Transform - pos: -76.5,8.5 + pos: -61.5,-22.5 parent: 2 - uid: 1982 components: - type: Transform - pos: -75.5,8.5 + pos: -62.5,-22.5 parent: 2 - uid: 1983 components: - type: Transform - pos: -74.5,8.5 + pos: -63.5,-22.5 parent: 2 - uid: 1984 components: - type: Transform - pos: -73.5,8.5 + pos: -64.5,-22.5 parent: 2 - uid: 1985 components: - type: Transform - pos: -72.5,8.5 + pos: -65.5,-22.5 parent: 2 - uid: 1986 components: - type: Transform - pos: -71.5,8.5 + pos: -66.5,-24.5 parent: 2 - uid: 1987 components: - type: Transform - pos: -55.5,8.5 + pos: -67.5,-24.5 parent: 2 - uid: 1988 components: - type: Transform - pos: -54.5,8.5 + pos: -68.5,-24.5 parent: 2 - uid: 1989 components: - type: Transform - pos: -53.5,8.5 + pos: -59.5,-26.5 parent: 2 - uid: 1990 components: - type: Transform - pos: -52.5,8.5 + pos: -64.5,-24.5 parent: 2 - uid: 1991 components: - type: Transform - pos: -51.5,8.5 + pos: -65.5,-24.5 parent: 2 - uid: 1992 components: - type: Transform - pos: -50.5,8.5 + pos: -61.5,-23.5 parent: 2 - uid: 1993 components: - type: Transform - pos: -65.5,8.5 + pos: -65.5,-26.5 parent: 2 - uid: 1994 components: - type: Transform - pos: -64.5,8.5 + pos: -64.5,-26.5 parent: 2 - uid: 1995 components: - type: Transform - pos: -63.5,8.5 + pos: -62.5,-26.5 parent: 2 - uid: 1996 components: - type: Transform - pos: -62.5,8.5 + pos: -63.5,-26.5 parent: 2 - uid: 1997 components: - type: Transform - pos: -61.5,8.5 + pos: -61.5,-25.5 parent: 2 - uid: 1998 components: - type: Transform - pos: -60.5,8.5 + pos: -56.5,-23.5 parent: 2 - uid: 1999 components: - type: Transform - pos: -59.5,8.5 + pos: -61.5,-24.5 parent: 2 - uid: 2000 components: - type: Transform - pos: -58.5,8.5 + pos: -52.5,-22.5 parent: 2 - uid: 2001 components: - type: Transform - pos: -57.5,8.5 + pos: -52.5,-24.5 parent: 2 - uid: 2002 components: - type: Transform - pos: -56.5,8.5 + pos: -52.5,-24.5 parent: 2 - uid: 2003 components: - type: Transform - pos: -58.5,6.5 + pos: -52.5,-23.5 parent: 2 - uid: 2004 components: - type: Transform - pos: -58.5,7.5 + pos: -48.5,-17.5 parent: 2 - uid: 2005 components: - type: Transform - pos: -50.5,5.5 + pos: -47.5,-17.5 parent: 2 - uid: 2006 components: - type: Transform - pos: -50.5,6.5 + pos: -46.5,-17.5 parent: 2 - uid: 2007 components: - type: Transform - pos: -50.5,0.5 + pos: -45.5,-17.5 parent: 2 - uid: 2008 components: - type: Transform - pos: -50.5,4.5 + pos: -48.5,-18.5 parent: 2 - uid: 2009 components: - type: Transform - pos: -48.5,3.5 + pos: -45.5,-16.5 parent: 2 - uid: 2010 components: - type: Transform - pos: -50.5,3.5 + pos: -45.5,-15.5 parent: 2 - uid: 2011 components: - type: Transform - pos: -50.5,-1.5 + pos: -45.5,-14.5 parent: 2 - uid: 2012 components: - type: Transform - pos: -45.5,-19.5 + pos: -44.5,-17.5 parent: 2 - uid: 2013 components: - type: Transform - pos: -50.5,-2.5 + pos: -43.5,-17.5 parent: 2 - uid: 2014 components: - type: Transform - pos: -50.5,2.5 + pos: -42.5,-17.5 parent: 2 - uid: 2015 components: - type: Transform - pos: -50.5,-0.5 + pos: -41.5,-17.5 parent: 2 - uid: 2016 components: - type: Transform - pos: -45.5,2.5 + pos: -41.5,-16.5 parent: 2 - uid: 2017 components: - type: Transform - pos: -44.5,3.5 + pos: -42.5,-18.5 parent: 2 - uid: 2018 components: - type: Transform - pos: -50.5,1.5 + pos: -45.5,-18.5 parent: 2 - uid: 2019 components: - type: Transform - pos: -45.5,1.5 + pos: -41.5,-15.5 parent: 2 - uid: 2020 components: - type: Transform - pos: -46.5,3.5 + pos: -42.5,-15.5 parent: 2 - uid: 2021 components: - type: Transform - pos: -47.5,3.5 + pos: -40.5,-16.5 parent: 2 - uid: 2022 components: - type: Transform - pos: -49.5,3.5 + pos: -39.5,-16.5 parent: 2 - uid: 2023 components: - type: Transform - pos: -45.5,3.5 + pos: -39.5,-17.5 parent: 2 - uid: 2024 components: - type: Transform - pos: -45.5,4.5 + pos: -39.5,-18.5 parent: 2 - uid: 2025 components: - type: Transform - pos: -66.5,-23.5 + pos: -39.5,-19.5 parent: 2 - uid: 2026 components: - type: Transform - pos: -65.5,-20.5 + pos: -39.5,-20.5 parent: 2 - uid: 2027 components: - type: Transform - pos: -68.5,-21.5 + pos: -39.5,-21.5 parent: 2 - uid: 2028 components: - type: Transform - pos: -68.5,-20.5 + pos: -40.5,-21.5 parent: 2 - uid: 2029 components: - type: Transform - pos: -68.5,-19.5 + pos: -40.5,-22.5 parent: 2 - uid: 2030 components: - type: Transform - pos: -67.5,-19.5 + pos: -41.5,-22.5 parent: 2 - uid: 2031 components: - type: Transform - pos: -66.5,-19.5 + pos: -42.5,-22.5 parent: 2 - uid: 2032 components: - type: Transform - pos: -65.5,-19.5 + pos: -39.5,-15.5 parent: 2 - uid: 2033 components: - type: Transform - pos: -65.5,-18.5 + pos: -44.5,-22.5 parent: 2 - uid: 2034 components: - type: Transform - pos: -66.5,-22.5 + pos: -45.5,-22.5 parent: 2 - uid: 2035 components: - type: Transform - pos: -56.5,-22.5 + pos: -46.5,-22.5 parent: 2 - uid: 2036 components: - type: Transform - pos: -54.5,-23.5 + pos: -46.5,-21.5 parent: 2 - uid: 2037 components: - type: Transform - pos: -54.5,-22.5 + pos: -47.5,-21.5 parent: 2 - uid: 2038 components: - type: Transform - pos: -55.5,-22.5 + pos: -48.5,-21.5 parent: 2 - uid: 2039 components: - type: Transform - pos: -53.5,-22.5 + pos: -49.5,-21.5 parent: 2 - uid: 2040 components: - type: Transform - pos: -57.5,-22.5 + pos: -49.5,-20.5 parent: 2 - uid: 2041 components: - type: Transform - pos: -58.5,-22.5 + pos: -49.5,-19.5 parent: 2 - uid: 2042 components: - type: Transform - pos: -59.5,-22.5 + pos: -49.5,-18.5 parent: 2 - uid: 2043 components: - type: Transform - pos: -60.5,-22.5 + pos: -50.5,-18.5 parent: 2 - uid: 2044 components: - type: Transform - pos: -61.5,-22.5 + pos: -51.5,-18.5 parent: 2 - uid: 2045 components: - type: Transform - pos: -62.5,-22.5 + pos: -52.5,-18.5 parent: 2 - uid: 2046 components: - type: Transform - pos: -63.5,-22.5 + pos: -53.5,-18.5 parent: 2 - uid: 2047 components: - type: Transform - pos: -64.5,-22.5 + pos: -54.5,-18.5 parent: 2 - uid: 2048 components: - type: Transform - pos: -65.5,-22.5 + pos: -55.5,-18.5 parent: 2 - uid: 2049 components: - type: Transform - pos: -66.5,-24.5 + pos: -56.5,-18.5 parent: 2 - uid: 2050 components: - type: Transform - pos: -67.5,-24.5 + pos: -57.5,-18.5 parent: 2 - uid: 2051 components: - type: Transform - pos: -68.5,-24.5 + pos: -57.5,-19.5 parent: 2 - uid: 2052 components: - type: Transform - pos: -65.5,-24.5 + pos: -36.5,-6.5 parent: 2 - uid: 2053 components: - type: Transform - pos: -62.5,-24.5 + pos: -46.5,1.5 parent: 2 - uid: 2054 components: - type: Transform - pos: -61.5,-24.5 + pos: -45.5,5.5 parent: 2 - uid: 2055 components: - type: Transform - pos: -61.5,-23.5 + pos: -46.5,5.5 parent: 2 - uid: 2056 components: - type: Transform - pos: -60.5,-24.5 + pos: -43.5,3.5 parent: 2 - uid: 2057 components: - type: Transform - pos: -59.5,-24.5 + pos: -43.5,2.5 parent: 2 - uid: 2058 components: - type: Transform - pos: -58.5,-25.5 + pos: -43.5,4.5 parent: 2 - uid: 2059 components: - type: Transform - pos: -58.5,-24.5 + pos: -47.5,-8.5 parent: 2 - uid: 2060 components: - type: Transform - pos: -57.5,-24.5 + pos: -47.5,-7.5 parent: 2 - uid: 2061 components: - type: Transform - pos: -56.5,-24.5 + pos: -47.5,-6.5 parent: 2 - uid: 2062 components: - type: Transform - pos: -56.5,-23.5 + pos: -47.5,-5.5 parent: 2 - uid: 2063 components: - type: Transform - pos: -55.5,-24.5 + pos: -47.5,-4.5 parent: 2 - uid: 2064 components: - type: Transform - pos: -52.5,-22.5 + pos: -46.5,-6.5 parent: 2 - uid: 2065 components: - type: Transform - pos: -52.5,-24.5 + pos: -45.5,-6.5 parent: 2 - uid: 2066 components: - type: Transform - pos: -52.5,-24.5 + pos: -44.5,-6.5 parent: 2 - uid: 2067 components: - type: Transform - pos: -52.5,-23.5 + pos: -43.5,-6.5 parent: 2 - uid: 2068 components: - type: Transform - pos: -48.5,-17.5 + pos: -42.5,-6.5 parent: 2 - uid: 2069 components: - type: Transform - pos: -47.5,-17.5 + pos: -42.5,-7.5 parent: 2 - uid: 2070 components: - type: Transform - pos: -46.5,-17.5 + pos: -42.5,-8.5 parent: 2 - uid: 2071 components: - type: Transform - pos: -45.5,-17.5 + pos: -42.5,-9.5 parent: 2 - uid: 2072 components: - type: Transform - pos: -48.5,-18.5 + pos: -42.5,-10.5 parent: 2 - uid: 2073 components: - type: Transform - pos: -45.5,-16.5 + pos: -41.5,-10.5 parent: 2 - uid: 2074 components: - type: Transform - pos: -45.5,-15.5 + pos: -40.5,-10.5 parent: 2 - uid: 2075 components: - type: Transform - pos: -45.5,-14.5 + pos: -39.5,-10.5 parent: 2 - uid: 2076 components: - type: Transform - pos: -44.5,-17.5 + pos: -38.5,-10.5 parent: 2 - uid: 2077 components: - type: Transform - pos: -43.5,-17.5 + pos: -37.5,-10.5 parent: 2 - uid: 2078 components: - type: Transform - pos: -42.5,-17.5 + pos: -36.5,-10.5 parent: 2 - uid: 2079 components: - type: Transform - pos: -41.5,-17.5 + pos: -36.5,-9.5 parent: 2 - uid: 2080 components: - type: Transform - pos: -41.5,-16.5 + pos: -36.5,-8.5 parent: 2 - uid: 2081 components: - type: Transform - pos: -42.5,-18.5 + pos: -36.5,-7.5 parent: 2 - uid: 2082 components: - type: Transform - pos: -45.5,-18.5 + pos: -43.5,-1.5 parent: 2 - uid: 2083 components: - type: Transform - pos: -41.5,-15.5 + pos: -44.5,-1.5 parent: 2 - uid: 2084 components: - type: Transform - pos: -42.5,-15.5 + pos: -45.5,-1.5 parent: 2 - uid: 2085 components: - type: Transform - pos: -40.5,-16.5 + pos: -36.5,-5.5 parent: 2 - uid: 2086 components: - type: Transform - pos: -39.5,-16.5 + pos: -42.5,-4.5 parent: 2 - uid: 2087 components: - type: Transform - pos: -39.5,-17.5 + pos: -42.5,-5.5 parent: 2 - uid: 2088 components: - type: Transform - pos: -39.5,-18.5 + pos: -42.5,-3.5 parent: 2 - uid: 2089 components: - type: Transform - pos: -39.5,-19.5 + pos: -42.5,-2.5 parent: 2 - uid: 2090 components: - type: Transform - pos: -39.5,-20.5 + pos: -42.5,-1.5 parent: 2 - uid: 2091 components: - type: Transform - pos: -39.5,-21.5 + pos: -46.5,-1.5 parent: 2 - uid: 2092 components: - type: Transform - pos: -40.5,-21.5 + pos: -47.5,-1.5 parent: 2 - uid: 2093 components: - type: Transform - pos: -40.5,-22.5 + pos: -48.5,-1.5 parent: 2 - uid: 2094 components: - type: Transform - pos: -41.5,-22.5 + pos: -70.5,-13.5 parent: 2 - uid: 2095 components: - type: Transform - pos: -42.5,-22.5 + pos: -70.5,-14.5 parent: 2 - uid: 2096 components: - type: Transform - pos: -39.5,-15.5 + pos: -70.5,-15.5 parent: 2 - uid: 2097 components: - type: Transform - pos: -44.5,-22.5 + pos: -69.5,-15.5 parent: 2 - uid: 2098 components: - type: Transform - pos: -45.5,-22.5 + pos: -68.5,-15.5 parent: 2 - uid: 2099 components: - type: Transform - pos: -46.5,-22.5 + pos: -67.5,-15.5 parent: 2 - uid: 2100 components: - type: Transform - pos: -46.5,-21.5 + pos: -66.5,-15.5 parent: 2 - uid: 2101 components: - type: Transform - pos: -47.5,-21.5 + pos: -65.5,-15.5 parent: 2 - uid: 2102 components: - type: Transform - pos: -48.5,-21.5 + pos: -64.5,-15.5 parent: 2 - uid: 2103 components: - type: Transform - pos: -49.5,-21.5 + pos: -63.5,-15.5 parent: 2 - uid: 2104 components: - type: Transform - pos: -49.5,-20.5 + pos: -62.5,-15.5 parent: 2 - uid: 2105 components: - type: Transform - pos: -49.5,-19.5 + pos: -61.5,-15.5 parent: 2 - uid: 2106 components: - type: Transform - pos: -49.5,-18.5 + pos: -60.5,-15.5 parent: 2 - uid: 2107 components: - type: Transform - pos: -50.5,-18.5 + pos: -59.5,-15.5 parent: 2 - uid: 2108 components: - type: Transform - pos: -51.5,-18.5 + pos: -58.5,-15.5 parent: 2 - uid: 2109 components: - type: Transform - pos: -52.5,-18.5 + pos: -57.5,-15.5 parent: 2 - uid: 2110 components: - type: Transform - pos: -53.5,-18.5 + pos: -56.5,-15.5 parent: 2 - uid: 2111 components: - type: Transform - pos: -54.5,-18.5 + pos: -55.5,-15.5 parent: 2 - uid: 2112 components: - type: Transform - pos: -55.5,-18.5 + pos: -54.5,-15.5 parent: 2 - uid: 2113 components: - type: Transform - pos: -56.5,-18.5 + pos: -11.5,-15.5 parent: 2 - uid: 2114 components: - type: Transform - pos: -57.5,-18.5 + pos: -10.5,-15.5 parent: 2 - uid: 2115 components: - type: Transform - pos: -57.5,-19.5 + pos: -9.5,-15.5 parent: 2 - uid: 2116 components: - type: Transform - pos: -36.5,-6.5 + pos: -8.5,-15.5 parent: 2 - uid: 2117 components: - type: Transform - pos: -46.5,1.5 + pos: -46.5,-19.5 parent: 2 - uid: 2118 components: - type: Transform - pos: -45.5,5.5 + pos: -111.5,7.5 parent: 2 - uid: 2119 components: - type: Transform - pos: -46.5,5.5 + pos: -120.5,7.5 parent: 2 - uid: 2120 components: - type: Transform - pos: -43.5,3.5 + pos: -115.5,7.5 parent: 2 - uid: 2121 components: - type: Transform - pos: -43.5,2.5 + pos: -119.5,7.5 parent: 2 - uid: 2122 components: - type: Transform - pos: -43.5,4.5 + pos: -123.5,9.5 parent: 2 - uid: 2123 components: - type: Transform - pos: -47.5,-8.5 + pos: -12.5,-13.5 parent: 2 - uid: 2124 components: - type: Transform - pos: -47.5,-7.5 + pos: -13.5,-13.5 parent: 2 - uid: 2125 components: - type: Transform - pos: -47.5,-6.5 + pos: -14.5,-13.5 parent: 2 - uid: 2126 components: - type: Transform - pos: -47.5,-5.5 + pos: -15.5,-13.5 parent: 2 - uid: 2127 components: - type: Transform - pos: -47.5,-4.5 + pos: -16.5,-13.5 parent: 2 - uid: 2128 components: - type: Transform - pos: -46.5,-6.5 + pos: -14.5,-14.5 parent: 2 - uid: 2129 components: - type: Transform - pos: -45.5,-6.5 + pos: -14.5,-15.5 parent: 2 - uid: 2130 components: - type: Transform - pos: -44.5,-6.5 + pos: -14.5,-12.5 parent: 2 - uid: 2131 components: - type: Transform - pos: -43.5,-6.5 + pos: -14.5,-11.5 parent: 2 - uid: 2132 components: - type: Transform - pos: -42.5,-6.5 + pos: -13.5,-15.5 parent: 2 - uid: 2133 components: - type: Transform - pos: -42.5,-7.5 + pos: -15.5,-15.5 parent: 2 - uid: 2134 components: - type: Transform - pos: -42.5,-8.5 + pos: -15.5,-11.5 parent: 2 - uid: 2135 components: - type: Transform - pos: -42.5,-9.5 + pos: -13.5,-11.5 parent: 2 - uid: 2136 components: - type: Transform - pos: -42.5,-10.5 + pos: -36.5,-11.5 parent: 2 - uid: 2137 components: - type: Transform - pos: -41.5,-10.5 + pos: -36.5,-12.5 parent: 2 - uid: 2138 components: - type: Transform - pos: -40.5,-10.5 + pos: -28.5,-10.5 parent: 2 - uid: 2139 components: - type: Transform - pos: -39.5,-10.5 + pos: -27.5,-10.5 parent: 2 - uid: 2140 components: - type: Transform - pos: -38.5,-10.5 + pos: -26.5,-10.5 parent: 2 - uid: 2141 components: - type: Transform - pos: -37.5,-10.5 + pos: -26.5,-9.5 parent: 2 - uid: 2142 components: - type: Transform - pos: -36.5,-10.5 + pos: -26.5,-8.5 parent: 2 - uid: 2143 components: - type: Transform - pos: -36.5,-9.5 + pos: -25.5,-8.5 parent: 2 - uid: 2144 components: - type: Transform - pos: -36.5,-8.5 + pos: -24.5,-8.5 parent: 2 - uid: 2145 components: - type: Transform - pos: -36.5,-7.5 + pos: -23.5,-8.5 parent: 2 - uid: 2146 components: - type: Transform - pos: -43.5,-1.5 + pos: -22.5,-8.5 parent: 2 - uid: 2147 components: - type: Transform - pos: -44.5,-1.5 + pos: -21.5,-8.5 parent: 2 - uid: 2148 components: - type: Transform - pos: -45.5,-1.5 + pos: -20.5,-8.5 parent: 2 - uid: 2149 components: - type: Transform - pos: -36.5,-5.5 + pos: -19.5,-8.5 parent: 2 - uid: 2150 components: - type: Transform - pos: -42.5,-4.5 + pos: -18.5,-8.5 parent: 2 - uid: 2151 components: - type: Transform - pos: -42.5,-5.5 + pos: -17.5,-8.5 parent: 2 - uid: 2152 components: - type: Transform - pos: -42.5,-3.5 + pos: -16.5,-8.5 parent: 2 - uid: 2153 components: - type: Transform - pos: -42.5,-2.5 + pos: -15.5,-8.5 parent: 2 - uid: 2154 components: - type: Transform - pos: -42.5,-1.5 + pos: -14.5,-8.5 parent: 2 - uid: 2155 components: - type: Transform - pos: -46.5,-1.5 + pos: -13.5,-8.5 parent: 2 - uid: 2156 components: - type: Transform - pos: -47.5,-1.5 + pos: -13.5,2.5 parent: 2 - uid: 2157 components: - type: Transform - pos: -48.5,-1.5 + pos: -13.5,3.5 parent: 2 - uid: 2158 components: - type: Transform - pos: -70.5,-13.5 + pos: -13.5,4.5 parent: 2 - uid: 2159 components: - type: Transform - pos: -70.5,-14.5 + pos: -13.5,-7.5 parent: 2 - uid: 2160 components: - type: Transform - pos: -70.5,-15.5 + pos: -13.5,-6.5 parent: 2 - uid: 2161 components: - type: Transform - pos: -69.5,-15.5 + pos: -13.5,-5.5 parent: 2 - uid: 2162 components: - type: Transform - pos: -68.5,-15.5 + pos: -13.5,-3.5 parent: 2 - uid: 2163 components: - type: Transform - pos: -67.5,-15.5 + pos: -13.5,-2.5 parent: 2 - uid: 2164 components: - type: Transform - pos: -66.5,-15.5 + pos: -13.5,-1.5 parent: 2 - uid: 2165 components: - type: Transform - pos: -65.5,-15.5 + pos: -13.5,-0.5 parent: 2 - uid: 2166 components: - type: Transform - pos: -64.5,-15.5 + pos: -13.5,0.5 parent: 2 - uid: 2167 components: - type: Transform - pos: -63.5,-15.5 + pos: -13.5,1.5 parent: 2 - uid: 2168 components: - type: Transform - pos: -62.5,-15.5 + pos: -14.5,4.5 parent: 2 - uid: 2169 components: - type: Transform - pos: -61.5,-15.5 + pos: -15.5,4.5 parent: 2 - uid: 2170 components: - type: Transform - pos: -60.5,-15.5 + pos: -16.5,4.5 parent: 2 - uid: 2171 components: - type: Transform - pos: -59.5,-15.5 + pos: -17.5,4.5 parent: 2 - uid: 2172 components: - type: Transform - pos: -58.5,-15.5 + pos: -18.5,4.5 parent: 2 - uid: 2173 components: - type: Transform - pos: -57.5,-15.5 + pos: -19.5,4.5 parent: 2 - uid: 2174 components: - type: Transform - pos: -56.5,-15.5 + pos: -20.5,4.5 parent: 2 - uid: 2175 components: - type: Transform - pos: -55.5,-15.5 + pos: -21.5,4.5 parent: 2 - uid: 2176 components: - type: Transform - pos: -54.5,-15.5 + pos: -22.5,4.5 parent: 2 - uid: 2177 components: - type: Transform - pos: -11.5,-15.5 + pos: -23.5,4.5 parent: 2 - uid: 2178 components: - type: Transform - pos: -10.5,-15.5 + pos: -24.5,4.5 parent: 2 - uid: 2179 components: - type: Transform - pos: -9.5,-15.5 + pos: -25.5,4.5 parent: 2 - uid: 2180 components: - type: Transform - pos: -8.5,-15.5 + pos: -26.5,4.5 parent: 2 - uid: 2181 components: - type: Transform - pos: -46.5,-19.5 + pos: -34.5,-4.5 parent: 2 - uid: 2182 components: - type: Transform - pos: -111.5,7.5 + pos: -33.5,-2.5 parent: 2 - uid: 2183 components: - type: Transform - pos: -120.5,7.5 + pos: -32.5,-2.5 parent: 2 - uid: 2184 components: - type: Transform - pos: -115.5,7.5 + pos: -31.5,-2.5 parent: 2 - uid: 2185 components: - type: Transform - pos: -119.5,7.5 + pos: -36.5,-3.5 parent: 2 - uid: 2186 components: - type: Transform - pos: -123.5,9.5 + pos: -30.5,-2.5 parent: 2 - uid: 2187 components: - type: Transform - pos: -12.5,-13.5 + pos: -36.5,-1.5 parent: 2 - uid: 2188 components: - type: Transform - pos: -13.5,-13.5 + pos: -36.5,-4.5 parent: 2 - uid: 2189 components: - type: Transform - pos: -14.5,-13.5 + pos: -35.5,-0.5 parent: 2 - uid: 2190 components: - type: Transform - pos: -15.5,-13.5 + pos: -36.5,-0.5 parent: 2 - uid: 2191 components: - type: Transform - pos: -16.5,-13.5 + pos: -35.5,-4.5 parent: 2 - uid: 2192 components: - type: Transform - pos: -14.5,-14.5 + pos: -34.5,-3.5 parent: 2 - uid: 2193 components: - type: Transform - pos: -14.5,-15.5 + pos: -24.5,1.5 parent: 2 - uid: 2194 components: - type: Transform - pos: -14.5,-12.5 + pos: -29.5,-2.5 parent: 2 - uid: 2195 components: - type: Transform - pos: -14.5,-11.5 + pos: -25.5,1.5 parent: 2 - uid: 2196 components: - type: Transform - pos: -13.5,-15.5 + pos: -36.5,-2.5 parent: 2 - uid: 2197 components: - type: Transform - pos: -15.5,-15.5 + pos: -36.5,0.5 parent: 2 - uid: 2198 components: - type: Transform - pos: -15.5,-11.5 + pos: -29.5,-3.5 parent: 2 - uid: 2199 components: - type: Transform - pos: -13.5,-11.5 + pos: -28.5,-3.5 parent: 2 - uid: 2200 components: - type: Transform - pos: -36.5,-11.5 + pos: -27.5,-3.5 parent: 2 - uid: 2201 components: - type: Transform - pos: -36.5,-12.5 + pos: -26.5,-3.5 parent: 2 - uid: 2202 components: - type: Transform - pos: -28.5,-10.5 + pos: -26.5,-4.5 parent: 2 - uid: 2203 components: - type: Transform - pos: -27.5,-10.5 + pos: -26.5,-5.5 parent: 2 - uid: 2204 components: - type: Transform - pos: -26.5,-10.5 + pos: -26.5,-6.5 parent: 2 - uid: 2205 components: - type: Transform - pos: -26.5,-9.5 + pos: -25.5,-1.5 parent: 2 - uid: 2206 components: - type: Transform - pos: -26.5,-8.5 + pos: -26.5,-2.5 parent: 2 - uid: 2207 components: - type: Transform - pos: -25.5,-8.5 + pos: -26.5,-1.5 parent: 2 - uid: 2208 components: - type: Transform - pos: -24.5,-8.5 + pos: -26.5,-0.5 parent: 2 - uid: 2209 components: - type: Transform - pos: -23.5,-8.5 + pos: -26.5,0.5 parent: 2 - uid: 2210 components: - type: Transform - pos: -22.5,-8.5 + pos: -26.5,1.5 parent: 2 - uid: 2211 components: - type: Transform - pos: -21.5,-8.5 + pos: -26.5,2.5 parent: 2 - uid: 2212 components: - type: Transform - pos: -20.5,-8.5 + pos: -26.5,3.5 parent: 2 - uid: 2213 components: - type: Transform - pos: -19.5,-8.5 + pos: -24.5,-1.5 parent: 2 - uid: 2214 components: - type: Transform - pos: -18.5,-8.5 + pos: -26.5,-11.5 parent: 2 - uid: 2215 components: - type: Transform - pos: -17.5,-8.5 + pos: -26.5,-12.5 parent: 2 - uid: 2216 components: - type: Transform - pos: -16.5,-8.5 + pos: -26.5,-13.5 parent: 2 - uid: 2217 components: - type: Transform - pos: -15.5,-8.5 + pos: -26.5,-14.5 parent: 2 - uid: 2218 components: - type: Transform - pos: -14.5,-8.5 + pos: -26.5,-15.5 parent: 2 - uid: 2219 components: - type: Transform - pos: -13.5,-8.5 + pos: -27.5,-15.5 parent: 2 - uid: 2220 components: - type: Transform - pos: -13.5,2.5 + pos: -28.5,-15.5 parent: 2 - uid: 2221 components: - type: Transform - pos: -13.5,3.5 + pos: -29.5,-15.5 parent: 2 - uid: 2222 components: - type: Transform - pos: -13.5,4.5 + pos: -30.5,-15.5 parent: 2 - uid: 2223 components: - type: Transform - pos: -13.5,-7.5 + pos: -31.5,-15.5 parent: 2 - uid: 2224 components: - type: Transform - pos: -13.5,-6.5 + pos: -32.5,-15.5 parent: 2 - uid: 2225 components: - type: Transform - pos: -13.5,-5.5 + pos: -33.5,-15.5 parent: 2 - uid: 2226 components: - type: Transform - pos: -13.5,-3.5 + pos: -34.5,-15.5 parent: 2 - uid: 2227 components: - type: Transform - pos: -13.5,-2.5 + pos: -35.5,-15.5 parent: 2 - uid: 2228 components: - type: Transform - pos: -13.5,-1.5 + pos: -36.5,-15.5 parent: 2 - uid: 2229 components: - type: Transform - pos: -13.5,-0.5 + pos: -37.5,-15.5 parent: 2 - uid: 2230 components: - type: Transform - pos: -13.5,0.5 + pos: -36.5,-13.5 parent: 2 - uid: 2231 components: - type: Transform - pos: -13.5,1.5 + pos: -34.5,-16.5 parent: 2 - uid: 2232 components: - type: Transform - pos: -14.5,4.5 + pos: -30.5,-16.5 parent: 2 - uid: 2233 components: - type: Transform - pos: -15.5,4.5 + pos: -26.5,-16.5 parent: 2 - uid: 2234 components: - type: Transform - pos: -16.5,4.5 + pos: -20.5,-12.5 parent: 2 - uid: 2235 components: - type: Transform - pos: -17.5,4.5 + pos: -19.5,-12.5 parent: 2 - uid: 2236 components: - type: Transform - pos: -18.5,4.5 + pos: -20.5,-13.5 parent: 2 - uid: 2237 components: - type: Transform - pos: -19.5,4.5 + pos: -20.5,-14.5 parent: 2 - uid: 2238 components: - type: Transform - pos: -20.5,4.5 + pos: -19.5,-14.5 parent: 2 - uid: 2239 components: - type: Transform - pos: -21.5,4.5 + pos: -21.5,-14.5 parent: 2 - uid: 2240 components: - type: Transform - pos: -22.5,4.5 + pos: -21.5,-12.5 parent: 2 - uid: 2241 components: - type: Transform - pos: -23.5,4.5 + pos: -22.5,-12.5 parent: 2 - uid: 2242 components: - type: Transform - pos: -24.5,4.5 + pos: -23.5,-12.5 parent: 2 - uid: 2243 components: - type: Transform - pos: -25.5,4.5 + pos: -22.5,-14.5 parent: 2 - uid: 2244 components: - type: Transform - pos: -26.5,4.5 + pos: -23.5,-14.5 parent: 2 - uid: 2245 components: - type: Transform - pos: -34.5,-4.5 + pos: -22.5,-15.5 parent: 2 - uid: 2246 components: - type: Transform - pos: -33.5,-2.5 + pos: -22.5,-11.5 parent: 2 - uid: 2247 components: - type: Transform - pos: -32.5,-2.5 + pos: -18.5,-12.5 parent: 2 - uid: 2248 components: - type: Transform - pos: -31.5,-2.5 + pos: -19.5,-11.5 parent: 2 - uid: 2249 components: - type: Transform - pos: -36.5,-3.5 + pos: -19.5,-15.5 parent: 2 - uid: 2250 components: - type: Transform - pos: -30.5,-2.5 + pos: -18.5,-14.5 parent: 2 - uid: 2251 components: - type: Transform - pos: -36.5,-1.5 + pos: -19.5,-2.5 parent: 2 - uid: 2252 components: - type: Transform - pos: -36.5,-4.5 + pos: -18.5,-2.5 parent: 2 - uid: 2253 components: - type: Transform - pos: -35.5,-0.5 + pos: -18.5,-3.5 parent: 2 - uid: 2254 components: - type: Transform - pos: -36.5,-0.5 + pos: -19.5,-3.5 parent: 2 - uid: 2255 components: - type: Transform - pos: -35.5,-4.5 + pos: -20.5,-3.5 parent: 2 - uid: 2256 components: - type: Transform - pos: -34.5,-3.5 + pos: -20.5,-4.5 parent: 2 - uid: 2257 components: - type: Transform - pos: -24.5,1.5 + pos: -17.5,-3.5 parent: 2 - uid: 2258 components: - type: Transform - pos: -29.5,-2.5 + pos: -18.5,-1.5 parent: 2 - uid: 2259 components: - type: Transform - pos: -25.5,1.5 + pos: -16.5,-4.5 parent: 2 - uid: 2260 components: - type: Transform - pos: -36.5,-2.5 + pos: -17.5,-4.5 parent: 2 - uid: 2261 components: - type: Transform - pos: -36.5,0.5 + pos: -18.5,-0.5 parent: 2 - uid: 2262 components: - type: Transform - pos: -29.5,-3.5 + pos: -19.5,-0.5 parent: 2 - uid: 2263 components: - type: Transform - pos: -28.5,-3.5 + pos: -20.5,-0.5 parent: 2 - uid: 2264 components: - type: Transform - pos: -27.5,-3.5 + pos: -17.5,-0.5 parent: 2 - uid: 2265 components: - type: Transform - pos: -26.5,-3.5 + pos: -16.5,-0.5 parent: 2 - uid: 2266 components: - type: Transform - pos: -26.5,-4.5 + pos: -16.5,-1.5 parent: 2 - uid: 2267 components: - type: Transform - pos: -26.5,-5.5 + pos: -20.5,3.5 parent: 2 - uid: 2268 components: - type: Transform - pos: -26.5,-6.5 + pos: -17.5,3.5 parent: 2 - uid: 2269 components: - type: Transform - pos: -25.5,-1.5 + pos: -13.5,5.5 parent: 2 - uid: 2270 components: - type: Transform - pos: -26.5,-2.5 + pos: -13.5,6.5 parent: 2 - uid: 2271 components: - type: Transform - pos: -26.5,-1.5 + pos: -13.5,7.5 parent: 2 - uid: 2272 components: - type: Transform - pos: -26.5,-0.5 + pos: -13.5,8.5 parent: 2 - uid: 2273 components: - type: Transform - pos: -26.5,0.5 + pos: -13.5,9.5 parent: 2 - uid: 2274 components: - type: Transform - pos: -26.5,1.5 + pos: -13.5,10.5 parent: 2 - uid: 2275 components: - type: Transform - pos: -26.5,2.5 + pos: -121.5,-15.5 parent: 2 - uid: 2276 components: - type: Transform - pos: -26.5,3.5 + pos: -121.5,-14.5 parent: 2 - uid: 2277 components: - type: Transform - pos: -24.5,-1.5 + pos: -120.5,-14.5 parent: 2 - uid: 2278 components: - type: Transform - pos: -26.5,-11.5 + pos: -99.5,-21.5 parent: 2 - uid: 2279 components: - type: Transform - pos: -26.5,-12.5 + pos: -99.5,-22.5 parent: 2 - uid: 2280 components: - type: Transform - pos: -26.5,-13.5 + pos: -99.5,-23.5 parent: 2 - uid: 2281 components: - type: Transform - pos: -26.5,-14.5 + pos: -41.5,9.5 parent: 2 - uid: 2282 components: - type: Transform - pos: -26.5,-15.5 + pos: -41.5,8.5 parent: 2 - uid: 2283 components: - type: Transform - pos: -27.5,-15.5 + pos: -42.5,8.5 parent: 2 - uid: 2284 components: - type: Transform - pos: -28.5,-15.5 + pos: -43.5,8.5 parent: 2 - uid: 2285 components: - type: Transform - pos: -29.5,-15.5 + pos: -40.5,8.5 parent: 2 - uid: 2286 components: - type: Transform - pos: -30.5,-15.5 + pos: -39.5,8.5 parent: 2 - uid: 2287 components: - type: Transform - pos: -31.5,-15.5 + pos: -38.5,8.5 parent: 2 - uid: 2288 components: - type: Transform - pos: -32.5,-15.5 + pos: -37.5,8.5 parent: 2 - uid: 2289 components: - type: Transform - pos: -33.5,-15.5 + pos: -39.5,7.5 parent: 2 - uid: 2290 components: - type: Transform - pos: -34.5,-15.5 + pos: -39.5,6.5 parent: 2 - uid: 2291 components: - type: Transform - pos: -35.5,-15.5 + pos: -39.5,5.5 parent: 2 - uid: 2292 components: - type: Transform - pos: -36.5,-15.5 + pos: -39.5,4.5 parent: 2 - uid: 2293 components: - type: Transform - pos: -37.5,-15.5 + pos: -39.5,3.5 parent: 2 - uid: 2294 components: - type: Transform - pos: -36.5,-13.5 + pos: -39.5,2.5 parent: 2 - uid: 2295 components: - type: Transform - pos: -34.5,-16.5 + pos: -39.5,1.5 parent: 2 - uid: 2296 components: - type: Transform - pos: -30.5,-16.5 + pos: -38.5,4.5 parent: 2 - uid: 2297 components: - type: Transform - pos: -26.5,-16.5 + pos: -37.5,4.5 parent: 2 - uid: 2298 components: - type: Transform - pos: -20.5,-12.5 + pos: -36.5,4.5 parent: 2 - uid: 2299 components: - type: Transform - pos: -19.5,-12.5 + pos: -35.5,4.5 parent: 2 - uid: 2300 components: - type: Transform - pos: -20.5,-13.5 + pos: -34.5,4.5 parent: 2 - uid: 2301 components: - type: Transform - pos: -20.5,-14.5 + pos: -34.5,5.5 parent: 2 - uid: 2302 components: - type: Transform - pos: -19.5,-14.5 + pos: -34.5,6.5 parent: 2 - uid: 2303 components: - type: Transform - pos: -21.5,-14.5 + pos: -34.5,7.5 parent: 2 - uid: 2304 components: - type: Transform - pos: -21.5,-12.5 + pos: -34.5,8.5 parent: 2 - uid: 2305 components: - type: Transform - pos: -22.5,-12.5 + pos: -34.5,9.5 parent: 2 - uid: 2306 components: - type: Transform - pos: -23.5,-12.5 + pos: -33.5,8.5 parent: 2 - uid: 2307 components: - type: Transform - pos: -22.5,-14.5 + pos: -33.5,5.5 parent: 2 - uid: 2308 components: - type: Transform - pos: -23.5,-14.5 + pos: -34.5,3.5 parent: 2 - uid: 2309 components: - type: Transform - pos: -22.5,-15.5 + pos: -34.5,2.5 parent: 2 - uid: 2310 components: - type: Transform - pos: -22.5,-11.5 + pos: -34.5,1.5 parent: 2 - uid: 2311 components: - type: Transform - pos: -18.5,-12.5 + pos: -33.5,2.5 parent: 2 - uid: 2312 components: - type: Transform - pos: -19.5,-11.5 + pos: -40.5,4.5 parent: 2 - uid: 2313 components: - type: Transform - pos: -19.5,-15.5 + pos: -40.5,1.5 parent: 2 - uid: 2314 components: - type: Transform - pos: -18.5,-14.5 + pos: -38.5,1.5 parent: 2 - uid: 2315 components: - type: Transform - pos: -19.5,-2.5 + pos: -37.5,1.5 parent: 2 - uid: 2316 components: - type: Transform - pos: -18.5,-2.5 + pos: -36.5,1.5 parent: 2 - uid: 2317 components: - type: Transform - pos: -18.5,-3.5 + pos: -37.5,2.5 parent: 2 - uid: 2318 components: - type: Transform - pos: -19.5,-3.5 + pos: -38.5,9.5 parent: 2 - uid: 2319 components: - type: Transform - pos: -20.5,-3.5 + pos: -38.5,10.5 parent: 2 - uid: 2320 components: - type: Transform - pos: -20.5,-4.5 + pos: -39.5,10.5 parent: 2 - uid: 2321 components: - type: Transform - pos: -17.5,-3.5 + pos: -43.5,9.5 parent: 2 - uid: 2322 components: - type: Transform - pos: -18.5,-1.5 + pos: -43.5,10.5 parent: 2 - uid: 2323 components: - type: Transform - pos: -16.5,-4.5 + pos: -43.5,11.5 parent: 2 - uid: 2324 components: - type: Transform - pos: -17.5,-4.5 + pos: -43.5,12.5 parent: 2 - uid: 2325 components: - type: Transform - pos: -18.5,-0.5 + pos: -44.5,12.5 parent: 2 - uid: 2326 components: - type: Transform - pos: -19.5,-0.5 + pos: -45.5,12.5 parent: 2 - uid: 2327 components: - type: Transform - pos: -20.5,-0.5 + pos: -46.5,12.5 parent: 2 - uid: 2328 components: - type: Transform - pos: -17.5,-0.5 + pos: -46.5,11.5 parent: 2 - uid: 2329 components: - type: Transform - pos: -16.5,-0.5 + pos: -47.5,11.5 parent: 2 - uid: 2330 components: - type: Transform - pos: -16.5,-1.5 + pos: -48.5,11.5 parent: 2 - uid: 2331 components: - type: Transform - pos: -20.5,3.5 + pos: -49.5,11.5 parent: 2 - uid: 2332 components: - type: Transform - pos: -17.5,3.5 + pos: -50.5,11.5 parent: 2 - uid: 2333 components: - type: Transform - pos: -13.5,5.5 + pos: -51.5,11.5 parent: 2 - uid: 2334 components: - type: Transform - pos: -13.5,6.5 + pos: -52.5,11.5 parent: 2 - uid: 2335 components: - type: Transform - pos: -13.5,7.5 + pos: -53.5,11.5 parent: 2 - uid: 2336 components: - type: Transform - pos: -13.5,8.5 + pos: -54.5,11.5 parent: 2 - uid: 2337 components: - type: Transform - pos: -13.5,9.5 + pos: -55.5,11.5 parent: 2 - uid: 2338 components: - type: Transform - pos: -13.5,10.5 + pos: -48.5,12.5 parent: 2 - uid: 2339 components: - type: Transform - pos: -121.5,-15.5 + pos: -48.5,13.5 parent: 2 - uid: 2340 components: - type: Transform - pos: -121.5,-14.5 + pos: -48.5,14.5 parent: 2 - uid: 2341 components: - type: Transform - pos: -120.5,-14.5 + pos: -48.5,15.5 parent: 2 - uid: 2342 components: - type: Transform - pos: -99.5,-21.5 + pos: -48.5,16.5 parent: 2 - uid: 2343 components: - type: Transform - pos: -99.5,-22.5 + pos: -48.5,17.5 parent: 2 - uid: 2344 components: - type: Transform - pos: -99.5,-23.5 + pos: -49.5,16.5 parent: 2 - uid: 2345 components: - type: Transform - pos: -41.5,9.5 + pos: -50.5,16.5 parent: 2 - uid: 2346 components: - type: Transform - pos: -41.5,8.5 + pos: -51.5,16.5 parent: 2 - uid: 2347 components: - type: Transform - pos: -42.5,8.5 + pos: -51.5,15.5 parent: 2 - uid: 2348 components: - type: Transform - pos: -43.5,8.5 + pos: -52.5,15.5 parent: 2 - uid: 2349 components: - type: Transform - pos: -40.5,8.5 + pos: -52.5,14.5 parent: 2 - uid: 2350 components: - type: Transform - pos: -39.5,8.5 + pos: -47.5,15.5 parent: 2 - uid: 2351 components: - type: Transform - pos: -38.5,8.5 + pos: -43.5,13.5 parent: 2 - uid: 2352 components: - type: Transform - pos: -37.5,8.5 + pos: -43.5,14.5 parent: 2 - uid: 2353 components: - type: Transform - pos: -39.5,7.5 + pos: -43.5,15.5 parent: 2 - uid: 2354 components: - type: Transform - pos: -39.5,6.5 + pos: -43.5,16.5 parent: 2 - uid: 2355 components: - type: Transform - pos: -39.5,5.5 + pos: -42.5,16.5 parent: 2 - uid: 2356 components: - type: Transform - pos: -39.5,4.5 + pos: -42.5,12.5 parent: 2 - uid: 2357 components: - type: Transform - pos: -39.5,3.5 + pos: -41.5,12.5 parent: 2 - uid: 2358 components: - type: Transform - pos: -39.5,2.5 + pos: -40.5,12.5 parent: 2 - uid: 2359 components: - type: Transform - pos: -39.5,1.5 + pos: -39.5,12.5 parent: 2 - uid: 2360 components: - type: Transform - pos: -38.5,4.5 + pos: -39.5,13.5 parent: 2 - uid: 2361 components: - type: Transform - pos: -37.5,4.5 + pos: -39.5,14.5 parent: 2 - uid: 2362 components: - type: Transform - pos: -36.5,4.5 + pos: -39.5,15.5 parent: 2 - uid: 2363 components: - type: Transform - pos: -35.5,4.5 + pos: -39.5,16.5 parent: 2 - uid: 2364 components: - type: Transform - pos: -34.5,4.5 + pos: -38.5,16.5 parent: 2 - uid: 2365 components: - type: Transform - pos: -34.5,5.5 + pos: -37.5,16.5 parent: 2 - uid: 2366 components: - type: Transform - pos: -34.5,6.5 + pos: -36.5,16.5 parent: 2 - uid: 2367 components: - type: Transform - pos: -34.5,7.5 + pos: -38.5,14.5 parent: 2 - uid: 2368 components: - type: Transform - pos: -34.5,8.5 + pos: -37.5,14.5 parent: 2 - uid: 2369 components: - type: Transform - pos: -34.5,9.5 + pos: -36.5,14.5 parent: 2 - uid: 2370 components: - type: Transform - pos: -33.5,8.5 + pos: -36.5,13.5 parent: 2 - uid: 2371 components: - type: Transform - pos: -33.5,5.5 + pos: -35.5,12.5 parent: 2 - uid: 2372 components: - type: Transform - pos: -34.5,3.5 + pos: -35.5,13.5 parent: 2 - uid: 2373 components: - type: Transform - pos: -34.5,2.5 + pos: -25.5,11.5 parent: 2 - uid: 2374 components: - type: Transform - pos: -34.5,1.5 + pos: -24.5,11.5 parent: 2 - uid: 2375 components: - type: Transform - pos: -33.5,2.5 + pos: -35.5,11.5 parent: 2 - uid: 2376 components: - type: Transform - pos: -40.5,4.5 + pos: -34.5,11.5 parent: 2 - uid: 2377 components: - type: Transform - pos: -40.5,1.5 + pos: -33.5,11.5 parent: 2 - uid: 2378 components: - type: Transform - pos: -38.5,1.5 + pos: -32.5,11.5 parent: 2 - uid: 2379 components: - type: Transform - pos: -37.5,1.5 + pos: -31.5,11.5 parent: 2 - uid: 2380 components: - type: Transform - pos: -36.5,1.5 + pos: -30.5,11.5 parent: 2 - uid: 2381 components: - type: Transform - pos: -37.5,2.5 + pos: -29.5,11.5 parent: 2 - uid: 2382 components: - type: Transform - pos: -38.5,9.5 + pos: -28.5,11.5 parent: 2 - uid: 2383 components: - type: Transform - pos: -38.5,10.5 + pos: -27.5,11.5 parent: 2 - uid: 2384 components: - type: Transform - pos: -39.5,10.5 + pos: -26.5,11.5 parent: 2 - uid: 2385 components: - type: Transform - pos: -43.5,9.5 + pos: -24.5,10.5 parent: 2 - uid: 2386 components: - type: Transform - pos: -43.5,10.5 + pos: -24.5,9.5 parent: 2 - uid: 2387 components: - type: Transform - pos: -43.5,11.5 + pos: -24.5,8.5 parent: 2 - uid: 2388 components: - type: Transform - pos: -43.5,12.5 + pos: -24.5,7.5 parent: 2 - uid: 2389 components: - type: Transform - pos: -44.5,12.5 + pos: -26.5,8.5 parent: 2 - uid: 2390 components: - type: Transform - pos: -45.5,12.5 + pos: -27.5,8.5 parent: 2 - uid: 2391 components: - type: Transform - pos: -46.5,12.5 + pos: -29.5,8.5 parent: 2 - uid: 2392 components: - type: Transform - pos: -46.5,11.5 + pos: -28.5,8.5 parent: 2 - uid: 2393 components: - type: Transform - pos: -47.5,11.5 + pos: -29.5,7.5 parent: 2 - uid: 2394 components: - type: Transform - pos: -48.5,11.5 + pos: -29.5,9.5 parent: 2 - uid: 2395 components: - type: Transform - pos: -49.5,11.5 + pos: -46.5,10.5 parent: 2 - uid: 2396 components: - type: Transform - pos: -50.5,11.5 + pos: -46.5,9.5 parent: 2 - uid: 2397 components: - type: Transform - pos: -51.5,11.5 + pos: -46.5,8.5 parent: 2 - uid: 2398 components: - type: Transform - pos: -52.5,11.5 + pos: -48.5,-8.5 parent: 2 - uid: 2399 components: - type: Transform - pos: -53.5,11.5 + pos: -49.5,-8.5 parent: 2 - uid: 2400 components: - type: Transform - pos: -54.5,11.5 + pos: -50.5,-8.5 parent: 2 - uid: 2401 components: - type: Transform - pos: -55.5,11.5 + pos: -50.5,-9.5 parent: 2 - uid: 2402 components: - type: Transform - pos: -48.5,12.5 + pos: -50.5,-10.5 parent: 2 - uid: 2403 components: - type: Transform - pos: -48.5,13.5 + pos: -50.5,-11.5 parent: 2 - uid: 2404 components: - type: Transform - pos: -48.5,14.5 + pos: -50.5,-12.5 parent: 2 - uid: 2405 components: - type: Transform - pos: -48.5,15.5 + pos: -50.5,-13.5 parent: 2 - uid: 2406 components: - type: Transform - pos: -48.5,16.5 + pos: -50.5,-14.5 parent: 2 - uid: 2407 components: - type: Transform - pos: -48.5,17.5 + pos: -50.5,-15.5 parent: 2 - uid: 2408 components: - type: Transform - pos: -49.5,16.5 + pos: -51.5,-15.5 parent: 2 - uid: 2409 components: - type: Transform - pos: -50.5,16.5 + pos: -52.5,-15.5 parent: 2 - uid: 2410 components: - type: Transform - pos: -51.5,16.5 + pos: -49.5,-10.5 parent: 2 - uid: 2411 components: - type: Transform - pos: -51.5,15.5 + pos: -48.5,-10.5 parent: 2 - uid: 2412 components: - type: Transform - pos: -52.5,15.5 + pos: -47.5,-10.5 parent: 2 - uid: 2413 components: - type: Transform - pos: -52.5,14.5 + pos: -46.5,-10.5 parent: 2 - uid: 2414 components: - type: Transform - pos: -47.5,15.5 + pos: -45.5,-10.5 parent: 2 - uid: 2415 components: - type: Transform - pos: -43.5,13.5 + pos: -44.5,-10.5 parent: 2 - uid: 2416 components: - type: Transform - pos: -43.5,14.5 + pos: -45.5,-11.5 parent: 2 - uid: 2417 components: - type: Transform - pos: -43.5,15.5 + pos: -41.5,-11.5 parent: 2 - uid: 2418 components: - type: Transform - pos: -43.5,16.5 + pos: -39.5,-9.5 parent: 2 - uid: 2419 components: - type: Transform - pos: -42.5,16.5 + pos: -50.5,-7.5 parent: 2 - uid: 2420 components: - type: Transform - pos: -42.5,12.5 + pos: -50.5,-6.5 parent: 2 - uid: 2421 components: - type: Transform - pos: -41.5,12.5 + pos: -50.5,-5.5 parent: 2 - uid: 2422 components: - type: Transform - pos: -40.5,12.5 + pos: -50.5,-4.5 parent: 2 - uid: 2423 components: - type: Transform - pos: -39.5,12.5 + pos: -54.5,0.5 parent: 2 - uid: 2424 components: - type: Transform - pos: -39.5,13.5 + pos: -52.5,-3.5 parent: 2 - uid: 2425 components: - type: Transform - pos: -39.5,14.5 + pos: -53.5,-3.5 parent: 2 - uid: 2426 components: - type: Transform - pos: -39.5,15.5 + pos: -54.5,-3.5 parent: 2 - uid: 2427 components: - type: Transform - pos: -39.5,16.5 + pos: -54.5,-4.5 parent: 2 - uid: 2428 components: - type: Transform - pos: -38.5,16.5 + pos: -54.5,-5.5 parent: 2 - uid: 2429 components: - type: Transform - pos: -37.5,16.5 + pos: -54.5,-6.5 parent: 2 - uid: 2430 components: - type: Transform - pos: -36.5,16.5 + pos: -54.5,-2.5 parent: 2 - uid: 2431 components: - type: Transform - pos: -38.5,14.5 + pos: -54.5,-1.5 parent: 2 - uid: 2432 components: - type: Transform - pos: -37.5,14.5 + pos: -54.5,-0.5 parent: 2 - uid: 2433 components: - type: Transform - pos: -36.5,14.5 + pos: -53.5,-6.5 parent: 2 - uid: 2434 components: - type: Transform - pos: -36.5,13.5 + pos: -54.5,1.5 parent: 2 - uid: 2435 components: - type: Transform - pos: -35.5,12.5 + pos: -54.5,2.5 parent: 2 - uid: 2436 components: - type: Transform - pos: -35.5,13.5 + pos: -54.5,3.5 parent: 2 - uid: 2437 components: - type: Transform - pos: -25.5,11.5 + pos: -54.5,4.5 parent: 2 - uid: 2438 components: - type: Transform - pos: -24.5,11.5 + pos: -55.5,4.5 parent: 2 - uid: 2439 components: - type: Transform - pos: -35.5,11.5 + pos: -56.5,4.5 parent: 2 - uid: 2440 components: - type: Transform - pos: -34.5,11.5 + pos: -57.5,3.5 parent: 2 - uid: 2441 components: - type: Transform - pos: -33.5,11.5 + pos: -57.5,2.5 parent: 2 - uid: 2442 components: - type: Transform - pos: -32.5,11.5 + pos: -57.5,1.5 parent: 2 - uid: 2443 components: - type: Transform - pos: -31.5,11.5 + pos: -57.5,0.5 parent: 2 - uid: 2444 components: - type: Transform - pos: -30.5,11.5 + pos: -57.5,-0.5 parent: 2 - uid: 2445 components: - type: Transform - pos: -29.5,11.5 + pos: -57.5,-1.5 parent: 2 - uid: 2446 components: - type: Transform - pos: -28.5,11.5 + pos: -57.5,-2.5 parent: 2 - uid: 2447 components: - type: Transform - pos: -27.5,11.5 + pos: -57.5,-3.5 parent: 2 - uid: 2448 components: - type: Transform - pos: -26.5,11.5 + pos: -57.5,-4.5 parent: 2 - uid: 2449 components: - type: Transform - pos: -24.5,10.5 + pos: -57.5,-5.5 parent: 2 - uid: 2450 components: - type: Transform - pos: -24.5,9.5 + pos: -57.5,-6.5 parent: 2 - uid: 2451 components: - type: Transform - pos: -24.5,8.5 + pos: -57.5,-7.5 parent: 2 - uid: 2452 components: - type: Transform - pos: -24.5,7.5 + pos: -57.5,-8.5 parent: 2 - uid: 2453 components: - type: Transform - pos: -26.5,8.5 + pos: -57.5,-9.5 parent: 2 - uid: 2454 components: - type: Transform - pos: -27.5,8.5 + pos: -57.5,-10.5 parent: 2 - uid: 2455 components: - type: Transform - pos: -29.5,8.5 + pos: -57.5,-11.5 parent: 2 - uid: 2456 components: - type: Transform - pos: -28.5,8.5 + pos: -57.5,-12.5 parent: 2 - uid: 2457 components: - type: Transform - pos: -29.5,7.5 + pos: -56.5,-11.5 parent: 2 - uid: 2458 components: - type: Transform - pos: -29.5,9.5 + pos: -55.5,-11.5 parent: 2 - uid: 2459 components: - type: Transform - pos: -46.5,10.5 + pos: -54.5,-11.5 parent: 2 - uid: 2460 components: - type: Transform - pos: -46.5,9.5 + pos: -58.5,-8.5 parent: 2 - uid: 2461 components: - type: Transform - pos: -46.5,8.5 + pos: -59.5,-8.5 parent: 2 - uid: 2462 components: - type: Transform - pos: -48.5,-8.5 + pos: -58.5,-3.5 parent: 2 - uid: 2463 components: - type: Transform - pos: -49.5,-8.5 + pos: -59.5,-3.5 parent: 2 - uid: 2464 components: - type: Transform - pos: -50.5,-8.5 + pos: -60.5,-3.5 parent: 2 - uid: 2465 components: - type: Transform - pos: -50.5,-9.5 + pos: -61.5,-3.5 parent: 2 - uid: 2466 components: - type: Transform - pos: -50.5,-10.5 + pos: -62.5,-3.5 parent: 2 - uid: 2467 components: - type: Transform - pos: -50.5,-11.5 + pos: -62.5,1.5 parent: 2 - uid: 2468 components: - type: Transform - pos: -50.5,-12.5 + pos: -61.5,1.5 parent: 2 - uid: 2469 components: - type: Transform - pos: -50.5,-13.5 + pos: -60.5,1.5 parent: 2 - uid: 2470 components: - type: Transform - pos: -50.5,-14.5 + pos: -60.5,2.5 parent: 2 - uid: 2471 components: - type: Transform - pos: -50.5,-15.5 + pos: -60.5,3.5 parent: 2 - uid: 2472 components: - type: Transform - pos: -51.5,-15.5 + pos: -60.5,4.5 parent: 2 - uid: 2473 components: - type: Transform - pos: -52.5,-15.5 + pos: -61.5,4.5 parent: 2 - uid: 2474 components: - type: Transform - pos: -49.5,-10.5 + pos: -59.5,3.5 parent: 2 - uid: 2475 components: - type: Transform - pos: -48.5,-10.5 + pos: -60.5,5.5 parent: 2 - uid: 2476 components: - type: Transform - pos: -47.5,-10.5 + pos: -61.5,-2.5 parent: 2 - uid: 2477 components: - type: Transform - pos: -46.5,-10.5 + pos: -61.5,-1.5 parent: 2 - uid: 2478 components: - type: Transform - pos: -45.5,-10.5 + pos: -61.5,-0.5 parent: 2 - uid: 2479 components: - type: Transform - pos: -44.5,-10.5 + pos: -59.5,-1.5 parent: 2 - uid: 2480 components: - type: Transform - pos: -45.5,-11.5 + pos: -61.5,-4.5 parent: 2 - uid: 2481 components: - type: Transform - pos: -41.5,-11.5 + pos: -61.5,-5.5 parent: 2 - uid: 2482 components: - type: Transform - pos: -39.5,-9.5 + pos: -61.5,-6.5 parent: 2 - uid: 2483 components: - type: Transform - pos: -50.5,-7.5 + pos: -61.5,-7.5 parent: 2 - uid: 2484 components: - type: Transform - pos: -50.5,-6.5 + pos: -61.5,-8.5 parent: 2 - uid: 2485 components: - type: Transform - pos: -50.5,-5.5 + pos: -61.5,-9.5 parent: 2 - uid: 2486 components: - type: Transform - pos: -50.5,-4.5 + pos: -61.5,-10.5 parent: 2 - uid: 2487 components: - type: Transform - pos: -54.5,0.5 + pos: -61.5,-11.5 parent: 2 - uid: 2488 components: - type: Transform - pos: -52.5,-3.5 + pos: -60.5,-6.5 parent: 2 - uid: 2489 components: - type: Transform - pos: -53.5,-3.5 + pos: -59.5,-6.5 parent: 2 - uid: 2490 components: - type: Transform - pos: -54.5,-3.5 + pos: -66.5,-0.5 parent: 2 - uid: 2491 components: - type: Transform - pos: -54.5,-4.5 + pos: -65.5,-0.5 parent: 2 - uid: 2492 components: - type: Transform - pos: -54.5,-5.5 + pos: -64.5,-10.5 parent: 2 - uid: 2493 components: - type: Transform - pos: -54.5,-6.5 + pos: -64.5,-11.5 parent: 2 - uid: 2494 components: - type: Transform - pos: -54.5,-2.5 + pos: -64.5,-0.5 parent: 2 - uid: 2495 components: - type: Transform - pos: -54.5,-1.5 + pos: -64.5,-1.5 parent: 2 - uid: 2496 components: - type: Transform - pos: -54.5,-0.5 + pos: -64.5,-2.5 parent: 2 - uid: 2497 components: - type: Transform - pos: -53.5,-6.5 + pos: -64.5,-3.5 parent: 2 - uid: 2498 components: - type: Transform - pos: -54.5,1.5 + pos: -64.5,-4.5 parent: 2 - uid: 2499 components: - type: Transform - pos: -54.5,2.5 + pos: -64.5,-5.5 parent: 2 - uid: 2500 components: - type: Transform - pos: -54.5,3.5 + pos: -64.5,-6.5 parent: 2 - uid: 2501 components: - type: Transform - pos: -54.5,4.5 + pos: -64.5,-7.5 parent: 2 - uid: 2502 components: - type: Transform - pos: -55.5,4.5 + pos: -64.5,-8.5 parent: 2 - uid: 2503 components: - type: Transform - pos: -56.5,4.5 + pos: -64.5,-9.5 parent: 2 - uid: 2504 components: - type: Transform - pos: -57.5,3.5 + pos: -64.5,0.5 parent: 2 - uid: 2505 components: - type: Transform - pos: -57.5,2.5 + pos: -64.5,1.5 parent: 2 - uid: 2506 components: - type: Transform - pos: -57.5,1.5 + pos: -64.5,2.5 parent: 2 - uid: 2507 components: - type: Transform - pos: -57.5,0.5 + pos: -64.5,3.5 parent: 2 - uid: 2508 components: - type: Transform - pos: -57.5,-0.5 + pos: -64.5,4.5 parent: 2 - uid: 2509 components: - type: Transform - pos: -57.5,-1.5 + pos: -65.5,4.5 parent: 2 - uid: 2510 components: - type: Transform - pos: -57.5,-2.5 + pos: -66.5,4.5 parent: 2 - uid: 2511 components: - type: Transform - pos: -57.5,-3.5 + pos: -67.5,4.5 parent: 2 - uid: 2512 components: - type: Transform - pos: -57.5,-4.5 + pos: -68.5,4.5 parent: 2 - uid: 2513 components: - type: Transform - pos: -57.5,-5.5 + pos: -69.5,4.5 parent: 2 - uid: 2514 components: - type: Transform - pos: -57.5,-6.5 + pos: -68.5,3.5 parent: 2 - uid: 2515 components: - type: Transform - pos: -57.5,-7.5 + pos: -68.5,2.5 parent: 2 - uid: 2516 components: - type: Transform - pos: -57.5,-8.5 + pos: -68.5,1.5 parent: 2 - uid: 2517 components: - type: Transform - pos: -57.5,-9.5 + pos: -65.5,-11.5 parent: 2 - uid: 2518 components: - type: Transform - pos: -57.5,-10.5 + pos: -66.5,-11.5 parent: 2 - uid: 2519 components: - type: Transform - pos: -57.5,-11.5 + pos: -67.5,-11.5 parent: 2 - uid: 2520 components: - type: Transform - pos: -57.5,-12.5 + pos: -68.5,-11.5 parent: 2 - uid: 2521 components: - type: Transform - pos: -56.5,-11.5 + pos: -68.5,-10.5 parent: 2 - uid: 2522 components: - type: Transform - pos: -55.5,-11.5 + pos: -68.5,-9.5 parent: 2 - uid: 2523 components: - type: Transform - pos: -54.5,-11.5 + pos: -68.5,-8.5 parent: 2 - uid: 2524 components: - type: Transform - pos: -58.5,-8.5 + pos: -70.5,-4.5 parent: 2 - uid: 2525 components: - type: Transform - pos: -59.5,-8.5 + pos: -71.5,-4.5 parent: 2 - uid: 2526 components: - type: Transform - pos: -58.5,-3.5 + pos: -78.5,-7.5 parent: 2 - uid: 2527 components: - type: Transform - pos: -59.5,-3.5 + pos: -72.5,0.5 parent: 2 - uid: 2528 components: - type: Transform - pos: -60.5,-3.5 + pos: -72.5,-7.5 parent: 2 - uid: 2529 components: - type: Transform - pos: -61.5,-3.5 + pos: -78.5,0.5 parent: 2 - uid: 2530 components: - type: Transform - pos: -62.5,-3.5 + pos: -76.5,-0.5 parent: 2 - uid: 2531 components: - type: Transform - pos: -62.5,1.5 + pos: -81.5,1.5 parent: 2 - uid: 2532 components: - type: Transform - pos: -61.5,1.5 + pos: -80.5,1.5 parent: 2 - uid: 2533 components: - type: Transform - pos: -60.5,1.5 + pos: -72.5,-3.5 parent: 2 - uid: 2534 components: - type: Transform - pos: -60.5,2.5 + pos: -72.5,-1.5 parent: 2 - uid: 2535 components: - type: Transform - pos: -60.5,3.5 + pos: -72.5,-0.5 parent: 2 - uid: 2536 components: - type: Transform - pos: -60.5,4.5 + pos: -54.5,-10.5 parent: 2 - uid: 2537 components: - type: Transform - pos: -61.5,4.5 + pos: -4.5,-1.5 parent: 2 - uid: 2538 components: - type: Transform - pos: -59.5,3.5 + pos: -3.5,-1.5 parent: 2 - uid: 2539 components: - type: Transform - pos: -60.5,5.5 + pos: -2.5,-1.5 parent: 2 - uid: 2540 components: - type: Transform - pos: -61.5,-2.5 + pos: -1.5,-1.5 parent: 2 - uid: 2541 components: - type: Transform - pos: -61.5,-1.5 + pos: -0.5,-1.5 parent: 2 - uid: 2542 components: - type: Transform - pos: -61.5,-0.5 + pos: 0.5,-1.5 parent: 2 - uid: 2543 components: - type: Transform - pos: -59.5,-1.5 + pos: 1.5,-1.5 parent: 2 - uid: 2544 components: - type: Transform - pos: -61.5,-4.5 + pos: 2.5,-1.5 parent: 2 - uid: 2545 components: - type: Transform - pos: -61.5,-5.5 + pos: 3.5,-1.5 parent: 2 - uid: 2546 components: - type: Transform - pos: -61.5,-6.5 + pos: 4.5,-1.5 parent: 2 - uid: 2547 components: - type: Transform - pos: -61.5,-7.5 + pos: 5.5,-1.5 parent: 2 - uid: 2548 components: - type: Transform - pos: -61.5,-8.5 + pos: 6.5,-1.5 parent: 2 - uid: 2549 components: - type: Transform - pos: -61.5,-9.5 + pos: 6.5,-2.5 parent: 2 - uid: 2550 components: - type: Transform - pos: -61.5,-10.5 + pos: 6.5,-3.5 parent: 2 - uid: 2551 components: - type: Transform - pos: -61.5,-11.5 + pos: 6.5,-4.5 parent: 2 - uid: 2552 components: - type: Transform - pos: -60.5,-6.5 + pos: 6.5,-5.5 parent: 2 - uid: 2553 components: - type: Transform - pos: -59.5,-6.5 + pos: 5.5,-5.5 parent: 2 - uid: 2554 components: - type: Transform - pos: -66.5,-0.5 + pos: 4.5,-5.5 parent: 2 - uid: 2555 components: - type: Transform - pos: -65.5,-0.5 + pos: 3.5,-5.5 parent: 2 - uid: 2556 components: - type: Transform - pos: -64.5,-10.5 + pos: 2.5,-5.5 parent: 2 - uid: 2557 components: - type: Transform - pos: -64.5,-11.5 + pos: 1.5,-5.5 parent: 2 - uid: 2558 components: - type: Transform - pos: -64.5,-0.5 + pos: 0.5,-5.5 parent: 2 - uid: 2559 components: - type: Transform - pos: -64.5,-1.5 + pos: -0.5,-5.5 parent: 2 - uid: 2560 components: - type: Transform - pos: -64.5,-2.5 + pos: -1.5,-5.5 parent: 2 - uid: 2561 components: - type: Transform - pos: -64.5,-3.5 + pos: -2.5,-5.5 parent: 2 - uid: 2562 components: - type: Transform - pos: -64.5,-4.5 + pos: -3.5,-5.5 parent: 2 - uid: 2563 components: - type: Transform - pos: -64.5,-5.5 + pos: -4.5,-5.5 parent: 2 - uid: 2564 components: - type: Transform - pos: -64.5,-6.5 + pos: -1.5,-0.5 parent: 2 - uid: 2565 components: - type: Transform - pos: -64.5,-7.5 + pos: -4.5,-4.5 parent: 2 - uid: 2566 components: - type: Transform - pos: -64.5,-8.5 + pos: -1.5,-4.5 parent: 2 - uid: 2567 components: - type: Transform - pos: -64.5,-9.5 + pos: -1.5,-6.5 parent: 2 - uid: 2568 components: - type: Transform - pos: -64.5,0.5 + pos: -3.5,-6.5 parent: 2 - uid: 2569 components: - type: Transform - pos: -64.5,1.5 + pos: 1.5,-6.5 parent: 2 - uid: 2570 components: - type: Transform - pos: -64.5,2.5 + pos: 4.5,-6.5 parent: 2 - uid: 2571 components: - type: Transform - pos: -64.5,3.5 + pos: 4.5,-4.5 parent: 2 - uid: 2572 components: - type: Transform - pos: -64.5,4.5 + pos: 1.5,-4.5 parent: 2 - uid: 2573 components: - type: Transform - pos: -65.5,4.5 + pos: -1.5,-2.5 parent: 2 - uid: 2574 components: - type: Transform - pos: -66.5,4.5 + pos: 1.5,-2.5 parent: 2 - uid: 2575 components: - type: Transform - pos: -67.5,4.5 + pos: 4.5,-2.5 parent: 2 - uid: 2576 components: - type: Transform - pos: -68.5,4.5 + pos: 4.5,-0.5 parent: 2 - uid: 2577 components: - type: Transform - pos: -69.5,4.5 + pos: 1.5,-0.5 parent: 2 - uid: 2578 components: - type: Transform - pos: -68.5,3.5 + pos: 7.5,-3.5 parent: 2 - uid: 2579 components: - type: Transform - pos: -68.5,2.5 + pos: 6.5,-6.5 parent: 2 - uid: 2580 components: - type: Transform - pos: -68.5,1.5 + pos: 6.5,-0.5 parent: 2 - uid: 2581 components: - type: Transform - pos: -65.5,-11.5 + pos: 7.5,-0.5 parent: 2 - uid: 2582 components: - type: Transform - pos: -66.5,-11.5 + pos: 7.5,-6.5 parent: 2 - uid: 2583 components: - type: Transform - pos: -67.5,-11.5 + pos: -8.5,-8.5 parent: 2 - uid: 2584 components: - type: Transform - pos: -68.5,-11.5 + pos: -7.5,-8.5 parent: 2 - uid: 2585 components: - type: Transform - pos: -68.5,-10.5 + pos: -6.5,-8.5 parent: 2 - uid: 2586 components: - type: Transform - pos: -68.5,-9.5 + pos: -6.5,-9.5 parent: 2 - uid: 2587 components: - type: Transform - pos: -68.5,-8.5 + pos: -6.5,-10.5 parent: 2 - uid: 2588 components: - type: Transform - pos: -70.5,-4.5 + pos: -6.5,-11.5 parent: 2 - uid: 2589 components: - type: Transform - pos: -71.5,-4.5 + pos: -6.5,-12.5 parent: 2 - uid: 2590 components: - type: Transform - pos: -72.5,-4.5 + pos: -7.5,-10.5 parent: 2 - uid: 2591 components: - type: Transform - pos: -72.5,-1.5 + pos: -8.5,-10.5 parent: 2 - uid: 2592 components: - type: Transform - pos: -72.5,-5.5 + pos: -9.5,-10.5 parent: 2 - uid: 2593 components: - type: Transform - pos: -72.5,-6.5 + pos: -9.5,-11.5 parent: 2 - uid: 2594 components: - type: Transform - pos: -72.5,-7.5 + pos: -7.5,-7.5 parent: 2 - uid: 2595 components: - type: Transform - pos: -72.5,-8.5 + pos: -7.5,-6.5 parent: 2 - uid: 2596 components: - type: Transform - pos: -72.5,-9.5 + pos: -7.5,-5.5 parent: 2 - uid: 2597 components: - type: Transform - pos: -73.5,-8.5 + pos: -7.5,-4.5 parent: 2 - uid: 2598 components: - type: Transform - pos: -74.5,-8.5 + pos: -7.5,-3.5 parent: 2 - uid: 2599 components: - type: Transform - pos: -75.5,-8.5 + pos: -7.5,-2.5 parent: 2 - uid: 2600 components: - type: Transform - pos: -76.5,-8.5 + pos: -7.5,-1.5 parent: 2 - uid: 2601 components: - type: Transform - pos: -78.5,-8.5 + pos: -7.5,-0.5 parent: 2 - uid: 2602 components: - type: Transform - pos: -79.5,-8.5 + pos: -7.5,0.5 parent: 2 - uid: 2603 components: - type: Transform - pos: -80.5,-8.5 + pos: -6.5,-0.5 parent: 2 - uid: 2604 components: - type: Transform - pos: -73.5,-3.5 + pos: -8.5,-0.5 parent: 2 - uid: 2605 components: - type: Transform - pos: -74.5,-3.5 + pos: -9.5,-0.5 parent: 2 - uid: 2606 components: - type: Transform - pos: -75.5,-3.5 + pos: -8.5,-3.5 parent: 2 - uid: 2607 components: - type: Transform - pos: -76.5,-3.5 + pos: -9.5,-3.5 parent: 2 - uid: 2608 components: - type: Transform - pos: -72.5,-3.5 + pos: -10.5,-3.5 parent: 2 - uid: 2609 components: - type: Transform - pos: -72.5,-2.5 + pos: -9.5,-2.5 parent: 2 - uid: 2610 components: - type: Transform - pos: -72.5,-0.5 + pos: -6.5,-3.5 parent: 2 - uid: 2611 components: - type: Transform - pos: -72.5,0.5 + pos: -9.5,-4.5 parent: 2 - uid: 2612 components: - type: Transform - pos: -73.5,0.5 + pos: -9.5,-5.5 parent: 2 - uid: 2613 components: - type: Transform - pos: -74.5,0.5 + pos: -7.5,-12.5 parent: 2 - uid: 2614 components: - type: Transform - pos: -75.5,0.5 + pos: -5.5,-10.5 parent: 2 - uid: 2615 components: - type: Transform - pos: -76.5,0.5 + pos: -4.5,-10.5 parent: 2 - uid: 2616 components: - type: Transform - pos: -77.5,0.5 + pos: -3.5,-10.5 parent: 2 - uid: 2617 components: - type: Transform - pos: -78.5,0.5 + pos: -3.5,-11.5 parent: 2 - uid: 2618 components: - type: Transform - pos: -79.5,0.5 + pos: -8.5,5.5 parent: 2 - uid: 2619 components: - type: Transform - pos: -80.5,0.5 + pos: -8.5,4.5 parent: 2 - uid: 2620 components: - type: Transform - pos: -81.5,0.5 + pos: -8.5,3.5 parent: 2 - uid: 2621 components: - type: Transform - pos: -81.5,-1.5 + pos: -8.5,2.5 parent: 2 - uid: 2622 components: - type: Transform - pos: -81.5,-2.5 + pos: -9.5,3.5 parent: 2 - uid: 2623 components: - type: Transform - pos: -81.5,-3.5 + pos: -7.5,3.5 parent: 2 - uid: 2624 components: - type: Transform - pos: -81.5,-4.5 + pos: -6.5,3.5 parent: 2 - uid: 2625 components: - type: Transform - pos: -81.5,-5.5 + pos: -10.5,3.5 parent: 2 - uid: 2626 components: - type: Transform - pos: -81.5,-6.5 + pos: -33.5,-3.5 parent: 2 - uid: 2627 components: - type: Transform - pos: -81.5,-7.5 + pos: -28.5,0.5 parent: 2 - uid: 2628 components: - type: Transform - pos: -81.5,-8.5 + pos: -8.5,-16.5 parent: 2 - uid: 2629 components: - type: Transform - pos: -82.5,-3.5 + pos: -11.5,-16.5 parent: 2 - uid: 2630 components: - type: Transform - pos: -72.5,1.5 + pos: -122.5,9.5 parent: 2 - uid: 2631 components: - type: Transform - pos: -72.5,2.5 + pos: -121.5,16.5 parent: 2 - uid: 2632 components: - type: Transform - pos: -79.5,1.5 + pos: -120.5,16.5 parent: 2 - uid: 2633 components: - type: Transform - pos: -79.5,2.5 + pos: -119.5,16.5 parent: 2 - uid: 2634 components: - type: Transform - pos: -76.5,1.5 + pos: -118.5,16.5 parent: 2 - uid: 2635 components: - type: Transform - pos: -76.5,2.5 + pos: -117.5,16.5 parent: 2 - uid: 2636 components: - type: Transform - pos: -76.5,3.5 + pos: -116.5,16.5 parent: 2 - uid: 2637 components: - type: Transform - pos: -71.5,-8.5 + pos: -115.5,16.5 parent: 2 - uid: 2638 components: - type: Transform - pos: -54.5,-10.5 + pos: -114.5,16.5 parent: 2 - uid: 2639 components: - type: Transform - pos: -4.5,-1.5 + pos: -113.5,16.5 parent: 2 - uid: 2640 components: - type: Transform - pos: -3.5,-1.5 + pos: -112.5,16.5 parent: 2 - uid: 2641 components: - type: Transform - pos: -2.5,-1.5 + pos: -111.5,16.5 parent: 2 - uid: 2642 components: - type: Transform - pos: -1.5,-1.5 + pos: -110.5,16.5 parent: 2 - uid: 2643 components: - type: Transform - pos: -0.5,-1.5 + pos: -112.5,15.5 parent: 2 - uid: 2644 components: - type: Transform - pos: 0.5,-1.5 + pos: -112.5,14.5 parent: 2 - uid: 2645 components: - type: Transform - pos: 1.5,-1.5 + pos: -117.5,15.5 parent: 2 - uid: 2646 components: - type: Transform - pos: 2.5,-1.5 + pos: -117.5,14.5 parent: 2 - uid: 2647 components: - type: Transform - pos: 3.5,-1.5 + pos: -120.5,15.5 parent: 2 - uid: 2648 components: - type: Transform - pos: 4.5,-1.5 + pos: -120.5,14.5 parent: 2 - uid: 2649 components: - type: Transform - pos: 5.5,-1.5 + pos: -116.5,14.5 parent: 2 - uid: 2650 components: - type: Transform - pos: 6.5,-1.5 + pos: -115.5,14.5 parent: 2 - uid: 2651 components: - type: Transform - pos: 6.5,-2.5 + pos: -120.5,8.5 parent: 2 - uid: 2652 components: - type: Transform - pos: 6.5,-3.5 + pos: -114.5,3.5 parent: 2 - uid: 2653 components: - type: Transform - pos: 6.5,-4.5 + pos: -113.5,3.5 parent: 2 - uid: 2654 components: - type: Transform - pos: 6.5,-5.5 + pos: -112.5,3.5 parent: 2 - uid: 2655 components: - type: Transform - pos: 5.5,-5.5 + pos: -111.5,3.5 parent: 2 - uid: 2656 components: - type: Transform - pos: 4.5,-5.5 + pos: -111.5,4.5 parent: 2 - uid: 2657 components: - type: Transform - pos: 3.5,-5.5 + pos: -111.5,5.5 parent: 2 - uid: 2658 components: - type: Transform - pos: 2.5,-5.5 + pos: -111.5,6.5 parent: 2 - uid: 2659 components: - type: Transform - pos: 1.5,-5.5 + pos: -111.5,8.5 parent: 2 - uid: 2660 components: - type: Transform - pos: 0.5,-5.5 + pos: -111.5,9.5 parent: 2 - uid: 2661 components: - type: Transform - pos: -0.5,-5.5 + pos: -112.5,9.5 parent: 2 - uid: 2662 components: - type: Transform - pos: -1.5,-5.5 + pos: -113.5,9.5 parent: 2 - uid: 2663 components: - type: Transform - pos: -2.5,-5.5 + pos: -114.5,9.5 parent: 2 - uid: 2664 components: - type: Transform - pos: -3.5,-5.5 + pos: -115.5,9.5 parent: 2 - uid: 2665 components: - type: Transform - pos: -4.5,-5.5 + pos: -116.5,9.5 parent: 2 - uid: 2666 components: - type: Transform - pos: -1.5,-0.5 + pos: -117.5,9.5 parent: 2 - uid: 2667 components: - type: Transform - pos: -4.5,-4.5 + pos: -118.5,9.5 parent: 2 - uid: 2668 components: - type: Transform - pos: -1.5,-4.5 + pos: -119.5,9.5 parent: 2 - uid: 2669 components: - type: Transform - pos: -1.5,-6.5 + pos: -120.5,9.5 parent: 2 - uid: 2670 components: - type: Transform - pos: -3.5,-6.5 + pos: -121.5,9.5 parent: 2 - uid: 2671 components: - type: Transform - pos: 1.5,-6.5 + pos: -117.5,7.5 parent: 2 - uid: 2672 components: - type: Transform - pos: 4.5,-6.5 + pos: -116.5,7.5 parent: 2 - uid: 2673 components: - type: Transform - pos: 4.5,-4.5 + pos: -123.5,8.5 parent: 2 - uid: 2674 components: - type: Transform - pos: 1.5,-4.5 + pos: -123.5,7.5 parent: 2 - uid: 2675 components: - type: Transform - pos: -1.5,-2.5 + pos: -123.5,6.5 parent: 2 - uid: 2676 components: - type: Transform - pos: 1.5,-2.5 + pos: -123.5,5.5 parent: 2 - uid: 2677 components: - type: Transform - pos: 4.5,-2.5 + pos: -123.5,4.5 parent: 2 - uid: 2678 components: - type: Transform - pos: 4.5,-0.5 + pos: -123.5,3.5 parent: 2 - uid: 2679 components: - type: Transform - pos: 1.5,-0.5 + pos: -123.5,2.5 parent: 2 - uid: 2680 components: - type: Transform - pos: 7.5,-3.5 + pos: -123.5,1.5 parent: 2 - uid: 2681 components: - type: Transform - pos: 6.5,-6.5 + pos: -124.5,2.5 parent: 2 - uid: 2682 components: - type: Transform - pos: 6.5,-0.5 + pos: -124.5,6.5 parent: 2 - uid: 2683 components: - type: Transform - pos: 7.5,-0.5 + pos: -125.5,6.5 parent: 2 - uid: 2684 components: - type: Transform - pos: 7.5,-6.5 + pos: -126.5,6.5 parent: 2 - uid: 2685 components: - type: Transform - pos: -8.5,-8.5 + pos: -127.5,6.5 parent: 2 - uid: 2686 components: - type: Transform - pos: -7.5,-8.5 + pos: -128.5,6.5 parent: 2 - uid: 2687 components: - type: Transform - pos: -6.5,-8.5 + pos: -128.5,5.5 parent: 2 - uid: 2688 components: - type: Transform - pos: -6.5,-9.5 + pos: -128.5,4.5 parent: 2 - uid: 2689 components: - type: Transform - pos: -6.5,-10.5 + pos: -128.5,3.5 parent: 2 - uid: 2690 components: - type: Transform - pos: -6.5,-11.5 + pos: -127.5,3.5 parent: 2 - uid: 2691 components: - type: Transform - pos: -6.5,-12.5 + pos: -127.5,2.5 parent: 2 - uid: 2692 components: - type: Transform - pos: -7.5,-10.5 + pos: -77.5,13.5 parent: 2 - uid: 2693 components: - type: Transform - pos: -8.5,-10.5 + pos: -76.5,13.5 parent: 2 - uid: 2694 components: - type: Transform - pos: -9.5,-10.5 + pos: -75.5,13.5 parent: 2 - uid: 2695 components: - type: Transform - pos: -9.5,-11.5 + pos: -74.5,13.5 parent: 2 - uid: 2696 components: - type: Transform - pos: -7.5,-7.5 + pos: -73.5,13.5 parent: 2 - uid: 2697 components: - type: Transform - pos: -7.5,-6.5 + pos: -73.5,14.5 parent: 2 - uid: 2698 components: - type: Transform - pos: -7.5,-5.5 + pos: -73.5,15.5 parent: 2 - uid: 2699 components: - type: Transform - pos: -7.5,-4.5 + pos: -72.5,15.5 parent: 2 - uid: 2700 components: - type: Transform - pos: -7.5,-3.5 + pos: -71.5,15.5 parent: 2 - uid: 2701 components: - type: Transform - pos: -7.5,-2.5 + pos: -71.5,14.5 parent: 2 - uid: 2702 components: - type: Transform - pos: -7.5,-1.5 + pos: -70.5,14.5 parent: 2 - uid: 2703 components: - type: Transform - pos: -7.5,-0.5 + pos: -69.5,14.5 parent: 2 - uid: 2704 components: - type: Transform - pos: -7.5,0.5 + pos: -69.5,15.5 parent: 2 - uid: 2705 components: - type: Transform - pos: -6.5,-0.5 + pos: -68.5,15.5 parent: 2 - uid: 2706 components: - type: Transform - pos: -8.5,-0.5 + pos: -67.5,15.5 parent: 2 - uid: 2707 components: - type: Transform - pos: -9.5,-0.5 + pos: -66.5,15.5 parent: 2 - uid: 2708 components: - type: Transform - pos: -8.5,-3.5 + pos: -71.5,13.5 parent: 2 - uid: 2709 components: - type: Transform - pos: -9.5,-3.5 + pos: -71.5,12.5 parent: 2 - uid: 2710 components: - type: Transform - pos: -10.5,-3.5 + pos: -69.5,13.5 parent: 2 - uid: 2711 components: - type: Transform - pos: -9.5,-2.5 + pos: -69.5,12.5 parent: 2 - uid: 2712 components: - type: Transform - pos: -6.5,-3.5 + pos: -63.5,14.5 parent: 2 - uid: 2713 components: - type: Transform - pos: -9.5,-4.5 + pos: -63.5,13.5 parent: 2 - uid: 2714 components: - type: Transform - pos: -9.5,-5.5 + pos: -63.5,12.5 parent: 2 - uid: 2715 components: - type: Transform - pos: -7.5,-12.5 + pos: -63.5,11.5 parent: 2 - uid: 2716 components: - type: Transform - pos: -5.5,-10.5 + pos: -62.5,11.5 parent: 2 - uid: 2717 components: - type: Transform - pos: -4.5,-10.5 + pos: -61.5,11.5 parent: 2 - uid: 2718 components: - type: Transform - pos: -3.5,-10.5 + pos: -60.5,11.5 parent: 2 - uid: 2719 components: - type: Transform - pos: -3.5,-11.5 + pos: -77.5,17.5 parent: 2 - uid: 2720 components: - type: Transform - pos: -8.5,5.5 + pos: -75.5,17.5 parent: 2 - uid: 2721 components: - type: Transform - pos: -8.5,4.5 + pos: -58.5,15.5 parent: 2 - uid: 2722 components: - type: Transform - pos: -8.5,3.5 + pos: -58.5,14.5 parent: 2 - uid: 2723 components: - type: Transform - pos: -8.5,2.5 + pos: -58.5,13.5 parent: 2 - uid: 2724 components: - type: Transform - pos: -9.5,3.5 + pos: -58.5,12.5 parent: 2 - uid: 2725 components: - type: Transform - pos: -7.5,3.5 + pos: -58.5,11.5 parent: 2 - uid: 2726 components: - type: Transform - pos: -6.5,3.5 + pos: -57.5,18.5 parent: 2 - uid: 2727 components: - type: Transform - pos: -10.5,3.5 + pos: -76.5,17.5 parent: 2 - uid: 2728 components: - type: Transform - pos: -33.5,-3.5 + pos: -58.5,20.5 parent: 2 - uid: 2729 components: - type: Transform - pos: -28.5,0.5 + pos: -56.5,18.5 parent: 2 - uid: 2730 components: - type: Transform - pos: -8.5,-16.5 + pos: -55.5,18.5 parent: 2 - uid: 2731 components: - type: Transform - pos: -11.5,-16.5 + pos: -54.5,18.5 parent: 2 - uid: 2732 components: - type: Transform - pos: -122.5,9.5 + pos: -58.5,21.5 parent: 2 - uid: 2733 components: - type: Transform - pos: -121.5,16.5 + pos: -58.5,22.5 parent: 2 - uid: 2734 components: - type: Transform - pos: -120.5,16.5 + pos: -58.5,23.5 parent: 2 - uid: 2735 components: - type: Transform - pos: -119.5,16.5 + pos: -59.5,23.5 parent: 2 - uid: 2736 components: - type: Transform - pos: -118.5,16.5 + pos: -60.5,23.5 parent: 2 - uid: 2737 components: - type: Transform - pos: -117.5,16.5 + pos: -61.5,23.5 parent: 2 - uid: 2738 components: - type: Transform - pos: -116.5,16.5 + pos: -62.5,23.5 parent: 2 - uid: 2739 components: - type: Transform - pos: -115.5,16.5 + pos: -63.5,23.5 parent: 2 - uid: 2740 components: - type: Transform - pos: -114.5,16.5 + pos: -64.5,23.5 parent: 2 - uid: 2741 components: - type: Transform - pos: -113.5,16.5 + pos: -65.5,23.5 parent: 2 - uid: 2742 components: - type: Transform - pos: -112.5,16.5 + pos: -66.5,23.5 parent: 2 - uid: 2743 components: - type: Transform - pos: -111.5,16.5 + pos: -67.5,23.5 parent: 2 - uid: 2744 components: - type: Transform - pos: -110.5,16.5 + pos: -68.5,23.5 parent: 2 - uid: 2745 components: - type: Transform - pos: -112.5,15.5 + pos: -69.5,23.5 parent: 2 - uid: 2746 components: - type: Transform - pos: -112.5,14.5 + pos: -70.5,23.5 parent: 2 - uid: 2747 components: - type: Transform - pos: -117.5,15.5 + pos: -71.5,23.5 parent: 2 - uid: 2748 components: - type: Transform - pos: -117.5,14.5 + pos: -72.5,23.5 parent: 2 - uid: 2749 components: - type: Transform - pos: -120.5,15.5 + pos: -73.5,23.5 parent: 2 - uid: 2750 components: - type: Transform - pos: -120.5,14.5 + pos: -74.5,23.5 parent: 2 - uid: 2751 components: - type: Transform - pos: -116.5,14.5 + pos: -75.5,23.5 parent: 2 - uid: 2752 components: - type: Transform - pos: -115.5,14.5 + pos: -76.5,23.5 parent: 2 - uid: 2753 components: - type: Transform - pos: -120.5,8.5 + pos: -77.5,23.5 parent: 2 - uid: 2754 components: - type: Transform - pos: -114.5,3.5 + pos: -77.5,22.5 parent: 2 - uid: 2755 components: - type: Transform - pos: -113.5,3.5 + pos: -77.5,21.5 parent: 2 - uid: 2756 components: - type: Transform - pos: -112.5,3.5 + pos: -76.5,21.5 parent: 2 - uid: 2757 components: - type: Transform - pos: -111.5,3.5 + pos: -75.5,21.5 parent: 2 - uid: 2758 components: - type: Transform - pos: -111.5,4.5 + pos: -75.5,20.5 parent: 2 - uid: 2759 components: - type: Transform - pos: -111.5,5.5 + pos: -75.5,19.5 parent: 2 - uid: 2760 components: - type: Transform - pos: -111.5,6.5 + pos: -75.5,18.5 parent: 2 - uid: 2761 components: - type: Transform - pos: -111.5,8.5 + pos: -74.5,18.5 parent: 2 - uid: 2762 components: - type: Transform - pos: -111.5,9.5 + pos: -73.5,18.5 parent: 2 - uid: 2763 components: - type: Transform - pos: -112.5,9.5 + pos: -72.5,18.5 parent: 2 - uid: 2764 components: - type: Transform - pos: -113.5,9.5 + pos: -71.5,18.5 parent: 2 - uid: 2765 components: - type: Transform - pos: -114.5,9.5 + pos: -70.5,18.5 parent: 2 - uid: 2766 components: - type: Transform - pos: -115.5,9.5 + pos: -69.5,18.5 parent: 2 - uid: 2767 components: - type: Transform - pos: -116.5,9.5 + pos: -68.5,18.5 parent: 2 - uid: 2768 components: - type: Transform - pos: -117.5,9.5 + pos: -67.5,18.5 parent: 2 - uid: 2769 components: - type: Transform - pos: -118.5,9.5 + pos: -66.5,18.5 parent: 2 - uid: 2770 components: - type: Transform - pos: -119.5,9.5 + pos: -66.5,19.5 parent: 2 - uid: 2771 components: - type: Transform - pos: -120.5,9.5 + pos: -66.5,20.5 parent: 2 - uid: 2772 components: - type: Transform - pos: -121.5,9.5 + pos: -65.5,20.5 parent: 2 - uid: 2773 components: - type: Transform - pos: -117.5,7.5 + pos: -64.5,20.5 parent: 2 - uid: 2774 components: - type: Transform - pos: -116.5,7.5 + pos: -63.5,20.5 parent: 2 - uid: 2775 components: - type: Transform - pos: -123.5,8.5 + pos: -62.5,20.5 parent: 2 - uid: 2776 components: - type: Transform - pos: -123.5,7.5 + pos: -61.5,20.5 parent: 2 - uid: 2777 components: - type: Transform - pos: -123.5,6.5 + pos: -60.5,20.5 parent: 2 - uid: 2778 components: - type: Transform - pos: -123.5,5.5 + pos: -60.5,19.5 parent: 2 - uid: 2779 components: - type: Transform - pos: -123.5,4.5 + pos: -60.5,18.5 parent: 2 - uid: 2780 components: - type: Transform - pos: -123.5,3.5 + pos: -60.5,17.5 parent: 2 - uid: 2781 components: - type: Transform - pos: -123.5,2.5 + pos: -60.5,16.5 parent: 2 - uid: 2782 components: - type: Transform - pos: -123.5,1.5 + pos: -59.5,15.5 parent: 2 - uid: 2783 components: - type: Transform - pos: -124.5,2.5 + pos: -60.5,15.5 parent: 2 - uid: 2784 components: - type: Transform - pos: -124.5,6.5 + pos: -57.5,15.5 parent: 2 - uid: 2785 components: - type: Transform - pos: -125.5,6.5 + pos: -56.5,15.5 parent: 2 - uid: 2786 components: - type: Transform - pos: -126.5,6.5 + pos: -56.5,16.5 parent: 2 - uid: 2787 components: - type: Transform - pos: -127.5,6.5 + pos: -56.5,17.5 parent: 2 - uid: 2788 components: - type: Transform - pos: -128.5,6.5 + pos: -56.5,18.5 parent: 2 - uid: 2789 components: - type: Transform - pos: -128.5,5.5 + pos: -56.5,19.5 parent: 2 - uid: 2790 components: - type: Transform - pos: -128.5,4.5 + pos: -56.5,20.5 parent: 2 - uid: 2791 components: - type: Transform - pos: -128.5,3.5 + pos: -55.5,20.5 parent: 2 - uid: 2792 components: - type: Transform - pos: -127.5,3.5 + pos: -54.5,20.5 parent: 2 - uid: 2793 components: - type: Transform - pos: -127.5,2.5 + pos: -53.5,20.5 parent: 2 - uid: 2794 components: - type: Transform - pos: -77.5,13.5 + pos: -52.5,20.5 parent: 2 - uid: 2795 components: - type: Transform - pos: -76.5,13.5 + pos: -55.5,21.5 parent: 2 - uid: 2796 components: - type: Transform - pos: -75.5,13.5 + pos: -55.5,22.5 parent: 2 - uid: 2797 components: - type: Transform - pos: -74.5,13.5 + pos: -55.5,23.5 parent: 2 - uid: 2798 components: - type: Transform - pos: -73.5,13.5 + pos: -56.5,23.5 parent: 2 - uid: 2799 components: - type: Transform - pos: -73.5,14.5 + pos: -57.5,23.5 parent: 2 - uid: 2800 components: - type: Transform - pos: -73.5,15.5 + pos: -78.5,17.5 parent: 2 - uid: 2801 components: - type: Transform - pos: -72.5,15.5 + pos: -79.5,17.5 parent: 2 - uid: 2802 components: - type: Transform - pos: -71.5,15.5 + pos: -15.5,-16.5 parent: 2 - uid: 2803 components: - type: Transform - pos: -71.5,14.5 + pos: -16.5,-16.5 parent: 2 - uid: 2804 components: - type: Transform - pos: -70.5,14.5 + pos: -17.5,-16.5 parent: 2 - uid: 2805 components: - type: Transform - pos: -69.5,14.5 + pos: -37.5,-6.5 parent: 2 - uid: 2806 components: - type: Transform - pos: -69.5,15.5 + pos: -56.5,11.5 parent: 2 - uid: 2807 components: - type: Transform - pos: -68.5,15.5 + pos: -75.5,14.5 parent: 2 - uid: 2808 components: - type: Transform - pos: -67.5,15.5 + pos: -197.5,7.5 parent: 2 - uid: 2809 components: - type: Transform - pos: -66.5,15.5 + pos: -192.5,4.5 parent: 2 - uid: 2810 components: - type: Transform - pos: -71.5,13.5 + pos: -193.5,7.5 parent: 2 - uid: 2811 components: - type: Transform - pos: -71.5,12.5 + pos: -167.5,6.5 parent: 2 - uid: 2812 components: - type: Transform - pos: -69.5,13.5 + pos: -168.5,6.5 parent: 2 - uid: 2813 components: - type: Transform - pos: -69.5,12.5 + pos: -165.5,6.5 parent: 2 - uid: 2814 components: - type: Transform - pos: -63.5,14.5 + pos: -164.5,6.5 parent: 2 - uid: 2815 components: - type: Transform - pos: -63.5,13.5 + pos: -155.5,8.5 parent: 2 - uid: 2816 components: - type: Transform - pos: -63.5,12.5 + pos: -156.5,8.5 parent: 2 - uid: 2817 components: - type: Transform - pos: -63.5,11.5 + pos: -156.5,8.5 parent: 2 - uid: 2818 components: - type: Transform - pos: -62.5,11.5 + pos: -157.5,8.5 parent: 2 - uid: 2819 components: - type: Transform - pos: -61.5,11.5 + pos: -156.5,11.5 parent: 2 - uid: 2820 components: - type: Transform - pos: -60.5,11.5 + pos: -191.5,8.5 parent: 2 - uid: 2821 components: - type: Transform - pos: -77.5,17.5 + pos: -190.5,4.5 parent: 2 - uid: 2822 components: - type: Transform - pos: -75.5,17.5 + pos: -203.5,3.5 parent: 2 - uid: 2823 components: - type: Transform - pos: -58.5,15.5 + pos: -201.5,4.5 parent: 2 - uid: 2824 components: - type: Transform - pos: -58.5,14.5 + pos: -189.5,2.5 parent: 2 - uid: 2825 components: - type: Transform - pos: -58.5,13.5 + pos: -201.5,1.5 parent: 2 - uid: 2826 components: - type: Transform - pos: -58.5,12.5 + pos: -200.5,4.5 parent: 2 - uid: 2827 components: - type: Transform - pos: -58.5,11.5 + pos: -199.5,4.5 parent: 2 - uid: 2828 components: - type: Transform - pos: -57.5,18.5 + pos: -198.5,4.5 parent: 2 - uid: 2829 components: - type: Transform - pos: -76.5,17.5 + pos: -197.5,4.5 parent: 2 - uid: 2830 components: - type: Transform - pos: -58.5,20.5 + pos: -196.5,4.5 parent: 2 - uid: 2831 components: - type: Transform - pos: -56.5,18.5 + pos: -203.5,12.5 parent: 2 - uid: 2832 components: - type: Transform - pos: -55.5,18.5 + pos: -203.5,13.5 parent: 2 - uid: 2833 components: - type: Transform - pos: -54.5,18.5 + pos: -203.5,11.5 parent: 2 - uid: 2834 components: - type: Transform - pos: -58.5,21.5 + pos: -191.5,2.5 parent: 2 - uid: 2835 components: - type: Transform - pos: -58.5,22.5 + pos: -190.5,2.5 parent: 2 - uid: 2836 components: - type: Transform - pos: -58.5,23.5 + pos: -200.5,15.5 parent: 2 - uid: 2837 components: - type: Transform - pos: -59.5,23.5 + pos: -201.5,12.5 parent: 2 - uid: 2838 components: - type: Transform - pos: -60.5,23.5 + pos: -201.5,2.5 parent: 2 - uid: 2839 components: - type: Transform - pos: -61.5,23.5 + pos: -191.5,16.5 parent: 2 - uid: 2840 components: - type: Transform - pos: -62.5,23.5 + pos: -47.5,9.5 parent: 2 - uid: 2841 components: - type: Transform - pos: -63.5,23.5 + pos: -46.5,7.5 parent: 2 - uid: 2842 components: - type: Transform - pos: -64.5,23.5 + pos: -136.5,5.5 parent: 2 - uid: 2843 components: - type: Transform - pos: -65.5,23.5 + pos: -134.5,-0.5 parent: 2 - uid: 2844 components: - type: Transform - pos: -66.5,23.5 + pos: -134.5,0.5 parent: 2 - uid: 2845 components: - type: Transform - pos: -67.5,23.5 + pos: -134.5,1.5 parent: 2 - uid: 2846 components: - type: Transform - pos: -68.5,23.5 + pos: -134.5,2.5 parent: 2 - uid: 2847 components: - type: Transform - pos: -69.5,23.5 + pos: -134.5,3.5 parent: 2 - uid: 2848 components: - type: Transform - pos: -70.5,23.5 + pos: -134.5,4.5 parent: 2 - uid: 2849 components: - type: Transform - pos: -71.5,23.5 + pos: -135.5,5.5 parent: 2 - uid: 2850 components: - type: Transform - pos: -72.5,23.5 + pos: -134.5,5.5 parent: 2 - uid: 2851 components: - type: Transform - pos: -73.5,23.5 + pos: -133.5,5.5 parent: 2 - uid: 2852 components: - type: Transform - pos: -74.5,23.5 + pos: -132.5,5.5 parent: 2 - uid: 2853 components: - type: Transform - pos: -75.5,23.5 + pos: -131.5,5.5 parent: 2 - uid: 2854 components: - type: Transform - pos: -76.5,23.5 + pos: -137.5,5.5 parent: 2 - uid: 2855 components: - type: Transform - pos: -77.5,23.5 + pos: -137.5,4.5 parent: 2 - uid: 2856 components: - type: Transform - pos: -77.5,22.5 + pos: -140.5,-0.5 parent: 2 - uid: 2857 components: - type: Transform - pos: -77.5,21.5 + pos: -140.5,1.5 parent: 2 - uid: 2858 components: - type: Transform - pos: -76.5,21.5 + pos: -140.5,0.5 parent: 2 - uid: 2859 components: - type: Transform - pos: -75.5,21.5 + pos: -140.5,2.5 parent: 2 - uid: 2860 components: - type: Transform - pos: -75.5,20.5 + pos: -141.5,1.5 parent: 2 - uid: 2861 components: - type: Transform - pos: -75.5,19.5 + pos: -142.5,1.5 parent: 2 - uid: 2862 components: - type: Transform - pos: -75.5,18.5 + pos: -143.5,1.5 parent: 2 - uid: 2863 components: - type: Transform - pos: -74.5,18.5 + pos: -127.5,-14.5 parent: 2 - uid: 2864 components: - type: Transform - pos: -73.5,18.5 + pos: -127.5,-13.5 parent: 2 - uid: 2865 components: - type: Transform - pos: -72.5,18.5 + pos: -126.5,-14.5 parent: 2 - uid: 2866 components: - type: Transform - pos: -71.5,18.5 + pos: -156.5,18.5 parent: 2 - uid: 2867 components: - type: Transform - pos: -70.5,18.5 + pos: -147.5,14.5 parent: 2 - uid: 2868 components: - type: Transform - pos: -69.5,18.5 + pos: -147.5,12.5 parent: 2 - uid: 2869 components: - type: Transform - pos: -68.5,18.5 + pos: -147.5,13.5 parent: 2 - uid: 2870 components: - type: Transform - pos: -67.5,18.5 + pos: -147.5,15.5 parent: 2 - uid: 2871 components: - type: Transform - pos: -66.5,18.5 + pos: -160.5,15.5 parent: 2 - uid: 2872 components: - type: Transform - pos: -66.5,19.5 + pos: -156.5,16.5 parent: 2 - uid: 2873 components: - type: Transform - pos: -66.5,20.5 + pos: -155.5,18.5 parent: 2 - uid: 2874 components: - type: Transform - pos: -65.5,20.5 + pos: -99.5,-12.5 parent: 2 - uid: 2875 components: - type: Transform - pos: -64.5,20.5 + pos: -156.5,17.5 parent: 2 - uid: 2876 components: - type: Transform - pos: -63.5,20.5 + pos: -152.5,14.5 parent: 2 - uid: 2877 components: - type: Transform - pos: -62.5,20.5 + pos: -154.5,18.5 parent: 2 - uid: 2878 components: - type: Transform - pos: -61.5,20.5 + pos: -157.5,-11.5 parent: 2 - uid: 2879 components: - type: Transform - pos: -60.5,20.5 + pos: -159.5,-11.5 parent: 2 - uid: 2880 components: - type: Transform - pos: -60.5,19.5 + pos: -153.5,-14.5 parent: 2 - uid: 2881 components: - type: Transform - pos: -60.5,18.5 + pos: -152.5,-14.5 parent: 2 - uid: 2882 components: - type: Transform - pos: -60.5,17.5 + pos: -147.5,16.5 parent: 2 - uid: 2883 components: - type: Transform - pos: -60.5,16.5 + pos: -147.5,18.5 parent: 2 - uid: 2884 components: - type: Transform - pos: -59.5,15.5 + pos: -126.5,-21.5 parent: 2 - uid: 2885 components: - type: Transform - pos: -60.5,15.5 + pos: -127.5,-21.5 parent: 2 - uid: 2886 components: - type: Transform - pos: -57.5,15.5 + pos: -128.5,-21.5 parent: 2 - uid: 2887 components: - type: Transform - pos: -56.5,15.5 + pos: -131.5,-18.5 parent: 2 - uid: 2888 components: - type: Transform - pos: -56.5,16.5 + pos: -131.5,-19.5 parent: 2 - uid: 2889 components: - type: Transform - pos: -56.5,17.5 + pos: -131.5,-20.5 parent: 2 - uid: 2890 components: - type: Transform - pos: -56.5,18.5 + pos: -130.5,-19.5 parent: 2 - uid: 2891 components: - type: Transform - pos: -56.5,19.5 + pos: -132.5,-7.5 parent: 2 - uid: 2892 components: - type: Transform - pos: -56.5,20.5 + pos: -139.5,-7.5 parent: 2 - uid: 2893 components: - type: Transform - pos: -55.5,20.5 + pos: -136.5,-0.5 parent: 2 - uid: 2894 components: - type: Transform - pos: -54.5,20.5 + pos: -137.5,-0.5 parent: 2 - uid: 2895 components: - type: Transform - pos: -53.5,20.5 + pos: -139.5,-0.5 parent: 2 - uid: 2896 components: - type: Transform - pos: -52.5,20.5 + pos: -141.5,-0.5 parent: 2 - uid: 2897 components: - type: Transform - pos: -55.5,21.5 + pos: -142.5,-0.5 parent: 2 - uid: 2898 components: - type: Transform - pos: -55.5,22.5 + pos: -132.5,-0.5 parent: 2 - uid: 2899 components: - type: Transform - pos: -55.5,23.5 + pos: -131.5,-0.5 parent: 2 - uid: 2900 components: - type: Transform - pos: -56.5,23.5 + pos: -132.5,-1.5 parent: 2 - uid: 2901 components: - type: Transform - pos: -57.5,23.5 + pos: -132.5,-2.5 parent: 2 - uid: 2902 components: - type: Transform - pos: -78.5,17.5 + pos: -132.5,8.5 parent: 2 - uid: 2903 components: - type: Transform - pos: -79.5,17.5 + pos: -133.5,8.5 parent: 2 - uid: 2904 components: - type: Transform - pos: -58.5,-26.5 + pos: -135.5,8.5 parent: 2 - uid: 2905 components: - type: Transform - pos: -58.5,-27.5 + pos: -136.5,8.5 parent: 2 - uid: 2906 components: - type: Transform - pos: -59.5,-27.5 + pos: -134.5,8.5 parent: 2 - uid: 2907 components: - type: Transform - pos: -57.5,-27.5 + pos: -134.5,7.5 parent: 2 - uid: 2908 components: - type: Transform - pos: -15.5,-16.5 + pos: -134.5,6.5 parent: 2 - uid: 2909 components: - type: Transform - pos: -16.5,-16.5 + pos: -137.5,6.5 parent: 2 - uid: 2910 components: - type: Transform - pos: -17.5,-16.5 + pos: -131.5,6.5 parent: 2 - uid: 2911 components: - type: Transform - pos: -37.5,-6.5 + pos: -140.5,3.5 parent: 2 - uid: 2912 components: - type: Transform - pos: -56.5,11.5 + pos: -140.5,4.5 parent: 2 - uid: 2913 components: - type: Transform - pos: -75.5,14.5 + pos: -140.5,5.5 parent: 2 - uid: 2914 components: - type: Transform - pos: -192.5,5.5 + pos: -139.5,5.5 parent: 2 - uid: 2915 components: - type: Transform - pos: -199.5,5.5 + pos: -141.5,5.5 parent: 2 - uid: 2916 components: - type: Transform - pos: -197.5,5.5 + pos: -144.5,1.5 parent: 2 - uid: 2917 components: - type: Transform - pos: -167.5,6.5 + pos: -144.5,2.5 parent: 2 - uid: 2918 components: - type: Transform - pos: -168.5,6.5 - parent: 2 - - uid: 2919 - components: - - type: Transform - pos: -165.5,6.5 - parent: 2 - - uid: 2920 - components: - - type: Transform - pos: -164.5,6.5 + pos: -73.5,-22.5 parent: 2 - uid: 2921 components: - type: Transform - pos: -155.5,8.5 + pos: -74.5,-16.5 parent: 2 - uid: 2922 components: - type: Transform - pos: -156.5,8.5 + pos: -74.5,-17.5 parent: 2 - uid: 2923 components: - type: Transform - pos: -156.5,8.5 + pos: -74.5,-18.5 parent: 2 - uid: 2924 components: - type: Transform - pos: -157.5,8.5 + pos: -188.5,4.5 parent: 2 - uid: 2925 components: - type: Transform - pos: -156.5,11.5 + pos: -198.5,3.5 parent: 2 - uid: 2926 components: - type: Transform - pos: -198.5,5.5 + pos: -194.5,3.5 parent: 2 - uid: 2927 components: - type: Transform - pos: -201.5,5.5 + pos: -198.5,2.5 parent: 2 - uid: 2928 components: - type: Transform - pos: -195.5,8.5 + pos: -194.5,2.5 parent: 2 - uid: 2929 components: - type: Transform - pos: -194.5,8.5 + pos: -199.5,2.5 parent: 2 - uid: 2930 components: - type: Transform - pos: -193.5,8.5 + pos: -200.5,2.5 parent: 2 - uid: 2931 components: - type: Transform - pos: -192.5,8.5 + pos: -191.5,3.5 parent: 2 - uid: 2932 components: - type: Transform - pos: -192.5,7.5 + pos: -190.5,16.5 parent: 2 - uid: 2933 components: - type: Transform - pos: -197.5,8.5 + pos: -189.5,15.5 parent: 2 - uid: 2934 components: - type: Transform - pos: -198.5,8.5 + pos: -199.5,16.5 parent: 2 - uid: 2935 components: - type: Transform - pos: -199.5,8.5 + pos: -190.5,15.5 parent: 2 - uid: 2936 components: - type: Transform - pos: -200.5,8.5 + pos: -189.5,1.5 parent: 2 - uid: 2937 components: - type: Transform - pos: -200.5,7.5 + pos: -128.5,-13.5 parent: 2 - uid: 2938 components: - type: Transform - pos: -195.5,10.5 + pos: -129.5,-13.5 parent: 2 - uid: 2939 components: - type: Transform - pos: -194.5,10.5 + pos: -130.5,-13.5 parent: 2 - uid: 2940 components: - type: Transform - pos: -194.5,11.5 + pos: -130.5,-14.5 parent: 2 - uid: 2941 components: - type: Transform - pos: -193.5,11.5 + pos: -131.5,-13.5 parent: 2 - uid: 2942 components: - type: Transform - pos: -192.5,11.5 + pos: -131.5,-12.5 parent: 2 - uid: 2943 components: - type: Transform - pos: -191.5,11.5 + pos: -131.5,-11.5 parent: 2 - uid: 2944 components: - type: Transform - pos: -197.5,10.5 + pos: -87.5,-19.5 parent: 2 - uid: 2945 components: - type: Transform - pos: -198.5,10.5 + pos: -91.5,-17.5 parent: 2 - uid: 2946 components: - type: Transform - pos: -198.5,11.5 + pos: -93.5,-15.5 parent: 2 - uid: 2947 components: - type: Transform - pos: -199.5,11.5 + pos: -97.5,-19.5 parent: 2 - uid: 2948 components: - type: Transform - pos: -200.5,11.5 + pos: -102.5,-21.5 parent: 2 - uid: 2949 components: - type: Transform - pos: -201.5,11.5 + pos: -110.5,-18.5 parent: 2 - uid: 2950 components: - type: Transform - pos: -47.5,9.5 + pos: -110.5,-20.5 parent: 2 - uid: 2951 components: - type: Transform - pos: -46.5,7.5 + pos: -115.5,-21.5 parent: 2 - uid: 2952 components: - type: Transform - pos: -136.5,5.5 + pos: -119.5,-19.5 parent: 2 - uid: 2953 components: - type: Transform - pos: -134.5,-0.5 + pos: -118.5,-21.5 parent: 2 - uid: 2954 components: - type: Transform - pos: -134.5,0.5 + pos: -192.5,7.5 parent: 2 - uid: 2955 components: - type: Transform - pos: -134.5,1.5 + pos: -148.5,7.5 parent: 2 - uid: 2956 components: - type: Transform - pos: -134.5,2.5 + pos: -147.5,15.5 parent: 2 - uid: 2957 components: - type: Transform - pos: -134.5,3.5 + pos: -7.5,-15.5 parent: 2 - uid: 2958 components: - type: Transform - pos: -134.5,4.5 + pos: -146.5,7.5 parent: 2 - uid: 2959 components: - type: Transform - pos: -135.5,5.5 + pos: -148.5,9.5 parent: 2 - uid: 2960 components: - type: Transform - pos: -134.5,5.5 + pos: -148.5,15.5 parent: 2 - uid: 2961 components: - type: Transform - pos: -133.5,5.5 + pos: -146.5,9.5 parent: 2 - uid: 2962 components: - type: Transform - pos: -132.5,5.5 + pos: -146.5,15.5 parent: 2 - uid: 2963 components: - type: Transform - pos: -131.5,5.5 + pos: -146.5,18.5 parent: 2 - uid: 2964 components: - type: Transform - pos: -137.5,5.5 + pos: -148.5,13.5 parent: 2 - uid: 2965 components: - type: Transform - pos: -137.5,4.5 + pos: -147.5,7.5 parent: 2 - uid: 2966 components: - type: Transform - pos: -140.5,-0.5 + pos: -146.5,11.5 parent: 2 - uid: 2967 components: - type: Transform - pos: -140.5,1.5 + pos: -148.5,18.5 parent: 2 - uid: 2968 components: - type: Transform - pos: -140.5,0.5 + pos: -146.5,13.5 parent: 2 - uid: 2969 components: - type: Transform - pos: -140.5,2.5 + pos: -6.5,-15.5 parent: 2 - uid: 2970 components: - type: Transform - pos: -141.5,1.5 + pos: -5.5,-15.5 parent: 2 - uid: 2971 components: - type: Transform - pos: -142.5,1.5 + pos: -5.5,-16.5 parent: 2 - uid: 2972 components: - type: Transform - pos: -143.5,1.5 + pos: -13.5,-16.5 parent: 2 - uid: 2973 components: - type: Transform - pos: -127.5,-14.5 + pos: -11.5,-16.5 parent: 2 - uid: 2974 components: - type: Transform - pos: -127.5,-13.5 + pos: -17.5,7.5 parent: 2 - uid: 2975 components: - type: Transform - pos: -126.5,-14.5 + pos: -156.5,12.5 parent: 2 - uid: 2976 components: - type: Transform - pos: -156.5,18.5 + pos: -193.5,-7.5 parent: 2 - uid: 2977 components: - type: Transform - pos: -147.5,14.5 + pos: -176.5,7.5 parent: 2 - uid: 2978 components: - type: Transform - pos: -147.5,12.5 + pos: -176.5,6.5 parent: 2 - uid: 2979 components: - type: Transform - pos: -147.5,13.5 + pos: -175.5,6.5 parent: 2 - uid: 2980 components: - type: Transform - pos: -147.5,15.5 + pos: -178.5,5.5 parent: 2 - uid: 2981 components: - type: Transform - pos: -160.5,15.5 + pos: -179.5,-9.5 parent: 2 - uid: 2982 components: - type: Transform - pos: -156.5,16.5 + pos: -175.5,-18.5 parent: 2 - uid: 2983 components: - type: Transform - pos: -155.5,18.5 + pos: -178.5,-16.5 parent: 2 - uid: 2984 components: - type: Transform - pos: -99.5,-12.5 + pos: -179.5,-7.5 parent: 2 - uid: 2985 components: - type: Transform - pos: -156.5,17.5 + pos: -193.5,-8.5 parent: 2 - uid: 2986 components: - type: Transform - pos: -152.5,14.5 + pos: -194.5,-8.5 parent: 2 - uid: 2987 components: - type: Transform - pos: -154.5,18.5 + pos: -179.5,-8.5 parent: 2 - uid: 2988 components: - type: Transform - pos: -157.5,-11.5 + pos: -178.5,-8.5 parent: 2 - uid: 2989 components: - type: Transform - pos: -159.5,-11.5 + pos: -175.5,-19.5 parent: 2 - uid: 2990 components: - type: Transform - pos: -153.5,-14.5 + pos: -176.5,-18.5 parent: 2 - uid: 2991 components: - type: Transform - pos: -152.5,-14.5 + pos: -175.5,-17.5 parent: 2 - uid: 2992 components: - type: Transform - pos: -147.5,16.5 + pos: -179.5,-15.5 parent: 2 - uid: 2993 components: - type: Transform - pos: -147.5,18.5 + pos: -193.5,-9.5 parent: 2 - uid: 2994 components: - type: Transform - pos: -126.5,-21.5 + pos: -179.5,-16.5 parent: 2 - uid: 2995 components: - type: Transform - pos: -127.5,-21.5 + pos: -179.5,-17.5 parent: 2 - uid: 2996 components: - type: Transform - pos: -128.5,-21.5 + pos: -180.5,-18.5 parent: 2 - uid: 2997 components: - type: Transform - pos: -131.5,-18.5 + pos: -180.5,-20.5 parent: 2 - uid: 2998 components: - type: Transform - pos: -131.5,-19.5 + pos: -180.5,-14.5 parent: 2 - uid: 2999 components: - type: Transform - pos: -131.5,-20.5 + pos: -180.5,-12.5 parent: 2 - uid: 3000 components: - type: Transform - pos: -130.5,-19.5 + pos: -192.5,-14.5 parent: 2 - uid: 3001 components: - type: Transform - pos: -132.5,-7.5 + pos: -192.5,-12.5 parent: 2 - uid: 3002 components: - type: Transform - pos: -139.5,-7.5 + pos: -192.5,-18.5 parent: 2 - uid: 3003 components: - type: Transform - pos: -136.5,-0.5 + pos: -192.5,-20.5 parent: 2 - uid: 3004 components: - type: Transform - pos: -137.5,-0.5 + pos: -157.5,12.5 parent: 2 - uid: 3005 components: - type: Transform - pos: -139.5,-0.5 + pos: -134.5,-2.5 parent: 2 - uid: 3006 components: - type: Transform - pos: -141.5,-0.5 + pos: -134.5,-1.5 parent: 2 - uid: 3007 components: - type: Transform - pos: -142.5,-0.5 + pos: -202.5,-4.5 parent: 2 - uid: 3008 components: - type: Transform - pos: -132.5,-0.5 + pos: -211.5,-15.5 parent: 2 - uid: 3009 components: - type: Transform - pos: -131.5,-0.5 + pos: -211.5,-16.5 parent: 2 - uid: 3010 components: - type: Transform - pos: -132.5,-1.5 + pos: -211.5,-17.5 parent: 2 - uid: 3011 components: - type: Transform - pos: -132.5,-2.5 + pos: -212.5,-16.5 parent: 2 - uid: 3012 components: - type: Transform - pos: -132.5,8.5 + pos: -214.5,-12.5 parent: 2 - uid: 3013 components: - type: Transform - pos: -133.5,8.5 + pos: -211.5,-7.5 parent: 2 - uid: 3014 components: - type: Transform - pos: -135.5,8.5 + pos: -211.5,-8.5 parent: 2 - uid: 3015 components: - type: Transform - pos: -136.5,8.5 + pos: -211.5,-9.5 parent: 2 - uid: 3016 components: - type: Transform - pos: -134.5,8.5 + pos: -203.5,-5.5 parent: 2 - uid: 3017 components: - type: Transform - pos: -134.5,7.5 + pos: -212.5,-8.5 parent: 2 - uid: 3018 components: - type: Transform - pos: -134.5,6.5 + pos: -202.5,-5.5 parent: 2 - uid: 3019 components: - type: Transform - pos: -137.5,6.5 + pos: -201.5,-5.5 parent: 2 - uid: 3020 components: - type: Transform - pos: -131.5,6.5 + pos: -205.5,-5.5 parent: 2 - uid: 3021 components: - type: Transform - pos: -140.5,3.5 + pos: -206.5,-5.5 parent: 2 - uid: 3022 components: - type: Transform - pos: -140.5,4.5 + pos: -207.5,-5.5 parent: 2 - uid: 3023 components: - type: Transform - pos: -140.5,5.5 + pos: -206.5,-4.5 parent: 2 - uid: 3024 components: - type: Transform - pos: -139.5,5.5 + pos: -210.5,-2.5 parent: 2 - uid: 3025 components: - type: Transform - pos: -141.5,5.5 + pos: -210.5,-1.5 parent: 2 - uid: 3026 components: - type: Transform - pos: -144.5,1.5 + pos: -211.5,-1.5 parent: 2 - uid: 3027 components: - type: Transform - pos: -144.5,2.5 + pos: -213.5,-2.5 parent: 2 - uid: 3028 components: - type: Transform - pos: -73.5,-22.5 + pos: -213.5,-1.5 parent: 2 - uid: 3029 components: - type: Transform - pos: -73.5,-21.5 + pos: -214.5,-1.5 parent: 2 - uid: 3030 components: - type: Transform - pos: -74.5,-21.5 + pos: -217.5,-1.5 parent: 2 - uid: 3031 components: - type: Transform - pos: -74.5,-20.5 + pos: -217.5,-2.5 parent: 2 - uid: 3032 components: - type: Transform - pos: -75.5,-20.5 + pos: -215.5,-3.5 parent: 2 - uid: 3033 components: - type: Transform - pos: -75.5,-19.5 + pos: -214.5,-3.5 parent: 2 - uid: 3034 components: - type: Transform - pos: -194.5,1.5 + pos: -216.5,-3.5 parent: 2 - uid: 3035 components: - type: Transform - pos: -194.5,0.5 + pos: -218.5,-3.5 parent: 2 - uid: 3036 components: - type: Transform - pos: -195.5,0.5 + pos: -207.5,-1.5 parent: 2 - uid: 3037 components: - type: Transform - pos: -193.5,0.5 + pos: -208.5,-1.5 parent: 2 - uid: 3038 components: - type: Transform - pos: -198.5,1.5 + pos: -197.5,-15.5 parent: 2 - uid: 3039 components: - type: Transform - pos: -198.5,0.5 + pos: -197.5,-16.5 parent: 2 - uid: 3040 components: - type: Transform - pos: -199.5,0.5 + pos: -197.5,-17.5 parent: 2 - uid: 3041 components: - type: Transform - pos: -197.5,0.5 + pos: -196.5,-16.5 parent: 2 - uid: 3042 components: - type: Transform - pos: -202.5,8.5 + pos: -193.5,-15.5 parent: 2 - uid: 3043 components: - type: Transform - pos: -202.5,7.5 + pos: -193.5,-16.5 parent: 2 - uid: 3044 components: - type: Transform - pos: -202.5,6.5 + pos: -193.5,-17.5 parent: 2 - uid: 3045 components: - type: Transform - pos: -201.5,8.5 + pos: -194.5,-16.5 parent: 2 - uid: 3046 components: - type: Transform - pos: -190.5,8.5 + pos: -194.5,-2.5 parent: 2 - uid: 3047 components: - type: Transform - pos: -190.5,7.5 + pos: -193.5,-1.5 parent: 2 - uid: 3048 components: - type: Transform - pos: -190.5,6.5 + pos: -194.5,-1.5 parent: 2 - uid: 3049 components: - type: Transform - pos: -191.5,8.5 + pos: -195.5,-1.5 parent: 2 - uid: 3050 components: - type: Transform - pos: -200.5,20.5 + pos: -197.5,-2.5 parent: 2 - uid: 3051 components: - type: Transform - pos: -200.5,19.5 + pos: -197.5,-1.5 parent: 2 - uid: 3052 components: - type: Transform - pos: -189.5,20.5 + pos: -198.5,-1.5 parent: 2 - uid: 3053 components: - type: Transform - pos: -188.5,21.5 + pos: -199.5,-1.5 parent: 2 - uid: 3054 components: - type: Transform - pos: -188.5,20.5 + pos: -142.5,-7.5 parent: 2 - uid: 3055 components: - type: Transform - pos: -188.5,19.5 + pos: -116.5,-13.5 parent: 2 - uid: 3056 components: - type: Transform - pos: -204.5,21.5 + pos: -140.5,-7.5 parent: 2 - uid: 3057 components: - type: Transform - pos: -204.5,20.5 + pos: -141.5,-7.5 parent: 2 - uid: 3058 components: - type: Transform - pos: -204.5,19.5 + pos: -118.5,17.5 parent: 2 - uid: 3059 components: - type: Transform - pos: -203.5,20.5 + pos: -112.5,18.5 parent: 2 - uid: 3060 components: - type: Transform - pos: -128.5,-13.5 + pos: -111.5,17.5 parent: 2 - uid: 3061 components: - type: Transform - pos: -129.5,-13.5 + pos: -110.5,18.5 parent: 2 - uid: 3062 components: - type: Transform - pos: -130.5,-13.5 + pos: -117.5,18.5 parent: 2 - uid: 3063 components: - type: Transform - pos: -130.5,-14.5 + pos: -118.5,18.5 parent: 2 - uid: 3064 components: - type: Transform - pos: -131.5,-13.5 + pos: -119.5,18.5 parent: 2 - uid: 3065 components: - type: Transform - pos: -131.5,-12.5 + pos: -112.5,18.5 parent: 2 - uid: 3066 components: - type: Transform - pos: -131.5,-11.5 + pos: -111.5,18.5 parent: 2 - uid: 3067 components: - type: Transform - pos: -87.5,-19.5 + pos: -111.5,14.5 parent: 2 - uid: 3068 components: - type: Transform - pos: -91.5,-17.5 + pos: -110.5,14.5 parent: 2 - uid: 3069 components: - type: Transform - pos: -93.5,-15.5 + pos: -111.5,13.5 parent: 2 - uid: 3070 components: - type: Transform - pos: -97.5,-19.5 + pos: -117.5,13.5 parent: 2 - uid: 3071 components: - type: Transform - pos: -102.5,-21.5 + pos: -118.5,13.5 parent: 2 - uid: 3072 components: - type: Transform - pos: -110.5,-18.5 + pos: -114.5,14.5 parent: 2 - uid: 3073 components: - type: Transform - pos: -110.5,-20.5 + pos: -108.5,-12.5 parent: 2 - uid: 3074 components: - type: Transform - pos: -115.5,-21.5 + pos: -65.5,15.5 parent: 2 - uid: 3075 components: - type: Transform - pos: -119.5,-19.5 + pos: -64.5,15.5 parent: 2 - uid: 3076 components: - type: Transform - pos: -118.5,-21.5 + pos: -63.5,15.5 parent: 2 - uid: 3077 components: - type: Transform - pos: -197.5,6.5 + pos: -197.5,16.5 parent: 2 - uid: 3078 components: - type: Transform - pos: -195.5,4.5 + pos: -193.5,18.5 parent: 2 - uid: 3079 components: - type: Transform - pos: -197.5,9.5 + pos: -192.5,12.5 parent: 2 - uid: 3080 components: - type: Transform - pos: -195.5,6.5 + pos: -85.5,14.5 parent: 2 - uid: 3081 components: - type: Transform - pos: -148.5,7.5 + pos: -86.5,14.5 parent: 2 - uid: 3082 components: - type: Transform - pos: -147.5,15.5 + pos: -142.5,-2.5 parent: 2 - uid: 3083 components: - type: Transform - pos: -7.5,-15.5 + pos: -141.5,-2.5 parent: 2 - uid: 3084 components: - type: Transform - pos: -146.5,7.5 + pos: -140.5,-2.5 parent: 2 - uid: 3085 components: - type: Transform - pos: -148.5,9.5 + pos: -139.5,-2.5 parent: 2 - uid: 3086 components: - type: Transform - pos: -148.5,15.5 + pos: -138.5,-2.5 parent: 2 - uid: 3087 components: - type: Transform - pos: -146.5,9.5 + pos: -138.5,-3.5 parent: 2 - uid: 3088 components: - type: Transform - pos: -146.5,15.5 + pos: -46.5,15.5 parent: 2 - uid: 3089 components: - type: Transform - pos: -146.5,18.5 + pos: -144.5,-8.5 parent: 2 - uid: 3090 components: - type: Transform - pos: -148.5,13.5 + pos: -137.5,-8.5 parent: 2 - uid: 3091 components: - type: Transform - pos: -147.5,7.5 + pos: -137.5,-7.5 parent: 2 - uid: 3092 components: - type: Transform - pos: -146.5,11.5 + pos: -135.5,-5.5 parent: 2 - uid: 3093 components: - type: Transform - pos: -148.5,18.5 + pos: -135.5,-7.5 parent: 2 - uid: 3094 components: - type: Transform - pos: -146.5,13.5 + pos: -113.5,-1.5 parent: 2 - uid: 3095 components: - type: Transform - pos: -6.5,-15.5 + pos: -113.5,-2.5 parent: 2 - uid: 3096 components: - type: Transform - pos: -5.5,-15.5 + pos: -115.5,0.5 parent: 2 - uid: 3097 components: - type: Transform - pos: -5.5,-16.5 + pos: -116.5,0.5 parent: 2 - uid: 3098 components: - type: Transform - pos: -13.5,-16.5 + pos: -117.5,0.5 parent: 2 - uid: 3099 components: - type: Transform - pos: -11.5,-16.5 + pos: -117.5,-0.5 parent: 2 - uid: 3100 components: - type: Transform - pos: -193.5,21.5 + pos: -119.5,1.5 parent: 2 - uid: 3101 components: - type: Transform - pos: -193.5,20.5 + pos: -119.5,2.5 parent: 2 - uid: 3102 components: - type: Transform - pos: -193.5,19.5 + pos: -120.5,1.5 parent: 2 - uid: 3103 components: - type: Transform - pos: -199.5,21.5 + pos: -120.5,0.5 parent: 2 - uid: 3104 components: - type: Transform - pos: -199.5,20.5 + pos: -118.5,0.5 parent: 2 - uid: 3105 components: - type: Transform - pos: -198.5,20.5 + pos: -102.5,-27.5 parent: 2 - uid: 3106 components: - type: Transform - pos: -17.5,7.5 + pos: -102.5,-26.5 parent: 2 - uid: 3107 components: - type: Transform - pos: -194.5,23.5 + pos: -102.5,-25.5 parent: 2 - uid: 3108 components: - type: Transform - pos: -194.5,24.5 + pos: -102.5,-24.5 parent: 2 - uid: 3109 components: - type: Transform - pos: -194.5,25.5 + pos: -101.5,-24.5 parent: 2 - uid: 3110 components: - type: Transform - pos: -198.5,23.5 + pos: -100.5,-24.5 parent: 2 - uid: 3111 components: - type: Transform - pos: -198.5,24.5 + pos: -100.5,-23.5 parent: 2 - uid: 3112 components: - type: Transform - pos: -198.5,25.5 + pos: -88.5,-6.5 parent: 2 - uid: 3113 components: - type: Transform - pos: -194.5,26.5 + pos: -88.5,-7.5 parent: 2 - uid: 3114 components: - type: Transform - pos: -198.5,26.5 + pos: -88.5,-8.5 parent: 2 - uid: 3115 components: - type: Transform - pos: -156.5,12.5 + pos: -87.5,-8.5 parent: 2 - uid: 3116 components: - type: Transform - pos: -193.5,-7.5 + pos: -86.5,-8.5 parent: 2 - uid: 3117 components: - type: Transform - pos: -176.5,7.5 + pos: -85.5,-8.5 parent: 2 - uid: 3118 components: - type: Transform - pos: -176.5,6.5 + pos: -85.5,-9.5 parent: 2 - uid: 3119 components: - type: Transform - pos: -175.5,6.5 + pos: -85.5,-10.5 parent: 2 - uid: 3120 components: - type: Transform - pos: -178.5,5.5 + pos: -84.5,-10.5 parent: 2 - uid: 3121 components: - type: Transform - pos: -179.5,-9.5 + pos: -84.5,-11.5 parent: 2 - uid: 3122 components: - type: Transform - pos: -175.5,-18.5 + pos: -84.5,-12.5 parent: 2 - uid: 3123 components: - type: Transform - pos: -178.5,-16.5 + pos: -81.5,-15.5 parent: 2 - uid: 3124 components: - type: Transform - pos: -179.5,-7.5 + pos: -82.5,-15.5 parent: 2 - uid: 3125 components: - type: Transform - pos: -193.5,-8.5 + pos: -83.5,-15.5 parent: 2 - uid: 3126 components: - type: Transform - pos: -194.5,-8.5 + pos: -84.5,-15.5 parent: 2 - uid: 3127 components: - type: Transform - pos: -179.5,-8.5 + pos: -71.5,-15.5 parent: 2 - uid: 3128 components: - type: Transform - pos: -178.5,-8.5 + pos: -72.5,-15.5 parent: 2 - uid: 3129 components: - type: Transform - pos: -175.5,-19.5 + pos: -73.5,-15.5 parent: 2 - uid: 3130 components: - type: Transform - pos: -176.5,-18.5 + pos: -74.5,-15.5 parent: 2 - uid: 3131 components: - type: Transform - pos: -175.5,-17.5 + pos: -75.5,-15.5 parent: 2 - uid: 3132 components: - type: Transform - pos: -179.5,-15.5 + pos: -76.5,-15.5 parent: 2 - uid: 3133 components: - type: Transform - pos: -193.5,-9.5 + pos: -77.5,-15.5 parent: 2 - uid: 3134 components: - type: Transform - pos: -179.5,-16.5 + pos: -78.5,-15.5 parent: 2 - uid: 3135 components: - type: Transform - pos: -179.5,-17.5 + pos: -79.5,-15.5 parent: 2 - uid: 3136 components: - type: Transform - pos: -180.5,-18.5 + pos: -80.5,-15.5 parent: 2 - uid: 3137 components: - type: Transform - pos: -180.5,-20.5 + pos: -84.5,-14.5 parent: 2 - uid: 3138 components: - type: Transform - pos: -180.5,-14.5 + pos: -218.5,-3.5 parent: 2 - uid: 3139 components: - type: Transform - pos: -180.5,-12.5 + pos: -217.5,-3.5 parent: 2 - uid: 3140 components: - type: Transform - pos: -192.5,-14.5 + pos: -140.5,-1.5 parent: 2 - uid: 3141 components: - type: Transform - pos: -192.5,-12.5 + pos: -13.5,11.5 parent: 2 - uid: 3142 components: - type: Transform - pos: -192.5,-18.5 + pos: -13.5,12.5 parent: 2 - uid: 3143 components: - type: Transform - pos: -192.5,-20.5 + pos: -126.5,-2.5 parent: 2 - uid: 3144 components: - type: Transform - pos: -157.5,12.5 + pos: -127.5,-2.5 parent: 2 - uid: 3145 components: - type: Transform - pos: -134.5,-2.5 + pos: -127.5,-1.5 parent: 2 - uid: 3146 components: - type: Transform - pos: -134.5,-1.5 + pos: -127.5,-0.5 parent: 2 - uid: 3147 components: - type: Transform - pos: -202.5,-4.5 + pos: -127.5,0.5 parent: 2 - uid: 3148 components: - type: Transform - pos: -211.5,-15.5 + pos: -127.5,1.5 parent: 2 - uid: 3149 components: - type: Transform - pos: -211.5,-16.5 + pos: -88.5,-20.5 parent: 2 - uid: 3150 components: - type: Transform - pos: -211.5,-17.5 + pos: -87.5,-20.5 parent: 2 - uid: 3151 components: - type: Transform - pos: -212.5,-16.5 + pos: -86.5,-20.5 parent: 2 - uid: 3152 components: - type: Transform - pos: -215.5,-13.5 + pos: -87.5,-19.5 parent: 2 - uid: 3153 components: - type: Transform - pos: -215.5,-12.5 + pos: -208.5,8.5 parent: 2 - uid: 3154 components: - type: Transform - pos: -215.5,-11.5 + pos: -209.5,8.5 parent: 2 - uid: 3155 components: - type: Transform - pos: -214.5,-12.5 + pos: -210.5,8.5 parent: 2 - uid: 3156 components: - type: Transform - pos: -211.5,-7.5 + pos: -210.5,9.5 parent: 2 - uid: 3157 components: - type: Transform - pos: -211.5,-8.5 + pos: -210.5,7.5 parent: 2 - uid: 3158 components: - type: Transform - pos: -211.5,-9.5 + pos: -208.5,9.5 parent: 2 - uid: 3159 components: - type: Transform - pos: -203.5,-5.5 + pos: -208.5,10.5 parent: 2 - uid: 3160 components: - type: Transform - pos: -212.5,-8.5 + pos: -208.5,11.5 parent: 2 - uid: 3161 components: - type: Transform - pos: -202.5,-5.5 + pos: -208.5,12.5 parent: 2 - uid: 3162 components: - type: Transform - pos: -201.5,-5.5 + pos: -208.5,13.5 parent: 2 - uid: 3163 components: - type: Transform - pos: -205.5,-5.5 + pos: -208.5,14.5 parent: 2 - uid: 3164 components: - type: Transform - pos: -206.5,-5.5 + pos: -208.5,7.5 parent: 2 - uid: 3165 components: - type: Transform - pos: -207.5,-5.5 + pos: -208.5,6.5 parent: 2 - uid: 3166 components: - type: Transform - pos: -206.5,-4.5 + pos: -208.5,5.5 parent: 2 - uid: 3167 components: - type: Transform - pos: -210.5,-2.5 + pos: -208.5,4.5 parent: 2 - uid: 3168 components: - type: Transform - pos: -210.5,-1.5 + pos: -208.5,3.5 parent: 2 - uid: 3169 components: - type: Transform - pos: -211.5,-1.5 + pos: -208.5,2.5 parent: 2 - uid: 3170 components: - type: Transform - pos: -213.5,-2.5 + pos: -208.5,1.5 parent: 2 - uid: 3171 components: - type: Transform - pos: -213.5,-1.5 + pos: -77.5,25.5 parent: 2 - uid: 3172 components: - type: Transform - pos: -214.5,-1.5 + pos: -77.5,26.5 parent: 2 - uid: 3173 components: - type: Transform - pos: -217.5,-1.5 + pos: -77.5,27.5 parent: 2 - uid: 3174 components: - type: Transform - pos: -217.5,-2.5 + pos: -76.5,27.5 parent: 2 - uid: 3175 components: - type: Transform - pos: -215.5,-3.5 + pos: -75.5,27.5 parent: 2 - uid: 3176 components: - type: Transform - pos: -214.5,-3.5 + pos: -74.5,27.5 parent: 2 - uid: 3177 components: - type: Transform - pos: -216.5,-3.5 + pos: -73.5,27.5 parent: 2 - uid: 3178 components: - type: Transform - pos: -218.5,-3.5 + pos: -72.5,27.5 parent: 2 - uid: 3179 components: - type: Transform - pos: -207.5,-1.5 + pos: -71.5,27.5 parent: 2 - uid: 3180 components: - type: Transform - pos: -208.5,-1.5 + pos: -70.5,27.5 parent: 2 - uid: 3181 components: - type: Transform - pos: -197.5,-15.5 + pos: -69.5,27.5 parent: 2 - uid: 3182 components: - type: Transform - pos: -197.5,-16.5 + pos: -68.5,27.5 parent: 2 - uid: 3183 components: - type: Transform - pos: -197.5,-17.5 + pos: -67.5,27.5 parent: 2 - uid: 3184 components: - type: Transform - pos: -196.5,-16.5 + pos: -66.5,27.5 parent: 2 - uid: 3185 components: - type: Transform - pos: -193.5,-15.5 + pos: -65.5,27.5 parent: 2 - uid: 3186 components: - type: Transform - pos: -193.5,-16.5 + pos: -64.5,27.5 parent: 2 - uid: 3187 components: - type: Transform - pos: -193.5,-17.5 + pos: -62.5,27.5 parent: 2 - uid: 3188 components: - type: Transform - pos: -194.5,-16.5 + pos: -61.5,27.5 parent: 2 - uid: 3189 components: - type: Transform - pos: -194.5,-2.5 + pos: -60.5,27.5 parent: 2 - uid: 3190 components: - type: Transform - pos: -193.5,-1.5 + pos: -59.5,27.5 parent: 2 - uid: 3191 components: - type: Transform - pos: -194.5,-1.5 + pos: -58.5,27.5 parent: 2 - uid: 3192 components: - type: Transform - pos: -195.5,-1.5 + pos: -57.5,27.5 parent: 2 - uid: 3193 components: - type: Transform - pos: -197.5,-2.5 + pos: -56.5,27.5 parent: 2 - uid: 3194 components: - type: Transform - pos: -197.5,-1.5 + pos: -55.5,27.5 parent: 2 - uid: 3195 components: - type: Transform - pos: -198.5,-1.5 + pos: -63.5,27.5 parent: 2 - uid: 3196 components: - type: Transform - pos: -199.5,-1.5 + pos: -55.5,26.5 parent: 2 - uid: 3197 components: - type: Transform - pos: -142.5,-7.5 + pos: -55.5,25.5 parent: 2 - uid: 3198 components: - type: Transform - pos: -116.5,-13.5 + pos: -56.5,25.5 parent: 2 - uid: 3199 components: - type: Transform - pos: -140.5,-7.5 + pos: -57.5,25.5 parent: 2 - uid: 3200 components: - type: Transform - pos: -141.5,-7.5 + pos: -58.5,25.5 parent: 2 - uid: 3201 components: - type: Transform - pos: -118.5,17.5 + pos: -59.5,25.5 parent: 2 - uid: 3202 components: - type: Transform - pos: -112.5,18.5 + pos: -60.5,25.5 parent: 2 - uid: 3203 components: - type: Transform - pos: -111.5,17.5 + pos: -61.5,25.5 parent: 2 - uid: 3204 components: - type: Transform - pos: -110.5,18.5 + pos: -62.5,25.5 parent: 2 - uid: 3205 components: - type: Transform - pos: -117.5,18.5 + pos: -63.5,25.5 parent: 2 - uid: 3206 components: - type: Transform - pos: -118.5,18.5 + pos: -64.5,25.5 parent: 2 - uid: 3207 components: - type: Transform - pos: -119.5,18.5 + pos: -65.5,25.5 parent: 2 - uid: 3208 components: - type: Transform - pos: -112.5,18.5 + pos: -66.5,25.5 parent: 2 - uid: 3209 components: - type: Transform - pos: -111.5,18.5 + pos: -67.5,25.5 parent: 2 - uid: 3210 components: - type: Transform - pos: -111.5,14.5 + pos: -68.5,25.5 parent: 2 - uid: 3211 components: - type: Transform - pos: -110.5,14.5 + pos: -69.5,25.5 parent: 2 - uid: 3212 components: - type: Transform - pos: -111.5,13.5 + pos: -70.5,25.5 parent: 2 - uid: 3213 components: - type: Transform - pos: -117.5,13.5 + pos: -71.5,25.5 parent: 2 - uid: 3214 components: - type: Transform - pos: -118.5,13.5 + pos: -72.5,25.5 parent: 2 - uid: 3215 components: - type: Transform - pos: -114.5,14.5 + pos: -73.5,25.5 parent: 2 - uid: 3216 components: - type: Transform - pos: -108.5,-12.5 + pos: -74.5,25.5 parent: 2 - uid: 3217 components: - type: Transform - pos: -65.5,15.5 + pos: -75.5,25.5 parent: 2 - uid: 3218 components: - type: Transform - pos: -64.5,15.5 + pos: -76.5,25.5 parent: 2 - uid: 3219 components: - type: Transform - pos: -63.5,15.5 + pos: -55.5,24.5 parent: 2 - uid: 3220 components: - type: Transform - pos: -195.5,16.5 + pos: -78.5,26.5 parent: 2 - uid: 3221 components: - type: Transform - pos: -197.5,14.5 + pos: -79.5,26.5 parent: 2 - uid: 3222 components: - type: Transform - pos: -197.5,16.5 + pos: -80.5,26.5 parent: 2 - uid: 3223 components: - type: Transform - pos: -85.5,14.5 + pos: -81.5,26.5 parent: 2 - uid: 3224 components: - type: Transform - pos: -86.5,14.5 + pos: -81.5,25.5 parent: 2 - uid: 3225 components: - type: Transform - pos: -77.5,-9.5 + pos: -81.5,24.5 parent: 2 - uid: 3226 components: - type: Transform - pos: -77.5,-8.5 + pos: -81.5,23.5 parent: 2 - uid: 3227 components: - type: Transform - pos: -62.5,52.5 + pos: -81.5,22.5 parent: 2 - uid: 3228 components: - type: Transform - pos: -142.5,-2.5 + pos: -81.5,21.5 parent: 2 - uid: 3229 components: - type: Transform - pos: -141.5,-2.5 + pos: -82.5,25.5 parent: 2 - uid: 3230 components: - type: Transform - pos: -140.5,-2.5 + pos: -83.5,25.5 parent: 2 - uid: 3231 components: - type: Transform - pos: -139.5,-2.5 + pos: -81.5,17.5 parent: 2 - uid: 3232 components: - type: Transform - pos: -138.5,-2.5 + pos: -81.5,16.5 parent: 2 - uid: 3233 components: - type: Transform - pos: -138.5,-3.5 + pos: -82.5,16.5 parent: 2 - uid: 3234 components: - type: Transform - pos: -60.5,49.5 + pos: -80.5,17.5 parent: 2 - uid: 3235 components: - type: Transform - pos: -59.5,49.5 + pos: -125.5,10.5 parent: 2 - uid: 3236 components: - type: Transform - pos: -58.5,49.5 + pos: -125.5,9.5 parent: 2 - uid: 3237 components: - type: Transform - pos: -57.5,49.5 + pos: -125.5,8.5 parent: 2 - uid: 3238 components: - type: Transform - pos: -56.5,49.5 + pos: -125.5,7.5 parent: 2 - uid: 3239 components: - type: Transform - pos: -56.5,50.5 + pos: -71.5,-16.5 parent: 2 - uid: 3240 components: - type: Transform - pos: -55.5,50.5 - parent: 2 - - uid: 3241 - components: - - type: Transform - pos: -54.5,50.5 + pos: -98.5,-9.5 parent: 2 - uid: 3242 components: - type: Transform - pos: -53.5,50.5 + pos: -157.5,-18.5 parent: 2 - uid: 3243 components: - type: Transform - pos: -53.5,49.5 + pos: -156.5,-7.5 parent: 2 - uid: 3244 components: - type: Transform - pos: -53.5,51.5 + pos: -153.5,0.5 parent: 2 - uid: 3245 components: - type: Transform - pos: -53.5,52.5 + pos: -174.5,12.5 parent: 2 - uid: 3246 components: - type: Transform - pos: -53.5,48.5 + pos: -171.5,13.5 parent: 2 - uid: 3247 components: - type: Transform - pos: -53.5,47.5 + pos: -169.5,12.5 parent: 2 - uid: 3248 components: - type: Transform - pos: -60.5,50.5 + pos: -174.5,11.5 parent: 2 - uid: 3249 components: - type: Transform - pos: -60.5,51.5 + pos: -174.5,10.5 parent: 2 - uid: 3250 components: - type: Transform - pos: -60.5,52.5 + pos: -168.5,13.5 parent: 2 - uid: 3251 components: - type: Transform - pos: -61.5,52.5 + pos: -174.5,9.5 parent: 2 - uid: 3252 components: - type: Transform - pos: -63.5,52.5 + pos: -168.5,12.5 parent: 2 - uid: 3253 components: - type: Transform - pos: -65.5,48.5 + pos: -171.5,12.5 parent: 2 - uid: 3254 components: - type: Transform - pos: -61.5,48.5 + pos: -174.5,13.5 parent: 2 - uid: 3255 components: - type: Transform - pos: -60.5,48.5 + pos: -24.5,-15.5 parent: 2 - uid: 3256 components: - type: Transform - pos: -74.5,48.5 + pos: -24.5,-16.5 parent: 2 - uid: 3257 components: - type: Transform - pos: -73.5,48.5 + pos: -24.5,-17.5 parent: 2 - uid: 3258 components: - type: Transform - pos: -72.5,48.5 + pos: -24.5,-14.5 parent: 2 - uid: 3259 components: - type: Transform - pos: -71.5,48.5 + pos: -155.5,-8.5 parent: 2 - uid: 3260 components: - type: Transform - pos: -70.5,48.5 + pos: -157.5,-6.5 parent: 2 - uid: 3261 components: - type: Transform - pos: -69.5,48.5 + pos: -179.5,-2.5 parent: 2 - uid: 3262 components: - type: Transform - pos: -75.5,49.5 + pos: -183.5,-5.5 parent: 2 - uid: 3263 components: - type: Transform - pos: -76.5,49.5 + pos: -184.5,-5.5 parent: 2 - uid: 3264 components: - type: Transform - pos: -77.5,49.5 + pos: -185.5,-5.5 parent: 2 - uid: 3265 components: - type: Transform - pos: -74.5,49.5 + pos: -184.5,-4.5 parent: 2 - uid: 3266 components: - type: Transform - pos: -77.5,48.5 + pos: -187.5,-5.5 parent: 2 - uid: 3267 components: - type: Transform - pos: -77.5,47.5 + pos: -188.5,-5.5 parent: 2 - uid: 3268 components: - type: Transform - pos: -77.5,50.5 + pos: -189.5,-5.5 parent: 2 - uid: 3269 components: - type: Transform - pos: -77.5,51.5 + pos: -188.5,-4.5 parent: 2 - uid: 3270 components: - type: Transform - pos: -76.5,52.5 + pos: -205.5,11.5 parent: 2 - uid: 3271 components: - type: Transform - pos: -77.5,52.5 + pos: -205.5,4.5 parent: 2 - uid: 3272 components: - type: Transform - pos: -76.5,47.5 + pos: -204.5,4.5 parent: 2 - uid: 3273 components: - type: Transform - pos: -76.5,46.5 + pos: -200.5,7.5 parent: 2 - uid: 3274 components: - type: Transform - pos: -46.5,15.5 + pos: -191.5,4.5 parent: 2 - uid: 3275 components: - type: Transform - pos: -144.5,-8.5 + pos: -35.5,-10.5 parent: 2 - uid: 3276 components: - type: Transform - pos: -137.5,-8.5 + pos: -34.5,-10.5 parent: 2 - uid: 3277 components: - type: Transform - pos: -137.5,-7.5 + pos: -33.5,-10.5 parent: 2 - uid: 3278 components: - type: Transform - pos: -135.5,-5.5 + pos: -32.5,-10.5 parent: 2 - uid: 3279 components: - type: Transform - pos: -135.5,-7.5 + pos: -31.5,-10.5 parent: 2 - uid: 3280 components: - type: Transform - pos: -113.5,-1.5 + pos: -30.5,-10.5 parent: 2 - uid: 3281 components: - type: Transform - pos: -113.5,-2.5 + pos: -43.5,35.5 parent: 2 - uid: 3282 components: - type: Transform - pos: -115.5,0.5 + pos: -42.5,35.5 parent: 2 - uid: 3283 components: - type: Transform - pos: -116.5,0.5 + pos: -43.5,32.5 parent: 2 - uid: 3284 components: - type: Transform - pos: -117.5,0.5 + pos: -39.5,32.5 parent: 2 - uid: 3285 components: - type: Transform - pos: -117.5,-0.5 + pos: -39.5,33.5 parent: 2 - uid: 3286 components: - type: Transform - pos: -119.5,1.5 + pos: -44.5,31.5 parent: 2 - uid: 3287 components: - type: Transform - pos: -119.5,2.5 + pos: -44.5,34.5 parent: 2 - uid: 3288 components: - type: Transform - pos: -120.5,1.5 + pos: -41.5,33.5 parent: 2 - uid: 3289 components: - type: Transform - pos: -120.5,0.5 + pos: -43.5,31.5 parent: 2 - uid: 3290 components: - type: Transform - pos: -118.5,0.5 + pos: -75.5,-8.5 parent: 2 - uid: 3291 components: - type: Transform - pos: -102.5,-27.5 + pos: -72.5,-6.5 parent: 2 - uid: 3292 components: - type: Transform - pos: -102.5,-26.5 + pos: -78.5,-8.5 parent: 2 - uid: 3293 components: - type: Transform - pos: -102.5,-25.5 + pos: -76.5,1.5 parent: 2 - uid: 3294 components: - type: Transform - pos: -102.5,-24.5 + pos: -72.5,-2.5 parent: 2 - uid: 3295 components: - type: Transform - pos: -101.5,-24.5 + pos: -72.5,1.5 parent: 2 - uid: 3296 components: - type: Transform - pos: -100.5,-24.5 + pos: -74.5,1.5 parent: 2 - uid: 3297 components: - type: Transform - pos: -100.5,-23.5 + pos: -78.5,1.5 parent: 2 - uid: 3298 components: - type: Transform - pos: -88.5,-6.5 + pos: -77.5,1.5 parent: 2 - uid: 3299 components: - type: Transform - pos: -88.5,-7.5 + pos: -77.5,-8.5 parent: 2 - uid: 3300 components: - type: Transform - pos: -88.5,-8.5 + pos: -78.5,-9.5 parent: 2 - uid: 3301 components: - type: Transform - pos: -87.5,-8.5 + pos: -79.5,1.5 parent: 2 - uid: 3302 components: - type: Transform - pos: -86.5,-8.5 + pos: -73.5,1.5 parent: 2 - uid: 3303 components: - type: Transform - pos: -85.5,-8.5 + pos: -72.5,2.5 parent: 2 - uid: 3304 components: - type: Transform - pos: -85.5,-9.5 + pos: -72.5,-5.5 parent: 2 - uid: 3305 components: - type: Transform - pos: -85.5,-10.5 + pos: -72.5,-9.5 parent: 2 - uid: 3306 components: - type: Transform - pos: -84.5,-10.5 + pos: -76.5,-8.5 parent: 2 - uid: 3307 components: - type: Transform - pos: -84.5,-11.5 + pos: -72.5,-4.5 parent: 2 - uid: 3308 components: - type: Transform - pos: -84.5,-12.5 + pos: -74.5,-8.5 parent: 2 - uid: 3309 components: - type: Transform - pos: -81.5,-15.5 + pos: -73.5,-8.5 parent: 2 - uid: 3310 components: - type: Transform - pos: -82.5,-15.5 + pos: -72.5,-8.5 parent: 2 - uid: 3311 components: - type: Transform - pos: -83.5,-15.5 + pos: -60.5,-26.5 parent: 2 - uid: 3312 components: - type: Transform - pos: -84.5,-15.5 + pos: -58.5,-24.5 parent: 2 - uid: 3313 components: - type: Transform - pos: -71.5,-15.5 + pos: -59.5,-24.5 parent: 2 - uid: 3314 components: - type: Transform - pos: -72.5,-15.5 + pos: -188.5,-26.5 parent: 2 - uid: 3315 components: - type: Transform - pos: -73.5,-15.5 + pos: -186.5,-26.5 parent: 2 - uid: 3316 components: - type: Transform - pos: -74.5,-15.5 + pos: -58.5,-26.5 parent: 2 - uid: 3317 components: - type: Transform - pos: -75.5,-15.5 + pos: -56.5,-26.5 parent: 2 - uid: 3318 components: - type: Transform - pos: -76.5,-15.5 + pos: -57.5,-26.5 parent: 2 - uid: 3319 components: - type: Transform - pos: -77.5,-15.5 + pos: -186.5,-28.5 parent: 2 - uid: 3320 components: - type: Transform - pos: -78.5,-15.5 + pos: -188.5,-28.5 parent: 2 - uid: 3321 components: - type: Transform - pos: -79.5,-15.5 + pos: -61.5,-26.5 parent: 2 - uid: 3322 components: - type: Transform - pos: -80.5,-15.5 + pos: -186.5,-31.5 parent: 2 - uid: 3323 components: - type: Transform - pos: -84.5,-14.5 + pos: -187.5,-31.5 parent: 2 - uid: 3324 components: - type: Transform - pos: -218.5,-3.5 + pos: -185.5,-31.5 parent: 2 - uid: 3325 components: - type: Transform - pos: -217.5,-3.5 + pos: -188.5,-31.5 parent: 2 - uid: 3326 components: - type: Transform - pos: -140.5,-1.5 + pos: -186.5,-29.5 parent: 2 - uid: 3327 components: - type: Transform - pos: -13.5,11.5 + pos: -186.5,-22.5 parent: 2 - uid: 3328 components: - type: Transform - pos: -13.5,12.5 + pos: -186.5,-23.5 parent: 2 - uid: 3329 components: - type: Transform - pos: -126.5,-2.5 + pos: -187.5,-24.5 parent: 2 - uid: 3330 components: - type: Transform - pos: -127.5,-2.5 + pos: -186.5,-25.5 parent: 2 - uid: 3331 components: - type: Transform - pos: -127.5,-1.5 + pos: -186.5,-24.5 parent: 2 - uid: 3332 components: - type: Transform - pos: -127.5,-0.5 + pos: -188.5,-24.5 parent: 2 - uid: 3333 components: - type: Transform - pos: -127.5,0.5 + pos: -190.5,-24.5 parent: 2 - uid: 3334 components: - type: Transform - pos: -127.5,1.5 + pos: -190.5,-29.5 parent: 2 - uid: 3335 components: - type: Transform - pos: -88.5,-20.5 + pos: -190.5,-23.5 parent: 2 - uid: 3336 components: - type: Transform - pos: -87.5,-20.5 + pos: -187.5,-28.5 parent: 2 - uid: 3337 components: - type: Transform - pos: -86.5,-20.5 + pos: -186.5,-30.5 parent: 2 - uid: 3338 components: - type: Transform - pos: -87.5,-19.5 + pos: -189.5,-24.5 parent: 2 - uid: 3339 components: - type: Transform - pos: -208.5,8.5 + pos: -58.5,-25.5 parent: 2 - uid: 3340 components: - type: Transform - pos: -209.5,8.5 + pos: -187.5,-26.5 parent: 2 - uid: 3341 components: - type: Transform - pos: -210.5,8.5 + pos: -186.5,-27.5 parent: 2 - uid: 3342 components: - type: Transform - pos: -210.5,9.5 + pos: -189.5,-28.5 parent: 2 - uid: 3343 components: - type: Transform - pos: -210.5,7.5 + pos: -190.5,-28.5 parent: 2 - uid: 3344 components: - type: Transform - pos: -208.5,9.5 + pos: -59.5,-27.5 parent: 2 - uid: 3345 components: - type: Transform - pos: -208.5,10.5 + pos: -59.5,-28.5 parent: 2 - uid: 3346 components: - type: Transform - pos: -208.5,11.5 + pos: -57.5,-27.5 parent: 2 - uid: 3347 components: - type: Transform - pos: -208.5,12.5 + pos: -57.5,-28.5 parent: 2 - uid: 3348 components: - type: Transform - pos: -208.5,13.5 + pos: -125.5,11.5 parent: 2 - uid: 3349 components: - type: Transform - pos: -208.5,14.5 + pos: -125.5,12.5 parent: 2 - uid: 3350 components: - type: Transform - pos: -208.5,7.5 + pos: -125.5,13.5 parent: 2 - uid: 3351 components: - type: Transform - pos: -208.5,6.5 + pos: -222.5,-3.5 parent: 2 - uid: 3352 components: - type: Transform - pos: -208.5,5.5 + pos: -222.5,-2.5 parent: 2 - uid: 3353 components: - type: Transform - pos: -208.5,4.5 + pos: -222.5,-1.5 parent: 2 - uid: 3354 components: - type: Transform - pos: -208.5,3.5 + pos: -223.5,-1.5 parent: 2 - uid: 3355 components: - type: Transform - pos: -208.5,2.5 + pos: -221.5,-1.5 parent: 2 - uid: 3356 components: - type: Transform - pos: -208.5,1.5 + pos: -220.5,-1.5 parent: 2 - uid: 3357 components: - type: Transform - pos: -77.5,25.5 + pos: -220.5,-0.5 parent: 2 - uid: 3358 components: - type: Transform - pos: -77.5,26.5 + pos: -220.5,0.5 parent: 2 - uid: 3359 components: - type: Transform - pos: -77.5,27.5 + pos: -224.5,-1.5 parent: 2 - uid: 3360 components: - type: Transform - pos: -76.5,27.5 + pos: -224.5,-0.5 parent: 2 - uid: 3361 components: - type: Transform - pos: -75.5,27.5 + pos: -224.5,0.5 parent: 2 - uid: 3362 components: - type: Transform - pos: -74.5,27.5 + pos: -228.5,-8.5 parent: 2 - uid: 3363 components: - type: Transform - pos: -73.5,27.5 + pos: -227.5,-17.5 parent: 2 - uid: 3364 components: - type: Transform - pos: -72.5,27.5 + pos: -227.5,-8.5 parent: 2 - uid: 3365 components: - type: Transform - pos: -71.5,27.5 + pos: -223.5,-39.5 parent: 2 - uid: 3366 components: - type: Transform - pos: -70.5,27.5 + pos: -227.5,-6.5 parent: 2 - uid: 3367 components: - type: Transform - pos: -69.5,27.5 + pos: -227.5,-5.5 parent: 2 - uid: 3368 components: - type: Transform - pos: -68.5,27.5 + pos: -227.5,-4.5 parent: 2 - uid: 3369 components: - type: Transform - pos: -67.5,27.5 + pos: -226.5,-17.5 parent: 2 - uid: 3370 components: - type: Transform - pos: -66.5,27.5 + pos: -226.5,-13.5 parent: 2 - uid: 3371 components: - type: Transform - pos: -65.5,27.5 + pos: -226.5,-12.5 parent: 2 - uid: 3372 components: - type: Transform - pos: -64.5,27.5 + pos: -226.5,-11.5 parent: 2 - uid: 3373 components: - type: Transform - pos: -62.5,27.5 + pos: -226.5,-10.5 parent: 2 - uid: 3374 components: - type: Transform - pos: -61.5,27.5 + pos: -226.5,-9.5 parent: 2 - uid: 3375 components: - type: Transform - pos: -60.5,27.5 + pos: -226.5,-8.5 parent: 2 - uid: 3376 components: - type: Transform - pos: -59.5,27.5 + pos: -226.5,-7.5 parent: 2 - uid: 3377 components: - type: Transform - pos: -58.5,27.5 + pos: -226.5,-6.5 parent: 2 - uid: 3378 components: - type: Transform - pos: -57.5,27.5 + pos: -225.5,-19.5 parent: 2 - uid: 3379 components: - type: Transform - pos: -56.5,27.5 + pos: -225.5,-18.5 parent: 2 - uid: 3380 components: - type: Transform - pos: -55.5,27.5 + pos: -225.5,-17.5 parent: 2 - uid: 3381 components: - type: Transform - pos: -63.5,27.5 + pos: -225.5,-16.5 parent: 2 - uid: 3382 components: - type: Transform - pos: -55.5,26.5 + pos: -225.5,-14.5 parent: 2 - uid: 3383 components: - type: Transform - pos: -55.5,25.5 + pos: -225.5,-13.5 parent: 2 - uid: 3384 components: - type: Transform - pos: -56.5,25.5 + pos: -225.5,-8.5 parent: 2 - uid: 3385 components: - type: Transform - pos: -57.5,25.5 + pos: -224.5,-19.5 parent: 2 - uid: 3386 components: - type: Transform - pos: -58.5,25.5 + pos: -224.5,-17.5 parent: 2 - uid: 3387 components: - type: Transform - pos: -59.5,25.5 + pos: -224.5,-13.5 parent: 2 - uid: 3388 components: - type: Transform - pos: -60.5,25.5 + pos: -224.5,-8.5 parent: 2 - uid: 3389 components: - type: Transform - pos: -61.5,25.5 + pos: -223.5,-19.5 parent: 2 - uid: 3390 components: - type: Transform - pos: -62.5,25.5 + pos: -223.5,-11.5 parent: 2 - uid: 3391 components: - type: Transform - pos: -63.5,25.5 + pos: -222.5,-19.5 parent: 2 - uid: 3392 components: - type: Transform - pos: -64.5,25.5 + pos: -222.5,-11.5 parent: 2 - uid: 3393 components: - type: Transform - pos: -65.5,25.5 + pos: -222.5,-10.5 parent: 2 - uid: 3394 components: - type: Transform - pos: -66.5,25.5 + pos: -222.5,-6.5 parent: 2 - uid: 3395 components: - type: Transform - pos: -67.5,25.5 + pos: -222.5,-5.5 parent: 2 - uid: 3396 components: - type: Transform - pos: -68.5,25.5 + pos: -222.5,-4.5 parent: 2 - uid: 3397 components: - type: Transform - pos: -69.5,25.5 + pos: -221.5,-19.5 parent: 2 - uid: 3398 components: - type: Transform - pos: -70.5,25.5 + pos: -221.5,-17.5 parent: 2 - uid: 3399 components: - type: Transform - pos: -71.5,25.5 + pos: -221.5,-10.5 parent: 2 - uid: 3400 components: - type: Transform - pos: -72.5,25.5 + pos: -220.5,-19.5 parent: 2 - uid: 3401 components: - type: Transform - pos: -73.5,25.5 + pos: -220.5,-17.5 parent: 2 - uid: 3402 components: - type: Transform - pos: -74.5,25.5 + pos: -220.5,-13.5 parent: 2 - uid: 3403 components: - type: Transform - pos: -75.5,25.5 + pos: -220.5,-10.5 parent: 2 - uid: 3404 components: - type: Transform - pos: -76.5,25.5 + pos: -220.5,-8.5 parent: 2 - uid: 3405 components: - type: Transform - pos: -55.5,24.5 + pos: -219.5,-19.5 parent: 2 - uid: 3406 components: - type: Transform - pos: -78.5,26.5 + pos: -219.5,-18.5 parent: 2 - uid: 3407 components: - type: Transform - pos: -79.5,26.5 + pos: -219.5,-17.5 parent: 2 - uid: 3408 components: - type: Transform - pos: -80.5,26.5 + pos: -219.5,-16.5 parent: 2 - uid: 3409 components: - type: Transform - pos: -81.5,26.5 + pos: -219.5,-15.5 parent: 2 - uid: 3410 components: - type: Transform - pos: -81.5,25.5 + pos: -219.5,-13.5 parent: 2 - uid: 3411 components: - type: Transform - pos: -81.5,24.5 + pos: -219.5,-8.5 parent: 2 - uid: 3412 components: - type: Transform - pos: -81.5,23.5 + pos: -221.5,-9.5 parent: 2 - uid: 3413 components: - type: Transform - pos: -81.5,22.5 + pos: -218.5,-19.5 parent: 2 - uid: 3414 components: - type: Transform - pos: -81.5,21.5 + pos: -218.5,-16.5 parent: 2 - uid: 3415 components: - type: Transform - pos: -82.5,25.5 + pos: -218.5,-13.5 parent: 2 - uid: 3416 components: - type: Transform - pos: -83.5,25.5 + pos: -218.5,-12.5 parent: 2 - uid: 3417 components: - type: Transform - pos: -81.5,17.5 + pos: -218.5,-11.5 parent: 2 - uid: 3418 components: - type: Transform - pos: -81.5,16.5 + pos: -218.5,-10.5 parent: 2 - uid: 3419 components: - type: Transform - pos: -82.5,16.5 + pos: -218.5,-9.5 parent: 2 - uid: 3420 components: - type: Transform - pos: -80.5,17.5 + pos: -218.5,-8.5 parent: 2 - uid: 3421 components: - type: Transform - pos: -125.5,10.5 + pos: -218.5,-7.5 parent: 2 - uid: 3422 components: - type: Transform - pos: -125.5,9.5 + pos: -218.5,-6.5 parent: 2 - uid: 3423 components: - type: Transform - pos: -125.5,8.5 + pos: -217.5,-19.5 parent: 2 - uid: 3424 components: - type: Transform - pos: -125.5,7.5 + pos: -217.5,-16.5 parent: 2 - uid: 3425 components: - type: Transform - pos: -71.5,-16.5 + pos: -217.5,-13.5 parent: 2 - uid: 3426 components: - type: Transform - pos: -98.5,-9.5 + pos: -217.5,-8.5 parent: 2 - uid: 3427 components: - type: Transform - pos: -75.5,-21.5 + pos: -217.5,-6.5 parent: 2 - uid: 3428 components: - type: Transform - pos: -157.5,-18.5 + pos: -217.5,-5.5 parent: 2 - uid: 3429 components: - type: Transform - pos: -156.5,-7.5 + pos: -216.5,-16.5 parent: 2 - uid: 3430 components: - type: Transform - pos: -153.5,0.5 + pos: -216.5,-8.5 parent: 2 - uid: 3431 components: - type: Transform - pos: -174.5,12.5 + pos: -223.5,-35.5 parent: 2 - uid: 3432 components: - type: Transform - pos: -171.5,13.5 + pos: -223.5,-34.5 parent: 2 - uid: 3433 components: - type: Transform - pos: -169.5,12.5 + pos: -223.5,-31.5 parent: 2 - uid: 3434 components: - type: Transform - pos: -174.5,11.5 + pos: -223.5,-30.5 parent: 2 - uid: 3435 components: - type: Transform - pos: -174.5,10.5 + pos: -223.5,-29.5 parent: 2 - uid: 3436 components: - type: Transform - pos: -168.5,13.5 + pos: -223.5,-28.5 parent: 2 - uid: 3437 components: - type: Transform - pos: -174.5,9.5 + pos: -223.5,-27.5 parent: 2 - uid: 3438 components: - type: Transform - pos: -168.5,12.5 + pos: -222.5,-34.5 parent: 2 - uid: 3439 components: - type: Transform - pos: -171.5,12.5 + pos: -222.5,-31.5 parent: 2 - uid: 3440 components: - type: Transform - pos: -174.5,13.5 + pos: -222.5,-25.5 parent: 2 - uid: 3441 components: - type: Transform - pos: -24.5,-15.5 + pos: -222.5,-23.5 parent: 2 - uid: 3442 components: - type: Transform - pos: -24.5,-16.5 + pos: -221.5,-34.5 parent: 2 - uid: 3443 components: - type: Transform - pos: -24.5,-17.5 + pos: -221.5,-31.5 parent: 2 - uid: 3444 components: - type: Transform - pos: -24.5,-14.5 + pos: -220.5,-34.5 parent: 2 - uid: 3445 components: - type: Transform - pos: -155.5,-8.5 + pos: -220.5,-31.5 parent: 2 - uid: 3446 components: - type: Transform - pos: -157.5,-6.5 + pos: -220.5,-25.5 parent: 2 - uid: 3447 components: - type: Transform - pos: -179.5,-2.5 + pos: -219.5,-34.5 parent: 2 - uid: 3448 components: - type: Transform - pos: -183.5,-5.5 + pos: -219.5,-31.5 parent: 2 - uid: 3449 components: - type: Transform - pos: -184.5,-5.5 + pos: -219.5,-28.5 parent: 2 - uid: 3450 components: - type: Transform - pos: -185.5,-5.5 + pos: -219.5,-27.5 parent: 2 - uid: 3451 components: - type: Transform - pos: -184.5,-4.5 + pos: -219.5,-26.5 parent: 2 - uid: 3452 components: - type: Transform - pos: -187.5,-5.5 + pos: -219.5,-25.5 parent: 2 - uid: 3453 components: - type: Transform - pos: -188.5,-5.5 + pos: -219.5,-23.5 parent: 2 - uid: 3454 components: - type: Transform - pos: -189.5,-5.5 + pos: -219.5,-22.5 parent: 2 - uid: 3455 components: - type: Transform - pos: -188.5,-4.5 + pos: -219.5,-21.5 parent: 2 - uid: 3456 components: - type: Transform - pos: -205.5,11.5 + pos: -219.5,-20.5 parent: 2 - uid: 3457 components: - type: Transform - pos: -204.5,11.5 + pos: -218.5,-35.5 parent: 2 - uid: 3458 components: - type: Transform - pos: -203.5,11.5 + pos: -218.5,-34.5 parent: 2 - uid: 3459 components: - type: Transform - pos: -203.5,12.5 + pos: -218.5,-33.5 parent: 2 - uid: 3460 components: - type: Transform - pos: -203.5,10.5 + pos: -218.5,-32.5 parent: 2 - uid: 3461 components: - type: Transform - pos: -205.5,4.5 + pos: -218.5,-31.5 parent: 2 - uid: 3462 components: - type: Transform - pos: -204.5,4.5 + pos: -218.5,-30.5 parent: 2 - uid: 3463 components: - type: Transform - pos: -203.5,4.5 + pos: -218.5,-29.5 parent: 2 - uid: 3464 components: - type: Transform - pos: -203.5,5.5 + pos: -218.5,-28.5 parent: 2 - uid: 3465 components: - type: Transform - pos: -203.5,3.5 + pos: -218.5,-25.5 parent: 2 - uid: 3466 components: - type: Transform - pos: -187.5,4.5 + pos: -218.5,-23.5 parent: 2 - uid: 3467 components: - type: Transform - pos: -188.5,4.5 + pos: -217.5,-32.5 parent: 2 - uid: 3468 components: - type: Transform - pos: -189.5,4.5 + pos: -217.5,-29.5 parent: 2 - uid: 3469 components: - type: Transform - pos: -189.5,5.5 + pos: -217.5,-20.5 parent: 2 - uid: 3470 components: - type: Transform - pos: -189.5,3.5 + pos: -216.5,-32.5 parent: 2 - uid: 3471 components: - type: Transform - pos: -187.5,11.5 + pos: -216.5,-29.5 parent: 2 - uid: 3472 components: - type: Transform - pos: -188.5,11.5 + pos: -216.5,-28.5 parent: 2 - uid: 3473 components: - type: Transform - pos: -189.5,11.5 + pos: -216.5,-27.5 parent: 2 - uid: 3474 components: - type: Transform - pos: -189.5,10.5 + pos: -216.5,-23.5 parent: 2 - uid: 3475 components: - type: Transform - pos: -189.5,12.5 + pos: -216.5,-22.5 parent: 2 - uid: 3476 components: - type: Transform - pos: -192.5,4.5 + pos: -216.5,-21.5 parent: 2 - uid: 3477 components: - type: Transform - pos: -200.5,4.5 + pos: -216.5,-20.5 parent: 2 - uid: 3478 components: - type: Transform - pos: -35.5,-10.5 + pos: -215.5,-32.5 parent: 2 - uid: 3479 components: - type: Transform - pos: -34.5,-10.5 + pos: -215.5,-27.5 parent: 2 - uid: 3480 components: - type: Transform - pos: -33.5,-10.5 + pos: -215.5,-26.5 parent: 2 - uid: 3481 components: - type: Transform - pos: -32.5,-10.5 + pos: -215.5,-25.5 parent: 2 - uid: 3482 components: - type: Transform - pos: -31.5,-10.5 + pos: -215.5,-23.5 parent: 2 - uid: 3483 components: - type: Transform - pos: -30.5,-10.5 + pos: -229.5,-32.5 parent: 2 - - uid: 17040 - components: - - type: Transform - pos: 10.5,-6.5 - parent: 17021 - - uid: 17041 - components: - - type: Transform - pos: 10.5,-5.5 - parent: 17021 - - uid: 17042 - components: - - type: Transform - pos: 11.5,-5.5 - parent: 17021 - - uid: 17043 - components: - - type: Transform - pos: 12.5,-5.5 - parent: 17021 - - uid: 17044 - components: - - type: Transform - pos: 11.5,-4.5 - parent: 17021 - - uid: 17045 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 17021 - - uid: 17046 - components: - - type: Transform - pos: 14.5,-6.5 - parent: 17021 - - uid: 17047 - components: - - type: Transform - pos: 13.5,-5.5 - parent: 17021 - - uid: 17048 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 17021 - - uid: 17049 - components: - - type: Transform - pos: 14.5,-5.5 - parent: 17021 - - uid: 17050 - components: - - type: Transform - pos: 11.5,-2.5 - parent: 17021 - - uid: 17051 - components: - - type: Transform - pos: 10.5,-1.5 - parent: 17021 - - uid: 17052 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 17021 - - uid: 17053 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 17021 - - uid: 17054 - components: - - type: Transform - pos: 10.5,-0.5 - parent: 17021 - - uid: 17055 - components: - - type: Transform - pos: 15.5,-4.5 - parent: 17021 - - uid: 17056 - components: - - type: Transform - pos: 12.5,-1.5 - parent: 17021 - - uid: 17057 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 17021 - - uid: 17058 - components: - - type: Transform - pos: 13.5,-1.5 - parent: 17021 - - uid: 17059 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 17021 - - uid: 17060 - components: - - type: Transform - pos: 14.5,-1.5 - parent: 17021 - - uid: 17061 - components: - - type: Transform - pos: 15.5,-1.5 - parent: 17021 - - uid: 17062 - components: - - type: Transform - pos: 14.5,-0.5 - parent: 17021 -- proto: CableApcStack - entities: - uid: 3484 components: - type: Transform - pos: -91.2788,5.4589505 + pos: -229.5,-24.5 parent: 2 - uid: 3485 components: - type: Transform - pos: -91.310074,5.8027005 + pos: -228.5,-35.5 parent: 2 - uid: 3486 components: - type: Transform - pos: -60.466816,-6.1961656 + pos: -228.5,-32.5 parent: 2 - uid: 3487 components: - type: Transform - pos: -54.506535,-6.5146427 + pos: -228.5,-28.5 parent: 2 -- proto: CablecuffsBroken - entities: - uid: 3488 components: - - type: MetaData - desc: Кажется он больше не спасёт своего владе.... стоп, почему он пахнет сахаром? - name: Порванный жгут - type: Transform - pos: -98.78048,-6.315797 + pos: -228.5,-24.5 parent: 2 -- proto: CableHV - entities: - uid: 3489 components: - type: Transform - pos: -79.5,-6.5 + pos: -228.5,-20.5 parent: 2 - uid: 3490 components: - type: Transform - pos: -127.5,-13.5 + pos: -227.5,-35.5 parent: 2 - uid: 3491 components: - type: Transform - pos: -60.5,-6.5 + pos: -227.5,-34.5 parent: 2 - uid: 3492 components: - type: Transform - pos: -62.5,-11.5 + pos: -227.5,-32.5 parent: 2 - uid: 3493 components: - type: Transform - pos: -58.5,-7.5 + pos: -227.5,-28.5 parent: 2 - uid: 3494 components: - type: Transform - pos: -62.5,-10.5 + pos: -227.5,-24.5 parent: 2 - uid: 3495 components: - type: Transform - pos: -57.5,-9.5 + pos: -227.5,-20.5 parent: 2 - uid: 3496 components: - type: Transform - pos: -57.5,-8.5 + pos: -226.5,-34.5 parent: 2 - uid: 3497 components: - type: Transform - pos: -60.5,-5.5 + pos: -226.5,-33.5 parent: 2 - uid: 3498 components: - type: Transform - pos: -59.5,-7.5 + pos: -226.5,-32.5 parent: 2 - uid: 3499 components: - type: Transform - pos: -60.5,-7.5 + pos: -226.5,-29.5 parent: 2 - uid: 3500 components: - type: Transform - pos: -61.5,-7.5 + pos: -226.5,-28.5 parent: 2 - uid: 3501 components: - type: Transform - pos: -57.5,-7.5 + pos: -226.5,-27.5 parent: 2 - uid: 3502 components: - type: Transform - pos: -60.5,-4.5 + pos: -226.5,-26.5 parent: 2 - uid: 3503 components: - type: Transform - pos: -61.5,-10.5 + pos: -226.5,-25.5 parent: 2 - uid: 3504 components: - type: Transform - pos: -61.5,-11.5 + pos: -226.5,-24.5 parent: 2 - uid: 3505 components: - type: Transform - pos: -57.5,-10.5 + pos: -226.5,-23.5 parent: 2 - uid: 3506 components: - type: Transform - pos: -61.5,-9.5 + pos: -226.5,-22.5 parent: 2 - uid: 3507 components: - type: Transform - pos: -61.5,-8.5 + pos: -226.5,-21.5 parent: 2 - uid: 3508 components: - type: Transform - pos: -62.5,-9.5 + pos: -226.5,-20.5 parent: 2 - uid: 3509 components: - type: Transform - pos: -84.5,-11.5 + pos: -225.5,-34.5 parent: 2 - uid: 3510 components: - type: Transform - pos: -84.5,-12.5 + pos: -225.5,-20.5 parent: 2 - uid: 3511 components: - type: Transform - pos: -84.5,-13.5 + pos: -224.5,-34.5 parent: 2 - uid: 3512 components: - type: Transform - pos: -84.5,-14.5 + pos: -224.5,-29.5 parent: 2 - uid: 3513 components: - type: Transform - pos: -71.5,14.5 + pos: -228.5,-36.5 parent: 2 - uid: 3514 components: - type: Transform - pos: -70.5,14.5 + pos: -225.5,-36.5 parent: 2 - uid: 3515 components: - type: Transform - pos: -62.5,-13.5 + pos: -224.5,-36.5 parent: 2 - uid: 3516 components: - type: Transform - pos: -63.5,-13.5 + pos: -223.5,-38.5 parent: 2 - uid: 3517 components: - type: Transform - pos: -63.5,-14.5 + pos: -223.5,-37.5 parent: 2 - uid: 3518 components: - type: Transform - pos: -102.5,-26.5 + pos: -223.5,-36.5 parent: 2 - uid: 3519 components: - type: Transform - pos: -40.5,-22.5 + pos: -222.5,-40.5 parent: 2 - uid: 3520 components: - type: Transform - pos: -17.5,10.5 + pos: -222.5,-38.5 parent: 2 - uid: 3521 components: - type: Transform - pos: -16.5,10.5 + pos: -220.5,-38.5 parent: 2 - uid: 3522 components: - type: Transform - pos: -16.5,8.5 + pos: -219.5,-42.5 parent: 2 - uid: 3523 components: - type: Transform - pos: -16.5,9.5 + pos: -218.5,-36.5 parent: 2 - uid: 3524 components: - type: Transform - pos: -16.5,7.5 + pos: -217.5,-36.5 parent: 2 - uid: 3525 components: - type: Transform - pos: -16.5,5.5 + pos: -216.5,-38.5 parent: 2 - uid: 3526 components: - type: Transform - pos: -16.5,6.5 + pos: -216.5,-37.5 parent: 2 - uid: 3527 components: - type: Transform - pos: -183.5,-12.5 + pos: -216.5,-36.5 parent: 2 - uid: 3528 components: - type: Transform - pos: -173.5,-6.5 + pos: -215.5,-37.5 parent: 2 - uid: 3529 components: - type: Transform - pos: -47.5,-10.5 + pos: -224.5,-39.5 parent: 2 - uid: 3530 components: - type: Transform - pos: -58.5,9.5 + pos: -223.5,-8.5 parent: 2 - uid: 3531 components: - type: Transform - pos: -174.5,-7.5 + pos: -222.5,-8.5 parent: 2 - uid: 3532 components: - type: Transform - pos: -173.5,-4.5 + pos: -222.5,-7.5 parent: 2 - uid: 3533 components: - type: Transform - pos: -169.5,-3.5 + pos: -221.5,-8.5 parent: 2 - uid: 3534 components: - type: Transform - pos: -170.5,-3.5 + pos: -221.5,-25.5 parent: 2 - uid: 3535 components: - type: Transform - pos: -72.5,-4.5 + pos: -221.5,-23.5 parent: 2 - uid: 3536 components: - type: Transform - pos: -72.5,-3.5 + pos: -220.5,-23.5 parent: 2 - uid: 3537 components: - type: Transform - pos: -167.5,-3.5 + pos: -185.5,-29.5 parent: 2 - uid: 3538 components: - type: Transform - pos: -168.5,-3.5 + pos: -185.5,-24.5 parent: 2 - uid: 3539 components: - type: Transform - pos: -161.5,-3.5 + pos: -184.5,-29.5 parent: 2 - uid: 3540 components: - type: Transform - pos: -162.5,-3.5 + pos: -184.5,-30.5 parent: 2 - uid: 3541 components: - type: Transform - pos: -50.5,-13.5 + pos: -76.5,-1.5 parent: 2 - uid: 3542 components: - type: Transform - pos: -50.5,-14.5 + pos: -76.5,-2.5 parent: 2 - uid: 3543 components: - type: Transform - pos: -166.5,-3.5 + pos: -73.5,-3.5 parent: 2 - uid: 3544 components: - type: Transform - pos: -164.5,-3.5 + pos: -74.5,-3.5 parent: 2 - uid: 3545 components: - type: Transform - pos: -172.5,-3.5 + pos: -75.5,-3.5 parent: 2 - uid: 3546 components: - type: Transform - pos: -45.5,-10.5 + pos: -77.5,-0.5 parent: 2 - uid: 3547 components: - type: Transform - pos: -46.5,-10.5 + pos: -78.5,-0.5 parent: 2 - uid: 3548 components: - type: Transform - pos: -49.5,-10.5 + pos: -76.5,-7.5 parent: 2 - uid: 3549 components: - type: Transform - pos: -48.5,-10.5 + pos: -76.5,-6.5 parent: 2 - uid: 3550 components: - type: Transform - pos: -173.5,-5.5 + pos: -76.5,-5.5 parent: 2 - uid: 3551 components: - type: Transform - pos: -165.5,-3.5 + pos: -76.5,-4.5 parent: 2 - uid: 3552 components: - type: Transform - pos: -163.5,-3.5 + pos: -81.5,-8.5 parent: 2 - uid: 3553 components: - type: Transform - pos: -171.5,-3.5 + pos: -81.5,-7.5 parent: 2 - uid: 3554 components: - type: Transform - pos: -73.5,-7.5 + pos: -81.5,-6.5 parent: 2 - uid: 3555 components: - type: Transform - pos: -72.5,-5.5 + pos: -81.5,-5.5 parent: 2 - uid: 3556 components: - type: Transform - pos: -72.5,-6.5 + pos: -81.5,-4.5 parent: 2 - uid: 3557 components: - type: Transform - pos: -81.5,-2.5 + pos: -81.5,-3.5 parent: 2 - uid: 3558 components: - type: Transform - pos: -173.5,-3.5 + pos: -81.5,-2.5 parent: 2 - uid: 3559 components: - type: Transform - pos: -179.5,-3.5 + pos: -81.5,-1.5 parent: 2 - uid: 3560 components: - type: Transform - pos: -180.5,-3.5 + pos: -81.5,-0.5 parent: 2 - uid: 3561 components: - type: Transform - pos: -174.5,-3.5 + pos: -81.5,0.5 parent: 2 - uid: 3562 components: - type: Transform - pos: -175.5,-3.5 + pos: -80.5,-8.5 parent: 2 - uid: 3563 components: - type: Transform - pos: -176.5,-3.5 + pos: -79.5,-8.5 parent: 2 - uid: 3564 components: - type: Transform - pos: -177.5,-3.5 + pos: -184.5,-24.5 parent: 2 - uid: 3565 components: - type: Transform - pos: -178.5,-3.5 + pos: -184.5,-23.5 parent: 2 - uid: 3566 components: - type: Transform - pos: -177.5,-4.5 + pos: -74.5,0.5 parent: 2 - uid: 3567 components: - type: Transform - pos: -177.5,-5.5 + pos: -76.5,0.5 parent: 2 - uid: 3568 components: - type: Transform - pos: -177.5,-6.5 + pos: -219.5,-14.5 parent: 2 - uid: 3569 components: - type: Transform - pos: -177.5,-7.5 + pos: -225.5,-15.5 parent: 2 - uid: 3570 components: - type: Transform - pos: -177.5,-8.5 + pos: -198.5,7.5 parent: 2 - uid: 3571 components: - type: Transform - pos: -177.5,-9.5 + pos: -195.5,7.5 parent: 2 - uid: 3572 components: - type: Transform - pos: -177.5,-10.5 + pos: -199.5,7.5 parent: 2 - uid: 3573 components: - type: Transform - pos: -177.5,-11.5 + pos: -192.5,8.5 parent: 2 - uid: 3574 components: - type: Transform - pos: -177.5,-12.5 + pos: -194.5,4.5 parent: 2 - uid: 3575 components: - type: Transform - pos: -177.5,-13.5 + pos: -193.5,4.5 parent: 2 - uid: 3576 components: - type: Transform - pos: -178.5,-13.5 + pos: -201.5,15.5 parent: 2 - uid: 3577 components: - type: Transform - pos: -179.5,-13.5 + pos: -197.5,18.5 parent: 2 - uid: 3578 components: - type: Transform - pos: -180.5,-13.5 + pos: -193.5,17.5 parent: 2 - uid: 3579 components: - type: Transform - pos: -181.5,-13.5 + pos: -198.5,16.5 parent: 2 - uid: 3580 components: - type: Transform - pos: -182.5,-13.5 + pos: -197.5,12.5 parent: 2 - uid: 3581 components: - type: Transform - pos: -183.5,-13.5 + pos: -196.5,12.5 parent: 2 - uid: 3582 components: - type: Transform - pos: -183.5,-11.5 + pos: -193.5,12.5 parent: 2 - uid: 3583 components: - type: Transform - pos: -182.5,-8.5 + pos: -194.5,12.5 parent: 2 - uid: 3584 components: - type: Transform - pos: -181.5,-3.5 + pos: -193.5,13.5 parent: 2 - uid: 3585 components: - type: Transform - pos: -182.5,-3.5 + pos: -197.5,15.5 parent: 2 - uid: 3586 components: - type: Transform - pos: -183.5,-3.5 + pos: -200.5,16.5 parent: 2 - uid: 3587 components: - type: Transform - pos: -184.5,-3.5 + pos: -198.5,10.5 parent: 2 - uid: 3588 components: - type: Transform - pos: -185.5,-3.5 + pos: -197.5,10.5 parent: 2 - uid: 3589 components: - type: Transform - pos: -186.5,-3.5 + pos: -198.5,5.5 parent: 2 - uid: 3590 components: - type: Transform - pos: -186.5,-2.5 + pos: -189.5,4.5 parent: 2 - uid: 3591 components: - type: Transform - pos: -186.5,-1.5 + pos: -190.5,8.5 parent: 2 - uid: 3592 components: - type: Transform - pos: -186.5,-0.5 + pos: -199.5,12.5 parent: 2 - uid: 3593 components: - type: Transform - pos: -186.5,0.5 + pos: -192.5,16.5 parent: 2 - uid: 3594 components: - type: Transform - pos: -186.5,1.5 + pos: -199.5,10.5 parent: 2 - uid: 3595 components: - type: Transform - pos: -186.5,2.5 + pos: -196.5,5.5 parent: 2 - uid: 3596 components: - type: Transform - pos: -186.5,3.5 + pos: -196.5,6.5 parent: 2 - uid: 3597 components: - type: Transform - pos: -186.5,4.5 + pos: -196.5,7.5 parent: 2 - uid: 3598 components: - type: Transform - pos: -187.5,4.5 + pos: -196.5,11.5 parent: 2 - uid: 3599 components: - type: Transform - pos: -188.5,4.5 + pos: -191.5,12.5 parent: 2 - uid: 3600 components: - type: Transform - pos: -189.5,4.5 + pos: -192.5,18.5 parent: 2 - uid: 3601 components: - type: Transform - pos: -190.5,4.5 + pos: -200.5,12.5 parent: 2 - uid: 3602 components: - type: Transform - pos: -191.5,4.5 + pos: -202.5,12.5 parent: 2 - uid: 3603 components: - type: Transform - pos: -192.5,4.5 + pos: -195.5,14.5 parent: 2 - uid: 3604 components: - type: Transform - pos: -193.5,4.5 + pos: -203.5,4.5 parent: 2 - uid: 3605 components: - type: Transform - pos: -194.5,4.5 + pos: -196.5,10.5 + parent: 2 + - uid: 6860 + components: + - type: Transform + pos: -74.5,-21.5 + parent: 2 + - uid: 10409 + components: + - type: Transform + pos: -74.5,-20.5 + parent: 2 + - uid: 11495 + components: + - type: Transform + pos: -74.5,-19.5 parent: 2 + - uid: 17584 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 17565 + - uid: 17585 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 17565 + - uid: 17586 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 17565 + - uid: 17587 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 17565 + - uid: 17588 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 17565 + - uid: 17589 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 17565 + - uid: 17590 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 17565 + - uid: 17591 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 17565 + - uid: 17592 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 17565 + - uid: 17593 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 17565 + - uid: 17594 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 17565 + - uid: 17595 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 17565 + - uid: 17596 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 17565 + - uid: 17597 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 17565 + - uid: 17598 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 17565 + - uid: 17599 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 17565 + - uid: 17600 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 17565 + - uid: 17601 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 17565 + - uid: 17602 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 17565 + - uid: 17603 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 17565 + - uid: 17604 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 17565 + - uid: 17605 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 17565 + - uid: 17606 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 17565 +- proto: CableApcStack + entities: - uid: 3606 components: - type: Transform - pos: -195.5,4.5 + pos: -91.2788,5.4589505 parent: 2 - uid: 3607 components: - type: Transform - pos: -196.5,6.5 + pos: -91.310074,5.8027005 parent: 2 - uid: 3608 components: - type: Transform - pos: -196.5,7.5 + pos: -60.466816,-6.1961656 parent: 2 - uid: 3609 components: - type: Transform - pos: -196.5,8.5 + pos: -54.506535,-6.5146427 parent: 2 +- proto: CableApcStack1 + entities: - uid: 3610 components: - type: Transform - pos: -195.5,5.5 + rot: 3.141592653589793 rad + pos: -219.45934,-39.379513 parent: 2 - uid: 3611 components: - type: Transform - pos: -196.5,10.5 + pos: -41.52444,33.582073 parent: 2 - uid: 3612 components: - type: Transform - pos: -196.5,11.5 + pos: -42.470142,32.547073 parent: 2 - uid: 3613 components: - type: Transform - pos: -196.5,12.5 + pos: -41.52444,32.727074 parent: 2 - uid: 3614 components: - type: Transform - pos: -196.5,13.5 + pos: -40.443634,33.582073 parent: 2 - uid: 3615 components: - type: Transform - pos: -196.5,14.5 + rot: 3.141592653589793 rad + pos: -36.515816,32.71924 parent: 2 - uid: 3616 components: - type: Transform - pos: -195.5,15.5 + rot: 3.141592653589793 rad + pos: -37.529068,33.596737 parent: 2 - uid: 3617 components: - type: Transform - pos: -194.5,15.5 + rot: 3.141592653589793 rad + pos: -36.493298,33.46174 parent: 2 - uid: 3618 components: - type: Transform - pos: -193.5,15.5 + rot: 3.141592653589793 rad + pos: -35.525078,33.574238 parent: 2 - uid: 3619 components: - type: Transform - pos: -192.5,15.5 + rot: 3.141592653589793 rad + pos: -38.56484,33.596737 parent: 2 - uid: 3620 components: - type: Transform - pos: -190.5,15.5 + rot: 3.141592653589793 rad + pos: -36.650917,34.47424 parent: 2 - uid: 3621 components: - type: Transform - pos: -160.5,-3.5 + rot: 3.141592653589793 rad + pos: -219.45934,-38.517014 parent: 2 - uid: 3622 components: - type: Transform - pos: -159.5,-3.5 + rot: 3.141592653589793 rad + pos: -221.41078,-38.535763 parent: 2 +- proto: CablecuffsBroken + entities: - uid: 3623 components: + - type: MetaData + desc: Кажется он больше не спасёт своего владе.... стоп, почему он пахнет сахаром? + name: Порванный жгут - type: Transform - pos: -158.5,-3.5 + pos: -98.78048,-6.315797 parent: 2 +- proto: CableHV + entities: - uid: 3624 components: - type: Transform - pos: -157.5,-3.5 + pos: -195.5,8.5 parent: 2 - uid: 3625 components: - type: Transform - pos: -156.5,-3.5 + pos: -191.5,8.5 parent: 2 - uid: 3626 components: - type: Transform - pos: -155.5,-3.5 + pos: -206.5,-0.5 parent: 2 - uid: 3627 components: - type: Transform - pos: -154.5,-3.5 + pos: -192.5,8.5 parent: 2 - uid: 3628 components: - type: Transform - pos: -153.5,-3.5 + pos: -193.5,8.5 parent: 2 - uid: 3629 components: - type: Transform - pos: -152.5,-3.5 + pos: -194.5,8.5 parent: 2 - uid: 3630 components: - type: Transform - pos: -151.5,-3.5 + pos: -189.5,9.5 parent: 2 - uid: 3631 components: - type: Transform - pos: -150.5,-3.5 + pos: -190.5,8.5 parent: 2 - uid: 3632 components: - type: Transform - pos: -149.5,-3.5 + pos: -189.5,8.5 parent: 2 - uid: 3633 components: - type: Transform - pos: -148.5,-3.5 + pos: -183.5,-20.5 parent: 2 - uid: 3634 components: - type: Transform - pos: -147.5,-3.5 + pos: -183.5,-14.5 parent: 2 - uid: 3635 components: - type: Transform - pos: -146.5,-3.5 + pos: -183.5,-16.5 parent: 2 - uid: 3636 components: - type: Transform - pos: -145.5,-3.5 + pos: -183.5,-17.5 parent: 2 - uid: 3637 components: - type: Transform - pos: -144.5,-3.5 + pos: -183.5,-18.5 parent: 2 - uid: 3638 components: - type: Transform - pos: -143.5,-3.5 + pos: -183.5,-15.5 parent: 2 - uid: 3639 components: - type: Transform - pos: -137.5,-3.5 + pos: -77.5,0.5 parent: 2 - uid: 3640 components: - type: Transform - pos: -136.5,-3.5 + pos: -81.5,-6.5 parent: 2 - uid: 3641 components: - type: Transform - pos: -135.5,-3.5 + pos: -72.5,-2.5 parent: 2 - uid: 3642 components: - type: Transform - pos: -134.5,-3.5 + pos: -75.5,-7.5 parent: 2 - uid: 3643 components: - type: Transform - pos: -133.5,-3.5 + pos: -78.5,-6.5 parent: 2 - uid: 3644 components: - type: Transform - pos: -132.5,-3.5 + pos: -80.5,0.5 parent: 2 - uid: 3645 components: - type: Transform - pos: -131.5,-3.5 + pos: -81.5,-5.5 parent: 2 - uid: 3646 components: - type: Transform - pos: -130.5,-3.5 + pos: -81.5,-4.5 parent: 2 - uid: 3647 components: - type: Transform - pos: -129.5,-3.5 + pos: -41.5,32.5 parent: 2 - uid: 3648 components: - type: Transform - pos: -128.5,-3.5 + pos: -127.5,-13.5 parent: 2 - uid: 3649 components: - type: Transform - pos: -127.5,-3.5 + pos: -60.5,-6.5 parent: 2 - uid: 3650 components: - type: Transform - pos: -126.5,-3.5 + pos: -62.5,-11.5 parent: 2 - uid: 3651 components: - type: Transform - pos: -125.5,-3.5 + pos: -58.5,-7.5 parent: 2 - uid: 3652 components: - type: Transform - pos: -124.5,-3.5 + pos: -62.5,-10.5 parent: 2 - uid: 3653 components: - type: Transform - pos: -123.5,-3.5 + pos: -57.5,-9.5 parent: 2 - uid: 3654 components: - type: Transform - pos: -122.5,-3.5 + pos: -57.5,-8.5 parent: 2 - uid: 3655 components: - type: Transform - pos: -121.5,-3.5 + pos: -60.5,-5.5 parent: 2 - uid: 3656 components: - type: Transform - pos: -120.5,-3.5 + pos: -59.5,-7.5 parent: 2 - uid: 3657 components: - type: Transform - pos: -119.5,-3.5 + pos: -60.5,-7.5 parent: 2 - uid: 3658 components: - type: Transform - pos: -118.5,-3.5 + pos: -61.5,-7.5 parent: 2 - uid: 3659 components: - type: Transform - pos: -117.5,-3.5 + pos: -57.5,-7.5 parent: 2 - uid: 3660 components: - type: Transform - pos: -116.5,-3.5 + pos: -60.5,-4.5 parent: 2 - uid: 3661 components: - type: Transform - pos: -115.5,-3.5 + pos: -61.5,-10.5 parent: 2 - uid: 3662 components: - type: Transform - pos: -114.5,-3.5 + pos: -61.5,-11.5 parent: 2 - uid: 3663 components: - type: Transform - pos: -113.5,-3.5 + pos: -57.5,-10.5 parent: 2 - uid: 3664 components: - type: Transform - pos: -112.5,-3.5 + pos: -61.5,-9.5 parent: 2 - uid: 3665 components: - type: Transform - pos: -111.5,-3.5 + pos: -61.5,-8.5 parent: 2 - uid: 3666 components: - type: Transform - pos: -110.5,-3.5 + pos: -62.5,-9.5 parent: 2 - uid: 3667 components: - type: Transform - pos: -109.5,-3.5 + pos: -84.5,-11.5 parent: 2 - uid: 3668 components: - type: Transform - pos: -108.5,-3.5 + pos: -84.5,-12.5 parent: 2 - uid: 3669 components: - type: Transform - pos: -107.5,-3.5 + pos: -84.5,-13.5 parent: 2 - uid: 3670 components: - type: Transform - pos: -106.5,-3.5 + pos: -84.5,-14.5 parent: 2 - uid: 3671 components: - type: Transform - pos: -105.5,-3.5 + pos: -71.5,14.5 parent: 2 - uid: 3672 components: - type: Transform - pos: -104.5,-3.5 + pos: -70.5,14.5 parent: 2 - uid: 3673 components: - type: Transform - pos: -103.5,-3.5 + pos: -62.5,-13.5 parent: 2 - uid: 3674 components: - type: Transform - pos: -102.5,-3.5 + pos: -63.5,-13.5 parent: 2 - uid: 3675 components: - type: Transform - pos: -101.5,-3.5 + pos: -63.5,-14.5 parent: 2 - uid: 3676 components: - type: Transform - pos: -100.5,-3.5 + pos: -102.5,-26.5 parent: 2 - uid: 3677 components: - type: Transform - pos: -99.5,-3.5 + pos: -40.5,-22.5 parent: 2 - uid: 3678 components: - type: Transform - pos: -98.5,-3.5 + pos: -17.5,10.5 parent: 2 - uid: 3679 components: - type: Transform - pos: -97.5,-3.5 + pos: -16.5,10.5 parent: 2 - uid: 3680 components: - type: Transform - pos: -96.5,-3.5 + pos: -16.5,8.5 parent: 2 - uid: 3681 components: - type: Transform - pos: -95.5,-3.5 + pos: -16.5,9.5 parent: 2 - uid: 3682 components: - type: Transform - pos: -94.5,-3.5 + pos: -16.5,7.5 parent: 2 - uid: 3683 components: - type: Transform - pos: -93.5,-3.5 + pos: -16.5,5.5 parent: 2 - uid: 3684 components: - type: Transform - pos: -92.5,-3.5 + pos: -16.5,6.5 parent: 2 - uid: 3685 components: - type: Transform - pos: -91.5,-3.5 + pos: -183.5,-12.5 parent: 2 - uid: 3686 components: - type: Transform - pos: -90.5,-3.5 + pos: -173.5,-6.5 parent: 2 - uid: 3687 components: - type: Transform - pos: -89.5,-3.5 + pos: -47.5,-10.5 parent: 2 - uid: 3688 components: - type: Transform - pos: -88.5,-3.5 + pos: -58.5,9.5 parent: 2 - uid: 3689 components: - type: Transform - pos: -88.5,-4.5 + pos: -174.5,-7.5 parent: 2 - uid: 3690 components: - type: Transform - pos: -88.5,-5.5 + pos: -173.5,-4.5 parent: 2 - uid: 3691 components: - type: Transform - pos: -88.5,-6.5 + pos: -169.5,-3.5 parent: 2 - uid: 3692 components: - type: Transform - pos: -88.5,-7.5 + pos: -170.5,-3.5 parent: 2 - uid: 3693 components: - type: Transform - pos: -88.5,-8.5 + pos: -167.5,-3.5 parent: 2 - uid: 3694 components: - type: Transform - pos: -87.5,-8.5 + pos: -168.5,-3.5 parent: 2 - uid: 3695 components: - type: Transform - pos: -86.5,-8.5 + pos: -161.5,-3.5 parent: 2 - uid: 3696 components: - type: Transform - pos: -85.5,-8.5 + pos: -162.5,-3.5 parent: 2 - uid: 3697 components: - type: Transform - pos: -85.5,-9.5 + pos: -50.5,-13.5 parent: 2 - uid: 3698 components: - type: Transform - pos: -85.5,-10.5 + pos: -50.5,-14.5 parent: 2 - uid: 3699 components: - type: Transform - pos: -84.5,-10.5 + pos: -166.5,-3.5 parent: 2 - uid: 3700 components: - type: Transform - pos: -84.5,-15.5 + pos: -164.5,-3.5 parent: 2 - uid: 3701 components: - type: Transform - pos: -83.5,-15.5 + pos: -172.5,-3.5 parent: 2 - uid: 3702 components: - type: Transform - pos: -82.5,-15.5 + pos: -45.5,-10.5 parent: 2 - uid: 3703 components: - type: Transform - pos: -81.5,-15.5 + pos: -46.5,-10.5 parent: 2 - uid: 3704 components: - type: Transform - pos: -80.5,-15.5 + pos: -49.5,-10.5 parent: 2 - uid: 3705 components: - type: Transform - pos: -79.5,-15.5 + pos: -48.5,-10.5 parent: 2 - uid: 3706 components: - type: Transform - pos: -78.5,-15.5 + pos: -173.5,-5.5 parent: 2 - uid: 3707 components: - type: Transform - pos: -77.5,-15.5 + pos: -165.5,-3.5 parent: 2 - uid: 3708 components: - type: Transform - pos: -76.5,-15.5 + pos: -163.5,-3.5 parent: 2 - uid: 3709 components: - type: Transform - pos: -75.5,-15.5 + pos: -171.5,-3.5 parent: 2 - uid: 3710 components: - type: Transform - pos: -74.5,-15.5 + pos: -79.5,-6.5 parent: 2 - uid: 3711 components: - type: Transform - pos: -73.5,-15.5 + pos: -72.5,-1.5 parent: 2 - uid: 3712 components: - type: Transform - pos: -72.5,-15.5 + pos: -173.5,-3.5 parent: 2 - uid: 3713 components: - type: Transform - pos: -71.5,-15.5 + pos: -179.5,-3.5 parent: 2 - uid: 3714 components: - type: Transform - pos: -70.5,-15.5 + pos: -180.5,-3.5 parent: 2 - uid: 3715 components: - type: Transform - pos: -69.5,-15.5 + pos: -174.5,-3.5 parent: 2 - uid: 3716 components: - type: Transform - pos: -68.5,-15.5 + pos: -175.5,-3.5 parent: 2 - uid: 3717 components: - type: Transform - pos: -67.5,-15.5 + pos: -176.5,-3.5 parent: 2 - uid: 3718 components: - type: Transform - pos: -66.5,-15.5 + pos: -177.5,-3.5 parent: 2 - uid: 3719 components: - type: Transform - pos: -65.5,-15.5 + pos: -178.5,-3.5 parent: 2 - uid: 3720 components: - type: Transform - pos: -64.5,-15.5 + pos: -177.5,-4.5 parent: 2 - uid: 3721 components: - type: Transform - pos: -63.5,-15.5 + pos: -177.5,-5.5 parent: 2 - uid: 3722 components: - type: Transform - pos: -61.5,-15.5 + pos: -177.5,-6.5 parent: 2 - uid: 3723 components: - type: Transform - pos: -60.5,-15.5 + pos: -177.5,-7.5 parent: 2 - uid: 3724 components: - type: Transform - pos: -59.5,-15.5 + pos: -177.5,-8.5 parent: 2 - uid: 3725 components: - type: Transform - pos: -58.5,-15.5 + pos: -177.5,-9.5 parent: 2 - uid: 3726 components: - type: Transform - pos: -57.5,-15.5 + pos: -177.5,-10.5 parent: 2 - uid: 3727 components: - type: Transform - pos: -56.5,-15.5 + pos: -177.5,-11.5 parent: 2 - uid: 3728 components: - type: Transform - pos: -55.5,-15.5 + pos: -177.5,-12.5 parent: 2 - uid: 3729 components: - type: Transform - pos: -54.5,-15.5 + pos: -177.5,-13.5 parent: 2 - uid: 3730 components: - type: Transform - pos: -53.5,-15.5 + pos: -178.5,-13.5 parent: 2 - uid: 3731 components: - type: Transform - pos: -52.5,-15.5 + pos: -179.5,-13.5 parent: 2 - uid: 3732 components: - type: Transform - pos: -51.5,-15.5 + pos: -180.5,-13.5 parent: 2 - uid: 3733 components: - type: Transform - pos: -50.5,-15.5 + pos: -181.5,-13.5 parent: 2 - uid: 3734 components: - type: Transform - pos: -62.5,-15.5 + pos: -182.5,-13.5 parent: 2 - uid: 3735 components: - type: Transform - pos: -50.5,-12.5 + pos: -183.5,-13.5 parent: 2 - uid: 3736 components: - type: Transform - pos: -50.5,-11.5 + pos: -183.5,-11.5 parent: 2 - uid: 3737 components: - type: Transform - pos: -50.5,-10.5 + pos: -182.5,-8.5 parent: 2 - uid: 3738 components: - type: Transform - pos: -44.5,-10.5 + pos: -181.5,-3.5 parent: 2 - uid: 3739 components: - type: Transform - pos: -43.5,-10.5 + pos: -182.5,-3.5 parent: 2 - uid: 3740 components: - type: Transform - pos: -42.5,-10.5 + pos: -183.5,-3.5 parent: 2 - uid: 3741 components: - type: Transform - pos: -41.5,-10.5 + pos: -184.5,-3.5 parent: 2 - uid: 3742 components: - type: Transform - pos: -40.5,-10.5 + pos: -185.5,-3.5 parent: 2 - uid: 3743 components: - type: Transform - pos: -39.5,-10.5 + pos: -186.5,-3.5 parent: 2 - uid: 3744 components: - type: Transform - pos: -37.5,-12.5 + pos: -160.5,-3.5 parent: 2 - uid: 3745 components: - type: Transform - pos: -102.5,5.5 + pos: -159.5,-3.5 parent: 2 - uid: 3746 components: - type: Transform - pos: -38.5,-15.5 + pos: -158.5,-3.5 parent: 2 - uid: 3747 components: - type: Transform - pos: -37.5,-13.5 + pos: -157.5,-3.5 parent: 2 - uid: 3748 components: - type: Transform - pos: -39.5,-9.5 + pos: -156.5,-3.5 parent: 2 - uid: 3749 components: - type: Transform - pos: -38.5,-9.5 + pos: -155.5,-3.5 parent: 2 - uid: 3750 components: - type: Transform - pos: -37.5,-9.5 + pos: -154.5,-3.5 parent: 2 - uid: 3751 components: - type: Transform - pos: -37.5,-10.5 + pos: -153.5,-3.5 parent: 2 - uid: 3752 components: - type: Transform - pos: -36.5,-10.5 + pos: -152.5,-3.5 parent: 2 - uid: 3753 components: - type: Transform - pos: -36.5,-11.5 + pos: -151.5,-3.5 parent: 2 - uid: 3754 components: - type: Transform - pos: -36.5,-12.5 + pos: -150.5,-3.5 parent: 2 - uid: 3755 components: - type: Transform - pos: -37.5,-14.5 + pos: -149.5,-3.5 parent: 2 - uid: 3756 components: - type: Transform - pos: -37.5,-15.5 + pos: -148.5,-3.5 parent: 2 - uid: 3757 components: - type: Transform - pos: -36.5,-15.5 + pos: -147.5,-3.5 parent: 2 - uid: 3758 components: - type: Transform - pos: -35.5,-15.5 + pos: -146.5,-3.5 parent: 2 - uid: 3759 components: - type: Transform - pos: -34.5,-15.5 + pos: -145.5,-3.5 parent: 2 - uid: 3760 components: - type: Transform - pos: -33.5,-15.5 + pos: -144.5,-3.5 parent: 2 - uid: 3761 components: - type: Transform - pos: -32.5,-15.5 + pos: -143.5,-3.5 parent: 2 - uid: 3762 components: - type: Transform - pos: -31.5,-15.5 + pos: -137.5,-3.5 parent: 2 - uid: 3763 components: - type: Transform - pos: -30.5,-15.5 + pos: -136.5,-3.5 parent: 2 - uid: 3764 components: - type: Transform - pos: -39.5,-15.5 + pos: -135.5,-3.5 parent: 2 - uid: 3765 components: - type: Transform - pos: -39.5,-16.5 + pos: -134.5,-3.5 parent: 2 - uid: 3766 components: - type: Transform - pos: -39.5,-17.5 + pos: -133.5,-3.5 parent: 2 - uid: 3767 components: - type: Transform - pos: -39.5,-18.5 + pos: -132.5,-3.5 parent: 2 - uid: 3768 components: - type: Transform - pos: -39.5,-19.5 + pos: -131.5,-3.5 parent: 2 - uid: 3769 components: - type: Transform - pos: -39.5,-20.5 + pos: -130.5,-3.5 parent: 2 - uid: 3770 components: - type: Transform - pos: -39.5,-21.5 + pos: -129.5,-3.5 parent: 2 - uid: 3771 components: - type: Transform - pos: -40.5,-21.5 + pos: -128.5,-3.5 parent: 2 - uid: 3772 components: - type: Transform - pos: -41.5,-22.5 + pos: -127.5,-3.5 parent: 2 - uid: 3773 components: - type: Transform - pos: -42.5,-22.5 + pos: -126.5,-3.5 parent: 2 - uid: 3774 components: - type: Transform - pos: -43.5,-22.5 + pos: -125.5,-3.5 parent: 2 - uid: 3775 components: - type: Transform - pos: -44.5,-22.5 + pos: -124.5,-3.5 parent: 2 - uid: 3776 components: - type: Transform - pos: -45.5,-22.5 + pos: -123.5,-3.5 parent: 2 - uid: 3777 components: - type: Transform - pos: -46.5,-21.5 + pos: -122.5,-3.5 parent: 2 - uid: 3778 components: - type: Transform - pos: -47.5,-21.5 + pos: -121.5,-3.5 parent: 2 - uid: 3779 components: - type: Transform - pos: -48.5,-21.5 + pos: -120.5,-3.5 parent: 2 - uid: 3780 components: - type: Transform - pos: -49.5,-21.5 + pos: -119.5,-3.5 parent: 2 - uid: 3781 components: - type: Transform - pos: -49.5,-20.5 + pos: -118.5,-3.5 parent: 2 - uid: 3782 components: - type: Transform - pos: -49.5,-19.5 + pos: -117.5,-3.5 parent: 2 - uid: 3783 components: - type: Transform - pos: -49.5,-18.5 + pos: -116.5,-3.5 parent: 2 - uid: 3784 components: - type: Transform - pos: -50.5,-18.5 + pos: -115.5,-3.5 parent: 2 - uid: 3785 components: - type: Transform - pos: -51.5,-18.5 + pos: -114.5,-3.5 parent: 2 - uid: 3786 components: - type: Transform - pos: -52.5,-18.5 + pos: -113.5,-3.5 parent: 2 - uid: 3787 components: - type: Transform - pos: -53.5,-18.5 + pos: -112.5,-3.5 parent: 2 - uid: 3788 components: - type: Transform - pos: -54.5,-18.5 + pos: -111.5,-3.5 parent: 2 - uid: 3789 components: - type: Transform - pos: -55.5,-18.5 + pos: -110.5,-3.5 parent: 2 - uid: 3790 components: - type: Transform - pos: -56.5,-18.5 + pos: -109.5,-3.5 parent: 2 - uid: 3791 components: - type: Transform - pos: -57.5,-18.5 + pos: -108.5,-3.5 parent: 2 - uid: 3792 components: - type: Transform - pos: -57.5,-19.5 + pos: -107.5,-3.5 parent: 2 - uid: 3793 components: - type: Transform - pos: -58.5,-19.5 + pos: -106.5,-3.5 parent: 2 - uid: 3794 components: - type: Transform - pos: -59.5,-19.5 + pos: -105.5,-3.5 parent: 2 - uid: 3795 components: - type: Transform - pos: -60.5,-19.5 + pos: -104.5,-3.5 parent: 2 - uid: 3796 components: - type: Transform - pos: -60.5,-18.5 + pos: -103.5,-3.5 parent: 2 - uid: 3797 components: - type: Transform - pos: -50.5,-9.5 + pos: -102.5,-3.5 parent: 2 - uid: 3798 components: - type: Transform - pos: -50.5,-8.5 + pos: -101.5,-3.5 parent: 2 - uid: 3799 components: - type: Transform - pos: -50.5,-7.5 + pos: -100.5,-3.5 parent: 2 - uid: 3800 components: - type: Transform - pos: -50.5,-6.5 + pos: -99.5,-3.5 parent: 2 - uid: 3801 components: - type: Transform - pos: -50.5,-5.5 + pos: -98.5,-3.5 parent: 2 - uid: 3802 components: - type: Transform - pos: -50.5,-4.5 + pos: -97.5,-3.5 parent: 2 - uid: 3803 components: - type: Transform - pos: -50.5,-3.5 + pos: -96.5,-3.5 parent: 2 - uid: 3804 components: - type: Transform - pos: -50.5,-2.5 + pos: -95.5,-3.5 parent: 2 - uid: 3805 components: - type: Transform - pos: -50.5,-1.5 + pos: -94.5,-3.5 parent: 2 - uid: 3806 components: - type: Transform - pos: -50.5,-0.5 + pos: -93.5,-3.5 parent: 2 - uid: 3807 components: - type: Transform - pos: -50.5,0.5 + pos: -92.5,-3.5 parent: 2 - uid: 3808 components: - type: Transform - pos: -50.5,1.5 + pos: -91.5,-3.5 parent: 2 - uid: 3809 components: - type: Transform - pos: -50.5,2.5 + pos: -90.5,-3.5 parent: 2 - uid: 3810 components: - type: Transform - pos: -50.5,3.5 + pos: -89.5,-3.5 parent: 2 - uid: 3811 components: - type: Transform - pos: -50.5,4.5 + pos: -88.5,-3.5 parent: 2 - uid: 3812 components: - type: Transform - pos: -50.5,5.5 + pos: -88.5,-4.5 parent: 2 - uid: 3813 components: - type: Transform - pos: -50.5,6.5 + pos: -88.5,-5.5 parent: 2 - uid: 3814 components: - type: Transform - pos: -50.5,7.5 + pos: -88.5,-6.5 parent: 2 - uid: 3815 components: - type: Transform - pos: -50.5,8.5 + pos: -88.5,-7.5 parent: 2 - uid: 3816 components: - type: Transform - pos: -51.5,8.5 + pos: -88.5,-8.5 parent: 2 - uid: 3817 components: - type: Transform - pos: -52.5,8.5 + pos: -87.5,-8.5 parent: 2 - uid: 3818 components: - type: Transform - pos: -53.5,8.5 + pos: -86.5,-8.5 parent: 2 - uid: 3819 components: - type: Transform - pos: -54.5,8.5 + pos: -85.5,-8.5 parent: 2 - uid: 3820 components: - type: Transform - pos: -55.5,8.5 + pos: -85.5,-9.5 parent: 2 - uid: 3821 components: - type: Transform - pos: -56.5,8.5 + pos: -85.5,-10.5 parent: 2 - uid: 3822 components: - type: Transform - pos: -57.5,8.5 + pos: -84.5,-10.5 parent: 2 - uid: 3823 components: - type: Transform - pos: -58.5,8.5 + pos: -84.5,-15.5 parent: 2 - uid: 3824 components: - type: Transform - pos: -59.5,8.5 + pos: -83.5,-15.5 parent: 2 - uid: 3825 components: - type: Transform - pos: -60.5,8.5 + pos: -82.5,-15.5 parent: 2 - uid: 3826 components: - type: Transform - pos: -61.5,8.5 + pos: -81.5,-15.5 parent: 2 - uid: 3827 components: - type: Transform - pos: -62.5,8.5 + pos: -80.5,-15.5 parent: 2 - uid: 3828 components: - type: Transform - pos: -63.5,8.5 + pos: -79.5,-15.5 parent: 2 - uid: 3829 components: - type: Transform - pos: -64.5,8.5 + pos: -78.5,-15.5 parent: 2 - uid: 3830 components: - type: Transform - pos: -65.5,8.5 + pos: -77.5,-15.5 parent: 2 - uid: 3831 components: - type: Transform - pos: -66.5,8.5 + pos: -76.5,-15.5 parent: 2 - uid: 3832 components: - type: Transform - pos: -67.5,8.5 + pos: -75.5,-15.5 parent: 2 - uid: 3833 components: - type: Transform - pos: -68.5,8.5 + pos: -74.5,-15.5 parent: 2 - uid: 3834 components: - type: Transform - pos: -69.5,8.5 + pos: -73.5,-15.5 parent: 2 - uid: 3835 components: - type: Transform - pos: -70.5,8.5 + pos: -72.5,-15.5 parent: 2 - uid: 3836 components: - type: Transform - pos: -71.5,8.5 + pos: -71.5,-15.5 parent: 2 - uid: 3837 components: - type: Transform - pos: -72.5,8.5 + pos: -70.5,-15.5 parent: 2 - uid: 3838 components: - type: Transform - pos: -73.5,8.5 + pos: -69.5,-15.5 parent: 2 - uid: 3839 components: - type: Transform - pos: -74.5,8.5 + pos: -68.5,-15.5 parent: 2 - uid: 3840 components: - type: Transform - pos: -75.5,8.5 + pos: -67.5,-15.5 parent: 2 - uid: 3841 components: - type: Transform - pos: -76.5,8.5 + pos: -66.5,-15.5 parent: 2 - uid: 3842 components: - type: Transform - pos: -77.5,8.5 + pos: -65.5,-15.5 parent: 2 - uid: 3843 components: - type: Transform - pos: -78.5,8.5 + pos: -64.5,-15.5 parent: 2 - uid: 3844 components: - type: Transform - pos: -79.5,8.5 + pos: -63.5,-15.5 parent: 2 - uid: 3845 components: - type: Transform - pos: -80.5,8.5 + pos: -61.5,-15.5 parent: 2 - uid: 3846 components: - type: Transform - pos: -81.5,8.5 + pos: -60.5,-15.5 parent: 2 - uid: 3847 components: - type: Transform - pos: -82.5,8.5 + pos: -59.5,-15.5 parent: 2 - uid: 3848 components: - type: Transform - pos: -83.5,8.5 + pos: -58.5,-15.5 parent: 2 - uid: 3849 components: - type: Transform - pos: -84.5,8.5 + pos: -57.5,-15.5 parent: 2 - uid: 3850 components: - type: Transform - pos: -84.5,7.5 + pos: -56.5,-15.5 parent: 2 - uid: 3851 components: - type: Transform - pos: -84.5,6.5 + pos: -55.5,-15.5 parent: 2 - uid: 3852 components: - type: Transform - pos: -84.5,5.5 + pos: -54.5,-15.5 parent: 2 - uid: 3853 components: - type: Transform - pos: -84.5,4.5 + pos: -53.5,-15.5 parent: 2 - uid: 3854 components: - type: Transform - pos: -84.5,3.5 + pos: -52.5,-15.5 parent: 2 - uid: 3855 components: - type: Transform - pos: -84.5,2.5 + pos: -51.5,-15.5 parent: 2 - uid: 3856 components: - type: Transform - pos: -85.5,2.5 + pos: -50.5,-15.5 parent: 2 - uid: 3857 components: - type: Transform - pos: -86.5,2.5 + pos: -62.5,-15.5 parent: 2 - uid: 3858 components: - type: Transform - pos: -87.5,2.5 + pos: -50.5,-12.5 parent: 2 - uid: 3859 components: - type: Transform - pos: -87.5,1.5 + pos: -50.5,-11.5 parent: 2 - uid: 3860 components: - type: Transform - pos: -87.5,0.5 + pos: -50.5,-10.5 parent: 2 - uid: 3861 components: - type: Transform - pos: -87.5,-0.5 + pos: -44.5,-10.5 parent: 2 - uid: 3862 components: - type: Transform - pos: -88.5,-0.5 + pos: -43.5,-10.5 parent: 2 - uid: 3863 components: - type: Transform - pos: -88.5,-1.5 + pos: -42.5,-10.5 parent: 2 - uid: 3864 components: - type: Transform - pos: -88.5,-2.5 + pos: -41.5,-10.5 parent: 2 - uid: 3865 components: - type: Transform - pos: -77.5,-6.5 + pos: -40.5,-10.5 parent: 2 - uid: 3866 components: - type: Transform - pos: -102.5,4.5 + pos: -39.5,-10.5 parent: 2 - uid: 3867 components: - type: Transform - pos: -102.5,6.5 + pos: -37.5,-12.5 parent: 2 - uid: 3868 components: - type: Transform - pos: -102.5,7.5 + pos: -102.5,5.5 parent: 2 - uid: 3869 components: - type: Transform - pos: -102.5,8.5 + pos: -38.5,-15.5 parent: 2 - uid: 3870 components: - type: Transform - pos: -102.5,9.5 + pos: -37.5,-13.5 parent: 2 - uid: 3871 components: - type: Transform - pos: -102.5,10.5 + pos: -39.5,-9.5 parent: 2 - uid: 3872 components: - type: Transform - pos: -102.5,11.5 + pos: -38.5,-9.5 parent: 2 - uid: 3873 components: - type: Transform - pos: -102.5,12.5 + pos: -37.5,-9.5 parent: 2 - uid: 3874 components: - type: Transform - pos: -102.5,13.5 + pos: -37.5,-10.5 parent: 2 - uid: 3875 components: - type: Transform - pos: -102.5,14.5 + pos: -36.5,-10.5 parent: 2 - uid: 3876 components: - type: Transform - pos: -102.5,15.5 + pos: -36.5,-11.5 parent: 2 - uid: 3877 components: - type: Transform - pos: -103.5,15.5 + pos: -36.5,-12.5 parent: 2 - uid: 3878 components: - type: Transform - pos: -104.5,15.5 + pos: -37.5,-14.5 parent: 2 - uid: 3879 components: - type: Transform - pos: -105.5,15.5 + pos: -37.5,-15.5 parent: 2 - uid: 3880 components: - type: Transform - pos: -102.5,3.5 + pos: -36.5,-15.5 parent: 2 - uid: 3881 components: - type: Transform - pos: -102.5,2.5 + pos: -35.5,-15.5 parent: 2 - uid: 3882 components: - type: Transform - pos: -102.5,1.5 + pos: -34.5,-15.5 parent: 2 - uid: 3883 components: - type: Transform - pos: -102.5,0.5 + pos: -33.5,-15.5 parent: 2 - uid: 3884 components: - type: Transform - pos: -102.5,-0.5 + pos: -32.5,-15.5 parent: 2 - uid: 3885 components: - type: Transform - pos: -102.5,-1.5 + pos: -31.5,-15.5 parent: 2 - uid: 3886 components: - type: Transform - pos: -102.5,-2.5 + pos: -30.5,-15.5 parent: 2 - uid: 3887 components: - type: Transform - pos: -81.5,-4.5 + pos: -39.5,-15.5 parent: 2 - uid: 3888 components: - type: Transform - pos: -76.5,-7.5 + pos: -39.5,-16.5 parent: 2 - uid: 3889 components: - type: Transform - pos: -82.5,-4.5 + pos: -39.5,-17.5 parent: 2 - uid: 3890 components: - type: Transform - pos: -79.5,-0.5 + pos: -39.5,-18.5 parent: 2 - uid: 3891 components: - type: Transform - pos: -79.5,0.5 + pos: -39.5,-19.5 parent: 2 - uid: 3892 components: - type: Transform - pos: -82.5,-2.5 + pos: -39.5,-20.5 parent: 2 - uid: 3893 components: - type: Transform - pos: -77.5,-0.5 + pos: -39.5,-21.5 parent: 2 - uid: 3894 components: - type: Transform - pos: -77.5,0.5 + pos: -40.5,-21.5 parent: 2 - uid: 3895 components: - type: Transform - pos: -80.5,-0.5 + pos: -41.5,-22.5 parent: 2 - uid: 3896 components: - type: Transform - pos: -82.5,-3.5 + pos: -42.5,-22.5 parent: 2 - uid: 3897 components: - type: Transform - pos: -81.5,-0.5 + pos: -43.5,-22.5 parent: 2 - uid: 3898 components: - type: Transform - pos: -81.5,-1.5 + pos: -44.5,-22.5 parent: 2 - uid: 3899 components: - type: Transform - pos: -78.5,0.5 + pos: -45.5,-22.5 parent: 2 - uid: 3900 components: - type: Transform - pos: -76.5,0.5 + pos: -46.5,-21.5 parent: 2 - uid: 3901 components: - type: Transform - pos: -75.5,0.5 + pos: -47.5,-21.5 parent: 2 - uid: 3902 components: - type: Transform - pos: -74.5,0.5 + pos: -48.5,-21.5 parent: 2 - uid: 3903 components: - type: Transform - pos: -73.5,0.5 + pos: -49.5,-21.5 parent: 2 - uid: 3904 components: - type: Transform - pos: -72.5,0.5 + pos: -49.5,-20.5 parent: 2 - uid: 3905 components: - type: Transform - pos: -72.5,-0.5 + pos: -49.5,-19.5 parent: 2 - uid: 3906 components: - type: Transform - pos: -72.5,-1.5 + pos: -49.5,-18.5 parent: 2 - uid: 3907 components: - type: Transform - pos: -72.5,-2.5 + pos: -50.5,-18.5 parent: 2 - uid: 3908 components: - type: Transform - pos: -70.5,-3.5 + pos: -51.5,-18.5 parent: 2 - uid: 3909 components: - type: Transform - pos: -69.5,-3.5 + pos: -52.5,-18.5 parent: 2 - uid: 3910 components: - type: Transform - pos: -68.5,-3.5 + pos: -53.5,-18.5 parent: 2 - uid: 3911 components: - type: Transform - pos: -67.5,-3.5 + pos: -54.5,-18.5 parent: 2 - uid: 3912 components: - type: Transform - pos: -66.5,-3.5 + pos: -55.5,-18.5 parent: 2 - uid: 3913 components: - type: Transform - pos: -65.5,-3.5 + pos: -56.5,-18.5 parent: 2 - uid: 3914 components: - type: Transform - pos: -64.5,-3.5 + pos: -57.5,-18.5 parent: 2 - uid: 3915 components: - type: Transform - pos: -63.5,-3.5 + pos: -57.5,-19.5 parent: 2 - uid: 3916 components: - type: Transform - pos: -62.5,-3.5 + pos: -58.5,-19.5 parent: 2 - uid: 3917 components: - type: Transform - pos: -61.5,-3.5 + pos: -59.5,-19.5 parent: 2 - uid: 3918 components: - type: Transform - pos: -60.5,-3.5 + pos: -60.5,-19.5 parent: 2 - uid: 3919 components: - type: Transform - pos: -80.5,-6.5 + pos: -60.5,-18.5 parent: 2 - uid: 3920 components: - type: Transform - pos: -81.5,-6.5 + pos: -50.5,-9.5 parent: 2 - uid: 3921 components: - type: Transform - pos: -81.5,-5.5 + pos: -50.5,-8.5 parent: 2 - uid: 3922 components: - type: Transform - pos: -62.5,-12.5 + pos: -50.5,-7.5 parent: 2 - uid: 3923 components: - type: Transform - pos: -68.5,-4.5 + pos: -50.5,-6.5 parent: 2 - uid: 3924 components: - type: Transform - pos: -68.5,-5.5 + pos: -50.5,-5.5 parent: 2 - uid: 3925 components: - type: Transform - pos: -69.5,-5.5 + pos: -50.5,-4.5 parent: 2 - uid: 3926 components: - type: Transform - pos: -72.5,-7.5 + pos: -50.5,-3.5 parent: 2 - uid: 3927 components: - type: Transform - pos: -75.5,-7.5 + pos: -50.5,-2.5 parent: 2 - uid: 3928 components: - type: Transform - pos: -74.5,-7.5 + pos: -50.5,-1.5 parent: 2 - uid: 3929 components: - type: Transform - pos: -77.5,-7.5 + pos: -50.5,-0.5 parent: 2 - uid: 3930 components: - type: Transform - pos: -68.5,15.5 + pos: -50.5,0.5 parent: 2 - uid: 3931 components: - type: Transform - pos: -29.5,-15.5 + pos: -50.5,1.5 parent: 2 - uid: 3932 components: - type: Transform - pos: -28.5,-15.5 + pos: -50.5,2.5 parent: 2 - uid: 3933 components: - type: Transform - pos: -27.5,-15.5 + pos: -50.5,3.5 parent: 2 - uid: 3934 components: - type: Transform - pos: -26.5,-15.5 + pos: -50.5,4.5 parent: 2 - uid: 3935 components: - type: Transform - pos: -26.5,-14.5 + pos: -50.5,5.5 parent: 2 - uid: 3936 components: - type: Transform - pos: -26.5,-13.5 + pos: -50.5,6.5 parent: 2 - uid: 3937 components: - type: Transform - pos: -26.5,-12.5 + pos: -50.5,7.5 parent: 2 - uid: 3938 components: - type: Transform - pos: -26.5,-11.5 + pos: -50.5,8.5 parent: 2 - uid: 3939 components: - type: Transform - pos: -26.5,-10.5 + pos: -51.5,8.5 parent: 2 - uid: 3940 components: - type: Transform - pos: -26.5,-9.5 + pos: -52.5,8.5 parent: 2 - uid: 3941 components: - type: Transform - pos: -26.5,-8.5 + pos: -53.5,8.5 parent: 2 - uid: 3942 components: - type: Transform - pos: -13.5,-8.5 + pos: -54.5,8.5 parent: 2 - uid: 3943 components: - type: Transform - pos: -25.5,-8.5 + pos: -55.5,8.5 parent: 2 - uid: 3944 components: - type: Transform - pos: -24.5,-8.5 + pos: -56.5,8.5 parent: 2 - uid: 3945 components: - type: Transform - pos: -23.5,-8.5 + pos: -57.5,8.5 parent: 2 - uid: 3946 components: - type: Transform - pos: -22.5,-8.5 + pos: -58.5,8.5 parent: 2 - uid: 3947 components: - type: Transform - pos: -21.5,-8.5 + pos: -59.5,8.5 parent: 2 - uid: 3948 components: - type: Transform - pos: -20.5,-8.5 + pos: -60.5,8.5 parent: 2 - uid: 3949 components: - type: Transform - pos: -19.5,-8.5 + pos: -61.5,8.5 parent: 2 - uid: 3950 components: - type: Transform - pos: -18.5,-8.5 + pos: -62.5,8.5 parent: 2 - uid: 3951 components: - type: Transform - pos: -17.5,-8.5 + pos: -63.5,8.5 parent: 2 - uid: 3952 components: - type: Transform - pos: -16.5,-8.5 + pos: -64.5,8.5 parent: 2 - uid: 3953 components: - type: Transform - pos: -15.5,-8.5 + pos: -65.5,8.5 parent: 2 - uid: 3954 components: - type: Transform - pos: -14.5,-8.5 + pos: -66.5,8.5 parent: 2 - uid: 3955 components: - type: Transform - pos: -13.5,-7.5 + pos: -67.5,8.5 parent: 2 - uid: 3956 components: - type: Transform - pos: -13.5,-6.5 + pos: -68.5,8.5 parent: 2 - uid: 3957 components: - type: Transform - pos: -13.5,-5.5 + pos: -69.5,8.5 parent: 2 - uid: 3958 components: - type: Transform - pos: -13.5,-4.5 + pos: -70.5,8.5 parent: 2 - uid: 3959 components: - type: Transform - pos: -13.5,-3.5 + pos: -71.5,8.5 parent: 2 - uid: 3960 components: - type: Transform - pos: -13.5,-2.5 + pos: -72.5,8.5 parent: 2 - uid: 3961 components: - type: Transform - pos: -13.5,-1.5 + pos: -73.5,8.5 parent: 2 - uid: 3962 components: - type: Transform - pos: -13.5,-0.5 + pos: -74.5,8.5 parent: 2 - uid: 3963 components: - type: Transform - pos: -13.5,0.5 + pos: -75.5,8.5 parent: 2 - uid: 3964 components: - type: Transform - pos: -13.5,1.5 + pos: -76.5,8.5 parent: 2 - uid: 3965 components: - type: Transform - pos: -13.5,2.5 + pos: -77.5,8.5 parent: 2 - uid: 3966 components: - type: Transform - pos: -13.5,3.5 + pos: -78.5,8.5 parent: 2 - uid: 3967 components: - type: Transform - pos: -13.5,4.5 + pos: -79.5,8.5 parent: 2 - uid: 3968 components: - type: Transform - pos: -14.5,4.5 + pos: -80.5,8.5 parent: 2 - uid: 3969 components: - type: Transform - pos: -15.5,4.5 + pos: -81.5,8.5 parent: 2 - uid: 3970 components: - type: Transform - pos: -16.5,4.5 + pos: -82.5,8.5 parent: 2 - uid: 3971 components: - type: Transform - pos: -17.5,4.5 + pos: -83.5,8.5 parent: 2 - uid: 3972 components: - type: Transform - pos: -18.5,4.5 + pos: -84.5,8.5 parent: 2 - uid: 3973 components: - type: Transform - pos: -19.5,4.5 + pos: -84.5,7.5 parent: 2 - uid: 3974 components: - type: Transform - pos: -20.5,4.5 + pos: -84.5,6.5 parent: 2 - uid: 3975 components: - type: Transform - pos: -21.5,4.5 + pos: -84.5,5.5 parent: 2 - uid: 3976 components: - type: Transform - pos: -22.5,4.5 + pos: -84.5,4.5 parent: 2 - uid: 3977 components: - type: Transform - pos: -23.5,4.5 + pos: -84.5,3.5 parent: 2 - uid: 3978 components: - type: Transform - pos: -24.5,4.5 + pos: -84.5,2.5 parent: 2 - uid: 3979 components: - type: Transform - pos: -25.5,4.5 + pos: -85.5,2.5 parent: 2 - uid: 3980 components: - type: Transform - pos: -26.5,4.5 + pos: -86.5,2.5 parent: 2 - uid: 3981 components: - type: Transform - pos: -12.5,-3.5 + pos: -87.5,2.5 parent: 2 - uid: 3982 components: - type: Transform - pos: -11.5,-3.5 + pos: -87.5,1.5 parent: 2 - uid: 3983 components: - type: Transform - pos: -10.5,-3.5 + pos: -87.5,0.5 parent: 2 - uid: 3984 components: - type: Transform - pos: -9.5,-3.5 + pos: -87.5,-0.5 parent: 2 - uid: 3985 components: - type: Transform - pos: -9.5,-4.5 + pos: -88.5,-0.5 parent: 2 - uid: 3986 components: - type: Transform - pos: -9.5,-5.5 + pos: -88.5,-1.5 parent: 2 - uid: 3987 components: - type: Transform - pos: -10.5,-5.5 + pos: -88.5,-2.5 parent: 2 - uid: 3988 components: - type: Transform - pos: -9.5,-7.5 + pos: -102.5,4.5 parent: 2 - uid: 3989 components: - type: Transform - pos: -120.5,-20.5 + pos: -102.5,6.5 parent: 2 - uid: 3990 components: - type: Transform - pos: -130.5,-4.5 + pos: -102.5,7.5 parent: 2 - uid: 3991 components: - type: Transform - pos: -130.5,-5.5 + pos: -102.5,8.5 parent: 2 - uid: 3992 components: - type: Transform - pos: -130.5,-6.5 + pos: -102.5,9.5 parent: 2 - uid: 3993 components: - type: Transform - pos: -130.5,-7.5 + pos: -102.5,10.5 parent: 2 - uid: 3994 components: - type: Transform - pos: -130.5,-8.5 + pos: -102.5,11.5 parent: 2 - uid: 3995 components: - type: Transform - pos: -130.5,-9.5 + pos: -102.5,12.5 parent: 2 - uid: 3996 components: - type: Transform - pos: -130.5,-10.5 + pos: -102.5,13.5 parent: 2 - uid: 3997 components: - type: Transform - pos: -130.5,-11.5 + pos: -102.5,14.5 parent: 2 - uid: 3998 components: - type: Transform - pos: -130.5,-12.5 + pos: -102.5,15.5 parent: 2 - uid: 3999 components: - type: Transform - pos: -130.5,-13.5 + pos: -103.5,15.5 parent: 2 - uid: 4000 components: - type: Transform - pos: -129.5,-13.5 + pos: -104.5,15.5 parent: 2 - uid: 4001 components: - type: Transform - pos: -121.5,-13.5 + pos: -105.5,15.5 parent: 2 - uid: 4002 components: - type: Transform - pos: -122.5,-16.5 + pos: -102.5,3.5 parent: 2 - uid: 4003 components: - type: Transform - pos: -121.5,-16.5 + pos: -102.5,2.5 parent: 2 - uid: 4004 components: - type: Transform - pos: -121.5,-15.5 + pos: -102.5,1.5 parent: 2 - uid: 4005 components: - type: Transform - pos: -121.5,-14.5 + pos: -102.5,0.5 parent: 2 - uid: 4006 components: - type: Transform - pos: -120.5,-13.5 + pos: -102.5,-0.5 parent: 2 - uid: 4007 components: - type: Transform - pos: -98.5,-19.5 + pos: -102.5,-1.5 parent: 2 - uid: 4008 components: - type: Transform - pos: -121.5,-17.5 + pos: -102.5,-2.5 parent: 2 - uid: 4009 components: - type: Transform - pos: -121.5,-18.5 + pos: -76.5,-7.5 parent: 2 - uid: 4010 components: - type: Transform - pos: -121.5,-19.5 + pos: -72.5,-6.5 parent: 2 - uid: 4011 components: - type: Transform - pos: -121.5,-20.5 + pos: -77.5,-0.5 parent: 2 - uid: 4012 components: - type: Transform - pos: -119.5,-20.5 + pos: -75.5,0.5 parent: 2 - uid: 4013 components: - type: Transform - pos: -118.5,-20.5 + pos: -70.5,-3.5 parent: 2 - uid: 4014 components: - type: Transform - pos: -117.5,-20.5 + pos: -69.5,-3.5 parent: 2 - uid: 4015 components: - type: Transform - pos: -116.5,-20.5 + pos: -68.5,-3.5 parent: 2 - uid: 4016 components: - type: Transform - pos: -115.5,-20.5 + pos: -67.5,-3.5 parent: 2 - uid: 4017 components: - type: Transform - pos: -114.5,-20.5 + pos: -66.5,-3.5 parent: 2 - uid: 4018 components: - type: Transform - pos: -114.5,-21.5 + pos: -65.5,-3.5 parent: 2 - uid: 4019 components: - type: Transform - pos: -113.5,-21.5 + pos: -64.5,-3.5 parent: 2 - uid: 4020 components: - type: Transform - pos: -109.5,-21.5 + pos: -63.5,-3.5 parent: 2 - uid: 4021 components: - type: Transform - pos: -112.5,-21.5 + pos: -62.5,-3.5 parent: 2 - uid: 4022 components: - type: Transform - pos: -112.5,-21.5 + pos: -61.5,-3.5 parent: 2 - uid: 4023 components: - type: Transform - pos: -110.5,-21.5 + pos: -60.5,-3.5 parent: 2 - uid: 4024 components: - type: Transform - pos: -110.5,-21.5 + pos: -62.5,-12.5 parent: 2 - uid: 4025 components: - type: Transform - pos: -111.5,-21.5 + pos: -68.5,-4.5 parent: 2 - uid: 4026 components: - type: Transform - pos: -105.5,-20.5 + pos: -68.5,-5.5 parent: 2 - uid: 4027 components: - type: Transform - pos: -103.5,-20.5 + pos: -69.5,-5.5 parent: 2 - uid: 4028 components: - type: Transform - pos: -102.5,-20.5 + pos: -68.5,15.5 parent: 2 - uid: 4029 components: - type: Transform - pos: -101.5,-20.5 + pos: -29.5,-15.5 parent: 2 - uid: 4030 components: - type: Transform - pos: -100.5,-20.5 + pos: -28.5,-15.5 parent: 2 - uid: 4031 components: - type: Transform - pos: -99.5,-20.5 + pos: -27.5,-15.5 parent: 2 - uid: 4032 components: - type: Transform - pos: -98.5,-20.5 + pos: -26.5,-15.5 parent: 2 - uid: 4033 components: - type: Transform - pos: -84.5,-16.5 + pos: -26.5,-14.5 parent: 2 - uid: 4034 components: - type: Transform - pos: -98.5,-18.5 + pos: -26.5,-13.5 parent: 2 - uid: 4035 components: - type: Transform - pos: -96.5,-18.5 + pos: -26.5,-12.5 parent: 2 - uid: 4036 components: - type: Transform - pos: -97.5,-18.5 + pos: -26.5,-11.5 parent: 2 - uid: 4037 components: - type: Transform - pos: -95.5,-18.5 + pos: -26.5,-10.5 parent: 2 - uid: 4038 components: - type: Transform - pos: -95.5,-17.5 + pos: -26.5,-9.5 parent: 2 - uid: 4039 components: - type: Transform - pos: -95.5,-16.5 + pos: -26.5,-8.5 parent: 2 - uid: 4040 components: - type: Transform - pos: -94.5,-16.5 + pos: -13.5,-8.5 parent: 2 - uid: 4041 components: - type: Transform - pos: -93.5,-16.5 + pos: -25.5,-8.5 parent: 2 - uid: 4042 components: - type: Transform - pos: -90.5,-18.5 + pos: -24.5,-8.5 parent: 2 - uid: 4043 components: - type: Transform - pos: -89.5,-18.5 + pos: -23.5,-8.5 parent: 2 - uid: 4044 components: - type: Transform - pos: -88.5,-18.5 + pos: -22.5,-8.5 parent: 2 - uid: 4045 components: - type: Transform - pos: -87.5,-18.5 + pos: -21.5,-8.5 parent: 2 - uid: 4046 components: - type: Transform - pos: -86.5,-18.5 + pos: -20.5,-8.5 parent: 2 - uid: 4047 components: - type: Transform - pos: -85.5,-18.5 + pos: -19.5,-8.5 parent: 2 - uid: 4048 components: - type: Transform - pos: -84.5,-18.5 + pos: -18.5,-8.5 parent: 2 - uid: 4049 components: - type: Transform - pos: -85.5,-34.5 + pos: -17.5,-8.5 parent: 2 - uid: 4050 components: - type: Transform - pos: -84.5,-17.5 + pos: -16.5,-8.5 parent: 2 - uid: 4051 components: - type: Transform - pos: -85.5,-33.5 + pos: -15.5,-8.5 parent: 2 - uid: 4052 components: - type: Transform - pos: -85.5,-32.5 + pos: -14.5,-8.5 parent: 2 - uid: 4053 components: - type: Transform - pos: -13.5,11.5 + pos: -13.5,-7.5 parent: 2 - uid: 4054 components: - type: Transform - pos: -13.5,10.5 + pos: -13.5,-6.5 parent: 2 - uid: 4055 components: - type: Transform - pos: -12.5,8.5 + pos: -13.5,-5.5 parent: 2 - uid: 4056 components: - type: Transform - pos: -12.5,7.5 + pos: -13.5,-4.5 parent: 2 - uid: 4057 components: - type: Transform - pos: -13.5,7.5 + pos: -13.5,-3.5 parent: 2 - uid: 4058 components: - type: Transform - pos: -13.5,6.5 + pos: -13.5,-2.5 parent: 2 - uid: 4059 components: - type: Transform - pos: -13.5,5.5 + pos: -13.5,-1.5 parent: 2 - uid: 4060 components: - type: Transform - pos: -182.5,-9.5 + pos: -13.5,-0.5 parent: 2 - uid: 4061 components: - type: Transform - pos: -123.5,-16.5 + pos: -13.5,0.5 parent: 2 - uid: 4062 components: - type: Transform - pos: -124.5,-16.5 + pos: -13.5,1.5 parent: 2 - uid: 4063 components: - type: Transform - pos: -124.5,-15.5 + pos: -13.5,2.5 parent: 2 - uid: 4064 components: - type: Transform - pos: -124.5,-14.5 + pos: -13.5,3.5 parent: 2 - uid: 4065 components: - type: Transform - pos: -125.5,-14.5 + pos: -13.5,4.5 parent: 2 - uid: 4066 components: - type: Transform - pos: -128.5,-13.5 + pos: -14.5,4.5 parent: 2 - uid: 4067 components: - type: Transform - pos: -58.5,10.5 + pos: -15.5,4.5 parent: 2 - uid: 4068 components: - type: Transform - pos: -58.5,11.5 + pos: -16.5,4.5 parent: 2 - uid: 4069 components: - type: Transform - pos: -59.5,11.5 + pos: -17.5,4.5 parent: 2 - uid: 4070 components: - type: Transform - pos: -60.5,11.5 + pos: -18.5,4.5 parent: 2 - uid: 4071 components: - type: Transform - pos: -61.5,11.5 + pos: -19.5,4.5 parent: 2 - uid: 4072 components: - type: Transform - pos: -62.5,11.5 + pos: -20.5,4.5 parent: 2 - uid: 4073 components: - type: Transform - pos: -63.5,11.5 + pos: -21.5,4.5 parent: 2 - uid: 4074 components: - type: Transform - pos: -63.5,12.5 + pos: -22.5,4.5 parent: 2 - uid: 4075 components: - type: Transform - pos: -63.5,13.5 + pos: -23.5,4.5 parent: 2 - uid: 4076 components: - type: Transform - pos: -63.5,14.5 + pos: -24.5,4.5 parent: 2 - uid: 4077 components: - type: Transform - pos: -64.5,14.5 + pos: -25.5,4.5 parent: 2 - uid: 4078 components: - type: Transform - pos: -65.5,14.5 + pos: -26.5,4.5 parent: 2 - uid: 4079 components: - type: Transform - pos: -66.5,14.5 + pos: -12.5,-3.5 parent: 2 - uid: 4080 components: - type: Transform - pos: -73.5,14.5 + pos: -11.5,-3.5 parent: 2 - uid: 4081 components: - type: Transform - pos: -73.5,15.5 + pos: -10.5,-3.5 parent: 2 - uid: 4082 components: - type: Transform - pos: -72.5,15.5 + pos: -9.5,-3.5 parent: 2 - uid: 4083 components: - type: Transform - pos: -71.5,15.5 + pos: -9.5,-4.5 parent: 2 - uid: 4084 components: - type: Transform - pos: -69.5,14.5 + pos: -9.5,-5.5 parent: 2 - uid: 4085 components: - type: Transform - pos: -69.5,15.5 + pos: -10.5,-5.5 parent: 2 - uid: 4086 components: - type: Transform - pos: -71.5,-3.5 + pos: -9.5,-7.5 parent: 2 - uid: 4087 components: - type: Transform - pos: -61.5,-2.5 + pos: -120.5,-20.5 parent: 2 - uid: 4088 components: - type: Transform - pos: -61.5,-5.5 + pos: -130.5,-4.5 parent: 2 - uid: 4089 components: - type: Transform - pos: -57.5,-11.5 + pos: -130.5,-5.5 parent: 2 - uid: 4090 components: - type: Transform - pos: -46.5,-22.5 + pos: -130.5,-6.5 parent: 2 - uid: 4091 components: - type: Transform - pos: -109.5,-20.5 + pos: -130.5,-7.5 parent: 2 - uid: 4092 components: - type: Transform - pos: -109.5,-19.5 + pos: -130.5,-8.5 parent: 2 - uid: 4093 components: - type: Transform - pos: -109.5,-19.5 + pos: -130.5,-9.5 parent: 2 - uid: 4094 components: - type: Transform - pos: -108.5,-18.5 + pos: -130.5,-10.5 parent: 2 - uid: 4095 components: - type: Transform - pos: -109.5,-18.5 + pos: -130.5,-11.5 parent: 2 - uid: 4096 components: - type: Transform - pos: -107.5,-18.5 + pos: -130.5,-12.5 parent: 2 - uid: 4097 components: - type: Transform - pos: -105.5,-21.5 + pos: -130.5,-13.5 parent: 2 - uid: 4098 components: - type: Transform - pos: -104.5,-21.5 + pos: -129.5,-13.5 parent: 2 - uid: 4099 components: - type: Transform - pos: -103.5,-21.5 + pos: -121.5,-13.5 parent: 2 - uid: 4100 components: - type: Transform - pos: -106.5,-18.5 + pos: -122.5,-16.5 parent: 2 - uid: 4101 components: - type: Transform - pos: -105.5,-18.5 + pos: -121.5,-16.5 parent: 2 - uid: 4102 components: - type: Transform - pos: -105.5,-19.5 + pos: -121.5,-15.5 parent: 2 - uid: 4103 components: - type: Transform - pos: -92.5,-16.5 + pos: -121.5,-14.5 parent: 2 - uid: 4104 components: - type: Transform - pos: -92.5,-17.5 + pos: -120.5,-13.5 parent: 2 - uid: 4105 components: - type: Transform - pos: -92.5,-18.5 + pos: -98.5,-19.5 parent: 2 - uid: 4106 components: - type: Transform - pos: -91.5,-18.5 + pos: -121.5,-17.5 parent: 2 - uid: 4107 components: - type: Transform - pos: -73.5,13.5 + pos: -121.5,-18.5 parent: 2 - uid: 4108 components: - type: Transform - pos: -74.5,13.5 + pos: -121.5,-19.5 parent: 2 - uid: 4109 components: - type: Transform - pos: -76.5,13.5 + pos: -121.5,-20.5 parent: 2 - uid: 4110 components: - type: Transform - pos: -77.5,13.5 + pos: -119.5,-20.5 parent: 2 - uid: 4111 components: - type: Transform - pos: -78.5,13.5 + pos: -118.5,-20.5 parent: 2 - uid: 4112 components: - type: Transform - pos: -78.5,13.5 + pos: -117.5,-20.5 parent: 2 - uid: 4113 components: - type: Transform - pos: -79.5,13.5 + pos: -116.5,-20.5 parent: 2 - uid: 4114 components: - type: Transform - pos: -79.5,11.5 + pos: -115.5,-20.5 parent: 2 - uid: 4115 components: - type: Transform - pos: -79.5,11.5 + pos: -114.5,-20.5 parent: 2 - uid: 4116 components: - type: Transform - pos: -79.5,12.5 + pos: -114.5,-21.5 parent: 2 - uid: 4117 components: - type: Transform - pos: -80.5,11.5 + pos: -113.5,-21.5 parent: 2 - uid: 4118 components: - type: Transform - pos: -81.5,11.5 + pos: -109.5,-21.5 parent: 2 - uid: 4119 components: - type: Transform - pos: -82.5,11.5 + pos: -112.5,-21.5 parent: 2 - uid: 4120 components: - type: Transform - pos: -83.5,11.5 + pos: -112.5,-21.5 parent: 2 - uid: 4121 components: - type: Transform - pos: -67.5,15.5 + pos: -110.5,-21.5 parent: 2 - uid: 4122 components: - type: Transform - pos: -66.5,15.5 + pos: -110.5,-21.5 parent: 2 - uid: 4123 components: - type: Transform - pos: -75.5,13.5 + pos: -111.5,-21.5 parent: 2 - uid: 4124 components: - type: Transform - pos: -7.5,-3.5 + pos: -105.5,-20.5 parent: 2 - uid: 4125 components: - type: Transform - pos: -6.5,-3.5 + pos: -103.5,-20.5 parent: 2 - uid: 4126 components: - type: Transform - pos: -2.5,-3.5 + pos: -102.5,-20.5 parent: 2 - uid: 4127 components: - type: Transform - pos: -8.5,-3.5 + pos: -101.5,-20.5 parent: 2 - uid: 4128 components: - type: Transform - pos: -5.5,-3.5 + pos: -100.5,-20.5 parent: 2 - uid: 4129 components: - type: Transform - pos: -3.5,-3.5 + pos: -99.5,-20.5 parent: 2 - uid: 4130 components: - type: Transform - pos: -55.5,11.5 + pos: -98.5,-20.5 parent: 2 - uid: 4131 components: - type: Transform - pos: -57.5,11.5 + pos: -84.5,-16.5 parent: 2 - uid: 4132 components: - type: Transform - pos: -56.5,11.5 + pos: -98.5,-18.5 parent: 2 - uid: 4133 components: - type: Transform - pos: -4.5,-3.5 + pos: -96.5,-18.5 parent: 2 - uid: 4134 components: - type: Transform - pos: -54.5,11.5 + pos: -97.5,-18.5 parent: 2 - uid: 4135 components: - type: Transform - pos: -53.5,11.5 + pos: -95.5,-18.5 parent: 2 - uid: 4136 components: - type: Transform - pos: -52.5,11.5 + pos: -95.5,-17.5 parent: 2 - uid: 4137 components: - type: Transform - pos: -51.5,11.5 + pos: -95.5,-16.5 parent: 2 - uid: 4138 components: - type: Transform - pos: -50.5,11.5 + pos: -94.5,-16.5 parent: 2 - uid: 4139 components: - type: Transform - pos: -49.5,11.5 + pos: -93.5,-16.5 parent: 2 - uid: 4140 components: - type: Transform - pos: -48.5,11.5 + pos: -90.5,-18.5 parent: 2 - uid: 4141 components: - type: Transform - pos: -47.5,11.5 + pos: -89.5,-18.5 parent: 2 - uid: 4142 components: - type: Transform - pos: -46.5,11.5 + pos: -88.5,-18.5 parent: 2 - uid: 4143 components: - type: Transform - pos: -46.5,12.5 + pos: -87.5,-18.5 parent: 2 - uid: 4144 components: - type: Transform - pos: -45.5,12.5 + pos: -86.5,-18.5 parent: 2 - uid: 4145 components: - type: Transform - pos: -44.5,12.5 + pos: -85.5,-18.5 parent: 2 - uid: 4146 components: - type: Transform - pos: -43.5,12.5 + pos: -84.5,-18.5 parent: 2 - uid: 4147 components: - type: Transform - pos: -42.5,12.5 + pos: -85.5,-34.5 parent: 2 - uid: 4148 components: - type: Transform - pos: -41.5,12.5 + pos: -84.5,-17.5 parent: 2 - uid: 4149 components: - type: Transform - pos: -40.5,12.5 + pos: -85.5,-33.5 parent: 2 - uid: 4150 components: - type: Transform - pos: -39.5,12.5 + pos: -85.5,-32.5 parent: 2 - uid: 4151 components: - type: Transform - pos: -39.5,13.5 + pos: -13.5,11.5 parent: 2 - uid: 4152 components: - type: Transform - pos: -39.5,14.5 + pos: -13.5,10.5 parent: 2 - uid: 4153 components: - type: Transform - pos: -39.5,15.5 + pos: -12.5,8.5 parent: 2 - uid: 4154 components: - type: Transform - pos: -39.5,16.5 + pos: -12.5,7.5 parent: 2 - uid: 4155 components: - type: Transform - pos: -38.5,16.5 + pos: -13.5,7.5 parent: 2 - uid: 4156 components: - type: Transform - pos: -37.5,16.5 + pos: -13.5,6.5 parent: 2 - uid: 4157 components: - type: Transform - pos: -36.5,16.5 + pos: -13.5,5.5 parent: 2 - uid: 4158 components: - type: Transform - pos: -36.5,17.5 + pos: -182.5,-9.5 parent: 2 - uid: 4159 components: - type: Transform - pos: -1.5,-3.5 + pos: -123.5,-16.5 parent: 2 - uid: 4160 components: - type: Transform - pos: -3.5,-2.5 + pos: -124.5,-16.5 parent: 2 - uid: 4161 components: - type: Transform - pos: -3.5,-1.5 + pos: -124.5,-15.5 parent: 2 - uid: 4162 components: - type: Transform - pos: -3.5,-0.5 + pos: -124.5,-14.5 parent: 2 - uid: 4163 components: - type: Transform - pos: -3.5,0.5 + pos: -125.5,-14.5 parent: 2 - uid: 4164 components: - type: Transform - pos: -2.5,0.5 + pos: -128.5,-13.5 parent: 2 - uid: 4165 components: - type: Transform - pos: -156.5,-4.5 + pos: -58.5,10.5 parent: 2 - uid: 4166 components: - type: Transform - pos: -156.5,-5.5 + pos: -58.5,11.5 parent: 2 - uid: 4167 components: - type: Transform - pos: -156.5,-6.5 + pos: -59.5,11.5 parent: 2 - uid: 4168 components: - type: Transform - pos: -156.5,-7.5 + pos: -60.5,11.5 parent: 2 - uid: 4169 components: - type: Transform - pos: -156.5,-8.5 + pos: -61.5,11.5 parent: 2 - uid: 4170 components: - type: Transform - pos: -156.5,-9.5 + pos: -62.5,11.5 parent: 2 - uid: 4171 components: - type: Transform - pos: -156.5,-10.5 + pos: -63.5,11.5 parent: 2 - uid: 4172 components: - type: Transform - pos: -156.5,-11.5 + pos: -63.5,12.5 parent: 2 - uid: 4173 components: - type: Transform - pos: -156.5,-12.5 + pos: -63.5,13.5 parent: 2 - uid: 4174 components: - type: Transform - pos: -156.5,-13.5 + pos: -63.5,14.5 parent: 2 - uid: 4175 components: - type: Transform - pos: -156.5,-14.5 + pos: -64.5,14.5 parent: 2 - uid: 4176 components: - type: Transform - pos: -156.5,-15.5 + pos: -65.5,14.5 parent: 2 - uid: 4177 components: - type: Transform - pos: -157.5,-13.5 + pos: -66.5,14.5 parent: 2 - uid: 4178 components: - type: Transform - pos: -158.5,-13.5 + pos: -73.5,14.5 parent: 2 - uid: 4179 components: - type: Transform - pos: -159.5,-13.5 + pos: -73.5,15.5 parent: 2 - uid: 4180 components: - type: Transform - pos: -160.5,-13.5 + pos: -72.5,15.5 parent: 2 - uid: 4181 components: - type: Transform - pos: -160.5,-14.5 + pos: -71.5,15.5 parent: 2 - uid: 4182 components: - type: Transform - pos: -161.5,-14.5 + pos: -69.5,14.5 parent: 2 - uid: 4183 components: - type: Transform - pos: -162.5,-14.5 + pos: -69.5,15.5 parent: 2 - uid: 4184 components: - type: Transform - pos: -163.5,-14.5 + pos: -71.5,-3.5 parent: 2 - uid: 4185 components: - type: Transform - pos: -164.5,-14.5 + pos: -61.5,-2.5 parent: 2 - uid: 4186 components: - type: Transform - pos: -165.5,-14.5 + pos: -61.5,-5.5 parent: 2 - uid: 4187 components: - type: Transform - pos: -166.5,-14.5 + pos: -57.5,-11.5 parent: 2 - uid: 4188 components: - type: Transform - pos: -167.5,-14.5 + pos: -46.5,-22.5 parent: 2 - uid: 4189 components: - type: Transform - pos: -160.5,-15.5 + pos: -109.5,-20.5 parent: 2 - uid: 4190 components: - type: Transform - pos: -160.5,-16.5 + pos: -109.5,-19.5 parent: 2 - uid: 4191 components: - type: Transform - pos: -161.5,-16.5 + pos: -109.5,-19.5 parent: 2 - uid: 4192 components: - type: Transform - pos: -162.5,-16.5 + pos: -108.5,-18.5 parent: 2 - uid: 4193 components: - type: Transform - pos: -163.5,-16.5 + pos: -109.5,-18.5 parent: 2 - uid: 4194 components: - type: Transform - pos: -164.5,-16.5 + pos: -107.5,-18.5 parent: 2 - uid: 4195 components: - type: Transform - pos: -165.5,-16.5 + pos: -105.5,-21.5 parent: 2 - uid: 4196 components: - type: Transform - pos: -166.5,-16.5 + pos: -104.5,-21.5 parent: 2 - uid: 4197 components: - type: Transform - pos: -167.5,-16.5 + pos: -103.5,-21.5 parent: 2 - uid: 4198 components: - type: Transform - pos: -15.5,-14.5 + pos: -106.5,-18.5 parent: 2 - uid: 4199 components: - type: Transform - pos: -14.5,-14.5 + pos: -105.5,-18.5 parent: 2 - uid: 4200 components: - type: Transform - pos: -14.5,-13.5 + pos: -105.5,-19.5 parent: 2 - uid: 4201 components: - type: Transform - pos: -14.5,-12.5 + pos: -92.5,-16.5 parent: 2 - uid: 4202 components: - type: Transform - pos: -14.5,-11.5 + pos: -92.5,-17.5 parent: 2 - uid: 4203 components: - type: Transform - pos: -14.5,-10.5 + pos: -92.5,-18.5 parent: 2 - uid: 4204 components: - type: Transform - pos: -14.5,-9.5 + pos: -91.5,-18.5 parent: 2 - uid: 4205 components: - type: Transform - pos: -16.5,-14.5 + pos: -73.5,13.5 parent: 2 - uid: 4206 components: - type: Transform - pos: -16.5,-15.5 + pos: -74.5,13.5 parent: 2 - uid: 4207 components: - type: Transform - pos: -12.5,9.5 + pos: -76.5,13.5 parent: 2 - uid: 4208 components: - type: Transform - pos: -12.5,10.5 + pos: -77.5,13.5 parent: 2 - uid: 4209 components: - type: Transform - pos: -10.5,-6.5 + pos: -78.5,13.5 parent: 2 - uid: 4210 components: - type: Transform - pos: -10.5,-7.5 + pos: -78.5,13.5 parent: 2 - uid: 4211 components: - type: Transform - pos: -9.5,-7.5 + pos: -79.5,13.5 parent: 2 - uid: 4212 components: - type: Transform - pos: -100.5,-23.5 + pos: -79.5,11.5 parent: 2 - uid: 4213 components: - type: Transform - pos: -102.5,-23.5 + pos: -79.5,11.5 parent: 2 - uid: 4214 components: - type: Transform - pos: -99.5,-23.5 + pos: -79.5,12.5 parent: 2 - uid: 4215 components: - type: Transform - pos: -99.5,-21.5 + pos: -80.5,11.5 parent: 2 - uid: 4216 components: - type: Transform - pos: -99.5,-22.5 + pos: -81.5,11.5 parent: 2 - uid: 4217 components: - type: Transform - pos: -101.5,-23.5 + pos: -82.5,11.5 parent: 2 - uid: 4218 components: - type: Transform - pos: -102.5,-25.5 + pos: -83.5,11.5 parent: 2 - uid: 4219 components: - type: Transform - pos: -102.5,-24.5 + pos: -67.5,15.5 parent: 2 - uid: 4220 components: - type: Transform - pos: -13.5,12.5 + pos: -66.5,15.5 parent: 2 - uid: 4221 components: - type: Transform - pos: -13.5,13.5 + pos: -75.5,13.5 parent: 2 - uid: 4222 components: - type: Transform - pos: -13.5,15.5 + pos: -7.5,-3.5 parent: 2 - uid: 4223 components: - type: Transform - pos: -13.5,14.5 + pos: -6.5,-3.5 parent: 2 - uid: 4224 components: - type: Transform - pos: -14.5,17.5 + pos: -2.5,-3.5 parent: 2 - uid: 4225 components: - type: Transform - pos: -15.5,17.5 + pos: -8.5,-3.5 parent: 2 - uid: 4226 components: - type: Transform - pos: -15.5,16.5 + pos: -5.5,-3.5 parent: 2 - uid: 4227 components: - type: Transform - pos: -16.5,16.5 + pos: -3.5,-3.5 parent: 2 - uid: 4228 components: - type: Transform - pos: -17.5,16.5 + pos: -55.5,11.5 parent: 2 - uid: 4229 components: - type: Transform - pos: -18.5,16.5 + pos: -57.5,11.5 parent: 2 - uid: 4230 components: - type: Transform - pos: -18.5,18.5 + pos: -56.5,11.5 parent: 2 - uid: 4231 components: - type: Transform - pos: -17.5,18.5 + pos: -4.5,-3.5 parent: 2 - uid: 4232 components: - type: Transform - pos: -16.5,18.5 + pos: -54.5,11.5 parent: 2 - uid: 4233 components: - type: Transform - pos: -15.5,18.5 + pos: -53.5,11.5 parent: 2 - uid: 4234 components: - type: Transform - pos: -12.5,17.5 + pos: -52.5,11.5 parent: 2 - uid: 4235 components: - type: Transform - pos: -11.5,17.5 + pos: -51.5,11.5 parent: 2 - uid: 4236 components: - type: Transform - pos: -11.5,18.5 + pos: -50.5,11.5 parent: 2 - uid: 4237 components: - type: Transform - pos: -10.5,18.5 + pos: -49.5,11.5 parent: 2 - uid: 4238 components: - type: Transform - pos: -9.5,18.5 + pos: -48.5,11.5 parent: 2 - uid: 4239 components: - type: Transform - pos: -8.5,18.5 + pos: -47.5,11.5 parent: 2 - uid: 4240 components: - type: Transform - pos: -8.5,16.5 + pos: -46.5,11.5 parent: 2 - uid: 4241 components: - type: Transform - pos: -9.5,16.5 + pos: -46.5,12.5 parent: 2 - uid: 4242 components: - type: Transform - pos: -10.5,16.5 + pos: -45.5,12.5 parent: 2 - uid: 4243 components: - type: Transform - pos: -11.5,16.5 + pos: -44.5,12.5 parent: 2 - uid: 4244 components: - type: Transform - pos: -12.5,21.5 + pos: -43.5,12.5 parent: 2 - uid: 4245 components: - type: Transform - pos: -11.5,21.5 + pos: -42.5,12.5 parent: 2 - uid: 4246 components: - type: Transform - pos: -11.5,22.5 + pos: -41.5,12.5 parent: 2 - uid: 4247 components: - type: Transform - pos: -10.5,22.5 + pos: -40.5,12.5 parent: 2 - uid: 4248 components: - type: Transform - pos: -9.5,22.5 + pos: -39.5,12.5 parent: 2 - uid: 4249 components: - type: Transform - pos: -8.5,22.5 + pos: -39.5,13.5 parent: 2 - uid: 4250 components: - type: Transform - pos: -8.5,20.5 + pos: -39.5,14.5 parent: 2 - uid: 4251 components: - type: Transform - pos: -9.5,20.5 + pos: -39.5,15.5 parent: 2 - uid: 4252 components: - type: Transform - pos: -10.5,20.5 + pos: -39.5,16.5 parent: 2 - uid: 4253 components: - type: Transform - pos: -11.5,20.5 + pos: -38.5,16.5 parent: 2 - uid: 4254 components: - type: Transform - pos: -14.5,21.5 + pos: -37.5,16.5 parent: 2 - uid: 4255 components: - type: Transform - pos: -15.5,21.5 + pos: -36.5,16.5 parent: 2 - uid: 4256 components: - type: Transform - pos: -15.5,20.5 + pos: -36.5,17.5 parent: 2 - uid: 4257 components: - type: Transform - pos: -16.5,20.5 + pos: -1.5,-3.5 parent: 2 - uid: 4258 components: - type: Transform - pos: -17.5,20.5 + pos: -3.5,-2.5 parent: 2 - uid: 4259 components: - type: Transform - pos: -18.5,20.5 + pos: -3.5,-1.5 parent: 2 - uid: 4260 components: - type: Transform - pos: -18.5,22.5 + pos: -3.5,-0.5 parent: 2 - uid: 4261 components: - type: Transform - pos: -17.5,22.5 + pos: -3.5,0.5 parent: 2 - uid: 4262 components: - type: Transform - pos: -16.5,22.5 + pos: -2.5,0.5 parent: 2 - uid: 4263 components: - type: Transform - pos: -15.5,22.5 + pos: -156.5,-4.5 parent: 2 - uid: 4264 components: - type: Transform - pos: -18.5,24.5 + pos: -156.5,-5.5 parent: 2 - uid: 4265 components: - type: Transform - pos: -17.5,24.5 + pos: -156.5,-6.5 parent: 2 - uid: 4266 components: - type: Transform - pos: -16.5,24.5 + pos: -156.5,-7.5 parent: 2 - uid: 4267 components: - type: Transform - pos: -15.5,24.5 + pos: -156.5,-8.5 parent: 2 - uid: 4268 components: - type: Transform - pos: -15.5,25.5 + pos: -156.5,-9.5 parent: 2 - uid: 4269 components: - type: Transform - pos: -14.5,25.5 + pos: -156.5,-10.5 parent: 2 - uid: 4270 components: - type: Transform - pos: -15.5,26.5 + pos: -156.5,-11.5 parent: 2 - uid: 4271 components: - type: Transform - pos: -16.5,26.5 + pos: -156.5,-12.5 parent: 2 - uid: 4272 components: - type: Transform - pos: -17.5,26.5 + pos: -156.5,-13.5 parent: 2 - uid: 4273 components: - type: Transform - pos: -18.5,26.5 + pos: -156.5,-14.5 parent: 2 - uid: 4274 components: - type: Transform - pos: -12.5,25.5 + pos: -156.5,-15.5 parent: 2 - uid: 4275 components: - type: Transform - pos: -11.5,25.5 + pos: -157.5,-13.5 parent: 2 - uid: 4276 components: - type: Transform - pos: -11.5,26.5 + pos: -158.5,-13.5 parent: 2 - uid: 4277 components: - type: Transform - pos: -10.5,26.5 + pos: -159.5,-13.5 parent: 2 - uid: 4278 components: - type: Transform - pos: -9.5,26.5 + pos: -160.5,-13.5 parent: 2 - uid: 4279 components: - type: Transform - pos: -8.5,24.5 + pos: -160.5,-14.5 parent: 2 - uid: 4280 components: - type: Transform - pos: -9.5,24.5 + pos: -161.5,-14.5 parent: 2 - uid: 4281 components: - type: Transform - pos: -10.5,24.5 + pos: -162.5,-14.5 parent: 2 - uid: 4282 components: - type: Transform - pos: -11.5,24.5 + pos: -163.5,-14.5 parent: 2 - uid: 4283 components: - type: Transform - pos: -8.5,26.5 + pos: -164.5,-14.5 parent: 2 - uid: 4284 components: - type: Transform - pos: -13.5,27.5 + pos: -165.5,-14.5 parent: 2 - uid: 4285 components: - type: Transform - pos: -13.5,26.5 + pos: -166.5,-14.5 parent: 2 - uid: 4286 components: - type: Transform - pos: -39.5,-26.5 + pos: -167.5,-14.5 parent: 2 - uid: 4287 components: - type: Transform - pos: -39.5,-25.5 + pos: -160.5,-15.5 parent: 2 - uid: 4288 components: - type: Transform - pos: -39.5,-24.5 + pos: -160.5,-16.5 parent: 2 - uid: 4289 components: - type: Transform - pos: -38.5,-24.5 + pos: -161.5,-16.5 parent: 2 - uid: 4290 components: - type: Transform - pos: -38.5,-23.5 + pos: -162.5,-16.5 parent: 2 - uid: 4291 components: - type: Transform - pos: -38.5,-22.5 + pos: -163.5,-16.5 parent: 2 - uid: 4292 components: - type: Transform - pos: -38.5,-21.5 + pos: -164.5,-16.5 parent: 2 - uid: 4293 components: - type: Transform - pos: -39.5,-27.5 + pos: -165.5,-16.5 parent: 2 - uid: 4294 components: - type: Transform - pos: -39.5,-28.5 + pos: -166.5,-16.5 parent: 2 - uid: 4295 components: - type: Transform - pos: -39.5,-29.5 + pos: -167.5,-16.5 parent: 2 - uid: 4296 components: - type: Transform - pos: -39.5,-29.5 + pos: -15.5,-14.5 parent: 2 - uid: 4297 components: - type: Transform - pos: -39.5,-30.5 + pos: -14.5,-14.5 parent: 2 - uid: 4298 components: - type: Transform - pos: -38.5,-30.5 + pos: -14.5,-13.5 parent: 2 - uid: 4299 components: - type: Transform - pos: -38.5,-30.5 + pos: -14.5,-12.5 parent: 2 - uid: 4300 components: - type: Transform - pos: -38.5,-31.5 + pos: -14.5,-11.5 parent: 2 - uid: 4301 components: - type: Transform - pos: -36.5,-33.5 + pos: -14.5,-10.5 parent: 2 - uid: 4302 components: - type: Transform - pos: -36.5,-32.5 + pos: -14.5,-9.5 parent: 2 - uid: 4303 components: - type: Transform - pos: -37.5,-33.5 + pos: -16.5,-14.5 parent: 2 - uid: 4304 components: - type: Transform - pos: -37.5,-34.5 + pos: -16.5,-15.5 parent: 2 - uid: 4305 components: - type: Transform - pos: -37.5,-35.5 + pos: -12.5,9.5 parent: 2 - uid: 4306 components: - type: Transform - pos: -35.5,-35.5 + pos: -12.5,10.5 parent: 2 - uid: 4307 components: - type: Transform - pos: -35.5,-34.5 + pos: -10.5,-6.5 parent: 2 - uid: 4308 components: - type: Transform - pos: -35.5,-33.5 + pos: -10.5,-7.5 parent: 2 - uid: 4309 components: - type: Transform - pos: -33.5,-35.5 + pos: -9.5,-7.5 parent: 2 - uid: 4310 components: - type: Transform - pos: -33.5,-34.5 + pos: -100.5,-23.5 parent: 2 - uid: 4311 components: - type: Transform - pos: -33.5,-33.5 + pos: -102.5,-23.5 parent: 2 - uid: 4312 components: - type: Transform - pos: -31.5,-35.5 + pos: -99.5,-23.5 parent: 2 - uid: 4313 components: - type: Transform - pos: -31.5,-34.5 + pos: -99.5,-21.5 parent: 2 - uid: 4314 components: - type: Transform - pos: -31.5,-33.5 + pos: -99.5,-22.5 parent: 2 - uid: 4315 components: - type: Transform - pos: -29.5,-35.5 + pos: -101.5,-23.5 parent: 2 - uid: 4316 components: - type: Transform - pos: -29.5,-34.5 + pos: -102.5,-25.5 parent: 2 - uid: 4317 components: - type: Transform - pos: -29.5,-33.5 + pos: -102.5,-24.5 parent: 2 - uid: 4318 components: - type: Transform - pos: -27.5,-33.5 + pos: -13.5,12.5 parent: 2 - uid: 4319 components: - type: Transform - pos: -27.5,-34.5 + pos: -13.5,13.5 parent: 2 - uid: 4320 components: - type: Transform - pos: -27.5,-35.5 + pos: -13.5,15.5 parent: 2 - uid: 4321 components: - type: Transform - pos: -25.5,-35.5 + pos: -13.5,14.5 parent: 2 - uid: 4322 components: - type: Transform - pos: -25.5,-34.5 + pos: -14.5,17.5 parent: 2 - uid: 4323 components: - type: Transform - pos: -25.5,-33.5 + pos: -15.5,17.5 parent: 2 - uid: 4324 components: - type: Transform - pos: -23.5,-33.5 + pos: -15.5,16.5 parent: 2 - uid: 4325 components: - type: Transform - pos: -23.5,-34.5 + pos: -16.5,16.5 parent: 2 - uid: 4326 components: - type: Transform - pos: -23.5,-35.5 + pos: -17.5,16.5 parent: 2 - uid: 4327 components: - type: Transform - pos: -32.5,-33.5 + pos: -18.5,16.5 parent: 2 - uid: 4328 components: - type: Transform - pos: -32.5,-32.5 + pos: -18.5,18.5 parent: 2 - uid: 4329 components: - type: Transform - pos: -28.5,-33.5 + pos: -17.5,18.5 parent: 2 - uid: 4330 components: - type: Transform - pos: -28.5,-32.5 + pos: -16.5,18.5 parent: 2 - uid: 4331 components: - type: Transform - pos: -24.5,-33.5 + pos: -15.5,18.5 parent: 2 - uid: 4332 components: - type: Transform - pos: -24.5,-32.5 + pos: -12.5,17.5 parent: 2 - uid: 4333 components: - type: Transform - pos: -21.5,-31.5 + pos: -11.5,17.5 parent: 2 - uid: 4334 components: - type: Transform - pos: -22.5,-31.5 + pos: -11.5,18.5 parent: 2 - uid: 4335 components: - type: Transform - pos: -25.5,-29.5 + pos: -10.5,18.5 parent: 2 - uid: 4336 components: - type: Transform - pos: -25.5,-28.5 + pos: -9.5,18.5 parent: 2 - uid: 4337 components: - type: Transform - pos: -25.5,-27.5 + pos: -8.5,18.5 parent: 2 - uid: 4338 components: - type: Transform - pos: -23.5,-27.5 + pos: -8.5,16.5 parent: 2 - uid: 4339 components: - type: Transform - pos: -23.5,-28.5 + pos: -9.5,16.5 parent: 2 - uid: 4340 components: - type: Transform - pos: -23.5,-29.5 + pos: -10.5,16.5 parent: 2 - uid: 4341 components: - type: Transform - pos: -24.5,-29.5 + pos: -11.5,16.5 parent: 2 - uid: 4342 components: - type: Transform - pos: -24.5,-30.5 + pos: -12.5,21.5 parent: 2 - uid: 4343 components: - type: Transform - pos: -28.5,-30.5 + pos: -11.5,21.5 parent: 2 - uid: 4344 components: - type: Transform - pos: -28.5,-29.5 + pos: -11.5,22.5 parent: 2 - uid: 4345 components: - type: Transform - pos: -32.5,-30.5 + pos: -10.5,22.5 parent: 2 - uid: 4346 components: - type: Transform - pos: -32.5,-29.5 + pos: -9.5,22.5 parent: 2 - uid: 4347 components: - type: Transform - pos: -33.5,-29.5 + pos: -8.5,22.5 parent: 2 - uid: 4348 components: - type: Transform - pos: -33.5,-28.5 + pos: -8.5,20.5 parent: 2 - uid: 4349 components: - type: Transform - pos: -33.5,-27.5 + pos: -9.5,20.5 parent: 2 - uid: 4350 components: - type: Transform - pos: -31.5,-27.5 + pos: -10.5,20.5 parent: 2 - uid: 4351 components: - type: Transform - pos: -31.5,-28.5 + pos: -11.5,20.5 parent: 2 - uid: 4352 components: - type: Transform - pos: -31.5,-29.5 + pos: -14.5,21.5 parent: 2 - uid: 4353 components: - type: Transform - pos: -29.5,-29.5 + pos: -15.5,21.5 parent: 2 - uid: 4354 components: - type: Transform - pos: -29.5,-28.5 + pos: -15.5,20.5 parent: 2 - uid: 4355 components: - type: Transform - pos: -29.5,-27.5 + pos: -16.5,20.5 parent: 2 - uid: 4356 components: - type: Transform - pos: -27.5,-27.5 + pos: -17.5,20.5 parent: 2 - uid: 4357 components: - type: Transform - pos: -27.5,-28.5 + pos: -18.5,20.5 parent: 2 - uid: 4358 components: - type: Transform - pos: -27.5,-29.5 + pos: -18.5,22.5 parent: 2 - uid: 4359 components: - type: Transform - pos: -29.5,-36.5 + pos: -17.5,22.5 parent: 2 - uid: 4360 components: - type: Transform - pos: -27.5,-36.5 + pos: -16.5,22.5 parent: 2 - uid: 4361 components: - type: Transform - pos: -25.5,-36.5 + pos: -15.5,22.5 parent: 2 - uid: 4362 components: - type: Transform - pos: -23.5,-36.5 + pos: -18.5,24.5 parent: 2 - uid: 4363 components: - type: Transform - pos: -31.5,-36.5 + pos: -17.5,24.5 parent: 2 - uid: 4364 components: - type: Transform - pos: -33.5,-36.5 + pos: -16.5,24.5 parent: 2 - uid: 4365 components: - type: Transform - pos: -35.5,-36.5 + pos: -15.5,24.5 parent: 2 - uid: 4366 components: - type: Transform - pos: -37.5,-36.5 + pos: -15.5,25.5 parent: 2 - uid: 4367 components: - type: Transform - pos: -33.5,-26.5 + pos: -14.5,25.5 parent: 2 - uid: 4368 components: - type: Transform - pos: -31.5,-26.5 + pos: -15.5,26.5 parent: 2 - uid: 4369 components: - type: Transform - pos: -29.5,-26.5 + pos: -16.5,26.5 parent: 2 - uid: 4370 components: - type: Transform - pos: -27.5,-26.5 + pos: -17.5,26.5 parent: 2 - uid: 4371 components: - type: Transform - pos: -25.5,-26.5 + pos: -18.5,26.5 parent: 2 - uid: 4372 components: - type: Transform - pos: -23.5,-26.5 + pos: -12.5,25.5 parent: 2 - uid: 4373 components: - type: Transform - pos: -24.5,5.5 + pos: -11.5,25.5 parent: 2 - uid: 4374 components: - type: Transform - pos: -24.5,6.5 + pos: -11.5,26.5 parent: 2 - uid: 4375 components: - type: Transform - pos: -24.5,7.5 + pos: -10.5,26.5 parent: 2 - uid: 4376 components: - type: Transform - pos: -24.5,8.5 + pos: -9.5,26.5 parent: 2 - uid: 4377 components: - type: Transform - pos: -24.5,9.5 + pos: -8.5,24.5 parent: 2 - uid: 4378 components: - type: Transform - pos: -24.5,10.5 + pos: -9.5,24.5 parent: 2 - uid: 4379 components: - type: Transform - pos: -24.5,11.5 + pos: -10.5,24.5 parent: 2 - uid: 4380 components: - type: Transform - pos: -25.5,11.5 + pos: -11.5,24.5 parent: 2 - uid: 4381 components: - type: Transform - pos: -26.5,11.5 + pos: -8.5,26.5 parent: 2 - uid: 4382 components: - type: Transform - pos: -27.5,11.5 + pos: -13.5,27.5 parent: 2 - uid: 4383 components: - type: Transform - pos: -28.5,11.5 + pos: -13.5,26.5 parent: 2 - uid: 4384 components: - type: Transform - pos: -29.5,11.5 + pos: -39.5,-26.5 parent: 2 - uid: 4385 components: - type: Transform - pos: -30.5,11.5 + pos: -39.5,-25.5 parent: 2 - uid: 4386 components: - type: Transform - pos: -31.5,11.5 + pos: -39.5,-24.5 parent: 2 - uid: 4387 components: - type: Transform - pos: -32.5,11.5 + pos: -38.5,-24.5 parent: 2 - uid: 4388 components: - type: Transform - pos: -33.5,11.5 + pos: -38.5,-23.5 parent: 2 - uid: 4389 components: - type: Transform - pos: -34.5,11.5 + pos: -38.5,-22.5 parent: 2 - uid: 4390 components: - type: Transform - pos: -35.5,11.5 + pos: -38.5,-21.5 parent: 2 - uid: 4391 components: - type: Transform - pos: -35.5,12.5 + pos: -39.5,-27.5 parent: 2 - uid: 4392 components: - type: Transform - pos: -35.5,13.5 + pos: -39.5,-28.5 parent: 2 - uid: 4393 components: - type: Transform - pos: -35.5,14.5 + pos: -39.5,-29.5 parent: 2 - uid: 4394 components: - type: Transform - pos: -36.5,14.5 + pos: -39.5,-29.5 parent: 2 - uid: 4395 components: - type: Transform - pos: -37.5,14.5 + pos: -39.5,-30.5 parent: 2 - uid: 4396 components: - type: Transform - pos: -38.5,14.5 + pos: -38.5,-30.5 parent: 2 - uid: 4397 components: - type: Transform - pos: -191.5,14.5 + pos: -38.5,-30.5 parent: 2 - uid: 4398 components: - type: Transform - pos: -191.5,15.5 + pos: -38.5,-31.5 parent: 2 - uid: 4399 components: - type: Transform - pos: -190.5,15.5 + pos: -36.5,-33.5 parent: 2 - uid: 4400 components: - type: Transform - pos: -168.5,-14.5 + pos: -36.5,-32.5 parent: 2 - uid: 4401 components: - type: Transform - pos: -182.5,-10.5 + pos: -37.5,-33.5 parent: 2 - uid: 4402 components: - type: Transform - pos: -182.5,-9.5 + pos: -37.5,-34.5 parent: 2 - uid: 4403 components: - type: Transform - pos: -183.5,-10.5 + pos: -37.5,-35.5 parent: 2 - uid: 4404 components: - type: Transform - pos: -169.5,-14.5 + pos: -35.5,-35.5 parent: 2 - uid: 4405 components: - type: Transform - pos: -168.5,-17.5 + pos: -35.5,-34.5 parent: 2 - uid: 4406 components: - type: Transform - pos: -167.5,-16.5 + pos: -35.5,-33.5 parent: 2 - uid: 4407 components: - type: Transform - pos: -168.5,-16.5 + pos: -33.5,-35.5 parent: 2 - uid: 4408 components: - type: Transform - pos: -168.5,-18.5 + pos: -33.5,-34.5 parent: 2 - uid: 4409 components: - type: Transform - pos: -168.5,-20.5 + pos: -33.5,-33.5 parent: 2 - uid: 4410 components: - type: Transform - pos: -168.5,-21.5 + pos: -31.5,-35.5 parent: 2 - uid: 4411 components: - type: Transform - pos: -168.5,-25.5 + pos: -31.5,-34.5 parent: 2 - uid: 4412 components: - type: Transform - pos: -168.5,-26.5 + pos: -31.5,-33.5 parent: 2 - uid: 4413 components: - type: Transform - pos: -155.5,-26.5 + pos: -29.5,-35.5 parent: 2 - uid: 4414 components: - type: Transform - pos: -154.5,-26.5 + pos: -29.5,-34.5 parent: 2 - uid: 4415 components: - type: Transform - pos: -153.5,-26.5 + pos: -29.5,-33.5 parent: 2 - uid: 4416 components: - type: Transform - pos: -152.5,-26.5 + pos: -27.5,-33.5 parent: 2 - uid: 4417 components: - type: Transform - pos: -151.5,-26.5 + pos: -27.5,-34.5 parent: 2 - uid: 4418 components: - type: Transform - pos: -167.5,-26.5 + pos: -27.5,-35.5 parent: 2 - uid: 4419 components: - type: Transform - pos: -166.5,-26.5 + pos: -25.5,-35.5 parent: 2 - uid: 4420 components: - type: Transform - pos: -165.5,-26.5 + pos: -25.5,-34.5 parent: 2 - uid: 4421 components: - type: Transform - pos: -164.5,-26.5 + pos: -25.5,-33.5 parent: 2 - uid: 4422 components: - type: Transform - pos: -163.5,-26.5 + pos: -23.5,-33.5 parent: 2 - uid: 4423 components: - type: Transform - pos: -162.5,-26.5 + pos: -23.5,-34.5 parent: 2 - uid: 4424 components: - type: Transform - pos: -161.5,-26.5 + pos: -23.5,-35.5 parent: 2 - uid: 4425 components: - type: Transform - pos: -160.5,-26.5 + pos: -32.5,-33.5 parent: 2 - uid: 4426 components: - type: Transform - pos: -159.5,-26.5 + pos: -32.5,-32.5 parent: 2 - uid: 4427 components: - type: Transform - pos: -158.5,-26.5 + pos: -28.5,-33.5 parent: 2 - uid: 4428 components: - type: Transform - pos: -157.5,-26.5 + pos: -28.5,-32.5 parent: 2 - uid: 4429 components: - type: Transform - pos: -156.5,-26.5 + pos: -24.5,-33.5 parent: 2 - uid: 4430 components: - type: Transform - pos: -151.5,-25.5 + pos: -24.5,-32.5 parent: 2 - uid: 4431 components: - type: Transform - pos: -151.5,-24.5 + pos: -21.5,-31.5 parent: 2 - uid: 4432 components: - type: Transform - pos: -151.5,-23.5 + pos: -22.5,-31.5 parent: 2 - uid: 4433 components: - type: Transform - pos: -151.5,-22.5 + pos: -25.5,-29.5 parent: 2 - uid: 4434 components: - type: Transform - pos: -151.5,-21.5 + pos: -25.5,-28.5 parent: 2 - uid: 4435 components: - type: Transform - pos: -151.5,-20.5 + pos: -25.5,-27.5 parent: 2 - uid: 4436 components: - type: Transform - pos: -151.5,-19.5 + pos: -23.5,-27.5 parent: 2 - uid: 4437 components: - type: Transform - pos: -151.5,-18.5 + pos: -23.5,-28.5 parent: 2 - uid: 4438 components: - type: Transform - pos: -151.5,-17.5 + pos: -23.5,-29.5 parent: 2 - uid: 4439 components: - type: Transform - pos: -151.5,-16.5 + pos: -24.5,-29.5 parent: 2 - uid: 4440 components: - type: Transform - pos: -152.5,-16.5 + pos: -24.5,-30.5 parent: 2 - uid: 4441 components: - type: Transform - pos: -152.5,-15.5 + pos: -28.5,-30.5 parent: 2 - uid: 4442 components: - type: Transform - pos: -152.5,-14.5 + pos: -28.5,-29.5 parent: 2 - uid: 4443 components: - type: Transform - pos: -152.5,-13.5 + pos: -32.5,-30.5 parent: 2 - uid: 4444 components: - type: Transform - pos: -127.5,-14.5 + pos: -32.5,-29.5 parent: 2 - uid: 4445 components: - type: Transform - pos: -126.5,-14.5 + pos: -33.5,-29.5 parent: 2 - uid: 4446 components: - type: Transform - pos: -195.5,9.5 + pos: -33.5,-28.5 parent: 2 - uid: 4447 components: - type: Transform - pos: -195.5,6.5 + pos: -33.5,-27.5 parent: 2 - uid: 4448 components: - type: Transform - pos: -195.5,8.5 + pos: -31.5,-27.5 parent: 2 - uid: 4449 components: - type: Transform - pos: -195.5,10.5 + pos: -31.5,-28.5 parent: 2 - uid: 4450 components: - type: Transform - pos: -102.5,-28.5 + pos: -31.5,-29.5 parent: 2 - uid: 4451 components: - type: Transform - pos: -102.5,-27.5 + pos: -29.5,-29.5 parent: 2 - uid: 4452 components: - type: Transform - pos: -106.5,-26.5 + pos: -29.5,-28.5 parent: 2 - uid: 4453 components: - type: Transform - pos: -102.5,-29.5 + pos: -29.5,-27.5 parent: 2 - uid: 4454 components: - type: Transform - pos: -102.5,-30.5 + pos: -27.5,-27.5 parent: 2 - uid: 4455 components: - type: Transform - pos: -102.5,-31.5 + pos: -27.5,-28.5 parent: 2 - uid: 4456 components: - type: Transform - pos: -103.5,-31.5 + pos: -27.5,-29.5 parent: 2 - uid: 4457 components: - type: Transform - pos: -104.5,-31.5 + pos: -29.5,-36.5 parent: 2 - uid: 4458 components: - type: Transform - pos: -119.5,-31.5 + pos: -27.5,-36.5 parent: 2 - uid: 4459 components: - type: Transform - pos: -118.5,-31.5 + pos: -25.5,-36.5 parent: 2 - uid: 4460 components: - type: Transform - pos: -116.5,-35.5 + pos: -23.5,-36.5 parent: 2 - uid: 4461 components: - type: Transform - pos: -116.5,-34.5 + pos: -31.5,-36.5 parent: 2 - uid: 4462 components: - type: Transform - pos: -116.5,-33.5 + pos: -33.5,-36.5 parent: 2 - uid: 4463 components: - type: Transform - pos: -115.5,-33.5 + pos: -35.5,-36.5 parent: 2 - uid: 4464 components: - type: Transform - pos: -115.5,-32.5 + pos: -37.5,-36.5 parent: 2 - uid: 4465 components: - type: Transform - pos: -114.5,-33.5 + pos: -33.5,-26.5 parent: 2 - uid: 4466 components: - type: Transform - pos: -114.5,-34.5 + pos: -31.5,-26.5 parent: 2 - uid: 4467 components: - type: Transform - pos: -114.5,-35.5 + pos: -29.5,-26.5 parent: 2 - uid: 4468 components: - type: Transform - pos: -112.5,-35.5 + pos: -27.5,-26.5 parent: 2 - uid: 4469 components: - type: Transform - pos: -112.5,-34.5 + pos: -25.5,-26.5 parent: 2 - uid: 4470 components: - type: Transform - pos: -112.5,-33.5 + pos: -23.5,-26.5 parent: 2 - uid: 4471 components: - type: Transform - pos: -111.5,-33.5 + pos: -24.5,5.5 parent: 2 - uid: 4472 components: - type: Transform - pos: -111.5,-32.5 + pos: -24.5,6.5 parent: 2 - uid: 4473 components: - type: Transform - pos: -110.5,-33.5 + pos: -24.5,7.5 parent: 2 - uid: 4474 components: - type: Transform - pos: -110.5,-34.5 + pos: -24.5,8.5 parent: 2 - uid: 4475 components: - type: Transform - pos: -110.5,-35.5 + pos: -24.5,9.5 parent: 2 - uid: 4476 components: - type: Transform - pos: -108.5,-35.5 + pos: -24.5,10.5 parent: 2 - uid: 4477 components: - type: Transform - pos: -108.5,-34.5 + pos: -24.5,11.5 parent: 2 - uid: 4478 components: - type: Transform - pos: -108.5,-33.5 + pos: -25.5,11.5 parent: 2 - uid: 4479 components: - type: Transform - pos: -107.5,-33.5 + pos: -26.5,11.5 parent: 2 - uid: 4480 components: - type: Transform - pos: -107.5,-32.5 + pos: -27.5,11.5 parent: 2 - uid: 4481 components: - type: Transform - pos: -106.5,-33.5 + pos: -28.5,11.5 parent: 2 - uid: 4482 components: - type: Transform - pos: -106.5,-34.5 + pos: -29.5,11.5 parent: 2 - uid: 4483 components: - type: Transform - pos: -106.5,-35.5 + pos: -30.5,11.5 parent: 2 - uid: 4484 components: - type: Transform - pos: -107.5,-30.5 + pos: -31.5,11.5 parent: 2 - uid: 4485 components: - type: Transform - pos: -107.5,-29.5 + pos: -32.5,11.5 parent: 2 - uid: 4486 components: - type: Transform - pos: -108.5,-29.5 + pos: -33.5,11.5 parent: 2 - uid: 4487 components: - type: Transform - pos: -108.5,-28.5 + pos: -34.5,11.5 parent: 2 - uid: 4488 components: - type: Transform - pos: -108.5,-27.5 + pos: -35.5,11.5 parent: 2 - uid: 4489 components: - type: Transform - pos: -106.5,-29.5 + pos: -35.5,12.5 parent: 2 - uid: 4490 components: - type: Transform - pos: -106.5,-28.5 + pos: -35.5,13.5 parent: 2 - uid: 4491 components: - type: Transform - pos: -106.5,-27.5 + pos: -35.5,14.5 parent: 2 - uid: 4492 components: - type: Transform - pos: -108.5,-26.5 + pos: -36.5,14.5 parent: 2 - uid: 4493 components: - type: Transform - pos: -108.5,-36.5 + pos: -37.5,14.5 parent: 2 - uid: 4494 components: - type: Transform - pos: -106.5,-36.5 + pos: -38.5,14.5 parent: 2 - uid: 4495 components: - type: Transform - pos: -110.5,-36.5 + pos: -168.5,-14.5 parent: 2 - uid: 4496 components: - type: Transform - pos: -112.5,-36.5 + pos: -182.5,-10.5 parent: 2 - uid: 4497 components: - type: Transform - pos: -114.5,-36.5 + pos: -182.5,-9.5 parent: 2 - uid: 4498 components: - type: Transform - pos: -116.5,-36.5 + pos: -183.5,-10.5 parent: 2 - uid: 4499 components: - type: Transform - pos: -115.5,-30.5 + pos: -169.5,-14.5 parent: 2 - uid: 4500 components: - type: Transform - pos: -115.5,-29.5 + pos: -168.5,-17.5 parent: 2 - uid: 4501 components: - type: Transform - pos: -116.5,-29.5 + pos: -167.5,-16.5 parent: 2 - uid: 4502 components: - type: Transform - pos: -116.5,-28.5 + pos: -168.5,-16.5 parent: 2 - uid: 4503 components: - type: Transform - pos: -116.5,-27.5 + pos: -168.5,-18.5 parent: 2 - uid: 4504 components: - type: Transform - pos: -116.5,-26.5 + pos: -168.5,-20.5 parent: 2 - uid: 4505 components: - type: Transform - pos: -114.5,-29.5 + pos: -168.5,-21.5 parent: 2 - uid: 4506 components: - type: Transform - pos: -114.5,-28.5 + pos: -168.5,-25.5 parent: 2 - uid: 4507 components: - type: Transform - pos: -114.5,-27.5 + pos: -168.5,-26.5 parent: 2 - uid: 4508 components: - type: Transform - pos: -114.5,-26.5 + pos: -155.5,-26.5 parent: 2 - uid: 4509 components: - type: Transform - pos: -112.5,-29.5 + pos: -154.5,-26.5 parent: 2 - uid: 4510 components: - type: Transform - pos: -112.5,-28.5 + pos: -153.5,-26.5 parent: 2 - uid: 4511 components: - type: Transform - pos: -112.5,-27.5 + pos: -152.5,-26.5 parent: 2 - uid: 4512 components: - type: Transform - pos: -112.5,-26.5 + pos: -151.5,-26.5 parent: 2 - uid: 4513 components: - type: Transform - pos: -110.5,-26.5 + pos: -167.5,-26.5 parent: 2 - uid: 4514 components: - type: Transform - pos: -110.5,-27.5 + pos: -166.5,-26.5 parent: 2 - uid: 4515 components: - type: Transform - pos: -110.5,-28.5 + pos: -165.5,-26.5 parent: 2 - uid: 4516 components: - type: Transform - pos: -110.5,-29.5 + pos: -164.5,-26.5 parent: 2 - uid: 4517 components: - type: Transform - pos: -111.5,-29.5 + pos: -163.5,-26.5 parent: 2 - uid: 4518 components: - type: Transform - pos: -111.5,-30.5 + pos: -162.5,-26.5 parent: 2 - uid: 4519 components: - type: Transform - pos: -117.5,-31.5 + pos: -161.5,-26.5 parent: 2 - uid: 4520 components: - type: Transform - pos: -133.5,11.5 + pos: -160.5,-26.5 parent: 2 - uid: 4521 components: - type: Transform - pos: -127.5,-2.5 + pos: -159.5,-26.5 parent: 2 - uid: 4522 components: - type: Transform - pos: -127.5,-1.5 + pos: -158.5,-26.5 parent: 2 - uid: 4523 components: - type: Transform - pos: -127.5,-0.5 + pos: -157.5,-26.5 parent: 2 - uid: 4524 components: - type: Transform - pos: -127.5,0.5 + pos: -156.5,-26.5 parent: 2 - uid: 4525 components: - type: Transform - pos: -127.5,1.5 + pos: -151.5,-25.5 parent: 2 - uid: 4526 components: - type: Transform - pos: -127.5,2.5 + pos: -151.5,-24.5 parent: 2 - uid: 4527 components: - type: Transform - pos: -127.5,3.5 + pos: -151.5,-23.5 parent: 2 - uid: 4528 components: - type: Transform - pos: -127.5,4.5 + pos: -151.5,-22.5 parent: 2 - uid: 4529 components: - type: Transform - pos: -127.5,5.5 + pos: -151.5,-21.5 parent: 2 - uid: 4530 components: - type: Transform - pos: -127.5,6.5 + pos: -151.5,-20.5 parent: 2 - uid: 4531 components: - type: Transform - pos: -125.5,7.5 + pos: -151.5,-19.5 parent: 2 - uid: 4532 components: - type: Transform - pos: -125.5,6.5 + pos: -151.5,-18.5 parent: 2 - uid: 4533 components: - type: Transform - pos: -126.5,6.5 + pos: -151.5,-17.5 parent: 2 - uid: 4534 components: - type: Transform - pos: -125.5,8.5 + pos: -151.5,-16.5 parent: 2 - uid: 4535 components: - type: Transform - pos: -125.5,9.5 + pos: -152.5,-16.5 parent: 2 - uid: 4536 components: - type: Transform - pos: -124.5,9.5 + pos: -152.5,-15.5 parent: 2 - uid: 4537 components: - type: Transform - pos: -124.5,11.5 + pos: -152.5,-14.5 parent: 2 - uid: 4538 components: - type: Transform - pos: -125.5,11.5 + pos: -152.5,-13.5 parent: 2 - uid: 4539 components: - type: Transform - pos: -125.5,12.5 + pos: -127.5,-14.5 parent: 2 - uid: 4540 components: - type: Transform - pos: -124.5,10.5 + pos: -126.5,-14.5 parent: 2 - uid: 4541 components: - type: Transform - pos: -125.5,13.5 + pos: -102.5,-28.5 parent: 2 - uid: 4542 components: - type: Transform - pos: -125.5,14.5 + pos: -102.5,-27.5 parent: 2 - uid: 4543 components: - type: Transform - pos: -125.5,15.5 + pos: -106.5,-26.5 parent: 2 - uid: 4544 components: - type: Transform - pos: -125.5,16.5 + pos: -102.5,-29.5 parent: 2 - uid: 4545 components: - type: Transform - pos: -133.5,12.5 + pos: -102.5,-30.5 parent: 2 - uid: 4546 components: - type: Transform - pos: -133.5,13.5 + pos: -102.5,-31.5 parent: 2 - uid: 4547 components: - type: Transform - pos: -133.5,14.5 + pos: -103.5,-31.5 parent: 2 - uid: 4548 components: - type: Transform - pos: -134.5,14.5 + pos: -104.5,-31.5 parent: 2 - uid: 4549 components: - type: Transform - pos: -134.5,15.5 + pos: -119.5,-31.5 parent: 2 - uid: 4550 components: - type: Transform - pos: -135.5,14.5 + pos: -118.5,-31.5 parent: 2 - uid: 4551 components: - type: Transform - pos: -135.5,13.5 + pos: -116.5,-35.5 parent: 2 - uid: 4552 components: - type: Transform - pos: -131.5,11.5 + pos: -116.5,-34.5 parent: 2 - uid: 4553 components: - type: Transform - pos: -131.5,12.5 + pos: -116.5,-33.5 parent: 2 - uid: 4554 components: - type: Transform - pos: -131.5,13.5 + pos: -115.5,-33.5 parent: 2 - uid: 4555 components: - type: Transform - pos: -131.5,14.5 + pos: -115.5,-32.5 parent: 2 - uid: 4556 components: - type: Transform - pos: -135.5,12.5 + pos: -114.5,-33.5 parent: 2 - uid: 4557 components: - type: Transform - pos: -135.5,11.5 + pos: -114.5,-34.5 parent: 2 - uid: 4558 components: - type: Transform - pos: -137.5,11.5 + pos: -114.5,-35.5 parent: 2 - uid: 4559 components: - type: Transform - pos: -137.5,12.5 + pos: -112.5,-35.5 parent: 2 - uid: 4560 components: - type: Transform - pos: -137.5,13.5 + pos: -112.5,-34.5 parent: 2 - uid: 4561 components: - type: Transform - pos: -137.5,14.5 + pos: -112.5,-33.5 parent: 2 - uid: 4562 components: - type: Transform - pos: -138.5,14.5 + pos: -111.5,-33.5 parent: 2 - uid: 4563 components: - type: Transform - pos: -138.5,15.5 + pos: -111.5,-32.5 parent: 2 - uid: 4564 components: - type: Transform - pos: -139.5,14.5 + pos: -110.5,-33.5 parent: 2 - uid: 4565 components: - type: Transform - pos: -139.5,13.5 + pos: -110.5,-34.5 parent: 2 - uid: 4566 components: - type: Transform - pos: -139.5,12.5 + pos: -110.5,-35.5 parent: 2 - uid: 4567 components: - type: Transform - pos: -139.5,11.5 + pos: -108.5,-35.5 parent: 2 - uid: 4568 components: - type: Transform - pos: -132.5,25.5 + pos: -108.5,-34.5 parent: 2 - uid: 4569 components: - type: Transform - pos: -137.5,21.5 + pos: -108.5,-33.5 parent: 2 - uid: 4570 components: - type: Transform - pos: -137.5,20.5 + pos: -107.5,-33.5 parent: 2 - uid: 4571 components: - type: Transform - pos: -137.5,19.5 + pos: -107.5,-32.5 parent: 2 - uid: 4572 components: - type: Transform - pos: -137.5,18.5 + pos: -106.5,-33.5 parent: 2 - uid: 4573 components: - type: Transform - pos: -136.5,18.5 + pos: -106.5,-34.5 parent: 2 - uid: 4574 components: - type: Transform - pos: -136.5,17.5 + pos: -106.5,-35.5 parent: 2 - uid: 4575 components: - type: Transform - pos: -135.5,18.5 + pos: -107.5,-30.5 parent: 2 - uid: 4576 components: - type: Transform - pos: -135.5,19.5 + pos: -107.5,-29.5 parent: 2 - uid: 4577 components: - type: Transform - pos: -135.5,20.5 + pos: -108.5,-29.5 parent: 2 - uid: 4578 components: - type: Transform - pos: -135.5,21.5 + pos: -108.5,-28.5 parent: 2 - uid: 4579 components: - type: Transform - pos: -133.5,19.5 + pos: -108.5,-27.5 parent: 2 - uid: 4580 components: - type: Transform - pos: -133.5,18.5 + pos: -106.5,-29.5 parent: 2 - uid: 4581 components: - type: Transform - pos: -132.5,18.5 + pos: -106.5,-28.5 parent: 2 - uid: 4582 components: - type: Transform - pos: -132.5,17.5 + pos: -106.5,-27.5 parent: 2 - uid: 4583 components: - type: Transform - pos: -131.5,18.5 + pos: -108.5,-26.5 parent: 2 - uid: 4584 components: - type: Transform - pos: -131.5,19.5 + pos: -108.5,-36.5 parent: 2 - uid: 4585 components: - type: Transform - pos: -131.5,20.5 + pos: -106.5,-36.5 parent: 2 - uid: 4586 components: - type: Transform - pos: -131.5,21.5 + pos: -110.5,-36.5 parent: 2 - uid: 4587 components: - type: Transform - pos: -129.5,21.5 + pos: -112.5,-36.5 parent: 2 - uid: 4588 components: - type: Transform - pos: -129.5,20.5 + pos: -114.5,-36.5 parent: 2 - uid: 4589 components: - type: Transform - pos: -129.5,19.5 + pos: -116.5,-36.5 parent: 2 - uid: 4590 components: - type: Transform - pos: -129.5,18.5 + pos: -115.5,-30.5 parent: 2 - uid: 4591 components: - type: Transform - pos: -128.5,18.5 + pos: -115.5,-29.5 parent: 2 - uid: 4592 components: - type: Transform - pos: -128.5,17.5 + pos: -116.5,-29.5 parent: 2 - uid: 4593 components: - type: Transform - pos: -127.5,18.5 + pos: -116.5,-28.5 parent: 2 - uid: 4594 components: - type: Transform - pos: -127.5,19.5 + pos: -116.5,-27.5 parent: 2 - uid: 4595 components: - type: Transform - pos: -127.5,20.5 + pos: -116.5,-26.5 parent: 2 - uid: 4596 components: - type: Transform - pos: -127.5,21.5 + pos: -114.5,-29.5 parent: 2 - uid: 4597 components: - type: Transform - pos: -133.5,20.5 + pos: -114.5,-28.5 parent: 2 - uid: 4598 components: - type: Transform - pos: -133.5,21.5 + pos: -114.5,-27.5 parent: 2 - uid: 4599 components: - type: Transform - pos: -132.5,24.5 + pos: -114.5,-26.5 parent: 2 - uid: 4600 components: - type: Transform - pos: -132.5,23.5 + pos: -112.5,-29.5 parent: 2 - uid: 4601 components: - type: Transform - pos: -130.5,15.5 + pos: -112.5,-28.5 parent: 2 - uid: 4602 components: - type: Transform - pos: -130.5,14.5 + pos: -112.5,-27.5 parent: 2 - uid: 4603 components: - type: Transform - pos: -129.5,14.5 + pos: -112.5,-26.5 parent: 2 - uid: 4604 components: - type: Transform - pos: -129.5,13.5 + pos: -110.5,-26.5 parent: 2 - uid: 4605 components: - type: Transform - pos: -129.5,12.5 + pos: -110.5,-27.5 parent: 2 - uid: 4606 components: - type: Transform - pos: -129.5,11.5 + pos: -110.5,-28.5 parent: 2 - uid: 4607 components: - type: Transform - pos: -195.5,14.5 + pos: -110.5,-29.5 parent: 2 - uid: 4608 components: - type: Transform - pos: -79.5,-7.5 + pos: -111.5,-29.5 parent: 2 - uid: 4609 components: - type: Transform - pos: -78.5,-7.5 + pos: -111.5,-30.5 parent: 2 - uid: 4610 components: - type: Transform - pos: -138.5,-3.5 + pos: -117.5,-31.5 parent: 2 - uid: 4611 components: - type: Transform - pos: -138.5,-2.5 + pos: -133.5,11.5 parent: 2 - uid: 4612 components: - type: Transform - pos: -139.5,-2.5 + pos: -127.5,-2.5 parent: 2 - uid: 4613 components: - type: Transform - pos: -140.5,-2.5 + pos: -127.5,-1.5 parent: 2 - uid: 4614 components: - type: Transform - pos: -141.5,-2.5 + pos: -127.5,-0.5 parent: 2 - uid: 4615 components: - type: Transform - pos: -142.5,-2.5 + pos: -127.5,0.5 parent: 2 - uid: 4616 components: - type: Transform - pos: -142.5,-3.5 + pos: -127.5,1.5 parent: 2 - uid: 4617 components: - type: Transform - pos: -174.5,-6.5 + pos: -127.5,2.5 parent: 2 - uid: 4618 components: - type: Transform - pos: -174.5,-8.5 + pos: -127.5,3.5 parent: 2 - uid: 4619 components: - type: Transform - pos: -168.5,-23.5 + pos: -127.5,4.5 parent: 2 - uid: 4620 components: - type: Transform - pos: -168.5,-22.5 + pos: -127.5,5.5 parent: 2 - uid: 4621 components: - type: Transform - pos: -168.5,-24.5 + pos: -127.5,6.5 parent: 2 - uid: 4622 components: - type: Transform - pos: -168.5,-19.5 + pos: -125.5,7.5 parent: 2 - - uid: 17063 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 17021 - - uid: 17064 - components: - - type: Transform - pos: 12.5,-0.5 - parent: 17021 - - uid: 17065 - components: - - type: Transform - pos: 13.5,-0.5 - parent: 17021 -- proto: CableHVStack - entities: - uid: 4623 components: - type: Transform - pos: -91.71662,5.8808255 + pos: -125.5,6.5 parent: 2 - uid: 4624 components: - type: Transform - pos: -91.54462,6.0527005 + pos: -126.5,6.5 parent: 2 - uid: 4625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.6552,-6.4149156 + pos: -125.5,8.5 parent: 2 -- proto: CableMV - entities: - uid: 4626 components: - type: Transform - pos: -174.5,-8.5 + pos: -125.5,9.5 parent: 2 - uid: 4627 components: - type: Transform - pos: -57.5,0.5 + pos: -124.5,9.5 parent: 2 - uid: 4628 components: - type: Transform - pos: -76.5,-13.5 + pos: -124.5,11.5 parent: 2 - uid: 4629 components: - type: Transform - pos: -195.5,5.5 + pos: -125.5,11.5 parent: 2 - uid: 4630 components: - type: Transform - pos: -129.5,-13.5 + pos: -125.5,12.5 parent: 2 - uid: 4631 components: - type: Transform - pos: -127.5,-14.5 + pos: -124.5,10.5 parent: 2 - uid: 4632 components: - type: Transform - pos: -192.5,4.5 + pos: -125.5,13.5 parent: 2 - uid: 4633 components: - type: Transform - pos: -81.5,11.5 + pos: -125.5,14.5 parent: 2 - uid: 4634 components: - type: Transform - pos: -82.5,11.5 + pos: -125.5,15.5 parent: 2 - uid: 4635 components: - type: Transform - pos: -76.5,-7.5 + pos: -125.5,16.5 parent: 2 - uid: 4636 components: - type: Transform - pos: -72.5,-7.5 + pos: -133.5,12.5 parent: 2 - uid: 4637 components: - type: Transform - pos: -75.5,-7.5 + pos: -133.5,13.5 parent: 2 - uid: 4638 components: - type: Transform - pos: -77.5,-7.5 + pos: -133.5,14.5 parent: 2 - uid: 4639 components: - type: Transform - pos: -73.5,-7.5 + pos: -134.5,14.5 parent: 2 - uid: 4640 components: - type: Transform - pos: -69.5,-5.5 + pos: -134.5,15.5 parent: 2 - uid: 4641 components: - type: Transform - pos: -69.5,-4.5 + pos: -135.5,14.5 parent: 2 - uid: 4642 components: - type: Transform - pos: -70.5,-3.5 + pos: -135.5,13.5 parent: 2 - uid: 4643 components: - type: Transform - pos: -72.5,-3.5 + pos: -131.5,11.5 parent: 2 - uid: 4644 components: - type: Transform - pos: -72.5,-4.5 + pos: -131.5,12.5 parent: 2 - uid: 4645 components: - type: Transform - pos: -72.5,-5.5 + pos: -131.5,13.5 parent: 2 - uid: 4646 components: - type: Transform - pos: -72.5,-6.5 + pos: -131.5,14.5 parent: 2 - uid: 4647 components: - type: Transform - pos: -78.5,-6.5 + pos: -135.5,12.5 parent: 2 - uid: 4648 components: - type: Transform - pos: -74.5,-7.5 + pos: -135.5,11.5 parent: 2 - uid: 4649 components: - type: Transform - pos: -77.5,-6.5 + pos: -137.5,11.5 parent: 2 - uid: 4650 components: - type: Transform - pos: -72.5,-2.5 + pos: -137.5,12.5 parent: 2 - uid: 4651 components: - type: Transform - pos: -72.5,-1.5 + pos: -137.5,13.5 parent: 2 - uid: 4652 components: - type: Transform - pos: -72.5,-0.5 + pos: -137.5,14.5 parent: 2 - uid: 4653 components: - type: Transform - pos: -72.5,0.5 + pos: -138.5,14.5 parent: 2 - uid: 4654 components: - type: Transform - pos: -73.5,0.5 + pos: -138.5,15.5 parent: 2 - uid: 4655 components: - type: Transform - pos: -74.5,0.5 + pos: -139.5,14.5 parent: 2 - uid: 4656 components: - type: Transform - pos: -75.5,0.5 + pos: -139.5,13.5 parent: 2 - uid: 4657 components: - type: Transform - pos: -76.5,0.5 + pos: -139.5,12.5 parent: 2 - uid: 4658 components: - type: Transform - pos: -77.5,0.5 + pos: -139.5,11.5 parent: 2 - uid: 4659 components: - type: Transform - pos: -78.5,-0.5 + pos: -132.5,25.5 parent: 2 - uid: 4660 components: - type: Transform - pos: -80.5,-0.5 + pos: -137.5,21.5 parent: 2 - uid: 4661 components: - type: Transform - pos: -81.5,-0.5 + pos: -137.5,20.5 parent: 2 - uid: 4662 components: - type: Transform - pos: -81.5,-1.5 + pos: -137.5,19.5 parent: 2 - uid: 4663 components: - type: Transform - pos: -81.5,-2.5 + pos: -137.5,18.5 parent: 2 - uid: 4664 components: - type: Transform - pos: -81.5,-6.5 + pos: -136.5,18.5 parent: 2 - uid: 4665 components: - type: Transform - pos: -80.5,-6.5 + pos: -136.5,17.5 parent: 2 - uid: 4666 components: - type: Transform - pos: -81.5,-3.5 + pos: -135.5,18.5 parent: 2 - uid: 4667 components: - type: Transform - pos: -81.5,-4.5 + pos: -135.5,19.5 parent: 2 - uid: 4668 components: - type: Transform - pos: -81.5,-5.5 + pos: -135.5,20.5 parent: 2 - uid: 4669 components: - type: Transform - pos: -77.5,-0.5 + pos: -135.5,21.5 parent: 2 - uid: 4670 components: - type: Transform - pos: -79.5,-0.5 + pos: -133.5,19.5 parent: 2 - uid: 4671 components: - type: Transform - pos: -83.5,11.5 + pos: -133.5,18.5 parent: 2 - uid: 4672 components: - type: Transform - pos: -80.5,11.5 + pos: -132.5,18.5 parent: 2 - uid: 4673 components: - type: Transform - pos: -79.5,13.5 + pos: -132.5,17.5 parent: 2 - uid: 4674 components: - type: Transform - pos: -85.5,-32.5 + pos: -131.5,18.5 parent: 2 - uid: 4675 components: - type: Transform - pos: -84.5,-32.5 + pos: -131.5,19.5 parent: 2 - uid: 4676 components: - type: Transform - pos: -84.5,-32.5 + pos: -131.5,20.5 parent: 2 - uid: 4677 components: - type: Transform - pos: -79.5,12.5 + pos: -131.5,21.5 parent: 2 - uid: 4678 components: - type: Transform - pos: -79.5,11.5 + pos: -129.5,21.5 parent: 2 - uid: 4679 components: - type: Transform - pos: -208.5,-1.5 + pos: -129.5,20.5 parent: 2 - uid: 4680 components: - type: Transform - pos: -196.5,24.5 + pos: -129.5,19.5 parent: 2 - uid: 4681 components: - type: Transform - pos: -196.5,23.5 + pos: -129.5,18.5 parent: 2 - uid: 4682 components: - type: Transform - pos: -196.5,22.5 + pos: -128.5,18.5 parent: 2 - uid: 4683 components: - type: Transform - pos: -196.5,21.5 + pos: -128.5,17.5 parent: 2 - uid: 4684 components: - type: Transform - pos: -196.5,20.5 + pos: -127.5,18.5 parent: 2 - uid: 4685 components: - type: Transform - pos: -196.5,19.5 + pos: -127.5,19.5 parent: 2 - uid: 4686 components: - type: Transform - pos: -196.5,18.5 + pos: -127.5,20.5 parent: 2 - uid: 4687 components: - type: Transform - pos: -196.5,17.5 + pos: -127.5,21.5 parent: 2 - uid: 4688 components: - type: Transform - pos: -196.5,16.5 + pos: -133.5,20.5 parent: 2 - uid: 4689 components: - type: Transform - pos: -195.5,15.5 + pos: -133.5,21.5 parent: 2 - uid: 4690 components: - type: Transform - pos: -194.5,15.5 + pos: -132.5,24.5 parent: 2 - uid: 4691 components: - type: Transform - pos: -193.5,15.5 + pos: -132.5,23.5 parent: 2 - uid: 4692 components: - type: Transform - pos: -193.5,16.5 + pos: -130.5,15.5 parent: 2 - uid: 4693 components: - type: Transform - pos: -192.5,16.5 + pos: -130.5,14.5 parent: 2 - uid: 4694 components: - type: Transform - pos: -191.5,16.5 + pos: -129.5,14.5 parent: 2 - uid: 4695 components: - type: Transform - pos: -196.5,14.5 + pos: -129.5,13.5 parent: 2 - uid: 4696 components: - type: Transform - pos: -190.5,15.5 + pos: -129.5,12.5 parent: 2 - uid: 4697 components: - type: Transform - pos: -190.5,16.5 + pos: -129.5,11.5 parent: 2 - uid: 4698 components: - type: Transform - pos: -196.5,13.5 + pos: -138.5,-3.5 parent: 2 - uid: 4699 components: - type: Transform - pos: -196.5,12.5 + pos: -138.5,-2.5 parent: 2 - uid: 4700 components: - type: Transform - pos: -196.5,11.5 + pos: -139.5,-2.5 parent: 2 - uid: 4701 components: - type: Transform - pos: -196.5,10.5 + pos: -140.5,-2.5 parent: 2 - uid: 4702 components: - type: Transform - pos: -196.5,8.5 + pos: -141.5,-2.5 parent: 2 - uid: 4703 components: - type: Transform - pos: -196.5,7.5 + pos: -142.5,-2.5 parent: 2 - uid: 4704 components: - type: Transform - pos: -196.5,6.5 + pos: -142.5,-3.5 parent: 2 - uid: 4705 components: - type: Transform - pos: -195.5,6.5 + pos: -174.5,-6.5 parent: 2 - uid: 4706 components: - type: Transform - pos: -195.5,4.5 + pos: -174.5,-8.5 parent: 2 - uid: 4707 components: - type: Transform - pos: -193.5,4.5 + pos: -168.5,-23.5 parent: 2 - uid: 4708 components: - type: Transform - pos: -194.5,4.5 + pos: -168.5,-22.5 parent: 2 - uid: 4709 components: - type: Transform - pos: -173.5,-8.5 + pos: -168.5,-24.5 parent: 2 - uid: 4710 components: - type: Transform - pos: -173.5,-7.5 + pos: -168.5,-19.5 parent: 2 - uid: 4711 components: - type: Transform - pos: -173.5,-6.5 + pos: -42.5,31.5 parent: 2 - uid: 4712 components: - type: Transform - pos: -173.5,-5.5 + pos: -42.5,32.5 parent: 2 - uid: 4713 components: - type: Transform - pos: -173.5,-4.5 + pos: -80.5,-7.5 parent: 2 - uid: 4714 components: - type: Transform - pos: -173.5,-3.5 + pos: -79.5,-0.5 parent: 2 - uid: 4715 components: - type: Transform - pos: -174.5,-3.5 + pos: -74.5,0.5 parent: 2 - uid: 4716 components: - type: Transform - pos: -175.5,-3.5 + pos: -72.5,0.5 parent: 2 - uid: 4717 components: - type: Transform - pos: -176.5,-3.5 + pos: -72.5,-4.5 parent: 2 - uid: 4718 components: - type: Transform - pos: -177.5,-3.5 + pos: -73.5,-7.5 parent: 2 - uid: 4719 components: - type: Transform - pos: -175.5,-4.5 + pos: -77.5,-6.5 parent: 2 - uid: 4720 components: - type: Transform - pos: -175.5,-5.5 + pos: -81.5,-0.5 parent: 2 - uid: 4721 components: - type: Transform - pos: -208.5,-2.5 + pos: -81.5,0.5 parent: 2 - uid: 4722 components: - type: Transform - pos: -208.5,-3.5 + pos: -81.5,-1.5 parent: 2 - uid: 4723 components: - type: Transform - pos: -207.5,-3.5 + pos: -81.5,-2.5 parent: 2 - uid: 4724 components: - type: Transform - pos: -206.5,-3.5 + pos: -81.5,-3.5 parent: 2 - uid: 4725 components: - type: Transform - pos: -205.5,-3.5 + pos: -81.5,-7.5 parent: 2 - uid: 4726 components: - type: Transform - pos: -204.5,-3.5 + pos: -79.5,0.5 parent: 2 - uid: 4727 components: - type: Transform - pos: -203.5,-3.5 + pos: -76.5,0.5 parent: 2 - uid: 4728 components: - type: Transform - pos: -202.5,-3.5 + pos: -77.5,-7.5 parent: 2 - uid: 4729 components: - type: Transform - pos: -201.5,-3.5 + pos: -72.5,-3.5 parent: 2 - uid: 4730 components: - type: Transform - pos: -200.5,-3.5 + pos: -72.5,-5.5 parent: 2 - uid: 4731 components: - type: Transform - pos: -199.5,-3.5 + pos: -72.5,-0.5 parent: 2 - uid: 4732 components: - type: Transform - pos: -198.5,-3.5 + pos: -78.5,-0.5 parent: 2 - uid: 4733 components: - type: Transform - pos: -197.5,-3.5 + pos: -74.5,-7.5 parent: 2 - uid: 4734 components: - type: Transform - pos: -196.5,-3.5 + pos: -73.5,0.5 parent: 2 - uid: 4735 components: - type: Transform - pos: -195.5,-3.5 + pos: -72.5,-7.5 parent: 2 - uid: 4736 components: - type: Transform - pos: -194.5,-3.5 + pos: -79.5,-7.5 parent: 2 - uid: 4737 components: - type: Transform - pos: -193.5,-3.5 + pos: -186.5,-22.5 parent: 2 - uid: 4738 components: - type: Transform - pos: -192.5,-3.5 + pos: -186.5,-20.5 parent: 2 - uid: 4739 components: - type: Transform - pos: -191.5,-3.5 + pos: -186.5,-26.5 parent: 2 - uid: 4740 components: - type: Transform - pos: -190.5,-3.5 + pos: -186.5,-24.5 parent: 2 - uid: 4741 components: - type: Transform - pos: -189.5,-3.5 + pos: -186.5,-23.5 parent: 2 - uid: 4742 components: - type: Transform - pos: -188.5,-3.5 + pos: -184.5,-20.5 parent: 2 - uid: 4743 components: - type: Transform - pos: -187.5,-3.5 + pos: -186.5,-21.5 parent: 2 - uid: 4744 components: - type: Transform - pos: -186.5,-3.5 + pos: -186.5,-25.5 parent: 2 - uid: 4745 components: - type: Transform - pos: -185.5,-3.5 + pos: -183.5,-19.5 parent: 2 - uid: 4746 components: - type: Transform - pos: -184.5,-3.5 + pos: -185.5,-20.5 parent: 2 - uid: 4747 components: - type: Transform - pos: -183.5,-3.5 + pos: -220.5,-42.5 parent: 2 - uid: 4748 components: - type: Transform - pos: -182.5,-3.5 + pos: -219.5,-42.5 parent: 2 - uid: 4749 components: - type: Transform - pos: -181.5,-3.5 + pos: -219.5,-41.5 parent: 2 - uid: 4750 components: - type: Transform - pos: -180.5,-3.5 + pos: -218.5,-42.5 parent: 2 - uid: 4751 components: - type: Transform - pos: -179.5,-3.5 + pos: -218.5,-41.5 parent: 2 - uid: 4752 components: - type: Transform - pos: -178.5,-3.5 + pos: -179.5,-24.5 parent: 2 - uid: 4753 components: - type: Transform - pos: -173.5,-3.5 + pos: -179.5,-25.5 parent: 2 - uid: 4754 components: - type: Transform - pos: -173.5,-2.5 + pos: -178.5,-25.5 parent: 2 - uid: 4755 components: - type: Transform - pos: -173.5,-1.5 + pos: -178.5,-26.5 parent: 2 - uid: 4756 components: - type: Transform - pos: -172.5,-1.5 + pos: -178.5,-27.5 parent: 2 - uid: 4757 components: - type: Transform - pos: -171.5,-1.5 + pos: -179.5,-27.5 parent: 2 - uid: 4758 components: - type: Transform - pos: -170.5,-1.5 + pos: -180.5,-27.5 parent: 2 - uid: 4759 components: - type: Transform - pos: -169.5,-1.5 + pos: -181.5,-27.5 parent: 2 - uid: 4760 components: - type: Transform - pos: -168.5,-1.5 + pos: -181.5,-28.5 parent: 2 - uid: 4761 components: - type: Transform - pos: -167.5,-1.5 + pos: -179.5,-28.5 parent: 2 - uid: 4762 components: - type: Transform - pos: -166.5,-1.5 + pos: -181.5,-26.5 parent: 2 - uid: 4763 components: - type: Transform - pos: -165.5,-1.5 + pos: -181.5,-25.5 parent: 2 - uid: 4764 components: - type: Transform - pos: -164.5,-1.5 + pos: -181.5,-24.5 parent: 2 - uid: 4765 components: - type: Transform - pos: -163.5,-1.5 + pos: -180.5,-25.5 parent: 2 - uid: 4766 components: - type: Transform - pos: -161.5,-1.5 + pos: -182.5,-26.5 parent: 2 - uid: 4767 components: - type: Transform - pos: -161.5,-5.5 + pos: -183.5,-26.5 parent: 2 - uid: 4768 components: - type: Transform - pos: -161.5,-4.5 + pos: -184.5,-26.5 parent: 2 - uid: 4769 components: - type: Transform - pos: -161.5,-3.5 + pos: -185.5,-26.5 parent: 2 - uid: 4770 components: - type: Transform - pos: -162.5,-3.5 + pos: -67.5,-5.5 parent: 2 - uid: 4771 components: - type: Transform - pos: -163.5,-3.5 + pos: -206.5,1.5 parent: 2 - uid: 4772 components: - type: Transform - pos: -164.5,-3.5 + pos: -196.5,5.5 parent: 2 - uid: 4773 components: - type: Transform - pos: -165.5,-3.5 + pos: -198.5,4.5 parent: 2 - uid: 4774 components: - type: Transform - pos: -166.5,-3.5 + pos: -206.5,-3.5 parent: 2 - uid: 4775 components: - type: Transform - pos: -167.5,-3.5 + pos: -188.5,-3.5 parent: 2 - uid: 4776 components: - type: Transform - pos: -168.5,-3.5 + pos: -187.5,-3.5 parent: 2 - uid: 4777 components: - type: Transform - pos: -169.5,-3.5 + pos: -200.5,4.5 parent: 2 - uid: 4778 components: - type: Transform - pos: -170.5,-3.5 + pos: -206.5,0.5 parent: 2 - uid: 4779 components: - type: Transform - pos: -171.5,-3.5 + pos: -196.5,6.5 parent: 2 - uid: 4780 components: - type: Transform - pos: -172.5,-3.5 + pos: -206.5,2.5 parent: 2 - uid: 4781 components: - type: Transform - pos: -162.5,-5.5 + pos: -189.5,-3.5 parent: 2 - uid: 4782 components: - type: Transform - pos: -161.5,-2.5 + pos: -196.5,7.5 parent: 2 - uid: 4783 components: - type: Transform - pos: -161.5,-1.5 + pos: -199.5,4.5 parent: 2 - uid: 4784 components: - type: Transform - pos: -71.5,-3.5 + pos: -206.5,3.5 parent: 2 - uid: 4785 components: - type: Transform - pos: -166.5,5.5 + pos: -193.5,-3.5 parent: 2 - uid: 4786 components: - type: Transform - pos: -156.5,-2.5 + pos: -195.5,-3.5 parent: 2 - uid: 4787 components: - type: Transform - pos: -156.5,-1.5 + pos: -194.5,-3.5 parent: 2 - uid: 4788 components: - type: Transform - pos: -156.5,-0.5 + pos: -196.5,-3.5 parent: 2 - uid: 4789 components: - type: Transform - pos: -156.5,0.5 + pos: -190.5,-3.5 parent: 2 - uid: 4790 components: - type: Transform - pos: -156.5,1.5 + pos: -191.5,-3.5 parent: 2 - uid: 4791 components: - type: Transform - pos: -156.5,2.5 + pos: -197.5,4.5 parent: 2 - uid: 4792 components: - type: Transform - pos: -156.5,3.5 + pos: -192.5,-3.5 parent: 2 - uid: 4793 components: - type: Transform - pos: -156.5,4.5 + pos: -197.5,-3.5 parent: 2 - uid: 4794 components: - type: Transform - pos: -157.5,4.5 + pos: -205.5,4.5 parent: 2 - uid: 4795 components: - type: Transform - pos: -158.5,4.5 + pos: -201.5,-3.5 parent: 2 - uid: 4796 components: - type: Transform - pos: -159.5,4.5 + pos: -198.5,-3.5 parent: 2 - uid: 4797 components: - type: Transform - pos: -160.5,4.5 + pos: -200.5,-3.5 parent: 2 - uid: 4798 components: - type: Transform - pos: -161.5,4.5 + pos: -206.5,-2.5 parent: 2 - uid: 4799 components: - type: Transform - pos: -162.5,4.5 + pos: -206.5,-1.5 parent: 2 - uid: 4800 components: - type: Transform - pos: -163.5,4.5 + pos: -199.5,-3.5 parent: 2 - uid: 4801 components: - type: Transform - pos: -164.5,4.5 + pos: -206.5,4.5 parent: 2 - uid: 4802 components: - type: Transform - pos: -165.5,4.5 + pos: -203.5,4.5 parent: 2 - uid: 4803 components: - type: Transform - pos: -166.5,4.5 + pos: -204.5,4.5 parent: 2 - uid: 4804 components: - type: Transform - pos: -166.5,6.5 + pos: -202.5,4.5 parent: 2 - uid: 4805 components: - type: Transform - pos: -158.5,8.5 + pos: -203.5,-3.5 parent: 2 - uid: 4806 components: - type: Transform - pos: -158.5,7.5 + pos: -202.5,-3.5 parent: 2 - uid: 4807 components: - type: Transform - pos: -158.5,6.5 + pos: -201.5,4.5 parent: 2 - uid: 4808 components: - type: Transform - pos: -158.5,5.5 + pos: -204.5,-3.5 parent: 2 - uid: 4809 components: - type: Transform - pos: -159.5,8.5 + pos: -196.5,8.5 parent: 2 - uid: 4810 components: - type: Transform - pos: -160.5,8.5 + pos: -196.5,4.5 parent: 2 - uid: 4811 components: - type: Transform - pos: -161.5,8.5 + pos: -205.5,-3.5 parent: 2 + - uid: 17607 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 17565 + - uid: 17608 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 17565 + - uid: 17609 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 17565 +- proto: CableHVStack + entities: - uid: 4812 components: - type: Transform - pos: -157.5,8.5 + pos: -91.71662,5.8808255 parent: 2 - uid: 4813 components: - type: Transform - pos: -156.5,8.5 + pos: -91.54462,6.0527005 parent: 2 - uid: 4814 components: - type: Transform - pos: -155.5,8.5 + rot: -1.5707963267948966 rad + pos: -61.6552,-6.4149156 parent: 2 +- proto: CableHVStack1 + entities: - uid: 4815 components: - type: Transform - pos: -154.5,8.5 + pos: -41.630394,34.18957 parent: 2 - uid: 4816 components: - type: Transform - pos: -153.5,8.5 + pos: -42.778748,34.504574 parent: 2 + - uid: 17704 + components: + - type: Transform + pos: -42.71672,32.820198 + parent: 1 +- proto: CableMV + entities: - uid: 4817 components: - type: Transform - pos: -152.5,8.5 + pos: -196.5,5.5 parent: 2 - uid: 4818 components: - type: Transform - pos: -151.5,8.5 + pos: -192.5,8.5 parent: 2 - uid: 4819 components: - type: Transform - pos: -151.5,9.5 + pos: -196.5,10.5 parent: 2 - uid: 4820 components: - type: Transform - pos: -151.5,10.5 + pos: -195.5,14.5 parent: 2 - uid: 4821 components: - type: Transform - pos: -151.5,11.5 + pos: -190.5,8.5 parent: 2 - uid: 4822 components: - type: Transform - pos: -150.5,11.5 + pos: -189.5,9.5 parent: 2 - uid: 4823 components: - type: Transform - pos: -155.5,4.5 + pos: -194.5,8.5 parent: 2 - uid: 4824 components: - type: Transform - pos: -154.5,4.5 + pos: -190.5,9.5 parent: 2 - uid: 4825 components: - type: Transform - pos: -153.5,4.5 + pos: -193.5,8.5 parent: 2 - uid: 4826 components: - type: Transform - pos: -152.5,4.5 + pos: -191.5,8.5 parent: 2 - uid: 4827 components: - type: Transform - pos: -151.5,4.5 + pos: -195.5,8.5 parent: 2 - uid: 4828 components: - type: Transform - pos: -150.5,4.5 + pos: -196.5,8.5 parent: 2 - uid: 4829 components: - type: Transform - pos: -150.5,5.5 + pos: -196.5,7.5 parent: 2 - uid: 4830 components: - type: Transform - pos: -156.5,-3.5 + pos: -196.5,14.5 parent: 2 - uid: 4831 components: - type: Transform - pos: -156.5,-4.5 + pos: -196.5,11.5 parent: 2 - uid: 4832 components: - type: Transform - pos: -156.5,-5.5 + pos: -196.5,6.5 parent: 2 - uid: 4833 components: - type: Transform - pos: -157.5,-3.5 + pos: -196.5,4.5 parent: 2 - uid: 4834 components: - type: Transform - pos: -158.5,-3.5 + pos: -197.5,4.5 parent: 2 - uid: 4835 components: - type: Transform - pos: -159.5,-3.5 + pos: -198.5,4.5 parent: 2 - uid: 4836 components: - type: Transform - pos: -160.5,-3.5 + pos: -196.5,13.5 parent: 2 - uid: 4837 components: - type: Transform - pos: -156.5,-6.5 + pos: -77.5,1.5 parent: 2 - uid: 4838 components: - type: Transform - pos: -156.5,-7.5 + pos: -186.5,-25.5 parent: 2 - uid: 4839 components: - type: Transform - pos: -157.5,-7.5 + pos: -186.5,-26.5 parent: 2 - uid: 4840 components: - type: Transform - pos: -158.5,-7.5 + pos: -188.5,-26.5 parent: 2 - uid: 4841 components: - type: Transform - pos: -159.5,-7.5 + pos: -186.5,-22.5 parent: 2 - uid: 4842 components: - type: Transform - pos: -160.5,-7.5 + pos: -186.5,-23.5 parent: 2 - uid: 4843 components: - type: Transform - pos: -161.5,-7.5 + pos: -186.5,-24.5 parent: 2 - uid: 4844 components: - type: Transform - pos: -162.5,-7.5 + pos: -187.5,-26.5 parent: 2 - uid: 4845 components: - type: Transform - pos: -163.5,-7.5 + pos: -73.5,-8.5 parent: 2 - uid: 4846 components: - type: Transform - pos: -164.5,-7.5 + pos: -78.5,-7.5 parent: 2 - uid: 4847 components: - type: Transform - pos: -165.5,-7.5 + pos: -80.5,-8.5 parent: 2 - uid: 4848 components: - type: Transform - pos: -159.5,3.5 + pos: -72.5,-0.5 parent: 2 - uid: 4849 components: - type: Transform - pos: -171.5,2.5 + pos: -78.5,-0.5 parent: 2 - uid: 4850 components: - type: Transform - pos: -172.5,2.5 + pos: -78.5,1.5 parent: 2 - uid: 4851 components: - type: Transform - pos: -173.5,2.5 + pos: -72.5,1.5 parent: 2 - uid: 4852 components: - type: Transform - pos: -159.5,2.5 + pos: -81.5,-7.5 parent: 2 - uid: 4853 components: - type: Transform - pos: -160.5,2.5 + pos: -81.5,-6.5 parent: 2 - uid: 4854 components: - type: Transform - pos: -161.5,2.5 + pos: -81.5,-4.5 parent: 2 - uid: 4855 components: - type: Transform - pos: -162.5,2.5 + pos: -72.5,0.5 parent: 2 - uid: 4856 components: - type: Transform - pos: -163.5,2.5 + pos: -72.5,-2.5 parent: 2 - uid: 4857 components: - type: Transform - pos: -164.5,2.5 + pos: -81.5,1.5 parent: 2 - uid: 4858 components: - type: Transform - pos: -165.5,2.5 + pos: -79.5,-8.5 parent: 2 - uid: 4859 components: - type: Transform - pos: -166.5,2.5 + pos: -77.5,-8.5 parent: 2 - uid: 4860 components: - type: Transform - pos: -167.5,2.5 + pos: -74.5,-8.5 parent: 2 - uid: 4861 components: - type: Transform - pos: -168.5,2.5 + pos: -40.5,33.5 parent: 2 - uid: 4862 components: - type: Transform - pos: -169.5,2.5 + pos: -39.5,33.5 parent: 2 - uid: 4863 components: - type: Transform - pos: -170.5,2.5 + pos: -174.5,-8.5 parent: 2 - uid: 4864 components: - type: Transform - pos: -183.5,-13.5 + pos: -57.5,0.5 parent: 2 - uid: 4865 components: - type: Transform - pos: -184.5,-13.5 + pos: -76.5,-13.5 parent: 2 - uid: 4866 components: - type: Transform - pos: -185.5,-13.5 + pos: -129.5,-13.5 parent: 2 - uid: 4867 components: - type: Transform - pos: -186.5,-13.5 + pos: -127.5,-14.5 parent: 2 - uid: 4868 components: - type: Transform - pos: -186.5,-26.5 + pos: -81.5,11.5 parent: 2 - uid: 4869 components: - type: Transform - pos: -186.5,-14.5 + pos: -82.5,11.5 parent: 2 - uid: 4870 components: - type: Transform - pos: -186.5,-15.5 + pos: -69.5,-5.5 parent: 2 - uid: 4871 components: - type: Transform - pos: -186.5,-16.5 + pos: -69.5,-4.5 parent: 2 - uid: 4872 components: - type: Transform - pos: -186.5,-17.5 + pos: -70.5,-3.5 parent: 2 - uid: 4873 components: - type: Transform - pos: -186.5,-18.5 + pos: -72.5,-8.5 parent: 2 - uid: 4874 components: - type: Transform - pos: -186.5,-19.5 + pos: -75.5,-8.5 parent: 2 - uid: 4875 components: - type: Transform - pos: -186.5,-20.5 + pos: -81.5,0.5 parent: 2 - uid: 4876 components: - type: Transform - pos: -186.5,-21.5 + pos: -72.5,-3.5 parent: 2 - uid: 4877 components: - type: Transform - pos: -186.5,-22.5 + pos: -72.5,-1.5 parent: 2 - uid: 4878 components: - type: Transform - pos: -186.5,-23.5 + pos: -83.5,11.5 parent: 2 - uid: 4879 components: - type: Transform - pos: -186.5,-24.5 + pos: -80.5,11.5 parent: 2 - uid: 4880 components: - type: Transform - pos: -186.5,-25.5 + pos: -79.5,13.5 parent: 2 - uid: 4881 components: - type: Transform - pos: -185.5,-26.5 + pos: -85.5,-32.5 parent: 2 - uid: 4882 components: - type: Transform - pos: -184.5,-26.5 + pos: -84.5,-32.5 parent: 2 - uid: 4883 components: - type: Transform - pos: -185.5,-21.5 + pos: -84.5,-32.5 parent: 2 - uid: 4884 components: - type: Transform - pos: -184.5,-21.5 + pos: -79.5,12.5 parent: 2 - uid: 4885 components: - type: Transform - pos: -187.5,-21.5 + pos: -79.5,11.5 parent: 2 - uid: 4886 components: - type: Transform - pos: -188.5,-21.5 + pos: -208.5,-1.5 parent: 2 - uid: 4887 components: - type: Transform - pos: -187.5,-16.5 + pos: -173.5,-8.5 parent: 2 - uid: 4888 components: - type: Transform - pos: -188.5,-16.5 + pos: -173.5,-7.5 parent: 2 - uid: 4889 components: - type: Transform - pos: -189.5,-16.5 + pos: -173.5,-6.5 parent: 2 - uid: 4890 components: - type: Transform - pos: -190.5,-16.5 + pos: -173.5,-5.5 parent: 2 - uid: 4891 components: - type: Transform - pos: -191.5,-16.5 + pos: -173.5,-4.5 parent: 2 - uid: 4892 components: - type: Transform - pos: -191.5,-15.5 + pos: -173.5,-3.5 parent: 2 - uid: 4893 components: - type: Transform - pos: -191.5,-17.5 + pos: -174.5,-3.5 parent: 2 - uid: 4894 components: - type: Transform - pos: -185.5,-16.5 + pos: -175.5,-3.5 parent: 2 - uid: 4895 components: - type: Transform - pos: -184.5,-16.5 + pos: -176.5,-3.5 parent: 2 - uid: 4896 components: - type: Transform - pos: -183.5,-16.5 + pos: -177.5,-3.5 parent: 2 - uid: 4897 components: - type: Transform - pos: -182.5,-16.5 + pos: -175.5,-4.5 parent: 2 - uid: 4898 components: - type: Transform - pos: -181.5,-15.5 + pos: -175.5,-5.5 parent: 2 - uid: 4899 components: - type: Transform - pos: -181.5,-17.5 + pos: -208.5,-2.5 parent: 2 - uid: 4900 components: - type: Transform - pos: -181.5,-16.5 + pos: -208.5,-3.5 parent: 2 - uid: 4901 components: - type: Transform - pos: -185.5,-12.5 + pos: -207.5,-3.5 parent: 2 - uid: 4902 components: - type: Transform - pos: -185.5,-11.5 + pos: -206.5,-3.5 parent: 2 - uid: 4903 components: - type: Transform - pos: -187.5,-13.5 + pos: -205.5,-3.5 parent: 2 - uid: 4904 components: - type: Transform - pos: -187.5,-12.5 + pos: -204.5,-3.5 parent: 2 - uid: 4905 components: - type: Transform - pos: -187.5,-11.5 + pos: -203.5,-3.5 parent: 2 - uid: 4906 components: - type: Transform - pos: -187.5,-10.5 + pos: -202.5,-3.5 parent: 2 - uid: 4907 components: - type: Transform - pos: -187.5,-9.5 + pos: -201.5,-3.5 parent: 2 - uid: 4908 components: - type: Transform - pos: -187.5,-8.5 + pos: -200.5,-3.5 parent: 2 - uid: 4909 components: - type: Transform - pos: -187.5,-7.5 + pos: -199.5,-3.5 parent: 2 - uid: 4910 components: - type: Transform - pos: -188.5,-7.5 + pos: -198.5,-3.5 parent: 2 - uid: 4911 components: - type: Transform - pos: -186.5,-7.5 + pos: -197.5,-3.5 parent: 2 - uid: 4912 components: - type: Transform - pos: -189.5,-7.5 + pos: -196.5,-3.5 parent: 2 - uid: 4913 components: - type: Transform - pos: -189.5,-8.5 + pos: -195.5,-3.5 parent: 2 - uid: 4914 components: - type: Transform - pos: -183.5,-12.5 + pos: -194.5,-3.5 parent: 2 - uid: 4915 components: - type: Transform - pos: -183.5,-11.5 + pos: -193.5,-3.5 parent: 2 - uid: 4916 components: - type: Transform - pos: -183.5,-10.5 + pos: -192.5,-3.5 parent: 2 - uid: 4917 components: - type: Transform - pos: -183.5,-9.5 + pos: -191.5,-3.5 parent: 2 - uid: 4918 components: - type: Transform - pos: -183.5,-8.5 + pos: -190.5,-3.5 parent: 2 - uid: 4919 components: - type: Transform - pos: -182.5,-8.5 + pos: -189.5,-3.5 parent: 2 - uid: 4920 components: - type: Transform - pos: -130.5,-4.5 + pos: -188.5,-3.5 parent: 2 - uid: 4921 components: - type: Transform - pos: -134.5,-3.5 + pos: -187.5,-3.5 parent: 2 - uid: 4922 components: - type: Transform - pos: -133.5,-3.5 + pos: -186.5,-3.5 parent: 2 - uid: 4923 components: - type: Transform - pos: -132.5,-3.5 + pos: -185.5,-3.5 parent: 2 - uid: 4924 components: - type: Transform - pos: -131.5,-3.5 + pos: -184.5,-3.5 parent: 2 - uid: 4925 components: - type: Transform - pos: -130.5,-3.5 + pos: -183.5,-3.5 parent: 2 - uid: 4926 components: - type: Transform - pos: -130.5,-5.5 + pos: -182.5,-3.5 parent: 2 - uid: 4927 components: - type: Transform - pos: -130.5,-6.5 + pos: -181.5,-3.5 parent: 2 - uid: 4928 components: - type: Transform - pos: -130.5,-7.5 + pos: -180.5,-3.5 parent: 2 - uid: 4929 components: - type: Transform - pos: -130.5,-8.5 + pos: -179.5,-3.5 parent: 2 - uid: 4930 components: - type: Transform - pos: -130.5,-9.5 + pos: -178.5,-3.5 parent: 2 - uid: 4931 components: - type: Transform - pos: -130.5,-10.5 + pos: -173.5,-3.5 parent: 2 - uid: 4932 components: - type: Transform - pos: -130.5,-11.5 + pos: -173.5,-2.5 parent: 2 - uid: 4933 components: - type: Transform - pos: -130.5,-12.5 + pos: -173.5,-1.5 parent: 2 - uid: 4934 components: - type: Transform - pos: -130.5,-13.5 + pos: -172.5,-1.5 parent: 2 - uid: 4935 components: - type: Transform - pos: -125.5,-14.5 + pos: -171.5,-1.5 parent: 2 - uid: 4936 components: - type: Transform - pos: -124.5,-14.5 + pos: -170.5,-1.5 parent: 2 - uid: 4937 components: - type: Transform - pos: -124.5,-15.5 + pos: -169.5,-1.5 parent: 2 - uid: 4938 components: - type: Transform - pos: -124.5,-16.5 + pos: -168.5,-1.5 parent: 2 - uid: 4939 components: - type: Transform - pos: -123.5,-16.5 + pos: -167.5,-1.5 parent: 2 - uid: 4940 components: - type: Transform - pos: -122.5,-16.5 + pos: -166.5,-1.5 parent: 2 - uid: 4941 components: - type: Transform - pos: -121.5,-16.5 + pos: -165.5,-1.5 parent: 2 - uid: 4942 components: - type: Transform - pos: -121.5,-15.5 + pos: -164.5,-1.5 parent: 2 - uid: 4943 components: - type: Transform - pos: -121.5,-14.5 + pos: -163.5,-1.5 parent: 2 - uid: 4944 components: - type: Transform - pos: -121.5,-13.5 + pos: -161.5,-1.5 parent: 2 - uid: 4945 components: - type: Transform - pos: -120.5,-13.5 + pos: -161.5,-5.5 parent: 2 - uid: 4946 components: - type: Transform - pos: -120.5,-16.5 + pos: -161.5,-4.5 parent: 2 - uid: 4947 components: - type: Transform - pos: -119.5,-16.5 + pos: -161.5,-3.5 parent: 2 - uid: 4948 components: - type: Transform - pos: -118.5,-16.5 + pos: -162.5,-3.5 parent: 2 - uid: 4949 components: - type: Transform - pos: -117.5,-16.5 + pos: -163.5,-3.5 parent: 2 - uid: 4950 components: - type: Transform - pos: -116.5,-16.5 + pos: -164.5,-3.5 parent: 2 - uid: 4951 components: - type: Transform - pos: -115.5,-16.5 + pos: -165.5,-3.5 parent: 2 - uid: 4952 components: - type: Transform - pos: -115.5,-15.5 + pos: -166.5,-3.5 parent: 2 - uid: 4953 components: - type: Transform - pos: -115.5,-14.5 + pos: -167.5,-3.5 parent: 2 - uid: 4954 components: - type: Transform - pos: -115.5,-13.5 + pos: -168.5,-3.5 parent: 2 - uid: 4955 components: - type: Transform - pos: -114.5,-16.5 + pos: -169.5,-3.5 parent: 2 - uid: 4956 components: - type: Transform - pos: -113.5,-16.5 + pos: -170.5,-3.5 parent: 2 - uid: 4957 components: - type: Transform - pos: -113.5,-15.5 + pos: -171.5,-3.5 parent: 2 - uid: 4958 components: - type: Transform - pos: -112.5,-15.5 + pos: -172.5,-3.5 parent: 2 - uid: 4959 components: - type: Transform - pos: -111.5,-15.5 + pos: -162.5,-5.5 parent: 2 - uid: 4960 components: - type: Transform - pos: -110.5,-15.5 + pos: -161.5,-2.5 parent: 2 - uid: 4961 components: - type: Transform - pos: -109.5,-15.5 + pos: -161.5,-1.5 parent: 2 - uid: 4962 components: - type: Transform - pos: -108.5,-15.5 + pos: -71.5,-3.5 parent: 2 - uid: 4963 components: - type: Transform - pos: -108.5,-14.5 + pos: -166.5,5.5 parent: 2 - uid: 4964 components: - type: Transform - pos: -108.5,-13.5 + pos: -156.5,-2.5 parent: 2 - uid: 4965 components: - type: Transform - pos: -108.5,-12.5 + pos: -156.5,-1.5 parent: 2 - uid: 4966 components: - type: Transform - pos: -108.5,-11.5 + pos: -156.5,-0.5 parent: 2 - uid: 4967 components: - type: Transform - pos: -108.5,-10.5 + pos: -156.5,0.5 parent: 2 - uid: 4968 components: - type: Transform - pos: -108.5,-9.5 + pos: -156.5,1.5 parent: 2 - uid: 4969 components: - type: Transform - pos: -108.5,-8.5 + pos: -156.5,2.5 parent: 2 - uid: 4970 components: - type: Transform - pos: -109.5,-8.5 + pos: -156.5,3.5 parent: 2 - uid: 4971 components: - type: Transform - pos: -121.5,-5.5 + pos: -156.5,4.5 parent: 2 - uid: 4972 components: - type: Transform - pos: -121.5,-4.5 + pos: -157.5,4.5 parent: 2 - uid: 4973 components: - type: Transform - pos: -121.5,-3.5 + pos: -158.5,4.5 parent: 2 - uid: 4974 components: - type: Transform - pos: -122.5,-3.5 + pos: -159.5,4.5 parent: 2 - uid: 4975 components: - type: Transform - pos: -123.5,-3.5 + pos: -160.5,4.5 parent: 2 - uid: 4976 components: - type: Transform - pos: -124.5,-3.5 + pos: -161.5,4.5 parent: 2 - uid: 4977 components: - type: Transform - pos: -125.5,-3.5 + pos: -162.5,4.5 parent: 2 - uid: 4978 components: - type: Transform - pos: -126.5,-3.5 + pos: -163.5,4.5 parent: 2 - uid: 4979 components: - type: Transform - pos: -127.5,-3.5 + pos: -164.5,4.5 parent: 2 - uid: 4980 components: - type: Transform - pos: -128.5,-3.5 + pos: -165.5,4.5 parent: 2 - uid: 4981 components: - type: Transform - pos: -129.5,-3.5 + pos: -166.5,4.5 parent: 2 - uid: 4982 components: - type: Transform - pos: -121.5,-17.5 + pos: -166.5,6.5 parent: 2 - uid: 4983 components: - type: Transform - pos: -121.5,-18.5 + pos: -158.5,8.5 parent: 2 - uid: 4984 components: - type: Transform - pos: -121.5,-19.5 + pos: -158.5,7.5 parent: 2 - uid: 4985 components: - type: Transform - pos: -121.5,-20.5 + pos: -158.5,6.5 parent: 2 - uid: 4986 components: - type: Transform - pos: -122.5,-20.5 + pos: -158.5,5.5 parent: 2 - uid: 4987 components: - type: Transform - pos: -123.5,-20.5 + pos: -159.5,8.5 parent: 2 - uid: 4988 components: - type: Transform - pos: -124.5,-20.5 + pos: -160.5,8.5 parent: 2 - uid: 4989 components: - type: Transform - pos: -125.5,-20.5 + pos: -161.5,8.5 parent: 2 - uid: 4990 components: - type: Transform - pos: -105.5,15.5 + pos: -157.5,8.5 parent: 2 - uid: 4991 components: - type: Transform - pos: -104.5,15.5 + pos: -156.5,8.5 parent: 2 - uid: 4992 components: - type: Transform - pos: -79.5,14.5 + pos: -155.5,8.5 parent: 2 - uid: 4993 components: - type: Transform - pos: -17.5,10.5 + pos: -154.5,8.5 parent: 2 - uid: 4994 components: - type: Transform - pos: -18.5,10.5 + pos: -153.5,8.5 parent: 2 - uid: 4995 components: - type: Transform - pos: -80.5,14.5 + pos: -152.5,8.5 parent: 2 - uid: 4996 components: - type: Transform - pos: -81.5,14.5 + pos: -151.5,8.5 parent: 2 - uid: 4997 components: - type: Transform - pos: -82.5,14.5 + pos: -151.5,9.5 parent: 2 - uid: 4998 components: - type: Transform - pos: -83.5,14.5 + pos: -151.5,10.5 parent: 2 - uid: 4999 components: - type: Transform - pos: -84.5,14.5 + pos: -151.5,11.5 parent: 2 - uid: 5000 components: - type: Transform - pos: -85.5,13.5 + pos: -150.5,11.5 parent: 2 - uid: 5001 components: - type: Transform - pos: -85.5,12.5 + pos: -155.5,4.5 parent: 2 - uid: 5002 components: - type: Transform - pos: -85.5,11.5 + pos: -154.5,4.5 parent: 2 - uid: 5003 components: - type: Transform - pos: -85.5,10.5 + pos: -153.5,4.5 parent: 2 - uid: 5004 components: - type: Transform - pos: -85.5,9.5 + pos: -152.5,4.5 parent: 2 - uid: 5005 components: - type: Transform - pos: -85.5,8.5 + pos: -151.5,4.5 parent: 2 - uid: 5006 components: - type: Transform - pos: -85.5,7.5 + pos: -150.5,4.5 parent: 2 - uid: 5007 components: - type: Transform - pos: -84.5,7.5 + pos: -150.5,5.5 parent: 2 - uid: 5008 components: - type: Transform - pos: -83.5,7.5 + pos: -156.5,-3.5 parent: 2 - uid: 5009 components: - type: Transform - pos: -82.5,7.5 + pos: -156.5,-4.5 parent: 2 - uid: 5010 components: - type: Transform - pos: -81.5,7.5 + pos: -156.5,-5.5 parent: 2 - uid: 5011 components: - type: Transform - pos: -81.5,6.5 + pos: -157.5,-3.5 parent: 2 - uid: 5012 components: - type: Transform - pos: -84.5,6.5 + pos: -158.5,-3.5 parent: 2 - uid: 5013 components: - type: Transform - pos: -84.5,5.5 + pos: -159.5,-3.5 parent: 2 - uid: 5014 components: - type: Transform - pos: -84.5,4.5 + pos: -160.5,-3.5 parent: 2 - uid: 5015 components: - type: Transform - pos: -84.5,3.5 + pos: -156.5,-6.5 parent: 2 - uid: 5016 components: - type: Transform - pos: -84.5,2.5 + pos: -156.5,-7.5 parent: 2 - uid: 5017 components: - type: Transform - pos: -85.5,2.5 + pos: -157.5,-7.5 parent: 2 - uid: 5018 components: - type: Transform - pos: -86.5,2.5 + pos: -158.5,-7.5 parent: 2 - uid: 5019 components: - type: Transform - pos: -87.5,2.5 + pos: -159.5,-7.5 parent: 2 - uid: 5020 components: - type: Transform - pos: -87.5,1.5 + pos: -160.5,-7.5 parent: 2 - uid: 5021 components: - type: Transform - pos: -87.5,0.5 + pos: -161.5,-7.5 parent: 2 - uid: 5022 components: - type: Transform - pos: -87.5,-0.5 + pos: -162.5,-7.5 parent: 2 - uid: 5023 components: - type: Transform - pos: -88.5,-0.5 + pos: -163.5,-7.5 parent: 2 - uid: 5024 components: - type: Transform - pos: -88.5,-1.5 + pos: -164.5,-7.5 parent: 2 - uid: 5025 components: - type: Transform - pos: -88.5,-2.5 + pos: -165.5,-7.5 parent: 2 - uid: 5026 components: - type: Transform - pos: -88.5,-3.5 + pos: -159.5,3.5 parent: 2 - uid: 5027 components: - type: Transform - pos: -88.5,-4.5 + pos: -171.5,2.5 parent: 2 - uid: 5028 components: - type: Transform - pos: -88.5,-5.5 + pos: -172.5,2.5 parent: 2 - uid: 5029 components: - type: Transform - pos: -89.5,-5.5 + pos: -173.5,2.5 parent: 2 - uid: 5030 components: - type: Transform - pos: -63.5,14.5 + pos: -159.5,2.5 parent: 2 - uid: 5031 components: - type: Transform - pos: -64.5,14.5 + pos: -160.5,2.5 parent: 2 - uid: 5032 components: - type: Transform - pos: -78.5,13.5 + pos: -161.5,2.5 parent: 2 - uid: 5033 components: - type: Transform - pos: -77.5,13.5 + pos: -162.5,2.5 parent: 2 - uid: 5034 components: - type: Transform - pos: -76.5,13.5 + pos: -163.5,2.5 parent: 2 - uid: 5035 components: - type: Transform - pos: -75.5,13.5 + pos: -164.5,2.5 parent: 2 - uid: 5036 components: - type: Transform - pos: -74.5,13.5 + pos: -165.5,2.5 parent: 2 - uid: 5037 components: - type: Transform - pos: -73.5,13.5 + pos: -166.5,2.5 parent: 2 - uid: 5038 components: - type: Transform - pos: -65.5,14.5 + pos: -167.5,2.5 parent: 2 - uid: 5039 components: - type: Transform - pos: -73.5,14.5 + pos: -168.5,2.5 parent: 2 - uid: 5040 components: - type: Transform - pos: -73.5,15.5 + pos: -169.5,2.5 parent: 2 - uid: 5041 components: - type: Transform - pos: -72.5,15.5 + pos: -170.5,2.5 parent: 2 - uid: 5042 components: - type: Transform - pos: -71.5,15.5 + pos: -183.5,-13.5 parent: 2 - uid: 5043 components: - type: Transform - pos: -71.5,14.5 + pos: -184.5,-13.5 parent: 2 - uid: 5044 components: - type: Transform - pos: -66.5,14.5 + pos: -185.5,-13.5 parent: 2 - uid: 5045 components: - type: Transform - pos: -70.5,14.5 + pos: -186.5,-13.5 parent: 2 - uid: 5046 components: - type: Transform - pos: -69.5,14.5 + pos: -186.5,-14.5 parent: 2 - uid: 5047 components: - type: Transform - pos: -69.5,15.5 + pos: -186.5,-15.5 parent: 2 - uid: 5048 components: - type: Transform - pos: -68.5,15.5 + pos: -186.5,-16.5 parent: 2 - uid: 5049 components: - type: Transform - pos: -67.5,15.5 + pos: -186.5,-17.5 parent: 2 - uid: 5050 components: - type: Transform - pos: -66.5,15.5 + pos: -186.5,-18.5 parent: 2 - uid: 5051 components: - type: Transform - pos: -63.5,13.5 + pos: -186.5,-19.5 parent: 2 - uid: 5052 components: - type: Transform - pos: -63.5,12.5 + pos: -186.5,-20.5 parent: 2 - uid: 5053 components: - type: Transform - pos: -63.5,11.5 + pos: -186.5,-21.5 parent: 2 - uid: 5054 components: - type: Transform - pos: -62.5,11.5 + pos: -185.5,-21.5 parent: 2 - uid: 5055 components: - type: Transform - pos: -61.5,11.5 + pos: -184.5,-21.5 parent: 2 - uid: 5056 components: - type: Transform - pos: -60.5,11.5 + pos: -187.5,-21.5 parent: 2 - uid: 5057 components: - type: Transform - pos: -59.5,11.5 + pos: -188.5,-21.5 parent: 2 - uid: 5058 components: - type: Transform - pos: -58.5,11.5 + pos: -187.5,-16.5 parent: 2 - uid: 5059 components: - type: Transform - pos: -55.5,18.5 + pos: -188.5,-16.5 parent: 2 - uid: 5060 components: - type: Transform - pos: -54.5,18.5 + pos: -189.5,-16.5 parent: 2 - uid: 5061 components: - type: Transform - pos: -84.5,-12.5 + pos: -190.5,-16.5 parent: 2 - uid: 5062 components: - type: Transform - pos: -84.5,-10.5 + pos: -191.5,-16.5 parent: 2 - uid: 5063 components: - type: Transform - pos: -85.5,-9.5 + pos: -191.5,-15.5 parent: 2 - uid: 5064 components: - type: Transform - pos: -84.5,-11.5 + pos: -191.5,-17.5 parent: 2 - uid: 5065 components: - type: Transform - pos: -85.5,-10.5 + pos: -185.5,-16.5 parent: 2 - uid: 5066 components: - type: Transform - pos: -84.5,-14.5 + pos: -184.5,-16.5 parent: 2 - uid: 5067 components: - type: Transform - pos: -84.5,-13.5 + pos: -183.5,-16.5 parent: 2 - uid: 5068 components: - type: Transform - pos: -60.5,-18.5 + pos: -182.5,-16.5 parent: 2 - uid: 5069 components: - type: Transform - pos: -60.5,-19.5 + pos: -181.5,-15.5 parent: 2 - uid: 5070 components: - type: Transform - pos: -59.5,-19.5 + pos: -181.5,-17.5 parent: 2 - uid: 5071 components: - type: Transform - pos: -58.5,-19.5 + pos: -181.5,-16.5 parent: 2 - uid: 5072 components: - type: Transform - pos: -57.5,-18.5 + pos: -185.5,-12.5 parent: 2 - uid: 5073 components: - type: Transform - pos: -56.5,-18.5 + pos: -185.5,-11.5 parent: 2 - uid: 5074 components: - type: Transform - pos: -56.5,-19.5 + pos: -187.5,-13.5 parent: 2 - uid: 5075 components: - type: Transform - pos: -56.5,-20.5 + pos: -187.5,-12.5 parent: 2 - uid: 5076 components: - type: Transform - pos: -58.5,-18.5 + pos: -187.5,-11.5 parent: 2 - uid: 5077 components: - type: Transform - pos: -56.5,-21.5 + pos: -187.5,-10.5 parent: 2 - uid: 5078 components: - type: Transform - pos: -56.5,-22.5 + pos: -187.5,-9.5 parent: 2 - uid: 5079 components: - type: Transform - pos: -56.5,-23.5 + pos: -187.5,-8.5 parent: 2 - uid: 5080 components: - type: Transform - pos: -55.5,-23.5 + pos: -187.5,-7.5 parent: 2 - uid: 5081 components: - type: Transform - pos: -54.5,-23.5 + pos: -188.5,-7.5 parent: 2 - uid: 5082 components: - type: Transform - pos: -57.5,-23.5 + pos: -186.5,-7.5 parent: 2 - uid: 5083 components: - type: Transform - pos: -58.5,-23.5 + pos: -189.5,-7.5 parent: 2 - uid: 5084 components: - type: Transform - pos: -59.5,-23.5 + pos: -189.5,-8.5 parent: 2 - uid: 5085 components: - type: Transform - pos: -60.5,-23.5 + pos: -183.5,-12.5 parent: 2 - uid: 5086 components: - type: Transform - pos: -61.5,-23.5 + pos: -183.5,-11.5 parent: 2 - uid: 5087 components: - type: Transform - pos: -62.5,-23.5 + pos: -183.5,-10.5 parent: 2 - uid: 5088 components: - type: Transform - pos: -63.5,-23.5 + pos: -183.5,-9.5 parent: 2 - uid: 5089 components: - type: Transform - pos: -64.5,-23.5 + pos: -183.5,-8.5 parent: 2 - uid: 5090 components: - type: Transform - pos: -65.5,-23.5 + pos: -182.5,-8.5 parent: 2 - uid: 5091 components: - type: Transform - pos: -66.5,-23.5 + pos: -130.5,-4.5 parent: 2 - uid: 5092 components: - type: Transform - pos: -67.5,-23.5 + pos: -134.5,-3.5 parent: 2 - uid: 5093 components: - type: Transform - pos: -68.5,-23.5 + pos: -133.5,-3.5 parent: 2 - uid: 5094 components: - type: Transform - pos: -68.5,-22.5 + pos: -132.5,-3.5 parent: 2 - uid: 5095 components: - type: Transform - pos: -68.5,-21.5 + pos: -131.5,-3.5 parent: 2 - uid: 5096 components: - type: Transform - pos: -65.5,-24.5 + pos: -130.5,-3.5 parent: 2 - uid: 5097 components: - type: Transform - pos: -65.5,-25.5 + pos: -130.5,-5.5 parent: 2 - uid: 5098 components: - type: Transform - pos: -65.5,-26.5 + pos: -130.5,-6.5 parent: 2 - uid: 5099 components: - type: Transform - pos: -66.5,-26.5 + pos: -130.5,-7.5 parent: 2 - uid: 5100 components: - type: Transform - pos: -67.5,-26.5 + pos: -130.5,-8.5 parent: 2 - uid: 5101 components: - type: Transform - pos: -64.5,-26.5 + pos: -130.5,-9.5 parent: 2 - uid: 5102 components: - type: Transform - pos: -63.5,-26.5 + pos: -130.5,-10.5 parent: 2 - uid: 5103 components: - type: Transform - pos: -62.5,-26.5 + pos: -130.5,-11.5 parent: 2 - uid: 5104 components: - type: Transform - pos: -61.5,-26.5 + pos: -130.5,-12.5 parent: 2 - uid: 5105 components: - type: Transform - pos: -54.5,-18.5 + pos: -130.5,-13.5 parent: 2 - uid: 5106 components: - type: Transform - pos: -53.5,-18.5 + pos: -125.5,-14.5 parent: 2 - uid: 5107 components: - type: Transform - pos: -52.5,-18.5 + pos: -124.5,-14.5 parent: 2 - uid: 5108 components: - type: Transform - pos: -55.5,-18.5 + pos: -124.5,-15.5 parent: 2 - uid: 5109 components: - type: Transform - pos: -51.5,-18.5 + pos: -124.5,-16.5 parent: 2 - uid: 5110 components: - type: Transform - pos: -50.5,-18.5 + pos: -123.5,-16.5 parent: 2 - uid: 5111 components: - type: Transform - pos: -49.5,-18.5 + pos: -122.5,-16.5 parent: 2 - uid: 5112 components: - type: Transform - pos: -48.5,-18.5 + pos: -121.5,-16.5 parent: 2 - uid: 5113 components: - type: Transform - pos: -48.5,-17.5 + pos: -121.5,-15.5 parent: 2 - uid: 5114 components: - type: Transform - pos: -49.5,-19.5 + pos: -121.5,-14.5 parent: 2 - uid: 5115 components: - type: Transform - pos: -49.5,-20.5 + pos: -121.5,-13.5 parent: 2 - uid: 5116 components: - type: Transform - pos: -49.5,-21.5 + pos: -120.5,-13.5 parent: 2 - uid: 5117 components: - type: Transform - pos: -48.5,-21.5 + pos: -120.5,-16.5 parent: 2 - uid: 5118 components: - type: Transform - pos: -47.5,-21.5 + pos: -119.5,-16.5 parent: 2 - uid: 5119 components: - type: Transform - pos: -46.5,-21.5 + pos: -118.5,-16.5 parent: 2 - uid: 5120 components: - type: Transform - pos: -46.5,-22.5 + pos: -117.5,-16.5 parent: 2 - uid: 5121 components: - type: Transform - pos: -45.5,-22.5 + pos: -116.5,-16.5 parent: 2 - uid: 5122 components: - type: Transform - pos: -44.5,-22.5 + pos: -115.5,-16.5 parent: 2 - uid: 5123 components: - type: Transform - pos: -43.5,-22.5 + pos: -115.5,-15.5 parent: 2 - uid: 5124 components: - type: Transform - pos: -42.5,-22.5 + pos: -115.5,-14.5 parent: 2 - uid: 5125 components: - type: Transform - pos: -41.5,-22.5 + pos: -115.5,-13.5 parent: 2 - uid: 5126 components: - type: Transform - pos: -40.5,-22.5 + pos: -114.5,-16.5 parent: 2 - uid: 5127 components: - type: Transform - pos: -40.5,-21.5 + pos: -113.5,-16.5 parent: 2 - uid: 5128 components: - type: Transform - pos: -39.5,-21.5 + pos: -113.5,-15.5 parent: 2 - uid: 5129 components: - type: Transform - pos: -39.5,-20.5 + pos: -112.5,-15.5 parent: 2 - uid: 5130 components: - type: Transform - pos: -39.5,-19.5 + pos: -111.5,-15.5 parent: 2 - uid: 5131 components: - type: Transform - pos: -39.5,-18.5 + pos: -110.5,-15.5 parent: 2 - uid: 5132 components: - type: Transform - pos: -39.5,-17.5 + pos: -109.5,-15.5 parent: 2 - uid: 5133 components: - type: Transform - pos: -39.5,-16.5 + pos: -108.5,-15.5 parent: 2 - uid: 5134 components: - type: Transform - pos: -39.5,-15.5 + pos: -108.5,-14.5 parent: 2 - uid: 5135 components: - type: Transform - pos: -62.5,-12.5 + pos: -108.5,-13.5 parent: 2 - uid: 5136 components: - type: Transform - pos: -61.5,-12.5 + pos: -108.5,-12.5 parent: 2 - uid: 5137 components: - type: Transform - pos: -60.5,-12.5 + pos: -108.5,-11.5 parent: 2 - uid: 5138 components: - type: Transform - pos: -60.5,-11.5 + pos: -108.5,-10.5 parent: 2 - uid: 5139 components: - type: Transform - pos: -60.5,-10.5 + pos: -108.5,-9.5 parent: 2 - uid: 5140 components: - type: Transform - pos: -60.5,-9.5 + pos: -108.5,-8.5 parent: 2 - uid: 5141 components: - type: Transform - pos: -60.5,-8.5 + pos: -109.5,-8.5 parent: 2 - uid: 5142 components: - type: Transform - pos: -60.5,-7.5 + pos: -121.5,-5.5 parent: 2 - uid: 5143 components: - type: Transform - pos: -60.5,-6.5 + pos: -121.5,-4.5 parent: 2 - uid: 5144 components: - type: Transform - pos: -60.5,-5.5 + pos: -121.5,-3.5 parent: 2 - uid: 5145 components: - type: Transform - pos: -60.5,-4.5 + pos: -122.5,-3.5 parent: 2 - uid: 5146 components: - type: Transform - pos: -60.5,-3.5 + pos: -123.5,-3.5 parent: 2 - uid: 5147 components: - type: Transform - pos: -61.5,-3.5 + pos: -124.5,-3.5 parent: 2 - uid: 5148 components: - type: Transform - pos: -62.5,-3.5 + pos: -125.5,-3.5 parent: 2 - uid: 5149 components: - type: Transform - pos: -63.5,-3.5 + pos: -126.5,-3.5 parent: 2 - uid: 5150 components: - type: Transform - pos: -64.5,-3.5 + pos: -127.5,-3.5 parent: 2 - uid: 5151 components: - type: Transform - pos: -64.5,-2.5 + pos: -128.5,-3.5 parent: 2 - uid: 5152 components: - type: Transform - pos: -64.5,-1.5 + pos: -129.5,-3.5 parent: 2 - uid: 5153 components: - type: Transform - pos: -64.5,-0.5 + pos: -121.5,-17.5 parent: 2 - uid: 5154 components: - type: Transform - pos: -65.5,-0.5 + pos: -121.5,-18.5 parent: 2 - uid: 5155 components: - type: Transform - pos: -66.5,-0.5 + pos: -121.5,-19.5 parent: 2 - uid: 5156 components: - type: Transform - pos: -62.5,1.5 + pos: -121.5,-20.5 parent: 2 - uid: 5157 components: - type: Transform - pos: -62.5,0.5 + pos: -122.5,-20.5 parent: 2 - uid: 5158 components: - type: Transform - pos: -61.5,0.5 + pos: -123.5,-20.5 parent: 2 - uid: 5159 components: - type: Transform - pos: -60.5,0.5 + pos: -124.5,-20.5 parent: 2 - uid: 5160 components: - type: Transform - pos: -60.5,-0.5 + pos: -125.5,-20.5 parent: 2 - uid: 5161 components: - type: Transform - pos: -60.5,-1.5 + pos: -105.5,15.5 parent: 2 - uid: 5162 components: - type: Transform - pos: -60.5,-2.5 + pos: -104.5,15.5 parent: 2 - uid: 5163 components: - type: Transform - pos: -70.5,-4.5 + pos: -79.5,14.5 parent: 2 - uid: 5164 components: - type: Transform - pos: -58.5,6.5 + pos: -17.5,10.5 parent: 2 - uid: 5165 components: - type: Transform - pos: -58.5,7.5 + pos: -18.5,10.5 parent: 2 - uid: 5166 components: - type: Transform - pos: -58.5,8.5 + pos: -80.5,14.5 parent: 2 - uid: 5167 components: - type: Transform - pos: -57.5,8.5 + pos: -81.5,14.5 parent: 2 - uid: 5168 components: - type: Transform - pos: -56.5,8.5 + pos: -82.5,14.5 parent: 2 - uid: 5169 components: - type: Transform - pos: -55.5,8.5 + pos: -83.5,14.5 parent: 2 - uid: 5170 components: - type: Transform - pos: -54.5,8.5 + pos: -84.5,14.5 parent: 2 - uid: 5171 components: - type: Transform - pos: -53.5,8.5 + pos: -85.5,13.5 parent: 2 - uid: 5172 components: - type: Transform - pos: -52.5,8.5 + pos: -85.5,12.5 parent: 2 - uid: 5173 components: - type: Transform - pos: -51.5,8.5 + pos: -85.5,11.5 parent: 2 - uid: 5174 components: - type: Transform - pos: -50.5,8.5 + pos: -85.5,10.5 parent: 2 - uid: 5175 components: - type: Transform - pos: -50.5,7.5 + pos: -85.5,9.5 parent: 2 - uid: 5176 components: - type: Transform - pos: -50.5,6.5 + pos: -85.5,8.5 parent: 2 - uid: 5177 components: - type: Transform - pos: -50.5,5.5 + pos: -85.5,7.5 parent: 2 - uid: 5178 components: - type: Transform - pos: -50.5,4.5 + pos: -84.5,7.5 parent: 2 - uid: 5179 components: - type: Transform - pos: -50.5,3.5 + pos: -83.5,7.5 parent: 2 - uid: 5180 components: - type: Transform - pos: -50.5,2.5 + pos: -82.5,7.5 parent: 2 - uid: 5181 components: - type: Transform - pos: -50.5,1.5 + pos: -81.5,7.5 parent: 2 - uid: 5182 components: - type: Transform - pos: -50.5,0.5 + pos: -81.5,6.5 parent: 2 - uid: 5183 components: - type: Transform - pos: -50.5,-0.5 + pos: -84.5,6.5 parent: 2 - uid: 5184 components: - type: Transform - pos: -50.5,-1.5 + pos: -84.5,5.5 parent: 2 - uid: 5185 components: - type: Transform - pos: -50.5,-2.5 + pos: -84.5,4.5 parent: 2 - uid: 5186 components: - type: Transform - pos: -50.5,-3.5 + pos: -84.5,3.5 parent: 2 - uid: 5187 components: - type: Transform - pos: -50.5,-4.5 + pos: -84.5,2.5 parent: 2 - uid: 5188 components: - type: Transform - pos: -50.5,-5.5 + pos: -85.5,2.5 parent: 2 - uid: 5189 components: - type: Transform - pos: -50.5,-6.5 + pos: -86.5,2.5 parent: 2 - uid: 5190 components: - type: Transform - pos: -50.5,-7.5 + pos: -87.5,2.5 parent: 2 - uid: 5191 components: - type: Transform - pos: -50.5,-8.5 + pos: -87.5,1.5 parent: 2 - uid: 5192 components: - type: Transform - pos: -50.5,-9.5 + pos: -87.5,0.5 parent: 2 - uid: 5193 components: - type: Transform - pos: -49.5,-8.5 + pos: -87.5,-0.5 parent: 2 - uid: 5194 components: - type: Transform - pos: -48.5,-8.5 + pos: -88.5,-0.5 parent: 2 - uid: 5195 components: - type: Transform - pos: -47.5,-8.5 + pos: -88.5,-1.5 parent: 2 - uid: 5196 components: - type: Transform - pos: -50.5,-10.5 + pos: -88.5,-2.5 parent: 2 - uid: 5197 components: - type: Transform - pos: -50.5,-11.5 + pos: -88.5,-3.5 parent: 2 - uid: 5198 components: - type: Transform - pos: -50.5,-12.5 + pos: -88.5,-4.5 parent: 2 - uid: 5199 components: - type: Transform - pos: -50.5,-13.5 + pos: -88.5,-5.5 parent: 2 - uid: 5200 components: - type: Transform - pos: -50.5,-14.5 + pos: -89.5,-5.5 parent: 2 - uid: 5201 components: - type: Transform - pos: -50.5,-15.5 + pos: -63.5,14.5 parent: 2 - uid: 5202 components: - type: Transform - pos: -51.5,-15.5 + pos: -64.5,14.5 parent: 2 - uid: 5203 components: - type: Transform - pos: -52.5,-15.5 + pos: -78.5,13.5 parent: 2 - uid: 5204 components: - type: Transform - pos: -53.5,-15.5 + pos: -77.5,13.5 parent: 2 - uid: 5205 components: - type: Transform - pos: -54.5,-15.5 + pos: -76.5,13.5 parent: 2 - uid: 5206 components: - type: Transform - pos: -55.5,-15.5 + pos: -75.5,13.5 parent: 2 - uid: 5207 components: - type: Transform - pos: -56.5,-15.5 + pos: -74.5,13.5 parent: 2 - uid: 5208 components: - type: Transform - pos: -57.5,-15.5 + pos: -73.5,13.5 parent: 2 - uid: 5209 components: - type: Transform - pos: -58.5,-15.5 + pos: -65.5,14.5 parent: 2 - uid: 5210 components: - type: Transform - pos: -59.5,-15.5 + pos: -73.5,14.5 parent: 2 - uid: 5211 components: - type: Transform - pos: -60.5,-15.5 + pos: -73.5,15.5 parent: 2 - uid: 5212 components: - type: Transform - pos: -61.5,-15.5 + pos: -72.5,15.5 parent: 2 - uid: 5213 components: - type: Transform - pos: -62.5,-15.5 + pos: -71.5,15.5 parent: 2 - uid: 5214 components: - type: Transform - pos: -63.5,-15.5 + pos: -71.5,14.5 parent: 2 - uid: 5215 components: - type: Transform - pos: -64.5,-15.5 + pos: -66.5,14.5 parent: 2 - uid: 5216 components: - type: Transform - pos: -65.5,-15.5 + pos: -70.5,14.5 parent: 2 - uid: 5217 components: - type: Transform - pos: -66.5,-15.5 + pos: -69.5,14.5 parent: 2 - uid: 5218 components: - type: Transform - pos: -67.5,-15.5 + pos: -69.5,15.5 parent: 2 - uid: 5219 components: - type: Transform - pos: -68.5,-15.5 + pos: -68.5,15.5 parent: 2 - uid: 5220 components: - type: Transform - pos: -69.5,-15.5 + pos: -67.5,15.5 parent: 2 - uid: 5221 components: - type: Transform - pos: -70.5,-15.5 + pos: -66.5,15.5 parent: 2 - uid: 5222 components: - type: Transform - pos: -70.5,-14.5 + pos: -63.5,13.5 parent: 2 - uid: 5223 components: - type: Transform - pos: -70.5,-13.5 + pos: -63.5,12.5 parent: 2 - uid: 5224 components: - type: Transform - pos: -71.5,-15.5 + pos: -63.5,11.5 parent: 2 - uid: 5225 components: - type: Transform - pos: -72.5,-15.5 + pos: -62.5,11.5 parent: 2 - uid: 5226 components: - type: Transform - pos: -73.5,-15.5 + pos: -61.5,11.5 parent: 2 - uid: 5227 components: - type: Transform - pos: -74.5,-15.5 + pos: -60.5,11.5 parent: 2 - uid: 5228 components: - type: Transform - pos: -75.5,-15.5 + pos: -59.5,11.5 parent: 2 - uid: 5229 components: - type: Transform - pos: -76.5,-15.5 + pos: -58.5,11.5 parent: 2 - uid: 5230 components: - type: Transform - pos: -77.5,-15.5 + pos: -55.5,18.5 parent: 2 - uid: 5231 components: - type: Transform - pos: -78.5,-15.5 + pos: -54.5,18.5 parent: 2 - uid: 5232 components: - type: Transform - pos: -79.5,-15.5 + pos: -84.5,-12.5 parent: 2 - uid: 5233 components: - type: Transform - pos: -80.5,-15.5 + pos: -84.5,-10.5 parent: 2 - uid: 5234 components: - type: Transform - pos: -81.5,-15.5 + pos: -85.5,-9.5 parent: 2 - uid: 5235 components: - type: Transform - pos: -82.5,-15.5 + pos: -84.5,-11.5 parent: 2 - uid: 5236 components: - type: Transform - pos: -83.5,-15.5 + pos: -85.5,-10.5 parent: 2 - uid: 5237 components: - type: Transform - pos: -84.5,-15.5 + pos: -84.5,-14.5 parent: 2 - uid: 5238 components: - type: Transform - pos: -86.5,-8.5 + pos: -84.5,-13.5 parent: 2 - uid: 5239 components: - type: Transform - pos: -85.5,-8.5 + pos: -60.5,-18.5 parent: 2 - uid: 5240 components: - type: Transform - pos: -28.5,-14.5 + pos: -60.5,-19.5 parent: 2 - uid: 5241 components: - type: Transform - pos: -16.5,-15.5 + pos: -59.5,-19.5 parent: 2 - uid: 5242 components: - type: Transform - pos: -15.5,-15.5 + pos: -58.5,-19.5 parent: 2 - uid: 5243 components: - type: Transform - pos: -14.5,-15.5 + pos: -57.5,-18.5 parent: 2 - uid: 5244 components: - type: Transform - pos: -13.5,-15.5 + pos: -56.5,-18.5 parent: 2 - uid: 5245 components: - type: Transform - pos: -12.5,-15.5 + pos: -56.5,-19.5 parent: 2 - uid: 5246 components: - type: Transform - pos: -36.5,17.5 + pos: -56.5,-20.5 parent: 2 - uid: 5247 components: - type: Transform - pos: -36.5,16.5 + pos: -58.5,-18.5 parent: 2 - uid: 5248 components: - type: Transform - pos: -37.5,16.5 + pos: -56.5,-21.5 parent: 2 - uid: 5249 components: - type: Transform - pos: -38.5,16.5 + pos: -56.5,-22.5 parent: 2 - uid: 5250 components: - type: Transform - pos: -39.5,16.5 + pos: -56.5,-23.5 parent: 2 - uid: 5251 components: - type: Transform - pos: -39.5,15.5 + pos: -55.5,-23.5 parent: 2 - uid: 5252 components: - type: Transform - pos: -39.5,14.5 + pos: -54.5,-23.5 parent: 2 - uid: 5253 components: - type: Transform - pos: -38.5,14.5 + pos: -57.5,-23.5 parent: 2 - uid: 5254 components: - type: Transform - pos: -37.5,14.5 + pos: -58.5,-23.5 parent: 2 - uid: 5255 components: - type: Transform - pos: -36.5,14.5 + pos: -59.5,-23.5 parent: 2 - uid: 5256 components: - type: Transform - pos: -35.5,14.5 + pos: -60.5,-23.5 parent: 2 - uid: 5257 components: - type: Transform - pos: -35.5,13.5 + pos: -61.5,-23.5 parent: 2 - uid: 5258 components: - type: Transform - pos: -35.5,12.5 + pos: -62.5,-23.5 parent: 2 - uid: 5259 components: - type: Transform - pos: -35.5,11.5 + pos: -63.5,-23.5 parent: 2 - uid: 5260 components: - type: Transform - pos: -34.5,11.5 + pos: -64.5,-23.5 parent: 2 - uid: 5261 components: - type: Transform - pos: -33.5,11.5 + pos: -65.5,-23.5 parent: 2 - uid: 5262 components: - type: Transform - pos: -32.5,11.5 + pos: -66.5,-23.5 parent: 2 - uid: 5263 components: - type: Transform - pos: -31.5,11.5 + pos: -67.5,-23.5 parent: 2 - uid: 5264 components: - type: Transform - pos: -30.5,11.5 + pos: -68.5,-23.5 parent: 2 - uid: 5265 components: - type: Transform - pos: -29.5,11.5 + pos: -68.5,-22.5 parent: 2 - uid: 5266 components: - type: Transform - pos: -28.5,11.5 + pos: -68.5,-21.5 parent: 2 - uid: 5267 components: - type: Transform - pos: -27.5,11.5 + pos: -54.5,-18.5 parent: 2 - uid: 5268 components: - type: Transform - pos: -26.5,11.5 + pos: -53.5,-18.5 parent: 2 - uid: 5269 components: - type: Transform - pos: -25.5,11.5 + pos: -52.5,-18.5 parent: 2 - uid: 5270 components: - type: Transform - pos: -24.5,11.5 + pos: -55.5,-18.5 parent: 2 - uid: 5271 components: - type: Transform - pos: -24.5,10.5 + pos: -51.5,-18.5 parent: 2 - uid: 5272 components: - type: Transform - pos: -24.5,9.5 + pos: -50.5,-18.5 parent: 2 - uid: 5273 components: - type: Transform - pos: -24.5,8.5 + pos: -49.5,-18.5 parent: 2 - uid: 5274 components: - type: Transform - pos: -24.5,7.5 + pos: -48.5,-18.5 parent: 2 - uid: 5275 components: - type: Transform - pos: -24.5,6.5 + pos: -48.5,-17.5 parent: 2 - uid: 5276 components: - type: Transform - pos: -24.5,5.5 + pos: -49.5,-19.5 parent: 2 - uid: 5277 components: - type: Transform - pos: -24.5,4.5 + pos: -49.5,-20.5 parent: 2 - uid: 5278 components: - type: Transform - pos: -24.5,3.5 + pos: -49.5,-21.5 parent: 2 - uid: 5279 components: - type: Transform - pos: -24.5,2.5 + pos: -48.5,-21.5 parent: 2 - uid: 5280 components: - type: Transform - pos: -24.5,1.5 + pos: -47.5,-21.5 parent: 2 - uid: 5281 components: - type: Transform - pos: -25.5,1.5 + pos: -46.5,-21.5 parent: 2 - uid: 5282 components: - type: Transform - pos: -25.5,0.5 + pos: -46.5,-22.5 parent: 2 - uid: 5283 components: - type: Transform - pos: -24.5,-1.5 + pos: -45.5,-22.5 parent: 2 - uid: 5284 components: - type: Transform - pos: -38.5,-15.5 + pos: -44.5,-22.5 parent: 2 - uid: 5285 components: - type: Transform - pos: -37.5,-15.5 + pos: -43.5,-22.5 parent: 2 - uid: 5286 components: - type: Transform - pos: -36.5,-15.5 + pos: -42.5,-22.5 parent: 2 - uid: 5287 components: - type: Transform - pos: -35.5,-15.5 + pos: -41.5,-22.5 parent: 2 - uid: 5288 components: - type: Transform - pos: -34.5,-15.5 + pos: -40.5,-22.5 parent: 2 - uid: 5289 components: - type: Transform - pos: -33.5,-15.5 + pos: -40.5,-21.5 parent: 2 - uid: 5290 components: - type: Transform - pos: -32.5,-15.5 + pos: -39.5,-21.5 parent: 2 - uid: 5291 components: - type: Transform - pos: -31.5,-15.5 + pos: -39.5,-20.5 parent: 2 - uid: 5292 components: - type: Transform - pos: -30.5,-15.5 + pos: -39.5,-19.5 parent: 2 - uid: 5293 components: - type: Transform - pos: -29.5,-15.5 + pos: -39.5,-18.5 parent: 2 - uid: 5294 components: - type: Transform - pos: -28.5,-15.5 + pos: -39.5,-17.5 parent: 2 - uid: 5295 components: - type: Transform - pos: -28.5,-13.5 + pos: -39.5,-16.5 parent: 2 - uid: 5296 components: - type: Transform - pos: -28.5,-12.5 + pos: -39.5,-15.5 parent: 2 - uid: 5297 components: - type: Transform - pos: -28.5,-11.5 + pos: -62.5,-12.5 parent: 2 - uid: 5298 components: - type: Transform - pos: -28.5,-10.5 + pos: -61.5,-12.5 parent: 2 - uid: 5299 components: - type: Transform - pos: -9.5,-7.5 + pos: -60.5,-12.5 parent: 2 - uid: 5300 components: - type: Transform - pos: -9.5,-6.5 + pos: -60.5,-11.5 parent: 2 - uid: 5301 components: - type: Transform - pos: -9.5,-5.5 + pos: -60.5,-10.5 parent: 2 - uid: 5302 components: - type: Transform - pos: -9.5,-4.5 + pos: -60.5,-9.5 parent: 2 - uid: 5303 components: - type: Transform - pos: -9.5,-3.5 + pos: -60.5,-8.5 parent: 2 - uid: 5304 components: - type: Transform - pos: -8.5,-3.5 + pos: -60.5,-7.5 parent: 2 - uid: 5305 components: - type: Transform - pos: -7.5,-3.5 + pos: -60.5,-6.5 parent: 2 - uid: 5306 components: - type: Transform - pos: -9.5,-7.5 + pos: -60.5,-5.5 parent: 2 - uid: 5307 components: - type: Transform - pos: -9.5,-8.5 + pos: -60.5,-4.5 parent: 2 - uid: 5308 components: - type: Transform - pos: -8.5,-8.5 + pos: -60.5,-3.5 parent: 2 - uid: 5309 components: - type: Transform - pos: -10.5,-3.5 + pos: -61.5,-3.5 parent: 2 - uid: 5310 components: - type: Transform - pos: -11.5,-3.5 + pos: -62.5,-3.5 parent: 2 - uid: 5311 components: - type: Transform - pos: -12.5,-3.5 + pos: -63.5,-3.5 parent: 2 - uid: 5312 components: - type: Transform - pos: -13.5,-3.5 + pos: -64.5,-3.5 parent: 2 - uid: 5313 components: - type: Transform - pos: -13.5,-4.5 + pos: -64.5,-2.5 parent: 2 - uid: 5314 components: - type: Transform - pos: -13.5,-5.5 + pos: -64.5,-1.5 parent: 2 - uid: 5315 components: - type: Transform - pos: -13.5,-6.5 + pos: -64.5,-0.5 parent: 2 - uid: 5316 components: - type: Transform - pos: -13.5,-7.5 + pos: -65.5,-0.5 parent: 2 - uid: 5317 components: - type: Transform - pos: -13.5,-8.5 + pos: -66.5,-0.5 parent: 2 - uid: 5318 components: - type: Transform - pos: -15.5,-8.5 + pos: -62.5,1.5 parent: 2 - uid: 5319 components: - type: Transform - pos: -16.5,-8.5 + pos: -62.5,0.5 parent: 2 - uid: 5320 components: - type: Transform - pos: -17.5,-8.5 + pos: -61.5,0.5 parent: 2 - uid: 5321 components: - type: Transform - pos: -18.5,-8.5 + pos: -60.5,0.5 parent: 2 - uid: 5322 components: - type: Transform - pos: -19.5,-8.5 + pos: -60.5,-0.5 parent: 2 - uid: 5323 components: - type: Transform - pos: -20.5,-8.5 + pos: -60.5,-1.5 parent: 2 - uid: 5324 components: - type: Transform - pos: -21.5,-8.5 + pos: -60.5,-2.5 parent: 2 - uid: 5325 components: - type: Transform - pos: -21.5,-9.5 + pos: -70.5,-4.5 parent: 2 - uid: 5326 components: - type: Transform - pos: -21.5,-10.5 + pos: -58.5,6.5 parent: 2 - uid: 5327 components: - type: Transform - pos: -21.5,-11.5 + pos: -58.5,7.5 parent: 2 - uid: 5328 components: - type: Transform - pos: -21.5,-12.5 + pos: -58.5,8.5 parent: 2 - uid: 5329 components: - type: Transform - pos: -20.5,-12.5 + pos: -57.5,8.5 parent: 2 - uid: 5330 components: - type: Transform - pos: -14.5,-3.5 + pos: -56.5,8.5 parent: 2 - uid: 5331 components: - type: Transform - pos: -15.5,-3.5 + pos: -55.5,8.5 parent: 2 - uid: 5332 components: - type: Transform - pos: -16.5,-3.5 + pos: -54.5,8.5 parent: 2 - uid: 5333 components: - type: Transform - pos: -17.5,-3.5 + pos: -53.5,8.5 parent: 2 - uid: 5334 components: - type: Transform - pos: -18.5,-3.5 + pos: -52.5,8.5 parent: 2 - uid: 5335 components: - type: Transform - pos: -18.5,-2.5 + pos: -51.5,8.5 parent: 2 - uid: 5336 components: - type: Transform - pos: -19.5,-2.5 + pos: -50.5,8.5 parent: 2 - uid: 5337 components: - type: Transform - pos: -39.5,13.5 + pos: -50.5,7.5 parent: 2 - uid: 5338 components: - type: Transform - pos: -39.5,12.5 + pos: -50.5,6.5 parent: 2 - uid: 5339 components: - type: Transform - pos: -40.5,12.5 + pos: -50.5,5.5 parent: 2 - uid: 5340 components: - type: Transform - pos: -41.5,12.5 + pos: -50.5,4.5 parent: 2 - uid: 5341 components: - type: Transform - pos: -42.5,12.5 + pos: -50.5,3.5 parent: 2 - uid: 5342 components: - type: Transform - pos: -43.5,12.5 + pos: -50.5,2.5 parent: 2 - uid: 5343 components: - type: Transform - pos: -43.5,11.5 + pos: -50.5,1.5 parent: 2 - uid: 5344 components: - type: Transform - pos: -43.5,10.5 + pos: -50.5,0.5 parent: 2 - uid: 5345 components: - type: Transform - pos: -43.5,9.5 + pos: -50.5,-0.5 parent: 2 - uid: 5346 components: - type: Transform - pos: -43.5,8.5 + pos: -50.5,-1.5 parent: 2 - uid: 5347 components: - type: Transform - pos: -42.5,8.5 + pos: -50.5,-2.5 parent: 2 - uid: 5348 components: - type: Transform - pos: -41.5,8.5 + pos: -50.5,-3.5 parent: 2 - uid: 5349 components: - type: Transform - pos: -41.5,9.5 + pos: -50.5,-4.5 parent: 2 - uid: 5350 components: - type: Transform - pos: -29.5,10.5 + pos: -50.5,-5.5 parent: 2 - uid: 5351 components: - type: Transform - pos: -29.5,9.5 + pos: -50.5,-6.5 parent: 2 - uid: 5352 components: - type: Transform - pos: -29.5,8.5 + pos: -50.5,-7.5 parent: 2 - uid: 5353 components: - type: Transform - pos: -28.5,8.5 + pos: -50.5,-8.5 parent: 2 - uid: 5354 components: - type: Transform - pos: -27.5,8.5 + pos: -50.5,-9.5 parent: 2 - uid: 5355 components: - type: Transform - pos: -26.5,8.5 + pos: -49.5,-8.5 parent: 2 - uid: 5356 components: - type: Transform - pos: -56.5,1.5 + pos: -48.5,-8.5 parent: 2 - uid: 5357 components: - type: Transform - pos: -59.5,-8.5 + pos: -47.5,-8.5 parent: 2 - uid: 5358 components: - type: Transform - pos: -59.5,-3.5 + pos: -50.5,-10.5 parent: 2 - uid: 5359 components: - type: Transform - pos: -58.5,-3.5 + pos: -50.5,-11.5 parent: 2 - uid: 5360 components: - type: Transform - pos: -57.5,-3.5 + pos: -50.5,-12.5 parent: 2 - uid: 5361 components: - type: Transform - pos: -57.5,-2.5 + pos: -50.5,-13.5 parent: 2 - uid: 5362 components: - type: Transform - pos: -57.5,-1.5 + pos: -50.5,-14.5 parent: 2 - uid: 5363 components: - type: Transform - pos: -57.5,-0.5 + pos: -50.5,-15.5 parent: 2 - uid: 5364 components: - type: Transform - pos: -57.5,0.5 + pos: -51.5,-15.5 parent: 2 - uid: 5365 components: - type: Transform - pos: -57.5,1.5 + pos: -52.5,-15.5 parent: 2 - uid: 5366 components: - type: Transform - pos: -55.5,1.5 + pos: -53.5,-15.5 parent: 2 - uid: 5367 components: - type: Transform - pos: -54.5,1.5 + pos: -54.5,-15.5 parent: 2 - uid: 5368 components: - type: Transform - pos: -54.5,0.5 + pos: -55.5,-15.5 parent: 2 - uid: 5369 components: - type: Transform - pos: -54.5,-0.5 + pos: -56.5,-15.5 parent: 2 - uid: 5370 components: - type: Transform - pos: -54.5,-1.5 + pos: -57.5,-15.5 parent: 2 - uid: 5371 components: - type: Transform - pos: -54.5,-2.5 + pos: -58.5,-15.5 parent: 2 - uid: 5372 components: - type: Transform - pos: -54.5,-3.5 + pos: -59.5,-15.5 parent: 2 - uid: 5373 components: - type: Transform - pos: -53.5,-3.5 + pos: -60.5,-15.5 parent: 2 - uid: 5374 components: - type: Transform - pos: -52.5,-3.5 + pos: -61.5,-15.5 parent: 2 - uid: 5375 components: - type: Transform - pos: -8.5,-2.5 + pos: -62.5,-15.5 parent: 2 - uid: 5376 components: - type: Transform - pos: -8.5,-1.5 + pos: -63.5,-15.5 parent: 2 - uid: 5377 components: - type: Transform - pos: -8.5,-0.5 + pos: -64.5,-15.5 parent: 2 - uid: 5378 components: - type: Transform - pos: -8.5,0.5 + pos: -65.5,-15.5 parent: 2 - uid: 5379 components: - type: Transform - pos: -8.5,1.5 + pos: -66.5,-15.5 parent: 2 - uid: 5380 components: - type: Transform - pos: -8.5,2.5 + pos: -67.5,-15.5 parent: 2 - uid: 5381 components: - type: Transform - pos: -8.5,3.5 + pos: -68.5,-15.5 parent: 2 - uid: 5382 components: - type: Transform - pos: -8.5,4.5 + pos: -69.5,-15.5 parent: 2 - uid: 5383 components: - type: Transform - pos: -8.5,5.5 + pos: -70.5,-15.5 parent: 2 - uid: 5384 components: - type: Transform - pos: 5.5,-3.5 + pos: -70.5,-14.5 parent: 2 - uid: 5385 components: - type: Transform - pos: 6.5,-3.5 + pos: -70.5,-13.5 parent: 2 - uid: 5386 components: - type: Transform - pos: 7.5,-3.5 + pos: -71.5,-15.5 parent: 2 - uid: 5387 components: - type: Transform - pos: -6.5,-3.5 + pos: -72.5,-15.5 parent: 2 - uid: 5388 components: - type: Transform - pos: -5.5,-3.5 + pos: -73.5,-15.5 parent: 2 - uid: 5389 components: - type: Transform - pos: -4.5,-3.5 + pos: -74.5,-15.5 parent: 2 - uid: 5390 components: - type: Transform - pos: -3.5,-3.5 + pos: -75.5,-15.5 parent: 2 - uid: 5391 components: - type: Transform - pos: -2.5,-3.5 + pos: -76.5,-15.5 parent: 2 - uid: 5392 components: - type: Transform - pos: -1.5,-3.5 + pos: -77.5,-15.5 parent: 2 - uid: 5393 components: - type: Transform - pos: -0.5,-3.5 + pos: -78.5,-15.5 parent: 2 - uid: 5394 components: - type: Transform - pos: 0.5,-3.5 + pos: -79.5,-15.5 parent: 2 - uid: 5395 components: - type: Transform - pos: 1.5,-3.5 + pos: -80.5,-15.5 parent: 2 - uid: 5396 components: - type: Transform - pos: 2.5,-3.5 + pos: -81.5,-15.5 parent: 2 - uid: 5397 components: - type: Transform - pos: 3.5,-3.5 + pos: -82.5,-15.5 parent: 2 - uid: 5398 components: - type: Transform - pos: 4.5,-3.5 + pos: -83.5,-15.5 parent: 2 - uid: 5399 components: - type: Transform - pos: -4.5,-2.5 + pos: -84.5,-15.5 parent: 2 - uid: 5400 components: - type: Transform - pos: -4.5,-1.5 + pos: -86.5,-8.5 parent: 2 - uid: 5401 components: - type: Transform - pos: -127.5,-2.5 + pos: -85.5,-8.5 parent: 2 - uid: 5402 components: - type: Transform - pos: -127.5,-1.5 + pos: -28.5,-14.5 parent: 2 - uid: 5403 components: - type: Transform - pos: -127.5,-0.5 + pos: -16.5,-15.5 parent: 2 - uid: 5404 components: - type: Transform - pos: -127.5,0.5 + pos: -15.5,-15.5 parent: 2 - uid: 5405 components: - type: Transform - pos: -127.5,1.5 + pos: -14.5,-15.5 parent: 2 - uid: 5406 components: - type: Transform - pos: -127.5,2.5 + pos: -13.5,-15.5 parent: 2 - uid: 5407 components: - type: Transform - pos: -127.5,3.5 + pos: -12.5,-15.5 parent: 2 - uid: 5408 components: - type: Transform - pos: -127.5,4.5 + pos: -36.5,17.5 parent: 2 - uid: 5409 components: - type: Transform - pos: -127.5,5.5 + pos: -36.5,16.5 parent: 2 - uid: 5410 components: - type: Transform - pos: -127.5,6.5 + pos: -37.5,16.5 parent: 2 - uid: 5411 components: - type: Transform - pos: -126.5,6.5 + pos: -38.5,16.5 parent: 2 - uid: 5412 components: - type: Transform - pos: -125.5,6.5 + pos: -39.5,16.5 parent: 2 - uid: 5413 components: - type: Transform - pos: -124.5,6.5 + pos: -39.5,15.5 parent: 2 - uid: 5414 components: - type: Transform - pos: -123.5,6.5 + pos: -39.5,14.5 parent: 2 - uid: 5415 components: - type: Transform - pos: -123.5,7.5 + pos: -38.5,14.5 parent: 2 - uid: 5416 components: - type: Transform - pos: -123.5,8.5 + pos: -37.5,14.5 parent: 2 - uid: 5417 components: - type: Transform - pos: -123.5,9.5 + pos: -36.5,14.5 parent: 2 - uid: 5418 components: - type: Transform - pos: -122.5,9.5 + pos: -35.5,14.5 parent: 2 - uid: 5419 components: - type: Transform - pos: -121.5,9.5 + pos: -35.5,13.5 parent: 2 - uid: 5420 components: - type: Transform - pos: -120.5,9.5 + pos: -35.5,12.5 parent: 2 - uid: 5421 components: - type: Transform - pos: -119.5,9.5 + pos: -35.5,11.5 parent: 2 - uid: 5422 components: - type: Transform - pos: -118.5,9.5 + pos: -34.5,11.5 parent: 2 - uid: 5423 components: - type: Transform - pos: -117.5,9.5 + pos: -33.5,11.5 parent: 2 - uid: 5424 components: - type: Transform - pos: -116.5,9.5 + pos: -32.5,11.5 parent: 2 - uid: 5425 components: - type: Transform - pos: -11.5,-15.5 + pos: -31.5,11.5 parent: 2 - uid: 5426 components: - type: Transform - pos: -11.5,-14.5 + pos: -30.5,11.5 parent: 2 - uid: 5427 components: - type: Transform - pos: -10.5,-14.5 + pos: -29.5,11.5 parent: 2 - uid: 5428 components: - type: Transform - pos: -11.5,-16.5 + pos: -28.5,11.5 parent: 2 - uid: 5429 components: - type: Transform - pos: -11.5,-17.5 + pos: -27.5,11.5 parent: 2 - uid: 5430 components: - type: Transform - pos: -10.5,-17.5 + pos: -26.5,11.5 parent: 2 - uid: 5431 components: - type: Transform - pos: -16.5,-16.5 + pos: -25.5,11.5 parent: 2 - uid: 5432 components: - type: Transform - pos: -17.5,-16.5 + pos: -24.5,11.5 parent: 2 - uid: 5433 components: - type: Transform - pos: -192.5,5.5 + pos: -24.5,10.5 parent: 2 - uid: 5434 components: - type: Transform - pos: -134.5,-2.5 + pos: -24.5,9.5 parent: 2 - uid: 5435 components: - type: Transform - pos: -134.5,-1.5 + pos: -24.5,8.5 parent: 2 - uid: 5436 components: - type: Transform - pos: -134.5,-0.5 + pos: -24.5,7.5 parent: 2 - uid: 5437 components: - type: Transform - pos: -128.5,-13.5 + pos: -24.5,6.5 parent: 2 - uid: 5438 components: - type: Transform - pos: -127.5,-13.5 + pos: -24.5,5.5 parent: 2 - uid: 5439 components: - type: Transform - pos: -57.5,11.5 + pos: -24.5,4.5 parent: 2 - uid: 5440 components: - type: Transform - pos: -57.5,12.5 + pos: -24.5,3.5 parent: 2 - uid: 5441 components: - type: Transform - pos: -57.5,13.5 + pos: -24.5,2.5 parent: 2 - uid: 5442 components: - type: Transform - pos: -57.5,14.5 + pos: -24.5,1.5 parent: 2 - uid: 5443 components: - type: Transform - pos: -57.5,15.5 + pos: -25.5,1.5 parent: 2 - uid: 5444 components: - type: Transform - pos: -56.5,15.5 + pos: -25.5,0.5 parent: 2 - uid: 5445 components: - type: Transform - pos: -55.5,15.5 + pos: -24.5,-1.5 parent: 2 - uid: 5446 components: - type: Transform - pos: -55.5,16.5 + pos: -38.5,-15.5 parent: 2 - uid: 5447 components: - type: Transform - pos: -55.5,17.5 + pos: -37.5,-15.5 parent: 2 - uid: 5448 components: - type: Transform - pos: -195.5,9.5 + pos: -36.5,-15.5 parent: 2 - uid: 5449 components: - type: Transform - pos: -195.5,8.5 + pos: -35.5,-15.5 parent: 2 - uid: 5450 components: - type: Transform - pos: -195.5,10.5 + pos: -34.5,-15.5 parent: 2 - uid: 5451 components: - type: Transform - pos: -120.5,-20.5 + pos: -33.5,-15.5 parent: 2 - uid: 5452 components: - type: Transform - pos: -119.5,-20.5 + pos: -32.5,-15.5 parent: 2 - uid: 5453 components: - type: Transform - pos: -118.5,-20.5 + pos: -31.5,-15.5 parent: 2 - uid: 5454 components: - type: Transform - pos: -117.5,-20.5 + pos: -30.5,-15.5 parent: 2 - uid: 5455 components: - type: Transform - pos: -116.5,-20.5 + pos: -29.5,-15.5 parent: 2 - uid: 5456 components: - type: Transform - pos: -115.5,-20.5 + pos: -28.5,-15.5 parent: 2 - uid: 5457 components: - type: Transform - pos: -114.5,-20.5 + pos: -28.5,-13.5 parent: 2 - uid: 5458 components: - type: Transform - pos: -114.5,-21.5 + pos: -28.5,-12.5 parent: 2 - uid: 5459 components: - type: Transform - pos: -113.5,-21.5 + pos: -28.5,-11.5 parent: 2 - uid: 5460 components: - type: Transform - pos: -113.5,-21.5 + pos: -28.5,-10.5 parent: 2 - uid: 5461 components: - type: Transform - pos: -112.5,-21.5 + pos: -9.5,-7.5 parent: 2 - uid: 5462 components: - type: Transform - pos: -111.5,-21.5 + pos: -9.5,-6.5 parent: 2 - uid: 5463 components: - type: Transform - pos: -110.5,-21.5 + pos: -9.5,-5.5 parent: 2 - uid: 5464 components: - type: Transform - pos: -109.5,-21.5 + pos: -9.5,-4.5 parent: 2 - uid: 5465 components: - type: Transform - pos: -110.5,-20.5 + pos: -9.5,-3.5 parent: 2 - uid: 5466 components: - type: Transform - pos: -115.5,-21.5 + pos: -8.5,-3.5 parent: 2 - uid: 5467 components: - type: Transform - pos: -109.5,-20.5 + pos: -7.5,-3.5 parent: 2 - uid: 5468 components: - type: Transform - pos: -109.5,-19.5 + pos: -9.5,-7.5 parent: 2 - uid: 5469 components: - type: Transform - pos: -109.5,-18.5 + pos: -9.5,-8.5 parent: 2 - uid: 5470 components: - type: Transform - pos: -110.5,-18.5 + pos: -8.5,-8.5 parent: 2 - uid: 5471 components: - type: Transform - pos: -108.5,-18.5 + pos: -10.5,-3.5 parent: 2 - uid: 5472 components: - type: Transform - pos: -107.5,-18.5 + pos: -11.5,-3.5 parent: 2 - uid: 5473 components: - type: Transform - pos: -106.5,-18.5 + pos: -12.5,-3.5 parent: 2 - uid: 5474 components: - type: Transform - pos: -105.5,-18.5 + pos: -13.5,-3.5 parent: 2 - uid: 5475 components: - type: Transform - pos: -105.5,-19.5 + pos: -13.5,-4.5 parent: 2 - uid: 5476 components: - type: Transform - pos: -105.5,-20.5 + pos: -13.5,-5.5 parent: 2 - uid: 5477 components: - type: Transform - pos: -105.5,-21.5 + pos: -13.5,-6.5 parent: 2 - uid: 5478 components: - type: Transform - pos: -104.5,-21.5 + pos: -13.5,-7.5 parent: 2 - uid: 5479 components: - type: Transform - pos: -103.5,-21.5 + pos: -13.5,-8.5 parent: 2 - uid: 5480 components: - type: Transform - pos: -102.5,-21.5 + pos: -15.5,-8.5 parent: 2 - uid: 5481 components: - type: Transform - pos: -102.5,-20.5 + pos: -16.5,-8.5 parent: 2 - uid: 5482 components: - type: Transform - pos: -101.5,-20.5 + pos: -17.5,-8.5 parent: 2 - uid: 5483 components: - type: Transform - pos: -100.5,-20.5 + pos: -18.5,-8.5 parent: 2 - uid: 5484 components: - type: Transform - pos: -99.5,-20.5 + pos: -19.5,-8.5 parent: 2 - uid: 5485 components: - type: Transform - pos: -98.5,-20.5 + pos: -20.5,-8.5 parent: 2 - uid: 5486 components: - type: Transform - pos: -98.5,-19.5 + pos: -21.5,-8.5 parent: 2 - uid: 5487 components: - type: Transform - pos: -97.5,-19.5 + pos: -21.5,-9.5 parent: 2 - uid: 5488 components: - type: Transform - pos: -97.5,-18.5 + pos: -21.5,-10.5 parent: 2 - uid: 5489 components: - type: Transform - pos: -96.5,-18.5 + pos: -21.5,-11.5 parent: 2 - uid: 5490 components: - type: Transform - pos: -95.5,-18.5 + pos: -21.5,-12.5 parent: 2 - uid: 5491 components: - type: Transform - pos: -95.5,-17.5 + pos: -20.5,-12.5 parent: 2 - uid: 5492 components: - type: Transform - pos: -95.5,-16.5 + pos: -14.5,-3.5 parent: 2 - uid: 5493 components: - type: Transform - pos: -96.5,-13.5 + pos: -15.5,-3.5 parent: 2 - uid: 5494 components: - type: Transform - pos: -94.5,-16.5 + pos: -16.5,-3.5 parent: 2 - uid: 5495 components: - type: Transform - pos: -93.5,-16.5 + pos: -17.5,-3.5 parent: 2 - uid: 5496 components: - type: Transform - pos: -92.5,-16.5 + pos: -18.5,-3.5 parent: 2 - uid: 5497 components: - type: Transform - pos: -93.5,-15.5 + pos: -18.5,-2.5 parent: 2 - uid: 5498 components: - type: Transform - pos: -95.5,-15.5 + pos: -19.5,-2.5 parent: 2 - uid: 5499 components: - type: Transform - pos: -95.5,-14.5 + pos: -39.5,13.5 parent: 2 - uid: 5500 components: - type: Transform - pos: -96.5,-14.5 + pos: -39.5,12.5 parent: 2 - uid: 5501 components: - type: Transform - pos: -96.5,-12.5 + pos: -40.5,12.5 parent: 2 - uid: 5502 components: - type: Transform - pos: -96.5,-11.5 + pos: -41.5,12.5 parent: 2 - uid: 5503 components: - type: Transform - pos: -96.5,-10.5 + pos: -42.5,12.5 parent: 2 - uid: 5504 components: - type: Transform - pos: -96.5,-9.5 + pos: -43.5,12.5 parent: 2 - uid: 5505 components: - type: Transform - pos: -195.5,14.5 + pos: -43.5,11.5 parent: 2 - uid: 5506 components: - type: Transform - pos: -195.5,16.5 + pos: -43.5,10.5 parent: 2 - uid: 5507 components: - type: Transform - pos: -86.5,11.5 + pos: -43.5,9.5 parent: 2 - uid: 5508 components: - type: Transform - pos: -87.5,11.5 + pos: -43.5,8.5 parent: 2 - uid: 5509 components: - type: Transform - pos: -88.5,11.5 + pos: -42.5,8.5 parent: 2 - uid: 5510 components: - type: Transform - pos: -88.5,12.5 + pos: -41.5,8.5 parent: 2 - uid: 5511 components: - type: Transform - pos: -88.5,13.5 + pos: -41.5,9.5 parent: 2 - uid: 5512 components: - type: Transform - pos: -85.5,14.5 + pos: -29.5,10.5 parent: 2 - uid: 5513 components: - type: Transform - pos: -86.5,14.5 + pos: -29.5,9.5 parent: 2 - uid: 5514 components: - type: Transform - pos: -78.5,-13.5 + pos: -29.5,8.5 parent: 2 - uid: 5515 components: - type: Transform - pos: -76.5,-14.5 + pos: -28.5,8.5 parent: 2 - uid: 5516 components: - type: Transform - pos: -75.5,-13.5 + pos: -27.5,8.5 parent: 2 - uid: 5517 components: - type: Transform - pos: -77.5,-13.5 + pos: -26.5,8.5 parent: 2 - uid: 5518 components: - type: Transform - pos: -83.5,1.5 + pos: -56.5,1.5 parent: 2 - uid: 5519 components: - type: Transform - pos: -79.5,-6.5 + pos: -59.5,-8.5 parent: 2 - uid: 5520 components: - type: Transform - pos: -77.5,3.5 + pos: -59.5,-3.5 parent: 2 - uid: 5521 components: - type: Transform - pos: -77.5,2.5 + pos: -58.5,-3.5 parent: 2 - uid: 5522 components: - type: Transform - pos: -77.5,1.5 + pos: -57.5,-3.5 parent: 2 - uid: 5523 components: - type: Transform - pos: -80.5,7.5 + pos: -57.5,-2.5 parent: 2 - uid: 5524 components: - type: Transform - pos: -79.5,7.5 + pos: -57.5,-1.5 parent: 2 - uid: 5525 components: - type: Transform - pos: -78.5,7.5 + pos: -57.5,-0.5 parent: 2 - uid: 5526 components: - type: Transform - pos: -84.5,0.5 + pos: -57.5,0.5 parent: 2 - uid: 5527 components: - type: Transform - pos: -78.5,6.5 + pos: -57.5,1.5 parent: 2 - uid: 5528 components: - type: Transform - pos: -77.5,6.5 + pos: -55.5,1.5 parent: 2 - uid: 5529 components: - type: Transform - pos: -76.5,6.5 + pos: -54.5,1.5 parent: 2 - uid: 5530 components: - type: Transform - pos: -75.5,6.5 + pos: -54.5,0.5 parent: 2 - uid: 5531 components: - type: Transform - pos: -74.5,6.5 + pos: -54.5,-0.5 parent: 2 - uid: 5532 components: - type: Transform - pos: -84.5,-0.5 + pos: -54.5,-1.5 parent: 2 - uid: 5533 components: - type: Transform - pos: -14.5,-8.5 + pos: -54.5,-2.5 parent: 2 - uid: 5534 components: - type: Transform - pos: -126.5,-14.5 + pos: -54.5,-3.5 parent: 2 - uid: 5535 components: - type: Transform - pos: -96.5,-8.5 + pos: -53.5,-3.5 parent: 2 - uid: 5536 components: - type: Transform - pos: -62.5,-14.5 + pos: -52.5,-3.5 parent: 2 - uid: 5537 components: - type: Transform - pos: -62.5,-13.5 + pos: -8.5,-2.5 parent: 2 - uid: 5538 components: - type: Transform - pos: -58.5,1.5 + pos: -8.5,-1.5 parent: 2 - uid: 5539 components: - type: Transform - pos: -58.5,2.5 + pos: -8.5,-0.5 parent: 2 - uid: 5540 components: - type: Transform - pos: -58.5,3.5 + pos: -8.5,0.5 parent: 2 - uid: 5541 components: - type: Transform - pos: -58.5,4.5 + pos: -8.5,1.5 parent: 2 - uid: 5542 components: - type: Transform - pos: -58.5,5.5 + pos: -8.5,2.5 parent: 2 - uid: 5543 components: - type: Transform - pos: -58.5,6.5 + pos: -8.5,3.5 parent: 2 - uid: 5544 components: - type: Transform - pos: -25.5,-0.5 + pos: -8.5,4.5 parent: 2 - uid: 5545 components: - type: Transform - pos: -25.5,-1.5 + pos: -8.5,5.5 parent: 2 - - uid: 17066 - components: - - type: Transform - pos: 13.5,-1.5 - parent: 17021 - - uid: 17067 - components: - - type: Transform - pos: 13.5,-0.5 - parent: 17021 -- proto: CableMVStack - entities: - uid: 5546 components: - type: Transform - pos: -91.63844,5.3808255 + pos: 5.5,-3.5 parent: 2 - uid: 5547 components: - type: Transform - pos: -91.73226,5.5839505 + pos: 6.5,-3.5 parent: 2 -- proto: CableTerminal - entities: - uid: 5548 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-10.5 + pos: 7.5,-3.5 parent: 2 - uid: 5549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-9.5 + pos: -6.5,-3.5 parent: 2 - uid: 5550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-11.5 + pos: -5.5,-3.5 parent: 2 - uid: 5551 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,9.5 + pos: -4.5,-3.5 parent: 2 - uid: 5552 components: - type: Transform - pos: -68.5,-4.5 + pos: -3.5,-3.5 parent: 2 - uid: 5553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -192.5,15.5 + pos: -2.5,-3.5 parent: 2 - uid: 5554 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-34.5 + pos: -1.5,-3.5 parent: 2 - uid: 5555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-14.5 + pos: -0.5,-3.5 parent: 2 - uid: 5556 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,10.5 + pos: 0.5,-3.5 parent: 2 - uid: 5557 components: - type: Transform - pos: -10.5,-6.5 + pos: 1.5,-3.5 parent: 2 - uid: 5558 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,-24.5 + pos: 2.5,-3.5 parent: 2 - uid: 5559 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-25.5 + pos: 3.5,-3.5 parent: 2 - uid: 5560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -183.5,-10.5 + pos: 4.5,-3.5 parent: 2 - uid: 5561 components: - type: Transform - pos: -124.5,11.5 + pos: -4.5,-2.5 parent: 2 - uid: 5562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -173.5,-6.5 + pos: -4.5,-1.5 parent: 2 - - uid: 17068 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-0.5 - parent: 17021 -- proto: CandleBlackSmallInfinite - entities: - uid: 5563 components: - type: Transform - pos: -33.139362,13.788162 + pos: -127.5,-2.5 parent: 2 - uid: 5564 components: - type: Transform - pos: -33.84868,13.766641 + pos: -127.5,-1.5 parent: 2 - uid: 5565 components: - type: Transform - pos: -33.84868,13.2071 + pos: -127.5,-0.5 parent: 2 - uid: 5566 components: - type: Transform - pos: -33.117867,13.228621 + pos: -127.5,0.5 + parent: 2 + - uid: 5567 + components: + - type: Transform + pos: -127.5,1.5 parent: 2 -- proto: CannabisSeeds - entities: - uid: 5568 components: - type: Transform - parent: 5567 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Carpet - entities: + pos: -127.5,2.5 + parent: 2 - uid: 5569 components: - type: Transform - pos: -118.5,-0.5 + pos: -127.5,3.5 parent: 2 - uid: 5570 components: - type: Transform - pos: -118.5,-2.5 + pos: -127.5,4.5 parent: 2 - uid: 5571 components: - type: Transform - pos: -117.5,-2.5 + pos: -127.5,5.5 parent: 2 - uid: 5572 components: - type: Transform - pos: -118.5,0.5 + pos: -127.5,6.5 parent: 2 - uid: 5573 components: - type: Transform - pos: -119.5,-0.5 + pos: -126.5,6.5 parent: 2 - uid: 5574 components: - type: Transform - pos: -119.5,-1.5 + pos: -125.5,6.5 parent: 2 - uid: 5575 components: - type: Transform - pos: -118.5,-1.5 + pos: -124.5,6.5 parent: 2 - uid: 5576 components: - type: Transform - pos: -154.5,15.5 + pos: -123.5,6.5 parent: 2 - uid: 5577 components: - type: Transform - pos: -156.5,14.5 + pos: -123.5,7.5 parent: 2 - uid: 5578 components: - type: Transform - pos: -155.5,14.5 + pos: -123.5,8.5 parent: 2 - uid: 5579 components: - type: Transform - pos: -154.5,14.5 + pos: -123.5,9.5 parent: 2 - uid: 5580 components: - type: Transform - pos: -154.5,16.5 + pos: -122.5,9.5 parent: 2 - uid: 5581 components: - type: Transform - pos: -155.5,15.5 + pos: -121.5,9.5 parent: 2 - uid: 5582 components: - type: Transform - pos: -156.5,15.5 + pos: -120.5,9.5 parent: 2 - uid: 5583 components: - type: Transform - pos: -156.5,16.5 + pos: -119.5,9.5 parent: 2 - uid: 5584 components: - type: Transform - pos: -155.5,16.5 + pos: -118.5,9.5 parent: 2 - uid: 5585 components: - type: Transform - pos: -159.5,15.5 + pos: -117.5,9.5 parent: 2 - uid: 5586 components: - type: Transform - pos: -160.5,15.5 + pos: -116.5,9.5 parent: 2 - uid: 5587 components: - type: Transform - pos: -164.5,11.5 + pos: -11.5,-15.5 parent: 2 - uid: 5588 components: - type: Transform - pos: -163.5,12.5 + pos: -11.5,-14.5 parent: 2 - uid: 5589 components: - type: Transform - pos: -163.5,11.5 + pos: -10.5,-14.5 parent: 2 - uid: 5590 components: - type: Transform - pos: -165.5,11.5 + pos: -11.5,-16.5 parent: 2 - uid: 5591 components: - type: Transform - pos: -165.5,12.5 + pos: -11.5,-17.5 parent: 2 - uid: 5592 components: - type: Transform - pos: -164.5,12.5 + pos: -10.5,-17.5 parent: 2 - uid: 5593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -153.5,14.5 + pos: -16.5,-16.5 parent: 2 - uid: 5594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -156.5,17.5 + pos: -17.5,-16.5 parent: 2 - uid: 5595 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -160.5,16.5 + pos: -134.5,-2.5 parent: 2 - uid: 5596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -153.5,16.5 + pos: -134.5,-1.5 parent: 2 - uid: 5597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -160.5,14.5 + pos: -134.5,-0.5 parent: 2 - uid: 5598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -154.5,17.5 + pos: -128.5,-13.5 parent: 2 - uid: 5599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -158.5,16.5 + pos: -127.5,-13.5 parent: 2 - uid: 5600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -158.5,15.5 + pos: -57.5,11.5 parent: 2 - uid: 5601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -158.5,14.5 + pos: -57.5,12.5 parent: 2 - uid: 5602 components: - type: Transform - pos: -117.5,-1.5 + pos: -57.5,13.5 parent: 2 - uid: 5603 components: - type: Transform - rot: 3.141592653589793 rad - pos: -117.5,-0.5 + pos: -57.5,14.5 parent: 2 - uid: 5604 components: - type: Transform - pos: -119.5,0.5 + pos: -57.5,15.5 parent: 2 -- proto: CarpetBlack - entities: - uid: 5605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,22.5 + pos: -56.5,15.5 parent: 2 - uid: 5606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,14.5 + pos: -55.5,15.5 parent: 2 - uid: 5607 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,13.5 + pos: -55.5,16.5 parent: 2 - uid: 5608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,12.5 + pos: -55.5,17.5 parent: 2 - uid: 5609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,13.5 + pos: -120.5,-20.5 parent: 2 - uid: 5610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,14.5 + pos: -119.5,-20.5 parent: 2 - uid: 5611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,12.5 + pos: -118.5,-20.5 parent: 2 -- proto: CarpetBlue - entities: - uid: 5612 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-9.5 + pos: -117.5,-20.5 parent: 2 - uid: 5613 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-9.5 + pos: -116.5,-20.5 parent: 2 - uid: 5614 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-10.5 + pos: -115.5,-20.5 parent: 2 - uid: 5615 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-10.5 + pos: -114.5,-20.5 parent: 2 - uid: 5616 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-10.5 + pos: -114.5,-21.5 parent: 2 - uid: 5617 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-9.5 + pos: -113.5,-21.5 parent: 2 - uid: 5618 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-9.5 + pos: -113.5,-21.5 parent: 2 - uid: 5619 components: - type: Transform - pos: -9.5,-11.5 + pos: -112.5,-21.5 parent: 2 - uid: 5620 components: - type: Transform - pos: -8.5,-11.5 + pos: -111.5,-21.5 parent: 2 - uid: 5621 components: - type: Transform - pos: -116.5,-6.5 + pos: -110.5,-21.5 parent: 2 - uid: 5622 components: - type: Transform - pos: -117.5,-6.5 + pos: -109.5,-21.5 parent: 2 - uid: 5623 components: - type: Transform - pos: -116.5,-5.5 + pos: -110.5,-20.5 parent: 2 - uid: 5624 components: - type: Transform - pos: -117.5,-5.5 + pos: -115.5,-21.5 parent: 2 - uid: 5625 components: - type: Transform - pos: -118.5,-5.5 + pos: -109.5,-20.5 parent: 2 - uid: 5626 components: - type: Transform - pos: -118.5,-4.5 + pos: -109.5,-19.5 parent: 2 - uid: 5627 components: - type: Transform - pos: -117.5,-4.5 + pos: -109.5,-18.5 parent: 2 -- proto: CarpetChapel - entities: - uid: 5628 components: - type: Transform - pos: -40.5,1.5 + pos: -110.5,-18.5 parent: 2 - uid: 5629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,1.5 + pos: -108.5,-18.5 parent: 2 - uid: 5630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,1.5 + pos: -107.5,-18.5 parent: 2 - uid: 5631 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,2.5 + pos: -106.5,-18.5 parent: 2 - uid: 5632 components: - type: Transform - pos: -33.5,1.5 + pos: -105.5,-18.5 parent: 2 - uid: 5633 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,5.5 + pos: -105.5,-19.5 parent: 2 - uid: 5634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,4.5 + pos: -105.5,-20.5 parent: 2 - uid: 5635 components: - type: Transform - pos: -33.5,4.5 + pos: -105.5,-21.5 parent: 2 - uid: 5636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,5.5 + pos: -104.5,-21.5 parent: 2 - uid: 5637 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,2.5 + pos: -103.5,-21.5 parent: 2 - uid: 5638 components: - type: Transform - pos: -36.5,1.5 + pos: -102.5,-21.5 parent: 2 - uid: 5639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,2.5 + pos: -102.5,-20.5 parent: 2 - uid: 5640 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,2.5 + pos: -101.5,-20.5 parent: 2 - uid: 5641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,4.5 + pos: -100.5,-20.5 parent: 2 - uid: 5642 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,5.5 + pos: -99.5,-20.5 parent: 2 - uid: 5643 components: - type: Transform - pos: -36.5,4.5 + pos: -98.5,-20.5 parent: 2 - uid: 5644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,5.5 + pos: -98.5,-19.5 parent: 2 - uid: 5645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,1.5 + pos: -97.5,-19.5 parent: 2 - uid: 5646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,2.5 + pos: -97.5,-18.5 parent: 2 - uid: 5647 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,2.5 + pos: -96.5,-18.5 parent: 2 - uid: 5648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,4.5 + pos: -95.5,-18.5 parent: 2 - uid: 5649 components: - type: Transform - pos: -39.5,4.5 + pos: -95.5,-17.5 parent: 2 - uid: 5650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,5.5 + pos: -95.5,-16.5 parent: 2 - uid: 5651 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,5.5 + pos: -96.5,-13.5 parent: 2 - uid: 5652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,5.5 + pos: -94.5,-16.5 parent: 2 - uid: 5653 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,1.5 + pos: -93.5,-16.5 parent: 2 - uid: 5654 components: - type: Transform - pos: -41.5,4.5 + pos: -92.5,-16.5 parent: 2 -- proto: CarpetGreen - entities: - uid: 5655 components: - type: Transform - pos: -39.5,2.5 + pos: -93.5,-15.5 parent: 2 - uid: 5656 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,2.5 + pos: -95.5,-15.5 parent: 2 - uid: 5657 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,4.5 + pos: -95.5,-14.5 parent: 2 - uid: 5658 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,5.5 + pos: -96.5,-14.5 parent: 2 - uid: 5659 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,3.5 + pos: -96.5,-12.5 parent: 2 - uid: 5660 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,3.5 + pos: -96.5,-11.5 parent: 2 - uid: 5661 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,3.5 + pos: -96.5,-10.5 parent: 2 - uid: 5662 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,3.5 + pos: -96.5,-9.5 parent: 2 - uid: 5663 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,3.5 + pos: -86.5,11.5 parent: 2 - uid: 5664 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,3.5 + pos: -87.5,11.5 parent: 2 - uid: 5665 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,3.5 + pos: -88.5,11.5 parent: 2 - uid: 5666 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,3.5 + pos: -88.5,12.5 parent: 2 - uid: 5667 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,-0.5 + pos: -88.5,13.5 parent: 2 - uid: 5668 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,-0.5 + pos: -85.5,14.5 parent: 2 - uid: 5669 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,-0.5 + pos: -86.5,14.5 parent: 2 - uid: 5670 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,0.5 + pos: -78.5,-13.5 parent: 2 - uid: 5671 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,0.5 + pos: -76.5,-14.5 parent: 2 - uid: 5672 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,-1.5 + pos: -75.5,-13.5 parent: 2 - uid: 5673 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,-1.5 + pos: -77.5,-13.5 parent: 2 - uid: 5674 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,-1.5 + pos: -83.5,1.5 parent: 2 - uid: 5675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,9.5 + pos: -81.5,-2.5 parent: 2 - uid: 5676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-16.5 + pos: -81.5,-0.5 parent: 2 - uid: 5677 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-17.5 + pos: -80.5,7.5 parent: 2 - uid: 5678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-16.5 + pos: -79.5,7.5 parent: 2 - uid: 5679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-17.5 + pos: -78.5,7.5 parent: 2 - uid: 5680 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-16.5 + pos: -84.5,0.5 parent: 2 - uid: 5681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-17.5 + pos: -78.5,6.5 parent: 2 - uid: 5682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-16.5 + pos: -77.5,6.5 parent: 2 - uid: 5683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-17.5 + pos: -76.5,6.5 parent: 2 - uid: 5684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-16.5 + pos: -75.5,6.5 parent: 2 - uid: 5685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-17.5 + pos: -74.5,6.5 parent: 2 - uid: 5686 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,1.5 + pos: -84.5,-0.5 parent: 2 - uid: 5687 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,2.5 + pos: -14.5,-8.5 parent: 2 - uid: 5688 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,1.5 + pos: -126.5,-14.5 parent: 2 - uid: 5689 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,4.5 + pos: -96.5,-8.5 parent: 2 - uid: 5690 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,5.5 + pos: -62.5,-14.5 parent: 2 - uid: 5691 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,5.5 + pos: -62.5,-13.5 parent: 2 - uid: 5692 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,4.5 + pos: -58.5,1.5 parent: 2 - uid: 5693 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,2.5 + pos: -58.5,2.5 parent: 2 - uid: 5694 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,1.5 + pos: -58.5,3.5 parent: 2 - uid: 5695 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,5.5 + pos: -58.5,4.5 parent: 2 - uid: 5696 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,4.5 + pos: -58.5,5.5 parent: 2 - uid: 5697 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,3.5 + pos: -58.5,6.5 parent: 2 - uid: 5698 components: - type: Transform - pos: -41.5,3.5 + pos: -25.5,-0.5 parent: 2 - uid: 5699 components: - type: Transform - pos: -39.5,1.5 + pos: -25.5,-1.5 parent: 2 - uid: 5700 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,2.5 + pos: -39.5,32.5 parent: 2 -- proto: CarpetOrange - entities: - uid: 5701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,7.5 + pos: -72.5,-5.5 parent: 2 - uid: 5702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,8.5 + pos: -72.5,-4.5 parent: 2 - uid: 5703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,8.5 + pos: -72.5,-6.5 parent: 2 - uid: 5704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,7.5 + pos: -81.5,-5.5 parent: 2 -- proto: CarpetPink - entities: - uid: 5705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,-1.5 + pos: -81.5,-3.5 parent: 2 - uid: 5706 components: - type: Transform - pos: -115.5,-1.5 + pos: -81.5,-1.5 parent: 2 - uid: 5707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,-0.5 + pos: -81.5,-8.5 parent: 2 - uid: 5708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,-2.5 + pos: -76.5,0.5 parent: 2 -- proto: CarpetPurple - entities: - uid: 5709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -98.5,9.5 + pos: -74.5,0.5 parent: 2 - uid: 5710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -202.5,19.5 + pos: -73.5,0.5 parent: 2 - uid: 5711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -202.5,20.5 + pos: -72.5,2.5 parent: 2 - uid: 5712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -202.5,21.5 + pos: -72.5,-7.5 parent: 2 - uid: 5713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -201.5,19.5 + pos: -79.5,1.5 parent: 2 - uid: 5714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -201.5,20.5 + pos: -80.5,1.5 parent: 2 - uid: 5715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -201.5,21.5 + pos: -222.5,-6.5 parent: 2 -- proto: CarpetSBlue - entities: - uid: 5716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,5.5 + pos: -222.5,-5.5 parent: 2 -- proto: Catwalk - entities: - uid: 5717 components: - type: Transform - pos: -77.5,-8.5 + pos: -222.5,-4.5 parent: 2 - uid: 5718 components: - type: Transform - pos: -75.5,0.5 + pos: -221.5,-17.5 parent: 2 - uid: 5719 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-10.5 + pos: -220.5,-17.5 parent: 2 - uid: 5720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -125.5,8.5 + pos: -220.5,-8.5 parent: 2 - uid: 5721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-33.5 + pos: -219.5,-19.5 parent: 2 - uid: 5722 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -125.5,9.5 + pos: -219.5,-18.5 parent: 2 - uid: 5723 components: - type: Transform - pos: -129.5,-13.5 + pos: -219.5,-17.5 parent: 2 - uid: 5724 components: - type: Transform - pos: -128.5,-13.5 + pos: -219.5,-16.5 parent: 2 - uid: 5725 components: - type: Transform - pos: -127.5,-13.5 + pos: -219.5,-15.5 parent: 2 - uid: 5726 components: - type: Transform - pos: -127.5,-14.5 + pos: -219.5,-14.5 parent: 2 - uid: 5727 components: - type: Transform - pos: -126.5,-14.5 + pos: -219.5,-13.5 parent: 2 - uid: 5728 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-9.5 + pos: -219.5,-12.5 parent: 2 - uid: 5729 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-10.5 + pos: -219.5,-8.5 parent: 2 - uid: 5730 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-11.5 + pos: -218.5,-19.5 parent: 2 - uid: 5731 components: - type: Transform - pos: -60.5,-7.5 + pos: -218.5,-12.5 parent: 2 - uid: 5732 components: - type: Transform - pos: -59.5,-7.5 + pos: -218.5,-11.5 parent: 2 - uid: 5733 components: - type: Transform - pos: -57.5,-7.5 + pos: -218.5,-10.5 parent: 2 - uid: 5734 components: - type: Transform - pos: -61.5,-7.5 + pos: -218.5,-9.5 parent: 2 - uid: 5735 components: - type: Transform - pos: -58.5,-7.5 + pos: -218.5,-8.5 parent: 2 - uid: 5736 components: - type: Transform - pos: -61.5,-9.5 + pos: -217.5,-19.5 parent: 2 - uid: 5737 components: - type: Transform - pos: -61.5,-10.5 + pos: -223.5,-31.5 parent: 2 - uid: 5738 components: - type: Transform - pos: -61.5,-11.5 + pos: -223.5,-30.5 parent: 2 - uid: 5739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-27.5 + pos: -223.5,-29.5 parent: 2 - uid: 5740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-27.5 + pos: -223.5,-28.5 parent: 2 - uid: 5741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-27.5 + pos: -223.5,-27.5 parent: 2 - uid: 5742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-27.5 + pos: -222.5,-31.5 parent: 2 - uid: 5743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-26.5 + pos: -221.5,-31.5 parent: 2 - uid: 5744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-26.5 + pos: -220.5,-31.5 parent: 2 - uid: 5745 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-26.5 + pos: -219.5,-31.5 parent: 2 - uid: 5746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-26.5 + pos: -218.5,-35.5 parent: 2 - uid: 5747 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-26.5 + pos: -218.5,-34.5 parent: 2 - uid: 5748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-26.5 + pos: -218.5,-33.5 parent: 2 - uid: 5749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,-26.5 + pos: -218.5,-32.5 parent: 2 - uid: 5750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-26.5 + pos: -218.5,-31.5 parent: 2 - uid: 5751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,-26.5 + pos: -218.5,-30.5 parent: 2 - uid: 5752 components: - type: Transform - pos: -121.5,-16.5 + pos: -218.5,-29.5 parent: 2 - uid: 5753 components: - type: Transform - pos: -121.5,-17.5 + pos: -217.5,-29.5 parent: 2 - uid: 5754 components: - type: Transform - pos: -121.5,-18.5 + pos: -217.5,-20.5 parent: 2 - uid: 5755 components: - type: Transform - pos: -121.5,-19.5 + pos: -216.5,-29.5 parent: 2 - uid: 5756 components: - type: Transform - pos: -121.5,-20.5 + pos: -216.5,-28.5 parent: 2 - uid: 5757 components: - type: Transform - pos: -120.5,-20.5 + pos: -216.5,-27.5 parent: 2 - uid: 5758 components: - type: Transform - pos: -119.5,-20.5 + pos: -216.5,-23.5 parent: 2 - uid: 5759 components: - type: Transform - pos: -118.5,-20.5 + pos: -216.5,-22.5 parent: 2 - uid: 5760 components: - type: Transform - pos: -117.5,-20.5 + pos: -216.5,-21.5 parent: 2 - uid: 5761 components: - type: Transform - pos: -115.5,-20.5 + pos: -216.5,-20.5 parent: 2 - uid: 5762 components: - type: Transform - pos: -114.5,-20.5 + pos: -215.5,-27.5 parent: 2 - uid: 5763 components: - type: Transform - pos: -114.5,-21.5 + pos: -215.5,-26.5 parent: 2 - uid: 5764 components: - type: Transform - pos: -113.5,-21.5 + pos: -215.5,-25.5 parent: 2 - uid: 5765 components: - type: Transform - pos: -112.5,-21.5 + pos: -215.5,-24.5 parent: 2 - uid: 5766 components: - type: Transform - pos: -111.5,-21.5 + pos: -215.5,-23.5 parent: 2 - uid: 5767 components: - type: Transform - pos: -110.5,-21.5 + pos: -222.5,-41.5 parent: 2 - uid: 5768 components: - type: Transform - pos: -109.5,-21.5 + pos: -222.5,-40.5 parent: 2 - uid: 5769 components: - type: Transform - pos: -109.5,-20.5 + pos: -222.5,-39.5 parent: 2 - uid: 5770 components: - type: Transform - pos: -109.5,-18.5 + pos: -222.5,-38.5 parent: 2 - uid: 5771 components: - type: Transform - pos: -108.5,-18.5 + pos: -219.5,-38.5 parent: 2 - uid: 5772 components: - type: Transform - pos: -107.5,-18.5 + pos: -218.5,-38.5 parent: 2 - uid: 5773 components: - type: Transform - pos: -106.5,-18.5 + pos: -218.5,-37.5 parent: 2 - uid: 5774 components: - type: Transform - pos: -105.5,-18.5 + pos: -218.5,-36.5 parent: 2 - uid: 5775 components: - type: Transform - pos: -105.5,-19.5 + pos: -222.5,-8.5 parent: 2 - uid: 5776 components: - type: Transform - pos: -105.5,-20.5 + pos: -222.5,-7.5 parent: 2 - uid: 5777 components: - type: Transform - pos: -105.5,-21.5 + pos: -221.5,-8.5 parent: 2 - uid: 5778 components: - type: Transform - pos: -104.5,-21.5 + pos: -76.5,-8.5 parent: 2 - uid: 5779 components: - type: Transform - pos: -103.5,-21.5 + pos: -78.5,-8.5 parent: 2 - uid: 5780 components: - type: Transform - pos: -103.5,-20.5 + pos: -78.5,-6.5 parent: 2 - uid: 5781 components: - type: Transform - pos: -102.5,-20.5 + pos: -75.5,0.5 parent: 2 - uid: 5782 components: - type: Transform - pos: -101.5,-20.5 + pos: -76.5,1.5 parent: 2 - uid: 5783 components: - type: Transform - pos: -99.5,-20.5 + pos: -78.5,0.5 parent: 2 - uid: 5784 components: - type: Transform - pos: -99.5,-21.5 + pos: -218.5,-7.5 parent: 2 - uid: 5785 components: - type: Transform - pos: -98.5,-20.5 + pos: -218.5,-6.5 parent: 2 - uid: 5786 components: - type: Transform - pos: -98.5,-19.5 + pos: -218.5,-5.5 parent: 2 - uid: 5787 components: - type: Transform - pos: -98.5,-18.5 + pos: -217.5,-5.5 parent: 2 - uid: 5788 components: - type: Transform - pos: -97.5,-18.5 + pos: -217.5,-4.5 parent: 2 - uid: 5789 components: - type: Transform - pos: -96.5,-18.5 + pos: -216.5,-4.5 parent: 2 - uid: 5790 components: - type: Transform - pos: -95.5,-18.5 + pos: -215.5,-4.5 parent: 2 - uid: 5791 components: - type: Transform - pos: -95.5,-17.5 + pos: -215.5,-3.5 parent: 2 - uid: 5792 components: - type: Transform - pos: -95.5,-16.5 + pos: -214.5,-3.5 parent: 2 - uid: 5793 components: - type: Transform - pos: -93.5,-16.5 + pos: -213.5,-3.5 parent: 2 - uid: 5794 components: - type: Transform - pos: -92.5,-16.5 + pos: -212.5,-3.5 parent: 2 - uid: 5795 components: - type: Transform - pos: -92.5,-17.5 + pos: -211.5,-3.5 parent: 2 - uid: 5796 components: - type: Transform - pos: -92.5,-18.5 + pos: -210.5,-3.5 parent: 2 - uid: 5797 components: - type: Transform - pos: -91.5,-18.5 + pos: -209.5,-3.5 parent: 2 - uid: 5798 components: - type: Transform - pos: -90.5,-18.5 + pos: -198.5,5.5 parent: 2 - uid: 5799 components: - type: Transform - pos: -89.5,-18.5 + pos: -196.5,9.5 parent: 2 - uid: 5800 components: - type: Transform - pos: -88.5,-18.5 + pos: -196.5,12.5 parent: 2 + - uid: 17610 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 17565 + - uid: 17611 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 17565 +- proto: CableMVStack + entities: - uid: 5801 components: - type: Transform - pos: -87.5,-18.5 + pos: -91.63844,5.3808255 parent: 2 - uid: 5802 components: - type: Transform - pos: -86.5,-18.5 + pos: -91.73226,5.5839505 parent: 2 +- proto: CableMVStack1 + entities: - uid: 5803 components: - type: Transform - pos: -85.5,-18.5 + rot: 3.141592653589793 rad + pos: -220.5664,-38.498264 parent: 2 - uid: 5804 components: - type: Transform - pos: -84.5,-18.5 + rot: 3.141592653589793 rad + pos: -221.50461,-38.423264 parent: 2 - uid: 5805 components: - type: Transform - pos: -84.5,-19.5 + pos: -34.709076,33.604572 parent: 2 - uid: 5806 components: - type: Transform - pos: -83.5,-19.5 + pos: -38.40182,33.44707 parent: 2 - uid: 5807 components: - type: Transform - pos: -82.5,-19.5 + pos: -36.532932,33.44707 parent: 2 - uid: 5808 components: - type: Transform - pos: -80.5,-19.5 + pos: -37.523666,33.424572 parent: 2 - uid: 5809 components: - type: Transform - pos: -79.5,-19.5 + pos: -35.42961,33.559574 parent: 2 +- proto: CableTerminal + entities: - uid: 5810 components: - type: Transform - pos: -78.5,-19.5 + rot: -1.5707963267948966 rad + pos: -61.5,-10.5 parent: 2 - uid: 5811 components: - type: Transform - pos: -77.5,-19.5 + rot: -1.5707963267948966 rad + pos: -61.5,-9.5 parent: 2 - uid: 5812 components: - type: Transform - pos: -77.5,-20.5 + rot: -1.5707963267948966 rad + pos: -61.5,-11.5 parent: 2 - uid: 5813 components: - type: Transform - pos: -77.5,-21.5 + rot: 3.141592653589793 rad + pos: -16.5,9.5 parent: 2 - uid: 5814 components: - type: Transform - pos: -77.5,-22.5 + pos: -68.5,-4.5 parent: 2 - uid: 5815 components: - type: Transform - pos: -77.5,-23.5 + rot: 3.141592653589793 rad + pos: -85.5,-34.5 parent: 2 - uid: 5816 components: - type: Transform - pos: -77.5,-24.5 + rot: -1.5707963267948966 rad + pos: -15.5,-14.5 parent: 2 - uid: 5817 components: - type: Transform - pos: -76.5,-23.5 + rot: 1.5707963267948966 rad + pos: -13.5,10.5 parent: 2 - uid: 5818 components: - type: Transform - pos: -74.5,-23.5 + pos: -10.5,-6.5 parent: 2 - uid: 5819 components: - type: Transform - pos: -73.5,-23.5 + rot: 3.141592653589793 rad + pos: -102.5,-24.5 parent: 2 - uid: 5820 components: - type: Transform - pos: -72.5,-23.5 + rot: 3.141592653589793 rad + pos: -39.5,-25.5 parent: 2 - uid: 5821 components: - type: Transform - pos: -71.5,-23.5 + rot: 1.5707963267948966 rad + pos: -183.5,-10.5 parent: 2 - uid: 5822 components: - type: Transform - pos: -70.5,-23.5 + pos: -124.5,11.5 parent: 2 - uid: 5823 components: - type: Transform - pos: -70.5,-24.5 + rot: -1.5707963267948966 rad + pos: -173.5,-6.5 parent: 2 - uid: 5824 components: - type: Transform - pos: -57.5,-19.5 + rot: 1.5707963267948966 rad + pos: -219.5,-42.5 parent: 2 - uid: 5825 components: - type: Transform - pos: -57.5,-18.5 + rot: 1.5707963267948966 rad + pos: -219.5,-41.5 parent: 2 - uid: 5826 components: - type: Transform - pos: -56.5,-18.5 + rot: 1.5707963267948966 rad + pos: -190.5,8.5 parent: 2 + - uid: 17612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 17565 +- proto: CandleBlackSmallInfinite + entities: - uid: 5827 components: - type: Transform - pos: -55.5,-18.5 + pos: -33.139362,13.788162 parent: 2 - uid: 5828 components: - type: Transform - pos: -54.5,-18.5 + pos: -33.84868,13.766641 parent: 2 - uid: 5829 components: - type: Transform - pos: -53.5,-18.5 + pos: -33.84868,13.2071 parent: 2 - uid: 5830 components: - type: Transform - pos: -52.5,-18.5 - parent: 2 - - uid: 5831 - components: - - type: Transform - pos: -50.5,-18.5 + pos: -33.117867,13.228621 parent: 2 +- proto: CannabisSeeds + entities: - uid: 5832 components: - type: Transform - pos: -49.5,-18.5 - parent: 2 + parent: 5831 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Carpet + entities: - uid: 5833 components: - type: Transform - pos: -49.5,-19.5 + pos: -118.5,-0.5 parent: 2 - uid: 5834 components: - type: Transform - pos: -49.5,-20.5 + pos: -118.5,-2.5 parent: 2 - uid: 5835 components: - type: Transform - pos: -49.5,-21.5 + pos: -117.5,-2.5 parent: 2 - uid: 5836 components: - type: Transform - pos: -48.5,-21.5 + pos: -118.5,0.5 parent: 2 - uid: 5837 components: - type: Transform - pos: -47.5,-21.5 + pos: -119.5,-0.5 parent: 2 - uid: 5838 components: - type: Transform - pos: -46.5,-21.5 + pos: -119.5,-1.5 parent: 2 - uid: 5839 components: - type: Transform - pos: -46.5,-22.5 + pos: -118.5,-1.5 parent: 2 - uid: 5840 components: - type: Transform - pos: -45.5,-22.5 + pos: -154.5,15.5 parent: 2 - uid: 5841 components: - type: Transform - pos: -44.5,-22.5 + pos: -156.5,14.5 parent: 2 - uid: 5842 components: - type: Transform - pos: -43.5,-22.5 + pos: -155.5,14.5 parent: 2 - uid: 5843 components: - type: Transform - pos: -42.5,-22.5 + pos: -154.5,14.5 parent: 2 - uid: 5844 components: - type: Transform - pos: -41.5,-22.5 + pos: -154.5,16.5 parent: 2 - uid: 5845 components: - type: Transform - pos: -40.5,-22.5 + pos: -155.5,15.5 parent: 2 - uid: 5846 components: - type: Transform - pos: -40.5,-21.5 + pos: -156.5,15.5 parent: 2 - uid: 5847 components: - type: Transform - pos: -39.5,-21.5 + pos: -156.5,16.5 parent: 2 - uid: 5848 components: - type: Transform - pos: -38.5,-21.5 + pos: -155.5,16.5 parent: 2 - uid: 5849 components: - type: Transform - pos: -38.5,-22.5 + pos: -159.5,15.5 parent: 2 - uid: 5850 components: - type: Transform - pos: -39.5,-19.5 + pos: -160.5,15.5 parent: 2 - uid: 5851 components: - type: Transform - pos: -39.5,-18.5 + pos: -164.5,11.5 parent: 2 - uid: 5852 components: - type: Transform - pos: -39.5,-17.5 + pos: -163.5,12.5 parent: 2 - uid: 5853 components: - type: Transform - pos: -39.5,-16.5 + pos: -163.5,11.5 parent: 2 - uid: 5854 components: - type: Transform - pos: -39.5,-15.5 + pos: -165.5,11.5 parent: 2 - uid: 5855 components: - type: Transform - pos: -39.5,12.5 + pos: -165.5,12.5 parent: 2 - uid: 5856 components: - type: Transform - pos: -40.5,12.5 + pos: -164.5,12.5 parent: 2 - uid: 5857 components: - type: Transform - pos: -41.5,12.5 + rot: 1.5707963267948966 rad + pos: -153.5,14.5 parent: 2 - uid: 5858 components: - type: Transform - pos: -42.5,12.5 + rot: 1.5707963267948966 rad + pos: -156.5,17.5 parent: 2 - uid: 5859 components: - type: Transform - pos: -43.5,12.5 + rot: 1.5707963267948966 rad + pos: -160.5,16.5 parent: 2 - uid: 5860 components: - type: Transform - pos: -44.5,12.5 + rot: 1.5707963267948966 rad + pos: -153.5,16.5 parent: 2 - uid: 5861 components: - type: Transform - pos: -45.5,12.5 + rot: 1.5707963267948966 rad + pos: -160.5,14.5 parent: 2 - uid: 5862 components: - type: Transform - pos: -46.5,12.5 + rot: 1.5707963267948966 rad + pos: -154.5,17.5 parent: 2 - uid: 5863 components: - type: Transform - pos: -46.5,11.5 + rot: 1.5707963267948966 rad + pos: -158.5,16.5 parent: 2 - uid: 5864 components: - type: Transform - pos: -47.5,11.5 + rot: 1.5707963267948966 rad + pos: -158.5,15.5 parent: 2 - uid: 5865 components: - type: Transform - pos: -48.5,11.5 + rot: 1.5707963267948966 rad + pos: -158.5,14.5 parent: 2 - uid: 5866 components: - type: Transform - pos: -49.5,11.5 + pos: -117.5,-1.5 parent: 2 - uid: 5867 components: - type: Transform - pos: -50.5,11.5 + rot: 3.141592653589793 rad + pos: -117.5,-0.5 parent: 2 - uid: 5868 components: - type: Transform - pos: -51.5,11.5 + pos: -119.5,0.5 parent: 2 +- proto: CarpetBlack + entities: - uid: 5869 components: - type: Transform - pos: -52.5,11.5 + rot: 1.5707963267948966 rad + pos: -102.5,22.5 parent: 2 - uid: 5870 components: - type: Transform - pos: -53.5,11.5 + rot: -1.5707963267948966 rad + pos: -104.5,14.5 parent: 2 - uid: 5871 components: - type: Transform - pos: -54.5,11.5 + rot: -1.5707963267948966 rad + pos: -104.5,13.5 parent: 2 - uid: 5872 components: - type: Transform - pos: -55.5,11.5 + rot: -1.5707963267948966 rad + pos: -105.5,12.5 parent: 2 - uid: 5873 components: - type: Transform - pos: -61.5,11.5 + rot: -1.5707963267948966 rad + pos: -105.5,13.5 parent: 2 - uid: 5874 components: - type: Transform - pos: -62.5,11.5 + rot: -1.5707963267948966 rad + pos: -105.5,14.5 parent: 2 - uid: 5875 components: - type: Transform - pos: -63.5,11.5 + rot: -1.5707963267948966 rad + pos: -104.5,12.5 + parent: 2 + - uid: 11812 + components: + - type: Transform + pos: -99.5,13.5 + parent: 2 + - uid: 12241 + components: + - type: Transform + pos: -99.5,14.5 + parent: 2 + - uid: 17556 + components: + - type: Transform + pos: -99.5,12.5 + parent: 2 + - uid: 17557 + components: + - type: Transform + pos: -100.5,12.5 + parent: 2 + - uid: 17558 + components: + - type: Transform + pos: -100.5,13.5 + parent: 2 + - uid: 17559 + components: + - type: Transform + pos: -100.5,14.5 parent: 2 +- proto: CarpetBlue + entities: - uid: 5876 components: - type: Transform - pos: -63.5,12.5 + rot: 3.141592653589793 rad + pos: -10.5,-9.5 parent: 2 - uid: 5877 components: - type: Transform - pos: -63.5,13.5 + rot: 3.141592653589793 rad + pos: -9.5,-9.5 parent: 2 - uid: 5878 components: - type: Transform - pos: -63.5,14.5 + rot: 3.141592653589793 rad + pos: -10.5,-10.5 parent: 2 - uid: 5879 components: - type: Transform - pos: -64.5,14.5 + rot: 3.141592653589793 rad + pos: -8.5,-10.5 parent: 2 - uid: 5880 components: - type: Transform - pos: -65.5,14.5 + rot: 3.141592653589793 rad + pos: -9.5,-10.5 parent: 2 - uid: 5881 components: - type: Transform - pos: -66.5,14.5 + rot: 3.141592653589793 rad + pos: -8.5,-9.5 parent: 2 - uid: 5882 components: - type: Transform - pos: -66.5,15.5 + rot: 3.141592653589793 rad + pos: -10.5,-9.5 parent: 2 - uid: 5883 components: - type: Transform - pos: -67.5,15.5 + pos: -9.5,-11.5 parent: 2 - uid: 5884 components: - type: Transform - pos: -68.5,15.5 + pos: -8.5,-11.5 parent: 2 - uid: 5885 components: - type: Transform - pos: -69.5,15.5 + pos: -116.5,-6.5 parent: 2 - uid: 5886 components: - type: Transform - pos: -69.5,14.5 + pos: -117.5,-6.5 parent: 2 - uid: 5887 components: - type: Transform - pos: -70.5,14.5 + pos: -116.5,-5.5 parent: 2 - uid: 5888 components: - type: Transform - pos: -71.5,14.5 + pos: -117.5,-5.5 parent: 2 - uid: 5889 components: - type: Transform - pos: -71.5,15.5 + pos: -118.5,-5.5 parent: 2 - uid: 5890 components: - type: Transform - pos: -72.5,15.5 + pos: -118.5,-4.5 parent: 2 - uid: 5891 components: - type: Transform - pos: -73.5,15.5 + pos: -117.5,-4.5 parent: 2 +- proto: CarpetChapel + entities: - uid: 5892 components: - type: Transform - pos: -73.5,14.5 + pos: -40.5,1.5 parent: 2 - uid: 5893 components: - type: Transform - pos: -73.5,13.5 + rot: 1.5707963267948966 rad + pos: -32.5,1.5 parent: 2 - uid: 5894 components: - type: Transform - pos: -74.5,13.5 + rot: 1.5707963267948966 rad + pos: -35.5,1.5 parent: 2 - uid: 5895 components: - type: Transform - pos: -75.5,13.5 + rot: 3.141592653589793 rad + pos: -32.5,2.5 parent: 2 - uid: 5896 components: - type: Transform - pos: -76.5,13.5 + pos: -33.5,1.5 parent: 2 - uid: 5897 components: - type: Transform - pos: -77.5,13.5 + rot: 3.141592653589793 rad + pos: -32.5,5.5 parent: 2 - uid: 5898 components: - type: Transform - pos: -78.5,13.5 + rot: 1.5707963267948966 rad + pos: -32.5,4.5 parent: 2 - uid: 5899 components: - type: Transform - pos: -79.5,13.5 + pos: -33.5,4.5 parent: 2 - uid: 5900 components: - type: Transform - pos: -79.5,12.5 + rot: -1.5707963267948966 rad + pos: -33.5,5.5 parent: 2 - uid: 5901 components: - type: Transform - pos: -79.5,11.5 + rot: -1.5707963267948966 rad + pos: -33.5,2.5 parent: 2 - uid: 5902 components: - type: Transform - pos: -39.5,13.5 + pos: -36.5,1.5 parent: 2 - uid: 5903 components: - type: Transform - pos: -38.5,14.5 + rot: -1.5707963267948966 rad + pos: -36.5,2.5 parent: 2 - uid: 5904 components: - type: Transform - pos: -39.5,15.5 + rot: 3.141592653589793 rad + pos: -35.5,2.5 parent: 2 - uid: 5905 components: - type: Transform - pos: -39.5,16.5 + rot: 1.5707963267948966 rad + pos: -35.5,4.5 parent: 2 - uid: 5906 components: - type: Transform - pos: -38.5,16.5 + rot: 3.141592653589793 rad + pos: -35.5,5.5 parent: 2 - uid: 5907 components: - type: Transform - pos: -39.5,14.5 + pos: -36.5,4.5 parent: 2 - uid: 5908 components: - type: Transform - pos: -37.5,14.5 + rot: -1.5707963267948966 rad + pos: -36.5,5.5 parent: 2 - uid: 5909 components: - type: Transform - pos: -36.5,14.5 + rot: 1.5707963267948966 rad + pos: -38.5,1.5 parent: 2 - uid: 5910 components: - type: Transform - pos: -35.5,14.5 + rot: -1.5707963267948966 rad + pos: -40.5,2.5 parent: 2 - uid: 5911 components: - type: Transform - pos: -35.5,13.5 + rot: 3.141592653589793 rad + pos: -38.5,2.5 parent: 2 - uid: 5912 components: - type: Transform - pos: -35.5,12.5 + rot: 1.5707963267948966 rad + pos: -38.5,4.5 parent: 2 - uid: 5913 components: - type: Transform - pos: -35.5,11.5 + pos: -39.5,4.5 parent: 2 - uid: 5914 components: - type: Transform - pos: -34.5,11.5 + rot: -1.5707963267948966 rad + pos: -39.5,5.5 parent: 2 - uid: 5915 components: - type: Transform - pos: -33.5,11.5 + rot: 3.141592653589793 rad + pos: -38.5,5.5 parent: 2 - uid: 5916 components: - type: Transform - pos: -32.5,11.5 + rot: 1.5707963267948966 rad + pos: -41.5,5.5 parent: 2 - uid: 5917 components: - type: Transform - pos: -31.5,11.5 + rot: 3.141592653589793 rad + pos: -41.5,1.5 parent: 2 - uid: 5918 components: - type: Transform - pos: -30.5,11.5 + pos: -41.5,4.5 parent: 2 +- proto: CarpetGreen + entities: - uid: 5919 components: - type: Transform - pos: -29.5,11.5 + pos: -39.5,2.5 parent: 2 - uid: 5920 components: - type: Transform - pos: -28.5,11.5 + rot: 3.141592653589793 rad + pos: -37.5,2.5 parent: 2 - uid: 5921 components: - type: Transform - pos: -27.5,11.5 + rot: 3.141592653589793 rad + pos: -37.5,4.5 parent: 2 - uid: 5922 components: - type: Transform - pos: -26.5,11.5 + rot: 3.141592653589793 rad + pos: -37.5,5.5 parent: 2 - uid: 5923 components: - type: Transform - pos: -25.5,11.5 + rot: 3.141592653589793 rad + pos: -36.5,3.5 parent: 2 - uid: 5924 components: - type: Transform - pos: -24.5,11.5 + rot: 3.141592653589793 rad + pos: -35.5,3.5 parent: 2 - uid: 5925 components: - type: Transform - pos: -24.5,10.5 + rot: 3.141592653589793 rad + pos: -34.5,3.5 parent: 2 - uid: 5926 components: - type: Transform - pos: -24.5,9.5 + rot: 3.141592653589793 rad + pos: -37.5,3.5 parent: 2 - uid: 5927 components: - type: Transform - pos: -24.5,8.5 + rot: 3.141592653589793 rad + pos: -38.5,3.5 parent: 2 - uid: 5928 components: - type: Transform - pos: -24.5,7.5 + rot: 3.141592653589793 rad + pos: -39.5,3.5 parent: 2 - uid: 5929 components: - type: Transform - pos: -13.5,10.5 + rot: 3.141592653589793 rad + pos: -32.5,3.5 parent: 2 - uid: 5930 components: - type: Transform - pos: -13.5,7.5 + rot: 3.141592653589793 rad + pos: -33.5,3.5 parent: 2 - uid: 5931 components: - type: Transform - pos: -13.5,8.5 + rot: 3.141592653589793 rad + pos: -110.5,-0.5 parent: 2 - uid: 5932 components: - type: Transform - pos: -13.5,9.5 + rot: 3.141592653589793 rad + pos: -112.5,-0.5 parent: 2 - uid: 5933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,22.5 + rot: 3.141592653589793 rad + pos: -111.5,-0.5 parent: 2 - uid: 5934 components: - type: Transform - pos: -130.5,-13.5 + rot: 3.141592653589793 rad + pos: -110.5,0.5 parent: 2 - uid: 5935 components: - type: Transform - pos: -123.5,-16.5 + rot: 3.141592653589793 rad + pos: -112.5,0.5 parent: 2 - uid: 5936 components: - type: Transform - pos: -124.5,-16.5 + rot: 3.141592653589793 rad + pos: -112.5,-1.5 parent: 2 - uid: 5937 components: - type: Transform - pos: -122.5,-16.5 + rot: 3.141592653589793 rad + pos: -111.5,-1.5 parent: 2 - uid: 5938 components: - type: Transform - pos: -124.5,-15.5 + rot: 3.141592653589793 rad + pos: -110.5,-1.5 parent: 2 - uid: 5939 components: - type: Transform - pos: -124.5,-14.5 + rot: 1.5707963267948966 rad + pos: -106.5,9.5 parent: 2 - uid: 5940 components: - type: Transform - pos: -125.5,-14.5 + rot: -1.5707963267948966 rad + pos: -46.5,-16.5 parent: 2 - uid: 5941 components: - type: Transform - pos: -130.5,-11.5 + rot: -1.5707963267948966 rad + pos: -46.5,-17.5 parent: 2 - uid: 5942 components: - type: Transform - pos: -130.5,-9.5 + rot: -1.5707963267948966 rad + pos: -45.5,-16.5 parent: 2 - uid: 5943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,21.5 + rot: -1.5707963267948966 rad + pos: -45.5,-17.5 parent: 2 - uid: 5944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,16.5 + rot: -1.5707963267948966 rad + pos: -44.5,-16.5 parent: 2 - uid: 5945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,15.5 + rot: -1.5707963267948966 rad + pos: -44.5,-17.5 parent: 2 - uid: 5946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,18.5 + rot: -1.5707963267948966 rad + pos: -43.5,-16.5 parent: 2 - uid: 5947 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,19.5 + rot: -1.5707963267948966 rad + pos: -43.5,-17.5 parent: 2 - uid: 5948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,20.5 + rot: -1.5707963267948966 rad + pos: -42.5,-16.5 parent: 2 - uid: 5949 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,20.5 + rot: -1.5707963267948966 rad + pos: -42.5,-17.5 parent: 2 - uid: 5950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,19.5 + rot: 3.141592653589793 rad + pos: -37.5,1.5 parent: 2 - uid: 5951 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,18.5 + rot: 3.141592653589793 rad + pos: -34.5,2.5 parent: 2 - uid: 5952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,21.5 + rot: 3.141592653589793 rad + pos: -34.5,1.5 parent: 2 - uid: 5953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,22.5 + rot: 3.141592653589793 rad + pos: -34.5,4.5 parent: 2 - uid: 5954 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,22.5 + rot: 3.141592653589793 rad + pos: -34.5,5.5 parent: 2 - uid: 5955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,21.5 + rot: 3.141592653589793 rad + pos: -32.5,5.5 parent: 2 - uid: 5956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,20.5 + rot: 3.141592653589793 rad + pos: -32.5,4.5 parent: 2 - uid: 5957 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,22.5 + rot: 3.141592653589793 rad + pos: -32.5,2.5 parent: 2 - uid: 5958 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,21.5 + rot: 3.141592653589793 rad + pos: -32.5,1.5 parent: 2 - uid: 5959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,20.5 + rot: 3.141592653589793 rad + pos: -40.5,5.5 parent: 2 - uid: 5960 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,22.5 + rot: 3.141592653589793 rad + pos: -40.5,4.5 parent: 2 - uid: 5961 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,21.5 + rot: 3.141592653589793 rad + pos: -40.5,3.5 parent: 2 - uid: 5962 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,20.5 + pos: -41.5,3.5 parent: 2 - uid: 5963 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,20.5 + pos: -39.5,1.5 parent: 2 - uid: 5964 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,20.5 + rot: 3.141592653589793 rad + pos: -41.5,2.5 parent: 2 +- proto: CarpetOrange + entities: - uid: 5965 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,19.5 + rot: -1.5707963267948966 rad + pos: -34.5,7.5 parent: 2 - uid: 5966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,18.5 + rot: -1.5707963267948966 rad + pos: -34.5,8.5 parent: 2 - uid: 5967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,17.5 + rot: -1.5707963267948966 rad + pos: -35.5,8.5 parent: 2 - uid: 5968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,16.5 + rot: -1.5707963267948966 rad + pos: -35.5,7.5 parent: 2 +- proto: CarpetPink + entities: - uid: 5969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,15.5 + rot: -1.5707963267948966 rad + pos: -114.5,-1.5 parent: 2 - uid: 5970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,15.5 + pos: -115.5,-1.5 parent: 2 - uid: 5971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,16.5 + rot: -1.5707963267948966 rad + pos: -114.5,-0.5 parent: 2 - uid: 5972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,15.5 + rot: -1.5707963267948966 rad + pos: -114.5,-2.5 parent: 2 - uid: 5973 components: - type: Transform rot: 1.5707963267948966 rad - pos: -61.5,16.5 + pos: -197.5,16.5 parent: 2 - uid: 5974 components: - type: Transform rot: 1.5707963267948966 rad - pos: -61.5,17.5 + pos: -197.5,15.5 parent: 2 - uid: 5975 components: - type: Transform rot: 1.5707963267948966 rad - pos: -61.5,18.5 + pos: -198.5,16.5 parent: 2 - uid: 5976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,20.5 + pos: -198.5,15.5 parent: 2 +- proto: CarpetPurple + entities: - uid: 5977 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,21.5 + pos: -98.5,9.5 parent: 2 - uid: 5978 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,22.5 + pos: -193.5,15.5 parent: 2 - uid: 5979 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,20.5 + pos: -193.5,16.5 parent: 2 - uid: 5980 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,21.5 + pos: -192.5,16.5 parent: 2 - uid: 5981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,22.5 + pos: -192.5,15.5 parent: 2 +- proto: CarpetSBlue + entities: - uid: 5982 components: - type: Transform rot: 1.5707963267948966 rad - pos: -69.5,20.5 + pos: -106.5,5.5 + parent: 2 +- proto: CarvedPumpkin + entities: + - uid: 17706 + components: + - type: Transform + pos: -28.386642,-0.33192158 + parent: 2 +- proto: CarvedPumpkinLarge + entities: + - uid: 17707 + components: + - type: Transform + pos: -32.023823,-6.2860165 + parent: 2 +- proto: CarvedPumpkinSmall + entities: + - uid: 17708 + components: + - type: Transform + pos: -37.314877,-0.15640414 parent: 2 +- proto: Catwalk + entities: - uid: 5983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,21.5 + pos: -190.5,16.5 parent: 2 - uid: 5984 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,20.5 + pos: -200.5,17.5 parent: 2 - uid: 5985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,21.5 + rot: -1.5707963267948966 rad + pos: -189.5,16.5 parent: 2 - uid: 5986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,20.5 + rot: -1.5707963267948966 rad + pos: -188.5,15.5 parent: 2 - uid: 5987 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,21.5 + rot: -1.5707963267948966 rad + pos: -188.5,1.5 parent: 2 - uid: 5988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,20.5 + rot: -1.5707963267948966 rad + pos: -189.5,0.5 parent: 2 - uid: 5989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,21.5 + rot: -1.5707963267948966 rad + pos: -190.5,17.5 parent: 2 - uid: 5990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,20.5 + pos: -201.5,15.5 parent: 2 - uid: 5991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,21.5 + pos: -202.5,15.5 parent: 2 - uid: 5992 components: - type: Transform - pos: -61.5,-8.5 + pos: -201.5,16.5 parent: 2 - uid: 5993 components: - type: Transform - pos: -78.5,21.5 + pos: -200.5,16.5 parent: 2 - uid: 5994 components: - type: Transform - pos: -78.5,20.5 + rot: 3.141592653589793 rad + pos: -75.5,-10.5 parent: 2 - uid: 5995 components: - type: Transform - pos: -77.5,21.5 + pos: -73.5,-3.5 parent: 2 - uid: 5996 components: - type: Transform - pos: -77.5,20.5 + rot: 3.141592653589793 rad + pos: -73.5,-10.5 parent: 2 - uid: 5997 components: - type: Transform - pos: -76.5,20.5 + pos: -74.5,-3.5 parent: 2 - uid: 5998 components: - type: Transform - pos: -76.5,19.5 + rot: 3.141592653589793 rad + pos: -77.5,-10.5 parent: 2 - uid: 5999 components: - type: Transform - pos: -76.5,18.5 + rot: 3.141592653589793 rad + pos: -74.5,3.5 parent: 2 - uid: 6000 components: - type: Transform - pos: -75.5,17.5 + rot: 3.141592653589793 rad + pos: -76.5,3.5 parent: 2 - uid: 6001 components: - type: Transform - pos: -75.5,18.5 + pos: -78.5,1.5 parent: 2 - uid: 6002 components: - type: Transform - pos: -74.5,18.5 + rot: -1.5707963267948966 rad + pos: -89.5,11.5 parent: 2 - uid: 6003 components: - type: Transform - pos: -75.5,19.5 + pos: -90.5,12.5 parent: 2 - uid: 6004 components: - type: Transform - pos: -80.5,17.5 + pos: -88.5,13.5 parent: 2 - uid: 6005 components: - type: Transform - pos: -82.5,16.5 + pos: -87.5,14.5 parent: 2 - uid: 6006 components: - type: Transform - pos: -83.5,18.5 + rot: -1.5707963267948966 rad + pos: -40.5,16.5 parent: 2 - uid: 6007 components: - type: Transform - pos: -81.5,16.5 + rot: -1.5707963267948966 rad + pos: -42.5,14.5 parent: 2 - uid: 6008 components: - type: Transform - pos: -83.5,19.5 + pos: -111.5,-17.5 parent: 2 - uid: 6009 components: - type: Transform - pos: -82.5,20.5 + pos: -111.5,-15.5 parent: 2 - uid: 6010 components: - type: Transform - pos: -173.5,-7.5 + rot: -1.5707963267948966 rad + pos: -125.5,8.5 parent: 2 - uid: 6011 components: - type: Transform - pos: -173.5,-6.5 + rot: 1.5707963267948966 rad + pos: -35.5,-33.5 parent: 2 - uid: 6012 components: - type: Transform rot: -1.5707963267948966 rad - pos: -192.5,15.5 + pos: -125.5,9.5 parent: 2 - uid: 6013 components: - type: Transform - pos: -130.5,-12.5 + pos: -129.5,-13.5 parent: 2 - uid: 6014 components: - type: Transform - pos: -130.5,-10.5 + pos: -128.5,-13.5 parent: 2 - uid: 6015 components: - type: Transform - pos: -117.5,-18.5 + pos: -127.5,-13.5 parent: 2 - uid: 6016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -125.5,7.5 + pos: -127.5,-14.5 parent: 2 - uid: 6017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -125.5,6.5 + pos: -126.5,-14.5 parent: 2 - uid: 6018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -126.5,6.5 + rot: 3.141592653589793 rad + pos: -57.5,-9.5 parent: 2 - uid: 6019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -127.5,3.5 + rot: 3.141592653589793 rad + pos: -57.5,-10.5 parent: 2 - uid: 6020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -127.5,6.5 + rot: 3.141592653589793 rad + pos: -57.5,-11.5 parent: 2 - uid: 6021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -127.5,5.5 + pos: -60.5,-7.5 parent: 2 - uid: 6022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-35.5 + pos: -59.5,-7.5 parent: 2 - uid: 6023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-36.5 + pos: -57.5,-7.5 parent: 2 - uid: 6024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -127.5,4.5 + pos: -61.5,-7.5 parent: 2 - uid: 6025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -127.5,2.5 + pos: -58.5,-7.5 parent: 2 - uid: 6026 components: - type: Transform - pos: -99.5,-23.5 + pos: -61.5,-9.5 parent: 2 - uid: 6027 components: - type: Transform - pos: -100.5,-23.5 + pos: -61.5,-10.5 parent: 2 - uid: 6028 components: - type: Transform - pos: -101.5,-23.5 + pos: -61.5,-11.5 parent: 2 - uid: 6029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-33.5 + rot: -1.5707963267948966 rad + pos: -81.5,-27.5 parent: 2 - uid: 6030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-29.5 + rot: -1.5707963267948966 rad + pos: -80.5,-27.5 parent: 2 - uid: 6031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-34.5 + rot: -1.5707963267948966 rad + pos: -79.5,-27.5 parent: 2 - uid: 6032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-34.5 + rot: -1.5707963267948966 rad + pos: -78.5,-27.5 parent: 2 - uid: 6033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-35.5 + rot: -1.5707963267948966 rad + pos: -78.5,-26.5 parent: 2 - uid: 6034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-36.5 + rot: -1.5707963267948966 rad + pos: -77.5,-26.5 parent: 2 - uid: 6035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-33.5 + rot: -1.5707963267948966 rad + pos: -76.5,-26.5 parent: 2 - uid: 6036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-32.5 + rot: -1.5707963267948966 rad + pos: -75.5,-26.5 parent: 2 - uid: 6037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-36.5 + rot: -1.5707963267948966 rad + pos: -74.5,-26.5 parent: 2 - uid: 6038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-35.5 + rot: -1.5707963267948966 rad + pos: -73.5,-26.5 parent: 2 - uid: 6039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-34.5 + rot: -1.5707963267948966 rad + pos: -72.5,-26.5 parent: 2 - uid: 6040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-33.5 + rot: -1.5707963267948966 rad + pos: -71.5,-26.5 parent: 2 - uid: 6041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-33.5 + rot: -1.5707963267948966 rad + pos: -70.5,-26.5 parent: 2 - uid: 6042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-33.5 + pos: -121.5,-16.5 parent: 2 - uid: 6043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-34.5 + pos: -121.5,-17.5 parent: 2 - uid: 6044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-35.5 + pos: -121.5,-18.5 parent: 2 - uid: 6045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-36.5 + pos: -121.5,-19.5 parent: 2 - uid: 6046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-32.5 + pos: -121.5,-20.5 parent: 2 - uid: 6047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-33.5 + pos: -120.5,-20.5 parent: 2 - uid: 6048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-34.5 + pos: -119.5,-20.5 parent: 2 - uid: 6049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-35.5 + pos: -118.5,-20.5 parent: 2 - uid: 6050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-36.5 + pos: -117.5,-20.5 parent: 2 - uid: 6051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-33.5 + pos: -115.5,-20.5 parent: 2 - uid: 6052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-33.5 + pos: -114.5,-20.5 parent: 2 - uid: 6053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-34.5 + pos: -114.5,-21.5 parent: 2 - uid: 6054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-35.5 + pos: -113.5,-21.5 parent: 2 - uid: 6055 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-36.5 + pos: -112.5,-21.5 parent: 2 - uid: 6056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-32.5 + pos: -111.5,-21.5 parent: 2 - uid: 6057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-30.5 + pos: -110.5,-21.5 parent: 2 - uid: 6058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-29.5 + pos: -109.5,-21.5 parent: 2 - uid: 6059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-29.5 + pos: -109.5,-20.5 parent: 2 - uid: 6060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-28.5 + pos: -109.5,-18.5 parent: 2 - uid: 6061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-27.5 + pos: -108.5,-18.5 parent: 2 - uid: 6062 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-26.5 + pos: -107.5,-18.5 parent: 2 - uid: 6063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-26.5 + pos: -106.5,-18.5 parent: 2 - uid: 6064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-27.5 + pos: -105.5,-18.5 parent: 2 - uid: 6065 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-28.5 + pos: -105.5,-19.5 parent: 2 - uid: 6066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-29.5 + pos: -105.5,-20.5 parent: 2 - uid: 6067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-29.5 + pos: -105.5,-21.5 parent: 2 - uid: 6068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-28.5 + pos: -104.5,-21.5 parent: 2 - uid: 6069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-27.5 + pos: -103.5,-21.5 parent: 2 - uid: 6070 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-26.5 + pos: -103.5,-20.5 parent: 2 - uid: 6071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-26.5 + pos: -102.5,-20.5 parent: 2 - uid: 6072 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-27.5 + pos: -101.5,-20.5 parent: 2 - uid: 6073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-28.5 + pos: -99.5,-20.5 parent: 2 - uid: 6074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-29.5 + pos: -99.5,-21.5 parent: 2 - uid: 6075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-29.5 + pos: -98.5,-20.5 parent: 2 - uid: 6076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-30.5 + pos: -98.5,-19.5 parent: 2 - uid: 6077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-26.5 + pos: -98.5,-18.5 parent: 2 - uid: 6078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-27.5 + pos: -97.5,-18.5 parent: 2 - uid: 6079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-28.5 + pos: -96.5,-18.5 parent: 2 - uid: 6080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-29.5 + pos: -95.5,-18.5 parent: 2 - uid: 6081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-29.5 + pos: -95.5,-17.5 parent: 2 - uid: 6082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-29.5 + pos: -95.5,-16.5 parent: 2 - uid: 6083 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-28.5 + pos: -93.5,-16.5 parent: 2 - uid: 6084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-27.5 + pos: -92.5,-16.5 parent: 2 - uid: 6085 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-26.5 + pos: -92.5,-17.5 parent: 2 - uid: 6086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-30.5 + pos: -92.5,-18.5 parent: 2 - uid: 6087 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-33.5 + pos: -91.5,-18.5 parent: 2 - uid: 6088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-34.5 + pos: -90.5,-18.5 parent: 2 - uid: 6089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-35.5 + pos: -89.5,-18.5 parent: 2 - uid: 6090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-36.5 + pos: -88.5,-18.5 parent: 2 - uid: 6091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-36.5 + pos: -87.5,-18.5 parent: 2 - uid: 6092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-35.5 + pos: -86.5,-18.5 parent: 2 - uid: 6093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-34.5 + pos: -85.5,-18.5 parent: 2 - uid: 6094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-33.5 + pos: -84.5,-18.5 parent: 2 - uid: 6095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-33.5 + pos: -84.5,-19.5 parent: 2 - uid: 6096 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-32.5 + pos: -83.5,-19.5 parent: 2 - uid: 6097 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-30.5 + pos: -82.5,-19.5 parent: 2 - uid: 6098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-30.5 + pos: -80.5,-19.5 parent: 2 - uid: 6099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-31.5 + pos: -79.5,-19.5 parent: 2 - uid: 6100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-31.5 + pos: -78.5,-19.5 parent: 2 - uid: 6101 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,-36.5 + pos: -77.5,-19.5 parent: 2 - uid: 6102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,-35.5 + pos: -77.5,-20.5 parent: 2 - uid: 6103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,-34.5 + pos: -77.5,-21.5 parent: 2 - uid: 6104 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,-33.5 + pos: -77.5,-22.5 parent: 2 - uid: 6105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,-33.5 + pos: -77.5,-23.5 parent: 2 - uid: 6106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,-32.5 + pos: -77.5,-24.5 parent: 2 - uid: 6107 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-36.5 + pos: -76.5,-23.5 parent: 2 - uid: 6108 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-35.5 + pos: -74.5,-23.5 parent: 2 - uid: 6109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-34.5 + pos: -73.5,-23.5 parent: 2 - uid: 6110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-33.5 + pos: -72.5,-23.5 parent: 2 - uid: 6111 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,-36.5 + pos: -71.5,-23.5 parent: 2 - uid: 6112 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,-35.5 + pos: -70.5,-23.5 parent: 2 - uid: 6113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,-34.5 + pos: -70.5,-24.5 parent: 2 - uid: 6114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,-33.5 + pos: -57.5,-19.5 parent: 2 - uid: 6115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -111.5,-33.5 + pos: -57.5,-18.5 parent: 2 - uid: 6116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,-33.5 + pos: -56.5,-18.5 parent: 2 - uid: 6117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,-34.5 + pos: -55.5,-18.5 parent: 2 - uid: 6118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,-35.5 + pos: -54.5,-18.5 parent: 2 - uid: 6119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,-36.5 + pos: -53.5,-18.5 parent: 2 - uid: 6120 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -111.5,-32.5 + pos: -52.5,-18.5 parent: 2 - uid: 6121 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -108.5,-36.5 + pos: -50.5,-18.5 parent: 2 - uid: 6122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -108.5,-35.5 + pos: -49.5,-18.5 parent: 2 - uid: 6123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -108.5,-34.5 + pos: -49.5,-19.5 parent: 2 - uid: 6124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -108.5,-33.5 + pos: -49.5,-20.5 parent: 2 - uid: 6125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-36.5 + pos: -49.5,-21.5 parent: 2 - uid: 6126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-35.5 + pos: -48.5,-21.5 parent: 2 - uid: 6127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-34.5 + pos: -47.5,-21.5 parent: 2 - uid: 6128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-33.5 + pos: -46.5,-21.5 parent: 2 - uid: 6129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -107.5,-33.5 + pos: -46.5,-22.5 parent: 2 - uid: 6130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -107.5,-32.5 + pos: -45.5,-22.5 parent: 2 - uid: 6131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,-28.5 + pos: -44.5,-22.5 parent: 2 - uid: 6132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,-29.5 + pos: -43.5,-22.5 parent: 2 - uid: 6133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-26.5 + pos: -42.5,-22.5 parent: 2 - uid: 6134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-27.5 + pos: -41.5,-22.5 parent: 2 - uid: 6135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-28.5 + pos: -40.5,-22.5 parent: 2 - uid: 6136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-29.5 + pos: -40.5,-21.5 parent: 2 - uid: 6137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -108.5,-26.5 + pos: -39.5,-21.5 parent: 2 - uid: 6138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -108.5,-27.5 + pos: -38.5,-21.5 parent: 2 - uid: 6139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -108.5,-28.5 + pos: -38.5,-22.5 parent: 2 - uid: 6140 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -108.5,-29.5 + pos: -39.5,-19.5 parent: 2 - uid: 6141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -107.5,-29.5 + pos: -39.5,-18.5 parent: 2 - uid: 6142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -107.5,-30.5 + pos: -39.5,-17.5 parent: 2 - uid: 6143 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -111.5,-30.5 + pos: -39.5,-16.5 parent: 2 - uid: 6144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -111.5,-29.5 + pos: -39.5,-15.5 parent: 2 - uid: 6145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,-29.5 + pos: -39.5,12.5 parent: 2 - uid: 6146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,-28.5 + pos: -40.5,12.5 parent: 2 - uid: 6147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,-27.5 + pos: -41.5,12.5 parent: 2 - uid: 6148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,-26.5 + pos: -42.5,12.5 parent: 2 - uid: 6149 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,-26.5 + pos: -43.5,12.5 parent: 2 - uid: 6150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,-27.5 + pos: -44.5,12.5 parent: 2 - uid: 6151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,-28.5 + pos: -45.5,12.5 parent: 2 - uid: 6152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,-29.5 + pos: -46.5,12.5 parent: 2 - uid: 6153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,-30.5 + pos: -46.5,11.5 parent: 2 - uid: 6154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,-29.5 + pos: -47.5,11.5 parent: 2 - uid: 6155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-29.5 + pos: -48.5,11.5 parent: 2 - uid: 6156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-28.5 + pos: -49.5,11.5 parent: 2 - uid: 6157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-27.5 + pos: -50.5,11.5 parent: 2 - uid: 6158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-26.5 + pos: -51.5,11.5 parent: 2 - uid: 6159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,-26.5 + pos: -52.5,11.5 parent: 2 - uid: 6160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,-27.5 + pos: -53.5,11.5 parent: 2 - uid: 6161 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,-28.5 + pos: -54.5,11.5 parent: 2 - uid: 6162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,-29.5 + pos: -55.5,11.5 parent: 2 - uid: 6163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,-31.5 + pos: -61.5,11.5 parent: 2 - uid: 6164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,-31.5 + pos: -62.5,11.5 parent: 2 - uid: 6165 components: - type: Transform - pos: -139.5,11.5 + pos: -63.5,11.5 parent: 2 - uid: 6166 components: - type: Transform - pos: -139.5,12.5 + pos: -63.5,12.5 parent: 2 - uid: 6167 components: - type: Transform - pos: -139.5,13.5 + pos: -63.5,13.5 parent: 2 - uid: 6168 components: - type: Transform - pos: -139.5,14.5 + pos: -63.5,14.5 parent: 2 - uid: 6169 components: - type: Transform - pos: -138.5,15.5 + pos: -64.5,14.5 parent: 2 - uid: 6170 components: - type: Transform - pos: -138.5,14.5 + pos: -65.5,14.5 parent: 2 - uid: 6171 components: - type: Transform - pos: -137.5,14.5 + pos: -66.5,14.5 parent: 2 - uid: 6172 components: - type: Transform - pos: -137.5,13.5 + pos: -66.5,15.5 parent: 2 - uid: 6173 components: - type: Transform - pos: -137.5,12.5 + pos: -67.5,15.5 parent: 2 - uid: 6174 components: - type: Transform - pos: -137.5,11.5 + pos: -68.5,15.5 parent: 2 - uid: 6175 components: - type: Transform - pos: -135.5,11.5 + pos: -69.5,15.5 parent: 2 - uid: 6176 components: - type: Transform - pos: -135.5,12.5 + pos: -69.5,14.5 parent: 2 - uid: 6177 components: - type: Transform - pos: -135.5,13.5 + pos: -70.5,14.5 parent: 2 - uid: 6178 components: - type: Transform - pos: -135.5,14.5 + pos: -71.5,14.5 parent: 2 - uid: 6179 components: - type: Transform - pos: -133.5,14.5 + pos: -71.5,15.5 parent: 2 - uid: 6180 components: - type: Transform - pos: -134.5,14.5 + pos: -72.5,15.5 parent: 2 - uid: 6181 components: - type: Transform - pos: -133.5,13.5 + pos: -73.5,15.5 parent: 2 - uid: 6182 components: - type: Transform - pos: -133.5,12.5 + pos: -73.5,14.5 parent: 2 - uid: 6183 components: - type: Transform - pos: -133.5,11.5 + pos: -73.5,13.5 parent: 2 - uid: 6184 components: - type: Transform - pos: -134.5,15.5 + pos: -74.5,13.5 parent: 2 - uid: 6185 components: - type: Transform - pos: -136.5,17.5 + pos: -75.5,13.5 parent: 2 - uid: 6186 components: - type: Transform - pos: -136.5,18.5 + pos: -76.5,13.5 parent: 2 - uid: 6187 components: - type: Transform - pos: -137.5,18.5 + pos: -77.5,13.5 parent: 2 - uid: 6188 components: - type: Transform - pos: -137.5,19.5 + pos: -78.5,13.5 parent: 2 - uid: 6189 components: - type: Transform - pos: -137.5,20.5 + pos: -79.5,13.5 parent: 2 - uid: 6190 components: - type: Transform - pos: -137.5,21.5 + pos: -79.5,12.5 parent: 2 - uid: 6191 components: - type: Transform - pos: -135.5,21.5 + pos: -79.5,11.5 parent: 2 - uid: 6192 components: - type: Transform - pos: -135.5,20.5 + pos: -39.5,13.5 parent: 2 - uid: 6193 components: - type: Transform - pos: -135.5,19.5 + pos: -38.5,14.5 parent: 2 - uid: 6194 components: - type: Transform - pos: -135.5,18.5 + pos: -39.5,15.5 parent: 2 - uid: 6195 components: - type: Transform - pos: -133.5,18.5 + pos: -39.5,16.5 parent: 2 - uid: 6196 components: - type: Transform - pos: -133.5,19.5 + pos: -38.5,16.5 parent: 2 - uid: 6197 components: - type: Transform - pos: -133.5,20.5 + pos: -39.5,14.5 parent: 2 - uid: 6198 components: - type: Transform - pos: -133.5,21.5 + pos: -37.5,14.5 parent: 2 - uid: 6199 components: - type: Transform - pos: -132.5,18.5 + pos: -36.5,14.5 parent: 2 - uid: 6200 components: - type: Transform - pos: -132.5,17.5 + pos: -35.5,14.5 parent: 2 - uid: 6201 components: - type: Transform - pos: -131.5,18.5 + pos: -35.5,13.5 parent: 2 - uid: 6202 components: - type: Transform - pos: -131.5,19.5 + pos: -35.5,12.5 parent: 2 - uid: 6203 components: - type: Transform - pos: -131.5,20.5 + pos: -35.5,11.5 parent: 2 - uid: 6204 components: - type: Transform - pos: -131.5,21.5 + pos: -34.5,11.5 parent: 2 - uid: 6205 components: - type: Transform - pos: -131.5,13.5 + pos: -33.5,11.5 parent: 2 - uid: 6206 components: - type: Transform - pos: -131.5,12.5 + pos: -32.5,11.5 parent: 2 - uid: 6207 components: - type: Transform - pos: -131.5,11.5 + pos: -31.5,11.5 parent: 2 - uid: 6208 components: - type: Transform - pos: -131.5,14.5 + pos: -30.5,11.5 parent: 2 - uid: 6209 components: - type: Transform - pos: -130.5,14.5 + pos: -29.5,11.5 parent: 2 - uid: 6210 components: - type: Transform - pos: -130.5,15.5 + pos: -28.5,11.5 parent: 2 - uid: 6211 components: - type: Transform - pos: -129.5,14.5 + pos: -27.5,11.5 parent: 2 - uid: 6212 components: - type: Transform - pos: -129.5,13.5 + pos: -26.5,11.5 parent: 2 - uid: 6213 components: - type: Transform - pos: -129.5,12.5 + pos: -25.5,11.5 parent: 2 - uid: 6214 components: - type: Transform - pos: -129.5,11.5 + pos: -24.5,11.5 parent: 2 - uid: 6215 components: - type: Transform - pos: -129.5,21.5 + pos: -24.5,10.5 parent: 2 - uid: 6216 components: - type: Transform - pos: -129.5,20.5 + pos: -24.5,9.5 parent: 2 - uid: 6217 components: - type: Transform - pos: -129.5,19.5 + pos: -24.5,8.5 parent: 2 - uid: 6218 components: - type: Transform - pos: -129.5,18.5 + pos: -24.5,7.5 parent: 2 - uid: 6219 components: - type: Transform - pos: -128.5,18.5 + pos: -13.5,10.5 parent: 2 - uid: 6220 components: - type: Transform - pos: -128.5,17.5 + pos: -13.5,7.5 parent: 2 - uid: 6221 components: - type: Transform - pos: -127.5,18.5 + pos: -13.5,8.5 parent: 2 - uid: 6222 components: - type: Transform - pos: -127.5,19.5 + pos: -13.5,9.5 parent: 2 - uid: 6223 components: - type: Transform - pos: -127.5,20.5 + rot: 1.5707963267948966 rad + pos: -59.5,22.5 parent: 2 - uid: 6224 components: - type: Transform - pos: -127.5,21.5 + pos: -130.5,-13.5 parent: 2 - uid: 6225 components: - type: Transform - pos: -132.5,24.5 + pos: -123.5,-16.5 parent: 2 - uid: 6226 components: - type: Transform - pos: -132.5,23.5 + pos: -124.5,-16.5 parent: 2 - uid: 6227 components: - type: Transform - pos: -100.5,-24.5 + pos: -122.5,-16.5 parent: 2 - uid: 6228 components: - type: Transform - pos: -77.5,-10.5 + pos: -124.5,-15.5 parent: 2 - uid: 6229 components: - type: Transform - pos: -74.5,-10.5 + pos: -124.5,-14.5 parent: 2 - uid: 6230 components: - type: Transform - pos: -73.5,-10.5 + pos: -125.5,-14.5 parent: 2 - uid: 6231 components: - type: Transform - pos: -73.5,-9.5 + pos: -130.5,-11.5 parent: 2 - uid: 6232 components: - type: Transform - pos: -73.5,-8.5 + pos: -130.5,-9.5 parent: 2 - uid: 6233 components: - type: Transform - pos: -73.5,-7.5 + rot: 1.5707963267948966 rad + pos: -59.5,21.5 parent: 2 - uid: 6234 components: - type: Transform - pos: -73.5,-6.5 + rot: 1.5707963267948966 rad + pos: -60.5,16.5 parent: 2 - uid: 6235 components: - type: Transform - pos: -73.5,-5.5 + rot: 1.5707963267948966 rad + pos: -60.5,15.5 parent: 2 - uid: 6236 components: - type: Transform - pos: -73.5,-4.5 + rot: 1.5707963267948966 rad + pos: -58.5,18.5 parent: 2 - uid: 6237 components: - type: Transform - pos: -74.5,-8.5 + rot: 1.5707963267948966 rad + pos: -58.5,19.5 parent: 2 - uid: 6238 components: - type: Transform - pos: -75.5,-8.5 + rot: 1.5707963267948966 rad + pos: -58.5,20.5 parent: 2 - uid: 6239 components: - type: Transform - pos: -76.5,-8.5 + rot: 1.5707963267948966 rad + pos: -59.5,20.5 parent: 2 - uid: 6240 components: - type: Transform - pos: -78.5,-8.5 + rot: 1.5707963267948966 rad + pos: -59.5,19.5 parent: 2 - uid: 6241 components: - type: Transform - pos: -79.5,-8.5 + rot: 1.5707963267948966 rad + pos: -59.5,18.5 parent: 2 - uid: 6242 components: - type: Transform - pos: -80.5,-8.5 + rot: 1.5707963267948966 rad + pos: -58.5,21.5 parent: 2 - uid: 6243 components: - type: Transform - pos: -81.5,-8.5 + rot: 1.5707963267948966 rad + pos: -58.5,22.5 parent: 2 - uid: 6244 components: - type: Transform - pos: -77.5,-9.5 + rot: 1.5707963267948966 rad + pos: -56.5,22.5 parent: 2 - uid: 6245 components: - type: Transform - pos: -73.5,-2.5 + rot: 1.5707963267948966 rad + pos: -56.5,21.5 parent: 2 - uid: 6246 components: - type: Transform - pos: -73.5,-1.5 + rot: 1.5707963267948966 rad + pos: -56.5,20.5 parent: 2 - uid: 6247 components: - type: Transform - pos: -73.5,2.5 + rot: 1.5707963267948966 rad + pos: -55.5,22.5 parent: 2 - uid: 6248 components: - type: Transform - pos: -73.5,0.5 + rot: 1.5707963267948966 rad + pos: -55.5,21.5 parent: 2 - uid: 6249 components: - type: Transform - pos: -73.5,1.5 + rot: 1.5707963267948966 rad + pos: -55.5,20.5 parent: 2 - uid: 6250 components: - type: Transform - pos: -73.5,3.5 + rot: 1.5707963267948966 rad + pos: -54.5,22.5 parent: 2 - uid: 6251 components: - type: Transform - pos: -74.5,3.5 + rot: 1.5707963267948966 rad + pos: -54.5,21.5 parent: 2 - uid: 6252 components: - type: Transform - pos: -75.5,3.5 + rot: 1.5707963267948966 rad + pos: -54.5,20.5 parent: 2 - uid: 6253 components: - type: Transform - pos: -76.5,3.5 + rot: 1.5707963267948966 rad + pos: -53.5,20.5 parent: 2 - uid: 6254 components: - type: Transform - pos: -77.5,3.5 + rot: 1.5707963267948966 rad + pos: -52.5,20.5 parent: 2 - uid: 6255 components: - type: Transform - pos: -77.5,2.5 + rot: 1.5707963267948966 rad + pos: -56.5,19.5 parent: 2 - uid: 6256 components: - type: Transform - pos: -77.5,1.5 + rot: 1.5707963267948966 rad + pos: -56.5,18.5 parent: 2 - uid: 6257 components: - type: Transform - pos: -76.5,1.5 + rot: 1.5707963267948966 rad + pos: -56.5,17.5 parent: 2 - uid: 6258 components: - type: Transform - pos: -78.5,1.5 + rot: 1.5707963267948966 rad + pos: -56.5,16.5 parent: 2 - uid: 6259 components: - type: Transform - pos: -79.5,1.5 + rot: 1.5707963267948966 rad + pos: -56.5,15.5 parent: 2 - uid: 6260 components: - type: Transform - pos: -80.5,1.5 + rot: 1.5707963267948966 rad + pos: -57.5,15.5 parent: 2 - uid: 6261 components: - type: Transform - pos: -81.5,1.5 + rot: 1.5707963267948966 rad + pos: -57.5,16.5 parent: 2 - uid: 6262 components: - type: Transform - pos: -81.5,0.5 + rot: 1.5707963267948966 rad + pos: -61.5,15.5 parent: 2 - uid: 6263 components: - type: Transform - pos: -81.5,-0.5 + rot: 1.5707963267948966 rad + pos: -61.5,16.5 parent: 2 - uid: 6264 components: - type: Transform - pos: -81.5,-1.5 + rot: 1.5707963267948966 rad + pos: -61.5,17.5 parent: 2 - uid: 6265 components: - type: Transform - pos: -82.5,-1.5 + rot: 1.5707963267948966 rad + pos: -61.5,18.5 parent: 2 - uid: 6266 components: - type: Transform - pos: -82.5,-5.5 + rot: 1.5707963267948966 rad + pos: -65.5,20.5 parent: 2 - uid: 6267 components: - type: Transform - pos: -81.5,-5.5 + rot: 1.5707963267948966 rad + pos: -65.5,21.5 parent: 2 - uid: 6268 components: - type: Transform - pos: -81.5,-6.5 + rot: 1.5707963267948966 rad + pos: -65.5,22.5 parent: 2 - uid: 6269 components: - type: Transform - pos: -81.5,-7.5 + rot: 1.5707963267948966 rad + pos: -64.5,20.5 parent: 2 - uid: 6270 components: - type: Transform - pos: -122.5,6.5 + rot: 1.5707963267948966 rad + pos: -64.5,21.5 parent: 2 - uid: 6271 components: - type: Transform - pos: -124.5,6.5 + rot: 1.5707963267948966 rad + pos: -64.5,22.5 parent: 2 - uid: 6272 components: - type: Transform - pos: -123.5,6.5 + rot: 1.5707963267948966 rad + pos: -69.5,20.5 parent: 2 - uid: 6273 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,18.5 + pos: -69.5,21.5 parent: 2 - uid: 6274 components: - type: Transform - pos: -74.5,0.5 + rot: 1.5707963267948966 rad + pos: -70.5,20.5 parent: 2 - uid: 6275 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,24.5 + pos: -70.5,21.5 parent: 2 - uid: 6276 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,24.5 + pos: -71.5,20.5 parent: 2 - uid: 6277 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,24.5 + pos: -71.5,21.5 parent: 2 - uid: 6278 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,24.5 + pos: -72.5,20.5 parent: 2 - uid: 6279 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,25.5 + pos: -72.5,21.5 parent: 2 - uid: 6280 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,26.5 + pos: -73.5,20.5 parent: 2 - uid: 6281 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,26.5 + pos: -73.5,21.5 parent: 2 - uid: 6282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,26.5 + pos: -61.5,-8.5 parent: 2 - uid: 6283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,26.5 + pos: -78.5,21.5 parent: 2 - uid: 6284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,25.5 + pos: -78.5,20.5 parent: 2 - uid: 6285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,27.5 + pos: -77.5,21.5 parent: 2 - uid: 6286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,26.5 + pos: -77.5,20.5 parent: 2 - uid: 6287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,26.5 + pos: -76.5,20.5 parent: 2 - uid: 6288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,26.5 + pos: -76.5,19.5 parent: 2 - uid: 6289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,26.5 + pos: -76.5,18.5 parent: 2 - uid: 6290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,26.5 + pos: -75.5,17.5 parent: 2 - uid: 6291 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,25.5 + pos: -75.5,18.5 parent: 2 - uid: 6292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,25.5 + pos: -74.5,18.5 parent: 2 - uid: 6293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,24.5 + pos: -75.5,19.5 parent: 2 - uid: 6294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,24.5 + pos: -80.5,17.5 parent: 2 - uid: 6295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,24.5 + pos: -82.5,16.5 parent: 2 - uid: 6296 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,24.5 + pos: -83.5,18.5 parent: 2 - uid: 6297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,21.5 + pos: -81.5,16.5 parent: 2 - uid: 6298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,22.5 + pos: -83.5,19.5 parent: 2 - uid: 6299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,22.5 + pos: -82.5,20.5 parent: 2 - uid: 6300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,22.5 + pos: -173.5,-7.5 parent: 2 - uid: 6301 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,22.5 + pos: -173.5,-6.5 parent: 2 - uid: 6302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,20.5 + pos: -130.5,-12.5 parent: 2 - uid: 6303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,20.5 + pos: -130.5,-10.5 parent: 2 - uid: 6304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,20.5 + pos: -117.5,-18.5 parent: 2 - uid: 6305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,20.5 + rot: -1.5707963267948966 rad + pos: -125.5,7.5 parent: 2 - uid: 6306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,21.5 + rot: -1.5707963267948966 rad + pos: -125.5,6.5 parent: 2 - uid: 6307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,21.5 + rot: -1.5707963267948966 rad + pos: -126.5,6.5 parent: 2 - uid: 6308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,21.5 + rot: -1.5707963267948966 rad + pos: -127.5,3.5 parent: 2 - uid: 6309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,22.5 + rot: -1.5707963267948966 rad + pos: -127.5,6.5 parent: 2 - uid: 6310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,22.5 + rot: -1.5707963267948966 rad + pos: -127.5,5.5 parent: 2 - uid: 6311 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,22.5 + pos: -37.5,-35.5 parent: 2 - uid: 6312 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,22.5 + pos: -37.5,-36.5 parent: 2 - uid: 6313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,20.5 + rot: -1.5707963267948966 rad + pos: -127.5,4.5 parent: 2 - uid: 6314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,20.5 + rot: -1.5707963267948966 rad + pos: -127.5,2.5 parent: 2 - uid: 6315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,20.5 + pos: -99.5,-23.5 parent: 2 - uid: 6316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,20.5 + pos: -100.5,-23.5 parent: 2 - uid: 6317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,18.5 + pos: -101.5,-23.5 parent: 2 - uid: 6318 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,18.5 + pos: -37.5,-33.5 parent: 2 - uid: 6319 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,18.5 + pos: -39.5,-29.5 parent: 2 - uid: 6320 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,16.5 + pos: -35.5,-34.5 parent: 2 - uid: 6321 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,16.5 + pos: -37.5,-34.5 parent: 2 - uid: 6322 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,16.5 + pos: -35.5,-35.5 parent: 2 - uid: 6323 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,16.5 + pos: -35.5,-36.5 parent: 2 - uid: 6324 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,17.5 + pos: -36.5,-33.5 parent: 2 - uid: 6325 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,17.5 + pos: -36.5,-32.5 parent: 2 - uid: 6326 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,17.5 + pos: -33.5,-36.5 parent: 2 - uid: 6327 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,18.5 + pos: -33.5,-35.5 parent: 2 - uid: 6328 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,18.5 + pos: -33.5,-34.5 parent: 2 - uid: 6329 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,18.5 + pos: -33.5,-33.5 parent: 2 - uid: 6330 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,18.5 + pos: -32.5,-33.5 parent: 2 - uid: 6331 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,17.5 + pos: -31.5,-33.5 parent: 2 - uid: 6332 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,16.5 + pos: -31.5,-34.5 parent: 2 - uid: 6333 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,16.5 + pos: -31.5,-35.5 parent: 2 - uid: 6334 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,16.5 + pos: -31.5,-36.5 parent: 2 - uid: 6335 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,16.5 + pos: -32.5,-32.5 parent: 2 - uid: 6336 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-10.5 + rot: 1.5707963267948966 rad + pos: -29.5,-33.5 parent: 2 - uid: 6337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -120.5,-14.5 + rot: 1.5707963267948966 rad + pos: -29.5,-34.5 parent: 2 - uid: 6338 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,-25.5 + rot: 1.5707963267948966 rad + pos: -29.5,-35.5 parent: 2 - uid: 6339 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,-23.5 + rot: 1.5707963267948966 rad + pos: -29.5,-36.5 parent: 2 - uid: 6340 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-22.5 + rot: 1.5707963267948966 rad + pos: -28.5,-33.5 parent: 2 - uid: 6341 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,-21.5 + rot: 1.5707963267948966 rad + pos: -27.5,-33.5 parent: 2 - uid: 6342 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-23.5 + rot: 1.5707963267948966 rad + pos: -27.5,-34.5 parent: 2 - uid: 6343 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-24.5 + rot: 1.5707963267948966 rad + pos: -27.5,-35.5 parent: 2 - uid: 6344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -121.5,-14.5 + rot: 1.5707963267948966 rad + pos: -27.5,-36.5 parent: 2 - uid: 6345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,-14.5 + rot: 1.5707963267948966 rad + pos: -28.5,-32.5 parent: 2 - uid: 6346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -120.5,-16.5 + rot: 1.5707963267948966 rad + pos: -28.5,-30.5 parent: 2 - uid: 6347 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.5,-20.5 + rot: 1.5707963267948966 rad + pos: -28.5,-29.5 parent: 2 - uid: 6348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -123.5,-20.5 + rot: 1.5707963267948966 rad + pos: -29.5,-29.5 parent: 2 - uid: 6349 components: - type: Transform - pos: -97.5,-14.5 + rot: 1.5707963267948966 rad + pos: -29.5,-28.5 parent: 2 - uid: 6350 components: - type: Transform - pos: -36.5,16.5 + rot: 1.5707963267948966 rad + pos: -29.5,-27.5 parent: 2 - uid: 6351 components: - type: Transform - pos: -35.5,16.5 + rot: 1.5707963267948966 rad + pos: -29.5,-26.5 parent: 2 - uid: 6352 components: - type: Transform - pos: -95.5,-15.5 + rot: 1.5707963267948966 rad + pos: -27.5,-26.5 parent: 2 - uid: 6353 components: - type: Transform - pos: -96.5,-14.5 + rot: 1.5707963267948966 rad + pos: -27.5,-27.5 parent: 2 - uid: 6354 components: - type: Transform - pos: -96.5,-15.5 + rot: 1.5707963267948966 rad + pos: -27.5,-28.5 parent: 2 - uid: 6355 components: - type: Transform - pos: -98.5,-14.5 + rot: 1.5707963267948966 rad + pos: -27.5,-29.5 parent: 2 - uid: 6356 components: - type: Transform - pos: -98.5,-13.5 + rot: 1.5707963267948966 rad + pos: -31.5,-29.5 parent: 2 - uid: 6357 components: - type: Transform - pos: -98.5,-12.5 + rot: 1.5707963267948966 rad + pos: -31.5,-28.5 parent: 2 - uid: 6358 components: - type: Transform - pos: -98.5,-11.5 + rot: 1.5707963267948966 rad + pos: -31.5,-27.5 parent: 2 - uid: 6359 components: - type: Transform - pos: -99.5,-11.5 + rot: 1.5707963267948966 rad + pos: -31.5,-26.5 parent: 2 - uid: 6360 components: - type: Transform - pos: -100.5,-11.5 + rot: 1.5707963267948966 rad + pos: -33.5,-26.5 parent: 2 - uid: 6361 components: - type: Transform - pos: -100.5,-10.5 + rot: 1.5707963267948966 rad + pos: -33.5,-27.5 parent: 2 - uid: 6362 components: - type: Transform - pos: -100.5,-9.5 + rot: 1.5707963267948966 rad + pos: -33.5,-28.5 parent: 2 - uid: 6363 components: - type: Transform - pos: -100.5,-8.5 + rot: 1.5707963267948966 rad + pos: -33.5,-29.5 parent: 2 - uid: 6364 components: - type: Transform - pos: -100.5,-7.5 + rot: 1.5707963267948966 rad + pos: -32.5,-29.5 parent: 2 - uid: 6365 components: - type: Transform - pos: -100.5,-6.5 + rot: 1.5707963267948966 rad + pos: -32.5,-30.5 parent: 2 - uid: 6366 components: - type: Transform - pos: -62.5,27.5 + rot: 1.5707963267948966 rad + pos: -25.5,-26.5 parent: 2 - uid: 6367 components: - type: Transform - pos: -61.5,27.5 + rot: 1.5707963267948966 rad + pos: -25.5,-27.5 parent: 2 - uid: 6368 components: - type: Transform - pos: -77.5,26.5 + rot: 1.5707963267948966 rad + pos: -25.5,-28.5 parent: 2 - uid: 6369 components: - type: Transform - pos: -55.5,26.5 + rot: 1.5707963267948966 rad + pos: -25.5,-29.5 parent: 2 - uid: 6370 components: - type: Transform - pos: -80.5,26.5 + rot: 1.5707963267948966 rad + pos: -24.5,-29.5 parent: 2 - uid: 6371 components: - type: Transform - pos: -79.5,26.5 + rot: 1.5707963267948966 rad + pos: -23.5,-29.5 parent: 2 - uid: 6372 components: - type: Transform - pos: -78.5,26.5 + rot: 1.5707963267948966 rad + pos: -23.5,-28.5 parent: 2 - uid: 6373 components: - type: Transform - pos: -81.5,26.5 + rot: 1.5707963267948966 rad + pos: -23.5,-27.5 parent: 2 - uid: 6374 components: - type: Transform - pos: -82.5,17.5 + rot: 1.5707963267948966 rad + pos: -23.5,-26.5 parent: 2 - uid: 6375 components: - type: Transform - pos: -83.5,20.5 + rot: 1.5707963267948966 rad + pos: -24.5,-30.5 parent: 2 - uid: 6376 components: - type: Transform - pos: -82.5,-18.5 + rot: 1.5707963267948966 rad + pos: -25.5,-33.5 parent: 2 - uid: 6377 components: - type: Transform - pos: -81.5,-18.5 + rot: 1.5707963267948966 rad + pos: -25.5,-34.5 parent: 2 - uid: 6378 components: - type: Transform - pos: -80.5,-18.5 + rot: 1.5707963267948966 rad + pos: -25.5,-35.5 parent: 2 - uid: 6379 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -127.5,1.5 + rot: 1.5707963267948966 rad + pos: -25.5,-36.5 parent: 2 - uid: 6380 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,16.5 + pos: -23.5,-36.5 parent: 2 - uid: 6381 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,17.5 + pos: -23.5,-35.5 parent: 2 - uid: 6382 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,17.5 + pos: -23.5,-34.5 parent: 2 - uid: 6383 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,16.5 + pos: -23.5,-33.5 parent: 2 - uid: 6384 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,15.5 + pos: -24.5,-33.5 parent: 2 - uid: 6385 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,15.5 + pos: -24.5,-32.5 parent: 2 - uid: 6386 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,13.5 + pos: -39.5,-30.5 parent: 2 - uid: 6387 components: - type: Transform rot: 1.5707963267948966 rad - pos: -119.5,-16.5 + pos: -38.5,-30.5 parent: 2 - uid: 6388 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,10.5 + pos: -38.5,-31.5 parent: 2 - uid: 6389 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,14.5 + rot: 1.5707963267948966 rad + pos: -22.5,-31.5 parent: 2 - uid: 6390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,14.5 + rot: 1.5707963267948966 rad + pos: -116.5,-36.5 parent: 2 - uid: 6391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,14.5 + rot: 1.5707963267948966 rad + pos: -116.5,-35.5 parent: 2 - uid: 6392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,14.5 + rot: 1.5707963267948966 rad + pos: -116.5,-34.5 parent: 2 - uid: 6393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,13.5 + rot: 1.5707963267948966 rad + pos: -116.5,-33.5 parent: 2 - uid: 6394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,14.5 + rot: 1.5707963267948966 rad + pos: -115.5,-33.5 parent: 2 - uid: 6395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,13.5 + rot: 1.5707963267948966 rad + pos: -115.5,-32.5 parent: 2 - uid: 6396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,12.5 + rot: 1.5707963267948966 rad + pos: -114.5,-36.5 parent: 2 - uid: 6397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,11.5 + rot: 1.5707963267948966 rad + pos: -114.5,-35.5 parent: 2 - uid: 6398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,11.5 + rot: 1.5707963267948966 rad + pos: -114.5,-34.5 parent: 2 - uid: 6399 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,10.5 + rot: 1.5707963267948966 rad + pos: -114.5,-33.5 parent: 2 - uid: 6400 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,10.5 + rot: 1.5707963267948966 rad + pos: -112.5,-36.5 parent: 2 - - uid: 17069 - components: - - type: Transform - pos: 12.5,-0.5 - parent: 17021 - - uid: 17070 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 17021 - - uid: 17071 - components: - - type: Transform - pos: 13.5,-0.5 - parent: 17021 - - uid: 17072 - components: - - type: Transform - pos: 13.5,-6.5 - parent: 17021 - - uid: 17073 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 17021 -- proto: Chair - entities: - uid: 6401 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,18.5 + rot: 1.5707963267948966 rad + pos: -112.5,-35.5 parent: 2 - uid: 6402 components: - type: Transform - pos: -97.5,-23.5 + rot: 1.5707963267948966 rad + pos: -112.5,-34.5 parent: 2 - uid: 6403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,-6.5 + rot: 1.5707963267948966 rad + pos: -112.5,-33.5 parent: 2 - uid: 6404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,-5.5 + rot: 1.5707963267948966 rad + pos: -111.5,-33.5 parent: 2 - uid: 6405 components: - type: Transform rot: 1.5707963267948966 rad - pos: -112.5,-6.5 + pos: -110.5,-33.5 parent: 2 - uid: 6406 components: - type: Transform rot: 1.5707963267948966 rad - pos: -112.5,-5.5 + pos: -110.5,-34.5 parent: 2 - uid: 6407 components: - type: Transform - pos: -111.5,-7.5 + rot: 1.5707963267948966 rad + pos: -110.5,-35.5 parent: 2 - uid: 6408 components: - type: Transform - pos: -113.5,-7.5 + rot: 1.5707963267948966 rad + pos: -110.5,-36.5 parent: 2 - uid: 6409 components: - type: Transform - rot: 3.141592653589793 rad - pos: -153.5,8.5 + rot: 1.5707963267948966 rad + pos: -111.5,-32.5 parent: 2 - uid: 6410 components: - type: Transform - rot: 3.141592653589793 rad - pos: -157.5,8.5 + rot: 1.5707963267948966 rad + pos: -108.5,-36.5 parent: 2 - uid: 6411 components: - type: Transform - rot: 3.141592653589793 rad - pos: -158.5,8.5 + rot: 1.5707963267948966 rad + pos: -108.5,-35.5 parent: 2 - uid: 6412 components: - type: Transform - rot: 3.141592653589793 rad - pos: -152.5,8.5 + rot: 1.5707963267948966 rad + pos: -108.5,-34.5 parent: 2 - uid: 6413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -197.5,12.5 + rot: 1.5707963267948966 rad + pos: -108.5,-33.5 parent: 2 - uid: 6414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -165.5,0.5 + rot: 1.5707963267948966 rad + pos: -106.5,-36.5 parent: 2 - uid: 6415 components: - type: Transform rot: 1.5707963267948966 rad - pos: -171.5,0.5 + pos: -106.5,-35.5 parent: 2 - uid: 6416 components: - type: Transform - pos: -158.5,-10.5 + rot: 1.5707963267948966 rad + pos: -106.5,-34.5 parent: 2 - uid: 6417 components: - type: Transform - rot: 3.141592653589793 rad - pos: -154.5,14.5 + rot: 1.5707963267948966 rad + pos: -106.5,-33.5 parent: 2 - uid: 6418 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.5,14.5 + rot: 1.5707963267948966 rad + pos: -107.5,-33.5 parent: 2 - uid: 6419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -182.5,-17.5 + rot: 1.5707963267948966 rad + pos: -107.5,-32.5 parent: 2 - uid: 6420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -182.5,-15.5 + rot: 1.5707963267948966 rad + pos: -102.5,-28.5 parent: 2 - uid: 6421 components: - type: Transform rot: 1.5707963267948966 rad - pos: -190.5,-17.5 + pos: -102.5,-29.5 parent: 2 - uid: 6422 components: - type: Transform rot: 1.5707963267948966 rad - pos: -190.5,-15.5 + pos: -106.5,-26.5 parent: 2 - uid: 6423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -178.5,6.5 + rot: 1.5707963267948966 rad + pos: -106.5,-27.5 parent: 2 - uid: 6424 components: - type: Transform rot: 1.5707963267948966 rad - pos: -180.5,6.5 + pos: -106.5,-28.5 parent: 2 - uid: 6425 components: - type: Transform rot: 1.5707963267948966 rad - pos: -180.5,5.5 + pos: -106.5,-29.5 parent: 2 - uid: 6426 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -153.5,-19.5 + rot: 1.5707963267948966 rad + pos: -108.5,-26.5 parent: 2 - uid: 6427 components: - type: Transform rot: 1.5707963267948966 rad - pos: -160.5,-18.5 + pos: -108.5,-27.5 parent: 2 - uid: 6428 components: - type: Transform rot: 1.5707963267948966 rad - pos: -118.5,15.5 + pos: -108.5,-28.5 parent: 2 - uid: 6429 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,14.5 + rot: 1.5707963267948966 rad + pos: -108.5,-29.5 parent: 2 - uid: 6430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,16.5 + rot: 1.5707963267948966 rad + pos: -107.5,-29.5 parent: 2 - uid: 6431 components: - type: Transform - pos: -163.5,5.5 + rot: 1.5707963267948966 rad + pos: -107.5,-30.5 parent: 2 - uid: 6432 components: - type: Transform - rot: 3.141592653589793 rad - pos: -115.5,14.5 + rot: 1.5707963267948966 rad + pos: -111.5,-30.5 parent: 2 - uid: 6433 components: - type: Transform rot: 1.5707963267948966 rad - pos: -92.5,-7.5 + pos: -111.5,-29.5 parent: 2 - uid: 6434 components: - type: Transform rot: 1.5707963267948966 rad - pos: -122.5,10.5 + pos: -110.5,-29.5 parent: 2 - uid: 6435 components: - type: Transform rot: 1.5707963267948966 rad - pos: -122.5,8.5 + pos: -110.5,-28.5 parent: 2 - uid: 6436 components: - type: Transform rot: 1.5707963267948966 rad - pos: -121.5,11.5 + pos: -110.5,-27.5 parent: 2 - uid: 6437 components: - type: Transform rot: 1.5707963267948966 rad - pos: -121.5,7.5 + pos: -110.5,-26.5 parent: 2 - uid: 6438 components: - type: Transform rot: 1.5707963267948966 rad - pos: -121.5,10.5 + pos: -112.5,-26.5 parent: 2 - uid: 6439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,16.5 + rot: 1.5707963267948966 rad + pos: -112.5,-27.5 parent: 2 - uid: 6440 components: - type: Transform rot: 1.5707963267948966 rad - pos: -85.5,16.5 + pos: -112.5,-28.5 parent: 2 -- proto: ChairBrass - entities: - uid: 6441 components: - type: Transform - pos: -125.5,4.5 + rot: 1.5707963267948966 rad + pos: -112.5,-29.5 parent: 2 - uid: 6442 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,2.5 + rot: 1.5707963267948966 rad + pos: -115.5,-30.5 parent: 2 -- proto: ChairFolding - entities: - uid: 6443 components: - type: Transform rot: 1.5707963267948966 rad - pos: -122.5,9.5 + pos: -115.5,-29.5 parent: 2 - uid: 6444 components: - type: Transform rot: 1.5707963267948966 rad - pos: -121.5,8.5 + pos: -114.5,-29.5 parent: 2 - uid: 6445 components: - type: Transform - pos: -172.5,-6.5 + rot: 1.5707963267948966 rad + pos: -114.5,-28.5 parent: 2 -- proto: ChairFoldingSpawnFolded - entities: - uid: 6446 components: - type: Transform rot: 1.5707963267948966 rad - pos: -117.15986,7.5987043 + pos: -114.5,-27.5 parent: 2 -- proto: ChairOfficeDark - entities: - uid: 6447 components: - type: Transform rot: 1.5707963267948966 rad - pos: -147.38953,5.6317034 + pos: -114.5,-26.5 parent: 2 - uid: 6448 components: - type: Transform - pos: -15.4427805,-16.437407 + rot: 1.5707963267948966 rad + pos: -116.5,-26.5 parent: 2 - uid: 6449 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.452566,-10.346932 + rot: 1.5707963267948966 rad + pos: -116.5,-27.5 parent: 2 - uid: 6450 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.484055,-18.664692 + pos: -116.5,-28.5 parent: 2 - uid: 6451 components: - type: Transform - pos: -142.51674,2.547929 + rot: 1.5707963267948966 rad + pos: -116.5,-29.5 parent: 2 - uid: 6452 components: - type: Transform rot: 1.5707963267948966 rad - pos: -167.37854,-12.301772 + pos: -117.5,-31.5 parent: 2 - uid: 6453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-4.5 + rot: 1.5707963267948966 rad + pos: -118.5,-31.5 parent: 2 - uid: 6454 components: - type: Transform - pos: -164.51363,7.6244984 + pos: -139.5,11.5 parent: 2 - uid: 6455 components: - type: Transform - pos: -167.46057,0.6048427 + pos: -139.5,12.5 parent: 2 - uid: 6456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -160.40448,-0.20660853 + pos: -139.5,13.5 parent: 2 - uid: 6457 components: - type: Transform - pos: -155.47432,16.500141 + pos: -139.5,14.5 parent: 2 - uid: 6458 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -175.44298,6.59674 + pos: -138.5,15.5 parent: 2 - uid: 6459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -178.42735,5.612365 + pos: -138.5,14.5 parent: 2 - uid: 6460 components: - type: Transform - pos: -157.53036,10.601954 + pos: -137.5,14.5 parent: 2 - uid: 6461 components: - type: Transform - pos: -153.38974,10.601954 + pos: -137.5,13.5 parent: 2 - uid: 6462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-4.5 + pos: -137.5,12.5 parent: 2 - uid: 6463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-3.5 + pos: -137.5,11.5 parent: 2 - uid: 6464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-3.5 + pos: -135.5,11.5 parent: 2 - uid: 6465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-18.5 + pos: -135.5,12.5 parent: 2 -- proto: ChairOfficeLight - entities: - uid: 6466 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.479475,0.5546675 + pos: -135.5,13.5 parent: 2 - uid: 6467 components: - type: Transform - pos: -190.54907,-25.401455 + pos: -135.5,14.5 parent: 2 - uid: 6468 components: - type: Transform - rot: 3.141592653589793 rad - pos: -200.49757,6.653542 + pos: -133.5,14.5 parent: 2 - uid: 6469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -191.5,-25.5 + pos: -134.5,14.5 parent: 2 -- proto: ChairPilotSeat - entities: - - uid: 17074 - components: - - type: Transform - pos: 10.5,-1.5 - parent: 17021 - - uid: 17075 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 17021 - - uid: 17076 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-4.5 - parent: 17021 - - uid: 17077 - components: - - type: Transform - pos: 12.5,-1.5 - parent: 17021 - - uid: 17078 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-3.5 - parent: 17021 - - uid: 17079 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-2.5 - parent: 17021 -- proto: ChairWood - entities: - uid: 6470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.45739,-11.503813 + pos: -133.5,13.5 parent: 2 - uid: 6471 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.452415,-19.35539 + pos: -133.5,12.5 parent: 2 - uid: 6472 components: - type: Transform - pos: -43.421165,-17.54289 + pos: -133.5,11.5 parent: 2 - uid: 6473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.371357,9.458885 + pos: -134.5,15.5 parent: 2 - uid: 6474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.418232,7.615135 + pos: -136.5,17.5 parent: 2 - uid: 6475 components: - type: Transform - rot: 3.141592653589793 rad - pos: -105.03682,12.775509 + pos: -136.5,18.5 parent: 2 - uid: 6476 components: - type: Transform - pos: -105.021194,14.353634 + pos: -137.5,18.5 parent: 2 - uid: 6477 components: - type: Transform - pos: -41.47759,2.595251 + pos: -137.5,19.5 parent: 2 - uid: 6478 components: - type: Transform - pos: -117.43538,17.465305 + pos: -137.5,20.5 parent: 2 - uid: 6479 components: - type: Transform - pos: -116.513504,17.465305 + pos: -137.5,21.5 parent: 2 - uid: 6480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -111.505005,17.394527 + pos: -135.5,21.5 parent: 2 - uid: 6481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -111.442505,15.5195265 + pos: -135.5,20.5 parent: 2 - uid: 6482 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,7.5 + pos: -135.5,19.5 parent: 2 - uid: 6483 components: - type: Transform - pos: -30.5,9.5 + pos: -135.5,18.5 parent: 2 - uid: 6484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,-1.5 + pos: -133.5,18.5 parent: 2 -- proto: CheapLighter - entities: - uid: 6485 components: - type: Transform - pos: -10.291143,-2.4834661 + pos: -133.5,19.5 parent: 2 -- proto: CheckerBoard - entities: - uid: 6486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -170.4859,0.49424088 + pos: -133.5,20.5 parent: 2 -- proto: chem_master - entities: - uid: 6487 components: - type: Transform - pos: -192.5,-24.5 + pos: -133.5,21.5 + parent: 2 + - uid: 6488 + components: + - type: Transform + pos: -132.5,18.5 parent: 2 -- proto: ChemBag - entities: - uid: 6489 components: - type: Transform - parent: 6488 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -132.5,17.5 + parent: 2 - uid: 6490 components: - type: Transform - parent: 6488 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ChemDispenser - entities: + pos: -131.5,18.5 + parent: 2 + - uid: 6491 + components: + - type: Transform + pos: -131.5,19.5 + parent: 2 - uid: 6492 components: - type: Transform - pos: -192.5,-25.5 + pos: -131.5,20.5 parent: 2 -- proto: ChemDispenserMachineCircuitboard - entities: - uid: 6493 components: - type: Transform - pos: -53.746204,-1.6224241 + pos: -131.5,21.5 parent: 2 -- proto: ChemistryHotplate - entities: - uid: 6494 components: - type: Transform - pos: -191.5,-26.5 + pos: -131.5,13.5 parent: 2 -- proto: ChessBoard - entities: - uid: 6495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -166.4859,0.49424088 + pos: -131.5,12.5 parent: 2 - uid: 6496 components: - type: Transform - pos: -105.06965,13.553126 + pos: -131.5,11.5 parent: 2 - uid: 6497 components: - type: Transform - pos: -154.85652,-18.913103 + pos: -131.5,14.5 parent: 2 -- proto: ChurchOrganInstrument - entities: - uid: 6498 components: - type: Transform - pos: -41.5,1.5 + pos: -130.5,14.5 parent: 2 -- proto: CigarCase - entities: - uid: 6499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -146.71094,4.4203644 + pos: -130.5,15.5 parent: 2 -- proto: CigaretteSyndicate - entities: - uid: 6500 components: - type: Transform - pos: -128.50914,-4.2280707 + pos: -129.5,14.5 parent: 2 -- proto: CigCartonBlack - entities: - uid: 6501 components: - type: Transform - pos: -1.5555989,-7.295767 + pos: -129.5,13.5 parent: 2 -- proto: CigPackGreen - entities: - uid: 6502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.572393,-2.3115911 + pos: -129.5,12.5 parent: 2 -- proto: CircuitImprinter - entities: - uid: 6503 components: - type: Transform - pos: -196.5,19.5 + pos: -129.5,11.5 parent: 2 -- proto: CircuitImprinterMachineCircuitboard - entities: - uid: 6504 components: - type: Transform - pos: -54.467556,-6.0389905 + pos: -129.5,21.5 parent: 2 -- proto: CleanerDispenser - entities: - uid: 6505 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-13.5 + pos: -129.5,20.5 parent: 2 -- proto: ClockworkGirder - entities: - uid: 6506 components: - type: Transform - pos: -124.5,1.5 + pos: -129.5,19.5 parent: 2 -- proto: ClockworkGrille - entities: - uid: 6507 components: - type: Transform - pos: -74.5,-20.5 + pos: -129.5,18.5 parent: 2 - uid: 6508 components: - type: Transform - pos: -75.5,-19.5 + pos: -128.5,18.5 parent: 2 - uid: 6509 components: - type: Transform - pos: -75.5,-21.5 + pos: -128.5,17.5 parent: 2 -- proto: ClockworkGrilleBroken - entities: - uid: 6510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-20.5 + pos: -127.5,18.5 parent: 2 - uid: 6511 components: - type: Transform - pos: -75.5,-18.5 + pos: -127.5,19.5 parent: 2 -- proto: ClockworkShield - entities: - uid: 6512 components: - type: Transform - pos: -125.681755,3.5414076 + pos: -127.5,20.5 parent: 2 -- proto: CloningPodMachineCircuitboard - entities: - uid: 6513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.218212,-1.4691205 + pos: -127.5,21.5 parent: 2 -- proto: ClosetBomb - entities: - uid: 6514 components: - type: Transform - pos: -75.5,11.5 + pos: -132.5,24.5 parent: 2 -- proto: ClosetBombFilled - entities: - uid: 6515 components: - type: Transform - pos: -148.5,7.5 + pos: -132.5,23.5 parent: 2 -- proto: ClosetEmergencyFilledRandom - entities: - uid: 6516 components: - type: Transform - pos: -192.5,12.5 + pos: -100.5,-24.5 parent: 2 - uid: 6517 components: - type: Transform - pos: -200.5,12.5 + pos: -82.5,-1.5 parent: 2 - uid: 6518 components: - type: Transform - pos: -187.5,-4.5 + pos: -82.5,-5.5 parent: 2 - uid: 6519 components: - type: Transform - pos: -186.5,-4.5 + pos: -122.5,6.5 parent: 2 - uid: 6520 components: - type: Transform - pos: -97.5,-4.5 + pos: -124.5,6.5 parent: 2 - uid: 6521 components: - type: Transform - pos: -194.5,-20.5 + pos: -123.5,6.5 parent: 2 - uid: 6522 components: - type: Transform - pos: -178.5,-20.5 + rot: 1.5707963267948966 rad + pos: -15.5,18.5 parent: 2 - uid: 6523 components: - type: Transform - pos: -185.5,15.5 + rot: 1.5707963267948966 rad + pos: -18.5,24.5 parent: 2 - uid: 6524 components: - type: Transform - pos: -207.5,15.5 + rot: 1.5707963267948966 rad + pos: -17.5,24.5 parent: 2 - uid: 6525 components: - type: Transform - pos: -212.5,-20.5 + rot: 1.5707963267948966 rad + pos: -16.5,24.5 parent: 2 - uid: 6526 components: - type: Transform - pos: -69.5,9.5 + rot: 1.5707963267948966 rad + pos: -15.5,24.5 parent: 2 - uid: 6527 components: - type: Transform - pos: -59.5,-16.5 + rot: 1.5707963267948966 rad + pos: -15.5,25.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 6528 components: - type: Transform - pos: -77.5,15.5 + rot: 1.5707963267948966 rad + pos: -15.5,26.5 parent: 2 - uid: 6529 components: - type: Transform - pos: -142.5,-6.5 + rot: 1.5707963267948966 rad + pos: -16.5,26.5 parent: 2 - uid: 6530 components: - type: Transform - pos: -133.5,-6.5 + rot: 1.5707963267948966 rad + pos: -17.5,26.5 parent: 2 - uid: 6531 components: - type: Transform - pos: -18.5,5.5 + rot: 1.5707963267948966 rad + pos: -18.5,26.5 parent: 2 - uid: 6532 components: - type: Transform - pos: -208.5,15.5 + rot: 1.5707963267948966 rad + pos: -14.5,25.5 parent: 2 - uid: 6533 components: - type: Transform - pos: -85.5,-7.5 + rot: 1.5707963267948966 rad + pos: -13.5,27.5 parent: 2 - uid: 6534 components: - type: Transform - pos: -85.5,0.5 + rot: 1.5707963267948966 rad + pos: -13.5,26.5 parent: 2 - - uid: 17080 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 17021 -- proto: ClosetFireFilled - entities: - uid: 6535 components: - type: Transform - pos: -191.5,12.5 + rot: 1.5707963267948966 rad + pos: -11.5,26.5 parent: 2 - uid: 6536 components: - type: Transform - pos: -201.5,12.5 + rot: 1.5707963267948966 rad + pos: -10.5,26.5 parent: 2 - uid: 6537 components: - type: Transform - pos: -185.5,-4.5 + rot: 1.5707963267948966 rad + pos: -9.5,26.5 parent: 2 - uid: 6538 components: - type: Transform - pos: -96.5,-4.5 + rot: 1.5707963267948966 rad + pos: -8.5,26.5 parent: 2 - uid: 6539 components: - type: Transform - pos: -187.5,15.5 + rot: 1.5707963267948966 rad + pos: -12.5,25.5 parent: 2 - uid: 6540 components: - type: Transform - pos: -176.5,-20.5 + rot: 1.5707963267948966 rad + pos: -11.5,25.5 parent: 2 - uid: 6541 components: - type: Transform - pos: -196.5,-20.5 + rot: 1.5707963267948966 rad + pos: -11.5,24.5 parent: 2 - uid: 6542 components: - type: Transform - pos: -214.5,-20.5 + rot: 1.5707963267948966 rad + pos: -10.5,24.5 parent: 2 - uid: 6543 components: - type: Transform - pos: -66.5,9.5 + rot: 1.5707963267948966 rad + pos: -9.5,24.5 parent: 2 - uid: 6544 components: - type: Transform - pos: -56.5,-16.5 + rot: 1.5707963267948966 rad + pos: -8.5,24.5 parent: 2 - uid: 6545 components: - type: Transform - pos: -78.5,15.5 + rot: 1.5707963267948966 rad + pos: -11.5,21.5 parent: 2 - uid: 6546 components: - type: Transform - pos: -139.5,-6.5 + rot: 1.5707963267948966 rad + pos: -11.5,22.5 parent: 2 - uid: 6547 components: - type: Transform - pos: -134.5,-6.5 + rot: 1.5707963267948966 rad + pos: -10.5,22.5 parent: 2 - uid: 6548 components: - type: Transform - pos: -206.5,15.5 + rot: 1.5707963267948966 rad + pos: -9.5,22.5 parent: 2 -- proto: ClosetJanitorFilled - entities: - uid: 6549 components: - type: Transform - pos: -33.5,-8.5 + rot: 1.5707963267948966 rad + pos: -8.5,22.5 parent: 2 -- proto: ClosetL3JanitorFilled - entities: - uid: 6550 components: - type: Transform - pos: -32.5,-8.5 + rot: 1.5707963267948966 rad + pos: -8.5,20.5 parent: 2 -- proto: ClosetLegalFilled - entities: - uid: 6551 components: - type: Transform - pos: -142.5,5.5 + rot: 1.5707963267948966 rad + pos: -9.5,20.5 parent: 2 -- proto: ClosetMaintenance - entities: - - uid: 5567 + - uid: 6552 components: - type: Transform - pos: -157.5,-15.5 + rot: 1.5707963267948966 rad + pos: -10.5,20.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 5568 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6552 + - uid: 6553 components: - type: Transform - pos: -157.5,-14.5 + rot: 1.5707963267948966 rad + pos: -11.5,20.5 parent: 2 - - uid: 6553 + - uid: 6554 components: - type: Transform - pos: -153.5,-14.5 + rot: 1.5707963267948966 rad + pos: -12.5,21.5 + parent: 2 + - uid: 6555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,21.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6555 - - 6554 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 6556 components: - type: Transform - pos: -153.5,-15.5 + rot: 1.5707963267948966 rad + pos: -15.5,21.5 parent: 2 -- proto: ClosetMaintenanceFilledRandom - entities: - uid: 6557 components: - type: Transform - pos: -121.5,-21.5 + rot: 1.5707963267948966 rad + pos: -15.5,22.5 parent: 2 - uid: 6558 components: - type: Transform - pos: -113.5,-18.5 + rot: 1.5707963267948966 rad + pos: -16.5,22.5 parent: 2 - uid: 6559 components: - type: Transform - pos: -122.5,0.5 + rot: 1.5707963267948966 rad + pos: -17.5,22.5 parent: 2 - uid: 6560 components: - type: Transform - pos: -37.5,12.5 + rot: 1.5707963267948966 rad + pos: -18.5,22.5 parent: 2 - uid: 6561 components: - type: Transform - pos: -93.5,-18.5 + rot: 1.5707963267948966 rad + pos: -18.5,20.5 parent: 2 - uid: 6562 components: - type: Transform - pos: -88.5,-19.5 + rot: 1.5707963267948966 rad + pos: -17.5,20.5 parent: 2 - uid: 6563 components: - type: Transform - pos: -70.5,-18.5 + rot: 1.5707963267948966 rad + pos: -16.5,20.5 parent: 2 - uid: 6564 components: - type: Transform - pos: -50.5,-19.5 + rot: 1.5707963267948966 rad + pos: -15.5,20.5 + parent: 2 + - uid: 6565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,18.5 parent: 2 - uid: 6566 components: - type: Transform - pos: -39.5,-14.5 + rot: 1.5707963267948966 rad + pos: -17.5,18.5 parent: 2 - uid: 6567 components: - type: Transform - pos: -93.5,-14.5 + rot: 1.5707963267948966 rad + pos: -18.5,18.5 parent: 2 - uid: 6568 components: - type: Transform - pos: -101.5,-6.5 + rot: 1.5707963267948966 rad + pos: -18.5,16.5 parent: 2 - uid: 6569 components: - type: Transform - pos: -127.5,-15.5 + rot: 1.5707963267948966 rad + pos: -17.5,16.5 parent: 2 - uid: 6570 components: - type: Transform - pos: -25.5,9.5 + rot: 1.5707963267948966 rad + pos: -16.5,16.5 parent: 2 - uid: 6571 components: - type: Transform - pos: -65.5,11.5 + rot: 1.5707963267948966 rad + pos: -15.5,16.5 parent: 2 - uid: 6572 components: - type: Transform - pos: -71.5,-24.5 + rot: 1.5707963267948966 rad + pos: -15.5,17.5 + parent: 2 + - uid: 6573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,17.5 parent: 2 - uid: 6574 components: - type: Transform - pos: -91.5,9.5 + rot: 1.5707963267948966 rad + pos: -12.5,17.5 parent: 2 - uid: 6575 components: - type: Transform - pos: -110.5,8.5 + rot: 1.5707963267948966 rad + pos: -11.5,18.5 parent: 2 - uid: 6576 components: - type: Transform - pos: -47.5,7.5 + rot: 1.5707963267948966 rad + pos: -10.5,18.5 parent: 2 - uid: 6577 components: - type: Transform - pos: -52.5,15.5 + rot: 1.5707963267948966 rad + pos: -9.5,18.5 + parent: 2 + - uid: 6578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,18.5 parent: 2 - uid: 6579 components: - type: Transform - pos: -103.5,-18.5 + rot: 1.5707963267948966 rad + pos: -11.5,17.5 parent: 2 - uid: 6580 components: - type: Transform - pos: -117.5,-18.5 + rot: 1.5707963267948966 rad + pos: -11.5,16.5 parent: 2 - uid: 6581 components: - type: Transform - pos: -44.5,13.5 + rot: 1.5707963267948966 rad + pos: -10.5,16.5 parent: 2 - uid: 6582 components: - type: Transform - pos: -31.5,12.5 + rot: 1.5707963267948966 rad + pos: -9.5,16.5 parent: 2 -- proto: ClosetRadiationSuitFilled - entities: - uid: 6583 components: - type: Transform - pos: -98.5,-4.5 + rot: 1.5707963267948966 rad + pos: -8.5,16.5 + parent: 2 + - uid: 6584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,-14.5 + parent: 2 + - uid: 6585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -84.5,-25.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6585 - - 6584 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 6586 components: - type: Transform - pos: -68.5,-1.5 + rot: 3.141592653589793 rad + pos: -84.5,-23.5 parent: 2 - uid: 6587 components: - type: Transform - pos: -67.5,-1.5 + rot: 3.141592653589793 rad + pos: -83.5,-22.5 parent: 2 - uid: 6588 components: - type: Transform - pos: -77.5,10.5 + rot: 3.141592653589793 rad + pos: -84.5,-21.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6589 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6590 + - uid: 6589 components: - type: Transform - pos: -78.5,-17.5 + rot: 3.141592653589793 rad + pos: -83.5,-23.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6591 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6592 + - uid: 6590 components: - type: Transform - pos: -77.5,-17.5 + rot: 3.141592653589793 rad + pos: -85.5,-24.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6593 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6594 + - uid: 6591 components: - type: Transform - pos: -69.5,-10.5 + rot: -1.5707963267948966 rad + pos: -121.5,-14.5 parent: 2 - - uid: 6595 + - uid: 6592 components: - type: Transform - pos: -48.5,-12.5 + rot: -1.5707963267948966 rad + pos: -119.5,-14.5 parent: 2 - - uid: 6596 + - uid: 6593 components: - type: Transform - pos: -49.5,8.5 + rot: -1.5707963267948966 rad + pos: -120.5,-16.5 parent: 2 -- proto: ClosetToolFilled - entities: - - uid: 6565 + - uid: 6594 components: - type: Transform - pos: -96.5,-17.5 + rot: -1.5707963267948966 rad + pos: -122.5,-20.5 parent: 2 - - uid: 6573 + - uid: 6595 components: - type: Transform - pos: -101.5,-9.5 + rot: -1.5707963267948966 rad + pos: -123.5,-20.5 parent: 2 - - uid: 6578 + - uid: 6596 components: - type: Transform - pos: -72.5,-24.5 + pos: -97.5,-14.5 parent: 2 - uid: 6597 components: - type: Transform - pos: -81.5,12.5 + pos: -36.5,16.5 parent: 2 - - uid: 17014 + - uid: 6598 components: - type: Transform - pos: -71.5,11.5 + pos: -35.5,16.5 parent: 2 - - uid: 17015 + - uid: 6599 components: - type: Transform - pos: -90.5,-19.5 + pos: -95.5,-15.5 parent: 2 - - uid: 17016 + - uid: 6600 components: - type: Transform - pos: -55.5,-19.5 + pos: -96.5,-14.5 parent: 2 - - uid: 17017 + - uid: 6601 components: - type: Transform - pos: -48.5,-22.5 + pos: -96.5,-15.5 parent: 2 - - uid: 17018 + - uid: 6602 components: - type: Transform - pos: -38.5,-18.5 + pos: -98.5,-14.5 parent: 2 - - uid: 17019 + - uid: 6603 components: - type: Transform - pos: -51.5,13.5 + pos: -98.5,-13.5 parent: 2 - - uid: 17081 + - uid: 6604 components: - type: Transform - pos: 11.5,-6.5 - parent: 17021 -- proto: ClosetWallEmergency - entities: - - uid: 6598 + pos: -98.5,-12.5 + parent: 2 + - uid: 6605 components: - type: Transform - rot: 3.141592653589793 rad - pos: -159.5,-22.5 + pos: -98.5,-11.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6602 - - 6603 - - 6604 - - 6599 - - 6600 - - 6601 - - 6605 -- proto: ClosetWallEmergencyFilledRandom - entities: - uid: 6606 components: - type: Transform - rot: 3.141592653589793 rad - pos: -189.5,-21.5 + pos: -99.5,-11.5 parent: 2 - uid: 6607 components: - type: Transform - rot: 3.141592653589793 rad - pos: -183.5,-21.5 + pos: -100.5,-11.5 parent: 2 - uid: 6608 components: - type: Transform - pos: -193.5,5.5 + pos: -100.5,-10.5 parent: 2 -- proto: ClosetWallMaintenanceFilledRandom - entities: - uid: 6609 components: - type: Transform - pos: -88.5,16.5 + pos: -100.5,-9.5 parent: 2 - uid: 6610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,15.5 + pos: -100.5,-8.5 parent: 2 - uid: 6611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,15.5 - parent: 2 -- proto: ClothingBackpack - entities: - - uid: 3 - components: - - type: Transform - pos: -42.575848,16.591244 + pos: -100.5,-7.5 parent: 2 - - type: Storage - storedItems: - 4: - position: 0,0 - _rotation: South - 19: - position: 2,0 - _rotation: South - 6: - position: 4,0 - _rotation: South - 18: - position: 5,0 - _rotation: South - 8: - position: 6,0 - _rotation: North - 10: - position: 0,2 - _rotation: East - 15: - position: 2,2 - _rotation: East - 16: - position: 4,2 - _rotation: South - 12: - position: 5,2 - _rotation: West - 14: - position: 0,3 - _rotation: East - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 4 - - 19 - - 18 - - 6 - - 10 - - 15 - - 16 - - 12 - - 14 - - 8 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - Обеспечивает следующую защиту: - - - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. - priority: 0 - component: Armor - title: null -- proto: ClothingBackpackDuffelSurgeryFilled - entities: - uid: 6612 components: - type: Transform - pos: -189.41388,21.55932 + pos: -100.5,-6.5 parent: 2 - uid: 6613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -180.67862,-24.394974 + pos: -62.5,27.5 parent: 2 -- proto: ClothingBackpackMerc - entities: - uid: 6614 components: - type: Transform - pos: -74.86242,-20.939394 + pos: -61.5,27.5 parent: 2 - - type: Storage - storedItems: - 6618: - position: 1,0 - _rotation: South - 6622: - position: 0,2 - _rotation: South - 6615: - position: 4,0 - _rotation: East - 6617: - position: 6,0 - _rotation: North - 6621: - position: 2,1 - _rotation: West - 6619: - position: 4,1 - _rotation: East - 6620: - position: 0,0 - _rotation: South - 6616: - position: 2,0 - _rotation: East - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 6615 - - 6617 - - 6619 - - 6618 - - 6620 - - 6622 - - 6621 - - 6616 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - Обеспечивает следующую защиту: - - - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. - priority: 0 - component: Armor - title: null -- proto: ClothingBeltJanitorFilled - entities: - - uid: 6624 + - uid: 6615 components: - type: Transform - parent: 6623 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingBeltMedicalEMTFilled - entities: - - uid: 6630 + pos: -77.5,26.5 + parent: 2 + - uid: 6616 components: - type: Transform - parent: 6629 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingBeltMercWebbing - entities: - - uid: 6637 + pos: -55.5,26.5 + parent: 2 + - uid: 6617 components: - type: Transform - pos: -75.01867,-20.158144 + pos: -80.5,26.5 parent: 2 -- proto: ClothingBeltMilitaryWebbingMed - entities: - - uid: 6639 + - uid: 6618 components: - type: Transform - parent: 6638 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - Обеспечивает следующую защиту: - - - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]90%[/color]. - priority: 0 - component: Armor - title: null - - type: InsideEntityStorage -- proto: ClothingBeltPlant - entities: - - uid: 6643 + pos: -79.5,26.5 + parent: 2 + - uid: 6619 components: - type: Transform - pos: -103.32243,-7.151184 + pos: -78.5,26.5 parent: 2 -- proto: ClothingBeltPlantFilled - entities: - - uid: 6644 + - uid: 6620 components: - type: Transform - pos: -103.54118,-7.526184 + pos: -81.5,26.5 parent: 2 -- proto: ClothingBeltSecurityWebbing - entities: - - uid: 6646 + - uid: 6621 components: - type: Transform - parent: 6645 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingBeltUtility - entities: - - uid: 6653 + pos: -82.5,17.5 + parent: 2 + - uid: 6622 components: - type: Transform - pos: -46.446583,-7.2490263 + pos: -83.5,20.5 parent: 2 - - uid: 6654 + - uid: 6623 components: - type: Transform - pos: -46.321583,-7.4990263 + pos: -82.5,-18.5 parent: 2 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 453 + - uid: 6624 components: - type: Transform - parent: 451 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 6655 + pos: -81.5,-18.5 + parent: 2 + - uid: 6625 components: - type: Transform - pos: -45.477833,1.7604951 + pos: -80.5,-18.5 parent: 2 - - uid: 6656 + - uid: 6626 components: - type: Transform - pos: -203.7562,20.321434 + rot: -1.5707963267948966 rad + pos: -127.5,1.5 parent: 2 - - uid: 6657 + - uid: 6627 components: - type: Transform - pos: -195.57593,1.6854506 + rot: 1.5707963267948966 rad + pos: -50.5,16.5 parent: 2 - - uid: 6658 + - uid: 6628 components: - type: Transform - pos: -189.70085,21.737806 + rot: 1.5707963267948966 rad + pos: -50.5,17.5 parent: 2 - - uid: 6659 + - uid: 6629 components: - type: Transform - pos: -64.48689,-19.889963 + rot: 1.5707963267948966 rad + pos: -51.5,17.5 parent: 2 -- proto: ClothingEyesGlassesMercenary - entities: - - uid: 6615 + - uid: 6630 components: - type: Transform - parent: 6614 - - type: Physics - canCollide: False -- proto: ClothingEyesGlassesSecurity - entities: - - uid: 6647 + rot: 1.5707963267948966 rad + pos: -53.5,16.5 + parent: 2 + - uid: 6631 components: - type: Transform - parent: 6645 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 15 + rot: 1.5707963267948966 rad + pos: -53.5,15.5 + parent: 2 + - uid: 6632 components: - type: Transform - parent: 3 - - type: Physics - canCollide: False - - uid: 6660 + rot: 1.5707963267948966 rad + pos: -52.5,15.5 + parent: 2 + - uid: 6633 components: - type: Transform - pos: -141.51517,6.8110247 + rot: 1.5707963267948966 rad + pos: -53.5,13.5 parent: 2 -- proto: ClothingEyesHudMedical - entities: - - uid: 6661 + - uid: 6634 components: - type: Transform - pos: -47.6812,17.030888 + rot: 1.5707963267948966 rad + pos: -119.5,-16.5 parent: 2 -- proto: ClothingHandsGlovesBoxingRed - entities: - - uid: 6662 + - uid: 6635 components: - type: Transform rot: 1.5707963267948966 rad - pos: -115.6955,8.767991 + pos: -47.5,10.5 parent: 2 -- proto: ClothingHandsGlovesBoxingYellow - entities: - - uid: 6663 + - uid: 6636 components: - type: Transform rot: -1.5707963267948966 rad - pos: -118.80488,7.424241 + pos: -80.5,14.5 parent: 2 -- proto: ClothingHandsGlovesColorBlack - entities: - - uid: 10 + - uid: 6637 components: - type: Transform - parent: 3 - - type: SolutionContainerManager - solutions: null - containers: - - food - - type: Physics - canCollide: False - - type: ContainerContainer - containers: - solution@food: !type:ContainerSlot - ent: 11 -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 6665 + rot: -1.5707963267948966 rad + pos: -83.5,14.5 + parent: 2 + - uid: 6638 components: - type: Transform - parent: 6664 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6669 + rot: -1.5707963267948966 rad + pos: -79.5,14.5 + parent: 2 + - uid: 6639 components: - type: Transform - pos: -50.403984,-5.5777397 + rot: -1.5707963267948966 rad + pos: -81.5,14.5 parent: 2 -- proto: ClothingHandsGlovesColorYellowBudget - entities: - - uid: 6670 + - uid: 6640 components: - type: Transform - pos: -43.469433,4.7256165 + rot: -1.5707963267948966 rad + pos: -85.5,13.5 parent: 2 - - uid: 6671 + - uid: 6641 components: - type: Transform - pos: -43.563183,4.4287415 + rot: -1.5707963267948966 rad + pos: -84.5,14.5 parent: 2 - - uid: 6672 + - uid: 6642 components: - type: Transform - pos: -50.51336,-5.2808647 + pos: -85.5,14.5 parent: 2 - - uid: 6673 + - uid: 6643 components: - type: Transform - pos: -116.74208,8.401611 + rot: -1.5707963267948966 rad + pos: -88.5,12.5 parent: 2 -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 6674 + - uid: 6644 components: - type: Transform - pos: -189.50763,19.387445 + rot: -1.5707963267948966 rad + pos: -85.5,11.5 parent: 2 -- proto: ClothingHandsMercGlovesCombat - entities: - - uid: 6616 + - uid: 6645 components: - type: Transform - parent: 6614 - - type: Physics - canCollide: False -- proto: ClothingHeadBandMerc - entities: - - uid: 6617 + rot: -1.5707963267948966 rad + pos: -90.5,11.5 + parent: 2 + - uid: 6646 components: - type: Transform - parent: 6614 - - type: Physics - canCollide: False -- proto: ClothingHeadHatBeret - entities: - - uid: 8 + rot: -1.5707963267948966 rad + pos: -93.5,10.5 + parent: 2 + - uid: 6647 components: - type: Transform - parent: 3 - - type: SolutionContainerManager - solutions: null - containers: - - food - - type: Physics - canCollide: False - - type: ContainerContainer - containers: - solution@food: !type:ContainerSlot - ent: 9 -- proto: ClothingHeadHatBeretMerc - entities: - - uid: 6618 + rot: -1.5707963267948966 rad + pos: -91.5,10.5 + parent: 2 + - uid: 6648 components: - type: Transform - parent: 6614 - - type: Physics - canCollide: False -- proto: ClothingHeadHatBeretSecurity - entities: - - uid: 6648 + pos: -113.5,-17.5 + parent: 2 + - uid: 6649 components: - type: Transform - parent: 6645 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHatBeretSeniorPhysician - entities: - - uid: 6676 + pos: -111.5,-18.5 + parent: 2 + - uid: 6650 components: - type: Transform - parent: 6675 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHatBunny - entities: - - uid: 6680 + pos: -112.5,-15.5 + parent: 2 + - uid: 6651 components: - type: Transform rot: -1.5707963267948966 rad - pos: -109.411255,17.191402 + pos: -43.5,16.5 parent: 2 -- proto: ClothingHeadHatCatEars - entities: - - uid: 6625 + - uid: 6652 components: - type: Transform - parent: 6623 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6681 + pos: -43.5,33.5 + parent: 2 + - uid: 6653 components: - type: Transform - pos: -172.6234,-12.963645 + rot: -1.5707963267948966 rad + pos: -42.5,15.5 parent: 2 - - type: Physics - angularDamping: 0 - linearDamping: 0 -- proto: ClothingHeadHatCone - entities: - - uid: 6682 + - uid: 6654 components: - type: Transform - pos: -100.65434,-24.640648 + pos: -91.5,12.5 parent: 2 - - uid: 6683 + - uid: 6655 components: - type: Transform - pos: -100.24809,-24.250023 + pos: -86.5,14.5 parent: 2 -- proto: ClothingHeadHatHardhatWhite - entities: - - uid: 6684 + - uid: 6656 components: - type: Transform - pos: -1.5115505,0.80979156 + pos: -88.5,14.5 parent: 2 -- proto: ClothingHeadHatOutlawHat - entities: - - uid: 6685 + - uid: 6657 components: - type: Transform - pos: -128.16539,-3.9936957 + pos: -89.5,13.5 parent: 2 -- proto: ClothingHeadHatParamedicsoft - entities: - - uid: 6631 + - uid: 6658 components: - type: Transform - parent: 6629 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHatParamedicsoftFlipped - entities: - - uid: 6632 + pos: -92.5,12.5 + parent: 2 + - uid: 6659 components: - type: Transform - parent: 6629 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHatShrineMaidenWig - entities: - - uid: 6686 + rot: -1.5707963267948966 rad + pos: -90.5,14.5 + parent: 2 + - uid: 6660 components: - type: Transform - pos: -43.486683,7.6770444 + rot: -1.5707963267948966 rad + pos: -73.5,-4.5 parent: 2 -- proto: ClothingHeadHatSurgcapBlue - entities: - - uid: 6687 + - uid: 6661 components: - type: Transform - pos: -189.39825,19.77807 + rot: -1.5707963267948966 rad + pos: -91.5,14.5 parent: 2 -- proto: ClothingHeadHatSyndie - entities: - - uid: 6688 + - uid: 6662 components: - type: Transform - pos: -71.65919,5.859562 + rot: -1.5707963267948966 rad + pos: -75.5,0.5 parent: 2 -- proto: ClothingHeadHatWelding - entities: - - uid: 6689 + - uid: 6663 components: - type: Transform - pos: -45.366974,-7.4645395 + rot: -1.5707963267948966 rad + pos: -91.5,14.5 parent: 2 -- proto: ClothingHeadHelmetEVA - entities: - - uid: 6690 + - uid: 6664 components: - type: Transform - pos: -18.647797,-11.22751 + rot: -1.5707963267948966 rad + pos: -73.5,-5.5 parent: 2 - - uid: 6691 + - uid: 6665 components: - type: Transform - pos: -18.319672,-11.07126 + rot: -1.5707963267948966 rad + pos: -73.5,-6.5 parent: 2 - - uid: 6692 + - uid: 6666 components: - type: Transform - pos: -18.632172,-15.399385 + rot: -1.5707963267948966 rad + pos: -73.5,-7.5 parent: 2 - - uid: 6693 + - uid: 6667 components: - type: Transform - pos: -18.350922,-15.29001 + rot: -1.5707963267948966 rad + pos: -73.5,-8.5 parent: 2 -- proto: ClothingHeadHelmetMerc - entities: - - uid: 6619 + - uid: 6668 components: - type: Transform - parent: 6614 - - type: Physics - canCollide: False -- proto: ClothingHeadHelmetRiot - entities: - - uid: 6694 + rot: -1.5707963267948966 rad + pos: -73.5,-9.5 + parent: 2 + - uid: 6669 components: - type: Transform - pos: -170.43552,14.947405 + rot: 3.141592653589793 rad + pos: -75.5,3.5 parent: 2 - - uid: 6695 + - uid: 6670 components: - type: Transform - pos: -170.74802,14.759905 + rot: 3.141592653589793 rad + pos: -73.5,3.5 parent: 2 -- proto: ClothingHeadHelmetThunderdome - entities: - - uid: 6696 + - uid: 6671 components: - type: Transform - pos: -85.51813,-36.211735 + rot: -1.5707963267948966 rad + pos: -77.5,-9.5 parent: 2 -- proto: ClothingHeadPyjamaSyndicateBlack - entities: - - uid: 6698 + - uid: 6672 components: - type: Transform - parent: 6697 - - type: Physics - canCollide: False -- proto: ClothingHeadPyjamaSyndicatePink - entities: - - uid: 6699 + rot: -1.5707963267948966 rad + pos: -77.5,-8.5 + parent: 2 + - uid: 6673 components: - type: Transform - parent: 6697 - - type: Physics - canCollide: False -- proto: ClothingHeadPyjamaSyndicateRed - entities: - - uid: 6700 + rot: -1.5707963267948966 rad + pos: -74.5,-8.5 + parent: 2 + - uid: 6674 components: - type: Transform - parent: 6697 - - type: Physics - canCollide: False -- proto: ClothingHeadsetGrey - entities: - - uid: 16 + rot: -1.5707963267948966 rad + pos: -75.5,-8.5 + parent: 2 + - uid: 6675 components: - type: Transform - parent: 3 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 17 - - type: Physics - canCollide: False - - type: ActiveRadio - channels: - - Common -- proto: ClothingMaskBandMerc - entities: - - uid: 6706 + rot: -1.5707963267948966 rad + pos: -76.5,-8.5 + parent: 2 + - uid: 6676 components: - type: Transform - pos: -73.832535,-18.467596 + rot: -1.5707963267948966 rad + pos: -78.5,-8.5 parent: 2 -- proto: ClothingMaskBreathMedical - entities: - - uid: 6599 + - uid: 6677 components: - type: Transform - parent: 6598 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6600 + rot: -1.5707963267948966 rad + pos: -79.5,-8.5 + parent: 2 + - uid: 6678 components: - type: Transform - parent: 6598 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6601 + rot: -1.5707963267948966 rad + pos: -80.5,-8.5 + parent: 2 + - uid: 6679 components: - type: Transform - parent: 6598 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingMaskGas - entities: - - uid: 18 + rot: -1.5707963267948966 rad + pos: -81.5,-8.5 + parent: 2 + - uid: 6680 components: - type: Transform - parent: 3 - - type: Physics - canCollide: False -- proto: ClothingMaskGasMerc - entities: - - uid: 6620 + rot: -1.5707963267948966 rad + pos: -81.5,-7.5 + parent: 2 + - uid: 6681 components: - type: Transform - parent: 6614 - - type: Physics - canCollide: False -- proto: ClothingMaskGasSecurity - entities: - - uid: 29 + rot: -1.5707963267948966 rad + pos: -81.5,-6.5 + parent: 2 + - uid: 6682 components: - type: Transform - parent: 26 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 30 + rot: -1.5707963267948966 rad + pos: -81.5,-5.5 + parent: 2 + - uid: 6683 components: - type: Transform - parent: 26 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6708 + rot: -1.5707963267948966 rad + pos: -81.5,-1.5 + parent: 2 + - uid: 6684 components: - type: Transform - parent: 6707 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 6709 + rot: -1.5707963267948966 rad + pos: -81.5,-0.5 + parent: 2 + - uid: 6685 components: - type: Transform - parent: 6707 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckClownmedal - entities: - - uid: 6640 + rot: -1.5707963267948966 rad + pos: -81.5,0.5 + parent: 2 + - uid: 6686 components: - type: Transform - parent: 6638 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckScarfStripedRed - entities: - - uid: 6 - components: + rot: -1.5707963267948966 rad + pos: -81.5,1.5 + parent: 2 + - uid: 6687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,1.5 + parent: 2 + - uid: 6688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,1.5 + parent: 2 + - uid: 6689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,1.5 + parent: 2 + - uid: 6690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,1.5 + parent: 2 + - uid: 6691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,1.5 + parent: 2 + - uid: 6692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,1.5 + parent: 2 + - uid: 6693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,0.5 + parent: 2 + - uid: 6694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,-1.5 + parent: 2 + - uid: 6695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,-2.5 + parent: 2 + - uid: 6696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,0.5 + parent: 2 + - uid: 6697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,2.5 + parent: 2 + - uid: 6698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,3.5 + parent: 2 + - uid: 6699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,2.5 + parent: 2 + - uid: 6700 + components: + - type: Transform + pos: -219.5,-19.5 + parent: 2 + - uid: 6701 + components: + - type: Transform + pos: -219.5,-18.5 + parent: 2 + - uid: 6702 + components: + - type: Transform + pos: -219.5,-17.5 + parent: 2 + - uid: 6703 + components: + - type: Transform + pos: -218.5,-19.5 + parent: 2 + - uid: 6704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -217.5,-19.5 + parent: 2 + - uid: 6705 + components: + - type: Transform + pos: -219.5,-20.5 + parent: 2 + - uid: 6706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -217.5,-29.5 + parent: 2 + - uid: 6707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -217.5,-20.5 + parent: 2 + - uid: 6708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -216.5,-29.5 + parent: 2 + - uid: 6709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -216.5,-28.5 + parent: 2 + - uid: 6710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -216.5,-27.5 + parent: 2 + - uid: 6711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -216.5,-23.5 + parent: 2 + - uid: 6712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -216.5,-22.5 + parent: 2 + - uid: 6713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -216.5,-21.5 + parent: 2 + - uid: 6714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -216.5,-20.5 + parent: 2 + - uid: 6715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -215.5,-27.5 + parent: 2 + - uid: 6716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -215.5,-26.5 + parent: 2 + - uid: 6717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -215.5,-25.5 + parent: 2 + - uid: 6718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -215.5,-24.5 + parent: 2 + - uid: 6719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -215.5,-23.5 + parent: 2 + - uid: 6720 + components: + - type: Transform + pos: -222.5,-39.5 + parent: 2 + - uid: 6721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -181.5,-24.5 + parent: 2 + - uid: 6722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -181.5,-25.5 + parent: 2 + - uid: 6723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -180.5,-25.5 + parent: 2 + - uid: 6724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -179.5,-25.5 + parent: 2 + - uid: 6725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -178.5,-25.5 + parent: 2 + - uid: 6726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -179.5,-24.5 + parent: 2 + - uid: 6727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -178.5,-27.5 + parent: 2 + - uid: 6728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -179.5,-27.5 + parent: 2 + - uid: 6729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -180.5,-27.5 + parent: 2 + - uid: 6730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -181.5,-27.5 + parent: 2 + - uid: 6731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -181.5,-28.5 + parent: 2 + - uid: 6732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -179.5,-28.5 + parent: 2 + - uid: 6733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -188.5,-32.5 + parent: 2 + - uid: 6734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -187.5,-32.5 + parent: 2 + - uid: 6735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -184.5,-32.5 + parent: 2 + - uid: 6736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -185.5,-32.5 + parent: 2 + - uid: 6737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -185.5,-33.5 + parent: 2 + - uid: 6738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -187.5,-33.5 + parent: 2 + - uid: 6739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,-10.5 + parent: 2 + - uid: 6740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,-10.5 + parent: 2 + - uid: 6741 + components: + - type: Transform + pos: -189.5,1.5 + parent: 2 + - uid: 6742 + components: + - type: Transform + pos: -201.5,0.5 + parent: 2 + - uid: 6743 + components: + - type: Transform + pos: -189.5,15.5 + parent: 2 + - uid: 6744 + components: + - type: Transform + pos: -201.5,1.5 + parent: 2 + - uid: 6745 + components: + - type: Transform + pos: -202.5,1.5 + parent: 2 + - uid: 17613 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 17565 + - uid: 17614 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 17565 + - uid: 17615 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 17565 + - uid: 17616 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 17565 + - uid: 17617 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 17565 +- proto: Chair + entities: + - uid: 6746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,18.5 + parent: 2 + - uid: 6747 + components: + - type: Transform + pos: -97.5,-23.5 + parent: 2 + - uid: 6748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,-6.5 + parent: 2 + - uid: 6749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,-5.5 + parent: 2 + - uid: 6750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -112.5,-6.5 + parent: 2 + - uid: 6751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -112.5,-5.5 + parent: 2 + - uid: 6752 + components: + - type: Transform + pos: -111.5,-7.5 + parent: 2 + - uid: 6753 + components: + - type: Transform + pos: -113.5,-7.5 + parent: 2 + - uid: 6754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -153.5,8.5 + parent: 2 + - uid: 6755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -157.5,8.5 + parent: 2 + - uid: 6756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -158.5,8.5 + parent: 2 + - uid: 6757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -152.5,8.5 + parent: 2 + - uid: 6758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -165.5,0.5 + parent: 2 + - uid: 6759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -171.5,0.5 + parent: 2 + - uid: 6760 + components: + - type: Transform + pos: -158.5,-10.5 + parent: 2 + - uid: 6761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -154.5,14.5 + parent: 2 + - uid: 6762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -155.5,14.5 + parent: 2 + - uid: 6763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -182.5,-17.5 + parent: 2 + - uid: 6764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -182.5,-15.5 + parent: 2 + - uid: 6765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -190.5,-17.5 + parent: 2 + - uid: 6766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -190.5,-15.5 + parent: 2 + - uid: 6767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -178.5,6.5 + parent: 2 + - uid: 6768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -180.5,6.5 + parent: 2 + - uid: 6769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -180.5,5.5 + parent: 2 + - uid: 6770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -153.5,-19.5 + parent: 2 + - uid: 6771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -160.5,-18.5 + parent: 2 + - uid: 6772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,15.5 + parent: 2 + - uid: 6773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,14.5 + parent: 2 + - uid: 6774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,16.5 + parent: 2 + - uid: 6775 + components: + - type: Transform + pos: -163.5,5.5 + parent: 2 + - uid: 6776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -115.5,14.5 + parent: 2 + - uid: 6777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,-7.5 + parent: 2 + - uid: 6778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,10.5 + parent: 2 + - uid: 6779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,8.5 + parent: 2 + - uid: 6780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,11.5 + parent: 2 + - uid: 6781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,7.5 + parent: 2 + - uid: 6782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,10.5 + parent: 2 + - uid: 6783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,16.5 + parent: 2 + - uid: 6784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,16.5 + parent: 2 + - uid: 6785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -227.5,-16.5 + parent: 2 +- proto: ChairBrass + entities: + - uid: 6786 + components: + - type: Transform + pos: -125.5,4.5 + parent: 2 + - uid: 6787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,2.5 + parent: 2 +- proto: ChairFolding + entities: + - uid: 6788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,9.5 + parent: 2 + - uid: 6789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,8.5 + parent: 2 + - uid: 6790 + components: + - type: Transform + pos: -172.5,-6.5 + parent: 2 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 6791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.15986,7.5987043 + parent: 2 + - uid: 6792 + components: + - type: Transform + pos: -223.89108,-30.55176 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 6793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -147.38953,5.6317034 + parent: 2 + - uid: 6794 + components: + - type: Transform + pos: -15.4427805,-16.437407 + parent: 2 + - uid: 6795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.452566,-10.346932 + parent: 2 + - uid: 6796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.484055,-18.664692 + parent: 2 + - uid: 6797 + components: + - type: Transform + pos: -142.51674,2.547929 + parent: 2 + - uid: 6798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -167.37854,-12.301772 + parent: 2 + - uid: 6799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-4.5 + parent: 2 + - uid: 6800 + components: + - type: Transform + pos: -164.51363,7.6244984 + parent: 2 + - uid: 6801 + components: + - type: Transform + pos: -167.46057,0.6048427 + parent: 2 + - uid: 6802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -160.40448,-0.20660853 + parent: 2 + - uid: 6803 + components: + - type: Transform + pos: -155.47432,16.500141 + parent: 2 + - uid: 6804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -175.44298,6.59674 + parent: 2 + - uid: 6805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -178.42735,5.612365 + parent: 2 + - uid: 6806 + components: + - type: Transform + pos: -157.53036,10.601954 + parent: 2 + - uid: 6807 + components: + - type: Transform + pos: -153.38974,10.601954 + parent: 2 + - uid: 6808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-4.5 + parent: 2 + - uid: 6809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-3.5 + parent: 2 + - uid: 6810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-3.5 + parent: 2 + - uid: 6811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-18.5 + parent: 2 + - uid: 6812 + components: + - type: Transform + pos: -2.4867084,-6.538404 + parent: 2 + - uid: 6813 + components: + - type: Transform + pos: 0.49988866,-6.538404 + parent: 2 + - uid: 6814 + components: + - type: Transform + pos: 3.5490305,-6.444654 + parent: 2 + - uid: 6815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.533394,-0.335279 + parent: 2 + - uid: 6816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.4842522,-0.382154 + parent: 2 + - uid: 6817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5023448,-0.429029 + parent: 2 + - uid: 6818 + components: + - type: Transform + pos: -64.45874,-26.454014 + parent: 2 + - uid: 6819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -222.56087,-26.519817 + parent: 2 + - uid: 6820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -222.45435,-23.468872 + parent: 2 + - uid: 6821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -220.5281,-25.426067 + parent: 2 + - uid: 17563 + components: + - type: Transform + pos: -75.201324,-20.433207 + parent: 2 +- proto: ChairOfficeLight + entities: + - uid: 6822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -189.91757,-23.389036 + parent: 2 + - uid: 6823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.479475,0.5546675 + parent: 2 + - uid: 17564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.38146,-18.520706 + parent: 2 +- proto: ChairPilotSeat + entities: + - uid: 6824 + components: + - type: Transform + pos: -218.5,-22.5 + parent: 2 + - uid: 17618 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 17565 + - uid: 17619 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 17565 + - uid: 17620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-4.5 + parent: 17565 + - uid: 17621 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 17565 + - uid: 17622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 17565 + - uid: 17623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 17565 +- proto: ChairWood + entities: + - uid: 6825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.45739,-11.503813 + parent: 2 + - uid: 6826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.452415,-19.35539 + parent: 2 + - uid: 6827 + components: + - type: Transform + pos: -43.421165,-17.54289 + parent: 2 + - uid: 6828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.371357,9.458885 + parent: 2 + - uid: 6829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.418232,7.615135 + parent: 2 + - uid: 6830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.03682,12.775509 + parent: 2 + - uid: 6831 + components: + - type: Transform + pos: -105.021194,14.353634 + parent: 2 + - uid: 6832 + components: + - type: Transform + pos: -41.47759,2.595251 + parent: 2 + - uid: 6833 + components: + - type: Transform + pos: -117.43538,17.465305 + parent: 2 + - uid: 6834 + components: + - type: Transform + pos: -116.513504,17.465305 + parent: 2 + - uid: 6835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -111.505005,17.394527 + parent: 2 + - uid: 6836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -111.442505,15.5195265 + parent: 2 + - uid: 6837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,7.5 + parent: 2 + - uid: 6838 + components: + - type: Transform + pos: -30.5,9.5 + parent: 2 + - uid: 6839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,-1.5 + parent: 2 +- proto: CheapLighter + entities: + - uid: 6840 + components: + - type: Transform + pos: -10.291143,-2.4834661 + parent: 2 +- proto: CheckerBoard + entities: + - uid: 6841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -170.4859,0.49424088 + parent: 2 +- proto: chem_master + entities: + - uid: 6842 + components: + - type: Transform + pos: -189.5,-22.5 + parent: 2 +- proto: ChemDispenser + entities: + - uid: 6843 + components: + - type: Transform + pos: -190.5,-22.5 + parent: 2 +- proto: ChemDispenserMachineCircuitboard + entities: + - uid: 6844 + components: + - type: Transform + pos: -53.746204,-1.6224241 + parent: 2 +- proto: ChemistryHotplate + entities: + - uid: 6845 + components: + - type: Transform + pos: -191.5,-23.5 + parent: 2 +- proto: ChessBoard + entities: + - uid: 6846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -166.4859,0.49424088 + parent: 2 + - uid: 6847 + components: + - type: Transform + pos: -105.06965,13.553126 + parent: 2 + - uid: 6848 + components: + - type: Transform + pos: -154.85652,-18.913103 + parent: 2 +- proto: ChurchOrganInstrument + entities: + - uid: 6849 + components: + - type: Transform + pos: -41.5,1.5 + parent: 2 +- proto: CigarCase + entities: + - uid: 6850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -146.71094,4.4203644 + parent: 2 +- proto: CigaretteSyndicate + entities: + - uid: 6851 + components: + - type: Transform + pos: -128.50914,-4.2280707 + parent: 2 +- proto: CigCartonBlack + entities: + - uid: 6852 + components: + - type: Transform + pos: -1.5555989,-7.295767 + parent: 2 +- proto: CigPackGreen + entities: + - uid: 6853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.572393,-2.3115911 + parent: 2 +- proto: CircuitImprinter + entities: + - uid: 6854 + components: + - type: Transform + pos: -194.5,1.5 + parent: 2 +- proto: CircuitImprinterMachineCircuitboard + entities: + - uid: 6855 + components: + - type: Transform + pos: -54.467556,-6.0389905 + parent: 2 +- proto: CleanerDispenser + entities: + - uid: 6856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-13.5 + parent: 2 +- proto: ClockworkGirder + entities: + - uid: 6857 + components: + - type: Transform + pos: -124.5,1.5 + parent: 2 +- proto: ClockworkShield + entities: + - uid: 6863 + components: + - type: Transform + pos: -125.681755,3.5414076 + parent: 2 +- proto: CloningPodMachineCircuitboard + entities: + - uid: 6864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.218212,-1.4691205 + parent: 2 +- proto: ClosetBomb + entities: + - uid: 6865 + components: + - type: Transform + pos: -75.5,11.5 + parent: 2 +- proto: ClosetBombFilled + entities: + - uid: 6866 + components: + - type: Transform + pos: -148.5,7.5 + parent: 2 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 6867 + components: + - type: Transform + pos: -187.5,-4.5 + parent: 2 + - uid: 6868 + components: + - type: Transform + pos: -186.5,-4.5 + parent: 2 + - uid: 6869 + components: + - type: Transform + pos: -97.5,-4.5 + parent: 2 + - uid: 6870 + components: + - type: Transform + pos: -194.5,-20.5 + parent: 2 + - uid: 6871 + components: + - type: Transform + pos: -178.5,-20.5 + parent: 2 + - uid: 6872 + components: + - type: Transform + pos: -207.5,15.5 + parent: 2 + - uid: 6873 + components: + - type: Transform + pos: -212.5,-20.5 + parent: 2 + - uid: 6874 + components: + - type: Transform + pos: -69.5,9.5 + parent: 2 + - uid: 6875 + components: + - type: Transform + pos: -59.5,-16.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 6876 + components: + - type: Transform + pos: -77.5,15.5 + parent: 2 + - uid: 6877 + components: + - type: Transform + pos: -142.5,-6.5 + parent: 2 + - uid: 6878 + components: + - type: Transform + pos: -133.5,-6.5 + parent: 2 + - uid: 6879 + components: + - type: Transform + pos: -18.5,5.5 + parent: 2 + - uid: 6880 + components: + - type: Transform + pos: -208.5,15.5 + parent: 2 + - uid: 6881 + components: + - type: Transform + pos: -85.5,-7.5 + parent: 2 + - uid: 6882 + components: + - type: Transform + pos: -85.5,0.5 + parent: 2 + - uid: 6883 + components: + - type: Transform + pos: -225.5,-36.5 + parent: 2 + - uid: 6884 + components: + - type: Transform + pos: -227.5,-23.5 + parent: 2 + - uid: 6885 + components: + - type: Transform + pos: -221.5,-13.5 + parent: 2 + - uid: 6886 + components: + - type: Transform + pos: -90.5,15.5 + parent: 2 + - uid: 6887 + components: + - type: Transform + pos: -219.5,0.5 + parent: 2 + - uid: 6888 + components: + - type: Transform + pos: -225.5,0.5 + parent: 2 + - uid: 6889 + components: + - type: Transform + pos: -201.5,3.5 + parent: 2 + - uid: 6890 + components: + - type: Transform + pos: -201.5,13.5 + parent: 2 + - uid: 17624 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 17565 +- proto: ClosetFireFilled + entities: + - uid: 6891 + components: + - type: Transform + pos: -185.5,-4.5 + parent: 2 + - uid: 6892 + components: + - type: Transform + pos: -96.5,-4.5 + parent: 2 + - uid: 6893 + components: + - type: Transform + pos: -176.5,-20.5 + parent: 2 + - uid: 6894 + components: + - type: Transform + pos: -196.5,-20.5 + parent: 2 + - uid: 6895 + components: + - type: Transform + pos: -66.5,9.5 + parent: 2 + - uid: 6896 + components: + - type: Transform + pos: -56.5,-16.5 + parent: 2 + - uid: 6897 + components: + - type: Transform + pos: -78.5,15.5 + parent: 2 + - uid: 6898 + components: + - type: Transform + pos: -139.5,-6.5 + parent: 2 + - uid: 6899 + components: + - type: Transform + pos: -134.5,-6.5 + parent: 2 + - uid: 6900 + components: + - type: Transform + pos: -206.5,15.5 + parent: 2 +- proto: ClosetJanitorFilled + entities: + - uid: 6901 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 +- proto: ClosetL3JanitorFilled + entities: + - uid: 6902 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 +- proto: ClosetLegalFilled + entities: + - uid: 6903 + components: + - type: Transform + pos: -142.5,5.5 + parent: 2 +- proto: ClosetMaintenance + entities: + - uid: 5831 + components: + - type: Transform + pos: -157.5,-15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31168 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5832 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6904 + components: + - type: Transform + pos: -157.5,-14.5 + parent: 2 + - uid: 6905 + components: + - type: Transform + pos: -153.5,-14.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 147.92336 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6906 + - 6907 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6908 + components: + - type: Transform + pos: -153.5,-15.5 + parent: 2 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 6909 + components: + - type: Transform + pos: -126.5,-20.5 + parent: 2 + - uid: 6910 + components: + - type: Transform + pos: -121.5,-21.5 + parent: 2 + - uid: 6911 + components: + - type: Transform + pos: -113.5,-15.5 + parent: 2 + - uid: 6912 + components: + - type: Transform + pos: -122.5,0.5 + parent: 2 + - uid: 6913 + components: + - type: Transform + pos: -37.5,12.5 + parent: 2 + - uid: 6914 + components: + - type: Transform + pos: -93.5,-18.5 + parent: 2 + - uid: 6915 + components: + - type: Transform + pos: -88.5,-19.5 + parent: 2 + - uid: 6916 + components: + - type: Transform + pos: -70.5,-18.5 + parent: 2 + - uid: 6917 + components: + - type: Transform + pos: -50.5,-19.5 + parent: 2 + - uid: 6918 + components: + - type: Transform + pos: -39.5,-14.5 + parent: 2 + - uid: 6919 + components: + - type: Transform + pos: -93.5,-14.5 + parent: 2 + - uid: 6920 + components: + - type: Transform + pos: -101.5,-6.5 + parent: 2 + - uid: 6921 + components: + - type: Transform + pos: -127.5,-15.5 + parent: 2 + - uid: 6922 + components: + - type: Transform + pos: -25.5,9.5 + parent: 2 + - uid: 6923 + components: + - type: Transform + pos: -65.5,11.5 + parent: 2 + - uid: 6924 + components: + - type: Transform + pos: -71.5,-24.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 6925 + components: + - type: Transform + pos: -91.5,9.5 + parent: 2 + - uid: 6926 + components: + - type: Transform + pos: -110.5,8.5 + parent: 2 + - uid: 6927 + components: + - type: Transform + pos: -47.5,7.5 + parent: 2 + - uid: 6928 + components: + - type: Transform + pos: -52.5,15.5 + parent: 2 + - uid: 6929 + components: + - type: Transform + pos: -103.5,-18.5 + parent: 2 + - uid: 6930 + components: + - type: Transform + pos: -117.5,-18.5 + parent: 2 + - uid: 6931 + components: + - type: Transform + pos: -44.5,13.5 + parent: 2 + - uid: 6932 + components: + - type: Transform + pos: -31.5,12.5 + parent: 2 + - uid: 6933 + components: + - type: Transform + pos: -41.5,17.5 + parent: 2 + - uid: 6934 + components: + - type: Transform + pos: -89.5,15.5 + parent: 2 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 6935 + components: + - type: Transform + pos: -98.5,-4.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6937 + - 6936 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6938 + components: + - type: Transform + pos: -68.5,-1.5 + parent: 2 + - uid: 6939 + components: + - type: Transform + pos: -67.5,-1.5 + parent: 2 + - uid: 6940 + components: + - type: Transform + pos: -77.5,10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6941 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6942 + components: + - type: Transform + pos: -78.5,-17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6943 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6944 + components: + - type: Transform + pos: -77.5,-17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6945 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6946 + components: + - type: Transform + pos: -69.5,-10.5 + parent: 2 + - uid: 6947 + components: + - type: Transform + pos: -48.5,-12.5 + parent: 2 + - uid: 6948 + components: + - type: Transform + pos: -49.5,8.5 + parent: 2 +- proto: ClosetToolFilled + entities: + - uid: 6949 + components: + - type: Transform + pos: -96.5,-17.5 + parent: 2 + - uid: 6950 + components: + - type: Transform + pos: -101.5,-9.5 + parent: 2 + - uid: 6951 + components: + - type: Transform + pos: -72.5,-24.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 6952 + components: + - type: Transform + pos: -81.5,12.5 + parent: 2 + - uid: 6953 + components: + - type: Transform + pos: -71.5,11.5 + parent: 2 + - uid: 6954 + components: + - type: Transform + pos: -90.5,-19.5 + parent: 2 + - uid: 6955 + components: + - type: Transform + pos: -55.5,-19.5 + parent: 2 + - uid: 6956 + components: + - type: Transform + pos: -48.5,-22.5 + parent: 2 + - uid: 6957 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 2 + - uid: 6958 + components: + - type: Transform + pos: -51.5,13.5 + parent: 2 + - uid: 6959 + components: + - type: Transform + pos: -93.5,13.5 + parent: 2 + - uid: 6960 + components: + - type: Transform + pos: -62.5,-27.5 + parent: 2 + - uid: 17625 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 17565 +- proto: ClosetWallEmergency + entities: + - uid: 6961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -159.5,-22.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6965 + - 6966 + - 6967 + - 6962 + - 6963 + - 6964 + - 6968 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 6969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -189.5,-21.5 + parent: 2 + - uid: 6970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -183.5,-21.5 + parent: 2 + - uid: 6971 + components: + - type: Transform + pos: -200.5,11.5 + parent: 2 +- proto: ClothingBackpack + entities: + - uid: 3 + components: + - type: Transform + pos: -91.72249,-7.7549753 + parent: 2 + - type: Storage + storedItems: + 4: + position: 0,0 + _rotation: South + 19: + position: 2,0 + _rotation: South + 6: + position: 4,0 + _rotation: South + 18: + position: 5,0 + _rotation: South + 8: + position: 6,0 + _rotation: North + 10: + position: 0,2 + _rotation: East + 15: + position: 2,2 + _rotation: East + 16: + position: 4,2 + _rotation: South + 12: + position: 5,2 + _rotation: West + 14: + position: 0,3 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 4 + - 19 + - 18 + - 6 + - 10 + - 15 + - 16 + - 12 + - 14 + - 8 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null +- proto: ClothingBackpackClown + entities: + - uid: 6973 + components: + - type: Transform + parent: 6972 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackDuffelClown + entities: + - uid: 6974 + components: + - type: Transform + parent: 6972 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackDuffelMime + entities: + - uid: 6984 + components: + - type: Transform + parent: 6983 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 7001 + components: + - type: Transform + parent: 7000 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackMerc + entities: + - uid: 7082 + components: + - type: Transform + pos: -38.481937,32.767075 + parent: 2 + - type: Storage + storedItems: + 7085: + position: 1,0 + _rotation: South + 7088: + position: 0,2 + _rotation: South + 7084: + position: 2,1 + _rotation: West + 7087: + position: 2,2 + _rotation: South + 7086: + position: 0,0 + _rotation: South + 7083: + position: 2,0 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 7085 + - 7088 + - 7083 + - 7086 + - 7087 + - 7084 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null +- proto: ClothingBackpackMime + entities: + - uid: 6985 + components: + - type: Transform + parent: 6983 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackSatchelClown + entities: + - uid: 6975 + components: + - type: Transform + parent: 6972 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackSatchelMime + entities: + - uid: 6986 + components: + - type: Transform + parent: 6983 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null + - type: InsideEntityStorage +- proto: ClothingBeltAssault + entities: + - uid: 7014 + components: + - type: Transform + parent: 7013 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltJanitorFilled + entities: + - uid: 7016 + components: + - type: Transform + parent: 7015 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltMercWebbing + entities: + - uid: 7021 + components: + - type: Transform + pos: -36.13626,32.81423 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: ClothingBeltMilitaryWebbingMed + entities: + - uid: 7023 + components: + - type: Transform + parent: 7022 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]90%[/color]. + priority: 0 + component: Armor + title: null + - type: InsideEntityStorage +- proto: ClothingBeltPlant + entities: + - uid: 7027 + components: + - type: Transform + pos: -103.32243,-7.151184 + parent: 2 +- proto: ClothingBeltPlantFilled + entities: + - uid: 7028 + components: + - type: Transform + pos: -103.54118,-7.526184 + parent: 2 +- proto: ClothingBeltSecurityWebbing + entities: + - uid: 7030 + components: + - type: Transform + parent: 7029 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltUtility + entities: + - uid: 7037 + components: + - type: Transform + pos: -46.446583,-7.2490263 + parent: 2 + - uid: 7038 + components: + - type: Transform + pos: -46.321583,-7.4990263 + parent: 2 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 7039 + components: + - type: Transform + pos: -45.477833,1.7604951 + parent: 2 + - uid: 7040 + components: + - type: Transform + pos: -64.48689,-19.889963 + parent: 2 + - uid: 7041 + components: + - type: Transform + pos: -69.56337,1.7963989 + parent: 2 + - uid: 7042 + components: + - type: Transform + pos: -68.5939,-12.356483 + parent: 2 + - uid: 7043 + components: + - type: Transform + pos: -67.702614,-12.590858 + parent: 2 + - uid: 7045 + components: + - type: Transform + parent: 7044 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7047 + components: + - type: Transform + pos: -199.60272,6.681015 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: ClothingEyesGlassesMercenary + entities: + - uid: 17555 + components: + - type: Transform + pos: -36.045273,34.499573 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: ClothingEyesGlassesSecurity + entities: + - uid: 7031 + components: + - type: Transform + parent: 7029 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 15 + components: + - type: Transform + parent: 3 + - type: Physics + canCollide: False + - uid: 7048 + components: + - type: Transform + pos: -141.51517,6.8110247 + parent: 2 +- proto: ClothingEyesHudMedical + entities: + - uid: 7049 + components: + - type: Transform + pos: -47.6812,17.030888 + parent: 2 +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 7050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -115.6955,8.767991 + parent: 2 +- proto: ClothingHandsGlovesBoxingYellow + entities: + - uid: 7051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -118.80488,7.424241 + parent: 2 +- proto: ClothingHandsGlovesColorBlack + entities: + - uid: 10 + components: + - type: Transform + parent: 3 + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 11 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 7046 + components: + - type: Transform + parent: 7044 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7053 + components: + - type: Transform + parent: 7052 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7057 + components: + - type: Transform + pos: -50.403984,-5.5777397 + parent: 2 + - uid: 7058 + components: + - type: Transform + pos: -199.40202,6.333414 + parent: 2 +- proto: ClothingHandsGlovesColorYellowBudget + entities: + - uid: 7059 + components: + - type: Transform + pos: -43.469433,4.7256165 + parent: 2 + - uid: 7060 + components: + - type: Transform + pos: -43.563183,4.4287415 + parent: 2 + - uid: 7061 + components: + - type: Transform + pos: -50.51336,-5.2808647 + parent: 2 + - uid: 7062 + components: + - type: Transform + pos: -116.74208,8.401611 + parent: 2 +- proto: ClothingHandsMercGlovesCombat + entities: + - uid: 7083 + components: + - type: Transform + parent: 7082 + - type: Physics + canCollide: False +- proto: ClothingHeadBandMerc + entities: + - uid: 7084 + components: + - type: Transform + parent: 7082 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False +- proto: ClothingHeadHatBeret + entities: + - uid: 8 + components: + - type: Transform + parent: 3 + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 9 +- proto: ClothingHeadHatBeretMerc + entities: + - uid: 7085 + components: + - type: Transform + parent: 7082 + - type: Physics + canCollide: False +- proto: ClothingHeadHatBeretSecurity + entities: + - uid: 7032 + components: + - type: Transform + parent: 7029 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatBunny + entities: + - uid: 7063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.411255,17.191402 + parent: 2 +- proto: ClothingHeadHatCatEars + entities: + - uid: 7017 + components: + - type: Transform + parent: 7015 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7064 + components: + - type: Transform + pos: -172.6234,-12.963645 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: ClothingHeadHatCone + entities: + - uid: 7065 + components: + - type: Transform + pos: -100.65434,-24.640648 + parent: 2 + - uid: 7066 + components: + - type: Transform + pos: -100.24809,-24.250023 + parent: 2 +- proto: ClothingHeadHatHardhatWhite + entities: + - uid: 7067 + components: + - type: Transform + pos: -1.5115505,0.80979156 + parent: 2 +- proto: ClothingHeadHatMimesoft + entities: + - uid: 6987 + components: + - type: Transform + parent: 6983 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatMimesoftFlipped + entities: + - uid: 6988 + components: + - type: Transform + parent: 6983 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatOutlawHat + entities: + - uid: 7068 + components: + - type: Transform + pos: -128.16539,-3.9936957 + parent: 2 +- proto: ClothingHeadHatShrineMaidenWig + entities: + - uid: 7069 + components: + - type: Transform + pos: -43.486683,7.6770444 + parent: 2 +- proto: ClothingHeadHatSyndie + entities: + - uid: 7070 + components: + - type: Transform + pos: -71.65919,5.859562 + parent: 2 +- proto: ClothingHeadHatWelding + entities: + - uid: 7071 + components: + - type: Transform + pos: -45.366974,-7.4645395 + parent: 2 +- proto: ClothingHeadHelmetEVA + entities: + - uid: 7072 + components: + - type: Transform + pos: -18.647797,-11.22751 + parent: 2 + - uid: 7073 + components: + - type: Transform + pos: -18.319672,-11.07126 + parent: 2 + - uid: 7074 + components: + - type: Transform + pos: -18.632172,-15.399385 + parent: 2 + - uid: 7075 + components: + - type: Transform + pos: -18.350922,-15.29001 + parent: 2 +- proto: ClothingHeadHelmetEVALarge + entities: + - uid: 7077 + components: + - type: Transform + parent: 7076 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHelmetMerc + entities: + - uid: 7012 + components: + - type: Transform + pos: -39.272614,35.219574 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: ClothingHeadHelmetRiot + entities: + - uid: 7079 + components: + - type: Transform + pos: -170.43552,14.947405 + parent: 2 + - uid: 7080 + components: + - type: Transform + pos: -170.74802,14.759905 + parent: 2 +- proto: ClothingHeadHelmetThunderdome + entities: + - uid: 7081 + components: + - type: Transform + pos: -85.51813,-36.211735 + parent: 2 +- proto: ClothingHeadsetGrey + entities: + - uid: 16 + components: + - type: Transform + parent: 3 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 17 + - type: Physics + canCollide: False + - type: ActiveRadio + channels: + - Common +- proto: ClothingMaskBandMerc + entities: + - uid: 7086 + components: + - type: Transform + parent: 7082 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False +- proto: ClothingMaskBreath + entities: + - uid: 7090 + components: + - type: Transform + parent: 7089 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskBreathMedical + entities: + - uid: 6962 + components: + - type: Transform + parent: 6961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6963 + components: + - type: Transform + parent: 6961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6964 + components: + - type: Transform + parent: 6961 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskGas + entities: + - uid: 18 + components: + - type: Transform + parent: 3 + - type: Physics + canCollide: False +- proto: ClothingMaskGasMerc + entities: + - uid: 17554 + components: + - type: Transform + pos: -39.272614,35.062073 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: ClothingMaskGasSecurity + entities: + - uid: 31 + components: + - type: Transform + parent: 24 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 32 + components: + - type: Transform + parent: 24 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7095 + components: + - type: Transform + parent: 7094 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7096 + components: + - type: Transform + parent: 7094 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskGasSwat + entities: + - uid: 7104 + components: + - type: Transform + parent: 7103 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7109 + components: + - type: Transform + parent: 7108 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskMime + entities: + - uid: 6989 + components: + - type: Transform + parent: 6983 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskSadMime + entities: + - uid: 6990 + components: + - type: Transform + parent: 6983 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskScaredMime + entities: + - uid: 6991 + components: + - type: Transform + parent: 6983 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskSexyClown + entities: + - uid: 6976 + components: + - type: Transform + parent: 6972 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskSexyMime + entities: + - uid: 6992 + components: + - type: Transform + parent: 6983 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckClownmedal + entities: + - uid: 7024 + components: + - type: Transform + parent: 7022 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckScarfStripedRed + entities: + - uid: 6 + components: + - type: Transform + parent: 3 + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 7 +- proto: ClothingOuterArmorBasic + entities: + - uid: 7033 + components: + - type: Transform + parent: 7029 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 7113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -171.40427,14.65053 + parent: 2 + - uid: 7114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -171.60739,14.384905 + parent: 2 +- proto: ClothingOuterArmorReflective + entities: + - uid: 7115 + components: + - type: Transform + pos: -172.40427,14.58803 + parent: 2 + - uid: 7116 + components: + - type: Transform + pos: -172.68552,14.33803 + parent: 2 +- proto: ClothingOuterArmorRiot + entities: + - uid: 7117 + components: + - type: Transform + pos: -170.38864,14.541155 + parent: 2 + - uid: 7118 + components: + - type: Transform + pos: -170.68552,14.30678 + parent: 2 +- proto: ClothingOuterClownPriest + entities: + - uid: 6977 + components: + - type: Transform + parent: 6972 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitBrigmedic + entities: + - uid: 7120 + components: + - type: Transform + parent: 7119 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: Понижает вашу скорость на [color=yellow]35%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Тупой[/color] урон снижается на [color=lightblue]20%[/color]. + + - [color=yellow]Рубящий[/color] урон снижается на [color=lightblue]20%[/color]. + + - [color=yellow]Проникающий[/color] урон снижается на [color=lightblue]30%[/color]. + + - [color=aqua]Stamina[/color] damage reduced by [color=lightblue]25%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitEngineering + entities: + - uid: 7054 + components: + - type: Transform + parent: 7052 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: Понижает вашу скорость на [color=yellow]15%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Тупой[/color] урон снижается на [color=lightblue]10%[/color]. + + - [color=yellow]Рубящий[/color] урон снижается на [color=lightblue]10%[/color]. + + - [color=yellow]Проникающий[/color] урон снижается на [color=lightblue]10%[/color]. + + - [color=yellow]Неизвестный[/color] урон снижается на [color=lightblue]20%[/color]. + + - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]80%[/color]. + + - [color=orange]Взрывной[/color] урон снижен благодаря [color=lightblue]50%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitEVA + entities: + - uid: 7078 + components: + - type: Transform + parent: 7076 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7123 + components: + - type: Transform + pos: -18.616547,-15.646643 + parent: 2 + - uid: 7124 + components: + - type: Transform + pos: -18.397797,-15.537268 + parent: 2 + - uid: 7125 + components: + - type: Transform + pos: -18.679047,-11.599768 + parent: 2 + - uid: 7126 + components: + - type: Transform + pos: -18.382172,-11.427893 + parent: 2 +- proto: ClothingOuterHardsuitRd + entities: + - uid: 7091 + components: + - type: Transform + parent: 7089 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitSecurity + entities: + - uid: 33 + components: + - type: Transform + parent: 24 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 34 + components: + - type: Transform + parent: 24 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7097 + components: + - type: Transform + parent: 7094 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7098 + components: + - type: Transform + parent: 7094 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitSecurityRed + entities: + - uid: 7110 + components: + - type: Transform + parent: 7108 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitWarden + entities: + - uid: 7105 + components: + - type: Transform + parent: 7103 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: Понижает вашу скорость на [color=yellow]15%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Тупой[/color] урон снижается на [color=lightblue]45%[/color]. + + - [color=yellow]Рубящий[/color] урон снижается на [color=lightblue]45%[/color]. + + - [color=yellow]Проникающий[/color] урон снижается на [color=lightblue]45%[/color]. + + - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]35%[/color]. + + - [color=yellow]Тепловой[/color] урон снижается на [color=lightblue]35%[/color]. + + - [color=aqua]Stamina[/color] damage reduced by [color=lightblue]35.000003814697266%[/color]. + + - [color=orange]Взрывной[/color] урон снижен благодаря [color=lightblue]60%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterSuitEmergency + entities: + - uid: 7127 + components: + - type: Transform + pos: -169.44148,-24.209953 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: ClothingOuterSuitRad + entities: + - uid: 6936 + components: + - type: Transform + parent: 6935 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterVest + entities: + - uid: 19 + components: + - type: Transform + parent: 3 + - type: Physics + canCollide: False +- proto: ClothingOuterWinterClown + entities: + - uid: 6978 + components: + - type: Transform + parent: 6972 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterMime + entities: + - uid: 6993 + components: + - type: Transform + parent: 6983 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterSec + entities: + - uid: 7128 + components: + - type: Transform + pos: -152.84286,9.664454 + parent: 2 +- proto: ClothingShoesBootsCombat + entities: + - uid: 7087 + components: + - type: Transform + parent: 7082 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False +- proto: ClothingShoesBootsMag + entities: + - uid: 27 + components: + - type: Transform + parent: 24 + - type: Magboots + toggleActionEntity: 28 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 28 + - type: InsideEntityStorage + - uid: 29 + components: + - type: Transform + parent: 24 + - type: Magboots + toggleActionEntity: 30 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 30 + - type: InsideEntityStorage + - uid: 7092 + components: + - type: Transform + parent: 7089 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7099 + components: + - type: Transform + parent: 7094 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7100 + components: + - type: Transform + parent: 7094 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7106 + components: + - type: Transform + parent: 7103 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7111 + components: + - type: Transform + parent: 7108 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7129 + components: + - type: Transform + pos: -18.587639,-12.34167 + parent: 2 + - uid: 7130 + components: + - type: Transform + pos: -18.572014,-12.18542 + parent: 2 + - uid: 7131 + components: + - type: Transform + pos: -18.384514,-12.46667 + parent: 2 + - uid: 7132 + components: + - type: Transform + pos: -79.49825,-10.44737 + parent: 2 +- proto: ClothingShoesBootsMagAdv + entities: + - uid: 7134 + components: + - type: Transform + parent: 7133 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsWinterClown + entities: + - uid: 6979 + components: + - type: Transform + parent: 6972 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsWinterMime + entities: + - uid: 6994 + components: + - type: Transform + parent: 6983 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesClown + entities: + - uid: 6980 + components: + - type: Transform + parent: 6972 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesClownLarge + entities: + - uid: 6981 + components: + - type: Transform + parent: 6972 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesColorBlack + entities: + - uid: 12 + components: + - type: Transform + parent: 3 + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 13 +- proto: ClothingShoesSlippers + entities: + - uid: 7018 + components: + - type: Transform + parent: 7015 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtJanimaidmini + entities: + - uid: 7019 + components: + - type: Transform + parent: 7015 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtMime + entities: + - uid: 6995 + components: + - type: Transform + parent: 6983 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtSeniorEngineer + entities: + - uid: 7055 + components: + - type: Transform + parent: 7052 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtSeniorOfficer + entities: + - uid: 7034 + components: + - type: Transform + parent: 7029 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitClown + entities: + - uid: 6982 + components: + - type: Transform + parent: 6972 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitColorBlack + entities: + - uid: 4 + components: + - type: Transform + parent: 3 + - type: SuitSensor + mode: SensorBinary + - type: DeviceNetwork + address: 7FD2-F676 + transmitFrequency: 1262 + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 5 +- proto: ClothingUniformJumpsuitMercenary + entities: + - uid: 7088 + components: + - type: Transform + parent: 7082 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpsuitMime + entities: + - uid: 6996 + components: + - type: Transform + parent: 6983 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitRepairmanSyndie + entities: + - uid: 7136 + components: + - type: Transform + pos: -71.51856,5.312687 + parent: 2 +- proto: ClothingUniformJumpsuitSeniorEngineer + entities: + - uid: 7056 + components: + - type: Transform + parent: 7052 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitSeniorOfficer + entities: + - uid: 7035 + components: + - type: Transform + parent: 7029 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClusterBangFull + entities: + - uid: 7036 + components: + - type: Transform + parent: 7029 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -146.44025,10.583391 + parent: 2 +- proto: Cobweb1 + entities: + - uid: 7138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,-9.5 + parent: 2 + - uid: 7139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -101.5,-12.5 + parent: 2 + - uid: 7140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,-12.5 + parent: 2 + - uid: 7141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,-21.5 + parent: 2 + - uid: 7142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,-14.5 + parent: 2 + - uid: 7143 + components: + - type: Transform + pos: -110.5,-20.5 + parent: 2 + - uid: 7144 + components: + - type: Transform + pos: -98.5,-17.5 + parent: 2 + - uid: 7145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,-9.5 + parent: 2 + - uid: 7146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-19.5 + parent: 2 + - uid: 7147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,-19.5 + parent: 2 + - uid: 7148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,-8.5 + parent: 2 + - uid: 7149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,-20.5 + parent: 2 + - uid: 7150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-21.5 + parent: 2 + - uid: 7151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-21.5 + parent: 2 + - uid: 7152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-14.5 + parent: 2 + - uid: 7153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-12.5 + parent: 2 + - uid: 7154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 2 + - uid: 7155 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 2 + - uid: 7156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 2 + - uid: 7157 + components: + - type: Transform + pos: -14.5,10.5 + parent: 2 + - uid: 7158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-7.5 + parent: 2 + - uid: 7159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,2.5 + parent: 2 + - uid: 7160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-20.5 + parent: 2 + - uid: 7161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 2 + - uid: 7162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-17.5 + parent: 2 + - uid: 7163 + components: + - type: Transform + pos: -44.5,17.5 + parent: 2 + - uid: 7164 + components: + - type: Transform + pos: -22.5,10.5 + parent: 2 + - uid: 7165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,17.5 + parent: 2 + - uid: 7166 + components: + - type: Transform + pos: -53.5,17.5 + parent: 2 + - uid: 7167 + components: + - type: Transform + pos: -67.5,12.5 + parent: 2 + - uid: 7168 + components: + - type: Transform + pos: -73.5,15.5 + parent: 2 + - uid: 7169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,3.5 + parent: 2 + - uid: 7170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,8.5 + parent: 2 + - uid: 7171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,15.5 + parent: 2 + - uid: 7172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -114.5,6.5 + parent: 2 + - uid: 7173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,2.5 + parent: 2 + - uid: 7174 + components: + - type: Transform + pos: -115.5,-18.5 + parent: 2 + - uid: 7175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -111.5,-18.5 + parent: 2 + - uid: 7176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,15.5 + parent: 2 + - uid: 17937 + components: + - type: Transform + pos: -51.5,-9.5 + parent: 2 + - uid: 17939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-4.5 + parent: 2 + - uid: 17940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 2 + - uid: 17941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-6.5 + parent: 2 + - uid: 17942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-15.5 + parent: 2 + - uid: 17943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-12.5 + parent: 2 + - uid: 17944 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 17945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 + - uid: 17946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 2 + - uid: 17947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 2 + - uid: 17948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,1.5 + parent: 2 + - uid: 17949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,5.5 + parent: 2 + - uid: 17950 + components: + - type: Transform + pos: -40.5,10.5 + parent: 2 + - uid: 17951 + components: + - type: Transform + pos: -30.5,9.5 + parent: 2 +- proto: Cobweb2 + entities: + - uid: 7177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,-10.5 + parent: 2 + - uid: 7178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,-6.5 + parent: 2 + - uid: 7179 + components: + - type: Transform + pos: -111.5,-15.5 + parent: 2 + - uid: 7180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-8.5 + parent: 2 + - uid: 7181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,7.5 + parent: 2 + - uid: 7182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,15.5 + parent: 2 + - uid: 7183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,17.5 + parent: 2 + - uid: 7184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,12.5 + parent: 2 + - uid: 7185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,15.5 + parent: 2 + - uid: 7186 + components: + - type: Transform + pos: -75.5,11.5 + parent: 2 + - uid: 7187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,15.5 + parent: 2 + - uid: 7188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -93.5,13.5 + parent: 2 + - uid: 7189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,6.5 + parent: 2 + - uid: 7190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,15.5 + parent: 2 + - uid: 7191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -122.5,11.5 + parent: 2 + - uid: 7192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,10.5 + parent: 2 + - uid: 7193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -122.5,0.5 + parent: 2 + - uid: 17780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -176.5,-20.5 + parent: 2 + - uid: 17901 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - uid: 17902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-2.5 + parent: 2 + - uid: 17903 + components: + - type: Transform + pos: -50.5,9.5 + parent: 2 + - uid: 17904 + components: + - type: Transform + pos: -77.5,10.5 + parent: 2 + - uid: 17905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,-0.5 + parent: 2 + - uid: 17906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -101.5,-6.5 + parent: 2 + - uid: 17907 + components: + - type: Transform + pos: -110.5,0.5 + parent: 2 + - uid: 17908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,4.5 + parent: 2 + - uid: 17909 + components: + - type: Transform + pos: -122.5,-1.5 + parent: 2 + - uid: 17910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -113.5,-13.5 + parent: 2 + - uid: 17911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -109.5,-15.5 + parent: 2 + - uid: 17912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -139.5,0.5 + parent: 2 + - uid: 17913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -149.5,2.5 + parent: 2 + - uid: 17914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -161.5,2.5 + parent: 2 + - uid: 17915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -173.5,6.5 + parent: 2 + - uid: 17916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -199.5,1.5 + parent: 2 + - uid: 17917 + components: + - type: Transform + pos: -182.5,-12.5 + parent: 2 + - uid: 17918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -187.5,-18.5 + parent: 2 + - uid: 17919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -209.5,0.5 + parent: 2 + - uid: 17922 + components: + - type: Transform + pos: -195.5,10.5 + parent: 2 + - uid: 17923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -218.5,-2.5 + parent: 2 + - uid: 17924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -224.5,-10.5 + parent: 2 + - uid: 17925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -216.5,-17.5 + parent: 2 + - uid: 17926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -227.5,-23.5 + parent: 2 + - uid: 17927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -227.5,-35.5 + parent: 2 + - uid: 17928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -214.5,-33.5 + parent: 2 + - uid: 17929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -158.5,-25.5 + parent: 2 + - uid: 17930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -159.5,-14.5 + parent: 2 + - uid: 17931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -149.5,0.5 + parent: 2 + - uid: 17932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,-7.5 + parent: 2 + - uid: 17933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,-10.5 + parent: 2 + - uid: 17934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,-17.5 + parent: 2 + - uid: 17935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-22.5 + parent: 2 + - uid: 17936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-26.5 + parent: 2 + - uid: 17938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-19.5 + parent: 2 +- proto: CockroachTimedSpawner + entities: + - uid: 7194 + components: + - type: Transform + pos: -62.5,12.5 + parent: 2 + - uid: 7195 + components: + - type: Transform + pos: -91.5,-15.5 + parent: 2 + - uid: 7196 + components: + - type: Transform + pos: -94.5,-12.5 + parent: 2 + - uid: 7197 + components: + - type: Transform + pos: -93.5,14.5 + parent: 2 + - uid: 7198 + components: + - type: Transform + pos: -122.5,-20.5 + parent: 2 + - uid: 7199 + components: + - type: Transform + pos: -111.5,-10.5 + parent: 2 + - uid: 7200 + components: + - type: Transform + pos: -115.5,-15.5 + parent: 2 + - uid: 7201 + components: + - type: Transform + pos: -107.5,-18.5 + parent: 2 + - uid: 7202 + components: + - type: Transform + pos: -86.5,-18.5 + parent: 2 + - uid: 7203 + components: + - type: Transform + pos: -49.5,-18.5 + parent: 2 + - uid: 7204 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 2 + - uid: 7205 + components: + - type: Transform + pos: -121.5,8.5 + parent: 2 + - uid: 7206 + components: + - type: Transform + pos: -100.5,-11.5 + parent: 2 + - uid: 7207 + components: + - type: Transform + pos: -92.5,10.5 + parent: 2 + - uid: 7208 + components: + - type: Transform + pos: -40.5,13.5 + parent: 2 +- proto: ComfyChair + entities: + - uid: 7209 + components: + - type: Transform + pos: -134.5,7.5 + parent: 2 + - uid: 7210 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - uid: 7211 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 7212 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 7213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 2 + - uid: 7214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 2 + - uid: 7215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 2 + - uid: 7216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 +- proto: ComputerAnalysisConsole + entities: + - uid: 7217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -191.5,11.5 + parent: 2 + - uid: 7218 + components: + - type: Transform + pos: -191.5,5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11935: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: ComputerBroken + entities: + - uid: 7219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,31.5 + parent: 2 + - uid: 7220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,31.5 + parent: 2 +- proto: ComputerCargoBounty + entities: + - uid: 7221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 2 + - uid: 7222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-27.5 + parent: 2 +- proto: ComputerCargoOrders + entities: + - uid: 7223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 2 + - uid: 7224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-17.5 + parent: 2 + - uid: 7225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-27.5 + parent: 2 +- proto: ComputerCloningConsole + entities: + - uid: 7226 + components: + - type: Transform + pos: -184.5,-29.5 + parent: 2 +- proto: ComputerComms + entities: + - uid: 7227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 2 + - uid: 7228 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 +- proto: ComputerCrewMonitoring + entities: + - uid: 7229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 2 + - uid: 7230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -163.5,7.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 7231 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 7232 + components: + - type: Transform + pos: -167.5,7.5 + parent: 2 + - uid: 7233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -165.5,7.5 + parent: 2 +- proto: ComputerFrame + entities: + - uid: 7234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,31.5 + parent: 2 +- proto: ComputerId + entities: + - uid: 7235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,0.5 + parent: 2 + - uid: 7236 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 7237 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 2 +- proto: ComputerIFF + entities: + - uid: 17626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 17565 +- proto: ComputerMassMedia + entities: + - uid: 7238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -223.5,-24.5 + parent: 2 + - uid: 7239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,8.5 + parent: 2 +- proto: ComputerMedicalRecords + entities: + - uid: 7240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,0.5 + parent: 2 + - uid: 7241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 7242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-2.5 + parent: 2 + - uid: 7243 + components: + - type: Transform + pos: -2.5,0.5 + parent: 2 + - uid: 7244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,9.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 7245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - uid: 7246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 2 + - uid: 7247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,-42.5 + parent: 2 + - uid: 7248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -223.5,-23.5 + parent: 2 + - uid: 17627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-2.5 + parent: 17565 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 7249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -196.5,2.5 + parent: 2 + - uid: 7250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 2 +- proto: ComputerSalvageExpedition + entities: + - uid: 7251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,-36.5 + parent: 2 +- proto: ComputerShuttle + entities: + - uid: 17628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 17565 +- proto: ComputerShuttleCargo + entities: + - uid: 7252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-27.5 + parent: 2 +- proto: ComputerShuttleSalvage + entities: + - uid: 7253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,-36.5 + parent: 2 +- proto: ComputerSolarControl + entities: + - uid: 7254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-5.5 + parent: 2 + - uid: 7255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 2 + - uid: 7256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,8.5 + parent: 2 + - uid: 7257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-24.5 + parent: 2 + - uid: 7258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -124.5,11.5 + parent: 2 +- proto: ComputerStationRecords + entities: + - uid: 7259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - uid: 7260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 2 + - uid: 7261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -146.5,5.5 + parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 7262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + - uid: 7263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -165.5,8.5 + parent: 2 + - uid: 7264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -161.5,0.5 + parent: 2 + - uid: 7265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -158.5,10.5 + parent: 2 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 7266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -152.5,10.5 + parent: 2 + - uid: 7267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -161.5,-0.5 + parent: 2 +- proto: ComputerTelevision + entities: + - uid: 7268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -112.5,0.5 + parent: 2 + - uid: 7269 + components: + - type: Transform + pos: -156.5,-16.5 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 7270 + components: + - type: Transform + pos: -60.5,-29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14462 + - uid: 7271 + components: + - type: Transform + pos: -60.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14462 + - uid: 7272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14462 + - uid: 7273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14462 + - uid: 7274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14462 + - uid: 7275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -130.5,-17.5 + parent: 2 + - uid: 7276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -129.5,-17.5 + parent: 2 + - uid: 7277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -128.5,-17.5 + parent: 2 + - uid: 7278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -127.5,-17.5 + parent: 2 + - uid: 7279 + components: + - type: Transform + pos: -126.5,-17.5 + parent: 2 + - uid: 7280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,-18.5 + parent: 2 + - uid: 7281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,-18.5 + parent: 2 + - uid: 7282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,-18.5 + parent: 2 + - uid: 7283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,-18.5 + parent: 2 + - uid: 7284 + components: + - type: Transform + pos: -130.5,-18.5 + parent: 2 + - uid: 7285 + components: + - type: Transform + pos: -130.5,-19.5 + parent: 2 + - uid: 7286 + components: + - type: Transform + pos: -130.5,-20.5 + parent: 2 + - uid: 7287 + components: + - type: Transform + pos: -130.5,-21.5 + parent: 2 + - uid: 7288 + components: + - type: Transform + pos: -130.5,-22.5 + parent: 2 + - uid: 7289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14462 + - uid: 7290 + components: + - type: Transform + pos: -60.5,-26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14462 + - uid: 7291 + components: - type: Transform - parent: 3 - - type: SolutionContainerManager - solutions: null - containers: - - food - - type: Physics - canCollide: False - - type: ContainerContainer - containers: - solution@food: !type:ContainerSlot - ent: 7 -- proto: ClothingOuterArmorBasic - entities: - - uid: 6649 + rot: 3.141592653589793 rad + pos: -55.5,-25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14462 + - uid: 7292 components: - type: Transform - parent: 6645 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterArmorBulletproof - entities: - - uid: 6716 + pos: -60.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14462 + - uid: 7293 components: - type: Transform rot: 3.141592653589793 rad - pos: -171.40427,14.65053 + pos: -56.5,-29.5 parent: 2 - - uid: 6717 + - type: DeviceLinkSink + links: + - 14462 + - uid: 7294 components: - type: Transform rot: 3.141592653589793 rad - pos: -171.60739,14.384905 + pos: -55.5,-26.5 parent: 2 -- proto: ClothingOuterArmorReflective + - type: DeviceLinkSink + links: + - 14462 +- proto: CounterWoodFrame entities: - - uid: 6718 + - uid: 7295 components: - type: Transform - pos: -172.40427,14.58803 + rot: 3.141592653589793 rad + pos: -122.5,3.5 parent: 2 - - uid: 6719 +- proto: CrateArtifactContainer + entities: + - uid: 7296 components: - type: Transform - pos: -172.68552,14.33803 + pos: -188.5,13.5 parent: 2 -- proto: ClothingOuterArmorRiot +- proto: CrateCommandSecure entities: - - uid: 6720 + - uid: 935 components: - type: Transform - pos: -170.38864,14.541155 + pos: -6.5,2.5 parent: 2 - - uid: 6721 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 147.92336 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 938 + - 937 + - 936 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 7297 components: - type: Transform - pos: -170.68552,14.30678 + pos: -144.5,5.5 parent: 2 -- proto: ClothingOuterCoatLabSeniorPhysician + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 147.92336 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7307 + - 7306 + - 7305 + - 7304 + - 7303 + - 7302 + - 7301 + - 7300 + - 7299 + - 7298 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringAMEControl entities: - - uid: 6677 + - uid: 7308 components: - type: Transform - parent: 6675 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterCoatLabSeniorResearcher + pos: -58.5,-9.5 + parent: 2 +- proto: CrateEngineeringAMEJar entities: - - uid: 454 + - uid: 7309 components: - type: Transform - parent: 451 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitBrigmedic + pos: -58.5,-11.5 + parent: 2 +- proto: CrateEngineeringAMEShielding entities: - - uid: 6723 + - uid: 7310 components: - type: Transform - parent: 6722 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: Понижает вашу скорость на [color=yellow]35%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - Обеспечивает следующую защиту: - - - [color=yellow]Тупой[/color] урон снижается на [color=lightblue]20%[/color]. - - - [color=yellow]Рубящий[/color] урон снижается на [color=lightblue]20%[/color]. - - - [color=yellow]Проникающий[/color] урон снижается на [color=lightblue]30%[/color]. - - - [color=aqua]Stamina[/color] damage reduced by [color=lightblue]25%[/color]. - priority: 0 - component: Armor - title: null - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitEngineering + pos: -58.5,-10.5 + parent: 2 +- proto: CrateEngineeringCableBulk entities: - - uid: 6666 + - uid: 7311 components: - type: Transform - parent: 6664 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: Понижает вашу скорость на [color=yellow]15%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - Обеспечивает следующую защиту: - - - [color=yellow]Тупой[/color] урон снижается на [color=lightblue]10%[/color]. - - - [color=yellow]Рубящий[/color] урон снижается на [color=lightblue]10%[/color]. - - - [color=yellow]Проникающий[/color] урон снижается на [color=lightblue]10%[/color]. - - - [color=yellow]Неизвестный[/color] урон снижается на [color=lightblue]20%[/color]. - - - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]50%[/color]. - - - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]80%[/color]. - - - [color=orange]Взрывной[/color] урон снижен благодаря [color=lightblue]50%[/color]. - priority: 0 - component: Armor - title: null - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitEVA + pos: -172.5,-8.5 + parent: 2 + - uid: 7312 + components: + - type: Transform + pos: -37.5,-25.5 + parent: 2 + - uid: 7313 + components: + - type: Transform + pos: -60.5,-11.5 + parent: 2 + - uid: 7314 + components: + - type: Transform + pos: -189.5,7.5 + parent: 2 +- proto: CrateEngineeringCableHV entities: - - uid: 6726 + - uid: 7315 components: - type: Transform - pos: -18.616547,-15.646643 + pos: -98.5,-24.5 parent: 2 - - uid: 6727 + - uid: 7316 components: - type: Transform - pos: -18.397797,-15.537268 + pos: -14.5,10.5 parent: 2 - - uid: 6728 + - uid: 7317 components: - type: Transform - pos: -18.679047,-11.599768 + pos: -126.5,10.5 parent: 2 - - uid: 6729 +- proto: CrateEngineeringSolar + entities: + - uid: 7318 components: - type: Transform - pos: -18.382172,-11.427893 + pos: -60.5,-12.5 parent: 2 -- proto: ClothingOuterHardsuitSecurity + - uid: 7319 + components: + - type: Transform + pos: -38.5,-29.5 + parent: 2 + - uid: 7320 + components: + - type: Transform + pos: -101.5,-28.5 + parent: 2 + - uid: 7321 + components: + - type: Transform + pos: -123.5,15.5 + parent: 2 +- proto: CrateFilledSpawner entities: - - uid: 31 + - uid: 7322 components: - type: Transform - parent: 26 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 32 + pos: -64.5,-25.5 + parent: 2 + - uid: 7323 components: - type: Transform - parent: 26 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6710 + pos: -57.5,-23.5 + parent: 2 + - uid: 7324 components: - type: Transform - parent: 6707 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 6711 + pos: -52.5,-23.5 + parent: 2 + - uid: 7325 components: - type: Transform - parent: 6707 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitVoidParamed + pos: -87.5,-19.5 + parent: 2 + - uid: 7326 + components: + - type: Transform + pos: -93.5,11.5 + parent: 2 + - uid: 7327 + components: + - type: Transform + pos: -112.5,-15.5 + parent: 2 + - uid: 7328 + components: + - type: Transform + pos: -126.5,-15.5 + parent: 2 + - uid: 7329 + components: + - type: Transform + pos: -120.5,6.5 + parent: 2 + - uid: 7330 + components: + - type: Transform + pos: -65.5,12.5 + parent: 2 + - uid: 7331 + components: + - type: Transform + pos: -44.5,16.5 + parent: 2 + - uid: 7332 + components: + - type: Transform + pos: -42.5,17.5 + parent: 2 + - uid: 7333 + components: + - type: Transform + pos: -37.5,13.5 + parent: 2 + - uid: 7334 + components: + - type: Transform + pos: -88.5,15.5 + parent: 2 +- proto: CrateFoodCooking entities: - - uid: 6633 + - uid: 7335 components: - type: Transform - parent: 6629 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - Обеспечивает следующую защиту: - - - [color=yellow]Тепловой[/color] урон снижается на [color=lightblue]10%[/color]. - - - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]25%[/color]. - - - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]50%[/color]. - priority: 0 - component: Armor - - message: Понижает вашу скорость на [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - title: null - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterSuitEmergency + pos: -167.5,-19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 147.92336 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 7336 + components: + - type: Transform + pos: -117.5,-10.5 + parent: 2 +- proto: CrateFoodPizza entities: - - uid: 6730 + - uid: 7337 components: + - type: MetaData + desc: Разве пластик пахнет как еда? Сьедобные полимеры! + name: Пластиковый ящик - type: Transform - pos: -169.45995,-23.61099 + pos: -63.5,17.5 parent: 2 -- proto: ClothingOuterSuitRad + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14835 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateHydroponicsSeeds entities: - - uid: 6584 + - uid: 7338 components: - type: Transform - parent: 6583 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterVest + pos: -108.5,-6.5 + parent: 2 +- proto: CrateHydroponicsSeedsExotic entities: - - uid: 19 + - uid: 7339 components: - type: Transform - parent: 3 - - type: Physics - canCollide: False -- proto: ClothingOuterWinterSec + pos: -111.5,-15.5 + parent: 2 +- proto: CrateHydroponicsTools entities: - - uid: 6731 + - uid: 7340 components: - type: Transform - pos: -152.84286,9.664454 + pos: -108.5,-7.5 parent: 2 -- proto: ClothingShoesBootsCombat +- proto: CrateMaterialGlass entities: - - uid: 6621 + - uid: 7341 components: - type: Transform - parent: 6614 - - type: Physics - canCollide: False -- proto: ClothingShoesBootsMag + pos: -58.5,-23.5 + parent: 2 +- proto: CrateMaterialPlasma entities: - - uid: 27 + - uid: 7342 components: - type: Transform - parent: 26 - - type: Magboots - toggleActionEntity: 28 - - type: Physics - canCollide: False - - type: ActionsContainer + pos: -52.5,-22.5 + parent: 2 +- proto: CrateMaterialPlasteel + entities: + - uid: 7343 + components: + - type: Transform + pos: -66.5,-23.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateMaterialPlastic + entities: + - uid: 7344 + components: + - type: Transform + pos: -55.5,-2.5 + parent: 2 + - uid: 7345 + components: + - type: Transform + pos: -53.5,-24.5 + parent: 2 +- proto: CrateMaterialSteel + entities: + - uid: 7346 + components: + - type: Transform + pos: -57.5,-24.5 + parent: 2 +- proto: CrateMedicalSecure + entities: + - uid: 7000 + components: + - type: Transform + pos: -186.5,-25.5 + parent: 2 - type: ContainerContainer containers: - actions: !type:Container + entity_storage: !type:Container + showEnts: False + occludes: True ents: - - 28 - - type: InsideEntityStorage - - uid: 33 + - 7005 + - 7004 + - 7007 + - 7006 + - 7002 + - 7010 + - 7011 + - 7003 + - 7009 + - 7008 + - 7001 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateNPCCow + entities: + - uid: 7347 components: - type: Transform - parent: 26 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6712 + pos: -110.5,-13.5 + parent: 2 +- proto: CrateNPCHamlet + entities: + - uid: 7348 components: - type: Transform - parent: 6707 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 6713 + pos: 4.5,-0.5 + parent: 2 +- proto: CrateSalvageEquipment + entities: + - uid: 7349 components: - type: Transform - parent: 6707 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 6732 + pos: -86.5,-28.5 + parent: 2 +- proto: CrateSecurityBiosuit + entities: + - uid: 7350 components: - type: Transform - pos: -18.587639,-12.34167 + pos: -149.5,7.5 parent: 2 - - uid: 6733 +- proto: CrateSecurityRiot + entities: + - uid: 7351 components: - type: Transform - pos: -18.572014,-12.18542 + pos: -153.5,-8.5 parent: 2 - - uid: 6734 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 7352 components: - type: Transform - pos: -18.384514,-12.46667 + pos: -31.5,-8.5 parent: 2 - - uid: 6735 + - uid: 7353 components: - type: Transform - pos: -79.49825,-10.44737 + pos: -31.5,-12.5 parent: 2 -- proto: ClothingShoesBootsMagAdv +- proto: CrateSyndicate entities: - - uid: 6737 + - uid: 7015 components: + - type: MetaData + desc: Содержит случайное снаряжение Синдиката, общей стоимостью в 125 телекристаллов. + name: ящик суперприпасов синдиката - type: Transform - parent: 6736 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingShoesColorBlack - entities: - - uid: 12 + pos: -71.5,-12.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7018 + - 7016 + - 7019 + - 7017 + - 7020 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 7022 components: - type: Transform - parent: 3 - - type: SolutionContainerManager - solutions: null - containers: - - food - - type: Physics - canCollide: False + pos: -96.5,-6.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14835 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: - solution@food: !type:ContainerSlot - ent: 13 -- proto: ClothingShoesSlippers + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7023 + - 7025 + - 7024 + - 7026 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateToyBox entities: - - uid: 6626 + - uid: 7354 components: - type: Transform - parent: 6623 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtJanimaidmini + pos: -124.5,-8.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7360 + - 7364 + - 7357 + - 7359 + - 7356 + - 7367 + - 7362 + - 7366 + - 7361 + - 7365 + - 7358 + - 7355 + - 7363 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateTrackingImplants entities: - - uid: 6627 + - uid: 7368 components: - type: Transform - parent: 6623 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtParamedic + pos: -168.5,12.5 + parent: 2 +- proto: CrateTrashCartFilled entities: - - uid: 6634 + - uid: 7369 components: - type: Transform - parent: 6629 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtSeniorEngineer - entities: - - uid: 6667 + pos: -120.5,-17.5 + parent: 2 + - uid: 7370 components: - type: Transform - parent: 6664 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtSeniorOfficer - entities: - - uid: 6650 + pos: -98.5,-21.5 + parent: 2 + - uid: 7371 components: - type: Transform - parent: 6645 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtSeniorPhysician - entities: - - uid: 6678 + pos: -76.5,-24.5 + parent: 2 + - uid: 7372 components: - type: Transform - parent: 6675 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtSeniorResearcher - entities: - - uid: 455 + pos: -65.5,13.5 + parent: 2 + - uid: 7373 components: - type: Transform - parent: 451 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtSyndieFormalDress + pos: -76.5,15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 7374 + components: + - type: Transform + pos: -91.5,10.5 + parent: 2 + - uid: 7375 + components: + - type: Transform + pos: -122.5,6.5 + parent: 2 +- proto: CrateVendingMachineRestockMedicalFilled entities: - - uid: 6701 + - uid: 7376 components: - type: Transform - parent: 6697 - - type: Physics - canCollide: False -- proto: ClothingUniformJumpsuitColorBlack + pos: -184.5,-10.5 + parent: 2 +- proto: CrateWeaponSecure entities: - - uid: 4 + - uid: 7377 components: - type: Transform - parent: 3 - - type: SuitSensor - mode: SensorBinary - - type: DeviceNetwork - address: 7FD2-F676 - transmitFrequency: 1262 - - type: SolutionContainerManager - solutions: null - containers: - - food - - type: Physics - canCollide: False + pos: -171.5,10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14835 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: - solution@food: !type:ContainerSlot - ent: 5 -- proto: ClothingUniformJumpsuitMercenary + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7378 + - 7380 + - 7379 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrayonMime entities: - - uid: 6622 + - uid: 6997 components: - type: Transform - parent: 6614 + parent: 6983 - type: Physics + angularDamping: 0 + linearDamping: 0 canCollide: False -- proto: ClothingUniformJumpsuitParamedic + - type: InsideEntityStorage +- proto: Crematorium entities: - - uid: 6635 + - uid: 7381 components: - type: Transform - parent: 6629 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitPyjamaSyndicateBlack - entities: - - uid: 6702 + pos: -44.5,9.5 + parent: 2 + - uid: 7382 components: - type: Transform - parent: 6697 - - type: Physics - canCollide: False -- proto: ClothingUniformJumpsuitPyjamaSyndicatePink + rot: -1.5707963267948966 rad + pos: -175.5,0.5 + parent: 2 +- proto: CrewMonitoringServer entities: - - uid: 6703 + - uid: 7383 components: - type: Transform - parent: 6697 - - type: Physics - canCollide: False -- proto: ClothingUniformJumpsuitPyjamaSyndicateRed + pos: -12.5,-14.5 + parent: 2 + - type: SingletonDeviceNetServer + active: False + available: False +- proto: Crowbar entities: - - uid: 6704 + - uid: 7384 components: - type: Transform - parent: 6697 - - type: Physics - canCollide: False -- proto: ClothingUniformJumpsuitRepairmanSyndie + pos: -43.538208,3.8734026 + parent: 2 +- proto: CrowbarRed entities: - - uid: 6739 + - uid: 7385 components: - type: Transform - pos: -71.51856,5.312687 + rot: 3.141592653589793 rad + pos: -43.506958,3.499186 parent: 2 -- proto: ClothingUniformJumpsuitSeniorEngineer +- proto: CryogenicSleepUnit entities: - - uid: 6668 + - uid: 7386 components: - type: Transform - parent: 6664 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitSeniorOfficer + pos: -161.5,-17.5 + parent: 2 +- proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 6651 + - uid: 7387 components: - type: Transform - parent: 6645 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitSeniorPhysician - entities: - - uid: 6679 + rot: 1.5707963267948966 rad + pos: -104.5,16.5 + parent: 2 + - uid: 7388 components: - type: Transform - parent: 6675 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitSeniorResearcher - entities: - - uid: 456 + rot: 1.5707963267948966 rad + pos: -104.5,17.5 + parent: 2 + - uid: 7389 components: - type: Transform - parent: 451 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitSyndieFormal - entities: - - uid: 6705 + pos: -100.5,17.5 + parent: 2 + - uid: 7390 components: - type: Transform - parent: 6697 - - type: Physics - canCollide: False -- proto: ClusterBangFull + pos: -100.5,16.5 + parent: 2 +- proto: CurtainsWhite entities: - - uid: 6652 + - uid: 7391 components: - type: Transform - parent: 6645 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6740 + pos: -152.5,-23.5 + parent: 2 + - uid: 7392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -146.44025,10.583391 + pos: -158.5,-23.5 parent: 2 -- proto: Cobweb1 +- proto: DebugAPC entities: - - uid: 6741 + - uid: 7393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,-9.5 + pos: -156.5,-5.5 parent: 2 - - uid: 6742 +- proto: DefaultStationBeaconAME + entities: + - uid: 7394 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-12.5 + pos: -56.5,-11.5 parent: 2 - - uid: 6743 + - type: WarpPoint + location: ДАМ +- proto: DefaultStationBeaconArmory + entities: + - uid: 7395 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-12.5 + pos: -171.5,10.5 parent: 2 - - uid: 6744 + - type: WarpPoint + location: Оружейная +- proto: DefaultStationBeaconArrivals + entities: + - uid: 7396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,-21.5 + pos: -140.5,-5.5 parent: 2 - - uid: 6745 + - type: WarpPoint + location: Прибытие +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 7397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -95.5,-14.5 + pos: -58.5,20.5 parent: 2 - - uid: 6746 + - type: WarpPoint + location: Атмос +- proto: DefaultStationBeaconBar + entities: + - uid: 7398 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,-16.5 + pos: -116.5,3.5 parent: 2 - - uid: 6747 + - type: WarpPoint + location: Бар +- proto: DefaultStationBeaconBotany + entities: + - uid: 7399 components: - type: Transform - pos: -110.5,-20.5 + pos: -106.5,-10.5 parent: 2 - - uid: 6748 + - type: WarpPoint + location: Гидропоника +- proto: DefaultStationBeaconBridge + entities: + - uid: 7400 components: - type: Transform - pos: -98.5,-17.5 + pos: 1.5,-3.5 parent: 2 - - uid: 6749 + - type: WarpPoint + location: Переговорная +- proto: DefaultStationBeaconBrig + entities: + - uid: 7401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -101.5,-9.5 + pos: -155.5,9.5 parent: 2 - - uid: 6750 + - type: WarpPoint + location: Бриг +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 7402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,-19.5 + pos: -7.5,-10.5 parent: 2 - - uid: 6751 + - type: WarpPoint + location: Кабинет капитана +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 7403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-19.5 + pos: -63.5,-22.5 parent: 2 - - uid: 6752 + - type: WarpPoint + location: Карго +- proto: DefaultStationBeaconCERoom + entities: + - uid: 7404 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-8.5 + pos: -61.5,3.5 parent: 2 - - uid: 6753 + - type: WarpPoint + location: Кабинет СИ +- proto: DefaultStationBeaconChapel + entities: + - uid: 7405 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-20.5 + pos: -37.5,3.5 parent: 2 - - uid: 6754 + - type: WarpPoint + location: Церковь +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 7406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-21.5 + pos: -188.5,-9.5 parent: 2 - - uid: 6755 + - type: WarpPoint + location: Кабинет СМО +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 7407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-21.5 + pos: -134.5,3.5 parent: 2 - - uid: 6756 + - type: WarpPoint + location: Суд +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 7408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-14.5 + pos: -102.5,17.5 parent: 2 - - uid: 6757 + - type: WarpPoint + location: Комната крио-капсул +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 7409 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-12.5 + pos: -148.5,3.5 parent: 2 - - uid: 6758 + - type: WarpPoint + location: Комната Детектива +- proto: DefaultStationBeaconDisposals + entities: + - uid: 7410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-9.5 + pos: -127.5,-19.5 parent: 2 - - uid: 6759 + - type: WarpPoint + location: Мусорка +- proto: DefaultStationBeaconDorms + entities: + - uid: 7411 components: - type: Transform - pos: -23.5,-18.5 + pos: -102.5,9.5 parent: 2 - - uid: 6760 + - type: WarpPoint + location: Дормы +- proto: DefaultStationBeaconEngineering + entities: + - uid: 7412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-11.5 + pos: -60.5,-3.5 parent: 2 - - uid: 6761 + - type: WarpPoint + location: Инженерный +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 7413 components: - type: Transform - pos: -14.5,10.5 + pos: -30.5,-15.5 parent: 2 - - uid: 6762 + - type: WarpPoint + location: Поды +- proto: DefaultStationBeaconEvac + entities: + - uid: 7414 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-7.5 + pos: -207.5,9.5 parent: 2 - - uid: 6763 + - type: WarpPoint + location: Эвакуация +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 7415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,2.5 + pos: -22.5,-13.5 parent: 2 - - uid: 6764 + - type: WarpPoint + location: Хранилище EVA +- proto: DefaultStationBeaconGravGen + entities: + - uid: 7416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-20.5 + pos: -19.5,9.5 parent: 2 - - uid: 6765 + - type: WarpPoint + location: Генератор Гравитации +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 7417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-14.5 + pos: -17.5,-2.5 parent: 2 - - uid: 6766 + - type: WarpPoint + location: Глава Пероснала +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 7418 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-17.5 + pos: -155.5,15.5 parent: 2 - - uid: 6767 + - type: WarpPoint + location: Кабинет ГСБ +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 7419 components: - type: Transform - pos: -44.5,17.5 + pos: -31.5,-10.5 parent: 2 - - uid: 6768 + - type: WarpPoint + location: Комната уборщиков +- proto: DefaultStationBeaconKitchen + entities: + - uid: 7420 components: - type: Transform - pos: -22.5,10.5 + pos: -113.5,-11.5 parent: 2 - - uid: 6769 + - type: WarpPoint + location: Кухня +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 7421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,17.5 + pos: -141.5,2.5 parent: 2 - - uid: 6770 + - type: WarpPoint + location: Кабинет юристов +- proto: DefaultStationBeaconLibrary + entities: + - uid: 7422 components: - type: Transform - pos: -53.5,17.5 + pos: -44.5,-17.5 parent: 2 - - uid: 6771 + - type: WarpPoint + location: Библиотека +- proto: DefaultStationBeaconMailroom + entities: + - uid: 2920 components: - type: Transform - pos: -67.5,12.5 + pos: -74.5,-20.5 parent: 2 - - uid: 6772 + - type: NavMapBeacon + text: Почта +- proto: DefaultStationBeaconMantis + entities: + - uid: 7423 components: - type: Transform - pos: -73.5,15.5 + pos: -192.5,15.5 parent: 2 - - uid: 6773 + - type: NavMapBeacon + text: мантис +- proto: DefaultStationBeaconMedbay + entities: + - uid: 7424 components: - type: Transform - pos: -88.5,15.5 + pos: -186.5,-16.5 parent: 2 - - uid: 6774 + - type: WarpPoint + location: Медицинский +- proto: DefaultStationBeaconPark + entities: + - uid: 7425 components: - type: Transform - pos: -92.5,15.5 + pos: -29.5,-2.5 parent: 2 - - uid: 6775 + - type: NavMapBeacon + text: Восточный парк + - uid: 7426 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -94.5,3.5 + pos: -222.5,-8.5 parent: 2 - - uid: 6776 + - type: NavMapBeacon + text: западный парк +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 7427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,8.5 + pos: -157.5,-18.5 parent: 2 - - uid: 6777 + - type: WarpPoint + location: Пермабриг +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 7428 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,15.5 + pos: -67.5,-19.5 parent: 2 - - uid: 6778 + - type: WarpPoint + location: Кабинет КМ +- proto: DefaultStationBeaconRND + entities: + - uid: 7429 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,6.5 + pos: -196.5,8.5 parent: 2 - - uid: 6779 + - type: NavMapBeacon + text: рнд +- proto: DefaultStationBeaconSalvage + entities: + - uid: 7430 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,2.5 + pos: -83.5,-31.5 parent: 2 -- proto: Cobweb2 + - type: WarpPoint + location: Утилизаторская +- proto: DefaultStationBeaconSecurity entities: - - uid: 6780 + - uid: 7431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -94.5,-10.5 + pos: -164.5,4.5 parent: 2 - - uid: 6781 + - type: WarpPoint + location: Служба Безопасности +- proto: DefaultStationBeaconService + entities: + - uid: 7432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,-6.5 + pos: -123.5,-10.5 parent: 2 - - uid: 6782 + - type: WarpPoint + location: комната мима и клоуна +- proto: DefaultStationBeaconSolars + entities: + - uid: 7433 components: - type: Transform - pos: -111.5,-15.5 + pos: -39.5,-27.5 parent: 2 - - uid: 6783 + - type: WarpPoint + location: Ю-В солнечные панели + - uid: 7434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-8.5 + pos: -13.5,12.5 parent: 2 - - uid: 6784 + - type: WarpPoint + location: С-В солнечные панели + - uid: 7435 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,7.5 + pos: -102.5,-26.5 parent: 2 - - uid: 6785 + - type: WarpPoint + location: Ю-З солнечные панели + - uid: 7436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,15.5 + pos: -125.5,13.5 parent: 2 - - uid: 6786 + - type: WarpPoint + location: С-З солнечные панели +- proto: DefaultStationBeaconTechVault + entities: + - uid: 7437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,17.5 + pos: -54.5,-4.5 parent: 2 - - uid: 6787 + - type: WarpPoint + location: Хранилище плат +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 7438 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,12.5 + pos: -14.5,-15.5 parent: 2 - - uid: 6788 + - type: WarpPoint + location: Телекомы +- proto: DefaultStationBeaconTheater + entities: + - uid: 7439 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,15.5 + pos: -128.5,-3.5 parent: 2 - - uid: 6789 + - type: WarpPoint + location: 'Театр ' +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 7440 components: - type: Transform - pos: -75.5,11.5 + pos: -45.5,3.5 parent: 2 - - uid: 6790 + - type: WarpPoint + location: Комната инструментов +- proto: DefaultStationBeaconVault + entities: + - uid: 7441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,15.5 + pos: -8.5,3.5 parent: 2 - - uid: 6791 + - type: WarpPoint + location: Хранилище +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 7442 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,13.5 + pos: -164.5,9.5 parent: 2 - - uid: 6792 + - type: WarpPoint + location: Кабинет Вардена +- proto: DefibrillatorCabinetFilled + entities: + - uid: 7443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -92.5,6.5 + rot: 3.141592653589793 rad + pos: -188.5,-18.5 parent: 2 - - uid: 6793 + - uid: 7444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -121.5,15.5 + rot: -1.5707963267948966 rad + pos: -174.5,2.5 parent: 2 - - uid: 6794 +- proto: DefibrillatorCabinetOpen + entities: + - uid: 7445 components: - type: Transform rot: 1.5707963267948966 rad - pos: -122.5,11.5 - parent: 2 - - uid: 6795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,10.5 + pos: -48.5,16.5 parent: 2 - - uid: 6796 +- proto: DeployableBarrier + entities: + - uid: 7446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.5,0.5 + pos: -151.5,-7.5 parent: 2 -- proto: CockroachTimedSpawner - entities: - - uid: 6797 + - uid: 7447 components: - type: Transform - pos: -62.5,12.5 + pos: -151.5,-6.5 parent: 2 - - uid: 6798 + - uid: 7448 components: - type: Transform - pos: -91.5,-15.5 + pos: -152.5,-6.5 parent: 2 - - uid: 6799 + - uid: 7449 components: - type: Transform - pos: -94.5,-12.5 + pos: -153.5,-6.5 parent: 2 - - uid: 6800 +- proto: DeskBell + entities: + - uid: 7450 components: - type: Transform - pos: -93.5,14.5 + pos: -160.62729,-1.4943302 parent: 2 - - uid: 6801 + - uid: 7451 components: - type: Transform - pos: -122.5,-20.5 + pos: -114.41855,-8.408575 parent: 2 - - uid: 6802 +- proto: DisposalBend + entities: + - uid: 7452 components: - type: Transform - pos: -111.5,-10.5 + rot: 1.5707963267948966 rad + pos: -142.5,-2.5 parent: 2 - - uid: 6803 + - uid: 7453 components: - type: Transform - pos: -115.5,-15.5 + rot: 3.141592653589793 rad + pos: -124.5,-18.5 parent: 2 - - uid: 6804 + - uid: 7454 components: - type: Transform - pos: -107.5,-18.5 + rot: -1.5707963267948966 rad + pos: -123.5,-17.5 parent: 2 - - uid: 6805 + - uid: 7455 components: - type: Transform - pos: -86.5,-18.5 + rot: 3.141592653589793 rad + pos: -95.5,-16.5 parent: 2 - - uid: 6806 + - uid: 7456 components: - type: Transform - pos: -49.5,-18.5 + rot: 3.141592653589793 rad + pos: -111.5,-15.5 parent: 2 - - uid: 6807 + - uid: 7457 components: - type: Transform - pos: -39.5,-17.5 + pos: -117.5,-18.5 parent: 2 - - uid: 6808 + - uid: 7458 components: - type: Transform - pos: -121.5,8.5 + rot: 3.141592653589793 rad + pos: -117.5,-20.5 parent: 2 - - uid: 6809 + - uid: 7459 components: - type: Transform - pos: -100.5,-11.5 + pos: -112.5,-20.5 parent: 2 - - uid: 6810 + - uid: 7460 components: - type: Transform - pos: -92.5,10.5 + rot: 3.141592653589793 rad + pos: -112.5,-21.5 parent: 2 - - uid: 6811 + - uid: 7461 components: - type: Transform - pos: -40.5,13.5 + rot: -1.5707963267948966 rad + pos: -109.5,-21.5 parent: 2 -- proto: ComfyChair - entities: - - uid: 6812 + - uid: 7462 components: - type: Transform - pos: -134.5,7.5 + rot: 1.5707963267948966 rad + pos: -109.5,-18.5 parent: 2 -- proto: ComputerAnalysisConsole - entities: - - uid: 6813 + - uid: 7463 components: - type: Transform - pos: -197.5,23.5 + pos: -105.5,-18.5 parent: 2 - - uid: 6814 + - uid: 7464 components: - type: Transform - pos: -195.5,23.5 + rot: 3.141592653589793 rad + pos: -105.5,-21.5 parent: 2 -- proto: ComputerBroken - entities: - - uid: 6815 + - uid: 7465 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,50.5 + pos: -101.5,-21.5 parent: 2 - - uid: 6816 + - uid: 7466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,48.5 + rot: 1.5707963267948966 rad + pos: -101.5,-20.5 parent: 2 - - uid: 6817 + - uid: 7467 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,46.5 + rot: -1.5707963267948966 rad + pos: -98.5,-20.5 parent: 2 -- proto: ComputerCargoBounty - entities: - - uid: 6818 + - uid: 7468 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-6.5 + pos: -123.5,-3.5 parent: 2 - - uid: 6819 + - uid: 7469 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-25.5 + pos: -155.5,4.5 parent: 2 -- proto: ComputerCargoOrders - entities: - - uid: 6820 + - uid: 7470 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-25.5 + pos: -157.5,7.5 parent: 2 - - uid: 6821 + - uid: 7471 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-7.5 + rot: -1.5707963267948966 rad + pos: -157.5,-7.5 parent: 2 - - uid: 6822 + - uid: 7472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-17.5 + rot: 3.141592653589793 rad + pos: -160.5,-7.5 parent: 2 -- proto: ComputerCloningConsole - entities: - - uid: 6823 + - uid: 7473 components: - type: Transform rot: 3.141592653589793 rad - pos: -182.5,-26.5 + pos: -196.5,-3.5 parent: 2 -- proto: ComputerComms - entities: - - uid: 6824 + - uid: 7474 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-3.5 + pos: -123.5,-3.5 parent: 2 - - uid: 6825 + - uid: 7475 components: - type: Transform - pos: -10.5,-9.5 + rot: -1.5707963267948966 rad + pos: -102.5,-3.5 parent: 2 -- proto: ComputerCrewMonitoring - entities: - - uid: 6826 + - uid: 7476 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-7.5 + pos: -102.5,4.5 parent: 2 - - uid: 6827 + - uid: 7477 components: - type: Transform rot: -1.5707963267948966 rad - pos: -163.5,7.5 + pos: -68.5,-24.5 parent: 2 - - uid: 6828 + - uid: 7478 components: - type: Transform rot: 3.141592653589793 rad - pos: -183.5,-25.5 - parent: 2 -- proto: ComputerCriminalRecords - entities: - - uid: 6829 - components: - - type: Transform - pos: 0.5,0.5 + pos: -70.5,-24.5 parent: 2 - - uid: 6830 + - uid: 7479 components: - type: Transform - pos: -167.5,7.5 + pos: -70.5,-23.5 parent: 2 - - uid: 6831 + - uid: 7480 components: - type: Transform rot: 1.5707963267948966 rad - pos: -165.5,7.5 + pos: -76.5,-23.5 parent: 2 -- proto: ComputerId - entities: - - uid: 6832 + - uid: 7481 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,0.5 + pos: -76.5,-24.5 parent: 2 - - uid: 6833 + - uid: 7482 components: - type: Transform - pos: 3.5,0.5 + rot: 3.141592653589793 rad + pos: -77.5,-24.5 parent: 2 - - uid: 6834 + - uid: 7483 components: - type: Transform - pos: -9.5,-9.5 + pos: -77.5,-19.5 parent: 2 -- proto: ComputerIFF - entities: - - uid: 17082 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 17021 -- proto: ComputerMassMedia - entities: - - uid: 6835 + - uid: 7484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,8.5 + rot: 3.141592653589793 rad + pos: -92.5,-18.5 parent: 2 -- proto: ComputerMedicalRecords - entities: - - uid: 6836 + - uid: 7485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,0.5 + rot: 3.141592653589793 rad + pos: -84.5,-19.5 parent: 2 - - uid: 6837 + - uid: 7486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 + pos: -84.5,-18.5 parent: 2 -- proto: ComputerPowerMonitoring - entities: - - uid: 6838 + - uid: 7487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-2.5 + pos: -92.5,-16.5 parent: 2 - - uid: 6839 + - uid: 7488 components: - type: Transform - pos: -2.5,0.5 + pos: -95.5,-15.5 parent: 2 - - uid: 6840 + - uid: 7489 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,9.5 + pos: -88.5,-3.5 parent: 2 -- proto: ComputerRadar - entities: - - uid: 6841 + - uid: 7490 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-0.5 + rot: 1.5707963267948966 rad + pos: -88.5,1.5 parent: 2 - - uid: 6842 + - uid: 7491 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-6.5 + pos: -85.5,1.5 parent: 2 - - uid: 6843 + - uid: 7492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-42.5 + rot: 1.5707963267948966 rad + pos: -85.5,2.5 parent: 2 - - uid: 17083 + - uid: 7493 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-2.5 - parent: 17021 -- proto: ComputerResearchAndDevelopment - entities: - - uid: 6844 + pos: -84.5,2.5 + parent: 2 + - uid: 7494 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-7.5 + rot: 1.5707963267948966 rad + pos: -84.5,8.5 parent: 2 - - uid: 6845 + - uid: 7495 components: - type: Transform - pos: -196.5,23.5 + pos: -58.5,14.5 parent: 2 - - uid: 6846 + - uid: 7496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -202.5,22.5 + rot: -1.5707963267948966 rad + pos: -56.5,5.5 parent: 2 -- proto: ComputerSalvageExpedition - entities: - - uid: 6847 + - uid: 7497 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,-36.5 + pos: -50.5,8.5 parent: 2 -- proto: ComputerShuttle - entities: - - uid: 17084 + - uid: 7498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-3.5 - parent: 17021 -- proto: ComputerShuttleCargo - entities: - - uid: 6848 + pos: -47.5,2.5 + parent: 2 + - uid: 7499 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-25.5 + rot: -1.5707963267948966 rad + pos: -46.5,1.5 parent: 2 -- proto: ComputerShuttleSalvage - entities: - - uid: 6849 + - uid: 7500 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-36.5 + pos: -46.5,2.5 parent: 2 -- proto: ComputerSolarControl - entities: - - uid: 6850 + - uid: 7501 components: - type: Transform rot: 1.5707963267948966 rad - pos: -61.5,-5.5 + pos: -47.5,2.5 parent: 2 - - uid: 6851 + - uid: 7502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-0.5 + rot: -1.5707963267948966 rad + pos: -47.5,1.5 parent: 2 - - uid: 6852 + - uid: 7503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,8.5 + rot: 3.141592653589793 rad + pos: -48.5,1.5 parent: 2 - - uid: 6853 + - uid: 7504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-24.5 + pos: -48.5,2.5 parent: 2 - - uid: 6854 + - uid: 7505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -124.5,11.5 + rot: 3.141592653589793 rad + pos: -50.5,-2.5 parent: 2 -- proto: ComputerStationRecords - entities: - - uid: 6855 + - uid: 7506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-0.5 + pos: -43.5,-2.5 parent: 2 - - uid: 6856 + - uid: 7507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-0.5 + rot: 3.141592653589793 rad + pos: -37.5,-15.5 parent: 2 - - uid: 6857 + - uid: 7508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -146.5,5.5 + pos: -36.5,-15.5 parent: 2 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 6858 + - uid: 7509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-0.5 + rot: 3.141592653589793 rad + pos: -36.5,-16.5 parent: 2 - - uid: 6859 + - uid: 7510 components: - type: Transform rot: 1.5707963267948966 rad - pos: -165.5,8.5 + pos: -26.5,-8.5 parent: 2 - - uid: 6860 + - uid: 7511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -161.5,0.5 + rot: -1.5707963267948966 rad + pos: -13.5,-8.5 parent: 2 - - uid: 6861 + - uid: 7512 components: - type: Transform rot: 1.5707963267948966 rad - pos: -158.5,10.5 + pos: -16.5,-3.5 parent: 2 -- proto: ComputerSurveillanceWirelessCameraMonitor - entities: - - uid: 6862 + - uid: 7513 components: - type: Transform rot: -1.5707963267948966 rad - pos: -152.5,10.5 + pos: -10.5,-3.5 parent: 2 - - uid: 6863 + - uid: 7514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -161.5,-0.5 + rot: -1.5707963267948966 rad + pos: -12.5,-5.5 parent: 2 -- proto: ComputerTelevision - entities: - - uid: 6864 + - uid: 7515 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,0.5 + pos: -12.5,5.5 parent: 2 - - uid: 6865 + - uid: 7516 components: - type: Transform - pos: -156.5,-16.5 + rot: 1.5707963267948966 rad + pos: -23.5,5.5 parent: 2 -- proto: ConveyorBelt - entities: - - uid: 6866 + - uid: 7517 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-26.5 + rot: -1.5707963267948966 rad + pos: -78.5,-27.5 parent: 2 - - type: DeviceLinkSink - links: - - 14011 - - uid: 6867 + - uid: 7518 components: - type: Transform - pos: -60.5,-27.5 + rot: 1.5707963267948966 rad + pos: -78.5,-26.5 parent: 2 - - type: DeviceLinkSink - links: - - 14011 - - uid: 6868 + - uid: 7519 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-25.5 + rot: -1.5707963267948966 rad + pos: -68.5,-26.5 parent: 2 - - type: DeviceLinkSink - links: - - 14011 - - uid: 6869 + - uid: 7520 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-27.5 + rot: 1.5707963267948966 rad + pos: -182.5,-13.5 parent: 2 - - type: DeviceLinkSink - links: - - 14011 - - uid: 6870 + - uid: 7521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-25.5 + rot: -1.5707963267948966 rad + pos: -178.5,-13.5 parent: 2 - - type: DeviceLinkSink - links: - - 14011 - - uid: 6871 + - uid: 7522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-25.5 + rot: 3.141592653589793 rad + pos: -173.5,4.5 parent: 2 - - type: DeviceLinkSink - links: - - 14011 - - uid: 6872 + - uid: 7523 components: - type: Transform - pos: -60.5,-25.5 + pos: -111.5,-13.5 parent: 2 - - type: DeviceLinkSink - links: - - 14011 - - uid: 6873 + - uid: 7524 components: - type: Transform - pos: -60.5,-26.5 + rot: -1.5707963267948966 rad + pos: -142.5,-3.5 parent: 2 - - type: DeviceLinkSink - links: - - 14011 - - uid: 6874 + - uid: 7525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -130.5,-17.5 + pos: -138.5,-2.5 parent: 2 - - uid: 6875 + - uid: 7526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -129.5,-17.5 + rot: 3.141592653589793 rad + pos: -138.5,-3.5 parent: 2 - - uid: 6876 +- proto: DisposalJunction + entities: + - uid: 7527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -128.5,-17.5 + rot: -1.5707963267948966 rad + pos: -120.5,-3.5 parent: 2 - - uid: 6877 + - uid: 7528 components: - type: Transform rot: 1.5707963267948966 rad - pos: -127.5,-17.5 + pos: -157.5,-3.5 parent: 2 - - uid: 6878 + - uid: 7529 components: - type: Transform - pos: -126.5,-17.5 + rot: -1.5707963267948966 rad + pos: -80.5,8.5 parent: 2 - - uid: 6879 + - uid: 7530 components: - type: Transform rot: -1.5707963267948966 rad - pos: -126.5,-18.5 + pos: -58.5,8.5 parent: 2 - - uid: 6880 + - uid: 7531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -127.5,-18.5 + rot: 3.141592653589793 rad + pos: -50.5,2.5 parent: 2 - - uid: 6881 + - uid: 7532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -128.5,-18.5 + rot: 3.141592653589793 rad + pos: -43.5,-11.5 parent: 2 - - uid: 6882 + - uid: 7533 components: - type: Transform rot: -1.5707963267948966 rad - pos: -129.5,-18.5 + pos: -26.5,-16.5 parent: 2 - - uid: 6883 + - uid: 7534 components: - type: Transform - pos: -130.5,-18.5 + rot: 1.5707963267948966 rad + pos: -178.5,-3.5 parent: 2 - - uid: 6884 + - uid: 7535 components: - type: Transform - pos: -130.5,-19.5 + rot: 1.5707963267948966 rad + pos: -166.5,-3.5 parent: 2 - - uid: 6885 + - uid: 7536 components: - type: Transform - pos: -130.5,-20.5 + rot: 1.5707963267948966 rad + pos: -149.5,-3.5 parent: 2 - - uid: 6886 +- proto: DisposalJunctionFlipped + entities: + - uid: 7537 components: - type: Transform - pos: -130.5,-21.5 + rot: 1.5707963267948966 rad + pos: -112.5,-13.5 parent: 2 - - uid: 6887 + - uid: 7538 components: - type: Transform - pos: -130.5,-22.5 + rot: 1.5707963267948966 rad + pos: -157.5,4.5 parent: 2 -- proto: CounterWoodFrame - entities: - - uid: 6888 + - uid: 7539 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.5,3.5 + rot: -1.5707963267948966 rad + pos: -124.5,-17.5 parent: 2 -- proto: CowToolboxFilled - entities: - - uid: 6890 + - uid: 7540 components: - type: Transform - parent: 6889 - - type: Physics - canCollide: False -- proto: CrateArtifactContainer - entities: - - uid: 6891 + rot: 1.5707963267948966 rad + pos: -103.5,-15.5 + parent: 2 + - uid: 7541 components: - type: Transform - pos: -197.5,27.5 + rot: 1.5707963267948966 rad + pos: -126.5,-3.5 parent: 2 - - uid: 6892 + - uid: 7542 components: - type: Transform - pos: -193.5,8.5 + rot: 1.5707963267948966 rad + pos: -155.5,-3.5 parent: 2 -- proto: CrateCommandSecure - entities: - - uid: 887 + - uid: 7543 components: - type: Transform - pos: -6.5,2.5 + rot: 1.5707963267948966 rad + pos: -181.5,-3.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 147.92336 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 890 - - 889 - - 888 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6893 + - uid: 7544 components: - type: Transform - pos: -144.5,5.5 + rot: -1.5707963267948966 rad + pos: -56.5,8.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 147.92336 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6903 - - 6902 - - 6901 - - 6900 - - 6899 - - 6898 - - 6897 - - 6896 - - 6895 - - 6894 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateEngineeringAMEControl - entities: - - uid: 6904 + - uid: 7545 components: - type: Transform - pos: -58.5,-9.5 + rot: -1.5707963267948966 rad + pos: -37.5,-11.5 parent: 2 -- proto: CrateEngineeringAMEJar - entities: - - uid: 6905 + - uid: 7546 components: - type: Transform - pos: -58.5,-11.5 + pos: -13.5,-5.5 parent: 2 -- proto: CrateEngineeringAMEShielding - entities: - - uid: 6906 + - uid: 7547 components: - type: Transform - pos: -58.5,-10.5 + rot: 1.5707963267948966 rad + pos: -187.5,-3.5 parent: 2 -- proto: CrateEngineeringCableBulk +- proto: DisposalPipe entities: - - uid: 6907 + - uid: 7548 components: - type: Transform - pos: -172.5,-8.5 + rot: -1.5707963267948966 rad + pos: -141.5,-2.5 parent: 2 - - uid: 6908 + - uid: 7549 components: - type: Transform - pos: -37.5,-25.5 + rot: -1.5707963267948966 rad + pos: -103.5,-21.5 parent: 2 - - uid: 6909 + - uid: 7550 components: - type: Transform - pos: -60.5,-11.5 + rot: 1.5707963267948966 rad + pos: -125.5,-17.5 parent: 2 -- proto: CrateEngineeringCableHV - entities: - - uid: 6910 + - uid: 7551 components: - type: Transform - pos: -98.5,-24.5 + rot: 1.5707963267948966 rad + pos: -123.5,-18.5 parent: 2 - - uid: 6911 + - uid: 7552 components: - type: Transform - pos: -14.5,10.5 + rot: 1.5707963267948966 rad + pos: -122.5,-18.5 parent: 2 - - uid: 6912 + - uid: 7553 components: - type: Transform - pos: -126.5,10.5 + rot: 1.5707963267948966 rad + pos: -121.5,-18.5 parent: 2 -- proto: CrateEngineeringSolar - entities: - - uid: 6913 + - uid: 7554 components: - type: Transform - pos: -60.5,-12.5 + rot: 1.5707963267948966 rad + pos: -120.5,-18.5 parent: 2 - - uid: 6914 + - uid: 7555 components: - type: Transform - pos: -38.5,-29.5 + rot: 1.5707963267948966 rad + pos: -119.5,-18.5 parent: 2 - - uid: 6915 + - uid: 7556 components: - type: Transform - pos: -101.5,-28.5 + rot: 1.5707963267948966 rad + pos: -118.5,-18.5 parent: 2 - - uid: 6916 + - uid: 7557 components: - type: Transform - pos: -123.5,15.5 + pos: -117.5,-19.5 parent: 2 -- proto: CrateFilledSpawner - entities: - - uid: 6917 + - uid: 7558 components: - type: Transform - pos: -52.5,-23.5 + rot: -1.5707963267948966 rad + pos: -116.5,-20.5 parent: 2 - - uid: 6918 + - uid: 7559 components: - type: Transform - pos: -53.5,-21.5 + rot: -1.5707963267948966 rad + pos: -115.5,-20.5 parent: 2 - - uid: 6919 + - uid: 7560 components: - type: Transform - pos: -59.5,-22.5 + rot: -1.5707963267948966 rad + pos: -114.5,-20.5 parent: 2 - - uid: 6920 + - uid: 7561 components: - type: Transform - pos: -63.5,-23.5 + rot: -1.5707963267948966 rad + pos: -113.5,-20.5 parent: 2 -- proto: CrateFoodCooking - entities: - - uid: 6921 + - uid: 7562 components: - type: Transform - pos: -167.5,-19.5 + rot: -1.5707963267948966 rad + pos: -111.5,-21.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 6922 + - uid: 7563 components: - type: Transform - pos: -117.5,-10.5 + rot: 3.141592653589793 rad + pos: -109.5,-20.5 parent: 2 -- proto: CrateFoodPizza - entities: - - uid: 6923 + - uid: 7564 components: - - type: MetaData - desc: Разве пластик пахнет как еда? Сьедобные полимеры! - name: Пластиковый ящик - type: Transform - pos: -63.5,17.5 + rot: 3.141592653589793 rad + pos: -109.5,-19.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6924 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateHydroponicsSeeds - entities: - - uid: 6925 + - uid: 7565 components: - type: Transform - pos: -108.5,-6.5 + rot: 1.5707963267948966 rad + pos: -108.5,-18.5 parent: 2 -- proto: CrateHydroponicsSeedsExotic - entities: - - uid: 6926 + - uid: 7566 components: - type: Transform - pos: -112.5,-20.5 + rot: 1.5707963267948966 rad + pos: -107.5,-18.5 parent: 2 -- proto: CrateHydroponicsTools - entities: - - uid: 6927 + - uid: 7567 components: - type: Transform - pos: -108.5,-7.5 + rot: 1.5707963267948966 rad + pos: -106.5,-18.5 parent: 2 -- proto: CrateMaterialPlastic - entities: - - uid: 6928 + - uid: 7568 components: - type: Transform - pos: -55.5,-2.5 + pos: -105.5,-19.5 parent: 2 -- proto: CrateMaterialSteel - entities: - - uid: 6929 + - uid: 7569 components: - type: Transform - pos: -190.5,23.5 + pos: -105.5,-20.5 parent: 2 -- proto: CrateMedicalSecure - entities: - - uid: 6930 + - uid: 7570 components: - type: Transform - pos: -184.5,-22.5 + rot: -1.5707963267948966 rad + pos: -104.5,-21.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6933 - - 6931 - - 6935 - - 6934 - - 6932 - - 6936 - - 6939 - - 6937 - - 6938 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateNPCCow - entities: - - uid: 6940 + - uid: 7571 components: - type: Transform - pos: -110.5,-13.5 + rot: -1.5707963267948966 rad + pos: -102.5,-21.5 parent: 2 -- proto: CrateNPCHamlet - entities: - - uid: 6941 + - uid: 7572 components: - type: Transform - pos: 4.5,-0.5 + rot: -1.5707963267948966 rad + pos: -100.5,-20.5 parent: 2 -- proto: CrateSalvageEquipment - entities: - - uid: 6942 + - uid: 7573 components: - type: Transform - pos: -86.5,-28.5 + rot: -1.5707963267948966 rad + pos: -99.5,-20.5 parent: 2 -- proto: CrateSecurityBiosuit - entities: - - uid: 6943 + - uid: 7574 components: - type: Transform - pos: -149.5,7.5 + rot: 3.141592653589793 rad + pos: -98.5,-19.5 parent: 2 -- proto: CrateSecurityRiot - entities: - - uid: 6944 + - uid: 7575 components: - type: Transform - pos: -153.5,-8.5 + rot: 3.141592653589793 rad + pos: -98.5,-18.5 parent: 2 -- proto: CrateServiceJanitorialSupplies - entities: - - uid: 6945 + - uid: 7576 components: - type: Transform - pos: -31.5,-8.5 + rot: 3.141592653589793 rad + pos: -98.5,-17.5 parent: 2 - - uid: 6946 + - uid: 7577 components: - type: Transform - pos: -31.5,-12.5 + rot: 3.141592653589793 rad + pos: -98.5,-16.5 parent: 2 -- proto: CrateSyndicate - entities: - - uid: 6623 + - uid: 7578 components: - - type: MetaData - desc: Содержит случайное снаряжение Синдиката, общей стоимостью в 125 телекристаллов. - name: ящик суперприпасов синдиката - type: Transform - pos: -71.5,-12.5 + rot: -1.5707963267948966 rad + pos: -99.5,-15.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6626 - - 6624 - - 6627 - - 6625 - - 6628 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 6638 + - uid: 7579 components: - type: Transform - pos: -96.5,-6.5 + rot: -1.5707963267948966 rad + pos: -100.5,-15.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 147.92336 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6642 - - 6640 - - 6641 - - 6639 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateToyBox - entities: - - uid: 6947 + - uid: 7580 components: - type: Transform - pos: -124.5,-8.5 + rot: -1.5707963267948966 rad + pos: -101.5,-15.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6952 - - 6950 - - 6957 - - 6953 - - 6956 - - 6948 - - 6951 - - 6958 - - 6954 - - 6959 - - 6955 - - 6960 - - 6949 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateTrackingImplants - entities: - - uid: 6961 + - uid: 7581 components: - type: Transform - pos: -168.5,12.5 + rot: -1.5707963267948966 rad + pos: -102.5,-15.5 parent: 2 -- proto: CrateTrashCartFilled - entities: - - uid: 6962 + - uid: 7582 components: - type: Transform - pos: -120.5,-17.5 + rot: 3.141592653589793 rad + pos: -103.5,-14.5 parent: 2 - - uid: 6963 + - uid: 7583 components: - type: Transform - pos: -98.5,-21.5 + rot: 3.141592653589793 rad + pos: -103.5,-13.5 parent: 2 - - uid: 6964 + - uid: 7584 components: - type: Transform - pos: -76.5,-24.5 + rot: 3.141592653589793 rad + pos: -103.5,-12.5 parent: 2 - - uid: 6965 + - uid: 7585 components: - type: Transform - pos: -65.5,13.5 + rot: 3.141592653589793 rad + pos: -103.5,-11.5 parent: 2 - - uid: 6966 + - uid: 7586 components: - type: Transform - pos: -76.5,15.5 + rot: 3.141592653589793 rad + pos: -103.5,-10.5 parent: 2 - - uid: 6967 + - uid: 7587 components: - type: Transform - pos: -91.5,10.5 + rot: 3.141592653589793 rad + pos: -103.5,-9.5 parent: 2 - - uid: 6968 + - uid: 7588 components: - type: Transform - pos: -122.5,6.5 + rot: 1.5707963267948966 rad + pos: -104.5,-15.5 parent: 2 -- proto: CrateVendingMachineRestockMedicalFilled - entities: - - uid: 6969 + - uid: 7589 components: - type: Transform - pos: -184.5,-10.5 + rot: 1.5707963267948966 rad + pos: -105.5,-15.5 parent: 2 -- proto: CrateWeaponSecure - entities: - - uid: 6970 + - uid: 7590 components: - type: Transform - pos: -171.5,10.5 + rot: 1.5707963267948966 rad + pos: -106.5,-15.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 147.92336 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6972 - - 6973 - - 6971 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: Crematorium - entities: - - uid: 6974 + - uid: 7591 components: - type: Transform - pos: -44.5,9.5 + rot: 1.5707963267948966 rad + pos: -107.5,-15.5 parent: 2 - - uid: 6975 + - uid: 7592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -175.5,0.5 + rot: 1.5707963267948966 rad + pos: -108.5,-15.5 parent: 2 -- proto: CrewMonitoringServer - entities: - - uid: 6976 + - uid: 7593 components: - type: Transform - pos: -12.5,-14.5 + rot: 1.5707963267948966 rad + pos: -110.5,-15.5 parent: 2 - - type: SingletonDeviceNetServer - active: False - available: False -- proto: CriminalRecordsComputerCircuitboard - entities: - - uid: 6977 + - uid: 7594 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.534344,50.59803 + pos: -110.5,-21.5 parent: 2 -- proto: Crowbar - entities: - - uid: 6978 + - uid: 7595 components: - type: Transform - pos: -43.538208,3.8734026 + rot: 3.141592653589793 rad + pos: -111.5,-14.5 parent: 2 -- proto: CrowbarRed - entities: - - uid: 6979 + - uid: 7596 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.506958,3.499186 + pos: -112.5,-12.5 parent: 2 -- proto: CryogenicSleepUnit - entities: - - uid: 6980 + - uid: 7597 components: - type: Transform - pos: -161.5,-17.5 + rot: 3.141592653589793 rad + pos: -112.5,-11.5 parent: 2 -- proto: CryogenicSleepUnitSpawnerLateJoin - entities: - - uid: 6981 + - uid: 7598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,16.5 + rot: 3.141592653589793 rad + pos: -112.5,-10.5 parent: 2 - - uid: 6982 + - uid: 7599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,17.5 + rot: 3.141592653589793 rad + pos: -112.5,-9.5 parent: 2 - - uid: 6983 + - uid: 7600 components: - type: Transform - pos: -100.5,17.5 + rot: 3.141592653589793 rad + pos: -112.5,-8.5 parent: 2 - - uid: 6984 + - uid: 7601 components: - type: Transform - pos: -100.5,16.5 + rot: 3.141592653589793 rad + pos: -112.5,-7.5 parent: 2 -- proto: CurtainsWhite - entities: - - uid: 6985 + - uid: 7602 components: - type: Transform - pos: -152.5,-23.5 + rot: 3.141592653589793 rad + pos: -112.5,-6.5 parent: 2 - - uid: 6986 + - uid: 7603 components: - type: Transform - pos: -158.5,-23.5 + rot: 3.141592653589793 rad + pos: -112.5,-5.5 parent: 2 -- proto: CyberPen - entities: - - uid: 6988 + - uid: 7604 components: - type: Transform - parent: 6987 - - type: Physics - canCollide: False -- proto: DebugAPC - entities: - - uid: 6989 + rot: 3.141592653589793 rad + pos: -112.5,-4.5 + parent: 2 + - uid: 7605 components: - type: Transform - pos: -156.5,-5.5 + rot: -1.5707963267948966 rad + pos: -113.5,-3.5 parent: 2 -- proto: DefaultStationBeaconAISatellite - entities: - - uid: 6990 + - uid: 7606 components: - type: Transform - pos: -60.5,49.5 + rot: -1.5707963267948966 rad + pos: -114.5,-3.5 parent: 2 - - type: WarpPoint - location: Саттелит -- proto: DefaultStationBeaconAME - entities: - - uid: 6991 + - uid: 7607 components: - type: Transform - pos: -56.5,-11.5 + rot: -1.5707963267948966 rad + pos: -115.5,-3.5 parent: 2 - - type: WarpPoint - location: ДАМ -- proto: DefaultStationBeaconAnomalyGenerator - entities: - - uid: 6992 + - uid: 7608 components: - type: Transform - pos: -200.5,6.5 + rot: -1.5707963267948966 rad + pos: -116.5,-3.5 parent: 2 - - type: WarpPoint - location: Генератор Аномалий -- proto: DefaultStationBeaconArmory - entities: - - uid: 6993 + - uid: 7609 components: - type: Transform - pos: -171.5,10.5 + rot: -1.5707963267948966 rad + pos: -117.5,-3.5 parent: 2 - - type: WarpPoint - location: Оружейная -- proto: DefaultStationBeaconArrivals - entities: - - uid: 6994 + - uid: 7610 components: - type: Transform - pos: -140.5,-5.5 + rot: -1.5707963267948966 rad + pos: -118.5,-3.5 parent: 2 - - type: WarpPoint - location: Прибытие -- proto: DefaultStationBeaconAtmospherics - entities: - - uid: 6995 + - uid: 7611 components: - type: Transform - pos: -58.5,20.5 + rot: -1.5707963267948966 rad + pos: -119.5,-3.5 parent: 2 - - type: WarpPoint - location: Атмос -- proto: DefaultStationBeaconBar - entities: - - uid: 6996 + - uid: 7612 components: - type: Transform - pos: -116.5,3.5 + rot: 3.141592653589793 rad + pos: -120.5,-2.5 parent: 2 - - type: WarpPoint - location: Бар -- proto: DefaultStationBeaconBotany - entities: - - uid: 6997 + - uid: 7613 components: - type: Transform - pos: -106.5,-10.5 + rot: -1.5707963267948966 rad + pos: -121.5,-3.5 parent: 2 - - type: WarpPoint - location: Гидропоника -- proto: DefaultStationBeaconBridge - entities: - - uid: 6998 + - uid: 7614 components: - type: Transform - pos: 1.5,-3.5 + rot: -1.5707963267948966 rad + pos: -122.5,-3.5 parent: 2 - - type: WarpPoint - location: Переговорная -- proto: DefaultStationBeaconBrig - entities: - - uid: 6999 + - uid: 7615 components: - type: Transform - pos: -155.5,9.5 + rot: -1.5707963267948966 rad + pos: -124.5,-3.5 parent: 2 - - type: WarpPoint - location: Бриг -- proto: DefaultStationBeaconCaptainsQuarters - entities: - - uid: 7000 + - uid: 7616 components: - type: Transform - pos: -7.5,-10.5 + rot: -1.5707963267948966 rad + pos: -125.5,-3.5 parent: 2 - - type: WarpPoint - location: Кабинет капитана -- proto: DefaultStationBeaconCargoBay - entities: - - uid: 7001 + - uid: 7617 components: - type: Transform - pos: -63.5,-22.5 + rot: -1.5707963267948966 rad + pos: -127.5,-3.5 parent: 2 - - type: WarpPoint - location: Карго -- proto: DefaultStationBeaconCERoom - entities: - - uid: 7002 + - uid: 7618 components: - type: Transform - pos: -61.5,3.5 + rot: -1.5707963267948966 rad + pos: -128.5,-3.5 parent: 2 - - type: WarpPoint - location: Кабинет СИ -- proto: DefaultStationBeaconChapel - entities: - - uid: 7003 + - uid: 7619 components: - type: Transform - pos: -37.5,3.5 + rot: -1.5707963267948966 rad + pos: -129.5,-3.5 parent: 2 - - type: WarpPoint - location: Церковь -- proto: DefaultStationBeaconChemistry - entities: - - uid: 7004 + - uid: 7620 components: - type: Transform - pos: -190.5,-24.5 + rot: -1.5707963267948966 rad + pos: -130.5,-3.5 parent: 2 - - type: WarpPoint - location: Химия -- proto: DefaultStationBeaconCMORoom - entities: - - uid: 7005 + - uid: 7621 components: - type: Transform - pos: -188.5,-9.5 + rot: -1.5707963267948966 rad + pos: -131.5,-3.5 parent: 2 - - type: WarpPoint - location: Кабинет СМО -- proto: DefaultStationBeaconCourtroom - entities: - - uid: 7006 + - uid: 7622 components: - type: Transform - pos: -134.5,3.5 + pos: -126.5,-1.5 parent: 2 - - type: WarpPoint - location: Суд -- proto: DefaultStationBeaconCryosleep - entities: - - uid: 7007 + - uid: 7623 components: - type: Transform - pos: -102.5,17.5 + pos: -126.5,-2.5 parent: 2 - - type: WarpPoint - location: Комната крио-капсул -- proto: DefaultStationBeaconDetectiveRoom - entities: - - uid: 7008 + - uid: 7624 components: - type: Transform - pos: -148.5,3.5 + rot: -1.5707963267948966 rad + pos: -139.5,-2.5 parent: 2 - - type: WarpPoint - location: Комната Детектива -- proto: DefaultStationBeaconDisposals - entities: - - uid: 7009 + - uid: 7625 components: - type: Transform - pos: -127.5,-19.5 + rot: -1.5707963267948966 rad + pos: -132.5,-3.5 parent: 2 - - type: WarpPoint - location: Мусорка -- proto: DefaultStationBeaconDorms - entities: - - uid: 7010 + - uid: 7626 components: - type: Transform - pos: -102.5,9.5 + rot: -1.5707963267948966 rad + pos: -133.5,-3.5 parent: 2 - - type: WarpPoint - location: Дормы -- proto: DefaultStationBeaconEngineering - entities: - - uid: 7011 + - uid: 7627 components: - type: Transform - pos: -60.5,-3.5 + rot: -1.5707963267948966 rad + pos: -134.5,-3.5 parent: 2 - - type: WarpPoint - location: Инженерный -- proto: DefaultStationBeaconEscapePod - entities: - - uid: 7012 + - uid: 7628 components: - type: Transform - pos: -30.5,-15.5 + rot: -1.5707963267948966 rad + pos: -135.5,-3.5 parent: 2 - - type: WarpPoint - location: Поды -- proto: DefaultStationBeaconEvac - entities: - - uid: 7013 + - uid: 7629 components: - type: Transform - pos: -207.5,9.5 + rot: -1.5707963267948966 rad + pos: -136.5,-3.5 parent: 2 - - type: WarpPoint - location: Эвакуация -- proto: DefaultStationBeaconEVAStorage - entities: - - uid: 7014 + - uid: 7630 components: - type: Transform - pos: -22.5,-13.5 + rot: -1.5707963267948966 rad + pos: -137.5,-3.5 parent: 2 - - type: WarpPoint - location: Хранилище EVA -- proto: DefaultStationBeaconGravGen - entities: - - uid: 7015 + - uid: 7631 components: - type: Transform - pos: -19.5,9.5 + rot: -1.5707963267948966 rad + pos: -143.5,-3.5 parent: 2 - - type: WarpPoint - location: Генератор Гравитации -- proto: DefaultStationBeaconHOPOffice - entities: - - uid: 7016 + - uid: 7632 components: - type: Transform - pos: -17.5,-2.5 + rot: -1.5707963267948966 rad + pos: -144.5,-3.5 parent: 2 - - type: WarpPoint - location: Глава Пероснала -- proto: DefaultStationBeaconHOSRoom - entities: - - uid: 7017 + - uid: 7633 components: - type: Transform - pos: -155.5,15.5 + rot: -1.5707963267948966 rad + pos: -145.5,-3.5 parent: 2 - - type: WarpPoint - location: Кабинет ГСБ -- proto: DefaultStationBeaconJanitorsCloset - entities: - - uid: 7018 + - uid: 7634 components: - type: Transform - pos: -31.5,-10.5 + rot: -1.5707963267948966 rad + pos: -146.5,-3.5 parent: 2 - - type: WarpPoint - location: Комната уборщиков -- proto: DefaultStationBeaconKitchen - entities: - - uid: 7019 + - uid: 7635 components: - type: Transform - pos: -113.5,-11.5 + rot: -1.5707963267948966 rad + pos: -147.5,-3.5 parent: 2 - - type: WarpPoint - location: Кухня -- proto: DefaultStationBeaconLawOffice - entities: - - uid: 7020 + - uid: 7636 components: - type: Transform - pos: -141.5,2.5 + rot: -1.5707963267948966 rad + pos: -148.5,-3.5 parent: 2 - - type: WarpPoint - location: Кабинет юристов -- proto: DefaultStationBeaconLibrary - entities: - - uid: 7021 + - uid: 7637 components: - type: Transform - pos: -44.5,-17.5 + rot: 3.141592653589793 rad + pos: -149.5,-4.5 parent: 2 - - type: WarpPoint - location: Библиотека -- proto: DefaultStationBeaconMedbay - entities: - - uid: 7022 + - uid: 7638 components: - type: Transform - pos: -186.5,-16.5 + rot: 1.5707963267948966 rad + pos: -150.5,-3.5 parent: 2 - - type: WarpPoint - location: Медицинский -- proto: DefaultStationBeaconMorgue - entities: - - uid: 7023 + - uid: 7639 components: - type: Transform - pos: -186.5,-27.5 + rot: 1.5707963267948966 rad + pos: -151.5,-3.5 parent: 2 - - type: WarpPoint - location: Морг -- proto: DefaultStationBeaconPermaBrig - entities: - - uid: 7024 + - uid: 7640 components: - type: Transform - pos: -157.5,-18.5 + rot: 1.5707963267948966 rad + pos: -152.5,-3.5 parent: 2 - - type: WarpPoint - location: Пермабриг -- proto: DefaultStationBeaconQMRoom - entities: - - uid: 7025 + - uid: 7641 components: - type: Transform - pos: -67.5,-19.5 + rot: 1.5707963267948966 rad + pos: -153.5,-3.5 parent: 2 - - type: WarpPoint - location: Кабинет КМ -- proto: DefaultStationBeaconRDRoom - entities: - - uid: 7026 + - uid: 7642 components: - type: Transform - pos: -202.5,20.5 + rot: 1.5707963267948966 rad + pos: -154.5,-3.5 parent: 2 - - type: WarpPoint - location: Кабинет НР -- proto: DefaultStationBeaconRND - entities: - - uid: 7027 + - uid: 7643 components: - type: Transform - pos: -196.5,12.5 + rot: 1.5707963267948966 rad + pos: -156.5,-3.5 parent: 2 - - type: WarpPoint - location: РнД -- proto: DefaultStationBeaconRobotics - entities: - - uid: 7028 + - uid: 7644 components: - type: Transform - pos: -190.5,21.5 + rot: 1.5707963267948966 rad + pos: -158.5,-3.5 parent: 2 - - type: WarpPoint - location: Робототехника -- proto: DefaultStationBeaconSalvage - entities: - - uid: 7029 + - uid: 7645 components: - type: Transform - pos: -83.5,-31.5 + rot: 1.5707963267948966 rad + pos: -159.5,-3.5 parent: 2 - - type: WarpPoint - location: Утилизаторская -- proto: DefaultStationBeaconSecurity - entities: - - uid: 7030 + - uid: 7646 components: - type: Transform - pos: -164.5,4.5 + rot: 1.5707963267948966 rad + pos: -160.5,-3.5 parent: 2 - - type: WarpPoint - location: Служба Безопасности -- proto: DefaultStationBeaconServerRoom - entities: - - uid: 7031 + - uid: 7647 components: - type: Transform - pos: -200.5,15.5 + rot: 1.5707963267948966 rad + pos: -161.5,-3.5 parent: 2 - - type: WarpPoint - location: Серверная РнД -- proto: DefaultStationBeaconService - entities: - - uid: 7032 + - uid: 7648 components: - type: Transform - pos: -123.5,-10.5 + rot: 1.5707963267948966 rad + pos: -162.5,-3.5 parent: 2 - - type: WarpPoint - location: комната мима и клоуна -- proto: DefaultStationBeaconSolars - entities: - - uid: 7033 + - uid: 7649 components: - type: Transform - pos: -39.5,-27.5 + rot: 1.5707963267948966 rad + pos: -163.5,-3.5 parent: 2 - - type: WarpPoint - location: Ю-В солнечные панели - - uid: 7034 + - uid: 7650 components: - type: Transform - pos: -13.5,12.5 + rot: 1.5707963267948966 rad + pos: -164.5,-3.5 parent: 2 - - type: WarpPoint - location: С-В солнечные панели - - uid: 7035 + - uid: 7651 components: - type: Transform - pos: -102.5,-26.5 + rot: 1.5707963267948966 rad + pos: -165.5,-3.5 parent: 2 - - type: WarpPoint - location: Ю-З солнечные панели - - uid: 7036 + - uid: 7652 components: - type: Transform - pos: -125.5,13.5 + rot: 1.5707963267948966 rad + pos: -167.5,-3.5 parent: 2 - - type: WarpPoint - location: С-З солнечные панели -- proto: DefaultStationBeaconTechVault - entities: - - uid: 7037 + - uid: 7653 components: - type: Transform - pos: -54.5,-4.5 + rot: 1.5707963267948966 rad + pos: -168.5,-3.5 parent: 2 - - type: WarpPoint - location: Хранилище плат -- proto: DefaultStationBeaconTelecoms - entities: - - uid: 7038 + - uid: 7654 components: - type: Transform - pos: -14.5,-15.5 + rot: 1.5707963267948966 rad + pos: -169.5,-3.5 parent: 2 - - type: WarpPoint - location: Телекомы -- proto: DefaultStationBeaconTheater - entities: - - uid: 7039 + - uid: 7655 components: - type: Transform - pos: -128.5,-3.5 + rot: 1.5707963267948966 rad + pos: -170.5,-3.5 parent: 2 - - type: WarpPoint - location: 'Театр ' -- proto: DefaultStationBeaconToolRoom - entities: - - uid: 7040 + - uid: 7656 components: - type: Transform - pos: -45.5,3.5 + rot: 3.141592653589793 rad + pos: -155.5,-2.5 parent: 2 - - type: WarpPoint - location: Комната инструментов -- proto: DefaultStationBeaconVault - entities: - - uid: 7041 + - uid: 7657 components: - type: Transform - pos: -8.5,3.5 + rot: 3.141592653589793 rad + pos: -155.5,-1.5 parent: 2 - - type: WarpPoint - location: Хранилище -- proto: DefaultStationBeaconWardensOffice - entities: - - uid: 7042 + - uid: 7658 components: - type: Transform - pos: -164.5,9.5 + rot: 3.141592653589793 rad + pos: -155.5,-0.5 parent: 2 - - type: WarpPoint - location: Кабинет Вардена -- proto: DefibrillatorCabinetFilled - entities: - - uid: 7043 + - uid: 7659 components: - type: Transform rot: 3.141592653589793 rad - pos: -188.5,-26.5 + pos: -155.5,0.5 parent: 2 - - uid: 7044 + - uid: 7660 components: - type: Transform rot: 3.141592653589793 rad - pos: -188.5,-18.5 + pos: -155.5,2.5 parent: 2 - - uid: 7045 + - uid: 7661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -174.5,2.5 + rot: 3.141592653589793 rad + pos: -155.5,1.5 parent: 2 -- proto: DefibrillatorCabinetOpen - entities: - - uid: 7046 + - uid: 7662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,16.5 + rot: 3.141592653589793 rad + pos: -155.5,3.5 parent: 2 -- proto: DeployableBarrier - entities: - - uid: 7047 + - uid: 7663 components: - type: Transform - pos: -151.5,-7.5 + rot: 1.5707963267948966 rad + pos: -160.5,7.5 parent: 2 - - uid: 7048 + - uid: 7664 components: - type: Transform - pos: -151.5,-6.5 + rot: 1.5707963267948966 rad + pos: -159.5,7.5 parent: 2 - - uid: 7049 + - uid: 7665 components: - type: Transform - pos: -152.5,-6.5 + rot: 1.5707963267948966 rad + pos: -158.5,7.5 parent: 2 - - uid: 7050 + - uid: 7666 components: - type: Transform - pos: -153.5,-6.5 + pos: -157.5,6.5 parent: 2 -- proto: DeskBell - entities: - - uid: 7051 + - uid: 7667 components: - type: Transform - pos: -160.62729,-1.4943302 + pos: -157.5,5.5 parent: 2 - - uid: 7052 + - uid: 7668 components: - type: Transform - pos: -114.41855,-8.408575 + rot: -1.5707963267948966 rad + pos: -156.5,4.5 parent: 2 -- proto: DisposalBend - entities: - - uid: 7053 + - uid: 7669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -195.5,14.5 + rot: 3.141592653589793 rad + pos: -157.5,-4.5 parent: 2 - - uid: 7054 + - uid: 7670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -142.5,-2.5 + rot: 3.141592653589793 rad + pos: -157.5,-5.5 parent: 2 - - uid: 7055 + - uid: 7671 components: - type: Transform rot: 3.141592653589793 rad - pos: -124.5,-18.5 + pos: -157.5,-6.5 parent: 2 - - uid: 7056 + - uid: 7672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -123.5,-17.5 + rot: 1.5707963267948966 rad + pos: -158.5,-7.5 parent: 2 - - uid: 7057 + - uid: 7673 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-16.5 + rot: 1.5707963267948966 rad + pos: -159.5,-7.5 parent: 2 - - uid: 7058 + - uid: 7674 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,-15.5 + rot: 1.5707963267948966 rad + pos: -171.5,-3.5 parent: 2 - - uid: 7059 + - uid: 7675 components: - type: Transform - pos: -117.5,-18.5 + rot: 1.5707963267948966 rad + pos: -172.5,-3.5 parent: 2 - - uid: 7060 + - uid: 7676 components: - type: Transform - rot: 3.141592653589793 rad - pos: -117.5,-20.5 + rot: 1.5707963267948966 rad + pos: -173.5,-3.5 parent: 2 - - uid: 7061 + - uid: 7677 components: - type: Transform - pos: -112.5,-20.5 + rot: 1.5707963267948966 rad + pos: -174.5,-3.5 parent: 2 - - uid: 7062 + - uid: 7678 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,-21.5 + rot: 1.5707963267948966 rad + pos: -175.5,-3.5 parent: 2 - - uid: 7063 + - uid: 7679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,-21.5 + rot: 1.5707963267948966 rad + pos: -176.5,-3.5 parent: 2 - - uid: 7064 + - uid: 7680 components: - type: Transform rot: 1.5707963267948966 rad - pos: -109.5,-18.5 + pos: -177.5,-3.5 parent: 2 - - uid: 7065 + - uid: 7681 components: - type: Transform - pos: -105.5,-18.5 + rot: 1.5707963267948966 rad + pos: -179.5,-3.5 parent: 2 - - uid: 7066 + - uid: 7682 components: - type: Transform - rot: 3.141592653589793 rad - pos: -105.5,-21.5 + rot: 1.5707963267948966 rad + pos: -180.5,-3.5 parent: 2 - - uid: 7067 + - uid: 7683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,-21.5 + rot: 1.5707963267948966 rad + pos: -182.5,-3.5 parent: 2 - - uid: 7068 + - uid: 7684 components: - type: Transform rot: 1.5707963267948966 rad - pos: -101.5,-20.5 + pos: -183.5,-3.5 parent: 2 - - uid: 7069 + - uid: 7685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,-20.5 + rot: 1.5707963267948966 rad + pos: -184.5,-3.5 parent: 2 - - uid: 7070 + - uid: 7686 components: - type: Transform rot: 1.5707963267948966 rad - pos: -123.5,-3.5 + pos: -185.5,-3.5 parent: 2 - - uid: 7071 + - uid: 7687 components: - type: Transform - pos: -155.5,4.5 + rot: 1.5707963267948966 rad + pos: -186.5,-3.5 parent: 2 - - uid: 7072 + - uid: 7688 components: - type: Transform - pos: -157.5,7.5 + rot: 1.5707963267948966 rad + pos: -188.5,-3.5 parent: 2 - - uid: 7073 + - uid: 7689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -157.5,-7.5 + rot: 1.5707963267948966 rad + pos: -189.5,-3.5 parent: 2 - - uid: 7074 + - uid: 7690 components: - type: Transform - rot: 3.141592653589793 rad - pos: -160.5,-7.5 + rot: 1.5707963267948966 rad + pos: -190.5,-3.5 parent: 2 - - uid: 7075 + - uid: 7691 components: - type: Transform - rot: 3.141592653589793 rad - pos: -196.5,-3.5 + rot: 1.5707963267948966 rad + pos: -191.5,-3.5 parent: 2 - - uid: 7076 + - uid: 7692 components: - type: Transform - pos: -123.5,-3.5 + rot: 1.5707963267948966 rad + pos: -192.5,-3.5 parent: 2 - - uid: 7077 + - uid: 7693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,-3.5 + rot: 1.5707963267948966 rad + pos: -193.5,-3.5 parent: 2 - - uid: 7078 + - uid: 7694 components: - type: Transform - pos: -102.5,4.5 + rot: 1.5707963267948966 rad + pos: -194.5,-3.5 parent: 2 - - uid: 7079 + - uid: 7695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,-24.5 + rot: 1.5707963267948966 rad + pos: -195.5,-3.5 parent: 2 - - uid: 7080 + - uid: 7696 components: - type: Transform rot: 3.141592653589793 rad - pos: -70.5,-24.5 + pos: -123.5,-16.5 parent: 2 - - uid: 7081 + - uid: 7697 components: - type: Transform - pos: -70.5,-23.5 + rot: 3.141592653589793 rad + pos: -123.5,-15.5 parent: 2 - - uid: 7082 + - uid: 7698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,-23.5 + rot: 3.141592653589793 rad + pos: -123.5,-14.5 parent: 2 - - uid: 7083 + - uid: 7699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-24.5 + rot: 3.141592653589793 rad + pos: -123.5,-13.5 parent: 2 - - uid: 7084 + - uid: 7700 components: - type: Transform rot: 3.141592653589793 rad - pos: -77.5,-24.5 + pos: -123.5,-12.5 parent: 2 - - uid: 7085 + - uid: 7701 components: - type: Transform - pos: -77.5,-19.5 + rot: 3.141592653589793 rad + pos: -123.5,-11.5 parent: 2 - - uid: 7086 + - uid: 7702 components: - type: Transform rot: 3.141592653589793 rad - pos: -92.5,-18.5 + pos: -123.5,-10.5 parent: 2 - - uid: 7087 + - uid: 7703 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,-19.5 + pos: -123.5,-9.5 parent: 2 - - uid: 7088 + - uid: 7704 components: - type: Transform - pos: -84.5,-18.5 + rot: 3.141592653589793 rad + pos: -123.5,-8.5 parent: 2 - - uid: 7089 + - uid: 7705 components: - type: Transform - pos: -92.5,-16.5 + rot: 3.141592653589793 rad + pos: -123.5,-7.5 parent: 2 - - uid: 7090 + - uid: 7706 components: - type: Transform - pos: -95.5,-15.5 + rot: 3.141592653589793 rad + pos: -123.5,-6.5 parent: 2 - - uid: 7091 + - uid: 7707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,-3.5 + rot: 3.141592653589793 rad + pos: -123.5,-5.5 parent: 2 - - uid: 7092 + - uid: 7708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,1.5 + rot: 3.141592653589793 rad + pos: -123.5,-4.5 parent: 2 - - uid: 7093 + - uid: 7709 components: - type: Transform rot: -1.5707963267948966 rad - pos: -85.5,1.5 + pos: -111.5,-3.5 parent: 2 - - uid: 7094 + - uid: 7710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,2.5 + rot: -1.5707963267948966 rad + pos: -110.5,-3.5 parent: 2 - - uid: 7095 + - uid: 7711 components: - type: Transform rot: -1.5707963267948966 rad - pos: -84.5,2.5 + pos: -109.5,-3.5 parent: 2 - - uid: 7096 + - uid: 7712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,8.5 + rot: -1.5707963267948966 rad + pos: -108.5,-3.5 parent: 2 - - uid: 7097 + - uid: 7713 components: - type: Transform - pos: -58.5,14.5 + rot: -1.5707963267948966 rad + pos: -107.5,-3.5 parent: 2 - - uid: 7098 + - uid: 7714 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,5.5 + pos: -106.5,-3.5 parent: 2 - - uid: 7099 + - uid: 7715 components: - type: Transform - pos: -50.5,8.5 + rot: -1.5707963267948966 rad + pos: -105.5,-3.5 parent: 2 - - uid: 7100 + - uid: 7716 components: - type: Transform - pos: -47.5,2.5 + rot: -1.5707963267948966 rad + pos: -104.5,-3.5 parent: 2 - - uid: 7101 + - uid: 7717 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,1.5 + pos: -103.5,-3.5 parent: 2 - - uid: 7102 + - uid: 7718 components: - type: Transform - pos: -46.5,2.5 + rot: -1.5707963267948966 rad + pos: -101.5,-3.5 parent: 2 - - uid: 7103 + - uid: 7719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,2.5 + rot: -1.5707963267948966 rad + pos: -100.5,-3.5 parent: 2 - - uid: 7104 + - uid: 7720 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,1.5 + pos: -102.5,-3.5 parent: 2 - - uid: 7105 + - uid: 7721 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,1.5 + pos: -102.5,-2.5 parent: 2 - - uid: 7106 + - uid: 7722 components: - type: Transform - pos: -48.5,2.5 + rot: 3.141592653589793 rad + pos: -102.5,-1.5 parent: 2 - - uid: 7107 + - uid: 7723 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,-2.5 + pos: -102.5,-0.5 parent: 2 - - uid: 7108 + - uid: 7724 components: - type: Transform - pos: -43.5,-2.5 + rot: 3.141592653589793 rad + pos: -102.5,0.5 parent: 2 - - uid: 7109 + - uid: 7725 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,-15.5 + pos: -102.5,1.5 parent: 2 - - uid: 7110 + - uid: 7726 components: - type: Transform - pos: -36.5,-15.5 + rot: 3.141592653589793 rad + pos: -102.5,2.5 parent: 2 - - uid: 7111 + - uid: 7727 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,-16.5 + pos: -102.5,3.5 parent: 2 - - uid: 7112 + - uid: 7728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-8.5 + rot: -1.5707963267948966 rad + pos: -97.5,-15.5 parent: 2 - - uid: 7113 + - uid: 7729 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-8.5 + pos: -96.5,-15.5 parent: 2 - - uid: 7114 + - uid: 7730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-3.5 + rot: -1.5707963267948966 rad + pos: -94.5,-16.5 parent: 2 - - uid: 7115 + - uid: 7731 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-3.5 + pos: -93.5,-16.5 parent: 2 - - uid: 7116 + - uid: 7732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-5.5 + rot: 3.141592653589793 rad + pos: -92.5,-17.5 parent: 2 - - uid: 7117 + - uid: 7733 components: - type: Transform - pos: -12.5,5.5 + rot: 1.5707963267948966 rad + pos: -91.5,-18.5 parent: 2 - - uid: 7118 + - uid: 7734 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,5.5 + pos: -90.5,-18.5 parent: 2 - - uid: 7119 + - uid: 7735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-27.5 + rot: 1.5707963267948966 rad + pos: -89.5,-18.5 parent: 2 - - uid: 7120 + - uid: 7736 components: - type: Transform rot: 1.5707963267948966 rad - pos: -78.5,-26.5 + pos: -88.5,-18.5 parent: 2 - - uid: 7121 + - uid: 7737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,-26.5 + rot: 1.5707963267948966 rad + pos: -87.5,-18.5 parent: 2 - - uid: 7122 + - uid: 7738 components: - type: Transform - pos: -187.5,4.5 + rot: 1.5707963267948966 rad + pos: -86.5,-18.5 parent: 2 - - uid: 7123 + - uid: 7739 components: - type: Transform - pos: -196.5,17.5 + rot: 1.5707963267948966 rad + pos: -85.5,-18.5 parent: 2 - - uid: 7124 + - uid: 7740 components: - type: Transform rot: 1.5707963267948966 rad - pos: -182.5,-13.5 + pos: -83.5,-19.5 parent: 2 - - uid: 7125 + - uid: 7741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -178.5,-13.5 + rot: 1.5707963267948966 rad + pos: -82.5,-19.5 parent: 2 - - uid: 7126 + - uid: 7742 components: - type: Transform - pos: -195.5,10.5 + rot: 1.5707963267948966 rad + pos: -81.5,-19.5 parent: 2 - - uid: 7127 + - uid: 7743 components: - type: Transform - rot: 3.141592653589793 rad - pos: -195.5,4.5 + rot: 1.5707963267948966 rad + pos: -80.5,-19.5 parent: 2 - - uid: 7128 + - uid: 7744 components: - type: Transform - rot: 3.141592653589793 rad - pos: -196.5,10.5 + rot: 1.5707963267948966 rad + pos: -79.5,-19.5 parent: 2 - - uid: 7129 + - uid: 7745 components: - type: Transform - rot: 3.141592653589793 rad - pos: -173.5,4.5 + rot: 1.5707963267948966 rad + pos: -78.5,-19.5 parent: 2 - - uid: 7130 + - uid: 7746 components: - type: Transform - pos: -111.5,-13.5 + pos: -77.5,-20.5 parent: 2 - - uid: 7131 + - uid: 7747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -196.5,14.5 + pos: -77.5,-21.5 parent: 2 - - uid: 7132 + - uid: 7748 components: - type: Transform - rot: 3.141592653589793 rad - pos: -196.5,16.5 + pos: -77.5,-22.5 parent: 2 - - uid: 7133 + - uid: 7749 + components: + - type: Transform + pos: -77.5,-23.5 + parent: 2 + - uid: 7750 components: - type: Transform rot: -1.5707963267948966 rad - pos: -142.5,-3.5 + pos: -75.5,-23.5 parent: 2 - - uid: 7134 + - uid: 7751 components: - type: Transform - pos: -195.5,16.5 + rot: -1.5707963267948966 rad + pos: -74.5,-23.5 parent: 2 - - uid: 7135 + - uid: 7752 components: - type: Transform - pos: -138.5,-2.5 + rot: -1.5707963267948966 rad + pos: -73.5,-23.5 parent: 2 - - uid: 7136 + - uid: 7753 components: - type: Transform - rot: 3.141592653589793 rad - pos: -138.5,-3.5 + rot: -1.5707963267948966 rad + pos: -72.5,-23.5 parent: 2 -- proto: DisposalJunction - entities: - - uid: 7137 + - uid: 7754 components: - type: Transform rot: -1.5707963267948966 rad - pos: -120.5,-3.5 + pos: -71.5,-23.5 parent: 2 - - uid: 7138 + - uid: 7755 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -157.5,-3.5 + rot: -1.5707963267948966 rad + pos: -69.5,-24.5 parent: 2 - - uid: 7139 + - uid: 7756 components: - type: Transform rot: -1.5707963267948966 rad - pos: -80.5,8.5 + pos: -99.5,-3.5 parent: 2 - - uid: 7140 + - uid: 7757 components: - type: Transform rot: -1.5707963267948966 rad - pos: -58.5,8.5 + pos: -98.5,-3.5 parent: 2 - - uid: 7141 + - uid: 7758 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,2.5 + rot: -1.5707963267948966 rad + pos: -97.5,-3.5 parent: 2 - - uid: 7142 + - uid: 7759 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-11.5 + rot: -1.5707963267948966 rad + pos: -96.5,-3.5 parent: 2 - - uid: 7143 + - uid: 7760 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-16.5 + pos: -95.5,-3.5 parent: 2 - - uid: 7144 + - uid: 7761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -178.5,-3.5 + rot: -1.5707963267948966 rad + pos: -94.5,-3.5 parent: 2 - - uid: 7145 + - uid: 7762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -166.5,-3.5 + rot: -1.5707963267948966 rad + pos: -93.5,-3.5 parent: 2 - - uid: 7146 + - uid: 7763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -149.5,-3.5 + rot: -1.5707963267948966 rad + pos: -92.5,-3.5 parent: 2 -- proto: DisposalJunctionFlipped - entities: - - uid: 7147 + - uid: 7764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,-13.5 + rot: -1.5707963267948966 rad + pos: -91.5,-3.5 parent: 2 - - uid: 7148 + - uid: 7765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -157.5,4.5 + rot: -1.5707963267948966 rad + pos: -90.5,-3.5 parent: 2 - - uid: 7149 + - uid: 7766 components: - type: Transform rot: -1.5707963267948966 rad - pos: -124.5,-17.5 + pos: -89.5,-3.5 parent: 2 - - uid: 7150 + - uid: 7767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -103.5,-15.5 + rot: 3.141592653589793 rad + pos: -88.5,-2.5 parent: 2 - - uid: 7151 + - uid: 7768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,-3.5 + rot: 3.141592653589793 rad + pos: -88.5,-1.5 parent: 2 - - uid: 7152 + - uid: 7769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -155.5,-3.5 + rot: 3.141592653589793 rad + pos: -88.5,-0.5 parent: 2 - - uid: 7153 + - uid: 7770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -181.5,-3.5 + rot: 3.141592653589793 rad + pos: -88.5,0.5 parent: 2 - - uid: 7154 + - uid: 7771 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,8.5 + pos: -87.5,1.5 parent: 2 - - uid: 7155 + - uid: 7772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,1.5 + parent: 2 + - uid: 7773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-11.5 + rot: 3.141592653589793 rad + pos: -84.5,3.5 parent: 2 - - uid: 7156 + - uid: 7774 components: - type: Transform - pos: -13.5,-5.5 + rot: 3.141592653589793 rad + pos: -84.5,4.5 parent: 2 - - uid: 7157 + - uid: 7775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -187.5,-3.5 + rot: 3.141592653589793 rad + pos: -84.5,6.5 parent: 2 -- proto: DisposalPipe - entities: - - uid: 7158 + - uid: 7776 components: - type: Transform rot: 3.141592653589793 rad - pos: -195.5,15.5 + pos: -84.5,5.5 parent: 2 - - uid: 7159 + - uid: 7777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -141.5,-2.5 + rot: 3.141592653589793 rad + pos: -84.5,7.5 parent: 2 - - uid: 7160 + - uid: 7778 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-21.5 + rot: 1.5707963267948966 rad + pos: -83.5,8.5 parent: 2 - - uid: 7161 + - uid: 7779 components: - type: Transform rot: 1.5707963267948966 rad - pos: -125.5,-17.5 + pos: -82.5,8.5 parent: 2 - - uid: 7162 + - uid: 7780 components: - type: Transform rot: 1.5707963267948966 rad - pos: -123.5,-18.5 + pos: -81.5,8.5 parent: 2 - - uid: 7163 + - uid: 7781 components: - type: Transform rot: 1.5707963267948966 rad - pos: -122.5,-18.5 + pos: -79.5,8.5 parent: 2 - - uid: 7164 + - uid: 7782 components: - type: Transform rot: 1.5707963267948966 rad - pos: -121.5,-18.5 + pos: -78.5,8.5 parent: 2 - - uid: 7165 + - uid: 7783 components: - type: Transform rot: 1.5707963267948966 rad - pos: -120.5,-18.5 + pos: -77.5,8.5 parent: 2 - - uid: 7166 + - uid: 7784 components: - type: Transform rot: 1.5707963267948966 rad - pos: -119.5,-18.5 + pos: -76.5,8.5 parent: 2 - - uid: 7167 + - uid: 7785 components: - type: Transform rot: 1.5707963267948966 rad - pos: -118.5,-18.5 + pos: -75.5,8.5 parent: 2 - - uid: 7168 + - uid: 7786 components: - type: Transform - pos: -117.5,-19.5 + rot: 1.5707963267948966 rad + pos: -74.5,8.5 parent: 2 - - uid: 7169 + - uid: 7787 components: - type: Transform rot: -1.5707963267948966 rad - pos: -116.5,-20.5 + pos: -62.5,8.5 parent: 2 - - uid: 7170 + - uid: 7788 components: - type: Transform rot: -1.5707963267948966 rad - pos: -115.5,-20.5 + pos: -61.5,8.5 parent: 2 - - uid: 7171 + - uid: 7789 components: - type: Transform rot: -1.5707963267948966 rad - pos: -114.5,-20.5 + pos: -60.5,8.5 parent: 2 - - uid: 7172 + - uid: 7790 components: - type: Transform rot: -1.5707963267948966 rad - pos: -113.5,-20.5 + pos: -59.5,8.5 parent: 2 - - uid: 7173 + - uid: 7791 components: - type: Transform rot: -1.5707963267948966 rad - pos: -111.5,-21.5 + pos: -73.5,8.5 parent: 2 - - uid: 7174 + - uid: 7792 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,-20.5 + rot: -1.5707963267948966 rad + pos: -72.5,8.5 parent: 2 - - uid: 7175 + - uid: 7793 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,-19.5 + rot: -1.5707963267948966 rad + pos: -71.5,8.5 parent: 2 - - uid: 7176 + - uid: 7794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -108.5,-18.5 + rot: -1.5707963267948966 rad + pos: -70.5,8.5 parent: 2 - - uid: 7177 + - uid: 7795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -107.5,-18.5 + rot: -1.5707963267948966 rad + pos: -69.5,8.5 parent: 2 - - uid: 7178 + - uid: 7796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-18.5 + rot: -1.5707963267948966 rad + pos: -68.5,8.5 parent: 2 - - uid: 7179 + - uid: 7797 components: - type: Transform - pos: -105.5,-19.5 + rot: -1.5707963267948966 rad + pos: -67.5,8.5 parent: 2 - - uid: 7180 + - uid: 7798 components: - type: Transform - pos: -105.5,-20.5 + rot: -1.5707963267948966 rad + pos: -66.5,8.5 parent: 2 - - uid: 7181 + - uid: 7799 components: - type: Transform rot: -1.5707963267948966 rad - pos: -104.5,-21.5 + pos: -65.5,8.5 parent: 2 - - uid: 7182 + - uid: 7800 components: - type: Transform rot: -1.5707963267948966 rad - pos: -102.5,-21.5 + pos: -64.5,8.5 parent: 2 - - uid: 7183 + - uid: 7801 components: - type: Transform rot: -1.5707963267948966 rad - pos: -100.5,-20.5 + pos: -63.5,8.5 parent: 2 - - uid: 7184 + - uid: 7802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,-20.5 + rot: 3.141592653589793 rad + pos: -58.5,9.5 parent: 2 - - uid: 7185 + - uid: 7803 components: - type: Transform rot: 3.141592653589793 rad - pos: -98.5,-19.5 + pos: -58.5,10.5 parent: 2 - - uid: 7186 + - uid: 7804 components: - type: Transform rot: 3.141592653589793 rad - pos: -98.5,-18.5 + pos: -58.5,11.5 parent: 2 - - uid: 7187 + - uid: 7805 components: - type: Transform rot: 3.141592653589793 rad - pos: -98.5,-17.5 + pos: -58.5,12.5 parent: 2 - - uid: 7188 + - uid: 7806 components: - type: Transform rot: 3.141592653589793 rad - pos: -98.5,-16.5 + pos: -58.5,13.5 parent: 2 - - uid: 7189 + - uid: 7807 components: - type: Transform rot: -1.5707963267948966 rad - pos: -99.5,-15.5 + pos: -59.5,14.5 parent: 2 - - uid: 7190 + - uid: 7808 components: - type: Transform rot: -1.5707963267948966 rad - pos: -100.5,-15.5 + pos: -60.5,14.5 parent: 2 - - uid: 7191 + - uid: 7809 components: - type: Transform rot: -1.5707963267948966 rad - pos: -101.5,-15.5 + pos: -57.5,8.5 parent: 2 - - uid: 7192 + - uid: 7810 components: - type: Transform rot: -1.5707963267948966 rad - pos: -102.5,-15.5 + pos: -55.5,8.5 parent: 2 - - uid: 7193 + - uid: 7811 components: - type: Transform rot: 3.141592653589793 rad - pos: -103.5,-14.5 + pos: -56.5,7.5 parent: 2 - - uid: 7194 + - uid: 7812 components: - type: Transform rot: 3.141592653589793 rad - pos: -103.5,-13.5 + pos: -56.5,6.5 parent: 2 - - uid: 7195 + - uid: 7813 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-12.5 + rot: -1.5707963267948966 rad + pos: -53.5,8.5 parent: 2 - - uid: 7196 + - uid: 7814 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-11.5 + rot: -1.5707963267948966 rad + pos: -54.5,8.5 parent: 2 - - uid: 7197 + - uid: 7815 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-10.5 + rot: -1.5707963267948966 rad + pos: -52.5,8.5 parent: 2 - - uid: 7198 + - uid: 7816 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-9.5 + rot: -1.5707963267948966 rad + pos: -51.5,8.5 parent: 2 - - uid: 7199 + - uid: 7817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,-15.5 + pos: -50.5,7.5 parent: 2 - - uid: 7200 + - uid: 7818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,-15.5 + pos: -50.5,6.5 parent: 2 - - uid: 7201 + - uid: 7819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-15.5 + pos: -50.5,4.5 parent: 2 - - uid: 7202 + - uid: 7820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -107.5,-15.5 + pos: -50.5,5.5 parent: 2 - - uid: 7203 + - uid: 7821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -108.5,-15.5 + pos: -50.5,3.5 parent: 2 - - uid: 7204 + - uid: 7822 components: - type: Transform rot: 1.5707963267948966 rad - pos: -110.5,-15.5 + pos: -49.5,2.5 parent: 2 - - uid: 7205 + - uid: 7823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,-21.5 + rot: 1.5707963267948966 rad + pos: -48.5,2.5 parent: 2 - - uid: 7206 + - uid: 7824 components: - type: Transform rot: 3.141592653589793 rad - pos: -111.5,-14.5 + pos: -50.5,1.5 parent: 2 - - uid: 7207 + - uid: 7825 components: - type: Transform rot: 3.141592653589793 rad - pos: -112.5,-12.5 + pos: -50.5,0.5 parent: 2 - - uid: 7208 + - uid: 7826 components: - type: Transform rot: 3.141592653589793 rad - pos: -112.5,-11.5 + pos: -50.5,-0.5 parent: 2 - - uid: 7209 + - uid: 7827 components: - type: Transform rot: 3.141592653589793 rad - pos: -112.5,-10.5 + pos: -50.5,-1.5 parent: 2 - - uid: 7210 + - uid: 7828 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,-9.5 + rot: 1.5707963267948966 rad + pos: -49.5,-2.5 parent: 2 - - uid: 7211 + - uid: 7829 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,-8.5 + rot: 1.5707963267948966 rad + pos: -48.5,-2.5 parent: 2 - - uid: 7212 + - uid: 7830 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,-7.5 + rot: 1.5707963267948966 rad + pos: -47.5,-2.5 parent: 2 - - uid: 7213 + - uid: 7831 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,-6.5 + rot: 1.5707963267948966 rad + pos: -46.5,-2.5 parent: 2 - - uid: 7214 + - uid: 7832 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,-5.5 + rot: 1.5707963267948966 rad + pos: -45.5,-2.5 parent: 2 - - uid: 7215 + - uid: 7833 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,-4.5 + rot: 1.5707963267948966 rad + pos: -44.5,-2.5 parent: 2 - - uid: 7216 + - uid: 7834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,-3.5 + pos: -43.5,-3.5 parent: 2 - - uid: 7217 + - uid: 7835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,-3.5 + pos: -43.5,-4.5 parent: 2 - - uid: 7218 + - uid: 7836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,-3.5 + pos: -43.5,-5.5 parent: 2 - - uid: 7219 + - uid: 7837 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,-3.5 + pos: -43.5,-6.5 parent: 2 - - uid: 7220 + - uid: 7838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,-3.5 + pos: -43.5,-7.5 parent: 2 - - uid: 7221 + - uid: 7839 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -118.5,-3.5 + pos: -43.5,-8.5 parent: 2 - - uid: 7222 + - uid: 7840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,-3.5 + pos: -43.5,-9.5 parent: 2 - - uid: 7223 + - uid: 7841 components: - type: Transform - rot: 3.141592653589793 rad - pos: -120.5,-2.5 + pos: -43.5,-10.5 parent: 2 - - uid: 7224 + - uid: 7842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -121.5,-3.5 + rot: 1.5707963267948966 rad + pos: -42.5,-11.5 parent: 2 - - uid: 7225 + - uid: 7843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.5,-3.5 + rot: 1.5707963267948966 rad + pos: -41.5,-11.5 parent: 2 - - uid: 7226 + - uid: 7844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -124.5,-3.5 + rot: 1.5707963267948966 rad + pos: -40.5,-11.5 parent: 2 - - uid: 7227 + - uid: 7845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -125.5,-3.5 + rot: 1.5707963267948966 rad + pos: -39.5,-11.5 parent: 2 - - uid: 7228 + - uid: 7846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -127.5,-3.5 + rot: 1.5707963267948966 rad + pos: -38.5,-11.5 parent: 2 - - uid: 7229 + - uid: 7847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -128.5,-3.5 + rot: 1.5707963267948966 rad + pos: -36.5,-11.5 parent: 2 - - uid: 7230 + - uid: 7848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -129.5,-3.5 + rot: 1.5707963267948966 rad + pos: -35.5,-11.5 parent: 2 - - uid: 7231 + - uid: 7849 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -130.5,-3.5 + rot: 1.5707963267948966 rad + pos: -34.5,-11.5 parent: 2 - - uid: 7232 + - uid: 7850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -131.5,-3.5 + rot: 1.5707963267948966 rad + pos: -33.5,-11.5 parent: 2 - - uid: 7233 + - uid: 7851 components: - type: Transform - pos: -126.5,-1.5 + rot: 1.5707963267948966 rad + pos: -32.5,-11.5 parent: 2 - - uid: 7234 + - uid: 7852 components: - type: Transform - pos: -126.5,-2.5 + rot: 1.5707963267948966 rad + pos: -31.5,-11.5 parent: 2 - - uid: 7235 + - uid: 7853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -139.5,-2.5 + rot: 1.5707963267948966 rad + pos: -30.5,-11.5 parent: 2 - - uid: 7236 + - uid: 7854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -132.5,-3.5 + rot: 3.141592653589793 rad + pos: -37.5,-13.5 parent: 2 - - uid: 7237 + - uid: 7855 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -133.5,-3.5 + rot: 3.141592653589793 rad + pos: -37.5,-12.5 parent: 2 - - uid: 7238 + - uid: 7856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -134.5,-3.5 + rot: 3.141592653589793 rad + pos: -37.5,-14.5 parent: 2 - - uid: 7239 + - uid: 7857 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -135.5,-3.5 + rot: 1.5707963267948966 rad + pos: -35.5,-16.5 parent: 2 - - uid: 7240 + - uid: 7858 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-3.5 + rot: 1.5707963267948966 rad + pos: -34.5,-16.5 parent: 2 - - uid: 7241 + - uid: 7859 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -137.5,-3.5 + rot: 1.5707963267948966 rad + pos: -33.5,-16.5 parent: 2 - - uid: 7242 + - uid: 7860 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -143.5,-3.5 + rot: 1.5707963267948966 rad + pos: -32.5,-16.5 parent: 2 - - uid: 7243 + - uid: 7861 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -144.5,-3.5 + rot: 1.5707963267948966 rad + pos: -31.5,-16.5 parent: 2 - - uid: 7244 + - uid: 7862 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -145.5,-3.5 + rot: 1.5707963267948966 rad + pos: -30.5,-16.5 parent: 2 - - uid: 7245 + - uid: 7863 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -146.5,-3.5 + rot: 1.5707963267948966 rad + pos: -29.5,-16.5 parent: 2 - - uid: 7246 + - uid: 7864 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -147.5,-3.5 + rot: 1.5707963267948966 rad + pos: -28.5,-16.5 parent: 2 - - uid: 7247 + - uid: 7865 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -148.5,-3.5 + rot: 1.5707963267948966 rad + pos: -27.5,-16.5 + parent: 2 + - uid: 7866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-15.5 + parent: 2 + - uid: 7867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-14.5 + parent: 2 + - uid: 7868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-13.5 + parent: 2 + - uid: 7869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-12.5 + parent: 2 + - uid: 7870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-11.5 + parent: 2 + - uid: 7871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-10.5 parent: 2 - - uid: 7248 + - uid: 7872 components: - type: Transform rot: 3.141592653589793 rad - pos: -149.5,-4.5 + pos: -26.5,-9.5 parent: 2 - - uid: 7249 + - uid: 7873 components: - type: Transform rot: 1.5707963267948966 rad - pos: -150.5,-3.5 + pos: -25.5,-8.5 parent: 2 - - uid: 7250 + - uid: 7874 components: - type: Transform rot: 1.5707963267948966 rad - pos: -151.5,-3.5 + pos: -24.5,-8.5 parent: 2 - - uid: 7251 + - uid: 7875 components: - type: Transform rot: 1.5707963267948966 rad - pos: -152.5,-3.5 + pos: -23.5,-8.5 parent: 2 - - uid: 7252 + - uid: 7876 components: - type: Transform rot: 1.5707963267948966 rad - pos: -153.5,-3.5 + pos: -22.5,-8.5 parent: 2 - - uid: 7253 + - uid: 7877 components: - type: Transform rot: 1.5707963267948966 rad - pos: -154.5,-3.5 + pos: -21.5,-8.5 parent: 2 - - uid: 7254 + - uid: 7878 components: - type: Transform rot: 1.5707963267948966 rad - pos: -156.5,-3.5 + pos: -20.5,-8.5 parent: 2 - - uid: 7255 + - uid: 7879 components: - type: Transform rot: 1.5707963267948966 rad - pos: -158.5,-3.5 + pos: -19.5,-8.5 parent: 2 - - uid: 7256 + - uid: 7880 components: - type: Transform rot: 1.5707963267948966 rad - pos: -159.5,-3.5 + pos: -18.5,-8.5 parent: 2 - - uid: 7257 + - uid: 7881 components: - type: Transform rot: 1.5707963267948966 rad - pos: -160.5,-3.5 + pos: -17.5,-8.5 parent: 2 - - uid: 7258 + - uid: 7882 components: - type: Transform rot: 1.5707963267948966 rad - pos: -161.5,-3.5 + pos: -16.5,-8.5 parent: 2 - - uid: 7259 + - uid: 7883 components: - type: Transform rot: 1.5707963267948966 rad - pos: -162.5,-3.5 + pos: -15.5,-8.5 parent: 2 - - uid: 7260 + - uid: 7884 components: - type: Transform rot: 1.5707963267948966 rad - pos: -163.5,-3.5 + pos: -14.5,-8.5 parent: 2 - - uid: 7261 + - uid: 7885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -164.5,-3.5 + rot: 3.141592653589793 rad + pos: -13.5,-7.5 parent: 2 - - uid: 7262 + - uid: 7886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -165.5,-3.5 + rot: 3.141592653589793 rad + pos: -13.5,-6.5 parent: 2 - - uid: 7263 + - uid: 7887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -167.5,-3.5 + rot: 3.141592653589793 rad + pos: -13.5,-4.5 parent: 2 - - uid: 7264 + - uid: 7888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -168.5,-3.5 + rot: -1.5707963267948966 rad + pos: -12.5,-3.5 parent: 2 - - uid: 7265 + - uid: 7889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -169.5,-3.5 + rot: -1.5707963267948966 rad + pos: -11.5,-3.5 parent: 2 - - uid: 7266 + - uid: 7890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -170.5,-3.5 + rot: -1.5707963267948966 rad + pos: -14.5,-3.5 parent: 2 - - uid: 7267 + - uid: 7891 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.5,-2.5 + rot: -1.5707963267948966 rad + pos: -15.5,-3.5 parent: 2 - - uid: 7268 + - uid: 7892 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,-1.5 + pos: -16.5,-4.5 parent: 2 - - uid: 7269 + - uid: 7893 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,-0.5 + pos: -10.5,-2.5 parent: 2 - - uid: 7270 + - uid: 7894 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,0.5 + pos: -10.5,-1.5 parent: 2 - - uid: 7271 + - uid: 7895 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,2.5 + pos: -10.5,-0.5 parent: 2 - - uid: 7272 + - uid: 7896 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,1.5 + pos: -12.5,-4.5 parent: 2 - - uid: 7273 + - uid: 7897 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,3.5 + pos: -12.5,-3.5 parent: 2 - - uid: 7274 + - uid: 7898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -160.5,7.5 + rot: 3.141592653589793 rad + pos: -12.5,-2.5 parent: 2 - - uid: 7275 + - uid: 7899 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -159.5,7.5 + rot: 3.141592653589793 rad + pos: -12.5,-1.5 parent: 2 - - uid: 7276 + - uid: 7900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -158.5,7.5 + rot: 3.141592653589793 rad + pos: -12.5,-0.5 parent: 2 - - uid: 7277 + - uid: 7901 components: - type: Transform - pos: -157.5,6.5 + rot: 3.141592653589793 rad + pos: -12.5,0.5 parent: 2 - - uid: 7278 + - uid: 7902 components: - type: Transform - pos: -157.5,5.5 + rot: 3.141592653589793 rad + pos: -12.5,1.5 parent: 2 - - uid: 7279 + - uid: 7903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -156.5,4.5 + rot: 3.141592653589793 rad + pos: -12.5,2.5 parent: 2 - - uid: 7280 + - uid: 7904 components: - type: Transform rot: 3.141592653589793 rad - pos: -157.5,-4.5 + pos: -12.5,3.5 parent: 2 - - uid: 7281 + - uid: 7905 components: - type: Transform - rot: 3.141592653589793 rad - pos: -157.5,-5.5 + pos: -12.5,4.5 parent: 2 - - uid: 7282 + - uid: 7906 components: - type: Transform - rot: 3.141592653589793 rad - pos: -157.5,-6.5 + rot: -1.5707963267948966 rad + pos: -13.5,5.5 parent: 2 - - uid: 7283 + - uid: 7907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -158.5,-7.5 + rot: -1.5707963267948966 rad + pos: -14.5,5.5 parent: 2 - - uid: 7284 + - uid: 7908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -159.5,-7.5 + rot: -1.5707963267948966 rad + pos: -15.5,5.5 parent: 2 - - uid: 7285 + - uid: 7909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -171.5,-3.5 + rot: -1.5707963267948966 rad + pos: -16.5,5.5 parent: 2 - - uid: 7286 + - uid: 7910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -172.5,-3.5 + rot: -1.5707963267948966 rad + pos: -17.5,5.5 parent: 2 - - uid: 7287 + - uid: 7911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -173.5,-3.5 + rot: -1.5707963267948966 rad + pos: -18.5,5.5 parent: 2 - - uid: 7288 + - uid: 7912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -174.5,-3.5 + rot: -1.5707963267948966 rad + pos: -19.5,5.5 parent: 2 - - uid: 7289 + - uid: 7913 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -175.5,-3.5 + rot: -1.5707963267948966 rad + pos: -20.5,5.5 parent: 2 - - uid: 7290 + - uid: 7914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -176.5,-3.5 + rot: -1.5707963267948966 rad + pos: -21.5,5.5 parent: 2 - - uid: 7291 + - uid: 7915 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -177.5,-3.5 + rot: -1.5707963267948966 rad + pos: -22.5,5.5 parent: 2 - - uid: 7292 + - uid: 7916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -179.5,-3.5 + rot: 3.141592653589793 rad + pos: -23.5,4.5 parent: 2 - - uid: 7293 + - uid: 7917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -180.5,-3.5 + rot: 3.141592653589793 rad + pos: -23.5,3.5 parent: 2 - - uid: 7294 + - uid: 7918 components: - type: Transform rot: 1.5707963267948966 rad - pos: -182.5,-3.5 + pos: -82.5,-27.5 parent: 2 - - uid: 7295 + - uid: 7919 components: - type: Transform rot: 1.5707963267948966 rad - pos: -183.5,-3.5 + pos: -81.5,-27.5 parent: 2 - - uid: 7296 + - uid: 7920 components: - type: Transform rot: 1.5707963267948966 rad - pos: -184.5,-3.5 + pos: -80.5,-27.5 parent: 2 - - uid: 7297 + - uid: 7921 components: - type: Transform rot: 1.5707963267948966 rad - pos: -185.5,-3.5 + pos: -79.5,-27.5 parent: 2 - - uid: 7298 + - uid: 7922 components: - type: Transform rot: 1.5707963267948966 rad - pos: -186.5,-3.5 + pos: -77.5,-26.5 parent: 2 - - uid: 7299 + - uid: 7923 components: - type: Transform rot: 1.5707963267948966 rad - pos: -188.5,-3.5 + pos: -76.5,-26.5 parent: 2 - - uid: 7300 + - uid: 7924 components: - type: Transform rot: 1.5707963267948966 rad - pos: -189.5,-3.5 + pos: -75.5,-26.5 parent: 2 - - uid: 7301 + - uid: 7925 components: - type: Transform rot: 1.5707963267948966 rad - pos: -190.5,-3.5 + pos: -74.5,-26.5 parent: 2 - - uid: 7302 + - uid: 7926 components: - type: Transform rot: 1.5707963267948966 rad - pos: -191.5,-3.5 + pos: -73.5,-26.5 parent: 2 - - uid: 7303 + - uid: 7927 components: - type: Transform rot: 1.5707963267948966 rad - pos: -192.5,-3.5 + pos: -72.5,-26.5 parent: 2 - - uid: 7304 + - uid: 7928 components: - type: Transform rot: 1.5707963267948966 rad - pos: -193.5,-3.5 + pos: -71.5,-26.5 parent: 2 - - uid: 7305 + - uid: 7929 components: - type: Transform rot: 1.5707963267948966 rad - pos: -194.5,-3.5 + pos: -70.5,-26.5 parent: 2 - - uid: 7306 + - uid: 7930 components: - type: Transform rot: 1.5707963267948966 rad - pos: -195.5,-3.5 + pos: -69.5,-26.5 parent: 2 - - uid: 7307 + - uid: 7931 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,-16.5 + rot: 1.5707963267948966 rad + pos: -126.5,-17.5 parent: 2 - - uid: 7308 + - uid: 7932 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,-15.5 + rot: -1.5707963267948966 rad + pos: -181.5,-13.5 parent: 2 - - uid: 7309 + - uid: 7933 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,-14.5 + rot: -1.5707963267948966 rad + pos: -180.5,-13.5 parent: 2 - - uid: 7310 + - uid: 7934 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,-13.5 + rot: -1.5707963267948966 rad + pos: -179.5,-13.5 parent: 2 - - uid: 7311 + - uid: 7935 components: - type: Transform rot: 3.141592653589793 rad - pos: -123.5,-12.5 + pos: -182.5,-14.5 parent: 2 - - uid: 7312 + - uid: 7936 components: - type: Transform rot: 3.141592653589793 rad - pos: -123.5,-11.5 + pos: -182.5,-15.5 parent: 2 - - uid: 7313 + - uid: 7937 components: - type: Transform rot: 3.141592653589793 rad - pos: -123.5,-10.5 + pos: -178.5,-12.5 parent: 2 - - uid: 7314 + - uid: 7938 components: - type: Transform rot: 3.141592653589793 rad - pos: -123.5,-9.5 + pos: -178.5,-11.5 parent: 2 - - uid: 7315 + - uid: 7939 components: - type: Transform rot: 3.141592653589793 rad - pos: -123.5,-8.5 + pos: -178.5,-10.5 parent: 2 - - uid: 7316 + - uid: 7940 components: - type: Transform rot: 3.141592653589793 rad - pos: -123.5,-7.5 + pos: -178.5,-9.5 parent: 2 - - uid: 7317 + - uid: 7941 components: - type: Transform rot: 3.141592653589793 rad - pos: -123.5,-6.5 + pos: -178.5,-8.5 parent: 2 - - uid: 7318 + - uid: 7942 components: - type: Transform rot: 3.141592653589793 rad - pos: -123.5,-5.5 + pos: -178.5,-7.5 parent: 2 - - uid: 7319 + - uid: 7943 components: - type: Transform rot: 3.141592653589793 rad - pos: -123.5,-4.5 + pos: -178.5,-6.5 parent: 2 - - uid: 7320 + - uid: 7944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,-3.5 + rot: 3.141592653589793 rad + pos: -178.5,-5.5 parent: 2 - - uid: 7321 + - uid: 7945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,-3.5 + rot: 3.141592653589793 rad + pos: -178.5,-4.5 parent: 2 - - uid: 7322 + - uid: 7946 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,-3.5 + rot: 1.5707963267948966 rad + pos: -129.5,-17.5 parent: 2 - - uid: 7323 + - uid: 7947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,-3.5 + rot: 1.5707963267948966 rad + pos: -128.5,-17.5 parent: 2 - - uid: 7324 + - uid: 7948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,-3.5 + rot: 1.5707963267948966 rad + pos: -127.5,-17.5 parent: 2 - - uid: 7325 + - uid: 7949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,-3.5 + rot: 3.141592653589793 rad + pos: -166.5,-4.5 parent: 2 - - uid: 7326 + - uid: 7950 components: - type: Transform rot: -1.5707963267948966 rad - pos: -105.5,-3.5 + pos: -158.5,4.5 parent: 2 - - uid: 7327 + - uid: 7951 components: - type: Transform rot: -1.5707963267948966 rad - pos: -104.5,-3.5 + pos: -159.5,4.5 parent: 2 - - uid: 7328 + - uid: 7952 components: - type: Transform rot: -1.5707963267948966 rad - pos: -103.5,-3.5 + pos: -160.5,4.5 parent: 2 - - uid: 7329 + - uid: 7953 components: - type: Transform rot: -1.5707963267948966 rad - pos: -101.5,-3.5 + pos: -161.5,4.5 parent: 2 - - uid: 7330 + - uid: 7954 components: - type: Transform rot: -1.5707963267948966 rad - pos: -100.5,-3.5 + pos: -162.5,4.5 parent: 2 - - uid: 7331 + - uid: 7955 components: - type: Transform rot: -1.5707963267948966 rad - pos: -102.5,-3.5 - parent: 2 - - uid: 7332 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,-2.5 - parent: 2 - - uid: 7333 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,-1.5 + pos: -163.5,4.5 parent: 2 - - uid: 7334 + - uid: 7956 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,-0.5 + rot: -1.5707963267948966 rad + pos: -164.5,4.5 parent: 2 - - uid: 7335 + - uid: 7957 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,0.5 + rot: -1.5707963267948966 rad + pos: -165.5,4.5 parent: 2 - - uid: 7336 + - uid: 7958 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,1.5 + rot: -1.5707963267948966 rad + pos: -166.5,4.5 parent: 2 - - uid: 7337 + - uid: 7959 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,2.5 + rot: -1.5707963267948966 rad + pos: -167.5,4.5 parent: 2 - - uid: 7338 + - uid: 7960 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,3.5 + rot: -1.5707963267948966 rad + pos: -168.5,4.5 parent: 2 - - uid: 7339 + - uid: 7961 components: - type: Transform rot: -1.5707963267948966 rad - pos: -97.5,-15.5 + pos: -169.5,4.5 parent: 2 - - uid: 7340 + - uid: 7962 components: - type: Transform rot: -1.5707963267948966 rad - pos: -96.5,-15.5 + pos: -170.5,4.5 parent: 2 - - uid: 7341 + - uid: 7963 components: - type: Transform rot: -1.5707963267948966 rad - pos: -94.5,-16.5 + pos: -171.5,4.5 parent: 2 - - uid: 7342 + - uid: 7964 components: - type: Transform rot: -1.5707963267948966 rad - pos: -93.5,-16.5 + pos: -172.5,4.5 parent: 2 - - uid: 7343 + - uid: 7965 components: - type: Transform rot: 3.141592653589793 rad - pos: -92.5,-17.5 - parent: 2 - - uid: 7344 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -91.5,-18.5 - parent: 2 - - uid: 7345 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,-18.5 + pos: -173.5,5.5 parent: 2 - - uid: 7346 + - uid: 7966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,-18.5 + rot: -1.5707963267948966 rad + pos: -140.5,-2.5 parent: 2 - - uid: 7347 +- proto: DisposalRouterFlipped + entities: + - uid: 7967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,-18.5 + rot: -1.5707963267948966 rad + pos: -112.5,-3.5 parent: 2 - - uid: 7348 +- proto: DisposalTrunk + entities: + - uid: 7968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,-18.5 + pos: -103.5,-8.5 parent: 2 - - uid: 7349 + - uid: 7969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,-18.5 + pos: -120.5,-1.5 parent: 2 - - uid: 7350 + - uid: 7970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,-18.5 + pos: -126.5,-0.5 parent: 2 - - uid: 7351 + - uid: 7971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,-19.5 + rot: 3.141592653589793 rad + pos: -149.5,-5.5 parent: 2 - - uid: 7352 + - uid: 7972 components: - type: Transform rot: 1.5707963267948966 rad - pos: -82.5,-19.5 + pos: -161.5,7.5 parent: 2 - - uid: 7353 + - uid: 7973 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,-19.5 + pos: -160.5,-6.5 parent: 2 - - uid: 7354 + - uid: 7974 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,-19.5 + pos: -196.5,-2.5 parent: 2 - - uid: 7355 + - uid: 7975 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,-19.5 + pos: -181.5,-2.5 parent: 2 - - uid: 7356 + - uid: 7976 components: - type: Transform rot: 1.5707963267948966 rad - pos: -78.5,-19.5 + pos: -103.5,4.5 parent: 2 - - uid: 7357 + - uid: 7977 components: - type: Transform - pos: -77.5,-20.5 + pos: -68.5,-23.5 parent: 2 - - uid: 7358 + - uid: 7978 components: - type: Transform - pos: -77.5,-21.5 + pos: -80.5,9.5 parent: 2 - - uid: 7359 + - uid: 7979 components: - type: Transform - pos: -77.5,-22.5 + rot: 1.5707963267948966 rad + pos: -61.5,14.5 parent: 2 - - uid: 7360 + - uid: 7980 components: - type: Transform - pos: -77.5,-23.5 + rot: 1.5707963267948966 rad + pos: -57.5,5.5 parent: 2 - - uid: 7361 + - uid: 7981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-23.5 + rot: 1.5707963267948966 rad + pos: -47.5,1.5 parent: 2 - - uid: 7362 + - uid: 7982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-23.5 + rot: 3.141592653589793 rad + pos: -43.5,-12.5 parent: 2 - - uid: 7363 + - uid: 7983 components: - type: Transform rot: -1.5707963267948966 rad - pos: -73.5,-23.5 + pos: -29.5,-11.5 parent: 2 - - uid: 7364 + - uid: 7984 components: - type: Transform rot: -1.5707963267948966 rad - pos: -72.5,-23.5 + pos: -25.5,-16.5 parent: 2 - - uid: 7365 + - uid: 7985 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-23.5 + rot: 3.141592653589793 rad + pos: -16.5,-5.5 parent: 2 - - uid: 7366 + - uid: 7986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-24.5 + pos: -10.5,0.5 parent: 2 - - uid: 7367 + - uid: 7987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,-3.5 + rot: 3.141592653589793 rad + pos: -23.5,2.5 parent: 2 - - uid: 7368 + - uid: 7988 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,-3.5 + pos: -68.5,-25.5 parent: 2 - - uid: 7369 + - uid: 7989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,-3.5 + rot: 1.5707963267948966 rad + pos: -83.5,-27.5 parent: 2 - - uid: 7370 + - uid: 7990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -96.5,-3.5 + rot: 3.141592653589793 rad + pos: -182.5,-16.5 parent: 2 - - uid: 7371 + - uid: 7991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -95.5,-3.5 + rot: 1.5707963267948966 rad + pos: -130.5,-17.5 parent: 2 - - uid: 7372 + - uid: 7992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,-3.5 + rot: 3.141592653589793 rad + pos: -166.5,-5.5 parent: 2 - - uid: 7373 + - uid: 7993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,-3.5 + pos: -173.5,6.5 parent: 2 - - uid: 7374 + - uid: 7994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,-3.5 + rot: 1.5707963267948966 rad + pos: -113.5,-13.5 parent: 2 - - uid: 7375 +- proto: DisposalUnit + entities: + - uid: 7995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,-3.5 + pos: -43.5,-12.5 parent: 2 - - uid: 7376 + - uid: 7996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,-3.5 + pos: -29.5,-11.5 parent: 2 - - uid: 7377 + - uid: 7997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-3.5 + pos: -25.5,-16.5 parent: 2 - - uid: 7378 + - uid: 7998 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-2.5 + pos: -16.5,-5.5 parent: 2 - - uid: 7379 + - uid: 7999 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-1.5 + pos: -10.5,0.5 parent: 2 - - uid: 7380 + - uid: 8000 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-0.5 + pos: -23.5,2.5 parent: 2 - - uid: 7381 + - uid: 8001 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,0.5 + pos: -68.5,-23.5 parent: 2 - - uid: 7382 + - uid: 8002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,1.5 + pos: -103.5,4.5 parent: 2 - - uid: 7383 + - uid: 8003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,1.5 + pos: -103.5,-8.5 parent: 2 - - uid: 7384 + - uid: 8004 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,3.5 + pos: -120.5,-1.5 parent: 2 - - uid: 7385 + - uid: 8005 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,4.5 + pos: -126.5,-0.5 parent: 2 - - uid: 7386 + - uid: 8006 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,6.5 + pos: -149.5,-5.5 parent: 2 - - uid: 7387 + - uid: 8007 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,5.5 + pos: -160.5,-6.5 parent: 2 - - uid: 7388 + - uid: 8008 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,7.5 + pos: -161.5,7.5 parent: 2 - - uid: 7389 + - uid: 8009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,8.5 + pos: -181.5,-2.5 parent: 2 - - uid: 7390 + - uid: 8010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,8.5 + pos: -196.5,-2.5 parent: 2 - - uid: 7391 + - uid: 8011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,8.5 + pos: -57.5,5.5 parent: 2 - - uid: 7392 + - uid: 8012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,8.5 + pos: -61.5,14.5 parent: 2 - - uid: 7393 + - uid: 8013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,8.5 + pos: -47.5,1.5 parent: 2 - - uid: 7394 + - uid: 8014 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,8.5 + pos: -80.5,9.5 parent: 2 - - uid: 7395 + - uid: 8015 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,8.5 + pos: -83.5,-27.5 parent: 2 - - uid: 7396 + - uid: 8016 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,8.5 + pos: -68.5,-25.5 parent: 2 - - uid: 7397 + - uid: 8017 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,8.5 + pos: -182.5,-16.5 parent: 2 - - uid: 7398 + - uid: 8018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,8.5 + pos: -166.5,-5.5 parent: 2 - - uid: 7399 + - uid: 8019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,8.5 + pos: -173.5,6.5 parent: 2 - - uid: 7400 + - uid: 8020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,8.5 + pos: -113.5,-13.5 parent: 2 - - uid: 7401 +- proto: DisposalYJunction + entities: + - uid: 8021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,8.5 + pos: -98.5,-15.5 parent: 2 - - uid: 7402 + - uid: 8022 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,8.5 + pos: -13.5,-3.5 parent: 2 - - uid: 7403 +- proto: DogBed + entities: + - uid: 8023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,8.5 + pos: -66.5,-20.5 parent: 2 - - uid: 7404 + - uid: 8024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,8.5 + pos: -7.5,-12.5 parent: 2 - - uid: 7405 + - uid: 8025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,8.5 + pos: -21.5,-0.5 parent: 2 - - uid: 7406 + - uid: 8026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,8.5 + pos: -186.5,-8.5 parent: 2 - - uid: 7407 + - uid: 8027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,8.5 + pos: -166.5,9.5 parent: 2 - - uid: 7408 + - uid: 8028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,8.5 + pos: -157.5,17.5 parent: 2 - - uid: 7409 + - uid: 8029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,8.5 + pos: -149.5,2.5 parent: 2 - - uid: 7410 +- proto: DonkpocketBoxSpawner + entities: + - uid: 8030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,8.5 + rot: 3.141592653589793 rad + pos: -60.5,-1.5 parent: 2 - - uid: 7411 + - uid: 8031 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,8.5 + pos: -163.5,-6.5 parent: 2 - - uid: 7412 + - uid: 8032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,8.5 + pos: -165.5,-17.5 parent: 2 - - uid: 7413 +- proto: DoorElectronics + entities: + - uid: 8033 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,9.5 + pos: -54.72564,-5.373712 parent: 2 - - uid: 7414 + - uid: 8034 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,10.5 + pos: -54.428764,-5.342462 parent: 2 - - uid: 7415 +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 25 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,11.5 - parent: 2 - - uid: 7416 + parent: 24 + - type: GasTank + toggleActionEntity: 26 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 26 + - type: InsideEntityStorage + - uid: 35 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,12.5 - parent: 2 - - uid: 7417 + parent: 24 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7093 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,13.5 - parent: 2 - - uid: 7418 + parent: 7089 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,14.5 - parent: 2 - - uid: 7419 + parent: 7094 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,14.5 - parent: 2 - - uid: 7420 + parent: 7094 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,8.5 - parent: 2 - - uid: 7421 + parent: 7103 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,8.5 - parent: 2 - - uid: 7422 + parent: 7108 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8035 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,7.5 + pos: -59.61786,19.656681 parent: 2 - - uid: 7423 + - uid: 8036 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,6.5 + pos: -81.61933,-31.527718 parent: 2 - - uid: 7424 + - uid: 8037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,8.5 + rot: 1.5707963267948966 rad + pos: -9.602835,4.4599447 parent: 2 - - uid: 7425 +- proto: Dresser + entities: + - uid: 920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,8.5 + pos: -140.5,6.5 parent: 2 - - uid: 7426 + - type: Storage + storedItems: + 926: + position: 0,0 + _rotation: South + 925: + position: 2,0 + _rotation: South + 921: + position: 3,0 + _rotation: South + 922: + position: 4,0 + _rotation: South + 924: + position: 5,0 + _rotation: South + 923: + position: 6,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 926 + - 925 + - 921 + - 922 + - 924 + - 923 +- proto: DresserCaptainFilled + entities: + - uid: 8038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,8.5 + pos: -3.5,-12.5 parent: 2 - - uid: 7427 +- proto: DresserChiefEngineerFilled + entities: + - uid: 8039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,8.5 + pos: -62.5,5.5 parent: 2 - - uid: 7428 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 8040 components: - type: Transform - pos: -50.5,7.5 + pos: -190.5,-9.5 parent: 2 - - uid: 7429 +- proto: DresserFilled + entities: + - uid: 8041 components: - type: Transform - pos: -50.5,6.5 + rot: -1.5707963267948966 rad + pos: -156.5,-23.5 parent: 2 - - uid: 7430 + - uid: 8042 components: - type: Transform - pos: -50.5,4.5 + rot: -1.5707963267948966 rad + pos: -161.5,-12.5 parent: 2 - - uid: 7431 + - uid: 8043 components: - type: Transform - pos: -50.5,5.5 + rot: 1.5707963267948966 rad + pos: -164.5,-12.5 parent: 2 - - uid: 7432 + - uid: 8044 components: - type: Transform - pos: -50.5,3.5 + rot: 1.5707963267948966 rad + pos: -154.5,-23.5 parent: 2 - - uid: 7433 + - uid: 8045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,2.5 + rot: 3.141592653589793 rad + pos: -99.5,8.5 parent: 2 - - uid: 7434 + - uid: 8046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,2.5 + rot: 3.141592653589793 rad + pos: -105.5,8.5 parent: 2 - - uid: 7435 + - uid: 8047 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,1.5 + pos: -105.5,4.5 parent: 2 - - uid: 7436 + - uid: 8048 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,0.5 + pos: -101.5,22.5 parent: 2 - - uid: 7437 + - uid: 8049 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-0.5 + pos: -228.5,-19.5 parent: 2 - - uid: 7438 + - uid: 8050 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-1.5 + pos: -215.5,-31.5 parent: 2 - - uid: 7439 + - uid: 8051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-2.5 + pos: -229.5,-31.5 parent: 2 - - uid: 7440 + - uid: 8052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-2.5 + pos: -229.5,-23.5 parent: 2 - - uid: 7441 + - uid: 8053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-2.5 + pos: -228.5,-27.5 parent: 2 - - uid: 7442 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 8054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-2.5 + rot: 3.141592653589793 rad + pos: -21.5,-5.5 parent: 2 - - uid: 7443 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 8055 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-2.5 + rot: 3.141592653589793 rad + pos: -159.5,14.5 parent: 2 - - uid: 7444 +- proto: DresserQuarterMasterFilled + entities: + - uid: 8056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-2.5 + pos: -68.5,-20.5 parent: 2 - - uid: 7445 +- proto: DresserResearchDirectorFilled + entities: + - uid: 8057 components: - type: Transform - pos: -43.5,-3.5 + pos: -198.5,17.5 parent: 2 - - uid: 7446 +- proto: DresserWardenFilled + entities: + - uid: 8058 components: - type: Transform - pos: -43.5,-4.5 + pos: -166.5,12.5 parent: 2 - - uid: 7447 +- proto: DrinkBeepskySmashGlass + entities: + - uid: 8059 components: - type: Transform - pos: -43.5,-5.5 + pos: -173.15407,-13.396917 parent: 2 - - uid: 7448 +- proto: DrinkBeerBottleFull + entities: + - uid: 8060 components: - type: Transform - pos: -43.5,-6.5 + pos: -97.22396,-24.489 parent: 2 - - uid: 7449 + - uid: 8061 components: - type: Transform - pos: -43.5,-7.5 + rot: -1.5707963267948966 rad + pos: -97.56771,-24.192125 parent: 2 - - uid: 7450 + - uid: 8062 components: - type: Transform - pos: -43.5,-8.5 + pos: -59.60121,3.6084719 parent: 2 - - uid: 7451 + - uid: 8063 components: - type: Transform - pos: -43.5,-9.5 + pos: -59.304337,3.7803469 parent: 2 - - uid: 7452 + - uid: 8064 components: - type: Transform - pos: -43.5,-10.5 + rot: 1.5707963267948966 rad + pos: -215.53334,-35.55594 parent: 2 - - uid: 7453 + - uid: 8065 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-11.5 + pos: -215.53334,-35.30844 parent: 2 - - uid: 7454 + - uid: 8066 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-11.5 + pos: -215.53334,-35.443443 parent: 2 - - uid: 7455 + - uid: 8067 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-11.5 + pos: -216.56912,-37.46844 parent: 2 - - uid: 7456 + - uid: 8068 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-11.5 + pos: -216.56912,-37.31094 parent: 2 - - uid: 7457 + - uid: 8069 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-11.5 + pos: -215.51083,-36.50094 parent: 2 - - uid: 7458 + - uid: 8070 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-11.5 + pos: -215.53334,-36.34344 parent: 2 - - uid: 7459 +- proto: DrinkBeerCan + entities: + - uid: 8071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-11.5 + pos: -115.14542,4.6248527 parent: 2 - - uid: 7460 + - uid: 8072 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-11.5 + rot: -1.5707963267948966 rad + pos: -114.55216,4.4315057 parent: 2 - - uid: 7461 +- proto: DrinkBeerglass + entities: + - uid: 8073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-11.5 + pos: -228.3896,-16.742634 parent: 2 - - uid: 7462 +- proto: DrinkBottleBeer + entities: + - uid: 8074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-11.5 + rot: 3.141592653589793 rad + pos: -216.65086,-35.43824 parent: 2 - - uid: 7463 + - uid: 8075 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-11.5 + pos: -215.52164,-35.71949 parent: 2 - - uid: 7464 + - uid: 8076 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-11.5 + pos: -215.44685,-36.735115 parent: 2 - - uid: 7465 + - uid: 8077 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-13.5 + rot: 1.5707963267948966 rad + pos: -216.43196,-35.328865 parent: 2 - - uid: 7466 + - uid: 8078 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-12.5 + pos: -66.2415,12.5673275 parent: 2 - - uid: 7467 + - uid: 8079 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-14.5 + rot: 1.5707963267948966 rad + pos: -66.575775,12.275879 parent: 2 - - uid: 7468 + - uid: 8080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-16.5 + rot: -1.5707963267948966 rad + pos: -224.83574,-17.749466 parent: 2 - - uid: 7469 + - uid: 8081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-16.5 + pos: -221.24013,-15.596138 parent: 2 - - uid: 7470 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 8082 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,-16.5 + pos: -221.59978,-15.893013 parent: 2 - - uid: 7471 + - uid: 8083 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-16.5 + rot: -1.5707963267948966 rad + pos: -223.15973,-28.900333 parent: 2 - - uid: 7472 + - uid: 8084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-16.5 + pos: -223.40993,-28.415958 parent: 2 - - uid: 7473 + - uid: 8085 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-16.5 + rot: -1.5707963267948966 rad + pos: -217.468,-31.167082 parent: 2 - - uid: 7474 + - uid: 8086 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-16.5 + pos: -226.65149,-30.709469 parent: 2 - - uid: 7475 + - uid: 8087 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-16.5 + pos: -225.30196,-33.65146 parent: 2 - - uid: 7476 + - uid: 8088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-16.5 + pos: -224.83574,-21.313469 parent: 2 - - uid: 7477 + - uid: 8089 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-15.5 + rot: -1.5707963267948966 rad + pos: -224.34937,-21.669868 parent: 2 - - uid: 7478 + - uid: 8090 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-14.5 + pos: -221.23665,-36.527245 parent: 2 - - uid: 7479 + - uid: 8091 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-13.5 + rot: 1.5707963267948966 rad + pos: -218.75021,-39.728737 parent: 2 - - uid: 7480 + - uid: 8092 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-12.5 + rot: 1.5707963267948966 rad + pos: -216.56929,-37.71949 parent: 2 - - uid: 7481 + - uid: 8093 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-11.5 + rot: -1.5707963267948966 rad + pos: -219.43864,-28.919155 parent: 2 - - uid: 7482 + - uid: 8094 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-10.5 + rot: 1.5707963267948966 rad + pos: -220.49971,-32.758423 parent: 2 - - uid: 7483 +- proto: DrinkCogChampBase + entities: + - uid: 8095 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,-9.5 + pos: -173.42519,-11.68274 parent: 2 - - uid: 7484 +- proto: DrinkGrogGlass + entities: + - uid: 8096 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-8.5 + pos: -224.16939,-31.444868 parent: 2 - - uid: 7485 +- proto: DrinkIceCreamGlass + entities: + - uid: 8098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-8.5 + parent: 8097 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkManlyDorfGlass + entities: + - uid: 8104 + components: + - type: Transform + pos: -220.72932,-33.25737 parent: 2 - - uid: 7486 +- proto: DrinkMilkCarton + entities: + - uid: 8105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-8.5 + pos: -112.76338,-10.274266 parent: 2 - - uid: 7487 +- proto: DrinkRootBeerFloatGlass + entities: + - uid: 8106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-8.5 + pos: -56.405487,-5.6580057 parent: 2 - - uid: 7488 + - uid: 8107 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-8.5 + pos: -56.25271,-5.6070795 parent: 2 - - uid: 7489 + - uid: 8108 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-8.5 + pos: -56.160114,-5.7228203 parent: 2 - - uid: 7490 +- proto: DrinkSbitenGlass + entities: + - uid: 8109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-8.5 + pos: -148.05933,4.67548 parent: 2 - - uid: 7491 +- proto: DrinkTeacup + entities: + - uid: 8110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-8.5 + pos: -30.264727,8.636473 parent: 2 - - uid: 7492 + - uid: 8111 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-8.5 + pos: -30.499102,8.448973 parent: 2 - - uid: 7493 + - uid: 8112 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-8.5 + pos: -110.56544,4.7811375 parent: 2 - - uid: 7494 + - uid: 8113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-8.5 + pos: -117.35362,2.3564954 parent: 2 - - uid: 7495 + - uid: 8114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-8.5 + pos: -116.963,2.4502454 parent: 2 - - uid: 7496 +- proto: DrinkTeapot + entities: + - uid: 8115 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-7.5 + pos: -117.4005,2.7314954 parent: 2 - - uid: 7497 + - uid: 8116 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-6.5 + pos: -30.655352,8.761473 parent: 2 - - uid: 7498 +- proto: DrinkVermouthBottleFull + entities: + - uid: 8117 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-4.5 + pos: -165.32047,12.705185 parent: 2 - - uid: 7499 +- proto: DrinkVodkaBottleFull + entities: + - uid: 8118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-3.5 + pos: -56.65869,-5.3837214 parent: 2 - - uid: 7500 + - uid: 8119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-3.5 + pos: -56.366352,-5.212943 parent: 2 - - uid: 7501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 8120 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-3.5 + pos: -66.513275,13.463379 parent: 2 - - uid: 7502 + - uid: 8121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-3.5 + pos: -66.169525,11.432129 parent: 2 - - uid: 7503 +- proto: DrinkVodkaGlass + entities: + - uid: 8122 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-4.5 + pos: -58.679604,-3.4223833 parent: 2 - - uid: 7504 + - uid: 8123 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-2.5 + pos: -84.2241,16.502531 parent: 2 - - uid: 7505 +- proto: EmergencyLight + entities: + - uid: 8124 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-1.5 + pos: -154.5,-2.5 parent: 2 - - uid: 7506 + - uid: 8125 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-0.5 + pos: -158.5,-4.5 parent: 2 - - uid: 7507 + - uid: 8126 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-4.5 + pos: -171.5,-4.5 parent: 2 - - uid: 7508 + - uid: 8127 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-3.5 + pos: -196.5,-2.5 parent: 2 - - uid: 7509 + - uid: 8128 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-2.5 + pos: -186.5,-4.5 parent: 2 - - uid: 7510 + - uid: 8129 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-1.5 + rot: -1.5707963267948966 rad + pos: -194.5,-14.5 parent: 2 - - uid: 7511 + - uid: 8130 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-0.5 + pos: -186.5,-15.5 parent: 2 - - uid: 7512 + - uid: 8131 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,0.5 + pos: -156.5,-16.5 parent: 2 - - uid: 7513 + - uid: 8132 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,1.5 + pos: -156.5,-8.5 parent: 2 - - uid: 7514 + - uid: 8133 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,2.5 + rot: -1.5707963267948966 rad + pos: -167.5,-10.5 parent: 2 - - uid: 7515 + - uid: 8134 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,3.5 + pos: -162.5,5.5 parent: 2 - - uid: 7516 + - uid: 8135 components: - type: Transform - pos: -12.5,4.5 + pos: -155.5,11.5 parent: 2 - - uid: 7517 + - uid: 8136 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,5.5 + pos: -205.5,3.5 parent: 2 - - uid: 7518 + - uid: 8137 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,5.5 + pos: -205.5,12.5 parent: 2 - - uid: 7519 + - uid: 8138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,5.5 + rot: 1.5707963267948966 rad + pos: -214.5,-14.5 parent: 2 - - uid: 7520 + - uid: 8139 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,5.5 + pos: -138.5,-1.5 parent: 2 - - uid: 7521 + - uid: 8140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,5.5 + rot: 3.141592653589793 rad + pos: -131.5,-6.5 parent: 2 - - uid: 7522 + - uid: 8141 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,5.5 + pos: -122.5,-3.5 parent: 2 - - uid: 7523 + - uid: 8142 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,5.5 + pos: -110.5,-3.5 parent: 2 - - uid: 7524 + - uid: 8143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,5.5 + pos: -116.5,4.5 parent: 2 - - uid: 7525 + - uid: 8144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,5.5 + rot: 3.141592653589793 rad + pos: -114.5,-12.5 parent: 2 - - uid: 7526 + - uid: 8145 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,5.5 + pos: -103.5,-12.5 parent: 2 - - uid: 7527 + - uid: 8146 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,4.5 + pos: -96.5,-2.5 parent: 2 - - uid: 7528 + - uid: 8147 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,3.5 + rot: -1.5707963267948966 rad + pos: -101.5,8.5 parent: 2 - - uid: 7529 + - uid: 8148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,-27.5 + pos: -101.5,19.5 parent: 2 - - uid: 7530 + - uid: 8149 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,-27.5 + rot: -1.5707963267948966 rad + pos: -83.5,-10.5 parent: 2 - - uid: 7531 + - uid: 8150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,-27.5 + pos: -74.5,-14.5 parent: 2 - - uid: 7532 + - uid: 8151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,-27.5 + rot: 3.141592653589793 rad + pos: -56.5,-16.5 parent: 2 - - uid: 7533 + - uid: 8152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-26.5 + rot: -1.5707963267948966 rad + pos: -41.5,-19.5 parent: 2 - - uid: 7534 + - uid: 8153 components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,-26.5 + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-2.5 parent: 2 - - uid: 7535 + - uid: 8154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,-26.5 + rot: -1.5707963267948966 rad + pos: -43.5,3.5 parent: 2 - - uid: 7536 + - uid: 8155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-26.5 + pos: -54.5,9.5 parent: 2 - - uid: 7537 + - uid: 8156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,-26.5 + rot: -1.5707963267948966 rad + pos: -53.5,3.5 parent: 2 - - uid: 7538 + - uid: 8157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,-26.5 + pos: -58.5,-0.5 parent: 2 - - uid: 7539 + - uid: 8158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,-26.5 + rot: 3.141592653589793 rad + pos: -59.5,-7.5 parent: 2 - - uid: 7540 + - uid: 8159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-26.5 + rot: -1.5707963267948966 rad + pos: -64.5,-4.5 parent: 2 - - uid: 7541 + - uid: 8160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,-26.5 + rot: -1.5707963267948966 rad + pos: -71.5,-2.5 parent: 2 - - uid: 7542 + - uid: 8161 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,-17.5 + rot: -1.5707963267948966 rad + pos: -83.5,3.5 parent: 2 - - uid: 7543 + - uid: 8162 components: - type: Transform - pos: -196.5,13.5 + rot: 3.141592653589793 rad + pos: -75.5,7.5 parent: 2 - - uid: 7544 + - uid: 8163 components: - type: Transform - pos: -196.5,12.5 + pos: -69.5,9.5 parent: 2 - - uid: 7545 + - uid: 8164 components: - type: Transform - pos: -196.5,11.5 + rot: 1.5707963267948966 rad + pos: -61.5,18.5 parent: 2 - - uid: 7546 + - uid: 8165 components: - type: Transform - pos: -196.5,7.5 + pos: -69.5,24.5 parent: 2 - - uid: 7547 + - uid: 8166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -194.5,4.5 + rot: 1.5707963267948966 rad + pos: -78.5,20.5 parent: 2 - - uid: 7548 + - uid: 8167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -193.5,4.5 + pos: -31.5,-0.5 parent: 2 - - uid: 7549 + - uid: 8168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -192.5,4.5 + rot: 1.5707963267948966 rad + pos: -40.5,9.5 parent: 2 - - uid: 7550 + - uid: 8169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -191.5,4.5 + pos: -26.5,5.5 parent: 2 - - uid: 7551 + - uid: 8170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -190.5,4.5 + pos: -15.5,5.5 parent: 2 - - uid: 7552 + - uid: 8171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -189.5,4.5 + rot: 3.141592653589793 rad + pos: -19.5,-1.5 parent: 2 - - uid: 7553 + - uid: 8172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -188.5,4.5 + pos: -22.5,-7.5 parent: 2 - - uid: 7554 + - uid: 8173 components: - type: Transform - rot: 3.141592653589793 rad - pos: -187.5,3.5 + rot: 1.5707963267948966 rad + pos: -27.5,-13.5 parent: 2 - - uid: 7555 + - uid: 8174 components: - type: Transform - rot: 3.141592653589793 rad - pos: -187.5,2.5 + pos: -6.5,-14.5 parent: 2 - - uid: 7556 + - uid: 8175 components: - type: Transform rot: 3.141592653589793 rad - pos: -187.5,1.5 + pos: -12.5,-12.5 parent: 2 - - uid: 7557 + - uid: 8176 components: - type: Transform rot: 3.141592653589793 rad - pos: -187.5,0.5 + pos: -8.5,-12.5 parent: 2 - - uid: 7558 + - uid: 8177 components: - type: Transform - rot: 3.141592653589793 rad - pos: -187.5,-0.5 + pos: -6.5,0.5 parent: 2 - - uid: 7559 + - uid: 8178 components: - type: Transform - rot: 3.141592653589793 rad - pos: -187.5,-1.5 + pos: -8.5,4.5 parent: 2 - - uid: 7560 + - uid: 8179 components: - type: Transform rot: 3.141592653589793 rad - pos: -187.5,-2.5 + pos: 1.5,-7.5 parent: 2 - - uid: 7561 + - uid: 8180 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -197.5,17.5 + pos: 1.5,0.5 parent: 2 - - uid: 7562 + - uid: 8181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -181.5,-13.5 + pos: -19.5,10.5 parent: 2 - - uid: 7563 + - uid: 8182 components: - type: Transform rot: -1.5707963267948966 rad - pos: -180.5,-13.5 + pos: -27.5,8.5 parent: 2 - - uid: 7564 + - uid: 8183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -179.5,-13.5 + pos: -31.5,-8.5 parent: 2 - - uid: 7565 + - uid: 8184 components: - type: Transform - rot: 3.141592653589793 rad - pos: -182.5,-14.5 + rot: 1.5707963267948966 rad + pos: -174.5,10.5 parent: 2 - - uid: 7566 + - uid: 8185 components: - type: Transform - rot: 3.141592653589793 rad - pos: -182.5,-15.5 + rot: -1.5707963267948966 rad + pos: -168.5,12.5 parent: 2 - - uid: 7567 + - uid: 8186 components: - type: Transform - rot: 3.141592653589793 rad - pos: -178.5,-12.5 + pos: -166.5,5.5 parent: 2 - - uid: 7568 + - uid: 8187 components: - type: Transform rot: 3.141592653589793 rad - pos: -178.5,-11.5 + pos: -156.5,3.5 parent: 2 - - uid: 7569 + - uid: 8188 components: - type: Transform rot: 3.141592653589793 rad - pos: -178.5,-10.5 + pos: -162.5,3.5 parent: 2 - - uid: 7570 + - uid: 8189 components: - type: Transform - rot: 3.141592653589793 rad - pos: -178.5,-9.5 + rot: 1.5707963267948966 rad + pos: -173.5,4.5 parent: 2 - - uid: 7571 + - uid: 8190 components: - type: Transform - rot: 3.141592653589793 rad - pos: -178.5,-8.5 + rot: -1.5707963267948966 rad + pos: -21.5,-13.5 parent: 2 - - uid: 7572 + - uid: 8191 components: - type: Transform - rot: 3.141592653589793 rad - pos: -178.5,-7.5 + pos: -175.5,3.5 parent: 2 - - uid: 7573 + - uid: 8192 components: - type: Transform rot: 3.141592653589793 rad - pos: -178.5,-6.5 + pos: -179.5,-0.5 parent: 2 - - uid: 7574 + - uid: 8193 components: - type: Transform - rot: 3.141592653589793 rad - pos: -178.5,-5.5 + rot: 1.5707963267948966 rad + pos: -218.5,-3.5 parent: 2 - - uid: 7575 + - uid: 8194 components: - type: Transform - rot: 3.141592653589793 rad - pos: -178.5,-4.5 + pos: -183.5,-22.5 parent: 2 - - uid: 7576 + - uid: 8195 components: - type: Transform rot: 1.5707963267948966 rad - pos: -129.5,-17.5 + pos: -185.5,-26.5 parent: 2 - - uid: 7577 + - uid: 8196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -128.5,-17.5 + pos: -198.5,10.5 parent: 2 - - uid: 7578 + - uid: 8197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -127.5,-17.5 + pos: -194.5,4.5 parent: 2 - - uid: 7579 + - uid: 8198 components: - type: Transform - pos: -195.5,6.5 + rot: 3.141592653589793 rad + pos: -194.5,12.5 parent: 2 - - uid: 7580 +- proto: EmergencyMedipen + entities: + - uid: 6965 components: - type: Transform - pos: -195.5,5.5 - parent: 2 - - uid: 7581 + parent: 6961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8199 components: - type: Transform - pos: -195.5,7.5 + pos: -179.48682,0.43268675 parent: 2 - - uid: 7582 + - uid: 8200 components: - type: Transform - rot: 3.141592653589793 rad - pos: -166.5,-4.5 + pos: -179.36182,0.58893675 parent: 2 - - uid: 7583 +- proto: EmergencyOxygenTankFilled + entities: + - uid: 6966 components: - type: Transform - pos: -195.5,8.5 - parent: 2 - - uid: 7584 + parent: 6961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6967 components: - type: Transform - pos: -195.5,9.5 - parent: 2 - - uid: 7585 + parent: 6961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -158.5,4.5 - parent: 2 - - uid: 7586 + parent: 6961 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Emitter + entities: + - uid: 8201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -159.5,4.5 + pos: -78.5,-0.5 parent: 2 - - uid: 7587 + - uid: 8202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -160.5,4.5 + rot: 3.141592653589793 rad + pos: -78.5,-6.5 parent: 2 - - uid: 7588 + - uid: 8203 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -161.5,4.5 + rot: 1.5707963267948966 rad + pos: -81.5,-3.5 parent: 2 - - uid: 7589 +- proto: EncryptionKeyCargo + entities: + - uid: 8205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -162.5,4.5 - parent: 2 - - uid: 7590 + parent: 8204 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommand + entities: + - uid: 8207 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -163.5,4.5 - parent: 2 - - uid: 7591 + parent: 8206 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommon + entities: + - uid: 17 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -164.5,4.5 - parent: 2 - - uid: 7592 + parent: 16 + - type: Physics + canCollide: False + - uid: 8209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -165.5,4.5 - parent: 2 - - uid: 7593 + parent: 8208 + - type: Physics + canCollide: False +- proto: EncryptionKeyEngineering + entities: + - uid: 8211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -166.5,4.5 - parent: 2 - - uid: 7594 + parent: 8210 + - type: Physics + canCollide: False +- proto: EncryptionKeyMedical + entities: + - uid: 8213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -167.5,4.5 - parent: 2 - - uid: 7595 + parent: 8212 + - type: Physics + canCollide: False +- proto: EncryptionKeyMedicalScience + entities: + - uid: 8214 components: - type: Transform rot: -1.5707963267948966 rad - pos: -168.5,4.5 + pos: 2.5665174,-7.32084 parent: 2 - - uid: 7596 + - uid: 8215 components: - type: Transform rot: -1.5707963267948966 rad - pos: -169.5,4.5 + pos: 2.4883924,-7.492715 parent: 2 - - uid: 7597 +- proto: EncryptionKeyScience + entities: + - uid: 8217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -170.5,4.5 - parent: 2 - - uid: 7598 + parent: 8216 + - type: Physics + canCollide: False +- proto: EncryptionKeySecurity + entities: + - uid: 8219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -171.5,4.5 - parent: 2 - - uid: 7599 + parent: 8218 + - type: Physics + canCollide: False +- proto: EncryptionKeyService + entities: + - uid: 8221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -172.5,4.5 - parent: 2 - - uid: 7600 + parent: 8220 + - type: Physics + canCollide: False +- proto: EpinephrineChemistryBottle + entities: + - uid: 8222 components: - type: Transform - rot: 3.141592653589793 rad - pos: -173.5,5.5 + pos: -186.48636,-18.218613 parent: 2 - - uid: 7601 + - uid: 8223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -140.5,-2.5 + pos: -186.65823,-18.421738 parent: 2 -- proto: DisposalRouterFlipped - entities: - - uid: 7602 + - uid: 8224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,-3.5 + pos: -178.62744,3.6045618 parent: 2 -- proto: DisposalTrunk +- proto: ExosuitFabricator entities: - - uid: 7603 + - uid: 8225 components: - type: Transform - pos: -103.5,-8.5 + pos: -196.5,1.5 parent: 2 - - uid: 7604 +- proto: ExtendedEmergencyOxygenTank + entities: + - uid: 8226 components: - type: Transform - pos: -120.5,-1.5 + rot: -1.5707963267948966 rad + pos: -193.4892,5.412004 parent: 2 - - uid: 7605 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 8227 components: - type: Transform - pos: -126.5,-0.5 + rot: -1.5707963267948966 rad + pos: -28.5,-7.5 parent: 2 - - uid: 7606 + - uid: 8228 components: - type: Transform - rot: 3.141592653589793 rad - pos: -149.5,-5.5 + rot: -1.5707963267948966 rad + pos: -211.5,-5.5 parent: 2 - - uid: 7607 + - uid: 8229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -161.5,7.5 + rot: -1.5707963267948966 rad + pos: -184.5,-1.5 parent: 2 - - uid: 7608 + - uid: 8230 components: - type: Transform - pos: -160.5,-6.5 + rot: -1.5707963267948966 rad + pos: -165.5,-5.5 parent: 2 - - uid: 7609 + - uid: 8231 components: - type: Transform - pos: -196.5,-2.5 + rot: -1.5707963267948966 rad + pos: -130.5,-0.5 parent: 2 - - uid: 7610 + - uid: 8232 components: - type: Transform - pos: -181.5,-2.5 + rot: -1.5707963267948966 rad + pos: -109.5,-1.5 parent: 2 - - uid: 7611 + - uid: 8233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -103.5,4.5 + rot: -1.5707963267948966 rad + pos: -82.5,3.5 parent: 2 - - uid: 7612 + - uid: 8234 components: - type: Transform - pos: -68.5,-23.5 + pos: -114.5,-14.5 parent: 2 - - uid: 7613 + - uid: 8235 components: - type: Transform - pos: -80.5,9.5 + rot: -1.5707963267948966 rad + pos: -48.5,-16.5 parent: 2 - - uid: 7614 + - uid: 8236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,14.5 + rot: -1.5707963267948966 rad + pos: -65.5,-21.5 parent: 2 - - uid: 7615 + - uid: 8237 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,5.5 + rot: -1.5707963267948966 rad + pos: -86.5,-11.5 parent: 2 - - uid: 7616 + - uid: 8238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,1.5 + rot: -1.5707963267948966 rad + pos: -100.5,11.5 parent: 2 - - uid: 7617 + - uid: 8239 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-12.5 + rot: -1.5707963267948966 rad + pos: -76.5,10.5 parent: 2 - - uid: 7618 + - uid: 8240 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-11.5 + pos: -52.5,18.5 parent: 2 - - uid: 7619 + - uid: 8241 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-16.5 + pos: -48.5,6.5 parent: 2 - - uid: 7620 + - uid: 8242 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-5.5 + rot: -1.5707963267948966 rad + pos: -40.5,-7.5 parent: 2 - - uid: 7621 + - uid: 8243 components: - type: Transform - pos: -10.5,0.5 + rot: -1.5707963267948966 rad + pos: -15.5,6.5 parent: 2 - - uid: 7622 + - uid: 8244 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,2.5 + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 parent: 2 - - uid: 7623 + - uid: 8245 components: - type: Transform - pos: -68.5,-25.5 + pos: -63.5,-5.5 parent: 2 - - uid: 7624 + - uid: 8246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,-27.5 + pos: -74.5,-4.5 parent: 2 - - uid: 7625 + - uid: 8247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -198.5,17.5 + pos: -56.5,0.5 parent: 2 - - uid: 7626 +- proto: FancyTableSpawner + entities: + - uid: 8248 components: - type: Transform - rot: 3.141592653589793 rad - pos: -182.5,-16.5 + pos: -94.5,-10.5 parent: 2 - - uid: 7627 +- proto: FaxMachineBase + entities: + - uid: 8249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -130.5,-17.5 + pos: -156.5,-24.5 parent: 2 - - uid: 7628 + - type: FaxMachine + name: Перма + destinationAddress: Перма + - uid: 8250 components: - type: Transform - rot: 3.141592653589793 rad - pos: -166.5,-5.5 + pos: -58.5,18.5 parent: 2 - - uid: 7629 + - type: FaxMachine + name: Атмос + destinationAddress: Атмос + - uid: 8251 components: - type: Transform - pos: -173.5,6.5 + pos: -19.5,0.5 parent: 2 - - uid: 7630 + - type: FaxMachine + name: Глава Персонала + destinationAddress: Глава Персонала + - uid: 8252 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,-13.5 + pos: 1.5,-3.5 parent: 2 -- proto: DisposalUnit - entities: - - uid: 7631 + - type: FaxMachine + name: Мостик + destinationAddress: Мостик + - uid: 8253 components: - type: Transform - pos: -43.5,-12.5 + pos: -68.5,-18.5 parent: 2 - - uid: 7632 + - type: FaxMachine + name: Квартирмейстер + destinationAddress: Квартирмейстер + - uid: 8254 components: - type: Transform - pos: -29.5,-11.5 + pos: -8.5,-9.5 parent: 2 - - uid: 7633 + - type: FaxMachine + name: Капитан + destinationAddress: Капитан + - uid: 8255 components: - type: Transform - pos: -25.5,-16.5 + pos: -61.5,3.5 parent: 2 - - uid: 7634 + - type: FaxMachine + name: Старший Инженер + destinationAddress: Старший Инженер + - uid: 8256 components: - type: Transform - pos: -16.5,-5.5 + pos: -144.5,3.5 parent: 2 - - uid: 7635 + - type: FaxMachine + name: Юриспруденция + destinationAddress: Юриспруденция + - uid: 8257 components: - type: Transform - pos: -10.5,0.5 + pos: -163.5,8.5 parent: 2 - - uid: 7636 + - type: FaxMachine + name: Смотряшка + destinationAddress: Смотряшка + - uid: 8258 components: - type: Transform - pos: -23.5,2.5 + pos: -156.5,16.5 parent: 2 - - uid: 7637 + - type: FaxMachine + name: Глава Охранной Службы + destinationAddress: Глава Охранной Службы + - uid: 8259 components: - type: Transform - pos: -68.5,-23.5 + pos: -47.5,-19.5 parent: 2 - - uid: 7638 + - type: FaxMachine + name: Библиотека + destinationAddress: Библиотека +- proto: FenceMetalGate + entities: + - uid: 8260 components: - type: Transform - pos: -103.5,4.5 + pos: -96.5,-9.5 parent: 2 - - uid: 7639 +- proto: filingCabinet + entities: + - uid: 8261 components: - type: Transform - pos: -103.5,-8.5 + pos: -223.5,-25.5 parent: 2 - - uid: 7640 +- proto: filingCabinetDrawer + entities: + - uid: 8262 components: - type: Transform - pos: -120.5,-1.5 + pos: -16.5,-0.5 parent: 2 - - uid: 7641 +- proto: filingCabinetDrawerRandom + entities: + - uid: 6859 components: - type: Transform - pos: -126.5,-0.5 + pos: -74.5,-21.5 parent: 2 - - uid: 7642 + - uid: 8263 components: - type: Transform - pos: -149.5,-5.5 + pos: -18.5,-4.5 parent: 2 - - uid: 7643 + - uid: 8264 components: - type: Transform - pos: -160.5,-6.5 + pos: 4.5,-4.5 parent: 2 - - uid: 7644 + - uid: 8265 components: - type: Transform - pos: -161.5,7.5 + pos: -218.5,-25.5 parent: 2 - - uid: 7645 +- proto: filingCabinetRandom + entities: + - uid: 8266 components: - type: Transform - pos: -181.5,-2.5 + pos: 5.5,-6.5 parent: 2 - - uid: 7646 +- proto: FireAlarm + entities: + - uid: 8267 components: - type: Transform - pos: -196.5,-2.5 + rot: 1.5707963267948966 rad + pos: -200.5,13.5 parent: 2 - - uid: 7647 + - uid: 8268 components: - type: Transform - pos: -57.5,5.5 + rot: 3.141592653589793 rad + pos: -191.5,14.5 parent: 2 - - uid: 7648 + - uid: 8269 components: - type: Transform - pos: -61.5,14.5 + rot: 1.5707963267948966 rad + pos: -200.5,3.5 parent: 2 - - uid: 7649 +- proto: FireAxeCabinetFilled + entities: + - uid: 8270 components: - type: Transform - pos: -47.5,1.5 + rot: 1.5707963267948966 rad + pos: -62.5,18.5 parent: 2 - - uid: 7650 + - uid: 8271 components: - type: Transform - pos: -80.5,9.5 + pos: -3.5,0.5 parent: 2 - - uid: 7651 +- proto: Firelock + entities: + - uid: 8272 components: - type: Transform - pos: -83.5,-27.5 + pos: -193.5,14.5 parent: 2 - - uid: 7652 + - type: DeviceNetwork + deviceLists: + - 76 + - uid: 8273 components: - type: Transform - pos: -68.5,-25.5 + pos: -200.5,4.5 parent: 2 - - uid: 7653 + - type: DeviceNetwork + deviceLists: + - 76 + - uid: 8274 components: - type: Transform - pos: -198.5,17.5 + pos: -197.5,14.5 parent: 2 - - uid: 7654 + - type: DeviceNetwork + deviceLists: + - 76 + - uid: 8275 components: - type: Transform - pos: -182.5,-16.5 + pos: -191.5,8.5 parent: 2 - - uid: 7655 + - type: DeviceNetwork + deviceLists: + - 76 + - uid: 8276 components: - type: Transform - pos: -166.5,-5.5 + pos: -121.5,-4.5 parent: 2 - - uid: 7656 + - type: DeviceNetwork + deviceLists: + - 50 + - 51 + - uid: 8277 components: - type: Transform - pos: -173.5,6.5 + pos: -121.5,-2.5 parent: 2 - - uid: 7657 + - type: DeviceNetwork + deviceLists: + - 50 + - 51 + - uid: 8278 components: - type: Transform - pos: -113.5,-13.5 + pos: -154.5,12.5 parent: 2 -- proto: DisposalYJunction - entities: - - uid: 7658 + - type: DeviceNetwork + deviceLists: + - 56 + - uid: 8279 components: - type: Transform - pos: -98.5,-15.5 + pos: -161.5,10.5 parent: 2 - - uid: 7659 + - type: DeviceNetwork + deviceLists: + - 56 + - uid: 8280 components: - type: Transform - pos: -13.5,-3.5 + pos: -170.5,7.5 parent: 2 -- proto: DogBed - entities: - - uid: 7660 + - type: DeviceNetwork + deviceLists: + - 56 + - uid: 8281 components: - type: Transform - pos: -66.5,-20.5 + pos: -171.5,7.5 parent: 2 - - uid: 7661 + - type: DeviceNetwork + deviceLists: + - 56 + - uid: 8282 components: - type: Transform - pos: -7.5,-12.5 + pos: -174.5,5.5 parent: 2 - - uid: 7662 + - type: DeviceNetwork + deviceLists: + - 55 + - uid: 8283 components: - type: Transform - pos: -21.5,-0.5 + pos: -212.5,-5.5 parent: 2 - - uid: 7663 + - type: DeviceNetwork + deviceLists: + - 73 + - uid: 8284 components: - type: Transform - pos: -186.5,-8.5 + pos: -214.5,-5.5 parent: 2 - - uid: 7664 + - type: DeviceNetwork + deviceLists: + - 73 + - uid: 8285 components: - type: Transform - pos: -203.5,21.5 + pos: -127.5,-8.5 parent: 2 - - uid: 7665 + - type: DeviceNetwork + deviceLists: + - 51 + - uid: 8286 components: - type: Transform - pos: -166.5,9.5 + pos: -123.5,-6.5 parent: 2 - - uid: 7666 + - type: DeviceNetwork + deviceLists: + - 51 + - uid: 8287 components: - type: Transform - pos: -157.5,17.5 + rot: 1.5707963267948966 rad + pos: -167.5,10.5 parent: 2 - - uid: 7667 + - type: DeviceNetwork + deviceLists: + - 56 + - uid: 8288 components: - type: Transform - pos: -182.5,-23.5 + pos: -111.5,7.5 parent: 2 - - uid: 7668 + - type: DeviceNetwork + deviceLists: + - 50 + - uid: 8289 components: - type: Transform - pos: -149.5,2.5 + rot: -1.5707963267948966 rad + pos: -225.5,-15.5 parent: 2 -- proto: DonkpocketBoxSpawner - entities: - - uid: 7669 + - uid: 8290 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-1.5 + rot: -1.5707963267948966 rad + pos: -219.5,-14.5 parent: 2 - - uid: 7670 + - uid: 8291 components: - type: Transform - pos: -163.5,-6.5 + rot: -1.5707963267948966 rad + pos: -218.5,-19.5 parent: 2 - - uid: 7671 + - uid: 8292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -198.5,13.5 + rot: -1.5707963267948966 rad + pos: -219.5,-27.5 parent: 2 - - uid: 7672 + - uid: 8293 components: - type: Transform - pos: -165.5,-17.5 + rot: -1.5707963267948966 rad + pos: -219.5,-21.5 parent: 2 -- proto: DoorElectronics - entities: - - uid: 7673 + - uid: 8294 components: - type: Transform - pos: -54.72564,-5.373712 + rot: -1.5707963267948966 rad + pos: -217.5,-29.5 parent: 2 - - uid: 7674 + - uid: 8295 components: - type: Transform - pos: -54.428764,-5.342462 + rot: -1.5707963267948966 rad + pos: -216.5,-32.5 parent: 2 -- proto: DoubleEmergencyOxygenTankFilled - entities: - - uid: 34 + - uid: 8296 components: - type: Transform - parent: 26 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 35 + rot: -1.5707963267948966 rad + pos: -228.5,-32.5 + parent: 2 + - uid: 8297 components: - type: Transform - parent: 26 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6714 + rot: -1.5707963267948966 rad + pos: -228.5,-24.5 + parent: 2 + - uid: 8298 components: - type: Transform - parent: 6707 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 6715 + rot: -1.5707963267948966 rad + pos: -227.5,-28.5 + parent: 2 + - uid: 8299 components: - type: Transform - parent: 6707 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 7675 + rot: -1.5707963267948966 rad + pos: -227.5,-20.5 + parent: 2 + - uid: 8300 components: - type: Transform - pos: -59.61786,19.656681 + rot: -1.5707963267948966 rad + pos: -221.5,-40.5 parent: 2 - - uid: 7676 + - uid: 8301 components: - type: Transform - pos: -81.61933,-31.527718 + pos: -200.5,12.5 parent: 2 - - uid: 7677 + - type: DeviceNetwork + deviceLists: + - 76 +- proto: FirelockEdge + entities: + - uid: 8302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.602835,4.4599447 + rot: 3.141592653589793 rad + pos: -196.5,11.5 parent: 2 -- proto: Dresser - entities: - - uid: 872 + - uid: 8303 components: - type: Transform - pos: -140.5,6.5 + rot: -1.5707963267948966 rad + pos: -194.5,8.5 parent: 2 - - type: Storage - storedItems: - 878: - position: 0,0 - _rotation: South - 877: - position: 2,0 - _rotation: South - 873: - position: 3,0 - _rotation: South - 874: - position: 4,0 - _rotation: South - 876: - position: 5,0 - _rotation: South - 875: - position: 6,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 878 - - 877 - - 873 - - 874 - - 876 - - 875 - - uid: 6697 + - type: DeviceNetwork + deviceLists: + - 76 + - uid: 8304 components: - type: Transform - pos: -113.5,-16.5 + pos: -196.5,5.5 parent: 2 - - type: Storage - storedItems: - 6699: - position: 2,0 - _rotation: East - 6700: - position: 2,2 - _rotation: East - 6702: - position: 0,4 - _rotation: South - 6698: - position: 2,4 - _rotation: East - 6703: - position: 0,0 - _rotation: South - 6704: - position: 0,2 - _rotation: South - 6701: - position: 7,1 - _rotation: South - 6705: - position: 7,3 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 6703 - - 6704 - - 6702 - - 6699 - - 6700 - - 6698 - - 6701 - - 6705 - - uid: 6889 + - type: DeviceNetwork + deviceLists: + - 76 + - uid: 8305 components: - type: Transform - pos: -154.5,-23.5 + rot: 3.141592653589793 rad + pos: -159.5,-1.5 parent: 2 - - type: Storage - storedItems: - 6890: - position: 2,3 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 6890 - - uid: 7678 + - type: DeviceNetwork + deviceLists: + - 55 + - uid: 8306 components: - type: Transform - pos: -164.5,-12.5 + rot: 3.141592653589793 rad + pos: -160.5,-1.5 parent: 2 - - uid: 7679 + - type: DeviceNetwork + deviceLists: + - 55 + - uid: 8307 components: - type: Transform - pos: -161.5,-12.5 + rot: -1.5707963267948966 rad + pos: -158.5,-0.5 parent: 2 - - uid: 7680 + - type: DeviceNetwork + deviceLists: + - 55 + - uid: 8308 components: - type: Transform - pos: -156.5,-23.5 + rot: -1.5707963267948966 rad + pos: -158.5,0.5 parent: 2 - - type: Storage - storedItems: - 7681: - position: 0,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 7681 -- proto: DresserCaptainFilled - entities: - - uid: 7682 + - type: DeviceNetwork + deviceLists: + - 55 + - uid: 8309 components: - type: Transform - pos: -3.5,-12.5 + pos: -114.5,2.5 parent: 2 -- proto: DresserChiefEngineerFilled - entities: - - uid: 7683 + - type: DeviceNetwork + deviceLists: + - 50 + - uid: 8310 components: - type: Transform - pos: -62.5,5.5 + pos: -115.5,2.5 parent: 2 -- proto: DresserChiefMedicalOfficerFilled - entities: - - uid: 7684 + - type: DeviceNetwork + deviceLists: + - 50 + - uid: 8311 components: - type: Transform - pos: -190.5,-9.5 + pos: -116.5,2.5 parent: 2 -- proto: DresserFilled - entities: - - uid: 7685 + - type: DeviceNetwork + deviceLists: + - 50 + - uid: 8312 components: - type: Transform - pos: -99.5,8.5 + pos: -117.5,2.5 parent: 2 - - uid: 7686 + - type: DeviceNetwork + deviceLists: + - 50 + - uid: 8313 components: - type: Transform - pos: -105.5,8.5 + pos: -118.5,2.5 parent: 2 - - uid: 7687 + - type: DeviceNetwork + deviceLists: + - 50 + - uid: 8314 components: - type: Transform - pos: -105.5,4.5 + pos: -119.5,2.5 parent: 2 - - uid: 7688 + - type: DeviceNetwork + deviceLists: + - 50 + - uid: 8315 components: - type: Transform - pos: -101.5,22.5 + pos: -120.5,2.5 parent: 2 -- proto: DresserHeadOfPersonnelFilled - entities: - - uid: 7689 + - type: DeviceNetwork + deviceLists: + - 50 + - uid: 8316 components: - type: Transform - pos: -21.5,-5.5 + rot: 3.141592653589793 rad + pos: -164.5,6.5 parent: 2 -- proto: DresserHeadOfSecurityFilled + - type: DeviceNetwork + deviceLists: + - 55 + - 56 +- proto: FirelockElectronics entities: - - uid: 7690 + - uid: 8317 components: - type: Transform - pos: -159.5,14.5 + pos: -54.366264,-5.717462 parent: 2 -- proto: DresserQuarterMasterFilled - entities: - - uid: 7691 + - uid: 8318 components: - type: Transform - pos: -68.5,-20.5 + pos: -54.710014,-5.701837 parent: 2 -- proto: DresserResearchDirectorFilled +- proto: FirelockGlass entities: - - uid: 7692 + - uid: 8319 components: - type: Transform - pos: -202.5,18.5 + pos: -102.5,-1.5 parent: 2 -- proto: DresserWardenFilled - entities: - - uid: 7693 + - type: DeviceNetwork + deviceLists: + - 47 + - uid: 8320 components: - type: Transform - pos: -166.5,12.5 + pos: -100.5,-5.5 parent: 2 -- proto: DrinkBeepskySmashGlass - entities: - - uid: 7694 + - type: DeviceNetwork + deviceLists: + - 47 + - uid: 8321 components: - type: Transform - pos: -173.15407,-13.396917 + rot: 3.141592653589793 rad + pos: -155.5,-1.5 parent: 2 -- proto: DrinkBeerBottleFull - entities: - - uid: 7695 + - type: DeviceNetwork + deviceLists: + - 55 + - uid: 8322 components: - type: Transform - pos: -97.22396,-24.489 + rot: 3.141592653589793 rad + pos: -157.5,-1.5 parent: 2 - - uid: 7696 + - type: DeviceNetwork + deviceLists: + - 55 + - uid: 8323 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.56771,-24.192125 + rot: 3.141592653589793 rad + pos: -157.5,-5.5 parent: 2 - - uid: 7697 + - type: DeviceNetwork + deviceLists: + - 54 + - uid: 8324 components: - type: Transform - pos: -59.60121,3.6084719 + rot: 3.141592653589793 rad + pos: -155.5,-5.5 parent: 2 - - uid: 7698 + - type: DeviceNetwork + deviceLists: + - 54 + - uid: 8325 components: - type: Transform - pos: -59.304337,3.7803469 + rot: 3.141592653589793 rad + pos: -155.5,2.5 parent: 2 -- proto: DrinkBeerCan - entities: - - uid: 7699 + - type: DeviceNetwork + deviceLists: + - 55 + - uid: 8326 components: - type: Transform - pos: -115.14542,4.6248527 + rot: 3.141592653589793 rad + pos: -157.5,2.5 parent: 2 - - uid: 17010 + - type: DeviceNetwork + deviceLists: + - 55 + - uid: 8327 components: - type: Transform rot: -1.5707963267948966 rad - pos: -114.55216,4.4315057 + pos: -158.5,6.5 parent: 2 -- proto: DrinkBottleBeer - entities: - - uid: 7700 + - type: DeviceNetwork + deviceLists: + - 55 + - 56 + - uid: 8328 components: - type: Transform - pos: -66.2415,12.5673275 + pos: -50.5,4.5 parent: 2 - - uid: 7701 + - type: DeviceNetwork + deviceLists: + - 40 + - uid: 8329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.575775,12.275879 + pos: -49.5,4.5 parent: 2 -- proto: DrinkCogChampBase - entities: - - uid: 7702 + - type: DeviceNetwork + deviceLists: + - 40 + - uid: 8330 components: - type: Transform - rot: 3.141592653589793 rad - pos: -173.42519,-11.68274 + pos: -60.5,1.5 parent: 2 -- proto: DrinkIceCreamGlass - entities: - - uid: 7704 + - type: DeviceNetwork + deviceLists: + - 42 + - uid: 8331 components: - type: Transform - parent: 7703 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: DrinkMilkCarton - entities: - - uid: 7710 + pos: -71.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 46 + - uid: 8332 components: - type: Transform - pos: -112.76338,-10.274266 + pos: -27.5,-6.5 parent: 2 -- proto: DrinkRootBeerFloatGlass - entities: - - uid: 7711 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 8333 components: - type: Transform - pos: -56.405487,-5.6580057 + rot: -1.5707963267948966 rad + pos: -85.5,-12.5 parent: 2 - - uid: 7712 + - type: DeviceNetwork + deviceLists: + - 46 + - 72 + - uid: 8334 components: - type: Transform - pos: -56.25271,-5.6070795 + pos: -84.5,-12.5 parent: 2 - - uid: 7713 + - type: DeviceNetwork + deviceLists: + - 46 + - 72 + - uid: 8335 components: - type: Transform - pos: -56.160114,-5.7228203 + pos: -83.5,-12.5 parent: 2 -- proto: DrinkSbitenGlass - entities: - - uid: 7714 + - type: DeviceNetwork + deviceLists: + - 46 + - 72 + - uid: 8336 components: - type: Transform - pos: -148.05933,4.67548 + pos: -81.5,-14.5 parent: 2 -- proto: DrinkTeacup - entities: - - uid: 7715 + - type: DeviceNetwork + deviceLists: + - 46 + - uid: 8337 components: - type: Transform - pos: -30.264727,8.636473 + pos: -81.5,-15.5 parent: 2 - - uid: 7716 + - type: DeviceNetwork + deviceLists: + - 46 + - uid: 8338 components: - type: Transform - pos: -30.499102,8.448973 + pos: -81.5,-16.5 parent: 2 - - uid: 7717 + - type: DeviceNetwork + deviceLists: + - 46 + - uid: 8339 components: - type: Transform - pos: -110.56544,4.7811375 + pos: -15.5,-7.5 parent: 2 - - uid: 7718 + - type: DeviceNetwork + deviceLists: + - 69 + - uid: 8340 components: - type: Transform - pos: -117.35362,2.3564954 + pos: -12.5,2.5 parent: 2 - - uid: 7719 + - type: DeviceNetwork + deviceLists: + - 69 + - uid: 8341 components: - type: Transform - pos: -116.963,2.4502454 + pos: -15.5,-8.5 parent: 2 -- proto: DrinkTeapot - entities: - - uid: 7720 + - type: DeviceNetwork + deviceLists: + - 69 + - uid: 8342 components: - type: Transform - pos: -117.4005,2.7314954 + pos: -15.5,-9.5 parent: 2 - - uid: 7721 + - type: DeviceNetwork + deviceLists: + - 69 + - uid: 8343 components: - type: Transform - pos: -30.655352,8.761473 + pos: -22.5,5.5 parent: 2 -- proto: DrinkVermouthBottleFull - entities: - - uid: 7722 + - type: DeviceNetwork + deviceLists: + - 69 + - uid: 8344 components: - type: Transform - pos: -165.32047,12.705185 + pos: -26.5,-10.5 parent: 2 -- proto: DrinkVodkaBottleFull - entities: - - uid: 7723 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 8345 components: - type: Transform - pos: -56.65869,-5.3837214 + pos: -25.5,-10.5 parent: 2 - - uid: 7724 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 8346 components: - type: Transform - pos: -56.52443,-5.351314 + pos: -36.5,-7.5 parent: 2 - - uid: 7725 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 8347 components: - type: Transform - pos: -56.57073,-5.4300175 + pos: -37.5,-7.5 parent: 2 - - uid: 7726 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 8348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.513275,13.463379 + pos: -38.5,-9.5 parent: 2 - - uid: 7727 + - type: DeviceNetwork + deviceLists: + - 40 + - uid: 8349 components: - type: Transform - pos: -66.169525,11.432129 + pos: -38.5,-11.5 parent: 2 -- proto: DrinkVodkaGlass - entities: - - uid: 7728 + - type: DeviceNetwork + deviceLists: + - 40 + - uid: 8350 components: - type: Transform - pos: -58.242104,-4.4380083 + pos: -25.5,-6.5 parent: 2 - - uid: 7729 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 8351 components: - type: Transform - pos: -58.679604,-3.4223833 + pos: -27.5,-10.5 parent: 2 - - uid: 7730 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 8352 components: - type: Transform - pos: -84.2241,16.502531 + pos: -14.5,2.5 parent: 2 -- proto: EmergencyLight - entities: - - uid: 7731 + - type: DeviceNetwork + deviceLists: + - 69 + - uid: 8353 components: - type: Transform - pos: -154.5,-2.5 + pos: -26.5,-6.5 parent: 2 - - uid: 7732 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 8354 components: - type: Transform - rot: 3.141592653589793 rad - pos: -158.5,-4.5 + pos: -30.5,-13.5 parent: 2 - - uid: 7733 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 8355 components: - type: Transform - rot: 3.141592653589793 rad - pos: -171.5,-4.5 + pos: -13.5,2.5 parent: 2 - - uid: 7734 + - type: DeviceNetwork + deviceLists: + - 69 + - uid: 8356 components: - type: Transform - pos: -196.5,-2.5 + pos: -22.5,4.5 parent: 2 - - uid: 7735 + - type: DeviceNetwork + deviceLists: + - 69 + - uid: 8357 components: - type: Transform - rot: 3.141592653589793 rad - pos: -186.5,-4.5 + pos: -22.5,3.5 parent: 2 - - uid: 7736 + - type: DeviceNetwork + deviceLists: + - 69 + - uid: 8358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -194.5,-14.5 + pos: -13.5,6.5 parent: 2 - - uid: 7737 + - uid: 8359 components: - type: Transform - pos: -186.5,-15.5 + pos: -15.5,-3.5 parent: 2 - - uid: 7738 + - type: DeviceNetwork + deviceLists: + - 68 + - uid: 8360 components: - type: Transform - rot: 3.141592653589793 rad - pos: -187.5,-25.5 + pos: -5.5,-10.5 parent: 2 - - uid: 7739 + - type: DeviceNetwork + deviceLists: + - 71 + - uid: 8361 components: - type: Transform - pos: -156.5,-16.5 + pos: -11.5,-3.5 parent: 2 - - uid: 7740 + - type: DeviceNetwork + deviceLists: + - 71 + - uid: 8362 components: - type: Transform - rot: 3.141592653589793 rad - pos: -156.5,-8.5 + pos: -7.5,-5.5 parent: 2 - - uid: 7741 + - type: DeviceNetwork + deviceLists: + - 71 + - uid: 8363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -167.5,-10.5 + pos: -5.5,-3.5 parent: 2 - - uid: 7742 + - type: DeviceNetwork + deviceLists: + - 71 + - uid: 8364 components: - type: Transform - pos: -162.5,5.5 + pos: -8.5,1.5 parent: 2 - - uid: 7743 + - type: DeviceNetwork + deviceLists: + - 71 + - uid: 8365 components: - type: Transform - pos: -155.5,11.5 + pos: -28.5,-14.5 parent: 2 - - uid: 7744 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 8366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -185.5,8.5 + pos: -28.5,-15.5 parent: 2 - - uid: 7745 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 8367 components: - type: Transform - rot: 3.141592653589793 rad - pos: -196.5,1.5 + pos: -28.5,-16.5 parent: 2 - - uid: 7746 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 8368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -194.5,16.5 + pos: -37.5,-13.5 parent: 2 - - uid: 7747 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 8369 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -205.5,3.5 + pos: -35.5,-13.5 parent: 2 - - uid: 7748 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 8370 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -205.5,12.5 + pos: -36.5,0.5 parent: 2 - - uid: 7749 + - type: DeviceNetwork + deviceLists: + - 70 + - uid: 8371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -218.5,-3.5 + pos: -35.5,-7.5 parent: 2 - - uid: 7750 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 8372 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -214.5,-14.5 + pos: -39.5,6.5 parent: 2 - - uid: 7751 + - type: DeviceNetwork + deviceLists: + - 70 + - uid: 8373 components: - type: Transform - pos: -138.5,-1.5 + pos: -35.5,0.5 parent: 2 - - uid: 7752 + - type: DeviceNetwork + deviceLists: + - 70 + - uid: 8374 components: - type: Transform - rot: 3.141592653589793 rad - pos: -131.5,-6.5 + pos: -56.5,-20.5 parent: 2 - - uid: 7753 + - type: DeviceNetwork + deviceLists: + - 45 + - uid: 8375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.5,-3.5 + pos: -67.5,-21.5 parent: 2 - - uid: 7754 + - type: DeviceNetwork + deviceLists: + - 45 + - uid: 8376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,-3.5 + pos: -69.5,-24.5 parent: 2 - - uid: 7755 + - type: DeviceNetwork + deviceLists: + - 45 + - uid: 8377 components: - type: Transform - pos: -116.5,4.5 + pos: -150.5,-4.5 parent: 2 - - uid: 7756 + - type: DeviceNetwork + deviceLists: + - 51 + - 52 + - uid: 8378 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,-12.5 + pos: -150.5,-3.5 parent: 2 - - uid: 7757 + - type: DeviceNetwork + deviceLists: + - 51 + - 52 + - uid: 8379 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-12.5 + pos: -150.5,-2.5 parent: 2 - - uid: 7758 + - type: DeviceNetwork + deviceLists: + - 51 + - 52 + - uid: 8380 components: - type: Transform - pos: -96.5,-2.5 + pos: -175.5,-3.5 parent: 2 - - uid: 7759 + - type: DeviceNetwork + deviceLists: + - 52 + - uid: 8381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,8.5 + pos: -175.5,-4.5 parent: 2 - - uid: 7760 + - type: DeviceNetwork + deviceLists: + - 52 + - uid: 8382 components: - type: Transform - pos: -101.5,19.5 + pos: -176.5,-5.5 parent: 2 - - uid: 7761 + - type: DeviceNetwork + deviceLists: + - 52 + - uid: 8383 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-10.5 + pos: -178.5,-5.5 parent: 2 - - uid: 7762 + - type: DeviceNetwork + deviceLists: + - 52 + - uid: 8384 components: - type: Transform - pos: -74.5,-14.5 + pos: -157.5,6.5 parent: 2 - - uid: 7763 + - type: DeviceNetwork + deviceLists: + - 55 + - 56 + - uid: 8385 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-16.5 + pos: -194.5,-5.5 parent: 2 - - uid: 7764 + - type: DeviceNetwork + deviceLists: + - 53 + - uid: 8386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-19.5 + pos: -208.5,-4.5 parent: 2 - - uid: 7765 + - type: DeviceNetwork + deviceLists: + - 53 + - uid: 8387 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-2.5 + pos: -34.5,10.5 parent: 2 - - uid: 7766 + - type: DeviceNetwork + deviceLists: + - 70 + - uid: 8388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,3.5 + pos: -41.5,8.5 parent: 2 - - uid: 7767 + - type: DeviceNetwork + deviceLists: + - 70 + - uid: 8389 components: - type: Transform - pos: -54.5,9.5 + pos: -43.5,10.5 parent: 2 - - uid: 7768 + - type: DeviceNetwork + deviceLists: + - 70 + - uid: 8390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,3.5 + pos: -44.5,-6.5 parent: 2 - - uid: 7769 + - uid: 8391 components: - type: Transform - pos: -58.5,-0.5 + pos: -44.5,-5.5 parent: 2 - - uid: 7770 + - uid: 8392 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-7.5 + pos: -48.5,-8.5 parent: 2 - - uid: 7771 + - uid: 8393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-4.5 + pos: -49.5,-8.5 parent: 2 - - uid: 7772 + - uid: 8394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-2.5 + pos: -49.5,-3.5 parent: 2 - - uid: 7773 + - type: DeviceNetwork + deviceLists: + - 40 + - uid: 8395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,3.5 + pos: -48.5,-3.5 parent: 2 - - uid: 7774 + - type: DeviceNetwork + deviceLists: + - 40 + - uid: 8396 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,7.5 + pos: -47.5,-11.5 parent: 2 - - uid: 7775 + - type: DeviceNetwork + deviceLists: + - 40 + - uid: 8397 components: - type: Transform - pos: -69.5,9.5 + pos: -47.5,-10.5 parent: 2 - - uid: 7776 + - type: DeviceNetwork + deviceLists: + - 40 + - uid: 8398 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,18.5 + pos: -47.5,-9.5 parent: 2 - - uid: 7777 + - type: DeviceNetwork + deviceLists: + - 40 + - uid: 8399 components: - type: Transform - pos: -69.5,24.5 + pos: -49.5,-13.5 parent: 2 - - uid: 7778 + - type: DeviceNetwork + deviceLists: + - 44 + - uid: 8400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,20.5 + pos: -50.5,-13.5 parent: 2 - - uid: 7779 + - type: DeviceNetwork + deviceLists: + - 44 + - uid: 8401 components: - type: Transform - pos: -31.5,-0.5 + pos: -51.5,-13.5 parent: 2 - - uid: 7780 + - type: DeviceNetwork + deviceLists: + - 44 + - uid: 8402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,9.5 + pos: -43.5,-3.5 parent: 2 - - uid: 7781 + - type: DeviceNetwork + deviceLists: + - 40 + - uid: 8403 components: - type: Transform - pos: -26.5,5.5 + pos: -42.5,-3.5 parent: 2 - - uid: 7782 + - type: DeviceNetwork + deviceLists: + - 40 + - uid: 8404 components: - type: Transform - pos: -15.5,5.5 + pos: -41.5,-3.5 parent: 2 - - uid: 7783 + - type: DeviceNetwork + deviceLists: + - 40 + - uid: 8405 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-1.5 + pos: -51.5,4.5 parent: 2 - - uid: 7784 + - type: DeviceNetwork + deviceLists: + - 40 + - uid: 8406 components: - type: Transform - pos: -22.5,-7.5 + pos: -48.5,3.5 parent: 2 - - uid: 7785 + - type: DeviceNetwork + deviceLists: + - 40 + - uid: 8407 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-13.5 + pos: -48.5,2.5 parent: 2 - - uid: 7786 + - type: DeviceNetwork + deviceLists: + - 40 + - uid: 8408 components: - type: Transform - pos: -6.5,-14.5 + pos: -46.5,0.5 parent: 2 - - uid: 7787 + - type: DeviceNetwork + deviceLists: + - 40 + - uid: 8409 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-12.5 + pos: -52.5,7.5 parent: 2 - - uid: 7788 + - type: DeviceNetwork + deviceLists: + - 40 + - uid: 8410 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-12.5 + pos: -52.5,8.5 parent: 2 - - uid: 7789 + - type: DeviceNetwork + deviceLists: + - 40 + - uid: 8411 components: - type: Transform - pos: -6.5,0.5 + pos: -52.5,9.5 parent: 2 - - uid: 7790 + - type: DeviceNetwork + deviceLists: + - 40 + - uid: 8412 components: - type: Transform - pos: -8.5,4.5 + pos: -56.5,6.5 parent: 2 - - uid: 7791 + - type: DeviceNetwork + deviceLists: + - 42 + - uid: 8413 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-7.5 + pos: -56.5,11.5 parent: 2 - - uid: 7792 + - uid: 8414 components: - type: Transform - pos: 1.5,0.5 + pos: -60.5,11.5 parent: 2 - - uid: 7793 + - uid: 8415 components: - type: Transform - pos: -19.5,10.5 + pos: -59.5,13.5 parent: 2 - - uid: 7794 + - uid: 8416 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,8.5 + pos: -57.5,13.5 parent: 2 - - uid: 7795 + - uid: 8417 components: - type: Transform - pos: -31.5,-8.5 + pos: -61.5,-8.5 parent: 2 - - uid: 7796 + - type: DeviceNetwork + deviceLists: + - 42 + - uid: 8418 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -174.5,10.5 + pos: -66.5,-3.5 parent: 2 - - uid: 7797 + - type: DeviceNetwork + deviceLists: + - 43 + - uid: 8419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -168.5,12.5 + pos: -49.5,-17.5 parent: 2 - - uid: 7798 + - type: DeviceNetwork + deviceLists: + - 44 + - uid: 8420 components: - type: Transform - pos: -166.5,5.5 + pos: -175.5,-2.5 parent: 2 - - uid: 7799 + - type: DeviceNetwork + deviceLists: + - 52 + - uid: 8421 components: - type: Transform - rot: 3.141592653589793 rad - pos: -156.5,3.5 + pos: -196.5,-5.5 parent: 2 - - uid: 7800 + - type: DeviceNetwork + deviceLists: + - 53 + - uid: 8422 components: - type: Transform - rot: 3.141592653589793 rad - pos: -162.5,3.5 + pos: -192.5,-4.5 parent: 2 - - uid: 7801 + - type: DeviceNetwork + deviceLists: + - 53 + - uid: 8423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -173.5,4.5 + pos: -192.5,-3.5 parent: 2 - - uid: 7802 + - type: DeviceNetwork + deviceLists: + - 53 + - uid: 8424 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-13.5 + pos: -192.5,-2.5 parent: 2 - - uid: 7803 + - type: DeviceNetwork + deviceLists: + - 53 + - uid: 8425 components: - type: Transform - pos: -175.5,3.5 + pos: -208.5,-3.5 parent: 2 - - uid: 7804 + - type: DeviceNetwork + deviceLists: + - 53 + - uid: 8426 components: - type: Transform - rot: 3.141592653589793 rad - pos: -179.5,-0.5 + pos: -208.5,-2.5 parent: 2 -- proto: EmergencyMedipen - entities: - - uid: 6602 - components: - - type: Transform - parent: 6598 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7805 + - type: DeviceNetwork + deviceLists: + - 53 + - uid: 8427 components: - type: Transform - pos: -179.48682,0.43268675 + pos: -207.5,-1.5 parent: 2 - - uid: 7806 + - type: DeviceNetwork + deviceLists: + - 73 + - uid: 8428 components: - type: Transform - pos: -179.36182,0.58893675 + pos: -205.5,-1.5 parent: 2 -- proto: EmergencyOxygenTankFilled - entities: - - uid: 6603 - components: - - type: Transform - parent: 6598 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6604 + - type: DeviceNetwork + deviceLists: + - 73 + - uid: 8429 components: - type: Transform - parent: 6598 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6605 + pos: -204.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 53 + - uid: 8430 components: - type: Transform - parent: 6598 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Emitter - entities: - - uid: 7807 + pos: -204.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 53 + - uid: 8431 components: - type: Transform - rot: 3.141592653589793 rad - pos: -78.5,-6.5 + pos: -204.5,-4.5 parent: 2 - - uid: 7808 + - type: DeviceNetwork + deviceLists: + - 53 + - uid: 8432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,-3.5 + rot: -1.5707963267948966 rad + pos: -109.5,-4.5 parent: 2 - - uid: 7809 + - type: DeviceNetwork + deviceLists: + - 47 + - 50 + - uid: 8433 components: - type: Transform - pos: -78.5,-0.5 + rot: -1.5707963267948966 rad + pos: -109.5,-2.5 parent: 2 -- proto: EncryptionKeyCargo - entities: - - uid: 7811 + - type: DeviceNetwork + deviceLists: + - 47 + - 50 + - uid: 8434 components: - type: Transform - parent: 7810 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommand - entities: - - uid: 7813 + rot: -1.5707963267948966 rad + pos: -106.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 47 + - uid: 8435 components: - type: Transform - parent: 7812 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommon - entities: - - uid: 17 + rot: -1.5707963267948966 rad + pos: -105.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 47 + - uid: 8436 components: - type: Transform - parent: 16 - - type: Physics - canCollide: False - - uid: 7815 + rot: -1.5707963267948966 rad + pos: -107.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 47 + - uid: 8437 components: - type: Transform - parent: 7814 - - type: Physics - canCollide: False -- proto: EncryptionKeyEngineering - entities: - - uid: 7817 + rot: 1.5707963267948966 rad + pos: -81.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 41 + - uid: 8438 components: - type: Transform - parent: 7816 - - type: Physics - canCollide: False -- proto: EncryptionKeyMedical - entities: - - uid: 7819 + rot: 1.5707963267948966 rad + pos: -81.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 41 + - uid: 8439 components: - type: Transform - parent: 7818 - - type: Physics - canCollide: False -- proto: EncryptionKeyMedicalScience - entities: - - uid: 7820 + rot: 1.5707963267948966 rad + pos: -81.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 41 + - uid: 8440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5665174,-7.32084 + rot: 1.5707963267948966 rad + pos: -83.5,5.5 parent: 2 - - uid: 7821 + - type: DeviceNetwork + deviceLists: + - 41 + - 72 + - uid: 8441 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.4883924,-7.492715 + rot: 1.5707963267948966 rad + pos: -84.5,5.5 parent: 2 -- proto: EncryptionKeyScience - entities: - - uid: 7823 + - type: DeviceNetwork + deviceLists: + - 41 + - 72 + - uid: 8442 components: - type: Transform - parent: 7822 - - type: Physics - canCollide: False -- proto: EncryptionKeySecurity - entities: - - uid: 7825 + rot: 1.5707963267948966 rad + pos: -85.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 41 + - 72 + - uid: 8443 components: - type: Transform - parent: 7824 - - type: Physics - canCollide: False -- proto: EncryptionKeyService - entities: - - uid: 7827 + rot: 1.5707963267948966 rad + pos: -88.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 72 + - uid: 8444 components: - type: Transform - parent: 7826 - - type: Physics - canCollide: False -- proto: EpinephrineChemistryBottle - entities: - - uid: 7828 + rot: 1.5707963267948966 rad + pos: -87.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 72 + - uid: 8445 components: - type: Transform - pos: -186.48636,-18.218613 + rot: 1.5707963267948966 rad + pos: -90.5,-2.5 parent: 2 - - uid: 7829 + - type: DeviceNetwork + deviceLists: + - 47 + - 72 + - uid: 8446 components: - type: Transform - pos: -186.65823,-18.421738 + rot: 1.5707963267948966 rad + pos: -90.5,-3.5 parent: 2 - - uid: 7830 + - type: DeviceNetwork + deviceLists: + - 47 + - 72 + - uid: 8447 components: - type: Transform - pos: -178.62744,3.6045618 + rot: 1.5707963267948966 rad + pos: -90.5,-4.5 parent: 2 -- proto: ExosuitFabricator - entities: - - uid: 7831 + - type: DeviceNetwork + deviceLists: + - 47 + - 72 + - uid: 8448 components: - type: Transform - pos: -191.5,23.5 + rot: 1.5707963267948966 rad + pos: -88.5,-5.5 parent: 2 -- proto: ExtinguisherCabinetFilled - entities: - - uid: 7832 + - type: DeviceNetwork + deviceLists: + - 72 + - uid: 8449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-7.5 + rot: 1.5707963267948966 rad + pos: -87.5,-5.5 parent: 2 - - uid: 7833 + - type: DeviceNetwork + deviceLists: + - 72 + - uid: 8450 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -192.5,21.5 + rot: 3.141592653589793 rad + pos: -161.5,-22.5 parent: 2 - - uid: 7834 + - type: DeviceNetwork + deviceLists: + - 54 + - uid: 8451 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -199.5,5.5 + rot: 3.141592653589793 rad + pos: -162.5,-21.5 parent: 2 - - uid: 7835 + - type: DeviceNetwork + deviceLists: + - 54 + - uid: 8452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -211.5,-5.5 + rot: 3.141592653589793 rad + pos: -162.5,-18.5 parent: 2 - - uid: 7836 + - type: DeviceNetwork + deviceLists: + - 54 + - uid: 8453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -184.5,-1.5 + rot: 3.141592653589793 rad + pos: -158.5,-13.5 parent: 2 - - uid: 7837 + - type: DeviceNetwork + deviceLists: + - 54 + - uid: 8454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -165.5,-5.5 + rot: 3.141592653589793 rad + pos: -154.5,-13.5 parent: 2 - - uid: 7838 + - type: DeviceNetwork + deviceLists: + - 54 + - uid: 8455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -130.5,-0.5 + rot: 3.141592653589793 rad + pos: -157.5,-22.5 parent: 2 - - uid: 7839 + - type: DeviceNetwork + deviceLists: + - 54 + - uid: 8456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,-1.5 + rot: 3.141592653589793 rad + pos: -153.5,-22.5 parent: 2 - - uid: 7840 + - type: DeviceNetwork + deviceLists: + - 54 + - uid: 8457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,3.5 + rot: 3.141592653589793 rad + pos: -154.5,-9.5 parent: 2 - - uid: 7841 + - type: DeviceNetwork + deviceLists: + - 54 + - uid: 8458 components: - type: Transform - pos: -114.5,-14.5 + rot: 3.141592653589793 rad + pos: -158.5,-9.5 parent: 2 - - uid: 7842 + - type: DeviceNetwork + deviceLists: + - 54 + - uid: 8459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-16.5 + rot: 3.141592653589793 rad + pos: -159.5,-7.5 parent: 2 - - uid: 7843 + - type: DeviceNetwork + deviceLists: + - 54 + - uid: 8460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-21.5 + rot: 3.141592653589793 rad + pos: -163.5,-10.5 parent: 2 - - uid: 7844 + - type: DeviceNetwork + deviceLists: + - 54 + - uid: 8461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,-11.5 + rot: 3.141592653589793 rad + pos: -165.5,-9.5 parent: 2 - - uid: 7845 + - type: DeviceNetwork + deviceLists: + - 54 + - uid: 8462 components: - type: Transform rot: -1.5707963267948966 rad - pos: -100.5,11.5 + pos: -150.5,3.5 parent: 2 - - uid: 7846 + - type: DeviceNetwork + deviceLists: + - 55 + - uid: 8463 components: - type: Transform rot: -1.5707963267948966 rad - pos: -76.5,10.5 + pos: -151.5,2.5 parent: 2 - - uid: 7847 + - type: DeviceNetwork + deviceLists: + - 55 + - uid: 8464 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,18.5 + pos: -24.5,-12.5 parent: 2 - - uid: 7848 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 8465 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,6.5 + pos: -22.5,-10.5 parent: 2 - - uid: 7849 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 8466 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-7.5 + pos: -21.5,-10.5 parent: 2 - - uid: 7850 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 8467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,6.5 + rot: 1.5707963267948966 rad + pos: -17.5,1.5 parent: 2 - - uid: 7851 + - type: DeviceNetwork + deviceLists: + - 68 + - uid: 8468 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-7.5 + pos: -24.5,-13.5 parent: 2 - - uid: 7852 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 8469 components: - type: Transform - pos: -63.5,-5.5 + pos: -38.5,-15.5 parent: 2 - - uid: 7853 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 8470 components: - type: Transform - pos: -74.5,-4.5 + rot: -1.5707963267948966 rad + pos: -14.5,-10.5 parent: 2 - - uid: 7854 + - type: DeviceNetwork + deviceLists: + - 69 + - uid: 8471 components: - type: Transform - pos: -56.5,0.5 + pos: -62.5,-17.5 parent: 2 -- proto: FancyTableSpawner - entities: - - uid: 7855 + - type: DeviceNetwork + deviceLists: + - 45 + - uid: 8472 components: - type: Transform - pos: -94.5,-10.5 + pos: -27.5,6.5 parent: 2 -- proto: FaxMachineBase - entities: - - uid: 7856 + - type: DeviceNetwork + deviceLists: + - 69 + - uid: 8473 components: - type: Transform - pos: -156.5,-24.5 + pos: -48.5,-15.5 parent: 2 - - type: FaxMachine - destinationAddress: Перма - name: Перма - - uid: 7857 + - type: DeviceNetwork + deviceLists: + - 44 + - uid: 8474 components: - type: Transform - pos: -58.5,18.5 + pos: -40.5,-16.5 parent: 2 - - type: FaxMachine - destinationAddress: Атмос - name: Атмос - - uid: 7858 + - type: DeviceNetwork + deviceLists: + - 44 + - uid: 8475 components: - type: Transform - pos: -19.5,0.5 + pos: -64.5,-17.5 parent: 2 - - type: FaxMachine - destinationAddress: Глава Персонала - name: Глава Персонала - - uid: 7859 + - type: DeviceNetwork + deviceLists: + - 45 + - uid: 8476 components: - type: Transform - pos: 1.5,-3.5 + pos: -63.5,-16.5 parent: 2 - - type: FaxMachine - destinationAddress: Мостик - name: Мостик - - uid: 7860 + - type: DeviceNetwork + deviceLists: + - 44 + - 46 + - uid: 8477 components: - type: Transform - pos: -68.5,-18.5 + pos: -63.5,-15.5 parent: 2 - - type: FaxMachine - destinationAddress: Квартирмейстер - name: Квартирмейстер - - uid: 7861 + - type: DeviceNetwork + deviceLists: + - 44 + - 46 + - uid: 8478 components: - type: Transform - pos: -8.5,-9.5 + pos: -63.5,-14.5 parent: 2 - - type: FaxMachine - destinationAddress: Капитан - name: Капитан - - uid: 7862 + - type: DeviceNetwork + deviceLists: + - 44 + - 46 + - uid: 8479 components: - type: Transform - pos: -61.5,3.5 + pos: -65.5,-13.5 parent: 2 - - type: FaxMachine - destinationAddress: Старший Инженер - name: Старший Инженер - - uid: 7863 + - type: DeviceNetwork + deviceLists: + - 43 + - uid: 8480 components: - type: Transform - pos: -144.5,3.5 + pos: -70.5,-3.5 parent: 2 - - type: FaxMachine - destinationAddress: Юриспруденция - name: Юриспруденция - - uid: 7864 + - type: DeviceNetwork + deviceLists: + - 43 + - uid: 8481 components: - type: Transform - pos: -163.5,8.5 + pos: -63.5,-3.5 parent: 2 - - type: FaxMachine - destinationAddress: Смотряшка - name: Смотряшка - - uid: 7865 + - type: DeviceNetwork + deviceLists: + - 43 + - uid: 8482 components: - type: Transform - pos: -156.5,16.5 + pos: -57.5,-8.5 parent: 2 - - type: FaxMachine - destinationAddress: Глава Охранной Службы - name: Глава Охранной Службы - - uid: 7866 + - type: DeviceNetwork + deviceLists: + - 42 + - uid: 8483 components: - type: Transform - pos: -47.5,-19.5 + pos: -84.5,-17.5 parent: 2 - - type: FaxMachine - destinationAddress: Библиотека - name: Библиотека -- proto: FenceMetalGate - entities: - - uid: 7867 + - type: DeviceNetwork + deviceLists: + - 46 + - uid: 8484 components: - type: Transform - pos: -96.5,-9.5 + pos: -85.5,10.5 parent: 2 -- proto: filingCabinetDrawer - entities: - - uid: 7868 + - type: DeviceNetwork + deviceLists: + - 41 + - uid: 8485 components: - type: Transform - pos: -16.5,-0.5 + pos: -57.5,0.5 parent: 2 -- proto: filingCabinetDrawerRandom - entities: - - uid: 7869 + - type: DeviceNetwork + deviceLists: + - 42 + - uid: 8486 components: - type: Transform - pos: -18.5,-4.5 + pos: -54.5,0.5 parent: 2 - - uid: 7870 + - type: DeviceNetwork + deviceLists: + - 42 + - uid: 8487 components: - type: Transform - pos: 4.5,-4.5 + pos: -102.5,-11.5 parent: 2 -- proto: filingCabinetRandom - entities: - - uid: 7871 + - type: DeviceNetwork + deviceLists: + - 48 + - uid: 8488 components: - type: Transform - pos: 5.5,-6.5 + pos: -102.5,-15.5 parent: 2 -- proto: FireAxeCabinetFilled - entities: - - uid: 7872 + - type: DeviceNetwork + deviceLists: + - 48 + - uid: 8489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,18.5 + pos: -102.5,-16.5 parent: 2 - - uid: 7873 + - type: DeviceNetwork + deviceLists: + - 48 + - uid: 8490 components: - type: Transform - pos: -3.5,0.5 + pos: -99.5,-15.5 parent: 2 -- proto: Firelock - entities: - - uid: 7874 + - type: DeviceNetwork + deviceLists: + - 48 + - uid: 8491 components: - type: Transform - pos: -121.5,-4.5 + pos: -110.5,-11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 46 - - 47 - - uid: 7875 + - 48 + - 49 + - uid: 8492 components: - type: Transform - pos: -121.5,-2.5 + pos: -110.5,-10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 46 - - 47 - - uid: 7876 + - 48 + - 49 + - uid: 8493 components: - type: Transform - pos: -154.5,12.5 + pos: -110.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 52 - - uid: 7877 + - 48 + - 49 + - uid: 8494 components: - type: Transform - pos: -161.5,10.5 + pos: -113.5,3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 52 - - uid: 7878 + - 50 + - uid: 8495 components: - type: Transform - pos: -170.5,7.5 + pos: -130.5,-8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 52 - - uid: 7879 + - 51 + - uid: 8496 components: - type: Transform - pos: -171.5,7.5 + pos: -127.5,1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 52 - - uid: 7880 + - 51 + - uid: 8497 components: - type: Transform - pos: -174.5,5.5 + pos: -133.5,-0.5 parent: 2 - type: DeviceNetwork deviceLists: - 51 - - uid: 7881 + - uid: 8498 components: - type: Transform - pos: -212.5,-5.5 + pos: -135.5,-0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 69 - - uid: 7882 + - 51 + - uid: 8499 components: - type: Transform - pos: -214.5,-5.5 + pos: -140.5,-0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 69 - - uid: 7883 + - 51 + - uid: 8500 components: - type: Transform - pos: -127.5,-8.5 + pos: -138.5,3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 47 - - uid: 7884 + - 51 + - uid: 8501 components: - type: Transform - pos: -123.5,-6.5 + pos: -150.5,8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 47 - - uid: 7885 + - 56 + - uid: 8502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -167.5,10.5 + pos: -148.5,1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 52 - - uid: 7886 + - 55 + - uid: 8503 components: - type: Transform - pos: -111.5,7.5 + pos: -160.5,1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 46 -- proto: FirelockEdge - entities: - - uid: 7887 + - 55 + - uid: 8504 components: - type: Transform - rot: 3.141592653589793 rad - pos: -159.5,-1.5 + pos: -174.5,3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 51 - - uid: 7888 + - 55 + - 75 + - uid: 8505 components: - type: Transform - rot: 3.141592653589793 rad - pos: -160.5,-1.5 + pos: -168.5,2.5 parent: 2 - type: DeviceNetwork deviceLists: - - 51 - - uid: 7889 + - 55 + - uid: 8506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -158.5,-0.5 + pos: -172.5,2.5 parent: 2 - type: DeviceNetwork deviceLists: - - 51 - - uid: 7890 + - 55 + - uid: 8507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -158.5,0.5 + pos: -164.5,2.5 parent: 2 - type: DeviceNetwork deviceLists: - - 51 - - uid: 7891 + - 55 + - uid: 8508 components: - type: Transform - pos: -114.5,2.5 + pos: -186.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 46 - - uid: 7892 + - 74 + - uid: 8509 components: - type: Transform - pos: -115.5,2.5 + pos: -181.5,-19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 46 - - uid: 7893 + - 74 + - uid: 8510 components: - type: Transform - pos: -116.5,2.5 + pos: -191.5,-19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 46 - - uid: 7894 + - 74 + - uid: 8511 components: - type: Transform - pos: -117.5,2.5 + pos: -191.5,-13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 46 - - uid: 7895 + - 74 + - uid: 8512 components: - type: Transform - pos: -118.5,2.5 + pos: -181.5,-13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 46 - - uid: 7896 + - 74 + - uid: 8513 components: - type: Transform - pos: -119.5,2.5 + pos: -183.5,-11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 46 - - uid: 7897 + - 74 + - uid: 8514 components: - type: Transform - pos: -120.5,2.5 + pos: -187.5,-11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 46 - - uid: 7898 + - 74 + - uid: 8515 components: - type: Transform rot: 3.141592653589793 rad - pos: -164.5,6.5 + pos: -114.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - 52 - - uid: 7899 + - uid: 8516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -189.5,-25.5 + pos: -115.5,-8.5 + parent: 2 + - uid: 8517 + components: + - type: Transform + pos: -178.5,-1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 71 -- proto: FirelockElectronics + - 75 +- proto: Fireplace entities: - - uid: 7900 + - uid: 8518 components: - type: Transform - pos: -54.366264,-5.717462 + pos: -111.5,0.5 parent: 2 - - uid: 7901 +- proto: Flash + entities: + - uid: 8519 components: - type: Transform - pos: -54.710014,-5.701837 + pos: -0.857925,0.7344446 parent: 2 -- proto: FirelockGlass +- proto: FlashlightLantern entities: - - uid: 7902 + - uid: 8520 components: - type: Transform - pos: -102.5,-1.5 + rot: -1.5707963267948966 rad + pos: -18.72208,-13.461885 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43 - - uid: 7903 +- proto: FloodlightBroken + entities: + - uid: 8521 components: - type: Transform - pos: -100.5,-5.5 + pos: -127.035706,-24.828823 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43 - - uid: 7904 +- proto: FloorDrain + entities: + - uid: 8522 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,-1.5 + pos: -189.5,-29.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - uid: 7905 + - type: Fixtures + fixtures: {} + - uid: 8523 components: - type: Transform rot: 3.141592653589793 rad - pos: -157.5,-1.5 + pos: -190.5,-23.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - uid: 7906 + - type: Fixtures + fixtures: {} + - uid: 8524 components: - type: Transform - rot: 3.141592653589793 rad - pos: -157.5,-5.5 + pos: -31.5,-11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - uid: 7907 + - type: Fixtures + fixtures: {} + - uid: 8525 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,-5.5 + pos: -31.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - uid: 7908 + - type: Fixtures + fixtures: {} + - uid: 8526 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.5,2.5 + pos: -116.5,-15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - uid: 7909 + - type: Fixtures + fixtures: {} +- proto: FloraTreeAutumnOrange01 + entities: + - uid: 8528 components: - type: Transform - rot: 3.141592653589793 rad - pos: -157.5,2.5 + pos: -217.33263,-9.227932 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - uid: 7910 +- proto: FloraTreeAutumnOrange02 + entities: + - uid: 8531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -158.5,6.5 + pos: -23.839283,0.12216377 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - 52 - - uid: 7911 +- proto: FloraTreeAutumnOrange04 + entities: + - uid: 8529 components: - type: Transform - pos: -50.5,4.5 + pos: -39.019463,-5.197368 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - uid: 7912 +- proto: FloraTreeAutumnOrangeLarge02 + entities: + - uid: 8527 components: - type: Transform - pos: -49.5,4.5 + pos: -33.374447,-5.602409 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - uid: 7913 +- proto: FloraTreeAutumnOrangeLarge03 + entities: + - uid: 8532 components: - type: Transform - pos: -60.5,1.5 + pos: -29.91676,-0.13436198 parent: 2 - - type: DeviceNetwork - deviceLists: - - 38 - - uid: 7914 +- proto: FloraTreeAutumnOrangeLarge06 + entities: + - uid: 8530 components: - type: Transform - pos: -71.5,-17.5 + pos: -228.13615,-8.363845 parent: 2 - - type: DeviceNetwork - deviceLists: - - 42 - - uid: 7915 +- proto: FoodBadRecipe + entities: + - uid: 8533 components: - type: Transform - pos: -27.5,-6.5 + pos: -129.64957,-22.217659 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 7916 + - uid: 8534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,-12.5 + pos: -131.45644,-23.280159 parent: 2 - - type: DeviceNetwork - deviceLists: - - 42 - - 68 - - uid: 7917 + - uid: 8535 components: - type: Transform - pos: -84.5,-12.5 + pos: -130.39394,-23.702034 parent: 2 - - type: DeviceNetwork - deviceLists: - - 42 - - 68 - - uid: 7918 + - uid: 8536 components: - type: Transform - pos: -83.5,-12.5 + pos: -128.416,-22.686409 parent: 2 - - type: DeviceNetwork - deviceLists: - - 42 - - 68 - - uid: 7919 +- proto: FoodBoxDonkpocket + entities: + - uid: 8537 components: - type: Transform - pos: -81.5,-14.5 + pos: -186.87393,-27.21761 parent: 2 - - type: DeviceNetwork - deviceLists: - - 42 - - uid: 7920 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: FoodBoxDonkpocketSpicy + entities: + - uid: 8538 components: - type: Transform - pos: -81.5,-15.5 + pos: -152.60112,5.506464 parent: 2 - - type: DeviceNetwork - deviceLists: - - 42 - - uid: 7921 +- proto: FoodBoxDonkpocketTeriyaki + entities: + - uid: 8539 components: - type: Transform - pos: -81.5,-16.5 + pos: -198.54047,9.630323 parent: 2 - - type: DeviceNetwork - deviceLists: - - 42 - - uid: 7922 + - uid: 8540 components: - type: Transform - pos: -15.5,-7.5 + pos: -221.38005,-22.31261 parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - - uid: 7923 +- proto: FoodBoxDonut + entities: + - uid: 8541 components: - type: Transform - pos: -12.5,2.5 + pos: -0.24720764,-3.2779045 parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - - uid: 7924 +- proto: FoodBreadSausageSlice + entities: + - uid: 8542 components: - type: Transform - pos: -15.5,-8.5 + pos: -84.44285,16.768156 parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - - uid: 7925 +- proto: FoodCakeSuppermatterSlice + entities: + - uid: 8543 components: - type: Transform - pos: -15.5,-9.5 + pos: -79.56075,3.5252805 parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - - uid: 7926 +- proto: FoodDonutJellySlugcat + entities: + - uid: 7298 components: - type: Transform - pos: -22.5,5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - - uid: 7927 + parent: 7297 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7299 components: - type: Transform - pos: -26.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 7928 + parent: 7297 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7300 + components: + - type: Transform + parent: 7297 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7301 + components: + - type: Transform + parent: 7297 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7302 + components: + - type: Transform + parent: 7297 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7303 + components: + - type: Transform + parent: 7297 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7304 + components: + - type: Transform + parent: 7297 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7305 + components: + - type: Transform + parent: 7297 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7306 + components: + - type: Transform + parent: 7297 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7307 + components: + - type: Transform + parent: 7297 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleBerry + entities: + - uid: 8545 + components: + - type: Transform + parent: 8544 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleJumbo + entities: + - uid: 8099 + components: + - type: Transform + parent: 8097 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8546 + components: + - type: Transform + parent: 8544 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleOrange + entities: + - uid: 8100 + components: + - type: Transform + parent: 8097 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8547 + components: + - type: Transform + parent: 8544 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSandwich + entities: + - uid: 8101 + components: + - type: Transform + parent: 8097 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8548 + components: + - type: Transform + parent: 8544 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSandwichStrawberry + entities: + - uid: 8102 + components: + - type: Transform + parent: 8097 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSundae + entities: + - uid: 8103 + components: + - type: Transform + parent: 8097 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8549 + components: + - type: Transform + parent: 8544 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeat + entities: + - uid: 8551 + components: + - type: Transform + parent: 8550 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8552 components: - type: Transform - pos: -25.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 7929 + parent: 8550 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8553 components: - type: Transform - pos: -36.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 7930 + parent: 8550 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8554 components: - type: Transform - pos: -37.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 7931 + parent: 8550 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8555 components: - type: Transform - pos: -38.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - uid: 7932 + parent: 8550 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatDuck + entities: + - uid: 8556 components: - type: Transform - pos: -38.5,-11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - uid: 7933 + parent: 8550 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8557 components: - type: Transform - pos: -25.5,-6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 7934 + parent: 8550 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatRat + entities: + - uid: 8558 components: - type: Transform - pos: -27.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 7935 + parent: 8550 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8559 components: - type: Transform - pos: -14.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - - uid: 7936 + parent: 8550 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8560 components: - type: Transform - pos: -26.5,-6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 7937 + parent: 8550 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FoodPieBananaCream + entities: + - uid: 8562 components: - type: Transform - pos: -30.5,-13.5 + pos: -122.29324,-7.271488 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 7938 + - uid: 8563 components: - type: Transform - pos: -13.5,2.5 + pos: -122.74637,-7.302738 parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - - uid: 7939 + - uid: 8564 components: - type: Transform - pos: -22.5,4.5 + pos: -122.29324,-7.583988 parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - - uid: 7940 +- proto: FoodPlateSmall + entities: + - uid: 8565 components: - type: Transform - pos: -22.5,3.5 + pos: -92.46372,-11.487034 parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - - uid: 7941 + - uid: 8566 components: - type: Transform - pos: -13.5,6.5 + pos: -155.69418,-18.522478 parent: 2 - - uid: 7942 + - uid: 8567 components: - type: Transform - pos: -15.5,-3.5 + pos: -158.56918,-19.381853 parent: 2 - - type: DeviceNetwork - deviceLists: - - 64 - - uid: 7943 +- proto: FoodPlateSmallPlastic + entities: + - uid: 8568 components: - type: Transform - pos: -5.5,-10.5 + pos: -166.61713,-17.245853 parent: 2 - - type: DeviceNetwork - deviceLists: - - 67 - - uid: 7944 + - uid: 8569 components: - type: Transform - pos: -11.5,-3.5 + pos: -166.60323,-17.329185 parent: 2 - - type: DeviceNetwork - deviceLists: - - 67 - - uid: 7945 + - uid: 8570 components: - type: Transform - pos: -7.5,-5.5 + pos: -166.61713,-17.41252 parent: 2 - - type: DeviceNetwork - deviceLists: - - 67 - - uid: 7946 +- proto: FoodSnackChips + entities: + - uid: 8571 components: - type: Transform - pos: -5.5,-3.5 + pos: -61.0851,-1.433073 parent: 2 - - type: DeviceNetwork - deviceLists: - - 67 - - uid: 7947 + - uid: 8572 components: - type: Transform - pos: -8.5,1.5 + pos: -58.20486,-3.4887223 parent: 2 - - type: DeviceNetwork - deviceLists: - - 67 - - uid: 7948 + - uid: 8573 components: - type: Transform - pos: -28.5,-14.5 + pos: -228.42712,-17.35207 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 7949 + - uid: 8574 components: - type: Transform - pos: -28.5,-15.5 + rot: -1.5707963267948966 rad + pos: -220.49478,-32.397995 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 7950 +- proto: FoodSnackSemki + entities: + - uid: 8575 components: - type: Transform - pos: -28.5,-16.5 + pos: 4.5977674,0.53863215 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 7951 +- proto: ForensicPad + entities: + - uid: 8576 components: - type: Transform - pos: -37.5,-13.5 + rot: -1.5707963267948966 rad + pos: -148.53906,4.4672394 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 7952 + - uid: 8577 components: - type: Transform - pos: -35.5,-13.5 + rot: -1.5707963267948966 rad + pos: -148.61719,4.7172394 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 7953 +- proto: Fork + entities: + - uid: 8578 components: - type: Transform - pos: -36.5,0.5 + rot: 1.5707963267948966 rad + pos: -92.47935,-11.799534 parent: 2 - - type: DeviceNetwork - deviceLists: - - 66 - - uid: 7954 + - uid: 8579 components: + - type: MetaData + desc: Чё мне это, вилкой всё чистить?? - type: Transform - pos: -35.5,-7.5 + rot: 1.5707963267948966 rad + pos: -161.96608,-15.382294 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 7955 + - uid: 8580 components: - type: Transform - pos: -39.5,6.5 + pos: -166.24907,-17.419464 parent: 2 - - type: DeviceNetwork - deviceLists: - - 66 - - uid: 7956 + - uid: 8581 components: - type: Transform - pos: -35.5,0.5 + pos: -166.13795,-17.419464 parent: 2 - - type: DeviceNetwork - deviceLists: - - 66 - - uid: 7957 + - uid: 8582 components: - type: Transform - pos: -56.5,-20.5 + pos: -166.20045,-17.419464 parent: 2 - - type: DeviceNetwork - deviceLists: - - 41 - - uid: 7958 +- proto: GasAnalyzer + entities: + - uid: 8583 components: - type: Transform - pos: -67.5,-21.5 + rot: -1.5707963267948966 rad + pos: -193.47356,5.787004 parent: 2 - - type: DeviceNetwork - deviceLists: - - 41 - - uid: 7959 + - uid: 8584 components: - type: Transform - pos: -69.5,-24.5 + pos: -12.516308,-11.485738 parent: 2 - - type: DeviceNetwork - deviceLists: - - 41 - - uid: 7960 + - uid: 8585 components: - type: Transform - pos: -150.5,-4.5 + pos: -69.24948,-1.5710845 parent: 2 - - type: DeviceNetwork - deviceLists: - - 47 - - 48 - - uid: 7961 + - uid: 8586 components: - type: Transform - pos: -150.5,-3.5 + pos: -64.55722,5.525611 parent: 2 - - type: DeviceNetwork - deviceLists: - - 47 - - 48 - - uid: 7962 + - uid: 8587 components: - type: Transform - pos: -150.5,-2.5 + rot: -1.5707963267948966 rad + pos: -1.4959255,0.40454245 parent: 2 - - type: DeviceNetwork - deviceLists: - - 47 - - 48 - - uid: 7963 + - uid: 8588 components: - type: Transform - pos: -175.5,-3.5 + pos: -80.396,2.5857391 parent: 2 - - type: DeviceNetwork - deviceLists: - - 48 - - uid: 7964 +- proto: GasFilter + entities: + - uid: 8589 components: - type: Transform - pos: -175.5,-4.5 + rot: -1.5707963267948966 rad + pos: -76.5,24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 48 - - uid: 7965 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8590 components: - type: Transform - pos: -176.5,-5.5 + rot: -1.5707963267948966 rad + pos: -70.5,24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 48 - - uid: 7966 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8591 components: - type: Transform - pos: -178.5,-5.5 + rot: -1.5707963267948966 rad + pos: -67.5,24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 48 - - uid: 7967 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8592 components: - type: Transform - pos: -157.5,6.5 + rot: -1.5707963267948966 rad + pos: -73.5,24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - 52 - - uid: 7968 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8593 components: - type: Transform - pos: -187.5,-1.5 + rot: -1.5707963267948966 rad + pos: -64.5,24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - uid: 7969 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8594 components: - type: Transform - pos: -194.5,-5.5 + rot: 1.5707963267948966 rad + pos: -71.5,19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - uid: 7970 + - uid: 8595 components: - type: Transform - pos: -185.5,-1.5 + pos: -74.5,21.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - uid: 7971 +- proto: GasFilterFlipped + entities: + - uid: 8596 components: - type: Transform - pos: -208.5,-4.5 + rot: 3.141592653589793 rad + pos: -67.5,21.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - uid: 7972 + - uid: 8597 components: - type: Transform - pos: -34.5,10.5 + pos: -73.5,-0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 66 - - uid: 7973 + - uid: 8598 components: - type: Transform - pos: -41.5,8.5 + rot: 3.141592653589793 rad + pos: -82.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 66 - - uid: 7974 + - uid: 8599 components: - type: Transform - pos: -43.5,10.5 + rot: 3.141592653589793 rad + pos: -82.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 66 - - uid: 7975 +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 8600 components: - type: Transform - pos: -44.5,-6.5 + pos: -56.5,29.5 parent: 2 - - uid: 7976 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 8601 components: - type: Transform - pos: -44.5,-5.5 + pos: -59.5,29.5 parent: 2 - - uid: 7977 +- proto: GasMinerPlasma + entities: + - uid: 8602 components: - type: Transform - pos: -48.5,-8.5 + pos: -68.5,29.5 parent: 2 - - uid: 7978 +- proto: GasMixer + entities: + - uid: 8603 components: - type: Transform - pos: -49.5,-8.5 + rot: 3.141592653589793 rad + pos: -62.5,21.5 parent: 2 - - uid: 7979 + - uid: 8604 components: - type: Transform - pos: -49.5,-3.5 + rot: -1.5707963267948966 rad + pos: -65.5,23.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - uid: 7980 + - uid: 8605 components: - type: Transform - pos: -48.5,-3.5 + rot: -1.5707963267948966 rad + pos: -68.5,23.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - uid: 7981 + - uid: 8606 components: - type: Transform - pos: -47.5,-11.5 + rot: -1.5707963267948966 rad + pos: -71.5,23.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - uid: 7982 + - uid: 8607 components: - type: Transform - pos: -47.5,-10.5 + rot: -1.5707963267948966 rad + pos: -74.5,23.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - uid: 7983 + - uid: 8608 components: - type: Transform - pos: -47.5,-9.5 + rot: -1.5707963267948966 rad + pos: -77.5,23.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - uid: 7984 +- proto: GasMixerFlipped + entities: + - uid: 8609 components: - type: Transform - pos: -49.5,-13.5 + rot: -1.5707963267948966 rad + pos: -56.5,23.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 - - uid: 7985 + - type: GasMixer + inletTwoConcentration: 0.78 + inletOneConcentration: 0.22 +- proto: GasOutletInjector + entities: + - uid: 8610 components: - type: Transform - pos: -50.5,-13.5 + rot: 1.5707963267948966 rad + pos: -82.5,23.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 - - uid: 7986 + - uid: 8611 components: - type: Transform - pos: -51.5,-13.5 + rot: 1.5707963267948966 rad + pos: -83.5,23.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 - - uid: 7987 + - uid: 8612 components: - type: Transform - pos: -43.5,-3.5 + pos: -76.5,28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - uid: 7988 + - uid: 8613 components: - type: Transform - pos: -42.5,-3.5 + pos: -73.5,28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - uid: 7989 + - uid: 8614 components: - type: Transform - pos: -41.5,-3.5 + pos: -70.5,28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - uid: 7990 + - uid: 8615 components: - type: Transform - pos: -51.5,4.5 + pos: -67.5,28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - uid: 7991 + - uid: 8616 components: - type: Transform - pos: -48.5,3.5 + pos: -64.5,28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - uid: 7992 +- proto: GasPassiveVent + entities: + - uid: 8617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,2.5 + rot: -1.5707963267948966 rad + pos: -52.5,23.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - uid: 7993 + - uid: 8618 components: - type: Transform - pos: -46.5,0.5 + pos: -51.5,23.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - uid: 7994 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8619 components: - type: Transform - pos: -52.5,7.5 + rot: 1.5707963267948966 rad + pos: -84.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - uid: 7995 + - uid: 8620 components: - type: Transform - pos: -52.5,8.5 + pos: -77.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - uid: 7996 + - uid: 8621 components: - type: Transform - pos: -52.5,9.5 + pos: -78.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - uid: 7997 + - uid: 8622 components: - type: Transform - pos: -56.5,6.5 + pos: -79.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 38 - - uid: 7998 + - uid: 8623 components: - type: Transform - pos: -56.5,11.5 + rot: -1.5707963267948966 rad + pos: -8.5,-15.5 parent: 2 - - uid: 7999 + - uid: 8624 components: - type: Transform - pos: -60.5,11.5 + rot: 3.141592653589793 rad + pos: -14.5,-16.5 parent: 2 - - uid: 8000 + - uid: 8625 components: - type: Transform - pos: -59.5,13.5 + pos: -56.5,28.5 parent: 2 - - uid: 8001 + - uid: 8626 components: - type: Transform - pos: -57.5,13.5 + pos: -59.5,28.5 parent: 2 - - uid: 8002 + - uid: 8627 components: - type: Transform - pos: -61.5,-8.5 + pos: -65.5,28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 38 - - uid: 8003 + - uid: 8628 components: - type: Transform - pos: -66.5,-3.5 + pos: -68.5,28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 39 - - uid: 8004 + - uid: 8629 components: - type: Transform - pos: -49.5,-17.5 + pos: -71.5,28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 - - uid: 8005 + - uid: 8630 components: - type: Transform - pos: -175.5,-2.5 + pos: -74.5,28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 48 - - uid: 8006 + - uid: 8631 components: - type: Transform - pos: -196.5,-5.5 + pos: -77.5,28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - uid: 8007 + - uid: 8632 components: - type: Transform - pos: -192.5,-4.5 + rot: 1.5707963267948966 rad + pos: -80.5,24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - uid: 8008 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8633 components: - type: Transform - pos: -192.5,-3.5 + rot: -1.5707963267948966 rad + pos: -189.5,13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - uid: 8009 + - uid: 8634 components: - type: Transform - pos: -192.5,-2.5 + rot: -1.5707963267948966 rad + pos: -189.5,3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - uid: 8010 +- proto: GasPipeBend + entities: + - uid: 8635 components: - type: Transform - pos: -208.5,-3.5 + rot: -1.5707963267948966 rad + pos: -196.5,4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - uid: 8011 + - uid: 8636 components: - type: Transform - pos: -208.5,-2.5 + pos: -81.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - uid: 8012 + - uid: 8637 components: - type: Transform - pos: -207.5,-1.5 + rot: 3.141592653589793 rad + pos: -142.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 69 - - uid: 8013 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8638 components: - type: Transform - pos: -205.5,-1.5 + rot: -1.5707963267948966 rad + pos: -138.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 69 - - uid: 8014 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8639 components: - type: Transform - pos: -204.5,-2.5 + pos: -138.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - uid: 8015 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8640 components: - type: Transform - pos: -204.5,-3.5 + rot: 3.141592653589793 rad + pos: -138.5,-3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - uid: 8016 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8641 components: - type: Transform - pos: -204.5,-4.5 + rot: 1.5707963267948966 rad + pos: -138.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - uid: 8017 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8642 components: - type: Transform rot: -1.5707963267948966 rad - pos: -109.5,-4.5 + pos: -142.5,-3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43 - - 46 - - uid: 8018 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,-2.5 + pos: -142.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43 - - 46 - - uid: 8019 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,-5.5 + rot: 1.5707963267948966 rad + pos: -142.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43 - - uid: 8020 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8645 components: - type: Transform rot: -1.5707963267948966 rad - pos: -105.5,-5.5 + pos: -85.5,1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43 - - uid: 8021 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8646 components: - type: Transform rot: -1.5707963267948966 rad - pos: -107.5,-5.5 + pos: -163.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43 - - uid: 8022 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8647 components: - type: Transform rot: 1.5707963267948966 rad - pos: -81.5,7.5 + pos: -163.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 37 - - uid: 8023 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,8.5 + rot: -1.5707963267948966 rad + pos: -57.5,17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 37 - - uid: 8024 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,9.5 + rot: 3.141592653589793 rad + pos: -58.5,7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 37 - - uid: 8025 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,5.5 + pos: -56.5,7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 37 - - 68 - - uid: 8026 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,5.5 + rot: -1.5707963267948966 rad + pos: -56.5,-3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 37 - - 68 - - uid: 8027 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,5.5 + rot: -1.5707963267948966 rad + pos: -51.5,19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 37 - - 68 - - uid: 8028 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8653 components: - type: Transform rot: 1.5707963267948966 rad - pos: -88.5,-1.5 + pos: -55.5,19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 68 - - uid: 8029 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8654 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,-1.5 + rot: -1.5707963267948966 rad + pos: -55.5,14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 68 - - uid: 8030 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8655 components: - type: Transform rot: 1.5707963267948966 rad - pos: -90.5,-2.5 + pos: -57.5,14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43 - - 68 - - uid: 8031 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8656 components: - type: Transform rot: 1.5707963267948966 rad - pos: -90.5,-3.5 + pos: -57.5,24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43 - - 68 - - uid: 8032 + - uid: 8657 components: - type: Transform rot: 1.5707963267948966 rad - pos: -90.5,-4.5 + pos: -58.5,17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43 - - 68 - - uid: 8033 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,-5.5 + pos: -60.5,24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 68 - - uid: 8034 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,-5.5 + rot: 3.141592653589793 rad + pos: -60.5,17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 68 - - uid: 8035 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8660 components: - type: Transform - rot: 3.141592653589793 rad - pos: -161.5,-22.5 + pos: -59.5,17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - uid: 8036 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8661 components: - type: Transform rot: 3.141592653589793 rad - pos: -162.5,-21.5 + pos: -74.5,19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - uid: 8037 + - uid: 8662 components: - type: Transform rot: 3.141592653589793 rad - pos: -162.5,-18.5 + pos: -67.5,19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - uid: 8038 + - uid: 8663 components: - type: Transform - rot: 3.141592653589793 rad - pos: -158.5,-13.5 + rot: -1.5707963267948966 rad + pos: -68.5,19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - uid: 8039 + - uid: 8664 components: - type: Transform - rot: 3.141592653589793 rad - pos: -154.5,-13.5 + pos: -67.5,22.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - uid: 8040 + - uid: 8665 components: - type: Transform - rot: 3.141592653589793 rad - pos: -157.5,-22.5 + pos: -50.5,8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - uid: 8041 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8666 components: - type: Transform - rot: 3.141592653589793 rad - pos: -153.5,-22.5 + pos: -49.5,9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - uid: 8042 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8667 components: - type: Transform - rot: 3.141592653589793 rad - pos: -154.5,-9.5 + rot: -1.5707963267948966 rad + pos: -50.5,-15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - uid: 8043 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8668 components: - type: Transform - rot: 3.141592653589793 rad - pos: -158.5,-9.5 + rot: -1.5707963267948966 rad + pos: -49.5,-16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - uid: 8044 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8669 components: - type: Transform rot: 3.141592653589793 rad - pos: -159.5,-7.5 + pos: -84.5,-15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - uid: 8045 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8670 components: - type: Transform rot: 3.141592653589793 rad - pos: -163.5,-10.5 + pos: -85.5,-16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - uid: 8046 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8671 components: - type: Transform rot: 3.141592653589793 rad - pos: -165.5,-9.5 + pos: -85.5,-10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - uid: 8047 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -150.5,3.5 + pos: -84.5,-10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - uid: 8048 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -151.5,2.5 + pos: -85.5,-11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - uid: 8049 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-12.5 + rot: 3.141592653589793 rad + pos: -86.5,-11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 8050 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-10.5 + pos: -86.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 8051 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-10.5 + pos: -85.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 8052 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,1.5 + rot: 3.141592653589793 rad + pos: -87.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 64 - - uid: 8053 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-13.5 + rot: 3.141592653589793 rad + pos: -88.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 8054 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8679 components: - type: Transform - pos: -38.5,-15.5 + rot: 1.5707963267948966 rad + pos: -87.5,1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 8055 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8680 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-10.5 + rot: 1.5707963267948966 rad + pos: -88.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - - uid: 8056 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8681 components: - type: Transform - pos: -62.5,-17.5 + rot: 1.5707963267948966 rad + pos: -85.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 41 - - uid: 8057 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8682 components: - type: Transform - pos: -27.5,6.5 + rot: -1.5707963267948966 rad + pos: -86.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - - uid: 8058 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8683 components: - type: Transform - pos: -48.5,-15.5 + rot: 1.5707963267948966 rad + pos: -86.5,3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 - - uid: 8059 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8684 components: - type: Transform - pos: -40.5,-16.5 + rot: -1.5707963267948966 rad + pos: -84.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 - - uid: 8060 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8685 components: - type: Transform - pos: -64.5,-17.5 + rot: -1.5707963267948966 rad + pos: -85.5,3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 41 - - uid: 8061 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8686 components: - type: Transform - pos: -63.5,-16.5 + rot: 1.5707963267948966 rad + pos: -85.5,9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 - - 42 - - uid: 8062 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8687 components: - type: Transform - pos: -63.5,-15.5 + rot: 1.5707963267948966 rad + pos: -84.5,8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 - - 42 - - uid: 8063 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8688 components: - type: Transform - pos: -63.5,-14.5 + rot: -1.5707963267948966 rad + pos: -57.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 - - 42 - - uid: 8064 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8689 components: - type: Transform - pos: -65.5,-13.5 + rot: -1.5707963267948966 rad + pos: -59.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 39 - - uid: 8065 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8690 components: - type: Transform - pos: -70.5,-3.5 + pos: -41.5,-0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 39 - - uid: 8066 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8691 components: - type: Transform - pos: -63.5,-3.5 + pos: -42.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 39 - - uid: 8067 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8692 components: - type: Transform - pos: -57.5,-8.5 + rot: 3.141592653589793 rad + pos: -41.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 38 - - uid: 8068 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8693 components: - type: Transform - pos: -84.5,-17.5 + rot: 3.141592653589793 rad + pos: -42.5,-10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 42 - - uid: 8069 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8694 components: - type: Transform - pos: -85.5,10.5 + rot: 3.141592653589793 rad + pos: -36.5,-15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 37 - - uid: 8070 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8695 components: - type: Transform - pos: -57.5,0.5 + rot: 3.141592653589793 rad + pos: -35.5,-14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 38 - - uid: 8071 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8696 components: - type: Transform - pos: -54.5,0.5 + pos: -14.5,3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 38 - - uid: 8072 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8697 components: - type: Transform - pos: -102.5,-11.5 + pos: -13.5,4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 44 - - uid: 8073 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8698 components: - type: Transform - pos: -102.5,-15.5 + rot: -1.5707963267948966 rad + pos: -13.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 44 - - uid: 8074 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8699 components: - type: Transform - pos: -102.5,-16.5 + rot: -1.5707963267948966 rad + pos: -14.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 44 - - uid: 8075 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8700 components: - type: Transform - pos: -99.5,-15.5 + rot: 1.5707963267948966 rad + pos: -26.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 44 - - uid: 8076 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8701 components: - type: Transform - pos: -110.5,-11.5 + rot: 1.5707963267948966 rad + pos: -27.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 44 - - 45 - - uid: 8077 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8702 components: - type: Transform - pos: -110.5,-10.5 + rot: -1.5707963267948966 rad + pos: -26.5,-15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 44 - - 45 - - uid: 8078 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8703 components: - type: Transform - pos: -110.5,-9.5 + rot: -1.5707963267948966 rad + pos: -27.5,-14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 44 - - 45 - - uid: 8079 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8704 components: - type: Transform - pos: -113.5,3.5 + rot: -1.5707963267948966 rad + pos: -154.5,10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 46 - - uid: 8080 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8705 components: - type: Transform - pos: -130.5,-8.5 + rot: 1.5707963267948966 rad + pos: -164.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 47 - - uid: 8081 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8706 components: - type: Transform - pos: -127.5,1.5 + rot: 3.141592653589793 rad + pos: -114.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 47 - - uid: 8082 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8707 components: - type: Transform - pos: -133.5,-0.5 + pos: -113.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 47 - - uid: 8083 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8708 components: - type: Transform - pos: -135.5,-0.5 + rot: -1.5707963267948966 rad + pos: -113.5,-14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 47 - - uid: 8084 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8709 components: - type: Transform - pos: -140.5,-0.5 + rot: 1.5707963267948966 rad + pos: -76.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 47 - - uid: 8085 + - uid: 8710 components: - type: Transform - pos: -138.5,3.5 + rot: -1.5707963267948966 rad + pos: -76.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 47 - - uid: 8086 + - uid: 8711 components: - type: Transform - pos: -150.5,8.5 + rot: 1.5707963267948966 rad + pos: -79.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 52 - - uid: 8087 + - uid: 8712 components: - type: Transform - pos: -148.5,1.5 + pos: -76.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - uid: 8088 + - uid: 8713 components: - type: Transform - pos: -160.5,1.5 + rot: 3.141592653589793 rad + pos: -76.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - uid: 8089 + - uid: 8714 components: - type: Transform - pos: -174.5,3.5 + rot: -1.5707963267948966 rad + pos: -73.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - 72 - - uid: 8090 + - uid: 8715 components: - type: Transform - pos: -168.5,2.5 + pos: -73.5,3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - uid: 8091 + - uid: 8716 components: - type: Transform - pos: -172.5,2.5 + rot: 1.5707963267948966 rad + pos: -77.5,3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - uid: 8092 + - uid: 8717 components: - type: Transform - pos: -164.5,2.5 + rot: 1.5707963267948966 rad + pos: -81.5,1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - uid: 8093 + - uid: 8718 components: - type: Transform rot: -1.5707963267948966 rad - pos: -200.5,4.5 + pos: -81.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 - - uid: 8094 + - uid: 8719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -192.5,4.5 + rot: 1.5707963267948966 rad + pos: -82.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 - - uid: 8095 + - uid: 8720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -195.5,5.5 + rot: 3.141592653589793 rad + pos: -81.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 - - uid: 8096 + - uid: 8721 components: - type: Transform rot: -1.5707963267948966 rad - pos: -197.5,5.5 + pos: -82.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 - - uid: 8097 + - uid: 8722 components: - type: Transform rot: -1.5707963267948966 rad - pos: -197.5,9.5 + pos: -73.5,-10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 - - uid: 8098 + - uid: 8723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -195.5,9.5 + rot: 3.141592653589793 rad + pos: -77.5,-10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 - - uid: 8099 + - uid: 8724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -193.5,11.5 + rot: 3.141592653589793 rad + pos: -14.5,-11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 - - uid: 8100 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8725 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -199.5,11.5 + pos: -13.5,-11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 - - uid: 8101 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8726 components: - type: Transform rot: -1.5707963267948966 rad - pos: -199.5,15.5 + pos: -164.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 - - uid: 8102 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -193.5,15.5 + rot: 1.5707963267948966 rad + pos: -14.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 - - uid: 8103 + - uid: 8728 components: - type: Transform rot: -1.5707963267948966 rad - pos: -200.5,22.5 + pos: -177.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 - - uid: 8104 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8729 components: - type: Transform rot: -1.5707963267948966 rad - pos: -192.5,22.5 + pos: -176.5,-19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 - - uid: 8105 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8730 components: - type: Transform - pos: -186.5,-21.5 + rot: 1.5707963267948966 rad + pos: -183.5,-19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 71 - - uid: 8106 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8731 components: - type: Transform - pos: -181.5,-19.5 + rot: -1.5707963267948966 rad + pos: -183.5,-20.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 71 - - uid: 8107 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8732 components: - type: Transform - pos: -191.5,-19.5 + pos: -187.5,-20.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 71 - - uid: 8108 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8733 components: - type: Transform - pos: -191.5,-13.5 + rot: 3.141592653589793 rad + pos: -189.5,-20.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 71 - - uid: 8109 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8734 components: - type: Transform - pos: -181.5,-13.5 + rot: 1.5707963267948966 rad + pos: -189.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 71 - - uid: 8110 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8735 components: - type: Transform - pos: -183.5,-11.5 + pos: -176.5,5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 71 - - uid: 8111 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8736 components: - type: Transform - pos: -187.5,-11.5 + rot: 3.141592653589793 rad + pos: -114.5,0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 71 - - uid: 8112 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8737 components: - type: Transform - pos: -186.5,-26.5 + rot: -1.5707963267948966 rad + pos: -115.5,0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 71 - - uid: 8113 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8738 components: - type: Transform - pos: -189.5,-23.5 + pos: -113.5,0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 71 - - uid: 8114 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8739 components: - type: Transform rot: 1.5707963267948966 rad - pos: -189.5,-24.5 + pos: -117.5,0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 71 - - uid: 8115 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8740 components: - type: Transform rot: 3.141592653589793 rad - pos: -114.5,-8.5 + pos: -117.5,-2.5 parent: 2 - - uid: 8116 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8741 components: - type: Transform - pos: -115.5,-8.5 + pos: -115.5,-2.5 parent: 2 - - uid: 8117 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8742 components: - type: Transform - pos: -178.5,-1.5 + rot: 1.5707963267948966 rad + pos: -114.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 72 -- proto: Fireplace - entities: - - uid: 8118 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8743 components: - type: Transform - pos: -111.5,0.5 + rot: -1.5707963267948966 rad + pos: -113.5,-2.5 parent: 2 -- proto: Flash - entities: - - uid: 8119 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8744 components: - type: Transform - pos: -0.857925,0.7344446 + rot: 3.141592653589793 rad + pos: -79.5,-5.5 parent: 2 -- proto: FlashlightLantern - entities: - - uid: 8120 + - uid: 8745 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.72208,-13.461885 + pos: -72.5,-4.5 parent: 2 -- proto: FloorDrain - entities: - - uid: 8121 + - uid: 8746 components: - type: Transform - rot: 3.141592653589793 rad - pos: -188.5,-27.5 + rot: 1.5707963267948966 rad + pos: -72.5,-3.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 8122 + - uid: 8747 components: - type: Transform - pos: -31.5,-11.5 + pos: -221.5,-2.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 8123 + - uid: 8748 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-9.5 + rot: 1.5707963267948966 rad + pos: -225.5,-19.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 8124 + - uid: 8749 components: - type: Transform - pos: -116.5,-15.5 + rot: 1.5707963267948966 rad + pos: -219.5,-12.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 8125 + - uid: 8750 components: - type: Transform - pos: -191.5,-24.5 + rot: -1.5707963267948966 rad + pos: -218.5,-12.5 parent: 2 - - type: Fixtures - fixtures: {} -- proto: FloraTree01 - entities: - - uid: 8126 + - uid: 8751 components: - type: Transform - pos: -30.097872,-0.34867907 + rot: 3.141592653589793 rad + pos: -219.5,-29.5 parent: 2 -- proto: FloraTree04 - entities: - - uid: 8127 + - uid: 8752 components: - type: Transform - pos: -23.893648,0.09524131 + rot: -1.5707963267948966 rad + pos: -218.5,-31.5 parent: 2 -- proto: FloraTree06 - entities: - - uid: 8128 + - uid: 8753 components: - type: Transform - pos: -39.268646,-6.350071 + pos: -218.5,-29.5 parent: 2 - - uid: 8129 + - uid: 8754 components: - type: Transform - pos: -33.550026,-6.443821 + rot: 3.141592653589793 rad + pos: -226.5,-30.5 parent: 2 -- proto: FoamCrossbow - entities: - - uid: 8130 + - uid: 8755 components: - - type: MetaData - name: маленький энергетический арбалет - type: Transform - pos: -111.50585,-15.407644 + rot: 1.5707963267948966 rad + pos: -226.5,-23.5 parent: 2 -- proto: FoodBadRecipe - entities: - - uid: 8131 + - uid: 8756 components: - type: Transform - pos: -129.64957,-22.217659 + rot: 3.141592653589793 rad + pos: -225.5,-31.5 parent: 2 - - uid: 8132 + - uid: 8757 components: - type: Transform - pos: -131.45644,-23.280159 + pos: -225.5,-30.5 parent: 2 - - uid: 8133 + - uid: 8758 components: - type: Transform - pos: -130.39394,-23.702034 + rot: -1.5707963267948966 rad + pos: -225.5,-23.5 parent: 2 - - uid: 8134 + - uid: 8759 components: - type: Transform - pos: -128.416,-22.686409 + pos: -222.5,-38.5 parent: 2 -- proto: FoodBoxDonkpocketSpicy - entities: - - uid: 8135 + - uid: 8760 components: - type: Transform - pos: -152.60112,5.506464 + rot: 1.5707963267948966 rad + pos: -206.5,12.5 parent: 2 -- proto: FoodBoxDonut +- proto: GasPipeFourway entities: - - uid: 8136 + - uid: 8761 components: - type: Transform - pos: -0.24720764,-3.2779045 + pos: -57.5,8.5 parent: 2 -- proto: FoodBreadSausageSlice - entities: - - uid: 8137 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8762 components: - type: Transform - pos: -84.44285,16.768156 + pos: -59.5,9.5 parent: 2 -- proto: FoodCakeSuppermatterSlice - entities: - - uid: 8138 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8763 components: - type: Transform - pos: -79.56075,3.5252805 + pos: -64.5,-4.5 parent: 2 -- proto: FoodDonutJellySlugcat - entities: - - uid: 6894 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8764 components: - type: Transform - parent: 6893 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 6895 + pos: -65.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8765 components: - type: Transform - parent: 6893 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 6896 + pos: -35.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8766 components: - type: Transform - parent: 6893 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 6897 + pos: -36.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8767 components: - type: Transform - parent: 6893 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 6898 + pos: -13.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8768 components: - type: Transform - parent: 6893 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 6899 + pos: -14.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8769 components: - type: Transform - parent: 6893 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 6900 + pos: -114.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8770 components: - type: Transform - parent: 6893 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 6901 + pos: -115.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8771 components: - type: Transform - parent: 6893 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 6902 + pos: -157.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8772 components: - type: Transform - parent: 6893 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 6903 + pos: -155.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8773 components: - type: Transform - parent: 6893 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage -- proto: FoodFrozenPopsicleBerry + pos: -196.5,8.5 + parent: 2 +- proto: GasPipeHalf entities: - - uid: 8140 + - uid: 8774 components: - type: Transform - parent: 8139 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodFrozenPopsicleJumbo - entities: - - uid: 7705 + rot: -1.5707963267948966 rad + pos: -224.5,-8.5 + parent: 2 + - uid: 8775 components: - type: Transform - parent: 7703 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8141 + rot: 1.5707963267948966 rad + pos: -222.5,-8.5 + parent: 2 + - uid: 8776 components: - type: Transform - parent: 8139 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodFrozenPopsicleOrange + rot: 1.5707963267948966 rad + pos: -224.5,-8.5 + parent: 2 +- proto: GasPipeStraight entities: - - uid: 7706 + - uid: 8777 components: - type: Transform - parent: 7703 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8142 + rot: 3.141592653589793 rad + pos: -198.5,3.5 + parent: 2 + - uid: 8778 components: - type: Transform - parent: 8139 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodFrozenSandwich - entities: - - uid: 7707 + rot: -1.5707963267948966 rad + pos: -190.5,5.5 + parent: 2 + - uid: 8779 components: - type: Transform - parent: 7703 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8143 + rot: 1.5707963267948966 rad + pos: -190.5,11.5 + parent: 2 + - uid: 8780 components: - type: Transform - parent: 8139 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodFrozenSandwichStrawberry - entities: - - uid: 7708 + pos: -206.5,7.5 + parent: 2 + - uid: 8781 components: - type: Transform - parent: 7703 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodFrozenSundae - entities: - - uid: 7709 + rot: 1.5707963267948966 rad + pos: -190.5,13.5 + parent: 2 + - uid: 8782 components: - type: Transform - parent: 7703 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8144 + rot: -1.5707963267948966 rad + pos: -203.5,4.5 + parent: 2 + - uid: 8783 components: - type: Transform - parent: 8139 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodMeat - entities: - - uid: 8146 + rot: -1.5707963267948966 rad + pos: -200.5,4.5 + parent: 2 + - uid: 8784 components: - type: Transform - parent: 8145 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8147 + rot: -1.5707963267948966 rad + pos: -198.5,4.5 + parent: 2 + - uid: 8785 components: - type: Transform - parent: 8145 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8148 + rot: -1.5707963267948966 rad + pos: -202.5,4.5 + parent: 2 + - uid: 8786 components: - type: Transform - parent: 8145 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8149 + rot: -1.5707963267948966 rad + pos: -199.5,4.5 + parent: 2 + - uid: 8787 components: - type: Transform - parent: 8145 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8150 + rot: 3.141592653589793 rad + pos: -196.5,5.5 + parent: 2 + - uid: 8788 components: - type: Transform - parent: 8145 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodMeatDuck - entities: - - uid: 8151 + rot: -1.5707963267948966 rad + pos: -201.5,4.5 + parent: 2 + - uid: 8789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -188.5,-24.5 + parent: 2 + - uid: 8790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -189.5,-24.5 + parent: 2 + - uid: 8791 components: - type: Transform - parent: 8145 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8152 + pos: -81.5,-0.5 + parent: 2 + - uid: 8792 components: - type: Transform - parent: 8145 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodMeatRat - entities: - - uid: 8153 + pos: -82.5,-3.5 + parent: 2 + - uid: 8793 components: - type: Transform - parent: 8145 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8154 + pos: -81.5,-4.5 + parent: 2 + - uid: 8794 components: - type: Transform - parent: 8145 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8155 + pos: -81.5,-6.5 + parent: 2 + - uid: 8795 components: - type: Transform - parent: 8145 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodMeatRatKebab - entities: - - uid: 8157 + rot: 1.5707963267948966 rad + pos: -71.5,-3.5 + parent: 2 + - uid: 8796 components: - - type: MetaData - desc: Жаренный пацюк. - name: Герсун на палочке - type: Transform - pos: -173.46657,-12.428167 + rot: -1.5707963267948966 rad + pos: -78.5,-8.5 parent: 2 -- proto: FoodOnionRed - entities: - - uid: 8158 + - uid: 8797 components: - type: Transform - pos: -56.317722,-5.2031655 + rot: -1.5707963267948966 rad + pos: -139.5,-5.5 parent: 2 - - uid: 8159 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8798 components: - type: Transform - pos: -56.21587,-5.2540917 + rot: -1.5707963267948966 rad + pos: -140.5,-2.5 parent: 2 - - uid: 8160 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8799 components: - type: Transform - pos: -56.299202,-5.332795 + rot: -1.5707963267948966 rad + pos: -141.5,-5.5 parent: 2 -- proto: FoodPieBananaCream - entities: - - uid: 8161 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8800 components: - type: Transform - pos: -122.29324,-7.271488 + rot: 3.141592653589793 rad + pos: -59.5,11.5 parent: 2 - - uid: 8162 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8801 components: - type: Transform - pos: -122.74637,-7.302738 + rot: -1.5707963267948966 rad + pos: -89.5,-4.5 parent: 2 - - uid: 8163 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8802 components: - type: Transform - pos: -122.29324,-7.583988 + rot: -1.5707963267948966 rad + pos: -52.5,-16.5 parent: 2 -- proto: FoodPlateSmall - entities: - - uid: 8164 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8803 components: - type: Transform - pos: -92.46372,-11.487034 + rot: -1.5707963267948966 rad + pos: -51.5,-15.5 parent: 2 - - uid: 8165 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8804 components: - type: Transform - pos: -155.69418,-18.522478 + rot: -1.5707963267948966 rad + pos: -51.5,-16.5 parent: 2 - - uid: 8166 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8805 components: - type: Transform - pos: -158.56918,-19.381853 + rot: -1.5707963267948966 rad + pos: -63.5,-16.5 parent: 2 -- proto: FoodPlateSmallPlastic - entities: - - uid: 8167 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8806 components: - type: Transform - rot: 3.141592653589793 rad - pos: -198.4961,12.519147 + rot: -1.5707963267948966 rad + pos: -73.5,23.5 parent: 2 - - uid: 8168 + - uid: 8807 components: - type: Transform - pos: -166.61713,-17.245853 + pos: -65.5,-3.5 parent: 2 - - uid: 8169 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8808 components: - type: Transform - pos: -166.60323,-17.329185 + pos: -64.5,-1.5 parent: 2 - - uid: 8170 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8809 components: - type: Transform - pos: -166.61713,-17.41252 + pos: -64.5,-3.5 parent: 2 -- proto: FoodSnackChips - entities: - - uid: 8171 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8810 components: - type: Transform - pos: -61.0851,-1.433073 + pos: -64.5,-0.5 parent: 2 - - uid: 8172 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8811 components: - type: Transform - pos: -58.20486,-3.4887223 + pos: -64.5,-2.5 parent: 2 -- proto: FoodSnackSemki - entities: - - uid: 8173 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8812 components: - type: Transform - pos: 4.5977674,0.53863215 + pos: -65.5,-5.5 parent: 2 -- proto: ForensicPad - entities: - - uid: 8174 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -148.53906,4.4672394 + pos: -65.5,-4.5 parent: 2 - - uid: 8175 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -148.61719,4.7172394 + pos: -65.5,-6.5 parent: 2 -- proto: Fork - entities: - - uid: 8176 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -92.47935,-11.799534 + pos: -64.5,0.5 parent: 2 - - uid: 8177 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8816 components: - - type: MetaData - desc: Чё мне это, вилкой всё чистить?? - type: Transform - rot: 1.5707963267948966 rad - pos: -161.96608,-15.382294 + pos: -64.5,2.5 parent: 2 - - uid: 8178 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8817 components: - type: Transform - pos: -166.24907,-17.419464 + pos: -64.5,1.5 parent: 2 - - uid: 8179 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8818 components: - type: Transform - pos: -166.13795,-17.419464 + pos: -64.5,3.5 parent: 2 - - uid: 8180 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8819 components: - type: Transform - pos: -166.20045,-17.419464 + pos: -35.5,-11.5 parent: 2 -- proto: GasAnalyzer - entities: - - uid: 8181 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8820 components: - type: Transform - pos: -12.516308,-11.485738 + pos: -64.5,-6.5 parent: 2 - - uid: 8182 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8821 components: - type: Transform - pos: -69.24948,-1.5710845 + pos: -64.5,-5.5 parent: 2 - - uid: 8183 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8822 components: - type: Transform - pos: -64.55722,5.525611 + pos: -64.5,-8.5 parent: 2 - - uid: 8184 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.4959255,0.40454245 + pos: -64.5,-7.5 parent: 2 - - uid: 8185 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8824 components: - type: Transform - pos: -80.396,2.5857391 + pos: -64.5,-9.5 parent: 2 -- proto: GasFilter - entities: - - uid: 8186 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,24.5 + pos: -64.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8187 + color: '#0055CCFF' + - uid: 8826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,24.5 + pos: -65.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8188 + - uid: 8827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,24.5 + pos: -64.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8189 + color: '#0055CCFF' + - uid: 8828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,24.5 + pos: -65.5,0.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8190 + - uid: 8829 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,24.5 + pos: -65.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8191 + - uid: 8830 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,19.5 + pos: -65.5,2.5 parent: 2 - - uid: 8192 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8831 components: - type: Transform - pos: -74.5,21.5 + pos: -65.5,1.5 parent: 2 -- proto: GasFilterFlipped - entities: - - uid: 8193 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8832 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,21.5 + pos: -65.5,3.5 parent: 2 - - uid: 8194 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8833 components: - type: Transform - pos: -73.5,-0.5 + pos: -105.5,-4.5 parent: 2 - - uid: 8195 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8834 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,-2.5 + pos: -106.5,-5.5 parent: 2 - - uid: 8196 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8835 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,-3.5 + pos: -105.5,-7.5 parent: 2 - - uid: 8197 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8836 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,-4.5 + pos: -105.5,-6.5 parent: 2 -- proto: GasMinerNitrogenStationLarge - entities: - - uid: 8198 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8837 components: - type: Transform - pos: -56.5,29.5 + pos: -105.5,-5.5 parent: 2 -- proto: GasMinerOxygenStationLarge - entities: - - uid: 8199 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8838 components: - type: Transform - pos: -59.5,29.5 + rot: 3.141592653589793 rad + pos: -114.5,-3.5 parent: 2 -- proto: GasMinerPlasma - entities: - - uid: 8200 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8839 components: - type: Transform - pos: -68.5,29.5 + rot: 3.141592653589793 rad + pos: -115.5,2.5 parent: 2 -- proto: GasMixer - entities: - - uid: 8201 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8840 components: - type: Transform rot: 3.141592653589793 rad - pos: -62.5,21.5 + pos: -115.5,1.5 parent: 2 - - uid: 8202 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,23.5 + rot: 3.141592653589793 rad + pos: -57.5,11.5 parent: 2 - - uid: 8203 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,23.5 + rot: 3.141592653589793 rad + pos: -154.5,11.5 parent: 2 - - uid: 8204 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,23.5 + rot: 3.141592653589793 rad + pos: -77.5,27.5 parent: 2 - - uid: 8205 + - uid: 8844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,23.5 + rot: 3.141592653589793 rad + pos: -77.5,26.5 parent: 2 - - uid: 8206 + - uid: 8845 components: - type: Transform rot: -1.5707963267948966 rad - pos: -77.5,23.5 + pos: -61.5,23.5 parent: 2 -- proto: GasMixerFlipped - entities: - - uid: 8207 + - uid: 8846 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,23.5 - parent: 2 - - type: GasMixer - inletTwoConcentration: 0.78 - inletOneConcentration: 0.22 -- proto: GasOutletInjector - entities: - - uid: 8208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,23.5 + pos: -62.5,23.5 parent: 2 - - uid: 8209 + - uid: 8847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,23.5 + rot: 3.141592653589793 rad + pos: -59.5,14.5 parent: 2 - - uid: 8210 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8848 components: - type: Transform - pos: -76.5,28.5 + rot: -1.5707963267948966 rad + pos: -60.5,23.5 parent: 2 - - uid: 8211 + - uid: 8849 components: - type: Transform - pos: -73.5,28.5 + rot: 3.141592653589793 rad + pos: -59.5,16.5 parent: 2 - - uid: 8212 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8850 components: - type: Transform - pos: -70.5,28.5 + rot: 3.141592653589793 rad + pos: -59.5,15.5 parent: 2 - - uid: 8213 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8851 components: - type: Transform - pos: -67.5,28.5 + rot: 3.141592653589793 rad + pos: -59.5,13.5 parent: 2 - - uid: 8214 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8852 components: - type: Transform - pos: -64.5,28.5 + rot: 3.141592653589793 rad + pos: -58.5,11.5 parent: 2 -- proto: GasPassiveVent - entities: - - uid: 8215 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,23.5 + rot: 3.141592653589793 rad + pos: -59.5,12.5 parent: 2 - - uid: 8216 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8854 components: - type: Transform - pos: -51.5,23.5 + rot: 3.141592653589793 rad + pos: -58.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8217 + color: '#A1A100FF' + - uid: 8855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,-5.5 + rot: 3.141592653589793 rad + pos: -58.5,16.5 parent: 2 - - uid: 8218 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8856 components: - type: Transform - pos: -77.5,-4.5 + rot: 3.141592653589793 rad + pos: -58.5,15.5 parent: 2 - - uid: 8219 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8857 components: - type: Transform - pos: -78.5,-4.5 + rot: 3.141592653589793 rad + pos: -58.5,12.5 parent: 2 - - uid: 8220 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8858 components: - type: Transform - pos: -79.5,-4.5 + rot: 3.141592653589793 rad + pos: -57.5,12.5 parent: 2 - - uid: 8221 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8859 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-15.5 + rot: 3.141592653589793 rad + pos: -59.5,10.5 parent: 2 - - uid: 8222 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8860 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-16.5 + pos: -58.5,13.5 parent: 2 - - uid: 8223 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8861 components: - type: Transform - pos: -56.5,28.5 + rot: 3.141592653589793 rad + pos: -57.5,13.5 parent: 2 - - uid: 8224 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8862 components: - type: Transform - pos: -59.5,28.5 + rot: 3.141592653589793 rad + pos: -58.5,10.5 parent: 2 - - uid: 8225 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8863 components: - type: Transform - pos: -65.5,28.5 + rot: 3.141592653589793 rad + pos: -58.5,8.5 parent: 2 - - uid: 8226 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8864 components: - type: Transform - pos: -68.5,28.5 + rot: 3.141592653589793 rad + pos: -76.5,25.5 parent: 2 - - uid: 8227 + - uid: 8865 components: - type: Transform - pos: -71.5,28.5 + rot: -1.5707963267948966 rad + pos: -57.5,7.5 parent: 2 - - uid: 8228 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8866 components: - type: Transform - pos: -74.5,28.5 + rot: 3.141592653589793 rad + pos: -56.5,5.5 parent: 2 - - uid: 8229 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8867 components: - type: Transform - pos: -77.5,28.5 + rot: 3.141592653589793 rad + pos: -56.5,6.5 parent: 2 - - uid: 8230 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8868 components: - type: Transform rot: 3.141592653589793 rad - pos: -200.5,15.5 + pos: -56.5,4.5 parent: 2 - - uid: 8231 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,24.5 + rot: 3.141592653589793 rad + pos: -56.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8232 + color: '#A1A100FF' + - uid: 8870 components: - type: Transform - pos: -198.5,25.5 + rot: 3.141592653589793 rad + pos: -56.5,1.5 parent: 2 - - uid: 8233 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8871 components: - type: Transform - pos: -194.5,25.5 + rot: 3.141592653589793 rad + pos: -56.5,2.5 parent: 2 -- proto: GasPipeBend - entities: - - uid: 8234 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8872 components: - type: Transform rot: 3.141592653589793 rad - pos: -142.5,-5.5 + pos: -56.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8235 + color: '#A1A100FF' + - uid: 8873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -138.5,-5.5 + rot: 3.141592653589793 rad + pos: -56.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8236 + color: '#A1A100FF' + - uid: 8874 components: - type: Transform - pos: -138.5,-2.5 + rot: 3.141592653589793 rad + pos: -56.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8237 + color: '#A1A100FF' + - uid: 8875 components: - type: Transform rot: 3.141592653589793 rad - pos: -138.5,-3.5 + pos: -56.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8238 + color: '#A1A100FF' + - uid: 8876 components: - type: Transform rot: 1.5707963267948966 rad - pos: -138.5,-4.5 + pos: -69.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8239 + - uid: 8877 components: - type: Transform rot: -1.5707963267948966 rad - pos: -142.5,-3.5 + pos: -70.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8240 + - uid: 8878 components: - type: Transform - pos: -142.5,-4.5 + rot: -1.5707963267948966 rad + pos: -57.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8241 + color: '#A1A100FF' + - uid: 8879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -142.5,-2.5 + rot: -1.5707963267948966 rad + pos: -65.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8242 + color: '#A1A100FF' + - uid: 8880 components: - type: Transform rot: -1.5707963267948966 rad - pos: -85.5,1.5 + pos: -60.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8243 + color: '#A1A100FF' + - uid: 8881 components: - type: Transform rot: -1.5707963267948966 rad - pos: -163.5,-9.5 + pos: -63.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8244 + color: '#A1A100FF' + - uid: 8882 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -163.5,-8.5 + rot: -1.5707963267948966 rad + pos: -58.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8245 + color: '#A1A100FF' + - uid: 8883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,-3.5 + rot: -1.5707963267948966 rad + pos: -61.5,-3.5 parent: 2 - - uid: 8246 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8884 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,17.5 + pos: -62.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#A1A100FF' - - uid: 8247 + - uid: 8885 components: - type: Transform rot: 3.141592653589793 rad - pos: -58.5,7.5 + pos: -57.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8248 + color: '#0055CCFF' + - uid: 8886 components: - type: Transform - pos: -56.5,7.5 + rot: -1.5707963267948966 rad + pos: -66.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#A1A100FF' - - uid: 8249 + - uid: 8887 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,-3.5 + pos: -64.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#A1A100FF' - - uid: 8250 + - uid: 8888 components: - type: Transform rot: -1.5707963267948966 rad - pos: -51.5,19.5 + pos: -59.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8251 + color: '#A1A100FF' + - uid: 8889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,19.5 + rot: 3.141592653589793 rad + pos: -57.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8252 + - uid: 8890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,14.5 + rot: 3.141592653589793 rad + pos: -57.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8253 + - uid: 8891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,14.5 + rot: 3.141592653589793 rad + pos: -57.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8254 + - uid: 8892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,24.5 + rot: 3.141592653589793 rad + pos: -56.5,27.5 parent: 2 - - uid: 8255 + - uid: 8893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,17.5 + rot: 3.141592653589793 rad + pos: -56.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8256 + - uid: 8894 components: - type: Transform - pos: -60.5,24.5 + rot: 3.141592653589793 rad + pos: -56.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8257 + - uid: 8895 components: - type: Transform rot: 3.141592653589793 rad - pos: -60.5,17.5 + pos: -59.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8258 + - uid: 8896 components: - type: Transform - pos: -59.5,17.5 + rot: 3.141592653589793 rad + pos: -59.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8259 + - uid: 8897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-4.5 + rot: 3.141592653589793 rad + pos: -59.5,25.5 parent: 2 - - uid: 8260 + - uid: 8898 components: - type: Transform rot: 3.141592653589793 rad - pos: -74.5,19.5 + pos: -65.5,27.5 parent: 2 - - uid: 8261 + - uid: 8899 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,19.5 + pos: -65.5,26.5 parent: 2 - - uid: 8262 + - uid: 8900 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,19.5 + rot: 3.141592653589793 rad + pos: -65.5,25.5 parent: 2 - - uid: 8263 + - uid: 8901 components: - type: Transform - pos: -67.5,22.5 + rot: 3.141592653589793 rad + pos: -77.5,25.5 parent: 2 - - uid: 8264 + - uid: 8902 components: - type: Transform - pos: -50.5,8.5 + rot: 3.141592653589793 rad + pos: -68.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8265 + - uid: 8903 components: - type: Transform - pos: -49.5,9.5 + rot: 3.141592653589793 rad + pos: -68.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8266 + - uid: 8904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-15.5 + rot: 3.141592653589793 rad + pos: -68.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8267 + - uid: 8905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-16.5 + rot: 3.141592653589793 rad + pos: -71.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8268 + - uid: 8906 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,-15.5 + pos: -71.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8269 + - uid: 8907 components: - type: Transform rot: 3.141592653589793 rad - pos: -85.5,-16.5 + pos: -71.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8270 + - uid: 8908 components: - type: Transform rot: 3.141592653589793 rad - pos: -85.5,-10.5 + pos: -74.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8271 + - uid: 8909 components: - type: Transform - pos: -84.5,-10.5 + rot: 3.141592653589793 rad + pos: -74.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8272 + - uid: 8910 components: - type: Transform - pos: -85.5,-11.5 + rot: 3.141592653589793 rad + pos: -74.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8273 + - uid: 8911 components: - type: Transform rot: 3.141592653589793 rad - pos: -86.5,-11.5 + pos: -76.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8274 + - uid: 8912 components: - type: Transform - pos: -86.5,-9.5 + rot: 3.141592653589793 rad + pos: -76.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8275 + - uid: 8913 components: - type: Transform - pos: -85.5,-8.5 + rot: 3.141592653589793 rad + pos: -73.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8276 + - uid: 8914 components: - type: Transform rot: 3.141592653589793 rad - pos: -87.5,-8.5 + pos: -73.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8277 + - uid: 8915 components: - type: Transform rot: 3.141592653589793 rad - pos: -88.5,-9.5 + pos: -73.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8278 + - uid: 8916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,1.5 + rot: 3.141592653589793 rad + pos: -70.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8279 + - uid: 8917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,2.5 + rot: 3.141592653589793 rad + pos: -70.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8280 + - uid: 8918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,25.5 + parent: 2 + - uid: 8919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,27.5 + parent: 2 + - uid: 8920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,26.5 + parent: 2 + - uid: 8921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,25.5 + parent: 2 + - uid: 8922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,27.5 + parent: 2 + - uid: 8923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,26.5 + parent: 2 + - uid: 8924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,25.5 + parent: 2 + - uid: 8925 components: - type: Transform rot: 1.5707963267948966 rad - pos: -85.5,2.5 + pos: -58.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8281 + - uid: 8926 components: - type: Transform rot: -1.5707963267948966 rad - pos: -86.5,2.5 + pos: -66.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8282 + - uid: 8927 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,3.5 + rot: -1.5707963267948966 rad + pos: -64.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8283 + - uid: 8928 components: - type: Transform rot: -1.5707963267948966 rad - pos: -84.5,2.5 + pos: -55.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8284 + - uid: 8929 components: - type: Transform rot: -1.5707963267948966 rad - pos: -85.5,3.5 + pos: -54.5,23.5 + parent: 2 + - uid: 8930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,23.5 + parent: 2 + - uid: 8931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8285 + color: '#0055CCFF' + - uid: 8932 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,9.5 + rot: 3.141592653589793 rad + pos: -51.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8286 + color: '#0055CCFF' + - uid: 8933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,8.5 + rot: 3.141592653589793 rad + pos: -51.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8287 + - uid: 8934 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-4.5 + rot: 1.5707963267948966 rad + pos: -52.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8288 + - uid: 8935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-2.5 + rot: 1.5707963267948966 rad + pos: -53.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8289 + color: '#0055CCFF' + - uid: 8936 components: - type: Transform - pos: -41.5,-0.5 + rot: 1.5707963267948966 rad + pos: -54.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8290 + color: '#0055CCFF' + - uid: 8937 components: - type: Transform - pos: -42.5,-1.5 + pos: -55.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8291 + - uid: 8938 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-9.5 + pos: -55.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8292 + color: '#0055CCFF' + - uid: 8939 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-10.5 + pos: -55.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8293 + - uid: 8940 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-15.5 + pos: -55.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8294 + - uid: 8941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,23.5 + parent: 2 + - uid: 8942 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-14.5 + rot: -1.5707963267948966 rad + pos: -63.5,24.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8295 + - uid: 8943 components: - type: Transform - pos: -14.5,3.5 + rot: -1.5707963267948966 rad + pos: -62.5,24.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8296 + - uid: 8944 components: - type: Transform - pos: -13.5,4.5 + rot: -1.5707963267948966 rad + pos: -63.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8297 + - uid: 8945 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-8.5 + pos: -65.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8298 + color: '#E32636FF' + - uid: 8946 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-7.5 + pos: -66.5,24.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8299 + - uid: 8947 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-8.5 + rot: -1.5707963267948966 rad + pos: -69.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8300 + color: '#E32636FF' + - uid: 8948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-7.5 + rot: -1.5707963267948966 rad + pos: -72.5,23.5 + parent: 2 + - uid: 8949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,24.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8301 + - uid: 8950 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-15.5 + pos: -71.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8302 + color: '#E32636FF' + - uid: 8951 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-14.5 + pos: -61.5,24.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8303 + - uid: 8952 components: - type: Transform rot: -1.5707963267948966 rad - pos: -154.5,10.5 + pos: -69.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8304 + - uid: 8953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -164.5,-7.5 + rot: -1.5707963267948966 rad + pos: -70.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8305 + - uid: 8954 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,-12.5 + rot: -1.5707963267948966 rad + pos: -68.5,24.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8306 + - uid: 8955 components: - type: Transform - pos: -113.5,-12.5 + rot: -1.5707963267948966 rad + pos: -74.5,24.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8307 + - uid: 8956 components: - type: Transform rot: -1.5707963267948966 rad - pos: -113.5,-14.5 + pos: -75.5,24.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8308 + - uid: 8957 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,-4.5 + rot: -1.5707963267948966 rad + pos: -77.5,24.5 parent: 2 - - uid: 8309 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8958 components: - type: Transform rot: -1.5707963267948966 rad - pos: -76.5,-5.5 + pos: -75.5,23.5 parent: 2 - - uid: 8310 + - uid: 8959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,-1.5 + rot: -1.5707963267948966 rad + pos: -76.5,23.5 parent: 2 - - uid: 8311 + - uid: 8960 components: - type: Transform - pos: -76.5,-1.5 + rot: -1.5707963267948966 rad + pos: -57.5,23.5 parent: 2 - - uid: 8312 + - uid: 8961 components: - type: Transform rot: 3.141592653589793 rad - pos: -76.5,-2.5 + pos: -57.5,22.5 parent: 2 - - uid: 8313 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-2.5 + rot: 3.141592653589793 rad + pos: -57.5,21.5 parent: 2 - - uid: 8314 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8963 components: - type: Transform - pos: -73.5,3.5 + rot: 3.141592653589793 rad + pos: -57.5,20.5 parent: 2 - - uid: 8315 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8964 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,3.5 + rot: 3.141592653589793 rad + pos: -57.5,19.5 parent: 2 - - uid: 8316 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8965 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,1.5 + rot: 3.141592653589793 rad + pos: -57.5,18.5 parent: 2 - - uid: 8317 + - type: AtmosPipeColor + color: '#A1A100FF' + - uid: 8966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-1.5 + pos: -49.5,8.5 parent: 2 - - uid: 8318 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,-1.5 + rot: -1.5707963267948966 rad + pos: -82.5,22.5 parent: 2 - - uid: 8319 + - uid: 8968 components: - type: Transform - pos: -81.5,-2.5 + pos: -60.5,18.5 parent: 2 - - uid: 8320 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8969 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-8.5 + pos: -60.5,20.5 parent: 2 - - uid: 8321 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-5.5 + pos: -60.5,21.5 parent: 2 - - uid: 8322 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-10.5 + pos: -60.5,22.5 parent: 2 - - uid: 8323 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8972 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,-10.5 + pos: -60.5,23.5 parent: 2 - - uid: 8324 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8973 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-11.5 + rot: -1.5707963267948966 rad + pos: -79.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8325 + color: '#E32636FF' + - uid: 8974 components: - type: Transform - pos: -13.5,-11.5 + rot: -1.5707963267948966 rad + pos: -79.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8326 + - uid: 8975 components: - type: Transform rot: -1.5707963267948966 rad - pos: -164.5,-12.5 + pos: -80.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8327 + - uid: 8976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-12.5 + rot: -1.5707963267948966 rad + pos: -82.5,23.5 parent: 2 - - uid: 8328 + - uid: 8977 components: - type: Transform rot: -1.5707963267948966 rad - pos: -177.5,-13.5 + pos: -81.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8329 + - uid: 8978 components: - type: Transform rot: -1.5707963267948966 rad - pos: -176.5,-19.5 + pos: -80.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8330 + - uid: 8979 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -183.5,-19.5 + rot: -1.5707963267948966 rad + pos: -79.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8331 + - uid: 8980 components: - type: Transform rot: -1.5707963267948966 rad - pos: -183.5,-20.5 + pos: -81.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8332 + - uid: 8981 components: - type: Transform - pos: -187.5,-20.5 + rot: 1.5707963267948966 rad + pos: -77.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8333 + - uid: 8982 components: - type: Transform - rot: 3.141592653589793 rad - pos: -189.5,-20.5 + rot: 1.5707963267948966 rad + pos: -76.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8334 + - uid: 8983 components: - type: Transform rot: 1.5707963267948966 rad - pos: -189.5,-13.5 + pos: -75.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8335 + - uid: 8984 components: - type: Transform rot: 3.141592653589793 rad - pos: -195.5,4.5 + pos: -67.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8336 + - uid: 8985 components: - type: Transform - pos: -186.5,11.5 + pos: -74.5,20.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8337 + - uid: 8986 components: - type: Transform - pos: -176.5,5.5 + rot: 1.5707963267948966 rad + pos: -73.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8338 + - uid: 8987 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,0.5 + rot: 1.5707963267948966 rad + pos: -72.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8339 + - uid: 8988 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,0.5 + rot: 1.5707963267948966 rad + pos: -70.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8340 + - uid: 8989 components: - type: Transform - pos: -113.5,0.5 + rot: 1.5707963267948966 rad + pos: -73.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8341 + - uid: 8990 components: - type: Transform rot: 1.5707963267948966 rad - pos: -117.5,0.5 + pos: -72.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8342 + - uid: 8991 components: - type: Transform - rot: 3.141592653589793 rad - pos: -117.5,-2.5 + rot: 1.5707963267948966 rad + pos: -71.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8343 + - uid: 8992 components: - type: Transform - pos: -115.5,-2.5 + rot: 1.5707963267948966 rad + pos: -70.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8344 + - uid: 8993 components: - type: Transform rot: 1.5707963267948966 rad - pos: -114.5,-2.5 + pos: -69.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8345 + - uid: 8994 components: - type: Transform rot: -1.5707963267948966 rad - pos: -113.5,-2.5 + pos: -69.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8346 + - uid: 8995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -198.5,23.5 + rot: 3.141592653589793 rad + pos: -68.5,20.5 parent: 2 - - uid: 8347 + - uid: 8996 components: - type: Transform rot: 3.141592653589793 rad - pos: -194.5,23.5 + pos: -68.5,21.5 parent: 2 - - uid: 8348 + - uid: 8997 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-5.5 + rot: 1.5707963267948966 rad + pos: -66.5,19.5 parent: 2 -- proto: GasPipeFourway - entities: - - uid: 8349 + - uid: 8998 components: - type: Transform - pos: -57.5,8.5 + rot: 1.5707963267948966 rad + pos: -65.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8350 + - uid: 8999 components: - type: Transform - pos: -59.5,9.5 + rot: 1.5707963267948966 rad + pos: -64.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8351 + - uid: 9000 components: - type: Transform - pos: -64.5,-4.5 + rot: 1.5707963267948966 rad + pos: -63.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8352 + - uid: 9001 components: - type: Transform - pos: -65.5,-2.5 + rot: 1.5707963267948966 rad + pos: -62.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8353 + - uid: 9002 components: - type: Transform - pos: -35.5,-9.5 + rot: 1.5707963267948966 rad + pos: -58.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8354 + - uid: 9003 components: - type: Transform - pos: -36.5,-10.5 + rot: 1.5707963267948966 rad + pos: -57.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8355 + color: '#E32636FF' + - uid: 9004 components: - type: Transform - pos: -13.5,-3.5 + rot: 1.5707963267948966 rad + pos: -56.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8356 + color: '#E32636FF' + - uid: 9005 components: - type: Transform - pos: -14.5,-2.5 + rot: 1.5707963267948966 rad + pos: -55.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8357 + - uid: 9006 components: - type: Transform - pos: -114.5,-4.5 + rot: 1.5707963267948966 rad + pos: -54.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8358 + - uid: 9007 components: - type: Transform - pos: -115.5,-3.5 + rot: 1.5707963267948966 rad + pos: -53.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8359 + color: '#E32636FF' + - uid: 9008 components: - type: Transform - pos: -157.5,-3.5 + rot: 1.5707963267948966 rad + pos: -52.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8360 + color: '#E32636FF' + - uid: 9009 components: - type: Transform - pos: -155.5,-4.5 + rot: 1.5707963267948966 rad + pos: -51.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' -- proto: GasPipeStraight - entities: - - uid: 8361 + - uid: 9010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-8.5 + rot: 1.5707963267948966 rad + pos: -50.5,9.5 parent: 2 - - uid: 8362 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9011 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -139.5,-5.5 + rot: 1.5707963267948966 rad + pos: -56.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8363 + color: '#0055CCFF' + - uid: 9012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -140.5,-2.5 + rot: 1.5707963267948966 rad + pos: -55.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8364 + - uid: 9013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -141.5,-5.5 + rot: 1.5707963267948966 rad + pos: -54.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8365 + color: '#0055CCFF' + - uid: 9014 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,11.5 + rot: 1.5707963267948966 rad + pos: -53.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8366 + color: '#0055CCFF' + - uid: 9015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-4.5 + rot: 1.5707963267948966 rad + pos: -52.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8367 + color: '#0055CCFF' + - uid: 9016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-16.5 + rot: 1.5707963267948966 rad + pos: -51.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8368 + color: '#0055CCFF' + - uid: 9017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-15.5 + pos: -50.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8369 + - uid: 9018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-16.5 + pos: -50.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8370 + color: '#0055CCFF' + - uid: 9019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-16.5 + pos: -50.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8371 + color: '#0055CCFF' + - uid: 9020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,23.5 + pos: -50.5,4.5 parent: 2 - - uid: 8372 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9021 components: - type: Transform - pos: -65.5,-3.5 + pos: -50.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8373 + color: '#0055CCFF' + - uid: 9022 components: - type: Transform - pos: -64.5,-1.5 + pos: -50.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8374 + - uid: 9023 components: - type: Transform - pos: -64.5,-3.5 + pos: -50.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8375 + - uid: 9024 components: - type: Transform - pos: -64.5,-0.5 + pos: -50.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8376 + - uid: 9025 components: - type: Transform - pos: -64.5,-2.5 + pos: -50.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8377 + - uid: 9026 components: - type: Transform - pos: -65.5,-5.5 + pos: -49.5,7.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8378 + - uid: 9027 components: - type: Transform - pos: -65.5,-4.5 + pos: -49.5,6.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8379 + - uid: 9028 components: - type: Transform - pos: -65.5,-6.5 + pos: -49.5,5.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8380 + - uid: 9029 components: - type: Transform - pos: -64.5,0.5 + pos: -49.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8381 + color: '#E32636FF' + - uid: 9030 components: - type: Transform - pos: -64.5,2.5 + pos: -49.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8382 + color: '#E32636FF' + - uid: 9031 components: - type: Transform - pos: -64.5,1.5 + pos: -49.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8383 + color: '#E32636FF' + - uid: 9032 components: - type: Transform - pos: -64.5,3.5 + pos: -49.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8384 + color: '#E32636FF' + - uid: 9033 components: - type: Transform - pos: -35.5,-11.5 + pos: -49.5,0.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8385 + - uid: 9034 components: - type: Transform - pos: -64.5,-6.5 + rot: 1.5707963267948966 rad + pos: -49.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8386 + - uid: 9035 components: - type: Transform - pos: -64.5,-5.5 + pos: -59.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8387 + color: '#E32636FF' + - uid: 9036 components: - type: Transform - pos: -64.5,-8.5 + rot: 1.5707963267948966 rad + pos: -43.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8388 + - uid: 9037 components: - type: Transform - pos: -64.5,-7.5 + rot: 1.5707963267948966 rad + pos: -43.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8389 + color: '#E32636FF' + - uid: 9038 components: - type: Transform - pos: -64.5,-9.5 + rot: 1.5707963267948966 rad + pos: -48.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8390 + - uid: 9039 components: - type: Transform - pos: -64.5,-10.5 + rot: 1.5707963267948966 rad + pos: -48.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8391 + - uid: 9041 components: - type: Transform - pos: -65.5,-1.5 + rot: 1.5707963267948966 rad + pos: -47.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8392 + - uid: 9042 components: - type: Transform - pos: -64.5,-11.5 + rot: 1.5707963267948966 rad + pos: -46.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8393 + - uid: 9043 components: - type: Transform - pos: -65.5,0.5 + rot: 1.5707963267948966 rad + pos: -46.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8394 + - uid: 9044 components: - type: Transform - pos: -65.5,-0.5 + rot: 1.5707963267948966 rad + pos: -45.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8395 + color: '#0055CCFF' + - uid: 9045 components: - type: Transform - pos: -65.5,2.5 + rot: 1.5707963267948966 rad + pos: -45.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8396 + - uid: 9046 components: - type: Transform - pos: -65.5,1.5 + rot: 1.5707963267948966 rad + pos: -44.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8397 + color: '#0055CCFF' + - uid: 9047 components: - type: Transform - pos: -65.5,3.5 + rot: 1.5707963267948966 rad + pos: -44.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8398 + - uid: 9048 components: - type: Transform - pos: -105.5,-4.5 + rot: 1.5707963267948966 rad + pos: -42.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8399 + color: '#E32636FF' + - uid: 9049 components: - type: Transform - pos: -106.5,-5.5 + pos: -41.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8400 + - uid: 9050 components: - type: Transform - pos: -105.5,-7.5 + pos: -42.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8401 + - uid: 9051 components: - type: Transform - pos: -105.5,-6.5 + pos: -42.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8402 + - uid: 9052 components: - type: Transform - pos: -105.5,-5.5 + pos: -42.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8403 + - uid: 9053 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,-3.5 + pos: -42.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8404 + color: '#0055CCFF' + - uid: 9054 components: - type: Transform - rot: 3.141592653589793 rad - pos: -115.5,2.5 + pos: -42.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8405 + - uid: 9055 components: - type: Transform - rot: 3.141592653589793 rad - pos: -115.5,1.5 + pos: -42.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8406 + - uid: 9056 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,11.5 + pos: -42.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8407 + - uid: 9057 components: - type: Transform - rot: 3.141592653589793 rad - pos: -154.5,11.5 + pos: -41.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8408 + color: '#E32636FF' + - uid: 9058 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,27.5 + pos: -41.5,-3.5 parent: 2 - - uid: 8409 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9059 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,26.5 + pos: -41.5,-4.5 parent: 2 - - uid: 8410 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9060 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,23.5 + pos: -41.5,-5.5 parent: 2 - - uid: 8411 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,23.5 + pos: -41.5,-6.5 parent: 2 - - uid: 8412 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9062 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,14.5 + pos: -41.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8413 + - uid: 9063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,23.5 + pos: -41.5,-8.5 parent: 2 - - uid: 8414 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9064 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,16.5 + pos: -49.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8415 + - uid: 9065 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,15.5 + pos: -50.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8416 + color: '#0055CCFF' + - uid: 9066 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,13.5 + pos: -50.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8417 + color: '#0055CCFF' + - uid: 9067 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,11.5 + pos: -49.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8418 + color: '#E32636FF' + - uid: 9068 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,12.5 + pos: -49.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8419 + - uid: 9069 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,14.5 + pos: -50.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8420 + color: '#0055CCFF' + - uid: 9070 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,16.5 + pos: -49.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8421 + color: '#E32636FF' + - uid: 9071 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,15.5 + pos: -49.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8422 + color: '#E32636FF' + - uid: 9072 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,12.5 + pos: -49.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8423 + color: '#E32636FF' + - uid: 9073 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,12.5 + pos: -49.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8424 + color: '#E32636FF' + - uid: 9074 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,10.5 + pos: -49.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8425 + - uid: 9075 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,13.5 + pos: -49.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8426 + color: '#E32636FF' + - uid: 9076 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,13.5 + pos: -49.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8427 + color: '#E32636FF' + - uid: 9077 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,10.5 + pos: -49.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8428 + color: '#E32636FF' + - uid: 9078 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,8.5 + pos: -49.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8429 + color: '#E32636FF' + - uid: 9079 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,25.5 + pos: -50.5,-4.5 parent: 2 - - uid: 8430 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,7.5 + pos: -50.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8431 + color: '#0055CCFF' + - uid: 9081 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,5.5 + pos: -50.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8432 + color: '#0055CCFF' + - uid: 9082 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,6.5 + pos: -50.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8433 + color: '#0055CCFF' + - uid: 9083 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,4.5 + pos: -50.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8434 + color: '#0055CCFF' + - uid: 9084 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,3.5 + pos: -50.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8435 + color: '#0055CCFF' + - uid: 9085 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,1.5 + pos: -50.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8436 + color: '#0055CCFF' + - uid: 9086 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,2.5 + pos: -50.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8437 + color: '#0055CCFF' + - uid: 9087 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-0.5 + pos: -50.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8438 + color: '#0055CCFF' + - uid: 9088 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,0.5 + pos: -50.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8439 + color: '#0055CCFF' + - uid: 9089 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-2.5 + pos: -49.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8440 + color: '#E32636FF' + - uid: 9090 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-1.5 + pos: -49.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8441 + color: '#E32636FF' + - uid: 9091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,-3.5 + pos: -49.5,-15.5 parent: 2 - - uid: 8442 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9092 components: - type: Transform rot: -1.5707963267948966 rad - pos: -70.5,-3.5 + pos: -50.5,-16.5 parent: 2 - - uid: 8443 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9093 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,-3.5 + pos: -52.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8444 + color: '#0055CCFF' + - uid: 9094 components: - type: Transform rot: -1.5707963267948966 rad - pos: -65.5,-3.5 + pos: -53.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8445 + color: '#E32636FF' + - uid: 9095 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-3.5 + pos: -53.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8446 + color: '#0055CCFF' + - uid: 9096 components: - type: Transform rot: -1.5707963267948966 rad - pos: -63.5,-3.5 + pos: -54.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8447 + color: '#E32636FF' + - uid: 9097 components: - type: Transform rot: -1.5707963267948966 rad - pos: -58.5,-3.5 + pos: -54.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8448 + color: '#0055CCFF' + - uid: 9098 components: - type: Transform rot: -1.5707963267948966 rad - pos: -61.5,-3.5 + pos: -55.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8449 + color: '#E32636FF' + - uid: 9099 components: - type: Transform rot: -1.5707963267948966 rad - pos: -62.5,-3.5 + pos: -55.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8450 + color: '#0055CCFF' + - uid: 9100 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,10.5 + rot: -1.5707963267948966 rad + pos: -56.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8451 + color: '#E32636FF' + - uid: 9101 components: - type: Transform rot: -1.5707963267948966 rad - pos: -66.5,-3.5 + pos: -56.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8452 + color: '#0055CCFF' + - uid: 9102 components: - type: Transform rot: -1.5707963267948966 rad - pos: -64.5,-3.5 + pos: -57.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8453 + color: '#E32636FF' + - uid: 9103 components: - type: Transform rot: -1.5707963267948966 rad - pos: -59.5,-3.5 + pos: -57.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8454 + color: '#0055CCFF' + - uid: 9104 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,9.5 + rot: -1.5707963267948966 rad + pos: -58.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8455 + - uid: 9106 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,7.5 + rot: -1.5707963267948966 rad + pos: -59.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8456 + color: '#E32636FF' + - uid: 9107 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,5.5 + rot: -1.5707963267948966 rad + pos: -59.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8457 + - uid: 9108 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,27.5 + rot: -1.5707963267948966 rad + pos: -60.5,-16.5 parent: 2 - - uid: 8458 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9109 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,26.5 + rot: -1.5707963267948966 rad + pos: -60.5,-15.5 parent: 2 - - uid: 8459 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9110 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,25.5 + rot: -1.5707963267948966 rad + pos: -61.5,-16.5 parent: 2 - - uid: 8460 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9111 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,26.5 + rot: -1.5707963267948966 rad + pos: -61.5,-15.5 parent: 2 - - uid: 8461 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9112 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,27.5 + rot: -1.5707963267948966 rad + pos: -62.5,-15.5 parent: 2 - - uid: 8462 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9113 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,25.5 + rot: -1.5707963267948966 rad + pos: -64.5,-15.5 parent: 2 - - uid: 8463 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9114 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,27.5 + rot: -1.5707963267948966 rad + pos: -64.5,-16.5 parent: 2 - - uid: 8464 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9115 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,26.5 + pos: -63.5,-16.5 parent: 2 - - uid: 8465 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9116 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,25.5 + pos: -63.5,-17.5 parent: 2 - - uid: 8466 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9117 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,25.5 + pos: -62.5,-17.5 parent: 2 - - uid: 8467 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9118 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,27.5 + pos: -62.5,-18.5 parent: 2 - - uid: 8468 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9119 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,26.5 + pos: -62.5,-19.5 parent: 2 - - uid: 8469 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9120 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,25.5 + pos: -62.5,-20.5 parent: 2 - - uid: 8470 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9121 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,27.5 + pos: -63.5,-18.5 parent: 2 - - uid: 8471 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9122 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,26.5 + pos: -63.5,-19.5 parent: 2 - - uid: 8472 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9123 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,25.5 + pos: -63.5,-20.5 parent: 2 - - uid: 8473 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9124 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,27.5 + rot: -1.5707963267948966 rad + pos: -65.5,-16.5 parent: 2 - - uid: 8474 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9125 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,26.5 + rot: -1.5707963267948966 rad + pos: -65.5,-15.5 parent: 2 - - uid: 8475 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9126 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,25.5 + rot: -1.5707963267948966 rad + pos: -66.5,-16.5 parent: 2 - - uid: 8476 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9127 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,26.5 + rot: -1.5707963267948966 rad + pos: -66.5,-15.5 parent: 2 - - uid: 8477 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9128 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,27.5 + rot: -1.5707963267948966 rad + pos: -67.5,-16.5 parent: 2 - - uid: 8478 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9129 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,27.5 + rot: -1.5707963267948966 rad + pos: -67.5,-15.5 parent: 2 - - uid: 8479 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9130 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,26.5 + rot: -1.5707963267948966 rad + pos: -68.5,-16.5 parent: 2 - - uid: 8480 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9131 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,25.5 + rot: -1.5707963267948966 rad + pos: -68.5,-15.5 parent: 2 - - uid: 8481 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9132 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,27.5 + rot: -1.5707963267948966 rad + pos: -69.5,-16.5 parent: 2 - - uid: 8482 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9133 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,26.5 + rot: -1.5707963267948966 rad + pos: -69.5,-15.5 parent: 2 - - uid: 8483 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9134 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,25.5 + rot: -1.5707963267948966 rad + pos: -75.5,-15.5 parent: 2 - - uid: 8484 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9135 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,27.5 + rot: -1.5707963267948966 rad + pos: -76.5,-16.5 parent: 2 - - uid: 8485 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9136 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,26.5 + rot: -1.5707963267948966 rad + pos: -76.5,-15.5 parent: 2 - - uid: 8486 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9137 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,25.5 + rot: -1.5707963267948966 rad + pos: -77.5,-16.5 parent: 2 - - uid: 8487 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9138 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,27.5 + rot: -1.5707963267948966 rad + pos: -77.5,-15.5 parent: 2 - - uid: 8488 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9139 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,26.5 + rot: -1.5707963267948966 rad + pos: -78.5,-16.5 parent: 2 - - uid: 8489 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,25.5 + rot: -1.5707963267948966 rad + pos: -78.5,-15.5 parent: 2 - - uid: 8490 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,23.5 + rot: -1.5707963267948966 rad + pos: -79.5,-16.5 parent: 2 - - uid: 8491 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9142 components: - type: Transform rot: -1.5707963267948966 rad - pos: -66.5,23.5 + pos: -79.5,-15.5 parent: 2 - - uid: 8492 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9143 components: - type: Transform rot: -1.5707963267948966 rad - pos: -64.5,23.5 + pos: -80.5,-16.5 parent: 2 - - uid: 8493 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9144 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.5,23.5 + pos: -80.5,-15.5 parent: 2 - - uid: 8494 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9145 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,23.5 + pos: -70.5,-16.5 parent: 2 - - uid: 8495 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9146 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.5,23.5 + pos: -70.5,-15.5 parent: 2 - - uid: 8496 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9147 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,22.5 + rot: -1.5707963267948966 rad + pos: -71.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8497 + - uid: 9148 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,21.5 + rot: -1.5707963267948966 rad + pos: -72.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8498 + color: '#E32636FF' + - uid: 9149 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,20.5 + rot: -1.5707963267948966 rad + pos: -72.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8499 + - uid: 9150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,19.5 + rot: -1.5707963267948966 rad + pos: -73.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8500 + color: '#E32636FF' + - uid: 9151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,19.5 + rot: -1.5707963267948966 rad + pos: -73.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8501 + - uid: 9152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,19.5 + rot: -1.5707963267948966 rad + pos: -74.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8502 + color: '#E32636FF' + - uid: 9153 components: - type: Transform - pos: -55.5,18.5 + rot: -1.5707963267948966 rad + pos: -74.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8503 + - uid: 9154 components: - type: Transform - pos: -55.5,17.5 + rot: -1.5707963267948966 rad + pos: -75.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8504 + color: '#E32636FF' + - uid: 9155 components: - type: Transform - pos: -55.5,16.5 + rot: -1.5707963267948966 rad + pos: -81.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8505 + color: '#E32636FF' + - uid: 9156 components: - type: Transform - pos: -55.5,15.5 + rot: -1.5707963267948966 rad + pos: -81.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8506 + - uid: 9157 components: - type: Transform rot: -1.5707963267948966 rad - pos: -67.5,23.5 + pos: -82.5,-16.5 parent: 2 - - uid: 8507 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9158 components: - type: Transform rot: -1.5707963267948966 rad - pos: -63.5,24.5 + pos: -82.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8508 + color: '#0055CCFF' + - uid: 9159 components: - type: Transform rot: -1.5707963267948966 rad - pos: -62.5,24.5 + pos: -83.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8509 + - uid: 9160 components: - type: Transform rot: -1.5707963267948966 rad - pos: -63.5,23.5 + pos: -83.5,-15.5 parent: 2 - - uid: 8510 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9161 components: - type: Transform rot: -1.5707963267948966 rad - pos: -65.5,24.5 + pos: -84.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8511 + - uid: 9162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,24.5 + rot: 3.141592653589793 rad + pos: -85.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8512 + - uid: 9163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,24.5 + rot: 3.141592653589793 rad + pos: -84.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8513 + color: '#0055CCFF' + - uid: 9164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,23.5 + rot: 3.141592653589793 rad + pos: -84.5,-13.5 parent: 2 - - uid: 8514 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,24.5 + rot: 3.141592653589793 rad + pos: -84.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8515 + color: '#0055CCFF' + - uid: 9166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,24.5 + rot: 3.141592653589793 rad + pos: -85.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8516 + - uid: 9167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,24.5 + rot: 3.141592653589793 rad + pos: -85.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8517 + - uid: 9168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,23.5 + rot: 3.141592653589793 rad + pos: -84.5,-11.5 parent: 2 - - uid: 8518 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,23.5 + rot: 3.141592653589793 rad + pos: -85.5,-12.5 parent: 2 - - uid: 8519 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,24.5 + pos: -85.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8520 + color: '#0055CCFF' + - uid: 9171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,24.5 + pos: -86.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8521 + - uid: 9172 components: - type: Transform rot: -1.5707963267948966 rad - pos: -75.5,24.5 + pos: -86.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8522 + color: '#0055CCFF' + - uid: 9173 components: - type: Transform rot: -1.5707963267948966 rad - pos: -77.5,24.5 + pos: -87.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8523 + - uid: 9174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,23.5 + rot: 3.141592653589793 rad + pos: -88.5,-8.5 parent: 2 - - uid: 8524 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,23.5 + rot: 3.141592653589793 rad + pos: -88.5,-7.5 parent: 2 - - uid: 8525 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,23.5 + rot: 3.141592653589793 rad + pos: -88.5,-6.5 parent: 2 - - uid: 8526 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9177 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,22.5 + pos: -88.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8527 + color: '#E32636FF' + - uid: 9178 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,21.5 + pos: -87.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8528 + color: '#0055CCFF' + - uid: 9179 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,20.5 + pos: -87.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8529 + color: '#0055CCFF' + - uid: 9180 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,19.5 + pos: -87.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8530 + color: '#0055CCFF' + - uid: 9181 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,18.5 + pos: -87.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 8531 + color: '#0055CCFF' + - uid: 9182 components: - type: Transform - pos: -49.5,8.5 + rot: 3.141592653589793 rad + pos: -87.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8532 + color: '#0055CCFF' + - uid: 9183 components: - type: Transform rot: -1.5707963267948966 rad - pos: -82.5,22.5 + pos: -88.5,-3.5 parent: 2 - - uid: 8533 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9184 components: - type: Transform - pos: -60.5,18.5 + rot: -1.5707963267948966 rad + pos: -89.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8534 + color: '#0055CCFF' + - uid: 9185 components: - type: Transform - pos: -60.5,20.5 + rot: -1.5707963267948966 rad + pos: -90.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8535 + - uid: 9186 components: - type: Transform - pos: -60.5,21.5 + rot: -1.5707963267948966 rad + pos: -90.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8536 + color: '#0055CCFF' + - uid: 9187 components: - type: Transform - pos: -60.5,22.5 + rot: -1.5707963267948966 rad + pos: -91.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8537 + - uid: 9188 components: - type: Transform - pos: -60.5,23.5 + rot: -1.5707963267948966 rad + pos: -91.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8538 + color: '#0055CCFF' + - uid: 9189 components: - type: Transform rot: -1.5707963267948966 rad - pos: -79.5,24.5 + pos: -92.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8539 + - uid: 9190 components: - type: Transform rot: -1.5707963267948966 rad - pos: -79.5,23.5 + pos: -92.5,-3.5 parent: 2 - - uid: 8540 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9191 components: - type: Transform rot: -1.5707963267948966 rad - pos: -80.5,23.5 + pos: -93.5,-4.5 parent: 2 - - uid: 8541 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9192 components: - type: Transform rot: -1.5707963267948966 rad - pos: -82.5,23.5 + pos: -93.5,-3.5 parent: 2 - - uid: 8542 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9193 components: - type: Transform rot: -1.5707963267948966 rad - pos: -81.5,22.5 + pos: -99.5,-3.5 parent: 2 - - uid: 8543 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9194 components: - type: Transform rot: -1.5707963267948966 rad - pos: -80.5,22.5 + pos: -94.5,-4.5 parent: 2 - - uid: 8544 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9195 components: - type: Transform rot: -1.5707963267948966 rad - pos: -79.5,22.5 + pos: -94.5,-3.5 parent: 2 - - uid: 8545 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9196 components: - type: Transform rot: -1.5707963267948966 rad - pos: -81.5,23.5 - parent: 2 - - uid: 8546 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,22.5 - parent: 2 - - uid: 8547 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,22.5 - parent: 2 - - uid: 8548 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,22.5 + pos: -95.5,-4.5 parent: 2 - - uid: 8549 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9197 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,20.5 + rot: -1.5707963267948966 rad + pos: -95.5,-3.5 parent: 2 - - uid: 8550 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9198 components: - type: Transform - pos: -74.5,20.5 + rot: -1.5707963267948966 rad + pos: -96.5,-4.5 parent: 2 - - uid: 8551 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,19.5 + rot: -1.5707963267948966 rad + pos: -96.5,-3.5 parent: 2 - - uid: 8552 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,19.5 + rot: -1.5707963267948966 rad + pos: -97.5,-4.5 parent: 2 - - uid: 8553 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,19.5 + rot: -1.5707963267948966 rad + pos: -97.5,-3.5 parent: 2 - - uid: 8554 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,22.5 + rot: -1.5707963267948966 rad + pos: -98.5,-4.5 parent: 2 - - uid: 8555 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,22.5 + rot: -1.5707963267948966 rad + pos: -98.5,-3.5 parent: 2 - - uid: 8556 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,22.5 + rot: -1.5707963267948966 rad + pos: -99.5,-4.5 parent: 2 - - uid: 8557 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,22.5 + rot: 3.141592653589793 rad + pos: -88.5,-3.5 parent: 2 - - uid: 8558 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,22.5 + rot: 3.141592653589793 rad + pos: -88.5,-2.5 parent: 2 - - uid: 8559 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9207 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,19.5 + rot: 3.141592653589793 rad + pos: -88.5,-1.5 parent: 2 - - uid: 8560 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9208 components: - type: Transform rot: 3.141592653589793 rad - pos: -68.5,20.5 + pos: -88.5,-0.5 parent: 2 - - uid: 8561 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9209 components: - type: Transform rot: 3.141592653589793 rad - pos: -68.5,21.5 + pos: -88.5,0.5 parent: 2 - - uid: 8562 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,19.5 + rot: 3.141592653589793 rad + pos: -87.5,-1.5 parent: 2 - - uid: 8563 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,19.5 + rot: 3.141592653589793 rad + pos: -87.5,-0.5 parent: 2 - - uid: 8564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,19.5 + rot: 3.141592653589793 rad + pos: -87.5,0.5 parent: 2 - - uid: 8565 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,19.5 + pos: -88.5,1.5 parent: 2 - - uid: 8566 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,19.5 + rot: -1.5707963267948966 rad + pos: -87.5,2.5 parent: 2 - - uid: 8567 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,9.5 + rot: -1.5707963267948966 rad + pos: -86.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8568 + color: '#0055CCFF' + - uid: 9216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,9.5 + rot: 3.141592653589793 rad + pos: -84.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8569 + color: '#0055CCFF' + - uid: 9217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,9.5 + rot: 3.141592653589793 rad + pos: -85.5,4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8570 + - uid: 9218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,9.5 + rot: 3.141592653589793 rad + pos: -85.5,5.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8571 + - uid: 9219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,9.5 + rot: 3.141592653589793 rad + pos: -85.5,6.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8572 + - uid: 9220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,9.5 + rot: 3.141592653589793 rad + pos: -85.5,7.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8573 + - uid: 9221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,9.5 + rot: 3.141592653589793 rad + pos: -85.5,8.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8574 + - uid: 9222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,9.5 + rot: 3.141592653589793 rad + pos: -84.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8575 + color: '#0055CCFF' + - uid: 9223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,9.5 + rot: 3.141592653589793 rad + pos: -84.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8576 + color: '#0055CCFF' + - uid: 9224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,8.5 + rot: 3.141592653589793 rad + pos: -84.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8577 + - uid: 9225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,8.5 + rot: 3.141592653589793 rad + pos: -84.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8578 + - uid: 9226 components: - type: Transform rot: 1.5707963267948966 rad - pos: -54.5,8.5 + pos: -84.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8579 + color: '#E32636FF' + - uid: 9227 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,8.5 + pos: -59.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8580 + - uid: 9228 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,8.5 + pos: -83.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8581 + color: '#E32636FF' + - uid: 9229 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,8.5 + pos: -83.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8582 + - uid: 9230 components: - type: Transform - pos: -50.5,7.5 + rot: 1.5707963267948966 rad + pos: -82.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8583 + color: '#E32636FF' + - uid: 9231 components: - type: Transform - pos: -50.5,6.5 + rot: 1.5707963267948966 rad + pos: -82.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8584 + - uid: 9232 components: - type: Transform - pos: -50.5,5.5 + rot: 1.5707963267948966 rad + pos: -81.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8585 + color: '#E32636FF' + - uid: 9233 components: - type: Transform - pos: -50.5,4.5 + rot: 1.5707963267948966 rad + pos: -81.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8586 + - uid: 9234 components: - type: Transform - pos: -50.5,3.5 + rot: 1.5707963267948966 rad + pos: -80.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8587 + color: '#E32636FF' + - uid: 9235 components: - type: Transform - pos: -50.5,2.5 + rot: 1.5707963267948966 rad + pos: -80.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8588 + - uid: 9236 components: - type: Transform - pos: -50.5,1.5 + rot: 1.5707963267948966 rad + pos: -79.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8589 + color: '#E32636FF' + - uid: 9237 components: - type: Transform - pos: -50.5,0.5 + rot: 1.5707963267948966 rad + pos: -79.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8590 + - uid: 9238 components: - type: Transform - pos: -50.5,-0.5 + rot: 1.5707963267948966 rad + pos: -62.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8591 + - uid: 9239 components: - type: Transform - pos: -49.5,7.5 + rot: 1.5707963267948966 rad + pos: -61.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8592 + - uid: 9240 components: - type: Transform - pos: -49.5,6.5 + rot: 1.5707963267948966 rad + pos: -61.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8593 + color: '#0055CCFF' + - uid: 9241 components: - type: Transform - pos: -49.5,5.5 + rot: 1.5707963267948966 rad + pos: -60.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8594 + - uid: 9242 components: - type: Transform - pos: -49.5,4.5 + rot: 1.5707963267948966 rad + pos: -60.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8595 + color: '#0055CCFF' + - uid: 9243 components: - type: Transform - pos: -49.5,3.5 + rot: 1.5707963267948966 rad + pos: -73.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8596 + color: '#0055CCFF' + - uid: 9244 components: - type: Transform - pos: -49.5,2.5 + rot: 1.5707963267948966 rad + pos: -72.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8597 + - uid: 9245 components: - type: Transform - pos: -49.5,1.5 + rot: 1.5707963267948966 rad + pos: -72.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8598 + color: '#0055CCFF' + - uid: 9246 components: - type: Transform - pos: -49.5,0.5 + rot: 1.5707963267948966 rad + pos: -71.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8599 + - uid: 9247 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-1.5 + pos: -71.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8600 + - uid: 9248 components: - type: Transform - pos: -59.5,5.5 + rot: 1.5707963267948966 rad + pos: -70.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8601 + - uid: 9249 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-1.5 + pos: -70.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8602 + - uid: 9250 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-0.5 + pos: -69.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8603 + - uid: 9251 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,-1.5 + pos: -69.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8604 + - uid: 9252 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,-0.5 + pos: -68.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8605 + - uid: 9253 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,-1.5 + pos: -68.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8606 + - uid: 9254 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,-0.5 + pos: -67.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8607 + - uid: 9255 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-1.5 + pos: -67.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8608 + - uid: 9256 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-0.5 + pos: -66.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8609 + - uid: 9257 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,-1.5 + pos: -66.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8610 + - uid: 9258 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,-0.5 + pos: -65.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8611 + - uid: 9259 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-1.5 + pos: -65.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8612 + - uid: 9260 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-0.5 + pos: -64.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8613 + - uid: 9261 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-0.5 + pos: -64.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8614 + color: '#0055CCFF' + - uid: 9262 components: - type: Transform - pos: -41.5,-1.5 + rot: 1.5707963267948966 rad + pos: -63.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8615 + - uid: 9263 components: - type: Transform - pos: -42.5,-2.5 + rot: 1.5707963267948966 rad + pos: -63.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8616 + - uid: 9264 components: - type: Transform - pos: -42.5,-3.5 + rot: 1.5707963267948966 rad + pos: -62.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8617 + color: '#E32636FF' + - uid: 9265 components: - type: Transform - pos: -42.5,-4.5 + rot: 1.5707963267948966 rad + pos: -78.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8618 + color: '#E32636FF' + - uid: 9266 components: - type: Transform - pos: -42.5,-5.5 + rot: 1.5707963267948966 rad + pos: -78.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8619 + - uid: 9267 components: - type: Transform - pos: -42.5,-6.5 + rot: 1.5707963267948966 rad + pos: -77.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8620 + - uid: 9268 components: - type: Transform - pos: -42.5,-7.5 + rot: 1.5707963267948966 rad + pos: -76.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8621 + color: '#E32636FF' + - uid: 9269 components: - type: Transform - pos: -42.5,-8.5 + rot: 1.5707963267948966 rad + pos: -76.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8622 + - uid: 9270 components: - type: Transform - pos: -41.5,-2.5 + rot: 1.5707963267948966 rad + pos: -75.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8623 + - uid: 9271 components: - type: Transform - pos: -41.5,-3.5 + rot: 1.5707963267948966 rad + pos: -75.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8624 + color: '#0055CCFF' + - uid: 9272 components: - type: Transform - pos: -41.5,-4.5 + rot: 1.5707963267948966 rad + pos: -74.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8625 + - uid: 9273 components: - type: Transform - pos: -41.5,-5.5 + rot: 1.5707963267948966 rad + pos: -74.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8626 + color: '#0055CCFF' + - uid: 9274 components: - type: Transform - pos: -41.5,-6.5 + rot: 1.5707963267948966 rad + pos: -73.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8627 + - uid: 9275 components: - type: Transform - pos: -41.5,-7.5 + rot: 1.5707963267948966 rad + pos: -58.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8628 + color: '#0055CCFF' + - uid: 9276 components: - type: Transform - pos: -41.5,-8.5 + pos: -59.5,8.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8629 + - uid: 9277 components: - type: Transform - pos: -49.5,-1.5 + pos: -59.5,7.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8630 + - uid: 9278 components: - type: Transform - pos: -50.5,-3.5 + rot: -1.5707963267948966 rad + pos: -60.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8631 + color: '#E32636FF' + - uid: 9279 components: - type: Transform - pos: -50.5,-2.5 + pos: -57.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8632 + - uid: 9280 components: - type: Transform - pos: -49.5,-3.5 + pos: -59.5,4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8633 + - uid: 9281 components: - type: Transform - pos: -49.5,-2.5 + pos: -59.5,3.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8634 + - uid: 9282 components: - type: Transform - pos: -50.5,-14.5 + pos: -59.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8635 + color: '#E32636FF' + - uid: 9283 components: - type: Transform - pos: -49.5,-4.5 + pos: -59.5,1.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8636 + - uid: 9284 components: - type: Transform - pos: -49.5,-5.5 + pos: -59.5,0.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8637 + - uid: 9285 components: - type: Transform - pos: -49.5,-6.5 + rot: -1.5707963267948966 rad + pos: -58.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8638 + color: '#0055CCFF' + - uid: 9286 components: - type: Transform - pos: -49.5,-7.5 + rot: -1.5707963267948966 rad + pos: -59.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8639 + color: '#0055CCFF' + - uid: 9287 components: - type: Transform - pos: -49.5,-8.5 + rot: 3.141592653589793 rad + pos: -57.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8640 + color: '#0055CCFF' + - uid: 9288 components: - type: Transform - pos: -49.5,-9.5 + rot: 3.141592653589793 rad + pos: -57.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8641 + color: '#0055CCFF' + - uid: 9289 components: - type: Transform - pos: -49.5,-10.5 + rot: 3.141592653589793 rad + pos: -57.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8642 + color: '#0055CCFF' + - uid: 9290 components: - type: Transform - pos: -49.5,-11.5 + rot: 3.141592653589793 rad + pos: -59.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8643 + - uid: 9291 components: - type: Transform - pos: -49.5,-12.5 + rot: 3.141592653589793 rad + pos: -59.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8644 + - uid: 9292 components: - type: Transform - pos: -50.5,-4.5 + rot: -1.5707963267948966 rad + pos: -58.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8645 + - uid: 9293 components: - type: Transform - pos: -50.5,-5.5 + rot: -1.5707963267948966 rad + pos: -59.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8646 + - uid: 9294 components: - type: Transform - pos: -50.5,-6.5 + rot: 3.141592653589793 rad + pos: -57.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8647 + - uid: 9295 components: - type: Transform - pos: -50.5,-7.5 + rot: 3.141592653589793 rad + pos: -57.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8648 + - uid: 9296 components: - type: Transform - pos: -50.5,-8.5 + rot: 3.141592653589793 rad + pos: -57.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8649 + - uid: 9297 components: - type: Transform - pos: -50.5,-9.5 + rot: 3.141592653589793 rad + pos: -57.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8650 + - uid: 9298 components: - type: Transform - pos: -50.5,-10.5 + rot: -1.5707963267948966 rad + pos: -60.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8651 + - uid: 9299 components: - type: Transform - pos: -50.5,-11.5 + rot: -1.5707963267948966 rad + pos: -61.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8652 + - uid: 9300 components: - type: Transform - pos: -50.5,-12.5 + rot: -1.5707963267948966 rad + pos: -62.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8653 + - uid: 9301 components: - type: Transform - pos: -50.5,-13.5 + rot: -1.5707963267948966 rad + pos: -63.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8654 - components: - - type: Transform - pos: -49.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8655 + - uid: 9302 components: - type: Transform - pos: -49.5,-14.5 + rot: -1.5707963267948966 rad + pos: -61.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8656 + - uid: 9303 components: - type: Transform - pos: -49.5,-15.5 + rot: -1.5707963267948966 rad + pos: -62.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8657 + - uid: 9304 components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.5,-16.5 + pos: -63.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8658 + - uid: 9305 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,-15.5 + pos: -64.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8659 + color: '#E32636FF' + - uid: 9306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-16.5 + pos: -65.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8660 + - uid: 9307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-15.5 + pos: -65.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8661 + color: '#E32636FF' + - uid: 9308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-16.5 + pos: -65.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8662 + - uid: 9309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-15.5 + pos: -65.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8663 + color: '#E32636FF' + - uid: 9310 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-16.5 + pos: -65.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8664 + - uid: 9311 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.5,-15.5 + pos: -66.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8665 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8666 + - uid: 9312 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,-15.5 + pos: -65.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8667 + - uid: 9313 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,-16.5 + pos: -67.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8668 + color: '#0055CCFF' + - uid: 9314 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,-15.5 + pos: -68.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8669 + - uid: 9315 components: - type: Transform rot: -1.5707963267948966 rad - pos: -58.5,-16.5 + pos: -69.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8670 + color: '#0055CCFF' + - uid: 9316 components: - type: Transform rot: -1.5707963267948966 rad - pos: -58.5,-15.5 + pos: -70.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8671 + - uid: 9317 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-16.5 + rot: 1.5707963267948966 rad + pos: -36.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8672 + - uid: 9318 components: - type: Transform rot: -1.5707963267948966 rad - pos: -59.5,-15.5 + pos: -66.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8673 + color: '#E32636FF' + - uid: 9319 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-16.5 + pos: -67.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8674 + - uid: 9320 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-15.5 + pos: -68.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8675 + color: '#E32636FF' + - uid: 9321 components: - type: Transform rot: -1.5707963267948966 rad - pos: -61.5,-16.5 + pos: -69.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8676 + - uid: 9322 components: - type: Transform rot: -1.5707963267948966 rad - pos: -61.5,-15.5 + pos: -70.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8677 + color: '#E32636FF' + - uid: 9323 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-15.5 + rot: 3.141592653589793 rad + pos: -59.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8678 + color: '#E32636FF' + - uid: 9324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-15.5 + rot: 3.141592653589793 rad + pos: -42.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8679 + - uid: 9325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-16.5 + rot: 1.5707963267948966 rad + pos: -41.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8680 + color: '#0055CCFF' + - uid: 9326 components: - type: Transform - pos: -63.5,-16.5 + rot: 1.5707963267948966 rad + pos: -40.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8681 + - uid: 9327 components: - type: Transform - pos: -63.5,-17.5 + rot: 1.5707963267948966 rad + pos: -39.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8682 + - uid: 9328 components: - type: Transform - pos: -62.5,-17.5 + rot: 1.5707963267948966 rad + pos: -40.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8683 + - uid: 9329 components: - type: Transform - pos: -62.5,-18.5 + rot: 1.5707963267948966 rad + pos: -39.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8684 + - uid: 9330 components: - type: Transform - pos: -62.5,-19.5 + rot: 1.5707963267948966 rad + pos: -38.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8685 + - uid: 9331 components: - type: Transform - pos: -62.5,-20.5 + rot: 1.5707963267948966 rad + pos: -37.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8686 - components: - - type: Transform - pos: -63.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8687 + - uid: 9332 components: - type: Transform - pos: -63.5,-19.5 + rot: 1.5707963267948966 rad + pos: -38.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8688 + - uid: 9333 components: - type: Transform - pos: -63.5,-20.5 + rot: 1.5707963267948966 rad + pos: -37.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8689 + - uid: 9334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-16.5 + rot: 1.5707963267948966 rad + pos: -34.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8690 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8691 + - uid: 9335 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-16.5 + rot: 1.5707963267948966 rad + pos: -33.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8692 + - uid: 9336 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-15.5 + rot: 1.5707963267948966 rad + pos: -31.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8693 + color: '#E32636FF' + - uid: 9337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-16.5 + rot: 1.5707963267948966 rad + pos: -32.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8694 + - uid: 9338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-15.5 + rot: 1.5707963267948966 rad + pos: -35.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8696 + - uid: 9339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,-15.5 + rot: 1.5707963267948966 rad + pos: -34.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8697 + - uid: 9340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-16.5 + rot: 1.5707963267948966 rad + pos: -33.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8698 + color: '#0055CCFF' + - uid: 9341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-15.5 + rot: 1.5707963267948966 rad + pos: -32.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8699 + - uid: 9342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-15.5 + rot: 1.5707963267948966 rad + pos: -31.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8700 + - uid: 9343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-16.5 + pos: -35.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8701 + - uid: 9344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-15.5 + pos: -36.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8702 + - uid: 9345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-16.5 + pos: -35.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8703 + - uid: 9346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-15.5 + pos: -35.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8704 + color: '#E32636FF' + - uid: 9347 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-16.5 + pos: -35.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8705 + - uid: 9348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-15.5 + pos: -35.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8706 + color: '#E32636FF' + - uid: 9349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-16.5 + pos: -36.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8707 + color: '#0055CCFF' + - uid: 9350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-15.5 + pos: -36.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8708 + - uid: 9351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-16.5 + pos: -36.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8709 + color: '#0055CCFF' + - uid: 9352 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-15.5 + pos: -36.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8710 + - uid: 9353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,-16.5 + pos: -35.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8711 + - uid: 9354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,-15.5 + pos: -35.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8712 + color: '#E32636FF' + - uid: 9355 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-15.5 + pos: -35.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8713 + color: '#E32636FF' + - uid: 9356 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,-16.5 + pos: -35.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8714 + - uid: 9357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,-15.5 + pos: -35.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8715 + color: '#E32636FF' + - uid: 9358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-16.5 + pos: -35.5,0.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8716 + - uid: 9359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-15.5 + pos: -35.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8717 + color: '#E32636FF' + - uid: 9360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-16.5 + pos: -35.5,2.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8718 + - uid: 9361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-15.5 + pos: -36.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8719 + - uid: 9362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-16.5 + pos: -36.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8720 + color: '#0055CCFF' + - uid: 9363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-16.5 + pos: -36.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8721 + color: '#0055CCFF' + - uid: 9364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-15.5 + pos: -36.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8722 + - uid: 9365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-16.5 + pos: -36.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8723 + color: '#0055CCFF' + - uid: 9366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-15.5 + pos: -36.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8724 + - uid: 9367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-16.5 + pos: -36.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8725 + color: '#0055CCFF' + - uid: 9368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-15.5 + pos: -36.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8726 + - uid: 9369 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,-16.5 + pos: -35.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8727 + - uid: 9370 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-15.5 + pos: -35.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8728 + - uid: 9371 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,-14.5 + pos: -36.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8729 + - uid: 9372 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,-13.5 + pos: -36.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8730 + - uid: 9373 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,-12.5 + pos: -36.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8731 + - uid: 9374 components: - type: Transform rot: 3.141592653589793 rad - pos: -85.5,-14.5 + pos: -36.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8732 + color: '#0055CCFF' + - uid: 9375 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-13.5 + rot: 1.5707963267948966 rad + pos: -35.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8733 + color: '#0055CCFF' + - uid: 9376 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,-11.5 + rot: 1.5707963267948966 rad + pos: -29.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8734 + - uid: 9377 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-12.5 + rot: 1.5707963267948966 rad + pos: -29.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8735 + - uid: 9378 components: - type: Transform - pos: -85.5,-9.5 + rot: 1.5707963267948966 rad + pos: -28.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8736 + - uid: 9379 components: - type: Transform - pos: -86.5,-10.5 + rot: 1.5707963267948966 rad + pos: -28.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8737 + - uid: 9380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,-8.5 + rot: 1.5707963267948966 rad + pos: -34.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8738 + - uid: 9381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,-9.5 + rot: 1.5707963267948966 rad + pos: -34.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8739 + - uid: 9382 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-8.5 + rot: 1.5707963267948966 rad + pos: -33.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8740 + color: '#0055CCFF' + - uid: 9383 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-7.5 + rot: 1.5707963267948966 rad + pos: -33.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8741 + - uid: 9384 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-6.5 + rot: 1.5707963267948966 rad + pos: -32.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8742 + color: '#0055CCFF' + - uid: 9385 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-5.5 + rot: 1.5707963267948966 rad + pos: -32.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8743 + - uid: 9386 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-7.5 + rot: 1.5707963267948966 rad + pos: -31.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8744 + - uid: 9387 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-6.5 + rot: 1.5707963267948966 rad + pos: -31.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8745 + color: '#E32636FF' + - uid: 9388 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-5.5 + rot: 1.5707963267948966 rad + pos: -30.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8746 + - uid: 9389 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-4.5 + rot: 1.5707963267948966 rad + pos: -30.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8747 + color: '#E32636FF' + - uid: 9390 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-2.5 + rot: 1.5707963267948966 rad + pos: -27.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8748 + - uid: 9391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,-3.5 + pos: -26.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8749 + - uid: 9392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-3.5 + pos: -27.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8750 + color: '#E32636FF' + - uid: 9393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,-4.5 + pos: -27.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8751 + - uid: 9394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,-3.5 + pos: -26.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8752 + - uid: 9395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,-4.5 + pos: -26.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8753 + color: '#0055CCFF' + - uid: 9396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,-3.5 + pos: -26.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8754 + - uid: 9397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,-4.5 + pos: -27.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8755 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8756 + - uid: 9398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,-4.5 + pos: -27.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8757 + - uid: 9399 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,-3.5 + pos: -26.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8758 + - uid: 9400 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,-3.5 + pos: -27.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8759 + color: '#E32636FF' + - uid: 9401 components: - type: Transform rot: -1.5707963267948966 rad - pos: -94.5,-4.5 + pos: -26.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8760 + - uid: 9402 components: - type: Transform rot: -1.5707963267948966 rad - pos: -94.5,-3.5 + pos: -25.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8761 + - uid: 9403 components: - type: Transform rot: -1.5707963267948966 rad - pos: -95.5,-4.5 + pos: -25.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8762 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -95.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8763 + - uid: 9404 components: - type: Transform rot: -1.5707963267948966 rad - pos: -96.5,-4.5 + pos: -24.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8764 + - uid: 9405 components: - type: Transform rot: -1.5707963267948966 rad - pos: -96.5,-3.5 + pos: -24.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8765 + - uid: 9406 components: - type: Transform rot: -1.5707963267948966 rad - pos: -97.5,-4.5 + pos: -23.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8766 + - uid: 9407 components: - type: Transform rot: -1.5707963267948966 rad - pos: -97.5,-3.5 + pos: -23.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8767 + - uid: 9408 components: - type: Transform rot: -1.5707963267948966 rad - pos: -98.5,-4.5 + pos: -22.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8768 + - uid: 9409 components: - type: Transform rot: -1.5707963267948966 rad - pos: -98.5,-3.5 + pos: -22.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8769 + - uid: 9410 components: - type: Transform rot: -1.5707963267948966 rad - pos: -99.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-3.5 + pos: -21.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8771 + - uid: 9411 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-2.5 + rot: -1.5707963267948966 rad + pos: -21.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8772 + color: '#0055CCFF' + - uid: 9412 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-1.5 + rot: -1.5707963267948966 rad + pos: -20.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8773 + - uid: 9413 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-0.5 + rot: -1.5707963267948966 rad + pos: -20.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8774 + color: '#0055CCFF' + - uid: 9414 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,0.5 + rot: -1.5707963267948966 rad + pos: -19.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8775 + - uid: 9415 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-1.5 + rot: -1.5707963267948966 rad + pos: -19.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8776 + - uid: 9416 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-0.5 + rot: -1.5707963267948966 rad + pos: -18.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8777 + color: '#E32636FF' + - uid: 9417 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,0.5 + rot: -1.5707963267948966 rad + pos: -18.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8778 - components: - - type: Transform - pos: -88.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8779 + - uid: 9418 components: - type: Transform rot: -1.5707963267948966 rad - pos: -87.5,2.5 + pos: -17.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8780 + - uid: 9419 components: - type: Transform rot: -1.5707963267948966 rad - pos: -86.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8781 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,3.5 + pos: -17.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8782 + - uid: 9420 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,4.5 + rot: -1.5707963267948966 rad + pos: -16.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8783 + - uid: 9421 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,5.5 + rot: -1.5707963267948966 rad + pos: -16.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8784 + color: '#0055CCFF' + - uid: 9422 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,6.5 + rot: -1.5707963267948966 rad + pos: -15.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8785 + - uid: 9423 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,7.5 + rot: -1.5707963267948966 rad + pos: -15.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8786 + color: '#0055CCFF' + - uid: 9424 components: - type: Transform rot: 3.141592653589793 rad - pos: -85.5,8.5 + pos: -13.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8787 + color: '#0055CCFF' + - uid: 9425 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,4.5 + pos: -14.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8788 + color: '#E32636FF' + - uid: 9426 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,5.5 + pos: -13.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8789 + - uid: 9427 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,6.5 + pos: -13.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8790 + - uid: 9428 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,7.5 + pos: -13.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8791 + - uid: 9429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,9.5 + rot: 3.141592653589793 rad + pos: -14.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8792 + - uid: 9430 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,8.5 + rot: 3.141592653589793 rad + pos: -14.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8793 + color: '#E32636FF' + - uid: 9431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,9.5 + rot: 3.141592653589793 rad + pos: -14.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8794 + - uid: 9432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,8.5 + rot: 3.141592653589793 rad + pos: -13.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8795 + - uid: 9433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,9.5 + rot: 3.141592653589793 rad + pos: -14.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8796 + - uid: 9434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,8.5 + rot: 3.141592653589793 rad + pos: -13.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8797 + - uid: 9435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,9.5 + rot: 3.141592653589793 rad + pos: -13.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8798 + color: '#0055CCFF' + - uid: 9436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,8.5 + rot: 3.141592653589793 rad + pos: -13.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8799 + - uid: 9437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,9.5 + rot: 3.141592653589793 rad + pos: -13.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8800 + color: '#0055CCFF' + - uid: 9438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,8.5 + rot: 3.141592653589793 rad + pos: -13.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8801 + - uid: 9439 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,9.5 + rot: 3.141592653589793 rad + pos: -14.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8802 + - uid: 9440 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,8.5 + rot: 3.141592653589793 rad + pos: -14.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8803 + color: '#E32636FF' + - uid: 9441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,8.5 + rot: 3.141592653589793 rad + pos: -14.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8804 + color: '#E32636FF' + - uid: 9442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,9.5 + rot: 3.141592653589793 rad + pos: -14.5,2.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8805 + - uid: 9443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,8.5 + rot: 3.141592653589793 rad + pos: -13.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8807 + - uid: 9444 components: - type: Transform rot: 1.5707963267948966 rad - pos: -60.5,8.5 + pos: -14.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8808 + - uid: 9445 components: - type: Transform rot: 1.5707963267948966 rad - pos: -73.5,8.5 + pos: -15.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8809 + - uid: 9446 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,9.5 + pos: -16.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8810 + color: '#0055CCFF' + - uid: 9447 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,8.5 + pos: -17.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8811 + - uid: 9448 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,9.5 + pos: -18.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8812 + color: '#0055CCFF' + - uid: 9449 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,8.5 + pos: -19.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8813 + - uid: 9450 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,9.5 + pos: -20.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8814 + color: '#0055CCFF' + - uid: 9451 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,8.5 + pos: -21.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8815 + - uid: 9452 components: - type: Transform rot: 1.5707963267948966 rad - pos: -69.5,9.5 + pos: -22.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8816 + color: '#0055CCFF' + - uid: 9453 components: - type: Transform rot: 1.5707963267948966 rad - pos: -69.5,8.5 + pos: -23.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8817 + - uid: 9454 components: - type: Transform rot: 1.5707963267948966 rad - pos: -68.5,9.5 + pos: -15.5,3.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8818 + - uid: 9455 components: - type: Transform rot: 1.5707963267948966 rad - pos: -68.5,8.5 + pos: -16.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8819 + color: '#E32636FF' + - uid: 9456 components: - type: Transform rot: 1.5707963267948966 rad - pos: -67.5,9.5 + pos: -17.5,3.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8820 + - uid: 9457 components: - type: Transform rot: 1.5707963267948966 rad - pos: -67.5,8.5 + pos: -18.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8821 + color: '#E32636FF' + - uid: 9458 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,9.5 + pos: -19.5,3.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8822 + - uid: 9459 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,8.5 + pos: -20.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8823 + color: '#E32636FF' + - uid: 9460 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,9.5 + pos: -21.5,3.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8824 + - uid: 9461 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,8.5 + pos: -22.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8825 + color: '#E32636FF' + - uid: 9462 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,9.5 + pos: -23.5,3.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8826 + - uid: 9463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,8.5 + rot: -1.5707963267948966 rad + pos: -13.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8827 + color: '#E32636FF' + - uid: 9464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,9.5 + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8828 + - uid: 9465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,8.5 + rot: -1.5707963267948966 rad + pos: -11.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8829 + color: '#E32636FF' + - uid: 9466 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,9.5 + rot: -1.5707963267948966 rad + pos: -10.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8830 + - uid: 9467 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,9.5 + rot: -1.5707963267948966 rad + pos: -12.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8831 + color: '#0055CCFF' + - uid: 9468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,8.5 + rot: -1.5707963267948966 rad + pos: -11.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8832 + - uid: 9469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,8.5 + rot: -1.5707963267948966 rad + pos: -10.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8833 + - uid: 9470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,9.5 + rot: -1.5707963267948966 rad + pos: -14.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8834 + color: '#0055CCFF' + - uid: 9471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,8.5 + rot: -1.5707963267948966 rad + pos: -15.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8835 + - uid: 9472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,9.5 + rot: -1.5707963267948966 rad + pos: -16.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8836 + color: '#0055CCFF' + - uid: 9473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,8.5 + rot: -1.5707963267948966 rad + pos: -15.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8837 + color: '#E32636FF' + - uid: 9474 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,9.5 + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8838 + - uid: 9475 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,8.5 + rot: -1.5707963267948966 rad + pos: -9.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8839 + - uid: 9476 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,9.5 + rot: -1.5707963267948966 rad + pos: -8.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8840 + color: '#0055CCFF' + - uid: 9477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,8.5 + rot: -1.5707963267948966 rad + pos: -9.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8841 + color: '#E32636FF' + - uid: 9478 components: - type: Transform - pos: -59.5,8.5 + rot: -1.5707963267948966 rad + pos: -8.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8842 + - uid: 9479 components: - type: Transform - pos: -59.5,7.5 + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8843 + - uid: 9480 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-2.5 + pos: -6.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8844 + color: '#0055CCFF' + - uid: 9481 components: - type: Transform - pos: -57.5,4.5 + rot: -1.5707963267948966 rad + pos: -5.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8845 + - uid: 9482 components: - type: Transform - pos: -59.5,4.5 + rot: -1.5707963267948966 rad + pos: -4.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8846 + color: '#0055CCFF' + - uid: 9483 components: - type: Transform - pos: -59.5,3.5 + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8847 + color: '#0055CCFF' + - uid: 9484 components: - type: Transform - pos: -59.5,2.5 + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8848 + - uid: 9485 components: - type: Transform - pos: -59.5,1.5 + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8849 + - uid: 9486 components: - type: Transform - pos: -59.5,0.5 + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8850 + - uid: 9487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,3.5 + rot: 3.141592653589793 rad + pos: -6.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8851 + color: '#E32636FF' + - uid: 9488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,3.5 + rot: 3.141592653589793 rad + pos: -6.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8852 + color: '#E32636FF' + - uid: 9489 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,2.5 + pos: -6.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8853 + color: '#E32636FF' + - uid: 9490 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,1.5 + pos: -6.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8854 + color: '#E32636FF' + - uid: 9491 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,0.5 + pos: -6.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8855 + color: '#E32636FF' + - uid: 9492 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-0.5 + pos: -6.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8856 + - uid: 9493 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-1.5 + pos: -6.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8857 + - uid: 9494 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-4.5 + rot: 3.141592653589793 rad + pos: -7.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8858 + - uid: 9495 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-4.5 + rot: 3.141592653589793 rad + pos: -7.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8859 + - uid: 9496 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,-0.5 + pos: -7.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8860 + - uid: 9497 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,-1.5 + pos: -7.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8861 + - uid: 9498 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,-2.5 + pos: -7.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8862 + - uid: 9499 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,-3.5 + pos: -7.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8863 + - uid: 9500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-4.5 + rot: 1.5707963267948966 rad + pos: -26.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8864 + color: '#E32636FF' + - uid: 9501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-4.5 + rot: 1.5707963267948966 rad + pos: -25.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8865 + - uid: 9502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-4.5 + rot: 1.5707963267948966 rad + pos: -25.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8866 + color: '#E32636FF' + - uid: 9503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-4.5 + rot: 1.5707963267948966 rad + pos: -24.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8867 + - uid: 9505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-2.5 + rot: 1.5707963267948966 rad + pos: -23.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8868 + - uid: 9506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-2.5 + rot: 1.5707963267948966 rad + pos: -23.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8869 + color: '#0055CCFF' + - uid: 9507 components: - type: Transform rot: -1.5707963267948966 rad - pos: -63.5,-2.5 + pos: -100.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8870 + - uid: 9508 components: - type: Transform rot: -1.5707963267948966 rad - pos: -64.5,-2.5 + pos: -100.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8871 + color: '#0055CCFF' + - uid: 9509 components: - type: Transform - pos: -65.5,-7.5 + rot: -1.5707963267948966 rad + pos: -101.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8872 + - uid: 9510 components: - type: Transform - pos: -65.5,-8.5 + rot: -1.5707963267948966 rad + pos: -101.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8873 + color: '#0055CCFF' + - uid: 9511 components: - type: Transform - pos: -65.5,-9.5 + rot: -1.5707963267948966 rad + pos: -102.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8874 + - uid: 9512 components: - type: Transform - pos: -65.5,-10.5 + rot: -1.5707963267948966 rad + pos: -102.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8875 + color: '#0055CCFF' + - uid: 9513 components: - type: Transform - pos: -65.5,-11.5 + rot: -1.5707963267948966 rad + pos: -103.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8876 + - uid: 9514 components: - type: Transform rot: -1.5707963267948966 rad - pos: -66.5,-4.5 + pos: -103.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8877 + - uid: 9515 components: - type: Transform rot: -1.5707963267948966 rad - pos: -65.5,-4.5 + pos: -104.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8878 + color: '#E32636FF' + - uid: 9516 components: - type: Transform rot: -1.5707963267948966 rad - pos: -67.5,-4.5 + pos: -104.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8879 + - uid: 9517 components: - type: Transform rot: -1.5707963267948966 rad - pos: -68.5,-4.5 + pos: -105.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8880 + color: '#E32636FF' + - uid: 9518 components: - type: Transform rot: -1.5707963267948966 rad - pos: -69.5,-4.5 + pos: -106.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8881 + - uid: 9519 components: - type: Transform rot: -1.5707963267948966 rad - pos: -70.5,-4.5 + pos: -107.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8882 + color: '#E32636FF' + - uid: 9520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-9.5 + rot: -1.5707963267948966 rad + pos: -107.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8883 + color: '#0055CCFF' + - uid: 9521 components: - type: Transform rot: -1.5707963267948966 rad - pos: -66.5,-2.5 + pos: -108.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8884 + - uid: 9522 components: - type: Transform rot: -1.5707963267948966 rad - pos: -67.5,-2.5 + pos: -108.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8885 + color: '#0055CCFF' + - uid: 9523 components: - type: Transform rot: -1.5707963267948966 rad - pos: -68.5,-2.5 + pos: -109.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8886 + - uid: 9524 components: - type: Transform rot: -1.5707963267948966 rad - pos: -69.5,-2.5 + pos: -109.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8887 + color: '#0055CCFF' + - uid: 9525 components: - type: Transform rot: -1.5707963267948966 rad - pos: -70.5,-2.5 + pos: -110.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8888 + - uid: 9526 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,6.5 + rot: -1.5707963267948966 rad + pos: -110.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8889 + color: '#0055CCFF' + - uid: 9527 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-9.5 + rot: -1.5707963267948966 rad + pos: -111.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8890 + color: '#E32636FF' + - uid: 9528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-10.5 + rot: -1.5707963267948966 rad + pos: -111.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8891 + - uid: 9529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-10.5 + rot: -1.5707963267948966 rad + pos: -112.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8892 + color: '#E32636FF' + - uid: 9530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-10.5 + rot: -1.5707963267948966 rad + pos: -112.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8893 + - uid: 9531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-9.5 + rot: -1.5707963267948966 rad + pos: -113.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8894 + - uid: 9532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-9.5 + rot: -1.5707963267948966 rad + pos: -113.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8895 + color: '#0055CCFF' + - uid: 9533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-9.5 + rot: -1.5707963267948966 rad + pos: -114.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8896 + color: '#0055CCFF' + - uid: 9534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-9.5 + rot: -1.5707963267948966 rad + pos: -115.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8897 + - uid: 9535 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-10.5 + pos: -105.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8898 + - uid: 9536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-10.5 + pos: -105.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8899 + - uid: 9537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-9.5 + pos: -106.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8900 + - uid: 9538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-9.5 + pos: -106.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8901 + - uid: 9539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-9.5 + pos: -106.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8902 + - uid: 9540 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-9.5 + pos: -106.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8904 + - uid: 9541 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-10.5 + pos: -179.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8905 + color: '#E32636FF' + - uid: 9542 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-10.5 + rot: 3.141592653589793 rad + pos: -114.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8906 + color: '#E32636FF' + - uid: 9543 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-10.5 + rot: 3.141592653589793 rad + pos: -114.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8907 + color: '#E32636FF' + - uid: 9544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-10.5 + rot: 3.141592653589793 rad + pos: -115.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8908 + - uid: 9545 components: - type: Transform - pos: -35.5,-10.5 + rot: 3.141592653589793 rad + pos: -114.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8909 + - uid: 9546 components: - type: Transform - pos: -36.5,-9.5 + rot: 3.141592653589793 rad + pos: -114.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8910 + color: '#E32636FF' + - uid: 9547 components: - type: Transform - pos: -35.5,-8.5 + rot: 3.141592653589793 rad + pos: -114.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8911 + - uid: 9548 components: - type: Transform - pos: -35.5,-7.5 + rot: 3.141592653589793 rad + pos: -114.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8912 + - uid: 9549 components: - type: Transform - pos: -35.5,-6.5 + rot: 3.141592653589793 rad + pos: -114.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8913 + - uid: 9550 components: - type: Transform - pos: -35.5,-5.5 + rot: 3.141592653589793 rad + pos: -114.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8914 + - uid: 9551 components: - type: Transform - pos: -36.5,-8.5 + rot: 3.141592653589793 rad + pos: -115.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8915 + - uid: 9552 components: - type: Transform - pos: -36.5,-7.5 + rot: 3.141592653589793 rad + pos: -115.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8916 + - uid: 9553 components: - type: Transform - pos: -36.5,-6.5 + rot: 3.141592653589793 rad + pos: -115.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8917 + - uid: 9554 components: - type: Transform - pos: -36.5,-5.5 + rot: 3.141592653589793 rad + pos: -115.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8918 - components: - - type: Transform - pos: -35.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8919 + - uid: 9555 components: - type: Transform - pos: -35.5,-3.5 + rot: 3.141592653589793 rad + pos: -115.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8920 + color: '#0055CCFF' + - uid: 9556 components: - type: Transform - pos: -35.5,-2.5 + rot: 3.141592653589793 rad + pos: -115.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8921 + color: '#0055CCFF' + - uid: 9557 components: - type: Transform - pos: -35.5,-1.5 + rot: 1.5707963267948966 rad + pos: -116.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8922 + - uid: 9558 components: - type: Transform - pos: -35.5,-0.5 + rot: 1.5707963267948966 rad + pos: -116.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8923 + color: '#0055CCFF' + - uid: 9559 components: - type: Transform - pos: -35.5,0.5 + rot: 1.5707963267948966 rad + pos: -117.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8924 + - uid: 9560 components: - type: Transform - pos: -35.5,1.5 + rot: 1.5707963267948966 rad + pos: -117.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8925 + color: '#0055CCFF' + - uid: 9561 components: - type: Transform - pos: -35.5,2.5 + rot: 1.5707963267948966 rad + pos: -118.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8926 + - uid: 9562 components: - type: Transform - pos: -36.5,-4.5 + rot: 1.5707963267948966 rad + pos: -118.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8927 + - uid: 9563 components: - type: Transform - pos: -36.5,-3.5 + rot: 1.5707963267948966 rad + pos: -119.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8928 + color: '#E32636FF' + - uid: 9564 components: - type: Transform - pos: -36.5,-2.5 + rot: 1.5707963267948966 rad + pos: -119.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8929 + - uid: 9565 components: - type: Transform - pos: -36.5,-1.5 + rot: 1.5707963267948966 rad + pos: -120.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8930 + color: '#E32636FF' + - uid: 9566 components: - type: Transform - pos: -36.5,-0.5 + rot: 1.5707963267948966 rad + pos: -120.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8931 + - uid: 9567 components: - type: Transform - pos: -36.5,0.5 + rot: 1.5707963267948966 rad + pos: -126.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8932 + - uid: 9568 components: - type: Transform - pos: -36.5,1.5 + rot: 1.5707963267948966 rad + pos: -127.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8933 + color: '#E32636FF' + - uid: 9569 components: - type: Transform - pos: -36.5,2.5 + rot: 1.5707963267948966 rad + pos: -127.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8934 - components: - - type: Transform - pos: -35.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8935 + - uid: 9570 components: - type: Transform - pos: -35.5,-13.5 + rot: 1.5707963267948966 rad + pos: -128.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8936 - components: - - type: Transform - pos: -36.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8937 + - uid: 9571 components: - type: Transform - pos: -36.5,-12.5 + rot: 1.5707963267948966 rad + pos: -128.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8938 + - uid: 9572 components: - type: Transform - pos: -36.5,-13.5 + rot: 1.5707963267948966 rad + pos: -121.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8939 + color: '#E32636FF' + - uid: 9573 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-14.5 + rot: 1.5707963267948966 rad + pos: -121.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8940 + - uid: 9574 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,-15.5 + pos: -122.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8941 + color: '#E32636FF' + - uid: 9575 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-15.5 + pos: -122.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8942 + - uid: 9576 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-14.5 + pos: -123.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8943 + - uid: 9577 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-15.5 + pos: -123.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8944 + - uid: 9578 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-14.5 + pos: -124.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8945 + - uid: 9579 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-15.5 + pos: -124.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8946 + - uid: 9580 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-14.5 + pos: -125.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8947 + color: '#0055CCFF' + - uid: 9581 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,-15.5 + pos: -126.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8948 + color: '#E32636FF' + - uid: 9582 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,-14.5 + pos: -129.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8949 + - uid: 9583 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-15.5 + pos: -129.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8950 + - uid: 9584 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-14.5 + pos: -130.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8951 + - uid: 9585 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-15.5 + pos: -130.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8952 + - uid: 9586 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-14.5 + pos: -131.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8953 + - uid: 9587 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-15.5 + pos: -131.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8954 + - uid: 9588 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-14.5 + pos: -132.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8955 + - uid: 9589 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-15.5 + pos: -132.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8956 + - uid: 9590 components: - type: Transform - pos: -26.5,-14.5 + rot: 1.5707963267948966 rad + pos: -133.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8957 + color: '#E32636FF' + - uid: 9591 components: - type: Transform - pos: -27.5,-13.5 + rot: 1.5707963267948966 rad + pos: -133.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8958 + color: '#0055CCFF' + - uid: 9592 components: - type: Transform - pos: -27.5,-11.5 + rot: 1.5707963267948966 rad + pos: -134.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8959 + - uid: 9593 components: - type: Transform - pos: -26.5,-12.5 + rot: 1.5707963267948966 rad + pos: -134.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8960 + - uid: 9594 components: - type: Transform - pos: -26.5,-11.5 + rot: 1.5707963267948966 rad + pos: -135.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8961 + color: '#E32636FF' + - uid: 9595 components: - type: Transform - pos: -26.5,-10.5 + rot: 1.5707963267948966 rad + pos: -135.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8962 - components: - - type: Transform - pos: -27.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8963 + - uid: 9596 components: - type: Transform - pos: -27.5,-9.5 + rot: 1.5707963267948966 rad + pos: -136.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8964 + - uid: 9597 components: - type: Transform - pos: -26.5,-9.5 + rot: 1.5707963267948966 rad + pos: -136.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8965 + - uid: 9598 components: - type: Transform - pos: -27.5,-8.5 + rot: 1.5707963267948966 rad + pos: -137.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8966 + - uid: 9599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-7.5 + rot: 1.5707963267948966 rad + pos: -137.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8967 + color: '#0055CCFF' + - uid: 9600 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-8.5 + pos: -139.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8968 + - uid: 9601 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-7.5 + pos: -141.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8969 + color: '#0055CCFF' + - uid: 9602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-7.5 + rot: 1.5707963267948966 rad + pos: -143.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8970 + - uid: 9603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-8.5 + rot: 1.5707963267948966 rad + pos: -143.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8971 + - uid: 9604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-7.5 + rot: 1.5707963267948966 rad + pos: -144.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8972 + - uid: 9605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-8.5 + rot: 1.5707963267948966 rad + pos: -144.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8973 + - uid: 9606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-7.5 + rot: 1.5707963267948966 rad + pos: -145.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8974 + - uid: 9607 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-8.5 + rot: 1.5707963267948966 rad + pos: -145.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8975 + - uid: 9608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-7.5 + rot: 1.5707963267948966 rad + pos: -146.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8976 + - uid: 9609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-8.5 + rot: 1.5707963267948966 rad + pos: -146.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8977 + - uid: 9610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-7.5 + rot: 1.5707963267948966 rad + pos: -147.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8978 + - uid: 9611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-8.5 + rot: 1.5707963267948966 rad + pos: -147.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8979 + - uid: 9612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-7.5 + rot: 1.5707963267948966 rad + pos: -148.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8980 + - uid: 9613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-8.5 + rot: 1.5707963267948966 rad + pos: -148.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8981 + - uid: 9614 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-7.5 + rot: 1.5707963267948966 rad + pos: -149.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8982 + - uid: 9615 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-8.5 + rot: 1.5707963267948966 rad + pos: -149.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8983 + - uid: 9616 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-7.5 + rot: 1.5707963267948966 rad + pos: -150.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8984 + - uid: 9617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-8.5 + rot: 1.5707963267948966 rad + pos: -150.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8985 + - uid: 9618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-7.5 + rot: 1.5707963267948966 rad + pos: -151.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8986 + - uid: 9619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-8.5 + rot: 1.5707963267948966 rad + pos: -151.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8987 + - uid: 9620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-7.5 + rot: 1.5707963267948966 rad + pos: -152.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8988 + - uid: 9621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-8.5 + rot: 1.5707963267948966 rad + pos: -152.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8989 + - uid: 9622 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-7.5 + rot: 1.5707963267948966 rad + pos: -153.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8990 + color: '#E32636FF' + - uid: 9623 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-6.5 + rot: 1.5707963267948966 rad + pos: -153.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8991 + color: '#0055CCFF' + - uid: 9624 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-6.5 + rot: 1.5707963267948966 rad + pos: -154.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8992 + color: '#E32636FF' + - uid: 9625 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-5.5 + rot: 1.5707963267948966 rad + pos: -154.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8993 + - uid: 9626 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-4.5 + rot: 1.5707963267948966 rad + pos: -156.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8994 + - uid: 9627 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-5.5 + rot: 1.5707963267948966 rad + pos: -155.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 8995 + color: '#0055CCFF' + - uid: 9628 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-4.5 + rot: 1.5707963267948966 rad + pos: -156.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8996 + - uid: 9629 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-3.5 + rot: 1.5707963267948966 rad + pos: -157.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8997 + - uid: 9630 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-2.5 + pos: -157.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8998 + - uid: 9631 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-1.5 + rot: 1.5707963267948966 rad + pos: -158.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 8999 + - uid: 9632 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-1.5 + rot: 1.5707963267948966 rad + pos: -158.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9000 + - uid: 9633 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-0.5 + rot: 1.5707963267948966 rad + pos: -159.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9001 + color: '#E32636FF' + - uid: 9634 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,0.5 + rot: 1.5707963267948966 rad + pos: -159.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9002 + - uid: 9635 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,1.5 + rot: 1.5707963267948966 rad + pos: -160.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9003 + color: '#E32636FF' + - uid: 9636 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,2.5 + rot: 1.5707963267948966 rad + pos: -160.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9004 + - uid: 9637 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-0.5 + rot: 1.5707963267948966 rad + pos: -161.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9005 + - uid: 9638 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,0.5 + rot: 1.5707963267948966 rad + pos: -161.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9006 + color: '#0055CCFF' + - uid: 9639 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,1.5 + rot: 1.5707963267948966 rad + pos: -162.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9007 + - uid: 9640 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,2.5 + rot: 1.5707963267948966 rad + pos: -162.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -163.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9008 + - uid: 9642 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,3.5 + rot: 1.5707963267948966 rad + pos: -163.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9009 + - uid: 9643 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,4.5 + pos: -164.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9010 + color: '#E32636FF' + - uid: 9644 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,4.5 + pos: -164.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9011 + - uid: 9645 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,4.5 + pos: -165.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9012 + color: '#E32636FF' + - uid: 9646 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,4.5 + pos: -165.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9013 + - uid: 9647 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,4.5 + pos: -166.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9014 + color: '#E32636FF' + - uid: 9648 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,4.5 + pos: -178.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9015 + color: '#E32636FF' + - uid: 9649 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,4.5 + pos: -178.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9016 + - uid: 9650 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,4.5 + pos: -166.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9017 + - uid: 9651 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,4.5 + pos: -167.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9018 + color: '#E32636FF' + - uid: 9652 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,4.5 + pos: -167.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9019 + - uid: 9653 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,3.5 + pos: -168.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9020 + - uid: 9654 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,3.5 + pos: -168.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9021 + color: '#0055CCFF' + - uid: 9655 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,3.5 + pos: -169.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9022 + - uid: 9656 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,3.5 + pos: -169.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9023 + color: '#0055CCFF' + - uid: 9657 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,3.5 + pos: -170.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9024 + - uid: 9658 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,3.5 + pos: -170.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9025 + color: '#0055CCFF' + - uid: 9659 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,3.5 + pos: -171.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9026 + - uid: 9660 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,3.5 + pos: -171.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9027 + color: '#0055CCFF' + - uid: 9661 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,3.5 + pos: -172.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9028 + - uid: 9662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-2.5 + rot: 1.5707963267948966 rad + pos: -172.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9029 + color: '#0055CCFF' + - uid: 9663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-2.5 + rot: 1.5707963267948966 rad + pos: -173.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9030 + - uid: 9664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-2.5 + rot: 1.5707963267948966 rad + pos: -173.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9031 + color: '#0055CCFF' + - uid: 9665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-2.5 + rot: 1.5707963267948966 rad + pos: -174.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9032 + - uid: 9666 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-3.5 + rot: 1.5707963267948966 rad + pos: -174.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9033 + - uid: 9667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-3.5 + rot: 1.5707963267948966 rad + pos: -175.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9034 + color: '#E32636FF' + - uid: 9668 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-3.5 + rot: 1.5707963267948966 rad + pos: -175.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9035 + - uid: 9669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-3.5 + rot: 1.5707963267948966 rad + pos: -176.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9036 + - uid: 9670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-3.5 + rot: 1.5707963267948966 rad + pos: -177.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9037 + color: '#E32636FF' + - uid: 9671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-3.5 + rot: 1.5707963267948966 rad + pos: -179.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9038 + - uid: 9672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-2.5 + rot: 1.5707963267948966 rad + pos: -180.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9039 + - uid: 9673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-2.5 + rot: 1.5707963267948966 rad + pos: -180.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9040 + color: '#0055CCFF' + - uid: 9674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-3.5 + rot: 1.5707963267948966 rad + pos: -181.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9041 + color: '#E32636FF' + - uid: 9675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-3.5 + rot: 1.5707963267948966 rad + pos: -181.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9042 + - uid: 9676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-2.5 + rot: 1.5707963267948966 rad + pos: -182.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9043 + - uid: 9677 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-2.5 + rot: 1.5707963267948966 rad + pos: -182.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9044 + color: '#0055CCFF' + - uid: 9678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-2.5 + rot: 1.5707963267948966 rad + pos: -183.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9045 + - uid: 9679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-3.5 + rot: 1.5707963267948966 rad + pos: -183.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9046 + - uid: 9680 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-3.5 + rot: 1.5707963267948966 rad + pos: -184.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9047 + color: '#E32636FF' + - uid: 9681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-3.5 + rot: 1.5707963267948966 rad + pos: -184.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9048 + - uid: 9682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-3.5 + rot: 1.5707963267948966 rad + pos: -185.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9049 + - uid: 9683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 + rot: 1.5707963267948966 rad + pos: -186.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9050 + - uid: 9684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-2.5 + rot: 1.5707963267948966 rad + pos: -187.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9051 + - uid: 9685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-2.5 + rot: 1.5707963267948966 rad + pos: -187.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9052 + color: '#0055CCFF' + - uid: 9686 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-3.5 + rot: 1.5707963267948966 rad + pos: -188.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9053 + - uid: 9687 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-4.5 + rot: 1.5707963267948966 rad + pos: -188.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9054 + color: '#0055CCFF' + - uid: 9688 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-5.5 + rot: 1.5707963267948966 rad + pos: -189.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9055 + - uid: 9689 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-6.5 + rot: 1.5707963267948966 rad + pos: -189.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9056 + color: '#0055CCFF' + - uid: 9690 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-7.5 + rot: 1.5707963267948966 rad + pos: -190.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9057 + - uid: 9691 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-8.5 + rot: 1.5707963267948966 rad + pos: -190.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9058 + color: '#0055CCFF' + - uid: 9692 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-9.5 + rot: 1.5707963267948966 rad + pos: -191.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9059 + - uid: 9693 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-4.5 + rot: 1.5707963267948966 rad + pos: -191.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9060 + - uid: 9694 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-5.5 + rot: 1.5707963267948966 rad + pos: -192.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9061 + color: '#E32636FF' + - uid: 9695 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-6.5 + rot: 1.5707963267948966 rad + pos: -192.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9062 + - uid: 9696 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-7.5 + rot: 1.5707963267948966 rad + pos: -193.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9063 + color: '#E32636FF' + - uid: 9697 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-8.5 + rot: 1.5707963267948966 rad + pos: -193.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9064 + - uid: 9698 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-9.5 + rot: 1.5707963267948966 rad + pos: -194.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9065 + color: '#E32636FF' + - uid: 9699 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-12.5 + pos: -200.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9066 + color: '#0055CCFF' + - uid: 9700 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-13.5 + pos: -201.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9067 + color: '#E32636FF' + - uid: 9701 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-12.5 + pos: -201.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9068 + color: '#0055CCFF' + - uid: 9702 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,-12.5 + pos: -202.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9069 + - uid: 9703 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,-13.5 + pos: -202.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9070 + - uid: 9704 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-12.5 + pos: -203.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9071 + - uid: 9705 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-13.5 + pos: -203.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9072 + - uid: 9706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,-4.5 + rot: 1.5707963267948966 rad + pos: -204.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9073 + - uid: 9707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,-3.5 + rot: 1.5707963267948966 rad + pos: -204.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9074 + - uid: 9708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,-4.5 + rot: 1.5707963267948966 rad + pos: -205.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9075 + color: '#0055CCFF' + - uid: 9709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,-3.5 + rot: 1.5707963267948966 rad + pos: -195.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9076 + - uid: 9710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,-4.5 + rot: 1.5707963267948966 rad + pos: -196.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9077 + - uid: 9711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,-3.5 + rot: 1.5707963267948966 rad + pos: -196.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9078 + - uid: 9712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-4.5 + rot: 1.5707963267948966 rad + pos: -197.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9079 + - uid: 9713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-3.5 + rot: 1.5707963267948966 rad + pos: -197.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9080 + - uid: 9714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,-4.5 + rot: 1.5707963267948966 rad + pos: -198.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9081 + - uid: 9715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,-3.5 + rot: 1.5707963267948966 rad + pos: -198.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9082 + - uid: 9716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,-4.5 + rot: 1.5707963267948966 rad + pos: -199.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9083 + - uid: 9717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,-3.5 + rot: 1.5707963267948966 rad + pos: -199.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9084 + - uid: 9718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,-4.5 + rot: 1.5707963267948966 rad + pos: -200.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9085 + - uid: 9719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,-3.5 + rot: 1.5707963267948966 rad + pos: -206.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9086 + color: '#E32636FF' + - uid: 9720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,-4.5 + rot: 1.5707963267948966 rad + pos: -207.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9087 + - uid: 9721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,-3.5 + rot: 1.5707963267948966 rad + pos: -207.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9088 + - uid: 9722 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,-4.5 + rot: 1.5707963267948966 rad + pos: -208.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9089 + - uid: 9723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,-3.5 + rot: 1.5707963267948966 rad + pos: -208.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9090 + - uid: 9724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,-4.5 + rot: 1.5707963267948966 rad + pos: -209.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9091 + - uid: 9725 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,-3.5 + rot: 1.5707963267948966 rad + pos: -209.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9092 + - uid: 9726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,-4.5 + rot: 1.5707963267948966 rad + pos: -210.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9093 + - uid: 9727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,-3.5 + rot: 1.5707963267948966 rad + pos: -210.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9094 + - uid: 9728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,-4.5 + rot: 1.5707963267948966 rad + pos: -211.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9095 + - uid: 9729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,-3.5 + rot: 1.5707963267948966 rad + pos: -211.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9096 + - uid: 9730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,-4.5 + rot: 1.5707963267948966 rad + pos: -212.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9097 + - uid: 9731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,-3.5 + rot: 1.5707963267948966 rad + pos: -212.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9098 + - uid: 9732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,-3.5 + pos: -177.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9099 + - uid: 9733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,-4.5 + pos: -176.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9100 + - uid: 9734 components: - type: Transform - pos: -105.5,-8.5 + pos: -176.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9101 + color: '#E32636FF' + - uid: 9735 components: - type: Transform - pos: -105.5,-9.5 + pos: -176.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9102 + color: '#E32636FF' + - uid: 9736 components: - type: Transform - pos: -106.5,-6.5 + pos: -176.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9103 + - uid: 9737 components: - type: Transform - pos: -106.5,-7.5 + pos: -176.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9104 + - uid: 9738 components: - type: Transform - pos: -106.5,-8.5 + pos: -176.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9105 + - uid: 9739 components: - type: Transform - pos: -106.5,-9.5 + pos: -176.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9106 + - uid: 9740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -179.5,-4.5 + pos: -176.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9107 + - uid: 9741 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,1.5 + pos: -177.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9108 + color: '#0055CCFF' + - uid: 9742 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,2.5 + pos: -177.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9109 + color: '#0055CCFF' + - uid: 9743 components: - type: Transform - rot: 3.141592653589793 rad - pos: -115.5,-4.5 + pos: -177.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9110 + - uid: 9744 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,-5.5 + pos: -177.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9111 + color: '#0055CCFF' + - uid: 9745 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,-6.5 + pos: -177.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9112 + color: '#0055CCFF' + - uid: 9746 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,-7.5 + pos: -177.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9113 + color: '#0055CCFF' + - uid: 9747 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,-8.5 + pos: -177.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9114 + color: '#0055CCFF' + - uid: 9748 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,-9.5 + pos: -177.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9115 + color: '#0055CCFF' + - uid: 9749 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,-10.5 + pos: -194.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9116 + color: '#0055CCFF' + - uid: 9750 components: - type: Transform - rot: 3.141592653589793 rad - pos: -115.5,-5.5 + pos: -194.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9117 + - uid: 9751 components: - type: Transform - rot: 3.141592653589793 rad - pos: -115.5,-6.5 + pos: -194.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9118 + - uid: 9752 components: - type: Transform - rot: 3.141592653589793 rad - pos: -115.5,-7.5 + pos: -194.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9119 + - uid: 9753 components: - type: Transform - rot: 3.141592653589793 rad - pos: -115.5,-8.5 + pos: -194.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9120 + - uid: 9754 components: - type: Transform - rot: 3.141592653589793 rad - pos: -115.5,-9.5 + pos: -194.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9121 + - uid: 9755 components: - type: Transform - rot: 3.141592653589793 rad - pos: -115.5,-10.5 + pos: -194.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9122 + - uid: 9756 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,-4.5 + pos: -194.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9123 + color: '#0055CCFF' + - uid: 9757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,-3.5 + pos: -194.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9124 + - uid: 9758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,-4.5 + pos: -195.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9125 + - uid: 9759 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,-3.5 + pos: -195.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9126 + color: '#E32636FF' + - uid: 9760 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,-4.5 + pos: -195.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9127 + - uid: 9761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,-3.5 + pos: -195.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9128 + color: '#E32636FF' + - uid: 9762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,-4.5 + pos: -195.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9129 + - uid: 9763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,-3.5 + pos: -195.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9130 + color: '#E32636FF' + - uid: 9764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.5,-4.5 + pos: -195.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9131 + - uid: 9765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.5,-3.5 + pos: -195.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9132 + color: '#E32636FF' + - uid: 9766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,-3.5 + rot: 3.141592653589793 rad + pos: -205.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9133 + color: '#E32636FF' + - uid: 9767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -127.5,-4.5 + rot: 3.141592653589793 rad + pos: -205.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9134 + - uid: 9768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -127.5,-3.5 + rot: 3.141592653589793 rad + pos: -205.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9135 + color: '#E32636FF' + - uid: 9769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -128.5,-4.5 + rot: 3.141592653589793 rad + pos: -205.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9136 + - uid: 9770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -128.5,-3.5 + rot: 3.141592653589793 rad + pos: -205.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9137 + color: '#E32636FF' + - uid: 9771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -121.5,-4.5 + rot: 3.141592653589793 rad + pos: -205.5,1.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9138 + - uid: 9772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -121.5,-3.5 + rot: 3.141592653589793 rad + pos: -205.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9139 + color: '#E32636FF' + - uid: 9773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.5,-4.5 + rot: 3.141592653589793 rad + pos: -205.5,3.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9140 + - uid: 9774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.5,-3.5 + rot: -1.5707963267948966 rad + pos: -204.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9141 + - uid: 9775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,-4.5 + rot: 3.141592653589793 rad + pos: -205.5,5.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9142 + - uid: 9776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,-3.5 + rot: 3.141592653589793 rad + pos: -206.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9143 + - uid: 9777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,-4.5 + rot: 3.141592653589793 rad + pos: -206.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9144 + color: '#0055CCFF' + - uid: 9778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,-3.5 + rot: 3.141592653589793 rad + pos: -206.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9145 + - uid: 9779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,-3.5 + rot: 3.141592653589793 rad + pos: -206.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9146 + - uid: 9780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,-4.5 + rot: 3.141592653589793 rad + pos: -206.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9147 + color: '#0055CCFF' + - uid: 9781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -129.5,-4.5 + rot: 3.141592653589793 rad + pos: -206.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9148 + color: '#0055CCFF' + - uid: 9782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -129.5,-3.5 + rot: 3.141592653589793 rad + pos: -206.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9149 + - uid: 9783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -130.5,-4.5 + rot: 3.141592653589793 rad + pos: -206.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9150 + color: '#0055CCFF' + - uid: 9784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -130.5,-3.5 + rot: 3.141592653589793 rad + pos: -206.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9151 + - uid: 9785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,-4.5 + rot: 3.141592653589793 rad + pos: -205.5,6.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9152 + - uid: 9786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,-3.5 + rot: 3.141592653589793 rad + pos: -206.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9153 + - uid: 9787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -132.5,-4.5 + rot: -1.5707963267948966 rad + pos: -71.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9154 + - uid: 9788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -132.5,-3.5 + pos: -157.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9155 + - uid: 9789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -133.5,-4.5 + pos: -157.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9156 + color: '#0055CCFF' + - uid: 9790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -133.5,-3.5 + pos: -157.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9157 + - uid: 9791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -134.5,-4.5 + pos: -157.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9158 + color: '#0055CCFF' + - uid: 9792 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -134.5,-3.5 + pos: -157.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9159 + - uid: 9793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,-4.5 + pos: -157.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9160 + color: '#0055CCFF' + - uid: 9794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,-3.5 + rot: 3.141592653589793 rad + pos: -157.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9161 + - uid: 9795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -136.5,-4.5 + rot: 3.141592653589793 rad + pos: -157.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9162 + color: '#0055CCFF' + - uid: 9796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -136.5,-3.5 + rot: 3.141592653589793 rad + pos: -157.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9163 + - uid: 9797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -137.5,-4.5 + rot: 3.141592653589793 rad + pos: -157.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9164 + color: '#0055CCFF' + - uid: 9798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -137.5,-3.5 + rot: 3.141592653589793 rad + pos: -157.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9165 + - uid: 9799 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -139.5,-2.5 + rot: 1.5707963267948966 rad + pos: -155.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9166 + - uid: 9800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -141.5,-2.5 + rot: 1.5707963267948966 rad + pos: -156.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9167 + - uid: 9801 components: - type: Transform rot: 1.5707963267948966 rad - pos: -143.5,-4.5 + pos: -158.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9168 + color: '#0055CCFF' + - uid: 9802 components: - type: Transform rot: 1.5707963267948966 rad - pos: -143.5,-3.5 + pos: -159.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9169 + - uid: 9803 components: - type: Transform rot: 1.5707963267948966 rad - pos: -144.5,-4.5 + pos: -160.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9170 + color: '#0055CCFF' + - uid: 9804 components: - type: Transform rot: 1.5707963267948966 rad - pos: -144.5,-3.5 + pos: -161.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9171 + - uid: 9805 components: - type: Transform rot: 1.5707963267948966 rad - pos: -145.5,-4.5 + pos: -162.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9172 + color: '#0055CCFF' + - uid: 9806 components: - type: Transform rot: 1.5707963267948966 rad - pos: -145.5,-3.5 + pos: -163.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9173 + - uid: 9807 components: - type: Transform rot: 1.5707963267948966 rad - pos: -146.5,-4.5 + pos: -164.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9174 + color: '#0055CCFF' + - uid: 9808 components: - type: Transform rot: 1.5707963267948966 rad - pos: -146.5,-3.5 + pos: -165.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9175 + - uid: 9809 components: - type: Transform rot: 1.5707963267948966 rad - pos: -147.5,-4.5 + pos: -166.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9176 + color: '#0055CCFF' + - uid: 9810 components: - type: Transform rot: 1.5707963267948966 rad - pos: -147.5,-3.5 + pos: -167.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9177 + - uid: 9811 components: - type: Transform rot: 1.5707963267948966 rad - pos: -148.5,-4.5 + pos: -168.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9178 + color: '#0055CCFF' + - uid: 9812 components: - type: Transform rot: 1.5707963267948966 rad - pos: -148.5,-3.5 + pos: -169.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9179 + - uid: 9813 components: - type: Transform rot: 1.5707963267948966 rad - pos: -149.5,-4.5 + pos: -168.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9180 + color: '#0055CCFF' + - uid: 9814 components: - type: Transform rot: 1.5707963267948966 rad - pos: -149.5,-3.5 + pos: -169.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9181 + - uid: 9815 components: - type: Transform rot: 1.5707963267948966 rad - pos: -150.5,-4.5 + pos: -170.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9182 + color: '#0055CCFF' + - uid: 9816 components: - type: Transform rot: 1.5707963267948966 rad - pos: -150.5,-3.5 + pos: -171.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9183 + - uid: 9817 components: - type: Transform rot: 1.5707963267948966 rad - pos: -151.5,-4.5 + pos: -158.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9184 + color: '#0055CCFF' + - uid: 9818 components: - type: Transform rot: 1.5707963267948966 rad - pos: -151.5,-3.5 + pos: -159.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9185 + - uid: 9819 components: - type: Transform rot: 1.5707963267948966 rad - pos: -152.5,-4.5 + pos: -160.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9186 + color: '#0055CCFF' + - uid: 9820 components: - type: Transform rot: 1.5707963267948966 rad - pos: -152.5,-3.5 + pos: -161.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9187 + - uid: 9821 components: - type: Transform rot: 1.5707963267948966 rad - pos: -153.5,-4.5 + pos: -162.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9188 + color: '#0055CCFF' + - uid: 9822 components: - type: Transform rot: 1.5707963267948966 rad - pos: -153.5,-3.5 + pos: -163.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9189 + - uid: 9823 components: - type: Transform rot: 1.5707963267948966 rad - pos: -154.5,-4.5 + pos: -164.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9190 + color: '#0055CCFF' + - uid: 9824 components: - type: Transform rot: 1.5707963267948966 rad - pos: -154.5,-3.5 + pos: -165.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9191 + - uid: 9825 components: - type: Transform rot: 1.5707963267948966 rad - pos: -156.5,-3.5 + pos: -166.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9192 + - uid: 9826 components: - type: Transform rot: 1.5707963267948966 rad - pos: -155.5,-3.5 + pos: -167.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9193 + - uid: 9827 components: - type: Transform rot: 1.5707963267948966 rad - pos: -156.5,-4.5 + pos: -172.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9194 + color: '#0055CCFF' + - uid: 9828 components: - type: Transform rot: 1.5707963267948966 rad - pos: -157.5,-4.5 + pos: -173.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9195 + color: '#0055CCFF' + - uid: 9829 components: - type: Transform - pos: -157.5,-2.5 + rot: 1.5707963267948966 rad + pos: -174.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9196 + - uid: 9830 components: - type: Transform rot: 1.5707963267948966 rad - pos: -158.5,-4.5 + pos: -175.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9197 + color: '#0055CCFF' + - uid: 9831 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -158.5,-3.5 + pos: -157.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9198 + - uid: 9832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -159.5,-4.5 + pos: -157.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9199 + color: '#0055CCFF' + - uid: 9833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -159.5,-3.5 + pos: -157.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9200 + - uid: 9834 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -160.5,-4.5 + rot: 3.141592653589793 rad + pos: -157.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9201 + color: '#0055CCFF' + - uid: 9835 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -160.5,-3.5 + rot: 3.141592653589793 rad + pos: -157.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9202 + - uid: 9836 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -161.5,-4.5 + rot: 3.141592653589793 rad + pos: -157.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9203 + color: '#0055CCFF' + - uid: 9837 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -161.5,-3.5 + rot: 3.141592653589793 rad + pos: -157.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9204 + - uid: 9838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -162.5,-4.5 + rot: 3.141592653589793 rad + pos: -157.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9205 + color: '#0055CCFF' + - uid: 9839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -162.5,-3.5 + rot: 3.141592653589793 rad + pos: -157.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9206 + - uid: 9840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -163.5,-4.5 + rot: 3.141592653589793 rad + pos: -157.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9207 + color: '#0055CCFF' + - uid: 9841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -163.5,-3.5 + rot: 3.141592653589793 rad + pos: -157.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9208 + - uid: 9842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -164.5,-4.5 + rot: 3.141592653589793 rad + pos: -157.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9209 + color: '#0055CCFF' + - uid: 9843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -164.5,-3.5 + rot: 3.141592653589793 rad + pos: -157.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9210 + - uid: 9844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -165.5,-4.5 + rot: 3.141592653589793 rad + pos: -157.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9211 + color: '#0055CCFF' + - uid: 9845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -165.5,-3.5 + rot: 3.141592653589793 rad + pos: -157.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9212 + - uid: 9846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -166.5,-4.5 + rot: 3.141592653589793 rad + pos: -155.5,6.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9213 + - uid: 9847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -178.5,-4.5 + rot: 3.141592653589793 rad + pos: -155.5,7.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9214 + - uid: 9848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -178.5,-3.5 + rot: 3.141592653589793 rad + pos: -155.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9215 + color: '#E32636FF' + - uid: 9849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -166.5,-3.5 + rot: 3.141592653589793 rad + pos: -155.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9216 + color: '#E32636FF' + - uid: 9850 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -167.5,-4.5 + rot: 3.141592653589793 rad + pos: -155.5,11.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9217 + - uid: 9851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -167.5,-3.5 + rot: 3.141592653589793 rad + pos: -155.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9218 + color: '#E32636FF' + - uid: 9852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -168.5,-4.5 + rot: 3.141592653589793 rad + pos: -155.5,13.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9219 + - uid: 9853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -168.5,-3.5 + rot: 3.141592653589793 rad + pos: -155.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9220 + color: '#E32636FF' + - uid: 9854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -169.5,-4.5 + rot: 3.141592653589793 rad + pos: -155.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9221 + - uid: 9855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -169.5,-3.5 + rot: 3.141592653589793 rad + pos: -155.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9222 + color: '#E32636FF' + - uid: 9856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -170.5,-4.5 + rot: 3.141592653589793 rad + pos: -155.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9223 + - uid: 9857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -170.5,-3.5 + rot: 3.141592653589793 rad + pos: -155.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9224 + color: '#E32636FF' + - uid: 9858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -171.5,-4.5 + rot: 3.141592653589793 rad + pos: -155.5,1.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9225 + - uid: 9859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -171.5,-3.5 + rot: 3.141592653589793 rad + pos: -155.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9226 + color: '#E32636FF' + - uid: 9860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -172.5,-4.5 + rot: 3.141592653589793 rad + pos: -155.5,4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9227 + - uid: 9861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -172.5,-3.5 + rot: 3.141592653589793 rad + pos: -155.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9228 + color: '#E32636FF' + - uid: 9862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -173.5,-4.5 + rot: -1.5707963267948966 rad + pos: -166.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9229 + - uid: 9863 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -173.5,-3.5 + rot: -1.5707963267948966 rad + pos: -167.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9230 + color: '#E32636FF' + - uid: 9864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -174.5,-4.5 + rot: -1.5707963267948966 rad + pos: -168.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9231 + - uid: 9865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -174.5,-3.5 + rot: -1.5707963267948966 rad + pos: -156.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9232 + color: '#E32636FF' + - uid: 9866 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -175.5,-4.5 + rot: -1.5707963267948966 rad + pos: -157.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9233 + - uid: 9867 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -175.5,-3.5 + rot: -1.5707963267948966 rad + pos: -158.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9234 + color: '#E32636FF' + - uid: 9868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -176.5,-3.5 + rot: -1.5707963267948966 rad + pos: -159.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9235 + color: '#E32636FF' + - uid: 9869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -177.5,-4.5 + rot: -1.5707963267948966 rad + pos: -160.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9236 + - uid: 9870 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -179.5,-3.5 + rot: -1.5707963267948966 rad + pos: -161.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9237 + color: '#E32636FF' + - uid: 9871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -180.5,-4.5 + rot: -1.5707963267948966 rad + pos: -162.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9238 + - uid: 9872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -180.5,-3.5 + rot: -1.5707963267948966 rad + pos: -163.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9239 + color: '#E32636FF' + - uid: 9873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -181.5,-4.5 + rot: -1.5707963267948966 rad + pos: -164.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9240 + - uid: 9874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -181.5,-3.5 + rot: -1.5707963267948966 rad + pos: -165.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9241 + color: '#E32636FF' + - uid: 9875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -182.5,-4.5 + rot: -1.5707963267948966 rad + pos: -156.5,3.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9242 + - uid: 9876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -182.5,-3.5 + rot: -1.5707963267948966 rad + pos: -157.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9243 + color: '#E32636FF' + - uid: 9877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -183.5,-4.5 + rot: -1.5707963267948966 rad + pos: -158.5,3.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9244 + - uid: 9878 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -183.5,-3.5 + rot: -1.5707963267948966 rad + pos: -159.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9245 + color: '#E32636FF' + - uid: 9879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -184.5,-4.5 + rot: -1.5707963267948966 rad + pos: -160.5,3.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9246 + - uid: 9880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -184.5,-3.5 + rot: -1.5707963267948966 rad + pos: -161.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9247 + color: '#E32636FF' + - uid: 9881 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -185.5,-3.5 + rot: -1.5707963267948966 rad + pos: -162.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9248 + color: '#E32636FF' + - uid: 9882 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -186.5,-4.5 + rot: -1.5707963267948966 rad + pos: -163.5,3.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9249 + - uid: 9883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -187.5,-4.5 + rot: -1.5707963267948966 rad + pos: -164.5,3.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9250 + - uid: 9884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -187.5,-3.5 + rot: -1.5707963267948966 rad + pos: -165.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9251 + color: '#E32636FF' + - uid: 9885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -188.5,-4.5 + rot: -1.5707963267948966 rad + pos: -166.5,3.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9252 + - uid: 9886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -188.5,-3.5 + rot: -1.5707963267948966 rad + pos: -167.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9253 + color: '#E32636FF' + - uid: 9887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -189.5,-4.5 + rot: -1.5707963267948966 rad + pos: -168.5,3.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9254 + - uid: 9888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -189.5,-3.5 + rot: -1.5707963267948966 rad + pos: -169.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9255 + color: '#E32636FF' + - uid: 9889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -190.5,-4.5 + rot: -1.5707963267948966 rad + pos: -170.5,3.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9256 + - uid: 9890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -190.5,-3.5 + rot: -1.5707963267948966 rad + pos: -171.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9257 + color: '#E32636FF' + - uid: 9891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -191.5,-4.5 + rot: -1.5707963267948966 rad + pos: -172.5,3.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9258 + - uid: 9892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -191.5,-3.5 + rot: -1.5707963267948966 rad + pos: -173.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9259 + color: '#E32636FF' + - uid: 9893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -192.5,-4.5 + rot: -1.5707963267948966 rad + pos: -174.5,3.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9260 + - uid: 9894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -192.5,-3.5 + rot: 3.141592653589793 rad + pos: -155.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9261 + color: '#E32636FF' + - uid: 9895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -193.5,-4.5 + rot: 3.141592653589793 rad + pos: -155.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9262 + - uid: 9896 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -193.5,-3.5 + rot: 3.141592653589793 rad + pos: -155.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9263 + color: '#E32636FF' + - uid: 9897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -194.5,-4.5 + rot: 3.141592653589793 rad + pos: -155.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9264 + - uid: 9898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -200.5,-3.5 + rot: 3.141592653589793 rad + pos: -155.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9265 + color: '#E32636FF' + - uid: 9899 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -201.5,-4.5 + rot: 3.141592653589793 rad + pos: -155.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9266 + - uid: 9900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -201.5,-3.5 + rot: 3.141592653589793 rad + pos: -155.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9267 + color: '#E32636FF' + - uid: 9901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -202.5,-4.5 + rot: 3.141592653589793 rad + pos: -155.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9268 + - uid: 9902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -202.5,-3.5 + rot: 3.141592653589793 rad + pos: -155.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9269 + color: '#E32636FF' + - uid: 9903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -203.5,-4.5 + rot: 3.141592653589793 rad + pos: -155.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9270 + - uid: 9904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -203.5,-3.5 + rot: 3.141592653589793 rad + pos: -155.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9271 + color: '#E32636FF' + - uid: 9905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -204.5,-4.5 + rot: 3.141592653589793 rad + pos: -155.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9272 + - uid: 9906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -204.5,-3.5 + rot: 3.141592653589793 rad + pos: -155.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9273 + color: '#E32636FF' + - uid: 9907 components: - type: Transform rot: 1.5707963267948966 rad - pos: -205.5,-3.5 + pos: -158.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9274 + - uid: 9908 components: - type: Transform rot: 1.5707963267948966 rad - pos: -195.5,-3.5 + pos: -159.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9275 + - uid: 9909 components: - type: Transform rot: 1.5707963267948966 rad - pos: -196.5,-4.5 + pos: -160.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9276 + color: '#0055CCFF' + - uid: 9910 components: - type: Transform rot: 1.5707963267948966 rad - pos: -196.5,-3.5 + pos: -161.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9277 + - uid: 9911 components: - type: Transform rot: 1.5707963267948966 rad - pos: -197.5,-4.5 + pos: -162.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9278 + color: '#0055CCFF' + - uid: 9912 components: - type: Transform rot: 1.5707963267948966 rad - pos: -197.5,-3.5 + pos: -163.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9279 + - uid: 9913 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -198.5,-4.5 + rot: 3.141592653589793 rad + pos: -155.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9280 + - uid: 9914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -198.5,-3.5 + pos: -164.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9281 + - uid: 9915 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -199.5,-4.5 + pos: -164.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9282 + color: '#0055CCFF' + - uid: 9916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -199.5,-3.5 + pos: -164.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9283 + - uid: 9917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -200.5,-4.5 + rot: 3.141592653589793 rad + pos: -164.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9284 + color: '#0055CCFF' + - uid: 9918 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -206.5,-4.5 + rot: -1.5707963267948966 rad + pos: -156.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9285 + - uid: 9919 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -207.5,-4.5 + rot: -1.5707963267948966 rad + pos: -157.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9286 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -207.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9287 + - uid: 9920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -208.5,-4.5 + rot: -1.5707963267948966 rad + pos: -158.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9288 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -208.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9289 + - uid: 9921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -209.5,-4.5 + rot: -1.5707963267948966 rad + pos: -159.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9290 + - uid: 9922 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -209.5,-3.5 + rot: -1.5707963267948966 rad + pos: -160.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9291 + color: '#E32636FF' + - uid: 9923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -210.5,-4.5 + rot: -1.5707963267948966 rad + pos: -161.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9292 + - uid: 9924 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -210.5,-3.5 + rot: -1.5707963267948966 rad + pos: -162.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9293 + color: '#E32636FF' + - uid: 9925 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -211.5,-4.5 + rot: -1.5707963267948966 rad + pos: -164.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9294 + - uid: 9926 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -211.5,-3.5 + rot: -1.5707963267948966 rad + pos: -165.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9295 + color: '#E32636FF' + - uid: 9927 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -212.5,-4.5 + rot: -1.5707963267948966 rad + pos: -166.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9296 + - uid: 9928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -212.5,-3.5 + rot: 3.141592653589793 rad + pos: -154.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9297 + - uid: 9929 components: - type: Transform - pos: -177.5,-4.5 + rot: 3.141592653589793 rad + pos: -154.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9298 + - uid: 9930 components: - type: Transform - pos: -176.5,-5.5 + rot: 3.141592653589793 rad + pos: -57.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9299 + color: '#0055CCFF' + - uid: 9931 components: - type: Transform - pos: -176.5,-6.5 + pos: -114.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9300 + - uid: 9932 components: - type: Transform - pos: -176.5,-7.5 + rot: 3.141592653589793 rad + pos: -113.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9301 + - uid: 9933 components: - type: Transform - pos: -176.5,-8.5 + rot: 1.5707963267948966 rad + pos: -114.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9302 + - uid: 9934 components: - type: Transform - pos: -176.5,-9.5 + rot: 1.5707963267948966 rad + pos: -115.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9303 + - uid: 9935 components: - type: Transform - pos: -176.5,-10.5 + pos: -58.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9304 + color: '#A1A100FF' + - uid: 9936 components: - type: Transform - pos: -176.5,-11.5 + rot: -1.5707963267948966 rad + pos: -74.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9305 + - uid: 9937 components: - type: Transform - pos: -176.5,-12.5 + rot: 1.5707963267948966 rad + pos: -74.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9306 + - uid: 9938 components: - type: Transform - pos: -177.5,-5.5 + rot: 3.141592653589793 rad + pos: -73.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9307 + - uid: 9939 components: - type: Transform - pos: -177.5,-6.5 + rot: -1.5707963267948966 rad + pos: -74.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9308 + - uid: 9940 components: - type: Transform - pos: -177.5,-7.5 + pos: -73.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9309 + - uid: 9941 components: - type: Transform - pos: -177.5,-8.5 + rot: 3.141592653589793 rad + pos: -73.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9310 + - uid: 9942 components: - type: Transform - pos: -177.5,-9.5 + rot: -1.5707963267948966 rad + pos: -74.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9311 + - uid: 9943 components: - type: Transform - pos: -177.5,-10.5 + rot: -1.5707963267948966 rad + pos: -76.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9312 + - uid: 9944 components: - type: Transform - pos: -177.5,-11.5 + rot: -1.5707963267948966 rad + pos: -78.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9313 + - uid: 9945 components: - type: Transform - pos: -177.5,-12.5 + rot: -1.5707963267948966 rad + pos: -79.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9314 + - uid: 9946 components: - type: Transform rot: 3.141592653589793 rad - pos: -186.5,-2.5 + pos: -77.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9315 + - uid: 9947 components: - type: Transform - rot: 3.141592653589793 rad - pos: -185.5,-3.5 + rot: 1.5707963267948966 rad + pos: -80.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9316 + - uid: 9948 components: - type: Transform - rot: 3.141592653589793 rad - pos: -186.5,-1.5 + pos: -81.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9317 + - uid: 9949 components: - type: Transform - rot: 3.141592653589793 rad - pos: -186.5,-0.5 + pos: -81.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9318 + - uid: 9950 components: - type: Transform rot: 3.141592653589793 rad - pos: -186.5,0.5 + pos: -81.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9319 + - uid: 9951 components: - type: Transform - rot: 3.141592653589793 rad - pos: -186.5,1.5 + rot: -1.5707963267948966 rad + pos: -83.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9320 + - uid: 9952 components: - type: Transform - rot: 3.141592653589793 rad - pos: -186.5,2.5 + rot: 1.5707963267948966 rad + pos: -80.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9321 + - uid: 9953 components: - type: Transform - rot: 3.141592653589793 rad - pos: -186.5,3.5 + rot: 1.5707963267948966 rad + pos: -79.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9322 + - uid: 9954 components: - type: Transform rot: 3.141592653589793 rad - pos: -186.5,4.5 + pos: -73.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9323 + - uid: 9955 components: - type: Transform rot: 3.141592653589793 rad - pos: -186.5,5.5 + pos: -77.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9324 + - uid: 9956 components: - type: Transform - rot: 3.141592653589793 rad - pos: -186.5,6.5 + rot: 1.5707963267948966 rad + pos: -76.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9325 + - uid: 9957 components: - type: Transform - rot: 3.141592653589793 rad - pos: -185.5,-2.5 + pos: -73.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9326 + - uid: 9958 components: - type: Transform - rot: 3.141592653589793 rad - pos: -185.5,-1.5 + pos: -73.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9327 + - uid: 9959 components: - type: Transform - rot: 3.141592653589793 rad - pos: -185.5,-0.5 + pos: -73.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9328 + - uid: 9960 components: - type: Transform - rot: 3.141592653589793 rad - pos: -185.5,0.5 + rot: 1.5707963267948966 rad + pos: -140.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9329 + - uid: 9961 components: - type: Transform - rot: 3.141592653589793 rad - pos: -185.5,1.5 + pos: -14.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9330 + color: '#0055CCFF' + - uid: 9962 components: - type: Transform - rot: 3.141592653589793 rad - pos: -185.5,2.5 + rot: -1.5707963267948966 rad + pos: -13.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9331 + - uid: 9963 components: - type: Transform rot: 3.141592653589793 rad - pos: -185.5,3.5 + pos: -14.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9332 + - uid: 9964 components: - type: Transform rot: 3.141592653589793 rad - pos: -185.5,5.5 + pos: -14.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9333 + - uid: 9965 components: - type: Transform - rot: 3.141592653589793 rad - pos: -185.5,6.5 + rot: 1.5707963267948966 rad + pos: -12.5,-15.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9334 + - uid: 9966 components: - type: Transform - pos: -194.5,-4.5 + rot: 1.5707963267948966 rad + pos: -13.5,-15.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9335 + - uid: 9967 components: - type: Transform - pos: -194.5,-5.5 + rot: 1.5707963267948966 rad + pos: -9.5,-15.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9336 + - uid: 9968 components: - type: Transform - pos: -194.5,-6.5 + rot: 1.5707963267948966 rad + pos: -11.5,-15.5 + parent: 2 + - uid: 9969 + components: + - type: Transform + pos: -14.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9337 + - uid: 9970 components: - type: Transform - pos: -194.5,-7.5 + pos: -13.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9338 + - uid: 9971 components: - type: Transform - pos: -194.5,-8.5 + pos: -13.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9339 + - uid: 9972 components: - type: Transform - pos: -194.5,-9.5 + pos: -176.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9340 + - uid: 9973 components: - type: Transform - pos: -194.5,-10.5 + pos: -175.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9341 + color: '#E32636FF' + - uid: 9974 components: - type: Transform - pos: -194.5,-11.5 + rot: -1.5707963267948966 rad + pos: -165.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9342 + - uid: 9975 components: - type: Transform - pos: -194.5,-12.5 + rot: -1.5707963267948966 rad + pos: -166.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9343 + - uid: 9976 components: - type: Transform - pos: -195.5,-5.5 + rot: -1.5707963267948966 rad + pos: -77.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9344 + - uid: 9977 components: - type: Transform - pos: -195.5,-6.5 + pos: -176.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9345 + - uid: 9978 components: - type: Transform - pos: -195.5,-7.5 + pos: -176.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9346 + - uid: 9979 components: - type: Transform - pos: -195.5,-8.5 + pos: -176.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9347 + - uid: 9980 components: - type: Transform - pos: -195.5,-9.5 + pos: -176.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9348 + - uid: 9981 components: - type: Transform - pos: -195.5,-10.5 + pos: -176.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9349 + - uid: 9982 components: - type: Transform - pos: -195.5,-11.5 + pos: -176.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9350 + - uid: 9983 components: - type: Transform - pos: -195.5,-12.5 + rot: -1.5707963267948966 rad + pos: -178.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9351 + color: '#0055CCFF' + - uid: 9984 components: - type: Transform - rot: 3.141592653589793 rad - pos: -205.5,-3.5 + rot: -1.5707963267948966 rad + pos: -179.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9352 + color: '#0055CCFF' + - uid: 9985 components: - type: Transform - rot: 3.141592653589793 rad - pos: -205.5,-2.5 + rot: -1.5707963267948966 rad + pos: -180.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9353 + color: '#0055CCFF' + - uid: 9986 components: - type: Transform - rot: 3.141592653589793 rad - pos: -205.5,-1.5 + rot: -1.5707963267948966 rad + pos: -181.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9354 + color: '#0055CCFF' + - uid: 9987 components: - type: Transform - rot: 3.141592653589793 rad - pos: -205.5,-0.5 + rot: -1.5707963267948966 rad + pos: -182.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9355 + color: '#0055CCFF' + - uid: 9988 components: - type: Transform - rot: 3.141592653589793 rad - pos: -205.5,0.5 + rot: -1.5707963267948966 rad + pos: -183.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9356 + color: '#0055CCFF' + - uid: 9989 components: - type: Transform - rot: 3.141592653589793 rad - pos: -205.5,1.5 + rot: -1.5707963267948966 rad + pos: -184.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9357 + color: '#0055CCFF' + - uid: 9990 components: - type: Transform - rot: 3.141592653589793 rad - pos: -205.5,2.5 + rot: -1.5707963267948966 rad + pos: -185.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -177.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9358 + - uid: 9992 components: - type: Transform - rot: 3.141592653589793 rad - pos: -205.5,3.5 + rot: -1.5707963267948966 rad + pos: -178.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9359 + - uid: 9993 components: - type: Transform - rot: 3.141592653589793 rad - pos: -205.5,4.5 + rot: -1.5707963267948966 rad + pos: -179.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9360 + - uid: 9994 components: - type: Transform - rot: 3.141592653589793 rad - pos: -205.5,5.5 + rot: -1.5707963267948966 rad + pos: -180.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9361 + - uid: 9995 components: - type: Transform - rot: 3.141592653589793 rad - pos: -206.5,-2.5 + rot: -1.5707963267948966 rad + pos: -181.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9362 + color: '#E32636FF' + - uid: 9996 components: - type: Transform - rot: 3.141592653589793 rad - pos: -206.5,-1.5 + rot: -1.5707963267948966 rad + pos: -182.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9363 + color: '#E32636FF' + - uid: 9997 components: - type: Transform - rot: 3.141592653589793 rad - pos: -206.5,-0.5 + rot: -1.5707963267948966 rad + pos: -184.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9364 + color: '#E32636FF' + - uid: 9998 components: - type: Transform - rot: 3.141592653589793 rad - pos: -206.5,0.5 + pos: -185.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9365 + color: '#E32636FF' + - uid: 9999 components: - type: Transform rot: 3.141592653589793 rad - pos: -206.5,1.5 + pos: -187.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9366 + - uid: 10000 components: - type: Transform - rot: 3.141592653589793 rad - pos: -206.5,2.5 + rot: 1.5707963267948966 rad + pos: -188.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9367 + - uid: 10001 components: - type: Transform - rot: 3.141592653589793 rad - pos: -206.5,3.5 + rot: 1.5707963267948966 rad + pos: -187.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9368 + - uid: 10002 components: - type: Transform - rot: 3.141592653589793 rad - pos: -206.5,4.5 + rot: 1.5707963267948966 rad + pos: -186.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9369 + - uid: 10003 components: - type: Transform - rot: 3.141592653589793 rad - pos: -206.5,5.5 + pos: -189.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9370 + - uid: 10004 components: - type: Transform - rot: 3.141592653589793 rad - pos: -205.5,6.5 + pos: -189.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9371 + color: '#0055CCFF' + - uid: 10005 components: - type: Transform - rot: 3.141592653589793 rad - pos: -206.5,6.5 + pos: -189.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9372 + - uid: 10006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-16.5 + pos: -189.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9373 + color: '#0055CCFF' + - uid: 10007 components: - type: Transform - pos: -157.5,-1.5 + pos: -189.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9374 + - uid: 10008 components: - type: Transform - pos: -157.5,-0.5 + pos: -189.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9375 + - uid: 10009 components: - type: Transform - pos: -157.5,0.5 + rot: -1.5707963267948966 rad + pos: -188.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9376 + - uid: 10010 components: - type: Transform - pos: -157.5,1.5 + rot: 1.5707963267948966 rad + pos: -203.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9377 + - uid: 10011 components: - type: Transform - pos: -157.5,2.5 + rot: 1.5707963267948966 rad + pos: -201.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9378 + - uid: 10012 components: - type: Transform - pos: -157.5,3.5 + rot: 1.5707963267948966 rad + pos: -202.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9379 + - uid: 10013 components: - type: Transform rot: 3.141592653589793 rad - pos: -157.5,5.5 + pos: -196.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9380 + - uid: 10014 components: - type: Transform - rot: 3.141592653589793 rad - pos: -157.5,6.5 + rot: 1.5707963267948966 rad + pos: -200.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9381 + - uid: 10015 components: - type: Transform rot: 3.141592653589793 rad - pos: -157.5,7.5 + pos: -196.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9382 + - uid: 10016 components: - type: Transform rot: 3.141592653589793 rad - pos: -157.5,8.5 + pos: -196.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9383 + - uid: 10017 components: - type: Transform rot: 3.141592653589793 rad - pos: -157.5,9.5 + pos: -196.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9384 + - uid: 10018 components: - type: Transform rot: 1.5707963267948966 rad - pos: -155.5,10.5 + pos: -194.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9385 + - uid: 10019 components: - type: Transform rot: 1.5707963267948966 rad - pos: -156.5,10.5 + pos: -195.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9386 + - uid: 10020 components: - type: Transform rot: 1.5707963267948966 rad - pos: -158.5,10.5 + pos: -198.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9387 + - uid: 10021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -159.5,10.5 + pos: -206.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9388 + - uid: 10022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -160.5,10.5 + pos: -206.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9389 + - uid: 10023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -161.5,10.5 + pos: -206.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9390 + - uid: 10024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -162.5,10.5 + pos: -206.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9391 + - uid: 10025 components: - type: Transform rot: 1.5707963267948966 rad - pos: -163.5,10.5 + pos: -197.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9392 + - uid: 10026 components: - type: Transform rot: 1.5707963267948966 rad - pos: -164.5,10.5 + pos: -205.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9393 + - uid: 10027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -165.5,10.5 + rot: 3.141592653589793 rad + pos: -113.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9394 + color: '#E32636FF' + - uid: 10028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -166.5,10.5 + rot: 3.141592653589793 rad + pos: -117.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9395 + - uid: 10029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -167.5,10.5 + rot: 3.141592653589793 rad + pos: -117.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9396 + - uid: 10030 components: - type: Transform rot: 1.5707963267948966 rad - pos: -168.5,10.5 + pos: -116.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9397 + - uid: 10031 components: - type: Transform rot: 1.5707963267948966 rad - pos: -169.5,10.5 + pos: -116.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9398 + - uid: 10032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -168.5,4.5 + rot: 3.141592653589793 rad + pos: -113.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9399 + color: '#E32636FF' + - uid: 10033 components: - type: Transform rot: 1.5707963267948966 rad - pos: -169.5,4.5 + pos: -125.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9400 + - uid: 10034 components: - type: Transform rot: 1.5707963267948966 rad - pos: -170.5,4.5 + pos: -68.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9401 + - uid: 10035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -171.5,4.5 + pos: -81.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9402 + - uid: 10036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -158.5,4.5 + rot: 3.141592653589793 rad + pos: -187.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9403 + - uid: 10037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -159.5,4.5 + rot: 3.141592653589793 rad + pos: -185.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9404 + - uid: 10038 components: - type: Transform rot: 1.5707963267948966 rad - pos: -160.5,4.5 + pos: -186.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9405 + - uid: 10039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -161.5,4.5 + rot: 3.141592653589793 rad + pos: -185.5,-23.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9406 + - uid: 10040 components: - type: Transform rot: 1.5707963267948966 rad - pos: -162.5,4.5 + pos: -187.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9407 + - uid: 10041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -163.5,4.5 + rot: 3.141592653589793 rad + pos: -187.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9408 + - uid: 10042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -164.5,4.5 + rot: 3.141592653589793 rad + pos: -187.5,-23.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9409 + - uid: 10043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -165.5,4.5 + pos: -221.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9410 + - uid: 10044 components: - type: Transform rot: 1.5707963267948966 rad - pos: -166.5,4.5 + pos: -225.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9411 + - uid: 10045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -167.5,4.5 + rot: -1.5707963267948966 rad + pos: -224.5,-19.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9412 + - uid: 10046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -172.5,4.5 + rot: -1.5707963267948966 rad + pos: -223.5,-19.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9413 + - uid: 10047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -173.5,4.5 + rot: -1.5707963267948966 rad + pos: -222.5,-19.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9414 + - uid: 10048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -174.5,4.5 + rot: -1.5707963267948966 rad + pos: -221.5,-19.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9415 + - uid: 10049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -175.5,4.5 + pos: -221.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9416 + - uid: 10050 components: - type: Transform - pos: -157.5,-4.5 + pos: -221.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9417 + - uid: 10051 components: - type: Transform - pos: -157.5,-5.5 + pos: -221.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9418 + - uid: 10052 components: - type: Transform - pos: -157.5,-6.5 + rot: -1.5707963267948966 rad + pos: -220.5,-19.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9419 + - uid: 10053 components: - type: Transform - rot: 3.141592653589793 rad - pos: -157.5,-8.5 + rot: 1.5707963267948966 rad + pos: -220.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9420 + - uid: 10054 components: - type: Transform - rot: 3.141592653589793 rad - pos: -157.5,-9.5 + rot: -1.5707963267948966 rad + pos: -223.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9421 + - uid: 10055 components: - type: Transform rot: 3.141592653589793 rad - pos: -157.5,-10.5 + pos: -219.5,-18.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9422 + - uid: 10056 components: - type: Transform rot: 3.141592653589793 rad - pos: -157.5,-11.5 + pos: -219.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9423 + - uid: 10057 components: - type: Transform rot: 3.141592653589793 rad - pos: -157.5,-12.5 + pos: -219.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9424 + - uid: 10058 components: - type: Transform rot: 3.141592653589793 rad - pos: -157.5,-13.5 + pos: -219.5,-15.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9425 + - uid: 10059 components: - type: Transform rot: 3.141592653589793 rad - pos: -157.5,-14.5 + pos: -219.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9426 + - uid: 10060 components: - type: Transform rot: 3.141592653589793 rad - pos: -157.5,-15.5 + pos: -219.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9427 + - uid: 10061 components: - type: Transform - rot: 3.141592653589793 rad - pos: -157.5,-16.5 + rot: 1.5707963267948966 rad + pos: -219.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9428 + - uid: 10062 components: - type: Transform rot: 3.141592653589793 rad - pos: -157.5,-17.5 + pos: -218.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9429 + - uid: 10063 components: - type: Transform rot: 3.141592653589793 rad - pos: -157.5,-18.5 + pos: -218.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9430 + - uid: 10064 components: - type: Transform rot: 3.141592653589793 rad - pos: -157.5,-19.5 + pos: -218.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9431 + - uid: 10065 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.5,6.5 + pos: -221.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9432 + - uid: 10066 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,7.5 + pos: -223.5,-35.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9433 + - uid: 10067 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,8.5 + pos: -223.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9434 + - uid: 10068 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,10.5 + pos: -223.5,-33.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9435 + - uid: 10069 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,11.5 + pos: -223.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9436 + - uid: 10070 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.5,12.5 + rot: 1.5707963267948966 rad + pos: -222.5,-31.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9437 + - uid: 10071 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.5,13.5 + rot: 1.5707963267948966 rad + pos: -221.5,-31.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9438 + - uid: 10072 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.5,-3.5 + rot: 1.5707963267948966 rad + pos: -220.5,-31.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9439 + - uid: 10073 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.5,-2.5 + rot: 1.5707963267948966 rad + pos: -219.5,-31.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9440 + - uid: 10074 + components: + - type: Transform + pos: -219.5,-28.5 + parent: 2 + - uid: 10075 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,-1.5 + pos: -219.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9441 + - uid: 10076 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,-0.5 + pos: -219.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9442 + - uid: 10077 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,0.5 + pos: -219.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9443 + - uid: 10078 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,1.5 + pos: -219.5,-23.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9444 + - uid: 10079 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,2.5 + pos: -219.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9445 + - uid: 10080 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,4.5 + pos: -219.5,-21.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9446 + - uid: 10081 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,5.5 + pos: -219.5,-20.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9447 + - uid: 10082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -166.5,9.5 + pos: -218.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9448 + - uid: 10083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -167.5,9.5 + pos: -226.5,-29.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9449 + - uid: 10084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -168.5,9.5 + pos: -226.5,-28.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9450 + - uid: 10085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -156.5,9.5 + pos: -226.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9451 + - uid: 10086 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -157.5,9.5 + pos: -226.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9452 + - uid: 10087 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -158.5,9.5 + pos: -226.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9453 + - uid: 10088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -159.5,9.5 + rot: 3.141592653589793 rad + pos: -225.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9454 + - uid: 10089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -160.5,9.5 + rot: 3.141592653589793 rad + pos: -225.5,-21.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9455 + - uid: 10090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -225.5,-20.5 + parent: 2 + - uid: 10091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -224.5,-31.5 + parent: 2 + - uid: 10092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -161.5,9.5 + pos: -222.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9456 + - uid: 10093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -162.5,9.5 + pos: -222.5,-39.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9457 + - uid: 10094 components: - type: Transform rot: -1.5707963267948966 rad - pos: -163.5,9.5 + pos: -222.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9458 + - uid: 10095 components: - type: Transform rot: -1.5707963267948966 rad - pos: -164.5,9.5 + pos: -185.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9459 + - uid: 10096 components: - type: Transform rot: -1.5707963267948966 rad - pos: -165.5,9.5 + pos: -186.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9460 + - uid: 10097 components: - type: Transform rot: -1.5707963267948966 rad - pos: -156.5,3.5 + pos: -190.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9461 + - uid: 10098 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -157.5,3.5 + rot: 3.141592653589793 rad + pos: -196.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9462 + - uid: 10099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -158.5,3.5 + rot: 3.141592653589793 rad + pos: -198.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9463 + - uid: 10100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -159.5,3.5 + rot: 3.141592653589793 rad + pos: -198.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9464 + - uid: 10101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -160.5,3.5 + rot: 3.141592653589793 rad + pos: -198.5,10.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9465 + - uid: 10102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -161.5,3.5 + rot: 3.141592653589793 rad + pos: -198.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9466 + - uid: 10103 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -162.5,3.5 + rot: 3.141592653589793 rad + pos: -198.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9467 + - uid: 10104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -163.5,3.5 + rot: 3.141592653589793 rad + pos: -198.5,6.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9468 + - uid: 10105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -164.5,3.5 + rot: 1.5707963267948966 rad + pos: -204.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9469 + - uid: 10106 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -165.5,3.5 + rot: 3.141592653589793 rad + pos: -198.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9470 + - uid: 10107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -166.5,3.5 + rot: 1.5707963267948966 rad + pos: -199.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9471 + - uid: 10108 components: - type: Transform rot: -1.5707963267948966 rad - pos: -167.5,3.5 + pos: -197.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9472 + - uid: 10109 components: - type: Transform rot: -1.5707963267948966 rad - pos: -168.5,3.5 + pos: -195.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9473 + - uid: 10110 components: - type: Transform rot: -1.5707963267948966 rad - pos: -169.5,3.5 + pos: -194.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9474 + - uid: 10111 components: - type: Transform rot: -1.5707963267948966 rad - pos: -170.5,3.5 + pos: -196.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9475 + - uid: 10112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -171.5,3.5 + rot: 3.141592653589793 rad + pos: -198.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9476 +- proto: GasPipeTJunction + entities: + - uid: 10113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -172.5,3.5 + pos: -197.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9477 + - uid: 10114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -173.5,3.5 + rot: 1.5707963267948966 rad + pos: -205.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9478 + - uid: 10115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -174.5,3.5 + pos: -77.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9479 + - uid: 10116 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,-5.5 + pos: -75.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9480 + - uid: 10117 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.5,-6.5 + rot: -1.5707963267948966 rad + pos: -157.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9481 + color: '#0055CCFF' + - uid: 10118 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,-7.5 + pos: -59.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9482 + - uid: 10119 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.5,-9.5 + rot: -1.5707963267948966 rad + pos: -56.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9483 + - uid: 10120 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.5,-10.5 + rot: -1.5707963267948966 rad + pos: -60.5,19.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9484 + - uid: 10121 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.5,-11.5 + pos: -74.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9485 + - uid: 10122 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.5,-12.5 + pos: -68.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9486 + - uid: 10123 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.5,-13.5 + rot: 1.5707963267948966 rad + pos: -50.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9487 + color: '#0055CCFF' + - uid: 10124 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.5,-14.5 + rot: 1.5707963267948966 rad + pos: -49.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9488 + - uid: 10125 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.5,-15.5 + pos: -62.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9489 + - uid: 10126 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.5,-16.5 + pos: -63.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9490 + color: '#0055CCFF' + - uid: 10127 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.5,-17.5 + rot: -1.5707963267948966 rad + pos: -87.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9491 + color: '#0055CCFF' + - uid: 10128 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.5,-18.5 + rot: -1.5707963267948966 rad + pos: -88.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9492 + - uid: 10129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -158.5,-7.5 + rot: -1.5707963267948966 rad + pos: -57.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9493 + - uid: 10130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -159.5,-7.5 + pos: -14.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9494 + - uid: 10131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -160.5,-7.5 + pos: -7.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9495 + - uid: 10132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -161.5,-7.5 + pos: -6.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9496 + color: '#E32636FF' + - uid: 10133 components: - type: Transform rot: 1.5707963267948966 rad - pos: -162.5,-7.5 + pos: -26.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9497 + - uid: 10134 components: - type: Transform rot: 1.5707963267948966 rad - pos: -163.5,-7.5 + pos: -27.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9498 + color: '#E32636FF' + - uid: 10135 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.5,-19.5 + pos: -106.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9499 + - uid: 10136 components: - type: Transform - pos: -164.5,-8.5 + pos: -105.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9500 + - uid: 10137 components: - type: Transform - pos: -164.5,-9.5 + pos: -176.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9501 + color: '#E32636FF' + - uid: 10138 components: - type: Transform - pos: -164.5,-10.5 + pos: -177.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9502 + - uid: 10139 components: - type: Transform - rot: 3.141592653589793 rad - pos: -164.5,-11.5 + pos: -194.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9503 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -156.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9504 + - uid: 10140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -157.5,-8.5 + rot: 3.141592653589793 rad + pos: -206.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9505 + color: '#0055CCFF' + - uid: 10141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -158.5,-8.5 + pos: -195.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9506 + - uid: 10142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -159.5,-8.5 + rot: 3.141592653589793 rad + pos: -205.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9507 + - uid: 10143 components: - type: Transform rot: -1.5707963267948966 rad - pos: -160.5,-8.5 + pos: -157.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9508 + color: '#0055CCFF' + - uid: 10144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -161.5,-8.5 + pos: -157.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9509 + color: '#0055CCFF' + - uid: 10145 components: - type: Transform rot: -1.5707963267948966 rad - pos: -162.5,-8.5 + pos: -155.5,9.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9510 + - uid: 10146 components: - type: Transform rot: -1.5707963267948966 rad - pos: -164.5,-9.5 + pos: -155.5,3.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9511 + - uid: 10147 components: - type: Transform rot: -1.5707963267948966 rad - pos: -165.5,-9.5 + pos: -155.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9512 + - uid: 10148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -166.5,-9.5 + pos: -73.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9513 + - uid: 10149 components: - type: Transform rot: 3.141592653589793 rad - pos: -154.5,12.5 + pos: -77.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9514 + - uid: 10150 components: - type: Transform rot: 3.141592653589793 rad - pos: -154.5,13.5 + pos: -78.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9515 + - uid: 10151 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,6.5 + pos: -78.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9516 + - uid: 10152 components: - type: Transform - pos: -114.5,-11.5 + pos: -77.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9517 + - uid: 10153 components: - type: Transform - rot: 3.141592653589793 rad - pos: -113.5,-13.5 + rot: -1.5707963267948966 rad + pos: -73.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9518 + - uid: 10154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-14.5 + pos: -74.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9519 + - uid: 10155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,-14.5 + pos: -75.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9520 + - uid: 10156 components: - type: Transform - pos: -58.5,9.5 + pos: -76.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 9521 + - uid: 10157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-4.5 + rot: 3.141592653589793 rad + pos: -77.5,1.5 parent: 2 - - uid: 9522 + - uid: 10158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-2.5 + rot: -1.5707963267948966 rad + pos: -73.5,-8.5 parent: 2 - - uid: 9523 + - uid: 10159 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,-1.5 + pos: -75.5,-8.5 parent: 2 - - uid: 9524 + - uid: 10160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-0.5 + rot: 3.141592653589793 rad + pos: -74.5,-8.5 parent: 2 - - uid: 9525 + - uid: 10161 components: - type: Transform - pos: -73.5,0.5 + rot: 3.141592653589793 rad + pos: -76.5,-10.5 parent: 2 - - uid: 9526 + - uid: 10162 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,2.5 + pos: -74.5,-10.5 parent: 2 - - uid: 9527 + - uid: 10163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,1.5 + rot: 1.5707963267948966 rad + pos: -14.5,-15.5 parent: 2 - - uid: 9528 + - uid: 10164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,1.5 + rot: 3.141592653589793 rad + pos: -175.5,3.5 parent: 2 - - uid: 9529 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,1.5 + rot: 1.5707963267948966 rad + pos: -176.5,4.5 parent: 2 - - uid: 9530 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,1.5 + pos: -185.5,-20.5 parent: 2 - - uid: 9531 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10167 components: - type: Transform rot: 3.141592653589793 rad - pos: -77.5,2.5 - parent: 2 - - uid: 9532 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,1.5 + pos: -221.5,-8.5 parent: 2 - - uid: 9533 + - uid: 10168 components: - type: Transform - pos: -81.5,0.5 + rot: -1.5707963267948966 rad + pos: -219.5,-19.5 parent: 2 - - uid: 9534 + - uid: 10169 components: - type: Transform - pos: -81.5,-0.5 + pos: -218.5,-8.5 parent: 2 - - uid: 9535 + - uid: 10170 components: - type: Transform - pos: -81.5,-5.5 + pos: -223.5,-31.5 parent: 2 - - uid: 9536 + - uid: 10171 components: - type: Transform - pos: -81.5,-6.5 + rot: -1.5707963267948966 rad + pos: -219.5,-24.5 parent: 2 - - uid: 9537 + - uid: 10172 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-7.5 + rot: 1.5707963267948966 rad + pos: -226.5,-24.5 parent: 2 - - uid: 9538 + - uid: 10173 components: - type: Transform rot: -1.5707963267948966 rad - pos: -83.5,-5.5 + pos: -185.5,-24.5 parent: 2 - - uid: 9539 + - uid: 10174 + components: + - type: Transform + pos: -198.5,12.5 + parent: 2 +- proto: GasPort + entities: + - uid: 10175 components: - type: Transform rot: 1.5707963267948966 rad - pos: -80.5,-8.5 + pos: -192.5,13.5 parent: 2 - - uid: 9540 + - uid: 10176 components: - type: Transform rot: 1.5707963267948966 rad - pos: -79.5,-8.5 + pos: -192.5,3.5 parent: 2 - - uid: 9541 + - uid: 10177 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-9.5 + rot: 1.5707963267948966 rad + pos: -192.5,5.5 parent: 2 - - uid: 9542 + - uid: 10178 components: - type: Transform rot: 3.141592653589793 rad - pos: -77.5,-9.5 + pos: -71.5,18.5 parent: 2 - - uid: 9543 + - uid: 10179 components: - type: Transform rot: 1.5707963267948966 rad - pos: -76.5,-8.5 + pos: -75.5,21.5 parent: 2 - - uid: 9544 + - uid: 10180 components: - type: Transform - pos: -73.5,-7.5 + rot: -1.5707963267948966 rad + pos: -66.5,21.5 parent: 2 - - uid: 9545 + - uid: 10181 components: - type: Transform - pos: -73.5,-6.5 + rot: 1.5707963267948966 rad + pos: -74.5,-0.5 parent: 2 - - uid: 9546 + - uid: 10182 components: - type: Transform - pos: -73.5,-5.5 + rot: 1.5707963267948966 rad + pos: -75.5,-0.5 parent: 2 - - uid: 9547 + - uid: 10183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -140.5,-5.5 + pos: -75.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9548 + - uid: 10184 components: - type: Transform - pos: -14.5,-9.5 + pos: -74.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9549 + - uid: 10185 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-12.5 + pos: -61.5,21.5 parent: 2 - - uid: 9550 + - uid: 10186 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-13.5 + pos: -62.5,20.5 parent: 2 - - uid: 9551 + - uid: 10187 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-14.5 + pos: -62.5,22.5 parent: 2 - - uid: 9552 + - uid: 10188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-15.5 + rot: -1.5707963267948966 rad + pos: -52.5,21.5 parent: 2 - - uid: 9553 + - uid: 10189 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-15.5 + pos: -53.5,21.5 parent: 2 - - uid: 9554 + - uid: 10190 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-15.5 + pos: -192.5,11.5 parent: 2 - - uid: 9555 +- proto: GasPressurePump + entities: + - uid: 10191 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-15.5 - parent: 2 - - uid: 9556 - components: - - type: Transform - pos: -14.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9557 - components: - - type: Transform - pos: -13.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9558 - components: - - type: Transform - pos: -13.5,-13.5 + pos: -191.5,13.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9559 + - uid: 10192 components: - type: Transform - pos: -176.5,3.5 + rot: -1.5707963267948966 rad + pos: -191.5,11.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9560 + - uid: 10193 components: - type: Transform - pos: -175.5,4.5 + rot: -1.5707963267948966 rad + pos: -191.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9561 + - uid: 10194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -165.5,-12.5 + rot: 1.5707963267948966 rad + pos: -191.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9562 + - uid: 10195 components: - type: Transform rot: -1.5707963267948966 rad - pos: -166.5,-12.5 + pos: -67.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9563 + - uid: 10196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,9.5 + pos: -59.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9564 + - uid: 10197 components: - type: Transform - pos: -176.5,-13.5 + pos: -65.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9565 + - uid: 10198 components: - type: Transform - pos: -176.5,-14.5 + pos: -68.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9566 + - uid: 10199 components: - type: Transform - pos: -176.5,-15.5 + pos: -71.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9567 + - uid: 10200 components: - type: Transform - pos: -176.5,-16.5 + pos: -74.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9568 + - uid: 10201 components: - type: Transform - pos: -176.5,-17.5 + pos: -77.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9569 + - uid: 10202 components: - type: Transform - pos: -176.5,-18.5 + pos: -57.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9570 + color: '#A1A100FF' + - uid: 10203 components: - type: Transform rot: -1.5707963267948966 rad - pos: -178.5,-13.5 + pos: -56.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9571 + - uid: 10204 components: - type: Transform rot: -1.5707963267948966 rad - pos: -179.5,-13.5 + pos: -78.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9572 + - uid: 10205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -180.5,-13.5 + rot: 1.5707963267948966 rad + pos: -78.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9573 + - uid: 10206 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -181.5,-13.5 + rot: 1.5707963267948966 rad + pos: -61.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9574 + color: '#E32636FF' + - uid: 10207 components: - type: Transform rot: -1.5707963267948966 rad - pos: -182.5,-13.5 + pos: -75.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9575 + - uid: 10208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -183.5,-13.5 + rot: 1.5707963267948966 rad + pos: -75.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9576 + - uid: 10209 components: - type: Transform rot: -1.5707963267948966 rad - pos: -184.5,-13.5 + pos: -75.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9577 + - uid: 10210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -185.5,-13.5 + pos: -75.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9578 + - uid: 10211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -177.5,-19.5 + pos: -74.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9579 +- proto: GasThermoMachineFreezer + entities: + - uid: 10212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -178.5,-19.5 + pos: -76.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9580 + - uid: 10213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -179.5,-19.5 + pos: -74.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9581 + - uid: 10214 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -180.5,-19.5 + rot: 3.141592653589793 rad + pos: -76.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9582 + - uid: 10215 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -181.5,-19.5 + rot: 3.141592653589793 rad + pos: -75.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9583 + - uid: 10216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -182.5,-19.5 + rot: 3.141592653589793 rad + pos: -74.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9584 + - uid: 10217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -184.5,-20.5 + rot: 3.141592653589793 rad + pos: -71.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9585 + - type: GasThermoMachine + minTemperature: 10 + - uid: 10218 components: - type: Transform - pos: -185.5,-21.5 + rot: 3.141592653589793 rad + pos: -72.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9586 + - uid: 10219 components: - type: Transform - pos: -185.5,-22.5 + pos: -75.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9587 + - uid: 10220 components: - type: Transform - pos: -185.5,-23.5 + rot: -1.5707963267948966 rad + pos: -12.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9588 +- proto: GasThermoMachineHeater + entities: + - uid: 10221 components: - type: Transform rot: 3.141592653589793 rad - pos: -185.5,-24.5 + pos: -73.5,17.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9589 +- proto: GasValve + entities: + - uid: 10222 components: - type: Transform - rot: 3.141592653589793 rad - pos: -185.5,-25.5 + rot: -1.5707963267948966 rad + pos: -78.5,24.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9590 +- proto: GasVentPump + entities: + - uid: 10223 components: - type: Transform rot: 3.141592653589793 rad - pos: -185.5,-26.5 + pos: -198.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9591 + - type: DeviceNetwork + deviceLists: + - 76 + - uid: 10224 components: - type: Transform - rot: 3.141592653589793 rad - pos: -187.5,-26.5 + rot: 1.5707963267948966 rad + pos: -177.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9592 + - uid: 10225 components: - type: Transform rot: 3.141592653589793 rad - pos: -187.5,-25.5 + pos: -42.5,-8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 40 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9593 + - uid: 10226 components: - type: Transform - rot: 3.141592653589793 rad - pos: -187.5,-24.5 + rot: 1.5707963267948966 rad + pos: -213.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 53 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9594 + - uid: 10227 components: - type: Transform rot: 3.141592653589793 rad - pos: -187.5,-23.5 + pos: -115.5,-11.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 49 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9595 + - uid: 10228 components: - type: Transform - rot: 3.141592653589793 rad - pos: -187.5,-22.5 + rot: 1.5707963267948966 rad + pos: -115.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 50 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9596 + - uid: 10229 components: - type: Transform - rot: 3.141592653589793 rad - pos: -187.5,-21.5 + pos: -115.5,3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 50 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9597 + - uid: 10230 components: - type: Transform rot: 1.5707963267948966 rad - pos: -188.5,-13.5 + pos: -106.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 47 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9598 + - uid: 10231 components: - type: Transform rot: 1.5707963267948966 rad - pos: -187.5,-13.5 + pos: -91.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 47 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9599 + - uid: 10232 components: - type: Transform rot: 1.5707963267948966 rad - pos: -186.5,-13.5 + pos: -76.5,8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 41 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9600 + - uid: 10233 components: - type: Transform - pos: -189.5,-14.5 + rot: 3.141592653589793 rad + pos: -57.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 42 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9601 + - uid: 10234 components: - type: Transform - pos: -189.5,-15.5 + rot: 1.5707963267948966 rad + pos: -65.5,-4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 43 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9602 + - uid: 10235 components: - type: Transform - pos: -189.5,-16.5 + rot: 3.141592653589793 rad + pos: -64.5,-12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 43 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9603 + - uid: 10236 components: - type: Transform - pos: -189.5,-17.5 + pos: -64.5,4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 43 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9604 + - uid: 10237 components: - type: Transform - pos: -189.5,-18.5 + rot: 3.141592653589793 rad + pos: -55.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9605 + - uid: 10238 components: - type: Transform - pos: -189.5,-19.5 + rot: 3.141592653589793 rad + pos: -50.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9606 + - uid: 10239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -188.5,-20.5 + rot: 3.141592653589793 rad + pos: -50.5,4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 40 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9607 + - uid: 10240 components: - type: Transform rot: -1.5707963267948966 rad - pos: -186.5,4.5 + pos: -46.5,-1.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 40 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9608 + color: '#0055CCFF' + - uid: 10241 components: - type: Transform rot: -1.5707963267948966 rad - pos: -187.5,4.5 + pos: -30.5,-10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9609 + color: '#0055CCFF' + - uid: 10242 components: - type: Transform rot: -1.5707963267948966 rad - pos: -188.5,4.5 + pos: -31.5,-15.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9610 + color: '#0055CCFF' + - uid: 10243 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -189.5,4.5 + pos: -26.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9611 + color: '#0055CCFF' + - uid: 10244 components: - type: Transform rot: -1.5707963267948966 rad - pos: -190.5,4.5 + pos: -22.5,-13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9612 + color: '#0055CCFF' + - uid: 10245 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 69 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -191.5,4.5 + rot: 1.5707963267948966 rad + pos: -17.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 68 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9613 + color: '#0055CCFF' + - uid: 10247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -192.5,4.5 + rot: 1.5707963267948966 rad + pos: -24.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9614 + color: '#0055CCFF' + - uid: 10248 components: - type: Transform rot: -1.5707963267948966 rad - pos: -193.5,4.5 + pos: -8.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 71 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9615 + color: '#0055CCFF' + - uid: 10249 components: - type: Transform rot: -1.5707963267948966 rad - pos: -194.5,4.5 + pos: -2.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 71 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9616 + color: '#0055CCFF' + - uid: 10250 components: - type: Transform rot: 3.141592653589793 rad - pos: -195.5,5.5 + pos: -7.5,-10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 71 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9617 + color: '#0055CCFF' + - uid: 10251 components: - type: Transform - rot: 3.141592653589793 rad - pos: -195.5,6.5 + pos: -36.5,3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 70 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9618 + color: '#0055CCFF' + - uid: 10252 components: - type: Transform - rot: 3.141592653589793 rad - pos: -195.5,7.5 + rot: 1.5707963267948966 rad + pos: -60.5,3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 42 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9619 + color: '#0055CCFF' + - uid: 10253 components: - type: Transform - rot: 3.141592653589793 rad - pos: -195.5,8.5 + pos: -206.5,7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 53 + - 73 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9620 + color: '#0055CCFF' + - uid: 10254 components: - type: Transform - rot: 3.141592653589793 rad - pos: -195.5,9.5 + rot: 1.5707963267948966 rad + pos: -195.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 53 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9621 + color: '#0055CCFF' + - uid: 10255 components: - type: Transform rot: 3.141592653589793 rad - pos: -195.5,10.5 + pos: -194.5,-13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 53 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9622 + color: '#0055CCFF' + - uid: 10256 components: - type: Transform - rot: 3.141592653589793 rad - pos: -195.5,11.5 + rot: 1.5707963267948966 rad + pos: -186.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 53 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9623 + color: '#0055CCFF' + - uid: 10257 components: - type: Transform rot: 3.141592653589793 rad - pos: -195.5,12.5 + pos: -177.5,-13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 52 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9624 + color: '#0055CCFF' + - uid: 10258 components: - type: Transform rot: 3.141592653589793 rad - pos: -195.5,13.5 + pos: -157.5,-20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 54 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9625 + color: '#0055CCFF' + - uid: 10259 components: - type: Transform - rot: 3.141592653589793 rad - pos: -195.5,14.5 + pos: -157.5,10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 56 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9626 + color: '#0055CCFF' + - uid: 10260 components: - type: Transform - rot: 3.141592653589793 rad - pos: -195.5,15.5 + pos: -154.5,14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 56 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9627 + color: '#0055CCFF' + - uid: 10261 components: - type: Transform - rot: 3.141592653589793 rad - pos: -195.5,16.5 + rot: 1.5707963267948966 rad + pos: -163.5,10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 56 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9628 + color: '#0055CCFF' + - uid: 10262 components: - type: Transform - rot: 3.141592653589793 rad - pos: -195.5,17.5 + rot: 1.5707963267948966 rad + pos: -170.5,10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 56 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9629 + color: '#0055CCFF' + - uid: 10263 components: - type: Transform rot: 3.141592653589793 rad - pos: -195.5,18.5 + pos: -50.5,-15.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 44 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9630 + color: '#0055CCFF' + - uid: 10264 components: - type: Transform rot: 3.141592653589793 rad - pos: -195.5,19.5 + pos: -63.5,-21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 45 - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9631 + color: '#0055CCFF' + - uid: 10265 components: - type: Transform - rot: 3.141592653589793 rad - pos: -197.5,9.5 + rot: 1.5707963267948966 rad + pos: -76.5,-15.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 46 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9632 + - uid: 10266 components: - type: Transform rot: 3.141592653589793 rad - pos: -197.5,8.5 + pos: -105.5,-10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 48 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9633 + - uid: 10267 components: - type: Transform - rot: 3.141592653589793 rad - pos: -197.5,19.5 + rot: 1.5707963267948966 rad + pos: -130.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9634 + - uid: 10268 components: - type: Transform - rot: 3.141592653589793 rad - pos: -197.5,18.5 + rot: 1.5707963267948966 rad + pos: -143.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9635 + - uid: 10269 components: - type: Transform rot: 3.141592653589793 rad - pos: -197.5,17.5 + pos: -157.5,-7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 54 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9636 + - uid: 10270 components: - type: Transform - rot: 3.141592653589793 rad - pos: -197.5,16.5 + rot: 1.5707963267948966 rad + pos: -156.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 52 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9637 + - uid: 10271 components: - type: Transform - rot: 3.141592653589793 rad - pos: -197.5,15.5 + rot: 1.5707963267948966 rad + pos: -176.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 52 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9638 + - uid: 10272 components: - type: Transform - rot: 3.141592653589793 rad - pos: -197.5,14.5 + rot: 1.5707963267948966 rad + pos: -158.5,4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 55 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9639 + - uid: 10273 components: - type: Transform - rot: 3.141592653589793 rad - pos: -197.5,13.5 + rot: 1.5707963267948966 rad + pos: -168.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9640 + - uid: 10274 components: - type: Transform rot: 3.141592653589793 rad - pos: -197.5,12.5 + pos: -13.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9641 + - uid: 10275 components: - type: Transform rot: 3.141592653589793 rad - pos: -197.5,10.5 + pos: -176.5,2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 75 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9642 + - uid: 10276 components: - type: Transform rot: 1.5707963267948966 rad - pos: -196.5,11.5 + pos: -167.5,-12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 54 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9643 + - uid: 10277 components: - type: Transform rot: 1.5707963267948966 rad - pos: -195.5,11.5 + pos: -186.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9644 + - uid: 10278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -194.5,11.5 + rot: 3.141592653589793 rad + pos: -189.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9645 + - uid: 10279 components: - type: Transform rot: 1.5707963267948966 rad - pos: -193.5,11.5 + pos: -222.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9646 + - uid: 10280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -192.5,11.5 + rot: -1.5707963267948966 rad + pos: -217.5,-8.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9647 + - uid: 10281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -191.5,11.5 + pos: -223.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9648 + - uid: 10282 components: - type: Transform rot: 1.5707963267948966 rad - pos: -190.5,11.5 + pos: -220.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9649 + - uid: 10283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -189.5,11.5 + rot: -1.5707963267948966 rad + pos: -225.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9650 + - uid: 10284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -188.5,11.5 + rot: 3.141592653589793 rad + pos: -187.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9651 + - uid: 10285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -198.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 76 + - uid: 10286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -193.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 76 +- proto: GasVentScrubber + entities: + - uid: 10287 components: - type: Transform rot: 1.5707963267948966 rad - pos: -187.5,11.5 + pos: -199.5,8.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9652 + - type: DeviceNetwork + deviceLists: + - 76 + - uid: 10288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -193.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 76 + - uid: 10289 components: - type: Transform - pos: -186.5,10.5 + rot: 3.141592653589793 rad + pos: -197.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9653 + - type: DeviceNetwork + deviceLists: + - 76 + - uid: 10290 components: - type: Transform - pos: -186.5,9.5 + pos: -196.5,12.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9654 + - type: DeviceNetwork + deviceLists: + - 76 + - uid: 10291 components: - type: Transform - pos: -186.5,8.5 + rot: 3.141592653589793 rad + pos: -6.5,-10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 71 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9655 + color: '#E32636FF' + - uid: 10292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 58 + - uid: 10293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 58 + - uid: 10294 components: - type: Transform - pos: -186.5,7.5 + rot: -1.5707963267948966 rad + pos: -8.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 71 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9656 + color: '#E32636FF' + - uid: 10295 components: - type: Transform rot: 3.141592653589793 rad - pos: -113.5,-0.5 + pos: -65.5,-12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 43 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9657 + - uid: 10296 components: - type: Transform - rot: 3.141592653589793 rad - pos: -117.5,-1.5 + pos: -65.5,4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 43 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9658 + color: '#E32636FF' + - uid: 10297 components: - type: Transform - rot: 3.141592653589793 rad - pos: -117.5,-0.5 + rot: 1.5707963267948966 rad + pos: -71.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 43 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9659 + color: '#E32636FF' + - uid: 10298 components: - type: Transform rot: 1.5707963267948966 rad - pos: -116.5,-2.5 + pos: -65.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 43 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9660 + color: '#E32636FF' + - uid: 10299 components: - type: Transform rot: 1.5707963267948966 rad - pos: -116.5,0.5 + pos: -60.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 42 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9661 + color: '#E32636FF' + - uid: 10300 components: - type: Transform rot: 3.141592653589793 rad - pos: -113.5,-1.5 + pos: -41.5,-8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 40 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9662 + - uid: 10301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,-4.5 + rot: 3.141592653589793 rad + pos: -59.5,2.5 parent: 2 - - uid: 9663 + - type: DeviceNetwork + deviceLists: + - 42 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10302 components: - type: Transform rot: 1.5707963267948966 rad - pos: -125.5,-4.5 + pos: -52.5,-16.5 parent: 2 - - uid: 9664 + - type: DeviceNetwork + deviceLists: + - 44 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-3.5 + rot: 3.141592653589793 rad + pos: -49.5,-6.5 parent: 2 -- proto: GasPipeTJunction - entities: - - uid: 9665 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10304 components: - type: Transform - pos: -77.5,-8.5 + rot: -1.5707963267948966 rad + pos: -46.5,-0.5 parent: 2 - - uid: 9666 + - type: DeviceNetwork + deviceLists: + - 40 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-4.5 + rot: 3.141592653589793 rad + pos: -49.5,4.5 parent: 2 - - uid: 9667 + - type: DeviceNetwork + deviceLists: + - 40 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10306 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-10.5 + pos: -35.5,3.5 parent: 2 - - uid: 9668 + - type: DeviceNetwork + deviceLists: + - 70 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10307 components: - type: Transform rot: -1.5707963267948966 rad - pos: -185.5,4.5 + pos: -31.5,-14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9669 + - uid: 10308 components: - type: Transform rot: -1.5707963267948966 rad - pos: -157.5,-7.5 + pos: -30.5,-9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,23.5 - parent: 2 - - uid: 9671 + color: '#E32636FF' + - uid: 10309 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,24.5 + pos: -22.5,-12.5 parent: 2 - - uid: 9672 + - type: DeviceNetwork + deviceLists: + - 67 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10310 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,19.5 + pos: -2.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 71 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9673 + - uid: 10311 components: - type: Transform - pos: -74.5,22.5 + pos: -155.5,3.5 parent: 2 - - uid: 9674 + - type: DeviceNetwork + deviceLists: + - 55 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10312 components: - type: Transform - pos: -68.5,22.5 + pos: -14.5,-2.5 parent: 2 - - uid: 9675 + - type: DeviceNetwork + deviceLists: + - 69 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10313 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-1.5 + pos: -17.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 68 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9676 + color: '#E32636FF' + - uid: 10314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-0.5 + pos: -27.5,-9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9677 + - uid: 10315 components: - type: Transform - pos: -62.5,-16.5 + rot: 1.5707963267948966 rad + pos: -24.5,3.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9678 + - uid: 10316 components: - type: Transform - pos: -63.5,-15.5 + rot: 1.5707963267948966 rad + pos: -76.5,9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 41 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9679 + color: '#E32636FF' + - uid: 10317 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,-3.5 + rot: 1.5707963267948966 rad + pos: -76.5,-16.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 46 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9680 + color: '#E32636FF' + - uid: 10318 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,-4.5 + rot: 3.141592653589793 rad + pos: -62.5,-21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 45 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9681 + - uid: 10319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,3.5 + rot: 1.5707963267948966 rad + pos: -91.5,-4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 47 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9682 + color: '#E32636FF' + - uid: 10320 components: - type: Transform - pos: -14.5,-8.5 + rot: 3.141592653589793 rad + pos: -106.5,-10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 48 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9683 + color: '#E32636FF' + - uid: 10321 components: - type: Transform - pos: -7.5,-3.5 + rot: 3.141592653589793 rad + pos: -114.5,-11.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 49 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9684 + color: '#E32636FF' + - uid: 10322 components: - type: Transform - pos: -6.5,-2.5 + rot: 1.5707963267948966 rad + pos: -106.5,-4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 47 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9685 + - uid: 10323 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-13.5 + pos: -116.5,-14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 49 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9686 + color: '#E32636FF' + - uid: 10324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-12.5 + pos: -114.5,3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 50 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9687 + - uid: 10325 components: - type: Transform - pos: -106.5,-4.5 + rot: 1.5707963267948966 rad + pos: -114.5,-4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 50 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9688 + - uid: 10326 components: - type: Transform - pos: -105.5,-3.5 + rot: 1.5707963267948966 rad + pos: -130.5,-4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9689 + color: '#E32636FF' + - uid: 10327 components: - type: Transform - pos: -176.5,-4.5 + rot: 1.5707963267948966 rad + pos: -143.5,-4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9690 + - uid: 10328 components: - type: Transform - pos: -177.5,-3.5 + rot: 1.5707963267948966 rad + pos: -156.5,-4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 52 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9691 + color: '#E32636FF' + - uid: 10329 components: - type: Transform - rot: 3.141592653589793 rad - pos: -185.5,-4.5 + rot: 1.5707963267948966 rad + pos: -156.5,-8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 54 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9692 + - uid: 10330 components: - type: Transform rot: 3.141592653589793 rad - pos: -186.5,-3.5 + pos: -155.5,-20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 54 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9693 + color: '#E32636FF' + - uid: 10331 components: - type: Transform - pos: -194.5,-3.5 + rot: 1.5707963267948966 rad + pos: -167.5,-9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 54 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9694 + color: '#E32636FF' + - uid: 10332 components: - type: Transform - rot: 3.141592653589793 rad - pos: -206.5,-3.5 + rot: 1.5707963267948966 rad + pos: -168.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9695 + color: '#E32636FF' + - uid: 10333 components: - type: Transform - pos: -195.5,-4.5 + rot: 1.5707963267948966 rad + pos: -176.5,3.5 parent: 2 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9696 + - uid: 10334 components: - type: Transform - rot: 3.141592653589793 rad - pos: -205.5,-4.5 + pos: -155.5,9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 56 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9697 + - uid: 10335 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -157.5,4.5 + rot: 1.5707963267948966 rad + pos: -163.5,9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 56 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9698 + color: '#E32636FF' + - uid: 10336 components: - type: Transform - pos: -157.5,10.5 + rot: 1.5707963267948966 rad + pos: -169.5,9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 56 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9699 + color: '#E32636FF' + - uid: 10337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -155.5,9.5 + pos: -155.5,14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 56 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9700 + - uid: 10338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -155.5,3.5 + rot: 1.5707963267948966 rad + pos: -176.5,-4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 52 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9701 + - uid: 10339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -155.5,-8.5 + rot: 3.141592653589793 rad + pos: -176.5,-13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 52 - type: AtmosPipeColor color: '#E32636FF' - - uid: 9702 + - uid: 10340 components: - type: Transform - pos: -73.5,-4.5 + rot: 1.5707963267948966 rad + pos: -185.5,-4.5 parent: 2 - - uid: 9703 + - type: DeviceNetwork + deviceLists: + - 53 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10341 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,-5.5 + rot: 1.5707963267948966 rad + pos: -195.5,-4.5 parent: 2 - - uid: 9704 + - type: DeviceNetwork + deviceLists: + - 53 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10342 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,-5.5 + pos: -195.5,-13.5 parent: 2 - - uid: 9705 + - type: DeviceNetwork + deviceLists: + - 53 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10343 components: - type: Transform - pos: -78.5,-1.5 + rot: 1.5707963267948966 rad + pos: -205.5,-4.5 parent: 2 - - uid: 9706 + - type: DeviceNetwork + deviceLists: + - 53 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10344 components: - type: Transform - pos: -77.5,-1.5 + pos: -205.5,7.5 parent: 2 - - uid: 9707 + - type: DeviceNetwork + deviceLists: + - 53 + - 73 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,1.5 + rot: 1.5707963267948966 rad + pos: -213.5,-4.5 parent: 2 - - uid: 9708 + - type: DeviceNetwork + deviceLists: + - 53 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10346 components: - type: Transform - pos: -74.5,3.5 + rot: 3.141592653589793 rad + pos: -59.5,14.5 parent: 2 - - uid: 9709 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10347 components: - type: Transform - pos: -75.5,3.5 + rot: 3.141592653589793 rad + pos: -77.5,-2.5 parent: 2 - - uid: 9710 + - type: DeviceNetwork + deviceLists: + - 57 + - uid: 10348 components: - type: Transform - pos: -76.5,3.5 + rot: 3.141592653589793 rad + pos: -78.5,-2.5 parent: 2 - - uid: 9711 + - type: DeviceNetwork + deviceLists: + - 57 + - uid: 10349 components: - type: Transform rot: 3.141592653589793 rad - pos: -77.5,1.5 + pos: -79.5,-2.5 parent: 2 - - uid: 9712 + - type: DeviceNetwork + deviceLists: + - 57 + - uid: 10350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-3.5 + pos: -175.5,5.5 parent: 2 - - uid: 9713 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-8.5 + rot: 1.5707963267948966 rad + pos: -186.5,-20.5 parent: 2 - - uid: 9714 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10352 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-8.5 + rot: 1.5707963267948966 rad + pos: -190.5,-24.5 parent: 2 - - uid: 9715 + - uid: 10353 components: - type: Transform rot: 3.141592653589793 rad - pos: -74.5,-8.5 + pos: -185.5,-25.5 parent: 2 - - uid: 9716 + - uid: 10354 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-10.5 + rot: -1.5707963267948966 rad + pos: -189.5,5.5 parent: 2 - - uid: 9717 + - uid: 10355 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-10.5 + rot: -1.5707963267948966 rad + pos: -189.5,11.5 parent: 2 - - uid: 9718 +- proto: Gateway + entities: + - uid: 10356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-15.5 + pos: -24.5,-3.5 parent: 2 - - uid: 9719 + - type: LinkedEntity + linkedEntities: + - 10357 + - type: Portal + randomTeleport: False + canTeleportToOtherMaps: True + departureSound: !type:SoundPathSpecifier + path: /Audio/Effects/teleport_departure.ogg + arrivalSound: !type:SoundPathSpecifier + path: /Audio/Effects/teleport_arrival.ogg + - uid: 10357 components: - type: Transform - rot: 3.141592653589793 rad - pos: -175.5,3.5 + pos: -217.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9720 + - type: LinkedEntity + linkedEntities: + - 10356 + - type: Portal + randomTeleport: False + canTeleportToOtherMaps: True + departureSound: !type:SoundPathSpecifier + path: /Audio/Effects/teleport_departure.ogg + arrivalSound: !type:SoundPathSpecifier + path: /Audio/Effects/teleport_arrival.ogg + - uid: 10358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -176.5,4.5 + pos: -21.5,-19.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9721 + - type: Gateway + enabled: True +- proto: GeigerCounter + entities: + - uid: 10359 components: - type: Transform - pos: -185.5,-20.5 + pos: -69.34182,0.53578246 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9722 + - uid: 10360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -197.5,11.5 + pos: -69.62307,0.56703246 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasPort - entities: - - uid: 9723 + - uid: 10361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -193.5,23.5 + pos: -79.70138,2.682837 parent: 2 - - uid: 9724 +- proto: GeneratorBasic15kW + entities: + - uid: 10362 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,18.5 + pos: -42.5,31.5 parent: 2 - - uid: 9725 + - uid: 17629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,21.5 - parent: 2 - - uid: 9726 + pos: 11.5,-0.5 + parent: 17565 + - uid: 17630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,21.5 - parent: 2 - - uid: 9727 + pos: 12.5,-0.5 + parent: 17565 +- proto: GeneratorRTG + entities: + - uid: 10363 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-0.5 + pos: -67.5,-5.5 parent: 2 - - uid: 9728 + - uid: 10364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,-0.5 + pos: -58.5,-12.5 parent: 2 - - uid: 9729 + - uid: 10365 components: - type: Transform - pos: -75.5,-6.5 + pos: -55.5,-0.5 parent: 2 - - uid: 9730 +- proto: Girder + entities: + - uid: 10366 components: - type: Transform - pos: -74.5,-6.5 + pos: -170.5,-18.5 parent: 2 - - uid: 9731 + - uid: 10367 components: - type: Transform rot: -1.5707963267948966 rad - pos: -61.5,21.5 + pos: -171.5,-14.5 parent: 2 - - uid: 9732 + - uid: 10368 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,20.5 + pos: -171.5,-13.5 parent: 2 - - uid: 9733 + - uid: 10369 components: - type: Transform - pos: -62.5,22.5 + rot: 1.5707963267948966 rad + pos: -234.5,-19.5 parent: 2 - - uid: 9734 + - uid: 10370 components: - type: Transform rot: 1.5707963267948966 rad - pos: -199.5,23.5 + pos: -234.5,-17.5 parent: 2 - - uid: 9735 + - uid: 10371 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,21.5 + rot: 1.5707963267948966 rad + pos: -234.5,-15.5 parent: 2 - - uid: 9736 + - uid: 10372 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,21.5 + pos: -234.5,-11.5 parent: 2 -- proto: GasPressurePump - entities: - - uid: 9737 + - uid: 10373 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-3.5 + pos: -233.5,-18.5 parent: 2 - - uid: 9738 + - uid: 10374 components: - type: Transform - pos: -59.5,24.5 + pos: -233.5,-16.5 parent: 2 - - uid: 9739 + - uid: 10375 components: - type: Transform - pos: -65.5,24.5 + pos: -233.5,-14.5 parent: 2 - - uid: 9740 + - uid: 10376 components: - type: Transform - pos: -68.5,24.5 + pos: -233.5,-12.5 parent: 2 - - uid: 9741 + - uid: 10377 components: - type: Transform - pos: -71.5,24.5 + pos: -233.5,-10.5 parent: 2 - - uid: 9742 + - uid: 10378 components: - type: Transform - pos: -74.5,24.5 + rot: 3.141592653589793 rad + pos: -233.5,-8.5 parent: 2 - - uid: 9743 + - uid: 10379 components: - type: Transform - pos: -77.5,24.5 + pos: -232.5,-13.5 parent: 2 - - uid: 9744 + - uid: 10380 components: - type: Transform - pos: -57.5,23.5 + pos: -231.5,-12.5 parent: 2 - - type: AtmosPipeColor - color: '#A1A100FF' - - uid: 9745 + - uid: 10381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,14.5 + pos: -230.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9746 + - uid: 10382 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,23.5 + pos: -229.5,-12.5 parent: 2 - - uid: 9747 + - uid: 10383 components: - type: Transform rot: 1.5707963267948966 rad - pos: -78.5,22.5 + pos: -234.5,-29.5 parent: 2 - - uid: 9748 + - uid: 10384 components: - type: Transform rot: 1.5707963267948966 rad - pos: -61.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-4.5 + pos: -234.5,-27.5 parent: 2 - - uid: 9750 + - uid: 10385 components: - type: Transform rot: 1.5707963267948966 rad - pos: -75.5,-2.5 - parent: 2 - - uid: 9751 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,1.5 + pos: -234.5,-25.5 parent: 2 - - uid: 9752 - components: - - type: Transform - pos: -75.5,-7.5 - parent: 2 - - uid: 9753 + - uid: 10386 components: - type: Transform - pos: -74.5,-7.5 + rot: 1.5707963267948966 rad + pos: -234.5,-23.5 parent: 2 - - uid: 9754 + - uid: 10387 components: - type: Transform - rot: 3.141592653589793 rad - pos: -194.5,24.5 + rot: 1.5707963267948966 rad + pos: -234.5,-21.5 parent: 2 - - uid: 9755 + - uid: 10388 components: - type: Transform rot: 3.141592653589793 rad - pos: -198.5,24.5 + pos: -233.5,-32.5 parent: 2 -- proto: GasThermoMachineFreezer - entities: - - uid: 9756 + - uid: 10389 components: - type: Transform - pos: -76.5,-9.5 + pos: -233.5,-30.5 parent: 2 - - uid: 9757 + - uid: 10390 components: - type: Transform - pos: -74.5,-9.5 + pos: -233.5,-28.5 parent: 2 - - uid: 9758 + - uid: 10391 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,2.5 + pos: -233.5,-26.5 parent: 2 - - uid: 9759 + - uid: 10392 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,2.5 + pos: -233.5,-24.5 parent: 2 - - uid: 9760 + - uid: 10393 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,2.5 + pos: -233.5,-20.5 parent: 2 - - uid: 9761 + - uid: 10394 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,17.5 + pos: -231.5,-28.5 parent: 2 - - type: GasThermoMachine - minTemperature: 10 - - uid: 9762 +- proto: GlassBoxLaserFilled + entities: + - uid: 10395 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,17.5 + pos: -5.5,-7.5 parent: 2 - - uid: 9763 +- proto: GlimmerProber + entities: + - uid: 10396 components: - type: Transform - pos: -75.5,-9.5 + pos: -191.5,15.5 parent: 2 - - uid: 9764 +- proto: GravityGenerator + entities: + - uid: 10397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-12.5 + pos: -21.5,9.5 parent: 2 -- proto: GasThermoMachineFreezerEnabled +- proto: GravityGeneratorMini entities: - - uid: 9765 + - uid: 17631 components: - type: Transform - pos: -200.5,16.5 - parent: 2 -- proto: GasThermoMachineHeater + pos: 13.5,-6.5 + parent: 17565 +- proto: Grille entities: - - uid: 9766 + - uid: 10398 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,17.5 + rot: -1.5707963267948966 rad + pos: -203.5,5.5 parent: 2 -- proto: GasValve - entities: - - uid: 9767 + - uid: 10399 components: - type: Transform rot: -1.5707963267948966 rad - pos: -78.5,24.5 + pos: -192.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' -- proto: GasVentPump - entities: - - uid: 9768 + - uid: 10400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -177.5,5.5 + rot: -1.5707963267948966 rad + pos: -185.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9769 + - uid: 10401 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-8.5 + rot: -1.5707963267948966 rad + pos: -186.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9770 + - uid: 10402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -213.5,-3.5 + pos: -203.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9771 + - uid: 10403 components: - type: Transform - rot: 3.141592653589793 rad - pos: -115.5,-11.5 + rot: -1.5707963267948966 rad + pos: -187.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 45 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9772 + - uid: 10404 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,-3.5 + rot: -1.5707963267948966 rad + pos: -203.5,3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 46 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9773 + - uid: 10405 components: - type: Transform - pos: -115.5,3.5 + pos: -63.5,-28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 46 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9774 + - uid: 10406 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-3.5 + pos: -24.5,-19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9775 + - uid: 10407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -91.5,-3.5 + pos: -18.5,-19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9776 + - uid: 10408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,8.5 + pos: -23.5,-17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 37 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9777 + - uid: 10410 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-2.5 + pos: -75.5,4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 38 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9778 + - uid: 10411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-4.5 + pos: -77.5,-11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 39 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9779 + - uid: 10412 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-12.5 + pos: -82.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 39 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9780 + - uid: 10413 components: - type: Transform - pos: -64.5,4.5 + pos: -83.5,-3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 39 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9781 + - uid: 10414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,-4.5 + pos: -83.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 39 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9782 + - uid: 10415 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,18.5 + pos: -86.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9783 + - uid: 10416 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-6.5 + pos: -86.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9784 + - uid: 10417 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,4.5 + pos: -86.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9785 + - uid: 10418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-1.5 + pos: -85.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9786 + - uid: 10419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-10.5 + pos: -86.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9787 + - uid: 10420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-15.5 + pos: -32.5,-17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9788 + - uid: 10421 components: - type: Transform - pos: -26.5,-13.5 + pos: 2.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9789 + - uid: 10422 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-13.5 + pos: -210.5,7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9790 + - uid: 10423 components: - type: Transform - pos: -13.5,-3.5 + rot: -1.5707963267948966 rad + pos: -210.5,8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9791 + - uid: 10424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-3.5 + pos: -75.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 64 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9792 + - uid: 10425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,4.5 + pos: -140.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9793 + - uid: 10426 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-3.5 + pos: -141.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 67 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9794 + - uid: 10427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-3.5 + pos: -139.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 67 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9795 + - uid: 10428 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-10.5 + pos: -165.5,13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 67 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9796 + - uid: 10429 components: - type: Transform - pos: -36.5,3.5 + rot: 3.141592653589793 rad + pos: 2.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 66 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9797 + - uid: 10430 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,3.5 + pos: -76.5,4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 38 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9798 + - uid: 10431 components: - type: Transform - pos: -206.5,7.5 + pos: -76.5,-11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - 69 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9799 + - uid: 10432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -195.5,-3.5 + pos: -83.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9800 + - uid: 10433 components: - type: Transform - rot: 3.141592653589793 rad - pos: -194.5,-13.5 + pos: -84.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9801 + - uid: 10434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -186.5,-3.5 + pos: -85.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9802 + - uid: 10435 components: - type: Transform - pos: -186.5,7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9803 + pos: -84.5,-7.5 + parent: 2 + - uid: 10436 components: - type: Transform - rot: 3.141592653589793 rad - pos: -177.5,-13.5 + pos: -84.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 48 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9804 + - uid: 10437 components: - type: Transform - rot: 3.141592653589793 rad - pos: -157.5,-20.5 + rot: 1.5707963267948966 rad + pos: -77.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9805 + - uid: 10438 components: - type: Transform - pos: -157.5,10.5 + rot: 1.5707963267948966 rad + pos: -78.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 52 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9806 + - uid: 10439 components: - type: Transform - pos: -154.5,14.5 + rot: -1.5707963267948966 rad + pos: -52.5,22.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 52 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9807 + - uid: 10440 components: - type: Transform rot: 1.5707963267948966 rad - pos: -163.5,10.5 + pos: -74.5,6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 52 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9808 + - uid: 10441 components: - type: Transform rot: 1.5707963267948966 rad - pos: -170.5,10.5 + pos: -76.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 52 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9809 + - uid: 10442 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-15.5 + rot: 1.5707963267948966 rad + pos: -76.5,6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9810 + - uid: 10443 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-21.5 + rot: 1.5707963267948966 rad + pos: -75.5,6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 41 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9811 + - uid: 10444 components: - type: Transform rot: 1.5707963267948966 rad - pos: -76.5,-15.5 + pos: -78.5,6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 42 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9812 + - uid: 10445 components: - type: Transform - rot: 3.141592653589793 rad - pos: -105.5,-10.5 + rot: 1.5707963267948966 rad + pos: -77.5,6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 44 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9813 + - uid: 10446 components: - type: Transform rot: 1.5707963267948966 rad - pos: -130.5,-3.5 + pos: -70.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 47 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9814 + - uid: 10447 components: - type: Transform rot: 1.5707963267948966 rad - pos: -143.5,-3.5 + pos: -70.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 47 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9815 + - uid: 10448 components: - type: Transform - rot: 3.141592653589793 rad - pos: -157.5,-7.5 + rot: 1.5707963267948966 rad + pos: -70.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9816 + - uid: 10449 components: - type: Transform rot: 1.5707963267948966 rad - pos: -156.5,-3.5 + pos: -70.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 48 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9817 + - uid: 10450 components: - type: Transform rot: 1.5707963267948966 rad - pos: -176.5,-3.5 + pos: -70.5,1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 48 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9818 + - uid: 10451 components: - type: Transform rot: 1.5707963267948966 rad - pos: -158.5,4.5 + pos: -70.5,0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9819 + - uid: 10452 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -168.5,4.5 + pos: -102.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9820 + - uid: 10453 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-14.5 + pos: -99.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9821 + - uid: 10454 components: - type: Transform rot: 3.141592653589793 rad - pos: -176.5,2.5 + pos: -101.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 72 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9822 + - uid: 10455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -167.5,-12.5 + rot: 3.141592653589793 rad + pos: -101.5,1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9823 + - uid: 10456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -186.5,-13.5 + rot: 3.141592653589793 rad + pos: -103.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9824 + - uid: 10457 components: - type: Transform rot: 3.141592653589793 rad - pos: -187.5,-24.5 + pos: -103.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9825 + - uid: 10458 components: - type: Transform rot: 3.141592653589793 rad - pos: -187.5,-27.5 + pos: -105.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9826 + - uid: 10459 components: - type: Transform - rot: 3.141592653589793 rad - pos: -197.5,7.5 + pos: -38.5,6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9827 + - uid: 10460 components: - type: Transform - pos: -197.5,20.5 + pos: -37.5,6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 - - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasVentScrubber - entities: - - uid: 9828 + - uid: 10461 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-10.5 + pos: -36.5,8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 67 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9829 + - uid: 10462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,22.5 + pos: -36.5,9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 54 - - uid: 9830 + - uid: 10463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,22.5 + pos: -40.5,-0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 54 - - uid: 9831 + - uid: 10464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-2.5 + pos: -40.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 67 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9832 + - uid: 10465 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-12.5 + pos: -40.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 39 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9833 + - uid: 10466 components: - type: Transform - pos: -65.5,4.5 + pos: -48.5,4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 39 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9834 + - uid: 10467 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,-2.5 + pos: -40.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 39 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9835 + - uid: 10468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-2.5 + pos: -45.5,0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 39 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9836 + - uid: 10469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-2.5 + pos: -44.5,0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 38 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9837 + - uid: 10470 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-8.5 + pos: -47.5,0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9838 + - uid: 10471 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,2.5 + pos: -48.5,1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 38 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9839 + - uid: 10472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-16.5 + pos: -153.5,-26.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9840 + - uid: 10473 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-6.5 + pos: -157.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9841 + - uid: 10474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-0.5 + pos: -163.5,-26.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9842 + - uid: 10475 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,4.5 + pos: -164.5,-26.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9843 + - uid: 10476 components: - type: Transform - pos: -35.5,3.5 + pos: -165.5,-26.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 66 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9844 + - uid: 10477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-14.5 + pos: -163.5,-20.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9845 + - uid: 10478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-9.5 + pos: -166.5,-20.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9846 + - uid: 10479 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-12.5 + pos: -167.5,-20.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9847 + - uid: 10480 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-2.5 + pos: -166.5,-16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 67 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9848 + - uid: 10481 components: - type: Transform - pos: -155.5,3.5 + pos: -165.5,-16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9849 + - uid: 10482 components: - type: Transform - pos: -14.5,-2.5 + pos: -167.5,-14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9850 + - uid: 10483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-2.5 + pos: -165.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 64 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9851 + - uid: 10484 components: - type: Transform - pos: -27.5,-9.5 + pos: -162.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9852 + - uid: 10485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,3.5 + pos: -161.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9853 + - uid: 10486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,9.5 + pos: -165.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 37 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9854 + - uid: 10487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,-16.5 + pos: -164.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 42 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9855 + - uid: 10488 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-21.5 + pos: -163.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 41 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9856 + - uid: 10489 + components: + - type: Transform + pos: -163.5,2.5 + parent: 2 + - uid: 10490 + components: + - type: Transform + pos: -165.5,2.5 + parent: 2 + - uid: 10491 + components: + - type: Transform + pos: -161.5,-1.5 + parent: 2 + - uid: 10492 + components: + - type: Transform + pos: -156.5,2.5 + parent: 2 + - uid: 10493 + components: + - type: Transform + pos: -156.5,-1.5 + parent: 2 + - uid: 10494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -91.5,-4.5 + pos: -167.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9857 + - uid: 10495 components: - type: Transform - rot: 3.141592653589793 rad - pos: -106.5,-10.5 + pos: -168.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 44 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9858 + - uid: 10496 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,-11.5 + pos: -169.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 45 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9859 + - uid: 10497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-4.5 + pos: -169.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9860 + - uid: 10498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,-14.5 + pos: -169.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 45 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9861 + - uid: 10499 components: - type: Transform - pos: -114.5,3.5 + pos: -167.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 46 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9862 + - uid: 10500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-4.5 + pos: -171.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 46 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9863 + - uid: 10501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -130.5,-4.5 + pos: -173.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 47 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9864 + - uid: 10502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -143.5,-4.5 + pos: -173.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 47 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9865 + - uid: 10503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -156.5,-4.5 + pos: -172.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 48 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9866 + - uid: 10504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -156.5,-8.5 + pos: -171.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9867 + - uid: 10505 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.5,-20.5 + rot: -1.5707963267948966 rad + pos: -42.5,18.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9868 + - uid: 10506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -167.5,-9.5 + rot: -1.5707963267948966 rad + pos: -43.5,18.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9869 + - uid: 10507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -168.5,3.5 + pos: -214.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9870 + - uid: 10508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -176.5,3.5 + pos: -217.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9871 + - uid: 10509 components: - type: Transform - pos: -155.5,9.5 + pos: -211.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 52 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9872 + - uid: 10510 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -163.5,9.5 + pos: -213.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 52 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9873 + - uid: 10511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -169.5,9.5 + rot: -1.5707963267948966 rad + pos: -210.5,4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 52 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9874 + - uid: 10512 components: - type: Transform - pos: -155.5,14.5 + rot: -1.5707963267948966 rad + pos: -210.5,12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 52 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9875 + - uid: 10513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -176.5,-4.5 + rot: -1.5707963267948966 rad + pos: -61.5,25.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 48 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9876 + - uid: 10514 components: - type: Transform - rot: 3.141592653589793 rad - pos: -176.5,-13.5 + pos: -56.5,25.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 48 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9877 + - uid: 10515 components: - type: Transform rot: 1.5707963267948966 rad - pos: -185.5,-4.5 + pos: -73.5,27.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9878 + - uid: 10516 components: - type: Transform - pos: -185.5,7.5 + pos: -59.5,25.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9879 + - uid: 10517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -195.5,-4.5 + pos: -64.5,25.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9880 + - uid: 10518 components: - type: Transform - rot: 3.141592653589793 rad - pos: -195.5,-13.5 + pos: -65.5,25.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9881 + - uid: 10519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -205.5,-4.5 + pos: -67.5,25.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9882 + - uid: 10520 components: - type: Transform - pos: -205.5,7.5 + pos: -68.5,25.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - 69 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9883 + - uid: 10521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -213.5,-4.5 + pos: -70.5,25.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9884 + - uid: 10522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,14.5 + pos: -71.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9885 + - uid: 10523 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,-2.5 + pos: -73.5,25.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 53 - - uid: 9886 + - uid: 10524 components: - type: Transform - rot: 3.141592653589793 rad - pos: -78.5,-2.5 + pos: -74.5,25.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 53 - - uid: 9887 + - uid: 10525 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-2.5 + pos: -79.5,24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 53 - - uid: 9888 + - uid: 10526 components: - type: Transform - pos: -175.5,5.5 + pos: -79.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9889 + - uid: 10527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -186.5,-20.5 + pos: -79.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9890 + - uid: 10528 components: - type: Transform - rot: 3.141592653589793 rad - pos: -185.5,-24.5 + pos: -81.5,22.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9891 + - uid: 10529 components: - type: Transform - rot: 3.141592653589793 rad - pos: -185.5,-27.5 + pos: -81.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9892 + - uid: 10530 components: - type: Transform - rot: 3.141592653589793 rad - pos: -195.5,7.5 + pos: -81.5,24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 - - type: AtmosPipeColor - color: '#E32636FF' - - uid: 9893 + - uid: 10531 components: - type: Transform - pos: -195.5,20.5 + pos: -184.5,-21.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 - - type: AtmosPipeColor - color: '#E32636FF' -- proto: Gateway - entities: - - uid: 9894 + - uid: 10532 components: - type: Transform - pos: -24.5,-3.5 + pos: -185.5,-21.5 parent: 2 - - type: LinkedEntity - linkedEntities: - - 9895 - - type: Portal - randomTeleport: False - canTeleportToOtherMaps: True - departureSound: !type:SoundPathSpecifier - path: /Audio/Effects/teleport_departure.ogg - arrivalSound: !type:SoundPathSpecifier - path: /Audio/Effects/teleport_arrival.ogg - - uid: 9895 + - uid: 10533 components: - type: Transform - pos: -217.5,-3.5 + pos: -187.5,-21.5 parent: 2 - - type: LinkedEntity - linkedEntities: - - 9894 - - type: Portal - randomTeleport: False - canTeleportToOtherMaps: True - departureSound: !type:SoundPathSpecifier - path: /Audio/Effects/teleport_departure.ogg - arrivalSound: !type:SoundPathSpecifier - path: /Audio/Effects/teleport_arrival.ogg - - uid: 9896 + - uid: 10534 components: - type: Transform - pos: -21.5,-19.5 + pos: -191.5,-17.5 parent: 2 - - type: Gateway - enabled: True -- proto: GeigerCounter - entities: - - uid: 9897 + - uid: 10535 components: - type: Transform - pos: -69.34182,0.53578246 + pos: -191.5,-16.5 parent: 2 - - uid: 9898 + - uid: 10536 components: - type: Transform - pos: -69.62307,0.56703246 + pos: -191.5,-15.5 parent: 2 - - uid: 9899 + - uid: 10537 components: - type: Transform - pos: -79.70138,2.682837 + pos: -181.5,-15.5 parent: 2 -- proto: GeneratorBasic15kW - entities: - - uid: 17085 + - uid: 10538 components: - type: Transform - pos: 11.5,-0.5 - parent: 17021 - - uid: 17086 + pos: -181.5,-16.5 + parent: 2 + - uid: 10539 components: - type: Transform - pos: 12.5,-0.5 - parent: 17021 -- proto: GeneratorRTG - entities: - - uid: 9900 + pos: -181.5,-17.5 + parent: 2 + - uid: 10540 components: - type: Transform - pos: -58.5,-12.5 + pos: -188.5,-7.5 parent: 2 - - uid: 9901 + - uid: 10541 components: - type: Transform - pos: -55.5,-0.5 + pos: -187.5,-7.5 parent: 2 -- proto: Girder - entities: - - uid: 9902 + - uid: 10542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,48.5 + pos: -186.5,-7.5 parent: 2 - - uid: 9903 + - uid: 10543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,47.5 + pos: -107.5,9.5 parent: 2 - - uid: 9904 + - uid: 10544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,50.5 + pos: -107.5,5.5 parent: 2 - - uid: 9905 + - uid: 10545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,49.5 + pos: -97.5,9.5 parent: 2 - - uid: 9906 + - uid: 10546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,48.5 + pos: -65.5,-18.5 parent: 2 - - uid: 9907 + - uid: 10547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,50.5 + pos: -65.5,-19.5 parent: 2 - - uid: 9908 + - uid: 10548 components: - type: Transform - pos: -61.5,50.5 + pos: -65.5,-20.5 parent: 2 - - uid: 9909 + - uid: 10549 + components: + - type: Transform + pos: -79.5,-1.5 + parent: 2 + - uid: 10550 components: - type: Transform - pos: -65.5,53.5 + pos: -78.5,-1.5 parent: 2 - - uid: 9910 + - uid: 10551 components: - type: Transform - pos: -61.5,46.5 + pos: -77.5,-1.5 parent: 2 - - uid: 9911 + - uid: 10552 components: - type: Transform - pos: -60.5,50.5 + pos: -80.5,-2.5 parent: 2 - - uid: 9912 + - uid: 10553 components: - type: Transform - pos: -60.5,51.5 + pos: -80.5,-3.5 parent: 2 - - uid: 9913 + - uid: 10554 components: - type: Transform - pos: -170.5,-18.5 + pos: -80.5,-4.5 parent: 2 - - uid: 9914 + - uid: 10555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -171.5,-14.5 + pos: -78.5,-5.5 parent: 2 - - uid: 9915 + - uid: 10556 components: - type: Transform - pos: -171.5,-13.5 + pos: -77.5,-5.5 parent: 2 -- proto: GlassBoxLaserFilled - entities: - - uid: 9916 + - uid: 10557 components: - type: Transform - pos: -5.5,-7.5 + rot: 3.141592653589793 rad + pos: 2.5,1.5 parent: 2 -- proto: GlimmerProber - entities: - - uid: 9917 + - uid: 10558 components: - type: Transform - pos: -201.5,16.5 + rot: -1.5707963267948966 rad + pos: -62.5,25.5 parent: 2 -- proto: GravityGenerator - entities: - - uid: 9918 + - uid: 10559 components: - type: Transform - pos: -21.5,9.5 + rot: -1.5707963267948966 rad + pos: -53.5,24.5 parent: 2 -- proto: GravityGeneratorMini - entities: - - uid: 17087 + - uid: 10560 components: - type: Transform - pos: 13.5,-6.5 - parent: 17021 -- proto: Grille - entities: - - uid: 9919 + rot: -1.5707963267948966 rad + pos: -53.5,23.5 + parent: 2 + - uid: 10561 components: - type: Transform - pos: -24.5,-19.5 + rot: -1.5707963267948966 rad + pos: -51.5,22.5 parent: 2 - - uid: 9920 + - uid: 10562 components: - type: Transform - pos: -18.5,-19.5 + rot: 1.5707963267948966 rad + pos: -74.5,27.5 parent: 2 - - uid: 9921 + - uid: 10563 components: - type: Transform - pos: -23.5,-17.5 + rot: 1.5707963267948966 rad + pos: -77.5,27.5 parent: 2 - - uid: 9922 + - uid: 10564 components: - type: Transform - pos: -75.5,-20.5 + rot: -1.5707963267948966 rad + pos: -58.5,25.5 parent: 2 - - uid: 9923 + - uid: 10565 components: - type: Transform - pos: -75.5,4.5 + rot: -1.5707963267948966 rad + pos: -55.5,25.5 parent: 2 - - uid: 9924 + - uid: 10566 components: - type: Transform - pos: -77.5,-11.5 + rot: 1.5707963267948966 rad + pos: -76.5,27.5 parent: 2 - - uid: 9925 + - uid: 10567 components: - type: Transform - pos: -82.5,-8.5 + rot: 1.5707963267948966 rad + pos: -71.5,27.5 parent: 2 - - uid: 9926 + - uid: 10568 components: - type: Transform - pos: -83.5,-3.5 + rot: 1.5707963267948966 rad + pos: -70.5,27.5 parent: 2 - - uid: 9927 + - uid: 10569 components: - type: Transform - pos: -83.5,-2.5 + rot: 1.5707963267948966 rad + pos: -68.5,27.5 parent: 2 - - uid: 9928 + - uid: 10570 components: - type: Transform - pos: -86.5,-3.5 + rot: 1.5707963267948966 rad + pos: -67.5,27.5 parent: 2 - - uid: 9929 + - uid: 10571 components: - type: Transform - pos: -86.5,-4.5 + rot: 1.5707963267948966 rad + pos: -65.5,27.5 parent: 2 - - uid: 9930 + - uid: 10572 components: - type: Transform - pos: -86.5,-5.5 + rot: 1.5707963267948966 rad + pos: -64.5,27.5 parent: 2 - - uid: 9931 + - uid: 10573 components: - type: Transform - pos: -85.5,-1.5 + rot: 1.5707963267948966 rad + pos: -59.5,27.5 parent: 2 - - uid: 9932 + - uid: 10574 components: - type: Transform - pos: -86.5,-1.5 + rot: 1.5707963267948966 rad + pos: -58.5,27.5 parent: 2 - - uid: 9933 + - uid: 10575 components: - type: Transform - pos: -32.5,-17.5 + rot: 1.5707963267948966 rad + pos: -56.5,27.5 parent: 2 - - uid: 9934 + - uid: 10576 components: - type: Transform - pos: 2.5,-13.5 + rot: 1.5707963267948966 rad + pos: -55.5,27.5 parent: 2 - - uid: 9935 + - uid: 10577 components: - type: Transform rot: -1.5707963267948966 rad - pos: -210.5,7.5 + pos: -77.5,25.5 parent: 2 - - uid: 9936 + - uid: 10578 components: - type: Transform rot: -1.5707963267948966 rad - pos: -210.5,8.5 + pos: -76.5,25.5 parent: 2 - - uid: 9937 + - uid: 10579 components: - type: Transform - pos: -75.5,-13.5 + pos: -100.5,21.5 parent: 2 - - uid: 9938 + - uid: 10580 components: - type: Transform - pos: -140.5,-7.5 + pos: -104.5,21.5 parent: 2 - - uid: 9939 + - uid: 10581 components: - type: Transform - pos: -141.5,-7.5 + pos: -204.5,9.5 parent: 2 - - uid: 9940 + - uid: 10582 components: - type: Transform - pos: -139.5,-7.5 + pos: -204.5,8.5 parent: 2 - - uid: 9941 + - uid: 10583 components: - type: Transform - pos: -165.5,13.5 + pos: -204.5,7.5 parent: 2 - - uid: 9942 + - uid: 10584 components: - type: Transform - rot: 3.141592653589793 rad - pos: -200.5,19.5 + pos: -109.5,-7.5 parent: 2 - - uid: 9943 + - uid: 10585 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-8.5 + pos: -109.5,-6.5 parent: 2 - - uid: 9944 + - uid: 10586 components: - type: Transform - pos: -76.5,4.5 + pos: -18.5,9.5 parent: 2 - - uid: 9945 + - uid: 10587 components: - type: Transform - pos: -76.5,-11.5 + pos: -18.5,8.5 parent: 2 - - uid: 9946 + - uid: 10588 components: - type: Transform - pos: -83.5,-5.5 + rot: 1.5707963267948966 rad + pos: -2.5,-10.5 parent: 2 - - uid: 9947 + - uid: 10589 components: - type: Transform - pos: -84.5,-8.5 + rot: 1.5707963267948966 rad + pos: -2.5,-11.5 parent: 2 - - uid: 9948 + - uid: 10590 components: - type: Transform - pos: -85.5,-5.5 + rot: 1.5707963267948966 rad + pos: -2.5,-12.5 parent: 2 - - uid: 9949 + - uid: 10591 components: - type: Transform - pos: -84.5,-7.5 + rot: -1.5707963267948966 rad + pos: -1.5,-8.5 parent: 2 - - uid: 9950 + - uid: 10592 components: - type: Transform - pos: -84.5,-6.5 + rot: -1.5707963267948966 rad + pos: -0.5,-8.5 parent: 2 - - uid: 9951 + - uid: 10593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-13.5 + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 parent: 2 - - uid: 9952 + - uid: 10594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,-13.5 + rot: -1.5707963267948966 rad + pos: 0.5,1.5 parent: 2 - - uid: 9953 + - uid: 10595 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,22.5 + pos: -0.5,1.5 parent: 2 - - uid: 9954 + - uid: 10596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,6.5 + rot: -1.5707963267948966 rad + pos: -1.5,1.5 parent: 2 - - uid: 9955 + - uid: 10597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,-13.5 + rot: 3.141592653589793 rad + pos: 3.5,1.5 parent: 2 - - uid: 9956 + - uid: 10598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,6.5 + rot: 3.141592653589793 rad + pos: 4.5,1.5 parent: 2 - - uid: 9957 + - uid: 10599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,6.5 + rot: 3.141592653589793 rad + pos: 3.5,-8.5 parent: 2 - - uid: 9958 + - uid: 10600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,6.5 + rot: 3.141592653589793 rad + pos: 4.5,-8.5 parent: 2 - - uid: 9959 + - uid: 10601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,6.5 + rot: 3.141592653589793 rad + pos: -20.5,-13.5 parent: 2 - - uid: 9960 + - uid: 10602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-9.5 + rot: 3.141592653589793 rad + pos: -192.5,-12.5 parent: 2 - - uid: 9961 + - uid: 10603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-8.5 + rot: 3.141592653589793 rad + pos: -192.5,-14.5 parent: 2 - - uid: 9962 + - uid: 10604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-7.5 + rot: 3.141592653589793 rad + pos: -180.5,-14.5 parent: 2 - - uid: 9963 + - uid: 10605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,2.5 + rot: 3.141592653589793 rad + pos: -180.5,-12.5 parent: 2 - - uid: 9964 + - uid: 10606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,1.5 + rot: 3.141592653589793 rad + pos: -180.5,-18.5 parent: 2 - - uid: 9965 + - uid: 10607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,0.5 + rot: 3.141592653589793 rad + pos: -180.5,-20.5 parent: 2 - - uid: 9966 + - uid: 10608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-26.5 + rot: 3.141592653589793 rad + pos: -192.5,-20.5 parent: 2 - - uid: 9967 + - uid: 10609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,-26.5 + rot: 3.141592653589793 rad + pos: -192.5,-18.5 parent: 2 - - uid: 9968 + - uid: 10610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-26.5 + pos: -10.5,-14.5 parent: 2 - - uid: 9969 + - uid: 10611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-26.5 + pos: -10.5,-17.5 parent: 2 - - uid: 9970 + - uid: 10612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-26.5 + rot: 3.141592653589793 rad + pos: -13.5,-13.5 parent: 2 - - uid: 9971 + - uid: 10613 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-26.5 + pos: -15.5,-13.5 parent: 2 - - uid: 9972 + - uid: 10614 components: - type: Transform - pos: -102.5,23.5 + pos: -150.5,4.5 parent: 2 - - uid: 9973 + - uid: 10615 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,3.5 + pos: -96.5,5.5 parent: 2 - - uid: 9974 + - uid: 10616 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,2.5 + pos: -96.5,3.5 parent: 2 - - uid: 9975 + - uid: 10617 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,1.5 + pos: -101.5,-0.5 parent: 2 - - uid: 9976 + - uid: 10618 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,2.5 + pos: -103.5,-0.5 parent: 2 - - uid: 9977 + - uid: 10619 components: - type: Transform rot: 3.141592653589793 rad - pos: -103.5,1.5 + pos: -187.5,-19.5 parent: 2 - - uid: 9978 + - uid: 10620 components: - type: Transform rot: 3.141592653589793 rad - pos: -105.5,3.5 - parent: 2 - - uid: 9979 - components: - - type: Transform - pos: -38.5,6.5 + pos: -185.5,-19.5 parent: 2 - - uid: 9980 + - uid: 10621 components: - type: Transform - pos: -37.5,6.5 + rot: 3.141592653589793 rad + pos: -185.5,-14.5 parent: 2 - - uid: 9981 + - uid: 10622 components: - type: Transform - pos: -36.5,8.5 + rot: 3.141592653589793 rad + pos: -187.5,-14.5 parent: 2 - - uid: 9982 + - uid: 10623 components: - type: Transform - pos: -36.5,9.5 + rot: 3.141592653589793 rad + pos: -186.5,-19.5 parent: 2 - - uid: 9983 + - uid: 10624 components: - type: Transform - pos: -40.5,-0.5 + rot: 3.141592653589793 rad + pos: -20.5,15.5 parent: 2 - - uid: 9984 + - uid: 10625 components: - type: Transform - pos: -40.5,-2.5 + rot: 3.141592653589793 rad + pos: -20.5,18.5 parent: 2 - - uid: 9985 + - uid: 10626 components: - type: Transform - pos: -40.5,-4.5 + rot: 3.141592653589793 rad + pos: -20.5,21.5 parent: 2 - - uid: 9986 + - uid: 10627 components: - type: Transform - pos: -48.5,4.5 + rot: 3.141592653589793 rad + pos: -20.5,24.5 parent: 2 - - uid: 9987 + - uid: 10628 components: - type: Transform - pos: -40.5,-6.5 + rot: 3.141592653589793 rad + pos: -20.5,22.5 parent: 2 - - uid: 9988 + - uid: 10629 components: - type: Transform - pos: -45.5,0.5 + rot: 3.141592653589793 rad + pos: -20.5,19.5 parent: 2 - - uid: 9989 + - uid: 10630 components: - type: Transform - pos: -44.5,0.5 + rot: 3.141592653589793 rad + pos: -19.5,27.5 parent: 2 - - uid: 9990 + - uid: 10631 components: - type: Transform - pos: -47.5,0.5 + rot: 3.141592653589793 rad + pos: -18.5,27.5 parent: 2 - - uid: 9991 + - uid: 10632 components: - type: Transform - pos: -48.5,1.5 + rot: 3.141592653589793 rad + pos: -17.5,28.5 parent: 2 - - uid: 9992 + - uid: 10633 components: - type: Transform - pos: -153.5,-26.5 + pos: -15.5,27.5 parent: 2 - - uid: 9993 + - uid: 10634 components: - type: Transform - pos: -157.5,-26.5 + rot: 3.141592653589793 rad + pos: -9.5,28.5 parent: 2 - - uid: 9994 + - uid: 10635 components: - type: Transform - pos: -163.5,-26.5 + rot: 3.141592653589793 rad + pos: -6.5,26.5 parent: 2 - - uid: 9995 + - uid: 10636 components: - type: Transform - pos: -164.5,-26.5 + rot: 3.141592653589793 rad + pos: -6.5,25.5 parent: 2 - - uid: 9996 + - uid: 10637 components: - type: Transform - pos: -165.5,-26.5 + rot: 3.141592653589793 rad + pos: -6.5,19.5 parent: 2 - - uid: 9997 + - uid: 10638 components: - type: Transform - pos: -163.5,-20.5 + rot: 3.141592653589793 rad + pos: -6.5,18.5 parent: 2 - - uid: 9998 + - uid: 10639 components: - type: Transform - pos: -166.5,-20.5 + rot: 3.141592653589793 rad + pos: -6.5,16.5 parent: 2 - - uid: 9999 + - uid: 10640 components: - type: Transform - pos: -167.5,-20.5 + pos: -14.5,29.5 parent: 2 - - uid: 10000 + - uid: 10641 components: - type: Transform - pos: -166.5,-16.5 + pos: -12.5,29.5 parent: 2 - - uid: 10001 + - uid: 10642 components: - type: Transform - pos: -165.5,-16.5 + pos: -11.5,-1.5 parent: 2 - - uid: 10002 + - uid: 10643 components: - type: Transform - pos: -167.5,-14.5 + pos: -11.5,-0.5 parent: 2 - - uid: 10003 + - uid: 10644 components: - type: Transform - pos: -165.5,-8.5 + pos: -11.5,27.5 parent: 2 - - uid: 10004 + - uid: 10645 components: - type: Transform - pos: -162.5,-5.5 + pos: -16.5,-6.5 parent: 2 - - uid: 10005 + - uid: 10646 components: - type: Transform - pos: -161.5,-5.5 + pos: -17.5,-6.5 parent: 2 - - uid: 10006 + - uid: 10647 components: - type: Transform - pos: -165.5,-1.5 + pos: -18.5,-6.5 parent: 2 - - uid: 10007 + - uid: 10648 components: - type: Transform - pos: -164.5,-1.5 + pos: -18.5,1.5 parent: 2 - - uid: 10008 + - uid: 10649 components: - type: Transform - pos: -163.5,-1.5 + pos: -19.5,1.5 parent: 2 - - uid: 10009 + - uid: 10650 components: - type: Transform - pos: -163.5,2.5 + pos: -20.5,1.5 parent: 2 - - uid: 10010 + - uid: 10651 components: - type: Transform - pos: -165.5,2.5 + pos: -39.5,-32.5 parent: 2 - - uid: 10011 + - uid: 10652 components: - type: Transform - pos: -161.5,-1.5 + pos: -39.5,-34.5 parent: 2 - - uid: 10012 + - uid: 10653 components: - type: Transform - pos: -156.5,2.5 + pos: -38.5,-36.5 parent: 2 - - uid: 10013 + - uid: 10654 components: - type: Transform - pos: -156.5,-1.5 + pos: -37.5,-37.5 parent: 2 - - uid: 10014 + - uid: 10655 components: - type: Transform - pos: -167.5,-1.5 + pos: -36.5,-38.5 parent: 2 - - uid: 10015 + - uid: 10656 components: - type: Transform - pos: -168.5,-1.5 + pos: -33.5,-38.5 parent: 2 - - uid: 10016 + - uid: 10657 components: - type: Transform - pos: -169.5,-1.5 + pos: -29.5,-38.5 parent: 2 - - uid: 10017 + - uid: 10658 components: - type: Transform - pos: -169.5,-1.5 + pos: -25.5,-38.5 parent: 2 - - uid: 10018 + - uid: 10659 components: - type: Transform - pos: -169.5,2.5 + pos: -22.5,-37.5 parent: 2 - - uid: 10019 + - uid: 10660 components: - type: Transform - pos: -167.5,2.5 + pos: -21.5,-36.5 parent: 2 - - uid: 10020 + - uid: 10661 components: - type: Transform - pos: -171.5,2.5 + pos: -21.5,-33.5 parent: 2 - - uid: 10021 + - uid: 10662 components: - type: Transform - pos: -173.5,2.5 + pos: -20.5,-33.5 parent: 2 - - uid: 10022 + - uid: 10663 components: - type: Transform - pos: -173.5,-1.5 + pos: -19.5,-33.5 parent: 2 - - uid: 10023 + - uid: 10664 components: - type: Transform - pos: -172.5,-1.5 + pos: -19.5,-30.5 parent: 2 - - uid: 10024 + - uid: 10665 components: - type: Transform - pos: -171.5,-1.5 + pos: -19.5,-29.5 parent: 2 - - uid: 10025 + - uid: 10666 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,18.5 + pos: -21.5,-29.5 parent: 2 - - uid: 10026 + - uid: 10667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,18.5 + pos: -21.5,-27.5 parent: 2 - - uid: 10027 + - uid: 10668 components: - type: Transform - pos: -214.5,-1.5 + pos: -21.5,-26.5 parent: 2 - - uid: 10028 + - uid: 10669 components: - type: Transform - pos: -217.5,-1.5 + pos: -22.5,-26.5 parent: 2 - - uid: 10029 + - uid: 10670 components: - type: Transform - pos: -211.5,-1.5 + pos: -22.5,-25.5 parent: 2 - - uid: 10030 + - uid: 10671 components: - type: Transform - pos: -213.5,-1.5 + pos: -58.5,3.5 parent: 2 - - uid: 10031 + - uid: 10672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -210.5,4.5 + pos: -58.5,2.5 parent: 2 - - uid: 10032 + - uid: 10673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -210.5,12.5 + pos: -61.5,1.5 parent: 2 - - uid: 10033 + - uid: 10674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,25.5 + pos: -141.5,-0.5 parent: 2 - - uid: 10034 + - uid: 10675 components: - type: Transform - pos: -56.5,25.5 + pos: -139.5,-0.5 parent: 2 - - uid: 10035 + - uid: 10676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,27.5 + pos: -142.5,-0.5 parent: 2 - - uid: 10036 + - uid: 10677 components: - type: Transform - pos: -59.5,25.5 + pos: -132.5,-0.5 parent: 2 - - uid: 10037 + - uid: 10678 components: - type: Transform - pos: -64.5,25.5 + pos: -131.5,-0.5 parent: 2 - - uid: 10038 + - uid: 10679 components: - type: Transform - pos: -65.5,25.5 + pos: -136.5,-0.5 parent: 2 - - uid: 10039 + - uid: 10680 components: - type: Transform - pos: -67.5,25.5 + pos: -137.5,-0.5 parent: 2 - - uid: 10040 + - uid: 10681 components: - type: Transform - pos: -68.5,25.5 + rot: 3.141592653589793 rad + pos: -163.5,6.5 parent: 2 - - uid: 10041 + - uid: 10682 components: - type: Transform - pos: -70.5,25.5 + rot: 3.141592653589793 rad + pos: -165.5,6.5 parent: 2 - - uid: 10042 + - uid: 10683 components: - type: Transform - pos: -71.5,25.5 + rot: 3.141592653589793 rad + pos: -166.5,7.5 parent: 2 - - uid: 10043 + - uid: 10684 components: - type: Transform - pos: -73.5,25.5 + rot: 1.5707963267948966 rad + pos: -152.5,14.5 parent: 2 - - uid: 10044 + - uid: 10685 components: - type: Transform - pos: -74.5,25.5 + rot: 1.5707963267948966 rad + pos: -152.5,16.5 parent: 2 - - uid: 10045 + - uid: 10686 components: - type: Transform - pos: -79.5,24.5 + rot: 1.5707963267948966 rad + pos: -154.5,18.5 parent: 2 - - uid: 10046 + - uid: 10687 components: - type: Transform - pos: -79.5,23.5 + rot: -1.5707963267948966 rad + pos: -155.5,18.5 parent: 2 - - uid: 10047 + - uid: 10688 components: - type: Transform - pos: -79.5,22.5 + rot: -1.5707963267948966 rad + pos: -156.5,18.5 parent: 2 - - uid: 10048 + - uid: 10689 components: - type: Transform - pos: -81.5,22.5 + pos: -168.5,-14.5 parent: 2 - - uid: 10049 + - uid: 10690 components: - type: Transform - pos: -81.5,23.5 + pos: -166.5,-14.5 parent: 2 - - uid: 10050 + - uid: 10691 components: - type: Transform - pos: -81.5,24.5 + rot: -1.5707963267948966 rad + pos: -161.5,15.5 parent: 2 - - uid: 10051 + - uid: 10692 components: - type: Transform - pos: -184.5,-21.5 + pos: -88.5,3.5 parent: 2 - - uid: 10052 + - uid: 10693 components: - type: Transform - pos: -185.5,-21.5 + pos: -84.5,-0.5 parent: 2 - - uid: 10053 + - uid: 10694 components: - type: Transform - pos: -187.5,-21.5 + pos: -83.5,1.5 parent: 2 - - uid: 10054 + - uid: 10695 components: - type: Transform - pos: -188.5,-21.5 + pos: -87.5,3.5 parent: 2 - - uid: 10055 + - uid: 10696 components: - type: Transform - pos: -191.5,-17.5 + pos: -87.5,4.5 parent: 2 - - uid: 10056 + - uid: 10697 components: - type: Transform - pos: -191.5,-16.5 + rot: -1.5707963267948966 rad + pos: -184.5,-5.5 parent: 2 - - uid: 10057 + - uid: 10698 components: - type: Transform - pos: -191.5,-15.5 + rot: -1.5707963267948966 rad + pos: -175.5,-19.5 parent: 2 - - uid: 10058 + - uid: 10699 components: - type: Transform - pos: -181.5,-15.5 + rot: -1.5707963267948966 rad + pos: -175.5,-17.5 parent: 2 - - uid: 10059 + - uid: 10700 components: - type: Transform - pos: -181.5,-16.5 + pos: -111.5,-22.5 parent: 2 - - uid: 10060 + - uid: 10701 components: - type: Transform - pos: -181.5,-17.5 + pos: -83.5,-4.5 parent: 2 - - uid: 10061 + - uid: 10702 components: - type: Transform - pos: -188.5,-7.5 + pos: -84.5,0.5 parent: 2 - - uid: 10062 + - uid: 10703 components: - type: Transform - pos: -187.5,-7.5 + pos: -86.5,-2.5 parent: 2 - - uid: 10063 + - uid: 10704 components: - type: Transform - pos: -186.5,-7.5 + pos: -84.5,1.5 parent: 2 - - uid: 10064 + - uid: 10705 components: - type: Transform - pos: -197.5,0.5 + pos: -164.5,13.5 parent: 2 - - uid: 10065 + - uid: 10706 components: - type: Transform - pos: -198.5,0.5 + pos: -163.5,13.5 parent: 2 - - uid: 10066 + - uid: 10707 components: - type: Transform - pos: -195.5,0.5 + rot: 3.141592653589793 rad + pos: -157.5,-11.5 parent: 2 - - uid: 10067 + - uid: 10708 components: - type: Transform - pos: -202.5,6.5 + rot: 3.141592653589793 rad + pos: -159.5,-11.5 parent: 2 - - uid: 10068 + - uid: 10709 components: - type: Transform - pos: -202.5,7.5 + pos: -86.5,5.5 parent: 2 - - uid: 10069 + - uid: 10710 components: - type: Transform - pos: -202.5,8.5 + pos: -86.5,6.5 parent: 2 - - uid: 10070 + - uid: 10711 components: - type: Transform - pos: -190.5,8.5 + pos: -86.5,7.5 parent: 2 - - uid: 10071 + - uid: 10712 components: - type: Transform - pos: -190.5,7.5 + pos: -86.5,8.5 parent: 2 - - uid: 10072 + - uid: 10713 components: - type: Transform - pos: -190.5,6.5 + pos: -86.5,-15.5 parent: 2 - - uid: 10073 + - uid: 10714 components: - type: Transform - pos: -197.5,24.5 + pos: -86.5,-14.5 parent: 2 - - uid: 10074 + - uid: 10715 components: - type: Transform - pos: -195.5,24.5 + pos: -86.5,-13.5 parent: 2 - - uid: 10075 + - uid: 10716 components: - type: Transform - pos: -107.5,9.5 + pos: -86.5,-12.5 parent: 2 - - uid: 10076 + - uid: 10717 components: - type: Transform - pos: -107.5,5.5 + pos: -87.5,-11.5 parent: 2 - - uid: 10077 + - uid: 10718 components: - type: Transform - pos: -97.5,9.5 + pos: -87.5,-10.5 parent: 2 - - uid: 10078 + - uid: 10719 components: - type: Transform - pos: -65.5,-18.5 + pos: -88.5,-10.5 parent: 2 - - uid: 10079 + - uid: 10720 components: - type: Transform - pos: -65.5,-19.5 + pos: -112.5,-22.5 parent: 2 - - uid: 10080 + - uid: 10721 components: - type: Transform - pos: -65.5,-20.5 + pos: -113.5,-22.5 parent: 2 - - uid: 10081 + - uid: 10722 components: - type: Transform - pos: -79.5,-1.5 + pos: -126.5,-21.5 parent: 2 - - uid: 10082 + - uid: 10723 components: - type: Transform - pos: -78.5,-1.5 + pos: -127.5,-21.5 parent: 2 - - uid: 10083 + - uid: 10724 components: - type: Transform - pos: -77.5,-1.5 + pos: -128.5,-21.5 parent: 2 - - uid: 10084 + - uid: 10725 components: - type: Transform - pos: -80.5,-2.5 + pos: -131.5,-20.5 parent: 2 - - uid: 10085 + - uid: 10726 components: - type: Transform - pos: -80.5,-3.5 + pos: -131.5,-19.5 parent: 2 - - uid: 10086 + - uid: 10727 components: - type: Transform - pos: -80.5,-4.5 + pos: -131.5,-18.5 parent: 2 - - uid: 10087 + - uid: 10728 components: - type: Transform - pos: -78.5,-5.5 + pos: -132.5,8.5 parent: 2 - - uid: 10088 + - uid: 10729 components: - type: Transform - pos: -77.5,-5.5 + pos: -133.5,8.5 parent: 2 - - uid: 10089 + - uid: 10730 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,1.5 + pos: -135.5,8.5 parent: 2 - - uid: 10090 + - uid: 10731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,25.5 + pos: -136.5,8.5 parent: 2 - - uid: 10091 + - uid: 10732 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.5,24.5 + pos: -211.5,-15.5 parent: 2 - - uid: 10092 + - uid: 10733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,23.5 + pos: -199.5,5.5 parent: 2 - - uid: 10093 + - uid: 10734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,22.5 + rot: 3.141592653589793 rad + pos: -80.5,-31.5 parent: 2 - - uid: 10094 + - uid: 10735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,27.5 + rot: 3.141592653589793 rad + pos: -80.5,-32.5 parent: 2 - - uid: 10095 + - uid: 10736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,27.5 + pos: -87.5,-29.5 parent: 2 - - uid: 10096 + - uid: 10737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,25.5 + pos: -87.5,-30.5 parent: 2 - - uid: 10097 + - uid: 10738 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.5,25.5 + pos: -210.5,9.5 parent: 2 - - uid: 10098 + - uid: 10739 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,27.5 + rot: -1.5707963267948966 rad + pos: -211.5,-16.5 parent: 2 - - uid: 10099 + - uid: 10740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,27.5 + rot: -1.5707963267948966 rad + pos: -211.5,-17.5 parent: 2 - - uid: 10100 + - uid: 10741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,27.5 + rot: -1.5707963267948966 rad + pos: -197.5,-15.5 parent: 2 - - uid: 10101 + - uid: 10742 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,27.5 + rot: -1.5707963267948966 rad + pos: -197.5,-16.5 parent: 2 - - uid: 10102 + - uid: 10743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,27.5 + rot: -1.5707963267948966 rad + pos: -205.5,-5.5 parent: 2 - - uid: 10103 + - uid: 10744 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,27.5 + rot: -1.5707963267948966 rad + pos: -197.5,-17.5 parent: 2 - - uid: 10104 + - uid: 10745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,27.5 + rot: -1.5707963267948966 rad + pos: -193.5,-17.5 parent: 2 - - uid: 10105 + - uid: 10746 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,27.5 + rot: -1.5707963267948966 rad + pos: -193.5,-16.5 parent: 2 - - uid: 10106 + - uid: 10747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,27.5 + rot: -1.5707963267948966 rad + pos: -193.5,-15.5 parent: 2 - - uid: 10107 + - uid: 10748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,27.5 + rot: -1.5707963267948966 rad + pos: -179.5,-15.5 parent: 2 - - uid: 10108 + - uid: 10749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,27.5 + rot: -1.5707963267948966 rad + pos: -179.5,-16.5 parent: 2 - - uid: 10109 + - uid: 10750 components: - type: Transform rot: -1.5707963267948966 rad - pos: -77.5,25.5 + pos: -179.5,-17.5 parent: 2 - - uid: 10110 + - uid: 10751 components: - type: Transform rot: -1.5707963267948966 rad - pos: -76.5,25.5 + pos: -183.5,-5.5 parent: 2 - - uid: 10111 + - uid: 10752 components: - type: Transform - pos: -100.5,21.5 + rot: -1.5707963267948966 rad + pos: -185.5,-5.5 parent: 2 - - uid: 10112 + - uid: 10753 components: - type: Transform - pos: -104.5,21.5 + rot: -1.5707963267948966 rad + pos: -175.5,-18.5 parent: 2 - - uid: 10113 + - uid: 10754 components: - type: Transform - pos: -204.5,9.5 + rot: -1.5707963267948966 rad + pos: -180.5,1.5 parent: 2 - - uid: 10114 + - uid: 10755 components: - type: Transform - pos: -204.5,8.5 + rot: -1.5707963267948966 rad + pos: -187.5,-5.5 parent: 2 - - uid: 10115 + - uid: 10756 components: - type: Transform - pos: -204.5,7.5 + rot: -1.5707963267948966 rad + pos: -188.5,-5.5 parent: 2 - - uid: 10116 + - uid: 10757 components: - type: Transform - pos: -109.5,-7.5 + rot: -1.5707963267948966 rad + pos: -189.5,-5.5 parent: 2 - - uid: 10117 + - uid: 10758 components: - type: Transform - pos: -109.5,-6.5 + rot: -1.5707963267948966 rad + pos: -201.5,-5.5 parent: 2 - - uid: 10118 + - uid: 10759 components: - type: Transform - pos: -18.5,9.5 + rot: -1.5707963267948966 rad + pos: -202.5,-5.5 parent: 2 - - uid: 10119 + - uid: 10760 components: - type: Transform - pos: -18.5,8.5 + rot: -1.5707963267948966 rad + pos: -203.5,-5.5 parent: 2 - - uid: 10120 + - uid: 10761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-10.5 + rot: -1.5707963267948966 rad + pos: -206.5,-5.5 parent: 2 - - uid: 10121 + - uid: 10762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-11.5 + rot: -1.5707963267948966 rad + pos: -207.5,-5.5 parent: 2 - - uid: 10122 + - uid: 10763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-12.5 + pos: -131.5,-11.5 parent: 2 - - uid: 10123 + - uid: 10764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-8.5 + pos: -131.5,-12.5 parent: 2 - - uid: 10124 + - uid: 10765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-8.5 + pos: -131.5,-13.5 parent: 2 - - uid: 10125 + - uid: 10766 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-8.5 + pos: -179.5,-7.5 parent: 2 - - uid: 10126 + - uid: 10767 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,1.5 + pos: -179.5,-8.5 parent: 2 - - uid: 10127 + - uid: 10768 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,1.5 + pos: -179.5,-9.5 parent: 2 - - uid: 10128 + - uid: 10769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,1.5 + rot: 3.141592653589793 rad + pos: -157.5,12.5 parent: 2 - - uid: 10129 + - uid: 10770 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,1.5 + pos: -176.5,6.5 parent: 2 - - uid: 10130 + - uid: 10771 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,1.5 + rot: 1.5707963267948966 rad + pos: -193.5,-9.5 parent: 2 - - uid: 10131 + - uid: 10772 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-8.5 + rot: 1.5707963267948966 rad + pos: -193.5,-7.5 parent: 2 - - uid: 10132 + - uid: 10773 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-8.5 + rot: 1.5707963267948966 rad + pos: -193.5,-8.5 parent: 2 - - uid: 10133 + - uid: 10774 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-13.5 + pos: -156.5,12.5 parent: 2 - - uid: 10134 + - uid: 10775 components: - type: Transform - rot: 3.141592653589793 rad - pos: -189.5,10.5 + pos: -102.5,-33.5 parent: 2 - - uid: 10135 + - uid: 10776 components: - type: Transform - rot: 3.141592653589793 rad - pos: -189.5,12.5 + pos: -111.5,-38.5 parent: 2 - - uid: 10136 + - uid: 10777 components: - type: Transform - rot: 3.141592653589793 rad - pos: -189.5,5.5 + pos: -109.5,-38.5 parent: 2 - - uid: 10137 + - uid: 10778 components: - type: Transform - rot: 3.141592653589793 rad - pos: -189.5,3.5 + pos: -114.5,-38.5 parent: 2 - - uid: 10138 + - uid: 10779 components: - type: Transform - rot: 3.141592653589793 rad - pos: -203.5,3.5 + pos: -116.5,-38.5 parent: 2 - - uid: 10139 + - uid: 10780 components: - type: Transform - rot: 3.141592653589793 rad - pos: -203.5,5.5 + pos: -107.5,-38.5 parent: 2 - - uid: 10140 + - uid: 10781 components: - type: Transform - rot: 3.141592653589793 rad - pos: -203.5,10.5 + pos: -104.5,-36.5 parent: 2 - - uid: 10141 + - uid: 10782 components: - type: Transform - rot: 3.141592653589793 rad - pos: -203.5,12.5 + pos: -105.5,-36.5 parent: 2 - - uid: 10142 + - uid: 10783 components: - type: Transform - rot: 3.141592653589793 rad - pos: -192.5,-12.5 + pos: -105.5,-37.5 parent: 2 - - uid: 10143 + - uid: 10784 components: - type: Transform - rot: 3.141592653589793 rad - pos: -192.5,-14.5 + pos: -118.5,-34.5 parent: 2 - - uid: 10144 + - uid: 10785 components: - type: Transform - rot: 3.141592653589793 rad - pos: -180.5,-14.5 + pos: -100.5,-31.5 parent: 2 - - uid: 10145 + - uid: 10786 components: - type: Transform - rot: 3.141592653589793 rad - pos: -180.5,-12.5 + pos: -100.5,-30.5 parent: 2 - - uid: 10146 + - uid: 10787 components: - type: Transform - rot: 3.141592653589793 rad - pos: -180.5,-18.5 + pos: -100.5,-29.5 parent: 2 - - uid: 10147 + - uid: 10788 components: - type: Transform - rot: 3.141592653589793 rad - pos: -180.5,-20.5 + pos: -117.5,-25.5 parent: 2 - - uid: 10148 + - uid: 10789 components: - type: Transform - rot: 3.141592653589793 rad - pos: -192.5,-20.5 + pos: -117.5,-26.5 parent: 2 - - uid: 10149 + - uid: 10790 components: - type: Transform - rot: 3.141592653589793 rad - pos: -192.5,-18.5 + pos: -118.5,-26.5 parent: 2 - - uid: 10150 + - uid: 10791 components: - type: Transform - pos: -10.5,-14.5 + pos: -118.5,-29.5 parent: 2 - - uid: 10151 + - uid: 10792 components: - type: Transform - pos: -10.5,-17.5 + pos: -119.5,-29.5 parent: 2 - - uid: 10152 + - uid: 10793 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-13.5 + pos: -120.5,-31.5 parent: 2 - - uid: 10153 + - uid: 10794 components: - type: Transform - pos: -15.5,-13.5 + pos: -120.5,-32.5 parent: 2 - - uid: 10154 + - uid: 10795 components: - type: Transform - pos: -150.5,4.5 + pos: -120.5,-33.5 parent: 2 - - uid: 10155 + - uid: 10796 components: - type: Transform - pos: -96.5,5.5 + pos: -118.5,-35.5 parent: 2 - - uid: 10156 + - uid: 10797 components: - type: Transform - pos: -96.5,3.5 + pos: -117.5,-36.5 parent: 2 - - uid: 10157 + - uid: 10798 components: - type: Transform - pos: -101.5,-0.5 + rot: 1.5707963267948966 rad + pos: -91.5,-1.5 parent: 2 - - uid: 10158 + - uid: 10799 components: - type: Transform - pos: -103.5,-0.5 + rot: 1.5707963267948966 rad + pos: -92.5,-1.5 parent: 2 - - uid: 10159 + - uid: 10800 components: - type: Transform - rot: 3.141592653589793 rad - pos: -200.5,20.5 + rot: 1.5707963267948966 rad + pos: -93.5,-1.5 parent: 2 - - uid: 10160 + - uid: 10801 components: - type: Transform - rot: 3.141592653589793 rad - pos: -187.5,-19.5 + rot: 1.5707963267948966 rad + pos: -94.5,-1.5 parent: 2 - - uid: 10161 + - uid: 10802 components: - type: Transform - rot: 3.141592653589793 rad - pos: -185.5,-19.5 + rot: 1.5707963267948966 rad + pos: -90.5,-0.5 parent: 2 - - uid: 10162 + - uid: 10803 components: - type: Transform - rot: 3.141592653589793 rad - pos: -185.5,-14.5 + rot: 1.5707963267948966 rad + pos: -90.5,0.5 parent: 2 - - uid: 10163 + - uid: 10804 components: - type: Transform - rot: 3.141592653589793 rad - pos: -187.5,-14.5 + pos: -211.5,-7.5 parent: 2 - - uid: 10164 + - uid: 10805 components: - type: Transform - rot: 3.141592653589793 rad - pos: -186.5,-19.5 + pos: -211.5,-8.5 parent: 2 - - uid: 10165 + - uid: 10806 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,15.5 + pos: -211.5,-9.5 parent: 2 - - uid: 10166 + - uid: 10807 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,18.5 + pos: -195.5,-1.5 parent: 2 - - uid: 10167 + - uid: 10808 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,21.5 + pos: -194.5,-1.5 parent: 2 - - uid: 10168 + - uid: 10809 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,24.5 + pos: -193.5,-1.5 parent: 2 - - uid: 10169 + - uid: 10810 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,22.5 + pos: -197.5,-1.5 parent: 2 - - uid: 10170 + - uid: 10811 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,19.5 + pos: -198.5,-1.5 parent: 2 - - uid: 10171 + - uid: 10812 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,27.5 + pos: -199.5,-1.5 parent: 2 - - uid: 10172 + - uid: 10813 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,27.5 + rot: -1.5707963267948966 rad + pos: -124.5,13.5 parent: 2 - - uid: 10173 + - uid: 10814 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,28.5 + rot: -1.5707963267948966 rad + pos: -126.5,13.5 parent: 2 - - uid: 10174 + - uid: 10815 components: - type: Transform - pos: -15.5,27.5 + rot: 1.5707963267948966 rad + pos: -131.5,26.5 parent: 2 - - uid: 10175 + - uid: 10816 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,28.5 + rot: 1.5707963267948966 rad + pos: -130.5,24.5 parent: 2 - - uid: 10176 + - uid: 10817 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,26.5 + rot: 1.5707963267948966 rad + pos: -134.5,25.5 parent: 2 - - uid: 10177 + - uid: 10818 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,25.5 + rot: 1.5707963267948966 rad + pos: -134.5,24.5 parent: 2 - - uid: 10178 + - uid: 10819 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,19.5 + rot: 1.5707963267948966 rad + pos: -136.5,23.5 parent: 2 - - uid: 10179 + - uid: 10820 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,18.5 + rot: 1.5707963267948966 rad + pos: -137.5,23.5 parent: 2 - - uid: 10180 + - uid: 10821 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,16.5 + rot: 1.5707963267948966 rad + pos: -137.5,22.5 parent: 2 - - uid: 10181 + - uid: 10822 components: - type: Transform - pos: -14.5,29.5 + rot: 1.5707963267948966 rad + pos: -139.5,19.5 parent: 2 - - uid: 10182 + - uid: 10823 components: - type: Transform - pos: -12.5,29.5 + rot: 1.5707963267948966 rad + pos: -140.5,18.5 parent: 2 - - uid: 10183 + - uid: 10824 components: - type: Transform - pos: -11.5,-1.5 + rot: 1.5707963267948966 rad + pos: -140.5,18.5 parent: 2 - - uid: 10184 + - uid: 10825 components: - type: Transform - pos: -11.5,-0.5 + rot: 1.5707963267948966 rad + pos: -140.5,17.5 parent: 2 - - uid: 10185 + - uid: 10826 components: - type: Transform - pos: -11.5,27.5 + rot: 1.5707963267948966 rad + pos: -140.5,16.5 parent: 2 - - uid: 10186 + - uid: 10827 components: - type: Transform - pos: -16.5,-6.5 + rot: 1.5707963267948966 rad + pos: -126.5,22.5 parent: 2 - - uid: 10187 + - uid: 10828 components: - type: Transform - pos: -17.5,-6.5 + rot: 1.5707963267948966 rad + pos: -126.5,21.5 parent: 2 - - uid: 10188 + - uid: 10829 components: - type: Transform - pos: -18.5,-6.5 + rot: 1.5707963267948966 rad + pos: -125.5,21.5 parent: 2 - - uid: 10189 + - uid: 10830 components: - type: Transform - pos: -18.5,1.5 + rot: 1.5707963267948966 rad + pos: -125.5,19.5 parent: 2 - - uid: 10190 + - uid: 10831 components: - type: Transform - pos: -19.5,1.5 + rot: 1.5707963267948966 rad + pos: -124.5,17.5 parent: 2 - - uid: 10191 + - uid: 10832 components: - type: Transform - pos: -20.5,1.5 + rot: 1.5707963267948966 rad + pos: -122.5,17.5 parent: 2 - - uid: 10192 + - uid: 10833 components: - type: Transform - pos: -39.5,-32.5 + pos: -32.5,8.5 parent: 2 - - uid: 10193 + - uid: 10834 components: - type: Transform - pos: -39.5,-34.5 + pos: -142.5,-7.5 parent: 2 - - uid: 10194 + - uid: 10835 components: - type: Transform - pos: -38.5,-36.5 + pos: -111.5,18.5 parent: 2 - - uid: 10195 + - uid: 10836 components: - type: Transform - pos: -37.5,-37.5 + rot: 1.5707963267948966 rad + pos: -119.5,18.5 parent: 2 - - uid: 10196 + - uid: 10837 components: - type: Transform - pos: -36.5,-38.5 + rot: 1.5707963267948966 rad + pos: -117.5,18.5 parent: 2 - - uid: 10197 + - uid: 10838 components: - type: Transform - pos: -33.5,-38.5 + rot: 1.5707963267948966 rad + pos: -112.5,18.5 parent: 2 - - uid: 10198 + - uid: 10839 components: - type: Transform - pos: -29.5,-38.5 + rot: 1.5707963267948966 rad + pos: -110.5,18.5 parent: 2 - - uid: 10199 + - uid: 10840 components: - type: Transform - pos: -25.5,-38.5 + pos: -118.5,18.5 parent: 2 - - uid: 10200 + - uid: 10841 components: - type: Transform - pos: -22.5,-37.5 + pos: -136.5,-8.5 parent: 2 - - uid: 10201 + - uid: 10842 components: - type: Transform - pos: -21.5,-36.5 + pos: -138.5,-8.5 parent: 2 - - uid: 10202 + - uid: 10843 components: - type: Transform - pos: -21.5,-33.5 + pos: -143.5,-8.5 parent: 2 - - uid: 10203 + - uid: 10844 components: - type: Transform - pos: -20.5,-33.5 + pos: -145.5,-8.5 parent: 2 - - uid: 10204 + - uid: 10845 components: - type: Transform - pos: -19.5,-33.5 + rot: 3.141592653589793 rad + pos: -1.5,3.5 parent: 2 - - uid: 10205 + - uid: 10846 components: - type: Transform - pos: -19.5,-30.5 + rot: -1.5707963267948966 rad + pos: -163.5,20.5 parent: 2 - - uid: 10206 + - uid: 10847 components: - type: Transform - pos: -19.5,-29.5 + rot: -1.5707963267948966 rad + pos: -161.5,20.5 parent: 2 - - uid: 10207 + - uid: 10848 components: - type: Transform - pos: -21.5,-29.5 + rot: -1.5707963267948966 rad + pos: -156.5,21.5 parent: 2 - - uid: 10208 + - uid: 10849 components: - type: Transform - pos: -21.5,-27.5 + rot: -1.5707963267948966 rad + pos: -155.5,21.5 parent: 2 - - uid: 10209 + - uid: 10850 components: - type: Transform - pos: -21.5,-26.5 + rot: -1.5707963267948966 rad + pos: -149.5,22.5 parent: 2 - - uid: 10210 + - uid: 10851 components: - type: Transform - pos: -22.5,-26.5 + rot: -1.5707963267948966 rad + pos: -148.5,22.5 parent: 2 - - uid: 10211 + - uid: 10852 components: - type: Transform - pos: -22.5,-25.5 + rot: -1.5707963267948966 rad + pos: -147.5,22.5 parent: 2 - - uid: 10212 + - uid: 10853 components: - type: Transform - pos: -58.5,3.5 + rot: -1.5707963267948966 rad + pos: -146.5,22.5 parent: 2 - - uid: 10213 + - uid: 10854 components: - type: Transform - pos: -58.5,2.5 + rot: -1.5707963267948966 rad + pos: -143.5,22.5 parent: 2 - - uid: 10214 + - uid: 10855 components: - type: Transform - pos: -61.5,1.5 + rot: -1.5707963267948966 rad + pos: -167.5,18.5 parent: 2 - - uid: 10215 + - uid: 10856 components: - type: Transform - pos: -141.5,-0.5 + rot: -1.5707963267948966 rad + pos: -169.5,18.5 parent: 2 - - uid: 10216 + - uid: 10857 components: - type: Transform - pos: -139.5,-0.5 + rot: -1.5707963267948966 rad + pos: -173.5,18.5 parent: 2 - - uid: 10217 + - uid: 10858 components: - type: Transform - pos: -142.5,-0.5 + rot: -1.5707963267948966 rad + pos: -172.5,18.5 parent: 2 - - uid: 10218 + - uid: 10859 components: - type: Transform - pos: -132.5,-0.5 + rot: -1.5707963267948966 rad + pos: -174.5,18.5 parent: 2 - - uid: 10219 + - uid: 10860 components: - type: Transform - pos: -131.5,-0.5 + rot: -1.5707963267948966 rad + pos: -182.5,14.5 parent: 2 - - uid: 10220 + - uid: 10861 components: - type: Transform - pos: -136.5,-0.5 + rot: -1.5707963267948966 rad + pos: -182.5,12.5 parent: 2 - - uid: 10221 + - uid: 10862 components: - type: Transform - pos: -137.5,-0.5 + rot: -1.5707963267948966 rad + pos: -182.5,11.5 parent: 2 - - uid: 10222 + - uid: 10863 components: - type: Transform - rot: 3.141592653589793 rad - pos: -163.5,6.5 + rot: -1.5707963267948966 rad + pos: -182.5,10.5 parent: 2 - - uid: 10223 + - uid: 10864 components: - type: Transform - rot: 3.141592653589793 rad - pos: -165.5,6.5 + pos: -176.5,-24.5 parent: 2 - - uid: 10224 + - uid: 10865 components: - type: Transform - rot: 3.141592653589793 rad - pos: -166.5,7.5 + pos: -174.5,-24.5 parent: 2 - - uid: 10225 + - uid: 10866 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -152.5,14.5 + pos: -173.5,-24.5 parent: 2 - - uid: 10226 + - uid: 10867 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -152.5,16.5 + pos: -172.5,-24.5 parent: 2 - - uid: 10227 + - uid: 10868 components: - type: Transform rot: 1.5707963267948966 rad - pos: -154.5,18.5 + pos: -167.5,-29.5 parent: 2 - - uid: 10228 + - uid: 10869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -155.5,18.5 + rot: 1.5707963267948966 rad + pos: -161.5,-29.5 parent: 2 - - uid: 10229 + - uid: 10870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -156.5,18.5 + rot: 1.5707963267948966 rad + pos: -160.5,-29.5 parent: 2 - - uid: 10230 + - uid: 10871 components: - type: Transform - pos: -168.5,-14.5 + rot: 1.5707963267948966 rad + pos: -156.5,-28.5 parent: 2 - - uid: 10231 + - uid: 10872 components: - type: Transform - pos: -166.5,-14.5 + rot: 1.5707963267948966 rad + pos: -155.5,-28.5 parent: 2 - - uid: 10232 + - uid: 10873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -161.5,15.5 + rot: 1.5707963267948966 rad + pos: -152.5,-28.5 parent: 2 - - uid: 10233 + - uid: 10874 components: - type: Transform - pos: -88.5,3.5 + rot: 1.5707963267948966 rad + pos: -154.5,-28.5 parent: 2 - - uid: 10234 + - uid: 10875 components: - type: Transform - pos: -84.5,-0.5 + rot: 1.5707963267948966 rad + pos: -164.5,-29.5 parent: 2 - - uid: 10235 + - uid: 10876 components: - type: Transform - pos: -83.5,1.5 + rot: 1.5707963267948966 rad + pos: -163.5,-29.5 parent: 2 - - uid: 10236 + - uid: 10877 components: - type: Transform - pos: -87.5,3.5 + rot: 1.5707963267948966 rad + pos: -162.5,-29.5 parent: 2 - - uid: 10237 + - uid: 10878 components: - type: Transform - pos: -87.5,4.5 + rot: -1.5707963267948966 rad + pos: -127.5,-26.5 parent: 2 - - uid: 10238 + - uid: 10879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -184.5,-5.5 + pos: -89.5,-29.5 parent: 2 - - uid: 10239 + - uid: 10880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -175.5,-19.5 + pos: -89.5,-31.5 parent: 2 - - uid: 10240 + - uid: 10881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -175.5,-17.5 + pos: -89.5,-30.5 parent: 2 - - uid: 10241 + - uid: 10882 components: - type: Transform - pos: -199.5,0.5 + rot: 3.141592653589793 rad + pos: 0.5,3.5 parent: 2 - - uid: 10242 + - uid: 10883 components: - type: Transform - pos: -111.5,-22.5 + rot: 3.141592653589793 rad + pos: 2.5,2.5 parent: 2 - - uid: 10243 + - uid: 10884 components: - type: Transform - pos: -83.5,-4.5 + rot: 3.141592653589793 rad + pos: 4.5,3.5 parent: 2 - - uid: 10244 + - uid: 10885 components: - type: Transform - pos: -84.5,0.5 + rot: 3.141592653589793 rad + pos: 5.5,3.5 parent: 2 - - uid: 10245 + - uid: 10886 components: - type: Transform - pos: -86.5,-2.5 + rot: -1.5707963267948966 rad + pos: -0.5,-12.5 parent: 2 - - uid: 10246 + - uid: 10887 components: - type: Transform - pos: -84.5,1.5 + rot: -1.5707963267948966 rad + pos: 0.5,-11.5 parent: 2 - - uid: 10247 + - uid: 10888 components: - type: Transform - pos: -193.5,0.5 + rot: -1.5707963267948966 rad + pos: 1.5,-10.5 parent: 2 - - uid: 10248 + - uid: 10889 components: - type: Transform - pos: -194.5,0.5 + rot: -1.5707963267948966 rad + pos: 4.5,-10.5 parent: 2 - - uid: 10249 + - uid: 10890 components: - type: Transform - pos: -164.5,13.5 + rot: -1.5707963267948966 rad + pos: 0.5,-9.5 parent: 2 - - uid: 10250 + - uid: 10891 components: - type: Transform - pos: -163.5,13.5 + rot: 3.141592653589793 rad + pos: -22.5,14.5 parent: 2 - - uid: 10251 + - uid: 10892 components: - type: Transform rot: 3.141592653589793 rad - pos: -157.5,-11.5 + pos: -23.5,14.5 parent: 2 - - uid: 10252 + - uid: 10893 components: - type: Transform rot: 3.141592653589793 rad - pos: -159.5,-11.5 + pos: -25.5,14.5 parent: 2 - - uid: 10253 + - uid: 10894 components: - type: Transform - pos: -86.5,5.5 + rot: 3.141592653589793 rad + pos: -32.5,16.5 parent: 2 - - uid: 10254 + - uid: 10895 components: - type: Transform - pos: -86.5,6.5 + rot: 3.141592653589793 rad + pos: -26.5,15.5 parent: 2 - - uid: 10255 + - uid: 10896 components: - type: Transform - pos: -86.5,7.5 + rot: 3.141592653589793 rad + pos: -29.5,16.5 parent: 2 - - uid: 10256 + - uid: 10897 components: - type: Transform - pos: -86.5,8.5 + rot: 3.141592653589793 rad + pos: -27.5,16.5 parent: 2 - - uid: 10257 + - uid: 10898 components: - type: Transform - pos: -86.5,-15.5 + rot: -1.5707963267948966 rad + pos: -131.5,-24.5 parent: 2 - - uid: 10258 + - uid: 10899 components: - type: Transform - pos: -86.5,-14.5 + rot: -1.5707963267948966 rad + pos: -131.5,-25.5 parent: 2 - - uid: 10259 + - uid: 10900 components: - type: Transform - pos: -86.5,-13.5 + rot: -1.5707963267948966 rad + pos: -129.5,-26.5 parent: 2 - - uid: 10260 + - uid: 10901 components: - type: Transform - pos: -86.5,-12.5 + rot: -1.5707963267948966 rad + pos: -97.5,-33.5 parent: 2 - - uid: 10261 + - uid: 10902 components: - type: Transform - pos: -87.5,-11.5 + rot: -1.5707963267948966 rad + pos: -22.5,-22.5 parent: 2 - - uid: 10262 + - uid: 10903 components: - type: Transform - pos: -87.5,-10.5 + rot: -1.5707963267948966 rad + pos: -20.5,-22.5 parent: 2 - - uid: 10263 + - uid: 10904 components: - type: Transform - pos: -88.5,-10.5 + rot: -1.5707963267948966 rad + pos: -19.5,-22.5 parent: 2 - - uid: 10264 + - uid: 10905 components: - type: Transform - pos: -112.5,-22.5 + rot: -1.5707963267948966 rad + pos: -17.5,-22.5 parent: 2 - - uid: 10265 + - uid: 10906 components: - type: Transform - pos: -113.5,-22.5 + rot: -1.5707963267948966 rad + pos: -15.5,-22.5 parent: 2 - - uid: 10266 + - uid: 10907 components: - type: Transform - pos: -126.5,-21.5 + rot: -1.5707963267948966 rad + pos: -13.5,-22.5 parent: 2 - - uid: 10267 + - uid: 10908 components: - type: Transform - pos: -127.5,-21.5 + rot: -1.5707963267948966 rad + pos: -12.5,-22.5 parent: 2 - - uid: 10268 + - uid: 10909 components: - type: Transform - pos: -128.5,-21.5 + rot: -1.5707963267948966 rad + pos: -11.5,-22.5 parent: 2 - - uid: 10269 + - uid: 10910 components: - type: Transform - pos: -131.5,-20.5 + rot: -1.5707963267948966 rad + pos: -10.5,-22.5 parent: 2 - - uid: 10270 + - uid: 10911 components: - type: Transform - pos: -131.5,-19.5 + rot: -1.5707963267948966 rad + pos: -7.5,-22.5 parent: 2 - - uid: 10271 + - uid: 10912 components: - type: Transform - pos: -131.5,-18.5 + rot: -1.5707963267948966 rad + pos: -5.5,-22.5 parent: 2 - - uid: 10272 + - uid: 10913 components: - type: Transform - pos: -132.5,8.5 + rot: -1.5707963267948966 rad + pos: -4.5,-22.5 parent: 2 - - uid: 10273 + - uid: 10914 components: - type: Transform - pos: -133.5,8.5 + rot: -1.5707963267948966 rad + pos: 6.5,-10.5 parent: 2 - - uid: 10274 + - uid: 10915 components: - type: Transform - pos: -135.5,8.5 + rot: -1.5707963267948966 rad + pos: -3.5,-20.5 parent: 2 - - uid: 10275 + - uid: 10916 components: - type: Transform - pos: -136.5,8.5 + rot: -1.5707963267948966 rad + pos: -3.5,-19.5 parent: 2 - - uid: 10276 + - uid: 10917 components: - type: Transform rot: -1.5707963267948966 rad - pos: -211.5,-15.5 + pos: -1.5,-19.5 parent: 2 - - uid: 10277 + - uid: 10918 components: - type: Transform - pos: -188.5,21.5 + rot: -1.5707963267948966 rad + pos: -1.5,-17.5 parent: 2 - - uid: 10278 + - uid: 10919 components: - type: Transform - pos: -188.5,20.5 + rot: -1.5707963267948966 rad + pos: -1.5,-16.5 parent: 2 - - uid: 10279 + - uid: 10920 components: - type: Transform - pos: -188.5,19.5 + rot: -1.5707963267948966 rad + pos: -1.5,-15.5 parent: 2 - - uid: 10280 + - uid: 10921 components: - type: Transform - pos: -204.5,21.5 + rot: -1.5707963267948966 rad + pos: 6.5,-9.5 parent: 2 - - uid: 10281 + - uid: 10922 components: - type: Transform - pos: -204.5,20.5 + rot: -1.5707963267948966 rad + pos: -2.5,-21.5 parent: 2 - - uid: 10282 + - uid: 10923 components: - type: Transform - pos: -204.5,19.5 + rot: -1.5707963267948966 rad + pos: -20.5,-25.5 parent: 2 - - uid: 10283 + - uid: 10924 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-31.5 + rot: -1.5707963267948966 rad + pos: -17.5,-25.5 parent: 2 - - uid: 10284 + - uid: 10925 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-32.5 + rot: -1.5707963267948966 rad + pos: -18.5,-25.5 parent: 2 - - uid: 10285 + - uid: 10926 components: - type: Transform - pos: -87.5,-29.5 + rot: -1.5707963267948966 rad + pos: -14.5,-25.5 parent: 2 - - uid: 10286 + - uid: 10927 components: - type: Transform - pos: -87.5,-30.5 + rot: -1.5707963267948966 rad + pos: -13.5,-25.5 parent: 2 - - uid: 10287 + - uid: 10928 components: - type: Transform rot: -1.5707963267948966 rad - pos: -188.5,8.5 + pos: -12.5,-25.5 parent: 2 - - uid: 10288 + - uid: 10929 components: - type: Transform rot: -1.5707963267948966 rad - pos: -188.5,7.5 + pos: -11.5,-25.5 parent: 2 - - uid: 10289 + - uid: 10930 components: - type: Transform rot: -1.5707963267948966 rad - pos: -188.5,6.5 + pos: -8.5,-25.5 parent: 2 - - uid: 10290 + - uid: 10931 components: - type: Transform rot: -1.5707963267948966 rad - pos: -210.5,9.5 + pos: -7.5,-25.5 parent: 2 - - uid: 10291 + - uid: 10932 components: - type: Transform rot: -1.5707963267948966 rad - pos: -211.5,-16.5 + pos: -4.5,-25.5 parent: 2 - - uid: 10292 + - uid: 10933 components: - type: Transform rot: -1.5707963267948966 rad - pos: -211.5,-17.5 + pos: -3.5,-25.5 parent: 2 - - uid: 10293 + - uid: 10934 components: - type: Transform rot: -1.5707963267948966 rad - pos: -197.5,-15.5 + pos: -3.5,-23.5 parent: 2 - - uid: 10294 + - uid: 10935 components: - type: Transform rot: -1.5707963267948966 rad - pos: -197.5,-16.5 + pos: -41.5,-28.5 parent: 2 - - uid: 10295 + - uid: 10936 components: - type: Transform rot: -1.5707963267948966 rad - pos: -205.5,-5.5 + pos: -1.5,-24.5 parent: 2 - - uid: 10296 + - uid: 10937 components: - type: Transform rot: -1.5707963267948966 rad - pos: -197.5,-17.5 + pos: -43.5,-28.5 parent: 2 - - uid: 10297 + - uid: 10938 components: - type: Transform rot: -1.5707963267948966 rad - pos: -193.5,-17.5 + pos: -44.5,-28.5 parent: 2 - - uid: 10298 + - uid: 10939 components: - type: Transform rot: -1.5707963267948966 rad - pos: -193.5,-16.5 + pos: -43.5,-25.5 parent: 2 - - uid: 10299 + - uid: 10940 components: - type: Transform rot: -1.5707963267948966 rad - pos: -193.5,-15.5 + pos: -42.5,-26.5 parent: 2 - - uid: 10300 + - uid: 10941 components: - type: Transform rot: -1.5707963267948966 rad - pos: -179.5,-15.5 + pos: -47.5,-26.5 parent: 2 - - uid: 10301 + - uid: 10942 components: - type: Transform rot: -1.5707963267948966 rad - pos: -179.5,-16.5 + pos: -48.5,-26.5 parent: 2 - - uid: 10302 + - uid: 10943 components: - type: Transform rot: -1.5707963267948966 rad - pos: -179.5,-17.5 + pos: -50.5,-25.5 parent: 2 - - uid: 10303 + - uid: 10944 components: - type: Transform rot: -1.5707963267948966 rad - pos: -183.5,-5.5 + pos: -46.5,-28.5 parent: 2 - - uid: 10304 + - uid: 10945 components: - type: Transform rot: -1.5707963267948966 rad - pos: -185.5,-5.5 + pos: -91.5,-30.5 parent: 2 - - uid: 10305 + - uid: 10946 components: - type: Transform rot: -1.5707963267948966 rad - pos: -175.5,-18.5 + pos: -92.5,-30.5 parent: 2 - - uid: 10306 + - uid: 10947 components: - type: Transform rot: -1.5707963267948966 rad - pos: -180.5,1.5 + pos: -93.5,-30.5 parent: 2 - - uid: 10307 + - uid: 10948 components: - type: Transform rot: -1.5707963267948966 rad - pos: -187.5,-5.5 + pos: -98.5,-30.5 parent: 2 - - uid: 10308 + - uid: 10949 components: - type: Transform rot: -1.5707963267948966 rad - pos: -188.5,-5.5 + pos: -97.5,-30.5 parent: 2 - - uid: 10309 + - uid: 10950 components: - type: Transform rot: -1.5707963267948966 rad - pos: -189.5,-5.5 + pos: -96.5,-30.5 parent: 2 - - uid: 10310 + - uid: 10951 components: - type: Transform rot: -1.5707963267948966 rad - pos: -201.5,-5.5 + pos: -94.5,-30.5 parent: 2 - - uid: 10311 + - uid: 10952 components: - type: Transform rot: -1.5707963267948966 rad - pos: -202.5,-5.5 + pos: -96.5,-33.5 parent: 2 - - uid: 10312 + - uid: 10953 components: - type: Transform rot: -1.5707963267948966 rad - pos: -203.5,-5.5 + pos: -95.5,-33.5 parent: 2 - - uid: 10313 + - uid: 10954 components: - type: Transform rot: -1.5707963267948966 rad - pos: -206.5,-5.5 + pos: -94.5,-33.5 parent: 2 - - uid: 10314 + - uid: 10955 components: - type: Transform rot: -1.5707963267948966 rad - pos: -207.5,-5.5 + pos: -93.5,-33.5 parent: 2 - - uid: 10315 + - uid: 10956 components: - type: Transform - pos: -131.5,-11.5 + rot: -1.5707963267948966 rad + pos: -91.5,-33.5 parent: 2 - - uid: 10316 + - uid: 10957 components: - type: Transform - pos: -131.5,-12.5 + rot: -1.5707963267948966 rad + pos: -90.5,-33.5 parent: 2 - - uid: 10317 + - uid: 10958 components: - type: Transform - pos: -131.5,-13.5 + rot: -1.5707963267948966 rad + pos: -89.5,-33.5 parent: 2 - - uid: 10318 + - uid: 10959 components: - type: Transform rot: -1.5707963267948966 rad - pos: -184.5,0.5 + pos: -88.5,-33.5 parent: 2 - - uid: 10319 + - uid: 10960 components: - type: Transform rot: -1.5707963267948966 rad - pos: -184.5,1.5 + pos: -125.5,-26.5 parent: 2 - - uid: 10320 + - uid: 10961 components: - type: Transform rot: -1.5707963267948966 rad - pos: -184.5,2.5 + pos: -124.5,-26.5 parent: 2 - - uid: 10321 + - uid: 10962 components: - type: Transform rot: -1.5707963267948966 rad - pos: -184.5,13.5 + pos: -122.5,-26.5 parent: 2 - - uid: 10322 + - uid: 10963 components: - type: Transform rot: -1.5707963267948966 rad - pos: -184.5,12.5 + pos: -160.5,-32.5 parent: 2 - - uid: 10323 + - uid: 10964 components: - type: Transform rot: -1.5707963267948966 rad - pos: -184.5,11.5 + pos: -169.5,-32.5 parent: 2 - - uid: 10324 + - uid: 10965 components: - type: Transform rot: -1.5707963267948966 rad - pos: -179.5,-7.5 + pos: -168.5,-32.5 parent: 2 - - uid: 10325 + - uid: 10966 components: - type: Transform rot: -1.5707963267948966 rad - pos: -179.5,-8.5 + pos: -171.5,-31.5 parent: 2 - - uid: 10326 + - uid: 10967 components: - type: Transform rot: -1.5707963267948966 rad - pos: -179.5,-9.5 + pos: -171.5,-29.5 parent: 2 - - uid: 10327 + - uid: 10968 components: - type: Transform - rot: 3.141592653589793 rad - pos: -157.5,12.5 + rot: -1.5707963267948966 rad + pos: -170.5,-28.5 parent: 2 - - uid: 10328 + - uid: 10969 components: - type: Transform - pos: -176.5,6.5 + rot: -1.5707963267948966 rad + pos: -172.5,-27.5 parent: 2 - - uid: 10329 + - uid: 10970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -193.5,-9.5 + rot: -1.5707963267948966 rad + pos: -166.5,-32.5 parent: 2 - - uid: 10330 + - uid: 10971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -193.5,-7.5 + rot: -1.5707963267948966 rad + pos: -165.5,-32.5 parent: 2 - - uid: 10331 + - uid: 10972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -193.5,-8.5 + rot: -1.5707963267948966 rad + pos: -162.5,-32.5 parent: 2 - - uid: 10332 + - uid: 10973 components: - type: Transform - rot: 3.141592653589793 rad - pos: -156.5,12.5 + rot: -1.5707963267948966 rad + pos: -163.5,-32.5 parent: 2 - - uid: 10333 + - uid: 10974 components: - type: Transform - pos: -102.5,-33.5 + rot: -1.5707963267948966 rad + pos: -159.5,-32.5 parent: 2 - - uid: 10334 + - uid: 10975 components: - type: Transform - pos: -111.5,-38.5 + rot: -1.5707963267948966 rad + pos: -158.5,-30.5 parent: 2 - - uid: 10335 + - uid: 10976 components: - type: Transform - pos: -109.5,-38.5 + rot: -1.5707963267948966 rad + pos: -157.5,-31.5 parent: 2 - - uid: 10336 + - uid: 10977 components: - type: Transform - pos: -114.5,-38.5 + rot: -1.5707963267948966 rad + pos: -156.5,-31.5 parent: 2 - - uid: 10337 + - uid: 10978 components: - type: Transform - pos: -116.5,-38.5 + rot: -1.5707963267948966 rad + pos: -155.5,-31.5 parent: 2 - - uid: 10338 + - uid: 10979 components: - type: Transform - pos: -107.5,-38.5 + rot: -1.5707963267948966 rad + pos: -153.5,-31.5 parent: 2 - - uid: 10339 + - uid: 10980 components: - type: Transform - pos: -104.5,-36.5 + rot: -1.5707963267948966 rad + pos: -152.5,-31.5 parent: 2 - - uid: 10340 + - uid: 10981 components: - type: Transform - pos: -105.5,-36.5 + rot: -1.5707963267948966 rad + pos: -151.5,-31.5 parent: 2 - - uid: 10341 + - uid: 10982 components: - type: Transform - pos: -105.5,-37.5 + pos: 0.5,-16.5 parent: 2 - - uid: 10342 + - uid: 10983 components: - type: Transform - pos: -118.5,-34.5 + pos: -43.5,-30.5 parent: 2 - - uid: 10343 + - uid: 10984 components: - type: Transform - pos: -100.5,-31.5 + pos: -43.5,-31.5 parent: 2 - - uid: 10344 + - uid: 10985 components: - type: Transform - pos: -100.5,-30.5 + pos: -41.5,-32.5 parent: 2 - - uid: 10345 + - uid: 10986 components: - type: Transform - pos: -100.5,-29.5 + pos: -9.5,12.5 parent: 2 - - uid: 10346 + - uid: 10987 components: - type: Transform - pos: -117.5,-25.5 + pos: -2.5,6.5 parent: 2 - - uid: 10347 + - uid: 10988 components: - type: Transform - pos: -117.5,-26.5 + pos: -3.5,8.5 parent: 2 - - uid: 10348 + - uid: 10989 components: - type: Transform - pos: -118.5,-26.5 + pos: -5.5,9.5 parent: 2 - - uid: 10349 + - uid: 10990 components: - type: Transform - pos: -118.5,-29.5 + pos: -6.5,8.5 parent: 2 - - uid: 10350 + - uid: 10991 components: - type: Transform - pos: -119.5,-29.5 + pos: -7.5,9.5 parent: 2 - - uid: 10351 + - uid: 10992 components: - type: Transform - pos: -120.5,-31.5 + pos: -7.5,11.5 parent: 2 - - uid: 10352 + - uid: 10993 components: - type: Transform - pos: -120.5,-32.5 + pos: -7.5,13.5 parent: 2 - - uid: 10353 + - uid: 10994 components: - type: Transform - pos: -120.5,-33.5 + pos: -5.5,11.5 parent: 2 - - uid: 10354 + - uid: 10995 components: - type: Transform - pos: -118.5,-35.5 + pos: -6.5,11.5 parent: 2 - - uid: 10355 + - uid: 10996 components: - type: Transform - pos: -117.5,-36.5 + pos: -32.5,18.5 parent: 2 - - uid: 10356 + - uid: 10997 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -91.5,-1.5 + pos: -31.5,18.5 parent: 2 - - uid: 10357 + - uid: 10998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -92.5,-1.5 + pos: -30.5,18.5 parent: 2 - - uid: 10358 + - uid: 10999 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -93.5,-1.5 + pos: -28.5,18.5 parent: 2 - - uid: 10359 + - uid: 11000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -94.5,-1.5 + pos: -27.5,18.5 parent: 2 - - uid: 10360 + - uid: 11001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,-0.5 + pos: -26.5,18.5 parent: 2 - - uid: 10361 + - uid: 11002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,0.5 + pos: -23.5,18.5 parent: 2 - - uid: 10362 + - uid: 11003 components: - type: Transform - pos: -211.5,-7.5 + pos: -22.5,18.5 parent: 2 - - uid: 10363 + - uid: 11004 components: - type: Transform - pos: -211.5,-8.5 + pos: -109.5,21.5 parent: 2 - - uid: 10364 + - uid: 11005 components: - type: Transform - pos: -211.5,-9.5 + pos: -87.5,27.5 parent: 2 - - uid: 10365 + - uid: 11006 components: - type: Transform - pos: -215.5,-11.5 + pos: -88.5,27.5 parent: 2 - - uid: 10366 + - uid: 11007 components: - type: Transform - pos: -215.5,-12.5 + pos: -90.5,26.5 parent: 2 - - uid: 10367 + - uid: 11008 components: - type: Transform - pos: -215.5,-13.5 + pos: -90.5,25.5 parent: 2 - - uid: 10368 + - uid: 11009 components: - type: Transform - pos: -195.5,-1.5 + pos: -89.5,24.5 parent: 2 - - uid: 10369 + - uid: 11010 components: - type: Transform - pos: -194.5,-1.5 + pos: -91.5,23.5 parent: 2 - - uid: 10370 + - uid: 11011 components: - type: Transform - pos: -193.5,-1.5 + pos: -89.5,22.5 parent: 2 - - uid: 10371 + - uid: 11012 components: - type: Transform - pos: -197.5,-1.5 + pos: -91.5,20.5 parent: 2 - - uid: 10372 + - uid: 11013 components: - type: Transform - pos: -198.5,-1.5 + pos: -92.5,20.5 parent: 2 - - uid: 10373 + - uid: 11014 components: - type: Transform - pos: -199.5,-1.5 + pos: -89.5,20.5 parent: 2 - - uid: 10374 + - uid: 11015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -124.5,13.5 + pos: -93.5,18.5 parent: 2 - - uid: 10375 + - uid: 11016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -126.5,13.5 + pos: -93.5,17.5 parent: 2 - - uid: 10376 + - uid: 11017 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,26.5 + pos: -95.5,17.5 parent: 2 - - uid: 10377 + - uid: 11018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -130.5,24.5 + pos: -88.5,17.5 parent: 2 - - uid: 10378 + - uid: 11019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -134.5,25.5 + pos: -108.5,19.5 parent: 2 - - uid: 10379 + - uid: 11020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -134.5,24.5 + pos: -107.5,19.5 parent: 2 - - uid: 10380 + - uid: 11021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -136.5,23.5 + pos: -107.5,18.5 parent: 2 - - uid: 10381 + - uid: 11022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -137.5,23.5 + pos: -110.5,21.5 parent: 2 - - uid: 10382 + - uid: 11023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -137.5,22.5 + pos: -108.5,23.5 parent: 2 - - uid: 10383 + - uid: 11024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -139.5,19.5 + pos: -109.5,23.5 parent: 2 - - uid: 10384 + - uid: 11025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -140.5,18.5 + pos: -111.5,23.5 parent: 2 - - uid: 10385 + - uid: 11026 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -140.5,18.5 + pos: -112.5,23.5 parent: 2 - - uid: 10386 + - uid: 11027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -140.5,17.5 + pos: -113.5,23.5 parent: 2 - - uid: 10387 + - uid: 11028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -140.5,16.5 + pos: -112.5,21.5 parent: 2 - - uid: 10388 + - uid: 11029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,22.5 + pos: -113.5,21.5 parent: 2 - - uid: 10389 + - uid: 11030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,21.5 + pos: -114.5,21.5 parent: 2 - - uid: 10390 + - uid: 11031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,21.5 + pos: -115.5,21.5 parent: 2 - - uid: 10391 + - uid: 11032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,19.5 + pos: -116.5,23.5 parent: 2 - - uid: 10392 + - uid: 11033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,17.5 + pos: -117.5,23.5 parent: 2 - - uid: 10393 + - uid: 11034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.5,17.5 + pos: -118.5,23.5 parent: 2 - - uid: 10394 + - uid: 11035 components: - type: Transform - pos: -32.5,8.5 + pos: -119.5,23.5 parent: 2 - - uid: 10395 + - uid: 11036 components: - type: Transform - pos: -142.5,-7.5 + pos: -120.5,21.5 parent: 2 - - uid: 10396 + - uid: 11037 components: - type: Transform - pos: -111.5,18.5 + pos: -119.5,21.5 parent: 2 - - uid: 10397 + - uid: 11038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,18.5 + pos: -118.5,21.5 parent: 2 - - uid: 10398 + - uid: 11039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,18.5 + pos: -121.5,23.5 parent: 2 - - uid: 10399 + - uid: 11040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,18.5 + pos: -122.5,23.5 parent: 2 - - uid: 10400 + - uid: 11041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,18.5 + pos: -123.5,23.5 parent: 2 - - uid: 10401 + - uid: 11042 components: - type: Transform - pos: -118.5,18.5 + pos: -123.5,21.5 parent: 2 - - uid: 10402 + - uid: 11043 components: - type: Transform - pos: -136.5,-8.5 + pos: -122.5,21.5 parent: 2 - - uid: 10403 + - uid: 11044 components: - type: Transform - pos: -138.5,-8.5 + pos: -120.5,19.5 parent: 2 - - uid: 10404 + - uid: 11045 components: - type: Transform - pos: -143.5,-8.5 + pos: -117.5,19.5 parent: 2 - - uid: 10405 + - uid: 11046 components: - type: Transform - pos: -145.5,-8.5 + pos: -113.5,20.5 parent: 2 - - uid: 10406 + - uid: 11047 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,3.5 + pos: -113.5,19.5 parent: 2 - - uid: 10407 + - uid: 11048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -163.5,20.5 + pos: -166.5,22.5 parent: 2 - - uid: 10408 + - uid: 11049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -161.5,20.5 + pos: -140.5,24.5 parent: 2 - - uid: 10409 + - uid: 11050 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -156.5,21.5 + pos: -141.5,24.5 parent: 2 - - uid: 10410 + - uid: 11051 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -155.5,21.5 + pos: -146.5,24.5 parent: 2 - - uid: 10411 + - uid: 11052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -149.5,22.5 + pos: -147.5,24.5 parent: 2 - - uid: 10412 + - uid: 11053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -148.5,22.5 + pos: -150.5,24.5 parent: 2 - - uid: 10413 + - uid: 11054 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -147.5,22.5 + pos: -152.5,23.5 parent: 2 - - uid: 10414 + - uid: 11055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -146.5,22.5 + pos: -151.5,24.5 parent: 2 - - uid: 10415 + - uid: 11056 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -143.5,22.5 + pos: -155.5,23.5 parent: 2 - - uid: 10416 + - uid: 11057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -167.5,18.5 + pos: -156.5,23.5 parent: 2 - - uid: 10417 + - uid: 11058 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -169.5,18.5 + pos: -153.5,23.5 parent: 2 - - uid: 10418 + - uid: 11059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -173.5,18.5 + pos: -159.5,23.5 parent: 2 - - uid: 10419 + - uid: 11060 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -172.5,18.5 + pos: -158.5,23.5 parent: 2 - - uid: 10420 + - uid: 11061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -174.5,18.5 + pos: -160.5,22.5 parent: 2 - - uid: 10421 + - uid: 11062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -182.5,14.5 + pos: -161.5,22.5 parent: 2 - - uid: 10422 + - uid: 11063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -182.5,12.5 + pos: -164.5,22.5 parent: 2 - - uid: 10423 + - uid: 11064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -182.5,11.5 + pos: -163.5,22.5 parent: 2 - - uid: 10424 + - uid: 11065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -182.5,10.5 + pos: -167.5,20.5 parent: 2 - - uid: 10425 + - uid: 11066 components: - type: Transform - pos: -217.5,-23.5 + pos: -166.5,21.5 parent: 2 - - uid: 10426 + - uid: 11067 components: - type: Transform - pos: -215.5,-24.5 + pos: -169.5,20.5 parent: 2 - - uid: 10427 + - uid: 11068 components: - type: Transform - pos: -213.5,-24.5 + pos: -170.5,20.5 parent: 2 - - uid: 10428 + - uid: 11069 components: - type: Transform - pos: -212.5,-25.5 + pos: -171.5,20.5 parent: 2 - - uid: 10429 + - uid: 11070 components: - type: Transform - pos: -211.5,-25.5 + pos: -175.5,20.5 parent: 2 - - uid: 10430 + - uid: 11071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -218.5,-12.5 + pos: -174.5,20.5 parent: 2 - - uid: 10431 + - uid: 11072 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -218.5,-10.5 + pos: -173.5,20.5 parent: 2 - - uid: 10432 + - uid: 11073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -218.5,-13.5 + pos: -177.5,18.5 parent: 2 - - uid: 10433 + - uid: 11074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -218.5,-14.5 + pos: -178.5,18.5 parent: 2 - - uid: 10434 + - uid: 11075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -218.5,-15.5 + pos: -179.5,18.5 parent: 2 - - uid: 10435 + - uid: 11076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -218.5,-9.5 + pos: -183.5,18.5 parent: 2 - - uid: 10436 + - uid: 11077 components: - type: Transform - pos: -176.5,-24.5 + pos: -182.5,18.5 parent: 2 - - uid: 10437 + - uid: 11078 components: - type: Transform - pos: -174.5,-24.5 + pos: -184.5,17.5 parent: 2 - - uid: 10438 + - uid: 11079 components: - type: Transform - pos: -173.5,-24.5 + pos: -183.5,19.5 parent: 2 - - uid: 10439 + - uid: 11080 components: - type: Transform - pos: -172.5,-24.5 + pos: -181.5,18.5 parent: 2 - - uid: 10440 + - uid: 11081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -167.5,-29.5 + pos: -179.5,15.5 parent: 2 - - uid: 10441 + - uid: 11082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -161.5,-29.5 + pos: -179.5,14.5 parent: 2 - - uid: 10442 + - uid: 11083 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -160.5,-29.5 + pos: -179.5,10.5 parent: 2 - - uid: 10443 + - uid: 11084 components: - type: Transform rot: 1.5707963267948966 rad - pos: -156.5,-28.5 + pos: -117.5,9.5 parent: 2 - - uid: 10444 + - uid: 11085 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -155.5,-28.5 + pos: -113.5,13.5 parent: 2 - - uid: 10445 + - uid: 11086 components: - type: Transform rot: 1.5707963267948966 rad - pos: -152.5,-28.5 + pos: -120.5,7.5 parent: 2 - - uid: 10446 + - uid: 11087 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -154.5,-28.5 + pos: -119.5,10.5 parent: 2 - - uid: 10447 + - uid: 11088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -164.5,-29.5 + pos: -114.5,17.5 parent: 2 - - uid: 10448 + - uid: 11089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -163.5,-29.5 + pos: -209.5,18.5 parent: 2 - - uid: 10449 + - uid: 11090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -162.5,-29.5 + pos: -138.5,24.5 parent: 2 - - uid: 10450 + - uid: 11091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -128.5,-26.5 + pos: -209.5,19.5 parent: 2 - - uid: 10451 + - uid: 11092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -126.5,-26.5 + pos: -209.5,20.5 parent: 2 - - uid: 10452 + - uid: 11093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -127.5,-26.5 + pos: -206.5,19.5 parent: 2 - - uid: 10453 + - uid: 11094 components: - type: Transform - pos: -89.5,-29.5 + pos: -206.5,20.5 parent: 2 - - uid: 10454 + - uid: 11095 components: - type: Transform - pos: -89.5,-31.5 + pos: -206.5,21.5 parent: 2 - - uid: 10455 + - uid: 11096 components: - type: Transform - pos: -89.5,-30.5 + pos: -209.5,22.5 parent: 2 - - uid: 10456 + - uid: 11097 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,3.5 + pos: -209.5,23.5 parent: 2 - - uid: 10457 + - uid: 11098 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,2.5 + pos: -209.5,24.5 parent: 2 - - uid: 10458 + - uid: 11099 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,3.5 + pos: -207.5,24.5 parent: 2 - - uid: 10459 + - uid: 11100 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,3.5 + pos: -208.5,20.5 parent: 2 - - uid: 10460 + - uid: 11101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-12.5 + pos: -207.5,22.5 parent: 2 - - uid: 10461 + - uid: 11102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-11.5 + pos: 0.5,-14.5 parent: 2 - - uid: 10462 + - uid: 11103 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-10.5 + pos: 2.5,-15.5 parent: 2 - - uid: 10463 + - uid: 11104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-10.5 + pos: 2.5,-16.5 parent: 2 - - uid: 10464 + - uid: 11105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-9.5 + pos: 0.5,-18.5 parent: 2 - - uid: 10465 + - uid: 11106 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,14.5 + pos: -0.5,-19.5 parent: 2 - - uid: 10466 + - uid: 11107 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,14.5 + pos: 3.5,-12.5 parent: 2 - - uid: 10467 + - uid: 11108 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,14.5 + pos: -4.5,10.5 parent: 2 - - uid: 10468 + - uid: 11109 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,16.5 + pos: -2.5,10.5 parent: 2 - - uid: 10469 + - uid: 11110 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,15.5 + pos: -1.5,10.5 parent: 2 - - uid: 10470 + - uid: 11111 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,16.5 + pos: -0.5,10.5 parent: 2 - - uid: 10471 + - uid: 11112 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,16.5 + pos: -0.5,9.5 parent: 2 - - uid: 10472 + - uid: 11113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -131.5,-24.5 + pos: -0.5,7.5 parent: 2 - - uid: 10473 + - uid: 11114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -131.5,-25.5 + pos: -0.5,6.5 parent: 2 - - uid: 10474 + - uid: 11115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -129.5,-26.5 + pos: 0.5,6.5 parent: 2 - - uid: 10475 + - uid: 11116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,-33.5 + pos: 2.5,6.5 parent: 2 - - uid: 10476 + - uid: 11117 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-22.5 + pos: 3.5,6.5 parent: 2 - - uid: 10477 + - uid: 11118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-22.5 + pos: 4.5,6.5 parent: 2 - - uid: 10478 + - uid: 11119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-22.5 + pos: 3.5,4.5 parent: 2 - - uid: 10479 + - uid: 11120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-22.5 + pos: -2.5,4.5 parent: 2 - - uid: 10480 + - uid: 11121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-22.5 + pos: -88.5,-20.5 parent: 2 - - uid: 10481 + - uid: 11122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-22.5 + pos: -87.5,-20.5 parent: 2 - - uid: 10482 + - uid: 11123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-22.5 + pos: -86.5,-20.5 parent: 2 - - uid: 10483 + - uid: 11124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-22.5 + rot: 3.141592653589793 rad + pos: -206.5,16.5 parent: 2 - - uid: 10484 + - uid: 11125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-22.5 + rot: 3.141592653589793 rad + pos: -207.5,16.5 parent: 2 - - uid: 10485 + - uid: 11126 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-22.5 + rot: 3.141592653589793 rad + pos: -208.5,16.5 parent: 2 - - uid: 10486 + - uid: 11127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-22.5 + rot: 3.141592653589793 rad + pos: -206.5,18.5 parent: 2 - - uid: 10487 + - uid: 11128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-22.5 + pos: -28.5,-17.5 parent: 2 - - uid: 10488 + - uid: 11130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-10.5 + pos: -82.5,-6.5 parent: 2 - - uid: 10489 + - uid: 11131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-20.5 + pos: -82.5,-0.5 parent: 2 - - uid: 10490 + - uid: 11132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-19.5 + pos: -82.5,0.5 parent: 2 - - uid: 10491 + - uid: 11133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-19.5 + pos: -82.5,1.5 parent: 2 - - uid: 10492 + - uid: 11134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-17.5 + pos: -83.5,-1.5 parent: 2 - - uid: 10493 + - uid: 11135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-16.5 + pos: -82.5,-7.5 parent: 2 - - uid: 10494 + - uid: 11136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-15.5 + pos: -83.5,-8.5 parent: 2 - - uid: 10495 + - uid: 11137 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-9.5 + pos: -77.5,4.5 parent: 2 - - uid: 10496 + - uid: 11138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-21.5 + pos: -75.5,-11.5 parent: 2 - - uid: 10497 + - uid: 11139 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-25.5 + rot: 1.5707963267948966 rad + pos: -63.5,-17.5 parent: 2 - - uid: 10498 + - uid: 11141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-25.5 + pos: -79.5,-5.5 parent: 2 - - uid: 10499 + - uid: 11142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-25.5 + pos: -150.5,-25.5 parent: 2 - - uid: 10500 + - uid: 11143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-25.5 + pos: -150.5,-23.5 parent: 2 - - uid: 10501 + - uid: 11144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-25.5 + pos: -150.5,-21.5 parent: 2 - - uid: 10502 + - uid: 11145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-25.5 + pos: -150.5,-19.5 parent: 2 - - uid: 10503 + - uid: 11146 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-25.5 + pos: -150.5,-27.5 parent: 2 - - uid: 10504 + - uid: 11147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-25.5 + pos: -29.5,6.5 parent: 2 - - uid: 10505 + - uid: 11148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-25.5 + pos: -28.5,6.5 parent: 2 - - uid: 10506 + - uid: 11149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-25.5 + pos: -33.5,-17.5 parent: 2 - - uid: 10507 + - uid: 11150 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-25.5 + pos: -180.5,2.5 parent: 2 - - uid: 10508 + - uid: 11151 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-23.5 + pos: -180.5,0.5 parent: 2 - - uid: 10509 + - uid: 11152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-28.5 + pos: -154.5,1.5 parent: 2 - - uid: 10510 + - uid: 11153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-24.5 + pos: -154.5,-0.5 parent: 2 - - uid: 10511 + - uid: 11154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-28.5 + rot: 1.5707963267948966 rad + pos: -176.5,-1.5 parent: 2 - - uid: 10512 + - uid: 11155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-28.5 + pos: -19.5,-17.5 parent: 2 - - uid: 10513 + - uid: 11156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-25.5 + pos: -180.5,11.5 parent: 2 - - uid: 10514 + - uid: 11157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-26.5 + pos: -181.5,11.5 parent: 2 - - uid: 10515 + - uid: 11158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-26.5 + pos: -47.5,25.5 parent: 2 - - uid: 10516 + - uid: 11159 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-26.5 + pos: -48.5,25.5 parent: 2 - - uid: 10517 + - uid: 11160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-25.5 + pos: -59.5,32.5 parent: 2 - - uid: 10518 + - uid: 11161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-28.5 + pos: -56.5,32.5 parent: 2 - - uid: 10519 + - uid: 11162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,-30.5 + pos: -43.5,21.5 parent: 2 - - uid: 10520 + - uid: 11163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,-30.5 + pos: -45.5,20.5 parent: 2 - - uid: 10521 + - uid: 11164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,-30.5 + pos: -58.5,32.5 parent: 2 - - uid: 10522 + - uid: 11165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,-30.5 + pos: -37.5,20.5 parent: 2 - - uid: 10523 + - uid: 11166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,-30.5 + pos: -41.5,21.5 parent: 2 - - uid: 10524 + - uid: 11167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -96.5,-30.5 + pos: -42.5,21.5 parent: 2 - - uid: 10525 + - uid: 11168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,-30.5 + pos: -42.5,20.5 parent: 2 - - uid: 10526 + - uid: 11169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -96.5,-33.5 + pos: -40.5,21.5 parent: 2 - - uid: 10527 + - uid: 11170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -95.5,-33.5 + pos: -47.5,24.5 parent: 2 - - uid: 10528 + - uid: 11171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,-33.5 + pos: -67.5,33.5 parent: 2 - - uid: 10529 + - uid: 11172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,-33.5 + pos: -78.5,33.5 parent: 2 - - uid: 10530 + - uid: 11173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,-33.5 + pos: -68.5,32.5 parent: 2 - - uid: 10531 + - uid: 11174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,-33.5 + pos: -55.5,32.5 parent: 2 - - uid: 10532 + - uid: 11175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-33.5 + pos: -58.5,33.5 parent: 2 - - uid: 10533 + - uid: 11176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,-33.5 + pos: -61.5,32.5 parent: 2 - - uid: 10534 + - uid: 11177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -221.5,-15.5 + pos: -69.5,32.5 parent: 2 - - uid: 10535 + - uid: 11178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -125.5,-26.5 + pos: -65.5,33.5 parent: 2 - - uid: 10536 + - uid: 11179 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -124.5,-26.5 + pos: -76.5,33.5 parent: 2 - - uid: 10537 + - uid: 11180 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -123.5,-26.5 + pos: -75.5,32.5 parent: 2 - - uid: 10538 + - uid: 11181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.5,-26.5 + pos: -46.5,20.5 parent: 2 - - uid: 10539 + - uid: 11182 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -160.5,-32.5 + pos: -78.5,32.5 parent: 2 - - uid: 10540 + - uid: 11183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -169.5,-32.5 + pos: -74.5,32.5 parent: 2 - - uid: 10541 + - uid: 11184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -168.5,-32.5 + pos: -60.5,32.5 parent: 2 - - uid: 10542 + - uid: 11185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -171.5,-31.5 + pos: -65.5,32.5 parent: 2 - - uid: 10543 + - uid: 11186 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -171.5,-29.5 + pos: -77.5,33.5 parent: 2 - - uid: 10544 + - uid: 11187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -170.5,-28.5 + pos: -66.5,32.5 parent: 2 - - uid: 10545 + - uid: 11188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -172.5,-27.5 + pos: -65.5,-28.5 parent: 2 - - uid: 10546 + - uid: 11189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -166.5,-32.5 + pos: -64.5,-28.5 parent: 2 - - uid: 10547 + - uid: 11190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -165.5,-32.5 + pos: -62.5,-28.5 parent: 2 - - uid: 10548 + - uid: 11191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -162.5,-32.5 + pos: -58.5,-28.5 parent: 2 - - uid: 10549 + - uid: 11192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -163.5,-32.5 + pos: -225.5,-2.5 parent: 2 - - uid: 10550 + - uid: 11193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -159.5,-32.5 + pos: -225.5,-1.5 parent: 2 - - uid: 10551 + - uid: 11194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -158.5,-30.5 + rot: 1.5707963267948966 rad + pos: -234.5,-18.5 parent: 2 - - uid: 10552 + - uid: 11195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -157.5,-31.5 + rot: 1.5707963267948966 rad + pos: -234.5,-16.5 parent: 2 - - uid: 10553 + - uid: 11196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -156.5,-31.5 + rot: 1.5707963267948966 rad + pos: -234.5,-14.5 parent: 2 - - uid: 10554 + - uid: 11197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -155.5,-31.5 + rot: 1.5707963267948966 rad + pos: -234.5,-10.5 parent: 2 - - uid: 10555 + - uid: 11198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -153.5,-31.5 + pos: -233.5,-17.5 parent: 2 - - uid: 10556 + - uid: 11199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -152.5,-31.5 + pos: -233.5,-13.5 parent: 2 - - uid: 10557 + - uid: 11200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -151.5,-31.5 + pos: -233.5,-11.5 parent: 2 - - uid: 10558 + - uid: 11201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -217.5,-21.5 + rot: 3.141592653589793 rad + pos: -233.5,-9.5 parent: 2 - - uid: 10559 + - uid: 11202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -216.5,-19.5 + pos: -232.5,-12.5 parent: 2 - - uid: 10560 + - uid: 11203 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -217.5,-19.5 + pos: -230.5,-19.5 parent: 2 - - uid: 10561 + - uid: 11204 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -216.5,-17.5 + pos: -230.5,-12.5 parent: 2 - - uid: 10562 + - uid: 11205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -219.5,-19.5 + pos: -229.5,-13.5 parent: 2 - - uid: 10563 + - uid: 11206 components: - type: Transform rot: -1.5707963267948966 rad - pos: -220.5,-21.5 + pos: -229.5,-9.5 parent: 2 - - uid: 10564 + - uid: 11207 components: - type: Transform rot: -1.5707963267948966 rad - pos: -220.5,-20.5 + pos: -229.5,-7.5 parent: 2 - - uid: 10565 + - uid: 11208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -221.5,-19.5 + pos: -211.5,-17.5 parent: 2 - - uid: 10566 + - uid: 11209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -221.5,-17.5 + pos: -211.5,-15.5 parent: 2 - - uid: 10567 + - uid: 11210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -219.5,-22.5 + rot: 3.141592653589793 rad + pos: -211.5,-9.5 parent: 2 - - uid: 10568 + - uid: 11211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -221.5,-14.5 + pos: -221.5,-21.5 parent: 2 - - uid: 10569 + - uid: 11212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -221.5,-13.5 + pos: -213.5,-32.5 parent: 2 - - uid: 10570 + - uid: 11213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -218.5,-7.5 + rot: 1.5707963267948966 rad + pos: -234.5,-30.5 parent: 2 - - uid: 10571 + - uid: 11214 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -222.5,-11.5 + rot: 1.5707963267948966 rad + pos: -234.5,-28.5 parent: 2 - - uid: 10572 + - uid: 11215 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -220.5,-11.5 + rot: 1.5707963267948966 rad + pos: -234.5,-26.5 parent: 2 - - uid: 10573 + - uid: 11216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -223.5,-9.5 + rot: 1.5707963267948966 rad + pos: -234.5,-24.5 parent: 2 - - uid: 10574 + - uid: 11217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -223.5,-8.5 + rot: 1.5707963267948966 rad + pos: -234.5,-20.5 parent: 2 - - uid: 10575 + - uid: 11218 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -221.5,-7.5 + rot: 3.141592653589793 rad + pos: -233.5,-31.5 parent: 2 - - uid: 10576 + - uid: 11219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -220.5,-7.5 + pos: -233.5,-29.5 parent: 2 - - uid: 10577 + - uid: 11220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -216.5,-8.5 + pos: -233.5,-27.5 parent: 2 - - uid: 10578 + - uid: 11221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -216.5,-10.5 + pos: -233.5,-25.5 parent: 2 - - uid: 10579 + - uid: 11222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -223.5,-5.5 + pos: -233.5,-23.5 parent: 2 - - uid: 10580 + - uid: 11223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -223.5,-4.5 + pos: -233.5,-21.5 parent: 2 - - uid: 10581 + - uid: 11224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -220.5,-4.5 + pos: -231.5,-32.5 parent: 2 - - uid: 10582 + - uid: 11225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -220.5,-2.5 + pos: -231.5,-24.5 parent: 2 - - uid: 10583 + - uid: 11226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -222.5,-1.5 + pos: -230.5,-29.5 parent: 2 - - uid: 10584 + - uid: 11227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -223.5,-1.5 + pos: -230.5,-27.5 parent: 2 - - uid: 10585 + - uid: 11228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -223.5,-2.5 + pos: -230.5,-21.5 parent: 2 - - uid: 10586 + - uid: 11229 components: - type: Transform - pos: 0.5,-16.5 + pos: -224.5,-25.5 parent: 2 - - uid: 10587 + - uid: 11230 components: - type: Transform - pos: -43.5,-30.5 + pos: -224.5,-23.5 parent: 2 - - uid: 10588 + - uid: 11231 components: - type: Transform - pos: -43.5,-31.5 + pos: -220.5,-41.5 parent: 2 - - uid: 10589 + - uid: 11232 components: - type: Transform - pos: -41.5,-32.5 + rot: 1.5707963267948966 rad + pos: -182.5,-25.5 parent: 2 - - uid: 10590 + - uid: 11233 components: - type: Transform - pos: -9.5,12.5 + rot: 1.5707963267948966 rad + pos: -182.5,-26.5 parent: 2 - - uid: 10591 + - uid: 11234 components: - type: Transform - pos: -2.5,6.5 + rot: 1.5707963267948966 rad + pos: -182.5,-27.5 parent: 2 - - uid: 10592 + - uid: 11235 components: - type: Transform - pos: -3.5,8.5 + pos: -125.5,-24.5 parent: 2 - - uid: 10593 + - uid: 11236 components: - type: Transform - pos: -5.5,9.5 + pos: -192.5,-28.5 parent: 2 - - uid: 10594 + - uid: 11237 components: - type: Transform - pos: -6.5,8.5 + pos: -185.5,-31.5 parent: 2 - - uid: 10595 + - uid: 11238 components: - type: Transform - pos: -7.5,9.5 + pos: -187.5,-31.5 parent: 2 - - uid: 10596 + - uid: 11239 components: - type: Transform - pos: -7.5,11.5 + pos: -192.5,-24.5 parent: 2 - - uid: 10597 + - uid: 11240 components: - type: Transform - pos: -7.5,13.5 + rot: -1.5707963267948966 rad + pos: -198.5,18.5 parent: 2 - - uid: 10598 + - uid: 11241 components: - type: Transform - pos: -5.5,11.5 + rot: -1.5707963267948966 rad + pos: -197.5,18.5 parent: 2 - - uid: 10599 + - uid: 11242 components: - type: Transform - pos: -6.5,11.5 + pos: -203.5,13.5 parent: 2 - - uid: 10600 + - uid: 11243 components: - type: Transform - pos: -32.5,18.5 + pos: -199.5,11.5 parent: 2 - - uid: 10601 + - uid: 11244 components: - type: Transform - pos: -31.5,18.5 + rot: -1.5707963267948966 rad + pos: -193.5,18.5 parent: 2 - - uid: 10602 + - uid: 11245 components: - type: Transform - pos: -30.5,18.5 + rot: -1.5707963267948966 rad + pos: -202.5,9.5 parent: 2 - - uid: 10603 + - uid: 11246 components: - type: Transform - pos: -28.5,18.5 + rot: -1.5707963267948966 rad + pos: -202.5,7.5 parent: 2 - - uid: 10604 + - uid: 11247 components: - type: Transform - pos: -27.5,18.5 + rot: -1.5707963267948966 rad + pos: -202.5,8.5 parent: 2 - - uid: 10605 + - uid: 17530 components: - type: Transform - pos: -26.5,18.5 + pos: -41.5,27.5 parent: 2 - - uid: 10606 + - uid: 17531 components: - type: Transform - pos: -23.5,18.5 + pos: -42.5,28.5 parent: 2 - - uid: 10607 + - uid: 17532 components: - type: Transform - pos: -22.5,18.5 + pos: -37.5,28.5 parent: 2 - - uid: 10608 + - uid: 17533 components: - type: Transform - pos: -109.5,21.5 + pos: -37.5,27.5 parent: 2 - - uid: 10609 + - uid: 17534 components: - type: Transform - pos: -87.5,27.5 + pos: -36.5,25.5 parent: 2 - - uid: 10610 + - uid: 17535 components: - type: Transform - pos: -88.5,27.5 + pos: -36.5,23.5 parent: 2 - - uid: 10611 + - uid: 17536 components: - type: Transform - pos: -90.5,26.5 + pos: -40.5,26.5 parent: 2 - - uid: 10612 + - uid: 17537 components: - type: Transform - pos: -90.5,25.5 + pos: -40.5,27.5 parent: 2 - - uid: 10613 + - uid: 17538 components: - type: Transform - pos: -89.5,24.5 + pos: -50.5,34.5 parent: 2 - - uid: 10614 + - uid: 17539 components: - type: Transform - pos: -91.5,23.5 + pos: -51.5,33.5 parent: 2 - - uid: 10615 + - uid: 17632 components: - type: Transform - pos: -89.5,22.5 - parent: 2 - - uid: 10616 + rot: 1.5707963267948966 rad + pos: 16.5,-6.5 + parent: 17565 + - uid: 17633 components: - type: Transform - pos: -91.5,20.5 - parent: 2 - - uid: 10617 + rot: 1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 17565 + - uid: 17634 components: - type: Transform - pos: -92.5,20.5 - parent: 2 - - uid: 10618 + rot: 1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 17565 + - uid: 17635 components: - type: Transform - pos: -89.5,20.5 - parent: 2 - - uid: 10619 + rot: 1.5707963267948966 rad + pos: 17.5,-4.5 + parent: 17565 + - uid: 17636 components: - type: Transform - pos: -93.5,18.5 - parent: 2 - - uid: 10620 + rot: 1.5707963267948966 rad + pos: 17.5,-3.5 + parent: 17565 + - uid: 17637 components: - type: Transform - pos: -93.5,17.5 - parent: 2 - - uid: 10621 + rot: 1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 17565 + - uid: 17638 components: - type: Transform - pos: -95.5,17.5 - parent: 2 - - uid: 10622 + rot: 1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 17565 + - uid: 17639 components: - type: Transform - pos: -88.5,17.5 - parent: 2 - - uid: 10623 + rot: 1.5707963267948966 rad + pos: 17.5,-1.5 + parent: 17565 + - uid: 17640 components: - type: Transform - pos: -108.5,19.5 + rot: 1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 17565 +- proto: GrilleBroken + entities: + - uid: 11248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -206.5,17.5 parent: 2 - - uid: 10624 + - uid: 11249 components: - type: Transform - pos: -107.5,19.5 + rot: 3.141592653589793 rad + pos: -182.5,13.5 parent: 2 - - uid: 10625 + - uid: 11250 components: - type: Transform - pos: -107.5,18.5 + rot: 1.5707963267948966 rad + pos: -168.5,18.5 parent: 2 - - uid: 10626 + - uid: 11251 components: - type: Transform - pos: -110.5,21.5 + rot: -1.5707963267948966 rad + pos: -168.5,18.5 parent: 2 - - uid: 10627 + - uid: 11252 components: - type: Transform - pos: -108.5,23.5 + rot: -1.5707963267948966 rad + pos: -162.5,20.5 parent: 2 - - uid: 10628 + - uid: 11253 components: - type: Transform - pos: -109.5,23.5 + rot: 1.5707963267948966 rad + pos: -162.5,20.5 parent: 2 - - uid: 10629 + - uid: 11254 components: - type: Transform - pos: -111.5,23.5 + pos: -182.5,13.5 parent: 2 - - uid: 10630 + - uid: 11255 components: - type: Transform - pos: -112.5,23.5 + rot: -1.5707963267948966 rad + pos: -175.5,-24.5 parent: 2 - - uid: 10631 + - uid: 11256 components: - type: Transform - pos: -113.5,23.5 + rot: 1.5707963267948966 rad + pos: -175.5,-24.5 parent: 2 - - uid: 10632 + - uid: 11257 components: - type: Transform - pos: -112.5,21.5 + rot: -1.5707963267948966 rad + pos: -166.5,-29.5 parent: 2 - - uid: 10633 + - uid: 11258 components: - type: Transform - pos: -113.5,21.5 + rot: 1.5707963267948966 rad + pos: -165.5,-29.5 parent: 2 - - uid: 10634 + - uid: 11259 components: - type: Transform - pos: -114.5,21.5 + rot: 1.5707963267948966 rad + pos: -157.5,-28.5 parent: 2 - - uid: 10635 + - uid: 11260 components: - type: Transform - pos: -115.5,21.5 + rot: -1.5707963267948966 rad + pos: -153.5,-28.5 parent: 2 - - uid: 10636 + - uid: 11261 components: - type: Transform - pos: -116.5,23.5 + rot: 1.5707963267948966 rad + pos: -153.5,-28.5 parent: 2 - - uid: 10637 + - uid: 11262 components: - type: Transform - pos: -117.5,23.5 + rot: 3.141592653589793 rad + pos: -89.5,-32.5 parent: 2 - - uid: 10638 + - uid: 11263 components: - type: Transform - pos: -118.5,23.5 + rot: -1.5707963267948966 rad + pos: -88.5,-31.5 parent: 2 - - uid: 10639 + - uid: 11264 components: - type: Transform - pos: -119.5,23.5 + pos: 2.5,3.5 parent: 2 - - uid: 10640 + - uid: 11265 components: - type: Transform - pos: -120.5,21.5 + rot: 1.5707963267948966 rad + pos: 3.5,3.5 parent: 2 - - uid: 10641 + - uid: 11266 components: - type: Transform - pos: -119.5,21.5 + rot: 1.5707963267948966 rad + pos: -0.5,3.5 parent: 2 - - uid: 10642 + - uid: 11267 components: - type: Transform - pos: -118.5,21.5 + rot: -1.5707963267948966 rad + pos: -0.5,3.5 parent: 2 - - uid: 10643 + - uid: 11268 components: - type: Transform - pos: -121.5,23.5 + rot: -1.5707963267948966 rad + pos: 0.5,-12.5 parent: 2 - - uid: 10644 + - uid: 11269 components: - type: Transform - pos: -122.5,23.5 + rot: 3.141592653589793 rad + pos: 0.5,-10.5 parent: 2 - - uid: 10645 + - uid: 11270 components: - type: Transform - pos: -123.5,23.5 + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 parent: 2 - - uid: 10646 + - uid: 11271 components: - type: Transform - pos: -123.5,21.5 + pos: 0.5,-10.5 parent: 2 - - uid: 10647 + - uid: 11272 components: - type: Transform - pos: -122.5,21.5 + rot: 3.141592653589793 rad + pos: 0.5,-12.5 parent: 2 - - uid: 10648 + - uid: 11273 components: - type: Transform - pos: -120.5,19.5 + rot: 1.5707963267948966 rad + pos: -1.5,-12.5 parent: 2 - - uid: 10649 + - uid: 11274 components: - type: Transform - pos: -117.5,19.5 + rot: -1.5707963267948966 rad + pos: 2.5,-10.5 parent: 2 - - uid: 10650 + - uid: 11275 components: - type: Transform - pos: -113.5,20.5 + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 parent: 2 - - uid: 10651 + - uid: 11276 components: - type: Transform - pos: -113.5,19.5 + pos: 4.5,-9.5 parent: 2 - - uid: 10652 + - uid: 11277 components: - type: Transform - pos: -166.5,22.5 + rot: 1.5707963267948966 rad + pos: -0.5,-9.5 parent: 2 - - uid: 10653 + - uid: 11278 components: - type: Transform - pos: -140.5,24.5 + rot: 3.141592653589793 rad + pos: 5.5,2.5 parent: 2 - - uid: 10654 + - uid: 11279 components: - type: Transform - pos: -141.5,24.5 + rot: 3.141592653589793 rad + pos: -1.5,2.5 parent: 2 - - uid: 10655 + - uid: 11280 components: - type: Transform - pos: -146.5,24.5 + pos: -22.5,15.5 parent: 2 - - uid: 10656 + - uid: 11281 components: - type: Transform - pos: -147.5,24.5 + rot: 3.141592653589793 rad + pos: -26.5,14.5 parent: 2 - - uid: 10657 + - uid: 11282 components: - type: Transform - pos: -150.5,24.5 + rot: 1.5707963267948966 rad + pos: -26.5,14.5 parent: 2 - - uid: 10658 + - uid: 11283 components: - type: Transform - pos: -152.5,23.5 + pos: -26.5,16.5 parent: 2 - - uid: 10659 + - uid: 11284 components: - type: Transform - pos: -151.5,24.5 + rot: -1.5707963267948966 rad + pos: -26.5,16.5 parent: 2 - - uid: 10660 + - uid: 11285 components: - type: Transform - pos: -155.5,23.5 + rot: -1.5707963267948966 rad + pos: -28.5,16.5 parent: 2 - - uid: 10661 + - uid: 11286 components: - type: Transform - pos: -156.5,23.5 + rot: 1.5707963267948966 rad + pos: -28.5,16.5 parent: 2 - - uid: 10662 + - uid: 11287 components: - type: Transform - pos: -153.5,23.5 + rot: 3.141592653589793 rad + pos: -29.5,15.5 parent: 2 - - uid: 10663 + - uid: 11288 components: - type: Transform - pos: -159.5,23.5 + rot: 1.5707963267948966 rad + pos: -33.5,16.5 parent: 2 - - uid: 10664 + - uid: 11289 components: - type: Transform - pos: -158.5,23.5 + pos: -32.5,17.5 parent: 2 - - uid: 10665 + - uid: 11290 components: - type: Transform - pos: -160.5,22.5 + rot: 3.141592653589793 rad + pos: -22.5,13.5 parent: 2 - - uid: 10666 + - uid: 11291 components: - type: Transform - pos: -161.5,22.5 + rot: 1.5707963267948966 rad + pos: -92.5,-33.5 parent: 2 - - uid: 10667 + - uid: 11292 components: - type: Transform - pos: -164.5,22.5 + rot: -1.5707963267948966 rad + pos: -87.5,-33.5 parent: 2 - - uid: 10668 + - uid: 11293 components: - type: Transform - pos: -163.5,22.5 + pos: -158.5,-29.5 parent: 2 - - uid: 10669 + - uid: 11294 components: - type: Transform - pos: -167.5,20.5 + rot: -1.5707963267948966 rad + pos: -218.5,-19.5 parent: 2 - - uid: 10670 + - uid: 11295 components: - type: Transform - pos: -166.5,21.5 + rot: 1.5707963267948966 rad + pos: -218.5,-19.5 parent: 2 - - uid: 10671 + - uid: 11296 components: - type: Transform - pos: -169.5,20.5 + rot: 3.141592653589793 rad + pos: -217.5,-20.5 parent: 2 - - uid: 10672 + - uid: 11297 components: - type: Transform - pos: -170.5,20.5 + rot: 1.5707963267948966 rad + pos: -171.5,-28.5 parent: 2 - - uid: 10673 + - uid: 11298 components: - type: Transform - pos: -171.5,20.5 + pos: -171.5,-28.5 parent: 2 - - uid: 10674 + - uid: 11299 components: - type: Transform - pos: -175.5,20.5 + pos: -170.5,-27.5 parent: 2 - - uid: 10675 + - uid: 11300 components: - type: Transform - pos: -174.5,20.5 + rot: -1.5707963267948966 rad + pos: -168.5,-29.5 parent: 2 - - uid: 10676 + - uid: 11301 components: - type: Transform - pos: -173.5,20.5 + rot: -1.5707963267948966 rad + pos: -165.5,-29.5 parent: 2 - - uid: 10677 + - uid: 11302 components: - type: Transform - pos: -177.5,18.5 + rot: 3.141592653589793 rad + pos: -166.5,-30.5 parent: 2 - - uid: 10678 + - uid: 11303 components: - type: Transform - pos: -178.5,18.5 + pos: -166.5,-31.5 parent: 2 - - uid: 10679 + - uid: 11304 components: - type: Transform - pos: -179.5,18.5 + rot: 1.5707963267948966 rad + pos: -171.5,-32.5 parent: 2 - - uid: 10680 + - uid: 11305 components: - type: Transform - pos: -183.5,18.5 + rot: 3.141592653589793 rad + pos: -162.5,-30.5 parent: 2 - - uid: 10681 + - uid: 11306 components: - type: Transform - pos: -182.5,18.5 + rot: 3.141592653589793 rad + pos: -171.5,-32.5 parent: 2 - - uid: 10682 + - uid: 11307 components: - type: Transform - pos: -184.5,17.5 + pos: -162.5,-31.5 parent: 2 - - uid: 10683 + - uid: 11308 components: - type: Transform - pos: -183.5,19.5 + pos: -159.5,-31.5 parent: 2 - - uid: 10684 + - uid: 11309 components: - type: Transform - pos: -181.5,18.5 + rot: 1.5707963267948966 rad + pos: -159.5,-31.5 parent: 2 - - uid: 10685 + - uid: 11310 components: - type: Transform - pos: -179.5,15.5 + rot: -1.5707963267948966 rad + pos: -157.5,-28.5 parent: 2 - - uid: 10686 + - uid: 11311 components: - type: Transform - pos: -179.5,14.5 + rot: 3.141592653589793 rad + pos: -158.5,-29.5 parent: 2 - - uid: 10687 + - uid: 11312 components: - type: Transform - pos: -179.5,10.5 + rot: 3.141592653589793 rad + pos: -154.5,-29.5 parent: 2 - - uid: 10688 + - uid: 11313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,9.5 + pos: -154.5,-30.5 parent: 2 - - uid: 10689 + - uid: 11314 components: - type: Transform - pos: -113.5,13.5 + pos: -130.5,-25.5 parent: 2 - - uid: 10690 + - uid: 11315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.5,7.5 + pos: -130.5,-25.5 parent: 2 - - uid: 10691 + - uid: 11316 components: - type: Transform - pos: -119.5,10.5 + rot: -1.5707963267948966 rad + pos: -130.5,-25.5 parent: 2 - - uid: 10692 + - uid: 11317 components: - type: Transform - pos: -114.5,17.5 + rot: 3.141592653589793 rad + pos: -125.5,-25.5 parent: 2 - - uid: 10693 + - uid: 11318 components: - type: Transform - pos: -209.5,18.5 + pos: -125.5,-25.5 parent: 2 - - uid: 10694 + - uid: 11319 components: - type: Transform - pos: -138.5,24.5 + rot: 1.5707963267948966 rad + pos: -124.5,-23.5 parent: 2 - - uid: 10695 + - uid: 11320 components: - type: Transform - pos: -209.5,19.5 + rot: -1.5707963267948966 rad + pos: -121.5,-23.5 parent: 2 - - uid: 10696 + - uid: 11321 components: - type: Transform - pos: -209.5,20.5 + pos: -120.5,-23.5 parent: 2 - - uid: 10697 + - uid: 11322 components: - type: Transform - pos: -206.5,19.5 + rot: 3.141592653589793 rad + pos: -120.5,-25.5 parent: 2 - - uid: 10698 + - uid: 11323 components: - type: Transform - pos: -206.5,20.5 + rot: 3.141592653589793 rad + pos: -117.5,8.5 parent: 2 - - uid: 10699 + - uid: 11324 components: - type: Transform - pos: -206.5,21.5 + rot: 1.5707963267948966 rad + pos: -118.5,9.5 parent: 2 - - uid: 10700 + - uid: 11325 components: - type: Transform - pos: -209.5,22.5 + rot: -1.5707963267948966 rad + pos: -119.5,7.5 parent: 2 - - uid: 10701 + - uid: 11326 components: - type: Transform - pos: -209.5,23.5 + pos: -120.5,8.5 parent: 2 - - uid: 10702 + - uid: 11327 components: - type: Transform - pos: -209.5,24.5 + rot: 1.5707963267948966 rad + pos: -95.5,-30.5 parent: 2 - - uid: 10703 + - uid: 11328 components: - type: Transform - pos: -207.5,24.5 + pos: -95.5,-32.5 parent: 2 - - uid: 10704 + - uid: 11329 components: - type: Transform - pos: -208.5,20.5 + rot: -1.5707963267948966 rad + pos: -95.5,-30.5 parent: 2 - - uid: 10705 + - uid: 11330 components: - type: Transform - pos: -207.5,22.5 + rot: 1.5707963267948966 rad + pos: -99.5,-30.5 parent: 2 - - uid: 10706 + - uid: 11331 components: - type: Transform - pos: 0.5,-14.5 + rot: -1.5707963267948966 rad + pos: -99.5,-30.5 parent: 2 - - uid: 10707 + - uid: 11332 components: - type: Transform - pos: 2.5,-15.5 + rot: -1.5707963267948966 rad + pos: -99.5,-33.5 parent: 2 - - uid: 10708 + - uid: 11333 components: - type: Transform - pos: 2.5,-16.5 + rot: 1.5707963267948966 rad + pos: -40.5,-32.5 parent: 2 - - uid: 10709 + - uid: 11334 components: - type: Transform - pos: 0.5,-18.5 + rot: 1.5707963267948966 rad + pos: -98.5,-33.5 parent: 2 - - uid: 10710 + - uid: 11335 components: - type: Transform - pos: -0.5,-19.5 + rot: 3.141592653589793 rad + pos: -102.5,-34.5 parent: 2 - - uid: 10711 + - uid: 11336 components: - type: Transform - pos: 3.5,-12.5 + pos: -103.5,-34.5 parent: 2 - - uid: 10712 + - uid: 11337 components: - type: Transform - pos: -4.5,10.5 + pos: -131.5,-23.5 parent: 2 - - uid: 10713 + - uid: 11338 components: - type: Transform - pos: -2.5,10.5 + rot: -1.5707963267948966 rad + pos: -116.5,-25.5 parent: 2 - - uid: 10714 + - uid: 11339 components: - type: Transform - pos: -1.5,10.5 + pos: -120.5,-25.5 parent: 2 - - uid: 10715 + - uid: 11340 components: - type: Transform - pos: -0.5,10.5 + rot: -1.5707963267948966 rad + pos: -130.5,-24.5 parent: 2 - - uid: 10716 + - uid: 11341 components: - type: Transform - pos: -0.5,9.5 + rot: -1.5707963267948966 rad + pos: -42.5,-28.5 parent: 2 - - uid: 10717 + - uid: 11342 components: - type: Transform - pos: -0.5,7.5 + rot: -1.5707963267948966 rad + pos: -49.5,-25.5 parent: 2 - - uid: 10718 + - uid: 11343 components: - type: Transform - pos: -0.5,6.5 + pos: -50.5,-24.5 parent: 2 - - uid: 10719 + - uid: 11344 components: - type: Transform - pos: 0.5,6.5 + pos: -49.5,-25.5 parent: 2 - - uid: 10720 + - uid: 11345 components: - type: Transform - pos: 2.5,6.5 + pos: -48.5,-25.5 parent: 2 - - uid: 10721 + - uid: 11346 components: - type: Transform - pos: 3.5,6.5 + pos: -47.5,-25.5 parent: 2 - - uid: 10722 + - uid: 11347 components: - type: Transform - pos: 4.5,6.5 + rot: -1.5707963267948966 rad + pos: -46.5,-26.5 parent: 2 - - uid: 10723 + - uid: 11348 components: - type: Transform - pos: 3.5,4.5 + pos: -46.5,-26.5 parent: 2 - - uid: 10724 + - uid: 11349 components: - type: Transform - pos: -2.5,4.5 + rot: -1.5707963267948966 rad + pos: -42.5,-25.5 parent: 2 - - uid: 10725 + - uid: 11350 components: - type: Transform - pos: -88.5,-20.5 + pos: -42.5,-25.5 parent: 2 - - uid: 10726 + - uid: 11351 components: - type: Transform - pos: -87.5,-20.5 + pos: -43.5,-24.5 parent: 2 - - uid: 10727 + - uid: 11352 components: - type: Transform - pos: -86.5,-20.5 + rot: 1.5707963267948966 rad + pos: -42.5,-28.5 parent: 2 - - uid: 10728 + - uid: 11353 components: - type: Transform - rot: 3.141592653589793 rad - pos: -206.5,16.5 + pos: -43.5,-29.5 parent: 2 - - uid: 10729 + - uid: 11354 components: - type: Transform rot: 3.141592653589793 rad - pos: -207.5,16.5 + pos: -43.5,-29.5 parent: 2 - - uid: 10730 + - uid: 11355 components: - type: Transform - rot: 3.141592653589793 rad - pos: -208.5,16.5 + rot: -1.5707963267948966 rad + pos: -42.5,-30.5 parent: 2 - - uid: 10731 + - uid: 11356 components: - type: Transform - rot: 3.141592653589793 rad - pos: -206.5,18.5 + rot: -1.5707963267948966 rad + pos: -26.5,-38.5 parent: 2 - - uid: 10732 + - uid: 11357 components: - type: Transform - pos: -28.5,-17.5 + rot: 3.141592653589793 rad + pos: -43.5,-32.5 parent: 2 - - uid: 10733 + - uid: 11358 components: - type: Transform - pos: -73.5,-21.5 + rot: 1.5707963267948966 rad + pos: -42.5,-32.5 parent: 2 - - uid: 10734 + - uid: 11359 components: - type: Transform - pos: -82.5,-6.5 + rot: -1.5707963267948966 rad + pos: -40.5,-32.5 parent: 2 - - uid: 10735 + - uid: 11360 components: - type: Transform - pos: -82.5,-0.5 + pos: -39.5,-31.5 parent: 2 - - uid: 10736 + - uid: 11361 components: - type: Transform - pos: -82.5,0.5 + pos: -19.5,-31.5 parent: 2 - - uid: 10737 + - uid: 11362 components: - type: Transform - pos: -82.5,1.5 + rot: 3.141592653589793 rad + pos: -19.5,-31.5 parent: 2 - - uid: 10738 + - uid: 11363 components: - type: Transform - pos: -83.5,-1.5 + rot: 3.141592653589793 rad + pos: -21.5,-30.5 parent: 2 - - uid: 10739 + - uid: 11364 components: - type: Transform - pos: -82.5,-7.5 + pos: -21.5,-34.5 parent: 2 - - uid: 10740 + - uid: 11365 components: - type: Transform - pos: -83.5,-8.5 + rot: 3.141592653589793 rad + pos: -21.5,-34.5 parent: 2 - - uid: 10741 + - uid: 11366 components: - type: Transform - pos: -77.5,4.5 + pos: -21.5,-32.5 parent: 2 - - uid: 10742 + - uid: 11367 components: - type: Transform - pos: -75.5,-11.5 + rot: 1.5707963267948966 rad + pos: -26.5,-38.5 parent: 2 - - uid: 10743 + - uid: 11368 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,-17.5 + pos: -31.5,-38.5 parent: 2 - - uid: 10744 + - uid: 11369 components: - type: Transform - pos: -74.5,-21.5 + rot: -1.5707963267948966 rad + pos: -31.5,-38.5 parent: 2 - - uid: 10745 + - uid: 11370 components: - type: Transform - pos: -79.5,-5.5 + rot: -1.5707963267948966 rad + pos: -35.5,-38.5 parent: 2 - - uid: 10746 + - uid: 11371 components: - type: Transform - pos: -150.5,-25.5 + rot: 1.5707963267948966 rad + pos: -35.5,-38.5 parent: 2 - - uid: 10747 + - uid: 11372 components: - type: Transform - pos: -150.5,-23.5 + rot: 1.5707963267948966 rad + pos: -37.5,-38.5 parent: 2 - - uid: 10748 + - uid: 11373 components: - type: Transform - pos: -150.5,-21.5 + rot: 3.141592653589793 rad + pos: -37.5,-38.5 parent: 2 - - uid: 10749 + - uid: 11374 components: - type: Transform - pos: -150.5,-19.5 + rot: 1.5707963267948966 rad + pos: -39.5,-36.5 parent: 2 - - uid: 10750 + - uid: 11375 components: - type: Transform - pos: -150.5,-27.5 + rot: 3.141592653589793 rad + pos: -22.5,-23.5 parent: 2 - - uid: 10751 + - uid: 11376 components: - type: Transform - pos: -29.5,6.5 + pos: -21.5,-25.5 parent: 2 - - uid: 10752 + - uid: 11377 components: - type: Transform - pos: -28.5,6.5 + rot: -1.5707963267948966 rad + pos: -21.5,-25.5 parent: 2 - - uid: 10753 + - uid: 11378 components: - type: Transform - pos: -33.5,-17.5 + rot: 1.5707963267948966 rad + pos: -21.5,-25.5 parent: 2 - - uid: 10754 + - uid: 11379 components: - type: Transform rot: -1.5707963267948966 rad - pos: -180.5,2.5 + pos: -19.5,-25.5 parent: 2 - - uid: 10755 + - uid: 11380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -180.5,0.5 + rot: 1.5707963267948966 rad + pos: -19.5,-25.5 parent: 2 - - uid: 10756 + - uid: 11381 components: - type: Transform - pos: -154.5,1.5 + rot: 3.141592653589793 rad + pos: -19.5,-23.5 parent: 2 - - uid: 10757 + - uid: 11382 components: - type: Transform - pos: -154.5,-0.5 + rot: -1.5707963267948966 rad + pos: -16.5,-22.5 parent: 2 - - uid: 10758 + - uid: 11383 components: - type: Transform rot: 1.5707963267948966 rad - pos: -176.5,-1.5 + pos: -16.5,-22.5 parent: 2 - - uid: 10759 + - uid: 11384 components: - type: Transform - pos: -19.5,-17.5 + rot: 1.5707963267948966 rad + pos: -14.5,-22.5 parent: 2 - - uid: 10760 + - uid: 11385 components: - type: Transform - pos: -180.5,11.5 + rot: -1.5707963267948966 rad + pos: -14.5,-22.5 parent: 2 - - uid: 10761 + - uid: 11386 components: - type: Transform - pos: -181.5,11.5 + rot: 3.141592653589793 rad + pos: -15.5,-23.5 parent: 2 - - uid: 17088 + - uid: 11387 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-6.5 - parent: 17021 - - uid: 17089 + pos: -10.5,-25.5 + parent: 2 + - uid: 11388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-5.5 - parent: 17021 - - uid: 17090 + rot: -1.5707963267948966 rad + pos: -10.5,-25.5 + parent: 2 + - uid: 11389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-5.5 - parent: 17021 - - uid: 17091 + pos: -7.5,-24.5 + parent: 2 + - uid: 11390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-4.5 - parent: 17021 - - uid: 17092 + rot: 3.141592653589793 rad + pos: -7.5,-23.5 + parent: 2 + - uid: 11391 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 17021 - - uid: 17093 + pos: -8.5,-22.5 + parent: 2 + - uid: 11392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-2.5 - parent: 17021 - - uid: 17094 + rot: -1.5707963267948966 rad + pos: -8.5,-22.5 + parent: 2 + - uid: 11393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-1.5 - parent: 17021 - - uid: 17095 + rot: -1.5707963267948966 rad + pos: -6.5,-22.5 + parent: 2 + - uid: 11394 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-1.5 - parent: 17021 - - uid: 17096 + pos: -6.5,-22.5 + parent: 2 + - uid: 11395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-0.5 - parent: 17021 -- proto: GrilleBroken - entities: - - uid: 10762 + pos: -3.5,-22.5 + parent: 2 + - uid: 11396 components: - type: Transform - rot: 3.141592653589793 rad - pos: -206.5,17.5 + pos: -3.5,-24.5 parent: 2 - - uid: 10763 + - uid: 11397 components: - type: Transform rot: 3.141592653589793 rad - pos: -182.5,13.5 + pos: -3.5,-24.5 parent: 2 - - uid: 10764 + - uid: 11398 components: - type: Transform rot: 1.5707963267948966 rad - pos: -168.5,18.5 + pos: -2.5,-24.5 parent: 2 - - uid: 10765 + - uid: 11399 components: - type: Transform rot: -1.5707963267948966 rad - pos: -168.5,18.5 + pos: -3.5,-22.5 parent: 2 - - uid: 10766 + - uid: 11400 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -162.5,20.5 + rot: 3.141592653589793 rad + pos: -3.5,-21.5 parent: 2 - - uid: 10767 + - uid: 11401 components: - type: Transform rot: 1.5707963267948966 rad - pos: -162.5,20.5 + pos: -3.5,-21.5 parent: 2 - - uid: 10768 + - uid: 11402 components: - type: Transform - pos: -182.5,13.5 + pos: -2.5,-20.5 parent: 2 - - uid: 10769 + - uid: 11403 components: - type: Transform - pos: -212.5,-24.5 + rot: -1.5707963267948966 rad + pos: 0.5,-19.5 parent: 2 - - uid: 10770 + - uid: 11404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -212.5,-24.5 + rot: 3.141592653589793 rad + pos: 0.5,-19.5 parent: 2 - - uid: 10771 + - uid: 11405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -216.5,-24.5 + rot: 3.141592653589793 rad + pos: -1.5,-18.5 parent: 2 - - uid: 10772 + - uid: 11406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -216.5,-23.5 + pos: -1.5,-18.5 parent: 2 - - uid: 10773 + - uid: 11407 components: - type: Transform rot: -1.5707963267948966 rad - pos: -214.5,-24.5 + pos: -0.5,-17.5 parent: 2 - - uid: 10774 + - uid: 11408 components: - type: Transform rot: 1.5707963267948966 rad - pos: -214.5,-24.5 - parent: 2 - - uid: 10775 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -218.5,-11.5 + pos: -0.5,-17.5 parent: 2 - - uid: 10776 + - uid: 11409 components: - type: Transform - pos: -218.5,-11.5 + pos: 0.5,-15.5 parent: 2 - - uid: 10777 + - uid: 11410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -175.5,-24.5 + rot: 3.141592653589793 rad + pos: 0.5,-15.5 parent: 2 - - uid: 10778 + - uid: 11411 components: - type: Transform rot: 1.5707963267948966 rad - pos: -175.5,-24.5 + pos: 1.5,-16.5 parent: 2 - - uid: 10779 + - uid: 11412 components: - type: Transform rot: -1.5707963267948966 rad - pos: -166.5,-29.5 - parent: 2 - - uid: 10780 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -165.5,-29.5 + pos: 1.5,-16.5 parent: 2 - - uid: 10781 + - uid: 11413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -157.5,-28.5 + pos: 3.5,-11.5 parent: 2 - - uid: 10782 + - uid: 11414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -153.5,-28.5 + pos: 6.5,-8.5 parent: 2 - - uid: 10783 + - uid: 11415 components: - type: Transform rot: 1.5707963267948966 rad - pos: -153.5,-28.5 + pos: -1.5,6.5 parent: 2 - - uid: 10784 + - uid: 11416 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-27.5 + pos: -1.5,4.5 parent: 2 - - uid: 10785 + - uid: 11417 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-32.5 + rot: -1.5707963267948966 rad + pos: -1.5,4.5 parent: 2 - - uid: 10786 + - uid: 11418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,-31.5 + pos: -2.5,7.5 parent: 2 - - uid: 10787 + - uid: 11419 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-27.5 + rot: -1.5707963267948966 rad + pos: -2.5,8.5 parent: 2 - - uid: 10788 + - uid: 11420 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-27.5 + rot: -1.5707963267948966 rad + pos: -5.5,8.5 parent: 2 - - uid: 10789 + - uid: 11421 components: - type: Transform - pos: 2.5,3.5 + rot: 3.141592653589793 rad + pos: -5.5,8.5 parent: 2 - - uid: 10790 + - uid: 11422 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,3.5 + pos: -5.5,8.5 parent: 2 - - uid: 10791 + - uid: 11423 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,3.5 + pos: -7.5,8.5 parent: 2 - - uid: 10792 + - uid: 11424 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,3.5 + rot: 3.141592653589793 rad + pos: -7.5,8.5 parent: 2 - - uid: 10793 + - uid: 11425 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-12.5 + pos: -145.5,24.5 parent: 2 - - uid: 10794 + - uid: 11426 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-10.5 + pos: -7.5,10.5 parent: 2 - - uid: 10795 + - uid: 11427 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-10.5 + pos: -7.5,10.5 parent: 2 - - uid: 10796 + - uid: 11428 components: - type: Transform - pos: 0.5,-10.5 + pos: -5.5,10.5 parent: 2 - - uid: 10797 + - uid: 11429 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-12.5 + pos: -5.5,10.5 parent: 2 - - uid: 10798 + - uid: 11430 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-12.5 + pos: -5.5,10.5 parent: 2 - - uid: 10799 + - uid: 11431 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-10.5 + pos: -4.5,9.5 parent: 2 - - uid: 10800 + - uid: 11432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-10.5 + rot: 3.141592653589793 rad + pos: -4.5,9.5 parent: 2 - - uid: 10801 + - uid: 11433 components: - type: Transform - pos: 4.5,-9.5 + rot: 3.141592653589793 rad + pos: -152.5,22.5 parent: 2 - - uid: 10802 + - uid: 11434 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-9.5 + pos: -152.5,24.5 parent: 2 - - uid: 10803 + - uid: 11435 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,2.5 + pos: -152.5,24.5 parent: 2 - - uid: 10804 + - uid: 11436 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,2.5 + pos: -143.5,23.5 parent: 2 - - uid: 10805 + - uid: 11437 components: - type: Transform - pos: -22.5,15.5 + rot: 3.141592653589793 rad + pos: -143.5,21.5 parent: 2 - - uid: 10806 + - uid: 11438 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,14.5 + pos: -147.5,21.5 parent: 2 - - uid: 10807 + - uid: 11439 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,14.5 + pos: -140.5,20.5 parent: 2 - - uid: 10808 + - uid: 11440 components: - type: Transform - pos: -26.5,16.5 + pos: -140.5,20.5 parent: 2 - - uid: 10809 + - uid: 11441 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,16.5 + pos: -133.5,25.5 parent: 2 - - uid: 10810 + - uid: 11442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,16.5 + pos: -139.5,22.5 parent: 2 - - uid: 10811 + - uid: 11443 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,16.5 + pos: -139.5,22.5 parent: 2 - - uid: 10812 + - uid: 11444 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,15.5 + rot: 1.5707963267948966 rad + pos: -139.5,24.5 parent: 2 - - uid: 10813 + - uid: 11445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,16.5 + rot: -1.5707963267948966 rad + pos: -139.5,24.5 parent: 2 - - uid: 10814 + - uid: 11446 components: - type: Transform - pos: -32.5,17.5 + rot: -1.5707963267948966 rad + pos: -137.5,24.5 parent: 2 - - uid: 10815 + - uid: 11447 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,13.5 + pos: -137.5,24.5 parent: 2 - - uid: 10816 + - uid: 11448 components: - type: Transform rot: 1.5707963267948966 rad - pos: -92.5,-33.5 + pos: -133.5,26.5 parent: 2 - - uid: 10817 + - uid: 11449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,-33.5 + rot: 3.141592653589793 rad + pos: -107.5,17.5 parent: 2 - - uid: 10818 + - uid: 11450 components: - type: Transform - pos: -158.5,-29.5 + rot: -1.5707963267948966 rad + pos: -128.5,23.5 parent: 2 - - uid: 10819 + - uid: 11451 components: - type: Transform - pos: -217.5,-22.5 + rot: 1.5707963267948966 rad + pos: -128.5,23.5 parent: 2 - - uid: 10820 + - uid: 11452 components: - type: Transform rot: -1.5707963267948966 rad - pos: -221.5,-11.5 + pos: -124.5,21.5 parent: 2 - - uid: 10821 + - uid: 11453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -218.5,-19.5 + rot: 1.5707963267948966 rad + pos: -109.5,19.5 parent: 2 - - uid: 10822 + - uid: 11454 components: - type: Transform rot: 1.5707963267948966 rad - pos: -218.5,-19.5 + pos: -124.5,21.5 parent: 2 - - uid: 10823 + - uid: 11455 components: - type: Transform - pos: -221.5,-18.5 + rot: 3.141592653589793 rad + pos: -120.5,20.5 parent: 2 - - uid: 10824 + - uid: 11456 components: - type: Transform - rot: 3.141592653589793 rad - pos: -221.5,-18.5 + pos: -120.5,20.5 parent: 2 - - uid: 10825 + - uid: 11457 components: - type: Transform - pos: -216.5,-18.5 + rot: -1.5707963267948966 rad + pos: -119.5,19.5 parent: 2 - - uid: 10826 + - uid: 11458 components: - type: Transform - rot: 3.141592653589793 rad - pos: -216.5,-18.5 + pos: -122.5,18.5 parent: 2 - - uid: 10827 + - uid: 11459 components: - type: Transform - rot: 3.141592653589793 rad - pos: -217.5,-20.5 + rot: -1.5707963267948966 rad + pos: -112.5,19.5 parent: 2 - - uid: 10828 + - uid: 11460 components: - type: Transform - rot: 3.141592653589793 rad - pos: -217.5,-22.5 + pos: -108.5,20.5 parent: 2 - - uid: 10829 + - uid: 11461 components: - type: Transform - pos: -217.5,-20.5 + rot: -1.5707963267948966 rad + pos: -108.5,21.5 parent: 2 - - uid: 10830 + - uid: 11462 + components: + - type: Transform + pos: -110.5,22.5 + parent: 2 + - uid: 11463 components: - type: Transform rot: -1.5707963267948966 rad - pos: -216.5,-21.5 + pos: -110.5,23.5 parent: 2 - - uid: 10831 + - uid: 11464 components: - type: Transform rot: 1.5707963267948966 rad - pos: -221.5,-11.5 + pos: -110.5,23.5 parent: 2 - - uid: 10832 + - uid: 11465 components: - type: Transform - pos: -221.5,-12.5 + pos: -114.5,22.5 parent: 2 - - uid: 10833 + - uid: 11466 components: - type: Transform rot: 3.141592653589793 rad - pos: -223.5,-10.5 + pos: -117.5,22.5 parent: 2 - - uid: 10834 + - uid: 11467 components: - type: Transform - pos: -222.5,-10.5 + pos: -91.5,21.5 parent: 2 - - uid: 10835 + - uid: 11468 components: - type: Transform - pos: -223.5,-7.5 + rot: 3.141592653589793 rad + pos: -95.5,16.5 parent: 2 - - uid: 10836 + - uid: 11469 components: - type: Transform - rot: 3.141592653589793 rad - pos: -223.5,-6.5 + rot: -1.5707963267948966 rad + pos: -92.5,17.5 parent: 2 - - uid: 10837 + - uid: 11470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -222.5,-7.5 + rot: -1.5707963267948966 rad + pos: -92.5,18.5 parent: 2 - - uid: 10838 + - uid: 11471 components: - type: Transform - pos: -220.5,-6.5 + rot: 3.141592653589793 rad + pos: -92.5,19.5 parent: 2 - - uid: 10839 + - uid: 11472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -219.5,-7.5 + rot: 3.141592653589793 rad + pos: -89.5,19.5 parent: 2 - - uid: 10840 + - uid: 11473 components: - type: Transform - rot: 3.141592653589793 rad - pos: -220.5,-5.5 + rot: 1.5707963267948966 rad + pos: -89.5,17.5 parent: 2 - - uid: 10841 + - uid: 11474 components: - type: Transform - pos: -218.5,-6.5 + rot: -1.5707963267948966 rad + pos: -87.5,17.5 parent: 2 - - uid: 10842 + - uid: 11475 components: - type: Transform - pos: -216.5,-7.5 + pos: -89.5,23.5 parent: 2 - - uid: 10843 + - uid: 11476 components: - type: Transform rot: 3.141592653589793 rad - pos: -216.5,-9.5 + pos: -89.5,23.5 parent: 2 - - uid: 10844 + - uid: 11477 components: - type: Transform - pos: -216.5,-9.5 + rot: 1.5707963267948966 rad + pos: -90.5,24.5 parent: 2 - - uid: 10845 + - uid: 11478 components: - type: Transform rot: 3.141592653589793 rad - pos: -216.5,-11.5 + pos: -90.5,24.5 parent: 2 - - uid: 10846 + - uid: 11479 components: - type: Transform - rot: 3.141592653589793 rad - pos: -223.5,-3.5 + rot: -1.5707963267948966 rad + pos: -88.5,22.5 parent: 2 - - uid: 10847 + - uid: 11480 components: - type: Transform - pos: -223.5,-3.5 + pos: -90.5,27.5 parent: 2 - - uid: 10848 + - uid: 11481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,27.5 + parent: 2 + - uid: 11482 components: - type: Transform rot: -1.5707963267948966 rad - pos: -221.5,-1.5 + pos: -86.5,27.5 parent: 2 - - uid: 10849 + - uid: 11483 components: - type: Transform - pos: -220.5,-1.5 + rot: -1.5707963267948966 rad + pos: -89.5,26.5 parent: 2 - - uid: 10850 + - uid: 11484 components: - type: Transform rot: 3.141592653589793 rad - pos: -220.5,-3.5 + pos: 3.5,3.5 parent: 2 - - uid: 10851 + - uid: 11485 components: - type: Transform rot: 1.5707963267948966 rad - pos: -171.5,-28.5 + pos: -207.5,18.5 parent: 2 - - uid: 10852 + - uid: 11486 components: - type: Transform - pos: -211.5,-24.5 + rot: 3.141592653589793 rad + pos: -209.5,17.5 parent: 2 - - uid: 10853 + - uid: 11487 components: - type: Transform - pos: -171.5,-28.5 + rot: 3.141592653589793 rad + pos: -206.5,18.5 parent: 2 - - uid: 10854 + - uid: 11488 components: - type: Transform - pos: -170.5,-27.5 + pos: -206.5,22.5 parent: 2 - - uid: 10855 + - uid: 11489 components: - type: Transform rot: -1.5707963267948966 rad - pos: -168.5,-29.5 + pos: -206.5,22.5 parent: 2 - - uid: 10856 + - uid: 11490 components: - type: Transform rot: -1.5707963267948966 rad - pos: -165.5,-29.5 + pos: -208.5,22.5 parent: 2 - - uid: 10857 + - uid: 11491 components: - type: Transform - rot: 3.141592653589793 rad - pos: -166.5,-30.5 + rot: 1.5707963267948966 rad + pos: -208.5,22.5 parent: 2 - - uid: 10858 + - uid: 11492 components: - type: Transform - pos: -166.5,-31.5 + rot: -1.5707963267948966 rad + pos: -208.5,24.5 parent: 2 - - uid: 10859 + - uid: 11493 components: - type: Transform rot: 1.5707963267948966 rad - pos: -171.5,-32.5 + pos: -208.5,24.5 parent: 2 - - uid: 10860 + - uid: 11494 components: - type: Transform rot: 3.141592653589793 rad - pos: -162.5,-30.5 + pos: -209.5,21.5 parent: 2 - - uid: 10861 + - uid: 11496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -234.5,-13.5 + parent: 2 + - uid: 11497 + components: + - type: Transform + pos: -234.5,-13.5 + parent: 2 + - uid: 11498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -234.5,-12.5 + parent: 2 + - uid: 11499 components: - type: Transform rot: 3.141592653589793 rad - pos: -171.5,-32.5 + pos: -234.5,-12.5 parent: 2 - - uid: 10862 + - uid: 11500 components: - type: Transform - pos: -162.5,-31.5 + pos: -233.5,-19.5 parent: 2 - - uid: 10863 + - uid: 11501 components: - type: Transform - pos: -159.5,-31.5 + rot: -1.5707963267948966 rad + pos: -233.5,-19.5 parent: 2 - - uid: 10864 + - uid: 11502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -159.5,-31.5 + rot: 3.141592653589793 rad + pos: -233.5,-19.5 parent: 2 - - uid: 10865 + - uid: 11503 + components: + - type: Transform + pos: -233.5,-15.5 + parent: 2 + - uid: 11504 components: - type: Transform rot: -1.5707963267948966 rad - pos: -157.5,-28.5 + pos: -233.5,-15.5 parent: 2 - - uid: 10866 + - uid: 11505 components: - type: Transform rot: 3.141592653589793 rad - pos: -158.5,-29.5 + pos: -233.5,-15.5 parent: 2 - - uid: 10867 + - uid: 11506 components: - type: Transform rot: 3.141592653589793 rad - pos: -154.5,-29.5 + pos: -231.5,-13.5 parent: 2 - - uid: 10868 + - uid: 11507 components: - type: Transform - pos: -154.5,-30.5 + rot: 1.5707963267948966 rad + pos: -231.5,-13.5 parent: 2 - - uid: 10869 + - uid: 11508 components: - type: Transform - pos: -130.5,-25.5 + rot: -1.5707963267948966 rad + pos: -231.5,-13.5 parent: 2 - - uid: 10870 + - uid: 11509 components: - type: Transform - pos: -130.5,-25.5 + rot: 3.141592653589793 rad + pos: -234.5,-22.5 parent: 2 - - uid: 10871 + - uid: 11510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -130.5,-25.5 + pos: -234.5,-22.5 parent: 2 - - uid: 10872 + - uid: 11511 components: - type: Transform rot: 3.141592653589793 rad - pos: -125.5,-25.5 + pos: -233.5,-22.5 parent: 2 - - uid: 10873 + - uid: 11512 components: - type: Transform - pos: -125.5,-25.5 + pos: -233.5,-22.5 parent: 2 - - uid: 10874 + - uid: 11513 components: - type: Transform rot: 1.5707963267948966 rad - pos: -124.5,-23.5 + pos: -232.5,-28.5 parent: 2 - - uid: 10875 + - uid: 11514 components: - type: Transform rot: -1.5707963267948966 rad - pos: -121.5,-23.5 + pos: -232.5,-28.5 parent: 2 - - uid: 10876 +- proto: GrilleSpawner + entities: + - uid: 11515 components: - type: Transform - pos: -120.5,-23.5 + pos: -150.5,-26.5 parent: 2 - - uid: 10877 + - uid: 11516 components: - type: Transform - rot: 3.141592653589793 rad - pos: -120.5,-25.5 + pos: -7.5,23.5 parent: 2 - - uid: 10878 + - uid: 11517 components: - type: Transform rot: 3.141592653589793 rad - pos: -117.5,8.5 + pos: -6.5,17.5 parent: 2 - - uid: 10879 + - uid: 11518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,9.5 + rot: 3.141592653589793 rad + pos: -6.5,15.5 parent: 2 - - uid: 10880 + - uid: 11519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,7.5 + rot: 3.141592653589793 rad + pos: -7.5,15.5 parent: 2 - - uid: 10881 + - uid: 11520 components: - type: Transform - pos: -120.5,8.5 + rot: 3.141592653589793 rad + pos: -6.5,20.5 parent: 2 - - uid: 10882 + - uid: 11521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.5,-30.5 + rot: 3.141592653589793 rad + pos: -6.5,21.5 parent: 2 - - uid: 10883 + - uid: 11522 components: - type: Transform - pos: -95.5,-32.5 + rot: 3.141592653589793 rad + pos: -6.5,23.5 parent: 2 - - uid: 10884 + - uid: 11523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -95.5,-30.5 + rot: 3.141592653589793 rad + pos: -7.5,27.5 parent: 2 - - uid: 10885 + - uid: 11524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -99.5,-30.5 + rot: 3.141592653589793 rad + pos: -8.5,27.5 parent: 2 - - uid: 10886 + - uid: 11525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,-30.5 + rot: 3.141592653589793 rad + pos: -20.5,26.5 parent: 2 - - uid: 10887 + - uid: 11526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,-33.5 + rot: 3.141592653589793 rad + pos: -15.5,28.5 parent: 2 - - uid: 10888 + - uid: 11527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-32.5 + rot: 3.141592653589793 rad + pos: -20.5,25.5 parent: 2 - - uid: 10889 + - uid: 11528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -98.5,-33.5 + rot: 3.141592653589793 rad + pos: -19.5,26.5 parent: 2 - - uid: 10890 + - uid: 11529 components: - type: Transform rot: 3.141592653589793 rad - pos: -102.5,-34.5 + pos: -20.5,23.5 parent: 2 - - uid: 10891 + - uid: 11530 components: - type: Transform - pos: -103.5,-34.5 + rot: 3.141592653589793 rad + pos: -20.5,20.5 parent: 2 - - uid: 10892 + - uid: 11531 components: - type: Transform - pos: -131.5,-23.5 + rot: 3.141592653589793 rad + pos: -20.5,17.5 parent: 2 - - uid: 10893 + - uid: 11532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,-25.5 + rot: 3.141592653589793 rad + pos: -20.5,16.5 parent: 2 - - uid: 10894 + - uid: 11533 components: - type: Transform - pos: -120.5,-25.5 + rot: 3.141592653589793 rad + pos: -18.5,28.5 parent: 2 - - uid: 10895 + - uid: 11534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -130.5,-24.5 + pos: -13.5,29.5 parent: 2 - - uid: 10896 + - uid: 11535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-28.5 + pos: -13.5,28.5 parent: 2 - - uid: 10897 + - uid: 11536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-25.5 + pos: -11.5,29.5 parent: 2 - - uid: 10898 + - uid: 11537 components: - type: Transform - pos: -50.5,-24.5 + pos: -10.5,28.5 parent: 2 - - uid: 10899 + - uid: 11538 components: - type: Transform - pos: -49.5,-25.5 + pos: -7.5,26.5 parent: 2 - - uid: 10900 + - uid: 11539 components: - type: Transform - pos: -48.5,-25.5 + pos: -6.5,22.5 parent: 2 - - uid: 10901 + - uid: 11540 components: - type: Transform - pos: -47.5,-25.5 + pos: -2.5,5.5 parent: 2 - - uid: 10902 + - uid: 11541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-26.5 + pos: -7.5,18.5 parent: 2 - - uid: 10903 + - uid: 11542 components: - type: Transform - pos: -46.5,-26.5 + pos: -18.5,15.5 parent: 2 - - uid: 10904 + - uid: 11543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-25.5 + pos: -3.5,4.5 parent: 2 - - uid: 10905 + - uid: 11544 components: - type: Transform - pos: -42.5,-25.5 + pos: -9.5,9.5 parent: 2 - - uid: 10906 + - uid: 11545 components: - type: Transform - pos: -43.5,-24.5 + pos: -8.5,10.5 parent: 2 - - uid: 10907 + - uid: 11546 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-28.5 + pos: -10.5,9.5 parent: 2 - - uid: 10908 + - uid: 11547 components: - type: Transform - pos: -43.5,-29.5 + pos: -23.5,-25.5 parent: 2 - - uid: 10909 + - uid: 11548 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-29.5 + pos: -20.5,-29.5 parent: 2 - - uid: 10910 + - uid: 11549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-30.5 + pos: -21.5,-28.5 parent: 2 - - uid: 10911 + - uid: 11550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-38.5 + pos: -19.5,-32.5 parent: 2 - - uid: 10912 + - uid: 11551 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-32.5 + pos: -21.5,-35.5 parent: 2 - - uid: 10913 + - uid: 11552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-32.5 + pos: -23.5,-38.5 parent: 2 - - uid: 10914 + - uid: 11553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-32.5 + pos: -24.5,-38.5 parent: 2 - - uid: 10915 + - uid: 11554 components: - type: Transform - pos: -39.5,-31.5 + pos: -27.5,-38.5 parent: 2 - - uid: 10916 + - uid: 11555 components: - type: Transform - pos: -19.5,-31.5 + pos: -28.5,-38.5 parent: 2 - - uid: 10917 + - uid: 11556 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-31.5 + pos: -32.5,-38.5 parent: 2 - - uid: 10918 + - uid: 11557 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-30.5 + pos: -30.5,-38.5 parent: 2 - - uid: 10919 + - uid: 11558 components: - type: Transform - pos: -21.5,-34.5 + pos: -34.5,-38.5 parent: 2 - - uid: 10920 + - uid: 11559 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-34.5 + pos: -38.5,-37.5 parent: 2 - - uid: 10921 + - uid: 11560 components: - type: Transform - pos: -21.5,-32.5 + pos: -39.5,-35.5 parent: 2 - - uid: 10922 + - uid: 11561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-38.5 + pos: -39.5,-33.5 parent: 2 - - uid: 10923 + - uid: 11562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-38.5 + pos: -99.5,-12.5 parent: 2 - - uid: 10924 + - uid: 11563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-38.5 + pos: -97.5,-15.5 parent: 2 - - uid: 10925 + - uid: 11564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-38.5 + pos: -93.5,-15.5 parent: 2 - - uid: 10926 + - uid: 11565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-38.5 + pos: -91.5,-17.5 parent: 2 - - uid: 10927 + - uid: 11566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-38.5 + pos: -97.5,-19.5 parent: 2 - - uid: 10928 + - uid: 11567 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-38.5 + pos: -102.5,-21.5 parent: 2 - - uid: 10929 + - uid: 11568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-36.5 + pos: -110.5,-20.5 parent: 2 - - uid: 10930 + - uid: 11569 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-23.5 + pos: -115.5,-21.5 parent: 2 - - uid: 10931 + - uid: 11570 components: - type: Transform - pos: -21.5,-25.5 + pos: -118.5,-21.5 parent: 2 - - uid: 10932 + - uid: 11571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-25.5 + pos: -122.5,-18.5 parent: 2 - - uid: 10933 + - uid: 11572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-25.5 + pos: -130.5,-14.5 parent: 2 - - uid: 10934 + - uid: 11573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-25.5 + pos: -116.5,-37.5 parent: 2 - - uid: 10935 + - uid: 11574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-25.5 + pos: -106.5,-38.5 parent: 2 - - uid: 10936 + - uid: 11575 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-23.5 + pos: -106.5,-37.5 parent: 2 - - uid: 10937 + - uid: 11576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-22.5 + pos: -108.5,-38.5 parent: 2 - - uid: 10938 + - uid: 11577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-22.5 + pos: -118.5,-36.5 parent: 2 - - uid: 10939 + - uid: 11578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-22.5 + pos: -112.5,-38.5 parent: 2 - - uid: 10940 + - uid: 11579 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-22.5 + pos: -113.5,-38.5 parent: 2 - - uid: 10941 + - uid: 11580 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-23.5 + pos: -104.5,-35.5 parent: 2 - - uid: 10942 + - uid: 11581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-25.5 + pos: -103.5,-35.5 parent: 2 - - uid: 10943 + - uid: 11582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-25.5 + pos: -119.5,-33.5 parent: 2 - - uid: 10944 + - uid: 11583 components: - type: Transform - pos: -7.5,-24.5 + pos: -118.5,-33.5 parent: 2 - - uid: 10945 + - uid: 11584 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-23.5 + pos: -101.5,-33.5 parent: 2 - - uid: 10946 + - uid: 11585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-22.5 + pos: -100.5,-33.5 parent: 2 - - uid: 10947 + - uid: 11586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-22.5 + pos: -100.5,-32.5 parent: 2 - - uid: 10948 + - uid: 11587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-22.5 + pos: -117.5,-37.5 parent: 2 - - uid: 10949 + - uid: 11588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-22.5 + pos: -120.5,-30.5 parent: 2 - - uid: 10950 + - uid: 11589 components: - type: Transform - pos: -3.5,-22.5 + pos: -120.5,-29.5 parent: 2 - - uid: 10951 + - uid: 11590 components: - type: Transform - pos: -3.5,-24.5 + pos: -118.5,-28.5 parent: 2 - - uid: 10952 + - uid: 11591 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-24.5 + pos: -118.5,-27.5 parent: 2 - - uid: 10953 + - uid: 11592 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-24.5 + pos: -130.5,23.5 parent: 2 - - uid: 10954 + - uid: 11593 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-22.5 + rot: 1.5707963267948966 rad + pos: -132.5,26.5 parent: 2 - - uid: 10955 + - uid: 11594 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-21.5 + rot: 1.5707963267948966 rad + pos: -131.5,25.5 parent: 2 - - uid: 10956 + - uid: 11595 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-21.5 + pos: -130.5,25.5 parent: 2 - - uid: 10957 + - uid: 11596 components: - type: Transform - pos: -2.5,-20.5 + rot: 1.5707963267948966 rad + pos: -124.5,18.5 parent: 2 - - uid: 10958 + - uid: 11597 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-19.5 + rot: 1.5707963267948966 rad + pos: -125.5,20.5 parent: 2 - - uid: 10959 + - uid: 11598 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-19.5 + rot: 1.5707963267948966 rad + pos: -127.5,22.5 parent: 2 - - uid: 10960 + - uid: 11599 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-18.5 + rot: 1.5707963267948966 rad + pos: -127.5,23.5 parent: 2 - - uid: 10961 + - uid: 11600 components: - type: Transform - pos: -1.5,-18.5 + rot: 1.5707963267948966 rad + pos: -129.5,23.5 parent: 2 - - uid: 10962 + - uid: 11601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-17.5 + rot: 1.5707963267948966 rad + pos: -135.5,23.5 parent: 2 - - uid: 10963 + - uid: 11602 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-17.5 + pos: -134.5,23.5 parent: 2 - - uid: 10964 + - uid: 11603 components: - type: Transform - pos: 0.5,-15.5 + rot: 1.5707963267948966 rad + pos: -138.5,21.5 parent: 2 - - uid: 10965 + - uid: 11604 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-15.5 + rot: 1.5707963267948966 rad + pos: -138.5,21.5 parent: 2 - - uid: 10966 + - uid: 11605 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-16.5 + pos: -139.5,21.5 parent: 2 - - uid: 10967 + - uid: 11606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-16.5 + rot: 1.5707963267948966 rad + pos: -139.5,20.5 parent: 2 - - uid: 10968 + - uid: 11607 components: - type: Transform - pos: 3.5,-11.5 + rot: 1.5707963267948966 rad + pos: -140.5,19.5 parent: 2 - - uid: 10969 + - uid: 11608 components: - type: Transform - pos: 6.5,-8.5 + pos: -69.5,13.5 parent: 2 - - uid: 10970 + - uid: 11609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,6.5 + pos: -63.5,15.5 parent: 2 - - uid: 10971 + - uid: 11610 components: - type: Transform - pos: -1.5,4.5 + rot: -1.5707963267948966 rad + pos: -152.5,21.5 parent: 2 - - uid: 10972 + - uid: 11611 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,4.5 + pos: -153.5,21.5 parent: 2 - - uid: 10973 + - uid: 11612 components: - type: Transform - pos: -2.5,7.5 + rot: -1.5707963267948966 rad + pos: -154.5,21.5 parent: 2 - - uid: 10974 + - uid: 11613 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,8.5 + pos: -157.5,21.5 parent: 2 - - uid: 10975 + - uid: 11614 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,8.5 + pos: -159.5,20.5 parent: 2 - - uid: 10976 + - uid: 11615 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,8.5 + rot: -1.5707963267948966 rad + pos: -160.5,20.5 parent: 2 - - uid: 10977 + - uid: 11616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,8.5 + rot: -1.5707963267948966 rad + pos: -150.5,22.5 parent: 2 - - uid: 10978 + - uid: 11617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,8.5 + rot: -1.5707963267948966 rad + pos: -145.5,22.5 parent: 2 - - uid: 10979 + - uid: 11618 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,8.5 + rot: -1.5707963267948966 rad + pos: -144.5,22.5 parent: 2 - - uid: 10980 + - uid: 11619 components: - type: Transform rot: -1.5707963267948966 rad - pos: -145.5,24.5 + pos: -138.5,22.5 parent: 2 - - uid: 10981 + - uid: 11620 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,10.5 + rot: -1.5707963267948966 rad + pos: -164.5,20.5 parent: 2 - - uid: 10982 + - uid: 11621 components: - type: Transform - pos: -7.5,10.5 + rot: -1.5707963267948966 rad + pos: -166.5,18.5 parent: 2 - - uid: 10983 + - uid: 11622 components: - type: Transform - pos: -5.5,10.5 + rot: -1.5707963267948966 rad + pos: -170.5,18.5 parent: 2 - - uid: 10984 + - uid: 11623 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,10.5 + rot: -1.5707963267948966 rad + pos: -171.5,18.5 parent: 2 - - uid: 10985 + - uid: 11624 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,10.5 + rot: -1.5707963267948966 rad + pos: -45.5,-28.5 parent: 2 - - uid: 10986 + - uid: 11625 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,9.5 + pos: -46.5,-27.5 parent: 2 - - uid: 10987 + - uid: 11626 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,9.5 + rot: -1.5707963267948966 rad + pos: -49.5,-26.5 parent: 2 - - uid: 10988 + - uid: 11627 components: - type: Transform - rot: 3.141592653589793 rad - pos: -152.5,22.5 + rot: -1.5707963267948966 rad + pos: -121.5,-26.5 parent: 2 - - uid: 10989 + - uid: 11628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -152.5,24.5 + rot: -1.5707963267948966 rad + pos: -120.5,-26.5 parent: 2 - - uid: 10990 + - uid: 11629 components: - type: Transform - pos: -152.5,24.5 + rot: -1.5707963267948966 rad + pos: -119.5,-26.5 parent: 2 - - uid: 10991 + - uid: 11630 components: - type: Transform - pos: -143.5,23.5 + rot: -1.5707963267948966 rad + pos: -120.5,-24.5 parent: 2 - - uid: 10992 + - uid: 11631 components: - type: Transform - rot: 3.141592653589793 rad - pos: -143.5,21.5 + rot: -1.5707963267948966 rad + pos: -122.5,-23.5 parent: 2 - - uid: 10993 + - uid: 11632 components: - type: Transform - rot: 3.141592653589793 rad - pos: -147.5,21.5 + rot: -1.5707963267948966 rad + pos: -123.5,-23.5 parent: 2 - - uid: 10994 + - uid: 11633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -140.5,20.5 + rot: -1.5707963267948966 rad + pos: -130.5,-26.5 parent: 2 - - uid: 10995 + - uid: 11634 components: - type: Transform - pos: -140.5,20.5 + rot: -1.5707963267948966 rad + pos: -166.5,-29.5 parent: 2 - - uid: 10996 + - uid: 11635 components: - type: Transform rot: -1.5707963267948966 rad - pos: -133.5,25.5 + pos: -154.5,-31.5 parent: 2 - - uid: 10997 + - uid: 11636 components: - type: Transform - pos: -139.5,22.5 + rot: -1.5707963267948966 rad + pos: -158.5,-31.5 parent: 2 - - uid: 10998 + - uid: 11637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -139.5,22.5 + rot: -1.5707963267948966 rad + pos: -161.5,-32.5 parent: 2 - - uid: 10999 + - uid: 11638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -139.5,24.5 + rot: -1.5707963267948966 rad + pos: -158.5,-28.5 parent: 2 - - uid: 11000 + - uid: 11639 components: - type: Transform rot: -1.5707963267948966 rad - pos: -139.5,24.5 + pos: -153.5,-28.5 parent: 2 - - uid: 11001 + - uid: 11640 components: - type: Transform rot: -1.5707963267948966 rad - pos: -137.5,24.5 + pos: -164.5,-32.5 parent: 2 - - uid: 11002 + - uid: 11641 components: - type: Transform - pos: -137.5,24.5 + rot: -1.5707963267948966 rad + pos: -167.5,-32.5 parent: 2 - - uid: 11003 + - uid: 11642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -133.5,26.5 + rot: -1.5707963267948966 rad + pos: -170.5,-32.5 parent: 2 - - uid: 11004 + - uid: 11643 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,17.5 + rot: -1.5707963267948966 rad + pos: -171.5,-30.5 parent: 2 - - uid: 11005 + - uid: 11644 components: - type: Transform rot: -1.5707963267948966 rad - pos: -128.5,23.5 + pos: -172.5,-28.5 parent: 2 - - uid: 11006 + - uid: 11645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -128.5,23.5 + rot: -1.5707963267948966 rad + pos: -170.5,-29.5 parent: 2 - - uid: 11007 + - uid: 11646 components: - type: Transform rot: -1.5707963267948966 rad - pos: -124.5,21.5 + pos: -169.5,-29.5 parent: 2 - - uid: 11008 + - uid: 11647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -109.5,19.5 + rot: -1.5707963267948966 rad + pos: -172.5,-26.5 parent: 2 - - uid: 11009 + - uid: 11648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,21.5 + rot: -1.5707963267948966 rad + pos: -172.5,-25.5 parent: 2 - - uid: 11010 + - uid: 11649 components: - type: Transform rot: 3.141592653589793 rad - pos: -120.5,20.5 + pos: -24.5,18.5 parent: 2 - - uid: 11011 + - uid: 11650 components: - type: Transform - pos: -120.5,20.5 + rot: 3.141592653589793 rad + pos: -25.5,18.5 parent: 2 - - uid: 11012 + - uid: 11651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,19.5 + pos: -21.5,18.5 parent: 2 - - uid: 11013 + - uid: 11652 components: - type: Transform - pos: -122.5,18.5 + pos: -29.5,18.5 parent: 2 - - uid: 11014 + - uid: 11653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,19.5 + pos: -33.5,18.5 parent: 2 - - uid: 11015 + - uid: 11654 components: - type: Transform - pos: -108.5,20.5 + pos: -38.5,20.5 parent: 2 - - uid: 11016 + - uid: 11655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,21.5 + pos: -44.5,21.5 parent: 2 - - uid: 11017 + - uid: 11656 components: - type: Transform - pos: -110.5,22.5 + pos: -47.5,23.5 parent: 2 - - uid: 11018 + - uid: 11657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,23.5 + pos: -38.5,21.5 parent: 2 - - uid: 11019 + - uid: 11658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,23.5 + pos: -49.5,25.5 parent: 2 - - uid: 11020 + - uid: 11659 components: - type: Transform - pos: -114.5,22.5 + pos: -57.5,32.5 parent: 2 - - uid: 11021 + - uid: 11660 components: - type: Transform - rot: 3.141592653589793 rad - pos: -117.5,22.5 + pos: -56.5,33.5 parent: 2 - - uid: 11022 + - uid: 11661 components: - type: Transform - pos: -91.5,21.5 + pos: -59.5,33.5 parent: 2 - - uid: 11023 + - uid: 11662 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,16.5 + pos: -39.5,21.5 parent: 2 - - uid: 11024 + - uid: 11663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,17.5 + pos: -83.5,26.5 parent: 2 - - uid: 11025 + - uid: 11664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,18.5 + pos: -91.5,24.5 parent: 2 - - uid: 11026 + - uid: 11665 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,19.5 + pos: -91.5,22.5 parent: 2 - - uid: 11027 + - uid: 11666 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,19.5 + pos: -93.5,19.5 parent: 2 - - uid: 11028 + - uid: 11667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,17.5 + pos: -94.5,17.5 parent: 2 - - uid: 11029 + - uid: 11668 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,17.5 + pos: -90.5,20.5 parent: 2 - - uid: 11030 + - uid: 11669 components: - type: Transform - pos: -89.5,23.5 + pos: -90.5,22.5 parent: 2 - - uid: 11031 + - uid: 11670 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,23.5 + pos: -111.5,21.5 parent: 2 - - uid: 11032 + - uid: 11671 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,24.5 + pos: -115.5,23.5 parent: 2 - - uid: 11033 + - uid: 11672 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,24.5 + pos: -114.5,23.5 parent: 2 - - uid: 11034 + - uid: 11673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,22.5 + pos: -116.5,21.5 parent: 2 - - uid: 11035 + - uid: 11674 components: - type: Transform - pos: -90.5,27.5 + pos: -117.5,21.5 parent: 2 - - uid: 11036 + - uid: 11675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,27.5 + pos: -120.5,23.5 parent: 2 - - uid: 11037 + - uid: 11676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,27.5 + pos: -121.5,21.5 parent: 2 - - uid: 11038 + - uid: 11677 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,26.5 + pos: -122.5,22.5 parent: 2 - - uid: 11039 + - uid: 11678 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,3.5 + pos: -149.5,24.5 parent: 2 - - uid: 11040 + - uid: 11679 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -207.5,18.5 + pos: -148.5,24.5 parent: 2 - - uid: 11041 + - uid: 11680 components: - type: Transform - pos: -220.5,-3.5 + pos: -144.5,24.5 parent: 2 - - uid: 11042 + - uid: 11681 components: - type: Transform - rot: 3.141592653589793 rad - pos: -209.5,17.5 + pos: -143.5,24.5 parent: 2 - - uid: 11043 + - uid: 11682 components: - type: Transform - rot: 3.141592653589793 rad - pos: -206.5,18.5 + pos: -142.5,24.5 parent: 2 - - uid: 11044 + - uid: 11683 components: - type: Transform - pos: -206.5,22.5 + pos: -172.5,20.5 parent: 2 - - uid: 11045 + - uid: 11684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -206.5,22.5 + pos: -176.5,18.5 parent: 2 - - uid: 11046 + - uid: 11685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -208.5,22.5 + pos: -175.5,19.5 parent: 2 - - uid: 11047 + - uid: 11686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -208.5,22.5 + pos: -180.5,18.5 parent: 2 - - uid: 11048 + - uid: 11687 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -208.5,24.5 + pos: -184.5,18.5 parent: 2 - - uid: 11049 + - uid: 11688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -208.5,24.5 + pos: -179.5,16.5 parent: 2 - - uid: 11050 + - uid: 11689 components: - type: Transform - rot: 3.141592653589793 rad - pos: -209.5,21.5 + pos: -179.5,12.5 parent: 2 - - uid: 11051 + - uid: 11690 components: - type: Transform - pos: -73.5,-20.5 + pos: -166.5,20.5 parent: 2 -- proto: GrilleSpawner - entities: - - uid: 11052 + - uid: 11691 components: - type: Transform - pos: -150.5,-26.5 + pos: -168.5,20.5 parent: 2 - - uid: 11053 + - uid: 11692 components: - type: Transform - pos: -7.5,23.5 + pos: -162.5,22.5 parent: 2 - - uid: 11054 + - uid: 11693 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,17.5 + pos: -165.5,22.5 parent: 2 - - uid: 11055 + - uid: 11694 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,15.5 + pos: -159.5,21.5 parent: 2 - - uid: 11056 + - uid: 11695 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,15.5 + pos: -154.5,23.5 parent: 2 - - uid: 11057 + - uid: 11696 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,20.5 + pos: -157.5,23.5 parent: 2 - - uid: 11058 + - uid: 11697 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,21.5 + pos: -21.5,-22.5 parent: 2 - - uid: 11059 + - uid: 11698 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,23.5 + pos: 0.5,-17.5 parent: 2 - - uid: 11060 + - uid: 11699 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,27.5 + pos: -16.5,-25.5 parent: 2 - - uid: 11061 + - uid: 11700 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,27.5 + pos: -15.5,-25.5 parent: 2 - - uid: 11062 + - uid: 11701 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,26.5 + pos: -9.5,-22.5 parent: 2 - - uid: 11063 + - uid: 11702 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,28.5 + pos: -6.5,-25.5 parent: 2 - - uid: 11064 + - uid: 11703 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,25.5 + pos: -5.5,-25.5 parent: 2 - - uid: 11065 + - uid: 11704 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,26.5 + pos: -9.5,-25.5 parent: 2 - - uid: 11066 + - uid: 11705 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,23.5 + pos: -2.5,-23.5 parent: 2 - - uid: 11067 + - uid: 11706 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,20.5 + pos: -1.5,-20.5 parent: 2 - - uid: 11068 + - uid: 11707 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,17.5 + pos: 3.5,-13.5 parent: 2 - - uid: 11069 + - uid: 11708 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,16.5 + pos: 0.5,-13.5 parent: 2 - - uid: 11070 + - uid: 11709 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,28.5 + pos: -1.5,-14.5 parent: 2 - - uid: 11071 + - uid: 11710 components: - type: Transform - pos: -13.5,29.5 + pos: 5.5,-10.5 parent: 2 - - uid: 11072 + - uid: 11711 components: - type: Transform - pos: -13.5,28.5 + pos: 2.5,-14.5 parent: 2 - - uid: 11073 + - uid: 11712 components: - type: Transform - pos: -11.5,29.5 + pos: 1.5,-13.5 parent: 2 - - uid: 11074 + - uid: 11713 components: - type: Transform - pos: -10.5,28.5 + pos: -4.5,8.5 parent: 2 - - uid: 11075 + - uid: 11714 components: - type: Transform - pos: -7.5,26.5 + pos: -3.5,10.5 parent: 2 - - uid: 11076 + - uid: 11715 components: - type: Transform - pos: -6.5,22.5 + pos: 3.5,7.5 parent: 2 - - uid: 11077 + - uid: 11716 components: - type: Transform - pos: -2.5,5.5 + pos: 3.5,5.5 parent: 2 - - uid: 11078 + - uid: 11717 components: - type: Transform - pos: -7.5,18.5 + pos: 1.5,6.5 parent: 2 - - uid: 11079 + - uid: 11718 components: - type: Transform - pos: -18.5,15.5 + pos: -0.5,8.5 parent: 2 - - uid: 11080 + - uid: 11719 components: - type: Transform - pos: -3.5,4.5 + pos: -7.5,12.5 parent: 2 - - uid: 11081 + - uid: 11720 components: - type: Transform - pos: -9.5,9.5 + pos: -0.5,11.5 parent: 2 - - uid: 11082 + - uid: 11721 components: - type: Transform - pos: -8.5,10.5 + pos: -150.5,-22.5 parent: 2 - - uid: 11083 + - uid: 11722 components: - type: Transform - pos: -10.5,9.5 + pos: -81.5,29.5 parent: 2 - - uid: 11084 + - uid: 11723 components: - type: Transform - pos: -23.5,-25.5 + pos: -73.5,32.5 parent: 2 - - uid: 11085 + - uid: 11724 components: - type: Transform - pos: -20.5,-29.5 + pos: -80.5,27.5 parent: 2 - - uid: 11086 + - uid: 11725 components: - type: Transform - pos: -21.5,-28.5 + pos: -76.5,32.5 parent: 2 - - uid: 11087 + - uid: 11726 components: - type: Transform - pos: -19.5,-32.5 + pos: -79.5,33.5 parent: 2 - - uid: 11088 + - uid: 11727 components: - type: Transform - pos: -21.5,-35.5 + pos: -80.5,29.5 parent: 2 - - uid: 11089 + - uid: 11728 components: - type: Transform - pos: -23.5,-38.5 + pos: -84.5,26.5 parent: 2 - - uid: 11090 + - uid: 11729 components: - type: Transform - pos: -24.5,-38.5 + pos: -83.5,27.5 parent: 2 - - uid: 11091 + - uid: 11730 components: - type: Transform - pos: -27.5,-38.5 + pos: -66.5,33.5 parent: 2 - - uid: 11092 + - uid: 11731 components: - type: Transform - pos: -28.5,-38.5 + pos: -67.5,32.5 parent: 2 - - uid: 11093 + - uid: 11732 components: - type: Transform - pos: -32.5,-38.5 + pos: -80.5,30.5 parent: 2 - - uid: 11094 +- proto: GunSafe + entities: + - uid: 11733 components: - type: Transform - pos: -30.5,-38.5 + pos: -10.5,4.5 parent: 2 - - uid: 11095 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14835 + 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: + - 11735 + - 11734 + - 11736 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' +- proto: GunSafeDisabler + entities: + - uid: 11737 components: - type: Transform - pos: -34.5,-38.5 + pos: -162.5,9.5 parent: 2 - - uid: 11096 + - type: PointLight + color: '#D56C6CFF' +- proto: Gyroscope + entities: + - uid: 11738 components: - type: Transform - pos: -38.5,-37.5 + pos: -41.5,35.5 parent: 2 - - uid: 11097 + - uid: 11739 components: - type: Transform - pos: -39.5,-35.5 + pos: -184.5,-8.5 parent: 2 - - uid: 11098 + - type: Thruster + enabled: False + - uid: 11740 components: - type: Transform - pos: -39.5,-33.5 + pos: -190.5,9.5 parent: 2 - - uid: 11099 + - type: Thruster + enabled: False + - uid: 17641 components: - type: Transform - pos: -99.5,-12.5 - parent: 2 - - uid: 11100 + rot: 3.141592653589793 rad + pos: 12.5,-6.5 + parent: 17565 +- proto: GyroscopeMachineCircuitboard + entities: + - uid: 11741 components: - type: Transform - pos: -97.5,-15.5 + pos: -55.559822,-1.5228496 parent: 2 - - uid: 11101 +- proto: Handcuffs + entities: + - uid: 11742 components: - type: Transform - pos: -93.5,-15.5 + pos: -158.47104,0.6931698 parent: 2 - - uid: 11102 + - uid: 11743 components: - type: Transform - pos: -91.5,-17.5 + pos: -158.58041,0.5212948 parent: 2 - - uid: 11103 + - uid: 11744 components: - type: Transform - pos: -97.5,-19.5 + rot: -1.5707963267948966 rad + pos: 1.329575,0.4412589 parent: 2 - - uid: 11104 + - uid: 11745 components: - type: Transform - pos: -102.5,-21.5 + rot: -1.5707963267948966 rad + pos: 1.50145,0.7225089 parent: 2 - - uid: 11105 + - uid: 11746 components: - type: Transform - pos: -110.5,-18.5 + pos: -179.37065,5.5405993 parent: 2 - - uid: 11106 + - uid: 11747 components: - type: Transform - pos: -110.5,-20.5 + pos: -161.76854,5.430893 parent: 2 - - uid: 11107 + - uid: 11748 components: - type: Transform - pos: -115.5,-21.5 + pos: -161.87791,5.618393 parent: 2 - - uid: 11108 + - uid: 11749 components: - type: Transform - pos: -118.5,-21.5 + rot: -1.5707963267948966 rad + pos: -147.4187,4.486619 parent: 2 - - uid: 11109 + - uid: 11750 components: - type: Transform - pos: -122.5,-18.5 + rot: -1.5707963267948966 rad + pos: -147.19995,4.642869 parent: 2 - - uid: 11110 + - uid: 11751 components: - type: Transform - pos: -130.5,-14.5 + rot: 1.5707963267948966 rad + pos: -7.544694,-2.4446132 parent: 2 - - uid: 11111 +- proto: HandheldStationMap + entities: + - uid: 11752 components: - type: Transform - pos: -116.5,-37.5 + pos: -167.56833,-7.1539536 parent: 2 - - uid: 11112 + - uid: 11753 components: - type: Transform - pos: -106.5,-38.5 + pos: -190.48195,-16.111544 parent: 2 - - uid: 11113 + - uid: 11754 components: - type: Transform - pos: -106.5,-37.5 + pos: -64.71438,-20.893383 parent: 2 - - uid: 11114 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: HandLabeler + entities: + - uid: 908 components: - type: Transform - pos: -108.5,-38.5 - parent: 2 - - uid: 11115 + parent: 903 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: HappyHonkMime + entities: + - uid: 6998 components: - type: Transform - pos: -118.5,-36.5 - parent: 2 - - uid: 11116 + parent: 6983 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: HarmonicaInstrument + entities: + - uid: 11755 components: - type: Transform - pos: -112.5,-38.5 + pos: -154.3692,-24.478575 parent: 2 - - uid: 11117 +- proto: HighSecArmoryLocked + entities: + - uid: 11756 components: - type: Transform - pos: -113.5,-38.5 + pos: -171.5,7.5 parent: 2 - - uid: 11118 + - uid: 11757 components: - type: Transform - pos: -104.5,-35.5 + pos: -170.5,7.5 parent: 2 - - uid: 11119 + - uid: 11758 components: - type: Transform - pos: -103.5,-35.5 + pos: -167.5,10.5 parent: 2 - - uid: 11120 +- proto: HighSecCommandLocked + entities: + - uid: 11759 components: - type: Transform - pos: -119.5,-33.5 + pos: -8.5,1.5 parent: 2 - - uid: 11121 +- proto: HolofanProjector + entities: + - uid: 11760 components: - type: Transform - pos: -118.5,-33.5 + pos: -59.195984,19.542858 parent: 2 - - uid: 11122 + - uid: 11761 components: - type: Transform - pos: -101.5,-33.5 + rot: 1.5707963267948966 rad + pos: -79.34564,2.9384692 parent: 2 - - uid: 11123 + - uid: 11762 components: - type: Transform - pos: -100.5,-33.5 + pos: -58.890785,19.370577 parent: 2 - - uid: 11124 +- proto: HotplateMachineCircuitboard + entities: + - uid: 11763 components: - type: Transform - pos: -100.5,-32.5 + pos: -52.497456,-4.232441 parent: 2 - - uid: 11125 +- proto: hydroponicsSoil + entities: + - uid: 11764 components: - type: Transform - pos: -117.5,-37.5 + rot: 1.5707963267948966 rad + pos: -163.5,-25.5 parent: 2 - - uid: 11126 + - uid: 11765 components: - type: Transform - pos: -120.5,-30.5 + rot: 1.5707963267948966 rad + pos: -164.5,-25.5 parent: 2 - - uid: 11127 + - uid: 11766 components: - type: Transform - pos: -120.5,-29.5 + rot: 1.5707963267948966 rad + pos: -165.5,-25.5 parent: 2 - - uid: 11128 + - uid: 11767 components: - type: Transform - pos: -118.5,-28.5 + rot: 1.5707963267948966 rad + pos: -167.5,-23.5 parent: 2 - - uid: 11129 + - uid: 11768 components: - type: Transform - pos: -118.5,-27.5 + rot: 1.5707963267948966 rad + pos: -167.5,-22.5 parent: 2 - - uid: 11130 + - uid: 11769 components: - type: Transform rot: 1.5707963267948966 rad - pos: -130.5,23.5 + pos: -165.5,-23.5 parent: 2 - - uid: 11131 + - uid: 11770 components: - type: Transform rot: 1.5707963267948966 rad - pos: -132.5,26.5 + pos: -164.5,-23.5 parent: 2 - - uid: 11132 +- proto: HydroponicsToolClippers + entities: + - uid: 11771 components: - type: Transform rot: 1.5707963267948966 rad - pos: -131.5,25.5 + pos: -167.68906,-25.400524 parent: 2 - - uid: 11133 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 11772 components: - type: Transform rot: 1.5707963267948966 rad - pos: -130.5,25.5 + pos: -167.36093,-25.306774 parent: 2 - - uid: 11134 +- proto: HydroponicsToolSpade + entities: + - uid: 11773 components: - type: Transform rot: 1.5707963267948966 rad - pos: -124.5,18.5 + pos: -167.37656,-25.29115 parent: 2 - - uid: 11135 +- proto: hydroponicsTray + entities: + - uid: 11774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,20.5 + pos: -107.5,-12.5 parent: 2 - - uid: 11136 + - uid: 11775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -127.5,22.5 + pos: -107.5,-8.5 parent: 2 - - uid: 11137 + - uid: 11776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -127.5,23.5 + pos: -107.5,-14.5 parent: 2 - - uid: 11138 + - uid: 11777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -129.5,23.5 + pos: -106.5,-14.5 parent: 2 - - uid: 11139 + - uid: 11778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,23.5 + pos: -107.5,-15.5 parent: 2 - - uid: 11140 + - uid: 11779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -134.5,23.5 + pos: -106.5,-8.5 parent: 2 - - uid: 11141 + - uid: 11780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,21.5 + pos: -104.5,-14.5 parent: 2 - - uid: 11142 + - uid: 11781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,21.5 + pos: -106.5,-9.5 parent: 2 - - uid: 11143 + - uid: 11782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -139.5,21.5 + pos: -104.5,-15.5 parent: 2 - - uid: 11144 + - uid: 11783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -139.5,20.5 + pos: -104.5,-12.5 parent: 2 - - uid: 11145 + - uid: 11784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -140.5,19.5 + pos: -106.5,-15.5 parent: 2 - - uid: 11146 + - uid: 11785 components: - type: Transform - pos: -69.5,13.5 + pos: -107.5,-9.5 parent: 2 - - uid: 11147 + - uid: 11786 components: - type: Transform - pos: -63.5,15.5 + pos: -104.5,-8.5 parent: 2 - - uid: 11148 + - uid: 11787 components: - type: Transform - pos: -86.5,14.5 + pos: -106.5,-11.5 parent: 2 - - uid: 11149 + - uid: 11788 components: - type: Transform - pos: -88.5,13.5 + pos: -106.5,-12.5 parent: 2 - - uid: 11150 + - uid: 11789 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -152.5,21.5 + pos: -107.5,-11.5 parent: 2 - - uid: 11151 + - uid: 11790 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -153.5,21.5 + pos: -104.5,-11.5 parent: 2 - - uid: 11152 + - uid: 11791 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -154.5,21.5 + pos: -104.5,-9.5 parent: 2 - - uid: 11153 +- proto: InflatableWall + entities: + - uid: 11792 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -157.5,21.5 + rot: 3.141592653589793 rad + pos: -215.5,-26.5 parent: 2 - - uid: 11154 + - uid: 11793 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -159.5,20.5 + rot: 3.141592653589793 rad + pos: -216.5,-21.5 parent: 2 - - uid: 11155 +- proto: IngotGold + entities: + - uid: 11794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -160.5,20.5 + pos: -6.958356,4.6076465 parent: 2 - - uid: 11156 +- proto: IngotGold1 + entities: + - uid: 11795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -150.5,22.5 + pos: -117.25381,16.677128 parent: 2 - - uid: 11157 + - uid: 11796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -145.5,22.5 + pos: -117.37881,16.724003 parent: 2 - - uid: 11158 + - uid: 11797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -144.5,22.5 + pos: -117.36318,16.833378 parent: 2 - - uid: 11159 +- proto: IngotSilver + entities: + - uid: 11798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -138.5,22.5 + pos: -7.402417,4.8310556 parent: 2 - - uid: 11160 +- proto: IntercomCommand + entities: + - uid: 11799 components: - type: Transform rot: -1.5707963267948966 rad - pos: -164.5,20.5 + pos: -11.5,-5.5 parent: 2 - - uid: 11161 +- proto: IntercomEngineering + entities: + - uid: 11800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -166.5,18.5 + rot: 3.141592653589793 rad + pos: -55.5,6.5 parent: 2 - - uid: 11162 +- proto: IntercomMedical + entities: + - uid: 11801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -170.5,18.5 + rot: 1.5707963267948966 rad + pos: -179.5,-14.5 parent: 2 - - uid: 11163 + - uid: 11802 components: - type: Transform rot: -1.5707963267948966 rad - pos: -171.5,18.5 + pos: -193.5,-14.5 parent: 2 - - uid: 11164 +- proto: IntercomScience + entities: + - uid: 11803 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,-28.5 + pos: -204.5,3.5 parent: 2 - - uid: 11165 +- proto: IntercomSecurity + entities: + - uid: 11804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-27.5 + pos: -154.5,-1.5 parent: 2 - - uid: 11166 +- proto: IntercomSupply + entities: + - uid: 11805 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-26.5 + rot: 3.141592653589793 rad + pos: -61.5,-17.5 parent: 2 - - uid: 11167 +- proto: JanitorialTrolley + entities: + - uid: 11806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -121.5,-26.5 + rot: 1.5707963267948966 rad + pos: -29.5,-9.5 parent: 2 - - uid: 11168 + - uid: 11807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -120.5,-26.5 + rot: 1.5707963267948966 rad + pos: -29.5,-12.5 parent: 2 - - uid: 11169 +- proto: JawsOfLife + entities: + - uid: 11808 components: - type: Transform rot: -1.5707963267948966 rad - pos: -119.5,-26.5 + pos: -59.281883,2.7830315 parent: 2 - - uid: 11170 +- proto: JetpackBlueFilled + entities: + - uid: 11809 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -120.5,-24.5 + pos: -18.54012,-14.26799 parent: 2 - - uid: 11171 +- proto: JetpackMiniFilled + entities: + - uid: 11810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.5,-23.5 + pos: -18.305744,-14.61174 parent: 2 - - uid: 11172 + - uid: 11811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -123.5,-23.5 + pos: -18.32137,-14.36174 parent: 2 - - uid: 11173 +- proto: JetpackVoidFilled + entities: + - uid: 7135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -125.5,-24.5 + parent: 7133 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Jukebox + entities: + - uid: 11813 + components: + - type: Transform + pos: -120.5,-0.5 parent: 2 - - uid: 11174 +- proto: JukeboxCircuitBoard + entities: + - uid: 11814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -130.5,-26.5 + pos: -109.58214,15.687803 parent: 2 - - uid: 11175 +- proto: KitchenDeepFryer + entities: + - uid: 11815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -166.5,-29.5 + pos: -117.5,-9.5 parent: 2 - - uid: 11176 +- proto: KitchenElectricGrill + entities: + - uid: 11816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -154.5,-31.5 + pos: -114.5,-10.5 parent: 2 - - uid: 11177 + - uid: 11817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -158.5,-31.5 + pos: -167.5,-18.5 parent: 2 - - uid: 11178 +- proto: KitchenMicrowave + entities: + - uid: 11818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -161.5,-32.5 + pos: -199.5,10.5 parent: 2 - - uid: 11179 + - uid: 11819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -158.5,-28.5 + pos: -113.5,-10.5 parent: 2 - - uid: 11180 + - uid: 11820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -153.5,-28.5 + pos: -153.5,5.5 parent: 2 - - uid: 11181 + - uid: 11821 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -164.5,-32.5 + pos: -164.5,-6.5 parent: 2 - - uid: 11182 + - uid: 11822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -167.5,-32.5 + pos: -167.5,-17.5 parent: 2 - - uid: 11183 + - uid: 11823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -170.5,-32.5 + pos: -61.5,-0.5 parent: 2 - - uid: 11184 + - uid: 11824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -171.5,-30.5 + pos: -220.5,-22.5 parent: 2 - - uid: 11185 + - uid: 11825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -172.5,-28.5 + pos: -187.5,-27.5 parent: 2 - - uid: 11186 +- proto: KitchenReagentGrinder + entities: + - uid: 11826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -170.5,-29.5 + pos: -164.5,-17.5 parent: 2 - - uid: 11187 + - uid: 11827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -169.5,-29.5 + pos: -105.5,-12.5 parent: 2 - - uid: 11188 + - uid: 11828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -172.5,-26.5 + pos: -112.5,-11.5 parent: 2 - - uid: 11189 +- proto: KitchenSpike + entities: + - uid: 11829 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -216.5,-24.5 + pos: -115.5,-16.5 parent: 2 - - uid: 11190 +- proto: KnifePlastic + entities: + - uid: 11830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -172.5,-25.5 + pos: -158.80965,-19.288103 parent: 2 - - uid: 11191 + - uid: 11831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -218.5,-22.5 + pos: -166.9574,-17.38474 parent: 2 - - uid: 11192 + - uid: 11832 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -220.5,-22.5 + pos: -167.01295,-17.35002 parent: 2 - - uid: 11193 + - uid: 11833 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -221.5,-20.5 + pos: -166.90878,-17.38474 parent: 2 - - uid: 11194 +- proto: KukriKnife + entities: + - uid: 11834 components: - type: Transform - pos: -220.5,-19.5 + pos: -39.018406,33.354233 parent: 2 - - uid: 11195 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: Lamp + entities: + - uid: 38 components: - type: Transform - pos: -219.5,-14.5 + pos: -91.28467,-7.0987253 parent: 2 - - uid: 11196 + - type: HandheldLight + toggleActionEntity: 39 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 39 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: True + - type: ActionsContainer + - uid: 11835 components: - type: Transform - pos: -221.5,-16.5 + pos: -18.444233,-5.128137 parent: 2 - - uid: 11197 + - uid: 11836 components: - type: Transform - pos: -220.5,-14.5 + pos: 4.6098943,-2.3635573 parent: 2 - - uid: 11198 + - uid: 11837 components: - type: Transform - pos: -217.5,-14.5 + pos: -99.538,10.919875 parent: 2 - - uid: 11199 + - uid: 11838 components: - type: Transform - pos: -218.5,-11.5 + pos: -187.68402,-8.007073 parent: 2 - - uid: 11200 + - uid: 11839 components: - type: Transform - pos: -219.5,-11.5 + pos: -103.54902,21.833775 parent: 2 - - uid: 11201 + - uid: 11840 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,18.5 + pos: -143.50008,1.7906661 parent: 2 - - uid: 11202 + - uid: 11841 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,18.5 + rot: 1.5707963267948966 rad + pos: -166.25797,13.00206 parent: 2 - - uid: 11203 + - uid: 11842 components: - type: Transform - pos: -21.5,18.5 + pos: -105.63215,14.006251 parent: 2 - - uid: 11204 + - uid: 11843 components: - type: Transform - pos: -29.5,18.5 + pos: -156.41182,16.093891 parent: 2 - - uid: 11205 +- proto: LampGold + entities: + - uid: 36 components: - type: Transform - pos: -33.5,18.5 + pos: -133.33263,6.7224927 parent: 2 - - uid: 11206 + - type: HandheldLight + toggleActionEntity: 37 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 37 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 11844 components: - type: Transform - pos: -41.5,27.5 + rot: 1.5707963267948966 rad + pos: -135.517,3.7978673 parent: 2 - - uid: 11207 + - uid: 11845 components: - type: Transform - pos: -41.5,26.5 + rot: -1.5707963267948966 rad + pos: -133.23575,3.8447423 parent: 2 - - uid: 11208 + - uid: 11846 components: - type: Transform - pos: -40.5,26.5 + pos: -154.64658,-25.178654 parent: 2 - - uid: 11209 + - uid: 11847 components: - type: Transform - pos: -40.5,24.5 + rot: -1.5707963267948966 rad + pos: -156.38095,-25.069279 parent: 2 - - uid: 11210 + - uid: 11848 components: - type: Transform - pos: -40.5,25.5 + rot: -1.5707963267948966 rad + pos: -110.23731,3.0094316 parent: 2 - - uid: 11211 +- proto: LampInterrogator + entities: + - uid: 11849 components: - type: Transform - pos: -39.5,21.5 + pos: -179.62372,6.8062243 parent: 2 - - uid: 11212 +- proto: LandMineExplosive + entities: + - uid: 11850 components: - type: Transform - pos: -39.5,24.5 + anchored: True + pos: -176.5,9.5 parent: 2 - - uid: 11213 + - uid: 11851 components: - type: Transform - pos: -40.5,23.5 + anchored: True + pos: -177.5,10.5 parent: 2 - - uid: 11214 + - uid: 11852 components: - type: Transform - pos: -39.5,23.5 + anchored: True + pos: -177.5,12.5 parent: 2 - - uid: 11215 + - uid: 11853 components: - type: Transform - pos: -38.5,21.5 + anchored: True + pos: -175.5,16.5 parent: 2 - - uid: 11216 + - uid: 11854 components: - type: Transform - pos: -38.5,22.5 + anchored: True + pos: -173.5,16.5 parent: 2 - - uid: 11217 + - uid: 11855 components: - type: Transform - pos: -39.5,22.5 + anchored: True + pos: -171.5,16.5 parent: 2 - - uid: 11218 + - uid: 11856 components: - type: Transform - pos: -38.5,20.5 + anchored: True + pos: -169.5,16.5 parent: 2 - - uid: 11219 + - uid: 11857 components: - type: Transform - pos: -37.5,20.5 + pos: -176.77568,14.326154 parent: 2 - - uid: 11220 +- proto: LargeBeaker + entities: + - uid: 11858 components: - type: Transform - pos: -43.5,30.5 + pos: -112.33193,-10.242161 parent: 2 - - uid: 11221 +- proto: LauncherCreamPie + entities: + - uid: 11859 components: - type: Transform - pos: -43.5,29.5 + pos: -122.48074,-8.369568 parent: 2 - - uid: 11222 +- proto: LeftArmSkeleton + entities: + - uid: 17553 components: - type: Transform - pos: -42.5,30.5 + pos: -39.185513,34.692333 parent: 2 - - uid: 11223 +- proto: LeftFootSkeleton + entities: + - uid: 11860 components: - type: Transform - pos: -42.5,29.5 + pos: -85.42818,-36.421894 parent: 2 - - uid: 11224 + - uid: 11861 components: - type: Transform - pos: -45.5,33.5 + rot: 3.141592653589793 rad + pos: -122.90951,4.2671347 parent: 2 - - uid: 11225 +- proto: LeftHandSkeleton + entities: + - uid: 11862 components: - type: Transform - pos: -45.5,32.5 + pos: -85.52193,-36.296894 parent: 2 - - uid: 11226 +- proto: LeftLegSkeleton + entities: + - uid: 11863 components: - type: Transform - pos: -44.5,33.5 + pos: -85.74068,-36.46877 parent: 2 - - uid: 11227 +- proto: LightPostSmall + entities: + - uid: 11864 components: - type: Transform - pos: -44.5,32.5 + rot: -1.5707963267948966 rad + pos: -82.5,-44.5 parent: 2 - - uid: 11228 +- proto: LockableButtonCaptain + entities: + - uid: 11865 components: - type: Transform - pos: -46.5,36.5 + rot: 1.5707963267948966 rad + pos: -5.5,-11.5 parent: 2 - - uid: 11229 + - type: DeviceLinkSource + linkedPorts: + 815: + - Pressed: Toggle + 816: + - Pressed: Toggle + 817: + - Pressed: Toggle +- proto: LockableButtonCargo + entities: + - uid: 11866 components: - type: Transform - pos: -46.5,35.5 + pos: -55.5,-20.5 parent: 2 - - uid: 11230 + - type: DeviceLinkSource + linkedPorts: + 13411: + - Pressed: Toggle + 13410: + - Pressed: Toggle +- proto: LockableButtonChiefEngineer + entities: + - uid: 11867 components: - type: Transform - pos: -45.5,36.5 + rot: -1.5707963267948966 rad + pos: -66.5,2.5 parent: 2 - - uid: 11231 + - type: DeviceLinkSource + linkedPorts: + 810: + - Pressed: Toggle + 811: + - Pressed: Toggle + 812: + - Pressed: Toggle +- proto: LockableButtonCommand + entities: + - uid: 11868 components: - type: Transform - pos: -45.5,35.5 + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 parent: 2 - - uid: 11232 + - type: DeviceLinkSource + linkedPorts: + 839: + - Pressed: Toggle + 840: + - Pressed: Toggle + 841: + - Pressed: Toggle + 842: + - Pressed: Toggle + 843: + - Pressed: Toggle + 844: + - Pressed: Toggle + 845: + - Pressed: Toggle + 846: + - Pressed: Toggle + 847: + - Pressed: Toggle + 848: + - Pressed: Toggle + 849: + - Pressed: Toggle + 851: + - Pressed: Toggle + 850: + - Pressed: Toggle + 838: + - Pressed: Toggle + 856: + - Pressed: Toggle + 855: + - Pressed: Toggle + - uid: 17642 components: - type: Transform - pos: -48.5,40.5 - parent: 2 - - uid: 11233 + rot: 3.141592653589793 rad + pos: 13.5,-5.5 + parent: 17565 + - type: DeviceLinkSource + linkedPorts: + 17574: + - Pressed: Toggle + 17575: + - Pressed: Toggle + 17576: + - Pressed: Toggle + 17579: + - Pressed: Toggle + 17580: + - Pressed: Toggle + 17577: + - Pressed: Toggle + 17578: + - Pressed: Toggle +- proto: LockableButtonHeadOfPersonnel + entities: + - uid: 11869 components: - type: Transform - pos: -48.5,39.5 + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 parent: 2 - - uid: 11234 + - type: DeviceLinkSource + linkedPorts: + 13415: + - Pressed: Toggle + 13414: + - Pressed: Toggle + 13412: + - Pressed: Toggle + 13413: + - Pressed: Toggle + 13418: + - Pressed: Toggle + 13417: + - Pressed: Toggle + 13416: + - Pressed: Toggle + 838: + - Pressed: Toggle +- proto: LockableButtonKitchen + entities: + - uid: 11870 components: - type: Transform - pos: -47.5,40.5 + pos: -111.5,-8.5 parent: 2 - - uid: 11235 + - type: DeviceLinkSource + linkedPorts: + 13419: + - Pressed: Toggle + 13420: + - Pressed: Toggle + 13436: + - Pressed: Toggle + 13435: + - Pressed: Toggle + 13421: + - Pressed: Toggle +- proto: LockableButtonSecurity + entities: + - uid: 11871 components: - type: Transform - pos: -47.5,39.5 + rot: 3.141592653589793 rad + pos: -167.5,2.5 parent: 2 - - uid: 11236 + - type: DeviceLinkSource + linkedPorts: + 17287: + - Pressed: Toggle + - Pressed: AutoClose + 17288: + - Pressed: Toggle + - Pressed: AutoClose + - uid: 11872 components: - type: Transform - pos: -50.5,44.5 + rot: 3.141592653589793 rad + pos: -169.5,2.5 parent: 2 - - uid: 11237 + - type: DeviceLinkSource + linkedPorts: + 17289: + - Pressed: Toggle + - Pressed: AutoClose + 17286: + - Pressed: Toggle + - Pressed: AutoClose +- proto: LockerAtmosphericsFilled + entities: + - uid: 11873 components: - type: Transform - pos: -50.5,43.5 + pos: -61.5,17.5 parent: 2 - - uid: 11238 + - type: PointLight + color: '#D56C6CFF' + - uid: 11874 components: - type: Transform - pos: -80.5,42.5 + pos: -61.5,16.5 parent: 2 - - uid: 11239 + - type: PointLight + color: '#D56C6CFF' + - uid: 11875 components: - type: Transform - pos: -49.5,43.5 + pos: -61.5,18.5 parent: 2 - - uid: 11240 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerBoozeFilled + entities: + - uid: 11876 components: - type: Transform - pos: -49.5,41.5 + pos: -112.5,4.5 parent: 2 - - uid: 11241 + - type: PointLight + color: '#D56C6CFF' + - uid: 11877 components: - type: Transform - pos: -49.5,42.5 + pos: -110.5,6.5 parent: 2 - - uid: 11242 + - type: PointLight + color: '#D56C6CFF' + - uid: 11878 components: - type: Transform - pos: -47.5,38.5 + pos: -120.5,17.5 parent: 2 - - uid: 11243 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerBotanistFilled + entities: + - uid: 11879 components: - type: Transform - pos: -47.5,37.5 + pos: -100.5,-18.5 parent: 2 - - uid: 11244 + - type: PointLight + color: '#D56C6CFF' + - uid: 11880 components: - type: Transform - pos: -45.5,34.5 + pos: -101.5,-14.5 parent: 2 - - uid: 11245 + - type: PointLight + color: '#D56C6CFF' + - uid: 11881 components: - type: Transform - pos: -44.5,31.5 + pos: -100.5,-14.5 parent: 2 - - uid: 11246 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerBrigmedicFilled + entities: + - uid: 7119 components: - type: Transform - pos: -42.5,28.5 + pos: -175.5,1.5 parent: 2 - - uid: 11247 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 147.92336 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7121 + - 7120 + - 7122 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' +- proto: LockerCaptainFilledNoLaser + entities: + - uid: 11882 components: - type: Transform - pos: -40.5,27.5 + pos: -3.5,-9.5 parent: 2 - - uid: 11248 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerChiefEngineerFilledHardsuit + entities: + - uid: 7133 components: + - type: MetaData + name: Шкафчик старшего инженера - type: Transform - pos: -80.5,43.5 + pos: -59.5,5.5 parent: 2 - - uid: 11249 + - 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: + - 7134 + - 7135 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' +- proto: LockerChiefMedicalOfficerFilledHardsuit + entities: + - uid: 11883 components: - type: Transform - pos: -79.5,43.5 + pos: -190.5,-10.5 parent: 2 - - uid: 11250 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerClown + entities: + - uid: 6972 components: - type: Transform - pos: -79.5,42.5 + pos: -119.5,-9.5 parent: 2 - - uid: 11251 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6976 + - 6979 + - 6981 + - 6982 + - 6977 + - 6978 + - 6973 + - 6975 + - 6980 + - 6974 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerDetectiveFilled + entities: + - uid: 11884 components: - type: Transform - pos: -81.5,39.5 + pos: -146.5,3.5 parent: 2 - - uid: 11252 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 11885 components: - type: Transform - pos: -81.5,40.5 + pos: -59.5,-18.5 parent: 2 - - uid: 11253 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.147 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: PointLight + color: '#D56C6CFF' + - uid: 11886 components: - type: Transform - pos: -80.5,39.5 + pos: -35.5,17.5 parent: 2 - - uid: 11254 + - type: PointLight + color: '#D56C6CFF' + - uid: 11887 components: - type: Transform - pos: -80.5,40.5 + pos: -15.5,-11.5 parent: 2 - - uid: 11255 + - type: PointLight + color: '#D56C6CFF' + - uid: 11888 components: - type: Transform - pos: -82.5,37.5 + pos: -119.5,-13.5 parent: 2 - - uid: 11256 + - type: PointLight + color: '#D56C6CFF' + - uid: 11889 components: - type: Transform - pos: -82.5,36.5 + pos: -174.5,-7.5 parent: 2 - - uid: 11257 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerEngineer + entities: + - uid: 7052 components: + - type: MetaData + name: шкаф бригадира - type: Transform - pos: -81.5,37.5 + pos: -68.5,-7.5 parent: 2 - - uid: 11258 + - 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: + - 7053 + - 7055 + - 7054 + - 7056 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 11890 components: - type: Transform - pos: -81.5,36.5 + pos: -67.5,-9.5 parent: 2 - - uid: 11259 + - type: PointLight + color: '#D56C6CFF' + - uid: 11891 components: - type: Transform - pos: -83.5,31.5 + pos: -67.5,-10.5 parent: 2 - - uid: 11260 + - type: PointLight + color: '#D56C6CFF' + - uid: 11892 components: - type: Transform - pos: -83.5,33.5 + pos: -66.5,-10.5 parent: 2 - - uid: 11261 + - type: PointLight + color: '#D56C6CFF' + - uid: 11893 components: - type: Transform - pos: -83.5,34.5 + pos: -66.5,-9.5 parent: 2 - - uid: 11262 + - type: PointLight + color: '#D56C6CFF' + - uid: 11894 components: - type: Transform - pos: -82.5,33.5 + pos: -69.5,4.5 parent: 2 - - uid: 11263 + - type: PointLight + color: '#D56C6CFF' + - uid: 11895 components: - type: Transform - pos: -82.5,34.5 + pos: -69.5,3.5 parent: 2 - - uid: 11264 + - type: PointLight + color: '#D56C6CFF' + - uid: 11896 components: - type: Transform - pos: -84.5,30.5 + pos: -69.5,5.5 parent: 2 - - uid: 11265 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerEvidence + entities: + - uid: 11897 components: - type: Transform - pos: -84.5,29.5 + pos: -166.5,3.5 parent: 2 - - uid: 11266 + - type: PointLight + color: '#D56C6CFF' + - uid: 11898 components: - type: Transform - pos: -83.5,30.5 + pos: -170.5,3.5 parent: 2 - - uid: 11267 + - type: PointLight + color: '#D56C6CFF' + - uid: 11899 components: - type: Transform - pos: -83.5,29.5 + pos: -162.5,3.5 parent: 2 - - uid: 11268 + - type: PointLight + color: '#D56C6CFF' + - uid: 11900 components: - type: Transform - pos: -91.5,24.5 + pos: -153.5,-10.5 parent: 2 - - uid: 11269 + - type: PointLight + color: '#D56C6CFF' + - uid: 11901 components: - type: Transform - pos: -91.5,22.5 + pos: -153.5,-11.5 parent: 2 - - uid: 11270 + - type: PointLight + color: '#D56C6CFF' + - uid: 11902 components: - type: Transform - pos: -93.5,19.5 + pos: -153.5,-12.5 parent: 2 - - uid: 11271 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerForensicMantisFilled + entities: + - uid: 11903 components: - type: Transform - pos: -94.5,17.5 + pos: -193.5,17.5 parent: 2 - - uid: 11272 +- proto: LockerFreezer + entities: + - uid: 8097 components: - type: Transform - pos: -90.5,20.5 + pos: -10.5,2.5 parent: 2 - - uid: 11273 + - 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: + - 8101 + - 8103 + - 8098 + - 8102 + - 8099 + - 8100 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' + - uid: 8544 components: - type: Transform - pos: -90.5,22.5 + pos: -143.5,7.5 parent: 2 - - uid: 11274 + - 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: + - 8548 + - 8545 + - 8549 + - 8546 + - 8547 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' + - uid: 8550 components: - type: Transform - pos: -111.5,21.5 + pos: -163.5,-17.5 parent: 2 - - uid: 11275 + - type: Lock + locked: False + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8554 + - 8552 + - 8553 + - 8561 + - 8560 + - 8557 + - 8559 + - 8556 + - 8558 + - 8551 + - 8555 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#7FC080FF' + - uid: 11904 components: - type: Transform - pos: -115.5,23.5 + pos: -115.5,-14.5 parent: 2 - - uid: 11276 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 11905 components: - type: Transform - pos: -114.5,23.5 + pos: -21.5,-3.5 parent: 2 - - uid: 11277 +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 7013 components: - type: Transform - pos: -116.5,21.5 + pos: -160.5,16.5 parent: 2 - - uid: 11278 + - 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: + - 7014 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' +- proto: LockerMedicalFilled + entities: + - uid: 11906 components: - type: Transform - pos: -117.5,21.5 + pos: -183.5,-27.5 parent: 2 - - uid: 11279 + - uid: 11907 components: - type: Transform - pos: -120.5,23.5 + pos: -183.5,-25.5 parent: 2 - - uid: 11280 +- proto: LockerMedicineFilled + entities: + - uid: 11908 components: - type: Transform - pos: -121.5,21.5 + pos: -184.5,-13.5 parent: 2 - - uid: 11281 + - type: PointLight + color: '#D56C6CFF' + - uid: 11909 components: - type: Transform - pos: -122.5,22.5 + pos: -188.5,-15.5 parent: 2 - - uid: 11282 + - type: PointLight + color: '#D56C6CFF' + - uid: 11910 components: - type: Transform - pos: -149.5,24.5 + pos: -183.5,-24.5 parent: 2 - - uid: 11283 + - uid: 11911 components: - type: Transform - pos: -148.5,24.5 + pos: -183.5,-23.5 parent: 2 - - uid: 11284 +- proto: LockerMime + entities: + - uid: 6983 components: - type: Transform - pos: -144.5,24.5 + pos: -119.5,-11.5 parent: 2 - - uid: 11285 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6994 + - 6995 + - 6990 + - 6989 + - 6996 + - 6997 + - 6985 + - 6988 + - 6991 + - 6992 + - 6993 + - 6987 + - 6986 + - 6984 + - 6998 + - 6999 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerParamedicFilledHardsuit + entities: + - uid: 11912 components: - type: Transform - pos: -143.5,24.5 + pos: -183.5,-26.5 parent: 2 - - uid: 11286 +- proto: LockerQuarterMasterFilled + entities: + - uid: 11913 components: - type: Transform - pos: -142.5,24.5 + pos: -66.5,-18.5 parent: 2 - - uid: 11287 + - 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: PointLight + color: '#D56C6CFF' +- proto: LockerResearchDirectorFilled + entities: + - uid: 7044 components: - type: Transform - pos: -172.5,20.5 + pos: -196.5,15.5 parent: 2 - - uid: 11288 + - 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: + - 7045 + - 7046 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 11914 components: - type: Transform - pos: -176.5,18.5 + pos: -86.5,-30.5 parent: 2 - - uid: 11289 + - type: PointLight + color: '#D56C6CFF' + - uid: 11915 components: - type: Transform - pos: -175.5,19.5 + pos: -86.5,-31.5 parent: 2 - - uid: 11290 + - type: PointLight + color: '#D56C6CFF' + - uid: 11916 components: - type: Transform - pos: -180.5,18.5 + pos: -86.5,-29.5 parent: 2 - - uid: 11291 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerScienceFilled + entities: + - uid: 11917 components: - type: Transform - pos: -184.5,18.5 + pos: -201.5,7.5 parent: 2 - - uid: 11292 + - uid: 11918 components: - type: Transform - pos: -179.5,16.5 + pos: -201.5,8.5 parent: 2 - - uid: 11293 + - uid: 11919 components: - type: Transform - pos: -179.5,12.5 + pos: -201.5,9.5 parent: 2 - - uid: 11294 +- proto: LockerSecurity + entities: + - uid: 7029 components: + - type: MetaData + name: шкаф ветерана Службы Безопасности - type: Transform - pos: -166.5,20.5 + pos: -161.5,-13.5 parent: 2 - - uid: 11295 + - 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: + - 7035 + - 7030 + - 7034 + - 7031 + - 7036 + - 7033 + - 7032 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' +- proto: LockerSecurityFilled + entities: + - uid: 11920 components: - type: Transform - pos: -168.5,20.5 + pos: -169.5,-9.5 parent: 2 - - uid: 11296 + - type: PointLight + color: '#D56C6CFF' + - uid: 11921 components: - type: Transform - pos: -162.5,22.5 + pos: -166.5,-7.5 parent: 2 - - uid: 11297 + - type: PointLight + color: '#D56C6CFF' + - uid: 11922 components: - type: Transform - pos: -165.5,22.5 + pos: -170.5,-11.5 parent: 2 - - uid: 11298 + - type: PointLight + color: '#D56C6CFF' + - uid: 11923 components: - type: Transform - pos: -159.5,21.5 + pos: -168.5,-7.5 parent: 2 - - uid: 11299 + - type: PointLight + color: '#D56C6CFF' + - uid: 11924 components: - type: Transform - pos: -154.5,23.5 + pos: -169.5,-13.5 parent: 2 - - uid: 11300 + - type: PointLight + color: '#D56C6CFF' + - uid: 11925 components: - type: Transform - pos: -157.5,23.5 + pos: -167.5,-13.5 parent: 2 - - uid: 11301 + - type: PointLight + color: '#D56C6CFF' + - uid: 11926 components: - type: Transform - pos: -21.5,-22.5 + pos: -164.5,-11.5 parent: 2 - - uid: 11302 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerSyndicateShipGearBasic + entities: + - uid: 11927 components: - type: Transform - pos: 0.5,-17.5 + pos: -91.5,-6.5 parent: 2 - - uid: 11303 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14755 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerWallMedical + entities: + - uid: 903 components: - type: Transform - pos: -16.5,-25.5 + rot: 3.141592653589793 rad + pos: -190.5,-26.5 parent: 2 - - uid: 11304 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 907 + - 906 + - 904 + - 908 + - 909 + - 905 +- proto: LockerWallMedicalFilled + entities: + - uid: 11928 components: - type: Transform - pos: -15.5,-25.5 + pos: -186.5,-14.5 parent: 2 - - uid: 11305 +- proto: LockerWardenFilled + entities: + - uid: 11929 components: - type: Transform - pos: -9.5,-22.5 + pos: -162.5,11.5 parent: 2 - - uid: 11306 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 11930 components: - type: Transform - pos: -6.5,-25.5 + pos: -121.5,-13.5 parent: 2 - - uid: 11307 + - type: PointLight + color: '#D56C6CFF' + - uid: 11931 components: - type: Transform - pos: -5.5,-25.5 + pos: -82.5,12.5 parent: 2 - - uid: 11308 + - type: PointLight + color: '#D56C6CFF' +- proto: Machete + entities: + - uid: 7025 components: - type: Transform - pos: -9.5,-25.5 - parent: 2 - - uid: 11309 + parent: 7022 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: MachineAnomalyGenerator + entities: + - uid: 11932 components: - type: Transform - pos: -2.5,-23.5 + pos: -193.5,9.5 parent: 2 - - uid: 11310 +- proto: MachineAnomalyVessel + entities: + - uid: 11933 components: - type: Transform - pos: -1.5,-20.5 + rot: 3.141592653589793 rad + pos: -192.5,7.5 parent: 2 - - uid: 11311 +- proto: MachineAPE + entities: + - uid: 11934 components: - type: Transform - pos: 3.5,-13.5 + rot: 3.141592653589793 rad + pos: -193.5,7.5 parent: 2 - - uid: 11312 +- proto: MachineArtifactAnalyzer + entities: + - uid: 11935 components: - type: Transform - pos: 0.5,-13.5 + rot: -1.5707963267948966 rad + pos: -188.5,4.5 parent: 2 - - uid: 11313 + - type: DeviceLinkSink + links: + - 7218 +- proto: MachineCentrifuge + entities: + - uid: 11936 components: - type: Transform - pos: -1.5,-14.5 + pos: -191.5,-24.5 parent: 2 - - uid: 11314 +- proto: MachineFrame + entities: + - uid: 11937 components: - type: Transform - pos: 5.5,-10.5 + rot: -1.5707963267948966 rad + pos: -188.5,12.5 parent: 2 - - uid: 11315 + - uid: 11938 components: - type: Transform - pos: 2.5,-14.5 + pos: -190.5,-7.5 parent: 2 - - uid: 11316 + - uid: 11939 components: - type: Transform - pos: 1.5,-13.5 + rot: 3.141592653589793 rad + pos: -45.5,31.5 parent: 2 - - uid: 11317 + - uid: 11940 components: - type: Transform - pos: -4.5,8.5 + rot: 1.5707963267948966 rad + pos: -227.5,-3.5 parent: 2 - - uid: 11318 + - uid: 11941 components: - type: Transform - pos: -3.5,10.5 + pos: -182.5,-30.5 parent: 2 - - uid: 11319 + - uid: 11942 components: - type: Transform - pos: 3.5,7.5 + pos: -189.5,16.5 parent: 2 - - uid: 11320 +- proto: MachineFrameDestroyed + entities: + - uid: 11943 components: - type: Transform - pos: 3.5,5.5 + pos: -188.5,1.5 parent: 2 - - uid: 11321 + - uid: 11944 components: - type: Transform - pos: 1.5,6.5 + pos: -190.5,17.5 parent: 2 - - uid: 11322 + - uid: 11945 components: - type: Transform - pos: -0.5,8.5 + pos: -42.5,35.5 parent: 2 - - uid: 11323 + - uid: 11946 components: - type: Transform - pos: -7.5,12.5 + pos: -40.5,31.5 parent: 2 - - uid: 11324 + - uid: 11947 components: - type: Transform - pos: -0.5,11.5 + pos: -44.5,36.5 parent: 2 - - uid: 11325 + - uid: 11948 components: - type: Transform - pos: -150.5,-22.5 + pos: -218.5,-42.5 parent: 2 - - uid: 11326 + - uid: 11949 components: - type: Transform - pos: -87.5,14.5 + pos: -187.5,-32.5 parent: 2 -- proto: GunSafe +- proto: MagazineBoxMagnum entities: - - uid: 11327 + - uid: 11734 components: - type: Transform - pos: -10.5,4.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 147.92336 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 11330 - - 11328 - - 11329 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: PointLight - color: '#D56C6CFF' -- proto: GunSafeDisabler + parent: 11733 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxPistol entities: - - uid: 11331 + - uid: 11950 components: - type: Transform - pos: -162.5,9.5 + rot: -1.5707963267948966 rad + pos: -153.29462,1.6659877 parent: 2 - - type: PointLight - color: '#D56C6CFF' -- proto: Gyroscope +- proto: MagazineBoxPistolPractice entities: - - uid: 11332 - components: - - type: Transform - pos: -191.5,16.5 - parent: 2 - - uid: 11333 - components: - - type: Transform - pos: -184.5,-8.5 - parent: 2 - - uid: 17097 + - uid: 11951 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-6.5 - parent: 17021 -- proto: GyroscopeMachineCircuitboard - entities: - - uid: 11334 + pos: -145.33853,8.170538 + parent: 2 + - uid: 11952 components: - type: Transform - pos: -55.559822,-1.5228496 + pos: -145.2604,7.998663 parent: 2 -- proto: Handcuffs +- proto: MagazineBoxPistolRubber entities: - - uid: 11335 + - uid: 11953 components: - type: Transform - pos: -158.47104,0.6931698 + pos: -153.66217,0.6122792 parent: 2 - - uid: 11336 + - uid: 11954 components: - type: Transform - pos: -158.58041,0.5212948 + pos: -153.77155,0.42477918 parent: 2 - - uid: 11337 +- proto: MagazineBoxRiflePractice + entities: + - uid: 11955 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.329575,0.4412589 + pos: -145.5034,8.402208 parent: 2 - - uid: 11338 +- proto: MagazineBoxRifleRubber + entities: + - uid: 11956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.50145,0.7225089 + pos: -153.25592,0.37790418 parent: 2 - - uid: 11339 + - uid: 11957 components: - type: Transform - pos: -179.37065,5.5405993 + pos: -153.20905,0.5810292 parent: 2 - - uid: 11340 +- proto: MagazineBoxSpecialMindbreaker + entities: + - uid: 11958 components: - type: Transform - pos: -161.76854,5.430893 + pos: -194.61055,15.673307 parent: 2 - - uid: 11341 +- proto: MagazinePistolSpecialMindbreaker + entities: + - uid: 11959 components: - type: Transform - pos: -161.87791,5.618393 + pos: -194.36037,15.485807 parent: 2 - - uid: 11342 +- proto: MagazineRifle + entities: + - uid: 11960 components: - type: Transform rot: -1.5707963267948966 rad - pos: -147.4187,4.486619 + pos: -153.5491,17.37009 parent: 2 - - uid: 11343 +- proto: MagazineRifleRubber + entities: + - uid: 11961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -147.19995,4.642869 + pos: -152.93973,17.43259 parent: 2 -- proto: HandheldCrewMonitor - entities: - - uid: 6636 + - uid: 11962 components: - type: Transform - parent: 6629 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: HandheldStationMap + pos: -153.1741,17.46384 + parent: 2 +- proto: MailTeleporter entities: - - uid: 11344 + - uid: 2919 components: - type: Transform - pos: -167.56833,-7.1539536 + pos: -74.5,-18.5 parent: 2 - - uid: 11345 +- proto: MaintenanceFluffSpawner + entities: + - uid: 11963 components: - type: Transform - pos: -190.48195,-16.111544 + pos: -78.5,12.5 parent: 2 - - uid: 11346 +- proto: MaintenancePlantSpawner + entities: + - uid: 11964 components: - type: Transform - pos: -58.46674,-4.0393844 + pos: -164.5,-25.5 parent: 2 - - uid: 11347 + - uid: 11965 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.85599,-21.045044 + pos: -167.5,-23.5 parent: 2 -- proto: HarmonicaInstrument +- proto: MaintenanceToolSpawner entities: - - uid: 11348 + - uid: 11966 components: - type: Transform - pos: -154.3692,-24.478575 + pos: -38.5,-19.5 parent: 2 -- proto: HellfireFreezerMachineCircuitBoard - entities: - - uid: 6924 + - uid: 11967 components: - type: Transform - parent: 6923 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: HighSecArmoryLocked - entities: - - uid: 11349 + pos: -25.5,7.5 + parent: 2 + - uid: 11968 components: - type: Transform - pos: -171.5,7.5 + rot: 1.5707963267948966 rad + pos: -124.5,-18.5 parent: 2 - - uid: 11350 + - uid: 11969 components: - type: Transform - pos: -170.5,7.5 + pos: -86.5,12.5 parent: 2 - - uid: 11351 + - uid: 11970 components: - type: Transform - pos: -167.5,10.5 + pos: -64.5,15.5 parent: 2 -- proto: HighSecCommandLocked +- proto: MaintenanceWeaponSpawner entities: - - uid: 11352 + - uid: 11971 components: - type: Transform - pos: -8.5,1.5 + rot: 1.5707963267948966 rad + pos: -97.5,-21.5 parent: 2 -- proto: HolofanProjector - entities: - - uid: 11353 + - uid: 11972 components: - type: Transform - pos: -59.195984,19.542858 + rot: 1.5707963267948966 rad + pos: -129.5,2.5 parent: 2 - - uid: 11354 + - uid: 11973 components: - type: Transform - pos: -195.02905,1.4667006 + pos: -110.5,10.5 parent: 2 - - uid: 11355 + - uid: 11974 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -79.34564,2.9384692 + pos: -50.5,-22.5 parent: 2 - - uid: 11356 + - uid: 11975 components: - type: Transform - pos: -58.890785,19.370577 + pos: -68.5,14.5 parent: 2 -- proto: HotplateMachineCircuitboard +- proto: MaterialBiomass entities: - - uid: 11357 + - uid: 11976 components: - type: Transform - pos: -52.497456,-4.232441 + pos: -189.1716,-30.095976 parent: 2 -- proto: hydroponicsSoil +- proto: MaterialCloth entities: - - uid: 11358 + - uid: 11977 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -163.5,-25.5 + rot: -1.5707963267948966 rad + pos: -21.151114,-1.4284704 parent: 2 - - uid: 11359 +- proto: MaterialDurathread + entities: + - uid: 11978 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -164.5,-25.5 + pos: -20.760489,-1.6315954 parent: 2 - - uid: 11360 +- proto: MaterialReclaimer + entities: + - uid: 11979 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -165.5,-25.5 + pos: -53.5,-25.5 parent: 2 - - uid: 11361 +- proto: Mattress + entities: + - uid: 11980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -167.5,-23.5 + pos: -67.5,11.5 parent: 2 - - uid: 11362 +- proto: MedicalBed + entities: + - uid: 11981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -167.5,-22.5 + pos: -187.5,-18.5 parent: 2 - - uid: 11363 + - uid: 11982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -165.5,-23.5 + pos: -187.5,-15.5 parent: 2 - - uid: 11364 + - uid: 11983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -164.5,-23.5 + pos: -185.5,-15.5 parent: 2 -- proto: HydroponicsToolClippers - entities: - - uid: 11365 + - uid: 11984 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -167.68906,-25.400524 + pos: -187.5,-13.5 parent: 2 -- proto: HydroponicsToolMiniHoe +- proto: MedicalScanner entities: - - uid: 11366 + - uid: 11985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -167.36093,-25.306774 + pos: -183.5,-29.5 parent: 2 -- proto: HydroponicsToolSpade +- proto: MedicatedSuture entities: - - uid: 11367 + - uid: 11986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -167.37656,-25.29115 + pos: -179.54932,0.82331175 parent: 2 -- proto: hydroponicsTray +- proto: Medkit entities: - - uid: 11368 + - uid: 11987 components: - type: Transform - pos: -107.5,-12.5 + rot: -1.5707963267948966 rad + pos: -221.66782,-15.487415 parent: 2 - - uid: 11369 +- proto: MedkitAdvancedFilled + entities: + - uid: 7002 components: - type: Transform - pos: -107.5,-8.5 - parent: 2 - - uid: 11370 + parent: 7000 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11988 components: - type: Transform - pos: -107.5,-14.5 + pos: -186.3785,-10.559072 parent: 2 - - uid: 11371 + - uid: 11989 components: - type: Transform - pos: -106.5,-14.5 + pos: -186.5606,-10.400258 parent: 2 - - uid: 11372 + - uid: 11990 components: - type: Transform - pos: -107.5,-15.5 + pos: 4.46603,-7.4527473 parent: 2 - - uid: 11373 +- proto: MedkitBruteFilled + entities: + - uid: 7003 components: - type: Transform - pos: -106.5,-8.5 - parent: 2 - - uid: 11374 + parent: 7000 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11991 components: - type: Transform - pos: -104.5,-14.5 + pos: -179.75244,1.3389368 parent: 2 - - uid: 11375 +- proto: MedkitBurnFilled + entities: + - uid: 7004 components: - type: Transform - pos: -106.5,-9.5 - parent: 2 - - uid: 11376 + parent: 7000 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7005 components: - type: Transform - pos: -104.5,-15.5 - parent: 2 - - uid: 11377 + parent: 7000 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11992 components: - type: Transform - pos: -104.5,-12.5 + pos: -122.48804,11.489051 parent: 2 - - uid: 11378 + - uid: 11993 components: - type: Transform - pos: -106.5,-15.5 + pos: -179.33057,1.4483118 parent: 2 - - uid: 11379 +- proto: MedkitFilled + entities: + - uid: 7006 components: - type: Transform - pos: -107.5,-9.5 - parent: 2 - - uid: 11380 + parent: 7000 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7007 components: - type: Transform - pos: -104.5,-8.5 - parent: 2 - - uid: 11381 + parent: 7000 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11994 components: - type: Transform - pos: -106.5,-11.5 + pos: -186.22511,-15.64076 parent: 2 - - uid: 11382 + - uid: 11995 components: - type: Transform - pos: -106.5,-12.5 + pos: -186.6112,-15.310909 parent: 2 - - uid: 11383 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 11996 components: - type: Transform - pos: -107.5,-11.5 + pos: -186.5138,-13.505518 parent: 2 - - uid: 11384 + - uid: 11997 components: - type: Transform - pos: -104.5,-11.5 + pos: -159.49828,-19.467728 parent: 2 - - uid: 11385 + - uid: 11998 components: - type: Transform - pos: -104.5,-9.5 + pos: -164.47807,-7.3880997 parent: 2 -- proto: IngotGold - entities: - - uid: 11386 + - uid: 11999 components: - type: Transform - pos: -6.958356,4.6076465 + pos: -179.72119,1.5576868 parent: 2 -- proto: IngotGold1 - entities: - - uid: 11387 + - uid: 12000 components: - type: Transform - pos: -117.25381,16.677128 + pos: -216.539,-17.331165 parent: 2 - - uid: 11388 + - uid: 17643 components: - type: Transform - pos: -117.37881,16.724003 - parent: 2 - - uid: 11389 + pos: 15.34182,-1.5125337 + parent: 17565 +- proto: MedkitOxygenFilled + entities: + - uid: 7008 components: - type: Transform - pos: -117.36318,16.833378 - parent: 2 -- proto: IngotSilver + parent: 7000 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: MedkitRadiationFilled entities: - - uid: 11390 + - uid: 6937 components: - type: Transform - pos: -7.402417,4.8310556 - parent: 2 -- proto: IntercomCommand - entities: - - uid: 11391 + parent: 6935 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6941 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-5.5 - parent: 2 -- proto: IntercomEngineering - entities: - - uid: 11392 + parent: 6940 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-2.5 - parent: 2 - - uid: 11393 + parent: 6942 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6945 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,6.5 - parent: 2 -- proto: IntercomMedical - entities: - - uid: 11394 + parent: 6944 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -179.5,-14.5 - parent: 2 - - uid: 11395 + parent: 7000 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -193.5,-14.5 + parent: 7000 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12001 + components: + - type: Transform + pos: -69.673225,-2.211409 parent: 2 -- proto: IntercomScience - entities: - - uid: 11396 + - uid: 12002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -188.5,3.5 + pos: -69.5326,-2.398909 parent: 2 - - uid: 11397 + - uid: 12003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -204.5,3.5 + pos: -179.39307,1.2139368 parent: 2 -- proto: IntercomSecurity +- proto: MedkitToxinFilled entities: - - uid: 11398 + - uid: 7011 components: - type: Transform - pos: -154.5,-1.5 - parent: 2 -- proto: IntercomSupply + parent: 7000 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Memorial entities: - - uid: 11399 + - uid: 12004 components: + - type: MetaData + desc: Жертвами при строительстве станции пали психика Darky и потенция 4abere1. + name: Мемореал о жертвах станции. - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-17.5 + pos: -38.5,-1.5 parent: 2 -- proto: JanitorialTrolley +- proto: MicrowaveMachineCircuitboard entities: - - uid: 11400 + - uid: 12005 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-9.5 + pos: -52.497456,-4.498066 parent: 2 - - uid: 11401 +- proto: MiningDrill + entities: + - uid: 12006 components: + - type: MetaData + desc: Похоже, что его давно не смазывали... + name: Прототип руки-бура - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-12.5 + rot: -1.5707963267948966 rad + pos: -85.22827,-36.559616 parent: 2 -- proto: JetpackBlueFilled + - type: MeleeWeapon + attackRate: 5 + autoAttack: False +- proto: MiningWindow entities: - - uid: 11402 + - uid: 12007 components: - type: Transform - pos: -18.54012,-14.26799 + pos: -65.5,-28.5 parent: 2 -- proto: JetpackMiniFilled - entities: - - uid: 11403 + - uid: 12008 components: - type: Transform - pos: -18.305744,-14.61174 + pos: -63.5,-28.5 parent: 2 - - uid: 11404 + - uid: 12009 components: - type: Transform - pos: -18.32137,-14.36174 + pos: -62.5,-28.5 parent: 2 - - uid: 11405 + - uid: 12010 components: - type: Transform - pos: -169.39874,-24.51724 + pos: -58.5,-28.5 parent: 2 -- proto: JetpackVoidFilled - entities: - - uid: 6738 + - uid: 12011 components: - type: Transform - parent: 6736 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Jukebox - entities: - - uid: 11406 + pos: -18.5,-19.5 + parent: 2 + - uid: 12012 components: - type: Transform - pos: -120.5,-0.5 + pos: -24.5,-19.5 parent: 2 -- proto: JukeboxCircuitBoard - entities: - - uid: 11407 + - uid: 12013 components: - type: Transform - pos: -109.58214,15.687803 + pos: -19.5,-17.5 parent: 2 -- proto: KitchenDeepFryer - entities: - - uid: 11408 + - uid: 12014 components: - type: Transform - pos: -117.5,-9.5 + pos: -23.5,-17.5 parent: 2 -- proto: KitchenElectricGrill - entities: - - uid: 11409 + - uid: 12015 components: - type: Transform - pos: -114.5,-10.5 + pos: -83.5,-8.5 parent: 2 - - uid: 11410 + - uid: 12016 components: - type: Transform - pos: -167.5,-18.5 + pos: -86.5,-2.5 parent: 2 -- proto: KitchenMicrowave - entities: - - uid: 11411 + - uid: 12017 components: - type: Transform - pos: -113.5,-10.5 + pos: -86.5,-1.5 parent: 2 - - uid: 11412 + - uid: 12018 components: - type: Transform - pos: -198.5,14.5 + pos: -85.5,-1.5 parent: 2 - - uid: 11413 + - uid: 12019 components: - type: Transform - pos: -153.5,5.5 + pos: -86.5,-3.5 parent: 2 - - uid: 11414 + - uid: 12020 components: - type: Transform - pos: -164.5,-6.5 + pos: -86.5,-5.5 parent: 2 - - uid: 11415 + - uid: 12021 components: - type: Transform - pos: -167.5,-17.5 + pos: -84.5,-7.5 parent: 2 - - uid: 11416 + - uid: 12022 components: - type: Transform - pos: -61.5,-0.5 + pos: -28.5,-17.5 parent: 2 -- proto: KitchenReagentGrinder - entities: - - uid: 11417 + - uid: 12023 components: - type: Transform - pos: -164.5,-17.5 + pos: -75.5,-13.5 parent: 2 - - uid: 11418 + - uid: 12024 components: - type: Transform - pos: -105.5,-12.5 + pos: -84.5,0.5 parent: 2 - - uid: 11419 + - uid: 12025 components: - type: Transform - pos: -112.5,-11.5 + pos: -87.5,3.5 parent: 2 - - uid: 11420 + - uid: 12026 components: - type: Transform - pos: -191.5,-23.5 + pos: -83.5,1.5 parent: 2 -- proto: KitchenSpike - entities: - - uid: 11421 + - uid: 12027 components: - type: Transform - pos: -115.5,-16.5 + pos: -84.5,-8.5 parent: 2 -- proto: KnifePlastic - entities: - - uid: 11422 + - uid: 12028 components: - type: Transform - pos: -158.80965,-19.288103 + pos: -86.5,-4.5 parent: 2 - - uid: 11423 + - uid: 12029 components: - type: Transform - pos: -166.9574,-17.38474 + rot: -1.5707963267948966 rad + pos: 0.5,1.5 parent: 2 - - uid: 11424 + - uid: 12030 components: - type: Transform - pos: -167.01295,-17.35002 + rot: -1.5707963267948966 rad + pos: -1.5,-8.5 parent: 2 - - uid: 11425 + - uid: 12031 components: - type: Transform - pos: -166.90878,-17.38474 + rot: -1.5707963267948966 rad + pos: -0.5,-8.5 parent: 2 -- proto: KukriKnife - entities: - - uid: 11426 + - uid: 12032 components: - type: Transform - pos: -74.43125,-21.24933 + rot: 1.5707963267948966 rad + pos: -77.5,6.5 parent: 2 - - uid: 11427 + - uid: 12033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.552444,52.62993 + rot: 1.5707963267948966 rad + pos: -78.5,6.5 parent: 2 -- proto: Lamp - entities: - - uid: 11428 + - uid: 12034 components: - type: Transform - pos: -18.444233,-5.128137 + rot: 3.141592653589793 rad + pos: -88.5,3.5 parent: 2 - - uid: 11429 + - uid: 12035 components: - type: Transform - pos: 4.6098943,-2.3635573 + rot: 3.141592653589793 rad + pos: -86.5,6.5 parent: 2 - - uid: 11430 + - uid: 12036 components: - type: Transform - pos: -99.538,10.919875 + rot: 3.141592653589793 rad + pos: -87.5,4.5 parent: 2 - - uid: 11431 + - uid: 12037 components: - type: Transform - pos: -187.68402,-8.007073 + rot: 3.141592653589793 rad + pos: -86.5,5.5 parent: 2 - - uid: 11432 + - uid: 12038 components: - type: Transform - pos: -103.54902,21.833775 + rot: 3.141592653589793 rad + pos: -86.5,7.5 parent: 2 - - uid: 11433 + - uid: 12039 components: - type: Transform - pos: -143.50008,1.7906661 + rot: 3.141592653589793 rad + pos: -86.5,8.5 parent: 2 - - uid: 11434 + - uid: 12040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -166.25797,13.00206 + rot: -1.5707963267948966 rad + pos: -88.5,-10.5 parent: 2 - - uid: 11435 + - uid: 12041 components: - type: Transform - pos: -105.63215,14.006251 + rot: 3.141592653589793 rad + pos: -91.5,-1.5 parent: 2 - - uid: 11436 + - uid: 12042 components: - type: Transform - pos: -156.41182,16.093891 + rot: 3.141592653589793 rad + pos: -92.5,-1.5 parent: 2 - - uid: 11437 + - uid: 12043 components: - type: Transform - pos: -203.70909,20.973408 + rot: 3.141592653589793 rad + pos: -93.5,-1.5 parent: 2 - - uid: 11438 + - uid: 12044 components: - type: Transform rot: 3.141592653589793 rad - pos: -91.3329,-7.339467 + pos: -94.5,-1.5 parent: 2 - - uid: 11439 + - uid: 12045 components: - type: Transform - pos: -58.702732,-4.26374 + rot: 3.141592653589793 rad + pos: -90.5,-0.5 parent: 2 -- proto: LampGold - entities: - - uid: 24 + - uid: 12046 components: - type: Transform - pos: -133.33263,6.7224927 + rot: 3.141592653589793 rad + pos: -90.5,0.5 parent: 2 - - type: HandheldLight - toggleActionEntity: 25 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 25 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 11440 + - uid: 12047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.517,3.7978673 + rot: 3.141592653589793 rad + pos: -87.5,-11.5 parent: 2 - - uid: 11441 + - uid: 12048 components: - type: Transform rot: -1.5707963267948966 rad - pos: -133.23575,3.8447423 + pos: -86.5,-12.5 parent: 2 - - uid: 11442 + - uid: 12049 components: - type: Transform - pos: -154.64658,-25.178654 + rot: -1.5707963267948966 rad + pos: -86.5,-13.5 parent: 2 - - uid: 11443 + - uid: 12050 components: - type: Transform rot: -1.5707963267948966 rad - pos: -156.38095,-25.069279 + pos: -86.5,-14.5 parent: 2 - - uid: 11444 + - uid: 12051 components: - type: Transform rot: -1.5707963267948966 rad - pos: -110.23731,3.0094316 + pos: -86.5,-15.5 parent: 2 -- proto: LampInterrogator - entities: - - uid: 11445 + - uid: 12052 components: - type: Transform - pos: -179.62372,6.8062243 + rot: 1.5707963267948966 rad + pos: -74.5,6.5 parent: 2 -- proto: LandMineExplosive - entities: - - uid: 11446 + - uid: 12053 components: - type: Transform - anchored: True - pos: -176.5,9.5 + rot: 1.5707963267948966 rad + pos: -75.5,6.5 parent: 2 - - uid: 11447 + - uid: 12054 components: - type: Transform - anchored: True - pos: -177.5,10.5 + rot: 1.5707963267948966 rad + pos: -76.5,6.5 parent: 2 - - uid: 11448 + - uid: 12055 components: - type: Transform - anchored: True - pos: -177.5,12.5 + rot: 1.5707963267948966 rad + pos: -78.5,-13.5 parent: 2 - - uid: 11449 + - uid: 12056 components: - type: Transform - anchored: True - pos: -175.5,16.5 + rot: 1.5707963267948966 rad + pos: -77.5,-13.5 parent: 2 - - uid: 11450 + - uid: 12057 components: - type: Transform - anchored: True - pos: -173.5,16.5 + rot: 1.5707963267948966 rad + pos: -76.5,-13.5 parent: 2 - - uid: 11451 + - uid: 12058 components: - type: Transform - anchored: True - pos: -171.5,16.5 + rot: 1.5707963267948966 rad + pos: -127.5,-21.5 parent: 2 - - uid: 11452 + - uid: 12059 components: - type: Transform - anchored: True - pos: -169.5,16.5 + rot: 1.5707963267948966 rad + pos: -131.5,-19.5 parent: 2 - - uid: 11453 + - uid: 12060 components: - type: Transform - pos: -176.77568,14.326154 + rot: 1.5707963267948966 rad + pos: -126.5,-21.5 parent: 2 -- proto: LargeBeaker - entities: - - uid: 11454 + - uid: 12061 components: - type: Transform - pos: -112.33193,-10.242161 + rot: 1.5707963267948966 rad + pos: -128.5,-21.5 parent: 2 -- proto: LauncherCreamPie - entities: - - uid: 11455 + - uid: 12062 components: - type: Transform - pos: -122.48074,-8.369568 + rot: 1.5707963267948966 rad + pos: -131.5,-18.5 parent: 2 -- proto: LeftFootSkeleton - entities: - - uid: 11456 + - uid: 12063 components: - type: Transform - pos: -85.42818,-36.421894 + rot: 1.5707963267948966 rad + pos: -131.5,-20.5 parent: 2 - - uid: 11457 + - uid: 12064 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.90951,4.2671347 + rot: -1.5707963267948966 rad + pos: -43.5,18.5 parent: 2 -- proto: LeftHandSkeleton - entities: - - uid: 11458 + - uid: 12065 components: - type: Transform - pos: -85.52193,-36.296894 + rot: -1.5707963267948966 rad + pos: -42.5,18.5 parent: 2 -- proto: LeftLegBorg - entities: - - uid: 11459 + - uid: 12066 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.46773,53.73326 + pos: -79.5,22.5 parent: 2 -- proto: LeftLegSkeleton - entities: - - uid: 11460 + - uid: 12067 components: - type: Transform - pos: -85.74068,-36.46877 + pos: -79.5,23.5 parent: 2 -- proto: LightPostSmall - entities: - - uid: 11461 + - uid: 12068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-44.5 + pos: -79.5,24.5 parent: 2 -- proto: LockableButtonCaptain - entities: - - uid: 11462 + - uid: 12069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-11.5 + pos: -74.5,25.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 775: - - Pressed: Toggle - 776: - - Pressed: Toggle - 777: - - Pressed: Toggle -- proto: LockableButtonCargo - entities: - - uid: 11463 + - uid: 12070 components: - type: Transform - pos: -55.5,-20.5 + pos: -73.5,25.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12977: - - Pressed: Toggle - 12976: - - Pressed: Toggle -- proto: LockableButtonChiefEngineer - entities: - - uid: 11464 + - uid: 12071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,2.5 + pos: -71.5,25.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 772: - - Pressed: Toggle - 773: - - Pressed: Toggle - 774: - - Pressed: Toggle -- proto: LockableButtonCommand - entities: - - uid: 11465 + - uid: 12072 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-5.5 + pos: -70.5,25.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 801: - - Pressed: Toggle - 802: - - Pressed: Toggle - 803: - - Pressed: Toggle - 804: - - Pressed: Toggle - 805: - - Pressed: Toggle - 806: - - Pressed: Toggle - 807: - - Pressed: Toggle - 808: - - Pressed: Toggle - 809: - - Pressed: Toggle - 810: - - Pressed: Toggle - 811: - - Pressed: Toggle - 813: - - Pressed: Toggle - 812: - - Pressed: Toggle - 800: - - Pressed: Toggle - 818: - - Pressed: Toggle - 817: - - Pressed: Toggle - - uid: 17098 + - uid: 12073 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-5.5 - parent: 17021 - - type: DeviceLinkSource - linkedPorts: - 17030: - - Pressed: Toggle - 17031: - - Pressed: Toggle - 17032: - - Pressed: Toggle - 17035: - - Pressed: Toggle - 17036: - - Pressed: Toggle - 17033: - - Pressed: Toggle - 17034: - - Pressed: Toggle -- proto: LockableButtonHeadOfPersonnel - entities: - - uid: 11466 + pos: -68.5,25.5 + parent: 2 + - uid: 12074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 + pos: -67.5,25.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12983: - - Pressed: Toggle - 12982: - - Pressed: Toggle - 12980: - - Pressed: Toggle - 12981: - - Pressed: Toggle - 12986: - - Pressed: Toggle - 12985: - - Pressed: Toggle - 12984: - - Pressed: Toggle - 800: - - Pressed: Toggle -- proto: LockableButtonKitchen - entities: - - uid: 11467 + - uid: 12075 components: - type: Transform - pos: -111.5,-8.5 + pos: -65.5,25.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12992: - - Pressed: Toggle - 12993: - - Pressed: Toggle - 12999: - - Pressed: Toggle - 12998: - - Pressed: Toggle - 12994: - - Pressed: Toggle -- proto: LockableButtonSecurity - entities: - - uid: 11468 + - uid: 12076 components: - type: Transform - rot: 3.141592653589793 rad - pos: -167.5,2.5 + pos: -64.5,25.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16747: - - Pressed: Toggle - - Pressed: AutoClose - 16748: - - Pressed: Toggle - - Pressed: AutoClose - - uid: 11469 + - uid: 12077 components: - type: Transform - rot: 3.141592653589793 rad - pos: -169.5,2.5 + pos: -56.5,25.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16749: - - Pressed: Toggle - - Pressed: AutoClose - 16746: - - Pressed: Toggle - - Pressed: AutoClose -- proto: LockerAtmosphericsFilled - entities: - - uid: 11470 + - uid: 12078 components: - type: Transform - pos: -61.5,17.5 + pos: -81.5,22.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11471 + - uid: 12079 components: - type: Transform - pos: -61.5,16.5 + pos: -81.5,23.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11472 + - uid: 12080 components: - type: Transform - pos: -61.5,18.5 + pos: -81.5,24.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' -- proto: LockerBoozeFilled - entities: - - uid: 11473 + - uid: 12081 components: - type: Transform - pos: -112.5,4.5 + rot: -1.5707963267948966 rad + pos: -1.5,1.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11474 + - uid: 12082 components: - type: Transform - pos: -110.5,6.5 + rot: -1.5707963267948966 rad + pos: -61.5,25.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11475 + - uid: 12083 components: - type: Transform - pos: -120.5,17.5 + rot: -1.5707963267948966 rad + pos: -62.5,25.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' -- proto: LockerBotanistFilled - entities: - - uid: 11476 + - uid: 12084 components: - type: Transform - pos: -100.5,-18.5 + rot: -1.5707963267948966 rad + pos: -59.5,25.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11477 + - uid: 12085 components: - type: Transform - pos: -101.5,-14.5 + rot: -1.5707963267948966 rad + pos: -53.5,24.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11478 + - uid: 12086 components: - type: Transform - pos: -100.5,-14.5 + rot: -1.5707963267948966 rad + pos: -53.5,23.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' -- proto: LockerBrigmedicFilled - entities: - - uid: 6722 + - uid: 12087 components: - type: Transform - pos: -175.5,1.5 + rot: -1.5707963267948966 rad + pos: -52.5,22.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 147.92336 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6724 - - 6723 - - 6725 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: PointLight - color: '#D56C6CFF' -- proto: LockerCaptainFilledNoLaser - entities: - - uid: 11479 + - uid: 12088 components: - type: Transform - pos: -3.5,-9.5 + rot: -1.5707963267948966 rad + pos: -51.5,22.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' -- proto: LockerChemistryFilled - entities: - - uid: 11480 + - uid: 12089 components: - type: Transform - pos: -190.5,-27.5 + rot: -1.5707963267948966 rad + pos: -58.5,25.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' -- proto: LockerChiefEngineerFilledHardsuit - entities: - - uid: 6736 + - uid: 12090 components: - - type: MetaData - name: Шкафчик старшего инженера - type: Transform - pos: -59.5,5.5 + rot: -1.5707963267948966 rad + pos: -55.5,25.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6737 - - 6738 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: PointLight - color: '#D56C6CFF' -- proto: LockerChiefMedicalOfficerFilledHardsuit - entities: - - uid: 11481 + - uid: 12091 components: - type: Transform - pos: -190.5,-10.5 + rot: -1.5707963267948966 rad + pos: -76.5,25.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' -- proto: LockerDetectiveFilled - entities: - - uid: 11482 + - uid: 12092 components: - type: Transform - pos: -146.5,3.5 + rot: -1.5707963267948966 rad + pos: -77.5,25.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 11483 + - uid: 12093 components: - type: Transform - pos: -59.5,-18.5 + rot: 1.5707963267948966 rad + pos: -2.5,-10.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11484 + - uid: 12094 components: - type: Transform - pos: -35.5,17.5 + rot: 1.5707963267948966 rad + pos: -2.5,-11.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11485 + - uid: 12095 components: - type: Transform - pos: -15.5,-11.5 + rot: 1.5707963267948966 rad + pos: -2.5,-12.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11486 + - uid: 12096 components: - type: Transform - pos: -119.5,-13.5 + rot: 3.141592653589793 rad + pos: 2.5,1.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11487 + - uid: 12097 components: - type: Transform - pos: -174.5,-7.5 + rot: 3.141592653589793 rad + pos: 3.5,1.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' -- proto: LockerEngineer - entities: - - uid: 6664 + - uid: 12098 components: - - type: MetaData - name: шкаф бригадира - type: Transform - pos: -68.5,-7.5 + rot: 3.141592653589793 rad + pos: 4.5,1.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6665 - - 6667 - - 6666 - - 6668 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: PointLight - color: '#D56C6CFF' -- proto: LockerEngineerFilledHardsuit - entities: - - uid: 11488 + - uid: 12099 components: - type: Transform - pos: -67.5,-9.5 + rot: 3.141592653589793 rad + pos: -0.5,1.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11489 + - uid: 12100 components: - type: Transform - pos: -67.5,-10.5 + rot: 3.141592653589793 rad + pos: 2.5,-8.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11490 + - uid: 12101 components: - type: Transform - pos: -66.5,-10.5 + rot: 3.141592653589793 rad + pos: 3.5,-8.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11491 + - uid: 12102 components: - type: Transform - pos: -66.5,-9.5 + rot: 3.141592653589793 rad + pos: 4.5,-8.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11492 + - uid: 12103 components: - type: Transform - pos: -69.5,4.5 + rot: 3.141592653589793 rad + pos: 0.5,-8.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11493 + - uid: 12104 components: - type: Transform - pos: -69.5,3.5 + rot: 3.141592653589793 rad + pos: -20.5,-13.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11494 + - uid: 12105 components: - type: Transform - pos: -69.5,5.5 + rot: 3.141592653589793 rad + pos: -15.5,-13.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' -- proto: LockerEvidence - entities: - - uid: 11495 + - uid: 12106 components: - type: Transform - pos: -166.5,3.5 + rot: 3.141592653589793 rad + pos: -13.5,-13.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11496 + - uid: 12107 components: - type: Transform - pos: -170.5,3.5 + pos: -11.5,-0.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11497 + - uid: 12108 components: - type: Transform - pos: -162.5,3.5 + pos: -11.5,-1.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11498 + - uid: 12109 components: - type: Transform - pos: -153.5,-10.5 + pos: -142.5,-0.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11499 + - uid: 12110 components: - type: Transform - pos: -153.5,-11.5 + pos: -139.5,-0.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11500 + - uid: 12111 components: - type: Transform - pos: -153.5,-12.5 + pos: -141.5,-0.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' -- proto: LockerForensicMantisFilled - entities: - - uid: 11501 + - uid: 12112 components: - type: Transform - pos: -192.5,14.5 + pos: -137.5,-0.5 parent: 2 -- proto: LockerFreezer - entities: - - uid: 7703 + - uid: 12113 components: - type: Transform - pos: -10.5,2.5 + pos: -136.5,-0.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7707 - - 7709 - - 7704 - - 7708 - - 7705 - - 7706 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: PointLight - color: '#D56C6CFF' - - uid: 8139 + - uid: 12114 + components: + - type: Transform + pos: -131.5,-0.5 + parent: 2 + - uid: 12115 + components: + - type: Transform + pos: -132.5,-0.5 + parent: 2 + - uid: 12116 components: - type: Transform - pos: -143.5,7.5 + pos: -84.5,1.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 8143 - - 8140 - - 8144 - - 8141 - - 8142 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: PointLight - color: '#D56C6CFF' - - uid: 8145 + - uid: 12117 components: - type: Transform - pos: -163.5,-17.5 + pos: -84.5,-0.5 parent: 2 - - type: Lock - locked: False - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 8156 - - 8146 - - 8147 - - 8148 - - 8149 - - 8150 - - 8153 - - 8151 - - 8154 - - 8152 - - 8155 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: PointLight - color: '#7FC080FF' - - uid: 11502 + - uid: 12118 components: - type: Transform - pos: -115.5,-14.5 + pos: -85.5,-5.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 11503 + - uid: 12119 components: - type: Transform - pos: -20.5,-5.5 + pos: -87.5,-10.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' -- proto: LockerHeadOfSecurityFilled - entities: - - uid: 11504 + - uid: 12120 components: - type: Transform - pos: -160.5,16.5 + pos: -111.5,-22.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' -- proto: LockerMedical - entities: - - uid: 6675 + - uid: 12121 components: - - type: MetaData - name: шкафчик медицинского офицера - type: Transform - pos: -185.5,-25.5 + pos: -113.5,-22.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6679 - - 6676 - - 6678 - - 6677 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: PointLight - color: '#D56C6CFF' -- proto: LockerMedicineFilled - entities: - - uid: 11505 + - uid: 12122 components: - type: Transform - pos: -187.5,-22.5 + pos: -112.5,-22.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11506 + - uid: 12123 components: - type: Transform - pos: -185.5,-22.5 + pos: -131.5,-11.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11507 + - uid: 12124 components: - type: Transform - pos: -184.5,-13.5 + pos: -131.5,-12.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11508 + - uid: 12125 components: - type: Transform - pos: -188.5,-15.5 + pos: -131.5,-13.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' -- proto: LockerParamedic - entities: - - uid: 6629 + - uid: 12126 components: - type: Transform - pos: -184.5,-25.5 + pos: -132.5,8.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6632 - - 6633 - - 6635 - - 6631 - - 6634 - - 6636 - - 6630 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: PointLight - color: '#D56C6CFF' -- proto: LockerQuarterMasterFilled - entities: - - uid: 11509 + - uid: 12127 components: - type: Transform - pos: -66.5,-18.5 + pos: -133.5,8.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' -- proto: LockerResearchDirectorFilled - entities: - - uid: 11510 + - uid: 12128 components: - type: Transform - pos: -201.5,18.5 + pos: -135.5,8.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' -- proto: LockerSalvageSpecialistFilledHardsuit - entities: - - uid: 11511 + - uid: 12129 components: - type: Transform - pos: -86.5,-30.5 + pos: -136.5,8.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11512 + - uid: 12130 components: - type: Transform - pos: -86.5,-31.5 + pos: -84.5,-6.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11513 + - uid: 12131 components: - type: Transform - pos: -86.5,-29.5 + rot: -1.5707963267948966 rad + pos: -126.5,13.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' -- proto: LockerScienceFilled - entities: - - uid: 11514 + - uid: 12132 components: - type: Transform - pos: -199.5,1.5 + rot: -1.5707963267948966 rad + pos: -124.5,13.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11515 + - uid: 12133 components: - type: Transform - pos: -198.5,1.5 + pos: -140.5,-7.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11516 + - uid: 12134 components: - type: Transform - pos: -197.5,1.5 + pos: -142.5,-7.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' -- proto: LockerScientist - entities: - - uid: 451 + - uid: 12135 components: - - type: MetaData - name: Шкаф ведущего исследователя - type: Transform - pos: -191.5,2.5 + pos: -141.5,-7.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 147.92336 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 452 - - 456 - - 454 - - 455 - - 457 - - 453 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: PointLight - color: '#D56C6CFF' -- proto: LockerSecurity - entities: - - uid: 6645 + - uid: 12136 components: - - type: MetaData - name: шкаф ветерана Службы Безопасности - type: Transform - pos: -161.5,-13.5 + pos: -112.5,18.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6651 - - 6646 - - 6650 - - 6647 - - 6652 - - 6649 - - 6648 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: PointLight - color: '#D56C6CFF' -- proto: LockerSecurityFilled - entities: - - uid: 11517 + - uid: 12137 components: - type: Transform - pos: -169.5,-9.5 + pos: -119.5,18.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11518 + - uid: 12138 components: - type: Transform - pos: -166.5,-7.5 + pos: -117.5,18.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11519 + - uid: 12139 components: - type: Transform - pos: -170.5,-11.5 + pos: -110.5,18.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11520 + - uid: 12140 components: - type: Transform - pos: -168.5,-7.5 + pos: -139.5,-7.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11521 + - uid: 12141 components: - type: Transform - pos: -169.5,-13.5 + pos: -118.5,18.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11522 + - uid: 12142 components: - type: Transform - pos: -167.5,-13.5 + pos: -111.5,18.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11523 + - uid: 12143 components: - type: Transform - pos: -164.5,-11.5 + pos: -138.5,-8.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' -- proto: LockerSyndicateShipGearBasic - entities: - - uid: 11524 + - uid: 12144 components: - type: Transform - pos: -91.5,-6.5 + pos: -136.5,-8.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 75.31168 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerWallMedical - entities: - - uid: 6488 + - uid: 12145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -189.5,-26.5 + pos: -143.5,-8.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6490 - - 6491 - - 6489 -- proto: LockerWallMedicalFilled - entities: - - uid: 11525 + - uid: 12146 components: - type: Transform - pos: -186.5,-14.5 + pos: -145.5,-8.5 parent: 2 -- proto: LockerWardenFilled - entities: - - uid: 11526 + - uid: 12147 components: - type: Transform - pos: -162.5,11.5 + pos: -87.5,-20.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 11527 + - uid: 12148 components: - type: Transform - pos: -121.5,-13.5 + pos: -86.5,-20.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' - - uid: 11528 + - uid: 12149 components: - type: Transform - pos: -82.5,12.5 + pos: -88.5,-20.5 parent: 2 - - type: PointLight - color: '#D56C6CFF' -- proto: Machete - entities: - - uid: 6641 + - uid: 12150 components: - type: Transform - parent: 6638 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage -- proto: MachineAnomalyGenerator - entities: - - uid: 11529 + pos: -32.5,-17.5 + parent: 2 + - uid: 12151 components: - type: Transform - pos: -200.5,7.5 + pos: -33.5,-17.5 parent: 2 -- proto: MachineAnomalyVessel - entities: - - uid: 11530 + - uid: 12152 components: - type: Transform - pos: -191.5,8.5 + pos: -64.5,-28.5 parent: 2 - - uid: 11531 + - uid: 12153 components: - type: Transform - pos: -191.5,7.5 + rot: -1.5707963267948966 rad + pos: -225.5,-2.5 parent: 2 -- proto: MachineAPE - entities: - - uid: 11532 + - uid: 12154 components: - type: Transform rot: -1.5707963267948966 rad - pos: -191.5,6.5 + pos: -225.5,-1.5 parent: 2 -- proto: MachineArtifactAnalyzer - entities: - - uid: 11533 + - uid: 12155 components: - type: Transform - pos: -198.5,26.5 + pos: -230.5,-19.5 parent: 2 -- proto: MachineCentrifuge - entities: - - uid: 11534 + - uid: 12156 components: - type: Transform - pos: -191.5,-26.5 + pos: -221.5,-21.5 parent: 2 -- proto: MachineElectrolysisUnit - entities: - - uid: 11535 + - uid: 12157 components: - type: Transform - pos: -191.5,-27.5 + pos: -213.5,-32.5 parent: 2 -- proto: MachineFrame - entities: - - uid: 11536 + - uid: 12158 components: - type: Transform - pos: -188.5,25.5 + pos: -231.5,-32.5 parent: 2 - - uid: 11537 + - uid: 12159 components: - type: Transform - pos: -190.5,-7.5 + pos: -231.5,-24.5 parent: 2 - - uid: 11538 + - uid: 12160 components: - type: Transform - pos: -194.5,26.5 + pos: -230.5,-29.5 parent: 2 - - uid: 11539 + - uid: 12161 + components: + - type: Transform + pos: -230.5,-27.5 + parent: 2 + - uid: 12162 + components: + - type: Transform + pos: -230.5,-21.5 + parent: 2 + - uid: 12163 + components: + - type: Transform + pos: -224.5,-25.5 + parent: 2 + - uid: 12164 + components: + - type: Transform + pos: -224.5,-23.5 + parent: 2 + - uid: 12165 + components: + - type: Transform + pos: -220.5,-41.5 + parent: 2 + - uid: 17644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-6.5 + parent: 17565 + - uid: 17645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 17565 + - uid: 17646 components: - type: Transform - pos: -77.5,47.5 - parent: 2 - - uid: 11540 + rot: 1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 17565 + - uid: 17647 components: - type: Transform - pos: -76.5,52.5 - parent: 2 - - uid: 11541 + rot: 1.5707963267948966 rad + pos: 17.5,-4.5 + parent: 17565 + - uid: 17648 components: - type: Transform - pos: -78.5,50.5 - parent: 2 - - uid: 11542 + rot: 1.5707963267948966 rad + pos: 17.5,-3.5 + parent: 17565 + - uid: 17649 components: - type: Transform - rot: 3.141592653589793 rad - pos: -190.5,1.5 - parent: 2 -- proto: MachineFrameDestroyed - entities: - - uid: 11543 + rot: 1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 17565 + - uid: 17650 components: - type: Transform - pos: -203.5,25.5 - parent: 2 - - uid: 11544 + rot: 1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 17565 + - uid: 17651 components: - type: Transform - pos: -181.5,-26.5 - parent: 2 - - uid: 11545 + rot: 1.5707963267948966 rad + pos: 17.5,-1.5 + parent: 17565 + - uid: 17652 components: - type: Transform - pos: -78.5,49.5 - parent: 2 - - uid: 11546 + rot: 1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 17565 +- proto: MoonBattlemap + entities: + - uid: 12166 components: - type: Transform - pos: -77.5,52.5 + pos: -43.51203,-18.372826 parent: 2 - - uid: 11547 + - uid: 12167 components: - type: Transform - pos: -76.5,46.5 + pos: -115.51241,16.38739 parent: 2 - - uid: 11548 +- proto: MopBucketFull + entities: + - uid: 12168 components: - type: Transform - pos: -202.5,0.5 + pos: -30.5,-8.5 parent: 2 -- proto: MagazineBoxMagnum +- proto: MopItem entities: - - uid: 11328 + - uid: 7020 components: - type: Transform - parent: 11327 + parent: 7015 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage -- proto: MagazineBoxPistol +- proto: Morgue entities: - - uid: 11549 + - uid: 12169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -153.29462,1.6659877 + rot: 1.5707963267948966 rad + pos: -191.5,-29.5 parent: 2 -- proto: MagazineBoxPistolPractice - entities: - - uid: 11550 + - uid: 12170 components: - type: Transform rot: 3.141592653589793 rad - pos: -145.33853,8.170538 - parent: 2 - - uid: 11551 - components: - - type: Transform - pos: -145.2604,7.998663 - parent: 2 -- proto: MagazineBoxPistolRubber - entities: - - uid: 11552 - components: - - type: Transform - pos: -153.66217,0.6122792 + pos: -190.5,-30.5 parent: 2 - - uid: 11553 + - uid: 12171 components: - type: Transform - pos: -153.77155,0.42477918 + rot: 1.5707963267948966 rad + pos: -191.5,-28.5 parent: 2 -- proto: MagazineBoxRiflePractice - entities: - - uid: 11554 + - uid: 12172 components: - type: Transform - pos: -145.5034,8.402208 + rot: 1.5707963267948966 rad + pos: -191.5,-27.5 parent: 2 -- proto: MagazineBoxRifleRubber - entities: - - uid: 11555 + - uid: 12173 components: - type: Transform - pos: -153.25592,0.37790418 + rot: -1.5707963267948966 rad + pos: -175.5,-0.5 parent: 2 - - uid: 11556 + - uid: 12174 components: - type: Transform - pos: -153.20905,0.5810292 + pos: -42.5,9.5 parent: 2 -- proto: MagazineRifle - entities: - - uid: 11557 + - uid: 12175 components: - type: Transform rot: -1.5707963267948966 rad - pos: -153.5491,17.37009 + pos: -37.5,10.5 parent: 2 -- proto: MagazineRifleRubber - entities: - - uid: 11558 + - uid: 12176 components: - type: Transform - pos: -152.93973,17.43259 + rot: -1.5707963267948966 rad + pos: -37.5,9.5 parent: 2 - - uid: 11559 + - uid: 12177 components: - type: Transform - pos: -153.1741,17.46384 + rot: -1.5707963267948966 rad + pos: -37.5,8.5 parent: 2 -- proto: MaintenanceFluffSpawner +- proto: MouseTimedSpawner entities: - - uid: 11560 + - uid: 12178 components: - type: Transform - pos: -78.5,12.5 + pos: -213.5,-3.5 parent: 2 -- proto: MaintenancePlantSpawner - entities: - - uid: 11561 + - uid: 12179 components: - type: Transform - pos: -164.5,-25.5 + pos: -31.5,-14.5 parent: 2 - - uid: 11562 + - uid: 12180 components: - type: Transform - pos: -167.5,-23.5 + pos: -59.5,-19.5 parent: 2 -- proto: MaintenanceToolSpawner - entities: - - uid: 11563 + - uid: 12181 components: - type: Transform - pos: -38.5,-19.5 + pos: -44.5,-22.5 parent: 2 - - uid: 11564 + - uid: 12182 components: - type: Transform - pos: -25.5,7.5 + pos: -92.5,-18.5 parent: 2 - - uid: 11565 + - uid: 12183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,-18.5 + pos: -127.5,-19.5 parent: 2 - - uid: 11566 + - uid: 12184 components: - type: Transform - pos: -86.5,12.5 + pos: -148.5,4.5 parent: 2 - - uid: 11567 + - uid: 12185 components: - type: Transform - pos: -64.5,15.5 + pos: -186.5,-3.5 parent: 2 -- proto: MaintenanceWeaponSpawner +- proto: Multitool entities: - - uid: 11568 + - uid: 12186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,-21.5 + pos: -47.436264,4.738446 parent: 2 - - uid: 11569 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 12187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -129.5,2.5 + rot: -1.5707963267948966 rad + pos: -0.40223265,-7.32084 parent: 2 - - uid: 11570 +- proto: MysteryFigureBox + entities: + - uid: 12188 components: - type: Transform - pos: -110.5,10.5 + pos: -44.027657,-18.4822 parent: 2 - - uid: 11571 + - uid: 12189 components: - type: Transform - pos: -50.5,-22.5 + pos: -42.527657,-18.216576 parent: 2 - - uid: 11572 + - uid: 12190 components: - type: Transform - pos: -68.5,14.5 + pos: -42.82453,-18.497826 parent: 2 -- proto: MaterialBiomass +- proto: NitrogenCanister entities: - - uid: 11573 + - uid: 12191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -188.02553,-28.44453 + pos: -67.5,18.5 parent: 2 -- proto: MaterialCloth - entities: - - uid: 11574 + - uid: 12192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.151114,-1.4284704 + pos: -67.5,17.5 parent: 2 -- proto: MaterialDurathread +- proto: NitrousOxideCanister entities: - - uid: 11575 + - uid: 12193 components: - type: Transform - pos: -20.760489,-1.6315954 + pos: -69.5,18.5 parent: 2 -- proto: MaterialReclaimer +- proto: NuclearBomb entities: - - uid: 11576 + - uid: 12194 components: - type: Transform - pos: -53.5,-25.5 + pos: -8.5,4.5 parent: 2 -- proto: Mattress +- proto: NuclearBombKeg entities: - - uid: 11577 + - uid: 12195 components: - type: Transform - pos: -67.5,11.5 + pos: -49.5,-22.5 parent: 2 -- proto: MedicalBed +- proto: Ointment1 entities: - - uid: 11578 - components: - - type: Transform - pos: -187.5,-18.5 - parent: 2 - - uid: 11579 + - uid: 12196 components: - type: Transform - pos: -187.5,-15.5 + rot: 1.5707963267948966 rad + pos: -46.25965,14.545029 parent: 2 - - uid: 11580 + - uid: 12197 components: - type: Transform - pos: -185.5,-15.5 + rot: 1.5707963267948966 rad + pos: -46.25965,14.607529 parent: 2 - - uid: 11581 +- proto: OracleSpawner + entities: + - uid: 12198 components: - type: Transform - pos: -187.5,-13.5 + pos: -40.5,4.5 parent: 2 -- proto: MedicalScanner +- proto: OreBag entities: - - uid: 11582 + - uid: 12199 components: - type: Transform - pos: -180.5,-25.5 + pos: -23.555689,-16.33081 parent: 2 -- proto: MedicalTechFab - entities: - - uid: 11583 + - uid: 12200 components: - type: Transform - pos: -183.5,-22.5 + pos: -23.415064,-16.502686 parent: 2 -- proto: MedicatedSuture +- proto: OreProcessor entities: - - uid: 11584 + - uid: 12201 components: - type: Transform - pos: -179.54932,0.82331175 + pos: -81.5,-29.5 parent: 2 -- proto: MedkitAdvancedFilled +- proto: OreProcessorMachineCircuitboard entities: - - uid: 11585 + - uid: 12202 components: - type: Transform - pos: -186.3785,-10.559072 + rot: -1.5707963267948966 rad + pos: -19.978727,-16.499563 parent: 2 - - uid: 11586 +- proto: OxygenCanister + entities: + - uid: 12203 components: - type: Transform - pos: -186.5606,-10.400258 + pos: -65.5,18.5 parent: 2 - - uid: 11587 + - uid: 12204 components: - type: Transform - pos: 4.46603,-7.4527473 + pos: -65.5,17.5 parent: 2 - - uid: 17099 - components: - - type: Transform - pos: 15.439711,-1.4876399 - parent: 17021 -- proto: MedkitBruteFilled +- proto: PackPaperRollingFilters entities: - - uid: 6931 + - uid: 6906 components: - type: Transform - parent: 6930 + parent: 6905 - type: Physics + angularDamping: 0 + linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 6932 + - uid: 6907 components: - type: Transform - parent: 6930 + parent: 6905 - type: Physics + angularDamping: 0 + linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 11588 - components: - - type: Transform - pos: -179.75244,1.3389368 - parent: 2 -- proto: MedkitBurnFilled +- proto: PaintingBlunt entities: - - uid: 6933 - components: - - type: Transform - parent: 6930 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6934 - components: - - type: Transform - parent: 6930 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11589 + - uid: 12205 components: - type: Transform - pos: -122.48804,11.489051 + pos: -223.5,-22.5 parent: 2 - - uid: 11590 +- proto: PaintingSadClown + entities: + - uid: 12206 components: - type: Transform - pos: -179.33057,1.4483118 + pos: -170.5,-7.5 parent: 2 -- proto: MedkitFilled +- proto: Paper entities: - - uid: 11591 + - uid: 12207 components: - type: Transform - pos: -186.22511,-15.64076 + rot: -1.5707963267948966 rad + pos: -61.281036,2.851215 parent: 2 - - uid: 11592 + - uid: 12208 components: - type: Transform - pos: -186.59573,-15.374863 + rot: -1.5707963267948966 rad + pos: -61.29666,2.601215 parent: 2 - - uid: 11593 + - uid: 12209 components: - type: Transform - pos: -186.5138,-13.505518 + rot: -1.5707963267948966 rad + pos: -61.281036,2.52309 parent: 2 - - uid: 11594 + - uid: 12210 components: - type: Transform - pos: -159.49828,-19.467728 + rot: 1.5707963267948966 rad + pos: -133.35753,4.2197423 parent: 2 - - uid: 11595 + - uid: 12211 components: - type: Transform - pos: -164.47807,-7.3880997 + rot: 1.5707963267948966 rad + pos: -133.35753,4.3603673 parent: 2 - - uid: 11596 + - uid: 12212 components: - type: Transform - pos: -179.72119,1.5576868 + rot: 1.5707963267948966 rad + pos: -133.32628,4.5166173 parent: 2 -- proto: MedkitOxygenFilled - entities: - - uid: 6935 + - uid: 12213 components: - type: Transform - parent: 6930 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6936 + rot: -1.5707963267948966 rad + pos: -135.54169,4.2353673 + parent: 2 + - uid: 12214 components: - type: Transform - parent: 6930 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MedkitRadiationFilled - entities: - - uid: 6585 + rot: -1.5707963267948966 rad + pos: -135.54169,4.3759923 + parent: 2 + - uid: 12215 components: - type: Transform - parent: 6583 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6589 + rot: -1.5707963267948966 rad + pos: -135.57294,4.5322423 + parent: 2 + - uid: 12216 components: - type: Transform - parent: 6588 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6591 + rot: 1.5707963267948966 rad + pos: -68.64186,-19.020338 + parent: 2 + - uid: 12217 components: - type: Transform - parent: 6590 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6593 + rot: 1.5707963267948966 rad + pos: -68.438736,-19.035963 + parent: 2 + - uid: 12218 components: - type: Transform - parent: 6592 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6937 + rot: 1.5707963267948966 rad + pos: -165.74234,12.50206 + parent: 2 + - uid: 12219 components: - type: Transform - parent: 6930 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6938 + rot: 3.141592653589793 rad + pos: -155.53682,15.593892 + parent: 2 + - uid: 12220 components: - type: Transform - parent: 6930 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11597 + pos: -159.31479,-1.4318302 + parent: 2 + - uid: 12221 components: - type: Transform - pos: -69.673225,-2.211409 + pos: -158.40854,-0.18183023 parent: 2 - - uid: 11598 + - uid: 12222 components: - type: Transform - pos: -69.5326,-2.398909 + pos: -175.23003,7.4312243 parent: 2 - - uid: 11599 + - uid: 12223 components: - type: Transform - pos: -179.39307,1.2139368 + pos: -153.41608,-25.443504 parent: 2 -- proto: MedkitToxinFilled - entities: - - uid: 6939 + - uid: 12224 components: - type: Transform - parent: 6930 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Memorial - entities: - - uid: 11600 + pos: -153.63483,-25.381004 + parent: 2 + - uid: 12225 components: - - type: MetaData - desc: Жертвами при строительстве станции пали психика Darky и потенция 4abere1. - name: Мемореал о жертвах станции. - type: Transform - pos: -38.5,-1.5 + pos: -157.60358,-25.412254 parent: 2 -- proto: MicrowaveMachineCircuitboard - entities: - - uid: 11601 + - uid: 12226 components: - type: Transform - pos: -52.497456,-4.498066 + pos: -157.38483,-25.412254 parent: 2 -- proto: MiningDrill - entities: - - uid: 11602 + - uid: 12227 components: - - type: MetaData - desc: Похоже, что его давно не смазывали... - name: Прототип руки-бура - type: Transform rot: -1.5707963267948966 rad - pos: -85.22827,-36.559616 + pos: -162.50291,5.415268 parent: 2 - - type: MeleeWeapon - attackRate: 5 - autoAttack: False -- proto: MiningWindow + - uid: 17566 + components: + - type: Transform + pos: 12.2621565,-5.3094954 + parent: 17565 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + content: >+ + Предупреждение NT-961-54 + + ------------------------------------------------------------------------------ В связи с повышенной опасностью кристалла суперматерии в дестабилизированном состоянии, под распоряжение командования станции был выдан спасательный шаттл под наименованием "Пилюля". + + ------------------------------------------------------------------------------ В случае поломки, утере шаттла или его оборудования командованию станции (или же лицам причастным) будет выписан взнос в размере половины от годовой заработной платы. + + + Цените иммущество, что поступило вам в руки. + + - Руководитель Инженерной Бригады ЦентКома + + Эмиль Орлов + + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.25 + - 0.25,-0.25 + - 0.25,0.25 + - -0.25,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + flammable: + shape: !type:PhysShapeCircle + radius: 0.35 + position: 0,0 + mask: + - TableLayer + - HighImpassable + - LowImpassable + - BulletImpassable + - InteractImpassable + - Opaque + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 17567 +- proto: PaperBin entities: - - uid: 11603 - components: - - type: Transform - pos: -18.5,-19.5 - parent: 2 - - uid: 11604 - components: - - type: Transform - pos: -24.5,-19.5 - parent: 2 - - uid: 11605 - components: - - type: Transform - pos: -19.5,-17.5 - parent: 2 - - uid: 11606 + - uid: 12228 components: - type: Transform - pos: -23.5,-17.5 + rot: 1.5707963267948966 rad + pos: -220.5,-26.5 parent: 2 - - uid: 11607 +- proto: PaperBin10 + entities: + - uid: 12229 components: - type: Transform - pos: -83.5,-8.5 + rot: -1.5707963267948966 rad + pos: -20.5,0.5 parent: 2 - - uid: 11608 + - uid: 12230 components: - type: Transform - pos: -86.5,-2.5 + pos: 0.5,-3.5 parent: 2 - - uid: 11609 + - uid: 12231 components: - type: Transform - pos: -86.5,-1.5 + rot: 1.5707963267948966 rad + pos: -8.5,-10.5 parent: 2 - - uid: 11610 + - uid: 12232 components: - type: Transform - pos: -85.5,-1.5 + pos: -141.5,0.5 parent: 2 - - uid: 11611 + - uid: 12233 components: - type: Transform - pos: -86.5,-3.5 + rot: -1.5707963267948966 rad + pos: -122.5,-11.5 parent: 2 - - uid: 11612 + - uid: 17030 components: - type: Transform - pos: -86.5,-5.5 + pos: -75.5,-21.5 parent: 2 - - uid: 11613 +- proto: PaperOffice + entities: + - uid: 12234 components: - type: Transform - pos: -84.5,-7.5 + rot: -1.5707963267948966 rad + pos: -223.04419,-23.030045 parent: 2 - - uid: 11614 + - uid: 12235 components: - type: Transform - pos: -28.5,-17.5 + rot: 1.5707963267948966 rad + pos: -222.21857,-25.711296 parent: 2 - - uid: 11615 + - uid: 12236 components: - type: Transform - pos: -75.5,-13.5 + rot: 3.141592653589793 rad + pos: -219.87308,-23.611296 parent: 2 - - uid: 11616 +- proto: PaperWrittenAMEScribbles + entities: + - uid: 12237 components: - type: Transform - pos: -84.5,0.5 + pos: -57.4611,-9.579604 parent: 2 - - uid: 11617 +- proto: PartRodMetal + entities: + - uid: 12238 components: - type: Transform - pos: -87.5,3.5 + pos: -69.700714,-11.4195 parent: 2 - - uid: 11618 + - uid: 12239 components: - type: Transform - pos: -83.5,1.5 + pos: -69.4818,-11.6695 parent: 2 - - uid: 11619 + - uid: 12240 components: - type: Transform - pos: -84.5,-8.5 + pos: -64.356575,3.6606102 parent: 2 - - uid: 11620 +- proto: Pen + entities: + - uid: 12242 components: - type: Transform - pos: -86.5,-4.5 + rot: 1.5707963267948966 rad + pos: -46.59343,-18.664692 parent: 2 - - uid: 11621 + - uid: 12243 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,1.5 + pos: -135.06596,6.6728673 parent: 2 - - uid: 11622 + - uid: 12244 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-8.5 + pos: -134.89409,6.5947423 parent: 2 - - uid: 11623 + - uid: 12245 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-8.5 - parent: 2 - - uid: 11624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,6.5 - parent: 2 - - uid: 11625 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,6.5 - parent: 2 - - uid: 11626 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,3.5 - parent: 2 - - uid: 11627 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,6.5 + pos: -141.53133,0.60316616 parent: 2 - - uid: 11628 + - uid: 12246 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,4.5 + pos: -165.61734,12.798935 parent: 2 - - uid: 11629 + - uid: 12247 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,5.5 + rot: -1.5707963267948966 rad + pos: -122.17424,-11.534925 parent: 2 - - uid: 11630 + - uid: 12248 components: - type: Transform rot: 3.141592653589793 rad - pos: -86.5,7.5 + pos: -155.31807,15.515767 parent: 2 - - uid: 11631 + - uid: 12249 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,8.5 + pos: -175.5894,7.6655993 parent: 2 - - uid: 11632 + - uid: 12250 components: - type: Transform rot: -1.5707963267948966 rad - pos: -88.5,-10.5 + pos: -153.8692,-25.42788 parent: 2 - - uid: 11633 + - uid: 12251 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-1.5 + pos: -157.15045,-25.33413 parent: 2 - - uid: 11634 + - uid: 12252 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-1.5 + pos: -221.23175,-25.910442 parent: 2 - - uid: 11635 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: PenHop + entities: + - uid: 12253 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,-1.5 + pos: -17.286476,-5.6166334 parent: 2 - - uid: 11636 +- proto: PersonalAI + entities: + - uid: 12254 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-1.5 + pos: -29.419008,-1.5378695 parent: 2 - - uid: 11637 + - uid: 12255 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-0.5 + pos: -103.74425,19.70352 parent: 2 - - uid: 11638 +- proto: PianoInstrument + entities: + - uid: 12256 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,0.5 + rot: -1.5707963267948966 rad + pos: -115.5,-1.5 parent: 2 - - uid: 11639 +- proto: Pickaxe + entities: + - uid: 12257 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-11.5 + rot: -1.5707963267948966 rad + pos: -20.477564,-16.346436 parent: 2 - - uid: 11640 + - uid: 12258 components: - type: Transform rot: -1.5707963267948966 rad - pos: -86.5,-12.5 + pos: -20.680689,-16.42456 parent: 2 - - uid: 11641 + - uid: 12259 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,-13.5 + pos: -220.35803,-12.395556 parent: 2 - - uid: 11642 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 12260 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,-14.5 + pos: -220.62386,-12.286181 parent: 2 - - uid: 11643 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: PillDermaline + entities: + - uid: 12261 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,-15.5 + pos: -114.757706,6.3703613 parent: 2 - - uid: 11644 + - uid: 12262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,6.5 + pos: -114.39833,6.6828613 parent: 2 - - uid: 11645 + - uid: 12263 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,6.5 + pos: -114.71083,6.7766113 parent: 2 - - uid: 11646 +- proto: PinionAirlockAssembly + entities: + - uid: 12264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,6.5 + pos: -123.5,5.5 parent: 2 - - uid: 11647 +- proto: PinpointerNuclear + entities: + - uid: 12265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,-13.5 + pos: -9.340643,4.7709813 parent: 2 - - uid: 11648 +- proto: PlasmaCanister + entities: + - uid: 12266 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-13.5 + pos: -192.5,1.5 parent: 2 - - uid: 11649 + - uid: 12267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,-13.5 + pos: -69.5,17.5 parent: 2 - - uid: 11650 + - uid: 12268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-26.5 + pos: -72.5,3.5 parent: 2 - - uid: 11651 +- proto: PlasmaWindowDirectional + entities: + - uid: 12269 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,-26.5 + pos: -80.5,0.5 parent: 2 - - uid: 11652 + - uid: 12270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-26.5 + rot: -1.5707963267948966 rad + pos: -76.5,-7.5 parent: 2 - - uid: 11653 + - uid: 12271 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,-26.5 + pos: -80.5,-7.5 parent: 2 - - uid: 11654 + - uid: 12272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,-26.5 + pos: -44.5,33.5 parent: 2 - - uid: 11655 + - uid: 12273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-26.5 + rot: -1.5707963267948966 rad + pos: -44.5,33.5 parent: 2 - - uid: 11656 + - uid: 12274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -127.5,-21.5 + rot: 3.141592653589793 rad + pos: -44.5,33.5 parent: 2 - - uid: 11657 + - uid: 12275 components: - type: Transform rot: 1.5707963267948966 rad - pos: -131.5,-19.5 + pos: -44.5,33.5 parent: 2 - - uid: 11658 + - uid: 12276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,-21.5 + rot: -1.5707963267948966 rad + pos: -76.5,0.5 parent: 2 - - uid: 11659 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 12277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -128.5,-21.5 + pos: -56.5,-29.5 parent: 2 - - uid: 11660 + - uid: 12278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,-18.5 + pos: -60.5,-29.5 parent: 2 - - uid: 11661 + - uid: 12279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,-20.5 + pos: -130.5,-21.5 parent: 2 - - uid: 11662 +- proto: PlasticFlapsClear + entities: + - uid: 12280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,18.5 + pos: -60.5,-27.5 parent: 2 - - uid: 11663 + - uid: 12281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,18.5 + pos: -56.5,-27.5 parent: 2 - - uid: 11664 +- proto: PlushieAtmosian + entities: + - uid: 12282 components: + - type: MetaData + desc: Вот как бывает. Не подашь азот на контур, а через минуту у тебя уже нет друзей. + name: одинокая игрушка - type: Transform - pos: -79.5,22.5 + pos: -83.46301,16.54411 parent: 2 - - uid: 11665 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushieBee + entities: + - uid: 7355 components: - type: Transform - pos: -79.5,23.5 - parent: 2 - - uid: 11666 + parent: 7354 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushieDiona + entities: + - uid: 7356 components: - type: Transform - pos: -79.5,24.5 - parent: 2 - - uid: 11667 + parent: 7354 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushieHampter + entities: + - uid: 12283 components: + - type: MetaData + desc: Заебался делать атмос. + name: 4abere1 - type: Transform - pos: -74.5,25.5 + pos: -172.7442,-11.9553385 parent: 2 - - uid: 11668 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} + - uid: 12284 components: - type: Transform - pos: -73.5,25.5 + pos: -128.16583,-4.3150854 parent: 2 - - uid: 11669 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} + - uid: 12285 components: - type: Transform - pos: -71.5,25.5 + pos: -129.8377,-3.5963354 parent: 2 - - uid: 11670 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} + - uid: 12286 components: - type: Transform - pos: -70.5,25.5 + pos: -121.55448,-11.488338 parent: 2 - - uid: 11671 + - uid: 12287 components: + - type: MetaData + desc: Заебался красить по... А и не важно. + name: Mr_Darky - type: Transform - pos: -68.5,25.5 + pos: -172.61246,-13.244895 parent: 2 - - uid: 11672 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: PlushieLamp + entities: + - uid: 12288 components: - type: Transform - pos: -67.5,25.5 + pos: -124.45549,-9.270971 parent: 2 - - uid: 11673 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushieNuke + entities: + - uid: 7357 components: - type: Transform - pos: -65.5,25.5 - parent: 2 - - uid: 11674 + parent: 7354 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushiePenguin + entities: + - uid: 12289 components: + - type: MetaData + desc: Линукс говно ебан.... + name: Плюшевый пингвин - type: Transform - pos: -64.5,25.5 + pos: -151.46347,13.422283 parent: 2 - - uid: 11675 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushieRatvar + entities: + - uid: 7358 components: - type: Transform - pos: -56.5,25.5 - parent: 2 - - uid: 11676 + parent: 7354 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} + - uid: 12290 components: - type: Transform - pos: -81.5,22.5 + pos: -122.59335,4.5410647 parent: 2 - - uid: 11677 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushieRGBee + entities: + - uid: 7359 components: - type: Transform - pos: -81.5,23.5 - parent: 2 - - uid: 11678 + parent: 7354 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushieSharkBlue + entities: + - uid: 7360 components: - type: Transform - pos: -81.5,24.5 - parent: 2 - - uid: 11679 + parent: 7354 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushieSharkGrey + entities: + - uid: 7361 + components: + - type: Transform + parent: 7354 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushieSharkPink + entities: + - uid: 7362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,1.5 - parent: 2 - - uid: 11680 + parent: 7354 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushieSnake + entities: + - uid: 7363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,25.5 - parent: 2 - - uid: 11681 + parent: 7354 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushieSpaceLizard + entities: + - uid: 7364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,25.5 - parent: 2 - - uid: 11682 + parent: 7354 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushieVox + entities: + - uid: 7365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,25.5 - parent: 2 - - uid: 11683 + parent: 7354 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushieXeno + entities: + - uid: 7366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,24.5 - parent: 2 - - uid: 11684 + parent: 7354 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PortableFlasher + entities: + - uid: 12291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,23.5 + pos: -152.5,-8.5 parent: 2 - - uid: 11685 + - uid: 12292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,22.5 + pos: -151.5,-8.5 parent: 2 - - uid: 11686 + - uid: 12293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,22.5 + pos: -168.5,9.5 parent: 2 - - uid: 11687 + - uid: 12294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,25.5 + pos: -173.5,8.5 parent: 2 - - uid: 11688 + - uid: 12295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,25.5 + pos: -171.5,11.5 parent: 2 - - uid: 11689 +- proto: PortableGeneratorPacman + entities: + - uid: 12296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,25.5 + pos: -182.5,-9.5 parent: 2 - - uid: 11690 + - uid: 12297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,25.5 + pos: -85.5,-34.5 parent: 2 - - uid: 11691 +- proto: PortableScrubber + entities: + - uid: 12298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-10.5 + pos: -81.5,-18.5 parent: 2 - - uid: 11692 + - uid: 12299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-11.5 + pos: -51.5,21.5 parent: 2 - - uid: 11693 + - uid: 12300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-12.5 + pos: -51.5,20.5 parent: 2 - - uid: 11694 + - uid: 12301 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,1.5 + pos: -51.5,19.5 parent: 2 - - uid: 11695 + - uid: 12302 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,1.5 + pos: -53.5,-0.5 parent: 2 - - uid: 11696 + - uid: 12303 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,1.5 + pos: -69.5,-7.5 parent: 2 - - uid: 11697 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 12304 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,1.5 + pos: -64.5,18.5 parent: 2 - - uid: 11698 +- proto: PosterContrabandClown + entities: + - uid: 12305 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-8.5 + pos: -121.5,-8.5 parent: 2 - - uid: 11699 +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 12306 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-8.5 + rot: 1.5707963267948966 rad + pos: -52.5,2.5 parent: 2 - - uid: 11700 +- proto: PosterContrabandSyndicateRecruitment + entities: + - uid: 12307 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-8.5 + pos: -112.5,-17.5 parent: 2 - - uid: 11701 +- proto: PosterContrabandWehWatches + entities: + - uid: 12308 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-8.5 + pos: -123.5,0.5 parent: 2 - - uid: 11702 +- proto: PosterLegitIan + entities: + - uid: 12309 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-13.5 + pos: -22.5,2.5 parent: 2 - - uid: 11703 +- proto: PosterLegitRenault + entities: + - uid: 12310 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-13.5 + pos: -66.5,-8.5 parent: 2 - - uid: 11704 +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 12311 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-13.5 + pos: -188.5,-14.5 parent: 2 - - uid: 11705 + - uid: 12312 components: - type: Transform - pos: -11.5,-0.5 + rot: -1.5707963267948966 rad + pos: -180.5,3.5 parent: 2 - - uid: 11706 +- proto: PosterLegitSafetyMothGlimmer + entities: + - uid: 12313 components: - type: Transform - pos: -11.5,-1.5 + rot: -1.5707963267948966 rad + pos: -190.5,11.5 parent: 2 - - uid: 11707 +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 12314 components: - type: Transform - pos: -142.5,-0.5 + pos: -188.5,-25.5 parent: 2 - - uid: 11708 +- proto: PosterLegitSafetyMothPiping + entities: + - uid: 12315 components: - type: Transform - pos: -139.5,-0.5 + pos: -100.5,15.5 parent: 2 - - uid: 11709 +- proto: PosterLegitSecWatch + entities: + - uid: 12316 components: - type: Transform - pos: -141.5,-0.5 + rot: 3.141592653589793 rad + pos: -158.5,17.5 parent: 2 - - uid: 11710 + - uid: 12317 components: - type: Transform - pos: -137.5,-0.5 + pos: -166.5,-1.5 parent: 2 - - uid: 11711 + - uid: 12318 components: - type: Transform - pos: -136.5,-0.5 + pos: -150.5,-1.5 parent: 2 - - uid: 11712 +- proto: PottedPlant10 + entities: + - uid: 12319 components: - type: Transform - pos: -131.5,-0.5 + pos: -176.5,3.5 parent: 2 - - uid: 11713 +- proto: PottedPlant11 + entities: + - uid: 12320 components: - type: Transform - pos: -132.5,-0.5 + pos: -214.42995,-33.63064 parent: 2 - - uid: 11714 +- proto: PottedPlant12 + entities: + - uid: 12321 components: - type: Transform - pos: -84.5,1.5 + pos: -230.56122,-25.661585 parent: 2 - - uid: 11715 +- proto: PottedPlant17 + entities: + - uid: 12322 components: - type: Transform - pos: -84.5,-0.5 + pos: -229.62302,-21.694424 parent: 2 - - uid: 11716 +- proto: PottedPlant21 + entities: + - uid: 12323 components: - type: Transform - pos: -85.5,-5.5 + pos: -218.5,-26.5 parent: 2 - - uid: 11717 + - uid: 12324 components: - type: Transform - pos: -87.5,-10.5 + pos: -230.657,-33.668137 parent: 2 - - uid: 11718 +- proto: PottedPlant22 + entities: + - uid: 12325 components: - type: Transform - pos: -111.5,-22.5 + pos: -229.45413,-29.697422 parent: 2 - - uid: 11719 +- proto: PottedPlant23 + entities: + - uid: 12326 components: - type: Transform - pos: -113.5,-22.5 + pos: -177.5,-0.5 parent: 2 - - uid: 11720 +- proto: PottedPlantRandom + entities: + - uid: 12327 components: - type: Transform - pos: -112.5,-22.5 + pos: -209.5,15.5 parent: 2 - - uid: 11721 + - uid: 12328 components: - type: Transform - pos: -131.5,-11.5 + pos: -205.5,15.5 parent: 2 - - uid: 11722 + - uid: 12329 components: - type: Transform - pos: -131.5,-12.5 + pos: -199.5,13.5 parent: 2 - - uid: 11723 + - uid: 12330 components: - type: Transform - pos: -131.5,-13.5 + pos: -194.5,16.5 parent: 2 - - uid: 11724 + - uid: 12331 components: - type: Transform - pos: -132.5,8.5 + pos: -193.5,11.5 parent: 2 - - uid: 11725 + - uid: 12332 components: - type: Transform - pos: -133.5,8.5 + pos: -195.5,6.5 parent: 2 - - uid: 11726 + - uid: 12333 components: - type: Transform - pos: -135.5,8.5 + pos: -187.5,-30.5 parent: 2 - - uid: 11727 + - uid: 12334 components: - type: Transform - pos: -136.5,8.5 + pos: -139.5,1.5 parent: 2 - - uid: 11728 + - uid: 12335 components: - type: Transform - pos: -84.5,-6.5 + pos: -27.5,9.5 parent: 2 - - uid: 11729 + - uid: 12336 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -126.5,13.5 + pos: -122.5,-1.5 parent: 2 - - uid: 11730 + - uid: 12337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -124.5,13.5 + pos: -126.5,-7.5 parent: 2 - - uid: 11731 + - uid: 12338 components: - type: Transform - pos: -140.5,-7.5 + pos: -122.5,-5.5 parent: 2 - - uid: 11732 + - uid: 12339 components: - type: Transform - pos: -142.5,-7.5 + pos: -3.5,-1.5 parent: 2 - - uid: 11733 + - uid: 12340 components: - type: Transform - pos: -141.5,-7.5 + pos: 6.5,-0.5 parent: 2 - - uid: 11734 + - uid: 12341 components: - type: Transform - pos: -112.5,18.5 + pos: 6.5,-6.5 parent: 2 - - uid: 11735 + - uid: 12342 components: - type: Transform - pos: -119.5,18.5 + pos: -3.5,-5.5 parent: 2 - - uid: 11736 + - uid: 12343 components: - type: Transform - pos: -117.5,18.5 + pos: -105.5,10.5 parent: 2 - - uid: 11737 + - uid: 12344 components: - type: Transform - pos: -110.5,18.5 + pos: -105.5,6.5 parent: 2 - - uid: 11738 + - uid: 12345 components: - type: Transform - pos: -139.5,-7.5 + pos: -6.5,-6.5 parent: 2 - - uid: 11739 + - uid: 12346 components: - type: Transform - pos: -118.5,18.5 + pos: -10.5,-4.5 parent: 2 - - uid: 11740 + - uid: 12347 components: - type: Transform - pos: -111.5,18.5 + pos: -182.5,-20.5 parent: 2 - - uid: 11741 + - uid: 12348 components: - type: Transform - pos: -138.5,-8.5 + pos: -190.5,-12.5 parent: 2 - - uid: 11742 + - uid: 12349 components: - type: Transform - pos: -136.5,-8.5 + pos: -39.5,-12.5 parent: 2 - - uid: 11743 + - uid: 12350 components: - type: Transform - pos: -143.5,-8.5 + pos: -39.5,-8.5 parent: 2 - - uid: 11744 + - uid: 12351 components: - type: Transform - pos: -145.5,-8.5 + pos: -6.5,-4.5 parent: 2 - - uid: 11745 + - uid: 12352 components: - type: Transform - pos: -87.5,-20.5 + pos: -6.5,-1.5 parent: 2 - - uid: 11746 + - uid: 12353 components: - type: Transform - pos: -86.5,-20.5 + pos: -161.5,-9.5 parent: 2 - - uid: 11747 + - uid: 12354 components: - type: Transform - pos: -88.5,-20.5 + pos: -156.5,-8.5 parent: 2 - - uid: 11748 + - uid: 12355 components: - type: Transform - pos: -32.5,-17.5 + pos: -126.5,-9.5 parent: 2 - - uid: 11749 + - uid: 12356 components: - type: Transform - pos: -33.5,-17.5 + pos: -124.5,-11.5 parent: 2 - - uid: 17100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-6.5 - parent: 17021 - - uid: 17101 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-5.5 - parent: 17021 - - uid: 17102 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-5.5 - parent: 17021 - - uid: 17103 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-4.5 - parent: 17021 - - uid: 17104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 17021 - - uid: 17105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-2.5 - parent: 17021 - - uid: 17106 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-1.5 - parent: 17021 - - uid: 17107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-1.5 - parent: 17021 - - uid: 17108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-0.5 - parent: 17021 -- proto: MoonBattlemap - entities: - - uid: 11750 + - uid: 12357 components: - type: Transform - pos: -43.51203,-18.372826 + pos: -99.5,12.5 parent: 2 -- proto: MopBucketFull - entities: - - uid: 11751 + - uid: 12358 components: - type: Transform - pos: -30.5,-8.5 + pos: -101.5,19.5 parent: 2 -- proto: MopItem - entities: - - uid: 6628 - components: - - type: Transform - parent: 6623 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Morgue - entities: - - uid: 11752 + - uid: 12359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -175.5,-0.5 + pos: -154.5,17.5 parent: 2 - - uid: 11753 + - uid: 12360 components: - type: Transform - rot: 3.141592653589793 rad - pos: -184.5,-28.5 + pos: -157.5,13.5 parent: 2 - - uid: 11754 + - uid: 12361 components: - type: Transform - rot: 3.141592653589793 rad - pos: -186.5,-28.5 + pos: -41.5,5.5 parent: 2 - - uid: 11755 + - uid: 12362 components: - type: Transform - rot: 3.141592653589793 rad - pos: -185.5,-28.5 + pos: -40.5,7.5 parent: 2 - - uid: 11756 + - uid: 12363 components: - type: Transform - rot: 3.141592653589793 rad - pos: -187.5,-28.5 + pos: -33.5,1.5 parent: 2 - - uid: 11757 + - uid: 12364 components: - type: Transform - pos: -42.5,9.5 + pos: -151.5,11.5 parent: 2 - - uid: 11758 + - uid: 12365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,10.5 + pos: -159.5,7.5 parent: 2 - - uid: 11759 + - uid: 12366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,9.5 + pos: -213.5,-20.5 parent: 2 - - uid: 11760 + - uid: 12367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,8.5 + pos: -158.5,16.5 parent: 2 -- proto: MouseTimedSpawner - entities: - - uid: 11761 + - uid: 12368 components: - type: Transform - pos: -213.5,-3.5 + pos: -195.5,-20.5 parent: 2 - - uid: 11762 + - uid: 12369 components: - type: Transform - pos: -31.5,-14.5 + pos: -177.5,-20.5 parent: 2 - - uid: 11763 + - uid: 12370 components: - type: Transform - pos: -197.5,7.5 + pos: -33.5,5.5 parent: 2 - - uid: 11764 + - uid: 12371 components: - type: Transform - pos: -59.5,-19.5 + pos: -160.5,5.5 parent: 2 - - uid: 11765 + - uid: 12372 components: - type: Transform - pos: -44.5,-22.5 + pos: -205.5,6.5 parent: 2 - - uid: 11766 + - uid: 12373 components: - type: Transform - pos: -92.5,-18.5 + pos: -211.5,-2.5 parent: 2 - - uid: 11767 + - uid: 12374 components: - type: Transform - pos: -127.5,-19.5 + pos: -205.5,10.5 parent: 2 - - uid: 11768 + - uid: 12375 components: - type: Transform - pos: -148.5,4.5 + pos: -214.5,-2.5 parent: 2 - - uid: 11769 + - uid: 12376 components: - type: Transform - pos: -186.5,-3.5 + pos: -161.5,2.5 parent: 2 - - uid: 11770 + - uid: 12377 components: - type: Transform - pos: -187.5,-27.5 + pos: -169.5,6.5 parent: 2 - - uid: 11771 + - uid: 12378 components: - type: Transform - pos: -200.5,15.5 + pos: -155.5,5.5 parent: 2 -- proto: Multitool - entities: - - uid: 11772 + - uid: 12379 components: - type: Transform - pos: -47.436264,4.738446 + pos: -137.5,7.5 parent: 2 - - type: Physics - angularDamping: 0 - linearDamping: 0 - - uid: 11773 + - uid: 12380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.40223265,-7.32084 + pos: -131.5,7.5 parent: 2 -- proto: MysteryFigureBox - entities: - - uid: 11774 + - uid: 12381 components: - type: Transform - pos: -44.027657,-18.4822 + pos: -137.5,2.5 parent: 2 - - uid: 11775 + - uid: 12382 components: - type: Transform - pos: -42.527657,-18.216576 + pos: -131.5,2.5 parent: 2 - - uid: 11776 + - uid: 12383 components: - type: Transform - pos: -42.82453,-18.497826 + pos: -110.5,13.5 parent: 2 -- proto: NitrogenCanister - entities: - - uid: 11777 + - uid: 12384 components: - type: Transform - pos: -67.5,18.5 + pos: -196.5,-11.5 parent: 2 - - uid: 11778 + - uid: 12385 components: - type: Transform - pos: -67.5,17.5 + pos: -196.5,-8.5 parent: 2 -- proto: NitrousOxideCanister - entities: - - uid: 11779 + - uid: 12386 components: - type: Transform - pos: -69.5,18.5 + pos: -35.5,9.5 parent: 2 -- proto: NodeScanner - entities: - - uid: 457 + - uid: 12387 components: - type: Transform - parent: 451 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage -- proto: NuclearBomb - entities: - - uid: 11780 + pos: -76.5,-16.5 + parent: 2 + - uid: 12388 components: - type: Transform - pos: -8.5,4.5 + pos: -72.5,-16.5 parent: 2 -- proto: NuclearBombKeg - entities: - - uid: 11781 + - uid: 12389 components: - type: Transform - pos: -49.5,-22.5 + pos: -83.5,2.5 parent: 2 -- proto: Ointment1 - entities: - - uid: 11782 + - uid: 12390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.25965,14.545029 + pos: -87.5,2.5 parent: 2 - - uid: 11783 + - uid: 12391 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.25965,14.607529 + pos: -83.5,-9.5 parent: 2 -- proto: OperatingTable - entities: - - uid: 11784 + - uid: 12392 components: - type: Transform - pos: -189.5,20.5 + pos: -87.5,-9.5 parent: 2 -- proto: OracleSpawner - entities: - - uid: 11785 + - uid: 12393 components: - type: Transform - pos: -40.5,4.5 + pos: -63.5,7.5 parent: 2 -- proto: OreBag - entities: - - uid: 11786 + - uid: 12394 components: - type: Transform - pos: -23.555689,-16.33081 + pos: -59.5,7.5 parent: 2 - - uid: 11787 + - uid: 12395 components: - type: Transform - pos: -23.415064,-16.502686 + pos: -78.5,7.5 parent: 2 -- proto: OreProcessor - entities: - - uid: 11788 + - uid: 12396 components: - type: Transform - pos: -81.5,-29.5 + pos: -74.5,7.5 parent: 2 -- proto: OreProcessorMachineCircuitboard - entities: - - uid: 11789 + - uid: 12397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.978727,-16.499563 + pos: -176.5,-8.5 parent: 2 -- proto: OxygenCanister - entities: - - uid: 11790 + - uid: 12398 components: - type: Transform - pos: -65.5,18.5 + pos: -176.5,-11.5 parent: 2 - - uid: 11791 + - uid: 12399 components: - type: Transform - pos: -65.5,17.5 + rot: 3.141592653589793 rad + pos: -147.5,0.5 parent: 2 -- proto: PackPaperRollingFilters - entities: - - uid: 6554 + - uid: 12400 components: - type: Transform - parent: 6553 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6555 + pos: -58.5,12.5 + parent: 2 + - uid: 12401 components: - type: Transform - parent: 6553 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: PaintingSadClown - entities: - - uid: 11792 + pos: -85.5,-16.5 + parent: 2 + - uid: 12402 components: - type: Transform - pos: -170.5,-7.5 + pos: -71.5,-10.5 parent: 2 -- proto: Paper - entities: - - uid: 11793 + - uid: 12403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.281036,2.851215 + pos: -71.5,3.5 parent: 2 - - uid: 11794 + - uid: 12404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.29666,2.601215 + pos: -64.5,1.5 parent: 2 - - uid: 11795 + - uid: 12405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.281036,2.52309 + pos: -62.5,0.5 parent: 2 - - uid: 11796 + - uid: 12406 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -133.35753,4.2197423 + pos: -62.5,-7.5 parent: 2 - - uid: 11797 + - uid: 12407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -133.35753,4.3603673 + pos: -51.5,-2.5 parent: 2 - - uid: 11798 + - uid: 12408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -133.32628,4.5166173 + pos: -146.5,-0.5 parent: 2 - - uid: 11799 + - uid: 12409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -135.54169,4.2353673 + pos: -162.5,-6.5 parent: 2 - - uid: 11800 + - uid: 12410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -135.54169,4.3759923 + pos: -158.5,-2.5 parent: 2 - - uid: 11801 + - uid: 12411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -135.57294,4.5322423 + pos: -129.5,0.5 parent: 2 - - uid: 11802 + - uid: 12412 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.64186,-19.020338 + pos: -179.5,-4.5 parent: 2 - - uid: 11803 + - uid: 12413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.438736,-19.035963 + pos: -184.5,-2.5 parent: 2 - - uid: 11804 + - uid: 12414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -165.74234,12.50206 + pos: -165.5,-4.5 parent: 2 - - uid: 11805 + - uid: 12415 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.53682,15.593892 + pos: -189.5,-4.5 parent: 2 - - uid: 11806 + - uid: 12416 components: - type: Transform - pos: -159.31479,-1.4318302 + pos: -197.5,-4.5 parent: 2 - - uid: 11807 + - uid: 12417 components: - type: Transform - pos: -158.40854,-0.18183023 + pos: -201.5,-2.5 parent: 2 - - uid: 11808 + - uid: 12418 components: - type: Transform - pos: -175.23003,7.4312243 + pos: -206.5,-2.5 parent: 2 - - uid: 11809 + - uid: 12419 components: - type: Transform - pos: -153.41608,-25.443504 + pos: -206.5,-0.5 parent: 2 - - uid: 11810 + - uid: 12420 components: - type: Transform - pos: -153.63483,-25.381004 + pos: -205.5,3.5 parent: 2 - - uid: 11811 + - uid: 12421 components: - type: Transform - pos: -157.60358,-25.412254 + pos: -213.5,-6.5 parent: 2 - - uid: 11812 + - uid: 12422 components: - type: Transform - pos: -157.38483,-25.412254 + pos: -214.5,-10.5 parent: 2 - - uid: 11813 + - uid: 12423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -162.50291,5.415268 + pos: -214.5,-14.5 parent: 2 - - uid: 17022 + - uid: 12424 components: - type: Transform - pos: 12.2621565,-5.3094954 - parent: 17021 - - type: Paper - stampState: paper_stamp-centcom - stampedBy: - - stampedColor: '#006600FF' - stampedName: stamp-component-stamped-name-centcom - content: >+ - Предупреждение NT-961-54 - - ------------------------------------------------------------------------------ В связи с повышенной опасностью кристалла суперматерии в дестабилизированном состоянии, под распоряжение командования станции был выдан спасательный шаттл под наименованием "Пилюля". - - ------------------------------------------------------------------------------ В случае поломки, утере шаттла или его оборудования командованию станции (или же лицам причастным) будет выписан взнос в размере половины от годовой заработной платы. - - - Цените иммущество, что поступило вам в руки. - - - Руководитель Инженерной Бригады ЦентКома - - Эмиль Орлов - - - type: SolutionContainerManager - solutions: null - containers: - - food - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.25 - - 0.25,-0.25 - - 0.25,0.25 - - -0.25,0.25 - mask: - - Impassable - - HighImpassable - layer: [] - density: 20 - hard: True - restitution: 0.3 - friction: 0.2 - flammable: - shape: !type:PhysShapeCircle - radius: 0.35 - position: 0,0 - mask: - - TableLayer - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - - type: ContainerContainer - containers: - solution@food: !type:ContainerSlot - ent: 17023 -- proto: PaperBin10 - entities: - - uid: 11814 + pos: -171.5,-4.5 + parent: 2 + - uid: 12425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,0.5 + pos: -18.5,-2.5 parent: 2 - - uid: 11815 + - uid: 12426 components: - type: Transform - pos: 0.5,-3.5 + pos: -59.5,0.5 parent: 2 - - uid: 11816 + - uid: 12427 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-10.5 + pos: -27.5,-1.5 parent: 2 - - uid: 11817 + - uid: 12428 components: - type: Transform - pos: -141.5,0.5 + pos: -29.5,2.5 parent: 2 - - uid: 11818 + - uid: 12429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.5,-11.5 + pos: -22.5,-7.5 parent: 2 -- proto: PaperWrittenAMEScribbles - entities: - - uid: 11819 + - uid: 12430 components: - type: Transform - pos: -57.4611,-9.579604 + pos: -12.5,5.5 parent: 2 -- proto: PartRodMetal - entities: - - uid: 11820 + - uid: 12431 components: - type: Transform - pos: -69.700714,-11.4195 + pos: -12.5,-9.5 parent: 2 - - uid: 11821 + - uid: 12432 components: - type: Transform - pos: -69.4818,-11.6695 + pos: -51.5,-9.5 parent: 2 - - uid: 11822 + - uid: 12433 components: - type: Transform - pos: -64.356575,3.6606102 + pos: -41.5,-0.5 parent: 2 -- proto: PassengerIDCard - entities: - - uid: 11823 + - uid: 12434 components: - type: Transform - pos: -169.5159,-24.122513 + pos: -36.5,-16.5 parent: 2 -- proto: Pen - entities: - - uid: 11824 + - uid: 12435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.59343,-18.664692 + pos: -36.5,5.5 parent: 2 - - uid: 11825 + - uid: 12436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -135.06596,6.6728673 + pos: -10.5,-12.5 parent: 2 - - uid: 11826 + - uid: 12437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -134.89409,6.5947423 + pos: -21.5,-4.5 parent: 2 - - uid: 11827 + - uid: 12438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -141.53133,0.60316616 + rot: 1.5707963267948966 rad + pos: -209.5,6.5 parent: 2 - - uid: 11828 + - uid: 12439 components: - type: Transform - pos: -165.61734,12.798935 + rot: 1.5707963267948966 rad + pos: -209.5,10.5 parent: 2 - - uid: 11829 + - uid: 12440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.17424,-11.534925 + pos: -187.5,-25.5 parent: 2 - - uid: 11830 + - uid: 12441 components: - type: Transform - rot: 3.141592653589793 rad - pos: -155.31807,15.515767 + pos: -185.5,-22.5 parent: 2 - - uid: 11831 + - uid: 12442 components: - type: Transform - pos: -175.5894,7.6655993 + pos: -66.5,-27.5 parent: 2 - - uid: 11832 +- proto: PowerCellRecharger + entities: + - uid: 6862 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -153.8692,-25.42788 + rot: 3.141592653589793 rad + pos: -75.5,-17.5 parent: 2 - - uid: 11833 + - uid: 12443 components: - type: Transform - pos: -157.15045,-25.33413 + rot: 3.141592653589793 rad + pos: -199.5,2.5 parent: 2 -- proto: PenHop - entities: - - uid: 11834 + - uid: 12444 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.286476,-5.6166334 + pos: -194.5,7.5 parent: 2 -- proto: PersonalAI - entities: - - uid: 11835 + - uid: 12445 components: - type: Transform - pos: -29.419008,-1.5378695 + rot: 1.5707963267948966 rad + pos: -161.5,5.5 parent: 2 - - uid: 11836 + - uid: 12446 components: - type: Transform - pos: -103.74425,19.70352 + rot: 1.5707963267948966 rad + pos: -58.5,-4.5 parent: 2 -- proto: PianoInstrument - entities: - - uid: 11837 + - uid: 12447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,-1.5 + rot: 1.5707963267948966 rad + pos: -64.5,-20.5 parent: 2 -- proto: Pickaxe - entities: - - uid: 11838 + - uid: 12448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.477564,-16.346436 + rot: 1.5707963267948966 rad + pos: -111.5,-6.5 parent: 2 - - uid: 11839 + - uid: 12449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.680689,-16.42456 + pos: -159.5,-1.5 parent: 2 -- proto: PillDermaline - entities: - - uid: 11840 + - uid: 12450 components: - type: Transform - pos: -114.757706,6.3703613 + rot: 3.141592653589793 rad + pos: -190.5,-16.5 parent: 2 - - uid: 11841 + - uid: 12451 components: - type: Transform - pos: -114.39833,6.6828613 + pos: -104.5,-6.5 parent: 2 - - uid: 11842 + - uid: 12452 components: - type: Transform - pos: -114.71083,6.7766113 + pos: -119.5,-5.5 parent: 2 -- proto: PinionAirlockAssembly - entities: - - uid: 11843 + - uid: 12453 components: - type: Transform - pos: -123.5,5.5 + rot: 1.5707963267948966 rad + pos: 2.5,0.5 parent: 2 -- proto: PinpointerNuclear - entities: - - uid: 11844 + - uid: 12454 components: - type: Transform - pos: -9.340643,4.7709813 + pos: -164.5,6.5 parent: 2 -- proto: PlasmaCanister - entities: - - uid: 11845 + - uid: 12455 components: - type: Transform - pos: -69.5,17.5 + rot: 1.5707963267948966 rad + pos: -18.5,-13.5 parent: 2 -- proto: PlasticFlapsAirtightClear - entities: - - uid: 11846 + - uid: 12456 components: - type: Transform - pos: -130.5,-21.5 + rot: 1.5707963267948966 rad + pos: -8.5,-1.5 parent: 2 - - uid: 11847 + - uid: 12457 components: - type: Transform - pos: -56.5,-27.5 + rot: 1.5707963267948966 rad + pos: -50.5,-4.5 parent: 2 - - uid: 11848 +- proto: PowerComputerCircuitboard + entities: + - uid: 12458 components: - type: Transform - pos: -60.5,-27.5 + pos: -53.419197,-3.2415996 parent: 2 -- proto: PlasticFlapsAirtightOpaque +- proto: Poweredlight entities: - - uid: 11849 + - uid: 12459 components: - type: Transform - pos: -56.5,-25.5 + rot: 3.141592653589793 rad + pos: -64.5,-27.5 parent: 2 - - uid: 11850 + - uid: 12460 components: - type: Transform - pos: -60.5,-25.5 + rot: 3.141592653589793 rad + pos: -179.5,-0.5 parent: 2 -- proto: PlushieAtmosian - entities: - - uid: 11851 + - uid: 12461 components: - - type: MetaData - desc: Вот как бывает. Не подашь азот на контур, а через минуту у тебя уже нет друзей. - name: одинокая игрушка - type: Transform - pos: -83.46301,16.54411 + pos: -175.5,3.5 parent: 2 - - type: ContainerContainer - containers: - item: !type:ContainerSlot {} -- proto: PlushieBee - entities: - - uid: 6948 + - uid: 12462 components: - type: Transform - parent: 6947 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - type: ContainerContainer - containers: - item: !type:ContainerSlot {} -- proto: PlushieDiona - entities: - - uid: 6949 + rot: -1.5707963267948966 rad + pos: -49.5,7.5 + parent: 2 + - uid: 12463 components: - type: Transform - parent: 6947 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - type: ContainerContainer - containers: - item: !type:ContainerSlot {} -- proto: PlushieGhost - entities: - - uid: 7681 + pos: -153.5,-2.5 + parent: 2 + - uid: 12464 components: - type: Transform - parent: 7680 - - type: Physics - canCollide: False - - type: ContainerContainer - containers: - item: !type:ContainerSlot {} -- proto: PlushieHampter - entities: - - uid: 11852 + rot: 3.141592653589793 rad + pos: -156.5,-4.5 + parent: 2 + - uid: 12465 components: - - type: MetaData - desc: Заебался делать атмос. - name: 4abere1 - type: Transform - pos: -172.7442,-11.9553385 + pos: -166.5,-2.5 parent: 2 - - type: ContainerContainer - containers: - item: !type:ContainerSlot {} - - uid: 11853 + - uid: 12466 components: - type: Transform - pos: -128.16583,-4.3150854 + rot: 3.141592653589793 rad + pos: -75.5,7.5 parent: 2 - - type: ContainerContainer - containers: - item: !type:ContainerSlot {} - - uid: 11854 + - uid: 12467 components: - type: Transform - pos: -129.8377,-3.5963354 + pos: -54.5,9.5 parent: 2 - - type: ContainerContainer - containers: - item: !type:ContainerSlot {} - - uid: 11855 + - uid: 12468 components: - type: Transform - pos: -121.55448,-11.488338 + pos: -134.5,-1.5 parent: 2 - - uid: 11856 + - uid: 12469 components: - - type: MetaData - desc: Заебался красить по... А и не важно. - name: Mr_Darky - type: Transform - pos: -172.61246,-13.244895 + pos: -145.5,-1.5 parent: 2 - - type: Physics - angularDamping: 0 - linearDamping: 0 -- proto: PlushieLamp - entities: - - uid: 11857 + - uid: 12470 components: - type: Transform - pos: -124.45549,-9.270971 + pos: -156.5,-16.5 parent: 2 - - type: ContainerContainer - containers: - item: !type:ContainerSlot {} - - uid: 11858 + - uid: 12471 components: - type: Transform - pos: -113.68425,-15.987703 + pos: -156.5,-6.5 parent: 2 - - type: ContainerContainer - containers: - item: !type:ContainerSlot {} -- proto: PlushieNuke - entities: - - uid: 6950 + - uid: 12472 components: - type: Transform - parent: 6947 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - type: ContainerContainer - containers: - item: !type:ContainerSlot {} -- proto: PlushiePenguin - entities: - - uid: 11859 + rot: -1.5707963267948966 rad + pos: -153.5,15.5 + parent: 2 + - uid: 12473 components: - - type: MetaData - desc: Линукс говно ебан.... - name: Плюшевый пингвин - type: Transform - pos: -151.46347,13.422283 + rot: 1.5707963267948966 rad + pos: -167.5,-18.5 parent: 2 - - type: ContainerContainer - containers: - item: !type:ContainerSlot {} -- proto: PlushieRatvar - entities: - - uid: 6951 + - uid: 12474 components: - type: Transform - parent: 6947 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - type: ContainerContainer - containers: - item: !type:ContainerSlot {} - - uid: 11860 + rot: -1.5707963267948966 rad + pos: -163.5,-22.5 + parent: 2 + - uid: 12475 components: - type: Transform - pos: -122.59335,4.5410647 + pos: -162.5,-23.5 parent: 2 - - type: ContainerContainer - containers: - item: !type:ContainerSlot {} -- proto: PlushieRGBee - entities: - - uid: 6952 + - uid: 12476 components: - type: Transform - parent: 6947 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - type: ContainerContainer - containers: - item: !type:ContainerSlot {} -- proto: PlushieSharkBlue - entities: - - uid: 6953 + rot: 3.141592653589793 rad + pos: -155.5,-21.5 + parent: 2 + - uid: 12477 components: - type: Transform - parent: 6947 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - type: ContainerContainer - containers: - item: !type:ContainerSlot {} -- proto: PlushieSharkGrey - entities: - - uid: 6954 + rot: 3.141592653589793 rad + pos: -19.5,-1.5 + parent: 2 + - uid: 12478 components: - type: Transform - parent: 6947 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - type: ContainerContainer - containers: - item: !type:ContainerSlot {} -- proto: PlushieSharkPink - entities: - - uid: 6955 + rot: 3.141592653589793 rad + pos: -13.5,-9.5 + parent: 2 + - uid: 12479 components: - type: Transform - parent: 6947 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - type: ContainerContainer - containers: - item: !type:ContainerSlot {} -- proto: PlushieSnake - entities: - - uid: 6956 + rot: 1.5707963267948966 rad + pos: -16.5,-15.5 + parent: 2 + - uid: 12480 components: - type: Transform - parent: 6947 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - type: ContainerContainer - containers: - item: !type:ContainerSlot {} -- proto: PlushieSpaceLizard - entities: - - uid: 6957 + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 2 + - uid: 12481 components: - type: Transform - parent: 6947 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - type: ContainerContainer - containers: - item: !type:ContainerSlot {} -- proto: PlushieVox - entities: - - uid: 6958 + pos: -15.5,5.5 + parent: 2 + - uid: 12482 components: - type: Transform - parent: 6947 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - type: ContainerContainer - containers: - item: !type:ContainerSlot {} -- proto: PlushieXeno - entities: - - uid: 6959 + rot: 3.141592653589793 rad + pos: -17.5,-5.5 + parent: 2 + - uid: 12483 components: - type: Transform - parent: 6947 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - type: ContainerContainer - containers: - item: !type:ContainerSlot {} -- proto: PortableFlasher - entities: - - uid: 11861 + rot: -1.5707963267948966 rad + pos: -86.5,-6.5 + parent: 2 + - uid: 12484 components: - type: Transform - pos: -152.5,-8.5 + pos: -20.5,-15.5 parent: 2 - - uid: 11862 + - uid: 12485 components: - type: Transform - pos: -151.5,-8.5 + rot: 3.141592653589793 rad + pos: -20.5,-11.5 parent: 2 - - uid: 11863 + - uid: 12486 components: - type: Transform - pos: -168.5,9.5 + rot: 3.141592653589793 rad + pos: -8.5,-12.5 parent: 2 - - uid: 11864 + - uid: 12487 components: - type: Transform - pos: -173.5,8.5 + pos: -22.5,-7.5 parent: 2 - - uid: 11865 + - uid: 12488 components: - type: Transform - pos: -171.5,11.5 + rot: 1.5707963267948966 rad + pos: -27.5,-13.5 parent: 2 -- proto: PortableGeneratorPacman - entities: - - uid: 11866 + - uid: 12489 components: - type: Transform - pos: -182.5,-9.5 + pos: -58.5,-0.5 parent: 2 - - uid: 11867 + - uid: 12490 components: - type: Transform - pos: -85.5,-34.5 + rot: -1.5707963267948966 rad + pos: -83.5,3.5 parent: 2 - - uid: 11868 + - uid: 12491 components: - type: Transform - pos: -191.5,14.5 + pos: -36.5,-14.5 parent: 2 -- proto: PortableScrubber - entities: - - uid: 11869 + - uid: 12492 components: - type: Transform - pos: -81.5,-18.5 + rot: -1.5707963267948966 rad + pos: -39.5,-10.5 parent: 2 - - uid: 11870 + - uid: 12493 components: - type: Transform - pos: -51.5,21.5 + rot: 1.5707963267948966 rad + pos: -43.5,-8.5 parent: 2 - - uid: 11871 + - uid: 12494 components: - type: Transform - pos: -51.5,20.5 + rot: -1.5707963267948966 rad + pos: -43.5,3.5 parent: 2 - - uid: 11872 + - uid: 12495 components: - type: Transform - pos: -51.5,19.5 + rot: 1.5707963267948966 rad + pos: -51.5,1.5 parent: 2 - - uid: 11873 + - uid: 12496 components: - type: Transform - pos: -53.5,-0.5 + pos: -85.5,-27.5 parent: 2 - - uid: 11874 + - uid: 12497 components: - type: Transform - pos: -69.5,-7.5 + rot: 3.141592653589793 rad + pos: -44.5,-2.5 parent: 2 -- proto: PosterContrabandAtmosiaDeclarationIndependence - entities: - - uid: 11875 + - uid: 12498 components: - type: Transform - pos: -64.5,18.5 + rot: 3.141592653589793 rad + pos: -56.5,-16.5 parent: 2 -- proto: PosterContrabandClown - entities: - - uid: 11876 + - uid: 12499 components: - type: Transform - pos: -121.5,-8.5 + rot: 3.141592653589793 rad + pos: -68.5,-16.5 parent: 2 -- proto: PosterContrabandDonk - entities: - - uid: 11877 + - uid: 12500 components: - type: Transform - pos: -199.5,13.5 + rot: 3.141592653589793 rad + pos: -80.5,-16.5 parent: 2 -- proto: PosterContrabandHighEffectEngineering - entities: - - uid: 11878 + - uid: 12501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,2.5 + rot: -1.5707963267948966 rad + pos: -86.5,-0.5 parent: 2 -- proto: PosterContrabandSyndicateRecruitment - entities: - - uid: 11879 + - uid: 12502 components: - type: Transform - pos: -112.5,-17.5 + pos: -29.5,-14.5 parent: 2 -- proto: PosterContrabandWehWatches - entities: - - uid: 11880 + - uid: 12503 components: - type: Transform rot: 3.141592653589793 rad - pos: -123.5,0.5 + pos: -64.5,7.5 parent: 2 -- proto: PosterLegitIan - entities: - - uid: 11881 + - uid: 12504 components: - type: Transform - pos: -22.5,2.5 + rot: -1.5707963267948966 rad + pos: -53.5,3.5 parent: 2 -- proto: PosterLegitPeriodicTable - entities: - - uid: 11882 + - uid: 12505 components: - type: Transform - pos: -192.5,-23.5 + rot: 3.141592653589793 rad + pos: -59.5,-7.5 parent: 2 -- proto: PosterLegitRenault - entities: - - uid: 11883 + - uid: 12506 components: - type: Transform - pos: -66.5,-8.5 + rot: -1.5707963267948966 rad + pos: -59.5,4.5 parent: 2 -- proto: PosterLegitSafetyMothEpi - entities: - - uid: 11884 + - uid: 12507 components: - type: Transform - pos: -188.5,-14.5 + rot: -1.5707963267948966 rad + pos: -64.5,-2.5 parent: 2 - - uid: 11885 + - uid: 12508 components: - type: Transform rot: -1.5707963267948966 rad - pos: -180.5,3.5 + pos: -64.5,-4.5 parent: 2 -- proto: PosterLegitSafetyMothPiping - entities: - - uid: 11886 + - uid: 12509 components: - type: Transform - pos: -100.5,15.5 + pos: -67.5,-1.5 parent: 2 -- proto: PosterLegitSecWatch - entities: - - uid: 11887 + - uid: 12510 components: - type: Transform rot: 3.141592653589793 rad - pos: -158.5,17.5 + pos: -68.5,-5.5 parent: 2 - - uid: 11888 + - uid: 12511 components: - type: Transform - pos: -166.5,-1.5 + rot: -1.5707963267948966 rad + pos: -71.5,-6.5 parent: 2 - - uid: 11889 + - uid: 12512 components: - type: Transform - pos: -150.5,-1.5 + pos: -76.5,-7.5 parent: 2 -- proto: PottedPlant10 - entities: - - uid: 11890 + - uid: 12513 components: - type: Transform - pos: -176.5,3.5 + rot: 3.141592653589793 rad + pos: -80.5,0.5 parent: 2 -- proto: PottedPlant23 - entities: - - uid: 11891 + - uid: 12514 components: - type: Transform - pos: -177.5,-0.5 + pos: -26.5,5.5 parent: 2 -- proto: PottedPlantRandom - entities: - - uid: 11892 + - uid: 12515 components: - type: Transform - pos: -139.5,1.5 + rot: -1.5707963267948966 rad + pos: -67.5,2.5 parent: 2 - - uid: 11893 + - uid: 12516 components: - type: Transform - pos: -27.5,9.5 + rot: -1.5707963267948966 rad + pos: -64.5,-10.5 parent: 2 - - uid: 11894 + - uid: 12517 components: - type: Transform - pos: -122.5,-1.5 + pos: -68.5,-7.5 parent: 2 - - uid: 11895 + - uid: 12518 components: - type: Transform - pos: -126.5,-7.5 + rot: 3.141592653589793 rad + pos: -58.5,14.5 parent: 2 - - uid: 11896 + - uid: 12519 components: - type: Transform - pos: -122.5,-5.5 + rot: 3.141592653589793 rad + pos: -54.5,19.5 parent: 2 - - uid: 11897 + - uid: 12520 components: - type: Transform - pos: -3.5,-1.5 + rot: 1.5707963267948966 rad + pos: -61.5,18.5 parent: 2 - - uid: 11898 + - uid: 12521 components: - type: Transform - pos: 6.5,-0.5 + rot: 3.141592653589793 rad + pos: -64.5,19.5 parent: 2 - - uid: 11899 + - uid: 12522 components: - type: Transform - pos: 6.5,-6.5 + pos: -63.5,24.5 parent: 2 - - uid: 11900 + - uid: 12523 + components: + - type: Transform + pos: -57.5,24.5 + parent: 2 + - uid: 12524 components: - type: Transform - pos: -3.5,-5.5 + rot: -1.5707963267948966 rad + pos: -54.5,22.5 parent: 2 - - uid: 11901 + - uid: 12525 components: - type: Transform - pos: -105.5,10.5 + pos: -53.5,21.5 parent: 2 - - uid: 11902 + - uid: 12526 components: - type: Transform - pos: -105.5,6.5 + pos: -69.5,24.5 parent: 2 - - uid: 11903 + - uid: 12527 components: - type: Transform - pos: -6.5,-6.5 + rot: 1.5707963267948966 rad + pos: -78.5,20.5 parent: 2 - - uid: 11904 + - uid: 12528 components: - type: Transform - pos: -10.5,-4.5 + pos: -75.5,24.5 parent: 2 - - uid: 11905 + - uid: 12529 components: - type: Transform - pos: -182.5,-20.5 + pos: -61.5,-21.5 parent: 2 - - uid: 11906 + - uid: 12530 components: - type: Transform - pos: -190.5,-12.5 + rot: 1.5707963267948966 rad + pos: -68.5,-23.5 parent: 2 - - uid: 11907 + - uid: 12531 components: - type: Transform - pos: -193.5,18.5 + rot: -1.5707963267948966 rad + pos: -55.5,-23.5 parent: 2 - - uid: 11908 + - uid: 12532 components: - type: Transform - pos: -199.5,18.5 + rot: 1.5707963267948966 rad + pos: -83.5,-32.5 parent: 2 - - uid: 11909 + - uid: 12533 components: - type: Transform - pos: -39.5,-12.5 + rot: 1.5707963267948966 rad + pos: -108.5,-8.5 parent: 2 - - uid: 11910 + - uid: 12534 components: - type: Transform - pos: -39.5,-8.5 + rot: 3.141592653589793 rad + pos: -105.5,-16.5 parent: 2 - - uid: 11911 + - uid: 12535 components: - type: Transform - pos: -6.5,-4.5 + rot: -1.5707963267948966 rad + pos: -103.5,-10.5 parent: 2 - - uid: 11912 + - uid: 12536 components: - type: Transform - pos: -6.5,-1.5 + pos: -101.5,-14.5 parent: 2 - - uid: 11913 + - uid: 12537 components: - type: Transform - pos: -161.5,-9.5 + rot: 3.141592653589793 rad + pos: -102.5,-4.5 parent: 2 - - uid: 11914 + - uid: 12538 components: - type: Transform - pos: -156.5,-8.5 + pos: -106.5,-2.5 parent: 2 - - uid: 11915 + - uid: 12539 components: - type: Transform - pos: -126.5,-9.5 + rot: -1.5707963267948966 rad + pos: -110.5,-5.5 parent: 2 - - uid: 11916 + - uid: 12540 components: - type: Transform - pos: -124.5,-11.5 + rot: 3.141592653589793 rad + pos: -118.5,-7.5 parent: 2 - - uid: 11917 + - uid: 12541 components: - type: Transform - pos: -99.5,12.5 + rot: 1.5707963267948966 rad + pos: -120.5,-1.5 parent: 2 - - uid: 11918 + - uid: 12542 components: - type: Transform - pos: -101.5,19.5 + pos: -153.5,5.5 parent: 2 - - uid: 11919 + - uid: 12543 components: - type: Transform - pos: -201.5,10.5 + pos: -162.5,5.5 parent: 2 - - uid: 11920 + - uid: 12544 components: - type: Transform - pos: -191.5,10.5 + rot: -1.5707963267948966 rad + pos: -167.5,6.5 parent: 2 - - uid: 11921 + - uid: 12545 components: - type: Transform - pos: -200.5,1.5 + rot: 1.5707963267948966 rad + pos: -173.5,4.5 parent: 2 - - uid: 11922 + - uid: 12546 components: - type: Transform - pos: -192.5,1.5 + pos: -155.5,11.5 parent: 2 - - uid: 11923 + - uid: 12547 components: - type: Transform - pos: -198.5,8.5 + pos: -160.5,-17.5 parent: 2 - - uid: 11924 + - uid: 12548 components: - type: Transform - pos: -194.5,6.5 + rot: 3.141592653589793 rad + pos: -171.5,-4.5 parent: 2 - - uid: 11925 + - uid: 12549 components: - type: Transform - pos: -196.5,1.5 + rot: 1.5707963267948966 rad + pos: -214.5,-10.5 parent: 2 - - uid: 11926 + - uid: 12550 components: - type: Transform - pos: -154.5,17.5 + rot: 3.141592653589793 rad + pos: -134.5,0.5 parent: 2 - - uid: 11927 + - uid: 12551 components: - type: Transform - pos: -157.5,13.5 + rot: 1.5707963267948966 rad + pos: -137.5,5.5 parent: 2 - - uid: 11928 + - uid: 12552 components: - type: Transform - pos: -41.5,5.5 + rot: -1.5707963267948966 rad + pos: -131.5,5.5 parent: 2 - - uid: 11929 + - uid: 12553 components: - type: Transform - pos: -40.5,7.5 + rot: 3.141592653589793 rad + pos: -143.5,0.5 parent: 2 - - uid: 11930 + - uid: 12554 components: - type: Transform - pos: -33.5,1.5 + pos: -140.5,3.5 parent: 2 - - uid: 11931 + - uid: 12555 components: - type: Transform - pos: -151.5,11.5 + pos: -182.5,-2.5 parent: 2 - - uid: 11932 + - uid: 12556 components: - type: Transform - pos: -159.5,7.5 + rot: 3.141592653589793 rad + pos: -190.5,-4.5 parent: 2 - - uid: 11933 + - uid: 12557 components: - type: Transform - pos: -213.5,-20.5 + pos: -201.5,-2.5 parent: 2 - - uid: 11934 + - uid: 12558 components: - type: Transform - pos: -158.5,16.5 + rot: 3.141592653589793 rad + pos: -210.5,-4.5 parent: 2 - - uid: 11935 + - uid: 12559 components: - type: Transform - pos: -186.5,15.5 + rot: 1.5707963267948966 rad + pos: -218.5,-3.5 parent: 2 - - uid: 11936 + - uid: 12560 components: - type: Transform - pos: -195.5,-20.5 + rot: -1.5707963267948966 rad + pos: -212.5,-18.5 parent: 2 - - uid: 11937 + - uid: 12561 components: - type: Transform - pos: -177.5,-20.5 + rot: -1.5707963267948966 rad + pos: -205.5,10.5 parent: 2 - - uid: 11938 + - uid: 12562 components: - type: Transform - pos: -33.5,5.5 + pos: -206.5,15.5 parent: 2 - - uid: 11939 + - uid: 12563 components: - type: Transform - pos: -160.5,5.5 + rot: 1.5707963267948966 rad + pos: -178.5,-10.5 parent: 2 - - uid: 11940 + - uid: 12564 components: - type: Transform - pos: -205.5,6.5 + rot: -1.5707963267948966 rad + pos: -176.5,-15.5 parent: 2 - - uid: 11941 + - uid: 12565 components: - type: Transform - pos: -187.5,6.5 + rot: 3.141592653589793 rad + pos: -177.5,-20.5 parent: 2 - - uid: 11942 + - uid: 12566 components: - type: Transform - pos: -211.5,-2.5 + rot: 1.5707963267948966 rad + pos: -183.5,-19.5 parent: 2 - - uid: 11943 + - uid: 12567 components: - type: Transform - pos: -205.5,10.5 + rot: -1.5707963267948966 rad + pos: -189.5,-19.5 parent: 2 - - uid: 11944 + - uid: 12568 components: - type: Transform - pos: -187.5,10.5 + pos: -182.5,-11.5 parent: 2 - - uid: 11945 + - uid: 12569 components: - type: Transform - pos: -214.5,-2.5 + rot: 3.141592653589793 rad + pos: -186.5,-13.5 parent: 2 - - uid: 11946 + - uid: 12570 components: - type: Transform - pos: -161.5,2.5 + pos: -186.5,-15.5 parent: 2 - - uid: 11947 + - uid: 12571 components: - type: Transform - pos: -169.5,6.5 + rot: 3.141592653589793 rad + pos: -195.5,-20.5 parent: 2 - - uid: 11948 + - uid: 12572 components: - type: Transform - pos: -155.5,5.5 + rot: 1.5707963267948966 rad + pos: -196.5,-14.5 parent: 2 - - uid: 11949 + - uid: 12573 components: - type: Transform - pos: -137.5,7.5 + rot: 1.5707963267948966 rad + pos: -10.5,-2.5 parent: 2 - - uid: 11950 + - uid: 12574 components: - type: Transform - pos: -131.5,7.5 + pos: -6.5,0.5 parent: 2 - - uid: 11951 + - uid: 12575 components: - type: Transform - pos: -137.5,2.5 + rot: 3.141592653589793 rad + pos: 1.5,-7.5 parent: 2 - - uid: 11952 + - uid: 12576 components: - type: Transform - pos: -131.5,2.5 + pos: 1.5,0.5 parent: 2 - - uid: 11953 + - uid: 12577 components: - type: Transform - pos: -110.5,13.5 + rot: 3.141592653589793 rad + pos: 6.5,-6.5 parent: 2 - - uid: 11954 + - uid: 12578 components: - type: Transform - pos: -196.5,-11.5 + pos: 6.5,-0.5 parent: 2 - - uid: 11955 + - uid: 12579 components: - type: Transform - pos: -196.5,-8.5 + pos: -3.5,-0.5 parent: 2 - - uid: 11956 + - uid: 12580 components: - type: Transform - pos: -35.5,9.5 + rot: 3.141592653589793 rad + pos: -3.5,-6.5 parent: 2 - - uid: 11957 + - uid: 12581 components: - type: Transform - pos: -76.5,-16.5 + rot: -1.5707963267948966 rad + pos: -23.5,-3.5 parent: 2 - - uid: 11958 + - uid: 12582 components: - type: Transform - pos: -72.5,-16.5 + rot: 1.5707963267948966 rad + pos: -55.5,-1.5 parent: 2 - - uid: 11959 + - uid: 12583 components: - type: Transform - pos: -83.5,2.5 + rot: -1.5707963267948966 rad + pos: -52.5,-5.5 parent: 2 - - uid: 11960 + - uid: 12584 components: - type: Transform - pos: -87.5,2.5 + rot: 1.5707963267948966 rad + pos: -149.5,11.5 parent: 2 - - uid: 11961 + - uid: 12585 components: - type: Transform - pos: -83.5,-9.5 + rot: -1.5707963267948966 rad + pos: -145.5,11.5 parent: 2 - - uid: 11962 + - uid: 12586 components: - type: Transform - pos: -87.5,-9.5 + rot: -1.5707963267948966 rad + pos: -145.5,15.5 parent: 2 - - uid: 11963 + - uid: 12587 components: - type: Transform - pos: -63.5,7.5 + rot: 1.5707963267948966 rad + pos: -149.5,15.5 parent: 2 - - uid: 11964 + - uid: 12588 components: - type: Transform - pos: -59.5,7.5 + pos: -147.5,18.5 parent: 2 - - uid: 11965 + - uid: 12589 components: - type: Transform - pos: -78.5,7.5 + rot: 3.141592653589793 rad + pos: -147.5,7.5 parent: 2 - - uid: 11966 + - uid: 12590 components: - type: Transform - pos: -74.5,7.5 + rot: 3.141592653589793 rad + pos: -155.5,13.5 parent: 2 - - uid: 11967 + - uid: 12591 components: - type: Transform - pos: -176.5,-8.5 + rot: 1.5707963267948966 rad + pos: -196.5,-8.5 parent: 2 - - uid: 11968 + - uid: 12592 components: - type: Transform - pos: -176.5,-11.5 + rot: 3.141592653589793 rad + pos: -138.5,-6.5 parent: 2 - - uid: 11969 + - uid: 12593 components: - type: Transform rot: 3.141592653589793 rad - pos: -147.5,0.5 + pos: -145.5,-6.5 parent: 2 - - uid: 11970 + - uid: 12594 components: - type: Transform - pos: -58.5,12.5 + rot: 1.5707963267948966 rad + pos: -117.5,-9.5 parent: 2 - - uid: 11971 + - uid: 12595 components: - type: Transform - pos: -85.5,-16.5 + rot: 1.5707963267948966 rad + pos: -209.5,10.5 parent: 2 - - uid: 11972 + - uid: 12596 components: - type: Transform - pos: -71.5,-10.5 + rot: 3.141592653589793 rad + pos: -208.5,0.5 parent: 2 - - uid: 11973 + - uid: 12597 components: - type: Transform - pos: -71.5,3.5 + rot: 3.141592653589793 rad + pos: -151.5,7.5 parent: 2 - - uid: 11974 + - uid: 12598 components: - type: Transform - pos: -64.5,1.5 + rot: 3.141592653589793 rad + pos: -111.5,-13.5 parent: 2 - - uid: 11975 + - uid: 12599 components: - type: Transform - pos: -62.5,0.5 + rot: 1.5707963267948966 rad + pos: -37.5,-10.5 parent: 2 - - uid: 11976 + - uid: 12600 components: - type: Transform - pos: -62.5,-7.5 + rot: 1.5707963267948966 rad + pos: -209.5,1.5 parent: 2 - - uid: 11977 + - uid: 12601 components: - type: Transform - pos: -51.5,-2.5 + pos: -31.5,-8.5 parent: 2 - - uid: 11978 + - uid: 12602 components: - type: Transform - pos: -146.5,-0.5 + rot: -1.5707963267948966 rad + pos: -218.5,-24.5 parent: 2 - - uid: 11979 + - uid: 12603 components: - type: Transform - pos: -162.5,-6.5 + rot: 1.5707963267948966 rad + pos: -185.5,-26.5 parent: 2 - - uid: 11980 + - uid: 12604 components: - type: Transform - pos: -158.5,-2.5 + pos: -183.5,-29.5 parent: 2 - - uid: 11981 + - uid: 12605 components: - type: Transform - pos: -129.5,0.5 + pos: -183.5,-22.5 parent: 2 - - uid: 11982 +- proto: PoweredLightPostSmall + entities: + - uid: 12606 components: - type: Transform - pos: -179.5,-4.5 + pos: -37.5,-5.5 parent: 2 - - uid: 11983 + - type: PointLight + radius: 6 + - uid: 12607 components: - type: Transform - pos: -184.5,-2.5 + pos: -30.5,-1.5 parent: 2 - - uid: 11984 + - type: PointLight + radius: 6 + - uid: 12608 components: - type: Transform - pos: -165.5,-4.5 + pos: -23.5,1.5 parent: 2 - - uid: 11985 + - type: PointLight + radius: 6 + - uid: 12609 components: - type: Transform - pos: -189.5,-4.5 + rot: -1.5707963267948966 rad + pos: -226.5,-7.5 parent: 2 - - uid: 11986 + - type: PointLight + energy: 1.5 + - uid: 12610 components: - type: Transform - pos: -197.5,-4.5 + rot: -1.5707963267948966 rad + pos: -218.5,-8.5 parent: 2 - - uid: 11987 + - type: PointLight + energy: 1.5 + - uid: 12611 components: - type: Transform - pos: -201.5,-2.5 + rot: -1.5707963267948966 rad + pos: -221.5,-1.5 parent: 2 - - uid: 11988 + - type: PointLight + energy: 1.5 +- proto: PoweredlightSodium + entities: + - uid: 12612 components: - type: Transform - pos: -206.5,-2.5 + pos: -69.5,9.5 parent: 2 - - uid: 11989 + - uid: 12613 components: - type: Transform - pos: -206.5,-0.5 + pos: -58.5,12.5 parent: 2 - - uid: 11990 + - uid: 12614 components: - type: Transform - pos: -205.5,3.5 + pos: -95.5,-2.5 parent: 2 - - uid: 11991 + - uid: 12615 components: - type: Transform - pos: -213.5,-6.5 + rot: -1.5707963267948966 rad + pos: -57.5,-3.5 parent: 2 - - uid: 11992 + - uid: 12616 components: - type: Transform - pos: -214.5,-10.5 + rot: -1.5707963267948966 rad + pos: -71.5,-2.5 parent: 2 - - uid: 11993 + - uid: 12617 components: - type: Transform - pos: -214.5,-18.5 + pos: -73.5,3.5 parent: 2 - - uid: 11994 + - uid: 12618 components: - type: Transform - pos: -214.5,-14.5 + rot: 1.5707963267948966 rad + pos: -57.5,4.5 parent: 2 - - uid: 11995 + - uid: 12619 components: - type: Transform - pos: -171.5,-4.5 + pos: -117.5,4.5 parent: 2 - - uid: 11996 + - uid: 12620 components: - type: Transform - pos: -18.5,-2.5 + rot: 3.141592653589793 rad + pos: -45.5,-7.5 parent: 2 - - uid: 11997 + - uid: 12621 components: - type: Transform - pos: -59.5,0.5 + pos: -48.5,-0.5 parent: 2 - - uid: 11998 + - uid: 12622 components: - type: Transform - pos: -27.5,-1.5 + pos: -52.5,-14.5 parent: 2 - - uid: 11999 + - uid: 12623 components: - type: Transform - pos: -29.5,2.5 + pos: -62.5,-14.5 parent: 2 - - uid: 12000 + - type: Timer + - uid: 12624 components: - type: Transform - pos: -22.5,-7.5 + pos: -74.5,-14.5 parent: 2 - - uid: 12001 + - uid: 12625 components: - type: Transform - pos: -12.5,5.5 + rot: -1.5707963267948966 rad + pos: -83.5,-10.5 parent: 2 - - uid: 12002 + - type: Timer + - uid: 12626 components: - type: Transform - pos: -12.5,-9.5 + pos: -80.5,9.5 parent: 2 - - uid: 12003 +- proto: PoweredSmallLight + entities: + - uid: 12627 components: - type: Transform - pos: -51.5,-9.5 + rot: -1.5707963267948966 rad + pos: -56.5,-28.5 parent: 2 - - uid: 12004 + - uid: 12628 components: - type: Transform - pos: -41.5,-0.5 + rot: 1.5707963267948966 rad + pos: -153.5,0.5 parent: 2 - - uid: 12005 + - uid: 12629 components: - type: Transform - pos: -36.5,-16.5 + rot: -1.5707963267948966 rad + pos: -27.5,8.5 parent: 2 - - uid: 12006 + - uid: 12630 components: - type: Transform - rot: 3.141592653589793 rad - pos: -207.5,15.5 + rot: 1.5707963267948966 rad + pos: -30.5,8.5 parent: 2 - - uid: 12007 + - uid: 12631 components: - type: Transform - pos: -187.5,-24.5 + rot: -1.5707963267948966 rad + pos: -12.5,9.5 parent: 2 - - uid: 12008 + - uid: 12632 components: - type: Transform - pos: -186.5,-0.5 + pos: -121.5,-9.5 parent: 2 - - uid: 12009 + - uid: 12633 components: - type: Transform - pos: -36.5,5.5 + rot: 1.5707963267948966 rad + pos: -128.5,-10.5 parent: 2 - - uid: 17012 + - uid: 12634 components: - type: Transform - pos: -10.5,-12.5 + rot: 1.5707963267948966 rad + pos: -124.5,-8.5 parent: 2 -- proto: PowerCellRecharger - entities: - - uid: 12010 + - uid: 12635 components: - type: Transform - pos: -159.5,-1.5 + pos: -99.5,10.5 parent: 2 - - uid: 12011 + - uid: 12636 components: - type: Transform - rot: 3.141592653589793 rad - pos: -190.5,-16.5 + rot: 1.5707963267948966 rad + pos: -68.5,-19.5 parent: 2 - - uid: 12012 + - uid: 12637 components: - type: Transform - pos: -104.5,-6.5 + pos: -86.5,12.5 parent: 2 - - uid: 12013 + - uid: 12638 components: - type: Transform - pos: -119.5,-5.5 + rot: -1.5707963267948966 rad + pos: -153.5,-11.5 parent: 2 - - uid: 12014 + - uid: 12639 components: - type: Transform - pos: -194.5,13.5 + rot: 1.5707963267948966 rad + pos: -158.5,-24.5 parent: 2 - - uid: 12015 + - uid: 12640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,0.5 + rot: -1.5707963267948966 rad + pos: -151.5,-7.5 parent: 2 - - uid: 12016 + - uid: 12641 components: - type: Transform - pos: -164.5,6.5 + rot: 3.141592653589793 rad + pos: -157.5,-12.5 parent: 2 -- proto: PowerComputerCircuitboard - entities: - - uid: 12017 + - uid: 12642 components: - type: Transform - pos: -53.419197,-3.2415996 + pos: -159.5,-10.5 parent: 2 -- proto: Poweredlight - entities: - - uid: 12018 + - uid: 12643 components: - type: Transform rot: 3.141592653589793 rad - pos: -179.5,-0.5 + pos: -147.5,2.5 parent: 2 - - uid: 12019 + - uid: 12644 components: - type: Transform - pos: -175.5,3.5 + rot: 1.5707963267948966 rad + pos: -154.5,-24.5 parent: 2 - - uid: 12020 + - uid: 12645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,7.5 + rot: 3.141592653589793 rad + pos: -106.5,-18.5 parent: 2 - - uid: 12021 + - uid: 12646 components: - type: Transform - pos: -199.5,8.5 + rot: 1.5707963267948966 rad + pos: -10.5,-6.5 parent: 2 - - uid: 12022 + - uid: 12647 components: - type: Transform - pos: -153.5,-2.5 + rot: 3.141592653589793 rad + pos: -20.5,-5.5 parent: 2 - - uid: 12023 + - uid: 12648 components: - type: Transform - rot: 3.141592653589793 rad - pos: -156.5,-4.5 + pos: -19.5,10.5 parent: 2 - - uid: 12024 + - uid: 12649 components: - type: Transform - pos: -166.5,-2.5 + rot: -1.5707963267948966 rad + pos: -16.5,9.5 parent: 2 - - uid: 12025 + - uid: 12650 components: - type: Transform rot: 3.141592653589793 rad - pos: -75.5,7.5 + pos: -7.5,-17.5 parent: 2 - - uid: 12026 + - uid: 12651 components: - type: Transform - pos: -54.5,9.5 + rot: 3.141592653589793 rad + pos: -12.5,-12.5 parent: 2 - - uid: 12027 + - uid: 12652 components: - type: Transform - pos: -134.5,-1.5 + pos: -6.5,-6.5 parent: 2 - - uid: 12028 + - uid: 12653 components: - type: Transform - pos: -145.5,-1.5 + rot: 1.5707963267948966 rad + pos: -4.5,-11.5 parent: 2 - - uid: 12029 + - uid: 12654 components: - type: Transform - pos: -156.5,-16.5 + rot: 3.141592653589793 rad + pos: -75.5,-4.5 parent: 2 - - uid: 12030 + - uid: 12655 components: - type: Transform - pos: -156.5,-6.5 + rot: -1.5707963267948966 rad + pos: -64.5,4.5 parent: 2 - - uid: 12031 + - uid: 12656 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -153.5,15.5 + rot: 3.141592653589793 rad + pos: -55.5,-12.5 parent: 2 - - uid: 12032 + - uid: 12657 components: - type: Transform rot: 1.5707963267948966 rad - pos: -167.5,-18.5 + pos: -58.5,-10.5 parent: 2 - - uid: 12033 + - uid: 12658 components: - type: Transform rot: -1.5707963267948966 rad - pos: -163.5,-22.5 + pos: -60.5,-10.5 parent: 2 - - uid: 12034 + - uid: 12659 components: - type: Transform - pos: -162.5,-23.5 + pos: -78.5,18.5 parent: 2 - - uid: 12035 + - uid: 12660 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,-21.5 + pos: -72.5,17.5 parent: 2 - - uid: 12036 + - uid: 12661 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,-1.5 + pos: -67.5,17.5 parent: 2 - - uid: 12037 + - uid: 12662 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-9.5 + pos: -56.5,29.5 parent: 2 - - uid: 12038 + - uid: 12663 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-15.5 + pos: -59.5,29.5 parent: 2 - - uid: 12039 + - uid: 12664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-2.5 + pos: -65.5,29.5 parent: 2 - - uid: 12040 + - uid: 12665 components: - type: Transform - pos: -15.5,5.5 + pos: -68.5,29.5 parent: 2 - - uid: 12041 + - uid: 12666 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-5.5 + pos: -71.5,29.5 parent: 2 - - uid: 12042 + - uid: 12667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,-6.5 + pos: -77.5,29.5 parent: 2 - - uid: 12043 + - uid: 12668 components: - type: Transform - pos: -20.5,-15.5 + pos: -74.5,29.5 parent: 2 - - uid: 12044 + - uid: 12669 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-11.5 + pos: -81.5,26.5 parent: 2 - - uid: 12045 + - uid: 12670 + components: + - type: Transform + pos: -81.5,20.5 + parent: 2 + - uid: 12671 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-12.5 + pos: -53.5,-25.5 parent: 2 - - uid: 12046 + - uid: 12672 components: - type: Transform - pos: -22.5,-7.5 + rot: 3.141592653589793 rad + pos: -84.5,-34.5 parent: 2 - - uid: 12047 + - uid: 12673 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-13.5 + pos: -37.5,-28.5 parent: 2 - - uid: 12048 + - uid: 12674 components: - type: Transform - pos: -58.5,-0.5 + rot: -1.5707963267948966 rad + pos: -103.5,-6.5 parent: 2 - - uid: 12049 + - uid: 12675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,3.5 + rot: 1.5707963267948966 rad + pos: -112.5,5.5 parent: 2 - - uid: 12050 + - uid: 12676 components: - type: Transform - pos: -36.5,-14.5 + rot: -1.5707963267948966 rad + pos: -155.5,0.5 parent: 2 - - uid: 12051 + - uid: 12677 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-10.5 + pos: -162.5,9.5 parent: 2 - - uid: 12052 + - uid: 12678 + components: + - type: Transform + pos: -166.5,12.5 + parent: 2 + - uid: 12679 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-8.5 + pos: -161.5,7.5 parent: 2 - - uid: 12053 + - uid: 12680 + components: + - type: Transform + pos: -159.5,12.5 + parent: 2 + - uid: 12681 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,3.5 + pos: -159.5,14.5 parent: 2 - - uid: 12054 + - uid: 12682 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,1.5 + pos: -164.5,-12.5 parent: 2 - - uid: 12055 + - uid: 12683 components: - type: Transform - pos: -85.5,-27.5 + rot: 3.141592653589793 rad + pos: -162.5,-9.5 parent: 2 - - uid: 12056 + - uid: 12684 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-2.5 + pos: -163.5,-6.5 parent: 2 - - uid: 12057 + - uid: 12685 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-16.5 + rot: -1.5707963267948966 rad + pos: -166.5,-12.5 parent: 2 - - uid: 12058 + - uid: 12686 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-16.5 + rot: -1.5707963267948966 rad + pos: -167.5,1.5 parent: 2 - - uid: 12059 + - uid: 12687 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-16.5 + rot: -1.5707963267948966 rad + pos: -171.5,1.5 parent: 2 - - uid: 12060 + - uid: 12688 components: - type: Transform rot: -1.5707963267948966 rad - pos: -86.5,-0.5 + pos: -163.5,1.5 parent: 2 - - uid: 12061 + - uid: 12689 components: - type: Transform - pos: -29.5,-14.5 + pos: -140.5,6.5 parent: 2 - - uid: 12062 + - uid: 12690 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,7.5 + rot: 1.5707963267948966 rad + pos: -184.5,-9.5 parent: 2 - - uid: 12063 + - uid: 12691 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.5,3.5 + pos: -186.5,-9.5 parent: 2 - - uid: 12064 + - uid: 12692 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-7.5 + rot: 1.5707963267948966 rad + pos: -10.5,3.5 parent: 2 - - uid: 12065 + - uid: 12693 components: - type: Transform rot: -1.5707963267948966 rad - pos: -59.5,4.5 + pos: -6.5,3.5 parent: 2 - - uid: 12066 + - uid: 12694 components: - type: Transform rot: -1.5707963267948966 rad - pos: -64.5,-2.5 + pos: -172.5,-7.5 parent: 2 - - uid: 12067 + - uid: 12695 + components: + - type: Transform + pos: -167.5,-7.5 + parent: 2 + - uid: 12696 components: - type: Transform rot: -1.5707963267948966 rad - pos: -64.5,-4.5 + pos: -101.5,22.5 parent: 2 - - uid: 12068 + - uid: 12697 components: - type: Transform - pos: -67.5,-1.5 + rot: 1.5707963267948966 rad + pos: -35.5,7.5 parent: 2 - - uid: 12069 + - uid: 12698 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-5.5 + pos: -175.5,7.5 parent: 2 - - uid: 12070 + - uid: 12699 components: - type: Transform rot: -1.5707963267948966 rad - pos: -71.5,-6.5 + pos: -101.5,18.5 parent: 2 - - uid: 12071 + - uid: 12700 components: - type: Transform - pos: -76.5,-7.5 + rot: 1.5707963267948966 rad + pos: -105.5,13.5 parent: 2 - - uid: 12072 + - uid: 12701 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,0.5 + pos: -100.5,6.5 parent: 2 - - uid: 12073 + - uid: 12702 components: - type: Transform - pos: -26.5,5.5 + rot: -1.5707963267948966 rad + pos: -99.5,13.5 parent: 2 - - uid: 12074 + - uid: 12703 components: - type: Transform rot: -1.5707963267948966 rad - pos: -67.5,2.5 + pos: -101.5,7.5 parent: 2 - - uid: 12075 + - uid: 12704 components: - type: Transform rot: -1.5707963267948966 rad - pos: -64.5,-10.5 + pos: -102.5,-0.5 parent: 2 - - uid: 12076 + - uid: 12705 components: - type: Transform - pos: -68.5,-7.5 + rot: 1.5707963267948966 rad + pos: -40.5,9.5 parent: 2 - - uid: 12077 + - uid: 12706 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,14.5 + pos: -106.5,6.5 parent: 2 - - uid: 12078 + - uid: 12707 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,19.5 + pos: -40.5,5.5 parent: 2 - - uid: 12079 + - uid: 12708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,18.5 + rot: 3.141592653589793 rad + pos: -40.5,1.5 parent: 2 - - uid: 12080 + - uid: 12709 components: - type: Transform rot: 3.141592653589793 rad - pos: -64.5,19.5 + pos: -33.5,1.5 parent: 2 - - uid: 12081 + - uid: 12710 components: - type: Transform - pos: -63.5,24.5 + pos: -33.5,5.5 parent: 2 - - uid: 12082 + - uid: 12711 components: - type: Transform - pos: -57.5,24.5 + rot: 1.5707963267948966 rad + pos: -98.5,-19.5 parent: 2 - - uid: 12083 + - uid: 12712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,22.5 + pos: -111.5,-21.5 parent: 2 - - uid: 12084 + - uid: 12713 components: - type: Transform - pos: -53.5,21.5 + rot: 3.141592653589793 rad + pos: -129.5,-20.5 parent: 2 - - uid: 12085 + - uid: 12714 components: - type: Transform - pos: -69.5,24.5 + rot: 3.141592653589793 rad + pos: -122.5,-16.5 parent: 2 - - uid: 12086 + - uid: 12715 components: - type: Transform rot: 1.5707963267948966 rad - pos: -78.5,20.5 + pos: -44.5,8.5 parent: 2 - - uid: 12087 + - uid: 12716 components: - type: Transform - pos: -75.5,24.5 + pos: -106.5,10.5 parent: 2 - - uid: 12088 + - uid: 12717 components: - type: Transform - pos: -61.5,-21.5 + rot: 3.141592653589793 rad + pos: -96.5,4.5 parent: 2 - - uid: 12089 + - uid: 12718 components: - type: Transform rot: 1.5707963267948966 rad - pos: -68.5,-23.5 + pos: -100.5,-7.5 parent: 2 - - uid: 12090 + - uid: 12719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-23.5 + rot: 1.5707963267948966 rad + pos: -129.5,-0.5 parent: 2 - - uid: 12091 + - uid: 12720 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,-32.5 + rot: 3.141592653589793 rad + pos: -128.5,-7.5 parent: 2 - - uid: 12092 + - uid: 12721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-14.5 + parent: 2 + - uid: 12722 components: - type: Transform rot: 1.5707963267948966 rad - pos: -108.5,-8.5 + pos: -47.5,-17.5 parent: 2 - - uid: 12093 + - uid: 12723 components: - type: Transform - rot: 3.141592653589793 rad - pos: -105.5,-16.5 + pos: -45.5,-14.5 parent: 2 - - uid: 12094 + - uid: 12724 components: - type: Transform rot: -1.5707963267948966 rad - pos: -103.5,-10.5 + pos: -41.5,-19.5 parent: 2 - - uid: 12095 + - uid: 12725 components: - type: Transform - pos: -101.5,-14.5 + pos: -83.5,-19.5 parent: 2 - - uid: 12096 + - uid: 12726 components: - type: Transform rot: 3.141592653589793 rad - pos: -102.5,-4.5 + pos: -91.5,-18.5 parent: 2 - - uid: 12097 + - uid: 12727 components: - type: Transform - pos: -106.5,-2.5 + pos: -100.5,-23.5 parent: 2 - - uid: 12098 + - uid: 12728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,-5.5 + pos: -118.5,-19.5 parent: 2 - - uid: 12099 + - uid: 12729 components: - type: Transform rot: 3.141592653589793 rad - pos: -118.5,-7.5 + pos: -12.5,14.5 parent: 2 - - uid: 12100 + - uid: 12730 components: - type: Transform rot: 1.5707963267948966 rad - pos: -120.5,-1.5 - parent: 2 - - uid: 12101 - components: - - type: Transform - pos: -153.5,5.5 + pos: -130.5,-10.5 parent: 2 - - uid: 12102 + - uid: 12731 components: - type: Transform - pos: -162.5,5.5 + rot: 1.5707963267948966 rad + pos: -77.5,-23.5 parent: 2 - - uid: 12103 + - uid: 12732 components: - type: Transform rot: -1.5707963267948966 rad - pos: -167.5,6.5 + pos: -71.5,-21.5 parent: 2 - - uid: 12104 + - type: PointLight + radius: 2 + - uid: 12733 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -173.5,4.5 + pos: -53.5,-18.5 parent: 2 - - uid: 12105 + - uid: 12734 components: - type: Transform - pos: -155.5,11.5 + rot: 1.5707963267948966 rad + pos: -60.5,-19.5 parent: 2 - - uid: 12106 + - uid: 12735 components: - type: Transform - pos: -160.5,-17.5 + rot: 1.5707963267948966 rad + pos: -39.5,-25.5 parent: 2 - - uid: 12107 + - uid: 12736 components: - type: Transform rot: 3.141592653589793 rad - pos: -171.5,-4.5 + pos: -83.5,-25.5 parent: 2 - - uid: 12108 + - uid: 12737 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -214.5,-10.5 + pos: -83.5,-21.5 parent: 2 - - uid: 12109 + - uid: 12738 components: - type: Transform - rot: 3.141592653589793 rad - pos: -134.5,0.5 + pos: -103.5,-28.5 parent: 2 - - uid: 12110 + - uid: 12739 components: - type: Transform rot: 1.5707963267948966 rad - pos: -137.5,5.5 + pos: -94.5,5.5 parent: 2 - - uid: 12111 + - uid: 12740 components: - type: Transform rot: -1.5707963267948966 rad - pos: -131.5,5.5 - parent: 2 - - uid: 12112 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -143.5,0.5 + pos: -91.5,5.5 parent: 2 - - uid: 12113 + - uid: 12741 components: - type: Transform - pos: -140.5,3.5 + rot: 1.5707963267948966 rad + pos: -93.5,10.5 parent: 2 - - uid: 12114 + - uid: 12742 components: - type: Transform - pos: -182.5,-2.5 + rot: 1.5707963267948966 rad + pos: -79.5,13.5 parent: 2 - - uid: 12115 + - uid: 12743 components: - type: Transform rot: 3.141592653589793 rad - pos: -190.5,-4.5 + pos: -70.5,14.5 parent: 2 - - uid: 12116 + - uid: 12744 components: - type: Transform - pos: -201.5,-2.5 + rot: -1.5707963267948966 rad + pos: -35.5,16.5 parent: 2 - - uid: 12117 + - uid: 12745 components: - type: Transform - rot: 3.141592653589793 rad - pos: -210.5,-4.5 + rot: 1.5707963267948966 rad + pos: -63.5,11.5 parent: 2 - - uid: 12118 + - uid: 12746 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -218.5,-3.5 + pos: -47.5,12.5 parent: 2 - - uid: 12119 + - uid: 12747 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -212.5,-18.5 + rot: 1.5707963267948966 rad + pos: -39.5,14.5 parent: 2 - - uid: 12120 + - uid: 12748 components: - type: Transform - pos: -186.5,15.5 + rot: 1.5707963267948966 rad + pos: -24.5,8.5 parent: 2 - - uid: 12121 + - uid: 12749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -205.5,10.5 + pos: -29.5,12.5 parent: 2 - - uid: 12122 + - uid: 12750 components: - type: Transform - pos: -206.5,15.5 + rot: 1.5707963267948966 rad + pos: -22.5,7.5 parent: 2 - - uid: 12123 + - uid: 12751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -185.5,9.5 + rot: 1.5707963267948966 rad + pos: -39.5,-19.5 parent: 2 - - uid: 12124 + - uid: 12752 components: - type: Transform rot: 1.5707963267948966 rad - pos: -187.5,2.5 + pos: -96.5,-12.5 parent: 2 - - uid: 12125 + - uid: 12753 components: - type: Transform rot: 3.141592653589793 rad - pos: -193.5,6.5 + pos: -39.5,-22.5 parent: 2 - - uid: 12126 + - type: PointLight + radius: 3 + - uid: 12754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -198.5,12.5 + pos: -123.5,7.5 parent: 2 - - uid: 12127 + - type: PointLight + radius: 3 + - uid: 12755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -194.5,17.5 + rot: 1.5707963267948966 rad + pos: -128.5,4.5 parent: 2 - - uid: 12128 + - uid: 12756 components: - type: Transform rot: 1.5707963267948966 rad - pos: -199.5,21.5 + pos: -126.5,10.5 parent: 2 - - uid: 12129 + - uid: 12757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -193.5,21.5 + rot: 1.5707963267948966 rad + pos: -124.5,1.5 parent: 2 - - uid: 12130 + - uid: 12758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -178.5,-10.5 + pos: -119.5,11.5 parent: 2 - - uid: 12131 + - uid: 12759 components: - type: Transform rot: -1.5707963267948966 rad - pos: -176.5,-15.5 + pos: -112.5,10.5 parent: 2 - - uid: 12132 + - uid: 12760 components: - type: Transform rot: 3.141592653589793 rad - pos: -177.5,-20.5 + pos: -117.5,6.5 parent: 2 - - uid: 12133 + - uid: 12761 components: - type: Transform rot: 1.5707963267948966 rad - pos: -183.5,-19.5 + pos: -121.5,14.5 parent: 2 - - uid: 12134 + - uid: 12762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -189.5,-19.5 + pos: -116.5,17.5 parent: 2 - - uid: 12135 + - uid: 12763 components: - type: Transform - rot: 3.141592653589793 rad - pos: -188.5,-25.5 + rot: -1.5707963267948966 rad + pos: -109.5,15.5 parent: 2 - - uid: 12136 + - uid: 12764 components: - type: Transform - pos: -183.5,-22.5 + rot: 1.5707963267948966 rad + pos: -161.5,0.5 parent: 2 - - uid: 12137 + - uid: 12765 components: - type: Transform - pos: -182.5,-11.5 + rot: 3.141592653589793 rad + pos: -116.5,-16.5 parent: 2 - - uid: 12138 + - uid: 12766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -192.5,-24.5 + pos: -120.5,-13.5 parent: 2 - - uid: 12139 + - uid: 12767 components: - type: Transform - rot: 3.141592653589793 rad - pos: -186.5,-28.5 + pos: -83.5,24.5 parent: 2 - - uid: 12140 + - uid: 12768 components: - type: Transform rot: 3.141592653589793 rad - pos: -186.5,-13.5 + pos: -83.5,16.5 parent: 2 - - uid: 12141 + - uid: 12769 components: - type: Transform - pos: -186.5,-15.5 + rot: 3.141592653589793 rad + pos: -124.5,-5.5 parent: 2 - - uid: 12142 + - uid: 12770 components: - type: Transform - rot: 3.141592653589793 rad - pos: -195.5,-20.5 + pos: -124.5,-1.5 parent: 2 - - uid: 12143 + - uid: 12771 components: - type: Transform rot: 1.5707963267948966 rad - pos: -196.5,-14.5 + pos: -144.5,-8.5 parent: 2 - - uid: 12144 + - uid: 12772 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-2.5 + pos: -137.5,-8.5 parent: 2 - - uid: 12145 + - uid: 12773 components: - type: Transform - pos: -6.5,0.5 + pos: -45.5,-22.5 parent: 2 - - uid: 12146 + - uid: 12774 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-7.5 + rot: 1.5707963267948966 rad + pos: -53.5,16.5 parent: 2 - - uid: 12147 + - uid: 12775 components: - type: Transform - pos: 1.5,0.5 + rot: 1.5707963267948966 rad + pos: -174.5,10.5 parent: 2 - - uid: 12148 + - uid: 12776 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-6.5 + pos: -172.5,14.5 parent: 2 - - uid: 12149 + - uid: 12777 components: - type: Transform - pos: 6.5,-0.5 + rot: -1.5707963267948966 rad + pos: -168.5,12.5 parent: 2 - - uid: 12150 + - uid: 12778 components: - type: Transform - pos: -3.5,-0.5 + rot: 3.141592653589793 rad + pos: -169.5,9.5 parent: 2 - - uid: 12151 + - uid: 12779 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-6.5 + rot: 1.5707963267948966 rad + pos: -60.5,-28.5 parent: 2 - - uid: 12152 + - uid: 12780 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-3.5 + pos: -219.5,0.5 parent: 2 - - uid: 12153 + - uid: 12781 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-1.5 + pos: -225.5,0.5 parent: 2 - - uid: 12154 + - uid: 12782 + components: + - type: Transform + pos: -224.5,-13.5 + parent: 2 + - uid: 12783 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,-5.5 + pos: -223.5,-16.5 parent: 2 - - uid: 12155 + - uid: 12784 components: - type: Transform - rot: 3.141592653589793 rad - pos: -196.5,1.5 + pos: -218.5,-16.5 parent: 2 - - uid: 12156 + - uid: 12785 components: - type: Transform - pos: -199.5,4.5 + pos: -219.5,-33.5 parent: 2 - - uid: 12157 + - uid: 12786 components: - type: Transform - pos: -193.5,4.5 + rot: 3.141592653589793 rad + pos: -229.5,-33.5 parent: 2 - - uid: 12158 + - uid: 12787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -149.5,11.5 + rot: 3.141592653589793 rad + pos: -229.5,-25.5 parent: 2 - - uid: 12159 + - uid: 12788 components: - type: Transform rot: -1.5707963267948966 rad - pos: -145.5,11.5 + pos: -226.5,-32.5 parent: 2 - - uid: 12160 + - uid: 12789 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -145.5,15.5 + pos: -224.5,-10.5 parent: 2 - - uid: 12161 + - type: PointLight + energy: 0.5 + - uid: 12790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -149.5,15.5 + pos: -190.5,-27.5 parent: 2 - - uid: 12162 + - type: PointLight + energy: 0.3 + - uid: 12791 components: - type: Transform - pos: -147.5,18.5 + rot: 1.5707963267948966 rad + pos: -191.5,-24.5 parent: 2 - - uid: 12163 + - uid: 12792 components: - type: Transform - rot: 3.141592653589793 rad - pos: -147.5,7.5 + rot: -1.5707963267948966 rad + pos: -225.5,-23.5 parent: 2 - - uid: 12164 + - uid: 12793 components: - type: Transform rot: 3.141592653589793 rad - pos: -155.5,13.5 + pos: -220.5,-20.5 parent: 2 - - uid: 12165 + - uid: 12794 components: - type: Transform rot: 1.5707963267948966 rad - pos: -196.5,-8.5 + pos: -219.5,-29.5 parent: 2 - - uid: 12166 + - uid: 12795 components: - type: Transform - rot: 3.141592653589793 rad - pos: -138.5,-6.5 + rot: 1.5707963267948966 rad + pos: -219.5,-37.5 parent: 2 - - uid: 12167 + - uid: 12796 components: - type: Transform - rot: 3.141592653589793 rad - pos: -145.5,-6.5 + pos: -216.5,-35.5 parent: 2 - - uid: 12168 + - uid: 12797 components: - type: Transform rot: 1.5707963267948966 rad - pos: -117.5,-9.5 + pos: -220.5,-12.5 parent: 2 - - uid: 12169 + - uid: 12798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -209.5,10.5 + rot: 3.141592653589793 rad + pos: -188.5,11.5 parent: 2 - - uid: 12170 + - uid: 12799 components: - type: Transform - rot: 3.141592653589793 rad - pos: -208.5,0.5 + pos: -188.5,5.5 parent: 2 - - uid: 12171 + - uid: 12800 components: - type: Transform - rot: 3.141592653589793 rad - pos: -151.5,7.5 + pos: -198.5,4.5 parent: 2 - - uid: 12172 + - uid: 12801 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,-13.5 + rot: -1.5707963267948966 rad + pos: -192.5,16.5 parent: 2 - - uid: 12173 + - uid: 12802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-10.5 + rot: 3.141592653589793 rad + pos: -194.5,12.5 parent: 2 - - uid: 12174 + - uid: 12803 components: - type: Transform rot: 1.5707963267948966 rad - pos: -209.5,1.5 + pos: -198.5,16.5 parent: 2 - - uid: 12175 + - uid: 12804 components: - type: Transform - pos: -31.5,-8.5 + rot: 3.141592653589793 rad + pos: -198.5,12.5 parent: 2 -- proto: PoweredLightPostSmall - entities: - - uid: 12176 + - uid: 12805 components: - type: Transform - pos: -37.5,-5.5 + pos: -194.5,4.5 parent: 2 - - type: PointLight - radius: 6 - - uid: 12177 + - uid: 12806 components: - type: Transform - pos: -30.5,-1.5 + pos: -198.5,10.5 parent: 2 - - type: PointLight - radius: 6 - - uid: 12178 + - uid: 12807 components: - type: Transform - pos: -23.5,1.5 + rot: 3.141592653589793 rad + pos: -201.5,3.5 parent: 2 - - type: PointLight - radius: 6 -- proto: PoweredlightSodium - entities: - - uid: 12179 + - uid: 12808 components: - type: Transform - pos: -69.5,9.5 + rot: 3.141592653589793 rad + pos: -193.5,7.5 parent: 2 - - uid: 12180 + - uid: 12809 components: - type: Transform - pos: -58.5,12.5 + pos: -201.5,13.5 parent: 2 - - uid: 12181 + - uid: 17653 components: - type: Transform - pos: -95.5,-2.5 - parent: 2 - - uid: 12182 + pos: 10.5,-1.5 + parent: 17565 + - uid: 17654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-3.5 - parent: 2 - - uid: 12183 + rot: 3.141592653589793 rad + pos: 10.5,-5.5 + parent: 17565 + - uid: 17655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-2.5 - parent: 2 - - uid: 12184 + rot: 3.141592653589793 rad + pos: 15.5,-5.5 + parent: 17565 + - uid: 17656 components: - type: Transform - pos: -73.5,3.5 - parent: 2 - - uid: 12185 + pos: 15.5,-1.5 + parent: 17565 +- proto: PoweredSmallLightEmpty + entities: + - uid: 12810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,4.5 + rot: 3.141592653589793 rad + pos: -198.5,6.5 parent: 2 - - uid: 12186 +- proto: PresentHalloweenRandom + entities: + - uid: 17722 components: - type: Transform - pos: -117.5,4.5 + pos: -118.58307,-1.3636999 parent: 2 - - uid: 12187 + - uid: 17723 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-7.5 + pos: -119.5349,13.724931 parent: 2 - - uid: 12188 + - uid: 17724 components: - type: Transform - pos: -48.5,-0.5 + pos: -105.51557,9.010317 parent: 2 - - uid: 12189 + - uid: 17725 components: - type: Transform - pos: -52.5,-14.5 + pos: -99.50593,9.05082 parent: 2 - - uid: 12190 + - uid: 17726 components: - type: Transform - pos: -62.5,-14.5 + pos: -105.54258,4.9734125 parent: 2 - - type: Timer - - uid: 12191 + - uid: 17727 components: - type: Transform - pos: -74.5,-14.5 + pos: -39.438004,-6.5131426 parent: 2 - - uid: 12192 + - uid: 17728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-10.5 + pos: -30.570478,-3.5698476 parent: 2 - - type: Timer - - uid: 12193 + - uid: 17729 components: - type: Transform - pos: -80.5,9.5 + pos: -27.51526,1.4891267 parent: 2 -- proto: PoweredSmallLight - entities: - - uid: 12194 + - uid: 17730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -153.5,0.5 + pos: -29.503891,4.063981 parent: 2 - - uid: 12195 + - uid: 17731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,8.5 + pos: -40.42995,-22.548117 parent: 2 - - uid: 12196 + - uid: 17732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,8.5 + pos: -94.46087,-10.45492 parent: 2 - - uid: 12197 + - uid: 17733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,9.5 + pos: -98.397705,-7.5015087 parent: 2 - - uid: 12198 + - uid: 17734 components: - type: Transform - pos: -121.5,-9.5 + pos: -113.65269,-4.8791447 parent: 2 - - uid: 12199 + - uid: 17735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -128.5,-10.5 + pos: -120.31056,-6.6478224 parent: 2 - - uid: 12200 + - uid: 17736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,-8.5 + pos: -130.13223,-4.3255897 parent: 2 - - uid: 12201 + - uid: 17737 components: - type: Transform - pos: -99.5,10.5 + pos: -134.499,4.31457 parent: 2 - - uid: 12202 + - uid: 17738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-19.5 + pos: -140.55176,-4.0747905 parent: 2 - - uid: 12203 + - uid: 17739 components: - type: Transform - pos: -86.5,12.5 + pos: -144.64372,-4.5608387 parent: 2 - - uid: 12204 + - uid: 17740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -153.5,-11.5 + pos: -207.46896,4.399472 parent: 2 - - uid: 12205 + - uid: 17741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -158.5,-24.5 + pos: -205.56479,8.654239 parent: 2 - - uid: 12206 + - uid: 17742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -151.5,-7.5 + pos: -224.35802,-5.6639233 parent: 2 - - uid: 12207 + - uid: 17743 components: - type: Transform - rot: 3.141592653589793 rad - pos: -157.5,-12.5 + pos: -216.67378,-8.607218 parent: 2 - - uid: 12208 + - uid: 17744 components: - type: Transform - pos: -159.5,-10.5 + pos: -228.69118,-16.43441 parent: 2 - - uid: 12209 + - uid: 17745 components: - type: Transform - rot: 3.141592653589793 rad - pos: -147.5,2.5 + pos: -216.49097,-20.448029 parent: 2 - - uid: 12210 + - uid: 17746 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -154.5,-24.5 + pos: -218.74457,-24.431349 parent: 2 - - uid: 12211 + - uid: 17747 components: - type: Transform - rot: 3.141592653589793 rad - pos: -106.5,-18.5 + pos: -229.50604,-23.202726 parent: 2 - - uid: 12212 + - uid: 17748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-6.5 + pos: -228.45267,-27.266632 parent: 2 - - uid: 12213 + - uid: 17749 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-5.5 + pos: -215.4771,-32.60506 parent: 2 - - uid: 12214 + - uid: 17750 components: - type: Transform - pos: -19.5,10.5 + pos: -224.41728,-34.427742 parent: 2 - - uid: 12215 +- proto: Protolathe + entities: + - uid: 12811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,9.5 + pos: -53.5,2.5 parent: 2 - - uid: 12216 + - uid: 12812 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-17.5 + pos: -197.5,1.5 parent: 2 - - uid: 12217 +- proto: PumpkinLantern + entities: + - uid: 17705 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-12.5 + pos: -124.62256,-13.26657 parent: 2 - - uid: 12218 + - uid: 17709 components: - type: Transform - pos: -6.5,-6.5 + pos: -28.574335,-1.4255311 parent: 2 - - uid: 12219 + - uid: 17712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-11.5 + pos: -55.5719,12.696464 parent: 2 - - uid: 12220 + - uid: 17713 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-4.5 + pos: -82.63767,-18.259356 parent: 2 - - uid: 12221 +- proto: PumpkinLanternLarge + entities: + - uid: 17710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,4.5 + pos: -29.632006,5.7201324 parent: 2 - - uid: 12222 + - uid: 17716 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-12.5 + pos: -224.53787,-20.332731 parent: 2 - - uid: 12223 +- proto: PumpkinLanternSmall + entities: + - uid: 17711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-10.5 + pos: -34.615818,-6.6706195 parent: 2 - - uid: 12224 + - uid: 17715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-10.5 + pos: -207.49011,12.53223 parent: 2 - - uid: 12225 + - uid: 17717 components: - type: Transform - pos: -78.5,18.5 + pos: -223.42555,-31.288277 parent: 2 - - uid: 12226 + - uid: 17718 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,17.5 + pos: -168.58463,-5.3738904 parent: 2 - - uid: 12227 + - uid: 17719 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,17.5 + pos: -124.00009,4.1166077 parent: 2 - - uid: 12228 + - uid: 17720 components: - type: Transform - pos: -56.5,29.5 + pos: -84.27772,13.407128 parent: 2 - - uid: 12229 + - uid: 17721 components: - type: Transform - pos: -59.5,29.5 + pos: -104.1805,-18.59719 parent: 2 - - uid: 12230 +- proto: Rack + entities: + - uid: 12813 components: - type: Transform - pos: -65.5,29.5 + rot: -1.5707963267948966 rad + pos: -174.5,14.5 parent: 2 - - uid: 12231 + - uid: 12814 components: - type: Transform - pos: -68.5,29.5 + pos: -175.5,11.5 parent: 2 - - uid: 12232 + - uid: 12815 components: - type: Transform - pos: -71.5,29.5 + rot: 1.5707963267948966 rad + pos: -171.5,14.5 parent: 2 - - uid: 12233 + - uid: 12816 components: - type: Transform - pos: -77.5,29.5 + rot: -1.5707963267948966 rad + pos: -173.5,9.5 parent: 2 - - uid: 12234 + - uid: 12817 components: - type: Transform - pos: -74.5,29.5 + rot: -1.5707963267948966 rad + pos: -175.5,12.5 parent: 2 - - uid: 12235 + - uid: 12818 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,26.5 + pos: -78.5,12.5 parent: 2 - - uid: 12236 + - uid: 12819 components: - type: Transform - pos: -81.5,20.5 + rot: -1.5707963267948966 rad + pos: -56.5,-5.5 parent: 2 - - uid: 12237 + - uid: 12820 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-25.5 + rot: -1.5707963267948966 rad + pos: -112.5,5.5 parent: 2 - - uid: 12238 + - uid: 12821 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,-34.5 + pos: -77.5,-24.5 parent: 2 - - uid: 12239 + - uid: 12822 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-28.5 + pos: -55.5,14.5 parent: 2 - - uid: 12240 + - uid: 12823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-6.5 + pos: -18.5,-14.5 parent: 2 - - uid: 12241 + - uid: 12824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,5.5 + pos: -18.5,-12.5 parent: 2 - - uid: 12242 + - uid: 12825 components: - type: Transform rot: -1.5707963267948966 rad - pos: -155.5,0.5 + pos: -65.5,3.5 parent: 2 - - uid: 12243 + - uid: 12826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -162.5,9.5 + pos: -53.5,-2.5 parent: 2 - - uid: 12244 + - uid: 12827 components: - type: Transform - pos: -166.5,12.5 + rot: 3.141592653589793 rad + pos: -151.5,-0.5 parent: 2 - - uid: 12245 + - uid: 12828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -161.5,7.5 + pos: -153.5,0.5 parent: 2 - - uid: 12246 + - uid: 12829 components: - type: Transform - pos: -159.5,12.5 + rot: 3.141592653589793 rad + pos: -152.5,-0.5 parent: 2 - - uid: 12247 + - uid: 12830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -159.5,14.5 + pos: -38.5,-19.5 parent: 2 - - uid: 12248 + - uid: 12831 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -164.5,-12.5 + pos: -25.5,7.5 parent: 2 - - uid: 12249 + - uid: 12832 components: - type: Transform - rot: 3.141592653589793 rad - pos: -162.5,-9.5 + pos: -50.5,-22.5 parent: 2 - - uid: 12250 + - uid: 12833 components: - type: Transform - pos: -163.5,-6.5 + pos: -39.5,17.5 parent: 2 - - uid: 12251 + - uid: 12834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -166.5,-12.5 + pos: -38.5,17.5 parent: 2 - - uid: 12252 + - uid: 12835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -167.5,1.5 + pos: -50.5,15.5 parent: 2 - - uid: 12253 + - uid: 12836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -171.5,1.5 + pos: -68.5,14.5 parent: 2 - - uid: 12254 + - uid: 12837 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -163.5,1.5 + pos: -47.5,8.5 parent: 2 - - uid: 12255 + - uid: 12838 components: - type: Transform - pos: -140.5,6.5 + pos: -124.5,-18.5 parent: 2 - - uid: 12256 + - uid: 12839 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -201.5,23.5 + pos: -119.5,-17.5 parent: 2 - - uid: 12257 + - uid: 12840 components: - type: Transform rot: -1.5707963267948966 rad - pos: -197.5,26.5 + pos: -97.5,-21.5 parent: 2 - - uid: 12258 + - uid: 12841 components: - type: Transform - rot: 3.141592653589793 rad - pos: -203.5,19.5 + rot: 1.5707963267948966 rad + pos: -46.5,14.5 parent: 2 - - uid: 12259 + - uid: 12842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -201.5,15.5 + pos: -129.5,2.5 parent: 2 - - uid: 12260 + - uid: 12843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -191.5,15.5 + pos: -110.5,10.5 parent: 2 - - uid: 12261 + - uid: 12844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -201.5,12.5 + pos: -64.5,15.5 parent: 2 - - uid: 12262 + - uid: 12845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -191.5,12.5 + pos: -86.5,12.5 parent: 2 - - uid: 12263 + - uid: 12846 components: - type: Transform rot: 1.5707963267948966 rad - pos: -184.5,-9.5 + pos: -170.5,14.5 parent: 2 - - uid: 12264 + - uid: 12847 components: - type: Transform rot: -1.5707963267948966 rad - pos: -186.5,-9.5 + pos: -173.5,14.5 parent: 2 - - uid: 12265 + - uid: 12848 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,3.5 + pos: -172.5,14.5 parent: 2 - - uid: 12266 + - uid: 12849 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,3.5 + pos: -174.5,9.5 parent: 2 - - uid: 12267 + - uid: 12850 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -195.5,26.5 + pos: -215.5,-35.5 parent: 2 - - uid: 12268 + - uid: 12851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -172.5,-7.5 + rot: 1.5707963267948966 rad + pos: -220.5,-12.5 parent: 2 - - uid: 12269 + - uid: 12852 components: - type: Transform - pos: -167.5,-7.5 + pos: -216.5,-37.5 parent: 2 - - uid: 12270 + - uid: 12853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,22.5 + pos: -215.5,-36.5 parent: 2 - - uid: 12271 + - uid: 12854 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,7.5 + pos: -58.5,-21.5 parent: 2 - - uid: 12272 +- proto: RadarConsoleCircuitboard + entities: + - uid: 12855 components: - type: Transform - pos: -175.5,7.5 + pos: -55.544197,-3.2415996 parent: 2 - - uid: 12273 +- proto: RadiationCollector + entities: + - uid: 12856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,18.5 + pos: -79.5,-7.5 parent: 2 - - uid: 12274 + - uid: 12857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,13.5 + pos: -77.5,0.5 parent: 2 - - uid: 12275 + - uid: 12858 components: - type: Transform - pos: -100.5,6.5 + pos: -79.5,0.5 parent: 2 - - uid: 12276 + - uid: 12859 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,13.5 + pos: -77.5,-7.5 parent: 2 - - uid: 12277 + - uid: 12860 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,7.5 + pos: -79.5,-0.5 parent: 2 - - uid: 12278 + - uid: 12861 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,-0.5 + pos: -77.5,-0.5 parent: 2 - - uid: 12279 + - uid: 12862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,9.5 + pos: -79.5,-6.5 parent: 2 - - uid: 12280 + - uid: 12863 components: - type: Transform - pos: -106.5,6.5 + pos: -77.5,-6.5 parent: 2 - - uid: 12281 + - uid: 12864 components: - type: Transform - pos: -40.5,5.5 + pos: -81.5,-4.5 parent: 2 - - uid: 12282 + - uid: 12865 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,1.5 + pos: -81.5,-2.5 parent: 2 - - uid: 12283 +- proto: Railing + entities: + - uid: 12866 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,1.5 + rot: 1.5707963267948966 rad + pos: -82.5,-43.5 parent: 2 - - uid: 12284 + - uid: 12867 components: - type: Transform - pos: -33.5,5.5 + rot: 1.5707963267948966 rad + pos: -82.5,-44.5 parent: 2 - - uid: 12285 + - uid: 12868 components: - type: Transform rot: 1.5707963267948966 rad - pos: -98.5,-19.5 + pos: -82.5,-42.5 parent: 2 - - uid: 12286 + - uid: 12869 components: - type: Transform - pos: -111.5,-21.5 + rot: 1.5707963267948966 rad + pos: -67.5,-9.5 parent: 2 - - uid: 12287 + - uid: 12870 components: - type: Transform - rot: 3.141592653589793 rad - pos: -129.5,-20.5 + rot: -1.5707963267948966 rad + pos: -66.5,-9.5 parent: 2 - - uid: 12288 + - uid: 12871 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.5,-16.5 + rot: -1.5707963267948966 rad + pos: -66.5,-10.5 parent: 2 - - uid: 12289 + - uid: 12872 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,8.5 + pos: -67.5,-10.5 parent: 2 - - uid: 12290 + - uid: 12873 components: - type: Transform - pos: -106.5,10.5 + rot: 1.5707963267948966 rad + pos: -74.5,17.5 parent: 2 - - uid: 12291 + - uid: 12874 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,4.5 + rot: -1.5707963267948966 rad + pos: -110.5,17.5 parent: 2 - - uid: 12292 + - uid: 12875 components: - type: Transform rot: 1.5707963267948966 rad - pos: -100.5,-7.5 + pos: -207.5,4.5 parent: 2 - - uid: 12293 + - uid: 12876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -129.5,-0.5 + rot: -1.5707963267948966 rad + pos: -207.5,4.5 parent: 2 - - uid: 12294 + - uid: 12877 components: - type: Transform - rot: 3.141592653589793 rad - pos: -128.5,-7.5 + rot: -1.5707963267948966 rad + pos: -207.5,6.5 parent: 2 - - uid: 12295 + - uid: 12878 components: - type: Transform rot: 1.5707963267948966 rad - pos: -191.5,18.5 + pos: -207.5,3.5 parent: 2 - - uid: 12296 + - uid: 12879 components: - type: Transform rot: 1.5707963267948966 rad - pos: -191.5,23.5 + pos: -207.5,2.5 parent: 2 - - uid: 12297 + - uid: 12880 components: - type: Transform rot: -1.5707963267948966 rad - pos: -41.5,-14.5 + pos: -207.5,2.5 parent: 2 - - uid: 12298 + - uid: 12881 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-17.5 + rot: -1.5707963267948966 rad + pos: -207.5,3.5 parent: 2 - - uid: 12299 + - uid: 12882 components: - type: Transform - pos: -45.5,-14.5 + rot: -1.5707963267948966 rad + pos: -207.5,7.5 parent: 2 - - uid: 12300 + - uid: 12883 components: - type: Transform rot: -1.5707963267948966 rad - pos: -41.5,-19.5 + pos: -207.5,8.5 parent: 2 - - uid: 12301 + - uid: 12884 components: - type: Transform - pos: -83.5,-19.5 + rot: 1.5707963267948966 rad + pos: -207.5,8.5 parent: 2 - - uid: 12302 + - uid: 12885 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-18.5 + rot: 1.5707963267948966 rad + pos: -207.5,7.5 parent: 2 - - uid: 12303 + - uid: 12886 components: - type: Transform - pos: -100.5,-23.5 + rot: 1.5707963267948966 rad + pos: -207.5,6.5 parent: 2 - - uid: 12304 + - uid: 12887 components: - type: Transform - pos: -118.5,-19.5 + rot: 1.5707963267948966 rad + pos: -207.5,10.5 parent: 2 - - uid: 12305 + - uid: 12888 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,14.5 + rot: 1.5707963267948966 rad + pos: -207.5,11.5 parent: 2 - - uid: 12306 + - uid: 12889 components: - type: Transform rot: 1.5707963267948966 rad - pos: -130.5,-10.5 + pos: -207.5,12.5 parent: 2 - - uid: 12307 + - uid: 12890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-23.5 + rot: -1.5707963267948966 rad + pos: -207.5,12.5 parent: 2 - - uid: 12308 + - uid: 12891 components: - type: Transform rot: -1.5707963267948966 rad - pos: -71.5,-21.5 + pos: -207.5,11.5 parent: 2 - - type: PointLight - radius: 2 - - uid: 12309 + - uid: 12892 components: - type: Transform - pos: -53.5,-18.5 + rot: -1.5707963267948966 rad + pos: -207.5,10.5 parent: 2 - - uid: 12310 + - uid: 12893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-19.5 + rot: 3.141592653589793 rad + pos: -129.5,-3.5 parent: 2 - - uid: 12311 + - uid: 12894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-25.5 + rot: 3.141592653589793 rad + pos: -128.5,-3.5 parent: 2 - - uid: 12312 + - uid: 12895 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-25.5 + pos: -128.5,-4.5 parent: 2 - - uid: 12313 + - uid: 12896 components: - type: Transform - pos: -83.5,-21.5 + pos: -129.5,-4.5 parent: 2 - - uid: 12314 + - uid: 12897 components: - type: Transform - pos: -103.5,-28.5 + rot: 1.5707963267948966 rad + pos: -116.5,-1.5 parent: 2 - - uid: 12315 +- proto: RailingCorner + entities: + - uid: 12898 components: - type: Transform rot: 1.5707963267948966 rad - pos: -94.5,5.5 + pos: -115.5,-2.5 parent: 2 - - uid: 12316 + - uid: 12899 components: - type: Transform rot: -1.5707963267948966 rad - pos: -91.5,5.5 + pos: -110.5,15.5 parent: 2 - - uid: 12317 + - uid: 12900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -93.5,10.5 + pos: -115.5,-0.5 parent: 2 - - uid: 12318 + - uid: 12901 components: - type: Transform rot: 1.5707963267948966 rad - pos: -79.5,13.5 + pos: -127.5,-3.5 parent: 2 - - uid: 12319 + - uid: 12902 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,14.5 + pos: -127.5,-4.5 parent: 2 - - uid: 12320 + - uid: 12903 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,16.5 + pos: -130.5,-4.5 parent: 2 - - uid: 12321 + - uid: 12904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,11.5 + rot: 3.141592653589793 rad + pos: -130.5,-3.5 parent: 2 - - uid: 12322 +- proto: RailingCornerSmall + entities: + - uid: 12905 components: - type: Transform - pos: -47.5,12.5 + rot: 3.141592653589793 rad + pos: -116.5,-0.5 parent: 2 - - uid: 12323 + - uid: 12906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,14.5 + rot: 3.141592653589793 rad + pos: -82.5,-41.5 parent: 2 - - uid: 12324 + - uid: 12907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,8.5 + rot: -1.5707963267948966 rad + pos: -82.5,-45.5 parent: 2 - - uid: 12325 + - uid: 12908 components: - type: Transform - pos: -29.5,12.5 + pos: -66.5,-11.5 parent: 2 - - uid: 12326 + - uid: 12909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,7.5 + rot: -1.5707963267948966 rad + pos: -67.5,-11.5 parent: 2 - - uid: 12327 + - uid: 12910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-19.5 + rot: 3.141592653589793 rad + pos: -74.5,18.5 parent: 2 - - uid: 12328 + - uid: 12911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,-12.5 + rot: -1.5707963267948966 rad + pos: -110.5,16.5 parent: 2 - - uid: 12329 + - uid: 12912 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,-22.5 + pos: -110.5,17.5 parent: 2 - - type: PointLight - radius: 3 - - uid: 12330 + - uid: 12913 components: - type: Transform - pos: -123.5,7.5 + rot: 1.5707963267948966 rad + pos: -109.5,17.5 parent: 2 - - type: PointLight - radius: 3 - - uid: 12331 + - uid: 12914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -128.5,4.5 + pos: -109.5,16.5 parent: 2 - - uid: 12332 + - uid: 12915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,-2.5 + parent: 2 +- proto: RandomAmmoBox + entities: + - uid: 12916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,10.5 + pos: -92.5,-8.5 parent: 2 - - uid: 12333 +- proto: RandomArtifactSpawner + entities: + - uid: 12917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,1.5 + pos: -188.5,4.5 parent: 2 - - uid: 12334 + - uid: 12918 components: - type: Transform - pos: -119.5,11.5 + pos: -188.5,11.5 parent: 2 - - uid: 12335 +- proto: RandomBoard + entities: + - uid: 12919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,10.5 + rot: 1.5707963267948966 rad + pos: -50.5,15.5 parent: 2 - - uid: 12336 +- proto: RandomBoards + entities: + - uid: 12920 components: - type: Transform - rot: 3.141592653589793 rad - pos: -117.5,6.5 + rot: -1.5707963267948966 rad + pos: -119.5,-17.5 parent: 2 - - uid: 12337 + - uid: 12921 components: - type: Transform rot: 1.5707963267948966 rad - pos: -121.5,14.5 + pos: -39.5,17.5 parent: 2 - - uid: 12338 + - uid: 12922 components: - type: Transform - pos: -116.5,17.5 + pos: -47.5,8.5 parent: 2 - - uid: 12339 +- proto: RandomBook + entities: + - uid: 12923 components: - type: Transform rot: -1.5707963267948966 rad - pos: -109.5,15.5 + pos: -46.464287,-19.087265 parent: 2 - - uid: 12340 +- proto: RandomBox + entities: + - uid: 12924 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -161.5,0.5 + pos: -70.5,-20.5 parent: 2 - - uid: 12341 + - uid: 12925 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,-16.5 + pos: -49.5,13.5 parent: 2 - - uid: 12342 +- proto: RandomDrinkBottle + entities: + - uid: 12926 components: - type: Transform - pos: -120.5,-13.5 + pos: -115.5,4.5 parent: 2 - - uid: 12343 +- proto: RandomDrinkGlass + entities: + - uid: 12927 components: - type: Transform - pos: -83.5,24.5 + pos: -115.5,2.5 parent: 2 - - uid: 12344 + - uid: 12928 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,16.5 + pos: -118.5,2.5 parent: 2 - - uid: 12345 + - uid: 12929 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,-5.5 + pos: -114.5,-4.5 parent: 2 - - uid: 12346 + - uid: 12930 components: - type: Transform - pos: -124.5,-1.5 + pos: -186.5,-27.5 parent: 2 - - uid: 12347 +- proto: RandomFoodMeal + entities: + - uid: 12931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-26.5 + pos: -113.5,-8.5 parent: 2 - - uid: 12348 + - uid: 12932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-26.5 + pos: -32.5,3.5 parent: 2 - - uid: 12349 + - uid: 12933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -144.5,-8.5 + pos: -111.5,-5.5 parent: 2 - - uid: 12350 + - uid: 12934 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -137.5,-8.5 + pos: -115.5,-5.5 parent: 2 - - uid: 12351 +- proto: RandomFoodSingle + entities: + - uid: 12935 components: - type: Transform - pos: -45.5,-22.5 + pos: -199.5,9.5 parent: 2 - - uid: 12352 + - uid: 12936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,16.5 + pos: -116.5,-8.5 parent: 2 - - uid: 12353 + - uid: 12937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -174.5,10.5 + pos: -118.5,-6.5 parent: 2 - - uid: 12354 + - uid: 12938 components: - type: Transform - pos: -172.5,14.5 + pos: -118.5,-0.5 parent: 2 - - uid: 12355 +- proto: RandomInstruments + entities: + - uid: 12939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -168.5,12.5 + rot: 1.5707963267948966 rad + pos: -38.5,17.5 parent: 2 - - uid: 12356 + - uid: 12940 components: - type: Transform - rot: 3.141592653589793 rad - pos: -169.5,9.5 + pos: -126.5,-11.5 parent: 2 - - uid: 17109 - components: - - type: Transform - pos: 10.5,-1.5 - parent: 17021 - - uid: 17110 +- proto: RandomPosterAny + entities: + - uid: 12941 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-5.5 - parent: 17021 - - uid: 17111 + pos: -78.5,-20.5 + parent: 2 + - uid: 12942 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-5.5 - parent: 17021 - - uid: 17112 + pos: -93.5,-17.5 + parent: 2 + - uid: 12943 components: - type: Transform - pos: 15.5,-1.5 - parent: 17021 -- proto: Protolathe - entities: - - uid: 12357 + pos: -106.5,-20.5 + parent: 2 + - uid: 12944 components: - type: Transform - pos: -195.5,19.5 + pos: -116.5,-21.5 parent: 2 - - uid: 12358 + - uid: 12945 components: - type: Transform - pos: -53.5,2.5 + pos: -125.5,-16.5 parent: 2 -- proto: Rack - entities: - - uid: 12359 + - uid: 12946 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -174.5,14.5 + pos: -126.5,5.5 parent: 2 - - uid: 12360 + - uid: 12947 components: - type: Transform - pos: -175.5,11.5 + pos: -113.5,7.5 parent: 2 - - uid: 12361 + - uid: 12948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -171.5,14.5 + pos: -87.5,13.5 parent: 2 - - uid: 12362 + - uid: 12949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -173.5,9.5 + pos: -94.5,9.5 parent: 2 - - uid: 12363 + - uid: 12950 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -175.5,12.5 + pos: -74.5,14.5 parent: 2 - - uid: 12364 + - uid: 12951 components: - type: Transform - pos: -78.5,12.5 + pos: -67.5,13.5 parent: 2 - - uid: 12365 + - uid: 12952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-5.5 + pos: -36.5,11.5 parent: 2 - - uid: 12366 + - uid: 12953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,5.5 + pos: -38.5,-17.5 parent: 2 - - uid: 12367 + - uid: 12954 components: - type: Transform - pos: -77.5,-24.5 + pos: -45.5,-21.5 parent: 2 - - uid: 12368 + - uid: 12955 components: - type: Transform - pos: -55.5,14.5 + pos: -54.5,-19.5 parent: 2 - - uid: 12369 + - uid: 12956 components: - type: Transform - pos: -18.5,-14.5 + pos: -70.5,-22.5 parent: 2 - - uid: 12370 + - uid: 12957 components: - type: Transform - pos: -18.5,-12.5 + pos: -99.5,-24.5 parent: 2 - - uid: 12371 + - uid: 12958 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,3.5 + pos: -32.5,12.5 parent: 2 - - uid: 12372 +- proto: RandomPosterContraband + entities: + - uid: 12959 components: - type: Transform - pos: -53.5,-2.5 + rot: 3.141592653589793 rad + pos: -40.5,16.5 parent: 2 - - uid: 12373 + - uid: 12960 components: - type: Transform rot: 3.141592653589793 rad - pos: -151.5,-0.5 + pos: -45.5,16.5 parent: 2 - - uid: 12374 + - uid: 12962 components: - type: Transform - pos: -153.5,0.5 + rot: 3.141592653589793 rad + pos: -215.5,-19.5 parent: 2 - - uid: 12375 + - uid: 12963 components: - type: Transform rot: 3.141592653589793 rad - pos: -152.5,-0.5 + pos: -211.5,-12.5 parent: 2 - - uid: 12376 +- proto: RandomPosterLegit + entities: + - uid: 12964 components: - type: Transform - pos: -38.5,-19.5 + pos: -44.5,-12.5 parent: 2 - - uid: 12377 + - uid: 12965 components: - type: Transform - pos: -25.5,7.5 + pos: -44.5,-3.5 parent: 2 - - uid: 12378 + - uid: 12966 components: - type: Transform - pos: -50.5,-22.5 + pos: -55.5,10.5 parent: 2 - - uid: 12379 + - uid: 12967 components: - type: Transform - pos: -39.5,17.5 + pos: -72.5,6.5 parent: 2 - - uid: 12380 + - uid: 12968 components: - type: Transform - pos: -38.5,17.5 + pos: -83.5,-17.5 parent: 2 - - uid: 12381 + - uid: 12969 components: - type: Transform - pos: -50.5,15.5 + pos: -63.5,-13.5 parent: 2 - - uid: 12382 + - uid: 12970 components: - type: Transform - pos: -68.5,14.5 + pos: -50.5,-17.5 parent: 2 - - uid: 12383 + - uid: 12971 components: - type: Transform - pos: -47.5,8.5 + pos: -28.5,-13.5 parent: 2 - - uid: 12384 + - uid: 12972 components: - type: Transform - pos: -124.5,-18.5 + pos: -15.5,-6.5 parent: 2 - - uid: 12385 + - uid: 12973 components: - type: Transform - pos: -119.5,-17.5 + pos: -11.5,1.5 parent: 2 - - uid: 12386 + - uid: 12974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,-21.5 + pos: -23.5,6.5 parent: 2 - - uid: 12387 + - uid: 12975 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,14.5 + rot: 3.141592653589793 rad + pos: -197.5,-5.5 parent: 2 - - uid: 12388 + - uid: 12976 components: - type: Transform - pos: -129.5,2.5 + rot: 3.141592653589793 rad + pos: -215.5,-5.5 parent: 2 - - uid: 12389 + - uid: 12977 components: - type: Transform - pos: -110.5,10.5 + rot: 3.141592653589793 rad + pos: -184.5,-14.5 parent: 2 - - uid: 12390 + - uid: 12978 components: - type: Transform - pos: -64.5,15.5 + pos: -190.5,-1.5 parent: 2 - - uid: 12391 + - uid: 12979 components: - type: Transform - pos: -86.5,12.5 + pos: -181.5,-5.5 parent: 2 - - uid: 12392 + - uid: 12980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -170.5,14.5 + pos: -170.5,-1.5 parent: 2 - - uid: 12393 + - uid: 12981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -173.5,14.5 + pos: -188.5,-29.5 parent: 2 - - uid: 12394 + - uid: 12982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -172.5,14.5 + pos: -182.5,-23.5 parent: 2 - - uid: 12395 +- proto: RandomSpawner + entities: + - uid: 12983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -174.5,9.5 + pos: -129.5,-24.5 parent: 2 -- proto: RadarConsoleCircuitboard - entities: - - uid: 12396 + - uid: 12984 components: - type: Transform - pos: -55.544197,-3.2415996 + pos: -128.5,-25.5 parent: 2 -- proto: RadiationCollector - entities: - - uid: 12397 + - uid: 12985 components: - type: Transform - pos: -79.5,-6.5 + pos: -120.5,14.5 parent: 2 - - uid: 12400 + - uid: 12986 components: - type: Transform - pos: -81.5,-2.5 + pos: -87.5,0.5 parent: 2 - - uid: 12402 + - uid: 12987 components: - type: Transform - pos: -79.5,-0.5 + pos: -91.5,-2.5 parent: 2 -- proto: Railing - entities: - - uid: 12403 + - uid: 12988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,-43.5 + pos: -102.5,-3.5 parent: 2 - - uid: 12404 + - uid: 12989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,-44.5 + pos: -107.5,-13.5 parent: 2 - - uid: 12405 + - uid: 12990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,-42.5 + pos: -105.5,-7.5 parent: 2 - - uid: 12406 + - uid: 12991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-9.5 + pos: -70.5,9.5 parent: 2 - - uid: 12407 + - uid: 12992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-9.5 + pos: -56.5,7.5 parent: 2 - - uid: 12408 + - uid: 12993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-10.5 + pos: -58.5,-7.5 parent: 2 - - uid: 12409 + - uid: 12994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-10.5 + pos: -65.5,-7.5 parent: 2 - - uid: 12410 + - uid: 12995 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,17.5 + pos: -69.5,-3.5 parent: 2 - - uid: 12411 + - uid: 12996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,17.5 + pos: -79.5,-9.5 parent: 2 - - uid: 12412 + - uid: 12997 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -207.5,4.5 + pos: -67.5,3.5 parent: 2 - - uid: 12413 + - uid: 12998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -207.5,4.5 + pos: -61.5,-9.5 parent: 2 - - uid: 12414 + - uid: 12999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -207.5,6.5 + pos: -55.5,-11.5 parent: 2 - - uid: 12415 + - uid: 13000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -207.5,3.5 + pos: -54.5,-9.5 parent: 2 - - uid: 12416 + - uid: 13001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -207.5,2.5 + pos: -130.5,-23.5 parent: 2 - - uid: 12417 + - uid: 13002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -207.5,2.5 + pos: -128.5,-22.5 parent: 2 - - uid: 12418 + - uid: 13003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -207.5,3.5 + pos: -131.5,-22.5 parent: 2 - - uid: 12419 + - uid: 13004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -207.5,7.5 + pos: -127.5,-23.5 parent: 2 - - uid: 12420 + - uid: 13005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -207.5,8.5 + pos: -126.5,-22.5 parent: 2 - - uid: 12421 + - uid: 13006 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -207.5,8.5 + pos: -125.5,-23.5 parent: 2 - - uid: 12422 + - uid: 13007 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -207.5,7.5 + pos: -126.5,-17.5 parent: 2 - - uid: 12423 + - uid: 13008 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -207.5,6.5 + pos: -129.5,-17.5 parent: 2 - - uid: 12424 + - uid: 13009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -207.5,10.5 + pos: -130.5,-18.5 parent: 2 - - uid: 12425 + - uid: 13010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -207.5,11.5 + pos: -127.5,-20.5 parent: 2 - - uid: 12426 + - uid: 13011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -207.5,12.5 + pos: -129.5,-20.5 parent: 2 - - uid: 12427 + - uid: 13012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -207.5,12.5 + pos: -127.5,-19.5 parent: 2 - - uid: 12428 + - uid: 13013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -207.5,11.5 + pos: -112.5,-21.5 parent: 2 - - uid: 12429 + - uid: 13014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -207.5,10.5 + pos: -49.5,5.5 parent: 2 - - uid: 12430 + - uid: 13015 components: - type: Transform - rot: 3.141592653589793 rad - pos: -129.5,-3.5 + pos: -84.5,8.5 parent: 2 - - uid: 12431 + - uid: 13016 components: - type: Transform - rot: 3.141592653589793 rad - pos: -128.5,-3.5 + rot: 1.5707963267948966 rad + pos: -67.5,12.5 parent: 2 - - uid: 12432 + - uid: 13017 components: - type: Transform - pos: -128.5,-4.5 + rot: 1.5707963267948966 rad + pos: -65.5,11.5 parent: 2 - - uid: 12433 + - uid: 13018 components: - type: Transform - pos: -129.5,-4.5 + rot: 1.5707963267948966 rad + pos: -65.5,15.5 parent: 2 - - uid: 12434 + - uid: 13019 components: - type: Transform rot: 1.5707963267948966 rad - pos: -116.5,-1.5 + pos: -69.5,15.5 parent: 2 -- proto: RailingCorner - entities: - - uid: 12435 + - uid: 13020 components: - type: Transform rot: 1.5707963267948966 rad - pos: -115.5,-2.5 + pos: -63.5,11.5 parent: 2 - - uid: 12436 + - uid: 13021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,15.5 + pos: -177.5,-18.5 parent: 2 - - uid: 12437 + - uid: 13022 components: - type: Transform - pos: -115.5,-0.5 + pos: -116.5,17.5 parent: 2 - - uid: 12438 + - uid: 13023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -127.5,-3.5 + pos: -111.5,14.5 parent: 2 - - uid: 12439 + - uid: 13024 components: - type: Transform - pos: -127.5,-4.5 + pos: -115.5,13.5 parent: 2 - - uid: 12440 + - uid: 13025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -130.5,-4.5 + pos: -120.5,11.5 parent: 2 - - uid: 12441 + - uid: 13026 components: - type: Transform - rot: 3.141592653589793 rad - pos: -130.5,-3.5 + pos: -111.5,8.5 parent: 2 -- proto: RailingCornerSmall - entities: - - uid: 12442 + - uid: 13027 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,-0.5 + pos: -196.5,-18.5 parent: 2 - - uid: 12443 + - uid: 13028 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,-41.5 + pos: -189.5,-14.5 parent: 2 - - uid: 12444 + - uid: 13029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-45.5 + pos: -182.5,-19.5 parent: 2 - - uid: 12445 + - uid: 13030 components: - type: Transform - pos: -66.5,-11.5 + pos: -178.5,-9.5 parent: 2 - - uid: 12446 + - uid: 13031 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-11.5 + pos: -176.5,-2.5 parent: 2 - - uid: 12447 + - uid: 13032 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,18.5 + pos: -191.5,-4.5 parent: 2 - - uid: 12448 + - uid: 13033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,16.5 + pos: -187.5,-2.5 parent: 2 - - uid: 12449 + - uid: 13034 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,17.5 + pos: -205.5,-0.5 parent: 2 - - uid: 12450 + - uid: 13035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -109.5,17.5 + pos: -207.5,9.5 parent: 2 - - uid: 12451 + - uid: 13036 components: - type: Transform - pos: -109.5,16.5 + pos: -209.5,15.5 parent: 2 - - uid: 12452 + - uid: 13037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,-2.5 + pos: -214.5,-4.5 parent: 2 -- proto: RandomAmmoBox - entities: - - uid: 12453 + - uid: 13038 components: - type: Transform - pos: -43.5,16.5 + pos: -212.5,-11.5 parent: 2 - - uid: 12454 + - uid: 13039 components: - type: Transform - pos: -92.5,-8.5 + pos: -214.5,-17.5 parent: 2 -- proto: RandomArtifactSpawner - entities: - - uid: 12455 + - uid: 13040 components: - type: Transform - pos: -198.5,26.5 + pos: -194.5,-9.5 parent: 2 - - uid: 12456 + - uid: 13041 components: - type: Transform - pos: -194.5,26.5 + pos: -170.5,-3.5 parent: 2 -- proto: RandomBoard - entities: - - uid: 12457 + - uid: 13042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,15.5 + pos: -158.5,-4.5 parent: 2 -- proto: RandomBoards - entities: - - uid: 12458 + - uid: 13043 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,-17.5 + pos: -169.5,-12.5 parent: 2 - - uid: 12459 + - uid: 13044 + components: + - type: Transform + pos: -226.5,-19.5 + parent: 2 + - uid: 13045 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,17.5 + pos: -220.5,-18.5 parent: 2 - - uid: 12460 + - uid: 13046 components: - type: Transform - pos: -47.5,8.5 + pos: -217.5,-19.5 parent: 2 -- proto: RandomBook - entities: - - uid: 12461 + - uid: 13047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.464287,-19.087265 + pos: -223.5,-35.5 parent: 2 -- proto: RandomBox - entities: - - uid: 12462 + - uid: 13048 components: - type: Transform - pos: -70.5,-20.5 + pos: -223.5,-20.5 parent: 2 - - uid: 12463 + - uid: 13049 components: - type: Transform - pos: -49.5,13.5 + pos: -218.5,-29.5 parent: 2 -- proto: RandomDrinkBottle - entities: - - uid: 12464 + - uid: 13050 components: - type: Transform - pos: -115.5,4.5 + pos: -215.5,-29.5 parent: 2 -- proto: RandomDrinkGlass - entities: - - uid: 12465 + - uid: 13051 components: - type: Transform - pos: -115.5,2.5 + pos: -215.5,-25.5 parent: 2 - - uid: 12466 + - uid: 13052 components: - type: Transform - pos: -118.5,2.5 + pos: -227.5,-25.5 parent: 2 - - uid: 12467 + - uid: 13053 components: - type: Transform - pos: -114.5,-4.5 + pos: -224.5,-27.5 parent: 2 -- proto: RandomFoodMeal - entities: - - uid: 12468 + - uid: 13054 components: - type: Transform - pos: -113.5,-8.5 + pos: -220.5,-39.5 parent: 2 - - uid: 12469 + - uid: 13055 components: - type: Transform - pos: -32.5,3.5 + pos: -123.5,-24.5 parent: 2 - - uid: 12470 + - uid: 13056 components: - type: Transform - pos: -111.5,-5.5 + pos: -124.5,-25.5 parent: 2 - - uid: 12471 + - uid: 13057 components: - type: Transform - pos: -115.5,-5.5 + pos: -126.5,-26.5 parent: 2 -- proto: RandomFoodSingle +- proto: RandomSpawner100 entities: - - uid: 12472 + - uid: 13058 components: - type: Transform - pos: -116.5,-8.5 + pos: -43.5,11.5 parent: 2 - - uid: 12473 + - uid: 13059 components: - type: Transform - pos: -118.5,-6.5 + pos: -48.5,13.5 parent: 2 - - uid: 12474 + - uid: 13060 components: - type: Transform - pos: -118.5,-0.5 + pos: -55.5,11.5 parent: 2 -- proto: RandomInstruments - entities: - - uid: 12475 + - uid: 13061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,17.5 + pos: -33.5,11.5 parent: 2 -- proto: RandomPosterAny +- proto: RandomVending entities: - - uid: 12476 + - uid: 13062 components: - type: Transform - pos: -78.5,-20.5 + pos: -89.5,1.5 parent: 2 - - uid: 12477 + - uid: 13063 components: - type: Transform - pos: -93.5,-17.5 + pos: -89.5,-8.5 parent: 2 - - uid: 12478 + - uid: 13064 components: - type: Transform - pos: -106.5,-20.5 + pos: -100.5,6.5 parent: 2 - - uid: 12479 + - uid: 13065 components: - type: Transform - pos: -116.5,-21.5 + pos: -170.5,-5.5 parent: 2 - - uid: 12480 + - uid: 13066 components: - type: Transform - pos: -125.5,-16.5 + pos: -23.5,-6.5 parent: 2 - - uid: 12481 + - uid: 13067 components: - type: Transform - pos: -126.5,5.5 + pos: -58.5,-16.5 parent: 2 - - uid: 12482 + - uid: 13068 components: - type: Transform - pos: -113.5,7.5 + pos: -57.5,-16.5 parent: 2 - - uid: 12483 + - uid: 13069 components: - type: Transform - pos: -87.5,13.5 + pos: -68.5,9.5 parent: 2 - - uid: 12484 + - uid: 13070 components: - type: Transform - pos: -94.5,9.5 + pos: -67.5,9.5 parent: 2 - - uid: 12485 + - uid: 13071 components: - type: Transform - pos: -74.5,14.5 + pos: -184.5,-4.5 parent: 2 - - uid: 12486 + - uid: 13072 components: - type: Transform - pos: -67.5,13.5 + pos: -188.5,-4.5 parent: 2 - - uid: 12487 + - uid: 13073 components: - type: Transform - pos: -36.5,11.5 + pos: -140.5,-6.5 parent: 2 - - uid: 12488 + - uid: 13074 components: - type: Transform - pos: -38.5,-17.5 + pos: -141.5,-6.5 parent: 2 - - uid: 12489 + - uid: 13075 components: - type: Transform - pos: -45.5,-21.5 + pos: -19.5,5.5 parent: 2 - - uid: 12490 + - uid: 13076 components: - type: Transform - pos: -54.5,-19.5 + pos: -209.5,0.5 parent: 2 - - uid: 12491 + - uid: 13077 components: - type: Transform - pos: -70.5,-22.5 + pos: -208.5,0.5 parent: 2 - - uid: 12492 +- proto: RandomVendingDrinks + entities: + - uid: 13078 components: - type: Transform - pos: -99.5,-24.5 + pos: -45.5,-12.5 parent: 2 - - uid: 12493 + - uid: 13079 components: - type: Transform - pos: -32.5,12.5 + pos: -5.5,-0.5 parent: 2 -- proto: RandomPosterContraband - entities: - - uid: 12494 + - uid: 13080 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,16.5 + pos: -100.5,14.5 parent: 2 - - uid: 12495 + - uid: 13081 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,16.5 + pos: -223.5,-16.5 parent: 2 - - uid: 12496 +- proto: RandomVendingSnacks + entities: + - uid: 13082 components: - type: Transform - pos: -74.5,-19.5 + pos: -46.5,-12.5 parent: 2 - - uid: 12497 + - uid: 13083 components: - type: Transform - rot: 3.141592653589793 rad - pos: -215.5,-19.5 + pos: -5.5,0.5 parent: 2 - - uid: 12498 + - uid: 13084 components: - type: Transform - rot: 3.141592653589793 rad - pos: -211.5,-12.5 + pos: -223.5,-17.5 parent: 2 - - uid: 12499 +- proto: RCDAmmo + entities: + - uid: 13085 components: - type: Transform - rot: 3.141592653589793 rad - pos: -184.5,15.5 + pos: -69.74717,1.291123 parent: 2 - - uid: 12500 +- proto: Recycler + entities: + - uid: 13086 components: - type: Transform rot: 3.141592653589793 rad - pos: -184.5,5.5 + pos: -130.5,-19.5 parent: 2 -- proto: RandomPosterLegit +- proto: ReinforcedGirder entities: - - uid: 12501 + - uid: 13087 components: - type: Transform - pos: -44.5,-12.5 + pos: -170.5,-19.5 parent: 2 - - uid: 12502 + - uid: 13088 components: - type: Transform - pos: -44.5,-3.5 + pos: -171.5,-16.5 parent: 2 - - uid: 12503 + - uid: 13089 components: - type: Transform - pos: -55.5,10.5 + pos: -177.5,9.5 parent: 2 - - uid: 12504 + - uid: 13090 components: - type: Transform - pos: -72.5,6.5 + pos: -177.5,11.5 parent: 2 - - uid: 12505 + - uid: 13091 components: - type: Transform - pos: -83.5,-17.5 + pos: -174.5,16.5 parent: 2 - - uid: 12506 + - uid: 13092 components: - type: Transform - pos: -63.5,-13.5 + pos: -172.5,16.5 parent: 2 - - uid: 12507 + - uid: 13093 components: - type: Transform - pos: -50.5,-17.5 + pos: -170.5,16.5 parent: 2 - - uid: 12508 + - uid: 13094 components: - type: Transform - pos: -28.5,-13.5 + pos: -168.5,16.5 parent: 2 - - uid: 12509 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 13095 components: - type: Transform - pos: -15.5,-6.5 + rot: 1.5707963267948966 rad + pos: -70.5,-9.5 parent: 2 - - uid: 12510 + - uid: 13096 components: - type: Transform - pos: -11.5,1.5 + rot: 1.5707963267948966 rad + pos: -70.5,-8.5 parent: 2 - - uid: 12511 + - uid: 13097 components: - type: Transform - pos: -23.5,6.5 + rot: 1.5707963267948966 rad + pos: -70.5,-7.5 parent: 2 - - uid: 12512 + - uid: 13098 components: - type: Transform - rot: 3.141592653589793 rad - pos: -193.5,17.5 + rot: 1.5707963267948966 rad + pos: -70.5,0.5 parent: 2 - - uid: 12513 + - uid: 13099 components: - type: Transform - rot: 3.141592653589793 rad - pos: -198.5,5.5 + rot: 1.5707963267948966 rad + pos: -70.5,1.5 parent: 2 - - uid: 12514 + - uid: 13100 components: - type: Transform - rot: 3.141592653589793 rad - pos: -197.5,-5.5 + rot: 1.5707963267948966 rad + pos: -70.5,2.5 parent: 2 - - uid: 12515 +- proto: ReinforcedUraniumWindow + entities: + - uid: 13101 components: - type: Transform - rot: 3.141592653589793 rad - pos: -215.5,-5.5 + pos: -82.5,-0.5 parent: 2 - - uid: 12516 + - uid: 13102 components: - type: Transform - rot: 3.141592653589793 rad - pos: -184.5,-14.5 + pos: -82.5,1.5 parent: 2 - - uid: 12517 + - uid: 13103 components: - type: Transform - rot: 3.141592653589793 rad - pos: -181.5,-23.5 + pos: -82.5,0.5 parent: 2 - - uid: 12518 + - uid: 13104 components: - type: Transform - pos: -190.5,-1.5 + pos: -77.5,-11.5 parent: 2 - - uid: 12519 + - uid: 13105 components: - type: Transform - pos: -181.5,-5.5 + pos: -82.5,-8.5 parent: 2 - - uid: 12520 + - uid: 13106 components: - type: Transform - pos: -170.5,-1.5 + pos: -82.5,-7.5 parent: 2 -- proto: RandomSpawner - entities: - - uid: 12521 + - uid: 13107 components: - type: Transform - pos: -120.5,14.5 + pos: -75.5,4.5 parent: 2 - - uid: 12522 + - uid: 13108 components: - type: Transform - pos: -87.5,0.5 + pos: -76.5,4.5 parent: 2 - - uid: 12523 + - uid: 13109 components: - type: Transform - pos: -91.5,-2.5 + pos: -77.5,4.5 parent: 2 - - uid: 12524 + - uid: 13110 components: - type: Transform - pos: -102.5,-3.5 + pos: -76.5,-11.5 parent: 2 - - uid: 12525 + - uid: 13111 components: - type: Transform - pos: -107.5,-13.5 + pos: -75.5,-11.5 parent: 2 - - uid: 12526 + - uid: 13112 components: - type: Transform - pos: -105.5,-7.5 + pos: -83.5,-3.5 parent: 2 - - uid: 12527 + - uid: 13113 components: - type: Transform - pos: -70.5,9.5 + pos: -82.5,-6.5 parent: 2 - - uid: 12528 + - uid: 13114 components: - type: Transform - pos: -56.5,7.5 + pos: -83.5,-5.5 parent: 2 - - uid: 12529 + - uid: 13115 components: - type: Transform - pos: -81.5,-6.5 + pos: -83.5,-4.5 parent: 2 - - uid: 12530 + - uid: 13116 components: - type: Transform - pos: -58.5,-7.5 + pos: -83.5,-2.5 parent: 2 - - uid: 12531 + - uid: 13117 components: - type: Transform - pos: -65.5,-7.5 + pos: -83.5,-1.5 parent: 2 - - uid: 12532 +- proto: ReinforcedWindow + entities: + - uid: 13118 components: - type: Transform - pos: -69.5,-3.5 + rot: -1.5707963267948966 rad + pos: -185.5,-1.5 parent: 2 - - uid: 12533 + - uid: 13119 components: - type: Transform - pos: -75.5,-7.5 + rot: -1.5707963267948966 rad + pos: -186.5,-1.5 parent: 2 - - uid: 12534 + - uid: 13120 components: - type: Transform - pos: -79.5,-9.5 + rot: -1.5707963267948966 rad + pos: -187.5,-1.5 parent: 2 - - uid: 12535 + - uid: 13121 components: - type: Transform - pos: -67.5,3.5 + rot: -1.5707963267948966 rad + pos: -180.5,0.5 parent: 2 - - uid: 12536 + - uid: 13122 components: - type: Transform - pos: -61.5,-9.5 + rot: -1.5707963267948966 rad + pos: -180.5,1.5 parent: 2 - - uid: 12537 + - uid: 13123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -180.5,2.5 + parent: 2 + - uid: 13124 + components: + - type: Transform + pos: -29.5,6.5 + parent: 2 + - uid: 13125 + components: + - type: Transform + pos: -28.5,6.5 + parent: 2 + - uid: 13126 components: - type: Transform - pos: -55.5,-11.5 + pos: -63.5,-17.5 parent: 2 - - uid: 12538 + - uid: 13127 components: - type: Transform - pos: -54.5,-9.5 + rot: 3.141592653589793 rad + pos: -206.5,16.5 parent: 2 - - uid: 12539 + - uid: 13128 components: - type: Transform - pos: -130.5,-23.5 + rot: -1.5707963267948966 rad + pos: -210.5,8.5 parent: 2 - - uid: 12540 + - uid: 13129 components: - type: Transform - pos: -128.5,-22.5 + rot: -1.5707963267948966 rad + pos: -210.5,7.5 parent: 2 - - uid: 12541 + - uid: 13130 components: - type: Transform - pos: -131.5,-22.5 + rot: -1.5707963267948966 rad + pos: -210.5,4.5 parent: 2 - - uid: 12542 + - uid: 13131 components: - type: Transform - pos: -127.5,-23.5 + rot: -1.5707963267948966 rad + pos: -210.5,12.5 parent: 2 - - uid: 12543 + - uid: 13132 components: - type: Transform - pos: -126.5,-22.5 + rot: 1.5707963267948966 rad + pos: -193.5,-7.5 parent: 2 - - uid: 12544 + - uid: 13133 components: - type: Transform - pos: -125.5,-23.5 + pos: -152.5,14.5 parent: 2 - - uid: 12545 + - uid: 13134 components: - type: Transform - pos: -126.5,-17.5 + pos: -163.5,13.5 parent: 2 - - uid: 12546 + - uid: 13135 components: - type: Transform - pos: -129.5,-17.5 + pos: -152.5,16.5 parent: 2 - - uid: 12547 + - uid: 13136 components: - type: Transform - pos: -130.5,-18.5 + rot: -1.5707963267948966 rad + pos: -175.5,-17.5 parent: 2 - - uid: 12548 + - uid: 13137 components: - type: Transform - pos: -127.5,-20.5 + rot: -1.5707963267948966 rad + pos: -175.5,-18.5 parent: 2 - - uid: 12549 + - uid: 13138 components: - type: Transform - pos: -129.5,-20.5 + rot: -1.5707963267948966 rad + pos: -175.5,-19.5 parent: 2 - - uid: 12550 + - uid: 13139 components: - type: Transform - pos: -127.5,-19.5 + pos: -154.5,18.5 parent: 2 - - uid: 12551 + - uid: 13140 components: - type: Transform - pos: -112.5,-21.5 + pos: -164.5,13.5 parent: 2 - - uid: 12552 + - uid: 13141 components: - type: Transform - pos: -49.5,5.5 + pos: -156.5,18.5 parent: 2 - - uid: 12553 + - uid: 13142 components: - type: Transform - pos: -84.5,8.5 + rot: -1.5707963267948966 rad + pos: -161.5,-1.5 parent: 2 - - uid: 12554 + - uid: 13143 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,12.5 + rot: -1.5707963267948966 rad + pos: -156.5,-1.5 parent: 2 - - uid: 12555 + - uid: 13144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,11.5 + rot: -1.5707963267948966 rad + pos: -156.5,2.5 parent: 2 - - uid: 12556 + - uid: 13145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,15.5 + rot: -1.5707963267948966 rad + pos: -163.5,-1.5 parent: 2 - - uid: 12557 + - uid: 13146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,15.5 + rot: -1.5707963267948966 rad + pos: -164.5,-1.5 parent: 2 - - uid: 12558 + - uid: 13147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,11.5 + rot: -1.5707963267948966 rad + pos: -165.5,-1.5 parent: 2 - - uid: 12559 + - uid: 13148 components: - type: Transform - pos: -177.5,-18.5 + rot: -1.5707963267948966 rad + pos: -165.5,2.5 parent: 2 - - uid: 12560 + - uid: 13149 components: - type: Transform - pos: -116.5,17.5 + rot: -1.5707963267948966 rad + pos: -163.5,2.5 parent: 2 - - uid: 12561 + - uid: 13150 components: - type: Transform - pos: -111.5,14.5 + pos: -18.5,8.5 parent: 2 - - uid: 12562 + - uid: 13151 components: - type: Transform - pos: -115.5,13.5 + pos: -157.5,-26.5 parent: 2 - - uid: 12563 + - uid: 13152 components: - type: Transform - pos: -120.5,11.5 + pos: -165.5,-26.5 parent: 2 - - uid: 12564 + - uid: 13153 components: - type: Transform - pos: -111.5,8.5 + pos: -164.5,-26.5 parent: 2 - - uid: 12565 + - uid: 13154 components: - type: Transform - pos: -196.5,-18.5 + pos: -163.5,-26.5 parent: 2 - - uid: 12566 + - uid: 13155 components: - type: Transform - pos: -183.5,-24.5 + pos: -165.5,-8.5 parent: 2 - - uid: 12567 + - uid: 13156 components: - type: Transform - pos: -190.5,-26.5 + pos: -162.5,-5.5 parent: 2 - - uid: 12568 + - uid: 13157 components: - type: Transform - pos: -184.5,-27.5 + pos: -161.5,-5.5 parent: 2 - - uid: 12569 + - uid: 13158 components: - type: Transform - pos: -189.5,-14.5 + pos: -167.5,-14.5 parent: 2 - - uid: 12570 + - uid: 13159 components: - type: Transform - pos: -182.5,-19.5 + pos: -166.5,-14.5 parent: 2 - - uid: 12571 + - uid: 13160 components: - type: Transform - pos: -178.5,-9.5 + pos: -168.5,-14.5 parent: 2 - - uid: 12572 + - uid: 13161 components: - type: Transform - pos: -176.5,-2.5 + pos: -166.5,-16.5 parent: 2 - - uid: 12573 + - uid: 13162 components: - type: Transform - pos: -191.5,-4.5 + pos: -165.5,-16.5 parent: 2 - - uid: 12574 + - uid: 13163 components: - type: Transform - pos: -187.5,-2.5 + pos: -163.5,-20.5 parent: 2 - - uid: 12575 + - uid: 13164 components: - type: Transform - pos: -185.5,2.5 + pos: -166.5,-20.5 parent: 2 - - uid: 12576 + - uid: 13165 components: - type: Transform - pos: -187.5,9.5 + pos: -167.5,-20.5 parent: 2 - - uid: 12577 + - uid: 13166 components: - type: Transform - pos: -192.5,10.5 + pos: -153.5,-26.5 parent: 2 - - uid: 12578 + - uid: 13167 components: - type: Transform - pos: -198.5,16.5 + pos: -167.5,-1.5 parent: 2 - - uid: 12579 + - uid: 13168 components: - type: Transform - pos: -193.5,23.5 + pos: -168.5,-1.5 parent: 2 - - uid: 12580 + - uid: 13169 components: - type: Transform - pos: -198.5,27.5 + pos: -169.5,-1.5 parent: 2 - - uid: 12581 + - uid: 13170 components: - type: Transform - pos: -190.5,22.5 + pos: -169.5,2.5 parent: 2 - - uid: 12582 + - uid: 13171 components: - type: Transform - pos: -199.5,3.5 + pos: -167.5,2.5 parent: 2 - - uid: 12583 + - uid: 13172 components: - type: Transform - pos: -205.5,-0.5 + pos: -171.5,2.5 parent: 2 - - uid: 12584 + - uid: 13173 components: - type: Transform - pos: -207.5,9.5 + pos: -173.5,2.5 parent: 2 - - uid: 12585 + - uid: 13174 components: - type: Transform - pos: -209.5,15.5 + pos: -173.5,-1.5 parent: 2 - - uid: 12586 + - uid: 13175 components: - type: Transform - pos: -214.5,-4.5 + pos: -172.5,-1.5 parent: 2 - - uid: 12587 + - uid: 13176 components: - type: Transform - pos: -212.5,-11.5 + pos: -171.5,-1.5 parent: 2 - - uid: 12588 + - uid: 13177 components: - type: Transform - pos: -214.5,-17.5 + pos: -179.5,-15.5 parent: 2 - - uid: 12589 + - uid: 13178 components: - type: Transform - pos: -194.5,-9.5 + pos: -179.5,-16.5 parent: 2 - - uid: 12590 + - uid: 13179 components: - type: Transform - pos: -170.5,-3.5 + pos: -179.5,-17.5 parent: 2 - - uid: 12591 + - uid: 13180 components: - type: Transform - pos: -158.5,-4.5 + pos: -197.5,-15.5 parent: 2 - - uid: 12592 + - uid: 13181 components: - type: Transform - pos: -169.5,-12.5 + pos: -197.5,-17.5 parent: 2 -- proto: RandomSpawner100 - entities: - - uid: 12593 + - uid: 13182 components: - type: Transform - pos: -43.5,11.5 + pos: -197.5,-16.5 parent: 2 - - uid: 12594 + - uid: 13183 components: - type: Transform - pos: -48.5,13.5 + pos: -211.5,-15.5 parent: 2 - - uid: 12595 + - uid: 13184 components: - type: Transform - pos: -55.5,11.5 + pos: -211.5,-16.5 parent: 2 - - uid: 12596 + - uid: 13185 components: - type: Transform - pos: -33.5,11.5 + pos: -211.5,-17.5 parent: 2 -- proto: RandomVending - entities: - - uid: 12597 + - uid: 13186 components: - type: Transform - pos: -89.5,1.5 + pos: -193.5,-15.5 parent: 2 - - uid: 12598 + - uid: 13187 components: - type: Transform - pos: -89.5,-8.5 + pos: -189.5,-5.5 parent: 2 - - uid: 12599 + - uid: 13188 components: - type: Transform - pos: -100.5,6.5 + pos: -188.5,-5.5 parent: 2 - - uid: 12600 + - uid: 13189 components: - type: Transform - pos: -170.5,-5.5 + pos: -187.5,-5.5 parent: 2 - - uid: 12601 + - uid: 13190 components: - type: Transform - pos: -23.5,-6.5 + pos: -185.5,-5.5 parent: 2 - - uid: 12602 + - uid: 13191 components: - type: Transform - pos: -58.5,-16.5 + pos: -184.5,-5.5 parent: 2 - - uid: 12603 + - uid: 13192 components: - type: Transform - pos: -57.5,-16.5 + pos: -183.5,-5.5 parent: 2 - - uid: 12604 + - uid: 13193 components: - type: Transform - pos: -68.5,9.5 + pos: -193.5,-1.5 parent: 2 - - uid: 12605 + - uid: 13194 components: - type: Transform - pos: -67.5,9.5 + pos: -194.5,-1.5 parent: 2 - - uid: 12606 + - uid: 13195 components: - type: Transform - pos: -184.5,-4.5 + pos: -195.5,-1.5 parent: 2 - - uid: 12607 + - uid: 13196 components: - type: Transform - pos: -188.5,-4.5 + pos: -197.5,-1.5 parent: 2 - - uid: 12608 + - uid: 13197 components: - type: Transform - pos: -140.5,-6.5 + pos: -198.5,-1.5 parent: 2 - - uid: 12609 + - uid: 13198 components: - type: Transform - pos: -141.5,-6.5 + pos: -199.5,-1.5 parent: 2 - - uid: 12610 + - uid: 13199 components: - type: Transform - pos: -19.5,5.5 + pos: -201.5,-5.5 parent: 2 - - uid: 12611 + - uid: 13200 components: - type: Transform - pos: -209.5,0.5 + pos: -202.5,-5.5 parent: 2 - - uid: 12612 + - uid: 13201 components: - type: Transform - pos: -208.5,0.5 + pos: -203.5,-5.5 parent: 2 -- proto: RandomVendingDrinks - entities: - - uid: 12613 + - uid: 13202 components: - type: Transform - pos: -45.5,-12.5 + pos: -206.5,-5.5 parent: 2 - - uid: 12614 + - uid: 13203 components: - type: Transform - pos: -5.5,-0.5 + pos: -207.5,-5.5 parent: 2 - - uid: 12615 + - uid: 13204 components: - type: Transform - pos: -100.5,14.5 + pos: -205.5,-5.5 parent: 2 - - uid: 12616 + - uid: 13205 components: - type: Transform - pos: -194.5,14.5 + pos: -193.5,-16.5 parent: 2 -- proto: RandomVendingSnacks - entities: - - uid: 12617 + - uid: 13206 components: - type: Transform - pos: -46.5,-12.5 + pos: -193.5,-17.5 parent: 2 - - uid: 12618 + - uid: 13207 components: - type: Transform - pos: -5.5,0.5 + pos: -204.5,8.5 parent: 2 -- proto: RCD - entities: - - uid: 12619 + - uid: 13208 components: - type: Transform - pos: -59.4739,2.947373 + pos: -204.5,7.5 parent: 2 -- proto: RCDAmmo - entities: - - uid: 12620 + - uid: 13209 components: - type: Transform - pos: -59.677177,2.525498 + pos: -204.5,9.5 parent: 2 - - uid: 12621 + - uid: 13210 components: - type: Transform - pos: -59.42699,2.509873 + pos: -211.5,-1.5 parent: 2 - - uid: 12622 + - uid: 13211 components: - type: Transform - pos: -59.208076,2.494248 + pos: -213.5,-1.5 parent: 2 - - uid: 12623 + - uid: 13212 components: - type: Transform - pos: -69.74717,1.291123 + pos: -214.5,-1.5 parent: 2 - - uid: 12624 + - uid: 13213 components: - type: Transform - pos: -69.43443,1.197373 + pos: -65.5,-18.5 parent: 2 - - uid: 12625 + - uid: 13214 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.589058,2.5280147 + pos: -65.5,-19.5 parent: 2 - - uid: 12626 + - uid: 13215 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.3076,2.5436397 + pos: -65.5,-20.5 parent: 2 -- proto: RCDEmpty - entities: - - uid: 12627 + - uid: 13216 components: - type: Transform - pos: -69.52826,1.759873 + pos: -77.5,-5.5 parent: 2 - - uid: 12628 + - uid: 13217 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.596344,-12.361343 + pos: -78.5,-5.5 parent: 2 - - uid: 12629 + - uid: 13218 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.720695,-12.486343 + pos: -80.5,-4.5 parent: 2 -- proto: Recycler - entities: - - uid: 12630 + - uid: 13219 components: - type: Transform - rot: 3.141592653589793 rad - pos: -130.5,-19.5 + pos: -80.5,-3.5 parent: 2 -- proto: ReinforcedGirder - entities: - - uid: 12631 + - uid: 13220 components: - type: Transform - pos: -170.5,-19.5 + pos: -80.5,-2.5 parent: 2 - - uid: 12632 + - uid: 13221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,45.5 + pos: -79.5,-1.5 parent: 2 - - uid: 12633 + - uid: 13222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,54.5 + pos: -78.5,-1.5 parent: 2 - - uid: 12634 + - uid: 13223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,54.5 + pos: -77.5,-1.5 parent: 2 - - uid: 12635 + - uid: 13224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,45.5 + rot: 1.5707963267948966 rad + pos: -64.5,27.5 parent: 2 - - uid: 12636 + - uid: 13225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,45.5 + rot: 1.5707963267948966 rad + pos: -58.5,27.5 parent: 2 - - uid: 12637 + - uid: 13226 components: - type: Transform - pos: -171.5,-16.5 + rot: 1.5707963267948966 rad + pos: -59.5,27.5 parent: 2 - - uid: 12638 + - uid: 13227 components: - type: Transform - pos: -177.5,9.5 + rot: 1.5707963267948966 rad + pos: -55.5,27.5 parent: 2 - - uid: 12639 + - uid: 13228 components: - type: Transform - pos: -177.5,11.5 + rot: 1.5707963267948966 rad + pos: -56.5,27.5 parent: 2 - - uid: 12640 + - uid: 13229 components: - type: Transform - pos: -174.5,16.5 + rot: 1.5707963267948966 rad + pos: -65.5,27.5 parent: 2 - - uid: 12641 + - uid: 13230 components: - type: Transform - pos: -172.5,16.5 + rot: 1.5707963267948966 rad + pos: -67.5,27.5 parent: 2 - - uid: 12642 + - uid: 13231 components: - type: Transform - pos: -170.5,16.5 + rot: 1.5707963267948966 rad + pos: -68.5,27.5 parent: 2 - - uid: 12643 + - uid: 13232 components: - type: Transform - pos: -168.5,16.5 + rot: 1.5707963267948966 rad + pos: -70.5,27.5 parent: 2 -- proto: ReinforcedPlasmaWindow - entities: - - uid: 12644 + - uid: 13233 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,-9.5 + pos: -71.5,27.5 parent: 2 - - uid: 12645 + - uid: 13234 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,-8.5 + pos: -73.5,27.5 parent: 2 - - uid: 12646 + - uid: 13235 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,-7.5 + pos: -74.5,27.5 parent: 2 - - uid: 12647 + - uid: 13236 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,0.5 + pos: -76.5,27.5 parent: 2 - - uid: 12648 + - uid: 13237 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,1.5 + pos: -77.5,27.5 parent: 2 - - uid: 12649 + - uid: 13238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,2.5 + pos: -18.5,1.5 parent: 2 -- proto: ReinforcedUraniumWindow - entities: - - uid: 12650 + - uid: 13239 components: - type: Transform - pos: -82.5,-0.5 + pos: -19.5,1.5 parent: 2 - - uid: 12651 + - uid: 13240 components: - type: Transform - pos: -82.5,1.5 + pos: -20.5,1.5 parent: 2 - - uid: 12652 + - uid: 13241 components: - type: Transform - pos: -82.5,0.5 + pos: -18.5,9.5 parent: 2 - - uid: 12653 + - uid: 13242 components: - type: Transform - pos: -77.5,-11.5 + pos: -10.5,-17.5 parent: 2 - - uid: 12654 + - uid: 13243 components: - type: Transform - pos: -82.5,-8.5 + pos: -10.5,-14.5 parent: 2 - - uid: 12655 + - uid: 13244 components: - type: Transform - pos: -82.5,-7.5 + pos: -150.5,4.5 parent: 2 - - uid: 12656 + - uid: 13245 components: - type: Transform - pos: -75.5,4.5 + pos: -61.5,1.5 parent: 2 - - uid: 12657 + - uid: 13246 components: - type: Transform - pos: -76.5,4.5 + pos: -58.5,2.5 parent: 2 - - uid: 12658 + - uid: 13247 components: - type: Transform - pos: -77.5,4.5 + pos: -58.5,3.5 parent: 2 - - uid: 12659 + - uid: 13248 components: - type: Transform - pos: -76.5,-11.5 + pos: -17.5,-6.5 parent: 2 - - uid: 12660 + - uid: 13249 components: - type: Transform - pos: -75.5,-11.5 + pos: -18.5,-6.5 parent: 2 - - uid: 12661 + - uid: 13250 components: - type: Transform - pos: -83.5,-3.5 + pos: -16.5,-6.5 parent: 2 - - uid: 12662 + - uid: 13251 components: - type: Transform - pos: -82.5,-6.5 + rot: 3.141592653589793 rad + pos: -165.5,6.5 parent: 2 - - uid: 12663 + - uid: 13252 components: - type: Transform - pos: -83.5,-5.5 + rot: 3.141592653589793 rad + pos: -163.5,6.5 parent: 2 - - uid: 12664 + - uid: 13253 components: - type: Transform - pos: -83.5,-4.5 + rot: 3.141592653589793 rad + pos: -166.5,7.5 parent: 2 - - uid: 12665 + - uid: 13254 components: - type: Transform - pos: -83.5,-2.5 + pos: -87.5,-30.5 parent: 2 - - uid: 12666 + - uid: 13255 components: - type: Transform - pos: -83.5,-1.5 + pos: -87.5,-29.5 parent: 2 -- proto: ReinforcedWindow - entities: - - uid: 12667 + - uid: 13256 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -180.5,0.5 + rot: 3.141592653589793 rad + pos: -80.5,-31.5 parent: 2 - - uid: 12668 + - uid: 13257 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -180.5,1.5 + rot: 3.141592653589793 rad + pos: -80.5,-32.5 parent: 2 - - uid: 12669 + - uid: 13258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -180.5,2.5 + pos: -165.5,13.5 parent: 2 - - uid: 12670 + - uid: 13259 components: - type: Transform - pos: -29.5,6.5 + pos: -155.5,18.5 parent: 2 - - uid: 12671 + - uid: 13260 components: - type: Transform - pos: -28.5,6.5 + pos: -161.5,15.5 parent: 2 - - uid: 12672 + - uid: 13261 components: - type: Transform - pos: -63.5,-17.5 + rot: 3.141592653589793 rad + pos: -157.5,-11.5 parent: 2 - - uid: 12673 + - uid: 13262 components: - type: Transform rot: 3.141592653589793 rad - pos: -206.5,16.5 + pos: -159.5,-11.5 parent: 2 - - uid: 12674 + - uid: 13263 components: - type: Transform rot: -1.5707963267948966 rad - pos: -210.5,8.5 + pos: -217.5,-1.5 parent: 2 - - uid: 12675 + - uid: 13264 components: - type: Transform rot: -1.5707963267948966 rad - pos: -210.5,7.5 + pos: -179.5,-9.5 parent: 2 - - uid: 12676 + - uid: 13265 components: - type: Transform rot: -1.5707963267948966 rad - pos: -210.5,4.5 + pos: -179.5,-8.5 parent: 2 - - uid: 12677 + - uid: 13266 components: - type: Transform rot: -1.5707963267948966 rad - pos: -210.5,12.5 + pos: -179.5,-7.5 parent: 2 - - uid: 12678 + - uid: 13267 + components: + - type: Transform + pos: -176.5,6.5 + parent: 2 + - uid: 13268 components: - type: Transform rot: 1.5707963267948966 rad - pos: -193.5,-7.5 + pos: -193.5,-8.5 parent: 2 - - uid: 12679 + - uid: 13269 components: - type: Transform - pos: -152.5,14.5 + rot: 1.5707963267948966 rad + pos: -193.5,-9.5 parent: 2 - - uid: 12680 + - uid: 13270 components: - type: Transform - pos: -163.5,13.5 + rot: 3.141592653589793 rad + pos: -156.5,12.5 parent: 2 - - uid: 12681 + - uid: 13271 components: - type: Transform - pos: -152.5,16.5 + rot: 3.141592653589793 rad + pos: -157.5,12.5 parent: 2 - - uid: 12682 + - uid: 13272 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -175.5,-17.5 + pos: -211.5,-7.5 parent: 2 - - uid: 12683 + - uid: 13273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -175.5,-18.5 + pos: -211.5,-9.5 parent: 2 - - uid: 12684 + - uid: 13274 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -175.5,-19.5 + pos: -211.5,-8.5 parent: 2 - - uid: 12685 + - uid: 13275 components: - type: Transform - pos: -154.5,18.5 + pos: -79.5,-5.5 parent: 2 - - uid: 12686 + - uid: 13276 components: - type: Transform - pos: -164.5,13.5 + rot: -1.5707963267948966 rad + pos: -210.5,9.5 parent: 2 - - uid: 12687 + - uid: 13277 components: - type: Transform - pos: -156.5,18.5 + rot: 3.141592653589793 rad + pos: -208.5,16.5 parent: 2 - - uid: 12688 + - uid: 13278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -161.5,-1.5 + rot: 3.141592653589793 rad + pos: -207.5,16.5 parent: 2 - - uid: 12689 + - uid: 13279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -156.5,-1.5 + pos: -154.5,1.5 parent: 2 - - uid: 12690 + - uid: 13280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -156.5,2.5 + pos: -154.5,-0.5 parent: 2 - - uid: 12691 + - uid: 13281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -163.5,-1.5 + rot: 1.5707963267948966 rad + pos: -176.5,-1.5 parent: 2 - - uid: 12692 + - uid: 13282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -164.5,-1.5 + pos: -229.5,-9.5 parent: 2 - - uid: 12693 + - uid: 13283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -165.5,-1.5 + pos: -229.5,-7.5 parent: 2 - - uid: 12694 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 13284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -165.5,2.5 + pos: -199.5,15.5 parent: 2 - - uid: 12695 +- proto: ReverseEngineeringMachine + entities: + - uid: 13285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -163.5,2.5 + pos: -194.5,2.5 parent: 2 - - uid: 12696 +- proto: RGBStaff + entities: + - uid: 13286 components: - type: Transform - pos: -18.5,8.5 + pos: -4.42188,-17.407665 parent: 2 - - uid: 12697 +- proto: RightArmSkeleton + entities: + - uid: 13287 components: - type: Transform - pos: -157.5,-26.5 + pos: -85.53755,-36.46877 parent: 2 - - uid: 12698 + - uid: 13288 components: - type: Transform - pos: -165.5,-26.5 + rot: 3.141592653589793 rad + pos: -122.33138,1.8452594 parent: 2 - - uid: 12699 + - uid: 13289 components: - type: Transform - pos: -164.5,-26.5 + rot: 3.141592653589793 rad + pos: -124.80013,3.5327594 parent: 2 - - uid: 12700 + - uid: 17552 components: - type: Transform - pos: -163.5,-26.5 + pos: -39.34313,34.692333 parent: 2 - - uid: 12701 +- proto: RightFootSkeleton + entities: + - uid: 13290 components: - type: Transform - pos: -165.5,-8.5 + pos: -85.60005,-36.46877 parent: 2 - - uid: 12702 + - uid: 13291 components: - type: Transform - pos: -162.5,-5.5 + rot: 3.141592653589793 rad + pos: -123.81576,2.5171344 parent: 2 - - uid: 12703 + - uid: 17550 components: - type: Transform - pos: -161.5,-5.5 + pos: -39.34313,34.602333 parent: 2 - - uid: 12704 +- proto: RightHandSkeleton + entities: + - uid: 13292 components: - type: Transform - pos: -167.5,-14.5 + rot: 3.141592653589793 rad + pos: -123.34701,2.6733844 parent: 2 - - uid: 12705 +- proto: RightLegSkeleton + entities: + - uid: 13293 components: - type: Transform - pos: -166.5,-14.5 + pos: -85.24068,-36.234394 parent: 2 - - uid: 12706 + - uid: 13294 components: - type: Transform - pos: -168.5,-14.5 + rot: 3.141592653589793 rad + pos: -122.22201,0.9390094 parent: 2 - - uid: 12707 + - uid: 17551 components: - type: Transform - pos: -166.5,-16.5 + pos: -39.095444,34.512333 parent: 2 - - uid: 12708 +- proto: RollerBed + entities: + - uid: 13295 components: - type: Transform - pos: -165.5,-16.5 + pos: -46.51472,17.401184 parent: 2 - - uid: 12709 +- proto: RollerBedSpawnFolded + entities: + - uid: 7121 components: - type: Transform - pos: -163.5,-20.5 + parent: 7119 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7122 + components: + - type: Transform + parent: 7119 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: RubberStampMime + entities: + - uid: 6999 + components: + - type: Transform + parent: 6983 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: RubberStampTrader + entities: + - uid: 13296 + components: + - type: Transform + pos: -68.501236,-19.473463 parent: 2 - - uid: 12710 + - uid: 13297 components: - type: Transform - pos: -166.5,-20.5 + pos: -221.15356,-26.238567 parent: 2 - - uid: 12711 +- proto: SalvageCanisterSpawner + entities: + - uid: 13298 components: - type: Transform - pos: -167.5,-20.5 + pos: -64.5,-23.5 parent: 2 - - uid: 12712 + - uid: 13299 components: - type: Transform - pos: -153.5,-26.5 + pos: -61.5,-24.5 parent: 2 - - uid: 12713 + - uid: 13300 components: - type: Transform - pos: -167.5,-1.5 + pos: -28.5,12.5 parent: 2 - - uid: 12714 + - uid: 13301 components: - type: Transform - pos: -168.5,-1.5 + pos: -119.5,-21.5 parent: 2 - - uid: 12715 + - uid: 13302 components: - type: Transform - pos: -169.5,-1.5 + pos: -117.5,-21.5 parent: 2 - - uid: 12716 + - uid: 13303 components: - type: Transform - pos: -169.5,2.5 + pos: -101.5,-21.5 parent: 2 - - uid: 12717 + - uid: 13304 components: - type: Transform - pos: -167.5,2.5 + pos: -93.5,-19.5 parent: 2 - - uid: 12718 + - uid: 13305 components: - type: Transform - pos: -171.5,2.5 + pos: -43.5,13.5 parent: 2 - - uid: 12719 + - uid: 13306 components: - type: Transform - pos: -173.5,2.5 + pos: -129.5,6.5 parent: 2 - - uid: 12720 + - uid: 13307 components: - type: Transform - pos: -173.5,-1.5 + pos: -48.5,10.5 parent: 2 - - uid: 12721 + - uid: 13308 components: - type: Transform - pos: -172.5,-1.5 + pos: -52.5,-21.5 parent: 2 - - uid: 12722 + - uid: 13309 components: - type: Transform - pos: -171.5,-1.5 + pos: -80.5,-18.5 parent: 2 - - uid: 12723 + - uid: 13310 components: - type: Transform - pos: -179.5,-15.5 + pos: -98.5,-17.5 parent: 2 - - uid: 12724 + - uid: 13311 components: - type: Transform - pos: -179.5,-16.5 + pos: -125.5,-13.5 parent: 2 - - uid: 12725 + - uid: 13312 components: - type: Transform - pos: -179.5,-17.5 + pos: -29.5,12.5 parent: 2 - - uid: 12726 + - uid: 13313 components: - type: Transform - pos: -197.5,-15.5 + pos: -44.5,17.5 parent: 2 - - uid: 12727 +- proto: SalvageLootSpawner + entities: + - uid: 13314 components: - type: Transform - pos: -197.5,-17.5 + pos: -81.5,-32.5 parent: 2 - - uid: 12728 +- proto: SalvageMagnet + entities: + - uid: 13315 components: - type: Transform - pos: -197.5,-16.5 + rot: 1.5707963267948966 rad + pos: -82.5,-43.5 parent: 2 - - uid: 12729 +- proto: SandBattlemap + entities: + - uid: 13316 components: - type: Transform - pos: -211.5,-15.5 + pos: -116.56007,15.590514 parent: 2 - - uid: 12730 +- proto: ScalpelShiv + entities: + - uid: 8561 components: - type: Transform - pos: -211.5,-16.5 + parent: 8550 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Screen + entities: + - uid: 13317 + components: + - type: Transform + pos: -209.5,-1.5 parent: 2 - - uid: 12731 + - uid: 13318 components: - type: Transform - pos: -211.5,-17.5 + rot: 3.141592653589793 rad + pos: -28.5,0.5 parent: 2 - - uid: 12732 + - uid: 13319 components: - type: Transform - pos: -193.5,-15.5 + pos: -19.5,-6.5 parent: 2 - - uid: 12733 + - uid: 13320 components: - type: Transform - pos: -188.5,7.5 + pos: -59.5,-13.5 parent: 2 - - uid: 12734 + - uid: 13321 components: - type: Transform - pos: -188.5,6.5 + pos: -109.5,-0.5 parent: 2 - - uid: 12735 + - uid: 13322 components: - type: Transform - pos: -188.5,8.5 + pos: -144.5,-0.5 parent: 2 - - uid: 12736 + - uid: 13323 components: - type: Transform - pos: -189.5,-5.5 + pos: -159.5,-5.5 parent: 2 - - uid: 12737 + - uid: 13324 components: - type: Transform - pos: -188.5,-5.5 + pos: -189.5,-11.5 parent: 2 - - uid: 12738 + - uid: 13325 components: - type: Transform - pos: -187.5,-5.5 + pos: -104.5,7.5 parent: 2 - - uid: 12739 + - uid: 13326 components: - type: Transform - pos: -185.5,-5.5 + pos: -204.5,6.5 parent: 2 - - uid: 12740 + - uid: 13327 components: - type: Transform - pos: -184.5,-5.5 + rot: 3.141592653589793 rad + pos: -62.5,10.5 parent: 2 - - uid: 12741 + - uid: 13328 components: - type: Transform - pos: -183.5,-5.5 + pos: -215.5,-14.5 parent: 2 - - uid: 12742 + - uid: 13329 components: - type: Transform - pos: -193.5,-1.5 + rot: 3.141592653589793 rad + pos: -38.5,-10.5 parent: 2 - - uid: 12743 + - uid: 13330 components: - type: Transform - pos: -194.5,-1.5 + pos: -155.5,6.5 parent: 2 - - uid: 12744 + - uid: 13331 components: - type: Transform - pos: -195.5,-1.5 + rot: -1.5707963267948966 rad + pos: -65.5,2.5 parent: 2 - - uid: 12745 +- proto: Screwdriver + entities: + - uid: 13332 components: - type: Transform - pos: -197.5,-1.5 + pos: -43.461468,4.095113 parent: 2 - - uid: 12746 + - uid: 13333 components: - type: Transform - pos: -198.5,-1.5 + rot: -1.5707963267948966 rad + pos: -61.264286,-6.4617906 parent: 2 - - uid: 12747 + - uid: 13334 components: - type: Transform - pos: -199.5,-1.5 + pos: -198.80157,6.6334143 parent: 2 - - uid: 12748 +- proto: SecurityTechFab + entities: + - uid: 13335 components: - type: Transform - pos: -201.5,-5.5 + pos: -171.5,12.5 parent: 2 - - uid: 12749 +- proto: SeedExtractor + entities: + - uid: 13336 components: - type: Transform - pos: -202.5,-5.5 + pos: -160.5,-24.5 parent: 2 - - uid: 12750 + - uid: 13337 components: - type: Transform - pos: -203.5,-5.5 + pos: -105.5,-10.5 parent: 2 - - uid: 12751 +- proto: ShardGlassClockwork + entities: + - uid: 13338 components: - type: Transform - pos: -206.5,-5.5 + pos: -125.281265,3.509558 parent: 2 - - uid: 12752 + - uid: 13339 components: - type: Transform - pos: -207.5,-5.5 + pos: -124.35939,2.837683 parent: 2 - - uid: 12753 + - uid: 13340 components: - type: Transform - pos: -205.5,-5.5 + pos: -122.39064,0.91580796 parent: 2 - - uid: 12754 + - uid: 13341 components: - type: Transform - pos: -193.5,-16.5 + rot: 3.141592653589793 rad + pos: -122.56576,3.493933 parent: 2 - - uid: 12755 +- proto: ShardGlassReinforced + entities: + - uid: 13342 components: - type: Transform - pos: -193.5,-17.5 + rot: -1.5707963267948966 rad + pos: -117.43888,6.2055955 parent: 2 - - uid: 12756 + - uid: 13343 components: - type: Transform - pos: -204.5,8.5 + rot: 3.141592653589793 rad + pos: -118.37638,6.2368455 parent: 2 - - uid: 12757 + - uid: 13344 components: - type: Transform - pos: -204.5,7.5 + rot: 3.141592653589793 rad + pos: -118.62638,6.2993455 parent: 2 - - uid: 12758 + - uid: 13345 components: - type: Transform - pos: -204.5,9.5 + rot: 1.5707963267948966 rad + pos: -117.47013,6.3774705 parent: 2 - - uid: 12759 + - uid: 13346 components: - type: Transform - pos: -211.5,-1.5 + rot: -1.5707963267948966 rad + pos: -119.87638,7.5024705 parent: 2 - - uid: 12760 + - uid: 13347 components: - type: Transform - pos: -213.5,-1.5 + rot: -1.5707963267948966 rad + pos: -119.87638,6.5337205 parent: 2 - - uid: 12761 + - uid: 13348 components: - type: Transform - pos: -214.5,-1.5 + rot: -1.5707963267948966 rad + pos: -119.72013,6.6743455 parent: 2 - - uid: 12762 + - uid: 13349 components: - type: Transform - pos: -65.5,-18.5 + rot: -1.5707963267948966 rad + pos: -119.84513,7.2993455 parent: 2 - - uid: 12763 + - uid: 13350 components: - type: Transform - pos: -65.5,-19.5 + rot: -1.5707963267948966 rad + pos: -115.610756,6.1743455 parent: 2 - - uid: 12764 + - uid: 13351 components: - type: Transform - pos: -65.5,-20.5 + rot: -1.5707963267948966 rad + pos: -118.72013,10.919944 parent: 2 - - uid: 12765 + - uid: 13352 components: - type: Transform - pos: -77.5,-5.5 + rot: -1.5707963267948966 rad + pos: -115.517006,10.873069 parent: 2 - - uid: 12766 + - uid: 13353 components: - type: Transform - pos: -78.5,-5.5 + rot: -1.5707963267948966 rad + pos: -115.09513,10.294944 parent: 2 - - uid: 12767 +- proto: SheetBrass + entities: + - uid: 13354 components: - type: Transform - pos: -80.5,-4.5 + rot: 1.5707963267948966 rad + pos: -124.50021,0.4712057 parent: 2 - - uid: 12768 +- proto: SheetGlass + entities: + - uid: 7378 components: - type: Transform - pos: -80.5,-3.5 - parent: 2 - - uid: 12769 + parent: 7377 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13355 components: - type: Transform - pos: -80.5,-2.5 + rot: -1.5707963267948966 rad + pos: -40.281677,-29.28415 parent: 2 - - uid: 12770 + - uid: 13356 components: - type: Transform - pos: -79.5,-1.5 + rot: -1.5707963267948966 rad + pos: -40.398865,-29.588837 parent: 2 - - uid: 12771 + - uid: 13357 components: - type: Transform - pos: -78.5,-1.5 + pos: -53.54652,5.6511574 parent: 2 - - uid: 12772 + - uid: 13358 components: - type: Transform - pos: -77.5,-1.5 + pos: -53.38808,-2.5261269 parent: 2 - - uid: 12773 + - uid: 13359 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,27.5 + pos: -103.339745,-28.489637 parent: 2 - - uid: 12774 + - uid: 13360 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,27.5 + pos: -103.41787,-28.614637 parent: 2 - - uid: 12775 + - uid: 13361 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,27.5 + pos: -123.25369,16.439928 parent: 2 - - uid: 12776 + - uid: 13362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,27.5 + pos: -123.48807,16.314928 parent: 2 - - uid: 12777 + - uid: 13363 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,27.5 + pos: -55.77549,14.434057 parent: 2 - - uid: 12778 + - uid: 13364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,27.5 + rot: -1.5707963267948966 rad + pos: -69.45375,-12.300502 parent: 2 - - uid: 12779 + - uid: 13365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,27.5 + rot: -1.5707963267948966 rad + pos: -69.57884,-12.566127 parent: 2 - - uid: 12780 + - uid: 13366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,27.5 + rot: 3.141592653589793 rad + pos: -199.54836,2.5171196 parent: 2 - - uid: 12781 +- proto: SheetGlass10 + entities: + - uid: 13367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,27.5 + rot: 3.141592653589793 rad + pos: -50.693954,-6.3165402 parent: 2 - - uid: 12782 + - uid: 13368 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,27.5 + rot: 3.141592653589793 rad + pos: -47.485416,-5.4540405 parent: 2 - - uid: 12783 +- proto: SheetPaper + entities: + - uid: 926 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,27.5 - parent: 2 - - uid: 12784 + parent: 920 + - type: Physics + canCollide: False + - uid: 13369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,27.5 + pos: -143.8414,3.7101762 parent: 2 - - uid: 12785 +- proto: SheetPaper1 + entities: + - uid: 13370 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,27.5 + pos: -46.94332,-19.706808 parent: 2 - - uid: 12786 + - type: Stack + count: 5 + - uid: 13371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,27.5 + pos: -46.973515,-19.683113 parent: 2 - - uid: 12787 + - uid: 13372 components: - type: Transform - pos: -18.5,1.5 + pos: -46.86414,-19.651863 parent: 2 - - uid: 12788 +- proto: SheetPGlass + entities: + - uid: 13373 components: - type: Transform - pos: -19.5,1.5 + rot: -1.5707963267948966 rad + pos: -80.55124,-9.440048 parent: 2 - - uid: 12789 +- proto: SheetPlasma + entities: + - uid: 13374 components: - type: Transform - pos: -20.5,1.5 + pos: -53.74713,-2.5601296 parent: 2 - - uid: 12790 +- proto: SheetPlasma1 + entities: + - uid: 909 components: - type: Transform - pos: -18.5,9.5 - parent: 2 - - uid: 12791 + parent: 903 + - type: Stack + count: 5 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13375 components: - type: Transform - pos: -10.5,-17.5 + rot: 3.141592653589793 rad + pos: -85.59645,-34.212326 parent: 2 - - uid: 12792 + - uid: 13376 components: - type: Transform - pos: -10.5,-14.5 + rot: 3.141592653589793 rad + pos: -85.487076,-34.368576 parent: 2 - - uid: 12793 + - uid: 13377 components: - type: Transform - pos: -150.5,4.5 + rot: 3.141592653589793 rad + pos: -85.362076,-34.10295 parent: 2 - - uid: 12794 + - uid: 13378 components: - type: Transform - pos: -61.5,1.5 + rot: 3.141592653589793 rad + pos: -85.72145,-34.306076 parent: 2 - - uid: 12795 + - uid: 13379 components: - type: Transform - pos: -58.5,2.5 + rot: 3.141592653589793 rad + pos: -85.455826,-34.35295 parent: 2 - - uid: 12796 + - uid: 13380 components: - type: Transform - pos: -58.5,3.5 + rot: 3.141592653589793 rad + pos: -85.3152,-34.22795 parent: 2 - - uid: 12797 +- proto: SheetPlasteel + entities: + - uid: 13381 components: - type: Transform - pos: -17.5,-6.5 + pos: -53.393486,4.7826214 parent: 2 - - uid: 12798 + - uid: 13382 components: - type: Transform - pos: -18.5,-6.5 + pos: -92.545364,6.4902005 parent: 2 - - uid: 12799 + - uid: 13383 components: - type: Transform - pos: -16.5,-6.5 + pos: -92.27954,6.5370755 parent: 2 - - uid: 12800 + - uid: 13384 components: - type: Transform - rot: 3.141592653589793 rad - pos: -165.5,6.5 + pos: -64.372215,3.753911 parent: 2 - - uid: 12801 +- proto: SheetPlastic + entities: + - uid: 7379 + components: + - type: Transform + parent: 7377 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13385 components: - type: Transform rot: 3.141592653589793 rad - pos: -163.5,6.5 + pos: -199.5296,2.1233695 parent: 2 - - uid: 12802 + - uid: 13386 components: - type: Transform - rot: 3.141592653589793 rad - pos: -166.5,7.5 + pos: -152.62494,-0.52486324 parent: 2 - - uid: 12803 +- proto: SheetPlastic1 + entities: + - uid: 13387 components: - type: Transform - pos: -87.5,-30.5 + rot: 1.5707963267948966 rad + pos: -64.51272,-19.453402 parent: 2 - - uid: 12804 + - uid: 13388 components: - type: Transform - pos: -87.5,-29.5 + rot: 1.5707963267948966 rad + pos: -64.66908,-19.344027 parent: 2 - - uid: 12805 + - uid: 13389 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-31.5 + rot: 1.5707963267948966 rad + pos: -64.40327,-19.344027 parent: 2 - - uid: 12806 + - uid: 13390 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-32.5 + rot: 1.5707963267948966 rad + pos: -64.590904,-19.390902 parent: 2 - - uid: 12807 +- proto: SheetRGlass + entities: + - uid: 13391 components: - type: Transform - pos: -165.5,13.5 + pos: -91.73226,6.4589505 parent: 2 - - uid: 12808 + - uid: 13392 components: - type: Transform - pos: -155.5,18.5 + pos: -91.4508,6.5527005 parent: 2 - - uid: 12809 + - uid: 13393 components: - type: Transform - pos: -161.5,15.5 + pos: -65.7129,3.6023097 parent: 2 - - uid: 12810 + - uid: 13394 components: - type: Transform - rot: 3.141592653589793 rad - pos: -157.5,-11.5 + pos: -65.40016,3.3991847 parent: 2 - - uid: 12811 + - uid: 13395 components: - type: Transform - rot: 3.141592653589793 rad - pos: -159.5,-11.5 + pos: -67.51111,-7.987856 parent: 2 - - uid: 12812 +- proto: SheetRUGlass + entities: + - uid: 13396 components: - type: Transform rot: -1.5707963267948966 rad - pos: -217.5,-1.5 + pos: -80.42438,-9.296108 parent: 2 - - uid: 12813 +- proto: SheetSteel + entities: + - uid: 7380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -179.5,-9.5 + parent: 7377 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13397 + components: + - type: Transform + pos: -53.471672,5.2513714 parent: 2 - - uid: 12814 + - uid: 13398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -179.5,-8.5 + pos: -53.409126,5.0638714 parent: 2 - - uid: 12815 + - uid: 13399 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -179.5,-7.5 + pos: -91.73226,6.7870755 parent: 2 - - uid: 12816 + - uid: 13400 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -184.5,1.5 + pos: -92.02936,6.7870755 parent: 2 - - uid: 12817 + - uid: 13401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -184.5,0.5 + pos: -152.40604,-0.66548824 parent: 2 - - uid: 12818 + - uid: 13402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -184.5,2.5 + pos: -47.704002,-5.150644 parent: 2 - - uid: 12819 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 13403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -184.5,11.5 + pos: -199.56519,1.6143346 parent: 2 - - uid: 12820 + - uid: 13404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -184.5,12.5 + pos: -199.49013,1.4268346 parent: 2 - - uid: 12821 +- proto: SheetSteel1 + entities: + - uid: 13405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -184.5,13.5 + pos: -64.51111,-19.775778 parent: 2 - - uid: 12822 + - type: Stack + count: 4 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: ShotGunCabinetFilled + entities: + - uid: 13406 components: - type: Transform - pos: -176.5,6.5 + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 parent: 2 - - uid: 12823 +- proto: ShuttersNormal + entities: + - uid: 13407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -193.5,-8.5 + rot: -1.5707963267948966 rad + pos: -34.5,-9.5 parent: 2 - - uid: 12824 + - type: DeviceLinkSink + links: + - 14460 + - uid: 13408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -193.5,-9.5 + rot: -1.5707963267948966 rad + pos: -34.5,-11.5 parent: 2 - - uid: 12825 + - type: DeviceLinkSink + links: + - 14460 + - uid: 13409 components: - type: Transform - rot: 3.141592653589793 rad - pos: -156.5,12.5 + rot: -1.5707963267948966 rad + pos: -34.5,-10.5 parent: 2 - - uid: 12826 + - type: DeviceLinkSink + links: + - 14460 + - uid: 13410 components: - type: Transform - rot: 3.141592653589793 rad - pos: -157.5,12.5 + rot: -1.5707963267948966 rad + pos: -54.5,-22.5 parent: 2 - - uid: 12827 + - type: DeviceLinkSink + links: + - 11866 + - uid: 13411 components: - type: Transform - pos: -211.5,-7.5 + rot: -1.5707963267948966 rad + pos: -54.5,-21.5 parent: 2 - - uid: 12828 + - type: DeviceLinkSink + links: + - 11866 +- proto: ShuttersNormalOpen + entities: + - uid: 13412 components: - type: Transform - pos: -211.5,-9.5 + pos: -19.5,1.5 parent: 2 - - uid: 12829 + - type: DeviceLinkSink + links: + - 11869 + - uid: 13413 components: - type: Transform - pos: -211.5,-8.5 + pos: -20.5,1.5 parent: 2 - - uid: 12830 + - type: DeviceLinkSink + links: + - 11869 + - uid: 13414 components: - type: Transform - pos: -215.5,-12.5 + pos: -18.5,1.5 parent: 2 - - uid: 12831 + - type: DeviceLinkSink + links: + - 11869 + - uid: 13415 components: - type: Transform - pos: -215.5,-11.5 + pos: -17.5,1.5 parent: 2 - - uid: 12832 + - type: DeviceLinkSink + links: + - 11869 + - uid: 13416 components: - type: Transform - pos: -215.5,-13.5 + pos: -18.5,-6.5 parent: 2 - - uid: 12833 + - type: DeviceLinkSink + links: + - 11869 + - uid: 13417 components: - type: Transform - pos: -79.5,-5.5 + pos: -17.5,-6.5 parent: 2 - - uid: 12834 + - type: DeviceLinkSink + links: + - 11869 + - uid: 13418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -210.5,9.5 + pos: -16.5,-6.5 parent: 2 - - uid: 12835 + - type: DeviceLinkSink + links: + - 11869 + - uid: 13419 components: - type: Transform - rot: 3.141592653589793 rad - pos: -208.5,16.5 + pos: -112.5,-8.5 parent: 2 - - uid: 12836 + - type: DeviceLinkSink + links: + - 11870 + - uid: 13420 components: - type: Transform - rot: 3.141592653589793 rad - pos: -207.5,16.5 + pos: -113.5,-8.5 parent: 2 - - uid: 12837 + - type: DeviceLinkSink + links: + - 11870 + - uid: 13421 components: - type: Transform - pos: -154.5,1.5 + pos: -116.5,-8.5 parent: 2 - - uid: 12838 + - type: DeviceLinkSink + links: + - 11870 +- proto: ShuttersRadiationOpen + entities: + - uid: 13422 components: - type: Transform - pos: -154.5,-0.5 + pos: -77.5,-5.5 parent: 2 - - uid: 12839 + - type: DeviceLinkSink + links: + - 13492 + - uid: 13423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -176.5,-1.5 + pos: -78.5,-5.5 parent: 2 -- proto: ResearchAndDevelopmentServer - entities: - - uid: 12840 + - type: DeviceLinkSink + links: + - 13492 + - uid: 13424 components: - type: Transform - pos: -201.5,14.5 + pos: -79.5,-5.5 parent: 2 -- proto: ReverseEngineeringMachine - entities: - - uid: 12841 + - type: DeviceLinkSink + links: + - 13492 + - uid: 13425 components: - type: Transform - pos: -195.5,21.5 + rot: -1.5707963267948966 rad + pos: -80.5,-4.5 parent: 2 -- proto: RGBStaff - entities: - - uid: 12842 + - type: DeviceLinkSink + links: + - 13492 + - uid: 13426 components: - type: Transform - pos: -4.42188,-17.407665 + rot: -1.5707963267948966 rad + pos: -80.5,-3.5 parent: 2 -- proto: RightArmSkeleton - entities: - - uid: 12843 + - type: DeviceLinkSink + links: + - 13492 + - uid: 13427 components: - type: Transform - pos: -85.53755,-36.46877 + rot: -1.5707963267948966 rad + pos: -80.5,-2.5 parent: 2 - - uid: 12844 + - uid: 13428 components: - type: Transform rot: 3.141592653589793 rad - pos: -122.33138,1.8452594 + pos: -79.5,-1.5 parent: 2 - - uid: 12845 + - type: DeviceLinkSink + links: + - 13492 + - uid: 13429 components: - type: Transform rot: 3.141592653589793 rad - pos: -124.80013,3.5327594 + pos: -78.5,-1.5 parent: 2 -- proto: RightFootSkeleton - entities: - - uid: 12846 + - type: DeviceLinkSink + links: + - 13492 + - uid: 13430 components: - type: Transform - pos: -85.60005,-36.46877 + rot: 3.141592653589793 rad + pos: -77.5,-1.5 parent: 2 - - uid: 12847 + - type: DeviceLinkSink + links: + - 13492 + - uid: 13431 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.81576,2.5171344 + rot: 1.5707963267948966 rad + pos: -76.5,-3.5 parent: 2 -- proto: RightHandSkeleton + - type: DeviceLinkSink + links: + - 13484 +- proto: ShuttersWindowOpen entities: - - uid: 12848 + - uid: 13432 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.34701,2.6733844 + pos: -61.5,1.5 parent: 2 -- proto: RightLegBorg - entities: - - uid: 12849 + - type: DeviceLinkSink + links: + - 13491 + - uid: 13433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.3896,51.29576 + pos: -58.5,2.5 parent: 2 -- proto: RightLegSkeleton - entities: - - uid: 12850 + - type: DeviceLinkSink + links: + - 13491 + - uid: 13434 components: - type: Transform - pos: -85.24068,-36.234394 + pos: -58.5,3.5 parent: 2 - - uid: 12851 + - type: DeviceLinkSink + links: + - 13491 + - uid: 13435 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.22201,0.9390094 + pos: -115.5,-8.5 parent: 2 -- proto: RollerBed - entities: - - uid: 12852 + - type: DeviceLinkSink + links: + - 11870 + - uid: 13436 components: - type: Transform - pos: -46.51472,17.401184 + pos: -114.5,-8.5 parent: 2 -- proto: RollerBedSpawnFolded + - type: DeviceLinkSink + links: + - 11870 +- proto: ShuttleConsoleCircuitboard entities: - - uid: 6724 + - uid: 13437 components: - type: Transform - parent: 6722 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 6725 + rot: 1.5707963267948966 rad + pos: -37.239624,32.299572 + parent: 2 + - uid: 13438 components: - type: Transform - parent: 6722 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage -- proto: RubberStampTrader + pos: -55.598873,-3.6322246 + parent: 2 +- proto: ShuttleWindow entities: - - uid: 12853 + - uid: 13439 components: - type: Transform - pos: -68.501236,-19.473463 + rot: -1.5707963267948966 rad + pos: -192.5,18.5 parent: 2 -- proto: SalvageCanisterSpawner - entities: - - uid: 12854 + - uid: 13440 components: - type: Transform - pos: -28.5,12.5 + rot: -1.5707963267948966 rad + pos: -193.5,18.5 parent: 2 - - uid: 12855 + - uid: 13441 components: - type: Transform - pos: -74.5,46.5 + rot: -1.5707963267948966 rad + pos: -202.5,8.5 parent: 2 - - uid: 12856 + - uid: 13442 components: - type: Transform - pos: -69.5,47.5 + rot: -1.5707963267948966 rad + pos: -197.5,18.5 parent: 2 - - uid: 12857 + - uid: 13443 components: - type: Transform - pos: -119.5,-21.5 + pos: -185.5,-21.5 parent: 2 - - uid: 12858 + - uid: 13444 components: - type: Transform - pos: -117.5,-21.5 + pos: -101.5,2.5 parent: 2 - - uid: 12859 + - uid: 13445 components: - type: Transform - pos: -101.5,-21.5 + pos: -104.5,21.5 parent: 2 - - uid: 12860 + - uid: 13446 components: - type: Transform - pos: -93.5,-19.5 + pos: -102.5,23.5 parent: 2 - - uid: 12861 + - uid: 13447 components: - type: Transform - pos: -43.5,13.5 + pos: -101.5,1.5 parent: 2 - - uid: 12862 + - uid: 13448 components: - type: Transform - pos: -129.5,6.5 + pos: -105.5,3.5 parent: 2 - - uid: 12863 + - uid: 13449 components: - type: Transform - pos: -48.5,10.5 + pos: -103.5,1.5 parent: 2 - - uid: 12864 + - uid: 13450 components: - type: Transform - pos: -52.5,-22.5 + pos: -103.5,2.5 parent: 2 - - uid: 12865 + - uid: 13451 components: - type: Transform - pos: -52.5,-21.5 + pos: -99.5,3.5 parent: 2 - - uid: 12866 + - uid: 13452 components: - type: Transform - pos: -67.5,-24.5 + pos: -188.5,-7.5 parent: 2 - - uid: 12867 + - uid: 13453 components: - type: Transform - pos: -80.5,-18.5 + pos: -187.5,-7.5 parent: 2 - - uid: 12868 + - uid: 13454 components: - type: Transform - pos: -98.5,-17.5 + pos: -186.5,-7.5 parent: 2 - - uid: 12869 + - uid: 13455 components: - type: Transform - pos: -125.5,-13.5 + pos: -191.5,-15.5 parent: 2 - - uid: 12870 + - uid: 13456 components: - type: Transform - pos: -29.5,12.5 + pos: -191.5,-16.5 parent: 2 -- proto: SalvageLootSpawner - entities: - - uid: 12871 + - uid: 13457 components: - type: Transform - pos: -81.5,-32.5 + pos: -191.5,-17.5 parent: 2 -- proto: SalvageMagnet - entities: - - uid: 12872 + - uid: 13458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,-43.5 + pos: -181.5,-15.5 parent: 2 -- proto: SalvageMaterialCrateSpawner - entities: - - uid: 12873 + - uid: 13459 components: - type: Transform - pos: -59.5,53.5 + pos: -181.5,-16.5 parent: 2 - - uid: 12874 + - uid: 13460 components: - type: Transform - pos: -64.5,46.5 + pos: -181.5,-17.5 parent: 2 - - uid: 12875 + - uid: 13461 components: - type: Transform - pos: -54.5,51.5 + pos: -187.5,-21.5 parent: 2 - - uid: 12876 + - uid: 13462 components: - type: Transform - pos: -53.5,52.5 + pos: -184.5,-21.5 parent: 2 - - uid: 12877 + - uid: 13463 components: - type: Transform - pos: -78.5,51.5 + pos: -107.5,5.5 parent: 2 - - uid: 12878 + - uid: 13464 components: - type: Transform - pos: -78.5,48.5 + pos: -107.5,9.5 parent: 2 - - uid: 12879 + - uid: 13465 components: - type: Transform - pos: -53.5,47.5 + pos: -97.5,9.5 parent: 2 -- proto: ScalpelShiv - entities: - - uid: 8156 + - uid: 13466 components: - type: Transform - parent: 8145 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Screen - entities: - - uid: 12880 + pos: -100.5,21.5 + parent: 2 + - uid: 13467 components: - type: Transform - pos: -209.5,-1.5 + rot: 3.141592653589793 rad + pos: -187.5,-19.5 parent: 2 - - uid: 12881 + - uid: 13468 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,0.5 + pos: -185.5,-14.5 parent: 2 - - uid: 12882 + - uid: 13469 components: - type: Transform - pos: -19.5,-6.5 + rot: 3.141592653589793 rad + pos: -185.5,-19.5 parent: 2 - - uid: 12883 + - uid: 13470 components: - type: Transform - pos: -59.5,-13.5 + rot: 3.141592653589793 rad + pos: -187.5,-14.5 parent: 2 - - uid: 12884 + - uid: 13471 components: - type: Transform - pos: -109.5,-0.5 + rot: 3.141592653589793 rad + pos: -186.5,-19.5 parent: 2 - - uid: 12885 + - uid: 13472 components: - type: Transform - pos: -144.5,-0.5 + rot: 3.141592653589793 rad + pos: -182.5,-27.5 parent: 2 - - uid: 12886 + - uid: 13473 components: - type: Transform - pos: -159.5,-5.5 + rot: 3.141592653589793 rad + pos: -182.5,-26.5 parent: 2 - - uid: 12887 + - uid: 13474 components: - type: Transform - pos: -189.5,-11.5 + rot: 3.141592653589793 rad + pos: -182.5,-25.5 parent: 2 - - uid: 12888 + - uid: 13475 components: - type: Transform - pos: -199.5,17.5 + pos: -192.5,-24.5 parent: 2 - - uid: 12889 + - uid: 13476 components: - type: Transform - pos: -104.5,7.5 + pos: -192.5,-28.5 parent: 2 - - uid: 12890 + - uid: 13477 components: - type: Transform - pos: -204.5,6.5 + pos: -187.5,-31.5 parent: 2 - - uid: 12891 + - uid: 13478 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,10.5 + pos: -185.5,-31.5 parent: 2 - - uid: 12892 + - uid: 13479 components: - type: Transform - pos: -215.5,-14.5 + rot: -1.5707963267948966 rad + pos: -198.5,18.5 parent: 2 - - uid: 12893 + - uid: 13480 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-10.5 + rot: -1.5707963267948966 rad + pos: -202.5,9.5 parent: 2 - - uid: 12894 + - uid: 13481 components: - type: Transform - pos: -155.5,6.5 + rot: -1.5707963267948966 rad + pos: -202.5,7.5 parent: 2 - - uid: 12895 +- proto: SignalButton + entities: + - uid: 13482 components: - type: Transform rot: -1.5707963267948966 rad - pos: -65.5,2.5 + pos: -190.5,3.5 parent: 2 -- proto: Screwdriver - entities: - - uid: 12896 + - type: DeviceLinkSource + linkedPorts: + 813: + - Pressed: Toggle + - uid: 13483 components: - type: Transform - pos: -194.278,1.5815132 + rot: -1.5707963267948966 rad + pos: -190.5,13.5 parent: 2 - - uid: 12897 + - type: DeviceLinkSource + linkedPorts: + 814: + - Pressed: Toggle + - uid: 13484 components: + - type: MetaData + name: Кнопка переключения радиационной защиты входа камеры СМ - type: Transform - pos: -43.461468,4.095113 + pos: -74.5,-2.5 parent: 2 - - uid: 12898 + - type: DeviceLinkSource + linkedPorts: + 13431: + - Pressed: Toggle + - uid: 13485 components: + - type: MetaData + name: Кнопка Внутренних Гермозатворов - type: Transform rot: -1.5707963267948966 rad - pos: -61.264286,-6.4617906 + pos: -66.5,-2.5 parent: 2 -- proto: SecurityTechFab - entities: - - uid: 12899 + - type: DeviceLinkSource + linkedPorts: + 854: + - Pressed: Toggle + 825: + - Pressed: Toggle + 824: + - Pressed: Toggle + 823: + - Pressed: Toggle + 826: + - Pressed: Toggle + 827: + - Pressed: Toggle + - uid: 13486 components: + - type: MetaData + name: Кнопка Внешних Гермозатворов - type: Transform - pos: -171.5,12.5 + rot: -1.5707963267948966 rad + pos: -70.5,-1.5 parent: 2 -- proto: SeedExtractor - entities: - - uid: 12900 + - type: DeviceLinkSource + linkedPorts: + 830: + - Pressed: Toggle + 829: + - Pressed: Toggle + 828: + - Pressed: Toggle + 852: + - Pressed: Toggle + 832: + - Pressed: Toggle + 833: + - Pressed: Toggle + 835: + - Pressed: Toggle + 831: + - Pressed: Toggle + 822: + - Pressed: Toggle + 836: + - Pressed: Toggle + 834: + - Pressed: Toggle + 819: + - Pressed: Toggle + 853: + - Pressed: Toggle + 821: + - Pressed: Toggle + 820: + - Pressed: Toggle + 818: + - Pressed: Toggle + - uid: 13487 components: - type: Transform - pos: -160.5,-24.5 + rot: 1.5707963267948966 rad + pos: -158.5,14.5 parent: 2 - - uid: 12901 + - type: DeviceLinkSource + linkedPorts: + 872: + - Pressed: Toggle + 860: + - Pressed: Toggle + 859: + - Pressed: Toggle + 858: + - Pressed: Toggle + 865: + - Pressed: Toggle + 871: + - Pressed: Toggle + - uid: 13488 components: - type: Transform - pos: -105.5,-10.5 + rot: 1.5707963267948966 rad + pos: -167.5,11.5 parent: 2 -- proto: ShardGlassClockwork - entities: - - uid: 12902 + - type: DeviceLinkSource + linkedPorts: + 873: + - Pressed: Toggle + 874: + - Pressed: Toggle + 875: + - Pressed: Toggle + - uid: 13489 components: - type: Transform - pos: -125.281265,3.509558 + rot: 3.141592653589793 rad + pos: -162.5,8.5 parent: 2 - - uid: 12903 + - type: DeviceLinkSource + linkedPorts: + 869: + - Pressed: Toggle + 866: + - Pressed: Toggle + 863: + - Pressed: Toggle + 867: + - Pressed: Toggle + 868: + - Pressed: Toggle + 870: + - Pressed: Toggle + 861: + - Pressed: Toggle + 862: + - Pressed: Toggle + 864: + - Pressed: Toggle + - uid: 13490 components: - type: Transform - pos: -124.35939,2.837683 + rot: 1.5707963267948966 rad + pos: -79.5,21.5 parent: 2 - - uid: 12904 + - type: DeviceLinkSource + linkedPorts: + 837: + - Pressed: Toggle + - uid: 13491 components: - type: Transform - pos: -122.39064,0.91580796 + rot: 1.5707963267948966 rad + pos: -63.5,3.5 parent: 2 - - uid: 12905 + - type: DeviceLinkSource + linkedPorts: + 13432: + - Pressed: Toggle + 13433: + - Pressed: Toggle + 13434: + - Pressed: Toggle + - uid: 13492 components: + - type: MetaData + name: Кнопка переключения общей радиационной защиты - type: Transform - rot: 3.141592653589793 rad - pos: -122.56576,3.493933 + rot: -1.5707963267948966 rad + pos: -70.5,-5.5 parent: 2 -- proto: ShardGlassReinforced + - type: DeviceLinkSource + linkedPorts: + 13422: + - Pressed: Toggle + 13423: + - Pressed: Toggle + 13424: + - Pressed: Toggle + 13425: + - Pressed: Toggle + 13426: + - Pressed: Toggle + 13428: + - Pressed: Toggle + 13429: + - Pressed: Toggle + 13430: + - Pressed: Toggle +- proto: SignAnomaly entities: - - uid: 12906 + - uid: 13493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.43888,6.2055955 + pos: -194.5,11.5 parent: 2 - - uid: 12907 + - uid: 13494 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.37638,6.2368455 + pos: -194.5,5.5 parent: 2 - - uid: 12908 +- proto: SignArmory + entities: + - uid: 13495 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.62638,6.2993455 + pos: -167.5,9.5 parent: 2 - - uid: 12909 + - uid: 13496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.47013,6.3774705 + pos: -172.5,7.5 parent: 2 - - uid: 12910 +- proto: SignAtmos + entities: + - uid: 13497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.87638,7.5024705 + rot: 1.5707963267948966 rad + pos: -58.5,13.5 parent: 2 - - uid: 12911 +- proto: SignBar + entities: + - uid: 13498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.87638,6.5337205 + rot: 1.5707963267948966 rad + pos: -121.5,-0.5 parent: 2 - - uid: 12912 +- proto: SignBridge + entities: + - uid: 13499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.72013,6.6743455 + rot: 1.5707963267948966 rad + pos: -11.5,-2.5 parent: 2 - - uid: 12913 + - uid: 13500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.84513,7.2993455 + rot: 1.5707963267948966 rad + pos: -11.5,-4.5 parent: 2 - - uid: 12914 +- proto: SignChapel + entities: + - uid: 13501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.610756,6.1743455 + rot: 1.5707963267948966 rad + pos: -34.5,0.5 parent: 2 - - uid: 12915 + - uid: 13502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -118.72013,10.919944 + rot: 1.5707963267948966 rad + pos: -37.5,0.5 parent: 2 - - uid: 12916 +- proto: SignCloning + entities: + - uid: 13503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.517006,10.873069 + pos: -183.5,-28.5 parent: 2 - - uid: 12917 +- proto: SignDirectionalBar + entities: + - uid: 13504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.09513,10.294944 + rot: 1.5707963267948966 rad + pos: -131.58788,-7.3396263 parent: 2 -- proto: SheetBrass +- proto: SignDirectionalBridge entities: - - uid: 12918 + - uid: 13505 components: - type: Transform rot: 1.5707963267948966 rad - pos: -124.50021,0.4712057 + pos: -125.49991,-0.25935757 parent: 2 -- proto: SheetGlass - entities: - - uid: 6971 + - uid: 13506 components: - type: Transform - parent: 6970 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 12919 + rot: 1.5707963267948966 rad + pos: -88.519356,-9.250627 + parent: 2 + - uid: 13507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.281677,-29.28415 + rot: 1.5707963267948966 rad + pos: -24.53596,-6.6710463 parent: 2 - - uid: 12920 +- proto: SignDirectionalBrig + entities: + - uid: 13508 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.398865,-29.588837 + pos: -148.5889,-6.3312335 parent: 2 - - uid: 12921 + - uid: 13509 components: - type: Transform - pos: -53.54652,5.6511574 + rot: -1.5707963267948966 rad + pos: -56.393032,10.729098 parent: 2 - - uid: 12922 + - uid: 13510 components: - type: Transform - pos: -53.38808,-2.5261269 + rot: 1.5707963267948966 rad + pos: -177.48242,-1.4461732 parent: 2 - - uid: 12923 +- proto: SignDirectionalChapel + entities: + - uid: 13511 components: - type: Transform - pos: -197.47823,21.43891 + rot: 1.5707963267948966 rad + pos: -44.500618,-8.281864 parent: 2 - - uid: 12924 + - uid: 13512 components: - type: Transform rot: 1.5707963267948966 rad - pos: -103.339745,-28.489637 + pos: -109.496216,-3.7100372 parent: 2 - - uid: 12925 +- proto: SignDirectionalCryo + entities: + - uid: 13513 components: - type: Transform rot: 1.5707963267948966 rad - pos: -103.41787,-28.614637 + pos: -125.4997,-0.47414017 parent: 2 - - uid: 12926 +- proto: SignDirectionalDorms + entities: + - uid: 13514 components: - type: Transform - pos: -123.25369,16.439928 + rot: -1.5707963267948966 rad + pos: -89.45579,-1.2112825 parent: 2 - - uid: 12927 + - uid: 13515 components: - type: Transform - pos: -123.48807,16.314928 + rot: -1.5707963267948966 rad + pos: -60.528885,10.326321 parent: 2 - - uid: 12928 +- proto: SignDirectionalEng + entities: + - uid: 13516 components: - type: Transform - pos: -55.77549,14.434057 + rot: 1.5707963267948966 rad + pos: -125.504135,-0.6778439 parent: 2 - - uid: 12929 + - uid: 13517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.45375,-12.300502 + rot: 1.5707963267948966 rad + pos: -89.4581,-1.428875 parent: 2 - - uid: 12930 + - uid: 13518 components: - type: Transform rot: -1.5707963267948966 rad - pos: -69.57884,-12.566127 + pos: -24.488424,-5.9124446 parent: 2 -- proto: SheetPaper +- proto: SignDirectionalEvac entities: - - uid: 878 - components: - - type: Transform - parent: 872 - - type: Physics - canCollide: False - - uid: 12931 + - uid: 13519 components: - type: Transform - pos: -143.8414,3.7101762 + rot: -1.5707963267948966 rad + pos: -88.550125,2.2846272 parent: 2 -- proto: SheetPaper1 - entities: - - uid: 12932 + - uid: 13520 components: - type: Transform - pos: -46.94332,-19.706808 + rot: -1.5707963267948966 rad + pos: -145.5,-0.5 parent: 2 - - type: Stack - count: 5 - - uid: 12933 + - uid: 13521 components: - type: Transform - pos: -46.973515,-19.683113 + rot: -1.5707963267948966 rad + pos: -109.5,-3.5 parent: 2 - - uid: 12934 + - uid: 13522 components: - type: Transform - pos: -46.86414,-19.651863 + rot: 1.5707963267948966 rad + pos: -44.5,-8.5 parent: 2 -- proto: SheetPGlass - entities: - - uid: 12935 + - uid: 13523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.55124,-9.440048 + rot: 3.141592653589793 rad + pos: -204.4383,-1.7672005 parent: 2 -- proto: SheetPlasma - entities: - - uid: 12936 + - uid: 13524 components: - type: Transform rot: 3.141592653589793 rad - pos: -201.68878,6.5844946 + pos: -24.5,-5.5 parent: 2 - - uid: 12937 + - uid: 13525 components: - type: Transform - pos: -53.74713,-2.5601296 + pos: -32.5,-13.5 parent: 2 -- proto: SheetPlasma1 +- proto: SignDirectionalFood entities: - - uid: 6491 + - uid: 13526 components: - type: Transform - parent: 6488 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 12938 + rot: 1.5707963267948966 rad + pos: -131.58887,-7.76653 + parent: 2 +- proto: SignDirectionalGravity + entities: + - uid: 13527 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.59645,-34.212326 + rot: 1.5707963267948966 rad + pos: -56.393032,10.326321 parent: 2 - - uid: 12939 + - uid: 13528 components: - type: Transform rot: 3.141592653589793 rad - pos: -85.487076,-34.368576 + pos: -24.53414,-6.462267 parent: 2 - - uid: 12940 + - uid: 13529 components: - type: Transform rot: 3.141592653589793 rad - pos: -85.362076,-34.10295 + pos: -24.49785,-5.7109203 parent: 2 - - uid: 12941 +- proto: SignDirectionalHop + entities: + - uid: 13530 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.72145,-34.306076 + rot: 1.5707963267948966 rad + pos: -60.52055,10.756876 parent: 2 - - uid: 12942 + - uid: 13531 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.455826,-34.35295 + rot: 1.5707963267948966 rad + pos: -44.49939,-8.709096 parent: 2 - - uid: 12943 + - uid: 13532 components: - type: Transform rot: 3.141592653589793 rad - pos: -85.3152,-34.22795 + pos: -24.5434,-6.2460294 parent: 2 -- proto: SheetPlasteel +- proto: SignDirectionalHydro entities: - - uid: 12944 - components: - - type: Transform - pos: -53.393486,4.7826214 - parent: 2 - - uid: 12945 + - uid: 13533 components: - type: Transform - pos: -92.545364,6.4902005 + rot: 1.5707963267948966 rad + pos: -131.58887,-7.553567 parent: 2 - - uid: 12946 + - uid: 13534 components: - type: Transform - pos: -92.27954,6.5370755 + rot: -1.5707963267948966 rad + pos: -56.38609,10.527709 parent: 2 - - uid: 12947 +- proto: SignDirectionalJanitor + entities: + - uid: 13535 components: - type: Transform - pos: -64.372215,3.753911 + rot: 1.5707963267948966 rad + pos: -88.5101,-9.667294 parent: 2 -- proto: SheetPlastic +- proto: SignDirectionalLibrary entities: - - uid: 6972 - components: - - type: Transform - parent: 6970 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 12948 + - uid: 13536 components: - type: Transform - pos: -194.55089,12.910778 + pos: -89.4581,-1.6379676 parent: 2 - - uid: 12949 + - uid: 13537 components: - type: Transform - pos: -152.62494,-0.52486324 + rot: 1.5707963267948966 rad + pos: -60.527493,10.541598 parent: 2 -- proto: SheetPlastic1 +- proto: SignDirectionalMed entities: - - uid: 12950 + - uid: 13538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.51272,-19.453402 + rot: -1.5707963267948966 rad + pos: -148.58969,-6.547092 parent: 2 - - uid: 12951 + - uid: 13539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.66908,-19.344027 + pos: -177.48415,-1.6657043 parent: 2 - - uid: 12952 + - uid: 13540 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.40327,-19.344027 + rot: -1.5707963267948966 rad + pos: -88.550125,2.7105532 parent: 2 - - uid: 12953 +- proto: SignDirectionalSalvage + entities: + - uid: 13541 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.590904,-19.390902 + pos: -69.5,-25.5 parent: 2 -- proto: SheetRGlass +- proto: SignDirectionalSci entities: - - uid: 12954 + - uid: 13542 components: - type: Transform - pos: -91.73226,6.4589505 + rot: -1.5707963267948966 rad + pos: -148.59023,-6.766977 parent: 2 - - uid: 12955 + - uid: 13543 components: - type: Transform - pos: -91.4508,6.5527005 + rot: -1.5707963267948966 rad + pos: -177.48705,-1.2332103 parent: 2 - - uid: 12956 + - uid: 13544 components: - type: Transform - pos: -65.7129,3.6023097 + rot: 3.141592653589793 rad + pos: -204.5,-1.5 parent: 2 - - uid: 12957 +- proto: SignDirectionalSolar + entities: + - uid: 13545 components: - type: Transform - pos: -65.40016,3.3991847 + rot: 3.141592653589793 rad + pos: -14.5,6.5 parent: 2 - - uid: 12958 + - uid: 13546 components: - type: Transform - pos: -67.51111,-7.987856 + rot: -1.5707963267948966 rad + pos: -38.5,-14.5 parent: 2 -- proto: SheetRUGlass - entities: - - uid: 12959 + - uid: 13547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.42438,-9.296108 + pos: -39.5,-23.5 parent: 2 -- proto: SheetSteel - entities: - - uid: 6973 + - uid: 13548 components: - type: Transform - parent: 6970 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage - - uid: 12960 + pos: -85.5,-17.5 + parent: 2 + - uid: 13549 components: - type: Transform - pos: -53.471672,5.2513714 + pos: -96.5,-16.5 parent: 2 - - uid: 12961 + - uid: 13550 components: - type: Transform - pos: -53.409126,5.0638714 + pos: -101.5,-5.5 parent: 2 - - uid: 12962 + - uid: 13551 components: - type: Transform - pos: -91.73226,6.7870755 + pos: -100.5,-21.5 parent: 2 - - uid: 12963 + - uid: 13552 components: - type: Transform - pos: -92.02936,6.7870755 + rot: 3.141592653589793 rad + pos: -126.5,1.5 parent: 2 - - uid: 12964 + - uid: 13553 components: - type: Transform - pos: -152.40604,-0.66548824 + rot: 3.141592653589793 rad + pos: -124.5,8.5 parent: 2 -- proto: SheetSteel1 +- proto: SignDirectionalSupply entities: - - uid: 12965 + - uid: 13554 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.481445,-20.375277 + pos: -82.5,-27.5 parent: 2 - - uid: 12966 + - uid: 13555 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.40327,-20.484652 + pos: -125.50168,-0.040854037 parent: 2 - - uid: 12967 + - uid: 13556 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.43454,-20.515902 + pos: -109.496216,-3.286426 parent: 2 - - uid: 12968 + - uid: 13557 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.66908,-20.406527 + pos: -88.5101,-9.45433 + parent: 2 + - uid: 13558 + components: + - type: Transform + pos: -88.550125,2.49759 parent: 2 -- proto: SheetUranium1 +- proto: SignDrones entities: - - uid: 12969 + - uid: 13559 components: - type: Transform - pos: -194.33228,12.531959 + pos: -93.5,4.5 parent: 2 - - uid: 12970 +- proto: SignEngine + entities: + - uid: 13560 components: - type: Transform - pos: -194.45728,12.453834 + rot: 1.5707963267948966 rad + pos: -66.5,-4.5 parent: 2 - - uid: 12971 + - uid: 13561 components: - type: Transform - pos: -194.30103,12.438209 + rot: 1.5707963267948966 rad + pos: -70.5,-2.5 parent: 2 -- proto: ShotGunCabinetFilled +- proto: SignEngineering entities: - - uid: 12972 + - uid: 13562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 + rot: 1.5707963267948966 rad + pos: -57.5,6.5 parent: 2 -- proto: ShuttersNormal +- proto: SignEscapePods entities: - - uid: 12973 + - uid: 13563 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-9.5 + pos: -27.5,-17.5 parent: 2 - - type: DeviceLinkSink - links: - - 14010 - - uid: 12974 + - uid: 13564 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-11.5 + pos: -31.5,-17.5 parent: 2 - - type: DeviceLinkSink - links: - - 14010 - - uid: 12975 + - uid: 13565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-10.5 + pos: -36.5,-17.5 parent: 2 - - type: DeviceLinkSink - links: - - 14010 - - uid: 12976 +- proto: SignEVA + entities: + - uid: 13566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-22.5 + rot: 1.5707963267948966 rad + pos: -24.5,-10.5 parent: 2 - - type: DeviceLinkSink - links: - - 11463 - - uid: 12977 + - uid: 13567 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-21.5 + rot: 1.5707963267948966 rad + pos: -18.5,-10.5 parent: 2 - - type: DeviceLinkSink - links: - - 11463 - - uid: 12978 + - uid: 13568 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -192.5,20.5 + rot: 1.5707963267948966 rad + pos: -24.5,-15.5 parent: 2 - - type: DeviceLinkSink - links: - - 13065 - - uid: 12979 +- proto: SignGravity + entities: + - uid: 13569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -192.5,19.5 + rot: 1.5707963267948966 rad + pos: -20.5,6.5 parent: 2 - - type: DeviceLinkSink - links: - - 13065 -- proto: ShuttersNormalOpen +- proto: SignHead entities: - - uid: 12980 + - uid: 13570 components: - type: Transform - pos: -19.5,1.5 + rot: 1.5707963267948966 rad + pos: -15.5,2.5 parent: 2 - - type: DeviceLinkSink - links: - - 11466 - - uid: 12981 +- proto: SignHydro1 + entities: + - uid: 13571 components: - type: Transform - pos: -20.5,1.5 + rot: 1.5707963267948966 rad + pos: -104.5,-5.5 parent: 2 - - type: DeviceLinkSink - links: - - 11466 - - uid: 12982 +- proto: SignJanitor + entities: + - uid: 13572 components: - type: Transform - pos: -18.5,1.5 + rot: 1.5707963267948966 rad + pos: -34.5,-8.5 parent: 2 - - type: DeviceLinkSink - links: - - 11466 - - uid: 12983 + - uid: 13573 components: - type: Transform - pos: -17.5,1.5 + rot: 1.5707963267948966 rad + pos: -34.5,-12.5 parent: 2 - - type: DeviceLinkSink - links: - - 11466 - - uid: 12984 +- proto: SignLibrary + entities: + - uid: 13574 components: - type: Transform - pos: -18.5,-6.5 + rot: 3.141592653589793 rad + pos: -48.5,-14.5 parent: 2 - - type: DeviceLinkSink - links: - - 11466 - - uid: 12985 +- proto: SignMail + entities: + - uid: 6861 components: - type: Transform - pos: -17.5,-6.5 + pos: -74.5,-17.5 parent: 2 - - type: DeviceLinkSink - links: - - 11466 - - uid: 12986 +- proto: SignMedical + entities: + - uid: 13575 components: - type: Transform - pos: -16.5,-6.5 + rot: 1.5707963267948966 rad + pos: -179.5,-12.5 parent: 2 - - type: DeviceLinkSink - links: - - 11466 - - uid: 12987 + - uid: 13576 components: - type: Transform - pos: -204.5,19.5 + rot: 1.5707963267948966 rad + pos: -193.5,-12.5 parent: 2 - - type: DeviceLinkSink - links: - - 13068 - - uid: 12988 + - uid: 13577 components: - type: Transform - pos: -204.5,21.5 + rot: -1.5707963267948966 rad + pos: -177.5,-5.5 parent: 2 - - type: DeviceLinkSink - links: - - 13068 - - uid: 12989 +- proto: SignMinerDock + entities: + - uid: 13578 components: - type: Transform - pos: -204.5,20.5 + pos: -85.5,-20.5 parent: 2 - - type: DeviceLinkSink - links: - - 13068 - - uid: 12990 +- proto: SignMorgue + entities: + - uid: 13579 components: - type: Transform - pos: -200.5,20.5 + pos: -188.5,-27.5 parent: 2 - - type: DeviceLinkSink - links: - - 13068 - - uid: 12991 +- proto: SignPlaque + entities: + - uid: 13580 components: - type: Transform - pos: -200.5,19.5 + pos: -68.5,-0.5 parent: 2 - - type: DeviceLinkSink - links: - - 13068 - - uid: 12992 +- proto: SignRadiationMed + entities: + - uid: 13581 components: - type: Transform - pos: -112.5,-8.5 + pos: -74.5,-1.5 parent: 2 - - type: DeviceLinkSink - links: - - 11467 - - uid: 12993 + - uid: 13582 components: - type: Transform - pos: -113.5,-8.5 + pos: -80.5,-1.5 parent: 2 - - type: DeviceLinkSink - links: - - 11467 - - uid: 12994 + - uid: 13583 components: - type: Transform - pos: -116.5,-8.5 + pos: -66.5,-2.5 parent: 2 - - type: DeviceLinkSink - links: - - 11467 -- proto: ShuttersWindowOpen - entities: - - uid: 12995 + - uid: 13584 components: - type: Transform - pos: -61.5,1.5 + pos: -79.5,6.5 parent: 2 - - type: DeviceLinkSink - links: - - 13064 - - uid: 12996 + - uid: 13585 components: - type: Transform - pos: -58.5,2.5 + pos: -52.5,-13.5 parent: 2 - - type: DeviceLinkSink - links: - - 13064 - - uid: 12997 + - uid: 13586 components: - type: Transform - pos: -58.5,3.5 + pos: -95.5,-1.5 parent: 2 - - type: DeviceLinkSink - links: - - 13064 - - uid: 12998 + - uid: 13587 components: - type: Transform - pos: -115.5,-8.5 + pos: -82.5,-9.5 parent: 2 - - type: DeviceLinkSink - links: - - 11467 - - uid: 12999 + - uid: 13588 components: - type: Transform - pos: -114.5,-8.5 + pos: -82.5,2.5 parent: 2 - - type: DeviceLinkSink - links: - - 11467 -- proto: ShuttleConsoleCircuitboard - entities: - - uid: 13000 + - uid: 13589 components: - type: Transform - pos: -55.598873,-3.6322246 + pos: -52.5,6.5 parent: 2 - - uid: 13001 + - uid: 13590 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.471844,46.59803 + pos: -79.5,-13.5 parent: 2 -- proto: ShuttleWindow - entities: - - uid: 13002 + - uid: 13591 components: - type: Transform - pos: -101.5,2.5 + rot: 1.5707963267948966 rad + pos: -222.5,-40.5 parent: 2 - - uid: 13003 + - uid: 13592 components: - type: Transform - pos: -104.5,21.5 + rot: -1.5707963267948966 rad + pos: -74.5,-5.5 parent: 2 - - uid: 13004 + - uid: 13593 components: - type: Transform - pos: -102.5,23.5 + rot: -1.5707963267948966 rad + pos: -80.5,-5.5 parent: 2 - - uid: 13005 +- proto: SignRND + entities: + - uid: 13594 components: - type: Transform - pos: -101.5,1.5 + rot: 1.5707963267948966 rad + pos: -204.5,5.5 parent: 2 - - uid: 13006 +- proto: SignSalvage + entities: + - uid: 13595 components: - type: Transform - pos: -105.5,3.5 + pos: -83.5,-26.5 parent: 2 - - uid: 13007 +- proto: SignSecureMed + entities: + - uid: 13596 components: - type: Transform - pos: -103.5,1.5 + pos: -223.5,-37.5 parent: 2 - - uid: 13008 + - uid: 13597 components: - type: Transform - pos: -103.5,2.5 + pos: -217.5,-28.5 parent: 2 - - uid: 13009 + - uid: 13598 components: - type: Transform - pos: -99.5,3.5 + pos: -218.5,-20.5 parent: 2 - - uid: 13010 +- proto: SignShipDock + entities: + - uid: 13599 components: - type: Transform - pos: -188.5,-7.5 + rot: 1.5707963267948966 rad + pos: -80.5,-33.5 parent: 2 - - uid: 13011 + - uid: 13600 components: - type: Transform - pos: -187.5,-7.5 + rot: -1.5707963267948966 rad + pos: -213.5,-5.5 parent: 2 - - uid: 13012 + - uid: 13601 components: - type: Transform - pos: -186.5,-7.5 + rot: -1.5707963267948966 rad + pos: -195.5,-5.5 parent: 2 - - uid: 13013 +- proto: SignSomethingOld + entities: + - uid: 13602 components: - type: Transform - pos: -191.5,-15.5 + pos: -63.5,-2.5 parent: 2 - - uid: 13014 +- proto: SignSomethingOld2 + entities: + - uid: 13603 components: - type: Transform - pos: -191.5,-16.5 + pos: -56.5,-2.5 parent: 2 - - uid: 13015 +- proto: SignTelecomms + entities: + - uid: 13604 components: - type: Transform - pos: -191.5,-17.5 + pos: -13.5,-10.5 parent: 2 - - uid: 13016 +- proto: SignZomlab + entities: + - uid: 13605 components: + - type: MetaData + name: зондбе-дабалатория - type: Transform - pos: -181.5,-15.5 + rot: -1.5707963267948966 rad + pos: -49.5,16.5 parent: 2 - - uid: 13017 +- proto: SinkWide + entities: + - uid: 13606 components: - type: Transform - pos: -181.5,-16.5 + rot: -1.5707963267948966 rad + pos: -29.5,-10.5 parent: 2 - - uid: 13018 + - uid: 13607 components: - type: Transform - pos: -181.5,-17.5 + pos: -120.5,4.5 parent: 2 - - uid: 13019 + - uid: 13608 components: - type: Transform - pos: -185.5,-21.5 + rot: 3.141592653589793 rad + pos: -112.5,-13.5 parent: 2 - - uid: 13020 +- proto: SlipocalypseClusterSoap + entities: + - uid: 13609 components: + - type: MetaData + desc: пахнет.... обманом? + name: мыло синдиката - type: Transform - pos: -187.5,-21.5 + pos: -91.594345,-8.463688 parent: 2 - - uid: 13021 +- proto: SmallLight + entities: + - uid: 13610 components: - type: Transform - pos: -188.5,-21.5 + pos: -95.5,-6.5 parent: 2 - - uid: 13022 + - type: PointLight + radius: 3 + - uid: 13611 components: - type: Transform - pos: -184.5,-21.5 + rot: 1.5707963267948966 rad + pos: -162.5,-15.5 parent: 2 - - uid: 13023 + - uid: 17562 components: - type: Transform - pos: -195.5,24.5 + rot: -1.5707963267948966 rad + pos: -73.5,-19.5 parent: 2 - - uid: 13024 +- proto: SmartFridge + entities: + - uid: 13612 components: - type: Transform - pos: -190.5,6.5 + pos: -164.5,-20.5 parent: 2 - - uid: 13025 + - uid: 13613 components: - type: Transform - pos: -190.5,7.5 + pos: -110.5,-9.5 parent: 2 - - uid: 13026 +- proto: SMESBasic + entities: + - uid: 13614 components: - type: Transform - pos: -190.5,8.5 + pos: -174.5,-6.5 parent: 2 - - uid: 13027 + - uid: 13615 components: - type: Transform - pos: -202.5,8.5 + pos: -182.5,-10.5 parent: 2 - - uid: 13028 + - uid: 13616 components: - type: Transform - pos: -202.5,7.5 + pos: -62.5,-11.5 parent: 2 - - uid: 13029 + - uid: 13617 components: - type: Transform - pos: -202.5,6.5 + pos: -62.5,-10.5 parent: 2 - - uid: 13030 + - uid: 13618 components: - type: Transform - pos: -197.5,0.5 + pos: -62.5,-9.5 parent: 2 - - uid: 13031 + - uid: 13619 components: - type: Transform - pos: -107.5,5.5 + pos: -68.5,-5.5 parent: 2 - - uid: 13032 + - uid: 13620 components: - type: Transform - pos: -107.5,9.5 + pos: -85.5,-33.5 parent: 2 - - uid: 13033 + - uid: 13621 components: - type: Transform - pos: -97.5,9.5 + pos: -16.5,10.5 parent: 2 - - uid: 13034 + - uid: 13622 components: - type: Transform - pos: -100.5,21.5 + pos: -16.5,-14.5 parent: 2 - - uid: 13035 + - uid: 13623 components: - type: Transform - rot: 3.141592653589793 rad - pos: -200.5,20.5 + pos: -10.5,-7.5 parent: 2 - - uid: 13036 + - uid: 13624 components: - type: Transform - rot: 3.141592653589793 rad - pos: -187.5,-19.5 + pos: -189.5,8.5 parent: 2 - - uid: 13037 + - uid: 17657 components: - type: Transform - rot: 3.141592653589793 rad - pos: -185.5,-14.5 - parent: 2 - - uid: 13038 + pos: 13.5,-0.5 + parent: 17565 +- proto: SMESBasicEmpty + entities: + - uid: 13625 components: - type: Transform - rot: 3.141592653589793 rad - pos: -185.5,-19.5 + pos: -102.5,-23.5 parent: 2 - - uid: 13039 + - uid: 13626 components: - type: Transform - rot: 3.141592653589793 rad - pos: -187.5,-14.5 + pos: -39.5,-24.5 parent: 2 - - uid: 13040 + - uid: 13627 components: - type: Transform - rot: 3.141592653589793 rad - pos: -186.5,-19.5 + pos: -124.5,10.5 parent: 2 - - uid: 13041 + - uid: 13628 components: - type: Transform - rot: 3.141592653589793 rad - pos: -197.5,24.5 + pos: -12.5,10.5 parent: 2 - - uid: 13042 +- proto: SMESMachineCircuitboard + entities: + - uid: 13629 components: - type: Transform - pos: -200.5,19.5 + rot: -1.5707963267948966 rad + pos: -42.68868,35.292072 parent: 2 - - uid: 13043 +- proto: SoapHomemade + entities: + - uid: 13630 components: - type: Transform - pos: -198.5,0.5 + pos: -92.52622,-11.487034 parent: 2 - - uid: 13044 +- proto: soda_dispenser + entities: + - uid: 13631 components: - type: Transform - pos: -199.5,0.5 + pos: -118.5,4.5 parent: 2 - - uid: 13045 + - uid: 13632 components: - type: Transform - pos: -204.5,21.5 + rot: 1.5707963267948966 rad + pos: -121.5,14.5 parent: 2 - - uid: 13046 + - uid: 13633 components: - type: Transform - pos: -204.5,20.5 + rot: 1.5707963267948966 rad + pos: -223.5,-32.5 parent: 2 - - uid: 13047 +- proto: SolarControlComputerCircuitboard + entities: + - uid: 13634 components: - type: Transform - pos: -204.5,19.5 + pos: -53.450447,-3.5697246 parent: 2 - - uid: 13048 +- proto: SolarPanel + entities: + - uid: 13635 components: - type: Transform - pos: -188.5,21.5 + rot: 3.141592653589793 rad + pos: -8.5,26.5 parent: 2 - - uid: 13049 + - uid: 13636 components: - type: Transform - pos: -188.5,19.5 + rot: 3.141592653589793 rad + pos: -9.5,26.5 parent: 2 - - uid: 13050 + - uid: 13637 components: - type: Transform - pos: -188.5,20.5 + rot: 3.141592653589793 rad + pos: -10.5,26.5 parent: 2 - - uid: 13051 + - uid: 13638 components: - type: Transform - pos: -195.5,0.5 + rot: 3.141592653589793 rad + pos: -11.5,26.5 parent: 2 - - uid: 13052 + - uid: 13639 components: - type: Transform - pos: -194.5,0.5 + rot: 3.141592653589793 rad + pos: -11.5,24.5 parent: 2 - - uid: 13053 + - uid: 13640 components: - type: Transform - pos: -193.5,0.5 + rot: 3.141592653589793 rad + pos: -10.5,24.5 parent: 2 -- proto: SignAi - entities: - - uid: 13054 + - uid: 13641 components: - type: Transform - pos: -68.5,45.5 + rot: 3.141592653589793 rad + pos: -9.5,24.5 parent: 2 - - uid: 13055 + - uid: 13642 components: - type: Transform - pos: -53.5,45.5 + rot: 3.141592653589793 rad + pos: -8.5,24.5 parent: 2 - - uid: 13056 + - uid: 13643 components: - type: Transform - pos: -77.5,45.5 + rot: 3.141592653589793 rad + pos: -8.5,22.5 parent: 2 -- proto: SignalButton - entities: - - uid: 13057 + - uid: 13644 components: - - type: MetaData - name: Кнопка Внутренних Гермозатворов - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-2.5 + rot: 3.141592653589793 rad + pos: -9.5,22.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 816: - - Pressed: Toggle - 786: - - Pressed: Toggle - 785: - - Pressed: Toggle - 784: - - Pressed: Toggle - 787: - - Pressed: Toggle - 788: - - Pressed: Toggle - - uid: 13058 + - uid: 13645 components: - - type: MetaData - name: Кнопка Внешних Гермозатворов - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,-1.5 + rot: 3.141592653589793 rad + pos: -10.5,22.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 791: - - Pressed: Toggle - 790: - - Pressed: Toggle - 789: - - Pressed: Toggle - 814: - - Pressed: Toggle - 794: - - Pressed: Toggle - 795: - - Pressed: Toggle - 797: - - Pressed: Toggle - 793: - - Pressed: Toggle - 783: - - Pressed: Toggle - 798: - - Pressed: Toggle - 796: - - Pressed: Toggle - 780: - - Pressed: Toggle - 815: - - Pressed: Toggle - 779: - - Pressed: Toggle - 782: - - Pressed: Toggle - 781: - - Pressed: Toggle - 778: - - Pressed: Toggle - - uid: 13059 + - uid: 13646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -158.5,14.5 + rot: 3.141592653589793 rad + pos: -11.5,22.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 833: - - Pressed: Toggle - 821: - - Pressed: Toggle - 820: - - Pressed: Toggle - 819: - - Pressed: Toggle - 826: - - Pressed: Toggle - 832: - - Pressed: Toggle - - uid: 13060 + - uid: 13647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -167.5,11.5 + rot: 3.141592653589793 rad + pos: -11.5,20.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 834: - - Pressed: Toggle - 835: - - Pressed: Toggle - 836: - - Pressed: Toggle - - uid: 13061 + - uid: 13648 components: - type: Transform rot: 3.141592653589793 rad - pos: -162.5,8.5 + pos: -10.5,20.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 830: - - Pressed: Toggle - 827: - - Pressed: Toggle - 824: - - Pressed: Toggle - 828: - - Pressed: Toggle - 829: - - Pressed: Toggle - 831: - - Pressed: Toggle - 822: - - Pressed: Toggle - 823: - - Pressed: Toggle - 825: - - Pressed: Toggle - - uid: 13062 + - uid: 13649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,21.5 + rot: 3.141592653589793 rad + pos: -9.5,20.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 799: - - Pressed: Toggle - - uid: 13063 + - uid: 13650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -192.5,23.5 + rot: 3.141592653589793 rad + pos: -8.5,20.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 770: - - Pressed: Toggle - 771: - - Pressed: Toggle - - uid: 13064 + - uid: 13651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,3.5 + rot: 3.141592653589793 rad + pos: -15.5,20.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12995: - - Pressed: Toggle - 12996: - - Pressed: Toggle - 12997: - - Pressed: Toggle - - uid: 13065 + - uid: 13652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -192.5,21.5 + rot: 3.141592653589793 rad + pos: -16.5,20.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12978: - - Pressed: Toggle - 12979: - - Pressed: Toggle - - uid: 13066 + - uid: 13653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -199.5,24.5 + rot: 3.141592653589793 rad + pos: -17.5,20.5 parent: 2 - - uid: 13067 + - uid: 13654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -193.5,24.5 + rot: 3.141592653589793 rad + pos: -18.5,20.5 parent: 2 - - uid: 13068 + - uid: 13655 components: - type: Transform - pos: -203.5,22.5 + rot: 3.141592653589793 rad + pos: -18.5,22.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12988: - - Pressed: Toggle - 12989: - - Pressed: Toggle - 12987: - - Pressed: Toggle - 12990: - - Pressed: Toggle - 12991: - - Pressed: Toggle -- proto: SignArmory - entities: - - uid: 13069 + - uid: 13656 components: - type: Transform - pos: -167.5,9.5 + rot: 3.141592653589793 rad + pos: -17.5,22.5 parent: 2 - - uid: 13070 + - uid: 13657 components: - type: Transform - pos: -172.5,7.5 + rot: 3.141592653589793 rad + pos: -16.5,22.5 parent: 2 -- proto: SignAtmos - entities: - - uid: 13071 + - uid: 13658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,13.5 + rot: 3.141592653589793 rad + pos: -15.5,22.5 parent: 2 -- proto: SignBar - entities: - - uid: 13072 + - uid: 13659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -121.5,-0.5 + rot: 3.141592653589793 rad + pos: -15.5,24.5 parent: 2 -- proto: SignBridge - entities: - - uid: 13073 + - uid: 13660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-2.5 + rot: 3.141592653589793 rad + pos: -16.5,24.5 parent: 2 - - uid: 13074 + - uid: 13661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-4.5 + rot: 3.141592653589793 rad + pos: -17.5,24.5 parent: 2 -- proto: SignCargoDock - entities: - - uid: 13075 + - uid: 13662 components: - type: Transform - pos: -58.5,-27.5 + rot: 3.141592653589793 rad + pos: -18.5,24.5 parent: 2 -- proto: SignChapel - entities: - - uid: 13076 + - uid: 13663 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,0.5 + rot: 3.141592653589793 rad + pos: -18.5,26.5 parent: 2 - - uid: 13077 + - uid: 13664 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,0.5 + rot: 3.141592653589793 rad + pos: -16.5,26.5 parent: 2 -- proto: SignDirectionalBar - entities: - - uid: 13078 + - uid: 13665 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.58788,-7.3396263 + rot: 3.141592653589793 rad + pos: -15.5,26.5 parent: 2 -- proto: SignDirectionalBridge - entities: - - uid: 13079 + - uid: 13666 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.49991,-0.25935757 + rot: 3.141592653589793 rad + pos: -17.5,26.5 parent: 2 - - uid: 13080 + - uid: 13667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.519356,-9.250627 + rot: 3.141592653589793 rad + pos: -15.5,18.5 parent: 2 - - uid: 13081 + - uid: 13668 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.53596,-6.6710463 + rot: 3.141592653589793 rad + pos: -16.5,18.5 parent: 2 -- proto: SignDirectionalBrig - entities: - - uid: 13082 + - uid: 13669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -148.5889,-6.3312335 + rot: 3.141592653589793 rad + pos: -17.5,18.5 parent: 2 - - uid: 13083 + - uid: 13670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.393032,10.729098 + rot: 3.141592653589793 rad + pos: -18.5,18.5 parent: 2 - - uid: 13084 + - uid: 13671 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -177.48242,-1.4461732 + rot: 3.141592653589793 rad + pos: -18.5,16.5 parent: 2 -- proto: SignDirectionalChapel - entities: - - uid: 13085 + - uid: 13672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.500618,-8.281864 + rot: 3.141592653589793 rad + pos: -17.5,16.5 parent: 2 - - uid: 13086 + - uid: 13673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -109.496216,-3.7100372 + rot: 3.141592653589793 rad + pos: -16.5,16.5 parent: 2 -- proto: SignDirectionalCryo - entities: - - uid: 13087 + - uid: 13674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.4997,-0.47414017 + rot: 3.141592653589793 rad + pos: -15.5,16.5 parent: 2 -- proto: SignDirectionalDorms - entities: - - uid: 13088 + - uid: 13675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.45579,-1.2112825 + rot: 3.141592653589793 rad + pos: -11.5,18.5 parent: 2 - - uid: 13089 + - uid: 13676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.528885,10.326321 + rot: 3.141592653589793 rad + pos: -9.5,18.5 parent: 2 -- proto: SignDirectionalEng - entities: - - uid: 13090 + - uid: 13677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.504135,-0.6778439 + rot: 3.141592653589793 rad + pos: -8.5,18.5 parent: 2 - - uid: 13091 + - uid: 13678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.4581,-1.428875 + rot: 3.141592653589793 rad + pos: -10.5,18.5 parent: 2 - - uid: 13092 + - uid: 13679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.488424,-5.9124446 + rot: 3.141592653589793 rad + pos: -11.5,16.5 parent: 2 -- proto: SignDirectionalEvac - entities: - - uid: 13093 + - uid: 13680 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.550125,2.2846272 + rot: 3.141592653589793 rad + pos: -10.5,16.5 parent: 2 - - uid: 13094 + - uid: 13681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -145.5,-0.5 + rot: 3.141592653589793 rad + pos: -9.5,16.5 parent: 2 - - uid: 13095 + - uid: 13682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,-3.5 + rot: 3.141592653589793 rad + pos: -8.5,16.5 parent: 2 - - uid: 13096 + - uid: 13683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-8.5 + rot: -1.5707963267948966 rad + pos: -27.5,-34.5 parent: 2 - - uid: 13097 + - uid: 13684 components: - type: Transform - rot: 3.141592653589793 rad - pos: -204.4383,-1.7672005 + rot: -1.5707963267948966 rad + pos: -27.5,-35.5 parent: 2 - - uid: 13098 + - uid: 13685 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-5.5 + rot: -1.5707963267948966 rad + pos: -27.5,-36.5 parent: 2 - - uid: 13099 + - uid: 13686 components: - type: Transform - pos: -32.5,-13.5 + rot: -1.5707963267948966 rad + pos: -25.5,-36.5 parent: 2 -- proto: SignDirectionalFood - entities: - - uid: 13100 + - uid: 13687 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.58887,-7.76653 + rot: -1.5707963267948966 rad + pos: -25.5,-35.5 parent: 2 -- proto: SignDirectionalGravity - entities: - - uid: 13101 + - uid: 13688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.393032,10.326321 + rot: -1.5707963267948966 rad + pos: -25.5,-34.5 parent: 2 - - uid: 13102 + - uid: 13689 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.53414,-6.462267 + rot: -1.5707963267948966 rad + pos: -23.5,-33.5 parent: 2 - - uid: 13103 + - uid: 13690 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.49785,-5.7109203 + rot: -1.5707963267948966 rad + pos: -23.5,-34.5 parent: 2 -- proto: SignDirectionalHop - entities: - - uid: 13104 + - uid: 13691 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.52055,10.756876 + rot: -1.5707963267948966 rad + pos: -23.5,-35.5 parent: 2 - - uid: 13105 + - uid: 13692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.49939,-8.709096 + rot: -1.5707963267948966 rad + pos: -23.5,-35.5 parent: 2 - - uid: 13106 + - uid: 13693 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5434,-6.2460294 + rot: -1.5707963267948966 rad + pos: -33.5,-29.5 parent: 2 -- proto: SignDirectionalHydro - entities: - - uid: 13107 + - uid: 13694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.58887,-7.553567 + rot: -1.5707963267948966 rad + pos: -33.5,-28.5 parent: 2 - - uid: 13108 + - uid: 13695 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.38609,10.527709 + pos: -33.5,-27.5 parent: 2 -- proto: SignDirectionalJanitor - entities: - - uid: 13109 + - uid: 13696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5101,-9.667294 + rot: -1.5707963267948966 rad + pos: -33.5,-36.5 parent: 2 -- proto: SignDirectionalLibrary - entities: - - uid: 13110 + - uid: 13697 components: - type: Transform - pos: -89.4581,-1.6379676 + rot: -1.5707963267948966 rad + pos: -33.5,-35.5 parent: 2 - - uid: 13111 + - uid: 13698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.527493,10.541598 + rot: -1.5707963267948966 rad + pos: -33.5,-34.5 parent: 2 -- proto: SignDirectionalMed - entities: - - uid: 13112 + - uid: 13699 components: - type: Transform rot: -1.5707963267948966 rad - pos: -148.58969,-6.547092 + pos: -27.5,-29.5 parent: 2 - - uid: 13113 + - uid: 13700 components: - type: Transform - pos: -177.48415,-1.6657043 + rot: -1.5707963267948966 rad + pos: -27.5,-27.5 parent: 2 - - uid: 13114 + - uid: 13701 components: - type: Transform rot: -1.5707963267948966 rad - pos: -88.550125,2.7105532 + pos: -27.5,-27.5 parent: 2 -- proto: SignDirectionalSalvage - entities: - - uid: 13115 + - uid: 13702 components: - type: Transform - pos: -69.5,-25.5 + rot: -1.5707963267948966 rad + pos: -27.5,-28.5 parent: 2 -- proto: SignDirectionalSci - entities: - - uid: 13116 + - uid: 13703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -148.59023,-6.766977 + pos: -116.5,-26.5 parent: 2 - - uid: 13117 + - uid: 13704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -177.48705,-1.2332103 + pos: -116.5,-27.5 parent: 2 -- proto: SignDirectionalSolar - entities: - - uid: 13118 + - uid: 13705 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,6.5 + pos: -114.5,-29.5 parent: 2 - - uid: 13119 + - uid: 13706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-14.5 + pos: -114.5,-28.5 parent: 2 - - uid: 13120 + - uid: 13707 components: - type: Transform - pos: -39.5,-23.5 + pos: -112.5,-26.5 parent: 2 - - uid: 13121 + - uid: 13708 components: - type: Transform - pos: -85.5,-17.5 + pos: -112.5,-29.5 parent: 2 - - uid: 13122 + - uid: 13709 components: - type: Transform - pos: -96.5,-16.5 + pos: -110.5,-26.5 parent: 2 - - uid: 13123 + - uid: 13710 components: - type: Transform - pos: -101.5,-5.5 + pos: -110.5,-27.5 parent: 2 - - uid: 13124 + - uid: 13711 components: - type: Transform - pos: -100.5,-21.5 + pos: -110.5,-28.5 parent: 2 - - uid: 13125 + - uid: 13712 components: - type: Transform - rot: 3.141592653589793 rad - pos: -126.5,1.5 + pos: -108.5,-26.5 parent: 2 - - uid: 13126 + - uid: 13713 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,8.5 + pos: -108.5,-28.5 parent: 2 -- proto: SignDirectionalSupply - entities: - - uid: 13127 + - uid: 13714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,-27.5 + pos: -108.5,-29.5 parent: 2 - - uid: 13128 + - uid: 13715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.50168,-0.040854037 + pos: -106.5,-26.5 parent: 2 - - uid: 13129 + - uid: 13716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -109.496216,-3.286426 + pos: -106.5,-27.5 parent: 2 - - uid: 13130 + - uid: 13717 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5101,-9.45433 + pos: -106.5,-29.5 parent: 2 - - uid: 13131 + - uid: 13718 components: - type: Transform - pos: -88.550125,2.49759 + pos: -106.5,-33.5 parent: 2 -- proto: SignDrones - entities: - - uid: 13132 + - uid: 13719 components: - type: Transform - pos: -93.5,4.5 + pos: -106.5,-34.5 parent: 2 -- proto: SignEngine - entities: - - uid: 13133 + - uid: 13720 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-4.5 + pos: -112.5,-34.5 parent: 2 - - uid: 13134 + - uid: 13721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-2.5 + pos: -112.5,-33.5 parent: 2 -- proto: SignEngineering - entities: - - uid: 13135 + - uid: 13722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,6.5 + pos: -112.5,-35.5 parent: 2 -- proto: SignEscapePods - entities: - - uid: 13136 + - uid: 13723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-17.5 + pos: -114.5,-36.5 parent: 2 - - uid: 13137 + - uid: 13724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-17.5 + pos: -114.5,-35.5 parent: 2 - - uid: 13138 + - uid: 13725 components: - type: Transform - pos: -36.5,-17.5 + pos: -114.5,-34.5 parent: 2 -- proto: SignEVA - entities: - - uid: 13139 + - uid: 13726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-10.5 + pos: -116.5,-33.5 parent: 2 - - uid: 13140 + - uid: 13727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-10.5 + pos: -116.5,-34.5 parent: 2 - - uid: 13141 + - uid: 13728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-15.5 + pos: -127.5,21.5 parent: 2 -- proto: SignGravity - entities: - - uid: 13142 + - uid: 13729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,6.5 + pos: -127.5,20.5 parent: 2 -- proto: SignHead - entities: - - uid: 13143 + - uid: 13730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,2.5 + pos: -127.5,19.5 parent: 2 -- proto: SignHydro1 - entities: - - uid: 13144 + - uid: 13731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,-5.5 + pos: -129.5,18.5 parent: 2 -- proto: SignJanitor - entities: - - uid: 13145 + - uid: 13732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-8.5 + pos: -139.5,14.5 parent: 2 - - uid: 13146 + - uid: 13733 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-12.5 + pos: -135.5,20.5 parent: 2 -- proto: SignLibrary - entities: - - uid: 13147 + - uid: 13734 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-14.5 + pos: -135.5,19.5 parent: 2 -- proto: SignMedical - entities: - - uid: 13148 + - uid: 13735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -179.5,-12.5 + pos: -137.5,20.5 parent: 2 - - uid: 13149 + - uid: 13736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -193.5,-12.5 + pos: -137.5,21.5 parent: 2 - - uid: 13150 + - uid: 13737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -177.5,-5.5 + pos: -135.5,11.5 parent: 2 -- proto: SignMinerDock - entities: - - uid: 13151 + - uid: 13738 components: - type: Transform - pos: -85.5,-20.5 + pos: -135.5,12.5 parent: 2 -- proto: SignPlaque - entities: - - uid: 13152 + - uid: 13739 components: - type: Transform - pos: -68.5,-0.5 + pos: -139.5,12.5 parent: 2 -- proto: SignRadiationMed - entities: - - uid: 13153 + - uid: 13740 components: - type: Transform - pos: -74.5,-5.5 + pos: -129.5,11.5 parent: 2 - - uid: 13154 + - uid: 13741 components: - type: Transform - pos: -74.5,-1.5 + pos: -129.5,14.5 parent: 2 - - uid: 13155 + - uid: 13742 components: - type: Transform - pos: -80.5,-1.5 + pos: -129.5,13.5 parent: 2 - - uid: 13156 + - uid: 13743 components: - type: Transform - pos: -66.5,-2.5 + pos: -133.5,14.5 parent: 2 - - uid: 13157 + - uid: 13744 components: - type: Transform - pos: -79.5,6.5 + pos: -133.5,12.5 parent: 2 - - uid: 13158 + - uid: 13745 components: - type: Transform - pos: -52.5,-13.5 + pos: -31.5,-34.5 parent: 2 - - uid: 13159 + - uid: 13746 components: - type: Transform - pos: -95.5,-1.5 + pos: -29.5,-36.5 parent: 2 - - uid: 13160 + - uid: 13747 components: - type: Transform - pos: -82.5,-9.5 + pos: -25.5,-27.5 parent: 2 - - uid: 13161 + - uid: 13748 components: - type: Transform - pos: -82.5,2.5 + pos: -25.5,-26.5 parent: 2 - - uid: 13162 + - uid: 13749 components: - type: Transform - pos: -52.5,6.5 + pos: -29.5,-28.5 parent: 2 - - uid: 13163 + - uid: 13750 components: - type: Transform - pos: -79.5,-13.5 + pos: -29.5,-27.5 parent: 2 -- proto: SignRND - entities: - - uid: 13164 + - uid: 13751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -188.5,5.5 + pos: -29.5,-26.5 parent: 2 - - uid: 13165 + - uid: 13752 components: - type: Transform rot: 1.5707963267948966 rad - pos: -204.5,5.5 + pos: -181.5,-24.5 parent: 2 -- proto: SignRobo - entities: - - uid: 13166 + - uid: 13753 components: - type: Transform - pos: -192.5,23.5 + rot: 1.5707963267948966 rad + pos: -181.5,-25.5 parent: 2 -- proto: SignSalvage - entities: - - uid: 13167 + - uid: 13754 components: - type: Transform - pos: -83.5,-26.5 + rot: 1.5707963267948966 rad + pos: -181.5,-28.5 parent: 2 -- proto: SignScience - entities: - - uid: 13168 + - uid: 13755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -186.5,-1.5 + rot: 1.5707963267948966 rad + pos: -181.5,-27.5 parent: 2 -- proto: SignShipDock - entities: - - uid: 13169 + - uid: 13756 components: - type: Transform rot: 1.5707963267948966 rad - pos: -80.5,-33.5 + pos: -179.5,-27.5 parent: 2 - - uid: 13170 + - uid: 13757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -213.5,-5.5 + rot: 1.5707963267948966 rad + pos: -179.5,-28.5 parent: 2 - - uid: 13171 + - uid: 13758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -195.5,-5.5 + rot: 1.5707963267948966 rad + pos: -179.5,-25.5 parent: 2 -- proto: SignSomethingOld - entities: - - uid: 13172 + - uid: 13759 components: - type: Transform - pos: -63.5,-2.5 + rot: 1.5707963267948966 rad + pos: -179.5,-24.5 parent: 2 -- proto: SignSomethingOld2 +- proto: SolarPanelBroken entities: - - uid: 13173 + - uid: 13760 components: - type: Transform - pos: -56.5,-2.5 + rot: -1.5707963267948966 rad + pos: -29.5,-34.5 parent: 2 -- proto: SignSurgery - entities: - - uid: 13174 + - uid: 13761 components: - type: Transform - pos: -189.5,22.5 + rot: -1.5707963267948966 rad + pos: -29.5,-35.5 parent: 2 -- proto: SignTelecomms - entities: - - uid: 13175 + - uid: 13762 components: - type: Transform - pos: -13.5,-10.5 + rot: -1.5707963267948966 rad + pos: -31.5,-36.5 parent: 2 -- proto: SignZomlab - entities: - - uid: 13176 + - uid: 13763 components: - - type: MetaData - name: зондбе-дабалатория - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,16.5 + pos: -31.5,-35.5 parent: 2 -- proto: SinkStemlessWater - entities: - - uid: 13177 + - uid: 13764 components: - type: Transform - rot: 3.141592653589793 rad - pos: -192.5,10.5 + rot: -1.5707963267948966 rad + pos: -29.5,-33.5 parent: 2 - - uid: 13178 + - uid: 13765 components: - type: Transform - rot: 3.141592653589793 rad - pos: -200.5,10.5 + rot: -1.5707963267948966 rad + pos: -27.5,-33.5 parent: 2 -- proto: SinkWide - entities: - - uid: 13179 + - uid: 13766 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-10.5 + pos: -25.5,-29.5 parent: 2 - - uid: 13180 + - uid: 13767 components: - type: Transform - pos: -120.5,4.5 + rot: -1.5707963267948966 rad + pos: -25.5,-28.5 parent: 2 - - uid: 13181 + - uid: 13768 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,-13.5 + rot: -1.5707963267948966 rad + pos: -23.5,-29.5 parent: 2 -- proto: SlipocalypseClusterSoap - entities: - - uid: 13182 + - uid: 13769 components: - - type: MetaData - desc: пахнет.... обманом? - name: мыло синдиката - type: Transform - pos: -91.594345,-8.463688 + rot: -1.5707963267948966 rad + pos: -23.5,-28.5 parent: 2 -- proto: SmallLight - entities: - - uid: 13183 + - uid: 13770 components: - type: Transform - pos: -91.5,15.5 + rot: -1.5707963267948966 rad + pos: -23.5,-27.5 parent: 2 - - type: PointLight - radius: 2 - - uid: 13184 + - uid: 13771 components: - type: Transform - pos: -95.5,-6.5 + rot: -1.5707963267948966 rad + pos: -23.5,-26.5 parent: 2 - - type: PointLight - radius: 3 - - uid: 13185 + - uid: 13772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -162.5,-15.5 + rot: -1.5707963267948966 rad + pos: -23.5,-36.5 parent: 2 -- proto: SmartFridge - entities: - - uid: 13186 + - uid: 13773 components: - type: Transform - pos: -164.5,-20.5 + rot: -1.5707963267948966 rad + pos: -25.5,-33.5 parent: 2 - - uid: 13187 + - uid: 13774 components: - type: Transform - pos: -189.5,-24.5 + rot: -1.5707963267948966 rad + pos: -31.5,-29.5 parent: 2 - - uid: 13188 + - uid: 13775 components: - type: Transform - pos: -110.5,-9.5 + rot: -1.5707963267948966 rad + pos: -31.5,-28.5 parent: 2 -- proto: SMESBasic - entities: - - uid: 13189 + - uid: 13776 components: - type: Transform - pos: -174.5,-6.5 + rot: -1.5707963267948966 rad + pos: -31.5,-28.5 parent: 2 - - uid: 13190 + - uid: 13777 components: - type: Transform - pos: -182.5,-10.5 + pos: -108.5,-36.5 parent: 2 - - uid: 13191 + - uid: 13778 components: - type: Transform - pos: -62.5,-11.5 + pos: -108.5,-35.5 parent: 2 - - uid: 13192 + - uid: 13779 components: - type: Transform - pos: -62.5,-10.5 + pos: -110.5,-29.5 parent: 2 - - uid: 13193 + - uid: 13780 components: - type: Transform - pos: -62.5,-9.5 + pos: -112.5,-28.5 parent: 2 - - uid: 13194 + - uid: 13781 components: - type: Transform - pos: -68.5,-5.5 + pos: -112.5,-27.5 parent: 2 - - uid: 13195 + - uid: 13782 components: - type: Transform - pos: -191.5,15.5 + pos: -114.5,-27.5 parent: 2 - - uid: 13196 + - uid: 13783 components: - type: Transform - pos: -85.5,-33.5 + pos: -114.5,-26.5 parent: 2 - - uid: 13197 + - uid: 13784 components: - type: Transform - pos: -16.5,10.5 + pos: -116.5,-36.5 parent: 2 - - uid: 13198 + - uid: 13785 components: - type: Transform - pos: -16.5,-14.5 + pos: -110.5,-33.5 parent: 2 - - uid: 13199 + - uid: 13786 components: - type: Transform - pos: -10.5,-7.5 + pos: -110.5,-34.5 parent: 2 - - uid: 17113 - components: - - type: Transform - pos: 13.5,-0.5 - parent: 17021 -- proto: SMESBasicEmpty - entities: - - uid: 13200 + - uid: 13787 components: - type: Transform - pos: -102.5,-23.5 + pos: -106.5,-36.5 parent: 2 - - uid: 13201 + - uid: 13788 components: - type: Transform - pos: -39.5,-24.5 + rot: 1.5707963267948966 rad + pos: -131.5,19.5 parent: 2 - - uid: 13202 + - uid: 13789 components: - type: Transform - pos: -124.5,10.5 + rot: 1.5707963267948966 rad + pos: -131.5,20.5 parent: 2 - - uid: 13203 + - uid: 13790 components: - type: Transform - pos: -12.5,10.5 + rot: 1.5707963267948966 rad + pos: -135.5,18.5 parent: 2 -- proto: SoapHomemade - entities: - - uid: 13204 + - uid: 13791 components: - type: Transform - pos: -92.52622,-11.487034 + rot: 1.5707963267948966 rad + pos: -135.5,21.5 parent: 2 -- proto: soda_dispenser - entities: - - uid: 13205 + - uid: 13792 components: - type: Transform - pos: -118.5,4.5 + rot: 1.5707963267948966 rad + pos: -137.5,13.5 parent: 2 - - uid: 13206 + - uid: 13793 components: - type: Transform rot: 1.5707963267948966 rad - pos: -121.5,14.5 + pos: -137.5,12.5 parent: 2 -- proto: SolarControlComputerCircuitboard - entities: - - uid: 13207 + - uid: 13794 components: - type: Transform - pos: -53.450447,-3.5697246 + rot: 1.5707963267948966 rad + pos: -135.5,14.5 parent: 2 -- proto: SolarPanel - entities: - - uid: 13208 + - uid: 13795 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,26.5 + rot: 1.5707963267948966 rad + pos: -131.5,11.5 parent: 2 - - uid: 13209 + - uid: 13796 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,26.5 + rot: 1.5707963267948966 rad + pos: -131.5,12.5 parent: 2 - - uid: 13210 +- proto: SolarTracker + entities: + - uid: 13797 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,26.5 + pos: -13.5,27.5 parent: 2 - - uid: 13211 + - uid: 13798 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,26.5 + pos: -21.5,-31.5 parent: 2 - - uid: 13212 + - uid: 13799 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,24.5 + pos: -119.5,-31.5 parent: 2 - - uid: 13213 + - uid: 13800 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,24.5 + pos: -132.5,25.5 parent: 2 - - uid: 13214 + - uid: 13801 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,24.5 + pos: -178.5,-26.5 parent: 2 - - uid: 13215 +- proto: SolidSecretDoor + entities: + - uid: 13802 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,24.5 + pos: -96.5,-10.5 parent: 2 - - uid: 13216 + - uid: 13803 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,22.5 + rot: -1.5707963267948966 rad + pos: -84.5,-36.5 parent: 2 - - uid: 13217 + - uid: 13804 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,22.5 + pos: -43.5,14.5 parent: 2 - - uid: 13218 + - uid: 13805 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,22.5 + pos: -73.5,-22.5 parent: 2 - - uid: 13219 + - uid: 13806 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,22.5 + pos: -169.5,-22.5 parent: 2 - - uid: 13220 +- proto: SophicScribeSpawner + entities: + - uid: 13807 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,20.5 + pos: -38.5,4.5 parent: 2 - - uid: 13221 +- proto: SpaceCash10 + entities: + - uid: 13808 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,20.5 + rot: -1.5707963267948966 rad + pos: -110.14563,15.7695265 parent: 2 - - uid: 13222 + - uid: 13809 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,20.5 + pos: -110.411255,17.628902 parent: 2 - - uid: 13223 + - uid: 13810 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,20.5 + pos: -109.45813,16.613277 parent: 2 - - uid: 13224 +- proto: SpaceCash100 + entities: + - uid: 13811 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,20.5 + pos: -114.78506,15.583378 parent: 2 - - uid: 13225 + - uid: 13812 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,20.5 + pos: -114.69131,15.411503 parent: 2 - - uid: 13226 +- proto: SpaceMedipen + entities: + - uid: 13814 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,20.5 - parent: 2 - - uid: 13227 + parent: 13813 + - type: Physics + canCollide: False +- proto: SpacemenFigureSpawner + entities: + - uid: 13815 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,20.5 + pos: -44.5,-18.5 parent: 2 - - uid: 13228 +- proto: SpaceTickSpawner + entities: + - uid: 13816 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,22.5 + pos: -94.5,-6.5 parent: 2 - - uid: 13229 + - uid: 13817 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,22.5 + pos: -93.5,-7.5 parent: 2 - - uid: 13230 +- proto: SpawnMobCatException + entities: + - uid: 13818 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,22.5 + pos: -186.5,-8.5 parent: 2 - - uid: 13231 +- proto: SpawnMobCatFloppa + entities: + - uid: 13819 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,22.5 + pos: -43.5,-16.5 parent: 2 - - uid: 13232 +- proto: SpawnMobCatKitten + entities: + - uid: 13820 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,24.5 + pos: -114.5,-11.5 parent: 2 - - uid: 13233 +- proto: SpawnMobCatSpace + entities: + - uid: 13821 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,24.5 + pos: -64.5,20.5 parent: 2 - - uid: 13234 +- proto: SpawnMobCorgi + entities: + - uid: 13822 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,24.5 + pos: -21.5,-0.5 parent: 2 - - uid: 13235 +- proto: SpawnMobCrabAtmos + entities: + - uid: 13823 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,24.5 + pos: -60.5,3.5 parent: 2 - - uid: 13236 +- proto: SpawnMobDrone + entities: + - uid: 13824 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,26.5 + rot: -1.5707963267948966 rad + pos: -91.5,3.5 parent: 2 - - uid: 13237 + - uid: 13825 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,26.5 + rot: -1.5707963267948966 rad + pos: -91.5,4.5 parent: 2 - - uid: 13238 + - uid: 13826 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,26.5 + rot: -1.5707963267948966 rad + pos: -92.5,4.5 parent: 2 - - uid: 13239 +- proto: SpawnMobFoxRenault + entities: + - uid: 13827 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,26.5 + pos: -7.5,-12.5 parent: 2 - - uid: 13240 +- proto: SpawnMobMcGriff + entities: + - uid: 13828 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,18.5 + pos: -166.5,9.5 parent: 2 - - uid: 13241 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 13829 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,18.5 + pos: -117.5,3.5 parent: 2 - - uid: 13242 +- proto: SpawnMobPenguin + entities: + - uid: 13830 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,18.5 + pos: -197.5,8.5 parent: 2 - - uid: 13243 +- proto: SpawnMobRaccoonMorticia + entities: + - uid: 13831 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,18.5 + pos: -66.5,-20.5 parent: 2 - - uid: 13244 +- proto: SpawnMobSecDogLaika + entities: + - uid: 13832 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,16.5 + pos: -149.5,2.5 parent: 2 - - uid: 13245 +- proto: SpawnMobShiva + entities: + - uid: 13833 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,16.5 + pos: -157.5,17.5 parent: 2 - - uid: 13246 +- proto: SpawnMobSpaceSpider + entities: + - uid: 17540 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,16.5 + pos: -37.5,34.5 parent: 2 - - uid: 13247 +- proto: SpawnPointAtmos + entities: + - uid: 13834 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,16.5 + pos: -60.5,16.5 parent: 2 - - uid: 13248 + - uid: 13835 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,18.5 + pos: -56.5,15.5 parent: 2 - - uid: 13249 + - uid: 13836 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,18.5 + pos: -56.5,17.5 parent: 2 - - uid: 13250 +- proto: SpawnPointBartender + entities: + - uid: 13837 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,18.5 + pos: -111.5,5.5 parent: 2 - - uid: 13251 + - uid: 13838 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,18.5 + pos: -111.5,3.5 parent: 2 - - uid: 13252 +- proto: SpawnPointBorg + entities: + - uid: 11129 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,16.5 + pos: -193.5,4.5 parent: 2 - - uid: 13253 +- proto: SpawnPointBotanist + entities: + - uid: 13839 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,16.5 + pos: -101.5,-15.5 parent: 2 - - uid: 13254 + - uid: 13840 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,16.5 + pos: -100.5,-17.5 parent: 2 - - uid: 13255 + - uid: 13841 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,16.5 + pos: -108.5,-15.5 parent: 2 - - uid: 13256 +- proto: SpawnPointBrigmedic + entities: + - uid: 13842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-34.5 + pos: -176.5,1.5 parent: 2 - - uid: 13257 +- proto: SpawnPointCaptain + entities: + - uid: 13843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-35.5 + pos: -9.5,-10.5 parent: 2 - - uid: 13258 +- proto: SpawnPointCargoTechnician + entities: + - uid: 13844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-36.5 + pos: -62.5,-22.5 parent: 2 - - uid: 13259 + - uid: 13845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-36.5 + pos: -56.5,-24.5 parent: 2 - - uid: 13260 + - uid: 13846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-35.5 + pos: -65.5,-26.5 parent: 2 - - uid: 13261 +- proto: SpawnPointChaplain + entities: + - uid: 13847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-34.5 + pos: -40.5,10.5 parent: 2 - - uid: 13262 + - uid: 13848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-33.5 + pos: -39.5,3.5 parent: 2 - - uid: 13263 +- proto: SpawnPointChef + entities: + - uid: 13849 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-34.5 + pos: -116.5,-11.5 parent: 2 - - uid: 13264 + - uid: 13850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-35.5 + pos: -113.5,-11.5 parent: 2 - - uid: 13265 +- proto: SpawnPointChemist + entities: + - uid: 13851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-35.5 + pos: -190.5,-24.5 parent: 2 - - uid: 13266 +- proto: SpawnPointChiefEngineer + entities: + - uid: 13852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-29.5 + pos: -62.5,2.5 parent: 2 - - uid: 13267 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 13853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-28.5 + pos: -188.5,-9.5 parent: 2 - - uid: 13268 +- proto: SpawnPointClown + entities: + - uid: 13854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-27.5 + pos: -120.5,-9.5 parent: 2 - - uid: 13269 +- proto: SpawnPointDetective + entities: + - uid: 13855 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-36.5 + pos: -147.5,5.5 parent: 2 - - uid: 13270 + - uid: 13856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-35.5 + pos: -147.5,3.5 parent: 2 - - uid: 13271 +- proto: SpawnPointForensicMantis + entities: + - uid: 13857 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-34.5 + pos: -193.5,16.5 parent: 2 - - uid: 13272 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 13858 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-29.5 + pos: -20.5,-4.5 parent: 2 - - uid: 13273 + - uid: 13859 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-27.5 + pos: -17.5,-0.5 parent: 2 - - uid: 13274 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 13860 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-27.5 + pos: -160.5,15.5 parent: 2 - - uid: 13275 + - uid: 13861 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-28.5 + pos: -155.5,16.5 parent: 2 - - uid: 13276 +- proto: SpawnPointJanitor + entities: + - uid: 13862 components: - type: Transform - pos: -116.5,-26.5 + pos: -32.5,-11.5 parent: 2 - - uid: 13277 + - uid: 13863 components: - type: Transform - pos: -116.5,-27.5 + pos: -30.5,-10.5 parent: 2 - - uid: 13278 +- proto: SpawnPointLawyer + entities: + - uid: 13864 components: - type: Transform - pos: -114.5,-29.5 + pos: -142.5,0.5 parent: 2 - - uid: 13279 + - uid: 13865 components: - type: Transform - pos: -114.5,-28.5 + pos: -140.5,5.5 parent: 2 - - uid: 13280 +- proto: SpawnPointLibrarian + entities: + - uid: 13866 components: - type: Transform - pos: -112.5,-26.5 + pos: -47.5,-18.5 parent: 2 - - uid: 13281 +- proto: SpawnPointMailCarrier + entities: + - uid: 11140 components: - type: Transform - pos: -112.5,-29.5 + pos: -74.5,-19.5 parent: 2 - - uid: 13282 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 13867 components: - type: Transform - pos: -110.5,-26.5 + pos: -188.5,-17.5 parent: 2 - - uid: 13283 + - uid: 13868 components: - type: Transform - pos: -110.5,-27.5 + pos: -184.5,-25.5 parent: 2 - - uid: 13284 +- proto: SpawnPointMedicalIntern + entities: + - uid: 13869 components: - type: Transform - pos: -110.5,-28.5 + pos: -183.5,-16.5 parent: 2 - - uid: 13285 + - uid: 13870 components: - type: Transform - pos: -108.5,-26.5 + pos: -184.5,-27.5 parent: 2 - - uid: 13286 +- proto: SpawnPointMime + entities: + - uid: 13871 components: - type: Transform - pos: -108.5,-28.5 + pos: -120.5,-11.5 parent: 2 - - uid: 13287 +- proto: SpawnPointMusician + entities: + - uid: 13872 components: - type: Transform - pos: -108.5,-29.5 + pos: -128.5,-10.5 parent: 2 - - uid: 13288 +- proto: SpawnPointObserver + entities: + - uid: 13873 components: - type: Transform - pos: -106.5,-26.5 + pos: -31.5,-2.5 parent: 2 - - uid: 13289 +- proto: SpawnPointParamedic + entities: + - uid: 13874 components: - type: Transform - pos: -106.5,-27.5 + pos: -184.5,-26.5 parent: 2 - - uid: 13290 +- proto: SpawnPointPassenger + entities: + - uid: 13875 components: - type: Transform - pos: -106.5,-29.5 + pos: -61.5,7.5 parent: 2 - - uid: 13291 + - uid: 13876 components: - type: Transform - pos: -106.5,-33.5 + pos: -41.5,-12.5 parent: 2 - - uid: 13292 + - uid: 13877 components: - type: Transform - pos: -106.5,-34.5 + pos: -28.5,-1.5 parent: 2 - - uid: 13293 + - uid: 13878 components: - type: Transform - pos: -112.5,-34.5 + pos: -75.5,7.5 parent: 2 - - uid: 13294 + - uid: 13879 components: - type: Transform - pos: -112.5,-33.5 + pos: -89.5,-7.5 parent: 2 - - uid: 13295 + - uid: 13880 components: - type: Transform - pos: -112.5,-35.5 + pos: -46.5,-5.5 parent: 2 - - uid: 13296 + - uid: 13881 components: - type: Transform - pos: -114.5,-36.5 + pos: -44.5,3.5 parent: 2 - - uid: 13297 + - uid: 13882 components: - type: Transform - pos: -114.5,-35.5 + pos: -134.5,-4.5 parent: 2 - - uid: 13298 + - uid: 13883 components: - type: Transform - pos: -114.5,-34.5 + pos: -118.5,-7.5 parent: 2 - - uid: 13299 + - uid: 13884 components: - type: Transform - pos: -116.5,-33.5 + pos: -110.5,-6.5 parent: 2 - - uid: 13300 + - uid: 13885 components: - type: Transform - pos: -116.5,-34.5 + pos: -105.5,5.5 parent: 2 - - uid: 13301 + - uid: 13886 components: - type: Transform - pos: -127.5,21.5 + pos: -101.5,13.5 parent: 2 - - uid: 13302 +- proto: SpawnPointPrisoner + entities: + - uid: 13887 components: - type: Transform - pos: -127.5,20.5 + pos: -158.5,-23.5 parent: 2 - - uid: 13303 + - uid: 13888 components: - type: Transform - pos: -127.5,19.5 + pos: -154.5,-17.5 parent: 2 - - uid: 13304 +- proto: SpawnPointPrisonGuard + entities: + - uid: 13889 components: - type: Transform - pos: -129.5,18.5 + pos: -158.5,-10.5 parent: 2 - - uid: 13305 +- proto: SpawnPointQuartermaster + entities: + - uid: 13890 components: - type: Transform - pos: -139.5,14.5 + pos: -67.5,-18.5 parent: 2 - - uid: 13306 +- proto: SpawnPointReporter + entities: + - uid: 13891 components: - type: Transform - pos: -135.5,20.5 + pos: -30.5,7.5 parent: 2 - - uid: 13307 +- proto: SpawnPointResearchAssistant + entities: + - uid: 13892 components: - type: Transform - pos: -135.5,19.5 + pos: -200.5,7.5 parent: 2 - - uid: 13308 + - uid: 13893 components: - type: Transform - pos: -137.5,20.5 + pos: -196.5,3.5 parent: 2 - - uid: 13309 +- proto: SpawnPointResearchDirector + entities: + - uid: 13894 components: - type: Transform - pos: -137.5,21.5 + pos: -198.5,16.5 parent: 2 - - uid: 13310 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 13895 components: - type: Transform - pos: -135.5,11.5 + pos: -85.5,-29.5 parent: 2 - - uid: 13311 + - uid: 13896 components: - type: Transform - pos: -135.5,12.5 + pos: -83.5,-31.5 parent: 2 - - uid: 13312 + - uid: 13897 components: - type: Transform - pos: -139.5,12.5 + pos: -82.5,-35.5 parent: 2 - - uid: 13313 +- proto: SpawnPointScientist + entities: + - uid: 13898 components: - type: Transform - pos: -129.5,11.5 + pos: -200.5,9.5 parent: 2 - - uid: 13314 + - uid: 13899 components: - type: Transform - pos: -129.5,14.5 + pos: -192.5,12.5 parent: 2 - - uid: 13315 + - uid: 13900 components: - type: Transform - pos: -129.5,13.5 + pos: -198.5,2.5 parent: 2 - - uid: 13316 +- proto: SpawnPointSecurityCadet + entities: + - uid: 13901 components: - type: Transform - pos: -133.5,14.5 + pos: -167.5,-11.5 parent: 2 - - uid: 13317 + - uid: 13902 components: - type: Transform - pos: -133.5,12.5 + pos: -169.5,-11.5 parent: 2 - - uid: 13318 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 13903 components: - type: Transform - pos: -31.5,-34.5 + pos: -167.5,-8.5 parent: 2 - - uid: 13319 + - uid: 13904 components: - type: Transform - pos: -29.5,-36.5 + pos: -167.5,-10.5 parent: 2 - - uid: 13320 + - uid: 13905 components: - type: Transform - pos: -25.5,-27.5 + pos: -168.5,-12.5 parent: 2 - - uid: 13321 + - uid: 13906 components: - type: Transform - pos: -25.5,-26.5 + pos: -163.5,-11.5 parent: 2 - - uid: 13322 +- proto: SpawnPointSeniorEngineer + entities: + - uid: 13907 components: - type: Transform - pos: -29.5,-28.5 + pos: -68.5,-3.5 parent: 2 - - uid: 13323 + - uid: 13908 components: - type: Transform - pos: -29.5,-27.5 + pos: -68.5,-8.5 parent: 2 - - uid: 13324 +- proto: SpawnPointSeniorOfficer + entities: + - uid: 13909 components: - type: Transform - pos: -29.5,-26.5 + pos: -162.5,-13.5 parent: 2 -- proto: SolarPanelBroken +- proto: SpawnPointSeniorResearcher entities: - - uid: 13325 + - uid: 13910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-34.5 + pos: -200.5,8.5 parent: 2 - - uid: 13326 +- proto: SpawnPointServiceWorker + entities: + - uid: 13911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-35.5 + pos: -117.5,-0.5 parent: 2 - - uid: 13327 + - uid: 13912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-36.5 + pos: -114.5,-5.5 parent: 2 - - uid: 13328 +- proto: SpawnPointStationEngineer + entities: + - uid: 13913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-35.5 + pos: -68.5,-11.5 parent: 2 - - uid: 13329 + - uid: 13914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-33.5 + pos: -65.5,-10.5 parent: 2 - - uid: 13330 + - uid: 13915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-33.5 + pos: -60.5,-5.5 parent: 2 - - uid: 13331 + - uid: 13916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-29.5 + pos: -54.5,3.5 parent: 2 - - uid: 13332 + - uid: 13917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-28.5 + pos: -68.5,2.5 parent: 2 - - uid: 13333 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 13918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-29.5 + pos: -66.5,1.5 parent: 2 - - uid: 13334 + - uid: 13919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-28.5 + pos: -60.5,-2.5 parent: 2 - - uid: 13335 +- proto: SpawnPointWarden + entities: + - uid: 13920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-27.5 + pos: -164.5,7.5 parent: 2 - - uid: 13336 + - uid: 13921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-26.5 + pos: -164.5,12.5 parent: 2 - - uid: 13337 +- proto: SpearBone + entities: + - uid: 13922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-36.5 + rot: 3.141592653589793 rad + pos: -122.50326,3.2603016 parent: 2 - - uid: 13338 +- proto: SpeedLoaderMagnum + entities: + - uid: 11735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-33.5 - parent: 2 - - uid: 13339 + parent: 11733 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: SpiderWeb + entities: + - uid: 14426 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-29.5 + pos: -212.5,-14.5 parent: 2 - - uid: 13340 + - uid: 17714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-28.5 + pos: -207.5,2.5 parent: 2 - - uid: 13341 + - uid: 17751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-28.5 + pos: -224.5,-4.5 parent: 2 - - uid: 13342 + - uid: 17752 components: - type: Transform - pos: -108.5,-36.5 + pos: -220.5,-2.5 parent: 2 - - uid: 13343 + - uid: 17753 components: - type: Transform - pos: -108.5,-35.5 + pos: -222.5,-10.5 parent: 2 - - uid: 13344 + - uid: 17754 components: - type: Transform - pos: -110.5,-29.5 + pos: -226.5,-11.5 parent: 2 - - uid: 13345 + - uid: 17755 components: - type: Transform - pos: -112.5,-28.5 + pos: -224.5,-16.5 parent: 2 - - uid: 13346 + - uid: 17756 components: - type: Transform - pos: -112.5,-27.5 + pos: -226.5,-20.5 parent: 2 - - uid: 13347 + - uid: 17757 components: - type: Transform - pos: -114.5,-27.5 + pos: -229.5,-24.5 parent: 2 - - uid: 13348 + - uid: 17758 components: - type: Transform - pos: -114.5,-26.5 + pos: -226.5,-26.5 parent: 2 - - uid: 13349 + - uid: 17759 components: - type: Transform - pos: -116.5,-36.5 + pos: -222.5,-30.5 parent: 2 - - uid: 13350 + - uid: 17760 components: - type: Transform - pos: -110.5,-33.5 + pos: -227.5,-33.5 parent: 2 - - uid: 13351 + - uid: 17761 components: - type: Transform - pos: -110.5,-34.5 + pos: -221.5,-35.5 parent: 2 - - uid: 13352 + - uid: 17762 components: - type: Transform - pos: -106.5,-36.5 + pos: -218.5,-37.5 parent: 2 - - uid: 13353 + - uid: 17763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,19.5 + pos: -217.5,-31.5 parent: 2 - - uid: 13354 + - uid: 17764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,20.5 + pos: -219.5,-28.5 parent: 2 - - uid: 13355 + - uid: 17765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,18.5 + pos: -219.5,-25.5 parent: 2 - - uid: 13356 + - uid: 17766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,21.5 + pos: -222.5,-23.5 parent: 2 - - uid: 13357 + - uid: 17767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -137.5,13.5 + pos: -215.5,-22.5 parent: 2 - - uid: 13358 + - uid: 17768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -137.5,12.5 + pos: -219.5,-19.5 parent: 2 - - uid: 13359 + - uid: 17769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,14.5 + pos: -220.5,-16.5 parent: 2 - - uid: 13360 + - uid: 17770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,11.5 + pos: -218.5,-12.5 parent: 2 - - uid: 13361 + - uid: 17771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,12.5 + pos: -216.5,-6.5 parent: 2 -- proto: SolarTracker - entities: - - uid: 13362 + - uid: 17772 components: - type: Transform - pos: -13.5,27.5 + pos: -220.5,-5.5 parent: 2 - - uid: 13363 + - uid: 17773 components: - type: Transform - pos: -21.5,-31.5 + pos: -216.5,-3.5 parent: 2 - - uid: 13364 + - uid: 17774 components: - type: Transform - pos: -119.5,-31.5 + pos: -214.5,-20.5 parent: 2 - - uid: 13365 + - uid: 17775 components: - type: Transform - pos: -132.5,25.5 + pos: -209.5,8.5 parent: 2 -- proto: SolidSecretDoor - entities: - - uid: 13366 + - uid: 17776 components: - type: Transform - pos: -96.5,-10.5 + pos: -196.5,-20.5 parent: 2 - - uid: 13367 + - uid: 17777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,-36.5 + pos: -205.5,15.5 parent: 2 - - uid: 13368 + - uid: 17778 components: - type: Transform - pos: -43.5,14.5 + pos: -205.5,-4.5 parent: 2 - - uid: 13369 + - uid: 17779 components: - type: Transform - pos: -73.5,-22.5 + pos: -189.5,-2.5 parent: 2 - - uid: 13370 + - uid: 17781 components: - type: Transform - pos: -111.5,-17.5 + pos: -185.5,-16.5 parent: 2 - - uid: 13371 + - uid: 17782 components: - type: Transform - pos: -169.5,-22.5 + pos: -187.5,-23.5 parent: 2 -- proto: SophicScribeSpawner - entities: - - uid: 13372 + - uid: 17783 components: - type: Transform - pos: -38.5,4.5 + pos: -176.5,-19.5 parent: 2 -- proto: SpaceCash10 - entities: - - uid: 13373 + - uid: 17784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.14563,15.7695265 + pos: -178.5,-7.5 parent: 2 - - uid: 13374 + - uid: 17785 components: - type: Transform - pos: -110.411255,17.628902 + pos: -176.5,-0.5 parent: 2 - - uid: 13375 + - uid: 17786 components: - type: Transform - pos: -109.45813,16.613277 + pos: -173.5,-0.5 parent: 2 -- proto: SpaceCash100 - entities: - - uid: 13376 + - uid: 17787 components: - type: Transform - pos: -114.78506,15.583378 + pos: -168.5,1.5 parent: 2 - - uid: 13377 + - uid: 17788 components: - type: Transform - pos: -114.69131,15.411503 + pos: -163.5,1.5 parent: 2 -- proto: SpaceMedipen - entities: - - uid: 13379 + - uid: 17789 components: - type: Transform - parent: 13378 - - type: Physics - canCollide: False -- proto: SpacemenFigureSpawner - entities: - - uid: 13380 + pos: -161.5,-4.5 + parent: 2 + - uid: 17790 components: - type: Transform - pos: -44.5,-18.5 + pos: -151.5,-2.5 parent: 2 -- proto: SpaceTickSpawner - entities: - - uid: 13381 + - uid: 17791 components: - type: Transform - pos: -94.5,-6.5 + pos: -153.5,-20.5 parent: 2 - - uid: 13382 + - uid: 17792 components: - type: Transform - pos: -93.5,-7.5 + pos: -160.5,-17.5 parent: 2 -- proto: SpawnMobBandito - entities: - - uid: 13383 + - uid: 17793 components: - type: Transform - pos: -203.5,21.5 + pos: -166.5,-21.5 parent: 2 -- proto: SpawnMobCatException - entities: - - uid: 13384 + - uid: 17794 components: - type: Transform - pos: -186.5,-8.5 + pos: -161.5,-24.5 parent: 2 -- proto: SpawnMobCatFloppa - entities: - - uid: 13385 + - uid: 17795 components: - type: Transform - pos: -43.5,-16.5 + pos: -163.5,-8.5 parent: 2 -- proto: SpawnMobCatKitten - entities: - - uid: 13386 + - uid: 17796 components: - type: Transform - pos: -114.5,-11.5 + pos: -169.5,-10.5 parent: 2 -- proto: SpawnMobCatSpace - entities: - - uid: 13387 + - uid: 17797 components: - type: Transform - pos: -64.5,20.5 + pos: -167.5,6.5 parent: 2 -- proto: SpawnMobCorgi - entities: - - uid: 13388 + - uid: 17798 components: - type: Transform - pos: -21.5,-0.5 + pos: -177.5,7.5 parent: 2 -- proto: SpawnMobCrabAtmos - entities: - - uid: 13389 + - uid: 17799 components: - type: Transform - pos: -60.5,3.5 + pos: -172.5,11.5 parent: 2 -- proto: SpawnMobDrone - entities: - - uid: 13390 + - uid: 17800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,3.5 + pos: -157.5,11.5 parent: 2 - - uid: 13391 + - uid: 17801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,4.5 + pos: -147.5,9.5 parent: 2 - - uid: 13392 + - uid: 17802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,4.5 + pos: -141.5,-4.5 parent: 2 -- proto: SpawnMobFoxRenault - entities: - - uid: 13393 + - uid: 17803 components: - type: Transform - pos: -7.5,-12.5 + pos: -147.5,-6.5 parent: 2 -- proto: SpawnMobKangarooSalvage - entities: - - uid: 13394 + - uid: 17804 components: - type: Transform - pos: -76.5,48.5 + pos: -139.5,3.5 parent: 2 -- proto: SpawnMobMcGriff - entities: - - uid: 13395 + - uid: 17805 components: - type: Transform - pos: -166.5,9.5 + pos: -143.5,0.5 parent: 2 -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 13396 + - uid: 17806 components: - type: Transform - pos: -117.5,3.5 + pos: -136.5,1.5 parent: 2 -- proto: SpawnMobRaccoonMorticia - entities: - - uid: 13397 + - uid: 17807 components: - type: Transform - pos: -66.5,-20.5 + pos: -132.5,3.5 parent: 2 -- proto: SpawnMobSecDogLaika - entities: - - uid: 13398 + - uid: 17808 components: - type: Transform - pos: -149.5,2.5 + pos: -137.5,7.5 parent: 2 -- proto: SpawnMobShiva - entities: - - uid: 13399 + - uid: 17809 components: - type: Transform - rot: 3.141592653589793 rad - pos: -157.5,17.5 + pos: -127.5,5.5 parent: 2 -- proto: SpawnMobSmile - entities: - - uid: 13400 + - uid: 17810 components: - type: Transform - pos: -196.5,7.5 + pos: -133.5,-1.5 parent: 2 -- proto: SpawnMobSpiderSalvage - entities: - - uid: 13401 + - uid: 17811 components: - type: Transform - pos: -54.5,48.5 + pos: -127.5,-4.5 parent: 2 - - uid: 13402 + - uid: 17812 components: - type: Transform - pos: -53.5,50.5 + pos: -130.5,-7.5 parent: 2 -- proto: SpawnMobWalter - entities: - - uid: 13403 + - uid: 17813 components: - type: Transform - pos: -182.5,-23.5 + pos: -130.5,-11.5 parent: 2 -- proto: SpawnPointAtmos - entities: - - uid: 13404 + - uid: 17814 components: - type: Transform - pos: -60.5,16.5 + pos: -121.5,-17.5 parent: 2 - - uid: 13405 + - uid: 17815 components: - type: Transform - pos: -56.5,15.5 + pos: -128.5,-20.5 parent: 2 - - uid: 13406 + - uid: 17816 components: - type: Transform - pos: -56.5,17.5 + pos: -112.5,-21.5 parent: 2 -- proto: SpawnPointBartender - entities: - - uid: 13407 + - uid: 17817 components: - type: Transform - pos: -111.5,5.5 + pos: -102.5,-20.5 parent: 2 - - uid: 13408 + - uid: 17818 components: - type: Transform - pos: -111.5,3.5 + pos: -106.5,-18.5 parent: 2 -- proto: SpawnPointBorg - entities: - - uid: 13409 + - uid: 17819 components: - type: Transform - pos: -190.5,20.5 + pos: -95.5,-16.5 parent: 2 -- proto: SpawnPointBotanist - entities: - - uid: 13410 + - uid: 17820 components: - type: Transform - pos: -101.5,-15.5 + pos: -84.5,-18.5 parent: 2 - - uid: 13411 + - uid: 17821 components: - type: Transform - pos: -100.5,-17.5 + pos: -77.5,-19.5 parent: 2 - - uid: 13412 + - uid: 17822 components: - type: Transform - pos: -108.5,-15.5 + pos: -71.5,-23.5 parent: 2 -- proto: SpawnPointBrigmedic - entities: - - uid: 13413 + - uid: 17823 components: - type: Transform - pos: -176.5,1.5 + pos: -73.5,-16.5 parent: 2 -- proto: SpawnPointCaptain - entities: - - uid: 13414 + - uid: 17824 components: - type: Transform - pos: -9.5,-10.5 + pos: -75.5,-20.5 parent: 2 -- proto: SpawnPointCargoTechnician - entities: - - uid: 13415 + - uid: 17825 components: - type: Transform - pos: -65.5,-23.5 + pos: -85.5,-13.5 parent: 2 - - uid: 13416 + - uid: 17826 components: - type: Transform - pos: -58.5,-21.5 + pos: -87.5,-6.5 parent: 2 - - uid: 13417 + - uid: 17827 components: - type: Transform - pos: -56.5,-24.5 + pos: -96.5,-7.5 parent: 2 -- proto: SpawnPointChaplain - entities: - - uid: 13418 + - uid: 17828 components: - type: Transform - pos: -40.5,10.5 + pos: -91.5,-10.5 parent: 2 - - uid: 13419 + - uid: 17829 components: - type: Transform - pos: -39.5,3.5 + pos: -100.5,-7.5 parent: 2 -- proto: SpawnPointChef - entities: - - uid: 13420 + - uid: 17830 components: - type: Transform - pos: -116.5,-11.5 + pos: -98.5,-2.5 parent: 2 - - uid: 13421 + - uid: 17831 components: - type: Transform - pos: -113.5,-11.5 + pos: -111.5,-4.5 parent: 2 -- proto: SpawnPointChemist - entities: - - uid: 13422 + - uid: 17832 components: - type: Transform - pos: -190.5,-25.5 + pos: -120.5,3.5 parent: 2 -- proto: SpawnPointChiefEngineer - entities: - - uid: 13423 + - uid: 17833 components: - type: Transform - pos: -62.5,2.5 + pos: -110.5,2.5 parent: 2 -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 13424 + - uid: 17834 components: - type: Transform - pos: -188.5,-9.5 + pos: -121.5,-2.5 parent: 2 -- proto: SpawnPointClown - entities: - - uid: 13425 + - uid: 17835 components: - type: Transform - pos: -120.5,-9.5 + pos: -115.5,-10.5 parent: 2 -- proto: SpawnPointDetective - entities: - - uid: 13426 + - uid: 17836 components: - type: Transform - pos: -147.5,5.5 + pos: -117.5,-15.5 parent: 2 - - uid: 13427 + - uid: 17837 components: - type: Transform - pos: -147.5,3.5 + pos: -108.5,-12.5 parent: 2 -- proto: SpawnPointForensicMantis - entities: - - uid: 13428 + - uid: 17838 components: - type: Transform - pos: -192.5,15.5 + pos: -103.5,-9.5 parent: 2 -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 13429 + - uid: 17839 components: - type: Transform - pos: -21.5,-4.5 + pos: -99.5,4.5 parent: 2 - - uid: 13430 + - uid: 17840 components: - type: Transform - pos: -17.5,-0.5 + pos: -103.5,8.5 parent: 2 -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 13431 + - uid: 17841 components: - type: Transform - pos: -160.5,15.5 + pos: -99.5,13.5 parent: 2 - - uid: 13432 + - uid: 17842 components: - type: Transform - pos: -155.5,16.5 + pos: -111.5,13.5 parent: 2 -- proto: SpawnPointJanitor - entities: - - uid: 13433 + - uid: 17843 components: - type: Transform - pos: -32.5,-11.5 + pos: -118.5,17.5 parent: 2 - - uid: 13434 + - uid: 17844 components: - type: Transform - pos: -30.5,-10.5 + pos: -120.5,9.5 parent: 2 -- proto: SpawnPointLawyer - entities: - - uid: 13435 + - uid: 17845 components: - type: Transform - pos: -142.5,0.5 + pos: -112.5,10.5 parent: 2 - - uid: 13436 + - uid: 17846 components: - type: Transform - pos: -140.5,5.5 + pos: -123.5,2.5 parent: 2 -- proto: SpawnPointLibrarian - entities: - - uid: 13437 + - uid: 17847 components: - type: Transform - pos: -47.5,-18.5 + pos: -86.5,3.5 parent: 2 -- proto: SpawnPointMedicalDoctor - entities: - - uid: 13438 + - uid: 17848 components: - type: Transform - pos: -188.5,-24.5 + pos: -77.5,7.5 parent: 2 - - uid: 13439 + - uid: 17849 components: - type: Transform - pos: -188.5,-17.5 + pos: -87.5,14.5 parent: 2 -- proto: SpawnPointMedicalIntern - entities: - - uid: 13440 + - uid: 17850 components: - type: Transform - pos: -181.5,-25.5 + pos: -67.5,15.5 parent: 2 - - uid: 13441 + - uid: 17851 components: - type: Transform - pos: -183.5,-16.5 + pos: -59.5,11.5 parent: 2 -- proto: SpawnPointMime - entities: - - uid: 13442 + - uid: 17852 components: - type: Transform - pos: -120.5,-11.5 + pos: -65.5,9.5 parent: 2 -- proto: SpawnPointMusician - entities: - - uid: 13443 + - uid: 17853 components: - type: Transform - pos: -128.5,-10.5 + pos: -56.5,19.5 parent: 2 -- proto: SpawnPointObserver - entities: - - uid: 13444 + - uid: 17854 components: - type: Transform - pos: -31.5,-2.5 + pos: -63.5,24.5 parent: 2 -- proto: SpawnPointParamedic - entities: - - uid: 13445 + - uid: 17855 components: - type: Transform - pos: -184.5,-24.5 + pos: -75.5,20.5 parent: 2 -- proto: SpawnPointPassenger - entities: - - uid: 13446 + - uid: 17856 components: - type: Transform - pos: -61.5,7.5 + pos: -49.5,-4.5 parent: 2 - - uid: 13447 + - uid: 17857 components: - type: Transform - pos: -41.5,-12.5 + pos: -57.5,-9.5 parent: 2 - - uid: 13448 + - uid: 17858 components: - type: Transform - pos: -28.5,-1.5 + pos: -55.5,1.5 parent: 2 - - uid: 13449 + - uid: 17859 components: - type: Transform - pos: -75.5,7.5 + pos: -62.5,-2.5 parent: 2 - - uid: 13450 + - uid: 17860 components: - type: Transform - pos: -89.5,-7.5 + pos: -71.5,-6.5 parent: 2 - - uid: 13451 + - uid: 17861 components: - type: Transform - pos: -46.5,-5.5 + pos: -79.5,1.5 parent: 2 - - uid: 13452 + - uid: 17862 components: - type: Transform - pos: -44.5,3.5 + pos: -66.5,-11.5 parent: 2 - - uid: 13453 + - uid: 17863 components: - type: Transform - pos: -134.5,-4.5 + pos: -67.5,5.5 parent: 2 - - uid: 13454 + - uid: 17864 components: - type: Transform - pos: -118.5,-7.5 + pos: -46.5,4.5 parent: 2 - - uid: 13455 + - uid: 17865 components: - type: Transform - pos: -110.5,-6.5 + pos: -47.5,11.5 parent: 2 - - uid: 13456 + - uid: 17866 components: - type: Transform - pos: -105.5,5.5 + pos: -36.5,14.5 parent: 2 - - uid: 13457 + - uid: 17867 components: - type: Transform - pos: -101.5,13.5 + pos: -42.5,16.5 parent: 2 -- proto: SpawnPointQuartermaster - entities: - - uid: 13458 + - uid: 17868 components: - type: Transform - pos: -67.5,-18.5 + pos: -51.5,17.5 parent: 2 -- proto: SpawnPointReporter - entities: - - uid: 13459 + - uid: 17869 components: - type: Transform - pos: -30.5,7.5 + pos: -38.5,9.5 parent: 2 -- proto: SpawnPointResearchAssistant - entities: - - uid: 13460 + - uid: 17870 components: - type: Transform - pos: -194.5,3.5 + pos: -44.5,8.5 parent: 2 - - uid: 13461 + - uid: 17871 components: - type: Transform - pos: -198.5,2.5 + pos: -34.5,6.5 parent: 2 -- proto: SpawnPointResearchDirector - entities: - - uid: 13462 + - uid: 17872 components: - type: Transform - pos: -202.5,20.5 + pos: -38.5,2.5 parent: 2 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 13463 + - uid: 17873 components: - type: Transform - pos: -85.5,-29.5 + pos: -30.5,4.5 parent: 2 - - uid: 13464 + - uid: 17874 components: - type: Transform - pos: -83.5,-31.5 + pos: -24.5,-0.5 parent: 2 - - uid: 13465 + - uid: 17875 components: - type: Transform - pos: -82.5,-35.5 + pos: -32.5,-0.5 parent: 2 -- proto: SpawnPointScientist - entities: - - uid: 13466 + - uid: 17876 components: - type: Transform - pos: -199.5,2.5 + pos: -30.5,-6.5 parent: 2 - - uid: 13467 + - uid: 17877 components: - type: Transform - pos: -197.5,2.5 + pos: -37.5,-4.5 parent: 2 - - uid: 13468 + - uid: 17878 components: - type: Transform - pos: -196.5,20.5 + pos: -41.5,-4.5 parent: 2 -- proto: SpawnPointSecurityCadet - entities: - - uid: 13469 + - uid: 17879 components: - type: Transform - pos: -167.5,-11.5 + pos: -42.5,-10.5 parent: 2 - - uid: 13470 + - uid: 17880 components: - type: Transform - pos: -169.5,-11.5 + pos: -53.5,-16.5 parent: 2 -- proto: SpawnPointSecurityOfficer - entities: - - uid: 13471 + - uid: 17881 components: - type: Transform - pos: -167.5,-8.5 + pos: -65.5,-22.5 parent: 2 - - uid: 13472 + - uid: 17882 components: - type: Transform - pos: -167.5,-10.5 + pos: -59.5,-26.5 parent: 2 - - uid: 13473 + - uid: 17883 components: - type: Transform - pos: -168.5,-12.5 + pos: -52.5,-24.5 parent: 2 - - uid: 13474 + - uid: 17884 components: - type: Transform - pos: -163.5,-11.5 + pos: -42.5,-19.5 parent: 2 -- proto: SpawnPointSeniorEngineer - entities: - - uid: 13475 + - uid: 17885 components: - type: Transform - pos: -68.5,-3.5 + pos: -47.5,-14.5 parent: 2 - - uid: 13476 + - uid: 17886 components: - type: Transform - pos: -68.5,-8.5 + pos: -42.5,-22.5 parent: 2 -- proto: SpawnPointSeniorOfficer - entities: - - uid: 13477 + - uid: 17887 components: - type: Transform - pos: -162.5,-13.5 + pos: -31.5,-16.5 parent: 2 -- proto: SpawnPointSeniorPhysician - entities: - - uid: 13478 + - uid: 17888 components: - type: Transform - pos: -185.5,-24.5 + pos: -33.5,-9.5 parent: 2 -- proto: SpawnPointSeniorResearcher - entities: - - uid: 13479 + - uid: 17889 components: - type: Transform - pos: -197.5,12.5 + pos: -22.5,-7.5 parent: 2 -- proto: SpawnPointServiceWorker - entities: - - uid: 13480 + - uid: 17890 components: - type: Transform - pos: -117.5,-0.5 + pos: -22.5,-14.5 parent: 2 - - uid: 13481 + - uid: 17891 components: - type: Transform - pos: -114.5,-5.5 + pos: -16.5,-2.5 parent: 2 -- proto: SpawnPointStationEngineer - entities: - - uid: 13482 + - uid: 17892 components: - type: Transform - pos: -68.5,-11.5 + pos: -20.5,5.5 parent: 2 - - uid: 13483 + - uid: 17893 components: - type: Transform - pos: -65.5,-10.5 + pos: -16.5,7.5 parent: 2 - - uid: 13484 + - uid: 17894 components: - type: Transform - pos: -60.5,-5.5 + pos: -12.5,-0.5 parent: 2 - - uid: 13485 + - uid: 17895 components: - type: Transform - pos: -54.5,3.5 + pos: -12.5,-9.5 parent: 2 - - uid: 13486 + - uid: 17896 components: - type: Transform - pos: -68.5,2.5 + pos: -9.5,0.5 parent: 2 -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 13487 + - uid: 17897 components: - type: Transform - pos: -66.5,1.5 + pos: -6.5,-4.5 parent: 2 - - uid: 13488 + - uid: 17898 components: - type: Transform - pos: -60.5,-2.5 + pos: -6.5,-9.5 parent: 2 -- proto: SpawnPointWarden - entities: - - uid: 13489 + - uid: 17899 components: - type: Transform - pos: -164.5,7.5 + pos: -3.5,-4.5 parent: 2 - - uid: 13490 + - uid: 17900 components: - type: Transform - pos: -164.5,12.5 + pos: 5.5,-1.5 parent: 2 -- proto: SpearBone - entities: - - uid: 13491 + - uid: 17920 components: - type: Transform rot: 3.141592653589793 rad - pos: -122.50326,3.2603016 + pos: -199.5,12.5 parent: 2 -- proto: SpeedLoaderMagnum - entities: - - uid: 11329 + - uid: 17921 components: - type: Transform - parent: 11327 - - type: Physics - angularDamping: 0 - linearDamping: 0 - canCollide: False - - type: InsideEntityStorage + rot: 3.141592653589793 rad + pos: -196.5,5.5 + parent: 2 - proto: Spoon entities: - - uid: 13492 + - uid: 13923 components: - type: Transform rot: 1.5707963267948966 rad @@ -94036,25 +98161,25 @@ entities: parent: 2 - proto: SpoonPlastic entities: - - uid: 13493 + - uid: 13924 components: - type: Transform pos: -159.2801,-18.553728 parent: 2 - - uid: 13494 + - uid: 13925 components: - type: Transform pos: -155.42856,-18.553728 parent: 2 - proto: SprayBottleSpaceCleaner entities: - - uid: 13495 + - uid: 13926 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.426857,-12.57307 parent: 2 - - uid: 13496 + - uid: 13927 components: - type: Transform rot: -1.5707963267948966 rad @@ -94062,73 +98187,82 @@ entities: parent: 2 - proto: SS13Memorial entities: - - uid: 13497 + - uid: 13928 components: - type: Transform pos: -31.5,-5.5 parent: 2 + - uid: 13929 + components: + - type: MetaData + desc: Мемориал, построенный в честь великого реформатора всея страны Э. + name: Памятник Скуфузеру + - type: Transform + rot: 1.5707963267948966 rad + pos: -217.5,-14.5 + parent: 2 - proto: StasisBed entities: - - uid: 13498 + - uid: 13930 components: - type: Transform pos: -185.5,-18.5 parent: 2 - - uid: 13499 + - uid: 13931 components: - type: Transform pos: -185.5,-13.5 parent: 2 - proto: StationMap entities: - - uid: 13500 + - uid: 13932 components: - type: Transform pos: -101.5,-1.5 parent: 2 - - uid: 13501 + - uid: 13933 components: - type: Transform pos: -21.5,6.5 parent: 2 - - uid: 13502 + - uid: 13934 components: - type: Transform pos: -46.5,-3.5 parent: 2 - - uid: 13503 + - uid: 13935 components: - type: Transform pos: -70.5,10.5 parent: 2 - - uid: 13504 + - uid: 13936 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-17.5 parent: 2 - - uid: 13505 + - uid: 13937 components: - type: Transform pos: -138.5,-0.5 parent: 2 - - uid: 13506 + - uid: 13938 components: - type: Transform pos: -182.5,-1.5 parent: 2 - - uid: 13507 + - uid: 13939 components: - type: Transform pos: -215.5,-1.5 parent: 2 - - uid: 13508 + - uid: 13940 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-6.5 parent: 2 - - uid: 13509 + - uid: 13941 components: - type: Transform rot: -1.5707963267948966 rad @@ -94136,39 +98270,39 @@ entities: parent: 2 - proto: Stool entities: - - uid: 13510 + - uid: 13942 components: - type: Transform rot: 3.141592653589793 rad pos: -158.5,-12.5 parent: 2 - - uid: 13511 + - uid: 13943 components: - type: Transform pos: -153.5,-24.5 parent: 2 - - uid: 13512 + - uid: 13944 components: - type: Transform pos: -157.5,-24.5 parent: 2 - - uid: 13513 + - uid: 13945 components: - type: Transform pos: -155.5,-17.5 parent: 2 - - uid: 13514 + - uid: 13946 components: - type: Transform pos: -158.5,-17.5 parent: 2 - - uid: 13515 + - uid: 13947 components: - type: Transform rot: 3.141592653589793 rad pos: -159.5,-20.5 parent: 2 - - uid: 13516 + - uid: 13948 components: - type: Transform rot: 1.5707963267948966 rad @@ -94176,77 +98310,110 @@ entities: parent: 2 - proto: StoolBar entities: - - uid: 13517 + - uid: 13949 components: - type: Transform rot: 3.141592653589793 rad pos: -116.5,1.5 parent: 2 - - uid: 13518 + - uid: 13950 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,1.5 parent: 2 - - uid: 13519 + - uid: 13951 components: - type: Transform rot: 3.141592653589793 rad pos: -115.5,1.5 parent: 2 - - uid: 13520 + - uid: 13952 components: - type: Transform rot: 3.141592653589793 rad pos: -114.5,1.5 parent: 2 - - uid: 13521 + - uid: 13953 components: - type: Transform rot: 3.141592653589793 rad pos: -118.5,1.5 parent: 2 - - uid: 13522 + - uid: 13954 components: - type: Transform rot: 3.141592653589793 rad pos: -119.5,1.5 parent: 2 + - uid: 13955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -223.5,-33.5 + parent: 2 + - uid: 13956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -221.5,-33.5 + parent: 2 + - uid: 13957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -221.5,-32.5 + parent: 2 - proto: StorageCanister entities: - - uid: 13523 + - uid: 13958 + components: + - type: Transform + pos: -191.5,2.5 + parent: 2 + - uid: 13959 components: - type: Transform pos: -68.5,18.5 parent: 2 - - uid: 13524 + - uid: 13960 components: - type: Transform pos: -68.5,17.5 parent: 2 - - uid: 13525 + - uid: 13961 components: - type: Transform pos: -78.5,20.5 parent: 2 - - uid: 13526 + - uid: 13962 components: - type: Transform pos: -77.5,20.5 parent: 2 - - uid: 13527 + - uid: 13963 components: - type: Transform pos: -54.5,24.5 parent: 2 - - uid: 13528 + - uid: 13964 components: - type: Transform pos: -55.5,24.5 parent: 2 + - uid: 13965 + components: + - type: Transform + pos: -71.5,3.5 + parent: 2 + - uid: 13966 + components: + - type: Transform + pos: -71.5,2.5 + parent: 2 - proto: Stunbaton entities: - - uid: 13529 + - uid: 13967 components: - type: Transform rot: 3.141592653589793 rad @@ -94254,107 +98421,106 @@ entities: parent: 2 - proto: SubstationBasic entities: - - uid: 13530 + - uid: 13968 + components: + - type: Transform + pos: -189.5,9.5 + parent: 2 + - uid: 13969 components: - type: Transform pos: -174.5,-8.5 parent: 2 - - uid: 13531 + - uid: 13970 components: - type: Transform pos: -60.5,-18.5 parent: 2 - - uid: 13532 + - uid: 13971 components: - type: Transform pos: -62.5,-12.5 parent: 2 - - uid: 13533 + - uid: 13972 components: - type: Transform pos: -69.5,-5.5 parent: 2 - - uid: 13534 + - uid: 13973 components: - type: Transform pos: -120.5,-13.5 parent: 2 - - uid: 13535 + - uid: 13974 components: - type: Transform pos: -36.5,17.5 parent: 2 - - uid: 13536 + - uid: 13975 components: - type: Transform pos: -9.5,-7.5 parent: 2 - - uid: 13537 + - uid: 13976 components: - type: Transform pos: -17.5,10.5 parent: 2 - - uid: 13538 + - uid: 13977 components: - type: Transform pos: -83.5,11.5 parent: 2 - - uid: 13539 + - uid: 13978 components: - type: Transform pos: -16.5,-15.5 parent: 2 - proto: SubstationWallBasic entities: - - uid: 13540 + - uid: 13979 components: - type: Transform rot: 3.141592653589793 rad pos: -105.5,15.5 parent: 2 - - uid: 13541 + - uid: 13980 components: - type: Transform pos: -182.5,-8.5 parent: 2 - - uid: 13542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -190.5,15.5 - parent: 2 - - uid: 13543 + - uid: 13981 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,-32.5 parent: 2 - - uid: 17114 + - uid: 17658 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-0.5 - parent: 17021 + parent: 17565 - proto: SuitStorageAtmos entities: - - uid: 13544 + - uid: 13982 components: - type: Transform pos: -55.5,16.5 parent: 2 - - uid: 13545 + - uid: 13983 components: - type: Transform pos: -55.5,15.5 parent: 2 - - uid: 13546 + - uid: 13984 components: - type: Transform pos: -55.5,17.5 parent: 2 - proto: SuitStorageBase entities: - - uid: 26 + - uid: 24 components: - type: Transform pos: -168.5,14.5 @@ -94363,10 +98529,10 @@ entities: air: volume: 200 immutable: False - temperature: 293.1462 + temperature: 147.9231 moles: - - 1.606311 - - 6.042789 + - 0 + - 0 - 0 - 0 - 0 @@ -94383,15 +98549,48 @@ entities: showEnts: False occludes: True ents: - - 29 + - 35 - 34 - - 27 + - 32 - 33 + - 27 + - 25 + - 29 - 31 - - 30 - - 32 - - 35 - - uid: 6707 + - uid: 7089 + components: + - type: Transform + pos: -196.5,16.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7093 + - 7092 + - 7090 + - 7091 + - uid: 7094 components: - type: Transform pos: -169.5,14.5 @@ -94400,14 +98599,66 @@ entities: air: volume: 200 immutable: False - temperature: 147.9231 + temperature: 293.14835 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: + - 7096 + - 7100 + - 7102 + - 7098 + - 7099 + - 7097 + - 7095 + - 7101 + - uid: 7103 + components: + - type: Transform + pos: -162.5,12.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7106 + - 7107 + - 7105 + - 7104 + - uid: 7108 + components: + - type: Transform + pos: -159.5,16.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 - 0 - 0 - 0 @@ -94420,81 +98671,61 @@ entities: showEnts: False occludes: True ents: - - 6714 - - 6708 - - 6710 - - 6712 - - 6711 - - 6715 - - 6713 - - 6709 + - 7109 + - 7110 + - 7111 + - 7112 - proto: SuitStorageCaptain entities: - - uid: 13547 + - uid: 13985 components: - type: Transform pos: -4.5,-9.5 parent: 2 - proto: SuitStorageEVA entities: - - uid: 13548 + - uid: 13986 components: - type: Transform pos: -21.5,-12.5 parent: 2 - - uid: 13549 + - uid: 13987 components: - type: Transform pos: -21.5,-14.5 parent: 2 - - uid: 13550 + - uid: 13988 components: - type: Transform pos: -21.5,-13.5 parent: 2 - proto: SuitStorageEVAAlternate entities: - - uid: 13551 + - uid: 13989 components: - type: Transform pos: -23.5,-14.5 parent: 2 - - uid: 13552 + - uid: 13990 components: - type: Transform pos: -23.5,-15.5 parent: 2 -- proto: SuitStorageHOS - entities: - - uid: 13553 - components: - - type: Transform - pos: -159.5,16.5 - parent: 2 -- proto: SuitStorageRD - entities: - - uid: 13554 - components: - - type: Transform - pos: -201.5,23.5 - parent: 2 -- proto: SuitStorageWarden - entities: - - uid: 13555 - components: - - type: Transform - pos: -162.5,12.5 - parent: 2 - proto: Supermatter entities: - - uid: 17011 + - uid: 13991 components: - type: Transform pos: -78.5,-3.5 parent: 2 + - type: Supermatter + zapTimer: Infinity + - type: RadiationSource + slope: 0.2 + intensity: 4 - proto: SurveillanceCameraCommand entities: - - uid: 13556 + - uid: 13992 components: - type: Transform rot: 1.5707963267948966 rad @@ -94505,7 +98736,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Каюта Капитана - - uid: 13557 + - uid: 13993 components: - type: Transform rot: 1.5707963267948966 rad @@ -94516,7 +98747,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Комната ожидания - - uid: 13558 + - uid: 13994 components: - type: Transform rot: 3.141592653589793 rad @@ -94527,7 +98758,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Хранилище - - uid: 13559 + - uid: 13995 components: - type: Transform rot: -1.5707963267948966 rad @@ -94538,7 +98769,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Мостик - - uid: 13560 + - uid: 13996 components: - type: Transform rot: -1.5707963267948966 rad @@ -94549,7 +98780,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Кабинет ГП - - uid: 13561 + - uid: 13997 components: - type: Transform rot: 1.5707963267948966 rad @@ -94560,7 +98791,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Хранилище EVA - - uid: 13562 + - uid: 13998 components: - type: Transform rot: 1.5707963267948966 rad @@ -94573,7 +98804,7 @@ entities: id: Серверная - proto: SurveillanceCameraEngineering entities: - - uid: 13563 + - uid: 13999 components: - type: Transform rot: 1.5707963267948966 rad @@ -94584,7 +98815,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Склад плат - - uid: 13564 + - uid: 14000 components: - type: Transform rot: 1.5707963267948966 rad @@ -94595,7 +98826,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Рекреация Инженерного отдела - - uid: 13565 + - uid: 14001 components: - type: Transform rot: 1.5707963267948966 rad @@ -94606,7 +98837,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Прихожая инженерного отдела - - uid: 13566 + - uid: 14002 components: - type: Transform rot: 1.5707963267948966 rad @@ -94617,7 +98848,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: СМЕСы - - uid: 13567 + - uid: 14003 components: - type: Transform rot: 3.141592653589793 rad @@ -94628,7 +98859,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Комната ДАМ - - uid: 13568 + - uid: 14004 components: - type: Transform pos: -66.5,-12.5 @@ -94638,12 +98869,12 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Раздевалка Инженерного отдела - - uid: 13569 + - uid: 14005 components: - type: Transform pos: -66.5,0.5 parent: 2 - - uid: 13570 + - uid: 14006 components: - type: Transform rot: 1.5707963267948966 rad @@ -94654,7 +98885,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Камера СМ - - uid: 13571 + - uid: 14007 components: - type: Transform rot: -1.5707963267948966 rad @@ -94665,7 +98896,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Атмос 1 - - uid: 13572 + - uid: 14008 components: - type: Transform rot: -1.5707963267948966 rad @@ -94676,7 +98907,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Атмос 2 - - uid: 13573 + - uid: 14009 components: - type: Transform rot: -1.5707963267948966 rad @@ -94687,7 +98918,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Кабинет СИ - - uid: 13574 + - uid: 14010 components: - type: Transform rot: 1.5707963267948966 rad @@ -94700,13 +98931,13 @@ entities: id: Генератор Гравитации - proto: SurveillanceCameraGeneral entities: - - uid: 13575 + - uid: 14011 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,9.5 parent: 2 - - uid: 13576 + - uid: 14012 components: - type: Transform rot: 1.5707963267948966 rad @@ -94717,7 +98948,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Библиотека - - uid: 13577 + - uid: 14013 components: - type: Transform rot: -1.5707963267948966 rad @@ -94728,7 +98959,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Дормы - - uid: 13578 + - uid: 14014 components: - type: Transform rot: -1.5707963267948966 rad @@ -94739,7 +98970,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Общий Коридор Пустой док Восток - - uid: 13579 + - uid: 14015 components: - type: Transform rot: 3.141592653589793 rad @@ -94750,7 +98981,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Общий Коридор Восточный Гейт - - uid: 13580 + - uid: 14016 components: - type: Transform rot: 1.5707963267948966 rad @@ -94761,7 +98992,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Общий Коридор Восток Мед. Отдела - - uid: 13581 + - uid: 14017 components: - type: Transform rot: 3.141592653589793 rad @@ -94772,7 +99003,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Общий Коридор Отбытие 1 - - uid: 13582 + - uid: 14018 components: - type: Transform rot: 1.5707963267948966 rad @@ -94783,13 +99014,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Отбытие - - uid: 13583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -187.5,10.5 - parent: 2 - - uid: 13584 + - uid: 14019 components: - type: Transform rot: 3.141592653589793 rad @@ -94800,12 +99025,12 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Общий Коридор Перекрёсток РнД - - uid: 13585 + - uid: 14020 components: - type: Transform pos: -171.5,-4.5 parent: 2 - - uid: 13586 + - uid: 14021 components: - type: Transform rot: 3.141592653589793 rad @@ -94816,7 +99041,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Общий Коридор Юрист - - uid: 13587 + - uid: 14022 components: - type: Transform pos: -131.5,-6.5 @@ -94826,13 +99051,13 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Общий Коридор Прибытие - - uid: 13588 + - uid: 14023 components: - type: Transform rot: -1.5707963267948966 rad pos: -120.5,-1.5 parent: 2 - - uid: 13589 + - uid: 14024 components: - type: Transform rot: 3.141592653589793 rad @@ -94843,7 +99068,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Общий Коридор ботаника - - uid: 13590 + - uid: 14025 components: - type: Transform rot: -1.5707963267948966 rad @@ -94854,7 +99079,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Общий Коридор Ю-З Инженерного - - uid: 13591 + - uid: 14026 components: - type: Transform rot: -1.5707963267948966 rad @@ -94865,7 +99090,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Общий Коридор С-З Инженерного - - uid: 13592 + - uid: 14027 components: - type: Transform rot: 3.141592653589793 rad @@ -94876,7 +99101,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Общий Коридор Север Инженерного - - uid: 13593 + - uid: 14028 components: - type: Transform rot: 3.141592653589793 rad @@ -94887,13 +99112,13 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Общий Коридор Юг Инженерного - - uid: 13594 + - uid: 14029 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-14.5 parent: 2 - - uid: 13595 + - uid: 14030 components: - type: Transform rot: 3.141592653589793 rad @@ -94904,7 +99129,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Общий Коридор Ю-В Инженерного - - uid: 13596 + - uid: 14031 components: - type: Transform rot: 1.5707963267948966 rad @@ -94915,7 +99140,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Склад инструментов - - uid: 13597 + - uid: 14032 components: - type: Transform rot: 3.141592653589793 rad @@ -94926,7 +99151,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Общий Коридор Поды - - uid: 13598 + - uid: 14033 components: - type: Transform rot: -1.5707963267948966 rad @@ -94937,7 +99162,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Общий коридор Мостик - - uid: 13599 + - uid: 14034 components: - type: Transform rot: 3.141592653589793 rad @@ -94948,7 +99173,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Общий коридор ГП - - uid: 13600 + - uid: 14035 components: - type: Transform rot: 3.141592653589793 rad @@ -94959,18 +99184,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Парк - - uid: 13601 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -185.5,8.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Общий Коридор Восток РнД - - uid: 13602 + - uid: 14036 components: - type: Transform rot: -1.5707963267948966 rad @@ -94983,7 +99197,7 @@ entities: id: Общий Коридор Запад Мед. Отдела - proto: SurveillanceCameraMedical entities: - - uid: 13603 + - uid: 14037 components: - type: Transform rot: 3.141592653589793 rad @@ -94994,179 +99208,125 @@ entities: - SurveillanceCameraMedical nameSet: True id: Общая зона Мед. Отдела - - uid: 13604 + - uid: 14038 components: - type: Transform - pos: -187.5,-25.5 + pos: -188.5,-10.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraMedical nameSet: True - id: Раздевалка Мед.Отдела - - uid: 13605 + id: Каюта СМО + - uid: 14039 components: - type: Transform - pos: -188.5,-10.5 + rot: -1.5707963267948966 rad + pos: -191.5,-24.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Каюта СМО -- proto: SurveillanceCameraMonitorCircuitboard - entities: - - uid: 13606 + - uid: 14040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -191.5,-28.5 + parent: 2 + - uid: 14041 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.628094,48.28553 + pos: -185.5,-26.5 parent: 2 - proto: SurveillanceCameraRouterCommand entities: - - uid: 13607 + - uid: 14042 components: - type: Transform pos: -5.5,-17.5 parent: 2 - proto: SurveillanceCameraRouterEngineering entities: - - uid: 13608 + - uid: 14043 components: - type: Transform pos: -4.5,-15.5 parent: 2 - - uid: 13609 + - uid: 14044 components: - type: Transform pos: -4.5,-16.5 parent: 2 - proto: SurveillanceCameraRouterMedical entities: - - uid: 13610 + - uid: 14045 components: - type: Transform pos: -14.5,-17.5 parent: 2 - proto: SurveillanceCameraRouterScience entities: - - uid: 13611 + - uid: 14046 components: - type: Transform - pos: -200.5,14.5 + pos: -6.5,-14.5 parent: 2 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 13612 + - uid: 14047 components: - type: Transform pos: -16.5,-16.5 parent: 2 - - uid: 13613 + - uid: 14048 components: - type: Transform pos: -8.5,-14.5 parent: 2 - - uid: 13614 + - uid: 14049 components: - type: Transform pos: -6.5,-17.5 parent: 2 - proto: SurveillanceCameraRouterService entities: - - uid: 13615 + - uid: 14050 components: - type: Transform pos: -15.5,-17.5 parent: 2 - - uid: 13616 + - uid: 14051 components: - type: Transform pos: -12.5,-17.5 parent: 2 - proto: SurveillanceCameraScience entities: - - uid: 13617 + - uid: 14052 components: - type: Transform rot: -1.5707963267948966 rad - pos: -201.5,15.5 + pos: -199.5,3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Сервер РнД - - uid: 13618 + - uid: 14053 components: - type: Transform rot: 3.141592653589793 rad - pos: -196.5,4.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Раздевалка РнД - - uid: 13619 - components: - - type: Transform - pos: -196.5,16.5 - parent: 2 - - uid: 13620 - components: - - type: Transform - pos: -196.5,1.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Раздевалка РнД - - uid: 13621 - components: - - type: Transform - pos: -198.5,6.5 + pos: -198.5,10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Генератор Аномалий - - uid: 13622 + - uid: 14054 components: - type: Transform rot: 3.141592653589793 rad - pos: -196.5,23.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Исследовательская зона РнД - - uid: 13623 - components: - - type: Transform - pos: -190.5,18.5 + pos: -194.5,13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Робототехника - - uid: 13624 + - uid: 14055 components: - type: Transform - pos: -202.5,18.5 + rot: -1.5707963267948966 rad + pos: -198.5,16.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Каюта НР - proto: SurveillanceCameraSecurity entities: - - uid: 13625 + - uid: 14056 components: - type: Transform rot: 3.141592653589793 rad @@ -95177,7 +99337,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Суд - - uid: 13626 + - uid: 14057 components: - type: Transform rot: 3.141592653589793 rad @@ -95188,7 +99348,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Кабинет Юристов - - uid: 13627 + - uid: 14058 components: - type: Transform rot: 3.141592653589793 rad @@ -95199,13 +99359,13 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Бриг 1 - - uid: 13628 + - uid: 14059 components: - type: Transform rot: 3.141592653589793 rad pos: -179.5,7.5 parent: 2 - - uid: 13629 + - uid: 14060 components: - type: Transform rot: -1.5707963267948966 rad @@ -95216,13 +99376,13 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Бриг 2 - - uid: 13630 + - uid: 14061 components: - type: Transform rot: 1.5707963267948966 rad pos: -162.5,11.5 parent: 2 - - uid: 13631 + - uid: 14062 components: - type: Transform rot: 3.141592653589793 rad @@ -95233,7 +99393,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Бриг 3 - - uid: 13632 + - uid: 14063 components: - type: Transform rot: 1.5707963267948966 rad @@ -95244,7 +99404,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Стрельбище - - uid: 13633 + - uid: 14064 components: - type: Transform rot: 1.5707963267948966 rad @@ -95255,7 +99415,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Кабинет ГСБ - - uid: 13634 + - uid: 14065 components: - type: Transform rot: -1.5707963267948966 rad @@ -95266,7 +99426,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Раздевалка СБ - - uid: 13635 + - uid: 14066 components: - type: Transform pos: -160.5,-8.5 @@ -95276,12 +99436,12 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Рекриация СБ - - uid: 13636 + - uid: 14067 components: - type: Transform pos: -156.5,-8.5 parent: 2 - - uid: 13637 + - uid: 14068 components: - type: Transform rot: 3.141592653589793 rad @@ -95292,7 +99452,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Пермабриг - - uid: 13638 + - uid: 14069 components: - type: Transform rot: 1.5707963267948966 rad @@ -95303,13 +99463,13 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Гидропоника Перма-брига - - uid: 13639 + - uid: 14070 components: - type: Transform rot: 3.141592653589793 rad pos: -158.5,-2.5 parent: 2 - - uid: 13640 + - uid: 14071 components: - type: Transform pos: -169.5,9.5 @@ -95319,7 +99479,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Оружейная - - uid: 13641 + - uid: 14072 components: - type: Transform pos: -162.5,9.5 @@ -95331,7 +99491,7 @@ entities: id: Кабинет Смотрителя - proto: SurveillanceCameraService entities: - - uid: 13642 + - uid: 14073 components: - type: Transform rot: 1.5707963267948966 rad @@ -95342,7 +99502,7 @@ entities: - SurveillanceCameraService nameSet: True id: Комната Уборщиков - - uid: 13643 + - uid: 14074 components: - type: Transform rot: 3.141592653589793 rad @@ -95353,7 +99513,7 @@ entities: - SurveillanceCameraService nameSet: True id: Церковь - - uid: 13644 + - uid: 14075 components: - type: Transform rot: -1.5707963267948966 rad @@ -95364,7 +99524,7 @@ entities: - SurveillanceCameraService nameSet: True id: Каюта Священника - - uid: 13645 + - uid: 14076 components: - type: Transform rot: 1.5707963267948966 rad @@ -95375,7 +99535,7 @@ entities: - SurveillanceCameraService nameSet: True id: Бар - - uid: 13646 + - uid: 14077 components: - type: Transform pos: -114.5,-12.5 @@ -95385,7 +99545,7 @@ entities: - SurveillanceCameraService nameSet: True id: Кухня - - uid: 13647 + - uid: 14078 components: - type: Transform rot: -1.5707963267948966 rad @@ -95396,12 +99556,12 @@ entities: - SurveillanceCameraService nameSet: True id: Гидропоника - - uid: 13648 + - uid: 14079 components: - type: Transform pos: -116.5,-16.5 parent: 2 - - uid: 13649 + - uid: 14080 components: - type: Transform rot: 1.5707963267948966 rad @@ -95414,17 +99574,12 @@ entities: id: Каюта клоуна и мима - proto: SurveillanceCameraSupply entities: - - uid: 13650 + - uid: 14081 components: - type: Transform - pos: -58.5,-24.5 + pos: -58.5,-26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Карго - - uid: 13651 + - uid: 14082 components: - type: Transform rot: -1.5707963267948966 rad @@ -95435,7 +99590,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Утильская - - uid: 13652 + - uid: 14083 components: - type: Transform rot: -1.5707963267948966 rad @@ -95446,9 +99601,15 @@ entities: - SurveillanceCameraSupply nameSet: True id: Каюта КМ + - uid: 17560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,-18.5 + parent: 2 - proto: SurvivalKnife entities: - - uid: 13653 + - uid: 14084 components: - type: Transform rot: 1.5707963267948966 rad @@ -95456,922 +99617,988 @@ entities: parent: 2 - proto: Syringe entities: - - uid: 13654 + - uid: 14085 components: - type: Transform rot: -1.5707963267948966 rad pos: -178.39307,3.6045618 parent: 2 - - uid: 13655 + - uid: 14086 components: - type: Transform pos: -186.20511,-18.624863 parent: 2 - proto: SyringeIpecac entities: - - uid: 13656 + - uid: 14087 components: - type: Transform pos: -98.389565,-6.503297 parent: 2 - proto: Table entities: - - uid: 13657 + - uid: 3241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,-17.5 + parent: 2 + - uid: 6858 + components: + - type: Transform + pos: -75.5,-21.5 + parent: 2 + - uid: 14088 + components: + - type: Transform + pos: -198.5,9.5 + parent: 2 + - uid: 14089 + components: + - type: Transform + pos: -193.5,5.5 + parent: 2 + - uid: 14090 + components: + - type: Transform + pos: -199.5,10.5 + parent: 2 + - uid: 14091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -194.5,7.5 + parent: 2 + - uid: 14092 + components: + - type: Transform + pos: -199.5,9.5 + parent: 2 + - uid: 14093 + components: + - type: Transform + pos: -199.5,2.5 + parent: 2 + - uid: 14094 + components: + - type: Transform + pos: -189.5,-27.5 + parent: 2 + - uid: 14095 components: - type: Transform rot: 3.141592653589793 rad pos: -116.5,-8.5 parent: 2 - - uid: 13658 + - uid: 14096 components: - type: Transform rot: 3.141592653589793 rad pos: -114.5,-8.5 parent: 2 - - uid: 13659 + - uid: 14097 components: - type: Transform rot: 3.141592653589793 rad pos: -113.5,-8.5 parent: 2 - - uid: 13660 + - uid: 14098 components: - type: Transform rot: 3.141592653589793 rad pos: -112.5,-8.5 parent: 2 - - uid: 13661 + - uid: 14099 components: - type: Transform pos: -4.5,-17.5 parent: 2 - - uid: 13662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -194.5,13.5 - parent: 2 - - uid: 13663 + - uid: 14100 components: - type: Transform pos: -23.5,-16.5 parent: 2 - - uid: 13664 + - uid: 14101 components: - type: Transform rot: 1.5707963267948966 rad pos: -153.5,1.5 parent: 2 - - uid: 13665 + - uid: 14102 components: - type: Transform pos: -64.5,-19.5 parent: 2 - - uid: 13666 + - uid: 14103 components: - type: Transform pos: -64.5,-20.5 parent: 2 - - uid: 13667 + - uid: 14104 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,-0.5 parent: 2 - - uid: 13668 + - uid: 14105 components: - type: Transform pos: -167.5,1.5 parent: 2 - - uid: 13669 + - uid: 14106 components: - type: Transform rot: -1.5707963267948966 rad pos: -114.5,-10.5 parent: 2 - - uid: 13670 + - uid: 14107 components: - type: Transform pos: -162.5,5.5 parent: 2 - - uid: 13671 + - uid: 14108 components: - type: Transform pos: -161.5,5.5 parent: 2 - - uid: 13672 + - uid: 14109 components: - type: Transform pos: -50.5,-4.5 parent: 2 - - uid: 13673 + - uid: 14110 components: - type: Transform pos: -59.5,19.5 parent: 2 - - uid: 13674 + - uid: 14111 components: - type: Transform pos: -58.5,19.5 parent: 2 - - uid: 13675 + - uid: 14112 components: - type: Transform pos: -58.5,18.5 parent: 2 - - uid: 13676 + - uid: 14113 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,0.5 parent: 2 - - uid: 13677 + - uid: 14114 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-5.5 parent: 2 - - uid: 13678 + - uid: 14115 components: - type: Transform rot: 3.141592653589793 rad pos: -111.5,-6.5 parent: 2 - - uid: 13679 + - uid: 14116 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-9.5 parent: 2 - - uid: 13680 + - uid: 14117 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-9.5 parent: 2 - - uid: 13681 + - uid: 14118 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-10.5 parent: 2 - - uid: 13682 + - uid: 14119 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,2.5 parent: 2 - - uid: 13683 + - uid: 14120 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,2.5 parent: 2 - - uid: 13684 + - uid: 14121 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,3.5 parent: 2 - - uid: 13685 + - uid: 14122 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-1.5 parent: 2 - - uid: 13686 + - uid: 14123 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-1.5 parent: 2 - - uid: 13687 + - uid: 14124 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-3.5 parent: 2 - - uid: 13688 + - uid: 14125 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-3.5 parent: 2 - - uid: 13689 + - uid: 14126 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-4.5 parent: 2 - - uid: 13690 + - uid: 14127 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-6.5 parent: 2 - - uid: 13691 + - uid: 14128 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-7.5 parent: 2 - - uid: 13692 + - uid: 14129 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-6.5 parent: 2 - - uid: 13693 + - uid: 14130 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,5.5 parent: 2 - - uid: 13694 + - uid: 14131 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,5.5 parent: 2 - - uid: 13695 + - uid: 14132 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,4.5 parent: 2 - - uid: 13696 + - uid: 14133 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-6.5 parent: 2 - - uid: 13697 + - uid: 14134 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-6.5 parent: 2 - - uid: 13698 + - uid: 14135 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-1.5 parent: 2 - - uid: 13699 + - uid: 14136 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-1.5 parent: 2 - - uid: 13700 + - uid: 14137 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-5.5 parent: 2 - - uid: 13701 + - uid: 14138 components: - type: Transform rot: 1.5707963267948966 rad pos: -106.5,-5.5 parent: 2 - - uid: 13702 + - uid: 14139 components: - type: Transform rot: 3.141592653589793 rad pos: -111.5,-5.5 parent: 2 - - uid: 13703 + - uid: 14140 components: - type: Transform rot: -1.5707963267948966 rad pos: -113.5,-10.5 parent: 2 - - uid: 13704 + - uid: 14141 components: - type: Transform rot: -1.5707963267948966 rad pos: -112.5,-10.5 parent: 2 - - uid: 13705 + - uid: 14142 components: - type: Transform rot: -1.5707963267948966 rad pos: -112.5,-11.5 parent: 2 - - uid: 13706 + - uid: 14143 components: - type: Transform pos: -104.5,-6.5 parent: 2 - - uid: 13707 + - uid: 14144 components: - type: Transform pos: -103.5,-6.5 parent: 2 - - uid: 13708 + - uid: 14145 components: - type: Transform pos: -103.5,-7.5 parent: 2 - - uid: 13709 + - uid: 14146 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-7.5 parent: 2 - - uid: 13710 + - uid: 14147 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-7.5 parent: 2 - - uid: 13711 + - uid: 14148 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-5.5 parent: 2 - - uid: 13712 + - uid: 14149 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-6.5 parent: 2 - - uid: 13713 + - uid: 14150 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,4.5 parent: 2 - - uid: 13714 + - uid: 14151 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,3.5 parent: 2 - - uid: 13715 + - uid: 14152 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,1.5 parent: 2 - - uid: 13716 + - uid: 14153 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,1.5 parent: 2 - - uid: 13717 + - uid: 14154 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,4.5 parent: 2 - - uid: 13718 + - uid: 14155 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-4.5 parent: 2 - - uid: 13719 + - uid: 14156 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-12.5 parent: 2 - - uid: 13720 + - uid: 14157 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-12.5 parent: 2 - - uid: 13721 + - uid: 14158 components: - type: Transform pos: -17.5,1.5 parent: 2 - - uid: 13722 + - uid: 14159 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-1.5 parent: 2 - - uid: 13723 + - uid: 14160 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,0.5 parent: 2 - - uid: 13724 + - uid: 14161 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,0.5 parent: 2 - - uid: 13725 + - uid: 14162 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,0.5 parent: 2 - - uid: 13726 + - uid: 14163 components: - type: Transform pos: -18.5,-5.5 parent: 2 - - uid: 13727 + - uid: 14164 components: - type: Transform pos: -17.5,-5.5 parent: 2 - - uid: 13728 + - uid: 14165 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 2 - - uid: 13729 + - uid: 14166 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,0.5 parent: 2 - - uid: 13730 + - uid: 14167 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,0.5 parent: 2 - - uid: 13731 + - uid: 14168 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,0.5 parent: 2 - - uid: 13732 + - uid: 14169 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-0.5 parent: 2 - - uid: 13733 + - uid: 14170 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-7.5 parent: 2 - - uid: 13734 + - uid: 14171 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-7.5 parent: 2 - - uid: 13735 + - uid: 14172 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-7.5 parent: 2 - - uid: 13736 + - uid: 14173 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-7.5 parent: 2 - - uid: 13737 + - uid: 14174 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-7.5 parent: 2 - - uid: 13738 + - uid: 14175 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-11.5 parent: 2 - - uid: 13739 + - uid: 14176 components: - type: Transform pos: -18.5,-13.5 parent: 2 - - uid: 13740 + - uid: 14177 components: - type: Transform rot: 3.141592653589793 rad pos: -97.5,-24.5 parent: 2 - - uid: 13741 + - uid: 14178 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-2.5 parent: 2 - - uid: 13742 + - uid: 14179 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-1.5 parent: 2 - - uid: 13743 + - uid: 14180 components: - type: Transform pos: -159.5,-1.5 parent: 2 - - uid: 13744 + - uid: 14181 components: - type: Transform pos: -160.5,-1.5 parent: 2 - - uid: 13745 + - uid: 14182 components: - type: Transform pos: -158.5,-0.5 parent: 2 - - uid: 13746 + - uid: 14183 components: - type: Transform pos: -158.5,0.5 parent: 2 - - uid: 13747 + - uid: 14184 components: - type: Transform pos: -186.5,-18.5 parent: 2 - - uid: 13748 + - uid: 14185 components: - type: Transform pos: -186.5,-15.5 parent: 2 - - uid: 13749 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -197.5,21.5 - parent: 2 - - uid: 13750 + - uid: 14186 components: - type: Transform rot: 1.5707963267948966 rad pos: -133.5,3.5 parent: 2 - - uid: 13751 + - uid: 14187 components: - type: Transform rot: 1.5707963267948966 rad pos: -133.5,4.5 parent: 2 - - uid: 13752 + - uid: 14188 components: - type: Transform rot: 1.5707963267948966 rad pos: -135.5,3.5 parent: 2 - - uid: 13753 + - uid: 14189 components: - type: Transform rot: 3.141592653589793 rad pos: -135.5,4.5 parent: 2 - - uid: 13754 + - uid: 14190 components: - type: Transform pos: -158.5,9.5 parent: 2 - - uid: 13755 + - uid: 14191 components: - type: Transform pos: -157.5,9.5 parent: 2 - - uid: 13756 + - uid: 14192 components: - type: Transform pos: -153.5,9.5 parent: 2 - - uid: 13757 + - uid: 14193 components: - type: Transform pos: -152.5,9.5 parent: 2 - - uid: 13758 + - uid: 14194 components: - type: Transform pos: -168.5,7.5 parent: 2 - - uid: 13759 + - uid: 14195 components: - type: Transform rot: -1.5707963267948966 rad pos: -186.5,-13.5 parent: 2 - - uid: 13760 + - uid: 14196 components: - type: Transform pos: -153.5,5.5 parent: 2 - - uid: 13761 + - uid: 14197 components: - type: Transform pos: -152.5,5.5 parent: 2 - - uid: 13762 + - uid: 14198 components: - type: Transform pos: -168.5,-11.5 parent: 2 - - uid: 13763 + - uid: 14199 components: - type: Transform pos: -167.5,-7.5 parent: 2 - - uid: 13764 + - uid: 14200 components: - type: Transform pos: -69.5,0.5 parent: 2 - - uid: 13765 + - uid: 14201 components: - type: Transform pos: -69.5,1.5 parent: 2 - - uid: 13766 + - uid: 14202 components: - type: Transform pos: -69.5,2.5 parent: 2 - - uid: 13767 + - uid: 14203 components: - type: Transform pos: -67.5,-8.5 parent: 2 - - uid: 13768 + - uid: 14204 components: - type: Transform pos: -67.5,-7.5 parent: 2 - - uid: 13769 + - uid: 14205 components: - type: Transform pos: -69.5,-11.5 parent: 2 - - uid: 13770 + - uid: 14206 components: - type: Transform pos: -69.5,-12.5 parent: 2 - - uid: 13771 + - uid: 14207 components: - type: Transform pos: -68.5,-12.5 parent: 2 - - uid: 13772 + - uid: 14208 components: - type: Transform pos: -164.5,-7.5 parent: 2 - - uid: 13773 + - uid: 14209 components: - type: Transform pos: -164.5,-6.5 parent: 2 - - uid: 13774 + - uid: 14210 components: - type: Transform pos: -163.5,-6.5 parent: 2 - - uid: 13775 + - uid: 14211 components: - type: Transform rot: 3.141592653589793 rad pos: -158.5,-11.5 parent: 2 - - uid: 13776 - components: - - type: Transform - pos: -201.5,6.5 - parent: 2 - - uid: 13777 - components: - - type: Transform - pos: -189.5,21.5 - parent: 2 - - uid: 13778 - components: - - type: Transform - pos: -189.5,19.5 - parent: 2 - - uid: 13779 + - uid: 14212 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-31.5 parent: 2 - - uid: 13780 + - uid: 14213 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-32.5 parent: 2 - - uid: 13781 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -193.5,1.5 - parent: 2 - - uid: 13782 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -194.5,1.5 - parent: 2 - - uid: 13783 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -195.5,1.5 - parent: 2 - - uid: 13784 + - uid: 14214 components: - type: Transform rot: 3.141592653589793 rad pos: -190.5,-16.5 parent: 2 - - uid: 13785 + - uid: 14215 components: - type: Transform pos: -145.5,8.5 parent: 2 - - uid: 13786 + - uid: 14216 components: - type: Transform pos: -145.5,7.5 parent: 2 - - uid: 13787 + - uid: 14217 components: - type: Transform pos: -146.5,7.5 parent: 2 - - uid: 13788 + - uid: 14218 components: - type: Transform pos: -175.5,7.5 parent: 2 - - uid: 13789 + - uid: 14219 components: - type: Transform rot: 1.5707963267948966 rad pos: -167.5,-25.5 parent: 2 - - uid: 13790 + - uid: 14220 components: - type: Transform rot: 1.5707963267948966 rad pos: -159.5,-19.5 parent: 2 - - uid: 13791 + - uid: 14221 components: - type: Transform rot: 1.5707963267948966 rad pos: -159.5,-18.5 parent: 2 - - uid: 13792 + - uid: 14222 components: - type: Transform rot: 1.5707963267948966 rad pos: -158.5,-19.5 parent: 2 - - uid: 13793 + - uid: 14223 components: - type: Transform rot: 1.5707963267948966 rad pos: -158.5,-18.5 parent: 2 - - uid: 13794 + - uid: 14224 components: - type: Transform rot: 1.5707963267948966 rad pos: -155.5,-18.5 parent: 2 - - uid: 13795 + - uid: 14225 components: - type: Transform rot: 1.5707963267948966 rad pos: -155.5,-19.5 parent: 2 - - uid: 13796 + - uid: 14226 components: - type: Transform rot: 1.5707963267948966 rad pos: -154.5,-18.5 parent: 2 - - uid: 13797 + - uid: 14227 components: - type: Transform rot: 1.5707963267948966 rad pos: -154.5,-19.5 parent: 2 - - uid: 13798 + - uid: 14228 components: - type: Transform rot: 1.5707963267948966 rad pos: -167.5,-18.5 parent: 2 - - uid: 13799 + - uid: 14229 components: - type: Transform rot: 1.5707963267948966 rad pos: -167.5,-17.5 parent: 2 - - uid: 13800 + - uid: 14230 components: - type: Transform rot: 1.5707963267948966 rad pos: -166.5,-17.5 parent: 2 - - uid: 13801 + - uid: 14231 components: - type: Transform rot: 1.5707963267948966 rad pos: -165.5,-17.5 parent: 2 - - uid: 13802 + - uid: 14232 components: - type: Transform rot: 1.5707963267948966 rad pos: -164.5,-17.5 parent: 2 - - uid: 13803 + - uid: 14233 components: - type: Transform pos: -171.5,1.5 parent: 2 - - uid: 13804 + - uid: 14234 components: - type: Transform pos: -165.5,1.5 parent: 2 - - uid: 13805 + - uid: 14235 components: - type: Transform pos: -67.5,-12.5 parent: 2 - - uid: 13806 + - uid: 14236 components: - type: Transform rot: 3.141592653589793 rad pos: -166.5,-12.5 parent: 2 - - uid: 13807 + - uid: 14237 components: - type: Transform pos: -54.5,-5.5 parent: 2 - - uid: 13808 + - uid: 14238 components: - type: Transform pos: -105.5,-11.5 parent: 2 - - uid: 13809 + - uid: 14239 components: - type: Transform pos: -105.5,-12.5 parent: 2 - - uid: 13810 + - uid: 14240 components: - type: Transform rot: 1.5707963267948966 rad pos: -84.5,16.5 parent: 2 - - uid: 13811 + - uid: 14241 components: - type: Transform pos: -19.5,-16.5 parent: 2 - - uid: 13812 + - uid: 14242 components: - type: Transform pos: -20.5,-16.5 parent: 2 - - uid: 13813 + - uid: 14243 components: - type: Transform - rot: 3.141592653589793 rad - pos: -194.5,12.5 + pos: -228.5,-17.5 parent: 2 - - uid: 17115 + - uid: 14244 + components: + - type: Transform + pos: -228.5,-16.5 + parent: 2 + - uid: 14245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -221.5,-26.5 + parent: 2 + - uid: 14246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -221.5,-22.5 + parent: 2 + - uid: 14247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -220.5,-26.5 + parent: 2 + - uid: 14248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -220.5,-22.5 + parent: 2 + - uid: 14249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -218.5,-24.5 + parent: 2 + - uid: 14250 + components: + - type: Transform + pos: -186.5,-27.5 + parent: 2 + - uid: 14251 + components: + - type: Transform + pos: -187.5,-27.5 + parent: 2 + - uid: 14252 + components: + - type: Transform + pos: -216.5,-17.5 + parent: 2 + - uid: 14253 + components: + - type: Transform + pos: -199.5,6.5 + parent: 2 + - uid: 14254 + components: + - type: Transform + pos: -198.5,6.5 + parent: 2 + - uid: 14255 + components: + - type: Transform + pos: -199.5,1.5 + parent: 2 + - uid: 17659 components: - type: Transform pos: 12.5,-5.5 - parent: 17021 - - uid: 17116 + parent: 17565 + - uid: 17660 components: - type: Transform pos: 15.5,-1.5 - parent: 17021 + parent: 17565 - proto: TableBrass entities: - - uid: 13814 + - uid: 14256 components: - type: Transform rot: 3.141592653589793 rad @@ -96379,271 +100606,281 @@ entities: parent: 2 - proto: TableCarpet entities: - - uid: 13815 + - uid: 14257 components: - type: Transform pos: -44.5,-18.5 parent: 2 - - uid: 13816 + - uid: 14258 components: - type: Transform pos: -43.5,-18.5 parent: 2 - - uid: 13817 + - uid: 14259 components: - type: Transform pos: -42.5,-18.5 parent: 2 - proto: TableCounterMetal entities: - - uid: 13818 + - uid: 14260 components: - type: Transform pos: -141.5,6.5 parent: 2 -- proto: TableReinforced +- proto: TableCounterWood entities: - - uid: 13819 + - uid: 14261 + components: + - type: Transform + pos: -221.5,-29.5 + parent: 2 +- proto: TableFrame + entities: + - uid: 14262 components: - type: Transform rot: 1.5707963267948966 rad - pos: -179.5,1.5 + pos: -221.5,-15.5 parent: 2 - - uid: 13820 + - uid: 14263 components: - type: Transform - pos: -191.5,-23.5 + rot: -1.5707963267948966 rad + pos: -221.5,-25.5 parent: 2 - - uid: 13821 +- proto: TableReinforced + entities: + - uid: 14264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -179.5,1.5 + parent: 2 + - uid: 14265 components: - type: Transform pos: -58.5,-4.5 parent: 2 - - uid: 13822 + - uid: 14266 components: - type: Transform pos: -91.5,5.5 parent: 2 - - uid: 13823 + - uid: 14267 components: - type: Transform pos: -7.5,-2.5 parent: 2 - - uid: 13824 + - uid: 14268 components: - type: Transform pos: -8.5,-1.5 parent: 2 - - uid: 13825 + - uid: 14269 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-2.5 parent: 2 - - uid: 13826 + - uid: 14270 components: - type: Transform rot: 3.141592653589793 rad pos: -110.5,-10.5 parent: 2 - - uid: 13827 + - uid: 14271 components: - type: Transform pos: -10.5,-2.5 parent: 2 - - uid: 13828 + - uid: 14272 components: - type: Transform rot: 3.141592653589793 rad pos: -147.5,10.5 parent: 2 - - uid: 13829 + - uid: 14273 components: - type: Transform pos: -18.5,-15.5 parent: 2 - - uid: 13830 + - uid: 14274 components: - type: Transform pos: -18.5,-11.5 parent: 2 - - uid: 13831 + - uid: 14275 components: - type: Transform pos: -7.5,4.5 parent: 2 - - uid: 13832 + - uid: 14276 components: - type: Transform pos: -9.5,4.5 parent: 2 - - uid: 13833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -180.5,-24.5 - parent: 2 - - uid: 13834 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -189.5,-25.5 - parent: 2 - - uid: 13835 + - uid: 14277 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,3.5 parent: 2 - - uid: 13836 + - uid: 14278 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,5.5 parent: 2 - - uid: 13837 + - uid: 14279 components: - type: Transform rot: -1.5707963267948966 rad pos: -164.5,6.5 parent: 2 - - uid: 13838 + - uid: 14280 components: - type: Transform rot: 1.5707963267948966 rad pos: -166.5,0.5 parent: 2 - - uid: 13839 + - uid: 14281 components: - type: Transform rot: 1.5707963267948966 rad pos: -170.5,0.5 parent: 2 - - uid: 13840 + - uid: 14282 components: - type: Transform pos: -6.5,4.5 parent: 2 - - uid: 13841 + - uid: 14283 components: - type: Transform rot: 3.141592653589793 rad pos: -148.5,10.5 parent: 2 - - uid: 13842 + - uid: 14284 components: - type: Transform rot: 3.141592653589793 rad pos: -149.5,10.5 parent: 2 - - uid: 13843 + - uid: 14285 components: - type: Transform rot: 3.141592653589793 rad pos: -146.5,10.5 parent: 2 - - uid: 13844 + - uid: 14286 components: - type: Transform rot: 1.5707963267948966 rad pos: -179.5,6.5 parent: 2 - - uid: 13845 + - uid: 14287 components: - type: Transform rot: 1.5707963267948966 rad pos: -179.5,5.5 parent: 2 - - uid: 13846 + - uid: 14288 components: - type: Transform pos: -92.5,6.5 parent: 2 - - uid: 13847 + - uid: 14289 components: - type: Transform pos: -91.5,6.5 parent: 2 - - uid: 13848 + - uid: 14290 components: - type: Transform pos: -58.5,-3.5 parent: 2 - - uid: 13849 + - uid: 14291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -191.5,-26.5 + rot: 3.141592653589793 rad + pos: -179.5,0.5 parent: 2 - - uid: 13850 + - uid: 14292 components: - type: Transform - pos: -191.5,-27.5 + rot: -1.5707963267948966 rad + pos: -178.5,3.5 parent: 2 - - uid: 13851 +- proto: TableReinforcedGlass + entities: + - uid: 14293 components: - type: Transform - rot: 3.141592653589793 rad - pos: -179.5,0.5 + rot: -1.5707963267948966 rad + pos: -191.5,-24.5 parent: 2 - - uid: 13852 + - uid: 14294 components: - type: Transform rot: -1.5707963267948966 rad - pos: -178.5,3.5 + pos: -191.5,-23.5 parent: 2 -- proto: TableReinforcedGlass - entities: - - uid: 13853 + - uid: 14295 components: - type: Transform pos: -187.5,-8.5 parent: 2 - - uid: 13854 + - uid: 14296 components: - type: Transform pos: -59.5,2.5 parent: 2 - - uid: 13855 + - uid: 14297 components: - type: Transform pos: -59.5,3.5 parent: 2 - - uid: 13856 + - uid: 14298 components: - type: Transform pos: -61.5,2.5 parent: 2 - - uid: 13857 + - uid: 14299 components: - type: Transform pos: -61.5,3.5 parent: 2 - - uid: 13858 + - uid: 14300 components: - type: Transform pos: -186.5,-10.5 parent: 2 - - uid: 13859 + - uid: 14301 components: - type: Transform pos: -103.5,19.5 parent: 2 + - uid: 14302 + components: + - type: Transform + pos: -188.5,-23.5 + parent: 2 - proto: TableStone entities: - - uid: 13860 + - uid: 14303 components: - type: Transform rot: 1.5707963267948966 rad pos: -91.5,-7.5 parent: 2 - - uid: 13861 + - uid: 14304 components: - type: Transform rot: 1.5707963267948966 rad pos: -91.5,-8.5 parent: 2 - - uid: 13862 + - uid: 14305 components: - type: Transform rot: 1.5707963267948966 rad @@ -96651,560 +100888,560 @@ entities: parent: 2 - proto: TableWood entities: - - uid: 13863 + - uid: 14306 + components: + - type: Transform + pos: -194.5,15.5 + parent: 2 + - uid: 14307 components: - type: Transform pos: -30.5,8.5 parent: 2 - - uid: 13864 + - uid: 14308 components: - type: Transform rot: -1.5707963267948966 rad pos: -114.5,-4.5 parent: 2 - - uid: 13865 + - uid: 14309 components: - type: Transform rot: -1.5707963267948966 rad pos: -115.5,-5.5 parent: 2 - - uid: 13866 + - uid: 14310 components: - type: Transform rot: -1.5707963267948966 rad pos: -115.5,-4.5 parent: 2 - - uid: 13867 + - uid: 14311 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,-6.5 parent: 2 - - uid: 13868 + - uid: 14312 components: - type: Transform rot: -1.5707963267948966 rad pos: -119.5,-6.5 parent: 2 - - uid: 13869 + - uid: 14313 components: - type: Transform rot: -1.5707963267948966 rad pos: -119.5,-5.5 parent: 2 - - uid: 13870 + - uid: 14314 components: - type: Transform rot: 3.141592653589793 rad pos: -114.5,16.5 parent: 2 - - uid: 13871 + - uid: 14315 components: - type: Transform rot: 3.141592653589793 rad pos: -114.5,15.5 parent: 2 - - uid: 13872 + - uid: 14316 components: - type: Transform rot: 3.141592653589793 rad pos: -115.5,16.5 parent: 2 - - uid: 13873 + - uid: 14317 components: - type: Transform rot: 3.141592653589793 rad pos: -116.5,15.5 parent: 2 - - uid: 13874 + - uid: 14318 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,16.5 parent: 2 - - uid: 13875 + - uid: 14319 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,15.5 parent: 2 - - uid: 13876 + - uid: 14320 components: - type: Transform rot: 3.141592653589793 rad pos: -115.5,15.5 parent: 2 - - uid: 13877 + - uid: 14321 components: - type: Transform rot: 3.141592653589793 rad pos: -116.5,16.5 parent: 2 - - uid: 13878 + - uid: 14322 components: - type: Transform rot: 1.5707963267948966 rad pos: -154.5,15.5 parent: 2 - - uid: 13879 + - uid: 14323 components: - type: Transform pos: -156.5,16.5 parent: 2 - - uid: 13880 + - uid: 14324 components: - type: Transform rot: 1.5707963267948966 rad pos: -155.5,15.5 parent: 2 - - uid: 13881 + - uid: 14325 components: - type: Transform rot: 1.5707963267948966 rad pos: -156.5,15.5 parent: 2 - - uid: 13882 + - uid: 14326 components: - type: Transform pos: -153.5,17.5 parent: 2 - - uid: 13883 + - uid: 14327 components: - type: Transform rot: 1.5707963267948966 rad pos: -135.5,6.5 parent: 2 - - uid: 13884 + - uid: 14328 components: - type: Transform rot: 1.5707963267948966 rad pos: -133.5,6.5 parent: 2 - - uid: 13885 + - uid: 14329 components: - type: Transform pos: -92.5,-11.5 parent: 2 - - uid: 13886 + - uid: 14330 components: - type: Transform pos: -115.5,4.5 parent: 2 - - uid: 13887 + - uid: 14331 components: - type: Transform pos: -114.5,4.5 parent: 2 - - uid: 13888 + - uid: 14332 components: - type: Transform pos: -118.5,4.5 parent: 2 - - uid: 13889 + - uid: 14333 components: - type: Transform pos: -119.5,4.5 parent: 2 - - uid: 13890 + - uid: 14334 components: - type: Transform pos: -110.5,4.5 parent: 2 - - uid: 13891 + - uid: 14335 components: - type: Transform pos: -110.5,2.5 parent: 2 - - uid: 13892 + - uid: 14336 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-18.5 parent: 2 - - uid: 13893 + - uid: 14337 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-3.5 parent: 2 - - uid: 13894 + - uid: 14338 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 2 - - uid: 13895 + - uid: 14339 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-2.5 parent: 2 - - uid: 13896 + - uid: 14340 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-3.5 parent: 2 - - uid: 13897 + - uid: 14341 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-3.5 parent: 2 - - uid: 13898 + - uid: 14342 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-4.5 parent: 2 - - uid: 13899 + - uid: 14343 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-2.5 parent: 2 - - uid: 13900 + - uid: 14344 components: - type: Transform rot: -1.5707963267948966 rad pos: -119.5,13.5 parent: 2 - - uid: 13901 + - uid: 14345 components: - type: Transform rot: -1.5707963267948966 rad pos: -119.5,14.5 parent: 2 - - uid: 13902 + - uid: 14346 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.5,14.5 parent: 2 - - uid: 13903 + - uid: 14347 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.5,15.5 parent: 2 - - uid: 13904 - components: - - type: Transform - pos: -43.5,16.5 - parent: 2 - - uid: 13905 - components: - - type: Transform - pos: -42.5,16.5 - parent: 2 - - uid: 13906 + - uid: 14348 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-18.5 parent: 2 - - uid: 13907 + - uid: 14349 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-19.5 parent: 2 - - uid: 13908 + - uid: 14350 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,9.5 parent: 2 - - uid: 13909 + - uid: 14351 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,9.5 parent: 2 - - uid: 13910 + - uid: 14352 components: - type: Transform pos: -8.5,-10.5 parent: 2 - - uid: 13911 + - uid: 14353 components: - type: Transform pos: -8.5,-9.5 parent: 2 - - uid: 13912 + - uid: 14354 components: - type: Transform pos: -99.5,10.5 parent: 2 - - uid: 13913 - components: - - type: Transform - pos: -203.5,20.5 - parent: 2 - - uid: 13914 + - uid: 14355 components: - type: Transform pos: -103.5,21.5 parent: 2 - - uid: 13915 + - uid: 14356 components: - type: Transform rot: 1.5707963267948966 rad pos: -134.5,6.5 parent: 2 - - uid: 13916 + - uid: 14357 components: - type: Transform rot: 3.141592653589793 rad pos: -141.5,0.5 parent: 2 - - uid: 13917 + - uid: 14358 components: - type: Transform rot: 3.141592653589793 rad pos: -141.5,1.5 parent: 2 - - uid: 13918 + - uid: 14359 components: - type: Transform rot: 3.141592653589793 rad pos: -142.5,1.5 parent: 2 - - uid: 13919 + - uid: 14360 components: - type: Transform rot: 3.141592653589793 rad pos: -144.5,3.5 parent: 2 - - uid: 13920 + - uid: 14361 components: - type: Transform rot: 3.141592653589793 rad pos: -143.5,3.5 parent: 2 - - uid: 13921 + - uid: 14362 components: - type: Transform rot: 3.141592653589793 rad pos: -143.5,1.5 parent: 2 - - uid: 13922 + - uid: 14363 components: - type: Transform pos: -165.5,12.5 parent: 2 - - uid: 13923 + - uid: 14364 components: - type: Transform rot: -1.5707963267948966 rad pos: -163.5,8.5 parent: 2 - - uid: 13924 + - uid: 14365 components: - type: Transform rot: -1.5707963267948966 rad pos: -122.5,-7.5 parent: 2 - - uid: 13925 + - uid: 14366 components: - type: Transform rot: -1.5707963267948966 rad pos: -122.5,-8.5 parent: 2 - - uid: 13926 + - uid: 14367 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.5,-11.5 parent: 2 - - uid: 13927 + - uid: 14368 components: - type: Transform rot: -1.5707963267948966 rad pos: -122.5,-11.5 parent: 2 - - uid: 13928 + - uid: 14369 components: - type: Transform rot: -1.5707963267948966 rad pos: -124.5,-9.5 parent: 2 - - uid: 13929 + - uid: 14370 components: - type: Transform rot: 3.141592653589793 rad pos: -126.5,-11.5 parent: 2 - - uid: 13930 + - uid: 14371 components: - type: Transform rot: 3.141592653589793 rad pos: -128.5,-11.5 parent: 2 - - uid: 13931 + - uid: 14372 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,7.5 parent: 2 - - uid: 13932 + - uid: 14373 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,7.5 parent: 2 - - uid: 13933 + - uid: 14374 components: - type: Transform pos: -104.5,13.5 parent: 2 - - uid: 13934 + - uid: 14375 components: - type: Transform pos: -105.5,13.5 parent: 2 - - uid: 13935 + - uid: 14376 components: - type: Transform pos: -114.5,2.5 parent: 2 - - uid: 13936 + - uid: 14377 components: - type: Transform pos: -115.5,2.5 parent: 2 - - uid: 13937 + - uid: 14378 components: - type: Transform pos: -116.5,2.5 parent: 2 - - uid: 13938 + - uid: 14379 components: - type: Transform pos: -117.5,2.5 parent: 2 - - uid: 13939 + - uid: 14380 components: - type: Transform pos: -118.5,2.5 parent: 2 - - uid: 13940 + - uid: 14381 components: - type: Transform pos: -119.5,2.5 parent: 2 - - uid: 13941 - components: - - type: Transform - pos: -198.5,12.5 - parent: 2 - - uid: 13942 - components: - - type: Transform - pos: -198.5,13.5 - parent: 2 - - uid: 13943 - components: - - type: Transform - pos: -198.5,14.5 - parent: 2 - - uid: 13944 + - uid: 14382 components: - type: Transform pos: -156.5,-25.5 parent: 2 - - uid: 13945 + - uid: 14383 components: - type: Transform pos: -157.5,-25.5 parent: 2 - - uid: 13946 + - uid: 14384 components: - type: Transform pos: -156.5,-24.5 parent: 2 - - uid: 13947 + - uid: 14385 components: - type: Transform pos: -153.5,-25.5 parent: 2 - - uid: 13948 + - uid: 14386 components: - type: Transform pos: -154.5,-25.5 parent: 2 - - uid: 13949 + - uid: 14387 components: - type: Transform pos: -154.5,-24.5 parent: 2 - - uid: 13950 + - uid: 14388 components: - type: Transform pos: -146.5,4.5 parent: 2 - - uid: 13951 + - uid: 14389 components: - type: Transform pos: -147.5,4.5 parent: 2 - - uid: 13952 + - uid: 14390 components: - type: Transform rot: -1.5707963267948966 rad pos: -148.5,4.5 parent: 2 - - uid: 13953 + - uid: 14391 components: - type: Transform pos: -32.5,3.5 parent: 2 - - uid: 13954 + - uid: 14392 components: - type: Transform pos: -47.5,-19.5 parent: 2 - - uid: 13955 + - uid: 14393 components: - type: Transform pos: -46.5,-19.5 parent: 2 - - uid: 13956 + - uid: 14394 components: - type: Transform pos: -119.5,15.5 parent: 2 - - uid: 13957 - components: - - type: Transform - pos: -111.5,-15.5 - parent: 2 - - uid: 13958 + - uid: 14395 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,-0.5 parent: 2 - - uid: 13959 + - uid: 14396 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,-1.5 parent: 2 - - uid: 13960 + - uid: 14397 components: - type: Transform rot: 3.141592653589793 rad pos: -119.5,17.5 parent: 2 + - uid: 14398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -223.5,-32.5 + parent: 2 + - uid: 14399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -223.5,-31.5 + parent: 2 + - uid: 14400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -220.5,-33.5 + parent: 2 + - uid: 14401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -220.5,-32.5 + parent: 2 + - uid: 14402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -224.5,-31.5 + parent: 2 - proto: TargetClown entities: - - uid: 13961 + - uid: 14403 components: - type: Transform pos: -149.5,12.5 parent: 2 - - uid: 13962 + - uid: 14404 components: - type: Transform rot: 3.141592653589793 rad @@ -97212,12 +101449,12 @@ entities: parent: 2 - proto: TargetStrange entities: - - uid: 13963 + - uid: 14405 components: - type: Transform pos: -145.5,16.5 parent: 2 - - uid: 13964 + - uid: 14406 components: - type: Transform rot: 3.141592653589793 rad @@ -97225,18 +101462,18 @@ entities: parent: 2 - proto: TargetSyndicate entities: - - uid: 13965 + - uid: 14407 components: - type: Transform pos: -147.5,14.5 parent: 2 - - uid: 13966 + - uid: 14408 components: - type: Transform rot: 3.141592653589793 rad pos: -145.5,12.5 parent: 2 - - uid: 13967 + - uid: 14409 components: - type: Transform rot: 1.5707963267948966 rad @@ -97244,7 +101481,7 @@ entities: parent: 2 - proto: TelecomServer entities: - - uid: 7810 + - uid: 8204 components: - type: Transform pos: -11.5,-17.5 @@ -97255,7 +101492,7 @@ entities: showEnts: False occludes: True ents: - - 7811 + - 8205 machine_board: !type:Container showEnts: False occludes: True @@ -97264,7 +101501,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 7812 + - uid: 8206 components: - type: Transform pos: -7.5,-14.5 @@ -97275,7 +101512,7 @@ entities: showEnts: False occludes: True ents: - - 7813 + - 8207 machine_board: !type:Container showEnts: False occludes: True @@ -97284,7 +101521,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 7814 + - uid: 8208 components: - type: Transform pos: -9.5,-14.5 @@ -97295,7 +101532,7 @@ entities: showEnts: False occludes: True ents: - - 7815 + - 8209 machine_board: !type:Container showEnts: False occludes: True @@ -97304,7 +101541,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 7816 + - uid: 8210 components: - type: Transform pos: -9.5,-17.5 @@ -97315,7 +101552,7 @@ entities: showEnts: False occludes: True ents: - - 7817 + - 8211 machine_board: !type:Container showEnts: False occludes: True @@ -97324,7 +101561,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 7818 + - uid: 8212 components: - type: Transform pos: -13.5,-17.5 @@ -97335,7 +101572,7 @@ entities: showEnts: False occludes: True ents: - - 7819 + - 8213 machine_board: !type:Container showEnts: False occludes: True @@ -97344,7 +101581,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 7822 + - uid: 8216 components: - type: Transform pos: -13.5,-14.5 @@ -97355,7 +101592,7 @@ entities: showEnts: False occludes: True ents: - - 7823 + - 8217 machine_board: !type:Container showEnts: False occludes: True @@ -97364,7 +101601,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 7824 + - uid: 8218 components: - type: Transform pos: -7.5,-17.5 @@ -97375,7 +101612,7 @@ entities: showEnts: False occludes: True ents: - - 7825 + - 8219 machine_board: !type:Container showEnts: False occludes: True @@ -97384,7 +101621,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 7826 + - uid: 8220 components: - type: Transform pos: -11.5,-14.5 @@ -97395,7 +101632,7 @@ entities: showEnts: False occludes: True ents: - - 7827 + - 8221 machine_board: !type:Container showEnts: False occludes: True @@ -97432,146 +101669,215 @@ entities: actions: !type:Container ents: - 23 -- proto: TeslaCoil +- proto: Thruster entities: - - uid: 12398 + - uid: 14410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-4.5 + rot: 1.5707963267948966 rad + pos: -202.5,15.5 parent: 2 - - uid: 12399 + - type: Thruster + enabled: False + - uid: 14411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -202.5,1.5 + parent: 2 + - type: Thruster + enabled: False + - uid: 14412 components: - type: Transform rot: -1.5707963267948966 rad - pos: -77.5,-0.5 + pos: -188.5,15.5 parent: 2 - - uid: 12401 + - type: Thruster + enabled: False + - uid: 14413 components: - type: Transform rot: -1.5707963267948966 rad - pos: -77.5,-6.5 + pos: -184.5,-32.5 parent: 2 -- proto: Thruster - entities: - - uid: 13968 + - type: Thruster + enabled: False + - uid: 14414 components: - type: Transform rot: 3.141592653589793 rad - pos: -190.5,0.5 + pos: -189.5,0.5 parent: 2 - - uid: 13969 + - type: Thruster + enabled: False + - uid: 14415 + components: + - type: Transform + pos: -201.5,16.5 + parent: 2 + - type: Thruster + enabled: False + - uid: 14416 components: - type: Transform rot: 1.5707963267948966 rad - pos: -202.5,1.5 + pos: -45.5,35.5 parent: 2 - - uid: 13970 + - uid: 14417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,30.5 + parent: 2 + - uid: 14418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,30.5 + parent: 2 + - uid: 14419 components: - type: Transform pos: -100.5,1.5 parent: 2 - - uid: 13971 + - type: Thruster + enabled: False + - uid: 14420 components: - type: Transform rot: 1.5707963267948966 rad pos: -99.5,2.5 parent: 2 - - uid: 13972 + - type: Thruster + enabled: False + - uid: 14421 components: - type: Transform rot: -1.5707963267948966 rad pos: -105.5,2.5 parent: 2 - - uid: 13973 + - type: Thruster + enabled: False + - uid: 14422 components: - type: Transform pos: -104.5,1.5 parent: 2 - - uid: 13974 + - type: Thruster + enabled: False + - uid: 14423 components: - type: Transform rot: 3.141592653589793 rad pos: -100.5,2.5 parent: 2 - - uid: 13975 + - type: Thruster + enabled: False + - uid: 14424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -204.5,25.5 + pos: -182.5,-7.5 parent: 2 - - uid: 13976 + - type: Thruster + enabled: False + - uid: 14425 components: - type: Transform - pos: -189.5,25.5 + rot: 3.141592653589793 rad + pos: -104.5,2.5 parent: 2 - - uid: 13977 + - type: Thruster + enabled: False + - uid: 14427 components: - type: Transform rot: -1.5707963267948966 rad - pos: -180.5,-22.5 + pos: -216.5,-39.5 parent: 2 - - uid: 13978 + - type: Thruster + enabled: False + - uid: 14428 components: - type: Transform - pos: -182.5,-7.5 + rot: -1.5707963267948966 rad + pos: -214.5,-38.5 parent: 2 - - uid: 13979 + - type: Thruster + enabled: False + - uid: 14429 components: - type: Transform rot: 3.141592653589793 rad - pos: -104.5,2.5 + pos: -185.5,-32.5 parent: 2 - - uid: 17117 + - type: Thruster + enabled: False + - uid: 14430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -188.5,-32.5 + parent: 2 + - type: Thruster + enabled: False + - uid: 14431 + components: + - type: Transform + pos: -228.5,-4.5 + parent: 2 + - type: Thruster + enabled: False + - uid: 17661 components: - type: Transform pos: 10.5,0.5 - parent: 17021 - - uid: 17118 + parent: 17565 + - uid: 17662 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,0.5 - parent: 17021 - - uid: 17119 + parent: 17565 + - uid: 17663 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-6.5 - parent: 17021 - - uid: 17120 + parent: 17565 + - uid: 17664 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-7.5 - parent: 17021 - - uid: 17121 + parent: 17565 + - uid: 17665 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-7.5 - parent: 17021 - - uid: 17122 + parent: 17565 + - uid: 17666 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-0.5 - parent: 17021 + parent: 17565 - proto: ThrusterMachineCircuitboard entities: - - uid: 13980 + - uid: 14432 components: - type: Transform pos: -55.512947,-1.1790996 parent: 2 - - uid: 13981 + - uid: 14433 components: - type: Transform pos: -55.528572,-1.3509746 parent: 2 - proto: TintedWindow entities: - - uid: 13982 + - uid: 14434 components: - type: Transform rot: -1.5707963267948966 rad @@ -97579,25 +101885,7 @@ entities: parent: 2 - proto: ToiletDirtyWater entities: - - uid: 6987 - components: - - type: MetaData - desc: '"Добавьте в техи как можно глубже загадочный толчок"' - name: Загадочный толчок - - type: Transform - pos: -91.5,15.5 - parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: 6988 - disposals: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 13378 + - uid: 13813 components: - type: Transform rot: 1.5707963267948966 rad @@ -97608,30 +101896,30 @@ entities: stash: !type:ContainerSlot showEnts: False occludes: True - ent: 13379 + ent: 13814 disposals: !type:Container showEnts: False occludes: True ents: [] - proto: ToolboxElectricalFilled entities: - - uid: 13983 + - uid: 14435 components: - type: Transform pos: -54.374645,5.4164543 parent: 2 - - uid: 13984 + - uid: 14436 components: - type: Transform pos: -52.510033,-6.5562706 parent: 2 - - uid: 13985 + - uid: 14437 components: - type: Transform rot: -1.5707963267948966 rad pos: -107.129036,-20.756245 parent: 2 - - uid: 13986 + - uid: 14438 components: - type: Transform pos: -67.56646,-8.5032835 @@ -97641,17 +101929,17 @@ entities: linearDamping: 0 - proto: ToolboxEmergencyFilled entities: - - uid: 13987 + - uid: 14439 components: - type: Transform pos: -44.440166,1.4592828 parent: 2 - - uid: 13988 + - uid: 14440 components: - type: Transform pos: -44.36204,1.7405328 parent: 2 - - uid: 13989 + - uid: 14441 components: - type: Transform rot: 1.5707963267948966 rad @@ -97659,7 +101947,7 @@ entities: parent: 2 - proto: ToolboxGoldFilled entities: - - uid: 13990 + - uid: 14442 components: - type: Transform rot: -1.5707963267948966 rad @@ -97667,33 +101955,27 @@ entities: parent: 2 - proto: ToolboxMechanicalFilled entities: - - uid: 13991 + - uid: 14443 components: - type: Transform pos: -152.40895,5.787714 parent: 2 - - uid: 13992 + - uid: 14444 components: - type: Transform pos: -54.374645,5.8070793 parent: 2 - - uid: 13993 + - uid: 14445 components: - type: Transform pos: -52.510033,-7.2750206 parent: 2 - - uid: 13994 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -193.39812,1.5998166 - parent: 2 - - uid: 13995 + - uid: 14446 components: - type: Transform pos: -47.497128,-4.318041 parent: 2 - - uid: 13996 + - uid: 14447 components: - type: Transform pos: -67.36318,-7.3626585 @@ -97701,14820 +101983,15392 @@ entities: - type: Physics angularDamping: 0 linearDamping: 0 -- proto: TorsoBorg - entities: - - uid: 13997 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -66.4521,51.35826 - parent: 2 - proto: TorsoSkeleton entities: - - uid: 13998 + - uid: 14448 components: - type: Transform pos: -85.5063,-36.546894 parent: 2 - - uid: 13999 + - uid: 14449 components: - type: Transform rot: 3.141592653589793 rad pos: -122.48763,1.8296344 parent: 2 + - uid: 17549 + components: + - type: Transform + pos: -39.28861,34.63673 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 - proto: ToyAi entities: - - uid: 14000 + - uid: 14450 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.9521,51.342636 + pos: -44.497482,33.610886 parent: 2 - proto: ToyFigurineChaplain entities: - - uid: 14001 + - uid: 14451 components: - type: Transform pos: -39.471508,9.548235 parent: 2 - proto: ToyFigurineEngineer entities: - - uid: 14002 + - uid: 14452 components: - type: Transform pos: -61.681778,-1.316855 parent: 2 - proto: ToyFigurineGreytider entities: - - uid: 14003 + - uid: 14453 components: - type: Transform pos: -8.64683,-2.4059064 parent: 2 - proto: ToyFigurineHamlet entities: - - uid: 14004 + - uid: 14454 components: - type: Transform pos: -42.402657,-18.45095 parent: 2 - proto: ToyFigurineHeadOfPersonnel entities: - - uid: 14005 + - uid: 14455 components: - type: Transform pos: -20.338614,-1.5065954 parent: 2 - proto: ToyFigurineHeadOfSecurity entities: - - uid: 14006 + - uid: 14456 components: - type: Transform pos: -8.193705,-2.1559064 parent: 2 - proto: ToyFigurineMusician entities: - - uid: 14007 + - uid: 14457 components: - type: Transform pos: -128.45688,-11.378675 parent: 2 - proto: ToyHammer entities: - - uid: 6960 + - uid: 7367 components: - type: Transform - parent: 6947 + parent: 7354 - type: Physics + angularDamping: 0 + linearDamping: 0 canCollide: False - type: InsideEntityStorage - proto: TrainingBomb entities: - - uid: 14008 + - uid: 14458 components: - type: Transform pos: -147.5,7.5 parent: 2 - proto: TrashBag entities: - - uid: 14009 + - uid: 14459 components: - type: Transform pos: -33.10125,-12.373328 parent: 2 - proto: TwoWayLever entities: - - uid: 14010 + - uid: 14460 components: - type: Transform pos: -32.5,-10.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 12974: + 13408: - Left: Open - Right: Close - 12975: + 13409: - Left: Open - Right: Close - 12973: + 13407: - Left: Open - Right: Close - - uid: 14011 + - uid: 14461 components: - type: Transform - pos: -58.5,-24.5 + pos: -127.5,-19.5 + parent: 2 + - uid: 14462 + components: + - type: Transform + pos: -58.5,-26.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 6872: + 7290: - Left: Forward - Right: Reverse - Middle: Off - 6871: + 7289: + - Left: Forward - Right: Reverse + - Middle: Off + 7292: - Left: Forward + - Right: Reverse - Middle: Off - 6873: + 7270: + - Left: Forward - Right: Reverse + - Middle: Off + 7271: - Left: Forward + - Right: Reverse - Middle: Off - 6867: + 7274: - Left: Forward - Right: Reverse - Middle: Off - 6870: + 7293: - Left: Forward - Right: Reverse - Middle: Off - 6866: + 7273: - Left: Forward - Right: Reverse - Middle: Off - 6868: + 7272: - Left: Forward - Right: Reverse - - Right: Off - 6869: - Middle: Off + 7294: + - Left: Forward - Right: Reverse + - Middle: Off + 7291: - Left: Forward - - uid: 14012 + - Right: Reverse + - Middle: Off +- proto: UnfinishedMachineFrame + entities: + - uid: 14463 components: - type: Transform - pos: -127.5,-19.5 + pos: -218.5,-41.5 + parent: 2 + - uid: 14464 + components: + - type: Transform + pos: -201.5,0.5 parent: 2 - proto: UniformPrinter entities: - - uid: 14013 + - uid: 14465 components: - type: Transform pos: -21.5,-1.5 parent: 2 - proto: VariantCubeBox entities: - - uid: 14014 + - uid: 14466 components: - type: Transform pos: -116.04374,-15.802755 parent: 2 - - uid: 14015 - components: - - type: Transform - pos: -189.45805,20.418444 - parent: 2 - proto: VendingBarDrobe entities: - - uid: 14016 + - uid: 14467 components: - type: Transform pos: -112.5,6.5 parent: 2 - proto: VendingMachineAtmosDrobe entities: - - uid: 14017 + - uid: 14468 components: - type: Transform pos: -61.5,15.5 parent: 2 - proto: VendingMachineBooze entities: - - uid: 14018 + - uid: 14469 components: - type: Transform pos: -117.5,4.5 parent: 2 - - uid: 14019 + - uid: 14470 components: - type: Transform pos: -121.5,13.5 parent: 2 - - uid: 14020 + - uid: 14471 components: - type: Transform pos: -86.5,16.5 parent: 2 + - uid: 14472 + components: + - type: Transform + pos: -221.5,-28.5 + parent: 2 - proto: VendingMachineCargoDrobe entities: - - uid: 14021 + - uid: 14473 components: - type: Transform pos: -61.5,-21.5 parent: 2 - proto: VendingMachineCart entities: - - uid: 14022 + - uid: 14474 components: - type: Transform pos: -19.5,-1.5 parent: 2 - proto: VendingMachineChapel entities: - - uid: 14023 + - uid: 14475 components: - type: Transform pos: -37.5,7.5 parent: 2 - proto: VendingMachineChefDrobe entities: - - uid: 14024 + - uid: 14476 components: - type: Transform pos: -117.5,-14.5 parent: 2 - proto: VendingMachineChefvend entities: - - uid: 14025 + - uid: 14477 components: - type: Transform pos: -117.5,-11.5 parent: 2 +- proto: VendingMachineChemDrobe + entities: + - uid: 14478 + components: + - type: Transform + pos: -191.5,-25.5 + parent: 2 - proto: VendingMachineChemicals entities: - - uid: 14026 + - uid: 14479 components: - type: Transform - pos: -190.5,-22.5 + pos: -189.5,-25.5 parent: 2 - proto: VendingMachineCigs entities: - - uid: 14027 + - uid: 14480 components: - type: Transform pos: -55.5,5.5 parent: 2 - - uid: 14028 + - uid: 14481 components: - type: Transform pos: -29.5,-6.5 parent: 2 - - uid: 14029 + - uid: 14482 components: - type: Transform pos: -126.5,0.5 parent: 2 - proto: VendingMachineClothing entities: - - uid: 14030 + - uid: 14483 components: - type: Transform pos: -98.5,6.5 parent: 2 - - uid: 14031 + - uid: 14484 components: - type: Transform pos: -43.5,1.5 parent: 2 +- proto: VendingMachineCourierDrobe + entities: + - uid: 17561 + components: + - type: Transform + pos: -73.5,-21.5 + parent: 2 - proto: VendingMachineDetDrobe entities: - - uid: 14032 + - uid: 14485 components: - type: Transform pos: -146.5,2.5 parent: 2 - proto: VendingMachineDinnerware entities: - - uid: 14033 + - uid: 14486 components: - type: Transform pos: -117.5,-12.5 parent: 2 +- proto: VendingMachineDiscount + entities: + - uid: 14487 + components: + - type: Transform + pos: -224.5,-27.5 + parent: 2 - proto: VendingMachineDonut entities: - - uid: 14034 + - uid: 14488 components: - type: Transform pos: -159.5,12.5 parent: 2 - proto: VendingMachineEngiDrobe entities: - - uid: 14035 + - uid: 14489 components: - type: Transform pos: -64.5,-12.5 parent: 2 - proto: VendingMachineEngivend entities: - - uid: 14036 + - uid: 14490 components: - type: Transform pos: -53.5,1.5 parent: 2 - - uid: 14037 + - uid: 14491 components: - type: Transform pos: -62.5,-1.5 parent: 2 - proto: VendingMachineGames entities: - - uid: 14038 + - uid: 14492 components: - type: Transform - pos: -152.5,-19.5 + pos: -41.5,-14.5 parent: 2 - - uid: 14039 + - uid: 14493 components: - type: Transform - pos: -41.5,-14.5 + pos: -99.5,14.5 parent: 2 - - uid: 14040 + - uid: 14494 components: - type: Transform - pos: -99.5,14.5 + rot: -1.5707963267948966 rad + pos: -152.5,-19.5 + parent: 2 +- proto: VendingMachineHotfood + entities: + - uid: 14495 + components: + - type: Transform + pos: -227.5,-31.5 parent: 2 - proto: VendingMachineHydrobe entities: - - uid: 14041 + - uid: 14496 components: - type: Transform pos: -101.5,-18.5 parent: 2 - proto: VendingMachineJaniDrobe entities: - - uid: 14042 + - uid: 14497 components: - type: Transform pos: -29.5,-8.5 parent: 2 - proto: VendingMachineLawDrobe entities: - - uid: 14043 + - uid: 14498 components: - type: Transform pos: -139.5,0.5 parent: 2 - proto: VendingMachineMedical entities: - - uid: 14044 + - uid: 14499 components: - type: Transform - pos: -179.5,-0.5 + rot: 1.5707963267948966 rad + pos: -187.5,-22.5 parent: 2 - - uid: 14045 + - uid: 14500 components: - type: Transform - pos: -188.5,-22.5 + rot: 1.5707963267948966 rad + pos: -179.5,-0.5 parent: 2 - proto: VendingMachineMediDrobe entities: - - uid: 14046 + - uid: 14501 components: - type: Transform pos: -182.5,-22.5 parent: 2 - proto: VendingMachineNutri entities: - - uid: 14047 + - uid: 14502 components: - type: Transform pos: -109.5,-15.5 parent: 2 - proto: VendingMachineRestockEngineering entities: - - uid: 14048 + - uid: 14503 components: - type: Transform pos: -69.46986,2.5394104 parent: 2 - proto: VendingMachineRestockSeeds entities: - - uid: 14049 + - uid: 14504 components: - type: Transform pos: -103.53654,-6.4298315 parent: 2 -- proto: VendingMachineRoboDrobe - entities: - - uid: 14050 - components: - - type: Transform - pos: -190.5,18.5 - parent: 2 -- proto: VendingMachineRobotics - entities: - - uid: 14051 - components: - - type: Transform - pos: -191.5,18.5 - parent: 2 - proto: VendingMachineSalvage entities: - - uid: 14052 + - uid: 14505 components: - type: Transform pos: -86.5,-27.5 parent: 2 - proto: VendingMachineSciDrobe entities: - - uid: 14053 + - uid: 14506 components: - type: Transform - pos: -201.5,2.5 + pos: -201.5,6.5 parent: 2 - proto: VendingMachineSec entities: - - uid: 14054 + - uid: 14507 components: - type: Transform pos: -160.5,12.5 parent: 2 - - uid: 14055 + - uid: 14508 components: - type: Transform + rot: -1.5707963267948966 rad pos: -166.5,-11.5 parent: 2 - proto: VendingMachineSecDrobe entities: - - uid: 14056 + - uid: 14509 components: - type: Transform pos: -166.5,-13.5 parent: 2 - proto: VendingMachineSeeds entities: - - uid: 14057 + - uid: 14510 components: - type: Transform pos: -109.5,-16.5 parent: 2 - proto: VendingMachineSeedsUnlocked entities: - - uid: 14058 + - uid: 14511 components: - type: Transform pos: -160.5,-23.5 parent: 2 - proto: VendingMachineSustenance entities: - - uid: 14059 + - uid: 14512 components: - type: Transform pos: -159.5,2.5 parent: 2 - - uid: 14060 + - uid: 14513 components: - type: Transform pos: -167.5,-21.5 parent: 2 - proto: VendingMachineTankDispenserEngineering entities: - - uid: 14061 + - uid: 14514 + components: + - type: Transform + pos: -191.5,1.5 + parent: 2 + - uid: 14515 components: - type: Transform pos: -64.5,4.5 parent: 2 - - uid: 14062 + - uid: 14516 components: - type: Transform pos: -55.5,18.5 parent: 2 - proto: VendingMachineTankDispenserEVA entities: - - uid: 14063 + - uid: 14517 components: - type: Transform pos: -23.5,-11.5 parent: 2 - - uid: 14064 + - uid: 14518 components: - type: Transform pos: -83.5,-28.5 parent: 2 - - uid: 14065 + - uid: 14519 components: - type: Transform pos: -62.5,-6.5 parent: 2 + - uid: 14520 + components: + - type: Transform + pos: -222.5,-0.5 + parent: 2 - proto: VendingMachineTheater entities: - - uid: 14066 + - uid: 14521 components: - type: Transform pos: -124.5,-7.5 parent: 2 - proto: VendingMachineVendomat entities: - - uid: 14067 + - uid: 14522 components: - type: Transform pos: -47.5,5.5 parent: 2 - - uid: 14068 - components: - - type: Transform - pos: -194.5,17.5 - parent: 2 - - uid: 14069 + - uid: 14523 components: - type: Transform pos: -52.5,-5.5 parent: 2 - proto: VendingMachineWallMedical entities: - - uid: 14070 + - uid: 14524 components: - type: Transform rot: 3.141592653589793 rad pos: -184.5,-18.5 parent: 2 -- proto: VendingMachineWinter - entities: - - uid: 14071 +- proto: VendingMachineWinter + entities: + - uid: 14525 + components: + - type: Transform + pos: -99.5,6.5 + parent: 2 +- proto: VendingMachineYouTool + entities: + - uid: 14526 + components: + - type: Transform + pos: -43.5,5.5 + parent: 2 + - uid: 14527 + components: + - type: Transform + pos: -45.5,-4.5 + parent: 2 +- proto: VibraphoneInstrument + entities: + - uid: 14528 + components: + - type: Transform + pos: -128.5,-9.5 + parent: 2 +- proto: WallMining + entities: + - uid: 14529 + components: + - type: Transform + pos: -58.5,-29.5 + parent: 2 + - uid: 14530 + components: + - type: Transform + pos: -58.5,-27.5 + parent: 2 + - uid: 14531 + components: + - type: Transform + pos: -68.5,-26.5 + parent: 2 + - uid: 14532 + components: + - type: Transform + pos: -55.5,-29.5 + parent: 2 + - uid: 14533 + components: + - type: Transform + pos: -55.5,-27.5 + parent: 2 + - uid: 14534 + components: + - type: Transform + pos: -67.5,-27.5 + parent: 2 + - uid: 14535 + components: + - type: Transform + pos: -67.5,-26.5 + parent: 2 + - uid: 14536 + components: + - type: Transform + pos: -217.5,-23.5 + parent: 2 + - uid: 14537 + components: + - type: Transform + pos: -216.5,-19.5 + parent: 2 + - uid: 14538 + components: + - type: Transform + pos: -223.5,-37.5 + parent: 2 + - uid: 14539 + components: + - type: Transform + pos: -223.5,-38.5 + parent: 2 + - uid: 14540 + components: + - type: Transform + pos: -223.5,-39.5 + parent: 2 + - uid: 14541 + components: + - type: Transform + pos: -225.5,-40.5 + parent: 2 + - uid: 14542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -226.5,-37.5 + parent: 2 + - uid: 14543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -216.5,-10.5 + parent: 2 + - uid: 14544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -225.5,-38.5 + parent: 2 + - uid: 14545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -224.5,-40.5 + parent: 2 + - uid: 14546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -223.5,-40.5 + parent: 2 + - uid: 14547 + components: + - type: Transform + pos: -55.5,-28.5 + parent: 2 + - uid: 14548 + components: + - type: Transform + pos: -66.5,-28.5 + parent: 2 + - uid: 14549 components: - type: Transform - pos: -99.5,6.5 + pos: -61.5,-28.5 parent: 2 -- proto: VendingMachineYouTool - entities: - - uid: 14072 + - uid: 14550 components: - type: Transform - pos: -43.5,5.5 + pos: -61.5,-27.5 parent: 2 - - uid: 14073 + - uid: 14551 components: - type: Transform - pos: -45.5,-4.5 + pos: -93.5,12.5 parent: 2 -- proto: VibraphoneInstrument - entities: - - uid: 14074 + - uid: 14552 components: - type: Transform - pos: -128.5,-9.5 + rot: -1.5707963267948966 rad + pos: -89.5,12.5 parent: 2 -- proto: WallMining - entities: - - uid: 14075 + - uid: 14553 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-21.5 parent: 2 - - uid: 14076 + - uid: 14554 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-21.5 parent: 2 - - uid: 14077 + - uid: 14555 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-21.5 parent: 2 - - uid: 14078 + - uid: 14556 components: - type: Transform pos: -24.5,-21.5 parent: 2 - - uid: 14079 + - uid: 14557 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-20.5 parent: 2 - - uid: 14080 + - uid: 14558 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-21.5 parent: 2 - - uid: 14081 + - uid: 14559 components: - type: Transform pos: -24.5,-18.5 parent: 2 - - uid: 14082 + - uid: 14560 components: - type: Transform pos: -22.5,-17.5 parent: 2 - - uid: 14083 + - uid: 14561 components: - type: Transform pos: -20.5,-17.5 parent: 2 - - uid: 14084 + - uid: 14562 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-20.5 parent: 2 - - uid: 14085 + - uid: 14563 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-21.5 parent: 2 - - uid: 14086 + - uid: 14564 components: - type: Transform pos: -18.5,-17.5 parent: 2 - - uid: 14087 + - uid: 14565 components: - type: Transform pos: -63.5,-9.5 parent: 2 - - uid: 14088 + - uid: 14566 components: - type: Transform pos: -61.5,-13.5 parent: 2 - - uid: 14089 + - uid: 14567 components: - type: Transform pos: -63.5,-10.5 parent: 2 - - uid: 14090 + - uid: 14568 components: - type: Transform pos: -55.5,-5.5 parent: 2 - - uid: 14091 + - uid: 14569 components: - type: Transform pos: -55.5,-4.5 parent: 2 - - uid: 14092 + - uid: 14570 components: - type: Transform pos: -74.5,-13.5 parent: 2 - - uid: 14093 + - uid: 14571 components: - type: Transform pos: -147.5,-7.5 parent: 2 - - uid: 14094 + - uid: 14572 components: - type: Transform rot: -1.5707963267948966 rad pos: -146.5,-7.5 parent: 2 - - uid: 14095 + - uid: 14573 components: - type: Transform pos: -136.5,-7.5 parent: 2 - - uid: 14096 + - uid: 14574 components: - type: Transform rot: -1.5707963267948966 rad pos: -134.5,-7.5 parent: 2 - - uid: 14097 + - uid: 14575 components: - type: Transform rot: -1.5707963267948966 rad pos: -138.5,-7.5 parent: 2 - - uid: 14098 + - uid: 14576 components: - type: Transform rot: -1.5707963267948966 rad pos: -135.5,-7.5 parent: 2 - - uid: 14099 + - uid: 14577 components: - type: Transform rot: -1.5707963267948966 rad pos: -143.5,-7.5 parent: 2 - - uid: 14100 + - uid: 14578 components: - type: Transform rot: -1.5707963267948966 rad pos: -132.5,-7.5 parent: 2 - - uid: 14101 + - uid: 14579 components: - type: Transform rot: -1.5707963267948966 rad pos: -133.5,-7.5 parent: 2 - - uid: 14102 + - uid: 14580 components: - type: Transform pos: -50.5,-3.5 parent: 2 - - uid: 14103 + - uid: 14581 components: - type: Transform pos: -50.5,-8.5 parent: 2 - - uid: 14104 + - uid: 14582 components: - type: Transform rot: 1.5707963267948966 rad pos: -86.5,4.5 parent: 2 - - uid: 14105 + - uid: 14583 components: - type: Transform pos: -86.5,9.5 parent: 2 - - uid: 14106 + - uid: 14584 components: - type: Transform pos: -86.5,-16.5 parent: 2 - - uid: 14107 + - uid: 14585 components: - type: Transform rot: 1.5707963267948966 rad pos: -88.5,2.5 parent: 2 - - uid: 14108 + - uid: 14586 components: - type: Transform pos: -88.5,-9.5 parent: 2 - - uid: 14109 + - uid: 14587 components: - type: Transform pos: -3.5,0.5 parent: 2 - - uid: 14110 + - uid: 14588 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-7.5 parent: 2 - - uid: 14111 + - uid: 14589 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-8.5 parent: 2 - - uid: 14112 + - uid: 14590 components: - type: Transform pos: -70.5,18.5 parent: 2 - - uid: 14113 + - uid: 14591 components: - type: Transform pos: -70.5,17.5 parent: 2 - - uid: 14114 + - uid: 14592 components: - type: Transform pos: -85.5,-6.5 parent: 2 - - uid: 14115 + - uid: 14593 components: - type: Transform pos: -85.5,-0.5 parent: 2 - - uid: 14116 + - uid: 14594 components: - type: Transform pos: -145.5,0.5 parent: 2 - - uid: 14117 + - uid: 14595 components: - type: Transform pos: -138.5,-0.5 parent: 2 - - uid: 14118 + - uid: 14596 components: - type: Transform pos: -138.5,2.5 parent: 2 - - uid: 14119 + - uid: 14597 components: - type: Transform pos: -144.5,-0.5 parent: 2 - - uid: 14120 + - uid: 14598 components: - type: Transform pos: -143.5,-0.5 parent: 2 - - uid: 14121 + - uid: 14599 components: - type: Transform pos: -146.5,0.5 parent: 2 - - uid: 14122 + - uid: 14600 components: - type: Transform pos: -145.5,-0.5 parent: 2 - - uid: 14123 + - uid: 14601 components: - type: Transform pos: -130.5,0.5 parent: 2 - - uid: 14124 + - uid: 14602 components: - type: Transform pos: -130.5,-0.5 parent: 2 - - uid: 14125 + - uid: 14603 components: - type: Transform pos: -143.5,4.5 parent: 2 - - uid: 14126 + - uid: 14604 components: - type: Transform pos: -142.5,4.5 parent: 2 - - uid: 14127 + - uid: 14605 components: - type: Transform pos: -138.5,6.5 parent: 2 - - uid: 14128 + - uid: 14606 components: - type: Transform rot: 3.141592653589793 rad pos: -138.5,7.5 parent: 2 - - uid: 14129 + - uid: 14607 components: - type: Transform pos: -144.5,4.5 parent: 2 - - uid: 14130 + - uid: 14608 components: - type: Transform pos: -140.5,4.5 parent: 2 - - uid: 14131 + - uid: 14609 components: - type: Transform pos: -138.5,4.5 parent: 2 - - uid: 14132 + - uid: 14610 components: - type: Transform pos: -139.5,4.5 parent: 2 - - uid: 14133 + - uid: 14611 components: - type: Transform rot: -1.5707963267948966 rad pos: -145.5,-7.5 parent: 2 - - uid: 14134 + - uid: 14612 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-19.5 parent: 2 - - uid: 14135 + - uid: 14613 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-24.5 parent: 2 - - uid: 14136 + - uid: 14614 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-26.5 parent: 2 - - uid: 14137 + - uid: 14615 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-26.5 parent: 2 - - uid: 14138 + - uid: 14616 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-24.5 parent: 2 - - uid: 14139 + - uid: 14617 components: - type: Transform - pos: -55.5,-26.5 + pos: -67.5,-28.5 parent: 2 - - uid: 14140 + - uid: 14618 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-23.5 parent: 2 - - uid: 14141 + - uid: 14619 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-22.5 parent: 2 - - uid: 14142 + - uid: 14620 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-25.5 parent: 2 - - uid: 14143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-26.5 - parent: 2 - - uid: 14144 + - uid: 14621 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-25.5 parent: 2 - - uid: 14145 + - uid: 14622 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-26.5 parent: 2 - - uid: 14146 + - uid: 14623 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-23.5 parent: 2 - - uid: 14147 + - uid: 14624 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-26.5 parent: 2 - - uid: 14148 + - uid: 14625 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-23.5 parent: 2 - - uid: 14149 + - uid: 14626 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-23.5 parent: 2 - - uid: 14150 + - uid: 14627 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-23.5 parent: 2 - - uid: 14151 + - uid: 14628 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-23.5 parent: 2 - - uid: 14152 + - uid: 14629 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-23.5 parent: 2 - - uid: 14153 + - uid: 14630 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-23.5 parent: 2 - - uid: 14154 + - uid: 14631 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-23.5 parent: 2 - - uid: 14155 + - uid: 14632 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-23.5 parent: 2 - - uid: 14156 + - uid: 14633 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-23.5 parent: 2 - - uid: 14157 + - uid: 14634 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-23.5 parent: 2 - - uid: 14158 + - uid: 14635 components: - type: Transform pos: -37.5,-23.5 parent: 2 - - uid: 14159 + - uid: 14636 components: - type: Transform pos: -36.5,-23.5 parent: 2 - - uid: 14160 + - uid: 14637 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-25.5 parent: 2 - - uid: 14161 + - uid: 14638 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-22.5 parent: 2 - - uid: 14162 + - uid: 14639 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-21.5 parent: 2 - - uid: 14163 + - uid: 14640 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-20.5 parent: 2 - - uid: 14164 + - uid: 14641 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-18.5 parent: 2 - - uid: 14165 + - uid: 14642 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-17.5 parent: 2 - - uid: 14166 + - uid: 14643 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-17.5 parent: 2 - - uid: 14167 + - uid: 14644 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-17.5 parent: 2 - - uid: 14168 + - uid: 14645 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-17.5 parent: 2 - - uid: 14169 + - uid: 14646 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-17.5 parent: 2 - - uid: 14170 + - uid: 14647 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-17.5 parent: 2 - - uid: 14171 + - uid: 14648 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-16.5 parent: 2 - - uid: 14172 + - uid: 14649 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-16.5 parent: 2 - - uid: 14173 + - uid: 14650 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-16.5 parent: 2 - - uid: 14174 + - uid: 14651 components: - type: Transform pos: 6.5,0.5 parent: 2 - - uid: 14175 + - uid: 14652 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-12.5 parent: 2 - - uid: 14176 + - uid: 14653 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-11.5 parent: 2 - - uid: 14177 + - uid: 14654 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-10.5 parent: 2 - - uid: 14178 + - uid: 14655 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-10.5 parent: 2 - - uid: 14179 + - uid: 14656 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-10.5 parent: 2 - - uid: 14180 + - uid: 14657 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-10.5 parent: 2 - - uid: 14181 + - uid: 14658 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-10.5 parent: 2 - - uid: 14182 + - uid: 14659 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-10.5 parent: 2 - - uid: 14183 + - uid: 14660 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-10.5 parent: 2 - - uid: 14184 + - uid: 14661 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-10.5 parent: 2 - - uid: 14185 + - uid: 14662 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-10.5 parent: 2 - - uid: 14186 + - uid: 14663 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-10.5 parent: 2 - - uid: 14187 + - uid: 14664 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-10.5 parent: 2 - - uid: 14188 + - uid: 14665 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-11.5 parent: 2 - - uid: 14189 + - uid: 14666 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-14.5 parent: 2 - - uid: 14190 + - uid: 14667 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-15.5 parent: 2 - - uid: 14191 + - uid: 14668 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-12.5 parent: 2 - - uid: 14192 + - uid: 14669 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-11.5 parent: 2 - - uid: 14193 + - uid: 14670 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-8.5 parent: 2 - - uid: 14194 + - uid: 14671 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-8.5 parent: 2 - - uid: 14195 + - uid: 14672 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-8.5 parent: 2 - - uid: 14196 + - uid: 14673 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-9.5 parent: 2 - - uid: 14197 + - uid: 14674 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-6.5 parent: 2 - - uid: 14198 + - uid: 14675 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-5.5 parent: 2 - - uid: 14199 + - uid: 14676 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-4.5 parent: 2 - - uid: 14200 + - uid: 14677 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-7.5 parent: 2 - - uid: 14201 + - uid: 14678 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-5.5 parent: 2 - - uid: 14202 + - uid: 14679 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-5.5 parent: 2 - - uid: 14203 + - uid: 14680 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-5.5 parent: 2 - - uid: 14204 + - uid: 14681 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-6.5 parent: 2 - - uid: 14205 + - uid: 14682 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-7.5 parent: 2 - - uid: 14206 + - uid: 14683 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-8.5 parent: 2 - - uid: 14207 + - uid: 14684 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-9.5 parent: 2 - - uid: 14208 + - uid: 14685 components: - type: Transform rot: 1.5707963267948966 rad pos: -95.5,6.5 parent: 2 - - uid: 14209 + - uid: 14686 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,1.5 parent: 2 - - uid: 14210 + - uid: 14687 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,1.5 parent: 2 - - uid: 14211 + - uid: 14688 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,1.5 parent: 2 - - uid: 14212 + - uid: 14689 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,1.5 parent: 2 - - uid: 14213 + - uid: 14690 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-2.5 parent: 2 - - uid: 14214 + - uid: 14691 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-1.5 parent: 2 - - uid: 14215 + - uid: 14692 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,1.5 parent: 2 - - uid: 14216 + - uid: 14693 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,0.5 parent: 2 - - uid: 14217 + - uid: 14694 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-2.5 parent: 2 - - uid: 14218 + - uid: 14695 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-4.5 parent: 2 - - uid: 14219 + - uid: 14696 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,6.5 parent: 2 - - uid: 14220 + - uid: 14697 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,7.5 parent: 2 - - uid: 14221 + - uid: 14698 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,8.5 parent: 2 - - uid: 14222 + - uid: 14699 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,9.5 parent: 2 - - uid: 14223 + - uid: 14700 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,10.5 parent: 2 - - uid: 14224 + - uid: 14701 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,11.5 parent: 2 - - uid: 14225 + - uid: 14702 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,11.5 parent: 2 - - uid: 14226 + - uid: 14703 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,11.5 parent: 2 - - uid: 14227 + - uid: 14704 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,6.5 parent: 2 - - uid: 14228 + - uid: 14705 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,11.5 parent: 2 - - uid: 14229 + - uid: 14706 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,11.5 parent: 2 - - uid: 14230 + - uid: 14707 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,11.5 parent: 2 - - uid: 14231 + - uid: 14708 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,11.5 parent: 2 - - uid: 14232 + - uid: 14709 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,11.5 parent: 2 - - uid: 14233 + - uid: 14710 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,11.5 parent: 2 - - uid: 14234 + - uid: 14711 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,11.5 parent: 2 - - uid: 14235 + - uid: 14712 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,11.5 parent: 2 - - uid: 14236 + - uid: 14713 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,11.5 parent: 2 - - uid: 14237 + - uid: 14714 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,12.5 parent: 2 - - uid: 14238 + - uid: 14715 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,12.5 parent: 2 - - uid: 14239 + - uid: 14716 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,12.5 parent: 2 - - uid: 14240 + - uid: 14717 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,12.5 parent: 2 - - uid: 14241 + - uid: 14718 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,12.5 parent: 2 - - uid: 14242 + - uid: 14719 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,13.5 parent: 2 - - uid: 14243 + - uid: 14720 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,13.5 parent: 2 - - uid: 14244 + - uid: 14721 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,13.5 parent: 2 - - uid: 14245 + - uid: 14722 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,13.5 parent: 2 - - uid: 14246 + - uid: 14723 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,12.5 parent: 2 - - uid: 14247 + - uid: 14724 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,12.5 parent: 2 - - uid: 14248 + - uid: 14725 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,15.5 parent: 2 - - uid: 14249 + - uid: 14726 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,12.5 parent: 2 - - uid: 14250 + - uid: 14727 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,13.5 parent: 2 - - uid: 14251 + - uid: 14728 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,14.5 parent: 2 - - uid: 14252 + - uid: 14729 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,16.5 parent: 2 - - uid: 14253 + - uid: 14730 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,17.5 parent: 2 - - uid: 14254 + - uid: 14731 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,18.5 parent: 2 - - uid: 14255 + - uid: 14732 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,18.5 parent: 2 - - uid: 14256 + - uid: 14733 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,18.5 parent: 2 - - uid: 14257 + - uid: 14734 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,18.5 parent: 2 - - uid: 14258 + - uid: 14735 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,18.5 parent: 2 - - uid: 14259 + - uid: 14736 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,18.5 parent: 2 - - uid: 14260 + - uid: 14737 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,18.5 parent: 2 - - uid: 14261 + - uid: 14738 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,18.5 parent: 2 - - uid: 14262 + - uid: 14739 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,18.5 parent: 2 - - uid: 14263 + - uid: 14740 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,18.5 parent: 2 - - uid: 14264 + - uid: 14741 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,18.5 parent: 2 - - uid: 14265 + - uid: 14742 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,18.5 parent: 2 - - uid: 14266 + - uid: 14743 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,18.5 parent: 2 - - uid: 14267 + - uid: 14744 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,18.5 parent: 2 - - uid: 14268 + - uid: 14745 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,18.5 parent: 2 - - uid: 14269 + - uid: 14746 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,19.5 parent: 2 - - uid: 14270 + - uid: 14747 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,20.5 parent: 2 - - uid: 14271 + - uid: 14748 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,21.5 parent: 2 - - uid: 14272 + - uid: 14749 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,22.5 parent: 2 - - uid: 14273 + - uid: 14750 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,25.5 parent: 2 - - uid: 14274 + - uid: 14751 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,25.5 parent: 2 - - uid: 14275 + - uid: 14752 components: - type: Transform rot: 1.5707963267948966 rad pos: -75.5,25.5 parent: 2 - - uid: 14276 + - uid: 14753 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,22.5 parent: 2 - - uid: 14277 + - uid: 14754 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,25.5 parent: 2 - - uid: 14278 + - uid: 14755 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,25.5 parent: 2 - - uid: 14279 + - uid: 14756 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,25.5 parent: 2 - - uid: 14280 + - uid: 14757 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,25.5 parent: 2 - - uid: 14281 + - uid: 14758 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,25.5 parent: 2 - - uid: 14282 + - uid: 14759 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,25.5 parent: 2 - - uid: 14283 + - uid: 14760 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,25.5 parent: 2 - - uid: 14284 + - uid: 14761 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,25.5 parent: 2 - - uid: 14285 + - uid: 14762 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,21.5 parent: 2 - - uid: 14286 + - uid: 14763 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,18.5 parent: 2 - - uid: 14287 + - uid: 14764 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,20.5 parent: 2 - - uid: 14288 + - uid: 14765 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,19.5 parent: 2 - - uid: 14289 + - uid: 14766 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,19.5 parent: 2 - - uid: 14290 + - uid: 14767 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,19.5 parent: 2 - - uid: 14291 + - uid: 14768 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,18.5 parent: 2 - - uid: 14292 + - uid: 14769 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,16.5 parent: 2 - - uid: 14293 + - uid: 14770 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,16.5 parent: 2 - - uid: 14294 + - uid: 14771 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,16.5 parent: 2 - - uid: 14295 + - uid: 14772 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,16.5 parent: 2 - - uid: 14296 + - uid: 14773 components: - type: Transform rot: 1.5707963267948966 rad pos: -76.5,16.5 parent: 2 - - uid: 14297 + - uid: 14774 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,16.5 parent: 2 - - uid: 14298 + - uid: 14775 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,16.5 parent: 2 - - uid: 14299 + - uid: 14776 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,16.5 parent: 2 - - uid: 14300 + - uid: 14777 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,16.5 parent: 2 - - uid: 14301 + - uid: 14778 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,16.5 parent: 2 - - uid: 14302 + - uid: 14779 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,16.5 parent: 2 - - uid: 14303 + - uid: 14780 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,16.5 parent: 2 - - uid: 14304 + - uid: 14781 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,16.5 parent: 2 - - uid: 14305 + - uid: 14782 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,16.5 parent: 2 - - uid: 14306 + - uid: 14783 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,16.5 parent: 2 - - uid: 14307 + - uid: 14784 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,16.5 parent: 2 - - uid: 14308 + - uid: 14785 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,15.5 parent: 2 - - uid: 14309 + - uid: 14786 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,16.5 parent: 2 - - uid: 14310 + - uid: 14787 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,17.5 parent: 2 - - uid: 14311 + - uid: 14788 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,18.5 parent: 2 - - uid: 14312 + - uid: 14789 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,18.5 parent: 2 - - uid: 14313 + - uid: 14790 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,18.5 parent: 2 - - uid: 14314 + - uid: 14791 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,17.5 parent: 2 - - uid: 14315 + - uid: 14792 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,14.5 parent: 2 - - uid: 14316 + - uid: 14793 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,13.5 parent: 2 - - uid: 14317 + - uid: 14794 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,13.5 parent: 2 - - uid: 14318 + - uid: 14795 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,13.5 parent: 2 - - uid: 14319 + - uid: 14796 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,13.5 parent: 2 - - uid: 14320 + - uid: 14797 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,13.5 parent: 2 - - uid: 14321 + - uid: 14798 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,13.5 parent: 2 - - uid: 14322 + - uid: 14799 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,13.5 parent: 2 - - uid: 14323 + - uid: 14800 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,14.5 parent: 2 - - uid: 14324 + - uid: 14801 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,15.5 parent: 2 - - uid: 14325 + - uid: 14802 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,16.5 parent: 2 - - uid: 14326 + - uid: 14803 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,17.5 parent: 2 - - uid: 14327 + - uid: 14804 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,18.5 parent: 2 - - uid: 14328 + - uid: 14805 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,18.5 parent: 2 - - uid: 14329 + - uid: 14806 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,18.5 parent: 2 - - uid: 14330 + - uid: 14807 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,18.5 parent: 2 - - uid: 14331 + - uid: 14808 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,10.5 parent: 2 - - uid: 14332 + - uid: 14809 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,9.5 parent: 2 - - uid: 14333 + - uid: 14810 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,7.5 parent: 2 - - uid: 14334 + - uid: 14811 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,8.5 parent: 2 - - uid: 14335 + - uid: 14812 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,6.5 parent: 2 - - uid: 14336 + - uid: 14813 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,6.5 parent: 2 - - uid: 14337 + - uid: 14814 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,6.5 parent: 2 - - uid: 14338 + - uid: 14815 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,6.5 parent: 2 - - uid: 14339 + - uid: 14816 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,6.5 parent: 2 - - uid: 14340 + - uid: 14817 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,4.5 parent: 2 - - uid: 14341 + - uid: 14818 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,5.5 parent: 2 - - uid: 14342 + - uid: 14819 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,4.5 parent: 2 - - uid: 14343 + - uid: 14820 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,5.5 parent: 2 - - uid: 14344 + - uid: 14821 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,6.5 parent: 2 - - uid: 14345 + - uid: 14822 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,4.5 parent: 2 - - uid: 14346 + - uid: 14823 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,6.5 parent: 2 - - uid: 14347 + - uid: 14824 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,6.5 parent: 2 - - uid: 14348 + - uid: 14825 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,6.5 parent: 2 - - uid: 14349 + - uid: 14826 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,6.5 parent: 2 - - uid: 14350 + - uid: 14827 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,6.5 parent: 2 - - uid: 14351 + - uid: 14828 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,6.5 parent: 2 - - uid: 14352 + - uid: 14829 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,6.5 parent: 2 - - uid: 14353 + - uid: 14830 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,6.5 parent: 2 - - uid: 14354 + - uid: 14831 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,6.5 parent: 2 - - uid: 14355 + - uid: 14832 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,6.5 parent: 2 - - uid: 14356 + - uid: 14833 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,6.5 parent: 2 - - uid: 14357 + - uid: 14834 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,5.5 parent: 2 - - uid: 14358 + - uid: 14835 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,4.5 parent: 2 - - uid: 14359 + - uid: 14836 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,3.5 parent: 2 - - uid: 14360 + - uid: 14837 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,2.5 parent: 2 - - uid: 14361 + - uid: 14838 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,1.5 parent: 2 - - uid: 14362 + - uid: 14839 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,1.5 parent: 2 - - uid: 14363 + - uid: 14840 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,1.5 parent: 2 - - uid: 14364 + - uid: 14841 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,1.5 parent: 2 - - uid: 14365 + - uid: 14842 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,4.5 parent: 2 - - uid: 14366 + - uid: 14843 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,5.5 parent: 2 - - uid: 14367 + - uid: 14844 components: - type: Transform pos: -58.5,0.5 parent: 2 - - uid: 14368 + - uid: 14845 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,0.5 parent: 2 - - uid: 14369 + - uid: 14846 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-0.5 parent: 2 - - uid: 14370 + - uid: 14847 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-1.5 parent: 2 - - uid: 14371 + - uid: 14848 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-2.5 parent: 2 - - uid: 14372 + - uid: 14849 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-4.5 parent: 2 - - uid: 14373 + - uid: 14850 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-5.5 parent: 2 - - uid: 14374 + - uid: 14851 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-6.5 parent: 2 - - uid: 14375 + - uid: 14852 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-7.5 parent: 2 - - uid: 14376 + - uid: 14853 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-8.5 parent: 2 - - uid: 14377 + - uid: 14854 components: - type: Transform pos: -63.5,-11.5 parent: 2 - - uid: 14378 + - uid: 14855 components: - type: Transform pos: -63.5,-12.5 parent: 2 - - uid: 14379 + - uid: 14856 components: - type: Transform pos: -63.5,-13.5 parent: 2 - - uid: 14380 + - uid: 14857 components: - type: Transform pos: -62.5,-13.5 parent: 2 - - uid: 14381 + - uid: 14858 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-13.5 parent: 2 - - uid: 14382 + - uid: 14859 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-13.5 parent: 2 - - uid: 14383 + - uid: 14860 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-13.5 parent: 2 - - uid: 14384 + - uid: 14861 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-13.5 parent: 2 - - uid: 14385 + - uid: 14862 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-13.5 parent: 2 - - uid: 14386 + - uid: 14863 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-13.5 parent: 2 - - uid: 14387 + - uid: 14864 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-13.5 parent: 2 - - uid: 14388 + - uid: 14865 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-13.5 parent: 2 - - uid: 14389 + - uid: 14866 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-13.5 parent: 2 - - uid: 14390 + - uid: 14867 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-12.5 parent: 2 - - uid: 14391 + - uid: 14868 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-11.5 parent: 2 - - uid: 14392 + - uid: 14869 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-10.5 parent: 2 - - uid: 14393 + - uid: 14870 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-9.5 parent: 2 - - uid: 14394 + - uid: 14871 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-8.5 parent: 2 - - uid: 14395 + - uid: 14872 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-3.5 parent: 2 - - uid: 14396 + - uid: 14873 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-2.5 parent: 2 - - uid: 14397 + - uid: 14874 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-1.5 parent: 2 - - uid: 14398 + - uid: 14875 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-0.5 parent: 2 - - uid: 14399 + - uid: 14876 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,0.5 parent: 2 - - uid: 14400 + - uid: 14877 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,1.5 parent: 2 - - uid: 14401 + - uid: 14878 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,2.5 parent: 2 - - uid: 14402 + - uid: 14879 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,3.5 parent: 2 - - uid: 14403 + - uid: 14880 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,4.5 parent: 2 - - uid: 14404 + - uid: 14881 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,5.5 parent: 2 - - uid: 14405 + - uid: 14882 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,6.5 parent: 2 - - uid: 14406 + - uid: 14883 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,6.5 parent: 2 - - uid: 14407 + - uid: 14884 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,6.5 parent: 2 - - uid: 14408 + - uid: 14885 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,6.5 parent: 2 - - uid: 14409 + - uid: 14886 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,6.5 parent: 2 - - uid: 14410 + - uid: 14887 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-8.5 parent: 2 - - uid: 14411 + - uid: 14888 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-8.5 parent: 2 - - uid: 14412 + - uid: 14889 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-8.5 parent: 2 - - uid: 14413 + - uid: 14890 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-8.5 parent: 2 - - uid: 14414 + - uid: 14891 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-8.5 parent: 2 - - uid: 14415 + - uid: 14892 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-3.5 parent: 2 - - uid: 14416 + - uid: 14893 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-8.5 parent: 2 - - uid: 14417 + - uid: 14894 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-8.5 parent: 2 - - uid: 14418 + - uid: 14895 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-9.5 parent: 2 - - uid: 14419 + - uid: 14896 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-10.5 parent: 2 - - uid: 14420 + - uid: 14897 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-11.5 parent: 2 - - uid: 14421 + - uid: 14898 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-12.5 parent: 2 - - uid: 14422 + - uid: 14899 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-13.5 parent: 2 - - uid: 14423 + - uid: 14900 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-13.5 parent: 2 - - uid: 14424 + - uid: 14901 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,-13.5 parent: 2 - - uid: 14425 + - uid: 14902 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-13.5 parent: 2 - - uid: 14426 + - uid: 14903 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,-13.5 parent: 2 - - uid: 14427 + - uid: 14904 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-13.5 parent: 2 - - uid: 14428 + - uid: 14905 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,-13.5 parent: 2 - - uid: 14429 + - uid: 14906 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,-13.5 parent: 2 - - uid: 14430 + - uid: 14907 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,-12.5 parent: 2 - - uid: 14431 + - uid: 14908 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,-11.5 parent: 2 - - uid: 14432 + - uid: 14909 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,-11.5 parent: 2 - - uid: 14433 + - uid: 14910 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-11.5 parent: 2 - - uid: 14434 + - uid: 14911 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-10.5 parent: 2 - - uid: 14435 + - uid: 14912 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-12.5 parent: 2 - - uid: 14436 + - uid: 14913 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-11.5 parent: 2 - - uid: 14437 + - uid: 14914 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,-11.5 parent: 2 - - uid: 14438 + - uid: 14915 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,-11.5 parent: 2 - - uid: 14439 + - uid: 14916 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,-11.5 parent: 2 - - uid: 14440 + - uid: 14917 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,-11.5 parent: 2 - - uid: 14441 + - uid: 14918 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,-10.5 parent: 2 - - uid: 14442 + - uid: 14919 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,-10.5 parent: 2 - - uid: 14443 + - uid: 14920 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,-9.5 parent: 2 - - uid: 14444 + - uid: 14921 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,2.5 parent: 2 - - uid: 14445 + - uid: 14922 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,3.5 parent: 2 - - uid: 14446 + - uid: 14923 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,4.5 parent: 2 - - uid: 14447 + - uid: 14924 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,4.5 parent: 2 - - uid: 14448 + - uid: 14925 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,4.5 parent: 2 - - uid: 14449 + - uid: 14926 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,4.5 parent: 2 - - uid: 14450 + - uid: 14927 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,3.5 parent: 2 - - uid: 14451 + - uid: 14928 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,4.5 parent: 2 - - uid: 14452 + - uid: 14929 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,-9.5 parent: 2 - - uid: 14453 + - uid: 14930 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-6.5 parent: 2 - - uid: 14454 + - uid: 14931 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,2.5 parent: 2 - - uid: 14455 + - uid: 14932 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-5.5 parent: 2 - - uid: 14456 + - uid: 14933 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-4.5 parent: 2 - - uid: 14457 + - uid: 14934 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-6.5 parent: 2 - - uid: 14458 + - uid: 14935 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,-6.5 parent: 2 - - uid: 14459 + - uid: 14936 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,-6.5 parent: 2 - - uid: 14460 + - uid: 14937 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-4.5 parent: 2 - - uid: 14461 + - uid: 14938 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-5.5 parent: 2 - - uid: 14462 + - uid: 14939 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-6.5 parent: 2 - - uid: 14463 + - uid: 14940 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-7.5 parent: 2 - - uid: 14464 + - uid: 14941 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-8.5 parent: 2 - - uid: 14465 + - uid: 14942 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-2.5 parent: 2 - - uid: 14466 + - uid: 14943 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-1.5 parent: 2 - - uid: 14467 + - uid: 14944 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-0.5 parent: 2 - - uid: 14468 + - uid: 14945 components: - type: Transform pos: -64.5,2.5 parent: 2 - - uid: 14469 + - uid: 14946 components: - type: Transform pos: -65.5,2.5 parent: 2 - - uid: 14470 + - uid: 14947 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,-0.5 parent: 2 - - uid: 14471 + - uid: 14948 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-0.5 parent: 2 - - uid: 14472 + - uid: 14949 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,-0.5 parent: 2 - - uid: 14473 + - uid: 14950 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-0.5 parent: 2 - - uid: 14474 + - uid: 14951 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-1.5 parent: 2 - - uid: 14475 + - uid: 14952 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-2.5 parent: 2 - - uid: 14476 + - uid: 14953 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,3.5 parent: 2 - - uid: 14477 + - uid: 14954 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-8.5 parent: 2 - - uid: 14478 + - uid: 14955 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-8.5 parent: 2 - - uid: 14479 + - uid: 14956 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-8.5 parent: 2 - - uid: 14480 + - uid: 14957 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-8.5 parent: 2 - - uid: 14481 + - uid: 14958 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-7.5 parent: 2 - - uid: 14482 + - uid: 14959 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-4.5 parent: 2 - - uid: 14483 + - uid: 14960 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-3.5 parent: 2 - - uid: 14484 + - uid: 14961 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-3.5 parent: 2 - - uid: 14485 + - uid: 14962 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-3.5 parent: 2 - - uid: 14486 + - uid: 14963 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-3.5 parent: 2 - - uid: 14487 + - uid: 14964 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-20.5 parent: 2 - - uid: 14488 + - uid: 14965 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-20.5 parent: 2 - - uid: 14489 + - uid: 14966 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-20.5 parent: 2 - - uid: 14490 + - uid: 14967 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-20.5 parent: 2 - - uid: 14491 + - uid: 14968 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-20.5 parent: 2 - - uid: 14492 + - uid: 14969 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-20.5 parent: 2 - - uid: 14493 + - uid: 14970 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-20.5 parent: 2 - - uid: 14494 + - uid: 14971 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-21.5 parent: 2 - - uid: 14495 + - uid: 14972 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,15.5 parent: 2 - - uid: 14496 + - uid: 14973 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,15.5 parent: 2 - - uid: 14497 + - uid: 14974 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,15.5 parent: 2 - - uid: 14498 + - uid: 14975 components: - type: Transform rot: 1.5707963267948966 rad pos: -83.5,15.5 parent: 2 - - uid: 14499 + - uid: 14976 components: - type: Transform rot: 1.5707963267948966 rad pos: -84.5,15.5 parent: 2 - - uid: 14500 + - uid: 14977 components: - type: Transform rot: 1.5707963267948966 rad pos: -85.5,15.5 parent: 2 - - uid: 14501 + - uid: 14978 components: - type: Transform rot: 1.5707963267948966 rad pos: -86.5,15.5 parent: 2 - - uid: 14502 + - uid: 14979 components: - type: Transform rot: 1.5707963267948966 rad pos: -87.5,15.5 parent: 2 - - uid: 14503 + - uid: 14980 components: - type: Transform rot: 1.5707963267948966 rad pos: -87.5,16.5 parent: 2 - - uid: 14504 + - uid: 14981 components: - type: Transform rot: 1.5707963267948966 rad pos: -88.5,16.5 parent: 2 - - uid: 14505 + - uid: 14982 components: - type: Transform rot: 1.5707963267948966 rad pos: -89.5,16.5 parent: 2 - - uid: 14506 + - uid: 14983 components: - type: Transform rot: 1.5707963267948966 rad pos: -90.5,16.5 parent: 2 - - uid: 14507 + - uid: 14984 components: - type: Transform rot: 1.5707963267948966 rad pos: -91.5,16.5 parent: 2 - - uid: 14508 + - uid: 14985 components: - type: Transform rot: 1.5707963267948966 rad pos: -92.5,16.5 parent: 2 - - uid: 14509 + - uid: 14986 components: - type: Transform rot: 1.5707963267948966 rad pos: -93.5,16.5 parent: 2 - - uid: 14510 + - uid: 14987 components: - type: Transform rot: 1.5707963267948966 rad pos: -93.5,15.5 parent: 2 - - uid: 14511 + - uid: 14988 components: - type: Transform rot: 1.5707963267948966 rad pos: -94.5,15.5 parent: 2 - - uid: 14512 + - uid: 14989 components: - type: Transform rot: 1.5707963267948966 rad pos: -94.5,14.5 parent: 2 - - uid: 14513 + - uid: 14990 components: - type: Transform rot: 1.5707963267948966 rad pos: -94.5,13.5 parent: 2 - - uid: 14514 + - uid: 14991 components: - type: Transform rot: 1.5707963267948966 rad pos: -94.5,12.5 parent: 2 - - uid: 14515 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -93.5,12.5 - parent: 2 - - uid: 14516 + - uid: 14992 components: - type: Transform rot: 1.5707963267948966 rad pos: -94.5,10.5 parent: 2 - - uid: 14517 + - uid: 14993 components: - type: Transform rot: 1.5707963267948966 rad pos: -95.5,3.5 parent: 2 - - uid: 14518 + - uid: 14994 components: - type: Transform rot: 1.5707963267948966 rad pos: -94.5,11.5 parent: 2 - - uid: 14519 + - uid: 14995 components: - type: Transform rot: 1.5707963267948966 rad pos: -95.5,9.5 parent: 2 - - uid: 14520 + - uid: 14996 components: - type: Transform rot: 1.5707963267948966 rad pos: -95.5,8.5 parent: 2 - - uid: 14521 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,12.5 - parent: 2 - - uid: 14522 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,12.5 - parent: 2 - - uid: 14523 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,14.5 - parent: 2 - - uid: 14524 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,15.5 - parent: 2 - - uid: 14525 + - uid: 14997 components: - type: Transform rot: 1.5707963267948966 rad pos: -87.5,12.5 parent: 2 - - uid: 14526 + - uid: 14998 components: - type: Transform rot: 1.5707963267948966 rad pos: -87.5,13.5 parent: 2 - - uid: 14527 + - uid: 14999 components: - type: Transform rot: 1.5707963267948966 rad pos: -86.5,13.5 parent: 2 - - uid: 14528 + - uid: 15000 components: - type: Transform rot: 1.5707963267948966 rad pos: -84.5,11.5 parent: 2 - - uid: 14529 + - uid: 15001 components: - type: Transform rot: 1.5707963267948966 rad pos: -84.5,12.5 parent: 2 - - uid: 14530 + - uid: 15002 components: - type: Transform rot: 1.5707963267948966 rad pos: -83.5,12.5 parent: 2 - - uid: 14531 + - uid: 15003 components: - type: Transform rot: 1.5707963267948966 rad pos: -83.5,13.5 parent: 2 - - uid: 14532 + - uid: 15004 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,13.5 parent: 2 - - uid: 14533 + - uid: 15005 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,13.5 parent: 2 - - uid: 14534 + - uid: 15006 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,13.5 parent: 2 - - uid: 14535 + - uid: 15007 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,12.5 parent: 2 - - uid: 14536 + - uid: 15008 components: - type: Transform rot: 1.5707963267948966 rad pos: -95.5,5.5 parent: 2 - - uid: 14537 + - uid: 15009 components: - type: Transform rot: 1.5707963267948966 rad pos: -95.5,2.5 parent: 2 - - uid: 14538 + - uid: 15010 components: - type: Transform rot: 1.5707963267948966 rad pos: -95.5,1.5 parent: 2 - - uid: 14539 + - uid: 15011 components: - type: Transform rot: 1.5707963267948966 rad pos: -95.5,7.5 parent: 2 - - uid: 14540 + - uid: 15012 components: - type: Transform rot: 1.5707963267948966 rad pos: -95.5,0.5 parent: 2 - - uid: 14541 + - uid: 15013 components: - type: Transform rot: 1.5707963267948966 rad pos: -95.5,-0.5 parent: 2 - - uid: 14542 + - uid: 15014 components: - type: Transform rot: 1.5707963267948966 rad pos: -95.5,-1.5 parent: 2 - - uid: 14543 + - uid: 15015 components: - type: Transform rot: 1.5707963267948966 rad pos: -89.5,-1.5 parent: 2 - - uid: 14544 + - uid: 15016 components: - type: Transform rot: 1.5707963267948966 rad pos: -90.5,-1.5 parent: 2 - - uid: 14545 + - uid: 15017 components: - type: Transform rot: 1.5707963267948966 rad pos: -90.5,4.5 parent: 2 - - uid: 14546 + - uid: 15018 components: - type: Transform rot: 1.5707963267948966 rad pos: -90.5,1.5 parent: 2 - - uid: 14547 + - uid: 15019 components: - type: Transform rot: 1.5707963267948966 rad pos: -91.5,2.5 parent: 2 - - uid: 14548 + - uid: 15020 components: - type: Transform rot: 1.5707963267948966 rad pos: -92.5,2.5 parent: 2 - - uid: 14549 + - uid: 15021 components: - type: Transform rot: 1.5707963267948966 rad pos: -93.5,2.5 parent: 2 - - uid: 14550 + - uid: 15022 components: - type: Transform rot: 1.5707963267948966 rad pos: -94.5,2.5 parent: 2 - - uid: 14551 + - uid: 15023 components: - type: Transform rot: 1.5707963267948966 rad pos: -90.5,2.5 parent: 2 - - uid: 14552 + - uid: 15024 components: - type: Transform rot: 1.5707963267948966 rad pos: -90.5,3.5 parent: 2 - - uid: 14553 + - uid: 15025 components: - type: Transform rot: 1.5707963267948966 rad pos: -90.5,5.5 parent: 2 - - uid: 14554 + - uid: 15026 components: - type: Transform rot: 1.5707963267948966 rad pos: -90.5,6.5 parent: 2 - - uid: 14555 + - uid: 15027 components: - type: Transform rot: 1.5707963267948966 rad pos: -90.5,7.5 parent: 2 - - uid: 14556 + - uid: 15028 components: - type: Transform rot: 1.5707963267948966 rad pos: -90.5,8.5 parent: 2 - - uid: 14557 + - uid: 15029 components: - type: Transform rot: 1.5707963267948966 rad pos: -90.5,9.5 parent: 2 - - uid: 14558 + - uid: 15030 components: - type: Transform rot: 1.5707963267948966 rad pos: -90.5,10.5 parent: 2 - - uid: 14559 + - uid: 15031 components: - type: Transform rot: 1.5707963267948966 rad pos: -89.5,10.5 parent: 2 - - uid: 14560 + - uid: 15032 components: - type: Transform rot: 1.5707963267948966 rad pos: -88.5,10.5 parent: 2 - - uid: 14561 + - uid: 15033 components: - type: Transform rot: 1.5707963267948966 rad pos: -87.5,10.5 parent: 2 - - uid: 14562 + - uid: 15034 components: - type: Transform rot: 1.5707963267948966 rad pos: -86.5,10.5 parent: 2 - - uid: 14563 + - uid: 15035 components: - type: Transform rot: 3.141592653589793 rad pos: -89.5,2.5 parent: 2 - - uid: 14564 + - uid: 15036 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,-5.5 parent: 2 - - uid: 14565 + - uid: 15037 components: - type: Transform rot: -1.5707963267948966 rad pos: -92.5,-5.5 parent: 2 - - uid: 14566 + - uid: 15038 components: - type: Transform rot: -1.5707963267948966 rad pos: -93.5,-5.5 parent: 2 - - uid: 14567 + - uid: 15039 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,-7.5 parent: 2 - - uid: 14568 + - uid: 15040 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,-6.5 parent: 2 - - uid: 14569 + - uid: 15041 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,-8.5 parent: 2 - - uid: 14570 + - uid: 15042 components: - type: Transform rot: 3.141592653589793 rad pos: -89.5,-5.5 parent: 2 - - uid: 14571 + - uid: 15043 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,-5.5 parent: 2 - - uid: 14572 + - uid: 15044 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,-9.5 parent: 2 - - uid: 14573 + - uid: 15045 components: - type: Transform rot: 3.141592653589793 rad pos: -89.5,-9.5 parent: 2 - - uid: 14574 + - uid: 15046 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,-10.5 parent: 2 - - uid: 14575 + - uid: 15047 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,-11.5 parent: 2 - - uid: 14576 + - uid: 15048 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,-12.5 parent: 2 - - uid: 14577 + - uid: 15049 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,-13.5 parent: 2 - - uid: 14578 + - uid: 15050 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,-14.5 parent: 2 - - uid: 14579 + - uid: 15051 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,-15.5 parent: 2 - - uid: 14580 + - uid: 15052 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,-16.5 parent: 2 - - uid: 14581 + - uid: 15053 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,-17.5 parent: 2 - - uid: 14582 + - uid: 15054 components: - type: Transform rot: 1.5707963267948966 rad pos: -96.5,-21.5 parent: 2 - - uid: 14583 + - uid: 15055 components: - type: Transform rot: -1.5707963267948966 rad pos: -89.5,-17.5 parent: 2 - - uid: 14584 + - uid: 15056 components: - type: Transform rot: -1.5707963267948966 rad pos: -88.5,-17.5 parent: 2 - - uid: 14585 + - uid: 15057 components: - type: Transform rot: -1.5707963267948966 rad pos: -87.5,-17.5 parent: 2 - - uid: 14586 + - uid: 15058 components: - type: Transform rot: -1.5707963267948966 rad pos: -86.5,-17.5 parent: 2 - - uid: 14587 + - uid: 15059 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,6.5 parent: 2 - - uid: 14588 + - uid: 15060 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-13.5 parent: 2 - - uid: 14589 + - uid: 15061 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,6.5 parent: 2 - - uid: 14590 + - uid: 15062 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,6.5 parent: 2 - - uid: 14591 + - uid: 15063 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-19.5 parent: 2 - - uid: 14592 + - uid: 15064 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,6.5 parent: 2 - - uid: 14593 + - uid: 15065 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,3.5 parent: 2 - - uid: 14594 + - uid: 15066 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,4.5 parent: 2 - - uid: 14595 + - uid: 15067 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,5.5 parent: 2 - - uid: 14596 + - uid: 15068 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,-10.5 parent: 2 - - uid: 14597 + - uid: 15069 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,-11.5 parent: 2 - - uid: 14598 + - uid: 15070 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,-12.5 parent: 2 - - uid: 14599 + - uid: 15071 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,-13.5 parent: 2 - - uid: 14600 + - uid: 15072 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,-13.5 parent: 2 - - uid: 14601 + - uid: 15073 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,-13.5 parent: 2 - - uid: 14602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-26.5 - parent: 2 - - uid: 14603 + - uid: 15074 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-25.5 parent: 2 - - uid: 14604 + - uid: 15075 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,-26.5 parent: 2 - - uid: 14605 + - uid: 15076 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,-25.5 parent: 2 - - uid: 14606 + - uid: 15077 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,-25.5 parent: 2 - - uid: 14607 + - uid: 15078 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,-25.5 parent: 2 - - uid: 14608 + - uid: 15079 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-25.5 parent: 2 - - uid: 14609 + - uid: 15080 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,-25.5 parent: 2 - - uid: 14610 + - uid: 15081 components: - type: Transform rot: 1.5707963267948966 rad pos: -75.5,-25.5 parent: 2 - - uid: 14611 + - uid: 15082 components: - type: Transform rot: 1.5707963267948966 rad pos: -76.5,-25.5 parent: 2 - - uid: 14612 + - uid: 15083 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,-25.5 parent: 2 - - uid: 14613 + - uid: 15084 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,-25.5 parent: 2 - - uid: 14614 + - uid: 15085 components: - type: Transform rot: 1.5707963267948966 rad pos: -75.5,-24.5 parent: 2 - - uid: 14615 + - uid: 15086 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,-24.5 parent: 2 - - uid: 14616 + - uid: 15087 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,-23.5 parent: 2 - - uid: 14617 + - uid: 15088 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,-22.5 parent: 2 - - uid: 14618 + - uid: 15089 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,-21.5 parent: 2 - - uid: 14619 + - uid: 15090 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,-20.5 parent: 2 - - uid: 14620 + - uid: 15091 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,-20.5 parent: 2 - - uid: 14621 + - uid: 15092 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,-20.5 parent: 2 - - uid: 14622 + - uid: 15093 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,-20.5 parent: 2 - - uid: 14623 + - uid: 15094 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,-20.5 parent: 2 - - uid: 14624 + - uid: 15095 components: - type: Transform rot: 1.5707963267948966 rad pos: -83.5,-20.5 parent: 2 - - uid: 14625 + - uid: 15096 components: - type: Transform rot: 1.5707963267948966 rad pos: -85.5,-20.5 parent: 2 - - uid: 14626 + - uid: 15097 components: - type: Transform rot: 1.5707963267948966 rad pos: -89.5,-20.5 parent: 2 - - uid: 14627 + - uid: 15098 components: - type: Transform rot: 1.5707963267948966 rad pos: -90.5,-20.5 parent: 2 - - uid: 14628 + - uid: 15099 components: - type: Transform rot: 1.5707963267948966 rad pos: -91.5,-20.5 parent: 2 - - uid: 14629 + - uid: 15100 components: - type: Transform rot: 1.5707963267948966 rad pos: -92.5,-20.5 parent: 2 - - uid: 14630 + - uid: 15101 components: - type: Transform rot: 1.5707963267948966 rad pos: -93.5,-20.5 parent: 2 - - uid: 14631 + - uid: 15102 components: - type: Transform rot: 1.5707963267948966 rad pos: -94.5,-20.5 parent: 2 - - uid: 14632 + - uid: 15103 components: - type: Transform rot: 1.5707963267948966 rad pos: -95.5,-20.5 parent: 2 - - uid: 14633 + - uid: 15104 components: - type: Transform rot: 1.5707963267948966 rad pos: -96.5,-20.5 parent: 2 - - uid: 14634 + - uid: 15105 components: - type: Transform rot: 1.5707963267948966 rad pos: -96.5,-22.5 parent: 2 - - uid: 14635 + - uid: 15106 components: - type: Transform rot: 1.5707963267948966 rad pos: -96.5,-23.5 parent: 2 - - uid: 14636 + - uid: 15107 components: - type: Transform rot: 1.5707963267948966 rad pos: -96.5,-24.5 parent: 2 - - uid: 14637 + - uid: 15108 components: - type: Transform rot: 1.5707963267948966 rad pos: -96.5,-25.5 parent: 2 - - uid: 14638 + - uid: 15109 components: - type: Transform rot: -1.5707963267948966 rad pos: -108.5,-0.5 parent: 2 - - uid: 14639 + - uid: 15110 components: - type: Transform rot: 1.5707963267948966 rad pos: -97.5,-25.5 parent: 2 - - uid: 14640 + - uid: 15111 components: - type: Transform rot: 1.5707963267948966 rad pos: -98.5,-25.5 parent: 2 - - uid: 14641 + - uid: 15112 components: - type: Transform pos: -100.5,-25.5 parent: 2 - - uid: 14642 + - uid: 15113 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,-25.5 parent: 2 - - uid: 14643 + - uid: 15114 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,-24.5 parent: 2 - - uid: 14644 + - uid: 15115 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,-23.5 parent: 2 - - uid: 14645 + - uid: 15116 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,-22.5 parent: 2 - - uid: 14646 + - uid: 15117 components: - type: Transform rot: 1.5707963267948966 rad pos: -102.5,-22.5 parent: 2 - - uid: 14647 + - uid: 15118 components: - type: Transform rot: 1.5707963267948966 rad pos: -100.5,-22.5 parent: 2 - - uid: 14648 + - uid: 15119 components: - type: Transform rot: 1.5707963267948966 rad pos: -98.5,-22.5 parent: 2 - - uid: 14649 + - uid: 15120 components: - type: Transform rot: 1.5707963267948966 rad pos: -97.5,-22.5 parent: 2 - - uid: 14650 + - uid: 15121 components: - type: Transform - pos: -61.5,-26.5 + pos: -61.5,-29.5 parent: 2 - - uid: 14651 + - uid: 15122 components: - type: Transform - pos: -55.5,-27.5 + pos: -54.5,-27.5 parent: 2 - - uid: 14652 + - uid: 15123 components: - type: Transform rot: 1.5707963267948966 rad pos: -91.5,-9.5 parent: 2 - - uid: 14653 + - uid: 15124 components: - type: Transform rot: 1.5707963267948966 rad pos: -92.5,-9.5 parent: 2 - - uid: 14654 + - uid: 15125 components: - type: Transform rot: 1.5707963267948966 rad pos: -93.5,-9.5 parent: 2 - - uid: 14655 + - uid: 15126 components: - type: Transform rot: 1.5707963267948966 rad pos: -94.5,-9.5 parent: 2 - - uid: 14656 + - uid: 15127 components: - type: Transform rot: 1.5707963267948966 rad pos: -95.5,-9.5 parent: 2 - - uid: 14657 + - uid: 15128 components: - type: Transform rot: 1.5707963267948966 rad pos: -95.5,-5.5 parent: 2 - - uid: 14658 + - uid: 15129 components: - type: Transform rot: 1.5707963267948966 rad pos: -96.5,-5.5 parent: 2 - - uid: 14659 + - uid: 15130 components: - type: Transform rot: 1.5707963267948966 rad pos: -97.5,-5.5 parent: 2 - - uid: 14660 + - uid: 15131 components: - type: Transform rot: 1.5707963267948966 rad pos: -98.5,-5.5 parent: 2 - - uid: 14661 + - uid: 15132 components: - type: Transform rot: 1.5707963267948966 rad pos: -99.5,-5.5 parent: 2 - - uid: 14662 + - uid: 15133 components: - type: Transform pos: -96.5,-1.5 parent: 2 - - uid: 14663 + - uid: 15134 components: - type: Transform pos: -97.5,-1.5 parent: 2 - - uid: 14664 + - uid: 15135 components: - type: Transform pos: -98.5,-1.5 parent: 2 - - uid: 14665 + - uid: 15136 components: - type: Transform pos: -99.5,-1.5 parent: 2 - - uid: 14666 + - uid: 15137 components: - type: Transform pos: -100.5,-1.5 parent: 2 - - uid: 14667 + - uid: 15138 components: - type: Transform pos: -101.5,-1.5 parent: 2 - - uid: 14668 + - uid: 15139 components: - type: Transform pos: -103.5,-1.5 parent: 2 - - uid: 14669 + - uid: 15140 components: - type: Transform pos: -104.5,-1.5 parent: 2 - - uid: 14670 + - uid: 15141 components: - type: Transform pos: -105.5,-1.5 parent: 2 - - uid: 14671 + - uid: 15142 components: - type: Transform pos: -106.5,-1.5 parent: 2 - - uid: 14672 + - uid: 15143 components: - type: Transform pos: -107.5,-1.5 parent: 2 - - uid: 14673 + - uid: 15144 components: - type: Transform pos: -108.5,-1.5 parent: 2 - - uid: 14674 + - uid: 15145 components: - type: Transform pos: -109.5,-1.5 parent: 2 - - uid: 14675 + - uid: 15146 components: - type: Transform pos: -109.5,-0.5 parent: 2 - - uid: 14676 + - uid: 15147 components: - type: Transform rot: -1.5707963267948966 rad pos: -109.5,1.5 parent: 2 - - uid: 14677 + - uid: 15148 components: - type: Transform rot: -1.5707963267948966 rad pos: -109.5,2.5 parent: 2 - - uid: 14678 + - uid: 15149 components: - type: Transform rot: -1.5707963267948966 rad pos: -109.5,3.5 parent: 2 - - uid: 14679 + - uid: 15150 components: - type: Transform rot: -1.5707963267948966 rad pos: -109.5,4.5 parent: 2 - - uid: 14680 + - uid: 15151 components: - type: Transform rot: -1.5707963267948966 rad pos: -109.5,5.5 parent: 2 - - uid: 14681 + - uid: 15152 components: - type: Transform rot: -1.5707963267948966 rad pos: -109.5,6.5 parent: 2 - - uid: 14682 + - uid: 15153 components: - type: Transform rot: -1.5707963267948966 rad pos: -109.5,7.5 parent: 2 - - uid: 14683 + - uid: 15154 components: - type: Transform rot: -1.5707963267948966 rad pos: -109.5,8.5 parent: 2 - - uid: 14684 + - uid: 15155 components: - type: Transform rot: -1.5707963267948966 rad pos: -109.5,9.5 parent: 2 - - uid: 14685 + - uid: 15156 components: - type: Transform rot: -1.5707963267948966 rad pos: -109.5,10.5 parent: 2 - - uid: 14686 + - uid: 15157 components: - type: Transform rot: -1.5707963267948966 rad pos: -109.5,11.5 parent: 2 - - uid: 14687 + - uid: 15158 components: - type: Transform rot: -1.5707963267948966 rad pos: -109.5,12.5 parent: 2 - - uid: 14688 + - uid: 15159 components: - type: Transform rot: -1.5707963267948966 rad pos: -109.5,13.5 parent: 2 - - uid: 14689 + - uid: 15160 components: - type: Transform rot: -1.5707963267948966 rad pos: -109.5,14.5 parent: 2 - - uid: 14690 + - uid: 15161 components: - type: Transform rot: -1.5707963267948966 rad pos: -108.5,14.5 parent: 2 - - uid: 14691 + - uid: 15162 components: - type: Transform rot: -1.5707963267948966 rad pos: -108.5,15.5 parent: 2 - - uid: 14692 + - uid: 15163 components: - type: Transform rot: -1.5707963267948966 rad pos: -108.5,16.5 parent: 2 - - uid: 14693 + - uid: 15164 components: - type: Transform rot: -1.5707963267948966 rad pos: -108.5,17.5 parent: 2 - - uid: 14694 + - uid: 15165 components: - type: Transform rot: -1.5707963267948966 rad pos: -108.5,18.5 parent: 2 - - uid: 14695 + - uid: 15166 components: - type: Transform rot: -1.5707963267948966 rad pos: -120.5,18.5 parent: 2 - - uid: 14696 + - uid: 15167 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.5,18.5 parent: 2 - - uid: 14697 + - uid: 15168 components: - type: Transform rot: -1.5707963267948966 rad pos: -109.5,18.5 parent: 2 - - uid: 14698 + - uid: 15169 components: - type: Transform pos: -113.5,18.5 parent: 2 - - uid: 14699 + - uid: 15170 components: - type: Transform rot: -1.5707963267948966 rad pos: -114.5,18.5 parent: 2 - - uid: 14700 + - uid: 15171 components: - type: Transform rot: -1.5707963267948966 rad pos: -115.5,18.5 parent: 2 - - uid: 14701 + - uid: 15172 components: - type: Transform rot: -1.5707963267948966 rad pos: -116.5,18.5 parent: 2 - - uid: 14702 + - uid: 15173 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.5,17.5 parent: 2 - - uid: 14703 + - uid: 15174 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.5,16.5 parent: 2 - - uid: 14704 + - uid: 15175 components: - type: Transform rot: -1.5707963267948966 rad pos: -122.5,16.5 parent: 2 - - uid: 14705 + - uid: 15176 components: - type: Transform rot: -1.5707963267948966 rad pos: -122.5,15.5 parent: 2 - - uid: 14706 + - uid: 15177 components: - type: Transform rot: -1.5707963267948966 rad pos: -122.5,14.5 parent: 2 - - uid: 14707 + - uid: 15178 components: - type: Transform rot: -1.5707963267948966 rad pos: -122.5,13.5 parent: 2 - - uid: 14708 + - uid: 15179 components: - type: Transform rot: -1.5707963267948966 rad pos: -122.5,12.5 parent: 2 - - uid: 14709 + - uid: 15180 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.5,12.5 parent: 2 - - uid: 14710 + - uid: 15181 components: - type: Transform rot: -1.5707963267948966 rad pos: -120.5,12.5 parent: 2 - - uid: 14711 + - uid: 15182 components: - type: Transform rot: -1.5707963267948966 rad pos: -119.5,12.5 parent: 2 - - uid: 14712 + - uid: 15183 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,12.5 parent: 2 - - uid: 14713 + - uid: 15184 components: - type: Transform rot: -1.5707963267948966 rad pos: -117.5,12.5 parent: 2 - - uid: 14714 + - uid: 15185 components: - type: Transform rot: -1.5707963267948966 rad pos: -116.5,12.5 parent: 2 - - uid: 14715 + - uid: 15186 components: - type: Transform rot: -1.5707963267948966 rad pos: -113.5,12.5 parent: 2 - - uid: 14716 + - uid: 15187 components: - type: Transform rot: -1.5707963267948966 rad pos: -112.5,12.5 parent: 2 - - uid: 14717 + - uid: 15188 components: - type: Transform rot: -1.5707963267948966 rad pos: -111.5,12.5 parent: 2 - - uid: 14718 + - uid: 15189 components: - type: Transform rot: -1.5707963267948966 rad pos: -110.5,12.5 parent: 2 - - uid: 14719 + - uid: 15190 components: - type: Transform rot: -1.5707963267948966 rad pos: -123.5,12.5 parent: 2 - - uid: 14720 + - uid: 15191 components: - type: Transform rot: -1.5707963267948966 rad pos: -123.5,11.5 parent: 2 - - uid: 14721 + - uid: 15192 components: - type: Transform pos: -124.5,12.5 parent: 2 - - uid: 14722 + - uid: 15193 components: - type: Transform rot: -1.5707963267948966 rad pos: -127.5,7.5 parent: 2 - - uid: 14723 + - uid: 15194 components: - type: Transform rot: -1.5707963267948966 rad pos: -127.5,8.5 parent: 2 - - uid: 14724 + - uid: 15195 components: - type: Transform rot: -1.5707963267948966 rad pos: -127.5,9.5 parent: 2 - - uid: 14725 + - uid: 15196 components: - type: Transform rot: -1.5707963267948966 rad pos: -127.5,10.5 parent: 2 - - uid: 14726 + - uid: 15197 components: - type: Transform rot: -1.5707963267948966 rad pos: -127.5,11.5 parent: 2 - - uid: 14727 + - uid: 15198 components: - type: Transform rot: -1.5707963267948966 rad pos: -126.5,12.5 parent: 2 - - uid: 14728 + - uid: 15199 components: - type: Transform rot: -1.5707963267948966 rad pos: -126.5,11.5 parent: 2 - - uid: 14729 + - uid: 15200 components: - type: Transform rot: -1.5707963267948966 rad pos: -128.5,7.5 parent: 2 - - uid: 14730 + - uid: 15201 components: - type: Transform rot: -1.5707963267948966 rad pos: -129.5,7.5 parent: 2 - - uid: 14731 + - uid: 15202 components: - type: Transform rot: 3.141592653589793 rad pos: -130.5,7.5 parent: 2 - - uid: 14732 + - uid: 15203 components: - type: Transform rot: -1.5707963267948966 rad pos: -130.5,6.5 parent: 2 - - uid: 14733 + - uid: 15204 components: - type: Transform rot: -1.5707963267948966 rad pos: -130.5,5.5 parent: 2 - - uid: 14734 + - uid: 15205 components: - type: Transform rot: -1.5707963267948966 rad pos: -130.5,4.5 parent: 2 - - uid: 14735 + - uid: 15206 components: - type: Transform rot: -1.5707963267948966 rad pos: -130.5,3.5 parent: 2 - - uid: 14736 + - uid: 15207 components: - type: Transform rot: -1.5707963267948966 rad pos: -130.5,2.5 parent: 2 - - uid: 14737 + - uid: 15208 components: - type: Transform rot: -1.5707963267948966 rad pos: -130.5,1.5 parent: 2 - - uid: 14738 + - uid: 15209 components: - type: Transform rot: -1.5707963267948966 rad pos: -129.5,1.5 parent: 2 - - uid: 14739 + - uid: 15210 components: - type: Transform rot: -1.5707963267948966 rad pos: -128.5,1.5 parent: 2 - - uid: 14740 + - uid: 15211 components: - type: Transform pos: -144.5,6.5 parent: 2 - - uid: 14741 + - uid: 15212 components: - type: Transform pos: -143.5,5.5 parent: 2 - - uid: 14742 + - uid: 15213 components: - type: Transform pos: -143.5,6.5 parent: 2 - - uid: 14743 + - uid: 15214 components: - type: Transform rot: -1.5707963267948966 rad pos: -104.5,-22.5 parent: 2 - - uid: 14744 + - uid: 15215 components: - type: Transform rot: -1.5707963267948966 rad pos: -105.5,-22.5 parent: 2 - - uid: 14745 + - uid: 15216 components: - type: Transform rot: -1.5707963267948966 rad pos: -106.5,-22.5 parent: 2 - - uid: 14746 + - uid: 15217 components: - type: Transform rot: -1.5707963267948966 rad pos: -107.5,-22.5 parent: 2 - - uid: 14747 + - uid: 15218 components: - type: Transform rot: -1.5707963267948966 rad pos: -108.5,-22.5 parent: 2 - - uid: 14748 + - uid: 15219 components: - type: Transform rot: -1.5707963267948966 rad pos: -109.5,-22.5 parent: 2 - - uid: 14749 + - uid: 15220 components: - type: Transform rot: -1.5707963267948966 rad pos: -110.5,-22.5 parent: 2 - - uid: 14750 + - uid: 15221 components: - type: Transform pos: -114.5,-22.5 parent: 2 - - uid: 14751 + - uid: 15222 components: - type: Transform rot: -1.5707963267948966 rad pos: -115.5,-22.5 parent: 2 - - uid: 14752 + - uid: 15223 components: - type: Transform rot: -1.5707963267948966 rad pos: -116.5,-22.5 parent: 2 - - uid: 14753 + - uid: 15224 components: - type: Transform rot: -1.5707963267948966 rad pos: -117.5,-22.5 parent: 2 - - uid: 14754 + - uid: 15225 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,-22.5 parent: 2 - - uid: 14755 + - uid: 15226 components: - type: Transform rot: -1.5707963267948966 rad pos: -119.5,-22.5 parent: 2 - - uid: 14756 + - uid: 15227 components: - type: Transform rot: -1.5707963267948966 rad pos: -120.5,-22.5 parent: 2 - - uid: 14757 + - uid: 15228 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.5,-22.5 parent: 2 - - uid: 14758 + - uid: 15229 components: - type: Transform rot: -1.5707963267948966 rad pos: -122.5,-22.5 parent: 2 - - uid: 14759 + - uid: 15230 components: - type: Transform rot: -1.5707963267948966 rad pos: -123.5,-22.5 parent: 2 - - uid: 14760 + - uid: 15231 components: - type: Transform rot: -1.5707963267948966 rad pos: -124.5,-22.5 parent: 2 - - uid: 14761 + - uid: 15232 components: - type: Transform rot: -1.5707963267948966 rad pos: -124.5,-21.5 parent: 2 - - uid: 14762 + - uid: 15233 components: - type: Transform rot: -1.5707963267948966 rad pos: -125.5,-21.5 parent: 2 - - uid: 14763 + - uid: 15234 components: - type: Transform rot: -1.5707963267948966 rad pos: -129.5,-21.5 parent: 2 - - uid: 14764 + - uid: 15235 components: - type: Transform rot: -1.5707963267948966 rad pos: -131.5,-21.5 parent: 2 - - uid: 14765 + - uid: 15236 components: - type: Transform rot: -1.5707963267948966 rad pos: -131.5,-17.5 parent: 2 - - uid: 14766 + - uid: 15237 components: - type: Transform rot: -1.5707963267948966 rad pos: -131.5,-15.5 parent: 2 - - uid: 14767 + - uid: 15238 components: - type: Transform rot: -1.5707963267948966 rad pos: -131.5,-16.5 parent: 2 - - uid: 14768 + - uid: 15239 components: - type: Transform rot: -1.5707963267948966 rad pos: -131.5,-14.5 parent: 2 - - uid: 14769 + - uid: 15240 components: - type: Transform rot: -1.5707963267948966 rad pos: -131.5,-10.5 parent: 2 - - uid: 14770 + - uid: 15241 components: - type: Transform rot: -1.5707963267948966 rad pos: -131.5,-9.5 parent: 2 - - uid: 14771 + - uid: 15242 components: - type: Transform rot: -1.5707963267948966 rad pos: -131.5,-8.5 parent: 2 - - uid: 14772 + - uid: 15243 components: - type: Transform pos: -148.5,-6.5 parent: 2 - - uid: 14773 + - uid: 15244 components: - type: Transform pos: -148.5,-7.5 parent: 2 - - uid: 14774 + - uid: 15245 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,-5.5 parent: 2 - - uid: 14775 + - uid: 15246 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-8.5 parent: 2 - - uid: 14776 + - uid: 15247 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,1.5 parent: 2 - - uid: 14777 + - uid: 15248 components: - type: Transform pos: -81.5,21.5 parent: 2 - - uid: 14778 + - uid: 15249 components: - type: Transform pos: -82.5,21.5 parent: 2 - - uid: 14779 + - uid: 15250 components: - type: Transform pos: -84.5,21.5 parent: 2 - - uid: 14780 + - uid: 15251 components: - type: Transform pos: -85.5,21.5 parent: 2 - - uid: 14781 + - uid: 15252 components: - type: Transform pos: -85.5,22.5 parent: 2 - - uid: 14782 + - uid: 15253 components: - type: Transform pos: -85.5,23.5 parent: 2 - - uid: 14783 + - uid: 15254 components: - type: Transform pos: -85.5,24.5 parent: 2 - - uid: 14784 + - uid: 15255 components: - type: Transform pos: -85.5,25.5 parent: 2 - - uid: 14785 + - uid: 15256 components: - type: Transform pos: -84.5,25.5 parent: 2 - - uid: 14786 + - uid: 15257 components: - type: Transform pos: -83.5,25.5 parent: 2 - - uid: 14787 + - uid: 15258 components: - type: Transform pos: -82.5,25.5 parent: 2 - - uid: 14788 + - uid: 15259 components: - type: Transform pos: -81.5,25.5 parent: 2 - - uid: 14789 + - uid: 15260 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,25.5 parent: 2 - - uid: 14790 + - uid: 15261 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,25.5 parent: 2 - - uid: 14791 + - uid: 15262 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,25.5 parent: 2 - - uid: 14792 + - uid: 15263 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,24.5 parent: 2 - - uid: 14793 + - uid: 15264 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,23.5 parent: 2 - - uid: 14794 + - uid: 15265 components: - type: Transform pos: -94.5,9.5 parent: 2 - - uid: 14795 + - uid: 15266 components: - type: Transform pos: -10.5,-8.5 parent: 2 - - uid: 14796 + - uid: 15267 components: - type: Transform pos: -9.5,-8.5 parent: 2 - - uid: 14797 + - uid: 15268 components: - type: Transform pos: -8.5,-8.5 parent: 2 - - uid: 14798 + - uid: 15269 components: - type: Transform pos: -8.5,-7.5 parent: 2 - - uid: 14799 + - uid: 15270 components: - type: Transform pos: -8.5,-6.5 parent: 2 - - uid: 14800 + - uid: 15271 components: - type: Transform pos: -8.5,-5.5 parent: 2 - - uid: 14801 + - uid: 15272 components: - type: Transform pos: -149.5,-6.5 parent: 2 - - uid: 14802 + - uid: 15273 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,0.5 parent: 2 - - uid: 14803 + - uid: 15274 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,0.5 parent: 2 - - uid: 14804 + - uid: 15275 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,0.5 parent: 2 - - uid: 14805 + - uid: 15276 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-1.5 parent: 2 - - uid: 14806 + - uid: 15277 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-2.5 parent: 2 - - uid: 14807 + - uid: 15278 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-3.5 parent: 2 - - uid: 14808 + - uid: 15279 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-0.5 parent: 2 - - uid: 14809 + - uid: 15280 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-4.5 parent: 2 - - uid: 14810 + - uid: 15281 components: - type: Transform pos: -56.5,-6.5 parent: 2 - - uid: 14811 + - uid: 15282 components: - type: Transform pos: -55.5,-6.5 parent: 2 - - uid: 14812 + - uid: 15283 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-7.5 parent: 2 - - uid: 14813 + - uid: 15284 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-4.5 parent: 2 - - uid: 14814 + - uid: 15285 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-5.5 parent: 2 - - uid: 14815 + - uid: 15286 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-6.5 parent: 2 - - uid: 14816 + - uid: 15287 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-7.5 parent: 2 - - uid: 14817 + - uid: 15288 components: - type: Transform pos: -109.5,0.5 parent: 2 - - uid: 14818 + - uid: 15289 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,2.5 parent: 2 - - uid: 14819 + - uid: 15290 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,3.5 parent: 2 - - uid: 14820 + - uid: 15291 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,4.5 parent: 2 - - uid: 14821 + - uid: 15292 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,5.5 parent: 2 - - uid: 14822 + - uid: 15293 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,6.5 parent: 2 - - uid: 14823 + - uid: 15294 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,6.5 parent: 2 - - uid: 14824 + - uid: 15295 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,6.5 parent: 2 - - uid: 14825 + - uid: 15296 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,6.5 parent: 2 - - uid: 14826 + - uid: 15297 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,6.5 parent: 2 - - uid: 14827 + - uid: 15298 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,6.5 parent: 2 - - uid: 14828 + - uid: 15299 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,6.5 parent: 2 - - uid: 14829 + - uid: 15300 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-1.5 parent: 2 - - uid: 14830 + - uid: 15301 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-0.5 parent: 2 - - uid: 14831 + - uid: 15302 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,0.5 parent: 2 - - uid: 14832 + - uid: 15303 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,1.5 parent: 2 - - uid: 14833 + - uid: 15304 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-8.5 parent: 2 - - uid: 14834 + - uid: 15305 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,0.5 parent: 2 - - uid: 14835 + - uid: 15306 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-7.5 parent: 2 - - uid: 14836 + - uid: 15307 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-12.5 parent: 2 - - uid: 14837 + - uid: 15308 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-11.5 parent: 2 - - uid: 14838 + - uid: 15309 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-13.5 parent: 2 - - uid: 14839 + - uid: 15310 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-14.5 parent: 2 - - uid: 14840 + - uid: 15311 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-15.5 parent: 2 - - uid: 14841 + - uid: 15312 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-12.5 parent: 2 - - uid: 14842 + - uid: 15313 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-14.5 parent: 2 - - uid: 14843 + - uid: 15314 components: - type: Transform pos: 6.5,-7.5 parent: 2 - - uid: 14844 + - uid: 15315 components: - type: Transform rot: 3.141592653589793 rad pos: -101.5,-25.5 parent: 2 - - uid: 14845 + - uid: 15316 components: - type: Transform pos: -101.5,-22.5 parent: 2 - - uid: 14846 + - uid: 15317 components: - type: Transform pos: -16.5,-13.5 parent: 2 - - uid: 14847 + - uid: 15318 components: - type: Transform pos: -11.5,-13.5 parent: 2 - - uid: 14848 + - uid: 15319 components: - type: Transform pos: -12.5,-13.5 parent: 2 - - uid: 14849 + - uid: 15320 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,16.5 parent: 2 - - uid: 14850 + - uid: 15321 components: - type: Transform pos: -16.5,-11.5 parent: 2 - - uid: 14851 + - uid: 15322 components: - type: Transform pos: -99.5,-25.5 parent: 2 - - uid: 14852 + - uid: 15323 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,-26.5 parent: 2 - - uid: 14853 + - uid: 15324 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,-27.5 parent: 2 - - uid: 14854 + - uid: 15325 components: - type: Transform rot: -1.5707963267948966 rad pos: -103.5,-27.5 parent: 2 - - uid: 14855 + - uid: 15326 components: - type: Transform rot: -1.5707963267948966 rad pos: -103.5,-26.5 parent: 2 - - uid: 14856 - components: - - type: Transform - pos: -61.5,-27.5 - parent: 2 - - uid: 14857 - components: - - type: Transform - pos: -58.5,-25.5 - parent: 2 - - uid: 14858 - components: - - type: Transform - pos: -58.5,-27.5 - parent: 2 - - uid: 14859 + - uid: 15327 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,12.5 parent: 2 - - uid: 14860 + - uid: 15328 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,13.5 parent: 2 - - uid: 14861 + - uid: 15329 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,12.5 parent: 2 - - uid: 14862 + - uid: 15330 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,13.5 parent: 2 - - uid: 14863 + - uid: 15331 components: - type: Transform pos: 7.5,-0.5 parent: 2 - - uid: 14864 + - uid: 15332 components: - type: Transform pos: 7.5,-1.5 parent: 2 - - uid: 14865 + - uid: 15333 components: - type: Transform pos: 7.5,-3.5 parent: 2 - - uid: 14866 + - uid: 15334 components: - type: Transform pos: 7.5,-5.5 parent: 2 - - uid: 14867 + - uid: 15335 components: - type: Transform pos: 7.5,-6.5 parent: 2 - - uid: 14868 + - uid: 15336 components: - type: Transform pos: 7.5,0.5 parent: 2 - - uid: 14869 + - uid: 15337 components: - type: Transform pos: 7.5,-7.5 parent: 2 - - uid: 14870 + - uid: 15338 components: - type: Transform pos: -60.5,12.5 parent: 2 - - uid: 14871 + - uid: 15339 components: - type: Transform pos: -56.5,12.5 parent: 2 - - uid: 14872 + - uid: 15340 components: - type: Transform pos: -4.5,-6.5 parent: 2 - - uid: 14873 + - uid: 15341 components: - type: Transform pos: -4.5,-5.5 parent: 2 - - uid: 14874 + - uid: 15342 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-24.5 parent: 2 - - uid: 14875 + - uid: 15343 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-26.5 parent: 2 - - uid: 14876 + - uid: 15344 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-26.5 parent: 2 - - uid: 14877 + - uid: 15345 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-26.5 parent: 2 - - uid: 14878 + - uid: 15346 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-26.5 parent: 2 - - uid: 14879 + - uid: 15347 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-25.5 parent: 2 - - uid: 14880 + - uid: 15348 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-24.5 parent: 2 - - uid: 14881 + - uid: 15349 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-23.5 parent: 2 - - uid: 14882 + - uid: 15350 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-23.5 parent: 2 - - uid: 14883 + - uid: 15351 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-27.5 parent: 2 - - uid: 14884 + - uid: 15352 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-27.5 parent: 2 - - uid: 14885 + - uid: 15353 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-28.5 parent: 2 - - uid: 14886 + - uid: 15354 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-28.5 parent: 2 - - uid: 14887 + - uid: 15355 components: - type: Transform pos: -66.5,2.5 parent: 2 - - uid: 14888 + - uid: 15356 components: - type: Transform pos: -138.5,1.5 parent: 2 - - uid: 14889 + - uid: 15357 components: - type: Transform pos: -138.5,0.5 parent: 2 - - uid: 14890 + - uid: 15358 components: - type: Transform pos: -138.5,5.5 parent: 2 - - uid: 14891 + - uid: 15359 components: - type: Transform pos: -134.5,-0.5 parent: 2 - - uid: 14892 + - uid: 15360 components: - type: Transform rot: 3.141592653589793 rad pos: -130.5,8.5 parent: 2 - - uid: 14893 + - uid: 15361 components: - type: Transform rot: 3.141592653589793 rad pos: -131.5,8.5 parent: 2 - - uid: 14894 + - uid: 15362 components: - type: Transform rot: 3.141592653589793 rad pos: -134.5,8.5 parent: 2 - - uid: 14895 + - uid: 15363 components: - type: Transform rot: 3.141592653589793 rad pos: -137.5,8.5 parent: 2 - - uid: 14896 + - uid: 15364 components: - type: Transform rot: 3.141592653589793 rad pos: -138.5,8.5 parent: 2 - - uid: 14897 + - uid: 15365 components: - type: Transform rot: 3.141592653589793 rad pos: -142.5,7.5 parent: 2 - - uid: 14898 + - uid: 15366 components: - type: Transform rot: 3.141592653589793 rad pos: -141.5,7.5 parent: 2 - - uid: 14899 + - uid: 15367 components: - type: Transform rot: 3.141592653589793 rad pos: -140.5,7.5 parent: 2 - - uid: 14900 + - uid: 15368 components: - type: Transform rot: 3.141592653589793 rad pos: -139.5,7.5 parent: 2 - - uid: 14901 + - uid: 15369 components: - type: Transform rot: 3.141592653589793 rad pos: -142.5,6.5 parent: 2 - - uid: 14902 - components: - - type: Transform - pos: -91.5,12.5 - parent: 2 - - uid: 14903 + - uid: 15370 components: - type: Transform pos: -60.5,-8.5 parent: 2 - - uid: 14904 + - uid: 15371 components: - type: Transform pos: -62.5,-8.5 parent: 2 - - uid: 14905 + - uid: 15372 components: - type: Transform pos: -86.5,-11.5 parent: 2 - - uid: 14906 + - uid: 15373 components: - type: Transform pos: -123.5,10.5 parent: 2 - - uid: 14907 + - uid: 15374 components: - type: Transform pos: -123.5,8.5 parent: 2 - - uid: 14908 + - uid: 15375 components: - type: Transform pos: -123.5,9.5 parent: 2 - - uid: 14909 + - uid: 15376 components: - type: Transform pos: -124.5,8.5 parent: 2 - - uid: 14910 + - uid: 15377 components: - type: Transform rot: -1.5707963267948966 rad pos: -126.5,8.5 parent: 2 - - uid: 14911 + - uid: 15378 components: - type: Transform rot: -1.5707963267948966 rad pos: -124.5,14.5 parent: 2 - - uid: 14912 + - uid: 15379 components: - type: Transform rot: -1.5707963267948966 rad pos: -126.5,14.5 parent: 2 - - uid: 14913 + - uid: 15380 components: - type: Transform rot: -1.5707963267948966 rad pos: -131.5,-7.5 parent: 2 - - uid: 14914 + - uid: 15381 components: - type: Transform pos: -99.5,-24.5 parent: 2 - - uid: 14915 + - uid: 15382 + components: + - type: Transform + pos: -145.5,-9.5 + parent: 2 + - uid: 15383 + components: + - type: Transform + pos: -143.5,-9.5 + parent: 2 + - uid: 15384 + components: + - type: Transform + pos: -138.5,-9.5 + parent: 2 + - uid: 15385 + components: + - type: Transform + pos: -136.5,-9.5 + parent: 2 + - uid: 15386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,13.5 + parent: 2 + - uid: 15387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,13.5 + parent: 2 + - uid: 15388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,14.5 + parent: 2 + - uid: 15389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,14.5 + parent: 2 + - uid: 15390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -93.5,4.5 + parent: 2 + - uid: 15391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -93.5,6.5 + parent: 2 + - uid: 15392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -93.5,5.5 + parent: 2 + - uid: 15393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -93.5,7.5 + parent: 2 + - uid: 15394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,7.5 + parent: 2 + - uid: 15395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,7.5 + parent: 2 + - uid: 15396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,2.5 + parent: 2 + - uid: 15397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,6.5 + parent: 2 + - uid: 15398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -129.5,4.5 + parent: 2 + - uid: 15399 + components: + - type: Transform + pos: -36.5,-17.5 + parent: 2 + - uid: 15400 + components: + - type: Transform + pos: -34.5,-17.5 + parent: 2 + - uid: 15401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-18.5 + parent: 2 + - uid: 15402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-21.5 + parent: 2 + - uid: 15403 + components: + - type: Transform + pos: -223.5,0.5 + parent: 2 + - uid: 15404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -222.5,0.5 + parent: 2 + - uid: 15405 + components: + - type: Transform + pos: -223.5,-0.5 + parent: 2 + - uid: 15406 + components: + - type: Transform + pos: -221.5,-0.5 + parent: 2 + - uid: 15407 + components: + - type: Transform + pos: -226.5,0.5 + parent: 2 + - uid: 15408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -225.5,-3.5 + parent: 2 + - uid: 15409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -225.5,-0.5 + parent: 2 + - uid: 15410 + components: + - type: Transform + pos: -225.5,1.5 + parent: 2 + - uid: 15411 + components: + - type: Transform + pos: -229.5,-18.5 + parent: 2 + - uid: 15412 + components: + - type: Transform + pos: -229.5,-17.5 + parent: 2 + - uid: 15413 + components: + - type: Transform + pos: -228.5,-18.5 + parent: 2 + - uid: 15414 + components: + - type: Transform + pos: -228.5,-15.5 + parent: 2 + - uid: 15415 + components: + - type: Transform + pos: -227.5,-19.5 + parent: 2 + - uid: 15416 + components: + - type: Transform + pos: -227.5,-18.5 + parent: 2 + - uid: 15417 + components: + - type: Transform + pos: -227.5,-15.5 + parent: 2 + - uid: 15418 + components: + - type: Transform + pos: -226.5,-15.5 + parent: 2 + - uid: 15419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -226.5,-4.5 + parent: 2 + - uid: 15420 + components: + - type: Transform + pos: -225.5,-12.5 + parent: 2 + - uid: 15421 + components: + - type: Transform + pos: -225.5,-10.5 + parent: 2 + - uid: 15422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -225.5,-9.5 + parent: 2 + - uid: 15423 + components: + - type: Transform + pos: -225.5,-6.5 + parent: 2 + - uid: 15424 + components: + - type: Transform + pos: -225.5,-5.5 + parent: 2 + - uid: 15425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -225.5,-4.5 + parent: 2 + - uid: 15426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -224.5,-18.5 + parent: 2 + - uid: 15427 + components: + - type: Transform + pos: -224.5,-15.5 + parent: 2 + - uid: 15428 + components: + - type: Transform + pos: -224.5,-12.5 + parent: 2 + - uid: 15429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -224.5,-9.5 + parent: 2 + - uid: 15430 + components: + - type: Transform + pos: -223.5,-18.5 + parent: 2 + - uid: 15431 + components: + - type: Transform + pos: -223.5,-15.5 + parent: 2 + - uid: 15432 + components: + - type: Transform + pos: -225.5,-11.5 + parent: 2 + - uid: 15433 + components: + - type: Transform + pos: -223.5,-12.5 + parent: 2 + - uid: 15434 + components: + - type: Transform + pos: -222.5,-18.5 + parent: 2 + - uid: 15435 + components: + - type: Transform + pos: -222.5,-17.5 + parent: 2 + - uid: 15436 + components: + - type: Transform + pos: -222.5,-16.5 + parent: 2 + - uid: 15437 + components: + - type: Transform + pos: -222.5,-15.5 + parent: 2 + - uid: 15438 + components: + - type: Transform + pos: -222.5,-14.5 + parent: 2 + - uid: 15439 + components: + - type: Transform + pos: -222.5,-13.5 + parent: 2 + - uid: 15440 + components: + - type: Transform + pos: -222.5,-12.5 + parent: 2 + - uid: 15441 + components: + - type: Transform + pos: -221.5,-17.5 + parent: 2 + - uid: 15442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -228.5,-35.5 + parent: 2 + - uid: 15443 + components: + - type: Transform + pos: -221.5,-14.5 + parent: 2 + - uid: 15444 + components: + - type: Transform + pos: -221.5,-12.5 + parent: 2 + - uid: 15445 components: - type: Transform - pos: -145.5,-9.5 + pos: -221.5,-11.5 parent: 2 - - uid: 14916 + - uid: 15446 components: - type: Transform - pos: -143.5,-9.5 + pos: -220.5,-14.5 parent: 2 - - uid: 14917 + - uid: 15447 components: - type: Transform - pos: -138.5,-9.5 + pos: -220.5,-11.5 parent: 2 - - uid: 14918 + - uid: 15448 components: - type: Transform - pos: -136.5,-9.5 + pos: -219.5,-11.5 parent: 2 - - uid: 14919 + - uid: 15449 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,13.5 + pos: -219.5,-10.5 parent: 2 - - uid: 14920 + - uid: 15450 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,13.5 + pos: -218.5,-18.5 parent: 2 - - uid: 14921 + - uid: 15451 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,14.5 + pos: -218.5,-15.5 parent: 2 - - uid: 14922 + - uid: 15452 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,14.5 + pos: -218.5,-14.5 parent: 2 - - uid: 14923 + - uid: 15453 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,4.5 + pos: -217.5,-18.5 parent: 2 - - uid: 14924 + - uid: 15454 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,6.5 + pos: -217.5,-15.5 parent: 2 - - uid: 14925 + - uid: 15455 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,5.5 + pos: -216.5,-18.5 parent: 2 - - uid: 14926 + - uid: 15456 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,7.5 + pos: -216.5,-15.5 parent: 2 - - uid: 14927 + - uid: 15457 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,7.5 + pos: -216.5,-14.5 parent: 2 - - uid: 14928 + - uid: 15458 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,7.5 + pos: -216.5,-13.5 parent: 2 - - uid: 14929 + - uid: 15459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -128.5,2.5 + rot: 1.5707963267948966 rad + pos: -227.5,-36.5 parent: 2 - - uid: 14930 + - uid: 15460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -128.5,6.5 + pos: -216.5,-11.5 parent: 2 - - uid: 14931 + - uid: 15461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -129.5,4.5 + rot: 1.5707963267948966 rad + pos: -226.5,-38.5 parent: 2 - - uid: 14932 + - uid: 15462 components: - type: Transform - pos: -36.5,-17.5 + rot: 1.5707963267948966 rad + pos: -226.5,-36.5 parent: 2 - - uid: 14933 + - uid: 15463 components: - type: Transform - pos: -34.5,-17.5 + pos: -223.5,-27.5 parent: 2 - - uid: 14934 + - uid: 15464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-18.5 + pos: -223.5,-26.5 parent: 2 - - uid: 14935 + - uid: 15465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-21.5 + pos: -223.5,-22.5 parent: 2 - - uid: 17123 + - uid: 15466 components: - type: Transform - pos: 15.5,-0.5 - parent: 17021 - - uid: 17124 + pos: -223.5,-21.5 + parent: 2 + - uid: 15467 components: - type: Transform - pos: 15.5,-6.5 - parent: 17021 - - uid: 17125 + pos: -222.5,-27.5 + parent: 2 + - uid: 15468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,0.5 - parent: 17021 - - uid: 17126 + pos: -222.5,-21.5 + parent: 2 + - uid: 15469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,0.5 - parent: 17021 - - uid: 17127 + pos: -221.5,-30.5 + parent: 2 + - uid: 15470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,0.5 - parent: 17021 - - uid: 17128 + pos: -221.5,-27.5 + parent: 2 + - uid: 15471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-6.5 - parent: 17021 - - uid: 17129 + pos: -220.5,-30.5 + parent: 2 + - uid: 15472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-5.5 - parent: 17021 - - uid: 17130 + pos: -220.5,-29.5 + parent: 2 + - uid: 15473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-7.5 - parent: 17021 - - uid: 17131 + pos: -220.5,-28.5 + parent: 2 + - uid: 15474 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-3.5 - parent: 17021 - - uid: 17132 + pos: -220.5,-27.5 + parent: 2 + - uid: 15475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-7.5 - parent: 17021 - - uid: 17133 + pos: -220.5,-21.5 + parent: 2 + - uid: 15476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-7.5 - parent: 17021 - - uid: 17134 + pos: -219.5,-32.5 + parent: 2 + - uid: 15477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-6.5 - parent: 17021 - - uid: 17135 + pos: -219.5,-30.5 + parent: 2 + - uid: 15478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 17021 - - uid: 17136 + pos: -218.5,-27.5 + parent: 2 + - uid: 15479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 17021 - - uid: 17137 + pos: -218.5,-21.5 + parent: 2 + - uid: 15480 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-5.5 - parent: 17021 - - uid: 17138 + pos: -218.5,-20.5 + parent: 2 + - uid: 15481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-0.5 - parent: 17021 - - uid: 17139 + pos: -217.5,-35.5 + parent: 2 + - uid: 15482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 17021 - - uid: 17140 + pos: -217.5,-34.5 + parent: 2 + - uid: 15483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-1.5 - parent: 17021 - - uid: 17141 + pos: -217.5,-30.5 + parent: 2 + - uid: 15484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 17021 -- proto: WallMiningDiagonal - entities: - - uid: 14936 + pos: -217.5,-28.5 + parent: 2 + - uid: 15485 components: - type: Transform - pos: -83.5,-0.5 + pos: -217.5,-27.5 parent: 2 - - uid: 14937 + - uid: 15486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,-6.5 + pos: -217.5,-26.5 parent: 2 - - uid: 14938 + - uid: 15487 components: - type: Transform - pos: -82.5,6.5 + pos: -217.5,-25.5 parent: 2 - - uid: 14939 + - uid: 15488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,-13.5 + pos: -217.5,-24.5 parent: 2 - - uid: 14940 + - uid: 15489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,-0.5 + pos: -217.5,-22.5 parent: 2 - - uid: 14941 + - uid: 15490 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,0.5 + pos: -217.5,-21.5 parent: 2 - - uid: 17142 + - uid: 15491 components: - type: Transform - pos: 10.5,0.5 - parent: 17021 - - uid: 17143 + pos: -216.5,-34.5 + parent: 2 + - uid: 15492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,0.5 - parent: 17021 - - uid: 17144 + pos: -216.5,-33.5 + parent: 2 + - uid: 15493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 17021 - - uid: 17145 + pos: -216.5,-31.5 + parent: 2 + - uid: 15494 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-7.5 - parent: 17021 - - uid: 17146 + pos: -216.5,-30.5 + parent: 2 + - uid: 15495 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-7.5 - parent: 17021 - - uid: 17147 + pos: -216.5,-26.5 + parent: 2 + - uid: 15496 components: - type: Transform - pos: 9.5,-0.5 - parent: 17021 -- proto: WallmountGeneratorAPUElectronics - entities: - - uid: 14942 + pos: -215.5,-34.5 + parent: 2 + - uid: 15497 components: - type: Transform - pos: -52.467556,-6.1952405 + pos: -215.5,-30.5 parent: 2 - - uid: 14943 + - uid: 15498 components: - type: Transform - pos: -52.498806,-7.585865 + pos: -215.5,-28.5 parent: 2 -- proto: WallmountSubstationElectronics - entities: - - uid: 14944 + - uid: 15499 components: - type: Transform - pos: -52.467556,-6.9139905 + pos: -214.5,-35.5 parent: 2 -- proto: WallmountTelescreen - entities: - - uid: 14945 + - uid: 15500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -155.5,-19.5 + pos: -214.5,-34.5 parent: 2 -- proto: WallmountTelevision - entities: - - uid: 14946 + - uid: 15501 components: - type: Transform - pos: -64.5,10.5 + pos: -214.5,-27.5 parent: 2 - - uid: 14947 + - uid: 15502 components: - type: Transform - pos: -73.5,-13.5 + pos: -214.5,-26.5 parent: 2 - - uid: 14948 + - uid: 15503 components: - type: Transform - pos: -152.5,-1.5 + pos: -213.5,-33.5 parent: 2 - - uid: 14949 + - uid: 15504 components: - type: Transform - pos: -202.5,-1.5 + pos: -213.5,-31.5 parent: 2 -- proto: WallReinforced - entities: - - uid: 14950 + - uid: 15505 components: - type: Transform - rot: 3.141592653589793 rad - pos: -179.5,-1.5 + pos: -231.5,-33.5 parent: 2 - - uid: 14951 + - uid: 15506 components: - type: Transform - rot: 3.141592653589793 rad - pos: -180.5,-1.5 + pos: -231.5,-31.5 parent: 2 - - uid: 14952 + - uid: 15507 components: - type: Transform - rot: 3.141592653589793 rad - pos: -180.5,3.5 + pos: -231.5,-25.5 parent: 2 - - uid: 14953 + - uid: 15508 components: - type: Transform - rot: 3.141592653589793 rad - pos: -180.5,-0.5 + pos: -231.5,-23.5 parent: 2 - - uid: 14954 + - uid: 15509 components: - type: Transform - pos: -3.5,-13.5 + pos: -230.5,-35.5 parent: 2 - - uid: 14955 + - uid: 15510 components: - type: Transform - pos: -3.5,-15.5 + pos: -230.5,-34.5 parent: 2 - - uid: 14956 + - uid: 15511 components: - type: Transform - pos: -3.5,-17.5 + pos: -230.5,-30.5 parent: 2 - - uid: 14957 + - uid: 15512 components: - type: Transform - pos: -3.5,-16.5 + pos: -230.5,-28.5 parent: 2 - - uid: 14958 + - uid: 15513 components: - type: Transform - pos: -4.5,-18.5 + pos: -230.5,-26.5 parent: 2 - - uid: 14959 + - uid: 15514 components: - type: Transform - pos: -168.5,-19.5 + pos: -230.5,-22.5 parent: 2 - - uid: 14960 + - uid: 15515 components: - type: Transform - pos: -178.5,10.5 + pos: -230.5,-20.5 parent: 2 - - uid: 14961 + - uid: 15516 components: - type: Transform - pos: -175.5,9.5 + pos: -229.5,-34.5 parent: 2 - - uid: 14962 + - uid: 15517 components: - type: Transform - pos: -175.5,10.5 + pos: -229.5,-30.5 parent: 2 - - uid: 14963 + - uid: 15518 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -176.5,12.5 + pos: -229.5,-26.5 parent: 2 - - uid: 14964 + - uid: 15519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -176.5,13.5 + pos: -229.5,-22.5 parent: 2 - - uid: 14965 + - uid: 15520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -176.5,11.5 + pos: -228.5,-34.5 parent: 2 - - uid: 14966 + - uid: 15521 components: - type: Transform - pos: -175.5,13.5 + pos: -228.5,-33.5 parent: 2 - - uid: 14967 + - uid: 15522 components: - type: Transform - pos: -151.5,-13.5 + pos: -228.5,-31.5 parent: 2 - - uid: 14968 + - uid: 15523 components: - type: Transform - pos: -151.5,-14.5 + pos: -228.5,-30.5 parent: 2 - - uid: 14969 + - uid: 15524 components: - type: Transform - pos: -151.5,-12.5 + pos: -228.5,-26.5 parent: 2 - - uid: 14970 + - uid: 15525 components: - type: Transform - pos: -151.5,-15.5 + pos: -228.5,-25.5 parent: 2 - - uid: 14971 + - uid: 15526 components: - type: Transform - pos: -151.5,-11.5 + pos: -228.5,-23.5 parent: 2 - - uid: 14972 + - uid: 15527 components: - type: Transform - pos: -151.5,-10.5 + pos: -228.5,-22.5 parent: 2 - - uid: 14973 + - uid: 15528 components: - type: Transform - pos: -170.5,-12.5 + pos: -227.5,-30.5 parent: 2 - - uid: 14974 + - uid: 15529 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -169.5,-8.5 + pos: -227.5,-29.5 parent: 2 - - uid: 14975 + - uid: 15530 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -170.5,-8.5 + pos: -227.5,-27.5 parent: 2 - - uid: 14976 + - uid: 15531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -169.5,-7.5 + pos: -227.5,-26.5 parent: 2 - - uid: 14977 + - uid: 15532 components: - type: Transform - rot: 3.141592653589793 rad - pos: -150.5,7.5 + pos: -227.5,-22.5 parent: 2 - - uid: 14978 + - uid: 15533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -210.5,10.5 + pos: -227.5,-21.5 parent: 2 - - uid: 14979 + - uid: 15534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -210.5,6.5 + pos: -226.5,-35.5 parent: 2 - - uid: 14980 + - uid: 15535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -210.5,1.5 + pos: -225.5,-35.5 parent: 2 - - uid: 14981 + - uid: 15536 components: - type: Transform - pos: -209.5,-0.5 + rot: 1.5707963267948966 rad + pos: -224.5,-32.5 parent: 2 - - uid: 14982 + - uid: 15537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -210.5,0.5 + pos: -224.5,-26.5 parent: 2 - - uid: 14983 + - uid: 15538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -208.5,-0.5 + pos: -224.5,-24.5 parent: 2 - - uid: 14984 + - uid: 15539 components: - type: Transform - pos: -210.5,-0.5 + pos: -224.5,-22.5 parent: 2 - - uid: 14985 + - uid: 15540 components: - type: Transform - pos: -80.5,-6.5 + rot: 1.5707963267948966 rad + pos: -228.5,-36.5 parent: 2 - - uid: 14986 + - uid: 15541 components: - type: Transform rot: 1.5707963267948966 rad - pos: -161.5,1.5 + pos: -222.5,-40.5 parent: 2 - - uid: 14987 + - uid: 15542 components: - type: Transform - pos: -181.5,5.5 + pos: -222.5,-37.5 parent: 2 - - uid: 14988 + - uid: 15543 components: - type: Transform - pos: -181.5,6.5 + rot: 1.5707963267948966 rad + pos: -220.5,-40.5 parent: 2 - - uid: 14989 + - uid: 15544 components: - type: Transform - pos: -180.5,8.5 + rot: -1.5707963267948966 rad + pos: -219.5,-40.5 parent: 2 - - uid: 14990 + - uid: 15545 components: - type: Transform rot: 1.5707963267948966 rad - pos: -159.5,1.5 + pos: -218.5,-40.5 parent: 2 - - uid: 14991 + - uid: 15546 components: - type: Transform - pos: -181.5,7.5 + pos: -217.5,-40.5 parent: 2 - - uid: 14992 + - uid: 15547 components: - type: Transform - pos: -181.5,8.5 + pos: -217.5,-39.5 parent: 2 - - uid: 14993 + - uid: 15548 components: - type: Transform - pos: -175.5,-14.5 + pos: -217.5,-38.5 parent: 2 - - uid: 14994 + - uid: 15549 components: - type: Transform - pos: -175.5,-12.5 + pos: -217.5,-37.5 parent: 2 - - uid: 14995 + - uid: 15550 components: - type: Transform - pos: -158.5,13.5 + pos: -216.5,-38.5 parent: 2 - - uid: 14996 + - uid: 15551 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -152.5,15.5 + pos: -215.5,-38.5 parent: 2 - - uid: 14997 + - uid: 15552 components: - type: Transform - pos: -165.5,-14.5 + pos: -215.5,-37.5 parent: 2 - - uid: 14998 + - uid: 15553 components: - type: Transform - pos: -164.5,-10.5 + pos: -214.5,-37.5 parent: 2 - - uid: 14999 + - uid: 15554 components: - type: Transform - pos: -165.5,-10.5 + pos: -214.5,-36.5 parent: 2 - - uid: 15000 + - uid: 17667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -165.5,-13.5 - parent: 2 - - uid: 15001 + pos: 15.5,-0.5 + parent: 17565 + - uid: 17668 components: - type: Transform - pos: -21.5,1.5 - parent: 2 - - uid: 15002 + pos: 15.5,-6.5 + parent: 17565 + - uid: 17669 components: - type: Transform - pos: -16.5,1.5 - parent: 2 - - uid: 15003 + rot: 1.5707963267948966 rad + pos: 11.5,0.5 + parent: 17565 + - uid: 17670 components: - type: Transform - pos: -145.5,1.5 - parent: 2 - - uid: 15004 + rot: 1.5707963267948966 rad + pos: 12.5,0.5 + parent: 17565 + - uid: 17671 components: - type: Transform - pos: -146.5,1.5 - parent: 2 - - uid: 15005 + rot: 1.5707963267948966 rad + pos: 13.5,0.5 + parent: 17565 + - uid: 17672 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,5.5 - parent: 2 - - uid: 15006 + pos: 10.5,-6.5 + parent: 17565 + - uid: 17673 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-13.5 - parent: 2 - - uid: 15007 + rot: 1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 17565 + - uid: 17674 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-13.5 - parent: 2 - - uid: 15008 + rot: 1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 17565 + - uid: 17675 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-13.5 - parent: 2 - - uid: 15009 + rot: 1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 17565 + - uid: 17676 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-13.5 - parent: 2 - - uid: 15010 + rot: -1.5707963267948966 rad + pos: 12.5,-7.5 + parent: 17565 + - uid: 17677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 17565 + - uid: 17678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-6.5 + parent: 17565 + - uid: 17679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 17565 + - uid: 17680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 17565 + - uid: 17681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 17565 + - uid: 17682 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-13.5 - parent: 2 - - uid: 15011 + rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 17565 + - uid: 17683 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-13.5 - parent: 2 - - uid: 15012 + rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 17565 + - uid: 17684 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-9.5 - parent: 2 - - uid: 15013 + rot: -1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 17565 + - uid: 17685 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-13.5 - parent: 2 - - uid: 15014 + rot: 1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 17565 +- proto: WallMiningDiagonal + entities: + - uid: 15555 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-13.5 + pos: -83.5,-0.5 parent: 2 - - uid: 15015 + - uid: 15556 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,1.5 + pos: -83.5,-6.5 parent: 2 - - uid: 15016 + - uid: 15557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,4.5 + pos: -82.5,6.5 parent: 2 - - uid: 15017 + - uid: 15558 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,1.5 + pos: -82.5,-13.5 parent: 2 - - uid: 15018 + - uid: 15559 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,3.5 + rot: -1.5707963267948966 rad + pos: -107.5,-0.5 parent: 2 - - uid: 15019 + - uid: 15560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,2.5 + rot: -1.5707963267948966 rad + pos: -108.5,0.5 parent: 2 - - uid: 15020 + - uid: 15561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,5.5 + rot: -1.5707963267948966 rad + pos: -223.5,1.5 parent: 2 - - uid: 15021 + - uid: 15562 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,1.5 + pos: -226.5,-0.5 parent: 2 - - uid: 15022 + - uid: 15563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,1.5 + pos: -226.5,1.5 parent: 2 - - uid: 15023 + - uid: 15564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,5.5 + pos: -230.5,-18.5 parent: 2 - - uid: 15024 + - uid: 15565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,5.5 + rot: 3.141592653589793 rad + pos: -213.5,-34.5 parent: 2 - - uid: 15025 + - uid: 15566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,5.5 + rot: -1.5707963267948966 rad + pos: -213.5,-30.5 parent: 2 - - uid: 15026 + - uid: 15567 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,5.5 + pos: -231.5,-34.5 parent: 2 - - uid: 15027 + - uid: 15568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,5.5 + pos: -231.5,-30.5 parent: 2 - - uid: 15028 + - uid: 15569 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,4.5 + pos: -231.5,-26.5 parent: 2 - - uid: 15029 + - uid: 15570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,2.5 + pos: -231.5,-22.5 parent: 2 - - uid: 15030 + - uid: 17686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,3.5 - parent: 2 - - uid: 15031 + pos: 10.5,0.5 + parent: 17565 + - uid: 17687 components: - type: Transform - pos: -15.5,-4.5 - parent: 2 - - uid: 15032 + rot: -1.5707963267948966 rad + pos: 14.5,0.5 + parent: 17565 + - uid: 17688 components: - type: Transform - pos: -15.5,-5.5 - parent: 2 - - uid: 15033 + rot: 1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 17565 + - uid: 17689 components: - type: Transform - pos: -15.5,-6.5 - parent: 2 - - uid: 15034 + rot: 3.141592653589793 rad + pos: 10.5,-7.5 + parent: 17565 + - uid: 17690 components: - type: Transform - pos: -19.5,-6.5 - parent: 2 - - uid: 15035 + rot: 3.141592653589793 rad + pos: 14.5,-7.5 + parent: 17565 + - uid: 17691 components: - type: Transform - pos: -20.5,-6.5 - parent: 2 - - uid: 15036 + pos: 9.5,-0.5 + parent: 17565 +- proto: WallmountGeneratorAPUElectronics + entities: + - uid: 15571 components: - type: Transform - pos: -21.5,-6.5 + pos: -52.467556,-6.1952405 parent: 2 - - uid: 15037 + - uid: 15572 components: - type: Transform - pos: -22.5,-6.5 + pos: -52.498806,-7.585865 parent: 2 - - uid: 15038 +- proto: WallmountSubstationElectronics + entities: + - uid: 15573 components: - type: Transform - pos: -22.5,-5.5 + pos: -52.467556,-6.9139905 parent: 2 - - uid: 15039 +- proto: WallmountTelescreen + entities: + - uid: 15574 components: - type: Transform - pos: -22.5,-4.5 + rot: -1.5707963267948966 rad + pos: -155.5,-19.5 parent: 2 - - uid: 15040 +- proto: WallmountTelevision + entities: + - uid: 15575 components: - type: Transform - pos: -22.5,-3.5 + pos: -64.5,10.5 parent: 2 - - uid: 15041 + - uid: 15576 components: - type: Transform - pos: -22.5,-2.5 + pos: -73.5,-13.5 parent: 2 - - uid: 15042 + - uid: 15577 components: - type: Transform - pos: -22.5,-1.5 + pos: -152.5,-1.5 parent: 2 - - uid: 15043 + - uid: 15578 components: - type: Transform - pos: -22.5,-0.5 + pos: -202.5,-1.5 parent: 2 - - uid: 15044 +- proto: WallReinforced + entities: + - uid: 15579 components: - type: Transform - pos: -22.5,0.5 + rot: -1.5707963267948966 rad + pos: -76.5,-4.5 parent: 2 - - uid: 15045 + - uid: 15580 components: - type: Transform - pos: -22.5,1.5 + rot: 3.141592653589793 rad + pos: -76.5,-2.5 parent: 2 - - uid: 15046 + - uid: 15581 components: - type: Transform - pos: -22.5,2.5 + rot: 1.5707963267948966 rad + pos: -219.5,-2.5 parent: 2 - - uid: 15047 + - uid: 15582 components: - type: Transform - pos: -15.5,2.5 + pos: -80.5,-6.5 parent: 2 - - uid: 15048 + - uid: 15583 components: - type: Transform - pos: -15.5,1.5 + pos: -74.5,-5.5 parent: 2 - - uid: 15049 + - uid: 15584 components: - type: Transform - pos: -15.5,0.5 + pos: -76.5,-5.5 parent: 2 - - uid: 15050 + - uid: 15585 components: - type: Transform - pos: -15.5,-0.5 + pos: -80.5,-0.5 parent: 2 - - uid: 15051 + - uid: 15586 components: - type: Transform - pos: -15.5,-1.5 + pos: -75.5,-5.5 parent: 2 - - uid: 15052 + - uid: 15587 components: - type: Transform - pos: -15.5,-2.5 + rot: 3.141592653589793 rad + pos: -179.5,-1.5 parent: 2 - - uid: 15053 + - uid: 15588 components: - type: Transform - pos: -23.5,9.5 + rot: 3.141592653589793 rad + pos: -180.5,-1.5 parent: 2 - - uid: 15054 + - uid: 15589 components: - type: Transform - pos: -23.5,8.5 + rot: 3.141592653589793 rad + pos: -180.5,3.5 parent: 2 - - uid: 15055 + - uid: 15590 components: - type: Transform - pos: -23.5,7.5 + rot: 3.141592653589793 rad + pos: -180.5,-0.5 parent: 2 - - uid: 15056 + - uid: 15591 components: - type: Transform - pos: -23.5,6.5 + pos: -3.5,-13.5 parent: 2 - - uid: 15057 + - uid: 15592 components: - type: Transform - pos: -22.5,6.5 + pos: -3.5,-15.5 parent: 2 - - uid: 15058 + - uid: 15593 components: - type: Transform - pos: -21.5,6.5 + pos: -3.5,-17.5 parent: 2 - - uid: 15059 + - uid: 15594 components: - type: Transform - pos: -20.5,6.5 + pos: -3.5,-16.5 parent: 2 - - uid: 15060 + - uid: 15595 components: - type: Transform - pos: -19.5,6.5 + pos: -4.5,-18.5 parent: 2 - - uid: 15061 + - uid: 15596 components: - type: Transform - pos: -18.5,6.5 + pos: -168.5,-19.5 parent: 2 - - uid: 15062 + - uid: 15597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,-37.5 + pos: -178.5,10.5 parent: 2 - - uid: 15063 + - uid: 15598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,-37.5 + pos: -175.5,9.5 parent: 2 - - uid: 15064 + - uid: 15599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,-34.5 + pos: -175.5,10.5 parent: 2 - - uid: 15065 + - uid: 15600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,-37.5 + rot: -1.5707963267948966 rad + pos: -176.5,12.5 parent: 2 - - uid: 15066 + - uid: 15601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,-35.5 + rot: -1.5707963267948966 rad + pos: -176.5,13.5 parent: 2 - - uid: 15067 + - uid: 15602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,-36.5 + rot: -1.5707963267948966 rad + pos: -176.5,11.5 parent: 2 - - uid: 15068 + - uid: 15603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,-33.5 + pos: -175.5,13.5 parent: 2 - - uid: 15069 + - uid: 15604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,-28.5 + pos: -151.5,-13.5 parent: 2 - - uid: 15070 + - uid: 15605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,-26.5 + pos: -151.5,-14.5 parent: 2 - - uid: 15071 + - uid: 15606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -150.5,1.5 + pos: -151.5,-12.5 parent: 2 - - uid: 15072 + - uid: 15607 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -150.5,2.5 + pos: -151.5,-15.5 parent: 2 - - uid: 15073 + - uid: 15608 components: - type: Transform - pos: -148.5,6.5 + pos: -151.5,-11.5 parent: 2 - - uid: 15074 + - uid: 15609 components: - type: Transform - pos: -149.5,6.5 + pos: -151.5,-10.5 parent: 2 - - uid: 15075 + - uid: 15610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -150.5,5.5 + pos: -170.5,-12.5 parent: 2 - - uid: 15076 + - uid: 15611 components: - type: Transform rot: -1.5707963267948966 rad - pos: -150.5,6.5 + pos: -169.5,-8.5 parent: 2 - - uid: 15077 + - uid: 15612 components: - type: Transform rot: -1.5707963267948966 rad - pos: -150.5,9.5 + pos: -170.5,-8.5 parent: 2 - - uid: 15078 + - uid: 15613 components: - type: Transform rot: -1.5707963267948966 rad - pos: -150.5,10.5 + pos: -169.5,-7.5 parent: 2 - - uid: 15079 + - uid: 15614 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -150.5,11.5 + rot: 3.141592653589793 rad + pos: -150.5,7.5 parent: 2 - - uid: 15080 + - uid: 15615 components: - type: Transform rot: -1.5707963267948966 rad - pos: -150.5,12.5 + pos: -210.5,10.5 parent: 2 - - uid: 15081 + - uid: 15616 components: - type: Transform rot: -1.5707963267948966 rad - pos: -150.5,13.5 + pos: -210.5,6.5 parent: 2 - - uid: 15082 + - uid: 15617 components: - type: Transform rot: -1.5707963267948966 rad - pos: -152.5,17.5 + pos: -210.5,1.5 parent: 2 - - uid: 15083 + - uid: 15618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -152.5,13.5 + pos: -209.5,-0.5 parent: 2 - - uid: 15084 + - uid: 15619 components: - type: Transform rot: -1.5707963267948966 rad - pos: -150.5,-8.5 + pos: -210.5,0.5 parent: 2 - - uid: 15085 + - uid: 15620 components: - type: Transform rot: -1.5707963267948966 rad - pos: -151.5,-9.5 + pos: -208.5,-0.5 parent: 2 - - uid: 15086 + - uid: 15621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -150.5,-9.5 + pos: -210.5,-0.5 parent: 2 - - uid: 15087 + - uid: 15622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -153.5,-9.5 + rot: 1.5707963267948966 rad + pos: -161.5,1.5 parent: 2 - - uid: 15088 + - uid: 15623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -152.5,-9.5 + pos: -181.5,5.5 parent: 2 - - uid: 15089 + - uid: 15624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -150.5,-7.5 + pos: -181.5,6.5 parent: 2 - - uid: 15090 + - uid: 15625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -150.5,-6.5 + pos: -180.5,8.5 parent: 2 - - uid: 15091 + - uid: 15626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -150.5,-5.5 + rot: 1.5707963267948966 rad + pos: -159.5,1.5 parent: 2 - - uid: 15092 + - uid: 15627 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -151.5,-5.5 + pos: -181.5,7.5 parent: 2 - - uid: 15093 + - uid: 15628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -152.5,-5.5 + pos: -181.5,8.5 parent: 2 - - uid: 15094 + - uid: 15629 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -153.5,-5.5 + pos: -175.5,-14.5 parent: 2 - - uid: 15095 + - uid: 15630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -154.5,-5.5 + pos: -175.5,-12.5 parent: 2 - - uid: 15096 + - uid: 15631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -150.5,0.5 + pos: -158.5,13.5 parent: 2 - - uid: 15097 + - uid: 15632 components: - type: Transform rot: -1.5707963267948966 rad - pos: -150.5,-0.5 + pos: -152.5,15.5 parent: 2 - - uid: 15098 + - uid: 15633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -150.5,-1.5 + pos: -165.5,-14.5 parent: 2 - - uid: 15099 + - uid: 15634 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -151.5,-1.5 + pos: -164.5,-10.5 parent: 2 - - uid: 15100 + - uid: 15635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -152.5,-1.5 + pos: -165.5,-10.5 parent: 2 - - uid: 15101 + - uid: 15636 components: - type: Transform rot: -1.5707963267948966 rad - pos: -153.5,-1.5 + pos: -165.5,-13.5 parent: 2 - - uid: 15102 + - uid: 15637 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -154.5,-1.5 + pos: -21.5,1.5 parent: 2 - - uid: 15103 + - uid: 15638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -154.5,0.5 + pos: -16.5,1.5 parent: 2 - - uid: 15104 + - uid: 15639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -154.5,2.5 + pos: -145.5,1.5 parent: 2 - - uid: 15105 + - uid: 15640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -153.5,2.5 + pos: -146.5,1.5 parent: 2 - - uid: 15106 + - uid: 15641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -152.5,2.5 + rot: 1.5707963267948966 rad + pos: -10.5,5.5 parent: 2 - - uid: 15107 + - uid: 15642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -158.5,18.5 + rot: 3.141592653589793 rad + pos: -6.5,-13.5 parent: 2 - - uid: 15108 + - uid: 15643 components: - type: Transform - pos: -157.5,18.5 + rot: 3.141592653589793 rad + pos: -5.5,-13.5 parent: 2 - - uid: 15109 + - uid: 15644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -158.5,17.5 + rot: 3.141592653589793 rad + pos: -8.5,-13.5 parent: 2 - - uid: 15110 + - uid: 15645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -159.5,17.5 + rot: 3.141592653589793 rad + pos: -7.5,-13.5 parent: 2 - - uid: 15111 + - uid: 15646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -160.5,17.5 + rot: 3.141592653589793 rad + pos: -4.5,-13.5 parent: 2 - - uid: 15112 + - uid: 15647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -161.5,17.5 + rot: 3.141592653589793 rad + pos: -2.5,-13.5 parent: 2 - - uid: 15113 + - uid: 15648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -162.5,13.5 + rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 2 + - uid: 15649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-13.5 parent: 2 - - uid: 15114 + - uid: 15650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -161.5,16.5 + rot: 3.141592653589793 rad + pos: -10.5,-13.5 parent: 2 - - uid: 15115 + - uid: 15651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -161.5,14.5 + rot: 1.5707963267948966 rad + pos: -7.5,1.5 parent: 2 - - uid: 15116 + - uid: 15652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -161.5,13.5 + rot: 1.5707963267948966 rad + pos: -11.5,4.5 parent: 2 - - uid: 15117 + - uid: 15653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -160.5,13.5 + rot: 1.5707963267948966 rad + pos: -10.5,1.5 parent: 2 - - uid: 15118 + - uid: 15654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -159.5,13.5 + rot: 1.5707963267948966 rad + pos: -11.5,3.5 parent: 2 - - uid: 15119 + - uid: 15655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -166.5,13.5 + rot: 1.5707963267948966 rad + pos: -11.5,2.5 parent: 2 - - uid: 15120 + - uid: 15656 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -167.5,13.5 + rot: 1.5707963267948966 rad + pos: -11.5,5.5 parent: 2 - - uid: 15121 + - uid: 15657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -174.5,1.5 + rot: 1.5707963267948966 rad + pos: -9.5,1.5 parent: 2 - - uid: 15122 + - uid: 15658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -174.5,0.5 + rot: 1.5707963267948966 rad + pos: -6.5,1.5 parent: 2 - - uid: 15123 + - uid: 15659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -174.5,-0.5 + rot: 1.5707963267948966 rad + pos: -9.5,5.5 parent: 2 - - uid: 15124 + - uid: 15660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -174.5,-1.5 + rot: 1.5707963267948966 rad + pos: -8.5,5.5 parent: 2 - - uid: 15125 + - uid: 15661 components: - type: Transform - pos: -167.5,14.5 + rot: 1.5707963267948966 rad + pos: -6.5,5.5 parent: 2 - - uid: 15126 + - uid: 15662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -174.5,8.5 + rot: 1.5707963267948966 rad + pos: -7.5,5.5 parent: 2 - - uid: 15127 + - uid: 15663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -174.5,7.5 + rot: 1.5707963267948966 rad + pos: -5.5,5.5 parent: 2 - - uid: 15128 + - uid: 15664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -174.5,2.5 + rot: 1.5707963267948966 rad + pos: -5.5,4.5 parent: 2 - - uid: 15129 + - uid: 15665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -170.5,-0.5 + rot: 1.5707963267948966 rad + pos: -5.5,2.5 parent: 2 - - uid: 15130 + - uid: 15666 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -170.5,-1.5 + rot: 1.5707963267948966 rad + pos: -5.5,3.5 parent: 2 - - uid: 15131 + - uid: 15667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -166.5,-0.5 + pos: -15.5,-4.5 parent: 2 - - uid: 15132 + - uid: 15668 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -166.5,-1.5 + pos: -15.5,-5.5 parent: 2 - - uid: 15133 + - uid: 15669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -162.5,-0.5 + pos: -15.5,-6.5 parent: 2 - - uid: 15134 + - uid: 15670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -162.5,-1.5 + pos: -19.5,-6.5 parent: 2 - - uid: 15135 + - uid: 15671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -162.5,1.5 + pos: -20.5,-6.5 parent: 2 - - uid: 15136 + - uid: 15672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -162.5,2.5 + pos: -21.5,-6.5 parent: 2 - - uid: 15137 + - uid: 15673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -158.5,1.5 + pos: -22.5,-6.5 parent: 2 - - uid: 15138 + - uid: 15674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -158.5,2.5 + pos: -22.5,-5.5 parent: 2 - - uid: 15139 + - uid: 15675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -158.5,-1.5 + pos: -22.5,-4.5 parent: 2 - - uid: 15140 + - uid: 15676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -162.5,0.5 + pos: -22.5,-3.5 parent: 2 - - uid: 15141 + - uid: 15677 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -151.5,6.5 + pos: -22.5,-2.5 parent: 2 - - uid: 15142 + - uid: 15678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -152.5,6.5 + pos: -22.5,-1.5 parent: 2 - - uid: 15143 + - uid: 15679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -153.5,6.5 + pos: -22.5,-0.5 parent: 2 - - uid: 15144 + - uid: 15680 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -154.5,6.5 + pos: -22.5,0.5 parent: 2 - - uid: 15145 + - uid: 15681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -155.5,6.5 + pos: -22.5,1.5 parent: 2 - - uid: 15146 + - uid: 15682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -156.5,6.5 + pos: -22.5,2.5 parent: 2 - - uid: 15147 + - uid: 15683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -161.5,11.5 + pos: -15.5,2.5 parent: 2 - - uid: 15148 + - uid: 15684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -161.5,12.5 + pos: -15.5,1.5 parent: 2 - - uid: 15149 + - uid: 15685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -158.5,12.5 + pos: -15.5,0.5 parent: 2 - - uid: 15150 + - uid: 15686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -155.5,12.5 + pos: -15.5,-0.5 parent: 2 - - uid: 15151 + - uid: 15687 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -153.5,12.5 + pos: -15.5,-1.5 parent: 2 - - uid: 15152 + - uid: 15688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -152.5,12.5 + pos: -15.5,-2.5 parent: 2 - - uid: 15153 + - uid: 15689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -151.5,12.5 + pos: -23.5,9.5 parent: 2 - - uid: 15154 + - uid: 15690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -159.5,6.5 + pos: -23.5,8.5 parent: 2 - - uid: 15155 + - uid: 15691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -160.5,6.5 + pos: -23.5,7.5 parent: 2 - - uid: 15156 + - uid: 15692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -161.5,6.5 + pos: -23.5,6.5 parent: 2 - - uid: 15157 + - uid: 15693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -162.5,6.5 + pos: -22.5,6.5 parent: 2 - - uid: 15158 + - uid: 15694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -162.5,7.5 + pos: -21.5,6.5 parent: 2 - - uid: 15159 + - uid: 15695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -162.5,8.5 + pos: -20.5,6.5 parent: 2 - - uid: 15160 + - uid: 15696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -161.5,8.5 + pos: -19.5,6.5 parent: 2 - - uid: 15161 + - uid: 15697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -161.5,9.5 + pos: -18.5,6.5 parent: 2 - - uid: 15162 + - uid: 15698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -166.5,6.5 + rot: 1.5707963267948966 rad + pos: -86.5,-37.5 parent: 2 - - uid: 15163 + - uid: 15699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -166.5,8.5 + rot: 1.5707963267948966 rad + pos: -85.5,-37.5 parent: 2 - - uid: 15164 + - uid: 15700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -167.5,8.5 + rot: 1.5707963267948966 rad + pos: -86.5,-34.5 parent: 2 - - uid: 15165 + - uid: 15701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -167.5,9.5 + rot: 1.5707963267948966 rad + pos: -84.5,-37.5 parent: 2 - - uid: 15166 + - uid: 15702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -167.5,11.5 + rot: 1.5707963267948966 rad + pos: -86.5,-35.5 parent: 2 - - uid: 15167 + - uid: 15703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -167.5,12.5 + rot: 1.5707963267948966 rad + pos: -86.5,-36.5 parent: 2 - - uid: 15168 + - uid: 15704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -168.5,8.5 + rot: 1.5707963267948966 rad + pos: -86.5,-33.5 parent: 2 - - uid: 15169 + - uid: 15705 components: - type: Transform - pos: -169.5,8.5 + rot: 1.5707963267948966 rad + pos: -81.5,-28.5 parent: 2 - - uid: 15170 + - uid: 15706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -169.5,7.5 + rot: 1.5707963267948966 rad + pos: -83.5,-26.5 parent: 2 - - uid: 15171 + - uid: 15707 components: - type: Transform rot: -1.5707963267948966 rad - pos: -172.5,7.5 + pos: -150.5,1.5 parent: 2 - - uid: 15172 + - uid: 15708 components: - type: Transform rot: -1.5707963267948966 rad - pos: -173.5,7.5 + pos: -150.5,2.5 parent: 2 - - uid: 15173 + - uid: 15709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -170.5,2.5 + pos: -148.5,6.5 parent: 2 - - uid: 15174 + - uid: 15710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -170.5,1.5 + pos: -149.5,6.5 parent: 2 - - uid: 15175 + - uid: 15711 components: - type: Transform rot: -1.5707963267948966 rad - pos: -166.5,2.5 + pos: -150.5,5.5 parent: 2 - - uid: 15176 + - uid: 15712 components: - type: Transform rot: -1.5707963267948966 rad - pos: -166.5,1.5 + pos: -150.5,6.5 parent: 2 - - uid: 15177 + - uid: 15713 components: - type: Transform rot: -1.5707963267948966 rad - pos: -65.5,-17.5 + pos: -150.5,9.5 parent: 2 - - uid: 15178 + - uid: 15714 components: - type: Transform rot: -1.5707963267948966 rad - pos: -66.5,-17.5 + pos: -150.5,10.5 parent: 2 - - uid: 15179 + - uid: 15715 components: - type: Transform rot: -1.5707963267948966 rad - pos: -67.5,-17.5 + pos: -150.5,11.5 parent: 2 - - uid: 15180 + - uid: 15716 components: - type: Transform rot: -1.5707963267948966 rad - pos: -68.5,-17.5 + pos: -150.5,12.5 parent: 2 - - uid: 15181 + - uid: 15717 components: - type: Transform rot: -1.5707963267948966 rad - pos: -69.5,-17.5 + pos: -150.5,13.5 parent: 2 - - uid: 15182 + - uid: 15718 components: - type: Transform rot: -1.5707963267948966 rad - pos: -69.5,-18.5 + pos: -152.5,17.5 parent: 2 - - uid: 15183 + - uid: 15719 components: - type: Transform rot: -1.5707963267948966 rad - pos: -69.5,-19.5 + pos: -152.5,13.5 parent: 2 - - uid: 15184 + - uid: 15720 components: - type: Transform rot: -1.5707963267948966 rad - pos: -69.5,-20.5 + pos: -150.5,-8.5 parent: 2 - - uid: 15185 + - uid: 15721 components: - type: Transform rot: -1.5707963267948966 rad - pos: -69.5,-21.5 + pos: -151.5,-9.5 parent: 2 - - uid: 15186 + - uid: 15722 components: - type: Transform rot: -1.5707963267948966 rad - pos: -68.5,-21.5 + pos: -150.5,-9.5 parent: 2 - - uid: 15187 + - uid: 15723 components: - type: Transform rot: -1.5707963267948966 rad - pos: -66.5,-21.5 + pos: -153.5,-9.5 parent: 2 - - uid: 15188 + - uid: 15724 components: - type: Transform rot: -1.5707963267948966 rad - pos: -65.5,-21.5 + pos: -152.5,-9.5 parent: 2 - - uid: 15189 + - uid: 15725 components: - type: Transform - rot: 3.141592653589793 rad - pos: -178.5,8.5 + rot: -1.5707963267948966 rad + pos: -150.5,-7.5 parent: 2 - - uid: 15190 + - uid: 15726 components: - type: Transform - pos: -155.5,-9.5 + rot: -1.5707963267948966 rad + pos: -150.5,-6.5 parent: 2 - - uid: 15191 + - uid: 15727 components: - type: Transform - pos: -156.5,-9.5 + rot: -1.5707963267948966 rad + pos: -150.5,-5.5 parent: 2 - - uid: 15192 + - uid: 15728 components: - type: Transform - pos: -157.5,-9.5 + rot: -1.5707963267948966 rad + pos: -151.5,-5.5 parent: 2 - - uid: 15193 + - uid: 15729 components: - type: Transform - pos: -159.5,-9.5 + rot: -1.5707963267948966 rad + pos: -152.5,-5.5 parent: 2 - - uid: 15194 + - uid: 15730 components: - type: Transform - pos: -159.5,-8.5 + rot: -1.5707963267948966 rad + pos: -153.5,-5.5 parent: 2 - - uid: 15195 + - uid: 15731 components: - type: Transform - pos: -159.5,-6.5 + rot: -1.5707963267948966 rad + pos: -154.5,-5.5 parent: 2 - - uid: 15196 + - uid: 15732 components: - type: Transform - pos: -159.5,-5.5 + rot: -1.5707963267948966 rad + pos: -150.5,0.5 parent: 2 - - uid: 15197 + - uid: 15733 components: - type: Transform - pos: -158.5,-5.5 + rot: -1.5707963267948966 rad + pos: -150.5,-0.5 parent: 2 - - uid: 15198 + - uid: 15734 components: - type: Transform - pos: -156.5,-10.5 + rot: -1.5707963267948966 rad + pos: -150.5,-1.5 parent: 2 - - uid: 15199 + - uid: 15735 components: - type: Transform - pos: -156.5,-11.5 + rot: -1.5707963267948966 rad + pos: -151.5,-1.5 parent: 2 - - uid: 15200 + - uid: 15736 components: - type: Transform - pos: -156.5,-12.5 + rot: -1.5707963267948966 rad + pos: -152.5,-1.5 parent: 2 - - uid: 15201 + - uid: 15737 components: - type: Transform - pos: -156.5,-13.5 + rot: -1.5707963267948966 rad + pos: -153.5,-1.5 parent: 2 - - uid: 15202 + - uid: 15738 components: - type: Transform - pos: -155.5,-13.5 + rot: -1.5707963267948966 rad + pos: -154.5,-1.5 parent: 2 - - uid: 15203 + - uid: 15739 components: - type: Transform - pos: -157.5,-13.5 + rot: -1.5707963267948966 rad + pos: -154.5,0.5 parent: 2 - - uid: 15204 + - uid: 15740 components: - type: Transform - pos: -159.5,-13.5 + rot: -1.5707963267948966 rad + pos: -154.5,2.5 parent: 2 - - uid: 15205 + - uid: 15741 components: - type: Transform - pos: -160.5,-13.5 + rot: -1.5707963267948966 rad + pos: -153.5,2.5 parent: 2 - - uid: 15206 + - uid: 15742 components: - type: Transform - pos: -160.5,-12.5 + rot: -1.5707963267948966 rad + pos: -152.5,2.5 parent: 2 - - uid: 15207 + - uid: 15743 components: - type: Transform - pos: -160.5,-11.5 + rot: -1.5707963267948966 rad + pos: -158.5,18.5 parent: 2 - - uid: 15208 + - uid: 15744 components: - type: Transform - pos: -160.5,-10.5 + pos: -157.5,18.5 parent: 2 - - uid: 15209 + - uid: 15745 components: - type: Transform - pos: -160.5,-9.5 + rot: -1.5707963267948966 rad + pos: -158.5,17.5 parent: 2 - - uid: 15210 + - uid: 15746 components: - type: Transform - pos: -152.5,-10.5 + rot: -1.5707963267948966 rad + pos: -159.5,17.5 parent: 2 - - uid: 15211 + - uid: 15747 components: - type: Transform - pos: -152.5,-11.5 + rot: -1.5707963267948966 rad + pos: -160.5,17.5 parent: 2 - - uid: 15212 + - uid: 15748 components: - type: Transform - pos: -152.5,-12.5 + rot: -1.5707963267948966 rad + pos: -161.5,17.5 parent: 2 - - uid: 15213 + - uid: 15749 components: - type: Transform - pos: -152.5,-13.5 + rot: -1.5707963267948966 rad + pos: -162.5,13.5 parent: 2 - - uid: 15214 + - uid: 15750 components: - type: Transform - pos: -153.5,-13.5 + rot: -1.5707963267948966 rad + pos: -161.5,16.5 parent: 2 - - uid: 15215 + - uid: 15751 components: - type: Transform - pos: -151.5,-19.5 + rot: -1.5707963267948966 rad + pos: -161.5,14.5 parent: 2 - - uid: 15216 + - uid: 15752 components: - type: Transform - pos: -151.5,-20.5 + rot: -1.5707963267948966 rad + pos: -161.5,13.5 parent: 2 - - uid: 15217 + - uid: 15753 components: - type: Transform - pos: -151.5,-21.5 + rot: -1.5707963267948966 rad + pos: -160.5,13.5 parent: 2 - - uid: 15218 + - uid: 15754 components: - type: Transform - pos: -151.5,-22.5 + rot: -1.5707963267948966 rad + pos: -159.5,13.5 parent: 2 - - uid: 15219 + - uid: 15755 components: - type: Transform - pos: -150.5,-18.5 + rot: -1.5707963267948966 rad + pos: -166.5,13.5 parent: 2 - - uid: 15220 + - uid: 15756 components: - type: Transform - pos: -150.5,-17.5 + rot: -1.5707963267948966 rad + pos: -167.5,13.5 parent: 2 - - uid: 15221 + - uid: 15757 components: - type: Transform - pos: -151.5,-23.5 + rot: -1.5707963267948966 rad + pos: -174.5,1.5 parent: 2 - - uid: 15222 + - uid: 15758 components: - type: Transform - pos: -151.5,-24.5 + rot: -1.5707963267948966 rad + pos: -174.5,0.5 parent: 2 - - uid: 15223 + - uid: 15759 components: - type: Transform - pos: -151.5,-25.5 + rot: -1.5707963267948966 rad + pos: -174.5,-0.5 parent: 2 - - uid: 15224 + - uid: 15760 components: - type: Transform - pos: -151.5,-26.5 + rot: -1.5707963267948966 rad + pos: -174.5,-1.5 parent: 2 - - uid: 15225 + - uid: 15761 components: - type: Transform - pos: -152.5,-26.5 + pos: -167.5,14.5 parent: 2 - - uid: 15226 + - uid: 15762 components: - type: Transform - pos: -154.5,-26.5 + rot: -1.5707963267948966 rad + pos: -174.5,8.5 parent: 2 - - uid: 15227 + - uid: 15763 components: - type: Transform - pos: -155.5,-26.5 + rot: -1.5707963267948966 rad + pos: -174.5,7.5 parent: 2 - - uid: 15228 + - uid: 15764 components: - type: Transform - pos: -156.5,-26.5 + rot: -1.5707963267948966 rad + pos: -174.5,2.5 parent: 2 - - uid: 15229 + - uid: 15765 components: - type: Transform - pos: -158.5,-26.5 + rot: -1.5707963267948966 rad + pos: -170.5,-0.5 parent: 2 - - uid: 15230 + - uid: 15766 components: - type: Transform - pos: -159.5,-26.5 + rot: -1.5707963267948966 rad + pos: -170.5,-1.5 parent: 2 - - uid: 15231 + - uid: 15767 components: - type: Transform - pos: -160.5,-26.5 + rot: -1.5707963267948966 rad + pos: -166.5,-0.5 parent: 2 - - uid: 15232 + - uid: 15768 components: - type: Transform - pos: -161.5,-26.5 + rot: -1.5707963267948966 rad + pos: -166.5,-1.5 parent: 2 - - uid: 15233 + - uid: 15769 components: - type: Transform - pos: -162.5,-26.5 + rot: -1.5707963267948966 rad + pos: -162.5,-0.5 parent: 2 - - uid: 15234 + - uid: 15770 components: - type: Transform - pos: -166.5,-26.5 + rot: -1.5707963267948966 rad + pos: -162.5,-1.5 parent: 2 - - uid: 15235 + - uid: 15771 components: - type: Transform - pos: -167.5,-26.5 + rot: -1.5707963267948966 rad + pos: -162.5,1.5 parent: 2 - - uid: 15236 + - uid: 15772 components: - type: Transform - pos: -168.5,-26.5 + rot: -1.5707963267948966 rad + pos: -162.5,2.5 parent: 2 - - uid: 15237 + - uid: 15773 components: - type: Transform - pos: -168.5,-20.5 + rot: -1.5707963267948966 rad + pos: -158.5,1.5 parent: 2 - - uid: 15238 + - uid: 15774 components: - type: Transform - pos: -168.5,-18.5 + rot: -1.5707963267948966 rad + pos: -158.5,2.5 parent: 2 - - uid: 15239 + - uid: 15775 components: - type: Transform - pos: -170.5,-26.5 + rot: -1.5707963267948966 rad + pos: -158.5,-1.5 parent: 2 - - uid: 15240 + - uid: 15776 components: - type: Transform - pos: -170.5,-23.5 + rot: -1.5707963267948966 rad + pos: -162.5,0.5 parent: 2 - - uid: 15241 + - uid: 15777 components: - type: Transform - pos: -170.5,-21.5 + rot: -1.5707963267948966 rad + pos: -151.5,6.5 parent: 2 - - uid: 15242 + - uid: 15778 components: - type: Transform - pos: -170.5,-20.5 + rot: -1.5707963267948966 rad + pos: -152.5,6.5 parent: 2 - - uid: 15243 + - uid: 15779 components: - type: Transform - pos: -168.5,-17.5 + rot: -1.5707963267948966 rad + pos: -153.5,6.5 parent: 2 - - uid: 15244 + - uid: 15780 components: - type: Transform - pos: -168.5,-16.5 + rot: -1.5707963267948966 rad + pos: -154.5,6.5 parent: 2 - - uid: 15245 + - uid: 15781 components: - type: Transform - pos: -167.5,-16.5 + rot: -1.5707963267948966 rad + pos: -155.5,6.5 parent: 2 - - uid: 15246 + - uid: 15782 components: - type: Transform - pos: -164.5,-16.5 + rot: -1.5707963267948966 rad + pos: -156.5,6.5 parent: 2 - - uid: 15247 + - uid: 15783 components: - type: Transform - pos: -163.5,-16.5 + rot: -1.5707963267948966 rad + pos: -161.5,11.5 parent: 2 - - uid: 15248 + - uid: 15784 components: - type: Transform - pos: -162.5,-16.5 + rot: -1.5707963267948966 rad + pos: -161.5,12.5 parent: 2 - - uid: 15249 + - uid: 15785 components: - type: Transform - pos: -161.5,-16.5 + rot: -1.5707963267948966 rad + pos: -158.5,12.5 parent: 2 - - uid: 15250 + - uid: 15786 components: - type: Transform - pos: -160.5,-16.5 + rot: -1.5707963267948966 rad + pos: -155.5,12.5 parent: 2 - - uid: 15251 + - uid: 15787 components: - type: Transform - pos: -163.5,-15.5 + rot: -1.5707963267948966 rad + pos: -153.5,12.5 parent: 2 - - uid: 15252 + - uid: 15788 components: - type: Transform - pos: -160.5,-14.5 + rot: -1.5707963267948966 rad + pos: -152.5,12.5 parent: 2 - - uid: 15253 + - uid: 15789 components: - type: Transform - pos: -160.5,-5.5 + rot: -1.5707963267948966 rad + pos: -151.5,12.5 parent: 2 - - uid: 15254 + - uid: 15790 components: - type: Transform - pos: -165.5,-5.5 + rot: -1.5707963267948966 rad + pos: -159.5,6.5 parent: 2 - - uid: 15255 + - uid: 15791 components: - type: Transform - pos: -164.5,-5.5 + rot: -1.5707963267948966 rad + pos: -160.5,6.5 parent: 2 - - uid: 15256 + - uid: 15792 components: - type: Transform - pos: -163.5,-5.5 + rot: -1.5707963267948966 rad + pos: -161.5,6.5 parent: 2 - - uid: 15257 + - uid: 15793 components: - type: Transform - pos: -167.5,-6.5 + rot: -1.5707963267948966 rad + pos: -162.5,6.5 parent: 2 - - uid: 15258 + - uid: 15794 components: - type: Transform - pos: -168.5,-6.5 + rot: -1.5707963267948966 rad + pos: -162.5,7.5 parent: 2 - - uid: 15259 + - uid: 15795 components: - type: Transform - pos: -169.5,-6.5 + rot: -1.5707963267948966 rad + pos: -162.5,8.5 parent: 2 - - uid: 15260 + - uid: 15796 components: - type: Transform - pos: -170.5,-6.5 + rot: -1.5707963267948966 rad + pos: -161.5,8.5 parent: 2 - - uid: 15261 + - uid: 15797 components: - type: Transform - pos: -166.5,-6.5 + rot: -1.5707963267948966 rad + pos: -161.5,9.5 parent: 2 - - uid: 15262 + - uid: 15798 components: - type: Transform - pos: -171.5,-10.5 + rot: -1.5707963267948966 rad + pos: -166.5,6.5 parent: 2 - - uid: 15263 + - uid: 15799 components: - type: Transform - pos: -171.5,-11.5 + rot: -1.5707963267948966 rad + pos: -166.5,8.5 parent: 2 - - uid: 15264 + - uid: 15800 components: - type: Transform - pos: -171.5,-12.5 + rot: -1.5707963267948966 rad + pos: -167.5,8.5 parent: 2 - - uid: 15265 + - uid: 15801 components: - type: Transform - pos: -169.5,-14.5 + rot: -1.5707963267948966 rad + pos: -167.5,9.5 parent: 2 - - uid: 15266 + - uid: 15802 components: - type: Transform - pos: -164.5,-14.5 + rot: -1.5707963267948966 rad + pos: -167.5,11.5 parent: 2 - - uid: 15267 + - uid: 15803 components: - type: Transform - pos: -163.5,-14.5 + rot: -1.5707963267948966 rad + pos: -167.5,12.5 parent: 2 - - uid: 15268 + - uid: 15804 components: - type: Transform - pos: -162.5,-14.5 + rot: -1.5707963267948966 rad + pos: -168.5,8.5 parent: 2 - - uid: 15269 + - uid: 15805 components: - type: Transform - pos: -161.5,-14.5 + pos: -169.5,8.5 parent: 2 - - uid: 15270 + - uid: 15806 components: - type: Transform - pos: -162.5,-10.5 + rot: -1.5707963267948966 rad + pos: -169.5,7.5 parent: 2 - - uid: 15271 + - uid: 15807 components: - type: Transform - pos: -161.5,-10.5 + rot: -1.5707963267948966 rad + pos: -172.5,7.5 parent: 2 - - uid: 15272 + - uid: 15808 components: - type: Transform - pos: -165.5,-7.5 + rot: -1.5707963267948966 rad + pos: -173.5,7.5 parent: 2 - - uid: 15273 + - uid: 15809 components: - type: Transform - pos: -165.5,-6.5 + rot: -1.5707963267948966 rad + pos: -170.5,2.5 parent: 2 - - uid: 15274 + - uid: 15810 components: - type: Transform - rot: 3.141592653589793 rad - pos: -175.5,8.5 + rot: -1.5707963267948966 rad + pos: -170.5,1.5 parent: 2 - - uid: 15275 + - uid: 15811 components: - type: Transform rot: -1.5707963267948966 rad - pos: -179.5,4.5 + pos: -166.5,2.5 parent: 2 - - uid: 15276 + - uid: 15812 components: - type: Transform - rot: 3.141592653589793 rad - pos: -176.5,8.5 + rot: -1.5707963267948966 rad + pos: -166.5,1.5 parent: 2 - - uid: 15277 + - uid: 15813 components: - type: Transform - rot: 3.141592653589793 rad - pos: -177.5,8.5 + rot: -1.5707963267948966 rad + pos: -65.5,-17.5 parent: 2 - - uid: 15278 + - uid: 15814 components: - type: Transform - pos: -175.5,-10.5 + rot: -1.5707963267948966 rad + pos: -66.5,-17.5 parent: 2 - - uid: 15279 + - uid: 15815 components: - type: Transform - pos: -175.5,-11.5 + rot: -1.5707963267948966 rad + pos: -67.5,-17.5 parent: 2 - - uid: 15280 + - uid: 15816 components: - type: Transform - pos: -175.5,-15.5 + rot: -1.5707963267948966 rad + pos: -68.5,-17.5 parent: 2 - - uid: 15281 + - uid: 15817 components: - type: Transform - pos: -175.5,-16.5 + rot: -1.5707963267948966 rad + pos: -69.5,-17.5 parent: 2 - - uid: 15282 + - uid: 15818 components: - type: Transform - pos: -175.5,-21.5 + rot: -1.5707963267948966 rad + pos: -69.5,-18.5 parent: 2 - - uid: 15283 + - uid: 15819 components: - type: Transform - pos: -171.5,-15.5 + rot: -1.5707963267948966 rad + pos: -69.5,-19.5 parent: 2 - - uid: 15284 + - uid: 15820 components: - type: Transform - pos: -171.5,-17.5 + rot: -1.5707963267948966 rad + pos: -69.5,-20.5 parent: 2 - - uid: 15285 + - uid: 15821 components: - type: Transform - pos: -170.5,-14.5 + rot: -1.5707963267948966 rad + pos: -69.5,-21.5 parent: 2 - - uid: 15286 + - uid: 15822 components: - type: Transform - pos: -170.5,-17.5 + rot: -1.5707963267948966 rad + pos: -68.5,-21.5 parent: 2 - - uid: 15287 + - uid: 15823 components: - type: Transform - pos: -180.5,-5.5 + rot: -1.5707963267948966 rad + pos: -66.5,-21.5 parent: 2 - - uid: 15288 + - uid: 15824 components: - type: Transform - pos: -176.5,-21.5 + rot: -1.5707963267948966 rad + pos: -65.5,-21.5 parent: 2 - - uid: 15289 + - uid: 15825 components: - type: Transform - pos: -177.5,-21.5 + rot: 3.141592653589793 rad + pos: -178.5,8.5 parent: 2 - - uid: 15290 + - uid: 15826 components: - type: Transform - pos: -178.5,-21.5 + pos: -155.5,-9.5 parent: 2 - - uid: 15291 + - uid: 15827 components: - type: Transform - pos: -179.5,-21.5 + pos: -156.5,-9.5 parent: 2 - - uid: 15292 + - uid: 15828 components: - type: Transform - pos: -179.5,-20.5 + pos: -157.5,-9.5 parent: 2 - - uid: 15293 + - uid: 15829 components: - type: Transform - pos: -179.5,-18.5 + pos: -159.5,-9.5 parent: 2 - - uid: 15294 + - uid: 15830 components: - type: Transform - pos: -179.5,-14.5 + pos: -159.5,-8.5 parent: 2 - - uid: 15295 + - uid: 15831 components: - type: Transform - pos: -179.5,-12.5 + pos: -159.5,-6.5 parent: 2 - - uid: 15296 + - uid: 15832 components: - type: Transform - pos: -179.5,-11.5 + pos: -159.5,-5.5 parent: 2 - - uid: 15297 + - uid: 15833 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -179.5,-10.5 + pos: -158.5,-5.5 parent: 2 - - uid: 15298 + - uid: 15834 components: - type: Transform - pos: -179.5,-6.5 + pos: -156.5,-10.5 parent: 2 - - uid: 15299 + - uid: 15835 components: - type: Transform - pos: -179.5,-5.5 + pos: -156.5,-11.5 parent: 2 - - uid: 15300 + - uid: 15836 components: - type: Transform - pos: -181.5,-5.5 + pos: -156.5,-12.5 parent: 2 - - uid: 15301 + - uid: 15837 components: - type: Transform - pos: -182.5,-5.5 + pos: -156.5,-13.5 parent: 2 - - uid: 15302 + - uid: 15838 components: - type: Transform - pos: -186.5,-5.5 + pos: -155.5,-13.5 parent: 2 - - uid: 15303 + - uid: 15839 components: - type: Transform - pos: -190.5,-5.5 + pos: -157.5,-13.5 parent: 2 - - uid: 15304 + - uid: 15840 components: - type: Transform - pos: -191.5,-5.5 + pos: -159.5,-13.5 parent: 2 - - uid: 15305 + - uid: 15841 components: - type: Transform - pos: -192.5,-5.5 + pos: -160.5,-13.5 parent: 2 - - uid: 15306 + - uid: 15842 components: - type: Transform - pos: -193.5,-5.5 + pos: -160.5,-12.5 parent: 2 - - uid: 15307 + - uid: 15843 components: - type: Transform - pos: -193.5,-6.5 + pos: -160.5,-11.5 parent: 2 - - uid: 15308 + - uid: 15844 components: - type: Transform - pos: -198.5,-5.5 + pos: -160.5,-10.5 parent: 2 - - uid: 15309 + - uid: 15845 components: - type: Transform - pos: -193.5,-12.5 + pos: -160.5,-9.5 parent: 2 - - uid: 15310 + - uid: 15846 components: - type: Transform - pos: -193.5,-11.5 + pos: -152.5,-10.5 parent: 2 - - uid: 15311 + - uid: 15847 components: - type: Transform - pos: -193.5,-10.5 + pos: -152.5,-11.5 parent: 2 - - uid: 15312 + - uid: 15848 components: - type: Transform - pos: -193.5,-14.5 + pos: -152.5,-12.5 parent: 2 - - uid: 15313 + - uid: 15849 components: - type: Transform - pos: -193.5,-18.5 + pos: -152.5,-13.5 parent: 2 - - uid: 15314 + - uid: 15850 components: - type: Transform - pos: -193.5,-20.5 + pos: -153.5,-13.5 parent: 2 - - uid: 15315 + - uid: 15851 components: - type: Transform - pos: -193.5,-21.5 + pos: -151.5,-19.5 parent: 2 - - uid: 15316 + - uid: 15852 components: - type: Transform - pos: -194.5,-21.5 + pos: -151.5,-20.5 parent: 2 - - uid: 15317 + - uid: 15853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -195.5,-21.5 + pos: -151.5,-21.5 parent: 2 - - uid: 15318 + - uid: 15854 components: - type: Transform - pos: -196.5,-21.5 + pos: -151.5,-22.5 parent: 2 - - uid: 15319 + - uid: 15855 components: - type: Transform - pos: -197.5,-21.5 + pos: -150.5,-18.5 parent: 2 - - uid: 15320 + - uid: 15856 components: - type: Transform - pos: -197.5,-20.5 + pos: -150.5,-17.5 parent: 2 - - uid: 15321 + - uid: 15857 components: - type: Transform - pos: -197.5,-18.5 + pos: -151.5,-23.5 parent: 2 - - uid: 15322 + - uid: 15858 components: - type: Transform - pos: -197.5,-14.5 + pos: -151.5,-24.5 parent: 2 - - uid: 15323 + - uid: 15859 components: - type: Transform - pos: -197.5,-12.5 + pos: -151.5,-25.5 parent: 2 - - uid: 15324 + - uid: 15860 components: - type: Transform - pos: -197.5,-11.5 + pos: -151.5,-26.5 parent: 2 - - uid: 15325 + - uid: 15861 components: - type: Transform - pos: -197.5,-10.5 + pos: -152.5,-26.5 parent: 2 - - uid: 15326 + - uid: 15862 components: - type: Transform - pos: -197.5,-9.5 + pos: -154.5,-26.5 parent: 2 - - uid: 15327 + - uid: 15863 components: - type: Transform - pos: -197.5,-8.5 + pos: -155.5,-26.5 parent: 2 - - uid: 15328 + - uid: 15864 components: - type: Transform - pos: -197.5,-7.5 + pos: -156.5,-26.5 parent: 2 - - uid: 15329 + - uid: 15865 components: - type: Transform - pos: -197.5,-6.5 + pos: -158.5,-26.5 parent: 2 - - uid: 15330 + - uid: 15866 components: - type: Transform - pos: -197.5,-5.5 + pos: -159.5,-26.5 parent: 2 - - uid: 15331 + - uid: 15867 components: - type: Transform - pos: -199.5,-5.5 + pos: -160.5,-26.5 parent: 2 - - uid: 15332 + - uid: 15868 components: - type: Transform - pos: -200.5,-5.5 + pos: -161.5,-26.5 parent: 2 - - uid: 15333 + - uid: 15869 components: - type: Transform - pos: -211.5,-6.5 + pos: -162.5,-26.5 parent: 2 - - uid: 15334 + - uid: 15870 components: - type: Transform - pos: -211.5,-5.5 + pos: -166.5,-26.5 parent: 2 - - uid: 15335 + - uid: 15871 components: - type: Transform - pos: -210.5,-5.5 + pos: -167.5,-26.5 parent: 2 - - uid: 15336 + - uid: 15872 components: - type: Transform - pos: -209.5,-5.5 + pos: -168.5,-26.5 parent: 2 - - uid: 15337 + - uid: 15873 components: - type: Transform - pos: -208.5,-5.5 + pos: -168.5,-20.5 parent: 2 - - uid: 15338 + - uid: 15874 components: - type: Transform - pos: -204.5,-5.5 + pos: -168.5,-18.5 parent: 2 - - uid: 15339 + - uid: 15875 components: - type: Transform - pos: -211.5,-10.5 + pos: -170.5,-26.5 parent: 2 - - uid: 15340 + - uid: 15876 components: - type: Transform - pos: -211.5,-11.5 + pos: -170.5,-23.5 parent: 2 - - uid: 15341 + - uid: 15877 components: - type: Transform - pos: -211.5,-12.5 + pos: -170.5,-21.5 parent: 2 - - uid: 15342 + - uid: 15878 components: - type: Transform - pos: -211.5,-14.5 + pos: -170.5,-20.5 parent: 2 - - uid: 15343 + - uid: 15879 components: - type: Transform - pos: -211.5,-18.5 + pos: -168.5,-17.5 parent: 2 - - uid: 15344 + - uid: 15880 components: - type: Transform - pos: -211.5,-20.5 + pos: -168.5,-16.5 parent: 2 - - uid: 15345 + - uid: 15881 components: - type: Transform - pos: -211.5,-21.5 + pos: -167.5,-16.5 parent: 2 - - uid: 15346 + - uid: 15882 components: - type: Transform - pos: -212.5,-21.5 + pos: -164.5,-16.5 parent: 2 - - uid: 15347 + - uid: 15883 components: - type: Transform - pos: -213.5,-21.5 + pos: -163.5,-16.5 parent: 2 - - uid: 15348 + - uid: 15884 components: - type: Transform - pos: -214.5,-21.5 + pos: -162.5,-16.5 parent: 2 - - uid: 15349 + - uid: 15885 components: - type: Transform - pos: -215.5,-21.5 + pos: -161.5,-16.5 parent: 2 - - uid: 15350 + - uid: 15886 components: - type: Transform - pos: -215.5,-20.5 + pos: -160.5,-16.5 parent: 2 - - uid: 15351 + - uid: 15887 components: - type: Transform - pos: -215.5,-19.5 + pos: -163.5,-15.5 parent: 2 - - uid: 15352 + - uid: 15888 components: - type: Transform - pos: -215.5,-18.5 + pos: -160.5,-14.5 parent: 2 - - uid: 15353 + - uid: 15889 components: - type: Transform - pos: -215.5,-17.5 + pos: -160.5,-5.5 parent: 2 - - uid: 15354 + - uid: 15890 components: - type: Transform - pos: -215.5,-16.5 + pos: -165.5,-5.5 parent: 2 - - uid: 15355 + - uid: 15891 components: - type: Transform - pos: -215.5,-15.5 + pos: -164.5,-5.5 parent: 2 - - uid: 15356 + - uid: 15892 components: - type: Transform - pos: -215.5,-14.5 + pos: -163.5,-5.5 parent: 2 - - uid: 15357 + - uid: 15893 components: - type: Transform - pos: -215.5,-10.5 + pos: -167.5,-6.5 parent: 2 - - uid: 15358 + - uid: 15894 components: - type: Transform - pos: -215.5,-9.5 + pos: -168.5,-6.5 parent: 2 - - uid: 15359 + - uid: 15895 components: - type: Transform - pos: -215.5,-8.5 + pos: -169.5,-6.5 parent: 2 - - uid: 15360 + - uid: 15896 components: - type: Transform - pos: -215.5,-7.5 + pos: -170.5,-6.5 parent: 2 - - uid: 15361 + - uid: 15897 components: - type: Transform - pos: -215.5,-6.5 + pos: -166.5,-6.5 parent: 2 - - uid: 15362 + - uid: 15898 components: - type: Transform - pos: -215.5,-5.5 + pos: -171.5,-10.5 parent: 2 - - uid: 15363 + - uid: 15899 components: - type: Transform - pos: -216.5,-5.5 + pos: -171.5,-11.5 parent: 2 - - uid: 15364 + - uid: 15900 components: - type: Transform - pos: -217.5,-5.5 + pos: -171.5,-12.5 parent: 2 - - uid: 15365 + - uid: 15901 components: - type: Transform - pos: -218.5,-5.5 + pos: -169.5,-14.5 parent: 2 - - uid: 15366 + - uid: 15902 components: - type: Transform - pos: -219.5,-5.5 + pos: -164.5,-14.5 parent: 2 - - uid: 15367 + - uid: 15903 components: - type: Transform - pos: -219.5,-3.5 + pos: -163.5,-14.5 parent: 2 - - uid: 15368 + - uid: 15904 components: - type: Transform - pos: -219.5,-2.5 + pos: -162.5,-14.5 parent: 2 - - uid: 15369 + - uid: 15905 components: - type: Transform - pos: -219.5,-4.5 + pos: -161.5,-14.5 parent: 2 - - uid: 15370 + - uid: 15906 components: - type: Transform - pos: -219.5,-1.5 + pos: -162.5,-10.5 parent: 2 - - uid: 15371 + - uid: 15907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -216.5,-1.5 + pos: -161.5,-10.5 parent: 2 - - uid: 15372 + - uid: 15908 components: - type: Transform - pos: -215.5,-1.5 + pos: -165.5,-7.5 parent: 2 - - uid: 15373 + - uid: 15909 components: - type: Transform - pos: -209.5,-1.5 + pos: -165.5,-6.5 parent: 2 - - uid: 15374 + - uid: 15910 components: - type: Transform - pos: -218.5,-1.5 + rot: 3.141592653589793 rad + pos: -175.5,8.5 parent: 2 - - uid: 15375 + - uid: 15911 components: - type: Transform - pos: -212.5,-1.5 + rot: -1.5707963267948966 rad + pos: -179.5,4.5 parent: 2 - - uid: 15376 + - uid: 15912 components: - type: Transform - pos: -208.5,-1.5 + rot: 3.141592653589793 rad + pos: -176.5,8.5 parent: 2 - - uid: 15377 + - uid: 15913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -210.5,-1.5 + rot: 3.141592653589793 rad + pos: -177.5,8.5 parent: 2 - - uid: 15378 + - uid: 15914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -210.5,2.5 + pos: -175.5,-10.5 parent: 2 - - uid: 15379 + - uid: 15915 components: - type: Transform - pos: -205.5,16.5 + pos: -175.5,-11.5 parent: 2 - - uid: 15380 + - uid: 15916 components: - type: Transform - pos: -204.5,16.5 + pos: -175.5,-15.5 parent: 2 - - uid: 15381 + - uid: 15917 components: - type: Transform - pos: -204.5,15.5 + pos: -175.5,-16.5 parent: 2 - - uid: 15382 + - uid: 15918 components: - type: Transform - pos: -204.5,14.5 + pos: -175.5,-21.5 parent: 2 - - uid: 15383 + - uid: 15919 components: - type: Transform - pos: -204.5,13.5 + pos: -171.5,-15.5 parent: 2 - - uid: 15384 + - uid: 15920 components: - type: Transform - pos: -204.5,12.5 + pos: -171.5,-17.5 parent: 2 - - uid: 15385 + - uid: 15921 components: - type: Transform - pos: -204.5,10.5 + pos: -170.5,-14.5 parent: 2 - - uid: 15386 + - uid: 15922 components: - type: Transform - pos: -204.5,5.5 + pos: -170.5,-17.5 parent: 2 - - uid: 15387 + - uid: 15923 components: - type: Transform - pos: -204.5,3.5 + pos: -180.5,-5.5 parent: 2 - - uid: 15388 + - uid: 15924 components: - type: Transform - pos: -204.5,2.5 + pos: -176.5,-21.5 parent: 2 - - uid: 15389 + - uid: 15925 components: - type: Transform - pos: -204.5,1.5 + pos: -177.5,-21.5 parent: 2 - - uid: 15390 + - uid: 15926 components: - type: Transform - pos: -204.5,0.5 + pos: -178.5,-21.5 parent: 2 - - uid: 15391 + - uid: 15927 components: - type: Transform - pos: -204.5,-0.5 + pos: -179.5,-21.5 parent: 2 - - uid: 15392 + - uid: 15928 components: - type: Transform - pos: -204.5,-1.5 + pos: -179.5,-20.5 parent: 2 - - uid: 15393 + - uid: 15929 components: - type: Transform - pos: -203.5,-1.5 + pos: -179.5,-18.5 parent: 2 - - uid: 15394 + - uid: 15930 components: - type: Transform - pos: -202.5,-1.5 + pos: -179.5,-14.5 parent: 2 - - uid: 15395 + - uid: 15931 components: - type: Transform - pos: -201.5,-1.5 + pos: -179.5,-12.5 parent: 2 - - uid: 15396 + - uid: 15932 components: - type: Transform - pos: -200.5,-1.5 + pos: -179.5,-11.5 parent: 2 - - uid: 15397 + - uid: 15933 components: - type: Transform - pos: -196.5,-1.5 + rot: -1.5707963267948966 rad + pos: -179.5,-10.5 parent: 2 - - uid: 15398 + - uid: 15934 components: - type: Transform - pos: -192.5,-1.5 + pos: -179.5,-6.5 parent: 2 - - uid: 15399 + - uid: 15935 components: - type: Transform - pos: -191.5,-1.5 + pos: -179.5,-5.5 parent: 2 - - uid: 15400 + - uid: 15936 components: - type: Transform - pos: -190.5,-1.5 + pos: -181.5,-5.5 parent: 2 - - uid: 15401 + - uid: 15937 components: - type: Transform - pos: -189.5,-1.5 + pos: -182.5,-5.5 parent: 2 - - uid: 15402 + - uid: 15938 components: - type: Transform - pos: -188.5,-1.5 + pos: -186.5,-5.5 parent: 2 - - uid: 15403 + - uid: 15939 components: - type: Transform - pos: -188.5,-0.5 + pos: -190.5,-5.5 parent: 2 - - uid: 15404 + - uid: 15940 components: - type: Transform - pos: -188.5,0.5 + pos: -191.5,-5.5 parent: 2 - - uid: 15405 + - uid: 15941 components: - type: Transform - pos: -188.5,1.5 + pos: -192.5,-5.5 parent: 2 - - uid: 15406 + - uid: 15942 components: - type: Transform - pos: -188.5,2.5 + pos: -193.5,-5.5 parent: 2 - - uid: 15407 + - uid: 15943 components: - type: Transform - pos: -188.5,3.5 + pos: -193.5,-6.5 parent: 2 - - uid: 15408 + - uid: 15944 components: - type: Transform - pos: -188.5,5.5 + pos: -198.5,-5.5 parent: 2 - - uid: 15409 + - uid: 15945 components: - type: Transform - pos: -188.5,10.5 + pos: -193.5,-12.5 parent: 2 - - uid: 15410 + - uid: 15946 components: - type: Transform - pos: -188.5,9.5 + pos: -193.5,-11.5 parent: 2 - - uid: 15411 + - uid: 15947 components: - type: Transform - pos: -188.5,13.5 + pos: -193.5,-10.5 parent: 2 - - uid: 15412 + - uid: 15948 components: - type: Transform - pos: -188.5,12.5 + pos: -193.5,-14.5 parent: 2 - - uid: 15413 + - uid: 15949 components: - type: Transform - pos: -188.5,14.5 + pos: -193.5,-18.5 parent: 2 - - uid: 15414 + - uid: 15950 components: - type: Transform - pos: -188.5,15.5 + pos: -193.5,-20.5 parent: 2 - - uid: 15415 + - uid: 15951 components: - type: Transform - pos: -188.5,16.5 + pos: -193.5,-21.5 parent: 2 - - uid: 15416 + - uid: 15952 components: - type: Transform - pos: -187.5,16.5 + pos: -194.5,-21.5 parent: 2 - - uid: 15417 + - uid: 15953 components: - type: Transform - pos: -186.5,16.5 + rot: 1.5707963267948966 rad + pos: -195.5,-21.5 parent: 2 - - uid: 15418 + - uid: 15954 components: - type: Transform - pos: -185.5,16.5 + pos: -196.5,-21.5 parent: 2 - - uid: 15419 + - uid: 15955 components: - type: Transform - pos: -184.5,16.5 + pos: -197.5,-21.5 parent: 2 - - uid: 15420 + - uid: 15956 components: - type: Transform - pos: -184.5,4.5 + pos: -197.5,-20.5 parent: 2 - - uid: 15421 + - uid: 15957 components: - type: Transform - pos: -184.5,3.5 + pos: -197.5,-18.5 parent: 2 - - uid: 15422 + - uid: 15958 components: - type: Transform - pos: -184.5,-0.5 + pos: -197.5,-14.5 parent: 2 - - uid: 15423 + - uid: 15959 components: - type: Transform - pos: -184.5,-1.5 + pos: -197.5,-12.5 parent: 2 - - uid: 15424 + - uid: 15960 components: - type: Transform - pos: -184.5,15.5 + pos: -197.5,-11.5 parent: 2 - - uid: 15425 + - uid: 15961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -184.5,14.5 + pos: -197.5,-10.5 parent: 2 - - uid: 15426 + - uid: 15962 components: - type: Transform - pos: -184.5,10.5 + pos: -197.5,-9.5 parent: 2 - - uid: 15427 + - uid: 15963 components: - type: Transform - pos: -184.5,9.5 + pos: -197.5,-8.5 parent: 2 - - uid: 15428 + - uid: 15964 components: - type: Transform - pos: -184.5,8.5 + pos: -197.5,-7.5 parent: 2 - - uid: 15429 + - uid: 15965 components: - type: Transform - pos: -184.5,7.5 + pos: -197.5,-6.5 parent: 2 - - uid: 15430 + - uid: 15966 components: - type: Transform - pos: -184.5,6.5 + pos: -197.5,-5.5 parent: 2 - - uid: 15431 + - uid: 15967 components: - type: Transform - pos: -184.5,5.5 + pos: -199.5,-5.5 parent: 2 - - uid: 15432 + - uid: 15968 components: - type: Transform - pos: -183.5,-1.5 + pos: -200.5,-5.5 parent: 2 - - uid: 15433 + - uid: 15969 components: - type: Transform - pos: -182.5,-1.5 + pos: -211.5,-6.5 parent: 2 - - uid: 15434 + - uid: 15970 components: - type: Transform - pos: -181.5,-1.5 + pos: -211.5,-5.5 parent: 2 - - uid: 15435 + - uid: 15971 components: - type: Transform - pos: -175.5,-1.5 + pos: -210.5,-5.5 parent: 2 - - uid: 15436 + - uid: 15972 components: - type: Transform - pos: -177.5,-1.5 + pos: -209.5,-5.5 parent: 2 - - uid: 15437 + - uid: 15973 components: - type: Transform - pos: -78.5,27.5 + pos: -208.5,-5.5 parent: 2 - - uid: 15438 + - uid: 15974 components: - type: Transform - pos: -78.5,28.5 + pos: -204.5,-5.5 parent: 2 - - uid: 15439 + - uid: 15975 components: - type: Transform - pos: -78.5,29.5 + pos: -211.5,-10.5 parent: 2 - - uid: 15440 + - uid: 15976 components: - type: Transform - pos: -78.5,30.5 + pos: -211.5,-11.5 parent: 2 - - uid: 15441 + - uid: 15977 components: - type: Transform - pos: -66.5,30.5 + pos: -211.5,-12.5 parent: 2 - - uid: 15442 + - uid: 15978 components: - type: Transform - pos: -65.5,30.5 + pos: -211.5,-14.5 parent: 2 - - uid: 15443 + - uid: 15979 components: - type: Transform - pos: -64.5,30.5 + pos: -211.5,-18.5 parent: 2 - - uid: 15444 + - uid: 15980 components: - type: Transform - pos: -63.5,30.5 + pos: -211.5,-20.5 parent: 2 - - uid: 15445 + - uid: 15981 components: - type: Transform - pos: -60.5,30.5 + pos: -211.5,-21.5 parent: 2 - - uid: 15446 + - uid: 15982 components: - type: Transform - pos: -59.5,30.5 + pos: -212.5,-21.5 parent: 2 - - uid: 15447 + - uid: 15983 components: - type: Transform - pos: -58.5,30.5 + pos: -213.5,-21.5 parent: 2 - - uid: 15448 + - uid: 15984 components: - type: Transform - pos: -57.5,30.5 + pos: -214.5,-21.5 parent: 2 - - uid: 15449 + - uid: 15985 components: - type: Transform - pos: -56.5,30.5 + pos: -215.5,-21.5 parent: 2 - - uid: 15450 + - uid: 15986 components: - type: Transform - pos: -55.5,30.5 + pos: -215.5,-20.5 parent: 2 - - uid: 15451 + - uid: 15987 components: - type: Transform - pos: -77.5,30.5 + pos: -215.5,-19.5 parent: 2 - - uid: 15452 + - uid: 15988 components: - type: Transform - pos: -76.5,30.5 + pos: -215.5,-18.5 parent: 2 - - uid: 15453 + - uid: 15989 components: - type: Transform - pos: -75.5,30.5 + pos: -215.5,-16.5 parent: 2 - - uid: 15454 + - uid: 15990 components: - type: Transform - pos: -74.5,30.5 + pos: -215.5,-15.5 parent: 2 - - uid: 15455 + - uid: 15991 components: - type: Transform - pos: -73.5,30.5 + pos: -215.5,-14.5 parent: 2 - - uid: 15456 + - uid: 15992 components: - type: Transform - pos: -72.5,30.5 + pos: -215.5,-10.5 parent: 2 - - uid: 15457 + - uid: 15993 components: - type: Transform - pos: -71.5,30.5 + pos: -215.5,-9.5 parent: 2 - - uid: 15458 + - uid: 15994 components: - type: Transform - pos: -70.5,30.5 + pos: -215.5,-8.5 parent: 2 - - uid: 15459 + - uid: 15995 components: - type: Transform - pos: -69.5,30.5 + pos: -215.5,-7.5 parent: 2 - - uid: 15460 + - uid: 15996 components: - type: Transform - pos: -68.5,30.5 + pos: -215.5,-6.5 parent: 2 - - uid: 15461 + - uid: 15997 components: - type: Transform - pos: -67.5,30.5 + pos: -215.5,-5.5 parent: 2 - - uid: 15462 + - uid: 15998 components: - type: Transform - pos: -54.5,30.5 + pos: -219.5,-1.5 parent: 2 - - uid: 15463 + - uid: 15999 components: - type: Transform - pos: -54.5,29.5 + rot: -1.5707963267948966 rad + pos: -216.5,-1.5 parent: 2 - - uid: 15464 + - uid: 16000 components: - type: Transform - pos: -54.5,28.5 + pos: -215.5,-1.5 parent: 2 - - uid: 15465 + - uid: 16001 components: - type: Transform - pos: -54.5,27.5 + pos: -209.5,-1.5 parent: 2 - - uid: 15466 + - uid: 16002 components: - type: Transform - pos: -57.5,29.5 + pos: -218.5,-1.5 parent: 2 - - uid: 15467 + - uid: 16003 components: - type: Transform - pos: -57.5,28.5 + pos: -212.5,-1.5 parent: 2 - - uid: 15468 + - uid: 16004 components: - type: Transform - pos: -57.5,27.5 + pos: -208.5,-1.5 parent: 2 - - uid: 15469 + - uid: 16005 components: - type: Transform - pos: -60.5,29.5 + rot: -1.5707963267948966 rad + pos: -210.5,-1.5 parent: 2 - - uid: 15470 + - uid: 16006 components: - type: Transform - pos: -60.5,28.5 + rot: -1.5707963267948966 rad + pos: -210.5,2.5 parent: 2 - - uid: 15471 + - uid: 16007 components: - type: Transform - pos: -60.5,27.5 + pos: -205.5,16.5 parent: 2 - - uid: 15472 + - uid: 16008 components: - type: Transform - pos: -63.5,29.5 + pos: -204.5,16.5 parent: 2 - - uid: 15473 + - uid: 16009 components: - type: Transform - pos: -63.5,28.5 + pos: -204.5,15.5 parent: 2 - - uid: 15474 + - uid: 16010 components: - type: Transform - pos: -63.5,27.5 + pos: -204.5,14.5 parent: 2 - - uid: 15475 + - uid: 16011 components: - type: Transform - pos: -66.5,29.5 + pos: -204.5,13.5 parent: 2 - - uid: 15476 + - uid: 16012 components: - type: Transform - pos: -66.5,28.5 + pos: -204.5,11.5 parent: 2 - - uid: 15477 + - uid: 16013 components: - type: Transform - pos: -66.5,27.5 + pos: -204.5,10.5 parent: 2 - - uid: 15478 + - uid: 16014 components: - type: Transform - pos: -69.5,29.5 + pos: -204.5,5.5 parent: 2 - - uid: 15479 + - uid: 16015 components: - type: Transform - pos: -69.5,28.5 + pos: -204.5,3.5 parent: 2 - - uid: 15480 + - uid: 16016 components: - type: Transform - pos: -69.5,27.5 + pos: -204.5,2.5 parent: 2 - - uid: 15481 + - uid: 16017 components: - type: Transform - pos: -72.5,29.5 + pos: -204.5,1.5 parent: 2 - - uid: 15482 + - uid: 16018 components: - type: Transform - pos: -72.5,28.5 + pos: -204.5,0.5 parent: 2 - - uid: 15483 + - uid: 16019 components: - type: Transform - pos: -72.5,27.5 + pos: -204.5,-0.5 parent: 2 - - uid: 15484 + - uid: 16020 components: - type: Transform - pos: -75.5,29.5 + pos: -204.5,-1.5 parent: 2 - - uid: 15485 + - uid: 16021 components: - type: Transform - pos: -75.5,28.5 + pos: -203.5,-1.5 parent: 2 - - uid: 15486 + - uid: 16022 components: - type: Transform - pos: -75.5,27.5 + pos: -202.5,-1.5 parent: 2 - - uid: 15487 + - uid: 16023 components: - type: Transform - pos: -76.5,-5.5 + pos: -201.5,-1.5 parent: 2 - - uid: 15488 + - uid: 16024 components: - type: Transform - pos: -76.5,-4.5 + pos: -200.5,-1.5 parent: 2 - - uid: 15489 + - uid: 16025 components: - type: Transform - pos: -75.5,-5.5 + pos: -196.5,-1.5 parent: 2 - - uid: 15490 + - uid: 16026 components: - type: Transform - pos: -74.5,-5.5 + pos: -192.5,-1.5 parent: 2 - - uid: 15491 + - uid: 16027 components: - type: Transform - pos: -74.5,-4.5 + pos: -191.5,-1.5 parent: 2 - - uid: 15492 + - uid: 16028 components: - type: Transform - pos: -74.5,-2.5 + pos: -190.5,-1.5 parent: 2 - - uid: 15493 + - uid: 16029 components: - type: Transform - pos: -74.5,-1.5 + pos: -189.5,-1.5 parent: 2 - - uid: 15494 + - uid: 16030 components: - type: Transform - pos: -75.5,-1.5 + pos: -188.5,-1.5 parent: 2 - - uid: 15495 + - uid: 16031 components: - type: Transform - pos: -76.5,-1.5 + pos: -184.5,-1.5 parent: 2 - - uid: 15496 + - uid: 16032 components: - type: Transform - pos: -76.5,-2.5 + pos: -183.5,-1.5 parent: 2 - - uid: 15497 + - uid: 16033 components: - type: Transform - pos: -76.5,-0.5 + pos: -182.5,-1.5 parent: 2 - - uid: 15498 + - uid: 16034 components: - type: Transform - pos: -80.5,-1.5 + pos: -181.5,-1.5 parent: 2 - - uid: 15499 + - uid: 16035 components: - type: Transform - pos: -76.5,-6.5 + pos: -175.5,-1.5 parent: 2 - - uid: 15500 + - uid: 16036 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -156.5,-5.5 + pos: -177.5,-1.5 parent: 2 - - uid: 15501 + - uid: 16037 components: - type: Transform - pos: -175.5,-20.5 + pos: -78.5,27.5 parent: 2 - - uid: 15502 + - uid: 16038 components: - type: Transform - pos: -172.5,-10.5 + pos: -78.5,28.5 parent: 2 - - uid: 15503 + - uid: 16039 components: - type: Transform - pos: -173.5,-10.5 + pos: -78.5,29.5 parent: 2 - - uid: 15504 + - uid: 16040 components: - type: Transform - pos: -174.5,-10.5 + pos: -78.5,30.5 parent: 2 - - uid: 15505 + - uid: 16041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -174.5,6.5 + pos: -66.5,30.5 parent: 2 - - uid: 15506 + - uid: 16042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -174.5,4.5 + pos: -65.5,30.5 parent: 2 - - uid: 15507 + - uid: 16043 components: - type: Transform - pos: -80.5,-0.5 + pos: -64.5,30.5 parent: 2 - - uid: 15508 + - uid: 16044 components: - type: Transform - pos: -80.5,-5.5 + pos: -63.5,30.5 parent: 2 - - uid: 15509 + - uid: 16045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,-32.5 + pos: -60.5,30.5 parent: 2 - - uid: 15510 + - uid: 16046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,-27.5 + pos: -59.5,30.5 parent: 2 - - uid: 15511 + - uid: 16047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,-28.5 + pos: -58.5,30.5 parent: 2 - - uid: 15512 + - uid: 16048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,-31.5 + pos: -57.5,30.5 parent: 2 - - uid: 15513 + - uid: 16049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,-32.5 + pos: -56.5,30.5 parent: 2 - - uid: 15514 + - uid: 16050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,-26.5 + pos: -55.5,30.5 parent: 2 - - uid: 15515 + - uid: 16051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,-26.5 + pos: -77.5,30.5 parent: 2 - - uid: 15516 + - uid: 16052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,-26.5 + pos: -76.5,30.5 parent: 2 - - uid: 15517 + - uid: 16053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,-26.5 + pos: -75.5,30.5 parent: 2 - - uid: 15518 + - uid: 16054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,-28.5 + pos: -74.5,30.5 parent: 2 - - uid: 15519 + - uid: 16055 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,-28.5 + pos: -73.5,30.5 parent: 2 - - uid: 15520 + - uid: 16056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,-27.5 + pos: -72.5,30.5 parent: 2 - - uid: 15521 + - uid: 16057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,-33.5 + pos: -71.5,30.5 parent: 2 - - uid: 15522 + - uid: 16058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,-30.5 + pos: -70.5,30.5 parent: 2 - - uid: 15523 + - uid: 16059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,-29.5 + pos: -69.5,30.5 parent: 2 - - uid: 15524 + - uid: 16060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,-37.5 + pos: -68.5,30.5 parent: 2 - - uid: 15525 + - uid: 16061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,-36.5 + pos: -67.5,30.5 parent: 2 - - uid: 15526 + - uid: 16062 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,-37.5 + pos: -54.5,30.5 parent: 2 - - uid: 15527 + - uid: 16063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,-37.5 + pos: -54.5,29.5 parent: 2 - - uid: 15528 + - uid: 16064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,-38.5 + pos: -54.5,28.5 parent: 2 - - uid: 15529 + - uid: 16065 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,-39.5 + pos: -54.5,27.5 parent: 2 - - uid: 15530 + - uid: 16066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,-38.5 + pos: -57.5,29.5 parent: 2 - - uid: 15531 + - uid: 16067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,-39.5 + pos: -57.5,28.5 parent: 2 - - uid: 15532 + - uid: 16068 components: - type: Transform - pos: -147.5,6.5 + pos: -57.5,27.5 parent: 2 - - uid: 15533 + - uid: 16069 components: - type: Transform - pos: -146.5,6.5 + pos: -60.5,29.5 parent: 2 - - uid: 15534 + - uid: 16070 components: - type: Transform - pos: -145.5,6.5 + pos: -60.5,28.5 parent: 2 - - uid: 15535 + - uid: 16071 components: - type: Transform - pos: -145.5,5.5 + pos: -60.5,27.5 parent: 2 - - uid: 15536 + - uid: 16072 components: - type: Transform - pos: -145.5,4.5 + pos: -63.5,29.5 parent: 2 - - uid: 15537 + - uid: 16073 components: - type: Transform - pos: -145.5,3.5 + pos: -63.5,28.5 parent: 2 - - uid: 15538 + - uid: 16074 components: - type: Transform - pos: -145.5,2.5 + pos: -63.5,27.5 parent: 2 - - uid: 15539 + - uid: 16075 components: - type: Transform - pos: -204.5,6.5 + pos: -66.5,29.5 parent: 2 - - uid: 15540 + - uid: 16076 components: - type: Transform - pos: -17.5,6.5 + pos: -66.5,28.5 parent: 2 - - uid: 15541 + - uid: 16077 components: - type: Transform - pos: -23.5,10.5 + pos: -66.5,27.5 parent: 2 - - uid: 15542 + - uid: 16078 components: - type: Transform - pos: -3.5,-18.5 + pos: -69.5,29.5 parent: 2 - - uid: 15543 + - uid: 16079 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-18.5 + pos: -69.5,28.5 parent: 2 - - uid: 15544 + - uid: 16080 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-18.5 + pos: -69.5,27.5 parent: 2 - - uid: 15545 + - uid: 16081 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-18.5 + pos: -72.5,29.5 parent: 2 - - uid: 15546 + - uid: 16082 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-18.5 + pos: -72.5,28.5 parent: 2 - - uid: 15547 + - uid: 16083 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-18.5 + pos: -72.5,27.5 parent: 2 - - uid: 15548 + - uid: 16084 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-18.5 + pos: -75.5,29.5 parent: 2 - - uid: 15549 + - uid: 16085 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-18.5 + pos: -75.5,28.5 parent: 2 - - uid: 15550 + - uid: 16086 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-18.5 + pos: -75.5,27.5 parent: 2 - - uid: 15551 + - uid: 16087 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-18.5 + pos: -74.5,-4.5 parent: 2 - - uid: 15552 + - uid: 16088 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-18.5 + pos: -74.5,-2.5 parent: 2 - - uid: 15553 + - uid: 16089 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-18.5 + pos: -74.5,-1.5 parent: 2 - - uid: 15554 + - uid: 16090 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-18.5 + pos: -75.5,-1.5 parent: 2 - - uid: 15555 + - uid: 16091 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-17.5 + pos: -76.5,-1.5 parent: 2 - - uid: 15556 + - uid: 16092 components: - type: Transform - pos: -149.5,1.5 + rot: 3.141592653589793 rad + pos: -76.5,-0.5 parent: 2 - - uid: 15557 + - uid: 16093 components: - type: Transform - pos: -147.5,1.5 + pos: -80.5,-1.5 parent: 2 - - uid: 15558 + - uid: 16094 components: - type: Transform - pos: -153.5,18.5 + pos: -76.5,-6.5 parent: 2 - - uid: 15559 + - uid: 16095 components: - type: Transform rot: -1.5707963267948966 rad - pos: -152.5,18.5 - parent: 2 - - uid: 15560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -175.5,4.5 + pos: -156.5,-5.5 parent: 2 - - uid: 15561 + - uid: 16096 components: - type: Transform - rot: 3.141592653589793 rad - pos: -176.5,4.5 + pos: -175.5,-20.5 parent: 2 - - uid: 15562 + - uid: 16097 components: - type: Transform - rot: 3.141592653589793 rad - pos: -177.5,4.5 + pos: -172.5,-10.5 parent: 2 - - uid: 15563 + - uid: 16098 components: - type: Transform - rot: 3.141592653589793 rad - pos: -178.5,4.5 + pos: -173.5,-10.5 parent: 2 - - uid: 15564 + - uid: 16099 components: - type: Transform - rot: 3.141592653589793 rad - pos: -179.5,8.5 + pos: -174.5,-10.5 parent: 2 - - uid: 15565 + - uid: 16100 components: - type: Transform rot: -1.5707963267948966 rad - pos: -165.5,-12.5 + pos: -174.5,6.5 parent: 2 - - uid: 15566 + - uid: 16101 components: - type: Transform rot: -1.5707963267948966 rad - pos: -165.5,-11.5 + pos: -174.5,4.5 parent: 2 - - uid: 15567 + - uid: 16102 components: - type: Transform - pos: -170.5,-10.5 + pos: -80.5,-5.5 parent: 2 - - uid: 15568 + - uid: 16103 components: - type: Transform - pos: -166.5,-10.5 + rot: 1.5707963267948966 rad + pos: -86.5,-32.5 parent: 2 - - uid: 15569 + - uid: 16104 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-18.5 + pos: -87.5,-27.5 parent: 2 - - uid: 15570 + - uid: 16105 components: - type: Transform rot: 1.5707963267948966 rad - pos: -150.5,18.5 + pos: -87.5,-28.5 parent: 2 - - uid: 15571 + - uid: 16106 components: - type: Transform rot: 1.5707963267948966 rad - pos: -150.5,17.5 + pos: -87.5,-31.5 parent: 2 - - uid: 15572 + - uid: 16107 components: - type: Transform rot: 1.5707963267948966 rad - pos: -150.5,16.5 + pos: -87.5,-32.5 parent: 2 - - uid: 15573 + - uid: 16108 components: - type: Transform rot: 1.5707963267948966 rad - pos: -150.5,15.5 + pos: -87.5,-26.5 parent: 2 - - uid: 15574 + - uid: 16109 components: - type: Transform rot: 1.5707963267948966 rad - pos: -150.5,14.5 + pos: -86.5,-26.5 parent: 2 - - uid: 15575 + - uid: 16110 components: - type: Transform - pos: -175.5,-13.5 + rot: 1.5707963267948966 rad + pos: -85.5,-26.5 parent: 2 - - uid: 15576 + - uid: 16111 components: - type: Transform - pos: -144.5,7.5 + rot: 1.5707963267948966 rad + pos: -82.5,-26.5 parent: 2 - - uid: 15577 + - uid: 16112 components: - type: Transform - pos: -144.5,8.5 + rot: 1.5707963267948966 rad + pos: -80.5,-28.5 parent: 2 - - uid: 15578 + - uid: 16113 components: - type: Transform - pos: -144.5,9.5 + rot: 1.5707963267948966 rad + pos: -82.5,-28.5 parent: 2 - - uid: 15579 + - uid: 16114 components: - type: Transform - pos: -144.5,10.5 + rot: 1.5707963267948966 rad + pos: -82.5,-27.5 parent: 2 - - uid: 15580 + - uid: 16115 components: - type: Transform - pos: -144.5,11.5 + rot: 1.5707963267948966 rad + pos: -80.5,-33.5 parent: 2 - - uid: 15581 + - uid: 16116 components: - type: Transform - pos: -144.5,12.5 + rot: 1.5707963267948966 rad + pos: -80.5,-30.5 parent: 2 - - uid: 15582 + - uid: 16117 components: - type: Transform - pos: -144.5,13.5 + rot: 1.5707963267948966 rad + pos: -80.5,-29.5 parent: 2 - - uid: 15583 + - uid: 16118 components: - type: Transform - pos: -150.5,19.5 + rot: 1.5707963267948966 rad + pos: -80.5,-37.5 parent: 2 - - uid: 15584 + - uid: 16119 components: - type: Transform - pos: -149.5,19.5 + rot: 1.5707963267948966 rad + pos: -80.5,-36.5 parent: 2 - - uid: 15585 + - uid: 16120 components: - type: Transform - pos: -148.5,19.5 + rot: 1.5707963267948966 rad + pos: -82.5,-37.5 parent: 2 - - uid: 15586 + - uid: 16121 components: - type: Transform - pos: -147.5,19.5 + rot: 1.5707963267948966 rad + pos: -81.5,-37.5 parent: 2 - - uid: 15587 + - uid: 16122 components: - type: Transform - pos: -146.5,19.5 + rot: 1.5707963267948966 rad + pos: -84.5,-38.5 parent: 2 - - uid: 15588 + - uid: 16123 components: - type: Transform - pos: -145.5,19.5 + rot: 1.5707963267948966 rad + pos: -84.5,-39.5 parent: 2 - - uid: 15589 + - uid: 16124 components: - type: Transform - pos: -144.5,19.5 + rot: 1.5707963267948966 rad + pos: -82.5,-38.5 parent: 2 - - uid: 15590 + - uid: 16125 components: - type: Transform - pos: -144.5,18.5 + rot: 1.5707963267948966 rad + pos: -82.5,-39.5 parent: 2 - - uid: 15591 + - uid: 16126 components: - type: Transform - pos: -144.5,17.5 + pos: -147.5,6.5 parent: 2 - - uid: 15592 + - uid: 16127 components: - type: Transform - pos: -144.5,16.5 + pos: -146.5,6.5 parent: 2 - - uid: 15593 + - uid: 16128 components: - type: Transform - pos: -144.5,15.5 + pos: -145.5,6.5 parent: 2 - - uid: 15594 + - uid: 16129 components: - type: Transform - pos: -144.5,14.5 + pos: -145.5,5.5 parent: 2 - - uid: 15595 + - uid: 16130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -170.5,-9.5 + pos: -145.5,4.5 parent: 2 - - uid: 15596 + - uid: 16131 components: - type: Transform - pos: -61.5,45.5 + pos: -145.5,3.5 parent: 2 - - uid: 15597 + - uid: 16132 components: - type: Transform - pos: -77.5,45.5 + pos: -145.5,2.5 parent: 2 - - uid: 15598 + - uid: 16133 components: - type: Transform - pos: -76.5,45.5 + pos: -204.5,6.5 parent: 2 - - uid: 15599 + - uid: 16134 components: - type: Transform - pos: -75.5,45.5 + pos: -17.5,6.5 parent: 2 - - uid: 15600 + - uid: 16135 components: - type: Transform - pos: -74.5,45.5 + pos: -23.5,10.5 parent: 2 - - uid: 15601 + - uid: 16136 components: - type: Transform - pos: -73.5,45.5 + pos: -3.5,-18.5 parent: 2 - - uid: 15602 + - uid: 16137 components: - type: Transform - pos: -70.5,45.5 + rot: 3.141592653589793 rad + pos: -6.5,-18.5 parent: 2 - - uid: 15603 + - uid: 16138 components: - type: Transform - pos: -69.5,45.5 + rot: 3.141592653589793 rad + pos: -7.5,-18.5 parent: 2 - - uid: 15604 + - uid: 16139 components: - type: Transform - pos: -68.5,45.5 + rot: 3.141592653589793 rad + pos: -8.5,-18.5 parent: 2 - - uid: 15605 + - uid: 16140 components: - type: Transform - pos: -65.5,45.5 + rot: 3.141592653589793 rad + pos: -9.5,-18.5 parent: 2 - - uid: 15606 + - uid: 16141 components: - type: Transform - pos: -64.5,45.5 + rot: 3.141592653589793 rad + pos: -10.5,-18.5 parent: 2 - - uid: 15607 + - uid: 16142 components: - type: Transform - pos: -60.5,45.5 + rot: 3.141592653589793 rad + pos: -11.5,-18.5 parent: 2 - - uid: 15608 + - uid: 16143 components: - type: Transform - pos: -58.5,45.5 + rot: 3.141592653589793 rad + pos: -12.5,-18.5 parent: 2 - - uid: 15609 + - uid: 16144 components: - type: Transform - pos: -56.5,45.5 + rot: 3.141592653589793 rad + pos: -13.5,-18.5 parent: 2 - - uid: 15610 + - uid: 16145 components: - type: Transform - pos: -55.5,45.5 + rot: 3.141592653589793 rad + pos: -14.5,-18.5 parent: 2 - - uid: 15611 + - uid: 16146 components: - type: Transform - pos: -54.5,45.5 + rot: 3.141592653589793 rad + pos: -15.5,-18.5 parent: 2 - - uid: 15612 + - uid: 16147 components: - type: Transform - pos: -53.5,45.5 + rot: 3.141592653589793 rad + pos: -16.5,-18.5 parent: 2 - - uid: 15613 + - uid: 16148 components: - type: Transform - pos: -52.5,47.5 + rot: 3.141592653589793 rad + pos: -17.5,-18.5 parent: 2 - - uid: 15614 + - uid: 16149 components: - type: Transform - pos: -51.5,47.5 + rot: 3.141592653589793 rad + pos: -17.5,-17.5 parent: 2 - - uid: 15615 + - uid: 16150 components: - type: Transform - pos: -52.5,46.5 + pos: -149.5,1.5 parent: 2 - - uid: 15616 + - uid: 16151 components: - type: Transform - pos: -53.5,46.5 + pos: -147.5,1.5 parent: 2 - - uid: 15617 + - uid: 16152 components: - type: Transform - pos: -51.5,48.5 + pos: -153.5,18.5 parent: 2 - - uid: 15618 + - uid: 16153 components: - type: Transform - pos: -51.5,49.5 + rot: -1.5707963267948966 rad + pos: -152.5,18.5 parent: 2 - - uid: 15619 + - uid: 16154 components: - type: Transform - pos: -51.5,50.5 + rot: 3.141592653589793 rad + pos: -175.5,4.5 parent: 2 - - uid: 15620 + - uid: 16155 components: - type: Transform - pos: -51.5,51.5 + rot: 3.141592653589793 rad + pos: -176.5,4.5 parent: 2 - - uid: 15621 + - uid: 16156 components: - type: Transform - pos: -51.5,52.5 + rot: 3.141592653589793 rad + pos: -177.5,4.5 parent: 2 - - uid: 15622 + - uid: 16157 components: - type: Transform - pos: -52.5,52.5 + rot: 3.141592653589793 rad + pos: -178.5,4.5 parent: 2 - - uid: 15623 + - uid: 16158 components: - type: Transform - pos: -52.5,53.5 + rot: 3.141592653589793 rad + pos: -179.5,8.5 parent: 2 - - uid: 15624 + - uid: 16159 components: - type: Transform - pos: -53.5,53.5 + rot: -1.5707963267948966 rad + pos: -165.5,-12.5 parent: 2 - - uid: 15625 + - uid: 16160 components: - type: Transform - pos: -53.5,54.5 + rot: -1.5707963267948966 rad + pos: -165.5,-11.5 parent: 2 - - uid: 15626 + - uid: 16161 components: - type: Transform - pos: -54.5,54.5 + pos: -170.5,-10.5 parent: 2 - - uid: 15627 + - uid: 16162 components: - type: Transform - pos: -55.5,54.5 + pos: -166.5,-10.5 parent: 2 - - uid: 15628 + - uid: 16163 components: - type: Transform - pos: -58.5,54.5 + rot: 1.5707963267948966 rad + pos: -5.5,-18.5 parent: 2 - - uid: 15629 + - uid: 16164 components: - type: Transform - pos: -59.5,54.5 + rot: 1.5707963267948966 rad + pos: -150.5,18.5 parent: 2 - - uid: 15630 + - uid: 16165 components: - type: Transform - pos: -73.5,54.5 + rot: 1.5707963267948966 rad + pos: -150.5,17.5 parent: 2 - - uid: 15631 + - uid: 16166 components: - type: Transform - pos: -74.5,54.5 + rot: 1.5707963267948966 rad + pos: -150.5,16.5 parent: 2 - - uid: 15632 + - uid: 16167 components: - type: Transform - pos: -77.5,54.5 + rot: 1.5707963267948966 rad + pos: -150.5,15.5 parent: 2 - - uid: 15633 + - uid: 16168 components: - type: Transform - pos: -62.5,54.5 + rot: 1.5707963267948966 rad + pos: -150.5,14.5 parent: 2 - - uid: 15634 + - uid: 16169 components: - type: Transform - pos: -63.5,54.5 + pos: -175.5,-13.5 parent: 2 - - uid: 15635 + - uid: 16170 components: - type: Transform - pos: -64.5,54.5 + pos: -144.5,7.5 parent: 2 - - uid: 15636 + - uid: 16171 components: - type: Transform - pos: -65.5,54.5 + pos: -144.5,8.5 parent: 2 - - uid: 15637 + - uid: 16172 components: - type: Transform - pos: -67.5,54.5 + pos: -144.5,9.5 parent: 2 - - uid: 15638 + - uid: 16173 components: - type: Transform - pos: -68.5,54.5 + pos: -144.5,10.5 parent: 2 - - uid: 15639 + - uid: 16174 components: - type: Transform - pos: -69.5,54.5 + pos: -144.5,11.5 parent: 2 - - uid: 15640 + - uid: 16175 components: - type: Transform - pos: -70.5,54.5 + pos: -144.5,12.5 parent: 2 - - uid: 15641 + - uid: 16176 components: - type: Transform - pos: -71.5,54.5 + pos: -144.5,13.5 parent: 2 - - uid: 15642 + - uid: 16177 components: - type: Transform - pos: -72.5,54.5 + pos: -150.5,19.5 parent: 2 - - uid: 15643 + - uid: 16178 components: - type: Transform - pos: -77.5,53.5 + pos: -149.5,19.5 parent: 2 - - uid: 15644 + - uid: 16179 components: - type: Transform - pos: -78.5,53.5 + pos: -148.5,19.5 parent: 2 - - uid: 15645 + - uid: 16180 components: - type: Transform - pos: -78.5,52.5 + pos: -147.5,19.5 parent: 2 - - uid: 15646 + - uid: 16181 components: - type: Transform - pos: -79.5,52.5 + pos: -146.5,19.5 parent: 2 - - uid: 15647 + - uid: 16182 components: - type: Transform - pos: -79.5,51.5 + pos: -145.5,19.5 parent: 2 - - uid: 15648 + - uid: 16183 components: - type: Transform - pos: -79.5,50.5 + pos: -144.5,19.5 parent: 2 - - uid: 15649 + - uid: 16184 components: - type: Transform - pos: -79.5,49.5 + pos: -144.5,18.5 parent: 2 - - uid: 15650 + - uid: 16185 components: - type: Transform - pos: -79.5,48.5 + pos: -144.5,17.5 parent: 2 - - uid: 15651 + - uid: 16186 components: - type: Transform - pos: -79.5,47.5 + pos: -144.5,16.5 parent: 2 - - uid: 15652 + - uid: 16187 components: - type: Transform - pos: -78.5,47.5 + pos: -144.5,15.5 parent: 2 - - uid: 15653 + - uid: 16188 components: - type: Transform - pos: -78.5,46.5 + pos: -144.5,14.5 parent: 2 - - uid: 15654 + - uid: 16189 components: - type: Transform - pos: -77.5,46.5 + rot: -1.5707963267948966 rad + pos: -170.5,-9.5 parent: 2 - - uid: 15655 + - uid: 16190 components: - type: Transform pos: -181.5,4.5 parent: 2 - - uid: 15656 + - uid: 16191 components: - type: Transform pos: -180.5,4.5 parent: 2 - - uid: 15657 + - uid: 16192 components: - type: Transform pos: -176.5,7.5 parent: 2 - - uid: 15658 + - uid: 16193 components: - type: Transform pos: -166.5,14.5 parent: 2 - - uid: 15659 + - uid: 16194 components: - type: Transform rot: -1.5707963267948966 rad pos: -166.5,15.5 parent: 2 - - uid: 15660 + - uid: 16195 components: - type: Transform pos: -162.5,14.5 parent: 2 - - uid: 15661 + - uid: 16196 components: - type: Transform pos: -170.5,-13.5 parent: 2 - - uid: 15662 + - uid: 16197 components: - type: Transform pos: -167.5,15.5 parent: 2 - - uid: 15663 + - uid: 16198 components: - type: Transform pos: -168.5,15.5 parent: 2 - - uid: 15664 + - uid: 16199 components: - type: Transform pos: -169.5,15.5 parent: 2 - - uid: 15665 + - uid: 16200 components: - type: Transform pos: -170.5,15.5 parent: 2 - - uid: 15666 + - uid: 16201 components: - type: Transform pos: -171.5,15.5 parent: 2 - - uid: 15667 + - uid: 16202 components: - type: Transform pos: -172.5,15.5 parent: 2 - - uid: 15668 + - uid: 16203 components: - type: Transform pos: -173.5,15.5 parent: 2 - - uid: 15669 + - uid: 16204 components: - type: Transform pos: -174.5,15.5 parent: 2 - - uid: 15670 + - uid: 16205 components: - type: Transform pos: -175.5,15.5 parent: 2 - - uid: 15671 + - uid: 16206 components: - type: Transform pos: -209.5,16.5 parent: 2 - - uid: 15672 + - uid: 16207 components: - type: Transform pos: -210.5,16.5 parent: 2 - - uid: 15673 + - uid: 16208 components: - type: Transform pos: -210.5,15.5 parent: 2 - - uid: 15674 + - uid: 16209 components: - type: Transform pos: -210.5,14.5 parent: 2 - - uid: 15675 + - uid: 16210 components: - type: Transform pos: -76.5,-21.5 parent: 2 - - uid: 15676 + - uid: 16211 components: - type: Transform pos: -97.5,-9.5 parent: 2 - - uid: 15677 + - uid: 16212 components: - type: Transform pos: -97.5,-8.5 parent: 2 - - uid: 15678 + - uid: 16213 components: - type: Transform pos: -97.5,-7.5 parent: 2 - - uid: 15679 + - uid: 16214 components: - type: Transform pos: -97.5,-6.5 parent: 2 - - uid: 15680 + - uid: 16215 components: - type: Transform pos: -76.5,-19.5 parent: 2 - - uid: 15681 + - uid: 16216 components: - type: Transform pos: -76.5,-20.5 parent: 2 - - uid: 15682 + - uid: 16217 components: - type: Transform rot: -1.5707963267948966 rad pos: -176.5,10.5 parent: 2 - - uid: 15683 + - uid: 16218 components: - type: Transform pos: -175.5,14.5 parent: 2 - - uid: 15684 + - uid: 16219 components: - type: Transform pos: -178.5,9.5 parent: 2 - - uid: 15685 + - uid: 16220 components: - type: Transform pos: -178.5,11.5 parent: 2 - - uid: 15686 + - uid: 16221 components: - type: Transform pos: -178.5,12.5 parent: 2 - - uid: 15687 + - uid: 16222 components: - type: Transform pos: -178.5,13.5 parent: 2 - - uid: 15688 + - uid: 16223 components: - type: Transform pos: -177.5,13.5 parent: 2 - - uid: 15689 + - uid: 16224 components: - type: Transform pos: -177.5,14.5 parent: 2 - - uid: 15690 + - uid: 16225 components: - type: Transform pos: -176.5,15.5 parent: 2 - - uid: 15691 + - uid: 16226 components: - type: Transform pos: -176.5,16.5 parent: 2 - - uid: 15692 + - uid: 16227 components: - type: Transform pos: -177.5,15.5 parent: 2 - - uid: 15693 + - uid: 16228 components: - type: Transform pos: -175.5,17.5 parent: 2 - - uid: 15694 + - uid: 16229 components: - type: Transform pos: -174.5,17.5 parent: 2 - - uid: 15695 + - uid: 16230 components: - type: Transform pos: -173.5,17.5 parent: 2 - - uid: 15696 + - uid: 16231 components: - type: Transform pos: -172.5,17.5 parent: 2 - - uid: 15697 + - uid: 16232 components: - type: Transform pos: -171.5,17.5 parent: 2 - - uid: 15698 + - uid: 16233 components: - type: Transform pos: -170.5,17.5 parent: 2 - - uid: 15699 + - uid: 16234 components: - type: Transform pos: -169.5,17.5 parent: 2 - - uid: 15700 + - uid: 16235 components: - type: Transform pos: -168.5,17.5 parent: 2 - - uid: 15701 + - uid: 16236 + components: + - type: Transform + pos: -176.5,17.5 + parent: 2 + - uid: 16237 + components: + - type: Transform + pos: -167.5,17.5 + parent: 2 + - uid: 16238 + components: + - type: Transform + pos: -167.5,16.5 + parent: 2 + - uid: 16239 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 2 + - uid: 16240 + components: + - type: Transform + pos: -169.5,-25.5 + parent: 2 + - uid: 16241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -219.5,-3.5 + parent: 2 + - uid: 16242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -215.5,-17.5 + parent: 2 + - uid: 16243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -219.5,-4.5 + parent: 2 +- proto: WallReinforcedRust + entities: + - uid: 16244 + components: + - type: Transform + pos: -170.5,-25.5 + parent: 2 + - uid: 16245 + components: + - type: Transform + pos: -170.5,-24.5 + parent: 2 + - uid: 16246 + components: + - type: Transform + pos: -170.5,-22.5 + parent: 2 +- proto: WallShuttle + entities: + - uid: 16247 + components: + - type: Transform + pos: -201.5,11.5 + parent: 2 + - uid: 16248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -188.5,14.5 + parent: 2 + - uid: 16249 + components: + - type: Transform + pos: -201.5,5.5 + parent: 2 + - uid: 16250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -188.5,2.5 + parent: 2 + - uid: 16251 + components: + - type: Transform + pos: -200.5,13.5 + parent: 2 + - uid: 16252 components: - type: Transform - pos: -176.5,17.5 + pos: -201.5,14.5 parent: 2 - - uid: 15702 + - uid: 16253 components: - type: Transform - pos: -167.5,17.5 + pos: -202.5,14.5 parent: 2 - - uid: 15703 + - uid: 16254 components: - type: Transform - pos: -167.5,16.5 + rot: -1.5707963267948966 rad + pos: -199.5,17.5 parent: 2 - - uid: 15704 + - uid: 16255 components: - type: Transform - pos: -3.5,-14.5 + rot: 3.141592653589793 rad + pos: -192.5,6.5 parent: 2 - - uid: 15705 + - uid: 16256 components: - type: Transform - pos: -169.5,-25.5 + pos: -194.5,5.5 parent: 2 -- proto: WallReinforcedRust - entities: - - uid: 15706 + - uid: 16257 components: - type: Transform - pos: -170.5,-25.5 + pos: -194.5,10.5 parent: 2 - - uid: 15707 + - uid: 16258 components: - type: Transform - pos: -170.5,-24.5 + pos: -193.5,10.5 parent: 2 - - uid: 15708 + - uid: 16259 components: - type: Transform - pos: -170.5,-22.5 + pos: -193.5,6.5 parent: 2 -- proto: WallShuttle - entities: - - uid: 15709 + - uid: 16260 components: - type: Transform - pos: -201.5,0.5 + rot: -1.5707963267948966 rad + pos: -191.5,9.5 parent: 2 - - uid: 15710 + - uid: 16261 components: - type: Transform - pos: -191.5,0.5 + rot: -1.5707963267948966 rad + pos: -190.5,15.5 parent: 2 - - uid: 15711 + - uid: 16262 components: - type: Transform - pos: -182.5,-28.5 + rot: -1.5707963267948966 rad + pos: -191.5,14.5 parent: 2 - - uid: 15712 + - uid: 16263 components: - type: Transform - pos: -181.5,-28.5 + rot: -1.5707963267948966 rad + pos: -195.5,15.5 parent: 2 - - uid: 15713 + - uid: 16264 components: - type: Transform rot: -1.5707963267948966 rad - pos: -107.5,2.5 + pos: -192.5,14.5 parent: 2 - - uid: 15714 + - uid: 16265 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -189.5,-26.5 + pos: -202.5,2.5 parent: 2 - - uid: 15715 + - uid: 16266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -190.5,-28.5 + pos: -201.5,2.5 parent: 2 - - uid: 15716 + - uid: 16267 components: - type: Transform - pos: -196.5,0.5 + pos: -200.5,1.5 parent: 2 - - uid: 15717 + - uid: 16268 components: - type: Transform - pos: -192.5,-22.5 + rot: 1.5707963267948966 rad + pos: -196.5,0.5 parent: 2 - - uid: 15718 + - uid: 16269 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -199.5,14.5 + rot: 1.5707963267948966 rad + pos: -195.5,0.5 parent: 2 - - uid: 15719 + - uid: 16270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -193.5,16.5 + rot: 1.5707963267948966 rad + pos: -197.5,0.5 parent: 2 - - uid: 15720 + - uid: 16271 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -193.5,17.5 + pos: -194.5,6.5 parent: 2 - - uid: 15721 + - uid: 16272 components: - type: Transform rot: -1.5707963267948966 rad - pos: -193.5,14.5 + pos: -194.5,14.5 parent: 2 - - uid: 15722 + - uid: 16273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,0.5 + rot: 3.141592653589793 rad + pos: -192.5,10.5 parent: 2 - - uid: 15723 + - uid: 16274 components: - type: Transform - pos: -191.5,3.5 + rot: 1.5707963267948966 rad + pos: -194.5,0.5 parent: 2 - - uid: 15724 + - uid: 16275 components: - type: Transform - pos: -196.5,28.5 + rot: 1.5707963267948966 rad + pos: -192.5,0.5 parent: 2 - - uid: 15725 + - uid: 16276 components: - type: Transform - pos: -191.5,5.5 + rot: 1.5707963267948966 rad + pos: -193.5,0.5 parent: 2 - - uid: 15726 + - uid: 16277 components: - type: Transform - pos: -199.5,27.5 + pos: -200.5,0.5 parent: 2 - - uid: 15727 + - uid: 16278 components: - type: Transform - pos: -193.5,28.5 + rot: 1.5707963267948966 rad + pos: -199.5,0.5 parent: 2 - - uid: 15728 + - uid: 16279 components: - type: Transform - pos: -195.5,28.5 + rot: 1.5707963267948966 rad + pos: -198.5,0.5 parent: 2 - - uid: 15729 + - uid: 16280 components: - type: Transform rot: -1.5707963267948966 rad - pos: -100.5,0.5 + pos: -202.5,5.5 parent: 2 - - uid: 15730 + - uid: 16281 components: - type: Transform rot: -1.5707963267948966 rad - pos: -99.5,0.5 + pos: -202.5,3.5 parent: 2 - - uid: 15731 + - uid: 16282 components: - type: Transform rot: -1.5707963267948966 rad - pos: -99.5,1.5 + pos: -188.5,8.5 parent: 2 - - uid: 15732 + - uid: 16283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,2.5 + rot: 1.5707963267948966 rad + pos: -191.5,0.5 parent: 2 - - uid: 15733 + - uid: 16284 components: - type: Transform rot: -1.5707963267948966 rad - pos: -97.5,2.5 + pos: -189.5,14.5 parent: 2 - - uid: 15734 + - uid: 16285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,1.5 + rot: 3.141592653589793 rad + pos: -190.5,5.5 parent: 2 - - uid: 15735 + - uid: 16286 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,3.5 + rot: 3.141592653589793 rad + pos: -187.5,5.5 parent: 2 - - uid: 15736 + - uid: 16287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,5.5 + rot: 1.5707963267948966 rad + pos: -190.5,0.5 parent: 2 - - uid: 15737 + - uid: 16288 components: - type: Transform rot: -1.5707963267948966 rad - pos: -97.5,6.5 + pos: -187.5,11.5 parent: 2 - - uid: 15738 + - uid: 16289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,7.5 + pos: -200.5,11.5 parent: 2 - - uid: 15739 + - uid: 16290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,8.5 + rot: 3.141592653589793 rad + pos: -187.5,3.5 parent: 2 - - uid: 15740 + - uid: 16291 components: - type: Transform rot: -1.5707963267948966 rad - pos: -97.5,10.5 + pos: -187.5,13.5 parent: 2 - - uid: 15741 + - uid: 16292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,11.5 + rot: 3.141592653589793 rad + pos: -188.5,6.5 parent: 2 - - uid: 15742 + - uid: 16293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,12.5 + rot: 3.141592653589793 rad + pos: -189.5,6.5 parent: 2 - - uid: 15743 + - uid: 16294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,12.5 + rot: 3.141592653589793 rad + pos: -190.5,6.5 parent: 2 - - uid: 15744 + - uid: 16295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,13.5 + pos: -194.5,11.5 parent: 2 - - uid: 15745 + - uid: 16296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,14.5 + rot: 3.141592653589793 rad + pos: -190.5,2.5 parent: 2 - - uid: 15746 + - uid: 16297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,15.5 + rot: 3.141592653589793 rad + pos: -190.5,3.5 parent: 2 - - uid: 15747 + - uid: 16298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,15.5 + pos: -198.5,5.5 parent: 2 - - uid: 15748 + - uid: 16299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,16.5 + pos: -191.5,6.5 parent: 2 - - uid: 15749 + - uid: 16300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,17.5 + pos: -200.5,2.5 parent: 2 - - uid: 15750 + - uid: 16301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,18.5 + pos: -200.5,3.5 parent: 2 - - uid: 15751 + - uid: 16302 components: - type: Transform rot: -1.5707963267948966 rad - pos: -100.5,18.5 + pos: -195.5,17.5 parent: 2 - - uid: 15752 + - uid: 16303 components: - type: Transform rot: -1.5707963267948966 rad - pos: -100.5,19.5 + pos: -191.5,17.5 parent: 2 - - uid: 15753 + - uid: 16304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,20.5 + pos: -190.5,14.5 parent: 2 - - uid: 15754 + - uid: 16305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,23.5 + rot: 1.5707963267948966 rad + pos: -190.5,1.5 parent: 2 - - uid: 15755 + - uid: 16306 + components: + - type: Transform + pos: -200.5,14.5 + parent: 2 + - uid: 16307 components: - type: Transform rot: -1.5707963267948966 rad - pos: -103.5,23.5 + pos: -188.5,9.5 parent: 2 - - uid: 15756 + - uid: 16308 components: - type: Transform - pos: -100.5,22.5 + pos: -202.5,10.5 parent: 2 - - uid: 15757 + - uid: 16309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,20.5 + pos: -200.5,15.5 parent: 2 - - uid: 15758 + - uid: 16310 components: - type: Transform rot: -1.5707963267948966 rad - pos: -104.5,19.5 + pos: -188.5,7.5 parent: 2 - - uid: 15759 + - uid: 16311 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,18.5 + pos: -200.5,5.5 parent: 2 - - uid: 15760 + - uid: 16312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,18.5 + pos: -202.5,13.5 parent: 2 - - uid: 15761 + - uid: 16313 components: - type: Transform rot: -1.5707963267948966 rad - pos: -105.5,17.5 + pos: -199.5,16.5 parent: 2 - - uid: 15762 + - uid: 16314 components: - type: Transform rot: -1.5707963267948966 rad - pos: -105.5,16.5 + pos: -191.5,16.5 parent: 2 - - uid: 15763 + - uid: 16315 components: - type: Transform rot: -1.5707963267948966 rad - pos: -105.5,15.5 + pos: -196.5,14.5 parent: 2 - - uid: 15764 + - uid: 16316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,15.5 + pos: -198.5,11.5 parent: 2 - - uid: 15765 + - uid: 16317 components: - type: Transform rot: -1.5707963267948966 rad - pos: -106.5,14.5 + pos: -191.5,7.5 parent: 2 - - uid: 15766 + - uid: 16318 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,13.5 + rot: 1.5707963267948966 rad + pos: -189.5,2.5 parent: 2 - - uid: 15767 + - uid: 16319 components: - type: Transform rot: -1.5707963267948966 rad - pos: -106.5,12.5 + pos: -190.5,10.5 parent: 2 - - uid: 15768 + - uid: 16320 components: - type: Transform rot: -1.5707963267948966 rad - pos: -107.5,12.5 + pos: -191.5,10.5 parent: 2 - - uid: 15769 + - uid: 16321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,11.5 + pos: -190.5,13.5 parent: 2 - - uid: 15770 + - uid: 16322 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,10.5 + pos: -190.5,11.5 parent: 2 - - uid: 15771 + - uid: 16323 components: - type: Transform rot: -1.5707963267948966 rad - pos: -107.5,8.5 + pos: -188.5,10.5 parent: 2 - - uid: 15772 + - uid: 16324 components: - type: Transform rot: -1.5707963267948966 rad - pos: -107.5,7.5 + pos: -196.5,17.5 parent: 2 - - uid: 15773 + - uid: 16325 components: - type: Transform rot: -1.5707963267948966 rad - pos: -107.5,6.5 + pos: -194.5,17.5 parent: 2 - - uid: 15774 + - uid: 16326 components: - type: Transform rot: -1.5707963267948966 rad - pos: -107.5,4.5 + pos: -195.5,16.5 parent: 2 - - uid: 15775 + - uid: 16327 components: - type: Transform rot: -1.5707963267948966 rad - pos: -107.5,3.5 + pos: -198.5,14.5 parent: 2 - - uid: 15776 + - uid: 16328 components: - type: Transform rot: -1.5707963267948966 rad - pos: -106.5,2.5 + pos: -189.5,10.5 parent: 2 - - uid: 15777 + - uid: 16329 components: - type: Transform rot: -1.5707963267948966 rad - pos: -106.5,1.5 + pos: -195.5,14.5 parent: 2 - - uid: 15778 + - uid: 16330 components: - type: Transform rot: -1.5707963267948966 rad - pos: -105.5,1.5 + pos: -199.5,14.5 parent: 2 - - uid: 15779 + - uid: 16331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,0.5 + pos: -202.5,6.5 parent: 2 - - uid: 15780 + - uid: 16332 components: - type: Transform rot: -1.5707963267948966 rad - pos: -104.5,0.5 + pos: -188.5,-31.5 parent: 2 - - uid: 15781 + - uid: 16333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -182.5,-31.5 + parent: 2 + - uid: 16334 components: - type: Transform rot: -1.5707963267948966 rad - pos: -103.5,0.5 + pos: -189.5,-31.5 parent: 2 - - uid: 15782 + - uid: 16335 components: - type: Transform - pos: -106.5,7.5 + rot: 3.141592653589793 rad + pos: -181.5,-23.5 parent: 2 - - uid: 15783 + - uid: 16336 components: - type: Transform - pos: -104.5,8.5 + rot: 3.141592653589793 rad + pos: -188.5,-29.5 parent: 2 - - uid: 15784 + - uid: 16337 components: - type: Transform - pos: -104.5,10.5 + rot: 3.141592653589793 rad + pos: -188.5,-30.5 parent: 2 - - uid: 15785 + - uid: 16338 components: - type: Transform - pos: -105.5,7.5 + rot: 3.141592653589793 rad + pos: -182.5,-28.5 parent: 2 - - uid: 15786 + - uid: 16339 components: - type: Transform - pos: -104.5,7.5 + rot: 3.141592653589793 rad + pos: -181.5,-30.5 parent: 2 - - uid: 15787 + - uid: 16340 components: - type: Transform - pos: -104.5,6.5 + rot: 3.141592653589793 rad + pos: -182.5,-23.5 parent: 2 - - uid: 15788 + - uid: 16341 components: - type: Transform - pos: -104.5,4.5 + rot: 3.141592653589793 rad + pos: -188.5,-21.5 parent: 2 - - uid: 15789 + - uid: 16342 components: - type: Transform - pos: -100.5,3.5 + pos: -191.5,-22.5 parent: 2 - - uid: 15790 + - uid: 16343 components: - type: Transform - pos: -98.5,3.5 + rot: 3.141592653589793 rad + pos: -182.5,-24.5 parent: 2 - - uid: 15791 + - uid: 16344 components: - type: Transform - pos: -104.5,3.5 + rot: -1.5707963267948966 rad + pos: -184.5,-31.5 parent: 2 - - uid: 15792 + - uid: 16345 components: - type: Transform - pos: -103.5,3.5 + rot: 3.141592653589793 rad + pos: -190.5,-26.5 parent: 2 - - uid: 15793 + - uid: 16346 components: - type: Transform - pos: -101.5,3.5 + rot: -1.5707963267948966 rad + pos: -190.5,-31.5 parent: 2 - - uid: 15794 + - uid: 16347 components: - type: Transform - pos: -106.5,3.5 + rot: 3.141592653589793 rad + pos: -188.5,-26.5 parent: 2 - - uid: 15795 + - uid: 16348 components: - type: Transform - pos: -100.5,15.5 + rot: 3.141592653589793 rad + pos: -188.5,-25.5 parent: 2 - - uid: 15796 + - uid: 16349 components: - type: Transform - pos: -104.5,15.5 + pos: -192.5,-23.5 parent: 2 - - uid: 15797 + - uid: 16350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -192.5,5.5 + rot: 3.141592653589793 rad + pos: -188.5,-27.5 parent: 2 - - uid: 15798 + - uid: 16351 components: - type: Transform - pos: -192.5,3.5 + pos: -192.5,-25.5 parent: 2 - - uid: 15799 + - uid: 16352 components: - type: Transform - pos: -200.5,3.5 + rot: 3.141592653589793 rad + pos: -181.5,-22.5 parent: 2 - - uid: 15800 + - uid: 16353 components: - type: Transform - pos: -200.5,5.5 + pos: -39.5,36.5 parent: 2 - - uid: 15801 + - uid: 16354 components: - type: Transform - pos: -193.5,27.5 + pos: -41.5,36.5 parent: 2 - - uid: 15802 + - uid: 16355 components: - type: Transform - pos: -189.5,-28.5 + pos: -40.5,36.5 parent: 2 - - uid: 15803 + - uid: 16356 components: - type: Transform - pos: -189.5,-27.5 + pos: -38.5,36.5 parent: 2 - - uid: 15804 + - uid: 16357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -191.5,-28.5 + pos: -42.5,36.5 parent: 2 - - uid: 15805 + - uid: 16358 components: - type: Transform - pos: -187.5,-26.5 + rot: 3.141592653589793 rad + pos: -44.5,32.5 parent: 2 - - uid: 15806 + - uid: 16359 components: - type: Transform - pos: -188.5,-26.5 + rot: 3.141592653589793 rad + pos: -43.5,31.5 parent: 2 - - uid: 15807 + - uid: 16360 components: - type: Transform - pos: -189.5,-29.5 + rot: 3.141592653589793 rad + pos: -43.5,35.5 parent: 2 - - uid: 15808 + - uid: 16361 components: - type: Transform - pos: -188.5,-29.5 + rot: 3.141592653589793 rad + pos: -44.5,34.5 parent: 2 - - uid: 15809 + - uid: 16362 components: - type: Transform - pos: -187.5,-29.5 + rot: 3.141592653589793 rad + pos: -39.5,31.5 parent: 2 - - uid: 15810 + - uid: 16363 components: - type: Transform - pos: -186.5,-29.5 + rot: 3.141592653589793 rad + pos: -40.5,32.5 parent: 2 - - uid: 15811 + - uid: 16364 components: - type: Transform - pos: -185.5,-29.5 + rot: 3.141592653589793 rad + pos: -39.5,32.5 parent: 2 - - uid: 15812 + - uid: 16365 components: - type: Transform - pos: -184.5,-29.5 + rot: 3.141592653589793 rad + pos: -35.5,31.5 parent: 2 - - uid: 15813 + - uid: 16366 components: - type: Transform - pos: -183.5,-29.5 + rot: 3.141592653589793 rad + pos: -34.5,31.5 parent: 2 - - uid: 15814 + - uid: 16367 components: - type: Transform - pos: -183.5,-28.5 + rot: 3.141592653589793 rad + pos: -40.5,35.5 parent: 2 - - uid: 15815 + - uid: 16368 components: - type: Transform - pos: -183.5,-27.5 + pos: -43.5,30.5 parent: 2 - - uid: 15816 + - uid: 16369 components: - type: Transform - pos: -183.5,-26.5 + pos: -36.5,30.5 parent: 2 - - uid: 15817 + - uid: 16370 components: - type: Transform - pos: -184.5,-26.5 + rot: 3.141592653589793 rad + pos: -40.5,34.5 parent: 2 - - uid: 15818 + - uid: 16371 components: - type: Transform - pos: -185.5,-26.5 + pos: -38.5,30.5 parent: 2 - - uid: 15819 + - uid: 16372 components: - type: Transform - pos: -181.5,-27.5 + pos: -37.5,30.5 parent: 2 - - uid: 15820 + - uid: 16373 components: - type: Transform - pos: -180.5,-27.5 + pos: -45.5,33.5 parent: 2 - - uid: 15821 + - uid: 16374 components: - type: Transform - pos: -179.5,-26.5 + pos: -44.5,35.5 parent: 2 - - uid: 15822 + - uid: 16375 components: - type: Transform - pos: -179.5,-25.5 + pos: -45.5,34.5 parent: 2 - - uid: 15823 + - uid: 16376 components: - type: Transform - pos: -179.5,-24.5 + pos: -43.5,36.5 parent: 2 - - uid: 15824 + - uid: 16377 components: - type: Transform - pos: -180.5,-23.5 + pos: -39.5,30.5 parent: 2 - - uid: 15825 + - uid: 16378 components: - type: Transform - pos: -181.5,-23.5 + pos: -44.5,31.5 parent: 2 - - uid: 15826 + - uid: 16379 components: - type: Transform - pos: -181.5,-22.5 + pos: -42.5,30.5 parent: 2 - - uid: 15827 + - uid: 16380 components: - type: Transform - pos: -181.5,-21.5 + pos: -45.5,32.5 parent: 2 - - uid: 15828 + - uid: 16381 components: - type: Transform - pos: -181.5,-20.5 + rot: 3.141592653589793 rad + pos: -35.5,30.5 parent: 2 - - uid: 15829 + - uid: 16382 components: - type: Transform - pos: -181.5,-18.5 + rot: 3.141592653589793 rad + pos: -189.5,-26.5 parent: 2 - - uid: 15830 + - uid: 16383 components: - type: Transform - pos: -181.5,-14.5 + rot: -1.5707963267948966 rad + pos: -183.5,-31.5 parent: 2 - - uid: 15831 + - uid: 16384 components: - type: Transform - pos: -181.5,-12.5 + rot: -1.5707963267948966 rad + pos: -107.5,2.5 parent: 2 - - uid: 15832 + - uid: 16385 components: - type: Transform - pos: -181.5,-11.5 + rot: -1.5707963267948966 rad + pos: -101.5,0.5 parent: 2 - - uid: 15833 + - uid: 16386 components: - type: Transform - pos: -181.5,-10.5 + rot: -1.5707963267948966 rad + pos: -100.5,0.5 parent: 2 - - uid: 15834 + - uid: 16387 components: - type: Transform - pos: -181.5,-9.5 + rot: -1.5707963267948966 rad + pos: -99.5,0.5 parent: 2 - - uid: 15835 + - uid: 16388 components: - type: Transform - pos: -181.5,-8.5 + rot: -1.5707963267948966 rad + pos: -99.5,1.5 parent: 2 - - uid: 15836 + - uid: 16389 components: - type: Transform - pos: -182.5,-8.5 + rot: -1.5707963267948966 rad + pos: -98.5,2.5 parent: 2 - - uid: 15837 + - uid: 16390 components: - type: Transform - pos: -182.5,-11.5 + rot: -1.5707963267948966 rad + pos: -97.5,2.5 parent: 2 - - uid: 15838 + - uid: 16391 components: - type: Transform - pos: -184.5,-11.5 + rot: -1.5707963267948966 rad + pos: -98.5,1.5 parent: 2 - - uid: 15839 + - uid: 16392 components: - type: Transform - pos: -185.5,-11.5 + rot: -1.5707963267948966 rad + pos: -97.5,3.5 parent: 2 - - uid: 15840 + - uid: 16393 components: - type: Transform - pos: -185.5,-10.5 + rot: -1.5707963267948966 rad + pos: -97.5,5.5 parent: 2 - - uid: 15841 + - uid: 16394 components: - type: Transform - pos: -185.5,-9.5 + rot: -1.5707963267948966 rad + pos: -97.5,6.5 parent: 2 - - uid: 15842 + - uid: 16395 components: - type: Transform - pos: -185.5,-8.5 + rot: -1.5707963267948966 rad + pos: -97.5,7.5 parent: 2 - - uid: 15843 + - uid: 16396 components: - type: Transform - pos: -185.5,-7.5 + rot: -1.5707963267948966 rad + pos: -97.5,8.5 parent: 2 - - uid: 15844 + - uid: 16397 components: - type: Transform - pos: -184.5,-7.5 + rot: -1.5707963267948966 rad + pos: -97.5,10.5 parent: 2 - - uid: 15845 + - uid: 16398 components: - type: Transform - pos: -183.5,-7.5 + rot: -1.5707963267948966 rad + pos: -97.5,11.5 parent: 2 - - uid: 15846 + - uid: 16399 components: - type: Transform - pos: -186.5,-11.5 + rot: -1.5707963267948966 rad + pos: -97.5,12.5 parent: 2 - - uid: 15847 + - uid: 16400 components: - type: Transform - pos: -188.5,-11.5 + rot: -1.5707963267948966 rad + pos: -98.5,12.5 parent: 2 - - uid: 15848 + - uid: 16401 components: - type: Transform - pos: -189.5,-11.5 + rot: -1.5707963267948966 rad + pos: -98.5,13.5 parent: 2 - - uid: 15849 + - uid: 16402 components: - type: Transform - pos: -190.5,-11.5 + rot: -1.5707963267948966 rad + pos: -98.5,14.5 parent: 2 - - uid: 15850 + - uid: 16403 components: - type: Transform - pos: -191.5,-11.5 + rot: -1.5707963267948966 rad + pos: -98.5,15.5 parent: 2 - - uid: 15851 + - uid: 16404 components: - type: Transform - pos: -191.5,-10.5 + rot: -1.5707963267948966 rad + pos: -99.5,15.5 parent: 2 - - uid: 15852 + - uid: 16405 components: - type: Transform - pos: -191.5,-9.5 + rot: -1.5707963267948966 rad + pos: -99.5,16.5 parent: 2 - - uid: 15853 + - uid: 16406 components: - type: Transform - pos: -191.5,-8.5 + rot: -1.5707963267948966 rad + pos: -99.5,17.5 parent: 2 - - uid: 15854 + - uid: 16407 components: - type: Transform - pos: -190.5,-8.5 + rot: -1.5707963267948966 rad + pos: -99.5,18.5 parent: 2 - - uid: 15855 + - uid: 16408 components: - type: Transform - pos: -191.5,-12.5 + rot: -1.5707963267948966 rad + pos: -100.5,18.5 parent: 2 - - uid: 15856 + - uid: 16409 components: - type: Transform - pos: -191.5,-14.5 + rot: -1.5707963267948966 rad + pos: -100.5,19.5 parent: 2 - - uid: 15857 + - uid: 16410 components: - type: Transform - pos: -191.5,-18.5 + rot: -1.5707963267948966 rad + pos: -100.5,20.5 parent: 2 - - uid: 15858 + - uid: 16411 components: - type: Transform - pos: -191.5,-20.5 + rot: -1.5707963267948966 rad + pos: -101.5,23.5 parent: 2 - - uid: 15859 + - uid: 16412 components: - type: Transform - pos: -191.5,-21.5 + rot: -1.5707963267948966 rad + pos: -103.5,23.5 parent: 2 - - uid: 15860 + - uid: 16413 components: - type: Transform - pos: -190.5,-21.5 + pos: -100.5,22.5 parent: 2 - - uid: 15861 + - uid: 16414 components: - type: Transform - pos: -189.5,-21.5 + rot: -1.5707963267948966 rad + pos: -104.5,20.5 parent: 2 - - uid: 15862 + - uid: 16415 components: - type: Transform - pos: -183.5,-21.5 + rot: -1.5707963267948966 rad + pos: -104.5,19.5 parent: 2 - - uid: 15863 + - uid: 16416 components: - type: Transform - pos: -182.5,-21.5 + rot: -1.5707963267948966 rad + pos: -104.5,18.5 parent: 2 - - uid: 15864 + - uid: 16417 components: - type: Transform - pos: -191.5,-22.5 + rot: -1.5707963267948966 rad + pos: -105.5,18.5 parent: 2 - - uid: 15865 + - uid: 16418 components: - type: Transform - pos: -192.5,-23.5 + rot: -1.5707963267948966 rad + pos: -105.5,17.5 parent: 2 - - uid: 15866 + - uid: 16419 components: - type: Transform - pos: -193.5,-24.5 + rot: -1.5707963267948966 rad + pos: -105.5,16.5 parent: 2 - - uid: 15867 + - uid: 16420 components: - type: Transform - pos: -193.5,-25.5 + rot: -1.5707963267948966 rad + pos: -105.5,15.5 parent: 2 - - uid: 15868 + - uid: 16421 components: - type: Transform - pos: -193.5,-26.5 + rot: -1.5707963267948966 rad + pos: -106.5,15.5 parent: 2 - - uid: 15869 + - uid: 16422 components: - type: Transform - pos: -192.5,-27.5 + rot: -1.5707963267948966 rad + pos: -106.5,14.5 parent: 2 - - uid: 15870 + - uid: 16423 components: - type: Transform - pos: -192.5,-28.5 + rot: -1.5707963267948966 rad + pos: -106.5,13.5 parent: 2 - - uid: 15871 + - uid: 16424 components: - type: Transform - pos: -189.5,-7.5 + rot: -1.5707963267948966 rad + pos: -106.5,12.5 parent: 2 - - uid: 15872 + - uid: 16425 components: - type: Transform - pos: -189.5,-8.5 + rot: -1.5707963267948966 rad + pos: -107.5,12.5 parent: 2 - - uid: 15873 + - uid: 16426 components: - type: Transform - pos: -191.5,1.5 + rot: -1.5707963267948966 rad + pos: -107.5,11.5 parent: 2 - - uid: 15874 + - uid: 16427 components: - type: Transform - pos: -190.5,2.5 + rot: -1.5707963267948966 rad + pos: -107.5,10.5 parent: 2 - - uid: 15875 + - uid: 16428 components: - type: Transform - pos: -190.5,3.5 + rot: -1.5707963267948966 rad + pos: -107.5,8.5 parent: 2 - - uid: 15876 + - uid: 16429 components: - type: Transform - pos: -192.5,0.5 + rot: -1.5707963267948966 rad + pos: -107.5,7.5 parent: 2 - - uid: 15877 + - uid: 16430 components: - type: Transform - pos: -200.5,0.5 + rot: -1.5707963267948966 rad + pos: -107.5,6.5 parent: 2 - - uid: 15878 + - uid: 16431 components: - type: Transform - pos: -201.5,1.5 + rot: -1.5707963267948966 rad + pos: -107.5,4.5 parent: 2 - - uid: 15879 + - uid: 16432 components: - type: Transform - pos: -202.5,2.5 + rot: -1.5707963267948966 rad + pos: -107.5,3.5 parent: 2 - - uid: 15880 + - uid: 16433 components: - type: Transform - pos: -202.5,3.5 + rot: -1.5707963267948966 rad + pos: -106.5,2.5 parent: 2 - - uid: 15881 + - uid: 16434 components: - type: Transform - pos: -202.5,12.5 + rot: -1.5707963267948966 rad + pos: -106.5,1.5 parent: 2 - - uid: 15882 + - uid: 16435 components: - type: Transform - pos: -202.5,13.5 + rot: -1.5707963267948966 rad + pos: -105.5,1.5 parent: 2 - - uid: 15883 + - uid: 16436 components: - type: Transform - pos: -202.5,14.5 + rot: -1.5707963267948966 rad + pos: -105.5,0.5 parent: 2 - - uid: 15884 + - uid: 16437 components: - type: Transform - pos: -202.5,15.5 + rot: -1.5707963267948966 rad + pos: -104.5,0.5 parent: 2 - - uid: 15885 + - uid: 16438 components: - type: Transform - pos: -202.5,16.5 + rot: -1.5707963267948966 rad + pos: -103.5,0.5 parent: 2 - - uid: 15886 + - uid: 16439 components: - type: Transform - pos: -202.5,17.5 + pos: -106.5,7.5 parent: 2 - - uid: 15887 + - uid: 16440 components: - type: Transform - pos: -203.5,17.5 + pos: -104.5,8.5 parent: 2 - - uid: 15888 + - uid: 16441 components: - type: Transform - pos: -203.5,18.5 + pos: -104.5,10.5 parent: 2 - - uid: 15889 + - uid: 16442 components: - type: Transform - pos: -204.5,18.5 + pos: -105.5,7.5 parent: 2 - - uid: 15890 + - uid: 16443 components: - type: Transform - pos: -204.5,22.5 + pos: -104.5,7.5 parent: 2 - - uid: 15891 + - uid: 16444 components: - type: Transform - pos: -203.5,22.5 + pos: -104.5,6.5 parent: 2 - - uid: 15892 + - uid: 16445 components: - type: Transform - pos: -203.5,23.5 + pos: -104.5,4.5 parent: 2 - - uid: 15893 + - uid: 16446 components: - type: Transform - pos: -203.5,24.5 + pos: -100.5,3.5 parent: 2 - - uid: 15894 + - uid: 16447 components: - type: Transform - pos: -202.5,23.5 + pos: -98.5,3.5 parent: 2 - - uid: 15895 + - uid: 16448 components: - type: Transform - pos: -202.5,24.5 + pos: -104.5,3.5 parent: 2 - - uid: 15896 + - uid: 16449 components: - type: Transform - pos: -201.5,24.5 + pos: -103.5,3.5 parent: 2 - - uid: 15897 + - uid: 16450 components: - type: Transform - pos: -201.5,25.5 + pos: -101.5,3.5 parent: 2 - - uid: 15898 + - uid: 16451 components: - type: Transform - pos: -200.5,24.5 + pos: -106.5,3.5 parent: 2 - - uid: 15899 + - uid: 16452 components: - type: Transform - pos: -200.5,25.5 + pos: -100.5,15.5 parent: 2 - - uid: 15900 + - uid: 16453 components: - type: Transform - pos: -200.5,26.5 + pos: -104.5,15.5 parent: 2 - - uid: 15901 + - uid: 16454 components: - type: Transform - pos: -200.5,27.5 + rot: -1.5707963267948966 rad + pos: -191.5,-30.5 parent: 2 - - uid: 15902 + - uid: 16455 components: - type: Transform - pos: -196.5,27.5 + pos: -192.5,-29.5 parent: 2 - - uid: 15903 + - uid: 16456 components: - type: Transform - pos: -196.5,26.5 + pos: -182.5,-21.5 parent: 2 - - uid: 15904 + - uid: 16457 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -196.5,25.5 + rot: 3.141592653589793 rad + pos: -188.5,-22.5 parent: 2 - - uid: 15905 + - uid: 16458 components: - type: Transform - pos: -196.5,24.5 + rot: -1.5707963267948966 rad + pos: -186.5,-31.5 parent: 2 - - uid: 15906 + - uid: 16459 components: - type: Transform - pos: -199.5,24.5 + pos: -181.5,-21.5 parent: 2 - - uid: 15907 + - uid: 16460 components: - type: Transform - pos: -193.5,24.5 + pos: -181.5,-20.5 parent: 2 - - uid: 15908 + - uid: 16461 components: - type: Transform - pos: -192.5,24.5 + pos: -181.5,-18.5 parent: 2 - - uid: 15909 + - uid: 16462 components: - type: Transform - pos: -192.5,25.5 + pos: -181.5,-14.5 parent: 2 - - uid: 15910 + - uid: 16463 components: - type: Transform - pos: -192.5,26.5 + pos: -181.5,-12.5 parent: 2 - - uid: 15911 + - uid: 16464 components: - type: Transform - pos: -192.5,27.5 + pos: -181.5,-11.5 parent: 2 - - uid: 15912 + - uid: 16465 components: - type: Transform - pos: -191.5,24.5 + pos: -181.5,-10.5 parent: 2 - - uid: 15913 + - uid: 16466 components: - type: Transform - pos: -191.5,25.5 + pos: -181.5,-9.5 parent: 2 - - uid: 15914 + - uid: 16467 components: - type: Transform - pos: -190.5,24.5 + pos: -182.5,-8.5 parent: 2 - - uid: 15915 + - uid: 16468 components: - type: Transform - pos: -189.5,23.5 + pos: -182.5,-11.5 parent: 2 - - uid: 15916 + - uid: 16469 components: - type: Transform - pos: -189.5,24.5 + pos: -184.5,-11.5 parent: 2 - - uid: 15917 + - uid: 16470 components: - type: Transform - pos: -189.5,22.5 + pos: -185.5,-11.5 parent: 2 - - uid: 15918 + - uid: 16471 components: - type: Transform - pos: -188.5,22.5 + pos: -185.5,-10.5 parent: 2 - - uid: 15919 + - uid: 16472 components: - type: Transform - pos: -189.5,18.5 + pos: -185.5,-9.5 parent: 2 - - uid: 15920 + - uid: 16473 components: - type: Transform - pos: -188.5,18.5 + pos: -185.5,-8.5 parent: 2 - - uid: 15921 + - uid: 16474 components: - type: Transform - pos: -189.5,17.5 + pos: -185.5,-7.5 parent: 2 - - uid: 15922 + - uid: 16475 components: - type: Transform - pos: -190.5,17.5 + pos: -184.5,-7.5 parent: 2 - - uid: 15923 + - uid: 16476 components: - type: Transform - pos: -191.5,17.5 + pos: -183.5,-7.5 parent: 2 - - uid: 15924 + - uid: 16477 components: - type: Transform - pos: -190.5,16.5 + pos: -186.5,-11.5 parent: 2 - - uid: 15925 + - uid: 16478 components: - type: Transform - pos: -190.5,15.5 + pos: -188.5,-11.5 parent: 2 - - uid: 15926 + - uid: 16479 components: - type: Transform - pos: -190.5,14.5 + pos: -189.5,-11.5 parent: 2 - - uid: 15927 + - uid: 16480 components: - type: Transform - pos: -190.5,13.5 + pos: -190.5,-11.5 parent: 2 - - uid: 15928 + - uid: 16481 components: - type: Transform - pos: -190.5,12.5 + pos: -191.5,-11.5 parent: 2 - - uid: 15929 + - uid: 16482 components: - type: Transform - pos: -191.5,13.5 + pos: -191.5,-10.5 parent: 2 - - uid: 15930 + - uid: 16483 components: - type: Transform - pos: -192.5,13.5 + pos: -191.5,-9.5 parent: 2 - - uid: 15931 + - uid: 16484 components: - type: Transform - pos: -190.5,10.5 + pos: -190.5,-8.5 parent: 2 - - uid: 15932 + - uid: 16485 components: - type: Transform - pos: -190.5,9.5 + pos: -191.5,-12.5 parent: 2 - - uid: 15933 + - uid: 16486 components: - type: Transform - pos: -193.5,13.5 + pos: -191.5,-14.5 parent: 2 - - uid: 15934 + - uid: 16487 components: - type: Transform - pos: -193.5,12.5 + pos: -191.5,-18.5 parent: 2 - - uid: 15935 + - uid: 16488 components: - type: Transform - pos: -193.5,10.5 + pos: -191.5,-20.5 parent: 2 - - uid: 15936 + - uid: 16489 components: - type: Transform - pos: -193.5,9.5 + pos: -191.5,-21.5 parent: 2 - - uid: 15937 + - uid: 16490 components: - type: Transform - pos: -192.5,9.5 + pos: -190.5,-21.5 parent: 2 - - uid: 15938 + - uid: 16491 components: - type: Transform - pos: -191.5,9.5 + pos: -189.5,-21.5 parent: 2 - - uid: 15939 + - uid: 16492 components: - type: Transform - pos: -190.5,5.5 + pos: -183.5,-21.5 parent: 2 - - uid: 15940 + - uid: 16493 components: - type: Transform - pos: -201.5,9.5 + pos: -192.5,-26.5 parent: 2 - - uid: 15941 + - uid: 16494 components: - type: Transform - pos: -200.5,9.5 + pos: -192.5,-27.5 parent: 2 - - uid: 15942 + - uid: 16495 components: - type: Transform - pos: -199.5,9.5 + rot: 3.141592653589793 rad + pos: -191.5,-26.5 parent: 2 - - uid: 15943 + - uid: 16496 components: - type: Transform - pos: -199.5,10.5 + pos: -189.5,-7.5 parent: 2 - - uid: 15944 + - uid: 16497 components: - type: Transform - pos: -199.5,12.5 + pos: -189.5,-8.5 parent: 2 - - uid: 15945 + - uid: 16498 components: - type: Transform - pos: -199.5,13.5 + pos: -104.5,22.5 parent: 2 - - uid: 15946 + - uid: 16499 components: - type: Transform - pos: -200.5,13.5 + pos: -101.5,20.5 parent: 2 - - uid: 15947 + - uid: 16500 components: - type: Transform - pos: -201.5,13.5 + pos: -103.5,20.5 parent: 2 - - uid: 15948 + - uid: 16501 components: - type: Transform - pos: -201.5,17.5 + pos: -183.5,-8.5 parent: 2 - - uid: 15949 + - uid: 16502 components: - type: Transform - pos: -200.5,17.5 + pos: -104.5,11.5 parent: 2 - - uid: 15950 + - uid: 16503 components: - type: Transform - pos: -200.5,18.5 + pos: -105.5,11.5 parent: 2 - - uid: 15951 + - uid: 16504 components: - type: Transform - pos: -200.5,23.5 + pos: -106.5,11.5 parent: 2 - - uid: 15952 + - uid: 16505 components: - type: Transform - pos: -192.5,23.5 + pos: -100.5,11.5 parent: 2 - - uid: 15953 + - uid: 16506 components: - type: Transform - pos: -202.5,10.5 + pos: -100.5,10.5 parent: 2 - - uid: 15954 + - uid: 16507 components: - type: Transform - pos: -202.5,9.5 + pos: -99.5,11.5 parent: 2 - - uid: 15955 + - uid: 16508 components: - type: Transform - pos: -192.5,18.5 + pos: -98.5,11.5 parent: 2 - - uid: 15956 + - uid: 16509 components: - type: Transform - pos: -192.5,17.5 + pos: -100.5,8.5 parent: 2 - - uid: 15957 + - uid: 16510 components: - type: Transform - pos: -202.5,5.5 + pos: -100.5,7.5 parent: 2 - - uid: 15958 + - uid: 16511 components: - type: Transform - pos: -201.5,5.5 + pos: -99.5,7.5 parent: 2 - - uid: 15959 + - uid: 16512 components: - type: Transform - pos: -201.5,3.5 + pos: -98.5,7.5 parent: 2 - - uid: 15960 + - uid: 16513 components: - type: Transform - pos: -197.5,28.5 + rot: 3.141592653589793 rad + pos: -188.5,-19.5 parent: 2 - - uid: 15961 + - uid: 16514 components: - type: Transform - pos: -199.5,28.5 + rot: 3.141592653589793 rad + pos: -184.5,-14.5 parent: 2 - - uid: 15962 + - uid: 16515 components: - type: Transform - pos: -104.5,22.5 + rot: 3.141592653589793 rad + pos: -184.5,-18.5 parent: 2 - - uid: 15963 + - uid: 16516 components: - type: Transform - pos: -101.5,20.5 + rot: 3.141592653589793 rad + pos: -186.5,-14.5 parent: 2 - - uid: 15964 + - uid: 16517 components: - type: Transform - pos: -103.5,20.5 + rot: 3.141592653589793 rad + pos: -184.5,-19.5 parent: 2 - - uid: 15965 + - uid: 16518 components: - type: Transform - pos: -183.5,-8.5 + rot: 3.141592653589793 rad + pos: -188.5,-14.5 parent: 2 - - uid: 15966 + - uid: 16519 components: - type: Transform - pos: -180.5,-26.5 + rot: 3.141592653589793 rad + pos: -188.5,-18.5 parent: 2 - - uid: 15967 + - uid: 16520 components: - type: Transform - pos: -192.5,-26.5 + pos: -101.5,15.5 parent: 2 - - uid: 15968 + - uid: 16521 components: - type: Transform - pos: -104.5,11.5 + pos: -103.5,15.5 parent: 2 - - uid: 15969 + - uid: 16522 components: - type: Transform - pos: -105.5,11.5 + rot: -1.5707963267948966 rad + pos: -187.5,-26.5 parent: 2 - - uid: 15970 + - uid: 16523 components: - type: Transform - pos: -106.5,11.5 + rot: -1.5707963267948966 rad + pos: -186.5,-26.5 parent: 2 - - uid: 15971 + - uid: 16524 components: - type: Transform - pos: -100.5,11.5 + rot: 3.141592653589793 rad + pos: -181.5,-29.5 parent: 2 - - uid: 15972 + - uid: 16525 components: - type: Transform - pos: -100.5,10.5 + rot: 3.141592653589793 rad + pos: -182.5,-29.5 parent: 2 - - uid: 15973 + - uid: 16526 components: - type: Transform - pos: -99.5,11.5 + rot: 1.5707963267948966 rad + pos: -183.5,-28.5 parent: 2 - - uid: 15974 + - uid: 16527 components: - type: Transform - pos: -98.5,11.5 + pos: -202.5,11.5 parent: 2 - - uid: 15975 + - uid: 17541 components: - type: Transform - pos: -100.5,8.5 + pos: -37.5,36.5 parent: 2 - - uid: 15976 + - uid: 17542 components: - type: Transform - pos: -100.5,7.5 + pos: -35.5,36.5 parent: 2 - - uid: 15977 + - uid: 17543 components: - type: Transform - pos: -99.5,7.5 + pos: -36.5,36.5 parent: 2 - - uid: 15978 + - uid: 17544 components: - type: Transform - pos: -98.5,7.5 + pos: -35.5,35.5 parent: 2 - - uid: 15979 + - uid: 17545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -199.5,16.5 + pos: -34.5,35.5 parent: 2 - - uid: 15980 + - uid: 17546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -199.5,17.5 + pos: -34.5,34.5 parent: 2 - - uid: 15981 + - uid: 17547 components: - type: Transform - rot: 3.141592653589793 rad - pos: -188.5,-19.5 + pos: -34.5,32.5 parent: 2 - - uid: 15982 +- proto: WallShuttleDiagonal + entities: + - uid: 16528 components: - type: Transform - rot: 3.141592653589793 rad - pos: -184.5,-14.5 + rot: -1.5707963267948966 rad + pos: -189.5,15.5 parent: 2 - - uid: 15983 + - uid: 16529 components: - type: Transform - rot: 3.141592653589793 rad - pos: -184.5,-18.5 + rot: -1.5707963267948966 rad + pos: -190.5,16.5 parent: 2 - - uid: 15984 + - uid: 16530 components: - type: Transform rot: 3.141592653589793 rad - pos: -186.5,-14.5 + pos: -189.5,1.5 parent: 2 - - uid: 15985 + - uid: 16531 components: - type: Transform - rot: 3.141592653589793 rad - pos: -184.5,-19.5 + rot: -1.5707963267948966 rad + pos: -187.5,6.5 parent: 2 - - uid: 15986 + - uid: 16532 components: - type: Transform rot: 3.141592653589793 rad - pos: -188.5,-14.5 + pos: -187.5,2.5 parent: 2 - - uid: 15987 + - uid: 16533 components: - type: Transform - rot: 3.141592653589793 rad - pos: -188.5,-18.5 + pos: -201.5,15.5 parent: 2 - - uid: 15988 + - uid: 16534 components: - type: Transform - rot: 3.141592653589793 rad - pos: -189.5,-22.5 + rot: -1.5707963267948966 rad + pos: -196.5,18.5 parent: 2 - - uid: 15989 + - uid: 16535 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -193.5,-23.5 + pos: -200.5,16.5 parent: 2 - - uid: 15990 + - uid: 16536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -179.5,-23.5 + rot: -1.5707963267948966 rad + pos: -191.5,18.5 parent: 2 - - uid: 15991 + - uid: 16537 components: - type: Transform - rot: 3.141592653589793 rad - pos: -200.5,21.5 + pos: -199.5,18.5 parent: 2 - - uid: 15992 + - uid: 16538 components: - type: Transform - pos: -192.5,21.5 + rot: 1.5707963267948966 rad + pos: -201.5,1.5 parent: 2 - - uid: 15993 + - uid: 16539 components: - type: Transform - rot: 3.141592653589793 rad - pos: -199.5,5.5 + rot: -1.5707963267948966 rad + pos: -187.5,14.5 parent: 2 - - uid: 15994 + - uid: 16540 components: - type: Transform - rot: 3.141592653589793 rad - pos: -193.5,5.5 + pos: -194.5,18.5 parent: 2 - - uid: 15995 + - uid: 16541 components: - type: Transform rot: 3.141592653589793 rad - pos: -198.5,5.5 + pos: -187.5,10.5 parent: 2 - - uid: 15996 + - uid: 16542 components: - type: Transform - rot: 3.141592653589793 rad - pos: -194.5,5.5 + pos: -191.5,-8.5 parent: 2 - - uid: 15997 + - uid: 16543 components: - type: Transform - pos: -101.5,15.5 + rot: -1.5707963267948966 rad + pos: -181.5,-8.5 parent: 2 - - uid: 15998 + - uid: 16544 components: - type: Transform - pos: -103.5,15.5 + pos: -192.5,-22.5 parent: 2 - - uid: 15999 + - uid: 16545 components: - type: Transform - pos: -198.5,9.5 + rot: 1.5707963267948966 rad + pos: -191.5,-31.5 parent: 2 - - uid: 16000 + - uid: 16546 components: - type: Transform - pos: -194.5,9.5 + rot: 1.5707963267948966 rad + pos: -192.5,-30.5 parent: 2 -- proto: WallShuttleDiagonal - entities: - - uid: 16001 + - uid: 16547 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,23.5 parent: 2 - - uid: 16002 + - uid: 16548 components: - type: Transform pos: -104.5,23.5 parent: 2 + - uid: 16549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -181.5,-31.5 + parent: 2 - proto: WallSolid entities: - - uid: 16003 + - uid: 16550 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,9.5 parent: 2 - - uid: 16004 + - uid: 16551 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,-8.5 parent: 2 - - uid: 16005 + - uid: 16552 components: - type: Transform rot: 3.141592653589793 rad pos: -111.5,-8.5 parent: 2 - - uid: 16006 + - uid: 16553 components: - type: Transform pos: -168.5,-21.5 parent: 2 - - uid: 16007 + - uid: 16554 components: - type: Transform pos: -168.5,-23.5 parent: 2 - - uid: 16008 + - uid: 16555 components: - type: Transform pos: -171.5,-5.5 parent: 2 - - uid: 16009 + - uid: 16556 components: - type: Transform pos: -171.5,-8.5 parent: 2 - - uid: 16010 + - uid: 16557 components: - type: Transform pos: -171.5,-6.5 parent: 2 - - uid: 16011 + - uid: 16558 components: - type: Transform pos: -168.5,-25.5 parent: 2 - - uid: 16012 + - uid: 16559 components: - type: Transform pos: -168.5,-22.5 parent: 2 - - uid: 16013 + - uid: 16560 components: - type: Transform pos: -175.5,-9.5 parent: 2 - - uid: 16014 + - uid: 16561 components: - type: Transform pos: -174.5,-9.5 parent: 2 - - uid: 16015 + - uid: 16562 components: - type: Transform pos: -173.5,-9.5 parent: 2 - - uid: 16016 + - uid: 16563 components: - type: Transform pos: -172.5,-9.5 parent: 2 - - uid: 16017 + - uid: 16564 components: - type: Transform pos: -171.5,-9.5 parent: 2 - - uid: 16018 + - uid: 16565 components: - type: Transform pos: -171.5,-7.5 parent: 2 - - uid: 16019 + - uid: 16566 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,15.5 parent: 2 - - uid: 16020 + - uid: 16567 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,16.5 parent: 2 - - uid: 16021 + - uid: 16568 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,16.5 parent: 2 - - uid: 16022 + - uid: 16569 components: - type: Transform pos: -31.5,10.5 parent: 2 - - uid: 16023 + - uid: 16570 components: - type: Transform pos: -26.5,10.5 parent: 2 - - uid: 16024 + - uid: 16571 components: - type: Transform pos: -27.5,10.5 parent: 2 - - uid: 16025 + - uid: 16572 components: - type: Transform pos: -31.5,8.5 parent: 2 - - uid: 16026 + - uid: 16573 components: - type: Transform pos: -30.5,10.5 parent: 2 - - uid: 16027 + - uid: 16574 components: - type: Transform pos: -30.5,6.5 parent: 2 - - uid: 16028 + - uid: 16575 components: - type: Transform pos: -31.5,6.5 parent: 2 - - uid: 16029 + - uid: 16576 components: - type: Transform pos: -31.5,7.5 parent: 2 - - uid: 16030 + - uid: 16577 components: - type: Transform pos: -31.5,9.5 parent: 2 - - uid: 16031 + - uid: 16578 components: - type: Transform pos: -25.5,8.5 parent: 2 - - uid: 16032 + - uid: 16579 components: - type: Transform pos: -26.5,6.5 parent: 2 - - uid: 16033 + - uid: 16580 components: - type: Transform pos: -26.5,7.5 parent: 2 - - uid: 16034 + - uid: 16581 components: - type: Transform pos: -26.5,8.5 parent: 2 - - uid: 16035 + - uid: 16582 components: - type: Transform pos: -26.5,9.5 parent: 2 - - uid: 16036 + - uid: 16583 components: - type: Transform pos: -50.5,13.5 parent: 2 - - uid: 16037 + - uid: 16584 components: - type: Transform pos: -46.5,11.5 parent: 2 - - uid: 16038 + - uid: 16585 components: - type: Transform pos: -121.5,-3.5 parent: 2 - - uid: 16039 + - uid: 16586 components: - type: Transform pos: -109.5,-3.5 parent: 2 - - uid: 16040 + - uid: 16587 components: - type: Transform pos: -48.5,14.5 parent: 2 - - uid: 16041 + - uid: 16588 components: - type: Transform pos: -48.5,16.5 parent: 2 - - uid: 16042 + - uid: 16589 components: - type: Transform pos: -47.5,14.5 parent: 2 - - uid: 16043 + - uid: 16590 components: - type: Transform rot: 1.5707963267948966 rad pos: -112.5,-14.5 parent: 2 - - uid: 16044 + - uid: 16591 components: - type: Transform rot: 3.141592653589793 rad pos: -109.5,-12.5 parent: 2 - - uid: 16045 + - uid: 16592 components: - type: Transform rot: 1.5707963267948966 rad pos: -111.5,-14.5 parent: 2 - - uid: 16046 + - uid: 16593 components: - type: Transform rot: -1.5707963267948966 rad pos: -114.5,-16.5 parent: 2 - - uid: 16047 + - uid: 16594 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,-14.5 parent: 2 - - uid: 16048 + - uid: 16595 components: - type: Transform rot: 3.141592653589793 rad pos: -110.5,-15.5 parent: 2 - - uid: 16049 + - uid: 16596 components: - type: Transform rot: 3.141592653589793 rad pos: -110.5,-12.5 parent: 2 - - uid: 16050 + - uid: 16597 components: - type: Transform pos: -126.5,-13.5 parent: 2 - - uid: 16051 + - uid: 16598 components: - type: Transform pos: -128.5,-15.5 parent: 2 - - uid: 16052 + - uid: 16599 components: - type: Transform pos: -128.5,-14.5 parent: 2 - - uid: 16053 + - uid: 16600 components: - type: Transform rot: -1.5707963267948966 rad pos: -152.5,-14.5 parent: 2 - - uid: 16054 + - uid: 16601 components: - type: Transform rot: -1.5707963267948966 rad pos: -152.5,-16.5 parent: 2 - - uid: 16055 + - uid: 16602 components: - type: Transform rot: -1.5707963267948966 rad pos: -152.5,-15.5 parent: 2 - - uid: 16056 + - uid: 16603 components: - type: Transform rot: -1.5707963267948966 rad pos: -151.5,-18.5 parent: 2 - - uid: 16057 + - uid: 16604 components: - type: Transform rot: -1.5707963267948966 rad pos: -151.5,-17.5 parent: 2 - - uid: 16058 + - uid: 16605 components: - type: Transform rot: -1.5707963267948966 rad pos: -151.5,-16.5 parent: 2 - - uid: 16059 + - uid: 16606 components: - type: Transform pos: -160.5,-22.5 parent: 2 - - uid: 16060 + - uid: 16607 components: - type: Transform pos: -159.5,-22.5 parent: 2 - - uid: 16061 + - uid: 16608 components: - type: Transform pos: -158.5,-22.5 parent: 2 - - uid: 16062 + - uid: 16609 components: - type: Transform pos: -156.5,-22.5 parent: 2 - - uid: 16063 + - uid: 16610 components: - type: Transform pos: -154.5,-22.5 parent: 2 - - uid: 16064 + - uid: 16611 components: - type: Transform pos: -155.5,-22.5 parent: 2 - - uid: 16065 + - uid: 16612 components: - type: Transform pos: -155.5,-23.5 parent: 2 - - uid: 16066 + - uid: 16613 components: - type: Transform pos: -152.5,-22.5 parent: 2 - - uid: 16067 + - uid: 16614 components: - type: Transform pos: -159.5,-24.5 parent: 2 - - uid: 16068 + - uid: 16615 components: - type: Transform pos: -159.5,-23.5 parent: 2 - - uid: 16069 + - uid: 16616 components: - type: Transform pos: -159.5,-25.5 parent: 2 - - uid: 16070 + - uid: 16617 components: - type: Transform pos: -155.5,-24.5 parent: 2 - - uid: 16071 + - uid: 16618 components: - type: Transform pos: -155.5,-25.5 parent: 2 - - uid: 16072 + - uid: 16619 components: - type: Transform pos: -162.5,-22.5 parent: 2 - - uid: 16073 + - uid: 16620 components: - type: Transform pos: -162.5,-17.5 parent: 2 - - uid: 16074 + - uid: 16621 components: - type: Transform pos: -162.5,-19.5 parent: 2 - - uid: 16075 + - uid: 16622 components: - type: Transform pos: -162.5,-20.5 parent: 2 - - uid: 16076 + - uid: 16623 components: - type: Transform pos: -156.5,-14.5 parent: 2 - - uid: 16077 + - uid: 16624 components: - type: Transform pos: -156.5,-15.5 parent: 2 - - uid: 16078 + - uid: 16625 components: - type: Transform pos: -78.5,-18.5 parent: 2 - - uid: 16079 + - uid: 16626 components: - type: Transform pos: -77.5,11.5 parent: 2 - - uid: 16080 + - uid: 16627 components: - type: Transform pos: -206.5,-1.5 parent: 2 - - uid: 16081 + - uid: 16628 components: - type: Transform pos: -177.5,-5.5 parent: 2 - - uid: 16082 - components: - - type: Transform - pos: -186.5,-1.5 - parent: 2 - - uid: 16083 + - uid: 16629 components: - type: Transform pos: -195.5,-5.5 parent: 2 - - uid: 16084 + - uid: 16630 components: - type: Transform pos: -213.5,-5.5 parent: 2 - - uid: 16085 + - uid: 16631 components: - type: Transform pos: -24.5,-1.5 parent: 2 - - uid: 16086 + - uid: 16632 components: - type: Transform pos: -23.5,-1.5 parent: 2 - - uid: 16087 + - uid: 16633 components: - type: Transform pos: -23.5,-5.5 parent: 2 - - uid: 16088 + - uid: 16634 components: - type: Transform pos: -24.5,-5.5 parent: 2 - - uid: 16089 + - uid: 16635 components: - type: Transform pos: -24.5,-6.5 parent: 2 - - uid: 16090 + - uid: 16636 components: - type: Transform rot: -1.5707963267948966 rad pos: -85.5,-35.5 parent: 2 - - uid: 16091 + - uid: 16637 components: - type: Transform pos: -21.5,-2.5 parent: 2 - - uid: 16092 + - uid: 16638 components: - type: Transform pos: -20.5,-2.5 parent: 2 - - uid: 16093 + - uid: 16639 components: - type: Transform pos: -19.5,-2.5 parent: 2 - - uid: 16094 + - uid: 16640 components: - type: Transform pos: -19.5,-5.5 parent: 2 - - uid: 16095 + - uid: 16641 components: - type: Transform pos: -19.5,-4.5 parent: 2 - - uid: 16096 + - uid: 16642 components: - type: Transform pos: -41.5,14.5 parent: 2 - - uid: 16097 - components: - - type: Transform - pos: -42.5,14.5 - parent: 2 - - uid: 16098 + - uid: 16643 components: - type: Transform pos: -18.5,10.5 parent: 2 - - uid: 16099 + - uid: 16644 components: - type: Transform pos: -25.5,6.5 parent: 2 - - uid: 16100 + - uid: 16645 components: - type: Transform pos: -28.5,10.5 parent: 2 - - uid: 16101 + - uid: 16646 components: - type: Transform pos: -31.5,5.5 parent: 2 - - uid: 16102 + - uid: 16647 components: - type: Transform pos: -31.5,4.5 parent: 2 - - uid: 16103 + - uid: 16648 components: - type: Transform pos: -31.5,3.5 parent: 2 - - uid: 16104 + - uid: 16649 components: - type: Transform pos: -31.5,2.5 parent: 2 - - uid: 16105 + - uid: 16650 components: - type: Transform pos: -31.5,1.5 parent: 2 - - uid: 16106 + - uid: 16651 components: - type: Transform pos: -31.5,0.5 parent: 2 - - uid: 16107 + - uid: 16652 components: - type: Transform pos: -32.5,0.5 parent: 2 - - uid: 16108 + - uid: 16653 components: - type: Transform pos: -33.5,0.5 parent: 2 - - uid: 16109 + - uid: 16654 components: - type: Transform pos: -34.5,0.5 parent: 2 - - uid: 16110 + - uid: 16655 components: - type: Transform pos: -37.5,0.5 parent: 2 - - uid: 16111 + - uid: 16656 components: - type: Transform pos: -38.5,0.5 parent: 2 - - uid: 16112 + - uid: 16657 components: - type: Transform pos: -39.5,0.5 parent: 2 - - uid: 16113 + - uid: 16658 components: - type: Transform pos: -40.5,0.5 parent: 2 - - uid: 16114 + - uid: 16659 components: - type: Transform pos: -40.5,-1.5 parent: 2 - - uid: 16115 + - uid: 16660 components: - type: Transform pos: -40.5,-3.5 parent: 2 - - uid: 16116 + - uid: 16661 components: - type: Transform pos: -40.5,-5.5 parent: 2 - - uid: 16117 + - uid: 16662 components: - type: Transform pos: -40.5,-7.5 parent: 2 - - uid: 16118 + - uid: 16663 components: - type: Transform pos: -39.5,-7.5 parent: 2 - - uid: 16119 + - uid: 16664 components: - type: Transform pos: -38.5,-7.5 parent: 2 - - uid: 16120 + - uid: 16665 components: - type: Transform pos: -38.5,-8.5 parent: 2 - - uid: 16121 + - uid: 16666 components: - type: Transform pos: -38.5,-10.5 parent: 2 - - uid: 16122 + - uid: 16667 components: - type: Transform pos: -38.5,-12.5 parent: 2 - - uid: 16123 + - uid: 16668 components: - type: Transform pos: -38.5,-13.5 parent: 2 - - uid: 16124 + - uid: 16669 components: - type: Transform pos: -38.5,-14.5 parent: 2 - - uid: 16125 + - uid: 16670 components: - type: Transform pos: -38.5,-16.5 parent: 2 - - uid: 16126 + - uid: 16671 components: - type: Transform pos: -38.5,-17.5 parent: 2 - - uid: 16127 + - uid: 16672 components: - type: Transform pos: -37.5,-16.5 parent: 2 - - uid: 16128 + - uid: 16673 components: - type: Transform pos: -36.5,-13.5 parent: 2 - - uid: 16129 + - uid: 16674 components: - type: Transform pos: -34.5,-12.5 parent: 2 - - uid: 16130 + - uid: 16675 components: - type: Transform pos: -34.5,-13.5 parent: 2 - - uid: 16131 + - uid: 16676 components: - type: Transform pos: -33.5,-13.5 parent: 2 - - uid: 16132 + - uid: 16677 components: - type: Transform pos: -32.5,-13.5 parent: 2 - - uid: 16133 + - uid: 16678 components: - type: Transform pos: -31.5,-13.5 parent: 2 - - uid: 16134 + - uid: 16679 components: - type: Transform pos: -29.5,-13.5 parent: 2 - - uid: 16135 + - uid: 16680 components: - type: Transform pos: -28.5,-13.5 parent: 2 - - uid: 16136 + - uid: 16681 components: - type: Transform pos: -28.5,-12.5 parent: 2 - - uid: 16137 + - uid: 16682 components: - type: Transform pos: -28.5,-11.5 parent: 2 - - uid: 16138 + - uid: 16683 components: - type: Transform pos: -28.5,-10.5 parent: 2 - - uid: 16139 + - uid: 16684 components: - type: Transform pos: -28.5,-9.5 parent: 2 - - uid: 16140 + - uid: 16685 components: - type: Transform pos: -28.5,-8.5 parent: 2 - - uid: 16141 + - uid: 16686 components: - type: Transform pos: -28.5,-7.5 parent: 2 - - uid: 16142 + - uid: 16687 components: - type: Transform pos: -29.5,-7.5 parent: 2 - - uid: 16143 + - uid: 16688 components: - type: Transform pos: -30.5,-7.5 parent: 2 - - uid: 16144 + - uid: 16689 components: - type: Transform pos: -31.5,-7.5 parent: 2 - - uid: 16145 + - uid: 16690 components: - type: Transform pos: -32.5,-7.5 parent: 2 - - uid: 16146 + - uid: 16691 components: - type: Transform pos: -33.5,-7.5 parent: 2 - - uid: 16147 + - uid: 16692 components: - type: Transform pos: -34.5,-7.5 parent: 2 - - uid: 16148 + - uid: 16693 components: - type: Transform pos: -34.5,-8.5 parent: 2 - - uid: 16149 + - uid: 16694 components: - type: Transform pos: -41.5,0.5 parent: 2 - - uid: 16150 + - uid: 16695 components: - type: Transform pos: -42.5,0.5 parent: 2 - - uid: 16151 + - uid: 16696 components: - type: Transform pos: -43.5,0.5 parent: 2 - - uid: 16152 + - uid: 16697 components: - type: Transform pos: -48.5,0.5 parent: 2 - - uid: 16153 + - uid: 16698 components: - type: Transform pos: -42.5,1.5 parent: 2 - - uid: 16154 + - uid: 16699 components: - type: Transform pos: -42.5,2.5 parent: 2 - - uid: 16155 + - uid: 16700 components: - type: Transform pos: -42.5,3.5 parent: 2 - - uid: 16156 + - uid: 16701 components: - type: Transform pos: -42.5,4.5 parent: 2 - - uid: 16157 + - uid: 16702 components: - type: Transform pos: -42.5,5.5 parent: 2 - - uid: 16158 + - uid: 16703 components: - type: Transform pos: -42.5,6.5 parent: 2 - - uid: 16159 + - uid: 16704 components: - type: Transform pos: -48.5,5.5 parent: 2 - - uid: 16160 + - uid: 16705 components: - type: Transform pos: -48.5,6.5 parent: 2 - - uid: 16161 + - uid: 16706 components: - type: Transform pos: -47.5,6.5 parent: 2 - - uid: 16162 + - uid: 16707 components: - type: Transform pos: -45.5,6.5 parent: 2 - - uid: 16163 + - uid: 16708 components: - type: Transform pos: -44.5,6.5 parent: 2 - - uid: 16164 + - uid: 16709 components: - type: Transform pos: -43.5,6.5 parent: 2 - - uid: 16165 + - uid: 16710 components: - type: Transform pos: -45.5,7.5 parent: 2 - - uid: 16166 + - uid: 16711 components: - type: Transform pos: -45.5,8.5 parent: 2 - - uid: 16167 + - uid: 16712 components: - type: Transform pos: -45.5,9.5 parent: 2 - - uid: 16168 + - uid: 16713 components: - type: Transform pos: -45.5,10.5 parent: 2 - - uid: 16169 + - uid: 16714 components: - type: Transform pos: -44.5,10.5 parent: 2 - - uid: 16170 + - uid: 16715 components: - type: Transform pos: -42.5,10.5 parent: 2 - - uid: 16171 + - uid: 16716 components: - type: Transform pos: -41.5,10.5 parent: 2 - - uid: 16172 + - uid: 16717 components: - type: Transform pos: -41.5,9.5 parent: 2 - - uid: 16173 + - uid: 16718 components: - type: Transform pos: -41.5,11.5 parent: 2 - - uid: 16174 + - uid: 16719 components: - type: Transform pos: -40.5,11.5 parent: 2 - - uid: 16175 + - uid: 16720 components: - type: Transform pos: -39.5,11.5 parent: 2 - - uid: 16176 + - uid: 16721 components: - type: Transform pos: -38.5,11.5 parent: 2 - - uid: 16177 + - uid: 16722 components: - type: Transform pos: -36.5,11.5 parent: 2 - - uid: 16178 + - uid: 16723 components: - type: Transform pos: -36.5,10.5 parent: 2 - - uid: 16179 + - uid: 16724 components: - type: Transform pos: -35.5,10.5 parent: 2 - - uid: 16180 + - uid: 16725 components: - type: Transform pos: -33.5,10.5 parent: 2 - - uid: 16181 + - uid: 16726 components: - type: Transform pos: -32.5,10.5 parent: 2 - - uid: 16182 + - uid: 16727 components: - type: Transform pos: -36.5,6.5 parent: 2 - - uid: 16183 + - uid: 16728 components: - type: Transform pos: -41.5,13.5 parent: 2 - - uid: 16184 + - uid: 16729 components: - type: Transform pos: -45.5,11.5 parent: 2 - - uid: 16185 + - uid: 16730 components: - type: Transform pos: -40.5,6.5 parent: 2 - - uid: 16186 + - uid: 16731 components: - type: Transform pos: -41.5,6.5 parent: 2 - - uid: 16187 + - uid: 16732 components: - type: Transform pos: -41.5,7.5 parent: 2 - - uid: 16188 + - uid: 16733 components: - type: Transform pos: -40.5,14.5 parent: 2 - - uid: 16189 + - uid: 16734 components: - type: Transform pos: -45.5,13.5 parent: 2 - - uid: 16190 + - uid: 16735 components: - type: Transform pos: -46.5,13.5 parent: 2 - - uid: 16191 + - uid: 16736 components: - type: Transform pos: -47.5,13.5 parent: 2 - - uid: 16192 + - uid: 16737 components: - type: Transform pos: -38.5,13.5 parent: 2 - - uid: 16193 + - uid: 16738 components: - type: Transform pos: -38.5,12.5 parent: 2 - - uid: 16194 - components: - - type: Transform - pos: -40.5,15.5 - parent: 2 - - uid: 16195 + - uid: 16739 components: - type: Transform pos: -40.5,16.5 parent: 2 - - uid: 16196 + - uid: 16740 components: - type: Transform pos: -40.5,17.5 parent: 2 - - uid: 16197 + - uid: 16741 components: - type: Transform pos: -44.5,14.5 parent: 2 - - uid: 16198 + - uid: 16742 components: - type: Transform pos: -45.5,14.5 parent: 2 - - uid: 16199 + - uid: 16743 components: - type: Transform pos: -45.5,15.5 parent: 2 - - uid: 16200 + - uid: 16744 components: - type: Transform pos: -45.5,16.5 parent: 2 - - uid: 16201 + - uid: 16745 components: - type: Transform pos: -45.5,17.5 parent: 2 - - uid: 16202 + - uid: 16746 components: - type: Transform pos: -50.5,12.5 parent: 2 - - uid: 16203 + - uid: 16747 components: - type: Transform pos: -50.5,14.5 parent: 2 - - uid: 16204 + - uid: 16748 components: - type: Transform pos: -49.5,14.5 parent: 2 - - uid: 16205 + - uid: 16749 components: - type: Transform pos: -49.5,15.5 parent: 2 - - uid: 16206 + - uid: 16750 components: - type: Transform pos: -48.5,7.5 parent: 2 - - uid: 16207 + - uid: 16751 components: - type: Transform pos: -48.5,8.5 parent: 2 - - uid: 16208 + - uid: 16752 components: - type: Transform pos: -48.5,9.5 parent: 2 - - uid: 16209 + - uid: 16753 components: - type: Transform pos: -49.5,10.5 parent: 2 - - uid: 16210 + - uid: 16754 components: - type: Transform pos: -50.5,10.5 parent: 2 - - uid: 16211 + - uid: 16755 components: - type: Transform pos: -51.5,10.5 parent: 2 - - uid: 16212 + - uid: 16756 components: - type: Transform pos: -52.5,10.5 parent: 2 - - uid: 16213 + - uid: 16757 components: - type: Transform pos: -53.5,10.5 parent: 2 - - uid: 16214 + - uid: 16758 components: - type: Transform pos: -54.5,10.5 parent: 2 - - uid: 16215 + - uid: 16759 components: - type: Transform pos: -55.5,10.5 parent: 2 - - uid: 16216 + - uid: 16760 components: - type: Transform pos: -56.5,10.5 parent: 2 - - uid: 16217 + - uid: 16761 components: - type: Transform pos: -60.5,10.5 parent: 2 - - uid: 16218 + - uid: 16762 components: - type: Transform pos: -61.5,10.5 parent: 2 - - uid: 16219 + - uid: 16763 components: - type: Transform pos: -64.5,13.5 parent: 2 - - uid: 16220 + - uid: 16764 components: - type: Transform pos: -64.5,12.5 parent: 2 - - uid: 16221 + - uid: 16765 components: - type: Transform pos: -64.5,11.5 parent: 2 - - uid: 16222 + - uid: 16766 components: - type: Transform pos: -62.5,10.5 parent: 2 - - uid: 16223 + - uid: 16767 components: - type: Transform pos: -63.5,10.5 parent: 2 - - uid: 16224 + - uid: 16768 components: - type: Transform pos: -64.5,10.5 parent: 2 - - uid: 16225 + - uid: 16769 components: - type: Transform pos: -65.5,10.5 parent: 2 - - uid: 16226 + - uid: 16770 components: - type: Transform pos: -66.5,10.5 parent: 2 - - uid: 16227 + - uid: 16771 components: - type: Transform pos: -67.5,10.5 parent: 2 - - uid: 16228 + - uid: 16772 components: - type: Transform pos: -68.5,10.5 parent: 2 - - uid: 16229 + - uid: 16773 components: - type: Transform pos: -69.5,10.5 parent: 2 - - uid: 16230 + - uid: 16774 components: - type: Transform pos: -70.5,10.5 parent: 2 - - uid: 16231 + - uid: 16775 components: - type: Transform pos: -71.5,10.5 parent: 2 - - uid: 16232 + - uid: 16776 components: - type: Transform pos: -67.5,13.5 parent: 2 - - uid: 16233 + - uid: 16777 components: - type: Transform pos: -67.5,14.5 parent: 2 - - uid: 16234 + - uid: 16778 components: - type: Transform pos: -78.5,11.5 parent: 2 - - uid: 16235 + - uid: 16779 components: - type: Transform pos: -78.5,10.5 parent: 2 - - uid: 16236 + - uid: 16780 components: - type: Transform pos: -76.5,10.5 parent: 2 - - uid: 16237 + - uid: 16781 components: - type: Transform pos: -75.5,10.5 parent: 2 - - uid: 16238 + - uid: 16782 components: - type: Transform pos: -74.5,10.5 parent: 2 - - uid: 16239 + - uid: 16783 components: - type: Transform pos: -73.5,10.5 parent: 2 - - uid: 16240 + - uid: 16784 components: - type: Transform pos: -72.5,10.5 parent: 2 - - uid: 16241 + - uid: 16785 components: - type: Transform pos: -84.5,-35.5 parent: 2 - - uid: 16242 + - uid: 16786 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-13.5 parent: 2 - - uid: 16243 + - uid: 16787 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-13.5 parent: 2 - - uid: 16244 + - uid: 16788 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-13.5 parent: 2 - - uid: 16245 + - uid: 16789 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-13.5 parent: 2 - - uid: 16246 + - uid: 16790 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-13.5 parent: 2 - - uid: 16247 + - uid: 16791 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-13.5 parent: 2 - - uid: 16248 + - uid: 16792 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-12.5 parent: 2 - - uid: 16249 + - uid: 16793 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-13.5 parent: 2 - - uid: 16250 + - uid: 16794 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-13.5 parent: 2 - - uid: 16251 + - uid: 16795 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-13.5 parent: 2 - - uid: 16252 + - uid: 16796 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-12.5 parent: 2 - - uid: 16253 + - uid: 16797 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-13.5 parent: 2 - - uid: 16254 + - uid: 16798 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-14.5 parent: 2 - - uid: 16255 + - uid: 16799 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-16.5 parent: 2 - - uid: 16256 + - uid: 16800 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-17.5 parent: 2 - - uid: 16257 + - uid: 16801 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-17.5 parent: 2 - - uid: 16258 + - uid: 16802 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-17.5 parent: 2 - - uid: 16259 + - uid: 16803 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-17.5 parent: 2 - - uid: 16260 + - uid: 16804 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-17.5 parent: 2 - - uid: 16261 + - uid: 16805 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-17.5 parent: 2 - - uid: 16262 + - uid: 16806 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-17.5 parent: 2 - - uid: 16263 + - uid: 16807 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-17.5 parent: 2 - - uid: 16264 + - uid: 16808 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-17.5 parent: 2 - - uid: 16265 + - uid: 16809 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-17.5 parent: 2 - - uid: 16266 + - uid: 16810 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-17.5 parent: 2 - - uid: 16267 + - uid: 16811 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-17.5 parent: 2 - - uid: 16268 + - uid: 16812 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,-17.5 parent: 2 - - uid: 16269 + - uid: 16813 components: - type: Transform pos: -58.5,-18.5 parent: 2 - - uid: 16270 + - uid: 16814 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,-18.5 parent: 2 - - uid: 16271 + - uid: 16815 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,-19.5 parent: 2 - - uid: 16272 + - uid: 16816 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,-20.5 parent: 2 - - uid: 16273 + - uid: 16817 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-20.5 parent: 2 - - uid: 16274 + - uid: 16818 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-20.5 parent: 2 - - uid: 16275 + - uid: 16819 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-18.5 parent: 2 - - uid: 16276 + - uid: 16820 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-19.5 parent: 2 - - uid: 16277 + - uid: 16821 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-20.5 parent: 2 - - uid: 16278 + - uid: 16822 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-20.5 parent: 2 - - uid: 16279 + - uid: 16823 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-20.5 parent: 2 - - uid: 16280 + - uid: 16824 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-20.5 parent: 2 - - uid: 16281 + - uid: 16825 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-21.5 parent: 2 - - uid: 16282 + - uid: 16826 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-20.5 parent: 2 - - uid: 16283 + - uid: 16827 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-20.5 parent: 2 - - uid: 16284 + - uid: 16828 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-19.5 parent: 2 - - uid: 16285 + - uid: 16829 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-18.5 parent: 2 - - uid: 16286 + - uid: 16830 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-17.5 parent: 2 - - uid: 16287 + - uid: 16831 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-21.5 parent: 2 - - uid: 16288 + - uid: 16832 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-15.5 parent: 2 - - uid: 16289 + - uid: 16833 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-15.5 parent: 2 - - uid: 16290 + - uid: 16834 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-14.5 parent: 2 - - uid: 16291 + - uid: 16835 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-20.5 parent: 2 - - uid: 16292 + - uid: 16836 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-21.5 parent: 2 - - uid: 16293 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,-17.5 - parent: 2 - - uid: 16294 + - uid: 16838 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,-17.5 parent: 2 - - uid: 16295 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,-17.5 - parent: 2 - - uid: 16296 + - uid: 16840 components: - type: Transform rot: 1.5707963267948966 rad pos: -76.5,-17.5 parent: 2 - - uid: 16297 + - uid: 16841 components: - type: Transform pos: -77.5,-18.5 parent: 2 - - uid: 16298 + - uid: 16842 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,-17.5 parent: 2 - - uid: 16299 + - uid: 16843 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,-17.5 parent: 2 - - uid: 16300 + - uid: 16844 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,-17.5 parent: 2 - - uid: 16301 + - uid: 16845 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,-17.5 parent: 2 - - uid: 16302 + - uid: 16846 components: - type: Transform rot: 1.5707963267948966 rad pos: -83.5,-17.5 parent: 2 - - uid: 16303 + - uid: 16847 components: - type: Transform rot: 1.5707963267948966 rad pos: -85.5,-17.5 parent: 2 - - uid: 16304 + - uid: 16848 components: - type: Transform rot: 1.5707963267948966 rad pos: -84.5,10.5 parent: 2 - - uid: 16305 + - uid: 16849 components: - type: Transform rot: 1.5707963267948966 rad pos: -83.5,10.5 parent: 2 - - uid: 16306 + - uid: 16850 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,10.5 parent: 2 - - uid: 16307 + - uid: 16851 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,10.5 parent: 2 - - uid: 16308 + - uid: 16852 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,10.5 parent: 2 - - uid: 16309 + - uid: 16853 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,10.5 parent: 2 - - uid: 16310 + - uid: 16854 components: - type: Transform rot: -1.5707963267948966 rad pos: -75.5,-22.5 parent: 2 - - uid: 16311 + - uid: 16855 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-22.5 parent: 2 - - uid: 16312 + - uid: 16856 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,-18.5 parent: 2 - - uid: 16313 + - uid: 16857 components: - type: Transform rot: 1.5707963267948966 rad pos: -97.5,-10.5 parent: 2 - - uid: 16314 + - uid: 16858 components: - type: Transform rot: 1.5707963267948966 rad pos: -95.5,-10.5 parent: 2 - - uid: 16315 + - uid: 16859 components: - type: Transform pos: -102.5,-13.5 parent: 2 - - uid: 16316 + - uid: 16860 components: - type: Transform pos: -101.5,-13.5 parent: 2 - - uid: 16317 + - uid: 16861 components: - type: Transform pos: -100.5,-13.5 parent: 2 - - uid: 16318 + - uid: 16862 components: - type: Transform pos: -99.5,-13.5 parent: 2 - - uid: 16319 + - uid: 16863 components: - type: Transform pos: -99.5,-14.5 parent: 2 - - uid: 16320 + - uid: 16864 components: - type: Transform pos: -99.5,-16.5 parent: 2 - - uid: 16321 + - uid: 16865 components: - type: Transform pos: -99.5,-17.5 parent: 2 - - uid: 16322 + - uid: 16866 components: - type: Transform pos: -102.5,-18.5 parent: 2 - - uid: 16323 + - uid: 16867 components: - type: Transform pos: -102.5,-19.5 parent: 2 - - uid: 16324 + - uid: 16868 components: - type: Transform pos: -99.5,-19.5 parent: 2 - - uid: 16325 + - uid: 16869 components: - type: Transform pos: -103.5,-17.5 parent: 2 - - uid: 16326 + - uid: 16870 components: - type: Transform pos: -104.5,-17.5 parent: 2 - - uid: 16327 + - uid: 16871 components: - type: Transform pos: -105.5,-17.5 parent: 2 - - uid: 16328 + - uid: 16872 components: - type: Transform pos: -106.5,-17.5 parent: 2 - - uid: 16329 + - uid: 16873 components: - type: Transform pos: -107.5,-17.5 parent: 2 - - uid: 16330 + - uid: 16874 components: - type: Transform pos: -108.5,-17.5 parent: 2 - - uid: 16331 + - uid: 16875 components: - type: Transform pos: -109.5,-17.5 parent: 2 - - uid: 16332 + - uid: 16876 components: - type: Transform pos: -110.5,-17.5 parent: 2 - - uid: 16333 + - uid: 16877 components: - type: Transform pos: -112.5,-17.5 parent: 2 - - uid: 16334 - components: - - type: Transform - pos: -113.5,-17.5 - parent: 2 - - uid: 16335 + - uid: 16878 components: - type: Transform pos: -114.5,-17.5 parent: 2 - - uid: 16336 + - uid: 16879 components: - type: Transform pos: -115.5,-17.5 parent: 2 - - uid: 16337 + - uid: 16880 components: - type: Transform pos: -116.5,-17.5 parent: 2 - - uid: 16338 + - uid: 16881 components: - type: Transform pos: -117.5,-17.5 parent: 2 - - uid: 16339 + - uid: 16882 components: - type: Transform pos: -118.5,-17.5 parent: 2 - - uid: 16340 + - uid: 16883 components: - type: Transform pos: -118.5,-15.5 parent: 2 - - uid: 16341 + - uid: 16884 components: - type: Transform pos: -114.5,-15.5 parent: 2 - - uid: 16342 + - uid: 16885 components: - type: Transform pos: -114.5,-14.5 parent: 2 - - uid: 16343 + - uid: 16886 components: - type: Transform pos: -114.5,-13.5 parent: 2 - - uid: 16344 + - uid: 16887 components: - type: Transform pos: -115.5,-13.5 parent: 2 - - uid: 16345 + - uid: 16888 components: - type: Transform pos: -117.5,-13.5 parent: 2 - - uid: 16346 + - uid: 16889 components: - type: Transform pos: -118.5,-13.5 parent: 2 - - uid: 16347 + - uid: 16890 components: - type: Transform pos: -118.5,-14.5 parent: 2 - - uid: 16348 + - uid: 16891 components: - type: Transform rot: 3.141592653589793 rad pos: -110.5,-16.5 parent: 2 - - uid: 16349 + - uid: 16892 components: - type: Transform pos: -109.5,-8.5 parent: 2 - - uid: 16350 + - uid: 16893 components: - type: Transform pos: -109.5,-5.5 parent: 2 - - uid: 16351 + - uid: 16894 components: - type: Transform pos: -108.5,-5.5 parent: 2 - - uid: 16352 + - uid: 16895 components: - type: Transform pos: -104.5,-5.5 parent: 2 - - uid: 16353 + - uid: 16896 components: - type: Transform pos: -103.5,-5.5 parent: 2 - - uid: 16354 + - uid: 16897 components: - type: Transform pos: -102.5,-5.5 parent: 2 - - uid: 16355 + - uid: 16898 components: - type: Transform pos: -101.5,-5.5 parent: 2 - - uid: 16356 + - uid: 16899 components: - type: Transform pos: -102.5,-6.5 parent: 2 - - uid: 16357 + - uid: 16900 components: - type: Transform pos: -102.5,-7.5 parent: 2 - - uid: 16358 + - uid: 16901 components: - type: Transform pos: -102.5,-8.5 parent: 2 - - uid: 16359 + - uid: 16902 components: - type: Transform pos: -102.5,-9.5 parent: 2 - - uid: 16360 + - uid: 16903 components: - type: Transform pos: -102.5,-10.5 parent: 2 - - uid: 16361 + - uid: 16904 components: - type: Transform pos: -102.5,-12.5 parent: 2 - - uid: 16362 + - uid: 16905 components: - type: Transform pos: -118.5,-8.5 parent: 2 - - uid: 16363 + - uid: 16906 components: - type: Transform pos: -118.5,-9.5 parent: 2 - - uid: 16364 + - uid: 16907 components: - type: Transform pos: -118.5,-10.5 parent: 2 - - uid: 16365 + - uid: 16908 components: - type: Transform pos: -118.5,-11.5 parent: 2 - - uid: 16366 + - uid: 16909 components: - type: Transform pos: -118.5,-12.5 parent: 2 - - uid: 16367 + - uid: 16910 components: - type: Transform pos: -119.5,-12.5 parent: 2 - - uid: 16368 + - uid: 16911 components: - type: Transform pos: -120.5,-12.5 parent: 2 - - uid: 16369 + - uid: 16912 components: - type: Transform pos: -121.5,-12.5 parent: 2 - - uid: 16370 + - uid: 16913 components: - type: Transform pos: -122.5,-12.5 parent: 2 - - uid: 16371 + - uid: 16914 components: - type: Transform pos: -124.5,-12.5 parent: 2 - - uid: 16372 + - uid: 16915 components: - type: Transform pos: -125.5,-12.5 parent: 2 - - uid: 16373 + - uid: 16916 components: - type: Transform pos: -126.5,-12.5 parent: 2 - - uid: 16374 + - uid: 16917 components: - type: Transform pos: -125.5,-11.5 parent: 2 - - uid: 16375 + - uid: 16918 components: - type: Transform pos: -125.5,-9.5 parent: 2 - - uid: 16376 + - uid: 16919 components: - type: Transform pos: -125.5,-8.5 parent: 2 - - uid: 16377 + - uid: 16920 components: - type: Transform pos: -126.5,-8.5 parent: 2 - - uid: 16378 + - uid: 16921 components: - type: Transform pos: -125.5,-7.5 parent: 2 - - uid: 16379 + - uid: 16922 components: - type: Transform pos: -125.5,-6.5 parent: 2 - - uid: 16380 + - uid: 16923 components: - type: Transform pos: -124.5,-6.5 parent: 2 - - uid: 16381 + - uid: 16924 components: - type: Transform pos: -121.5,-6.5 parent: 2 - - uid: 16382 + - uid: 16925 components: - type: Transform pos: -121.5,-5.5 parent: 2 - - uid: 16383 + - uid: 16926 components: - type: Transform pos: -122.5,-6.5 parent: 2 - - uid: 16384 + - uid: 16927 components: - type: Transform pos: -121.5,-7.5 parent: 2 - - uid: 16385 + - uid: 16928 components: - type: Transform pos: -121.5,-8.5 parent: 2 - - uid: 16386 + - uid: 16929 components: - type: Transform pos: -120.5,-8.5 parent: 2 - - uid: 16387 + - uid: 16930 components: - type: Transform pos: -119.5,-8.5 parent: 2 - - uid: 16388 + - uid: 16931 components: - type: Transform pos: -128.5,-8.5 parent: 2 - - uid: 16389 + - uid: 16932 components: - type: Transform pos: -129.5,-8.5 parent: 2 - - uid: 16390 + - uid: 16933 components: - type: Transform pos: -129.5,-9.5 parent: 2 - - uid: 16391 + - uid: 16934 components: - type: Transform pos: -129.5,-10.5 parent: 2 - - uid: 16392 + - uid: 16935 components: - type: Transform pos: -129.5,-11.5 parent: 2 - - uid: 16393 + - uid: 16936 components: - type: Transform pos: -129.5,-12.5 parent: 2 - - uid: 16394 + - uid: 16937 components: - type: Transform pos: -128.5,-12.5 parent: 2 - - uid: 16395 + - uid: 16938 components: - type: Transform pos: -102.5,-17.5 parent: 2 - - uid: 16396 + - uid: 16939 components: - type: Transform pos: -99.5,-18.5 parent: 2 - - uid: 16397 + - uid: 16940 components: - type: Transform pos: -101.5,-19.5 parent: 2 - - uid: 16398 + - uid: 16941 components: - type: Transform pos: -100.5,-19.5 parent: 2 - - uid: 16399 + - uid: 16942 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-18.5 parent: 2 - - uid: 16400 + - uid: 16943 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-22.5 parent: 2 - - uid: 16401 + - uid: 16944 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-19.5 parent: 2 - - uid: 16402 + - uid: 16945 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-17.5 parent: 2 - - uid: 16403 + - uid: 16946 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-20.5 parent: 2 - - uid: 16404 + - uid: 16947 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-21.5 parent: 2 - - uid: 16405 + - uid: 16948 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-22.5 parent: 2 - - uid: 16406 + - uid: 16949 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-19.5 parent: 2 - - uid: 16407 + - uid: 16950 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-21.5 parent: 2 - - uid: 16408 + - uid: 16951 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-22.5 parent: 2 - - uid: 16409 + - uid: 16952 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-22.5 parent: 2 - - uid: 16410 + - uid: 16953 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-23.5 parent: 2 - - uid: 16411 + - uid: 16954 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-17.5 parent: 2 - - uid: 16412 + - uid: 16955 components: - type: Transform rot: -1.5707963267948966 rad pos: -102.5,-14.5 parent: 2 - - uid: 16413 + - uid: 16956 components: - type: Transform rot: -1.5707963267948966 rad pos: -126.5,1.5 parent: 2 - - uid: 16414 + - uid: 16957 components: - type: Transform rot: -1.5707963267948966 rad pos: -126.5,2.5 parent: 2 - - uid: 16415 + - uid: 16958 components: - type: Transform rot: -1.5707963267948966 rad pos: -126.5,3.5 parent: 2 - - uid: 16416 + - uid: 16959 components: - type: Transform rot: -1.5707963267948966 rad pos: -126.5,4.5 parent: 2 - - uid: 16417 + - uid: 16960 components: - type: Transform rot: -1.5707963267948966 rad pos: -126.5,5.5 parent: 2 - - uid: 16418 + - uid: 16961 components: - type: Transform rot: -1.5707963267948966 rad pos: -125.5,5.5 parent: 2 - - uid: 16419 + - uid: 16962 components: - type: Transform rot: -1.5707963267948966 rad pos: -124.5,5.5 parent: 2 - - uid: 16420 + - uid: 16963 components: - type: Transform rot: -1.5707963267948966 rad pos: -125.5,1.5 parent: 2 - - uid: 16421 + - uid: 16964 components: - type: Transform rot: -1.5707963267948966 rad pos: -125.5,0.5 parent: 2 - - uid: 16422 + - uid: 16965 components: - type: Transform rot: -1.5707963267948966 rad pos: -125.5,-0.5 parent: 2 - - uid: 16423 + - uid: 16966 components: - type: Transform rot: -1.5707963267948966 rad pos: -124.5,-0.5 parent: 2 - - uid: 16424 + - uid: 16967 components: - type: Transform rot: -1.5707963267948966 rad pos: -123.5,-0.5 parent: 2 - - uid: 16425 + - uid: 16968 components: - type: Transform rot: -1.5707963267948966 rad pos: -123.5,0.5 parent: 2 - - uid: 16426 + - uid: 16969 components: - type: Transform rot: -1.5707963267948966 rad pos: -122.5,-0.5 parent: 2 - - uid: 16427 + - uid: 16970 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.5,-0.5 parent: 2 - - uid: 16428 + - uid: 16971 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.5,-1.5 parent: 2 - - uid: 16429 + - uid: 16972 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.5,0.5 parent: 2 - - uid: 16430 + - uid: 16973 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.5,1.5 parent: 2 - - uid: 16431 + - uid: 16974 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.5,2.5 parent: 2 - - uid: 16432 + - uid: 16975 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.5,3.5 parent: 2 - - uid: 16433 + - uid: 16976 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.5,4.5 parent: 2 - - uid: 16434 + - uid: 16977 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.5,5.5 parent: 2 - - uid: 16435 + - uid: 16978 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.5,6.5 parent: 2 - - uid: 16436 + - uid: 16979 components: - type: Transform rot: -1.5707963267948966 rad pos: -122.5,5.5 parent: 2 - - uid: 16437 + - uid: 16980 components: - type: Transform rot: -1.5707963267948966 rad pos: -120.5,5.5 parent: 2 - - uid: 16438 + - uid: 16981 components: - type: Transform rot: -1.5707963267948966 rad pos: -119.5,5.5 parent: 2 - - uid: 16439 + - uid: 16982 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,5.5 parent: 2 - - uid: 16440 + - uid: 16983 components: - type: Transform rot: -1.5707963267948966 rad pos: -117.5,5.5 parent: 2 - - uid: 16441 + - uid: 16984 components: - type: Transform rot: -1.5707963267948966 rad pos: -116.5,5.5 parent: 2 - - uid: 16442 + - uid: 16985 components: - type: Transform rot: -1.5707963267948966 rad pos: -115.5,5.5 parent: 2 - - uid: 16443 + - uid: 16986 components: - type: Transform rot: -1.5707963267948966 rad pos: -114.5,5.5 parent: 2 - - uid: 16444 + - uid: 16987 components: - type: Transform rot: -1.5707963267948966 rad pos: -113.5,5.5 parent: 2 - - uid: 16445 + - uid: 16988 components: - type: Transform rot: -1.5707963267948966 rad pos: -113.5,4.5 parent: 2 - - uid: 16446 + - uid: 16989 components: - type: Transform rot: -1.5707963267948966 rad pos: -113.5,6.5 parent: 2 - - uid: 16447 + - uid: 16990 components: - type: Transform rot: -1.5707963267948966 rad pos: -113.5,7.5 parent: 2 - - uid: 16448 + - uid: 16991 components: - type: Transform rot: -1.5707963267948966 rad pos: -112.5,7.5 parent: 2 - - uid: 16449 + - uid: 16992 components: - type: Transform rot: -1.5707963267948966 rad pos: -110.5,7.5 parent: 2 - - uid: 16450 + - uid: 16993 components: - type: Transform rot: -1.5707963267948966 rad pos: -110.5,1.5 parent: 2 - - uid: 16451 + - uid: 16994 components: - type: Transform rot: -1.5707963267948966 rad pos: -111.5,1.5 parent: 2 - - uid: 16452 + - uid: 16995 components: - type: Transform rot: -1.5707963267948966 rad pos: -112.5,1.5 parent: 2 - - uid: 16453 + - uid: 16996 components: - type: Transform rot: -1.5707963267948966 rad pos: -113.5,1.5 parent: 2 - - uid: 16454 + - uid: 16997 components: - type: Transform rot: -1.5707963267948966 rad pos: -113.5,2.5 parent: 2 - - uid: 16455 + - uid: 16998 components: - type: Transform pos: -51.5,-19.5 parent: 2 - - uid: 16456 + - uid: 16999 components: - type: Transform pos: -28.5,0.5 parent: 2 - - uid: 16457 + - uid: 17000 components: - type: Transform pos: -28.5,-6.5 parent: 2 - - uid: 16458 + - uid: 17001 components: - type: Transform pos: -172.5,-5.5 parent: 2 - - uid: 16459 + - uid: 17002 components: - type: Transform pos: -174.5,-5.5 parent: 2 - - uid: 16460 + - uid: 17003 components: - type: Transform pos: -175.5,-5.5 parent: 2 - - uid: 16461 + - uid: 17004 components: - type: Transform pos: -175.5,-6.5 parent: 2 - - uid: 16462 + - uid: 17005 components: - type: Transform pos: -175.5,-7.5 parent: 2 - - uid: 16463 + - uid: 17006 components: - type: Transform pos: -175.5,-8.5 parent: 2 - - uid: 16464 + - uid: 17007 components: - type: Transform pos: -59.5,-20.5 parent: 2 - - uid: 16465 + - uid: 17008 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-21.5 parent: 2 - - uid: 16466 + - uid: 17009 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-21.5 parent: 2 - - uid: 16467 + - uid: 17010 components: - type: Transform pos: -119.5,-15.5 parent: 2 - - uid: 16468 + - uid: 17011 components: - type: Transform pos: -120.5,-15.5 parent: 2 - - uid: 16469 + - uid: 17012 components: - type: Transform pos: -122.5,-13.5 parent: 2 - - uid: 16470 + - uid: 17013 components: - type: Transform pos: -122.5,-14.5 parent: 2 - - uid: 16471 + - uid: 17014 components: - type: Transform pos: -122.5,-15.5 parent: 2 - - uid: 16472 + - uid: 17015 components: - type: Transform pos: -37.5,17.5 parent: 2 - - uid: 16473 + - uid: 17016 components: - type: Transform pos: -37.5,15.5 parent: 2 - - uid: 16474 + - uid: 17017 components: - type: Transform pos: -36.5,15.5 parent: 2 - - uid: 16475 + - uid: 17018 components: - type: Transform pos: -35.5,15.5 parent: 2 - - uid: 16476 + - uid: 17019 components: - type: Transform pos: -85.5,-32.5 parent: 2 - - uid: 16477 + - uid: 17020 components: - type: Transform pos: -84.5,-32.5 parent: 2 - - uid: 16478 + - uid: 17021 components: - type: Transform rot: 1.5707963267948966 rad pos: -128.5,-16.5 parent: 2 - - uid: 16479 + - uid: 17022 components: - type: Transform rot: 1.5707963267948966 rad pos: -127.5,-16.5 parent: 2 - - uid: 16480 + - uid: 17023 components: - type: Transform rot: 1.5707963267948966 rad pos: -126.5,-16.5 parent: 2 - - uid: 16481 + - uid: 17024 components: - type: Transform rot: 1.5707963267948966 rad pos: -125.5,-16.5 parent: 2 - - uid: 16482 + - uid: 17025 components: - type: Transform rot: 1.5707963267948966 rad pos: -125.5,-17.5 parent: 2 - - uid: 16483 + - uid: 17026 components: - type: Transform rot: 1.5707963267948966 rad pos: -125.5,-18.5 parent: 2 - - uid: 16484 + - uid: 17027 components: - type: Transform rot: 1.5707963267948966 rad pos: -129.5,-16.5 parent: 2 - - uid: 16485 + - uid: 17028 components: - type: Transform rot: 1.5707963267948966 rad pos: -125.5,-20.5 parent: 2 - - uid: 16486 + - uid: 17029 components: - type: Transform rot: 1.5707963267948966 rad pos: -130.5,-16.5 parent: 2 - - uid: 16487 - components: - - type: Transform - pos: -74.5,-19.5 - parent: 2 - - uid: 16488 + - uid: 17031 components: - type: Transform pos: -99.5,-7.5 parent: 2 - - uid: 16489 + - uid: 17032 components: - type: Transform pos: -99.5,-8.5 parent: 2 - - uid: 16490 + - uid: 17033 components: - type: Transform pos: -99.5,-6.5 parent: 2 - - uid: 16491 + - uid: 17034 components: - type: Transform pos: -98.5,-10.5 parent: 2 - - uid: 16492 + - uid: 17035 components: - type: Transform pos: -99.5,-10.5 parent: 2 - - uid: 16493 + - uid: 17036 components: - type: Transform pos: -100.5,-12.5 parent: 2 - - uid: 16494 + - uid: 17037 components: - type: Transform pos: -91.5,-13.5 parent: 2 - - uid: 16495 + - uid: 17038 components: - type: Transform pos: -92.5,-13.5 parent: 2 - - uid: 16496 + - uid: 17039 components: - type: Transform pos: -93.5,-13.5 parent: 2 - - uid: 16497 + - uid: 17040 components: - type: Transform pos: -94.5,-13.5 parent: 2 - - uid: 16498 + - uid: 17041 components: - type: Transform pos: -95.5,-13.5 parent: 2 - - uid: 16499 + - uid: 17042 components: - type: Transform pos: -95.5,-12.5 parent: 2 - - uid: 16500 + - uid: 17043 components: - type: Transform pos: -68.5,13.5 parent: 2 - - uid: 16501 + - uid: 17044 components: - type: Transform pos: -68.5,12.5 parent: 2 - - uid: 16502 + - uid: 17045 components: - type: Transform pos: -75.5,12.5 parent: 2 - - uid: 16503 + - uid: 17046 components: - type: Transform pos: -110.5,-8.5 parent: 2 - - uid: 16504 + - uid: 17047 components: - type: Transform rot: 3.141592653589793 rad pos: -109.5,-14.5 parent: 2 - - uid: 16505 + - uid: 17048 components: - type: Transform rot: -1.5707963267948966 rad pos: -116.5,-19.5 parent: 2 - - uid: 16506 + - uid: 17049 components: - type: Transform rot: -1.5707963267948966 rad pos: -116.5,-18.5 parent: 2 - - uid: 16507 + - uid: 17050 components: - type: Transform rot: -1.5707963267948966 rad pos: -116.5,-21.5 parent: 2 - - uid: 16508 + - uid: 17051 components: - type: Transform rot: -1.5707963267948966 rad pos: -115.5,-19.5 parent: 2 - - uid: 16509 + - uid: 17052 components: - type: Transform rot: -1.5707963267948966 rad pos: -113.5,-19.5 parent: 2 - - uid: 16510 + - uid: 17053 components: - type: Transform rot: -1.5707963267948966 rad pos: -112.5,-19.5 parent: 2 - - uid: 16511 + - uid: 17054 components: - type: Transform rot: -1.5707963267948966 rad pos: -112.5,-18.5 parent: 2 - - uid: 16512 + - uid: 17055 components: - type: Transform rot: -1.5707963267948966 rad pos: -108.5,-21.5 parent: 2 - - uid: 16513 + - uid: 17056 components: - type: Transform rot: -1.5707963267948966 rad pos: -108.5,-20.5 parent: 2 - - uid: 16514 + - uid: 17057 components: - type: Transform rot: -1.5707963267948966 rad pos: -108.5,-19.5 parent: 2 - - uid: 16515 + - uid: 17058 components: - type: Transform rot: -1.5707963267948966 rad pos: -107.5,-19.5 parent: 2 - - uid: 16516 + - uid: 17059 components: - type: Transform rot: -1.5707963267948966 rad pos: -106.5,-19.5 parent: 2 - - uid: 16517 + - uid: 17060 components: - type: Transform rot: -1.5707963267948966 rad pos: -106.5,-20.5 parent: 2 - - uid: 16518 + - uid: 17061 components: - type: Transform rot: -1.5707963267948966 rad pos: -103.5,-19.5 parent: 2 - - uid: 16519 + - uid: 17062 components: - type: Transform rot: -1.5707963267948966 rad pos: -104.5,-19.5 parent: 2 - - uid: 16520 + - uid: 17063 components: - type: Transform rot: -1.5707963267948966 rad pos: -104.5,-20.5 parent: 2 - - uid: 16521 + - uid: 17064 components: - type: Transform rot: -1.5707963267948966 rad pos: -111.5,-19.5 parent: 2 - - uid: 16522 + - uid: 17065 components: - type: Transform rot: -1.5707963267948966 rad pos: -110.5,-19.5 parent: 2 - - uid: 16523 + - uid: 17066 components: - type: Transform rot: -1.5707963267948966 rad pos: -111.5,-20.5 parent: 2 - - uid: 16524 + - uid: 17067 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,-21.5 parent: 2 - - uid: 16525 + - uid: 17068 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,-20.5 parent: 2 - - uid: 16526 + - uid: 17069 components: - type: Transform rot: -1.5707963267948966 rad pos: -96.5,-19.5 parent: 2 - - uid: 16527 + - uid: 17070 components: - type: Transform pos: -72.5,12.5 parent: 2 - - uid: 16528 + - uid: 17071 components: - type: Transform pos: -72.5,14.5 parent: 2 - - uid: 16529 + - uid: 17072 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,-19.5 parent: 2 - - uid: 16530 + - uid: 17073 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,-17.5 parent: 2 - - uid: 16531 + - uid: 17074 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,-18.5 parent: 2 - - uid: 16532 + - uid: 17075 components: - type: Transform rot: -1.5707963267948966 rad pos: -93.5,-17.5 parent: 2 - - uid: 16533 + - uid: 17076 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,-15.5 parent: 2 - - uid: 16534 + - uid: 17077 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,-14.5 parent: 2 - - uid: 16535 + - uid: 17078 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,-16.5 parent: 2 - - uid: 16536 + - uid: 17079 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,-19.5 parent: 2 - - uid: 16537 + - uid: 17080 components: - type: Transform rot: -1.5707963267948966 rad pos: -83.5,-18.5 parent: 2 - - uid: 16538 + - uid: 17081 components: - type: Transform pos: -68.5,11.5 parent: 2 - - uid: 16539 + - uid: 17082 components: - type: Transform pos: -72.5,11.5 parent: 2 - - uid: 16540 + - uid: 17083 components: - type: Transform pos: -72.5,13.5 parent: 2 - - uid: 16541 + - uid: 17084 components: - type: Transform pos: -70.5,13.5 parent: 2 - - uid: 16542 + - uid: 17085 components: - type: Transform pos: -70.5,15.5 parent: 2 - - uid: 16543 + - uid: 17086 components: - type: Transform pos: -74.5,14.5 parent: 2 - - uid: 16544 + - uid: 17087 components: - type: Transform pos: -74.5,15.5 parent: 2 - - uid: 16545 + - uid: 17088 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,11.5 parent: 2 - - uid: 16546 + - uid: 17089 components: - type: Transform pos: -76.5,12.5 parent: 2 - - uid: 16547 + - uid: 17090 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,11.5 parent: 2 - - uid: 16548 + - uid: 17091 components: - type: Transform pos: -76.5,-18.5 parent: 2 - - uid: 16549 + - uid: 17092 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,8.5 parent: 2 - - uid: 16550 + - uid: 17093 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,6.5 parent: 2 - - uid: 16551 + - uid: 17094 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,6.5 parent: 2 - - uid: 16552 + - uid: 17095 components: - type: Transform rot: 3.141592653589793 rad pos: -118.5,-18.5 parent: 2 - - uid: 16553 + - uid: 17096 components: - type: Transform rot: 3.141592653589793 rad pos: -120.5,-21.5 parent: 2 - - uid: 16554 + - uid: 17097 components: - type: Transform rot: 3.141592653589793 rad pos: -119.5,-18.5 parent: 2 - - uid: 16555 + - uid: 17098 components: - type: Transform rot: 3.141592653589793 rad pos: -120.5,-18.5 parent: 2 - - uid: 16556 + - uid: 17099 components: - type: Transform rot: 3.141592653589793 rad pos: -124.5,-17.5 parent: 2 - - uid: 16557 + - uid: 17100 components: - type: Transform rot: 3.141592653589793 rad pos: -123.5,-17.5 parent: 2 - - uid: 16558 + - uid: 17101 components: - type: Transform rot: 3.141592653589793 rad pos: -122.5,-17.5 parent: 2 - - uid: 16559 + - uid: 17102 components: - type: Transform rot: 3.141592653589793 rad pos: -123.5,-18.5 parent: 2 - - uid: 16560 + - uid: 17103 components: - type: Transform rot: 3.141592653589793 rad pos: -123.5,-19.5 parent: 2 - - uid: 16561 + - uid: 17104 components: - type: Transform rot: 3.141592653589793 rad pos: -122.5,-21.5 parent: 2 - - uid: 16562 + - uid: 17105 components: - type: Transform rot: 3.141592653589793 rad pos: -97.5,-11.5 parent: 2 - - uid: 16563 + - uid: 17106 components: - type: Transform rot: 3.141592653589793 rad pos: -97.5,-12.5 parent: 2 - - uid: 16564 + - uid: 17107 components: - type: Transform rot: 3.141592653589793 rad pos: -97.5,-13.5 parent: 2 - - uid: 16565 + - uid: 17108 components: - type: Transform rot: 3.141592653589793 rad pos: -101.5,-10.5 parent: 2 - - uid: 16566 + - uid: 17109 components: - type: Transform rot: 3.141592653589793 rad pos: -101.5,-7.5 parent: 2 - - uid: 16567 + - uid: 17110 components: - type: Transform rot: 3.141592653589793 rad pos: -98.5,-16.5 parent: 2 - - uid: 16568 + - uid: 17111 components: - type: Transform rot: 3.141592653589793 rad pos: -97.5,-16.5 parent: 2 - - uid: 16569 + - uid: 17112 components: - type: Transform rot: 3.141592653589793 rad pos: -96.5,-16.5 parent: 2 - - uid: 16570 + - uid: 17113 components: - type: Transform rot: 3.141592653589793 rad pos: -92.5,-14.5 parent: 2 - - uid: 16571 + - uid: 17114 components: - type: Transform rot: 3.141592653589793 rad pos: -89.5,-19.5 parent: 2 - - uid: 16572 + - uid: 17115 components: - type: Transform pos: -49.5,16.5 parent: 2 - - uid: 16573 + - uid: 17116 components: - type: Transform pos: -51.5,14.5 parent: 2 - - uid: 16574 + - uid: 17117 components: - type: Transform pos: -52.5,14.5 parent: 2 - - uid: 16575 + - uid: 17118 components: - type: Transform pos: -52.5,13.5 parent: 2 - - uid: 16576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,53.5 - parent: 2 - - uid: 16577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,48.5 - parent: 2 - - uid: 16578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,47.5 - parent: 2 - - uid: 16579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,51.5 - parent: 2 - - uid: 16580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,53.5 - parent: 2 - - uid: 16581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,52.5 - parent: 2 - - uid: 16582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,46.5 - parent: 2 - - uid: 16583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,48.5 - parent: 2 - - uid: 16584 + - uid: 17119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,47.5 + rot: 3.141592653589793 rad + pos: -76.5,11.5 parent: 2 - - uid: 16585 + - uid: 17120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,46.5 + rot: 3.141592653589793 rad + pos: -74.5,12.5 parent: 2 - - uid: 16586 + - uid: 17121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,52.5 + rot: 3.141592653589793 rad + pos: -110.5,-14.5 parent: 2 - - uid: 16587 + - uid: 17122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,51.5 + rot: 3.141592653589793 rad + pos: -109.5,-13.5 parent: 2 - - uid: 16588 + - uid: 17123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,53.5 + rot: 3.141592653589793 rad + pos: -113.5,8.5 parent: 2 - - uid: 16589 + - uid: 17124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,52.5 + rot: 3.141592653589793 rad + pos: -113.5,9.5 parent: 2 - - uid: 16590 + - uid: 17125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,51.5 + rot: 3.141592653589793 rad + pos: -110.5,9.5 parent: 2 - - uid: 16591 + - uid: 17126 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,46.5 + rot: 3.141592653589793 rad + pos: -111.5,9.5 parent: 2 - - uid: 16592 + - uid: 17127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,47.5 + rot: 3.141592653589793 rad + pos: -111.5,10.5 parent: 2 - - uid: 16593 + - uid: 17128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,49.5 + rot: 1.5707963267948966 rad + pos: -36.5,7.5 parent: 2 - - uid: 16594 + - uid: 17129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,46.5 + rot: 1.5707963267948966 rad + pos: -37.5,11.5 parent: 2 - - uid: 16595 + - uid: 17130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,48.5 + rot: 1.5707963267948966 rad + pos: -221.5,0.5 parent: 2 - - uid: 16596 + - uid: 17131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,53.5 + pos: -219.5,1.5 parent: 2 - - uid: 16597 + - uid: 17132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,51.5 + rot: 3.141592653589793 rad + pos: -229.5,-16.5 parent: 2 - - uid: 16598 + - uid: 17133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,50.5 + pos: -229.5,-8.5 parent: 2 - - uid: 16599 + - uid: 17134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,50.5 + rot: 3.141592653589793 rad + pos: -228.5,-14.5 parent: 2 - - uid: 16600 + - uid: 17135 components: - type: Transform rot: -1.5707963267948966 rad - pos: -66.5,50.5 + pos: -228.5,-11.5 parent: 2 - - uid: 16601 + - uid: 17136 components: - type: Transform rot: -1.5707963267948966 rad - pos: -67.5,50.5 + pos: -228.5,-10.5 parent: 2 - - uid: 16602 + - uid: 17137 components: - type: Transform rot: -1.5707963267948966 rad - pos: -70.5,50.5 + pos: -228.5,-6.5 parent: 2 - - uid: 16603 + - uid: 17138 components: - type: Transform rot: -1.5707963267948966 rad - pos: -71.5,50.5 + pos: -227.5,-4.5 parent: 2 - - uid: 16604 + - uid: 17139 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,51.5 + pos: -219.5,-35.5 parent: 2 - - uid: 16605 + - uid: 17140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,52.5 + pos: -214.5,-30.5 parent: 2 - - uid: 16606 + - uid: 17141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,52.5 + pos: -214.5,-29.5 parent: 2 - - uid: 16607 + - uid: 17142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,46.5 + pos: -214.5,-28.5 parent: 2 - - uid: 16608 + - uid: 17143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,47.5 + pos: -225.5,-32.5 parent: 2 - - uid: 16609 + - uid: 17144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,48.5 + pos: -221.5,-37.5 parent: 2 - - uid: 16610 + - uid: 17145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,50.5 + pos: -220.5,-37.5 parent: 2 - - uid: 16611 + - uid: 17146 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,51.5 + pos: -220.5,-36.5 parent: 2 - - uid: 16612 + - uid: 17147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,52.5 + pos: -219.5,-36.5 parent: 2 - - uid: 16613 +- proto: WallSolidDiagonal + entities: + - uid: 17148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,53.5 + pos: -221.5,1.5 parent: 2 - - uid: 16614 + - uid: 17149 components: - type: Transform rot: 3.141592653589793 rad - pos: -76.5,11.5 + pos: -218.5,-0.5 parent: 2 - - uid: 16615 + - uid: 17150 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,12.5 + rot: -1.5707963267948966 rad + pos: -218.5,1.5 parent: 2 - - uid: 16616 + - uid: 17151 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,-14.5 + pos: -229.5,-15.5 parent: 2 - - uid: 16617 + - uid: 17152 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,-13.5 + rot: 1.5707963267948966 rad + pos: -229.5,-10.5 parent: 2 - - uid: 16618 + - uid: 17153 components: - type: Transform - rot: 3.141592653589793 rad - pos: -113.5,8.5 + pos: -229.5,-6.5 parent: 2 - - uid: 16619 +- proto: WallSolidRust + entities: + - uid: 17154 components: - type: Transform - rot: 3.141592653589793 rad - pos: -113.5,9.5 + pos: -168.5,-24.5 parent: 2 - - uid: 16620 + - uid: 17155 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,9.5 + rot: 1.5707963267948966 rad + pos: -219.5,-0.5 parent: 2 - - uid: 16621 + - uid: 17156 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,9.5 + rot: 1.5707963267948966 rad + pos: -218.5,0.5 parent: 2 - - uid: 16622 + - uid: 17157 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,10.5 + rot: -1.5707963267948966 rad + pos: -228.5,-13.5 parent: 2 - - uid: 16623 + - uid: 17158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,7.5 + rot: -1.5707963267948966 rad + pos: -228.5,-12.5 parent: 2 - - uid: 16624 + - uid: 17159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,11.5 + rot: -1.5707963267948966 rad + pos: -228.5,-5.5 parent: 2 -- proto: WallSolidRust - entities: - - uid: 16625 + - uid: 17160 components: - type: Transform - pos: -168.5,-24.5 + rot: -1.5707963267948966 rad + pos: -227.5,-5.5 parent: 2 - proto: WallWeaponCapacitorRecharger entities: - - uid: 16626 + - uid: 17161 components: - type: Transform rot: 1.5707963267948966 rad pos: -162.5,2.5 parent: 2 - - uid: 16627 + - uid: 17162 components: - type: Transform pos: -152.5,2.5 parent: 2 - - uid: 16628 + - uid: 17163 components: - type: Transform pos: -169.5,7.5 parent: 2 - - uid: 16629 + - uid: 17164 components: - type: Transform rot: 1.5707963267948966 rad @@ -112522,41 +117376,41 @@ entities: parent: 2 - proto: WardrobeCargoFilled entities: - - uid: 16630 + - uid: 17165 components: - type: Transform pos: -59.5,-21.5 parent: 2 - - uid: 16631 + - uid: 17166 components: - type: Transform pos: -60.5,-21.5 parent: 2 - proto: WardrobeChapelFilled entities: - - uid: 16632 + - uid: 17167 components: - type: Transform pos: -44.5,7.5 parent: 2 - proto: WardrobePrisonFilled entities: - - uid: 16633 + - uid: 17168 components: - type: Transform pos: -155.5,-15.5 parent: 2 - - uid: 16634 + - uid: 17169 components: - type: Transform pos: -152.5,-25.5 parent: 2 - - uid: 16635 + - uid: 17170 components: - type: Transform pos: -155.5,-14.5 parent: 2 - - uid: 16636 + - uid: 17171 components: - type: Transform anchored: True @@ -112564,7 +117418,7 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 16637 + - uid: 17172 components: - type: Transform anchored: True @@ -112572,7 +117426,7 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 16638 + - uid: 17173 components: - type: Transform anchored: True @@ -112580,207 +117434,266 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 16639 + - uid: 17174 components: - type: Transform pos: -155.5,-12.5 parent: 2 - - uid: 16640 + - uid: 17175 components: - type: Transform pos: -155.5,-11.5 parent: 2 - - uid: 16641 + - uid: 17176 components: - type: Transform pos: -155.5,-10.5 parent: 2 - - uid: 16642 + - uid: 17177 components: - type: Transform pos: -158.5,-25.5 parent: 2 +- proto: WardrobeSalvageFilled + entities: + - uid: 17178 + components: + - type: Transform + pos: -215.5,-33.5 + parent: 2 + - uid: 17179 + components: + - type: Transform + pos: -229.5,-33.5 + parent: 2 + - uid: 17180 + components: + - type: Transform + pos: -229.5,-25.5 + parent: 2 + - uid: 17181 + components: + - type: Transform + pos: -228.5,-29.5 + parent: 2 + - uid: 17182 + components: + - type: Transform + pos: -228.5,-21.5 + parent: 2 +- proto: WardrobeScienceFilled + entities: + - uid: 7076 + components: + - type: Transform + pos: -201.5,10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7078 + - 7077 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: WardrobeWhite entities: - - uid: 16643 + - uid: 17183 components: - type: Transform pos: -106.5,8.5 parent: 2 - - uid: 16644 + - uid: 17184 components: - type: Transform pos: -106.5,4.5 parent: 2 - - uid: 16645 + - uid: 17185 components: - type: Transform pos: -98.5,8.5 parent: 2 - - uid: 16646 + - uid: 17186 components: - type: Transform pos: -101.5,21.5 parent: 2 - proto: WarningAir entities: - - uid: 16647 + - uid: 17187 components: - type: Transform pos: -53.5,22.5 parent: 2 - proto: WarningCO2 entities: - - uid: 16648 + - uid: 17188 components: - type: Transform pos: -72.5,27.5 parent: 2 - proto: WarningN2 entities: - - uid: 16649 + - uid: 17189 components: - type: Transform pos: -57.5,27.5 parent: 2 - proto: WarningN2O entities: - - uid: 16650 + - uid: 17190 components: - type: Transform pos: -75.5,27.5 parent: 2 - proto: WarningO2 entities: - - uid: 16651 + - uid: 17191 components: - type: Transform pos: -60.5,27.5 parent: 2 - proto: WarningPlasma entities: - - uid: 16652 + - uid: 17192 components: - type: Transform pos: -81.5,25.5 parent: 2 - - uid: 16653 + - uid: 17193 components: - type: Transform pos: -78.5,27.5 parent: 2 - proto: WarpPointBombing entities: - - uid: 16654 + - uid: 17194 components: - type: Transform pos: -75.5,-3.5 parent: 2 - proto: WaterCooler entities: - - uid: 16655 + - uid: 17195 components: - type: Transform pos: -154.5,5.5 parent: 2 - - uid: 16656 + - uid: 17196 components: - type: Transform pos: -163.5,-19.5 parent: 2 - proto: WaterTankFull entities: - - uid: 16657 + - uid: 17197 components: - type: Transform - pos: -42.5,13.5 + pos: -44.5,15.5 parent: 2 - - uid: 16658 + - uid: 17198 components: - type: Transform pos: -73.5,-24.5 parent: 2 - - uid: 16659 + - uid: 17199 components: - type: Transform pos: -160.5,-25.5 parent: 2 - - uid: 16660 + - uid: 17200 components: - type: Transform pos: -130.5,-15.5 parent: 2 - - uid: 16661 + - uid: 17201 components: - type: Transform pos: -123.5,-21.5 parent: 2 - - uid: 16662 + - uid: 17202 components: - type: Transform pos: -110.5,14.5 parent: 2 - - uid: 16663 + - uid: 17203 components: - type: Transform pos: -91.5,8.5 parent: 2 - - uid: 16664 + - uid: 17204 components: - type: Transform pos: -73.5,11.5 parent: 2 - - uid: 16665 - components: - - type: Transform - pos: -56.5,-23.5 - parent: 2 - - uid: 16666 + - uid: 17205 components: - type: Transform pos: -52.5,-19.5 parent: 2 - - uid: 16667 + - uid: 17206 components: - type: Transform pos: -95.5,-19.5 parent: 2 - proto: WaterTankHighCapacity entities: - - uid: 16668 + - uid: 17207 components: - type: Transform pos: -105.5,-13.5 parent: 2 - proto: WeaponCapacitorRecharger entities: - - uid: 16669 + - uid: 17208 components: - type: Transform pos: -168.5,-11.5 parent: 2 - - uid: 16670 + - uid: 17209 components: - type: Transform pos: -168.5,7.5 parent: 2 - - uid: 16671 + - uid: 17210 components: - type: Transform pos: -157.5,9.5 parent: 2 - - uid: 16672 + - uid: 17211 components: - type: Transform pos: -167.5,-7.5 parent: 2 - - uid: 16673 + - uid: 17212 components: - type: Transform rot: -1.5707963267948966 rad pos: -146.5,7.5 parent: 2 - - uid: 16674 + - uid: 17213 components: - type: Transform rot: 1.5707963267948966 rad @@ -112788,31 +117701,31 @@ entities: parent: 2 - proto: WeaponDisabler entities: - - uid: 889 + - uid: 937 components: - type: Transform - parent: 887 + parent: 935 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 890 + - uid: 938 components: - type: Transform - parent: 887 + parent: 935 - type: Physics angularDamping: 0 linearDamping: 0 canCollide: False - type: InsideEntityStorage - - uid: 16675 + - uid: 17214 components: - type: Transform rot: -1.5707963267948966 rad pos: -161.36229,5.618393 parent: 2 - - uid: 16676 + - uid: 17215 components: - type: Transform rot: -1.5707963267948966 rad @@ -112820,7 +117733,7 @@ entities: parent: 2 - proto: WeaponDisablerPractice entities: - - uid: 16677 + - uid: 17216 components: - type: Transform rot: 1.5707963267948966 rad @@ -112828,13 +117741,13 @@ entities: parent: 2 - proto: WeaponEnergyGun entities: - - uid: 16678 + - uid: 17217 components: - type: Transform rot: 1.5707963267948966 rad pos: -151.2431,-0.5493684 parent: 2 - - uid: 16679 + - uid: 17218 components: - type: Transform rot: 1.5707963267948966 rad @@ -112842,24 +117755,24 @@ entities: parent: 2 - proto: WeaponLaserCarbine entities: - - uid: 16680 + - uid: 17219 components: - type: Transform pos: -175.46465,12.315516 parent: 2 - - uid: 16681 + - uid: 17220 components: - type: Transform pos: -175.57721,12.535023 parent: 2 - - uid: 16682 + - uid: 17221 components: - type: Transform pos: -175.67096,12.691273 parent: 2 - proto: WeaponLaserCarbinePractice entities: - - uid: 16683 + - uid: 17222 components: - type: Transform rot: 1.5707963267948966 rad @@ -112867,13 +117780,13 @@ entities: parent: 2 - proto: WeaponRevolverSnub entities: - - uid: 11330 + - uid: 11736 components: - type: MetaData desc: Воистину культовое оружие. name: Матье Балл - type: Transform - parent: 11327 + parent: 11733 - type: Gun fireRate: 2 - type: Physics @@ -112883,13 +117796,13 @@ entities: - type: InsideEntityStorage - proto: WeaponRifleLecter entities: - - uid: 16684 + - uid: 17223 components: - type: Transform rot: 1.5707963267948966 rad pos: -174.37245,14.758273 parent: 2 - - uid: 16685 + - uid: 17224 components: - type: Transform rot: 1.5707963267948966 rad @@ -112897,7 +117810,7 @@ entities: parent: 2 - proto: WeaponRifleM90GrenadeLauncher entities: - - uid: 16686 + - uid: 17225 components: - type: MetaData desc: Универсальная штурмовая винтовка компоновки "БуллПап" под калибр .20 винтовочный. Какой-то умелец всё-таки сумел засунуть в него ускоряющий модуль, не смотря на устаревшую конструкцию. Заместо подствольного гранатомёта стоит заглушка. @@ -112909,14 +117822,14 @@ entities: fireRate: 6.5 - proto: WeaponShotgunAdjutant entities: - - uid: 16687 + - uid: 17226 components: - type: MetaData name: Адьютант - type: Transform pos: -175.50594,11.639274 parent: 2 - - uid: 16688 + - uid: 17227 components: - type: MetaData name: Адьютант @@ -112925,13 +117838,13 @@ entities: parent: 2 - proto: WeaponSubMachineGunDrozd entities: - - uid: 16689 + - uid: 17228 components: - type: Transform rot: -1.5707963267948966 rad pos: -174.48183,9.445773 parent: 2 - - uid: 16690 + - uid: 17229 components: - type: Transform rot: -1.5707963267948966 rad @@ -112939,99 +117852,96 @@ entities: parent: 2 - proto: Welder entities: - - uid: 16691 + - uid: 17230 components: - type: Transform pos: -45.76063,-7.2745814 parent: 2 - - uid: 16692 + - uid: 17231 components: - type: Transform pos: -44.98462,1.6867104 parent: 2 -- proto: WelderIndustrialAdvanced - entities: - - uid: 16693 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -203.319,20.4163 - parent: 2 - proto: WelderMini entities: - - uid: 16694 + - uid: 17232 components: - type: Transform pos: -47.463757,-4.789076 parent: 2 - proto: WeldingFuelTankFull entities: - - uid: 16695 + - uid: 17233 components: - type: Transform - pos: -50.5,-7.5 + pos: -60.5,-23.5 parent: 2 - - uid: 16696 + - uid: 17234 components: - type: Transform - pos: -74.5,-24.5 + pos: -91.5,15.5 parent: 2 - - uid: 16697 + - uid: 17235 components: - type: Transform - pos: -111.5,-18.5 + pos: -50.5,-7.5 parent: 2 - - uid: 16698 + - uid: 17236 + components: + - type: Transform + pos: -74.5,-24.5 + parent: 2 + - uid: 17237 components: - type: Transform pos: -129.5,-15.5 parent: 2 - - uid: 16699 + - uid: 17238 components: - type: Transform pos: -79.5,15.5 parent: 2 - - uid: 16700 + - uid: 17239 components: - type: Transform pos: -52.5,-25.5 parent: 2 - - uid: 16701 + - uid: 17240 components: - type: Transform pos: -53.5,-19.5 parent: 2 - - uid: 16702 + - uid: 17241 components: - type: Transform pos: -91.5,-14.5 parent: 2 - - uid: 16703 + - uid: 17242 components: - type: Transform pos: -97.5,-17.5 parent: 2 - - uid: 16704 + - uid: 17243 components: - type: Transform pos: -30.5,12.5 parent: 2 - - uid: 17013 + - uid: 17244 components: - type: Transform pos: -69.5,11.5 parent: 2 - - uid: 17020 + - uid: 17245 components: - type: Transform pos: -101.5,-8.5 parent: 2 - proto: WhoopieCushion entities: - - uid: 6642 + - uid: 7026 components: - type: Transform - parent: 6638 + parent: 7022 - type: Physics angularDamping: 0 linearDamping: 0 @@ -113039,13 +117949,19 @@ entities: - type: InsideEntityStorage - proto: Windoor entities: - - uid: 16705 + - uid: 12961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,-17.5 + parent: 2 + - uid: 17246 components: - type: Transform rot: 3.141592653589793 rad pos: -114.5,-8.5 parent: 2 - - uid: 16706 + - uid: 17247 components: - type: Transform rot: 3.141592653589793 rad @@ -113053,26 +117969,26 @@ entities: parent: 2 - proto: WindoorBarLocked entities: - - uid: 16707 + - uid: 17248 components: - type: Transform pos: -120.5,2.5 parent: 2 - proto: WindoorChapelLocked entities: - - uid: 16708 + - uid: 17249 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,8.5 parent: 2 - - uid: 16709 + - uid: 17250 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,9.5 parent: 2 - - uid: 16710 + - uid: 17251 components: - type: Transform rot: -1.5707963267948966 rad @@ -113080,165 +117996,166 @@ entities: parent: 2 - proto: WindoorHydroponicsLocked entities: - - uid: 16711 + - uid: 17252 components: - type: Transform rot: 1.5707963267948966 rad pos: -110.5,-10.5 parent: 2 - - uid: 16712 + - uid: 17253 components: - type: Transform pos: -106.5,-5.5 parent: 2 - - uid: 16713 + - uid: 17254 components: - type: Transform pos: -105.5,-5.5 parent: 2 - proto: WindoorKitchenLocked entities: - - uid: 16714 + - uid: 17255 components: - type: Transform pos: -114.5,-8.5 parent: 2 - - uid: 16715 + - uid: 17256 components: - type: Transform rot: -1.5707963267948966 rad pos: -110.5,-10.5 parent: 2 +- proto: WindoorMailLocked + entities: + - uid: 16839 + components: + - type: Transform + pos: -75.5,-17.5 + parent: 2 - proto: WindoorSecure entities: - - uid: 16716 + - uid: 17257 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,1.5 parent: 2 - - uid: 16717 + - uid: 17258 components: - type: Transform rot: 1.5707963267948966 rad pos: -158.5,0.5 parent: 2 - - uid: 16718 + - uid: 17259 components: - type: Transform rot: 1.5707963267948966 rad pos: -158.5,-0.5 parent: 2 - - uid: 16719 + - uid: 17260 components: - type: Transform pos: -159.5,-1.5 parent: 2 - - uid: 16720 + - uid: 17261 components: - type: Transform pos: -160.5,-1.5 parent: 2 - - uid: 16721 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -189.5,-25.5 - parent: 2 - - uid: 16722 + - uid: 17262 components: - type: Transform pos: -127.5,-18.5 parent: 2 - proto: WindoorSecureArmoryLocked entities: - - uid: 16723 + - uid: 17263 components: - type: Transform pos: -171.5,14.5 parent: 2 - - uid: 16724 + - uid: 17264 components: - type: Transform pos: -172.5,14.5 parent: 2 - - uid: 16725 + - uid: 17265 components: - type: Transform pos: -170.5,14.5 parent: 2 - - uid: 16726 + - uid: 17266 components: - type: Transform rot: -1.5707963267948966 rad pos: -173.5,12.5 parent: 2 - - uid: 16727 + - uid: 17267 components: - type: Transform rot: -1.5707963267948966 rad pos: -173.5,11.5 parent: 2 - - uid: 16728 + - uid: 17268 components: - type: Transform pos: -153.5,17.5 parent: 2 - - uid: 16729 + - uid: 17269 components: - type: Transform rot: 3.141592653589793 rad pos: -164.5,6.5 parent: 2 - - uid: 16730 + - uid: 17270 components: - type: Transform pos: -164.5,11.5 parent: 2 - proto: WindoorSecureCargoLocked entities: - - uid: 16731 + - uid: 17271 components: - type: Transform pos: -64.5,-17.5 parent: 2 - proto: WindoorSecureChemistryLocked entities: - - uid: 16732 + - uid: 17272 components: - type: Transform rot: -1.5707963267948966 rad - pos: -189.5,-25.5 + pos: -188.5,-23.5 parent: 2 - proto: WindoorSecureCommandLocked entities: - - uid: 16733 + - uid: 17273 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,4.5 parent: 2 - - uid: 17148 + - uid: 17692 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-4.5 - parent: 17021 - - uid: 17149 + parent: 17565 + - uid: 17693 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-2.5 - parent: 17021 - - uid: 17150 + parent: 17565 + - uid: 17694 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-3.5 - parent: 17021 + parent: 17565 - proto: WindoorSecureEngineeringLocked entities: - - uid: 16734 + - uid: 17274 components: - type: Transform rot: -1.5707963267948966 rad @@ -113246,13 +118163,13 @@ entities: parent: 2 - proto: WindoorSecureExternalLocked entities: - - uid: 16735 + - uid: 17275 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-15.5 parent: 2 - - uid: 16736 + - uid: 17276 components: - type: Transform rot: -1.5707963267948966 rad @@ -113260,64 +118177,64 @@ entities: parent: 2 - proto: WindoorSecureHeadOfPersonnelLocked entities: - - uid: 16737 + - uid: 17277 components: - type: Transform pos: -17.5,1.5 parent: 2 - proto: WindoorSecureScienceLocked entities: - - uid: 16738 + - uid: 17278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -192.5,7.5 + rot: 3.141592653589793 rad + pos: -193.5,2.5 parent: 2 - proto: WindoorSecureSecurityLawyerLocked entities: - - uid: 16739 + - uid: 17279 components: - type: Transform pos: -158.5,-11.5 parent: 2 - proto: WindoorSecureSecurityLocked entities: - - uid: 16740 + - uid: 17280 components: - type: Transform rot: 3.141592653589793 rad pos: -160.5,-1.5 parent: 2 - - uid: 16741 + - uid: 17281 components: - type: Transform rot: 3.141592653589793 rad pos: -159.5,-1.5 parent: 2 - - uid: 16742 + - uid: 17282 components: - type: Transform rot: -1.5707963267948966 rad pos: -158.5,-0.5 parent: 2 - - uid: 16743 + - uid: 17283 components: - type: Transform rot: -1.5707963267948966 rad pos: -158.5,0.5 parent: 2 - - uid: 16744 + - uid: 17284 components: - type: Transform rot: 3.141592653589793 rad pos: -134.5,4.5 parent: 2 - - uid: 16745 + - uid: 17285 components: - type: Transform pos: -164.5,6.5 parent: 2 - - uid: 16746 + - uid: 17286 components: - type: Transform rot: -1.5707963267948966 rad @@ -113325,8 +118242,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 11469 - - uid: 16747 + - 11872 + - uid: 17287 components: - type: Transform rot: -1.5707963267948966 rad @@ -113334,8 +118251,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 11468 - - uid: 16748 + - 11871 + - uid: 17288 components: - type: Transform rot: 1.5707963267948966 rad @@ -113343,8 +118260,8 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 11468 - - uid: 16749 + - 11871 + - uid: 17289 components: - type: Transform rot: 1.5707963267948966 rad @@ -113352,98 +118269,98 @@ entities: parent: 2 - type: DeviceLinkSink links: - - 11469 - - uid: 16750 + - 11872 + - uid: 17290 components: - type: Transform rot: 3.141592653589793 rad pos: -151.5,-0.5 parent: 2 - - uid: 16751 + - uid: 17291 components: - type: Transform rot: 3.141592653589793 rad pos: -158.5,-11.5 parent: 2 - - uid: 16752 + - uid: 17292 components: - type: Transform pos: -145.5,10.5 parent: 2 - proto: Window entities: - - uid: 16753 + - uid: 17293 components: - type: Transform pos: -38.5,6.5 parent: 2 - - uid: 16754 + - uid: 17294 components: - type: Transform pos: -40.5,-4.5 parent: 2 - - uid: 16755 + - uid: 17295 components: - type: Transform pos: -40.5,-2.5 parent: 2 - - uid: 16756 + - uid: 17296 components: - type: Transform pos: -40.5,-6.5 parent: 2 - - uid: 16757 + - uid: 17297 components: - type: Transform pos: -48.5,4.5 parent: 2 - - uid: 16758 + - uid: 17298 components: - type: Transform pos: -48.5,1.5 parent: 2 - - uid: 16759 + - uid: 17299 components: - type: Transform pos: -47.5,0.5 parent: 2 - - uid: 16760 + - uid: 17300 components: - type: Transform pos: -45.5,0.5 parent: 2 - - uid: 16761 + - uid: 17301 components: - type: Transform pos: -44.5,0.5 parent: 2 - - uid: 16762 + - uid: 17302 components: - type: Transform pos: -40.5,-0.5 parent: 2 - - uid: 16763 + - uid: 17303 components: - type: Transform pos: -37.5,6.5 parent: 2 - - uid: 16764 + - uid: 17304 components: - type: Transform pos: -36.5,8.5 parent: 2 - - uid: 16765 + - uid: 17305 components: - type: Transform pos: -36.5,9.5 parent: 2 - - uid: 16766 + - uid: 17306 components: - type: Transform rot: 1.5707963267948966 rad pos: -109.5,-7.5 parent: 2 - - uid: 16767 + - uid: 17307 components: - type: Transform rot: 1.5707963267948966 rad @@ -113451,1452 +118368,1338 @@ entities: parent: 2 - proto: WindowDirectional entities: - - uid: 16768 + - uid: 17308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-27.5 + parent: 2 + - uid: 17309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-27.5 + parent: 2 + - uid: 17310 components: - type: Transform rot: 3.141592653589793 rad pos: -112.5,-8.5 parent: 2 - - uid: 16769 + - uid: 17311 components: - type: Transform rot: -1.5707963267948966 rad pos: -113.5,-8.5 parent: 2 - - uid: 16770 + - uid: 17312 components: - type: Transform rot: 3.141592653589793 rad pos: -116.5,-8.5 parent: 2 - - uid: 16771 + - uid: 17313 components: - type: Transform rot: -1.5707963267948966 rad pos: -114.5,-8.5 parent: 2 - - uid: 16772 + - uid: 17314 components: - type: Transform rot: 3.141592653589793 rad pos: -113.5,-8.5 parent: 2 - - uid: 16773 + - uid: 17315 components: - type: Transform rot: 1.5707963267948966 rad pos: -116.5,-8.5 parent: 2 - - uid: 16774 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-25.5 - parent: 2 - - uid: 16775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-25.5 - parent: 2 - - uid: 16776 + - uid: 17316 components: - type: Transform rot: 3.141592653589793 rad pos: -207.5,12.5 parent: 2 - - uid: 16777 + - uid: 17317 components: - type: Transform pos: -207.5,10.5 parent: 2 - - uid: 16778 + - uid: 17318 components: - type: Transform rot: 3.141592653589793 rad pos: -207.5,8.5 parent: 2 - - uid: 16779 + - uid: 17319 components: - type: Transform pos: -207.5,6.5 parent: 2 - - uid: 16780 + - uid: 17320 components: - type: Transform pos: -207.5,2.5 parent: 2 - - uid: 16781 + - uid: 17321 components: - type: Transform rot: 3.141592653589793 rad pos: -207.5,4.5 parent: 2 - - uid: 16782 + - uid: 17322 components: - type: Transform rot: 1.5707963267948966 rad pos: -147.5,-4.5 parent: 2 - - uid: 16783 + - uid: 17323 components: - type: Transform rot: -1.5707963267948966 rad pos: -141.5,-4.5 parent: 2 - - uid: 16784 + - uid: 17324 components: - type: Transform rot: -1.5707963267948966 rad pos: -141.5,-3.5 parent: 2 - - uid: 16785 + - uid: 17325 components: - type: Transform rot: 3.141592653589793 rad pos: -141.5,-3.5 parent: 2 - - uid: 16786 + - uid: 17326 components: - type: Transform rot: 3.141592653589793 rad pos: -135.5,-4.5 parent: 2 - - uid: 16787 + - uid: 17327 components: - type: Transform rot: 3.141592653589793 rad pos: -136.5,-4.5 parent: 2 - - uid: 16788 + - uid: 17328 components: - type: Transform rot: 3.141592653589793 rad pos: -137.5,-4.5 parent: 2 - - uid: 16789 + - uid: 17329 components: - type: Transform rot: 3.141592653589793 rad pos: -138.5,-4.5 parent: 2 - - uid: 16790 + - uid: 17330 components: - type: Transform rot: 1.5707963267948966 rad pos: -147.5,-3.5 parent: 2 - - uid: 16791 + - uid: 17331 components: - type: Transform rot: -1.5707963267948966 rad pos: -133.5,-4.5 parent: 2 - - uid: 16792 + - uid: 17332 components: - type: Transform pos: -19.5,3.5 parent: 2 - - uid: 16793 + - uid: 17333 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-0.5 parent: 2 - - uid: 16794 + - uid: 17334 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-0.5 parent: 2 - - uid: 16795 + - uid: 17335 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-0.5 parent: 2 - - uid: 16796 + - uid: 17336 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-0.5 parent: 2 - - uid: 16797 + - uid: 17337 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-0.5 parent: 2 - - uid: 16798 + - uid: 17338 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-0.5 parent: 2 - - uid: 16799 + - uid: 17339 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-6.5 parent: 2 - - uid: 16800 + - uid: 17340 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-6.5 parent: 2 - - uid: 16801 + - uid: 17341 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-6.5 parent: 2 - - uid: 16802 + - uid: 17342 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-6.5 parent: 2 - - uid: 16803 + - uid: 17343 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-6.5 parent: 2 - - uid: 16804 + - uid: 17344 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-6.5 parent: 2 - - uid: 16805 + - uid: 17345 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,3.5 parent: 2 - - uid: 16806 + - uid: 17346 components: - type: Transform pos: -20.5,3.5 parent: 2 - - uid: 16807 + - uid: 17347 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,3.5 parent: 2 - - uid: 16808 + - uid: 17348 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,3.5 parent: 2 - - uid: 16809 - components: - - type: Transform - pos: -18.5,3.5 - parent: 2 - - uid: 16810 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,3.5 - parent: 2 - - uid: 16811 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,3.5 - parent: 2 - - uid: 16812 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,3.5 - parent: 2 - - uid: 16813 - components: - - type: Transform - pos: -17.5,3.5 - parent: 2 - - uid: 16814 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -184.5,-25.5 - parent: 2 - - uid: 16815 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -185.5,-25.5 - parent: 2 - - uid: 16816 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -192.5,6.5 - parent: 2 - - uid: 16817 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -192.5,8.5 - parent: 2 - - uid: 16818 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -197.5,21.5 - parent: 2 - - uid: 16819 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -195.5,21.5 - parent: 2 - - uid: 16820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -196.5,18.5 - parent: 2 - - uid: 16821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -194.5,21.5 - parent: 2 - - uid: 16822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -196.5,18.5 - parent: 2 - - uid: 16823 - components: - - type: Transform - pos: -196.5,18.5 - parent: 2 - - uid: 16824 - components: - - type: Transform - pos: -195.5,19.5 - parent: 2 - - uid: 16825 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -194.5,19.5 - parent: 2 - - uid: 16826 - components: - - type: Transform - pos: -198.5,12.5 - parent: 2 - - uid: 16827 + - uid: 17349 components: - type: Transform - rot: 3.141592653589793 rad - pos: -194.5,14.5 + pos: -18.5,3.5 parent: 2 - - uid: 16828 + - uid: 17350 components: - type: Transform rot: 3.141592653589793 rad - pos: -198.5,14.5 + pos: -19.5,3.5 parent: 2 - - uid: 16829 + - uid: 17351 components: - type: Transform rot: 3.141592653589793 rad - pos: -135.5,4.5 + pos: -18.5,3.5 parent: 2 - - uid: 16830 + - uid: 17352 components: - type: Transform rot: 3.141592653589793 rad - pos: -133.5,4.5 + pos: -17.5,3.5 parent: 2 - - uid: 16831 + - uid: 17353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -198.5,21.5 + pos: -17.5,3.5 parent: 2 - - uid: 16832 + - uid: 17354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -198.5,19.5 + rot: 3.141592653589793 rad + pos: -135.5,4.5 parent: 2 - - uid: 16833 + - uid: 17355 components: - type: Transform - pos: -197.5,19.5 + rot: 3.141592653589793 rad + pos: -133.5,4.5 parent: 2 - - uid: 16834 + - uid: 17356 components: - type: Transform rot: -1.5707963267948966 rad pos: -188.5,-4.5 parent: 2 - - uid: 16835 + - uid: 17357 components: - type: Transform rot: 1.5707963267948966 rad pos: -184.5,-4.5 parent: 2 - - uid: 16836 + - uid: 17358 components: - type: Transform rot: 3.141592653589793 rad pos: -142.5,-4.5 parent: 2 - - uid: 16837 + - uid: 17359 components: - type: Transform rot: 3.141592653589793 rad pos: -143.5,-4.5 parent: 2 - - uid: 16838 + - uid: 17360 components: - type: Transform rot: 3.141592653589793 rad pos: -144.5,-4.5 parent: 2 - - uid: 16839 + - uid: 17361 components: - type: Transform rot: 3.141592653589793 rad pos: -145.5,-4.5 parent: 2 - - uid: 16840 + - uid: 17362 components: - type: Transform rot: 3.141592653589793 rad pos: -146.5,-4.5 parent: 2 - - uid: 16841 + - uid: 17363 components: - type: Transform rot: 3.141592653589793 rad pos: -140.5,-3.5 parent: 2 - - uid: 16842 + - uid: 17364 components: - type: Transform rot: 3.141592653589793 rad pos: -139.5,-3.5 parent: 2 - - uid: 16843 + - uid: 17365 components: - type: Transform rot: 1.5707963267948966 rad pos: -139.5,-3.5 parent: 2 - - uid: 16844 + - uid: 17366 components: - type: Transform rot: 1.5707963267948966 rad pos: -139.5,-4.5 parent: 2 - - uid: 16845 + - uid: 17367 components: - type: Transform pos: -139.5,-4.5 parent: 2 - - uid: 16846 + - uid: 17368 components: - type: Transform pos: -141.5,-4.5 parent: 2 - - uid: 16847 + - uid: 17369 components: - type: Transform pos: -140.5,-4.5 parent: 2 - - uid: 16848 + - uid: 17370 components: - type: Transform rot: 3.141592653589793 rad pos: -134.5,-4.5 parent: 2 - - uid: 16849 + - uid: 17371 components: - type: Transform rot: -1.5707963267948966 rad pos: -133.5,-3.5 parent: 2 - - uid: 16850 + - uid: 17372 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,9.5 parent: 2 - - uid: 16851 + - uid: 17373 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,9.5 parent: 2 - - uid: 16852 - components: - - type: Transform - pos: -196.5,19.5 - parent: 2 - - uid: 16853 + - uid: 17374 components: - type: Transform rot: -1.5707963267948966 rad pos: -119.5,-11.5 parent: 2 - - uid: 16854 + - uid: 17375 components: - type: Transform rot: -1.5707963267948966 rad pos: -119.5,-9.5 parent: 2 - - uid: 16855 + - uid: 17376 components: - type: Transform rot: 1.5707963267948966 rad pos: -121.5,-11.5 parent: 2 - - uid: 16856 + - uid: 17377 components: - type: Transform rot: 1.5707963267948966 rad pos: -121.5,-9.5 parent: 2 - - uid: 16857 + - uid: 17378 components: - type: Transform rot: 3.141592653589793 rad pos: -128.5,-11.5 parent: 2 - - uid: 16858 + - uid: 17379 components: - type: Transform rot: -1.5707963267948966 rad pos: -82.5,-36.5 parent: 2 - - uid: 16859 + - uid: 17380 components: - type: Transform pos: -86.5,-31.5 parent: 2 - - uid: 16860 + - uid: 17381 components: - type: Transform rot: 3.141592653589793 rad pos: -86.5,-29.5 parent: 2 - - uid: 16861 + - uid: 17382 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-31.5 parent: 2 - - uid: 16862 + - uid: 17383 components: - type: Transform pos: -81.5,-32.5 parent: 2 - - uid: 16863 + - uid: 17384 components: - type: Transform rot: 1.5707963267948966 rad pos: -208.5,0.5 parent: 2 - - uid: 16864 + - uid: 17385 components: - type: Transform - pos: -194.5,12.5 + rot: -1.5707963267948966 rad + pos: -100.5,6.5 parent: 2 -- proto: WindowFrostedDirectional - entities: - - uid: 16865 + - uid: 17386 components: - type: Transform - pos: -27.5,8.5 + pos: -199.5,11.5 parent: 2 - - uid: 16866 + - uid: 17387 + components: + - type: Transform + pos: -199.5,5.5 + parent: 2 + - uid: 17388 components: - type: Transform rot: 3.141592653589793 rad - pos: -175.5,1.5 + pos: -199.5,5.5 parent: 2 - - uid: 16867 + - uid: 17389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -199.5,11.5 + parent: 2 +- proto: WindowFrostedDirectional + entities: + - uid: 17390 + components: + - type: Transform + pos: -27.5,8.5 + parent: 2 + - uid: 17391 components: - type: Transform rot: 3.141592653589793 rad pos: -179.5,-0.5 parent: 2 - - uid: 16868 + - uid: 17392 components: - type: Transform rot: 3.141592653589793 rad pos: -175.5,0.5 parent: 2 - - uid: 16869 + - uid: 17393 components: - type: Transform rot: -1.5707963267948966 rad pos: -176.5,3.5 parent: 2 - - uid: 16870 + - uid: 17394 components: - type: Transform rot: 3.141592653589793 rad pos: -179.5,1.5 parent: 2 - - uid: 16871 + - uid: 17395 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,4.5 parent: 2 - - uid: 16872 + - uid: 17396 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,4.5 parent: 2 - - uid: 16873 + - uid: 17397 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,5.5 parent: 2 - - uid: 16874 + - uid: 17398 components: - type: Transform rot: 3.141592653589793 rad - pos: -181.5,-24.5 + pos: -197.5,11.5 parent: 2 - - uid: 16875 + - uid: 17399 components: - type: Transform - rot: 3.141592653589793 rad - pos: -182.5,-24.5 + rot: 1.5707963267948966 rad + pos: -197.5,11.5 parent: 2 - - uid: 16876 + - uid: 17400 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -195.5,1.5 + pos: -197.5,11.5 parent: 2 - - uid: 16877 + - uid: 17401 + components: + - type: Transform + pos: -195.5,11.5 + parent: 2 + - uid: 17402 components: - type: Transform rot: -1.5707963267948966 rad - pos: -199.5,1.5 + pos: -195.5,11.5 parent: 2 - - uid: 16878 + - uid: 17403 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -193.5,1.5 + rot: 3.141592653589793 rad + pos: -195.5,11.5 parent: 2 - - uid: 16879 + - uid: 17404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -197.5,5.5 + parent: 2 + - uid: 17405 components: - type: Transform rot: 1.5707963267948966 rad - pos: -197.5,1.5 + pos: -197.5,5.5 parent: 2 - - uid: 16880 + - uid: 17406 + components: + - type: Transform + pos: -197.5,5.5 + parent: 2 + - uid: 17407 components: - type: Transform rot: -1.5707963267948966 rad - pos: -188.5,-15.5 + pos: -195.5,5.5 parent: 2 - - uid: 16881 + - uid: 17408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -184.5,-13.5 + rot: 3.141592653589793 rad + pos: -195.5,5.5 parent: 2 - - uid: 16882 + - uid: 17409 + components: + - type: Transform + pos: -195.5,5.5 + parent: 2 +- proto: WindowReinforcedDirectional + entities: + - uid: 17410 components: - type: Transform rot: -1.5707963267948966 rad - pos: -188.5,-13.5 + pos: -194.5,7.5 parent: 2 - - uid: 16883 + - uid: 17411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -184.5,-15.5 + rot: 3.141592653589793 rad + pos: -203.5,3.5 parent: 2 - - uid: 16884 + - uid: 17412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -192.5,2.5 + parent: 2 + - uid: 17413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -191.5,2.5 + parent: 2 + - uid: 17414 components: - type: Transform rot: 1.5707963267948966 rad - pos: -197.5,23.5 + pos: -194.5,1.5 parent: 2 - - uid: 16885 + - uid: 17415 components: - type: Transform rot: -1.5707963267948966 rad - pos: -195.5,23.5 + pos: -194.5,9.5 parent: 2 -- proto: WindowReinforcedDirectional - entities: - - uid: 16886 + - uid: 17416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -194.5,2.5 + parent: 2 + - uid: 17417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -203.5,11.5 + parent: 2 + - uid: 17418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -203.5,13.5 + parent: 2 + - uid: 17419 + components: + - type: Transform + pos: -203.5,11.5 + parent: 2 + - uid: 17420 + components: + - type: Transform + pos: -203.5,13.5 + parent: 2 + - uid: 17421 + components: + - type: Transform + pos: -203.5,5.5 + parent: 2 + - uid: 17422 + components: + - type: Transform + pos: -203.5,3.5 + parent: 2 + - uid: 17423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -203.5,5.5 + parent: 2 + - uid: 17424 components: - type: Transform pos: -173.5,11.5 parent: 2 - - uid: 16887 + - uid: 17425 components: - type: Transform rot: 1.5707963267948966 rad pos: -173.5,14.5 parent: 2 - - uid: 16888 + - uid: 17426 components: - type: Transform rot: -1.5707963267948966 rad pos: -171.5,14.5 parent: 2 - - uid: 16889 + - uid: 17427 components: - type: Transform rot: 1.5707963267948966 rad pos: -173.5,13.5 parent: 2 - - uid: 16890 + - uid: 17428 components: - type: Transform rot: 1.5707963267948966 rad pos: -170.5,14.5 parent: 2 - - uid: 16891 + - uid: 17429 components: - type: Transform rot: 1.5707963267948966 rad pos: -171.5,14.5 parent: 2 - - uid: 16892 + - uid: 17430 components: - type: Transform rot: 1.5707963267948966 rad pos: -173.5,9.5 parent: 2 - - uid: 16893 + - uid: 17431 components: - type: Transform rot: 3.141592653589793 rad pos: -173.5,12.5 parent: 2 - - uid: 16894 + - uid: 17432 components: - type: Transform rot: 1.5707963267948966 rad pos: -173.5,10.5 parent: 2 - - uid: 16895 + - uid: 17433 components: - type: Transform pos: -173.5,9.5 parent: 2 - - uid: 16896 + - uid: 17434 components: - type: Transform rot: 1.5707963267948966 rad pos: -158.5,16.5 parent: 2 - - uid: 16897 + - uid: 17435 components: - type: Transform rot: 1.5707963267948966 rad pos: -158.5,14.5 parent: 2 - - uid: 16898 + - uid: 17436 components: - type: Transform rot: 1.5707963267948966 rad pos: -135.5,4.5 parent: 2 - - uid: 16899 + - uid: 17437 components: - type: Transform rot: -1.5707963267948966 rad pos: -133.5,4.5 parent: 2 - - uid: 16900 + - uid: 17438 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-9.5 parent: 2 - - uid: 16901 + - uid: 17439 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 2 - - uid: 16902 + - uid: 17440 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-2.5 parent: 2 - - uid: 16903 + - uid: 17441 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-2.5 parent: 2 - - uid: 16904 + - uid: 17442 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-4.5 parent: 2 - - uid: 16905 + - uid: 17443 components: - type: Transform pos: 4.5,-4.5 parent: 2 - - uid: 16906 - components: - - type: Transform - pos: -189.5,10.5 - parent: 2 - - uid: 16907 + - uid: 17444 components: - type: Transform rot: 1.5707963267948966 rad pos: -101.5,-0.5 parent: 2 - - uid: 16908 + - uid: 17445 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,-0.5 parent: 2 - - uid: 16909 + - uid: 17446 components: - type: Transform rot: -1.5707963267948966 rad pos: -103.5,-0.5 parent: 2 - - uid: 16910 + - uid: 17447 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,-0.5 parent: 2 - - uid: 16911 + - uid: 17448 components: - type: Transform pos: -96.5,3.5 parent: 2 - - uid: 16912 + - uid: 17449 components: - type: Transform rot: 3.141592653589793 rad pos: -96.5,3.5 parent: 2 - - uid: 16913 + - uid: 17450 components: - type: Transform rot: 3.141592653589793 rad pos: -96.5,5.5 parent: 2 - - uid: 16914 + - uid: 17451 components: - type: Transform pos: -96.5,5.5 parent: 2 - - uid: 16915 + - uid: 17452 components: - type: Transform pos: -180.5,-14.5 parent: 2 - - uid: 16916 + - uid: 17453 components: - type: Transform rot: 3.141592653589793 rad pos: -180.5,-14.5 parent: 2 - - uid: 16917 + - uid: 17454 components: - type: Transform rot: 3.141592653589793 rad pos: -180.5,-12.5 parent: 2 - - uid: 16918 + - uid: 17455 components: - type: Transform pos: -180.5,-12.5 parent: 2 - - uid: 16919 + - uid: 17456 components: - type: Transform pos: -180.5,-18.5 parent: 2 - - uid: 16920 + - uid: 17457 components: - type: Transform rot: 3.141592653589793 rad pos: -180.5,-18.5 parent: 2 - - uid: 16921 + - uid: 17458 components: - type: Transform rot: 3.141592653589793 rad pos: -180.5,-20.5 parent: 2 - - uid: 16922 + - uid: 17459 components: - type: Transform pos: -180.5,-20.5 parent: 2 - - uid: 16923 + - uid: 17460 components: - type: Transform pos: -192.5,-20.5 parent: 2 - - uid: 16924 + - uid: 17461 components: - type: Transform pos: -192.5,-18.5 parent: 2 - - uid: 16925 + - uid: 17462 components: - type: Transform pos: -192.5,-14.5 parent: 2 - - uid: 16926 + - uid: 17463 components: - type: Transform pos: -192.5,-12.5 parent: 2 - - uid: 16927 + - uid: 17464 components: - type: Transform rot: 3.141592653589793 rad pos: -192.5,-12.5 parent: 2 - - uid: 16928 + - uid: 17465 components: - type: Transform rot: 3.141592653589793 rad pos: -192.5,-14.5 parent: 2 - - uid: 16929 + - uid: 17466 components: - type: Transform rot: 3.141592653589793 rad pos: -192.5,-18.5 parent: 2 - - uid: 16930 + - uid: 17467 components: - type: Transform rot: 3.141592653589793 rad pos: -192.5,-20.5 parent: 2 - - uid: 16931 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -189.5,5.5 - parent: 2 - - uid: 16932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -189.5,3.5 - parent: 2 - - uid: 16933 - components: - - type: Transform - pos: -189.5,3.5 - parent: 2 - - uid: 16934 - components: - - type: Transform - pos: -189.5,5.5 - parent: 2 - - uid: 16935 - components: - - type: Transform - pos: -203.5,3.5 - parent: 2 - - uid: 16936 - components: - - type: Transform - pos: -203.5,5.5 - parent: 2 - - uid: 16937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -203.5,5.5 - parent: 2 - - uid: 16938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -203.5,3.5 - parent: 2 - - uid: 16939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -203.5,12.5 - parent: 2 - - uid: 16940 - components: - - type: Transform - pos: -203.5,12.5 - parent: 2 - - uid: 16941 - components: - - type: Transform - pos: -203.5,10.5 - parent: 2 - - uid: 16942 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -203.5,10.5 - parent: 2 - - uid: 16943 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -189.5,12.5 - parent: 2 - - uid: 16944 - components: - - type: Transform - pos: -189.5,12.5 - parent: 2 - - uid: 16945 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -189.5,10.5 - parent: 2 - - uid: 16946 + - uid: 17468 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-10.5 parent: 2 - - uid: 16947 + - uid: 17469 components: - type: Transform pos: -18.5,-11.5 parent: 2 - - uid: 16948 + - uid: 17470 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-15.5 parent: 2 - - uid: 16949 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,6.5 - parent: 2 - - uid: 16950 + - uid: 17471 components: - type: Transform rot: -1.5707963267948966 rad pos: -129.5,-20.5 parent: 2 - - uid: 16951 + - uid: 17472 components: - type: Transform rot: -1.5707963267948966 rad pos: -129.5,-19.5 parent: 2 - - uid: 16952 + - uid: 17473 components: - type: Transform pos: -129.5,-18.5 parent: 2 - - uid: 16953 + - uid: 17474 components: - type: Transform pos: -128.5,-18.5 parent: 2 - - uid: 16954 + - uid: 17475 components: - type: Transform pos: -126.5,-18.5 parent: 2 - - uid: 16955 + - uid: 17476 components: - type: Transform rot: 3.141592653589793 rad pos: -137.5,2.5 parent: 2 - - uid: 16956 + - uid: 17477 components: - type: Transform rot: 3.141592653589793 rad pos: -136.5,2.5 parent: 2 - - uid: 16957 + - uid: 17478 components: - type: Transform rot: 3.141592653589793 rad pos: -135.5,2.5 parent: 2 - - uid: 16958 + - uid: 17479 components: - type: Transform rot: 1.5707963267948966 rad pos: -135.5,3.5 parent: 2 - - uid: 16959 + - uid: 17480 components: - type: Transform rot: -1.5707963267948966 rad pos: -133.5,3.5 parent: 2 - - uid: 16960 + - uid: 17481 components: - type: Transform rot: 3.141592653589793 rad pos: -133.5,2.5 parent: 2 - - uid: 16961 + - uid: 17482 components: - type: Transform rot: 3.141592653589793 rad pos: -132.5,2.5 parent: 2 - - uid: 16962 + - uid: 17483 components: - type: Transform rot: 3.141592653589793 rad pos: -131.5,2.5 parent: 2 - - uid: 16963 + - uid: 17484 components: - type: Transform rot: -1.5707963267948966 rad pos: -153.5,-6.5 parent: 2 - - uid: 16964 + - uid: 17485 components: - type: Transform rot: -1.5707963267948966 rad pos: -153.5,-8.5 parent: 2 - - uid: 16965 + - uid: 17486 components: - type: Transform pos: -166.5,11.5 parent: 2 - - uid: 16966 + - uid: 17487 components: - type: Transform pos: -165.5,11.5 parent: 2 - - uid: 16967 + - uid: 17488 components: - type: Transform pos: -163.5,11.5 parent: 2 - - uid: 16968 + - uid: 17489 components: - type: Transform pos: -162.5,11.5 parent: 2 - - uid: 16969 + - uid: 17490 components: - type: Transform rot: -1.5707963267948966 rad pos: -151.5,-0.5 parent: 2 - - uid: 16970 + - uid: 17491 components: - type: Transform rot: -1.5707963267948966 rad pos: -153.5,17.5 parent: 2 - - uid: 16971 + - uid: 17492 components: - type: Transform pos: -37.5,8.5 parent: 2 - - uid: 16972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -196.5,9.5 - parent: 2 - - uid: 16973 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -196.5,9.5 - parent: 2 - - uid: 16974 - components: - - type: Transform - pos: -196.5,5.5 - parent: 2 - - uid: 16975 - components: - - type: Transform - pos: -196.5,9.5 - parent: 2 - - uid: 16976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -196.5,5.5 - parent: 2 - - uid: 16977 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -196.5,9.5 - parent: 2 - - uid: 16978 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -196.5,5.5 - parent: 2 - - uid: 16979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -196.5,5.5 - parent: 2 - - uid: 16980 + - uid: 17493 components: - type: Transform rot: 3.141592653589793 rad pos: -146.5,3.5 parent: 2 - - uid: 16981 + - uid: 17494 components: - type: Transform pos: -146.5,2.5 parent: 2 - - uid: 16982 + - uid: 17495 components: - type: Transform rot: -1.5707963267948966 rad pos: -148.5,4.5 parent: 2 - - uid: 16983 + - uid: 17496 components: - type: Transform rot: -1.5707963267948966 rad pos: -119.5,8.5 parent: 2 - - uid: 16984 + - uid: 17497 components: - type: Transform rot: -1.5707963267948966 rad pos: -119.5,9.5 parent: 2 - - uid: 16985 + - uid: 17498 components: - type: Transform pos: -119.5,6.5 parent: 2 - - uid: 16986 + - uid: 17499 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,10.5 parent: 2 - - uid: 16987 + - uid: 17500 components: - type: Transform rot: 3.141592653589793 rad pos: -116.5,10.5 parent: 2 - - uid: 16988 + - uid: 17501 components: - type: Transform pos: -116.5,6.5 parent: 2 - - uid: 16989 + - uid: 17502 components: - type: Transform rot: 1.5707963267948966 rad pos: -115.5,7.5 parent: 2 - - uid: 16990 + - uid: 17503 components: - type: Transform rot: 1.5707963267948966 rad pos: -115.5,8.5 parent: 2 - - uid: 16991 + - uid: 17504 components: - type: Transform rot: 1.5707963267948966 rad pos: -115.5,9.5 parent: 2 - - uid: 16992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -196.5,15.5 - parent: 2 - - uid: 16993 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -196.5,15.5 - parent: 2 - - uid: 16994 - components: - - type: Transform - pos: -196.5,15.5 - parent: 2 - - uid: 16995 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -196.5,15.5 - parent: 2 - - uid: 17151 + - uid: 17695 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-3.5 - parent: 17021 - - uid: 17152 + parent: 17565 + - uid: 17696 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-3.5 - parent: 17021 - - uid: 17153 + parent: 17565 + - uid: 17697 components: - type: Transform pos: 10.5,-3.5 - parent: 17021 - - uid: 17154 + parent: 17565 + - uid: 17698 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-4.5 - parent: 17021 - - uid: 17155 + parent: 17565 + - uid: 17699 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-4.5 - parent: 17021 - - uid: 17156 + parent: 17565 + - uid: 17700 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-4.5 - parent: 17021 - - uid: 17157 + parent: 17565 + - uid: 17701 components: - type: Transform pos: 14.5,-2.5 - parent: 17021 - - uid: 17158 + parent: 17565 + - uid: 17702 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-2.5 - parent: 17021 - - uid: 17159 + parent: 17565 + - uid: 17703 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-2.5 - parent: 17021 + parent: 17565 +- proto: WindowTintedDirectional + entities: + - uid: 17505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -196.5,2.5 + parent: 2 + - uid: 17506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -196.5,1.5 + parent: 2 + - uid: 17507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -184.5,-13.5 + parent: 2 + - uid: 17508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -188.5,-15.5 + parent: 2 + - uid: 17509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -188.5,-13.5 + parent: 2 + - uid: 17510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -184.5,-15.5 + parent: 2 + - uid: 17511 + components: + - type: Transform + pos: -184.5,-28.5 + parent: 2 + - uid: 17512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -184.5,-29.5 + parent: 2 + - uid: 17513 + components: + - type: Transform + pos: -183.5,-27.5 + parent: 2 + - uid: 17514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -183.5,-23.5 + parent: 2 - proto: Wirecutter entities: - - uid: 16996 + - uid: 17515 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.23165,-6.2948127 parent: 2 - - uid: 16997 + - uid: 17516 components: - type: Transform pos: -45.509083,1.3386201 parent: 2 - - uid: 16998 + - uid: 17517 components: - type: Transform pos: -60.607548,-6.5867906 parent: 2 - proto: WoodDoor entities: - - uid: 16999 + - uid: 17518 components: - type: Transform pos: -95.5,-11.5 parent: 2 - - uid: 17000 + - uid: 17519 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,7.5 parent: 2 - - uid: 17001 + - uid: 17520 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,9.5 parent: 2 - - uid: 17002 + - uid: 17521 components: - type: Transform pos: -153.5,-22.5 parent: 2 - - uid: 17003 + - uid: 17522 components: - type: Transform pos: -157.5,-22.5 parent: 2 - - uid: 17004 + - uid: 17523 components: - type: Transform pos: -35.5,0.5 parent: 2 - - uid: 17005 + - uid: 17524 components: - type: Transform pos: -36.5,0.5 parent: 2 + - uid: 17525 + components: + - type: Transform + pos: -217.5,-36.5 + parent: 2 - proto: Wrench entities: - - uid: 17006 + - uid: 17526 components: - type: Transform pos: -69.7201,-1.4145341 parent: 2 - - uid: 17007 + - uid: 17527 components: - type: Transform pos: -47.5656,4.6122446 parent: 2 - proto: Zipties entities: - - uid: 17008 + - uid: 17528 components: - type: Transform pos: -153.54599,9.539454 parent: 2 - - uid: 17009 + - uid: 17529 components: - type: Transform pos: -153.46786,9.664454 diff --git a/Resources/Maps/Dungeon/experiment.yml b/Resources/Maps/Dungeon/experiment.yml index 8449abf932..590692a6bb 100644 --- a/Resources/Maps/Dungeon/experiment.yml +++ b/Resources/Maps/Dungeon/experiment.yml @@ -7444,13 +7444,6 @@ entities: - type: Transform pos: 32.5,14.5 parent: 1653 -- proto: MachineTraversalDistorter - entities: - - uid: 1058 - components: - - type: Transform - pos: 34.5,22.5 - parent: 1653 - proto: MaintenanceFluffSpawner entities: - uid: 867 diff --git a/Resources/Maps/Dungeon/lava_brig.yml b/Resources/Maps/Dungeon/lava_brig.yml index 071083c291..ebf267a9c2 100644 --- a/Resources/Maps/Dungeon/lava_brig.yml +++ b/Resources/Maps/Dungeon/lava_brig.yml @@ -1,13004 +1,13004 @@ -meta: - format: 6 - postmapinit: false -tilemap: - 0: Space - 15: FloorBasalt - 29: FloorDark - 33: FloorDarkMini - 34: FloorDarkMono - 42: FloorElevatorShaft - 54: FloorGreenCircuit - 62: FloorLino - 77: FloorReinforced - 82: FloorShuttleOrange - 89: FloorSteel - 99: FloorSteelMini - 100: FloorSteelMono - 104: FloorTechMaint - 108: FloorWhite - 112: FloorWhiteMini - 118: FloorWood - 121: Plating -entities: -- proto: "" - entities: - - uid: 588 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree - - type: MapGrid - chunks: - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAA - version: 6 - 0,0: - ind: 0,0 - tiles: WQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABeQAAAAAADwAAAAAAHQAAAAABDwAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAADeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABIgAAAAABHQAAAAABDwAAAAAAHQAAAAACIgAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAADwAAAAAAHQAAAAACDwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHQAAAAABHQAAAAABHQAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAABHQAAAAADHQAAAAABUgAAAAAAZAAAAAACWQAAAAAAZAAAAAACeQAAAAAAHQAAAAAAIgAAAAADeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAIgAAAAACHQAAAAACUgAAAAAAYwAAAAACYwAAAAAAYwAAAAAAeQAAAAAAHQAAAAABIgAAAAACeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAIgAAAAABHQAAAAADUgAAAAAAYwAAAAACYwAAAAAAYwAAAAAAWQAAAAACHQAAAAAAIgAAAAADeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAIgAAAAAAHQAAAAABUgAAAAAAYwAAAAADYwAAAAABYwAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAABHQAAAAABHQAAAAAAUgAAAAAAZAAAAAABWQAAAAABZAAAAAACeQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAADeQAAAAAAHQAAAAADHQAAAAADUgAAAAAAaAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAAAdgAAAAADUgAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAAUgAAAAAAaAAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAACdgAAAAACUgAAAAAAHQAAAAADHQAAAAACDwAAAAAADwAAAAAADwAAAAAAHQAAAAACHQAAAAACUgAAAAAAaAAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACdgAAAAADUgAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAABUgAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABUgAAAAAA - version: 6 - 0,1: - ind: 0,1 - tiles: HQAAAAAAHQAAAAADeQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAABUgAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAUgAAAAAAaAAAAAAAeQAAAAAAWQAAAAABaAAAAAAAHQAAAAACeQAAAAAADwAAAAAAeQAAAAAAHQAAAAACUgAAAAAAWQAAAAADYwAAAAAAYwAAAAABYwAAAAADWQAAAAABUgAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAHQAAAAABDwAAAAAADwAAAAAADwAAAAAAHQAAAAAAUgAAAAAAWQAAAAAAYwAAAAABYwAAAAACYwAAAAACWQAAAAADUgAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAHQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAHQAAAAAAUgAAAAAAWQAAAAABYwAAAAABYwAAAAABYwAAAAABWQAAAAADUgAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAABUgAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABUgAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHQAAAAAAHQAAAAADHQAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAUgAAAAAAcAAAAAACcAAAAAACcAAAAAABUgAAAAAAWQAAAAADWQAAAAADZAAAAAAAUgAAAAAAHQAAAAAADwAAAAAAHQAAAAACUgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUgAAAAAAcAAAAAADcAAAAAACcAAAAAADUgAAAAAAWQAAAAAAWQAAAAABZAAAAAABUgAAAAAAHQAAAAACDwAAAAAAHQAAAAAAUgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUgAAAAAAcAAAAAADcAAAAAAAcAAAAAAAUgAAAAAAWQAAAAABWQAAAAABWQAAAAABUgAAAAAAHQAAAAACDwAAAAAAHQAAAAABUgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUgAAAAAAcAAAAAADcAAAAAADcAAAAAABUgAAAAAAZAAAAAACWQAAAAABWQAAAAACUgAAAAAAHQAAAAADHQAAAAACHQAAAAADUgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAUgAAAAAAcAAAAAACcAAAAAACcAAAAAADUgAAAAAAZAAAAAACWQAAAAAAWQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHQAAAAAAHQAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAADHQAAAAACUgAAAAAAWQAAAAABWQAAAAACHQAAAAACHQAAAAABHQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAADHQAAAAADHQAAAAAAUgAAAAAAaAAAAAAAeQAAAAAA - version: 6 - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAA - version: 6 - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAA - version: 6 - -1,1: - ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAA - version: 6 - 1,-1: - ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAA - version: 6 - 1,0: - ind: 1,0 - tiles: WQAAAAABUgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAADWQAAAAADUgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAABWQAAAAAAUgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAIgAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABaAAAAAAAUgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAABaAAAAAAAUgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAADUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAZAAAAAAAWQAAAAABZAAAAAAAUgAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAYwAAAAAAYwAAAAAAYwAAAAABUgAAAAAATQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADYwAAAAADYwAAAAAAYwAAAAADUgAAAAAATQAAAAAAeQAAAAAAKgAAAAAAeQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAYwAAAAACYwAAAAABYwAAAAADUgAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAZAAAAAADWQAAAAABZAAAAAACUgAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADUgAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAUgAAAAAAWQAAAAABYwAAAAACYwAAAAACYwAAAAAAYwAAAAADYwAAAAACWQAAAAAAUgAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAUgAAAAAAWQAAAAAAYwAAAAABYwAAAAADYwAAAAABYwAAAAACYwAAAAAAWQAAAAACUgAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADaAAAAAAAUgAAAAAAWQAAAAACYwAAAAABYwAAAAABYwAAAAADYwAAAAAAYwAAAAABWQAAAAAAUgAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAUgAAAAAA - version: 6 - 1,1: - ind: 1,1 - tiles: WQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACUgAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAaAAAAAAAUgAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADUgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAUgAAAAAAWQAAAAACWQAAAAACaAAAAAAAUgAAAAAAWQAAAAADYwAAAAACYwAAAAABYwAAAAAAWQAAAAABUgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUgAAAAAAWQAAAAADYwAAAAADWQAAAAACUgAAAAAAWQAAAAADYwAAAAADYwAAAAADYwAAAAADWQAAAAABUgAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAUgAAAAAAWQAAAAAAYwAAAAABWQAAAAADUgAAAAAAWQAAAAAAYwAAAAAAYwAAAAACYwAAAAACWQAAAAADUgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAUgAAAAAAWQAAAAADYwAAAAADWQAAAAACUgAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACUgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAUgAAAAAAWQAAAAACWQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAWQAAAAADWQAAAAABWQAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAUgAAAAAAWQAAAAABWQAAAAACZAAAAAACUgAAAAAAWQAAAAABWQAAAAAAWQAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAWQAAAAACWQAAAAADZAAAAAABUgAAAAAAWQAAAAACWQAAAAAAWQAAAAACUgAAAAAAWQAAAAACWQAAAAAAWQAAAAACUgAAAAAAWQAAAAADWQAAAAAAWQAAAAADUgAAAAAAWQAAAAADWQAAAAACWQAAAAADUgAAAAAAZAAAAAADWQAAAAACZAAAAAADUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAUgAAAAAAZAAAAAAAWQAAAAADWQAAAAACUgAAAAAAZAAAAAABWQAAAAABZAAAAAABUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAUgAAAAAAZAAAAAADWQAAAAADWQAAAAABUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAA - version: 6 - -1,2: - ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAA - version: 6 - -1,3: - ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,2: - ind: 0,2 - tiles: HQAAAAACHQAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAADHQAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAAAUgAAAAAAHQAAAAABTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAABUgAAAAAAHQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAAAUgAAAAAAHQAAAAAATQAAAAAANgAAAAAANgAAAAAANgAAAAAATQAAAAAAHQAAAAAAUgAAAAAAHQAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAACUgAAAAAAHQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAADwAAAAAADwAAAAAAeQAAAAAAIgAAAAABeQAAAAAADwAAAAAADwAAAAAAUgAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAABbAAAAAABUgAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAAADwAAAAAADwAAAAAADwAAAAAAUgAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAABbAAAAAADUgAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAUgAAAAAAIgAAAAABIgAAAAABIgAAAAACaAAAAAAAIgAAAAADIgAAAAACIgAAAAABUgAAAAAAIgAAAAAAHQAAAAACDwAAAAAADwAAAAAADwAAAAAAHQAAAAAAIgAAAAABUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAUgAAAAAAIgAAAAACIgAAAAAAIgAAAAABaAAAAAAAIgAAAAABIgAAAAACIgAAAAAAUgAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAADDwAAAAAADwAAAAAADwAAAAAAUgAAAAAAIgAAAAAAIgAAAAAAIgAAAAACaAAAAAAAIgAAAAAAIgAAAAACIgAAAAADUgAAAAAA - version: 6 - 0,3: - ind: 0,3 - tiles: DwAAAAAADwAAAAAAeQAAAAAAIgAAAAAAeQAAAAAADwAAAAAADwAAAAAAUgAAAAAAIgAAAAACIgAAAAAAIgAAAAAAaAAAAAAAIgAAAAABIgAAAAACIgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,2: - ind: 1,2 - tiles: aAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAYwAAAAACYwAAAAADYwAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAHQAAAAACHQAAAAADHQAAAAACTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAYwAAAAACYwAAAAAAYwAAAAABWQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAHQAAAAACHQAAAAABHQAAAAABTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAYwAAAAADYwAAAAADYwAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAHQAAAAADHQAAAAABHQAAAAABTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAUgAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAUgAAAAAAWQAAAAACYwAAAAABYwAAAAACYwAAAAABYwAAAAADYwAAAAAAWQAAAAAAUgAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAUgAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADUgAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAACYwAAAAAAYwAAAAADYwAAAAADUgAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAADYwAAAAABYwAAAAABYwAAAAACUgAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAUgAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACYwAAAAADYwAAAAABYwAAAAACUgAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACaAAAAAAAUgAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADUgAAAAAAaAAAAAAAWQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAaAAAAAAAUgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACIQAAAAABIQAAAAADWQAAAAACUgAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABIQAAAAAAIQAAAAABWQAAAAABUgAAAAAA - version: 6 - 1,3: - ind: 1,3 - tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,-1: - ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,0: - ind: 2,0 - tiles: HQAAAAAAHQAAAAABWQAAAAACUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAACWQAAAAABUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAACWQAAAAABUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAADWQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAWQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAADeQAAAAAATQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAeQAAAAAATQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,1: - ind: 2,1 - tiles: UgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAADUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAABWQAAAAADUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAADYwAAAAABWQAAAAABUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABYwAAAAAAWQAAAAABUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAACUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAACHQAAAAAAIgAAAAADUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAACHQAAAAACIgAAAAADUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAADUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAABIgAAAAACIgAAAAADUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAADHQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,2: - ind: 2,2 - tiles: UgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAHQAAAAADHQAAAAABUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAABeQAAAAAAHQAAAAADUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAHQAAAAAAHQAAAAADUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,3: - ind: 2,3 - tiles: UgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - - type: Gravity - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - - type: DecalGrid - chunkCollection: - version: 2 - nodes: - - node: - color: '#52B4E996' - id: BotGreyscale - decals: - 680: 30,25 - 681: 30,24 - 682: 28,27 - 683: 28,27 - 684: 28,28 - 685: 28,28 - 686: 30,25 - 687: 30,24 - - node: - color: '#DE3A3A96' - id: BotGreyscale - decals: - 478: 32,25 - 479: 32,24 - 480: 34,25 - 481: 34,24 - 482: 16,28 - 483: 18,28 - 484: 18,27 - 485: 16,27 - 486: 14,25 - 487: 14,24 - 488: 12,27 - 489: 12,28 - 748: 26,7 - 749: 32,7 - 750: 29,9 - 836: 6,2 - 837: 10,2 - 940: 1,9 - 941: 1,8 - 942: 1,7 - 943: 9,9 - 944: 9,8 - 945: 9,7 - 946: 20,10 - 947: 14,10 - 948: 14,6 - 949: 20,6 - 950: 22,6 - 951: 22,10 - 952: 12,10 - 953: 12,6 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - decals: - 194: 21,4 - 250: 10,44 - 525: 12,32 - 543: 4,22 - 585: 6,40 - 659: 34,36 - 675: 30,28 - 703: 6,16 - 757: 10,10 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - decals: - 191: 18,4 - 251: 12,44 - 519: 0,32 - 542: 0,22 - 582: 0,40 - 633: 24,36 - 702: 0,16 - 754: 0,10 - 853: 23,4 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - decals: - 192: 21,0 - 238: 10,46 - 272: 14,42 - 524: 12,30 - 537: 4,18 - 584: 6,38 - 658: 34,34 - 701: 6,12 - 755: 10,6 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - decals: - 193: 18,0 - 241: 12,46 - 270: 8,42 - 518: 0,30 - 534: 0,18 - 583: 0,38 - 632: 24,34 - 672: 28,24 - 700: 0,12 - 756: 0,6 - 852: 23,0 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - decals: - 202: 21,1 - 203: 21,2 - 204: 21,3 - 239: 10,47 - 240: 10,48 - 273: 14,43 - 501: 0,25 - 502: 0,26 - 503: 0,27 - 535: 4,19 - 536: 4,21 - 592: 14,38 - 593: 14,40 - 674: 30,27 - 706: 6,15 - 707: 6,13 - 758: 10,9 - 759: 10,7 - 926: 5,45 - 929: 33,36 - 930: 33,34 - 931: 10,31 - 935: 8,10 - 936: 8,6 - 937: 7,2 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - decals: - 197: 19,4 - 198: 20,4 - 248: 8,44 - 249: 9,44 - 252: 13,44 - 253: 14,44 - 506: 0,28 - 507: 2,28 - 520: 1,32 - 523: 11,32 - 540: 1,22 - 541: 3,22 - 634: 25,36 - 635: 26,36 - 704: 1,16 - 705: 5,16 - 762: 1,10 - 765: 9,10 - 846: 24,4 - 847: 25,4 - 848: 27,4 - 849: 28,4 - 850: 29,4 - 851: 30,4 - 927: 3,47 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - decals: - 195: 20,0 - 196: 19,0 - 244: 8,46 - 245: 9,46 - 246: 13,46 - 247: 14,46 - 274: 9,42 - 275: 10,42 - 276: 13,42 - 277: 12,42 - 504: 0,24 - 505: 2,24 - 521: 1,30 - 522: 11,30 - 538: 3,18 - 539: 1,18 - 636: 25,34 - 637: 26,34 - 710: 1,12 - 711: 5,12 - 763: 1,6 - 764: 9,6 - 840: 25,0 - 841: 24,0 - 842: 27,0 - 843: 28,0 - 844: 29,0 - 845: 30,0 - 928: 3,43 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 199: 18,3 - 200: 18,2 - 201: 18,1 - 242: 12,47 - 243: 12,48 - 271: 8,43 - 498: 2,27 - 499: 2,26 - 500: 2,25 - 544: 0,19 - 545: 0,21 - 590: 8,40 - 591: 8,38 - 673: 28,25 - 708: 0,13 - 709: 0,15 - 760: 0,7 - 761: 0,9 - 854: 23,3 - 855: 23,1 - 925: 1,45 - 932: 2,31 - 933: 2,10 - 934: 2,6 - 938: 9,2 - 939: 30,2 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNe - decals: - 84: 18,36 - 104: 16,25 - 336: 9,21 - 337: 10,22 - 364: 16,22 - 374: 21,15 - 375: 22,16 - 415: 21,21 - 421: 22,22 - 446: 33,21 - 447: 34,22 - 490: 12,25 - 554: 22,9 - 568: 14,9 - 610: 22,40 - 2025: 30,48 - 2039: 30,44 - 2058: 29,47 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNw - decals: - 85: 16,36 - 103: 18,25 - 338: 7,21 - 339: 6,22 - 376: 17,15 - 377: 16,16 - 414: 19,21 - 420: 18,22 - 448: 31,21 - 449: 30,22 - 555: 20,9 - 569: 12,9 - 611: 16,40 - 2040: 28,44 - 2059: 28,47 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSe - decals: - 83: 18,34 - 308: 26,30 - 332: 9,19 - 335: 10,18 - 372: 21,13 - 373: 22,12 - 418: 21,19 - 419: 22,18 - 452: 33,19 - 453: 34,18 - 561: 22,7 - 562: 14,7 - 609: 22,38 - 778: 16,0 - 779: 5,0 - 2038: 30,42 - 2056: 29,46 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSw - decals: - 81: 16,34 - 82: 3,35 - 309: 14,30 - 333: 7,19 - 334: 6,18 - 370: 17,13 - 371: 16,12 - 416: 18,18 - 417: 19,19 - 450: 31,19 - 451: 30,18 - 493: 14,27 - 558: 20,7 - 567: 12,7 - 608: 16,38 - 780: 0,0 - 781: 11,0 - 2037: 28,42 - 2057: 28,46 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelEndE - decals: - 73: 21,39 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelEndW - decals: - 74: 17,39 - - node: - color: '#D4D4D496' - id: BrickTileSteelLineE - decals: - 1330: 32,2 - 1332: 31,2 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineE - decals: - 87: 18,35 - 93: 14,34 - 94: 14,35 - 95: 14,36 - 105: 16,24 - 286: 17,45 - 287: 17,46 - 288: 17,47 - 323: 27,20 - 349: 9,20 - 350: 10,21 - 351: 10,19 - 365: 16,21 - 378: 21,14 - 379: 22,13 - 380: 22,15 - 425: 21,20 - 426: 22,19 - 427: 22,21 - 454: 34,19 - 455: 34,21 - 462: 33,20 - 491: 12,24 - 559: 22,8 - 566: 14,8 - 802: 16,1 - 806: 5,1 - 872: 34,0 - 873: 34,1 - 874: 34,3 - 875: 34,4 - 1328: 33,2 - 2023: 30,46 - 2024: 30,47 - 2041: 30,43 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineN - decals: - 75: 18,39 - 76: 19,39 - 77: 20,39 - 86: 17,36 - 340: 8,21 - 341: 9,22 - 342: 7,22 - 366: 15,22 - 391: 18,15 - 392: 19,15 - 393: 20,15 - 394: 21,16 - 395: 20,16 - 396: 18,16 - 397: 17,16 - 422: 20,21 - 423: 19,22 - 424: 21,22 - 458: 31,22 - 459: 33,22 - 460: 32,21 - 556: 21,9 - 564: 13,9 - 572: 16,10 - 573: 18,10 - 612: 17,40 - 613: 18,40 - 614: 21,40 - 615: 20,40 - 2026: 29,48 - 2027: 28,48 - 2044: 29,44 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineS - decals: - 78: 18,39 - 79: 19,39 - 80: 20,39 - 89: 17,34 - 298: 15,30 - 299: 16,30 - 300: 17,30 - 301: 18,30 - 302: 19,30 - 303: 21,30 - 304: 22,30 - 305: 23,30 - 306: 24,30 - 307: 25,30 - 346: 8,19 - 347: 7,18 - 348: 9,18 - 384: 18,13 - 385: 19,13 - 386: 20,13 - 387: 20,12 - 388: 21,12 - 389: 18,12 - 390: 17,12 - 431: 20,19 - 432: 19,18 - 433: 21,18 - 463: 32,19 - 464: 31,18 - 465: 33,18 - 557: 21,7 - 563: 13,7 - 570: 16,6 - 571: 18,6 - 616: 17,38 - 617: 18,38 - 618: 21,38 - 619: 20,38 - 782: 1,0 - 783: 2,0 - 784: 3,0 - 785: 4,0 - 786: 0,3 - 787: 1,3 - 788: 2,3 - 789: 3,3 - 790: 4,3 - 791: 5,3 - 792: 12,0 - 793: 13,0 - 794: 14,0 - 795: 15,0 - 796: 11,3 - 797: 12,3 - 798: 13,3 - 799: 14,3 - 800: 15,3 - 801: 16,3 - 2043: 29,42 - - node: - color: '#D4D4D496' - id: BrickTileSteelLineW - decals: - 1329: 33,2 - 1331: 32,2 - 1333: 31,2 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineW - decals: - 88: 16,35 - 90: 20,34 - 91: 20,35 - 92: 20,36 - 102: 18,24 - 289: 21,45 - 290: 21,46 - 291: 21,47 - 322: 25,20 - 326: 29,15 - 327: 29,14 - 328: 29,13 - 343: 7,20 - 344: 6,21 - 345: 6,19 - 381: 17,14 - 382: 16,15 - 383: 16,13 - 428: 19,20 - 429: 18,19 - 430: 18,21 - 456: 30,19 - 457: 30,21 - 461: 31,20 - 492: 14,28 - 560: 20,8 - 565: 12,8 - 803: 0,1 - 805: 11,1 - 2021: 24,44 - 2022: 24,46 - 2042: 28,43 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNe - decals: - 264: 10,44 - 679: 30,28 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNe - decals: - 109: 16,25 - 362: 10,22 - 367: 16,22 - 413: 22,16 - 438: 22,22 - 475: 34,22 - 494: 12,25 - 527: 12,32 - 580: 4,22 - 587: 6,40 - 630: 22,40 - 660: 34,36 - 715: 6,16 - 777: 10,10 - 2045: 30,48 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNe - decals: - 689: 10,28 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNw - decals: - 265: 12,44 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNw - decals: - 108: 18,25 - 363: 6,22 - 412: 16,16 - 442: 18,22 - 476: 30,22 - 532: 0,32 - 579: 0,22 - 588: 0,40 - 629: 16,40 - 639: 24,36 - 714: 0,16 - 772: 0,10 - 858: 23,4 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNw - decals: - 688: 8,28 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerSe - decals: - 263: 10,46 - 279: 14,42 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSe - decals: - 361: 10,18 - 411: 22,12 - 443: 22,18 - 477: 34,18 - 526: 12,30 - 581: 4,18 - 586: 6,38 - 628: 22,38 - 661: 34,34 - 713: 6,12 - 771: 10,6 - 809: 5,0 - 810: 16,0 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerSe - decals: - 311: 26,30 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSe - decals: - 690: 10,24 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerSw - decals: - 262: 12,46 - 278: 8,42 - 676: 28,24 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSw - decals: - 360: 6,18 - 406: 16,12 - 439: 18,18 - 474: 30,18 - 496: 14,27 - 533: 0,30 - 578: 0,18 - 589: 0,38 - 631: 16,38 - 638: 24,34 - 712: 0,12 - 770: 0,6 - 807: 0,0 - 808: 11,0 - 859: 23,0 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerSw - decals: - 310: 14,30 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSw - decals: - 691: 8,24 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineE - decals: - 258: 10,47 - 259: 10,48 - 280: 14,43 - 678: 30,27 - - node: - color: '#D4D4D419' - id: BrickTileWhiteLineE - decals: - 895: 2,6 - 896: 2,10 - 900: 9,2 - 901: 30,2 - 906: 1,45 - 908: 2,31 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineE - decals: - 96: 14,36 - 97: 14,35 - 98: 14,34 - 106: 16,24 - 356: 10,19 - 357: 10,21 - 368: 16,21 - 409: 22,15 - 410: 22,13 - 444: 22,19 - 445: 22,21 - 470: 34,21 - 471: 34,19 - 495: 12,24 - 511: 0,25 - 512: 0,26 - 513: 0,27 - 548: 4,19 - 549: 4,21 - 596: 14,38 - 597: 14,40 - 716: 6,15 - 717: 6,13 - 768: 10,9 - 769: 10,7 - 811: 5,1 - 812: 16,1 - 876: 34,0 - 877: 34,1 - 878: 34,3 - 879: 34,4 - 2048: 30,47 - 2049: 30,46 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineE - decals: - 292: 17,45 - 293: 17,46 - 294: 17,47 - 324: 27,20 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineE - decals: - 693: 10,27 - 694: 10,26 - 695: 10,25 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineN - decals: - 266: 9,44 - 267: 8,44 - 268: 13,44 - 269: 14,44 - - node: - color: '#D4D4D419' - id: BrickTileWhiteLineN - decals: - 907: 3,43 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 358: 9,22 - 359: 7,22 - 369: 15,22 - 398: 18,16 - 399: 17,16 - 400: 21,16 - 401: 20,16 - 436: 19,22 - 437: 21,22 - 468: 31,22 - 469: 33,22 - 516: 0,28 - 517: 2,28 - 528: 11,32 - 531: 1,32 - 552: 1,22 - 553: 3,22 - 574: 16,10 - 575: 18,10 - 620: 18,40 - 621: 17,40 - 622: 20,40 - 623: 21,40 - 642: 25,36 - 643: 26,36 - 722: 1,16 - 723: 5,16 - 773: 1,10 - 774: 9,10 - 866: 24,4 - 867: 25,4 - 868: 27,4 - 869: 28,4 - 870: 30,4 - 871: 29,4 - 2046: 28,48 - 2047: 29,48 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineN - decals: - 692: 9,28 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineS - decals: - 254: 8,46 - 255: 9,46 - 256: 13,46 - 257: 14,46 - 282: 9,42 - 283: 10,42 - 284: 12,42 - 285: 13,42 - - node: - color: '#D4D4D419' - id: BrickTileWhiteLineS - decals: - 905: 3,47 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineS - decals: - 352: 7,18 - 353: 9,18 - 402: 17,12 - 403: 18,12 - 404: 20,12 - 405: 21,12 - 434: 19,18 - 435: 21,18 - 466: 33,18 - 467: 31,18 - 514: 0,24 - 515: 2,24 - 529: 11,30 - 530: 1,30 - 550: 1,18 - 551: 3,18 - 576: 16,6 - 577: 18,6 - 624: 17,38 - 625: 18,38 - 626: 20,38 - 627: 21,38 - 640: 25,34 - 641: 26,34 - 718: 5,12 - 719: 1,12 - 775: 1,6 - 776: 9,6 - 813: 12,0 - 814: 13,0 - 815: 14,0 - 816: 15,0 - 817: 16,3 - 818: 15,3 - 819: 13,3 - 820: 14,3 - 821: 11,3 - 822: 12,3 - 823: 0,3 - 824: 1,3 - 825: 2,3 - 826: 3,3 - 827: 4,3 - 828: 5,3 - 829: 4,0 - 830: 3,0 - 831: 2,0 - 832: 1,0 - 860: 24,0 - 861: 25,0 - 862: 27,0 - 863: 28,0 - 864: 29,0 - 865: 30,0 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineS - decals: - 312: 15,30 - 313: 16,30 - 314: 17,30 - 315: 18,30 - 316: 19,30 - 317: 21,30 - 318: 22,30 - 319: 23,30 - 320: 24,30 - 321: 25,30 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - decals: - 696: 9,24 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineW - decals: - 260: 12,47 - 261: 12,48 - 281: 8,43 - 677: 28,25 - - node: - color: '#D4D4D419' - id: BrickTileWhiteLineW - decals: - 897: 8,10 - 898: 8,6 - 899: 7,2 - 902: 33,36 - 903: 33,34 - 904: 5,45 - 909: 10,31 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineW - decals: - 99: 20,36 - 100: 20,35 - 101: 20,34 - 107: 18,24 - 354: 6,19 - 355: 6,21 - 407: 16,13 - 408: 16,15 - 440: 18,19 - 441: 18,21 - 472: 30,19 - 473: 30,21 - 497: 14,28 - 508: 2,25 - 509: 2,26 - 510: 2,27 - 546: 0,19 - 547: 0,21 - 594: 8,38 - 595: 8,40 - 720: 0,13 - 721: 0,15 - 766: 0,7 - 767: 0,9 - 804: 0,1 - 833: 11,1 - 856: 23,1 - 857: 23,3 - 2050: 24,44 - 2051: 24,46 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineW - decals: - 295: 21,45 - 296: 21,46 - 297: 21,47 - 325: 25,20 - 329: 29,13 - 330: 29,14 - 331: 29,15 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineW - decals: - 697: 8,25 - 698: 8,26 - 699: 8,27 - - node: - cleanable: True - angle: 1.5707963267948966 rad - color: '#B02E269B' - id: Clandestine - decals: - 2136: 3.132535,34.09553 - - node: - color: '#A4610696' - id: Dirt - decals: - 1334: 31,2 - 1335: 32,2 - 1336: 33,2 - 1337: 30,2 - 1338: 34,2 - 1339: 33,3 - 1340: 31,4 - 1341: 32,3 - 1342: 32,1 - 1343: 31,1 - 1344: 31,0 - 1345: 33,0 - 1346: 32,0 - 1347: 33,3 - 1348: 33,4 - 1349: 32,4 - 1350: 31,3 - 1351: 32,1 - 1352: 33,1 - - node: - cleanable: True - color: '#A4610696' - id: Dirt - decals: - 954: 0,45 - 955: 3,47 - 956: 3,48 - 957: 6,45 - 958: 3,42 - 959: 3,43 - 960: 5,45 - 961: 1,45 - 962: 13,45 - 963: 12,45 - 964: 11,47 - 965: 9,45 - 966: 8,45 - 967: 8,46 - 968: 10,47 - 969: 13,47 - 970: 14,46 - 971: 11,43 - 972: 11,42 - 973: 9,42 - 974: 10,42 - 975: 13,42 - 976: 12,42 - 977: 13,43 - 978: 9,43 - 979: 11,44 - 980: 11,45 - 981: 11,47 - 982: 9,46 - 983: 11,46 - 984: 16,45 - 985: 16,46 - 986: 16,47 - 987: 16,44 - 988: 17,45 - 989: 17,46 - 990: 21,45 - 991: 22,45 - 992: 22,44 - 993: 22,43 - 994: 22,46 - 995: 21,45 - 996: 21,46 - 997: 22,47 - 998: 24,39 - 999: 24,38 - 1000: 24,40 - 1001: 27,39 - 1002: 27,39 - 1003: 30,40 - 1004: 30,39 - 1005: 30,38 - 1006: 30,39 - 1007: 34,35 - 1008: 33,34 - 1009: 33,36 - 1010: 24,35 - 1011: 22,35 - 1012: 20,35 - 1013: 21,35 - 1014: 20,34 - 1015: 14,35 - 1016: 13,35 - 1017: 12,35 - 1018: 14,36 - 1019: 17,36 - 1020: 17,35 - 1021: 17,34 - 1022: 16,35 - 1023: 18,35 - 1024: 18,36 - 1025: 18,34 - 1026: 16,34 - 1027: 16,36 - 1028: 16,30 - 1029: 16,30 - 1030: 18,30 - 1031: 19,30 - 1032: 22,30 - 1033: 24,30 - 1034: 25,30 - 1035: 26,30 - 1036: 20,30 - 1037: 20,30 - 1038: 15,30 - 1039: 14,30 - 1040: 14,31 - 1041: 26,31 - 1042: 10,31 - 1043: 2,31 - 1044: 0,31 - 1045: 12,31 - 1046: 5,35 - 1047: 6,36 - 1048: 4,34 - 1049: 9,35 - 1050: 9,35 - 1051: 10,35 - 1052: 10,34 - 1053: 0,35 - 1054: 0,36 - 1055: 0,35 - 1056: 5,36 - 1057: 6,36 - 1058: 6,39 - 1059: 0,39 - 1060: 8,39 - 1061: 8,40 - 1062: 8,38 - 1063: 9,39 - 1064: 11,38 - 1065: 9,38 - 1066: 11,40 - 1067: 10,40 - 1068: 13,39 - 1069: 14,39 - 1070: 14,40 - 1071: 14,38 - 1072: 13,39 - 1073: 13,40 - 1074: 16,39 - 1075: 18,40 - 1076: 19,40 - 1077: 19,39 - 1078: 18,39 - 1079: 17,39 - 1080: 20,39 - 1081: 21,39 - 1082: 19,38 - 1083: 22,39 - 1084: 21,38 - 1085: 24,39 - 1086: 24,38 - 1087: 24,40 - 1088: 17,32 - 1089: 24,32 - 1090: 23,32 - 1091: 34,26 - 1092: 33,26 - 1093: 33,28 - 1094: 32,28 - 1095: 32,27 - 1096: 34,27 - 1097: 34,28 - 1098: 32,25 - 1099: 33,24 - 1100: 33,25 - 1101: 32,26 - 1102: 29,24 - 1103: 30,26 - 1104: 28,26 - 1105: 29,28 - 1106: 29,27 - 1107: 29,25 - 1108: 25,26 - 1109: 24,26 - 1110: 26,26 - 1111: 25,27 - 1112: 24,28 - 1113: 25,28 - 1114: 24,27 - 1115: 24,24 - 1116: 25,25 - 1117: 25,24 - 1118: 26,25 - 1119: 22,26 - 1120: 24,26 - 1121: 26,26 - 1122: 20,26 - 1123: 21,25 - 1124: 21,24 - 1125: 21,28 - 1126: 21,27 - 1127: 18,26 - 1128: 16,26 - 1129: 17,27 - 1130: 17,28 - 1131: 17,25 - 1132: 17,24 - 1133: 17,26 - 1134: 13,28 - 1135: 13,27 - 1136: 13,26 - 1137: 13,25 - 1138: 13,24 - 1139: 12,26 - 1140: 14,26 - 1141: 9,26 - 1142: 9,27 - 1143: 9,28 - 1144: 8,28 - 1145: 8,27 - 1146: 8,26 - 1147: 9,25 - 1148: 8,25 - 1149: 8,24 - 1150: 9,24 - 1151: 10,24 - 1152: 10,25 - 1153: 10,26 - 1154: 10,27 - 1155: 10,28 - 1156: 5,28 - 1157: 5,28 - 1158: 5,24 - 1159: 5,24 - 1160: 0,26 - 1161: 2,26 - 1162: 2,28 - 1163: 1,24 - 1164: 2,24 - 1165: 2,22 - 1166: 4,20 - 1167: 2,18 - 1168: 1,19 - 1169: 0,20 - 1170: 0,17 - 1171: 0,18 - 1172: 4,18 - 1173: 4,19 - 1174: 4,22 - 1175: 0,22 - 1176: 6,20 - 1177: 7,20 - 1178: 8,20 - 1179: 9,20 - 1180: 10,20 - 1181: 8,21 - 1182: 8,22 - 1183: 8,19 - 1184: 8,18 - 1185: 6,18 - 1186: 7,19 - 1187: 7,18 - 1188: 9,20 - 1189: 10,21 - 1190: 9,21 - 1191: 9,22 - 1192: 9,19 - 1193: 7,21 - 1194: 8,13 - 1195: 8,13 - 1196: 11,16 - 1197: 11,16 - 1198: 10,16 - 1199: 9,16 - 1200: 8,15 - 1201: 8,14 - 1202: 8,16 - 1203: 10,16 - 1204: 9,16 - 1205: 12,14 - 1206: 11,14 - 1207: 11,12 - 1208: 10,12 - 1209: 14,12 - 1210: 14,14 - 1211: 14,15 - 1212: 13,14 - 1213: 12,14 - 1214: 11,14 - 1215: 11,13 - 1216: 6,14 - 1217: 0,14 - 1218: 3,16 - 1219: 3,12 - 1220: 3,13 - 1221: 2,13 - 1222: 4,13 - 1223: 3,15 - 1224: 2,15 - 1225: 4,15 - 1226: 5,14 - 1227: 1,14 - 1228: 1,15 - 1229: 1,13 - 1230: 5,15 - 1231: 5,13 - 1232: 0,8 - 1233: 2,10 - 1234: 2,6 - 1235: 8,6 - 1236: 8,10 - 1237: 0,8 - 1238: 10,8 - 1239: 10,10 - 1240: 10,7 - 1241: 10,6 - 1242: 9,6 - 1243: 9,10 - 1244: 1,10 - 1245: 0,7 - 1246: 0,6 - 1247: 0,3 - 1248: 1,3 - 1249: 1,3 - 1250: 2,3 - 1251: 3,3 - 1252: 4,3 - 1253: 4,3 - 1254: 5,3 - 1255: 7,2 - 1256: 9,2 - 1257: 4,0 - 1258: 4,1 - 1259: 2,1 - 1260: 1,1 - 1261: 0,2 - 1262: 1,2 - 1263: 2,2 - 1264: 5,2 - 1265: 4,2 - 1266: 3,2 - 1267: 4,1 - 1268: 3,1 - 1269: 11,2 - 1270: 12,3 - 1271: 11,3 - 1272: 14,3 - 1273: 14,3 - 1274: 15,3 - 1275: 16,3 - 1276: 13,3 - 1277: 11,3 - 1278: 12,2 - 1279: 11,1 - 1280: 13,1 - 1281: 16,2 - 1282: 16,1 - 1283: 14,1 - 1284: 13,2 - 1285: 14,2 - 1286: 18,2 - 1287: 19,2 - 1288: 20,2 - 1289: 21,2 - 1290: 19,3 - 1291: 18,3 - 1292: 20,3 - 1293: 20,1 - 1294: 21,1 - 1295: 19,1 - 1296: 23,2 - 1297: 28,2 - 1298: 29,2 - 1299: 30,2 - 1300: 28,4 - 1301: 29,4 - 1302: 26,4 - 1303: 26,2 - 1304: 26,1 - 1305: 26,0 - 1306: 24,2 - 1307: 25,2 - 1308: 27,2 - 1309: 24,4 - 1310: 23,3 - 1311: 24,3 - 1312: 23,4 - 1469: 14,8 - 1470: 12,8 - 1471: 12,7 - 1472: 13,7 - 1473: 13,6 - 1474: 13,10 - 1475: 12,9 - 1476: 14,9 - 1477: 17,10 - 1478: 17,9 - 1479: 18,9 - 1480: 18,8 - 1481: 17,7 - 1482: 17,7 - 1483: 17,6 - 1484: 17,8 - 1485: 16,7 - 1486: 18,7 - 1487: 20,9 - 1488: 20,8 - 1489: 21,10 - 1490: 21,9 - 1491: 21,7 - 1492: 21,6 - 1493: 20,7 - 1494: 22,7 - 1495: 22,8 - 1534: 19,16 - 1535: 18,15 - 1536: 19,13 - 1537: 19,12 - 1538: 22,14 - 1539: 22,14 - 1540: 22,15 - 1541: 21,16 - 1542: 21,15 - 1543: 21,13 - 1544: 16,14 - 1545: 17,13 - 1546: 17,15 - 1556: 30,20 - 1557: 32,22 - 1558: 31,22 - 1559: 31,21 - 1560: 32,19 - 1561: 32,18 - 1562: 34,20 - 1563: 34,19 - 1564: 34,18 - 1565: 34,21 - 1566: 34,22 - 2060: 24,45 - 2061: 25,45 - 2062: 27,48 - 2063: 27,42 - 2064: 30,45 - 2065: 28,43 - 2066: 29,43 - 2067: 30,43 - 2068: 24,42 - 2069: 25,43 - 2070: 26,42 - 2071: 25,42 - 2072: 26,48 - 2073: 25,47 - 2074: 26,47 - 2075: 25,47 - 2076: 25,48 - 2077: 27,47 - 2078: 27,45 - 2079: 27,46 - 2080: 26,45 - 2081: 28,45 - 2082: 26,44 - 2083: 27,44 - 2084: 25,46 - 2085: 26,46 - 2086: 29,45 - - node: - color: '#A4610696' - id: DirtHeavy - decals: - 1353: 11,31 - 1354: 1,31 - 1355: 0,39 - 1356: 6,39 - 1357: 5,45 - 1358: 14,39 - 1359: 16,39 - 1360: 19,38 - - node: - cleanable: True - color: '#A4610696' - id: DirtHeavy - decals: - 1361: 22,39 - 1362: 19,40 - 1363: 30,39 - 1364: 25,35 - 1365: 24,36 - 1366: 20,30 - 1367: 14,30 - 1368: 18,30 - 1369: 22,30 - 1370: 26,31 - 1371: 22,26 - 1372: 24,26 - 1373: 26,26 - 1374: 28,26 - 1375: 29,27 - 1376: 33,25 - 1377: 33,28 - 1378: 32,28 - 1379: 14,26 - 1380: 12,26 - 1381: 9,26 - 1382: 9,28 - 1383: 8,28 - 1384: 8,24 - 1385: 10,25 - 1386: 5,24 - 1387: 5,28 - 1388: 0,26 - 1389: 0,27 - 1390: 2,24 - 1391: 2,25 - 1392: 0,35 - 1393: 0,36 - 1394: 7,36 - 1395: 5,35 - 1396: 4,34 - 1397: 10,35 - 1398: 9,35 - 1399: 8,39 - 1400: 14,39 - 1401: 14,38 - 1402: 8,45 - 1403: 11,48 - 1404: 11,44 - 1405: 14,45 - 1406: 11,42 - 1407: 9,42 - 1408: 13,43 - 1409: 3,47 - 1410: 4,20 - 1411: 3,22 - 1412: 2,18 - 1413: 0,19 - 1414: 6,20 - 1415: 8,20 - 1416: 8,18 - 1417: 10,20 - 1418: 8,22 - 1419: 14,20 - 1420: 15,21 - 1421: 16,20 - 1422: 12,20 - 1423: 12,21 - 1424: 13,22 - 1425: 13,21 - 1426: 13,19 - 1427: 16,19 - 1428: 16,19 - 1429: 15,20 - 1430: 14,18 - 1431: 12,20 - 1432: 14,22 - 1433: 20,20 - 1434: 20,22 - 1435: 18,20 - 1436: 22,21 - 1437: 19,21 - 1438: 20,18 - 1439: 22,20 - 1440: 27,22 - 1441: 25,22 - 1442: 26,18 - 1443: 27,18 - 1444: 31,18 - 1445: 32,18 - 1446: 31,20 - 1447: 32,21 - 1448: 34,22 - 1449: 34,20 - 1450: 32,19 - 1451: 29,14 - 1452: 24,14 - 1453: 24,13 - 1454: 30,14 - 1455: 29,13 - 1456: 34,2 - 1457: 32,3 - 1458: 30,1 - 1459: 26,1 - 1460: 23,3 - 1461: 24,4 - 1462: 29,4 - 1463: 26,0 - 1464: 26,1 - 1465: 18,2 - 1466: 22,8 - 1467: 20,8 - 1468: 16,8 - 1496: 17,6 - 1497: 16,8 - 1498: 18,8 - 1499: 17,10 - 1500: 14,8 - 1501: 12,8 - 1502: 13,6 - 1503: 13,10 - 1504: 21,10 - 1505: 21,9 - 1506: 21,8 - 1507: 21,7 - 1508: 21,6 - 1509: 10,8 - 1510: 9,10 - 1511: 9,6 - 1512: 2,6 - 1513: 0,7 - 1514: 0,9 - 1515: 1,10 - 1516: 8,10 - 1517: 0,14 - 1518: 5,14 - 1519: 4,15 - 1520: 3,16 - 1521: 1,18 - 1522: 5,15 - 1523: 6,14 - 1524: 11,16 - 1525: 8,13 - 1526: 11,12 - 1527: 10,13 - 1528: 16,14 - 1529: 19,16 - 1530: 19,13 - 1531: 18,13 - 1532: 18,15 - 1533: 16,15 - 1547: 19,16 - 1548: 16,14 - 1549: 17,15 - 1550: 18,14 - 1551: 19,13 - 1552: 21,13 - 1553: 22,14 - 1554: 29,15 - 1555: 29,13 - 2095: 24,45 - 2096: 27,48 - 2097: 27,42 - 2098: 25,44 - 2099: 29,45 - 2100: 29,46 - 2101: 29,47 - 2102: 25,45 - - node: - cleanable: True - color: '#A4610696' - id: DirtLight - decals: - 1567: 0,2 - 1568: 5,2 - 1569: 4,1 - 1570: 5,2 - 1571: 2,1 - 1572: 7,2 - 1573: 9,2 - 1574: 11,2 - 1575: 14,2 - 1576: 13,3 - 1577: 10,3 - 1578: 11,3 - 1579: 12,3 - 1580: 16,3 - 1581: 15,3 - 1582: 16,2 - 1583: 16,1 - 1584: 14,1 - 1585: 15,1 - 1586: 1,3 - 1587: 3,3 - 1588: 5,3 - 1589: 5,3 - 1590: 1,1 - 1591: 23,2 - 1592: 26,2 - 1593: 28,2 - 1594: 28,4 - 1595: 30,2 - 1596: 31,1 - 1597: 34,1 - 1598: 33,0 - 1599: 34,3 - 1600: 21,9 - 1601: 20,8 - 1602: 22,8 - 1603: 16,8 - 1604: 17,9 - 1605: 17,10 - 1606: 17,6 - 1607: 12,8 - 1608: 14,9 - 1609: 14,8 - 1610: 13,6 - 1611: 10,8 - 1612: 8,10 - 1613: 2,10 - 1614: 0,8 - 1615: 0,9 - 1616: 2,6 - 1617: 0,14 - 1618: 3,12 - 1619: 1,14 - 1620: 3,15 - 1621: 5,14 - 1622: 5,15 - 1623: 6,14 - 1624: 3,13 - 1625: 3,12 - 1626: 8,13 - 1627: 10,16 - 1628: 11,16 - 1629: 17,14 - 1630: 17,13 - 1631: 16,15 - 1632: 19,16 - 1633: 22,14 - 1634: 21,14 - 1635: 21,13 - 1636: 19,13 - 1637: 20,12 - 1638: 20,13 - 1639: 21,15 - 1640: 29,14 - 1641: 29,15 - 1642: 34,20 - 1643: 32,18 - 1644: 34,18 - 1645: 34,21 - 1646: 32,22 - 1647: 30,20 - 1648: 30,21 - 1649: 32,19 - 1650: 32,21 - 1651: 32,20 - 1652: 30,18 - 1653: 26,22 - 1654: 25,22 - 1655: 25,20 - 1656: 27,20 - 1657: 27,22 - 1658: 25,20 - 1659: 27,20 - 1660: 26,18 - 1661: 27,18 - 1662: 25,18 - 1663: 22,20 - 1664: 18,20 - 1665: 20,22 - 1666: 20,20 - 1667: 19,19 - 1668: 20,19 - 1669: 20,21 - 1670: 21,20 - 1671: 16,20 - 1672: 16,21 - 1673: 12,20 - 1674: 13,21 - 1675: 13,22 - 1676: 13,19 - 1677: 13,19 - 1678: 14,20 - 1679: 14,18 - 1680: 10,20 - 1681: 10,21 - 1682: 8,22 - 1683: 6,21 - 1684: 6,20 - 1685: 7,20 - 1686: 7,19 - 1687: 8,20 - 1688: 9,20 - 1689: 4,20 - 1690: 3,18 - 1691: 2,18 - 1692: 1,18 - 1693: 0,21 - 1694: 1,22 - 1695: 0,20 - 1696: 2,22 - 1697: 1,24 - 1698: 0,26 - 1699: 0,25 - 1700: 2,25 - 1701: 2,27 - 1702: 5,28 - 1703: 5,24 - 1704: 9,26 - 1705: 9,27 - 1706: 9,24 - 1707: 8,24 - 1708: 10,24 - 1709: 10,26 - 1710: 13,26 - 1711: 12,26 - 1712: 13,28 - 1713: 12,28 - 1714: 13,24 - 1715: 14,26 - 1716: 13,25 - 1717: 18,26 - 1718: 16,26 - 1719: 17,28 - 1720: 17,25 - 1721: 17,24 - 1722: 20,26 - 1723: 22,26 - 1724: 21,26 - 1725: 21,27 - 1726: 21,24 - 1727: 21,25 - 1728: 25,26 - 1729: 26,26 - 1730: 25,26 - 1731: 25,26 - 1732: 25,24 - 1733: 25,24 - 1734: 26,25 - 1735: 24,27 - 1736: 29,26 - 1737: 29,27 - 1738: 30,26 - 1739: 29,24 - 1740: 33,26 - 1741: 33,24 - 1742: 34,26 - 1743: 32,26 - 1744: 34,28 - 1745: 34,28 - 1746: 33,28 - 1747: 32,28 - 1748: 26,31 - 1749: 21,30 - 1750: 20,30 - 1751: 17,30 - 1752: 15,30 - 1753: 14,31 - 1754: 10,31 - 1755: 2,31 - 1756: 11,30 - 1757: 12,31 - 1758: 0,32 - 1759: 1,32 - 1760: 0,31 - 1761: -1,35 - 1762: 0,36 - 1763: 0,35 - 1764: 4,34 - 1765: 5,35 - 1766: 3,34 - 1767: 10,34 - 1768: 10,35 - 1769: 6,39 - 1770: 0,39 - 1771: 0,45 - 1772: 3,43 - 1773: 3,47 - 1774: 4,45 - 1775: 5,45 - 1776: 8,45 - 1777: 11,46 - 1778: 11,45 - 1779: 11,42 - 1780: 13,42 - 1781: 9,42 - 1782: 14,45 - 1783: 10,44 - 1784: 11,44 - 1785: 11,45 - 1786: 16,47 - 1787: 16,45 - 1788: 17,45 - 1789: 21,45 - 1790: 16,48 - 1791: 16,43 - 1792: 23,43 - 1793: 22,42 - 1794: 30,38 - 1795: 30,40 - 1796: 24,38 - 1797: 22,39 - 1798: 19,38 - 1799: 19,39 - 1800: 18,39 - 1801: 16,39 - 1802: 18,38 - 1803: 17,38 - 1804: 14,38 - 1805: 14,40 - 1806: 9,39 - 1807: 10,40 - 1808: 12,38 - 1809: 10,38 - 1810: 10,38 - 1811: 6,39 - 1812: 0,39 - 2103: 24,45 - 2104: 30,45 - 2105: 26,44 - 2106: 27,43 - 2107: 30,43 - 2108: 29,42 - 2109: 28,47 - - node: - cleanable: True - color: '#A4610696' - id: DirtMedium - decals: - 1813: 0,35 - 1814: 0,39 - 1815: 6,39 - 1816: 3,43 - 1817: 1,45 - 1818: 11,45 - 1819: 11,42 - 1820: 14,45 - 1821: 16,45 - 1822: 21,45 - 1823: 22,45 - 1824: 21,38 - 1825: 20,38 - 1826: 20,38 - 1827: 24,38 - 1828: 30,39 - 1829: 34,35 - 1830: 33,36 - 1831: 33,34 - 1832: 24,34 - 1833: 20,34 - 1834: 22,35 - 1835: 17,35 - 1836: 16,34 - 1837: 17,36 - 1838: 12,35 - 1839: 10,35 - 1840: 5,35 - 1841: 0,35 - 1842: 1,31 - 1843: 2,31 - 1844: 11,31 - 1845: 9,26 - 1846: 8,26 - 1847: 9,27 - 1848: 9,28 - 1849: 10,26 - 1850: 10,25 - 1851: 9,25 - 1852: 13,26 - 1853: 12,26 - 1854: 13,28 - 1855: 14,26 - 1856: 17,24 - 1857: 18,26 - 1858: 17,28 - 1859: 16,26 - 1860: 22,26 - 1861: 20,26 - 1862: 25,27 - 1863: 24,27 - 1864: 24,28 - 1865: 24,25 - 1866: 25,25 - 1867: 25,24 - 1868: 24,24 - 1869: 26,25 - 1870: 26,26 - 1871: 25,26 - 1872: 24,26 - 1873: 24,26 - 1874: 25,26 - 1875: 25,26 - 1876: 28,26 - 1877: 30,26 - 1878: 29,27 - 1879: 29,25 - 1880: 33,26 - 1881: 34,26 - 1882: 34,28 - 1883: 32,28 - 1884: 34,28 - 1885: 32,20 - 1886: 31,20 - 1887: 30,20 - 1888: 30,18 - 1889: 34,18 - 1890: 34,21 - 1891: 25,18 - 1892: 26,18 - 1893: 25,18 - 1894: 27,20 - 1895: 27,22 - 1896: 29,15 - 1897: 30,14 - 1898: 29,12 - 1899: 24,14 - 1900: 24,15 - 1901: 24,16 - 1902: 20,20 - 1903: 17,20 - 1904: 19,21 - 1905: 18,20 - 1906: 21,22 - 1907: 22,20 - 1908: 22,21 - 1909: 20,19 - 1910: 15,20 - 1911: 14,21 - 1912: 15,21 - 1913: 16,21 - 1914: 14,22 - 1915: 12,20 - 1916: 14,18 - 1917: 15,18 - 1918: 16,19 - 1919: 16,19 - 1920: 13,19 - 1921: 12,19 - 1922: 12,19 - 1923: 12,18 - 1924: 14,18 - 1925: 15,18 - 1926: 15,18 - 1927: 10,20 - 1928: 8,22 - 1929: 7,20 - 1930: 9,21 - 1931: 7,19 - 1932: 10,19 - 1933: 10,21 - 1934: 7,18 - 1935: 4,20 - 1936: 4,21 - 1937: 2,22 - 1938: 1,22 - 1939: 0,19 - 1940: 1,18 - 1941: 1,18 - 1942: 3,18 - 1943: 0,14 - 1944: 2,13 - 1945: 3,13 - 1946: 5,13 - 1947: 3,12 - 1948: 8,15 - 1949: 8,16 - 1950: 9,16 - 1951: 9,16 - 1952: 18,14 - 1953: 19,16 - 1954: 19,14 - 1955: 20,13 - 1956: 18,16 - 1957: 17,13 - 1958: 20,12 - 1959: 22,13 - 1960: 24,13 - 1961: 30,12 - 1962: 30,14 - 1963: 29,16 - 1964: 24,16 - 1965: 24,16 - 1966: 25,6 - 1967: 24,7 - 1968: 26,9 - 1969: 27,10 - 1970: 28,10 - 1971: 34,10 - 1972: 34,8 - 1973: 34,7 - 1974: 33,6 - 1975: 30,6 - 1976: 27,6 - 1977: 21,8 - 1978: 16,8 - 1979: 17,10 - 1980: 18,8 - 1981: 17,6 - 1982: 13,7 - 1983: 13,9 - 1984: 13,8 - 1985: 14,7 - 1986: 10,6 - 1987: 8,10 - 1988: 2,6 - 1989: 0,7 - 1990: 1,1 - 1991: 0,1 - 1992: 4,1 - 1993: 5,2 - 1994: 3,1 - 1995: 3,0 - 1996: 7,2 - 1997: 9,2 - 1998: 11,2 - 1999: 13,1 - 2000: 15,1 - 2001: 16,2 - 2002: 16,1 - 2003: 23,2 - 2004: 26,2 - 2005: 29,3 - 2006: 30,2 - 2007: 33,2 - 2008: 33,3 - 2009: 34,2 - 2010: 34,0 - 2011: 34,1 - 2012: 31,1 - 2013: 29,0 - 2014: 26,0 - 2015: 23,3 - 2016: 28,4 - 2087: 27,42 - 2088: 27,48 - 2089: 24,45 - 2090: 30,45 - 2091: 28,45 - 2092: 26,45 - 2093: 28,47 - 2094: 27,44 - 2110: 24,45 - 2111: 27,48 - 2112: 27,45 - 2113: 26,46 - 2114: 26,42 - 2115: 25,42 - 2116: 25,47 - 2117: 25,47 - 2118: 26,48 - 2119: 26,47 - 2120: 26,47 - 2121: 26,43 - 2122: 26,43 - 2123: 27,43 - 2124: 6,1 - 2125: 10,3 - - node: - color: '#D4D4D41B' - id: FullTileOverlayGreyscale - decals: - 1313: 31,4 - 1314: 31,3 - 1315: 31,2 - 1316: 31,1 - 1317: 31,0 - - node: - color: '#D4D4D433' - id: FullTileOverlayGreyscale - decals: - 1318: 32,0 - 1319: 32,1 - 1320: 32,2 - 1321: 32,3 - 1322: 32,4 - - node: - color: '#D4D4D44C' - id: FullTileOverlayGreyscale - decals: - 1323: 33,0 - 1324: 33,1 - 1325: 33,2 - 1326: 33,3 - 1327: 33,4 - - node: - color: '#D4D4D40C' - id: HalfTileOverlayGreyscale - decals: - 923: 3,47 - - node: - color: '#D4D4D419' - id: HalfTileOverlayGreyscale - decals: - 893: 3,43 - - node: - color: '#D4D4D40C' - id: HalfTileOverlayGreyscale180 - decals: - 924: 3,43 - - node: - color: '#D4D4D419' - id: HalfTileOverlayGreyscale180 - decals: - 894: 3,47 - - node: - color: '#D4D4D40C' - id: HalfTileOverlayGreyscale270 - decals: - 910: 30,2 - 911: 9,2 - 914: 2,6 - 915: 2,10 - 918: 2,31 - 922: 1,45 - - node: - color: '#D4D4D419' - id: HalfTileOverlayGreyscale270 - decals: - 882: 7,2 - 883: 8,6 - 884: 8,10 - 888: 10,31 - 889: 33,34 - 890: 33,36 - 891: 5,45 - - node: - color: '#D4D4D40C' - id: HalfTileOverlayGreyscale90 - decals: - 912: 7,2 - 913: 8,6 - 916: 8,10 - 917: 10,31 - 919: 33,34 - 920: 33,36 - 921: 5,45 - - node: - color: '#D4D4D419' - id: HalfTileOverlayGreyscale90 - decals: - 880: 30,2 - 881: 9,2 - 885: 2,6 - 886: 2,10 - 887: 2,31 - 892: 1,45 - - node: - color: '#9FED5896' - id: MiniTileCheckerAOverlay - decals: - 2028: 28,42 - 2029: 29,42 - 2030: 30,42 - 2031: 28,43 - 2032: 29,43 - 2033: 30,43 - 2034: 28,44 - 2035: 29,44 - 2036: 30,44 - - node: - color: '#DE3A3A96' - id: MiniTileCheckerAOverlay - decals: - 0: 7,19 - 1: 8,19 - 2: 9,19 - 3: 9,20 - 4: 8,20 - 5: 7,20 - 6: 7,21 - 7: 8,21 - 8: 9,21 - 9: 19,19 - 10: 20,19 - 11: 21,19 - 12: 21,20 - 13: 20,20 - 14: 19,20 - 15: 19,21 - 16: 20,21 - 17: 21,21 - 18: 17,15 - 19: 17,14 - 20: 17,13 - 21: 18,13 - 22: 19,13 - 23: 20,13 - 24: 21,13 - 25: 21,14 - 26: 21,15 - 27: 20,15 - 28: 19,15 - 29: 18,15 - 30: 18,14 - 31: 19,14 - 32: 20,9 - 33: 21,9 - 34: 22,9 - 35: 22,8 - 36: 22,7 - 37: 21,7 - 38: 21,8 - 39: 20,8 - 40: 20,7 - 41: 12,7 - 42: 13,7 - 43: 14,7 - 44: 14,8 - 45: 13,8 - 46: 12,8 - 47: 12,9 - 48: 13,9 - 49: 14,9 - 59: 17,39 - 60: 18,39 - 61: 19,39 - 62: 20,39 - 63: 21,39 - 64: 16,36 - 65: 16,35 - 66: 16,34 - 67: 17,34 - 68: 18,34 - 69: 18,35 - 70: 17,35 - 71: 17,36 - 72: 18,36 - - node: - color: '#FFFFFFFF' - id: MiniTileCheckerAOverlay - decals: - 2052: 28,46 - 2053: 28,47 - 2054: 29,47 - 2055: 29,46 - - node: - color: '#9FED5896' - id: MiniTileCheckerBOverlay - decals: - 50: 31,21 - 51: 31,20 - 52: 31,19 - 53: 33,21 - 54: 33,20 - 55: 33,19 - - node: - color: '#DE3A3A96' - id: MiniTileCheckerBOverlay - decals: - 56: 32,21 - 57: 32,20 - 58: 32,19 - - node: - color: '#DE3A3A96' - id: StandClearGreyscale - decals: - 751: 26,7 - 752: 32,7 - 753: 29,9 - 838: 6,2 - 839: 10,2 - - node: - color: '#FFFFFFFF' - id: WarnCornerNE - decals: - 605: 13,40 - 747: 34,10 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 606: 9,40 - 741: 24,10 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 604: 13,38 - 746: 34,6 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 598: 9,38 - 740: 24,6 - - node: - color: '#FFFFFFFF' - id: WarnFull - decals: - 657: 32,35 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 607: 13,39 - 644: 26,34 - 645: 26,35 - 646: 26,36 - 744: 34,7 - 745: 34,9 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleE - decals: - 112: 18,26 - 117: 14,26 - 118: 22,26 - 121: 22,35 - 122: 22,39 - 128: 14,39 - 131: 6,39 - 132: 12,31 - 135: 26,31 - 140: 26,26 - 145: 30,26 - 146: 34,26 - 153: 2,26 - 159: 4,20 - 160: 10,20 - 166: 16,20 - 170: 22,20 - 175: 34,20 - 176: 22,14 - 183: 6,14 - 184: 10,8 - 188: 16,2 - 190: 34,2 - 205: 21,2 - 213: 34,8 - 214: 30,14 - 219: 34,35 - 223: 30,39 - 224: 22,45 - 227: 14,45 - 230: 6,45 - 235: 10,35 - 834: 5,2 - 2018: 30,45 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleN - decals: - 111: 17,28 - 116: 13,28 - 125: 19,40 - 126: 11,40 - 138: 21,28 - 144: 29,28 - 154: 1,28 - 158: 2,22 - 161: 8,22 - 165: 14,22 - 171: 20,22 - 173: 32,22 - 179: 19,16 - 180: 3,16 - 186: 17,10 - 209: 26,4 - 210: 29,10 - 217: 26,22 - 220: 29,36 - 228: 11,48 - 233: 3,48 - 237: 5,28 - 2020: 27,48 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - decals: - 667: 27,35 - 668: 28,35 - 669: 29,35 - 670: 30,35 - 671: 31,35 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleS - decals: - 110: 17,24 - 115: 13,24 - 124: 19,38 - 127: 11,38 - 136: 20,30 - 137: 21,24 - 139: 25,24 - 143: 29,24 - 148: 33,24 - 149: 32,28 - 150: 33,28 - 151: 34,28 - 152: 1,24 - 157: 2,18 - 163: 8,18 - 164: 14,18 - 169: 20,18 - 172: 32,18 - 177: 19,12 - 181: 3,12 - 187: 17,6 - 208: 26,0 - 211: 29,6 - 216: 26,18 - 221: 29,34 - 229: 11,42 - 231: 3,42 - 236: 5,24 - 2019: 27,42 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleS - decals: - 662: 27,35 - 663: 28,35 - 664: 29,35 - 665: 30,35 - 666: 31,35 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleW - decals: - 113: 16,26 - 114: 12,26 - 119: 20,26 - 120: 12,35 - 123: 16,39 - 129: 8,39 - 130: 0,39 - 133: 0,31 - 134: 14,31 - 141: 24,26 - 142: 28,26 - 147: 32,26 - 155: 0,26 - 156: 0,20 - 162: 6,20 - 167: 12,20 - 168: 18,20 - 174: 30,20 - 178: 16,14 - 182: 0,14 - 185: 0,8 - 189: 0,2 - 206: 18,2 - 207: 23,2 - 212: 24,8 - 215: 24,14 - 218: 24,35 - 222: 24,39 - 225: 16,45 - 226: 8,45 - 232: 0,45 - 234: 0,35 - 835: 11,2 - 2017: 24,45 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 601: 10,38 - 602: 12,38 - 647: 27,34 - 648: 28,34 - 649: 30,34 - 650: 31,34 - 651: 32,34 - 732: 28,6 - 733: 27,6 - 734: 26,6 - 735: 25,6 - 736: 30,6 - 737: 31,6 - 738: 32,6 - 739: 33,6 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 603: 9,39 - 742: 24,7 - 743: 24,9 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 599: 10,40 - 600: 12,40 - 652: 27,36 - 653: 28,36 - 654: 30,36 - 655: 31,36 - 656: 32,36 - 724: 25,10 - 725: 26,10 - 726: 28,10 - 727: 27,10 - 728: 30,10 - 729: 31,10 - 730: 32,10 - 731: 33,10 - - node: - cleanable: True - color: '#80C71F7F' - id: revolution - decals: - 2138: 14.060958,20.754644 - 2139: 13.607299,19.803425 - - node: - cleanable: True - color: '#B02E60A3' - id: revolution - decals: - 2137: 25.02975,25.438416 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#B02E2644' - id: splatter - decals: - 2131: 27.967218,24.104916 - - node: - cleanable: True - color: '#B02E2666' - id: splatter - decals: - 2126: 8.891183,43.065514 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#B02E266F' - id: splatter - decals: - 2132: 28.36234,24.163452 - 2133: 32.200607,35.087025 - 2134: 13.24002,46.473877 - 2135: 24.497486,47.84553 - - node: - cleanable: True - angle: -4.71238898038469 rad - color: '#B02E26B4' - id: splatter - decals: - 2128: 8.788744,42.524048 - 2129: 15.538555,20.953827 - 2130: 24.864944,27.488853 - - node: - cleanable: True - angle: -3.141592653589793 rad - color: '#B02E26B4' - id: splatter - decals: - 2127: 9.110695,42.81673 - - type: RadiationGridResistance - - type: LoadedMap - - type: SpreaderGrid - - type: GridTree - - type: MovedGrids - - type: GridPathfinding -- proto: AirlockBrigGlassLocked - entities: - - uid: 1245 - components: - - type: Transform - pos: 15.5,35.5 - parent: 588 - - uid: 1246 - components: - - type: Transform - pos: 19.5,35.5 - parent: 588 - - uid: 1625 - components: - - type: Transform - pos: 22.5,2.5 - parent: 588 -- proto: AirlockEngineering - entities: - - uid: 1515 - components: - - type: Transform - pos: 19.5,43.5 - parent: 588 -- proto: AirlockSecurityGlassLocked - entities: - - uid: 1579 - components: - - type: Transform - pos: 11.5,15.5 - parent: 588 - - uid: 1609 - components: - - type: Transform - pos: 15.5,8.5 - parent: 588 - - uid: 1610 - components: - - type: Transform - pos: 19.5,8.5 - parent: 588 - - uid: 1623 - components: - - type: Transform - pos: 6.5,2.5 - parent: 588 - - uid: 1624 - components: - - type: Transform - pos: 10.5,2.5 - parent: 588 -- proto: APCBasic - entities: - - uid: 484 - components: - - type: Transform - pos: 25.5,13.5 - parent: 588 - - uid: 773 - components: - - type: Transform - pos: 25.5,19.5 - parent: 588 - - uid: 973 - components: - - type: Transform - pos: 21.5,32.5 - parent: 588 - - uid: 1509 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,47.5 - parent: 588 -- proto: BannerSecurity - entities: - - uid: 553 - components: - - type: Transform - pos: 30.5,8.5 - parent: 588 - - uid: 1619 - components: - - type: Transform - pos: 18.5,10.5 - parent: 588 - - uid: 1620 - components: - - type: Transform - pos: 16.5,6.5 - parent: 588 -- proto: BasaltFive - entities: - - uid: 608 - components: - - type: Transform - pos: 2.5,14.5 - parent: 588 - - uid: 647 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,21.5 - parent: 588 - - uid: 899 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,30.5 - parent: 588 - - uid: 1264 - components: - - type: Transform - pos: 9.5,0.5 - parent: 588 - - uid: 1384 - components: - - type: Transform - pos: 5.5,48.5 - parent: 588 - - uid: 1386 - components: - - type: Transform - pos: 0.5,47.5 - parent: 588 - - uid: 1387 - components: - - type: Transform - pos: 0.5,42.5 - parent: 588 - - uid: 1388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,42.5 - parent: 588 -- proto: BasaltFour - entities: - - uid: 900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,32.5 - parent: 588 - - uid: 904 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,40.5 - parent: 588 - - uid: 1381 - components: - - type: Transform - pos: 1.5,44.5 - parent: 588 - - uid: 1385 - components: - - type: Transform - pos: 6.5,48.5 - parent: 588 -- proto: BasaltOne - entities: - - uid: 813 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,27.5 - parent: 588 - - uid: 897 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,30.5 - parent: 588 - - uid: 901 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,32.5 - parent: 588 - - uid: 903 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,38.5 - parent: 588 - - uid: 1382 - components: - - type: Transform - pos: 1.5,48.5 - parent: 588 -- proto: BasaltRandom - entities: - - uid: 613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,14.5 - parent: 588 - - uid: 615 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,7.5 - parent: 588 -- proto: BasaltThree - entities: - - uid: 616 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,7.5 - parent: 588 - - uid: 644 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,20.5 - parent: 588 - - uid: 898 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,30.5 - parent: 588 - - uid: 905 - components: - - type: Transform - pos: 4.5,38.5 - parent: 588 - - uid: 1265 - components: - - type: Transform - pos: 7.5,1.5 - parent: 588 - - uid: 1266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,3.5 - parent: 588 - - uid: 1383 - components: - - type: Transform - pos: 6.5,47.5 - parent: 588 -- proto: BasaltTwo - entities: - - uid: 610 - components: - - type: Transform - pos: 3.5,14.5 - parent: 588 - - uid: 617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,9.5 - parent: 588 - - uid: 618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,8.5 - parent: 588 - - uid: 646 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,19.5 - parent: 588 - - uid: 814 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,26.5 - parent: 588 - - uid: 896 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,32.5 - parent: 588 - - uid: 902 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,38.5 - parent: 588 - - uid: 1263 - components: - - type: Transform - pos: 7.5,4.5 - parent: 588 - - uid: 1380 - components: - - type: Transform - pos: 1.5,43.5 - parent: 588 -- proto: Bed - entities: - - uid: 257 - components: - - type: Transform - pos: 15.5,4.5 - parent: 588 - - uid: 282 - components: - - type: Transform - pos: 1.5,4.5 - parent: 588 - - uid: 293 - components: - - type: Transform - pos: 3.5,4.5 - parent: 588 - - uid: 294 - components: - - type: Transform - pos: 5.5,4.5 - parent: 588 - - uid: 295 - components: - - type: Transform - pos: 11.5,4.5 - parent: 588 - - uid: 296 - components: - - type: Transform - pos: 13.5,4.5 - parent: 588 - - uid: 700 - components: - - type: Transform - pos: 12.5,22.5 - parent: 588 - - uid: 701 - components: - - type: Transform - pos: 16.5,18.5 - parent: 588 - - uid: 1043 - components: - - type: Transform - pos: 20.5,28.5 - parent: 588 - - uid: 1044 - components: - - type: Transform - pos: 22.5,24.5 - parent: 588 - - uid: 1075 - components: - - type: Transform - pos: 24.5,28.5 - parent: 588 - - uid: 1099 - components: - - type: Transform - pos: 20.5,36.5 - parent: 588 - - uid: 1100 - components: - - type: Transform - pos: 14.5,34.5 - parent: 588 - - uid: 1763 - components: - - type: Transform - pos: 24.5,48.5 - parent: 588 - - uid: 1764 - components: - - type: Transform - pos: 24.5,42.5 - parent: 588 -- proto: BedsheetMedical - entities: - - uid: 1150 - components: - - type: Transform - pos: 28.5,24.5 - parent: 588 - - uid: 1151 - components: - - type: Transform - pos: 28.5,25.5 - parent: 588 -- proto: BedsheetOrange - entities: - - uid: 298 - components: - - type: Transform - pos: 3.5,4.5 - parent: 588 - - uid: 299 - components: - - type: Transform - pos: 5.5,4.5 - parent: 588 - - uid: 300 - components: - - type: Transform - pos: 13.5,4.5 - parent: 588 - - uid: 1765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,42.5 - parent: 588 -- proto: BedsheetSpawner - entities: - - uid: 301 - components: - - type: Transform - pos: 11.5,4.5 - parent: 588 - - uid: 1041 - components: - - type: Transform - pos: 20.5,28.5 - parent: 588 - - uid: 1225 - components: - - type: Transform - pos: 14.5,34.5 - parent: 588 - - uid: 1226 - components: - - type: Transform - pos: 20.5,36.5 - parent: 588 -- proto: BedsheetSyndie - entities: - - uid: 1037 - components: - - type: Transform - pos: 22.5,24.5 - parent: 588 - - uid: 1766 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,48.5 - parent: 588 -- proto: BlastDoor - entities: - - uid: 1600 - components: - - type: Transform - pos: 26.5,7.5 - parent: 588 - - uid: 1601 - components: - - type: Transform - pos: 29.5,9.5 - parent: 588 - - uid: 1602 - components: - - type: Transform - pos: 32.5,7.5 - parent: 588 -- proto: Bola - entities: - - uid: 1157 - components: - - type: Transform - pos: 15.616387,0.61007345 - parent: 588 -- proto: BookEscalationSecurity - entities: - - uid: 373 - components: - - type: Transform - pos: 19.42657,0.6288943 - parent: 588 -- proto: BookRandom - entities: - - uid: 1835 - components: - - type: Transform - pos: 24.420084,44.539436 - parent: 588 -- proto: BookSecurity - entities: - - uid: 522 - components: - - type: Transform - pos: 32.41844,8.400207 - parent: 588 -- proto: BoxFolderBlack - entities: - - uid: 365 - components: - - type: Transform - pos: 27.841173,1.5632035 - parent: 588 - - uid: 728 - components: - - type: Transform - pos: 10.690479,19.262342 - parent: 588 -- proto: BoxFolderGrey - entities: - - uid: 364 - components: - - type: Transform - pos: 25.072409,1.4780562 - parent: 588 - - uid: 727 - components: - - type: Transform - pos: 7.2148314,22.575037 - parent: 588 -- proto: BoxFolderRed - entities: - - uid: 329 - components: - - type: Transform - pos: 21.42984,3.6329575 - parent: 588 - - uid: 362 - components: - - type: Transform - pos: 24.788435,1.6057768 - parent: 588 - - uid: 363 - components: - - type: Transform - pos: 28.196142,1.5773941 - parent: 588 - - uid: 726 - components: - - type: Transform - pos: 10.428753,19.429379 - parent: 588 -- proto: BoxMouthSwab - entities: - - uid: 1476 - components: - - type: Transform - pos: 12.356534,44.605965 - parent: 588 -- proto: BoxSterileMask - entities: - - uid: 1477 - components: - - type: Transform - pos: 12.683106,44.705303 - parent: 588 -- proto: BriefcaseBrownFilled - entities: - - uid: 325 - components: - - type: Transform - pos: 19.413612,4.6972914 - parent: 588 -- proto: BrokenBottle - entities: - - uid: 1691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.063513,27.520548 - parent: 588 -- proto: Bucket - entities: - - uid: 1839 - components: - - type: Transform - pos: 29.616838,43.531868 - parent: 588 - - uid: 1857 - components: - - type: Transform - pos: 30.264944,21.705044 - parent: 588 -- proto: CableApcExtension - entities: - - uid: 1 - components: - - type: Transform - pos: 0.5,2.5 - parent: 588 - - uid: 2 - components: - - type: Transform - pos: 1.5,2.5 - parent: 588 - - uid: 3 - components: - - type: Transform - pos: 2.5,2.5 - parent: 588 - - uid: 4 - components: - - type: Transform - pos: 3.5,2.5 - parent: 588 - - uid: 5 - components: - - type: Transform - pos: 4.5,2.5 - parent: 588 - - uid: 6 - components: - - type: Transform - pos: 5.5,2.5 - parent: 588 - - uid: 7 - components: - - type: Transform - pos: 6.5,2.5 - parent: 588 - - uid: 8 - components: - - type: Transform - pos: 7.5,2.5 - parent: 588 - - uid: 9 - components: - - type: Transform - pos: 8.5,2.5 - parent: 588 - - uid: 10 - components: - - type: Transform - pos: 9.5,2.5 - parent: 588 - - uid: 11 - components: - - type: Transform - pos: 10.5,2.5 - parent: 588 - - uid: 12 - components: - - type: Transform - pos: 11.5,2.5 - parent: 588 - - uid: 13 - components: - - type: Transform - pos: 12.5,2.5 - parent: 588 - - uid: 14 - components: - - type: Transform - pos: 13.5,2.5 - parent: 588 - - uid: 15 - components: - - type: Transform - pos: 14.5,2.5 - parent: 588 - - uid: 16 - components: - - type: Transform - pos: 15.5,2.5 - parent: 588 - - uid: 17 - components: - - type: Transform - pos: 16.5,2.5 - parent: 588 - - uid: 18 - components: - - type: Transform - pos: 8.5,4.5 - parent: 588 - - uid: 19 - components: - - type: Transform - pos: 8.5,3.5 - parent: 588 - - uid: 20 - components: - - type: Transform - pos: 8.5,1.5 - parent: 588 - - uid: 21 - components: - - type: Transform - pos: 8.5,0.5 - parent: 588 - - uid: 22 - components: - - type: Transform - pos: 18.5,2.5 - parent: 588 - - uid: 23 - components: - - type: Transform - pos: 19.5,2.5 - parent: 588 - - uid: 24 - components: - - type: Transform - pos: 20.5,2.5 - parent: 588 - - uid: 25 - components: - - type: Transform - pos: 21.5,2.5 - parent: 588 - - uid: 26 - components: - - type: Transform - pos: 22.5,2.5 - parent: 588 - - uid: 27 - components: - - type: Transform - pos: 23.5,2.5 - parent: 588 - - uid: 28 - components: - - type: Transform - pos: 24.5,2.5 - parent: 588 - - uid: 29 - components: - - type: Transform - pos: 25.5,2.5 - parent: 588 - - uid: 30 - components: - - type: Transform - pos: 26.5,2.5 - parent: 588 - - uid: 31 - components: - - type: Transform - pos: 27.5,2.5 - parent: 588 - - uid: 32 - components: - - type: Transform - pos: 28.5,2.5 - parent: 588 - - uid: 33 - components: - - type: Transform - pos: 29.5,2.5 - parent: 588 - - uid: 34 - components: - - type: Transform - pos: 30.5,2.5 - parent: 588 - - uid: 35 - components: - - type: Transform - pos: 31.5,2.5 - parent: 588 - - uid: 36 - components: - - type: Transform - pos: 32.5,2.5 - parent: 588 - - uid: 37 - components: - - type: Transform - pos: 33.5,2.5 - parent: 588 - - uid: 38 - components: - - type: Transform - pos: 34.5,2.5 - parent: 588 - - uid: 39 - components: - - type: Transform - pos: 26.5,4.5 - parent: 588 - - uid: 40 - components: - - type: Transform - pos: 26.5,3.5 - parent: 588 - - uid: 41 - components: - - type: Transform - pos: 26.5,1.5 - parent: 588 - - uid: 42 - components: - - type: Transform - pos: 26.5,0.5 - parent: 588 - - uid: 43 - components: - - type: Transform - pos: 0.5,8.5 - parent: 588 - - uid: 44 - components: - - type: Transform - pos: 1.5,8.5 - parent: 588 - - uid: 52 - components: - - type: Transform - pos: 9.5,8.5 - parent: 588 - - uid: 53 - components: - - type: Transform - pos: 10.5,8.5 - parent: 588 - - uid: 54 - components: - - type: Transform - pos: 5.5,10.5 - parent: 588 - - uid: 57 - components: - - type: Transform - pos: 5.5,6.5 - parent: 588 - - uid: 58 - components: - - type: Transform - pos: 17.5,6.5 - parent: 588 - - uid: 59 - components: - - type: Transform - pos: 17.5,7.5 - parent: 588 - - uid: 60 - components: - - type: Transform - pos: 17.5,8.5 - parent: 588 - - uid: 61 - components: - - type: Transform - pos: 17.5,9.5 - parent: 588 - - uid: 62 - components: - - type: Transform - pos: 17.5,10.5 - parent: 588 - - uid: 63 - components: - - type: Transform - pos: 12.5,8.5 - parent: 588 - - uid: 64 - components: - - type: Transform - pos: 13.5,8.5 - parent: 588 - - uid: 65 - components: - - type: Transform - pos: 14.5,8.5 - parent: 588 - - uid: 66 - components: - - type: Transform - pos: 15.5,8.5 - parent: 588 - - uid: 67 - components: - - type: Transform - pos: 16.5,8.5 - parent: 588 - - uid: 68 - components: - - type: Transform - pos: 18.5,8.5 - parent: 588 - - uid: 69 - components: - - type: Transform - pos: 19.5,8.5 - parent: 588 - - uid: 70 - components: - - type: Transform - pos: 20.5,8.5 - parent: 588 - - uid: 71 - components: - - type: Transform - pos: 21.5,8.5 - parent: 588 - - uid: 72 - components: - - type: Transform - pos: 22.5,8.5 - parent: 588 - - uid: 73 - components: - - type: Transform - pos: 22.5,14.5 - parent: 588 - - uid: 74 - components: - - type: Transform - pos: 21.5,14.5 - parent: 588 - - uid: 75 - components: - - type: Transform - pos: 20.5,14.5 - parent: 588 - - uid: 76 - components: - - type: Transform - pos: 19.5,14.5 - parent: 588 - - uid: 77 - components: - - type: Transform - pos: 18.5,14.5 - parent: 588 - - uid: 78 - components: - - type: Transform - pos: 17.5,14.5 - parent: 588 - - uid: 79 - components: - - type: Transform - pos: 16.5,14.5 - parent: 588 - - uid: 80 - components: - - type: Transform - pos: 19.5,13.5 - parent: 588 - - uid: 81 - components: - - type: Transform - pos: 19.5,12.5 - parent: 588 - - uid: 82 - components: - - type: Transform - pos: 19.5,15.5 - parent: 588 - - uid: 83 - components: - - type: Transform - pos: 19.5,16.5 - parent: 588 - - uid: 84 - components: - - type: Transform - pos: 14.5,14.5 - parent: 588 - - uid: 85 - components: - - type: Transform - pos: 13.5,14.5 - parent: 588 - - uid: 86 - components: - - type: Transform - pos: 12.5,14.5 - parent: 588 - - uid: 87 - components: - - type: Transform - pos: 11.5,14.5 - parent: 588 - - uid: 88 - components: - - type: Transform - pos: 10.5,14.5 - parent: 588 - - uid: 89 - components: - - type: Transform - pos: 9.5,14.5 - parent: 588 - - uid: 90 - components: - - type: Transform - pos: 8.5,14.5 - parent: 588 - - uid: 91 - components: - - type: Transform - pos: 11.5,13.5 - parent: 588 - - uid: 92 - components: - - type: Transform - pos: 11.5,12.5 - parent: 588 - - uid: 93 - components: - - type: Transform - pos: 11.5,15.5 - parent: 588 - - uid: 94 - components: - - type: Transform - pos: 11.5,16.5 - parent: 588 - - uid: 95 - components: - - type: Transform - pos: 6.5,14.5 - parent: 588 - - uid: 96 - components: - - type: Transform - pos: 5.5,14.5 - parent: 588 - - uid: 98 - components: - - type: Transform - pos: 4.5,22.5 - parent: 588 - - uid: 100 - components: - - type: Transform - pos: 1.5,14.5 - parent: 588 - - uid: 101 - components: - - type: Transform - pos: 0.5,14.5 - parent: 588 - - uid: 102 - components: - - type: Transform - pos: 3.5,15.5 - parent: 588 - - uid: 103 - components: - - type: Transform - pos: 3.5,16.5 - parent: 588 - - uid: 104 - components: - - type: Transform - pos: 3.5,13.5 - parent: 588 - - uid: 105 - components: - - type: Transform - pos: 3.5,12.5 - parent: 588 - - uid: 106 - components: - - type: Transform - pos: 14.5,18.5 - parent: 588 - - uid: 107 - components: - - type: Transform - pos: 14.5,19.5 - parent: 588 - - uid: 108 - components: - - type: Transform - pos: 14.5,20.5 - parent: 588 - - uid: 109 - components: - - type: Transform - pos: 14.5,21.5 - parent: 588 - - uid: 110 - components: - - type: Transform - pos: 14.5,22.5 - parent: 588 - - uid: 111 - components: - - type: Transform - pos: 15.5,20.5 - parent: 588 - - uid: 112 - components: - - type: Transform - pos: 16.5,20.5 - parent: 588 - - uid: 113 - components: - - type: Transform - pos: 13.5,20.5 - parent: 588 - - uid: 114 - components: - - type: Transform - pos: 12.5,20.5 - parent: 588 - - uid: 115 - components: - - type: Transform - pos: 8.5,18.5 - parent: 588 - - uid: 116 - components: - - type: Transform - pos: 8.5,19.5 - parent: 588 - - uid: 117 - components: - - type: Transform - pos: 8.5,20.5 - parent: 588 - - uid: 118 - components: - - type: Transform - pos: 8.5,21.5 - parent: 588 - - uid: 119 - components: - - type: Transform - pos: 8.5,22.5 - parent: 588 - - uid: 120 - components: - - type: Transform - pos: 9.5,20.5 - parent: 588 - - uid: 121 - components: - - type: Transform - pos: 10.5,20.5 - parent: 588 - - uid: 122 - components: - - type: Transform - pos: 7.5,20.5 - parent: 588 - - uid: 123 - components: - - type: Transform - pos: 6.5,20.5 - parent: 588 - - uid: 124 - components: - - type: Transform - pos: 2.5,22.5 - parent: 588 - - uid: 125 - components: - - type: Transform - pos: 4.5,21.5 - parent: 588 - - uid: 126 - components: - - type: Transform - pos: 4.5,19.5 - parent: 588 - - uid: 127 - components: - - type: Transform - pos: 3.5,18.5 - parent: 588 - - uid: 128 - components: - - type: Transform - pos: 2.5,18.5 - parent: 588 - - uid: 129 - components: - - type: Transform - pos: 3.5,22.5 - parent: 588 - - uid: 130 - components: - - type: Transform - pos: 0.5,20.5 - parent: 588 - - uid: 131 - components: - - type: Transform - pos: 4.5,18.5 - parent: 588 - - uid: 132 - components: - - type: Transform - pos: 4.5,20.5 - parent: 588 - - uid: 133 - components: - - type: Transform - pos: 1.5,24.5 - parent: 588 - - uid: 134 - components: - - type: Transform - pos: 2.5,25.5 - parent: 588 - - uid: 135 - components: - - type: Transform - pos: 0.5,24.5 - parent: 588 - - uid: 136 - components: - - type: Transform - pos: 2.5,24.5 - parent: 588 - - uid: 137 - components: - - type: Transform - pos: 1.5,28.5 - parent: 588 - - uid: 138 - components: - - type: Transform - pos: 0.5,26.5 - parent: 588 - - uid: 139 - components: - - type: Transform - pos: 2.5,26.5 - parent: 588 - - uid: 147 - components: - - type: Transform - pos: 9.5,28.5 - parent: 588 - - uid: 148 - components: - - type: Transform - pos: 9.5,27.5 - parent: 588 - - uid: 149 - components: - - type: Transform - pos: 9.5,26.5 - parent: 588 - - uid: 150 - components: - - type: Transform - pos: 9.5,25.5 - parent: 588 - - uid: 151 - components: - - type: Transform - pos: 9.5,24.5 - parent: 588 - - uid: 152 - components: - - type: Transform - pos: 8.5,26.5 - parent: 588 - - uid: 153 - components: - - type: Transform - pos: 10.5,26.5 - parent: 588 - - uid: 154 - components: - - type: Transform - pos: 13.5,28.5 - parent: 588 - - uid: 155 - components: - - type: Transform - pos: 13.5,27.5 - parent: 588 - - uid: 156 - components: - - type: Transform - pos: 13.5,26.5 - parent: 588 - - uid: 157 - components: - - type: Transform - pos: 13.5,25.5 - parent: 588 - - uid: 158 - components: - - type: Transform - pos: 13.5,24.5 - parent: 588 - - uid: 159 - components: - - type: Transform - pos: 12.5,26.5 - parent: 588 - - uid: 160 - components: - - type: Transform - pos: 14.5,26.5 - parent: 588 - - uid: 161 - components: - - type: Transform - pos: 0.5,31.5 - parent: 588 - - uid: 162 - components: - - type: Transform - pos: 1.5,31.5 - parent: 588 - - uid: 163 - components: - - type: Transform - pos: 2.5,31.5 - parent: 588 - - uid: 164 - components: - - type: Transform - pos: 3.5,31.5 - parent: 588 - - uid: 165 - components: - - type: Transform - pos: 4.5,31.5 - parent: 588 - - uid: 166 - components: - - type: Transform - pos: 5.5,31.5 - parent: 588 - - uid: 167 - components: - - type: Transform - pos: 6.5,31.5 - parent: 588 - - uid: 168 - components: - - type: Transform - pos: 7.5,31.5 - parent: 588 - - uid: 169 - components: - - type: Transform - pos: 8.5,31.5 - parent: 588 - - uid: 170 - components: - - type: Transform - pos: 9.5,31.5 - parent: 588 - - uid: 171 - components: - - type: Transform - pos: 10.5,31.5 - parent: 588 - - uid: 172 - components: - - type: Transform - pos: 11.5,31.5 - parent: 588 - - uid: 173 - components: - - type: Transform - pos: 12.5,31.5 - parent: 588 - - uid: 174 - components: - - type: Transform - pos: 6.5,30.5 - parent: 588 - - uid: 175 - components: - - type: Transform - pos: 6.5,32.5 - parent: 588 - - uid: 176 - components: - - type: Transform - pos: 26.5,31.5 - parent: 588 - - uid: 177 - components: - - type: Transform - pos: 25.5,31.5 - parent: 588 - - uid: 178 - components: - - type: Transform - pos: 24.5,31.5 - parent: 588 - - uid: 179 - components: - - type: Transform - pos: 23.5,31.5 - parent: 588 - - uid: 180 - components: - - type: Transform - pos: 22.5,31.5 - parent: 588 - - uid: 181 - components: - - type: Transform - pos: 21.5,31.5 - parent: 588 - - uid: 182 - components: - - type: Transform - pos: 20.5,31.5 - parent: 588 - - uid: 183 - components: - - type: Transform - pos: 19.5,31.5 - parent: 588 - - uid: 184 - components: - - type: Transform - pos: 18.5,31.5 - parent: 588 - - uid: 185 - components: - - type: Transform - pos: 17.5,31.5 - parent: 588 - - uid: 186 - components: - - type: Transform - pos: 16.5,31.5 - parent: 588 - - uid: 187 - components: - - type: Transform - pos: 15.5,31.5 - parent: 588 - - uid: 188 - components: - - type: Transform - pos: 14.5,31.5 - parent: 588 - - uid: 189 - components: - - type: Transform - pos: 20.5,32.5 - parent: 588 - - uid: 190 - components: - - type: Transform - pos: 20.5,30.5 - parent: 588 - - uid: 191 - components: - - type: Transform - pos: 22.5,35.5 - parent: 588 - - uid: 192 - components: - - type: Transform - pos: 21.5,35.5 - parent: 588 - - uid: 193 - components: - - type: Transform - pos: 20.5,35.5 - parent: 588 - - uid: 194 - components: - - type: Transform - pos: 19.5,35.5 - parent: 588 - - uid: 195 - components: - - type: Transform - pos: 18.5,35.5 - parent: 588 - - uid: 196 - components: - - type: Transform - pos: 17.5,35.5 - parent: 588 - - uid: 197 - components: - - type: Transform - pos: 16.5,35.5 - parent: 588 - - uid: 198 - components: - - type: Transform - pos: 15.5,35.5 - parent: 588 - - uid: 199 - components: - - type: Transform - pos: 14.5,35.5 - parent: 588 - - uid: 200 - components: - - type: Transform - pos: 13.5,35.5 - parent: 588 - - uid: 201 - components: - - type: Transform - pos: 12.5,35.5 - parent: 588 - - uid: 202 - components: - - type: Transform - pos: 17.5,36.5 - parent: 588 - - uid: 203 - components: - - type: Transform - pos: 17.5,34.5 - parent: 588 - - uid: 204 - components: - - type: Transform - pos: 10.5,35.5 - parent: 588 - - uid: 215 - components: - - type: Transform - pos: 5.5,36.5 - parent: 588 - - uid: 216 - components: - - type: Transform - pos: 5.5,34.5 - parent: 588 - - uid: 217 - components: - - type: Transform - pos: 0.5,39.5 - parent: 588 - - uid: 218 - components: - - type: Transform - pos: 1.5,39.5 - parent: 588 - - uid: 219 - components: - - type: Transform - pos: 2.5,39.5 - parent: 588 - - uid: 220 - components: - - type: Transform - pos: 3.5,39.5 - parent: 588 - - uid: 221 - components: - - type: Transform - pos: 4.5,39.5 - parent: 588 - - uid: 222 - components: - - type: Transform - pos: 5.5,39.5 - parent: 588 - - uid: 223 - components: - - type: Transform - pos: 6.5,39.5 - parent: 588 - - uid: 224 - components: - - type: Transform - pos: 3.5,38.5 - parent: 588 - - uid: 225 - components: - - type: Transform - pos: 3.5,40.5 - parent: 588 - - uid: 226 - components: - - type: Transform - pos: 8.5,39.5 - parent: 588 - - uid: 227 - components: - - type: Transform - pos: 9.5,39.5 - parent: 588 - - uid: 228 - components: - - type: Transform - pos: 10.5,39.5 - parent: 588 - - uid: 229 - components: - - type: Transform - pos: 11.5,39.5 - parent: 588 - - uid: 230 - components: - - type: Transform - pos: 12.5,39.5 - parent: 588 - - uid: 231 - components: - - type: Transform - pos: 13.5,39.5 - parent: 588 - - uid: 232 - components: - - type: Transform - pos: 14.5,39.5 - parent: 588 - - uid: 233 - components: - - type: Transform - pos: 11.5,38.5 - parent: 588 - - uid: 234 - components: - - type: Transform - pos: 11.5,40.5 - parent: 588 - - uid: 235 - components: - - type: Transform - pos: 16.5,39.5 - parent: 588 - - uid: 236 - components: - - type: Transform - pos: 17.5,39.5 - parent: 588 - - uid: 237 - components: - - type: Transform - pos: 18.5,39.5 - parent: 588 - - uid: 238 - components: - - type: Transform - pos: 19.5,39.5 - parent: 588 - - uid: 239 - components: - - type: Transform - pos: 20.5,39.5 - parent: 588 - - uid: 240 - components: - - type: Transform - pos: 21.5,39.5 - parent: 588 - - uid: 241 - components: - - type: Transform - pos: 22.5,39.5 - parent: 588 - - uid: 242 - components: - - type: Transform - pos: 19.5,40.5 - parent: 588 - - uid: 243 - components: - - type: Transform - pos: 19.5,38.5 - parent: 588 - - uid: 284 - components: - - type: Transform - pos: 29.5,26.5 - parent: 588 - - uid: 288 - components: - - type: Transform - pos: 28.5,26.5 - parent: 588 - - uid: 425 - components: - - type: Transform - pos: 1.5,10.5 - parent: 588 - - uid: 438 - components: - - type: Transform - pos: 1.5,9.5 - parent: 588 - - uid: 441 - components: - - type: Transform - pos: 2.5,10.5 - parent: 588 - - uid: 442 - components: - - type: Transform - pos: 3.5,10.5 - parent: 588 - - uid: 443 - components: - - type: Transform - pos: 4.5,10.5 - parent: 588 - - uid: 444 - components: - - type: Transform - pos: 1.5,7.5 - parent: 588 - - uid: 445 - components: - - type: Transform - pos: 1.5,6.5 - parent: 588 - - uid: 446 - components: - - type: Transform - pos: 2.5,6.5 - parent: 588 - - uid: 447 - components: - - type: Transform - pos: 3.5,6.5 - parent: 588 - - uid: 448 - components: - - type: Transform - pos: 4.5,6.5 - parent: 588 - - uid: 449 - components: - - type: Transform - pos: 6.5,6.5 - parent: 588 - - uid: 450 - components: - - type: Transform - pos: 7.5,6.5 - parent: 588 - - uid: 451 - components: - - type: Transform - pos: 8.5,6.5 - parent: 588 - - uid: 452 - components: - - type: Transform - pos: 9.5,6.5 - parent: 588 - - uid: 453 - components: - - type: Transform - pos: 9.5,7.5 - parent: 588 - - uid: 454 - components: - - type: Transform - pos: 9.5,9.5 - parent: 588 - - uid: 455 - components: - - type: Transform - pos: 9.5,10.5 - parent: 588 - - uid: 456 - components: - - type: Transform - pos: 8.5,10.5 - parent: 588 - - uid: 457 - components: - - type: Transform - pos: 7.5,10.5 - parent: 588 - - uid: 472 - components: - - type: Transform - pos: 29.5,14.5 - parent: 588 - - uid: 477 - components: - - type: Transform - pos: 24.5,13.5 - parent: 588 - - uid: 479 - components: - - type: Transform - pos: 30.5,14.5 - parent: 588 - - uid: 493 - components: - - type: Transform - pos: 25.5,13.5 - parent: 588 - - uid: 494 - components: - - type: Transform - pos: 25.5,12.5 - parent: 588 - - uid: 495 - components: - - type: Transform - pos: 26.5,12.5 - parent: 588 - - uid: 496 - components: - - type: Transform - pos: 27.5,12.5 - parent: 588 - - uid: 497 - components: - - type: Transform - pos: 28.5,12.5 - parent: 588 - - uid: 498 - components: - - type: Transform - pos: 29.5,12.5 - parent: 588 - - uid: 500 - components: - - type: Transform - pos: 24.5,12.5 - parent: 588 - - uid: 502 - components: - - type: Transform - pos: 24.5,14.5 - parent: 588 - - uid: 503 - components: - - type: Transform - pos: 24.5,15.5 - parent: 588 - - uid: 504 - components: - - type: Transform - pos: 24.5,16.5 - parent: 588 - - uid: 505 - components: - - type: Transform - pos: 25.5,16.5 - parent: 588 - - uid: 506 - components: - - type: Transform - pos: 26.5,16.5 - parent: 588 - - uid: 507 - components: - - type: Transform - pos: 27.5,16.5 - parent: 588 - - uid: 508 - components: - - type: Transform - pos: 28.5,16.5 - parent: 588 - - uid: 509 - components: - - type: Transform - pos: 29.5,16.5 - parent: 588 - - uid: 514 - components: - - type: Transform - pos: 29.5,13.5 - parent: 588 - - uid: 523 - components: - - type: Transform - pos: 29.5,15.5 - parent: 588 - - uid: 628 - components: - - type: Transform - pos: 1.5,22.5 - parent: 588 - - uid: 639 - components: - - type: Transform - pos: 0.5,22.5 - parent: 588 - - uid: 640 - components: - - type: Transform - pos: 0.5,21.5 - parent: 588 - - uid: 641 - components: - - type: Transform - pos: 0.5,19.5 - parent: 588 - - uid: 642 - components: - - type: Transform - pos: 0.5,18.5 - parent: 588 - - uid: 643 - components: - - type: Transform - pos: 1.5,18.5 - parent: 588 - - uid: 657 - components: - - type: Transform - pos: 2.5,15.5 - parent: 588 - - uid: 661 - components: - - type: Transform - pos: 1.5,15.5 - parent: 588 - - uid: 662 - components: - - type: Transform - pos: 1.5,13.5 - parent: 588 - - uid: 663 - components: - - type: Transform - pos: 2.5,13.5 - parent: 588 - - uid: 664 - components: - - type: Transform - pos: 4.5,13.5 - parent: 588 - - uid: 665 - components: - - type: Transform - pos: 5.5,13.5 - parent: 588 - - uid: 666 - components: - - type: Transform - pos: 5.5,15.5 - parent: 588 - - uid: 667 - components: - - type: Transform - pos: 4.5,15.5 - parent: 588 - - uid: 668 - components: - - type: Transform - pos: 29.5,10.5 - parent: 588 - - uid: 669 - components: - - type: Transform - pos: 28.5,10.5 - parent: 588 - - uid: 670 - components: - - type: Transform - pos: 27.5,10.5 - parent: 588 - - uid: 671 - components: - - type: Transform - pos: 26.5,10.5 - parent: 588 - - uid: 672 - components: - - type: Transform - pos: 25.5,10.5 - parent: 588 - - uid: 673 - components: - - type: Transform - pos: 24.5,10.5 - parent: 588 - - uid: 674 - components: - - type: Transform - pos: 24.5,9.5 - parent: 588 - - uid: 675 - components: - - type: Transform - pos: 24.5,8.5 - parent: 588 - - uid: 676 - components: - - type: Transform - pos: 24.5,7.5 - parent: 588 - - uid: 677 - components: - - type: Transform - pos: 24.5,6.5 - parent: 588 - - uid: 678 - components: - - type: Transform - pos: 25.5,6.5 - parent: 588 - - uid: 679 - components: - - type: Transform - pos: 26.5,6.5 - parent: 588 - - uid: 680 - components: - - type: Transform - pos: 27.5,6.5 - parent: 588 - - uid: 681 - components: - - type: Transform - pos: 28.5,6.5 - parent: 588 - - uid: 682 - components: - - type: Transform - pos: 29.5,6.5 - parent: 588 - - uid: 683 - components: - - type: Transform - pos: 30.5,6.5 - parent: 588 - - uid: 684 - components: - - type: Transform - pos: 31.5,6.5 - parent: 588 - - uid: 685 - components: - - type: Transform - pos: 32.5,6.5 - parent: 588 - - uid: 686 - components: - - type: Transform - pos: 33.5,6.5 - parent: 588 - - uid: 687 - components: - - type: Transform - pos: 34.5,6.5 - parent: 588 - - uid: 688 - components: - - type: Transform - pos: 34.5,7.5 - parent: 588 - - uid: 689 - components: - - type: Transform - pos: 34.5,8.5 - parent: 588 - - uid: 690 - components: - - type: Transform - pos: 34.5,9.5 - parent: 588 - - uid: 691 - components: - - type: Transform - pos: 34.5,10.5 - parent: 588 - - uid: 692 - components: - - type: Transform - pos: 33.5,10.5 - parent: 588 - - uid: 693 - components: - - type: Transform - pos: 32.5,10.5 - parent: 588 - - uid: 694 - components: - - type: Transform - pos: 31.5,10.5 - parent: 588 - - uid: 695 - components: - - type: Transform - pos: 30.5,10.5 - parent: 588 - - uid: 733 - components: - - type: Transform - pos: 20.5,18.5 - parent: 588 - - uid: 734 - components: - - type: Transform - pos: 20.5,19.5 - parent: 588 - - uid: 735 - components: - - type: Transform - pos: 20.5,20.5 - parent: 588 - - uid: 736 - components: - - type: Transform - pos: 20.5,21.5 - parent: 588 - - uid: 737 - components: - - type: Transform - pos: 20.5,22.5 - parent: 588 - - uid: 738 - components: - - type: Transform - pos: 21.5,20.5 - parent: 588 - - uid: 739 - components: - - type: Transform - pos: 22.5,20.5 - parent: 588 - - uid: 740 - components: - - type: Transform - pos: 19.5,20.5 - parent: 588 - - uid: 741 - components: - - type: Transform - pos: 18.5,20.5 - parent: 588 - - uid: 751 - components: - - type: Transform - pos: 32.5,22.5 - parent: 588 - - uid: 752 - components: - - type: Transform - pos: 32.5,21.5 - parent: 588 - - uid: 753 - components: - - type: Transform - pos: 32.5,20.5 - parent: 588 - - uid: 754 - components: - - type: Transform - pos: 32.5,19.5 - parent: 588 - - uid: 755 - components: - - type: Transform - pos: 32.5,18.5 - parent: 588 - - uid: 756 - components: - - type: Transform - pos: 31.5,20.5 - parent: 588 - - uid: 757 - components: - - type: Transform - pos: 30.5,20.5 - parent: 588 - - uid: 758 - components: - - type: Transform - pos: 33.5,20.5 - parent: 588 - - uid: 759 - components: - - type: Transform - pos: 34.5,20.5 - parent: 588 - - uid: 779 - components: - - type: Transform - pos: 25.5,19.5 - parent: 588 - - uid: 780 - components: - - type: Transform - pos: 25.5,18.5 - parent: 588 - - uid: 781 - components: - - type: Transform - pos: 24.5,18.5 - parent: 588 - - uid: 782 - components: - - type: Transform - pos: 24.5,19.5 - parent: 588 - - uid: 783 - components: - - type: Transform - pos: 24.5,20.5 - parent: 588 - - uid: 784 - components: - - type: Transform - pos: 24.5,21.5 - parent: 588 - - uid: 785 - components: - - type: Transform - pos: 24.5,22.5 - parent: 588 - - uid: 786 - components: - - type: Transform - pos: 25.5,22.5 - parent: 588 - - uid: 787 - components: - - type: Transform - pos: 26.5,22.5 - parent: 588 - - uid: 788 - components: - - type: Transform - pos: 27.5,22.5 - parent: 588 - - uid: 789 - components: - - type: Transform - pos: 28.5,22.5 - parent: 588 - - uid: 790 - components: - - type: Transform - pos: 28.5,21.5 - parent: 588 - - uid: 791 - components: - - type: Transform - pos: 28.5,20.5 - parent: 588 - - uid: 792 - components: - - type: Transform - pos: 28.5,19.5 - parent: 588 - - uid: 793 - components: - - type: Transform - pos: 28.5,18.5 - parent: 588 - - uid: 794 - components: - - type: Transform - pos: 27.5,18.5 - parent: 588 - - uid: 795 - components: - - type: Transform - pos: 26.5,18.5 - parent: 588 - - uid: 815 - components: - - type: Transform - pos: 0.5,25.5 - parent: 588 - - uid: 816 - components: - - type: Transform - pos: 0.5,27.5 - parent: 588 - - uid: 817 - components: - - type: Transform - pos: 0.5,28.5 - parent: 588 - - uid: 818 - components: - - type: Transform - pos: 2.5,28.5 - parent: 588 - - uid: 819 - components: - - type: Transform - pos: 2.5,27.5 - parent: 588 - - uid: 869 - components: - - type: Transform - pos: 5.5,24.5 - parent: 588 - - uid: 870 - components: - - type: Transform - pos: 6.5,24.5 - parent: 588 - - uid: 871 - components: - - type: Transform - pos: 6.5,25.5 - parent: 588 - - uid: 872 - components: - - type: Transform - pos: 6.5,26.5 - parent: 588 - - uid: 873 - components: - - type: Transform - pos: 6.5,27.5 - parent: 588 - - uid: 874 - components: - - type: Transform - pos: 6.5,28.5 - parent: 588 - - uid: 875 - components: - - type: Transform - pos: 5.5,28.5 - parent: 588 - - uid: 876 - components: - - type: Transform - pos: 4.5,28.5 - parent: 588 - - uid: 877 - components: - - type: Transform - pos: 4.5,27.5 - parent: 588 - - uid: 878 - components: - - type: Transform - pos: 4.5,26.5 - parent: 588 - - uid: 912 - components: - - type: Transform - pos: 6.5,10.5 - parent: 588 - - uid: 927 - components: - - type: Transform - pos: 34.5,36.5 - parent: 588 - - uid: 928 - components: - - type: Transform - pos: 32.5,36.5 - parent: 588 - - uid: 996 - components: - - type: Transform - pos: 21.5,32.5 - parent: 588 - - uid: 1079 - components: - - type: Transform - pos: 32.5,35.5 - parent: 588 - - uid: 1080 - components: - - type: Transform - pos: 31.5,35.5 - parent: 588 - - uid: 1081 - components: - - type: Transform - pos: 32.5,34.5 - parent: 588 - - uid: 1082 - components: - - type: Transform - pos: 29.5,34.5 - parent: 588 - - uid: 1083 - components: - - type: Transform - pos: 24.5,35.5 - parent: 588 - - uid: 1084 - components: - - type: Transform - pos: 27.5,35.5 - parent: 588 - - uid: 1085 - components: - - type: Transform - pos: 29.5,35.5 - parent: 588 - - uid: 1086 - components: - - type: Transform - pos: 28.5,35.5 - parent: 588 - - uid: 1089 - components: - - type: Transform - pos: 4.5,36.5 - parent: 588 - - uid: 1090 - components: - - type: Transform - pos: 33.5,34.5 - parent: 588 - - uid: 1091 - components: - - type: Transform - pos: 5.5,35.5 - parent: 588 - - uid: 1092 - components: - - type: Transform - pos: 29.5,36.5 - parent: 588 - - uid: 1093 - components: - - type: Transform - pos: 34.5,34.5 - parent: 588 - - uid: 1094 - components: - - type: Transform - pos: 34.5,35.5 - parent: 588 - - uid: 1095 - components: - - type: Transform - pos: 26.5,35.5 - parent: 588 - - uid: 1096 - components: - - type: Transform - pos: 25.5,35.5 - parent: 588 - - uid: 1097 - components: - - type: Transform - pos: 33.5,36.5 - parent: 588 - - uid: 1098 - components: - - type: Transform - pos: 30.5,35.5 - parent: 588 - - uid: 1117 - components: - - type: Transform - pos: 16.5,26.5 - parent: 588 - - uid: 1121 - components: - - type: Transform - pos: 17.5,26.5 - parent: 588 - - uid: 1122 - components: - - type: Transform - pos: 18.5,26.5 - parent: 588 - - uid: 1123 - components: - - type: Transform - pos: 17.5,27.5 - parent: 588 - - uid: 1124 - components: - - type: Transform - pos: 17.5,28.5 - parent: 588 - - uid: 1125 - components: - - type: Transform - pos: 17.5,24.5 - parent: 588 - - uid: 1126 - components: - - type: Transform - pos: 17.5,25.5 - parent: 588 - - uid: 1127 - components: - - type: Transform - pos: 20.5,26.5 - parent: 588 - - uid: 1128 - components: - - type: Transform - pos: 21.5,26.5 - parent: 588 - - uid: 1129 - components: - - type: Transform - pos: 22.5,26.5 - parent: 588 - - uid: 1130 - components: - - type: Transform - pos: 21.5,27.5 - parent: 588 - - uid: 1131 - components: - - type: Transform - pos: 21.5,28.5 - parent: 588 - - uid: 1132 - components: - - type: Transform - pos: 21.5,25.5 - parent: 588 - - uid: 1133 - components: - - type: Transform - pos: 21.5,24.5 - parent: 588 - - uid: 1134 - components: - - type: Transform - pos: 24.5,26.5 - parent: 588 - - uid: 1135 - components: - - type: Transform - pos: 25.5,26.5 - parent: 588 - - uid: 1136 - components: - - type: Transform - pos: 26.5,26.5 - parent: 588 - - uid: 1137 - components: - - type: Transform - pos: 25.5,27.5 - parent: 588 - - uid: 1138 - components: - - type: Transform - pos: 25.5,28.5 - parent: 588 - - uid: 1139 - components: - - type: Transform - pos: 25.5,25.5 - parent: 588 - - uid: 1140 - components: - - type: Transform - pos: 25.5,24.5 - parent: 588 - - uid: 1170 - components: - - type: Transform - pos: 3.5,36.5 - parent: 588 - - uid: 1171 - components: - - type: Transform - pos: 2.5,36.5 - parent: 588 - - uid: 1172 - components: - - type: Transform - pos: 1.5,36.5 - parent: 588 - - uid: 1173 - components: - - type: Transform - pos: 0.5,36.5 - parent: 588 - - uid: 1174 - components: - - type: Transform - pos: 0.5,35.5 - parent: 588 - - uid: 1175 - components: - - type: Transform - pos: 6.5,34.5 - parent: 588 - - uid: 1176 - components: - - type: Transform - pos: 7.5,34.5 - parent: 588 - - uid: 1177 - components: - - type: Transform - pos: 8.5,34.5 - parent: 588 - - uid: 1178 - components: - - type: Transform - pos: 9.5,34.5 - parent: 588 - - uid: 1179 - components: - - type: Transform - pos: 10.5,34.5 - parent: 588 - - uid: 1268 - components: - - type: Transform - pos: 30.5,26.5 - parent: 588 - - uid: 1269 - components: - - type: Transform - pos: 29.5,27.5 - parent: 588 - - uid: 1270 - components: - - type: Transform - pos: 29.5,28.5 - parent: 588 - - uid: 1271 - components: - - type: Transform - pos: 29.5,25.5 - parent: 588 - - uid: 1272 - components: - - type: Transform - pos: 29.5,24.5 - parent: 588 - - uid: 1273 - components: - - type: Transform - pos: 32.5,26.5 - parent: 588 - - uid: 1274 - components: - - type: Transform - pos: 33.5,26.5 - parent: 588 - - uid: 1275 - components: - - type: Transform - pos: 34.5,26.5 - parent: 588 - - uid: 1276 - components: - - type: Transform - pos: 33.5,27.5 - parent: 588 - - uid: 1277 - components: - - type: Transform - pos: 33.5,28.5 - parent: 588 - - uid: 1278 - components: - - type: Transform - pos: 33.5,25.5 - parent: 588 - - uid: 1279 - components: - - type: Transform - pos: 33.5,24.5 - parent: 588 - - uid: 1306 - components: - - type: Transform - pos: 27.5,40.5 - parent: 588 - - uid: 1307 - components: - - type: Transform - pos: 26.5,40.5 - parent: 588 - - uid: 1308 - components: - - type: Transform - pos: 25.5,40.5 - parent: 588 - - uid: 1309 - components: - - type: Transform - pos: 24.5,40.5 - parent: 588 - - uid: 1310 - components: - - type: Transform - pos: 24.5,39.5 - parent: 588 - - uid: 1311 - components: - - type: Transform - pos: 24.5,38.5 - parent: 588 - - uid: 1312 - components: - - type: Transform - pos: 25.5,38.5 - parent: 588 - - uid: 1313 - components: - - type: Transform - pos: 26.5,38.5 - parent: 588 - - uid: 1314 - components: - - type: Transform - pos: 27.5,38.5 - parent: 588 - - uid: 1315 - components: - - type: Transform - pos: 28.5,38.5 - parent: 588 - - uid: 1316 - components: - - type: Transform - pos: 29.5,38.5 - parent: 588 - - uid: 1317 - components: - - type: Transform - pos: 30.5,38.5 - parent: 588 - - uid: 1318 - components: - - type: Transform - pos: 30.5,39.5 - parent: 588 - - uid: 1426 - components: - - type: Transform - pos: 11.5,42.5 - parent: 588 - - uid: 1427 - components: - - type: Transform - pos: 11.5,43.5 - parent: 588 - - uid: 1428 - components: - - type: Transform - pos: 11.5,44.5 - parent: 588 - - uid: 1429 - components: - - type: Transform - pos: 11.5,45.5 - parent: 588 - - uid: 1430 - components: - - type: Transform - pos: 11.5,46.5 - parent: 588 - - uid: 1431 - components: - - type: Transform - pos: 11.5,47.5 - parent: 588 - - uid: 1432 - components: - - type: Transform - pos: 11.5,48.5 - parent: 588 - - uid: 1433 - components: - - type: Transform - pos: 10.5,45.5 - parent: 588 - - uid: 1434 - components: - - type: Transform - pos: 9.5,45.5 - parent: 588 - - uid: 1435 - components: - - type: Transform - pos: 8.5,45.5 - parent: 588 - - uid: 1436 - components: - - type: Transform - pos: 12.5,45.5 - parent: 588 - - uid: 1437 - components: - - type: Transform - pos: 13.5,45.5 - parent: 588 - - uid: 1438 - components: - - type: Transform - pos: 14.5,45.5 - parent: 588 - - uid: 1439 - components: - - type: Transform - pos: 13.5,46.5 - parent: 588 - - uid: 1440 - components: - - type: Transform - pos: 13.5,47.5 - parent: 588 - - uid: 1441 - components: - - type: Transform - pos: 9.5,46.5 - parent: 588 - - uid: 1442 - components: - - type: Transform - pos: 9.5,47.5 - parent: 588 - - uid: 1443 - components: - - type: Transform - pos: 10.5,43.5 - parent: 588 - - uid: 1444 - components: - - type: Transform - pos: 9.5,43.5 - parent: 588 - - uid: 1445 - components: - - type: Transform - pos: 12.5,43.5 - parent: 588 - - uid: 1446 - components: - - type: Transform - pos: 13.5,43.5 - parent: 588 - - uid: 1447 - components: - - type: Transform - pos: 3.5,42.5 - parent: 588 - - uid: 1448 - components: - - type: Transform - pos: 3.5,43.5 - parent: 588 - - uid: 1449 - components: - - type: Transform - pos: 3.5,44.5 - parent: 588 - - uid: 1450 - components: - - type: Transform - pos: 3.5,45.5 - parent: 588 - - uid: 1451 - components: - - type: Transform - pos: 3.5,46.5 - parent: 588 - - uid: 1452 - components: - - type: Transform - pos: 3.5,47.5 - parent: 588 - - uid: 1453 - components: - - type: Transform - pos: 3.5,48.5 - parent: 588 - - uid: 1454 - components: - - type: Transform - pos: 0.5,45.5 - parent: 588 - - uid: 1455 - components: - - type: Transform - pos: 1.5,45.5 - parent: 588 - - uid: 1456 - components: - - type: Transform - pos: 2.5,45.5 - parent: 588 - - uid: 1457 - components: - - type: Transform - pos: 3.5,45.5 - parent: 588 - - uid: 1458 - components: - - type: Transform - pos: 4.5,45.5 - parent: 588 - - uid: 1459 - components: - - type: Transform - pos: 5.5,45.5 - parent: 588 - - uid: 1460 - components: - - type: Transform - pos: 6.5,45.5 - parent: 588 - - uid: 1529 - components: - - type: Transform - pos: 19.5,47.5 - parent: 588 - - uid: 1530 - components: - - type: Transform - pos: 19.5,48.5 - parent: 588 - - uid: 1531 - components: - - type: Transform - pos: 18.5,48.5 - parent: 588 - - uid: 1532 - components: - - type: Transform - pos: 17.5,48.5 - parent: 588 - - uid: 1533 - components: - - type: Transform - pos: 16.5,48.5 - parent: 588 - - uid: 1534 - components: - - type: Transform - pos: 16.5,47.5 - parent: 588 - - uid: 1535 - components: - - type: Transform - pos: 16.5,46.5 - parent: 588 - - uid: 1536 - components: - - type: Transform - pos: 16.5,45.5 - parent: 588 - - uid: 1537 - components: - - type: Transform - pos: 16.5,44.5 - parent: 588 - - uid: 1538 - components: - - type: Transform - pos: 16.5,43.5 - parent: 588 - - uid: 1539 - components: - - type: Transform - pos: 16.5,42.5 - parent: 588 - - uid: 1540 - components: - - type: Transform - pos: 17.5,42.5 - parent: 588 - - uid: 1541 - components: - - type: Transform - pos: 18.5,42.5 - parent: 588 - - uid: 1542 - components: - - type: Transform - pos: 19.5,42.5 - parent: 588 - - uid: 1543 - components: - - type: Transform - pos: 20.5,42.5 - parent: 588 - - uid: 1544 - components: - - type: Transform - pos: 21.5,42.5 - parent: 588 - - uid: 1545 - components: - - type: Transform - pos: 22.5,42.5 - parent: 588 - - uid: 1546 - components: - - type: Transform - pos: 22.5,43.5 - parent: 588 - - uid: 1547 - components: - - type: Transform - pos: 22.5,44.5 - parent: 588 - - uid: 1548 - components: - - type: Transform - pos: 22.5,45.5 - parent: 588 - - uid: 1549 - components: - - type: Transform - pos: 22.5,46.5 - parent: 588 - - uid: 1550 - components: - - type: Transform - pos: 22.5,47.5 - parent: 588 - - uid: 1551 - components: - - type: Transform - pos: 22.5,48.5 - parent: 588 - - uid: 1552 - components: - - type: Transform - pos: 21.5,48.5 - parent: 588 - - uid: 1553 - components: - - type: Transform - pos: 20.5,48.5 - parent: 588 - - uid: 1554 - components: - - type: Transform - pos: 19.5,43.5 - parent: 588 - - uid: 1555 - components: - - type: Transform - pos: 19.5,44.5 - parent: 588 - - uid: 1556 - components: - - type: Transform - pos: 19.5,45.5 - parent: 588 - - uid: 1557 - components: - - type: Transform - pos: 19.5,46.5 - parent: 588 - - uid: 1807 - components: - - type: Transform - pos: 27.5,42.5 - parent: 588 - - uid: 1808 - components: - - type: Transform - pos: 27.5,43.5 - parent: 588 - - uid: 1809 - components: - - type: Transform - pos: 27.5,44.5 - parent: 588 - - uid: 1810 - components: - - type: Transform - pos: 27.5,45.5 - parent: 588 - - uid: 1811 - components: - - type: Transform - pos: 27.5,46.5 - parent: 588 - - uid: 1812 - components: - - type: Transform - pos: 27.5,47.5 - parent: 588 - - uid: 1813 - components: - - type: Transform - pos: 27.5,48.5 - parent: 588 - - uid: 1814 - components: - - type: Transform - pos: 28.5,45.5 - parent: 588 - - uid: 1815 - components: - - type: Transform - pos: 29.5,45.5 - parent: 588 - - uid: 1816 - components: - - type: Transform - pos: 30.5,45.5 - parent: 588 - - uid: 1817 - components: - - type: Transform - pos: 26.5,45.5 - parent: 588 - - uid: 1818 - components: - - type: Transform - pos: 25.5,45.5 - parent: 588 - - uid: 1819 - components: - - type: Transform - pos: 24.5,45.5 - parent: 588 - - uid: 1820 - components: - - type: Transform - pos: 26.5,47.5 - parent: 588 - - uid: 1821 - components: - - type: Transform - pos: 25.5,47.5 - parent: 588 - - uid: 1822 - components: - - type: Transform - pos: 28.5,47.5 - parent: 588 - - uid: 1823 - components: - - type: Transform - pos: 29.5,47.5 - parent: 588 - - uid: 1824 - components: - - type: Transform - pos: 26.5,43.5 - parent: 588 - - uid: 1825 - components: - - type: Transform - pos: 25.5,43.5 - parent: 588 - - uid: 1826 - components: - - type: Transform - pos: 28.5,43.5 - parent: 588 - - uid: 1827 - components: - - type: Transform - pos: 29.5,43.5 - parent: 588 -- proto: CableApcStack1 - entities: - - uid: 655 - components: - - type: Transform - pos: 16.273203,19.650417 - parent: 588 -- proto: CableHV - entities: - - uid: 462 - components: - - type: Transform - pos: 27.5,13.5 - parent: 588 - - uid: 466 - components: - - type: Transform - pos: 26.5,13.5 - parent: 588 - - uid: 468 - components: - - type: Transform - pos: 28.5,13.5 - parent: 588 - - uid: 485 - components: - - type: Transform - pos: 26.5,15.5 - parent: 588 - - uid: 486 - components: - - type: Transform - pos: 26.5,14.5 - parent: 588 - - uid: 487 - components: - - type: Transform - pos: 27.5,14.5 - parent: 588 - - uid: 488 - components: - - type: Transform - pos: 28.5,14.5 - parent: 588 - - uid: 489 - components: - - type: Transform - pos: 28.5,15.5 - parent: 588 - - uid: 743 - components: - - type: Transform - pos: 26.5,21.5 - parent: 588 - - uid: 744 - components: - - type: Transform - pos: 27.5,21.5 - parent: 588 - - uid: 745 - components: - - type: Transform - pos: 26.5,20.5 - parent: 588 - - uid: 746 - components: - - type: Transform - pos: 25.5,21.5 - parent: 588 - - uid: 768 - components: - - type: Transform - pos: 26.5,19.5 - parent: 588 - - uid: 778 - components: - - type: Transform - pos: 27.5,19.5 - parent: 588 - - uid: 978 - components: - - type: Transform - pos: 16.5,32.5 - parent: 588 - - uid: 979 - components: - - type: Transform - pos: 15.5,31.5 - parent: 588 - - uid: 980 - components: - - type: Transform - pos: 16.5,31.5 - parent: 588 - - uid: 981 - components: - - type: Transform - pos: 17.5,31.5 - parent: 588 - - uid: 982 - components: - - type: Transform - pos: 18.5,31.5 - parent: 588 - - uid: 983 - components: - - type: Transform - pos: 22.5,31.5 - parent: 588 - - uid: 984 - components: - - type: Transform - pos: 23.5,31.5 - parent: 588 - - uid: 985 - components: - - type: Transform - pos: 24.5,31.5 - parent: 588 - - uid: 986 - components: - - type: Transform - pos: 24.5,32.5 - parent: 588 - - uid: 987 - components: - - type: Transform - pos: 25.5,31.5 - parent: 588 - - uid: 989 - components: - - type: Transform - pos: 18.5,32.5 - parent: 588 - - uid: 990 - components: - - type: Transform - pos: 19.5,32.5 - parent: 588 - - uid: 991 - components: - - type: Transform - pos: 20.5,32.5 - parent: 588 - - uid: 992 - components: - - type: Transform - pos: 21.5,32.5 - parent: 588 - - uid: 993 - components: - - type: Transform - pos: 22.5,32.5 - parent: 588 - - uid: 1003 - components: - - type: Transform - pos: 16.5,30.5 - parent: 588 - - uid: 1004 - components: - - type: Transform - pos: 24.5,30.5 - parent: 588 - - uid: 1510 - components: - - type: Transform - pos: 18.5,44.5 - parent: 588 - - uid: 1511 - components: - - type: Transform - pos: 18.5,45.5 - parent: 588 - - uid: 1512 - components: - - type: Transform - pos: 20.5,45.5 - parent: 588 - - uid: 1513 - components: - - type: Transform - pos: 20.5,44.5 - parent: 588 - - uid: 1514 - components: - - type: Transform - pos: 19.5,44.5 - parent: 588 - - uid: 1522 - components: - - type: Transform - pos: 17.5,46.5 - parent: 588 - - uid: 1523 - components: - - type: Transform - pos: 21.5,46.5 - parent: 588 - - uid: 1524 - components: - - type: Transform - pos: 20.5,46.5 - parent: 588 - - uid: 1525 - components: - - type: Transform - pos: 18.5,46.5 - parent: 588 - - uid: 1526 - components: - - type: Transform - pos: 19.5,46.5 - parent: 588 -- proto: CableMV - entities: - - uid: 490 - components: - - type: Transform - pos: 27.5,13.5 - parent: 588 - - uid: 491 - components: - - type: Transform - pos: 26.5,13.5 - parent: 588 - - uid: 492 - components: - - type: Transform - pos: 25.5,13.5 - parent: 588 - - uid: 775 - components: - - type: Transform - pos: 27.5,19.5 - parent: 588 - - uid: 776 - components: - - type: Transform - pos: 26.5,19.5 - parent: 588 - - uid: 777 - components: - - type: Transform - pos: 25.5,19.5 - parent: 588 - - uid: 1527 - components: - - type: Transform - pos: 19.5,46.5 - parent: 588 - - uid: 1528 - components: - - type: Transform - pos: 19.5,47.5 - parent: 588 -- proto: CableTerminal - entities: - - uid: 463 - components: - - type: Transform - pos: 26.5,14.5 - parent: 588 - - uid: 464 - components: - - type: Transform - pos: 27.5,14.5 - parent: 588 - - uid: 465 - components: - - type: Transform - pos: 28.5,14.5 - parent: 588 - - uid: 767 - components: - - type: Transform - pos: 26.5,20.5 - parent: 588 - - uid: 970 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,31.5 - parent: 588 - - uid: 976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,31.5 - parent: 588 - - uid: 1558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,45.5 - parent: 588 - - uid: 1559 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,45.5 - parent: 588 -- proto: Carpet - entities: - - uid: 1632 - components: - - type: Transform - pos: 24.5,0.5 - parent: 588 - - uid: 1633 - components: - - type: Transform - pos: 25.5,0.5 - parent: 588 - - uid: 1634 - components: - - type: Transform - pos: 25.5,1.5 - parent: 588 - - uid: 1635 - components: - - type: Transform - pos: 24.5,1.5 - parent: 588 -- proto: CarpetBlue - entities: - - uid: 1636 - components: - - type: Transform - pos: 27.5,0.5 - parent: 588 - - uid: 1637 - components: - - type: Transform - pos: 28.5,1.5 - parent: 588 - - uid: 1638 - components: - - type: Transform - pos: 27.5,1.5 - parent: 588 - - uid: 1639 - components: - - type: Transform - pos: 28.5,0.5 - parent: 588 -- proto: CarpetPurple - entities: - - uid: 1626 - components: - - type: Transform - pos: 25.5,4.5 - parent: 588 - - uid: 1627 - components: - - type: Transform - pos: 25.5,3.5 - parent: 588 - - uid: 1628 - components: - - type: Transform - pos: 26.5,3.5 - parent: 588 - - uid: 1629 - components: - - type: Transform - pos: 27.5,3.5 - parent: 588 - - uid: 1630 - components: - - type: Transform - pos: 27.5,4.5 - parent: 588 - - uid: 1631 - components: - - type: Transform - pos: 26.5,4.5 - parent: 588 -- proto: Catwalk - entities: - - uid: 141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,24.5 - parent: 588 - - uid: 142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,26.5 - parent: 588 - - uid: 143 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,25.5 - parent: 588 - - uid: 248 - components: - - type: Transform - pos: 8.5,4.5 - parent: 588 - - uid: 249 - components: - - type: Transform - pos: 8.5,2.5 - parent: 588 - - uid: 250 - components: - - type: Transform - pos: 8.5,3.5 - parent: 588 - - uid: 251 - components: - - type: Transform - pos: 8.5,1.5 - parent: 588 - - uid: 471 - components: - - type: Transform - pos: 27.5,14.5 - parent: 588 - - uid: 473 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,12.5 - parent: 588 - - uid: 474 - components: - - type: Transform - pos: 28.5,14.5 - parent: 588 - - uid: 475 - components: - - type: Transform - pos: 26.5,14.5 - parent: 588 - - uid: 512 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,12.5 - parent: 588 - - uid: 513 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,12.5 - parent: 588 - - uid: 515 - components: - - type: Transform - pos: 25.5,16.5 - parent: 588 - - uid: 516 - components: - - type: Transform - pos: 26.5,16.5 - parent: 588 - - uid: 517 - components: - - type: Transform - pos: 27.5,16.5 - parent: 588 - - uid: 518 - components: - - type: Transform - pos: 28.5,16.5 - parent: 588 - - uid: 519 - components: - - type: Transform - pos: 29.5,16.5 - parent: 588 - - uid: 520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,12.5 - parent: 588 - - uid: 521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,12.5 - parent: 588 - - uid: 769 - components: - - type: Transform - pos: 26.5,20.5 - parent: 588 - - uid: 832 - components: - - type: Transform - pos: 3.5,31.5 - parent: 588 - - uid: 833 - components: - - type: Transform - pos: 4.5,31.5 - parent: 588 - - uid: 834 - components: - - type: Transform - pos: 5.5,31.5 - parent: 588 - - uid: 835 - components: - - type: Transform - pos: 6.5,31.5 - parent: 588 - - uid: 836 - components: - - type: Transform - pos: 7.5,31.5 - parent: 588 - - uid: 837 - components: - - type: Transform - pos: 8.5,31.5 - parent: 588 - - uid: 838 - components: - - type: Transform - pos: 9.5,31.5 - parent: 588 - - uid: 839 - components: - - type: Transform - pos: 6.5,32.5 - parent: 588 - - uid: 840 - components: - - type: Transform - pos: 6.5,30.5 - parent: 588 - - uid: 841 - components: - - type: Transform - pos: 5.5,32.5 - parent: 588 - - uid: 842 - components: - - type: Transform - pos: 7.5,32.5 - parent: 588 - - uid: 843 - components: - - type: Transform - pos: 5.5,30.5 - parent: 588 - - uid: 844 - components: - - type: Transform - pos: 7.5,30.5 - parent: 588 - - uid: 861 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,27.5 - parent: 588 - - uid: 862 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,28.5 - parent: 588 - - uid: 863 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,28.5 - parent: 588 - - uid: 864 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,27.5 - parent: 588 - - uid: 865 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,26.5 - parent: 588 - - uid: 879 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,40.5 - parent: 588 - - uid: 880 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,39.5 - parent: 588 - - uid: 881 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,39.5 - parent: 588 - - uid: 882 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,39.5 - parent: 588 - - uid: 883 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,39.5 - parent: 588 - - uid: 884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,39.5 - parent: 588 - - uid: 885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,38.5 - parent: 588 - - uid: 914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,10.5 - parent: 588 - - uid: 915 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,10.5 - parent: 588 - - uid: 916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,10.5 - parent: 588 - - uid: 917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,10.5 - parent: 588 - - uid: 918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,10.5 - parent: 588 - - uid: 919 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,6.5 - parent: 588 - - uid: 920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,6.5 - parent: 588 - - uid: 921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,6.5 - parent: 588 - - uid: 922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,6.5 - parent: 588 - - uid: 923 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,6.5 - parent: 588 - - uid: 955 - components: - - type: Transform - pos: 15.5,31.5 - parent: 588 - - uid: 956 - components: - - type: Transform - pos: 16.5,31.5 - parent: 588 - - uid: 957 - components: - - type: Transform - pos: 17.5,31.5 - parent: 588 - - uid: 958 - components: - - type: Transform - pos: 18.5,31.5 - parent: 588 - - uid: 959 - components: - - type: Transform - pos: 19.5,31.5 - parent: 588 - - uid: 960 - components: - - type: Transform - pos: 20.5,31.5 - parent: 588 - - uid: 961 - components: - - type: Transform - pos: 21.5,31.5 - parent: 588 - - uid: 962 - components: - - type: Transform - pos: 22.5,31.5 - parent: 588 - - uid: 963 - components: - - type: Transform - pos: 23.5,31.5 - parent: 588 - - uid: 964 - components: - - type: Transform - pos: 24.5,31.5 - parent: 588 - - uid: 965 - components: - - type: Transform - pos: 25.5,31.5 - parent: 588 - - uid: 994 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,32.5 - parent: 588 - - uid: 1158 - components: - - type: Transform - pos: 8.5,0.5 - parent: 588 - - uid: 1180 - components: - - type: Transform - pos: 1.5,36.5 - parent: 588 - - uid: 1181 - components: - - type: Transform - pos: 2.5,36.5 - parent: 588 - - uid: 1182 - components: - - type: Transform - pos: 3.5,36.5 - parent: 588 - - uid: 1183 - components: - - type: Transform - pos: 4.5,36.5 - parent: 588 - - uid: 1184 - components: - - type: Transform - pos: 5.5,36.5 - parent: 588 - - uid: 1185 - components: - - type: Transform - pos: 5.5,34.5 - parent: 588 - - uid: 1186 - components: - - type: Transform - pos: 6.5,34.5 - parent: 588 - - uid: 1187 - components: - - type: Transform - pos: 7.5,34.5 - parent: 588 - - uid: 1188 - components: - - type: Transform - pos: 8.5,34.5 - parent: 588 - - uid: 1189 - components: - - type: Transform - pos: 9.5,34.5 - parent: 588 - - uid: 1320 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,40.5 - parent: 588 - - uid: 1321 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,40.5 - parent: 588 - - uid: 1322 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,40.5 - parent: 588 - - uid: 1323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,38.5 - parent: 588 - - uid: 1324 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,38.5 - parent: 588 - - uid: 1325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,38.5 - parent: 588 - - uid: 1326 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,38.5 - parent: 588 - - uid: 1327 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,38.5 - parent: 588 - - uid: 1331 - components: - - type: Transform - pos: 4.5,45.5 - parent: 588 - - uid: 1336 - components: - - type: Transform - pos: 2.5,45.5 - parent: 588 - - uid: 1339 - components: - - type: Transform - pos: 3.5,45.5 - parent: 588 - - uid: 1342 - components: - - type: Transform - pos: 3.5,46.5 - parent: 588 - - uid: 1344 - components: - - type: Transform - pos: 3.5,44.5 - parent: 588 - - uid: 1346 - components: - - type: Transform - pos: 2.5,44.5 - parent: 588 - - uid: 1347 - components: - - type: Transform - pos: 4.5,44.5 - parent: 588 - - uid: 1348 - components: - - type: Transform - pos: 4.5,44.5 - parent: 588 - - uid: 1349 - components: - - type: Transform - pos: 4.5,46.5 - parent: 588 - - uid: 1350 - components: - - type: Transform - pos: 2.5,46.5 - parent: 588 - - uid: 1494 - components: - - type: Transform - pos: 17.5,42.5 - parent: 588 - - uid: 1495 - components: - - type: Transform - pos: 18.5,42.5 - parent: 588 - - uid: 1496 - components: - - type: Transform - pos: 19.5,42.5 - parent: 588 - - uid: 1497 - components: - - type: Transform - pos: 20.5,42.5 - parent: 588 - - uid: 1498 - components: - - type: Transform - pos: 21.5,42.5 - parent: 588 - - uid: 1499 - components: - - type: Transform - pos: 17.5,48.5 - parent: 588 - - uid: 1500 - components: - - type: Transform - pos: 18.5,48.5 - parent: 588 - - uid: 1501 - components: - - type: Transform - pos: 19.5,48.5 - parent: 588 - - uid: 1502 - components: - - type: Transform - pos: 20.5,48.5 - parent: 588 - - uid: 1503 - components: - - type: Transform - pos: 21.5,48.5 - parent: 588 - - uid: 1516 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,44.5 - parent: 588 - - uid: 1517 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,45.5 - parent: 588 - - uid: 1518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,45.5 - parent: 588 - - uid: 1519 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,45.5 - parent: 588 - - uid: 1582 - components: - - type: Transform - pos: 28.5,22.5 - parent: 588 - - uid: 1583 - components: - - type: Transform - pos: 28.5,21.5 - parent: 588 - - uid: 1584 - components: - - type: Transform - pos: 28.5,20.5 - parent: 588 - - uid: 1585 - components: - - type: Transform - pos: 28.5,19.5 - parent: 588 - - uid: 1586 - components: - - type: Transform - pos: 28.5,18.5 - parent: 588 - - uid: 1587 - components: - - type: Transform - pos: 24.5,22.5 - parent: 588 - - uid: 1588 - components: - - type: Transform - pos: 24.5,21.5 - parent: 588 - - uid: 1589 - components: - - type: Transform - pos: 24.5,20.5 - parent: 588 - - uid: 1590 - components: - - type: Transform - pos: 24.5,19.5 - parent: 588 - - uid: 1591 - components: - - type: Transform - pos: 24.5,18.5 - parent: 588 -- proto: Cautery - entities: - - uid: 1474 - components: - - type: Transform - pos: 8.533231,42.775993 - parent: 588 -- proto: Chair - entities: - - uid: 357 - components: - - type: Transform - pos: 23.5,4.5 - parent: 588 - - uid: 421 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,9.5 - parent: 588 - - uid: 422 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,9.5 - parent: 588 - - uid: 423 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,7.5 - parent: 588 - - uid: 533 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,14.5 - parent: 588 - - uid: 534 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,15.5 - parent: 588 - - uid: 537 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,14.5 - parent: 588 - - uid: 569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,13.5 - parent: 588 - - uid: 716 - components: - - type: Transform - pos: 18.5,19.5 - parent: 588 - - uid: 717 - components: - - type: Transform - pos: 19.5,19.5 - parent: 588 - - uid: 718 - components: - - type: Transform - pos: 22.5,19.5 - parent: 588 - - uid: 719 - components: - - type: Transform - pos: 21.5,19.5 - parent: 588 - - uid: 1280 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,38.5 - parent: 588 - - uid: 1281 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,38.5 - parent: 588 - - uid: 1282 - components: - - type: Transform - pos: 20.5,40.5 - parent: 588 - - uid: 1283 - components: - - type: Transform - pos: 21.5,40.5 - parent: 588 - - uid: 1865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,7.5 - parent: 588 -- proto: ChairFolding - entities: - - uid: 344 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,0.5 - parent: 588 - - uid: 345 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,1.5 - parent: 588 - - uid: 346 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,0.5 - parent: 588 - - uid: 347 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,3.5 - parent: 588 - - uid: 348 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,3.5 - parent: 588 - - uid: 349 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,4.5 - parent: 588 - - uid: 350 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,1.5 - parent: 588 - - uid: 351 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,0.5 - parent: 588 - - uid: 352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,4.5 - parent: 588 - - uid: 353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,4.5 - parent: 588 - - uid: 1212 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,36.5 - parent: 588 -- proto: ChairFoldingSpawnFolded - entities: - - uid: 354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.53707,1.6455604 - parent: 588 - - uid: 355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.595894,3.4052575 - parent: 588 -- proto: ChairOfficeDark - entities: - - uid: 330 - components: - - type: Transform - pos: 19.5,1.5 - parent: 588 - - uid: 331 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,3.5 - parent: 588 - - uid: 358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,0.5 - parent: 588 - - uid: 359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,0.5 - parent: 588 - - uid: 360 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,0.5 - parent: 588 - - uid: 361 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,0.5 - parent: 588 - - uid: 571 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,12.5 - parent: 588 -- proto: ChairOfficeLight - entities: - - uid: 631 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,19.5 - parent: 588 - - uid: 638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,21.5 - parent: 588 - - uid: 707 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,21.5 - parent: 588 -- proto: ChairPilotSeat - entities: - - uid: 356 - components: - - type: Transform - pos: 26.5,4.5 - parent: 588 -- proto: ChairWood - entities: - - uid: 1049 - components: - - type: Transform - pos: 20.5,25.5 - parent: 588 - - uid: 1050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,27.5 - parent: 588 - - uid: 1231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,34.5 - parent: 588 - - uid: 1232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,36.5 - parent: 588 - - uid: 1790 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,46.5 - parent: 588 - - uid: 1791 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,44.5 - parent: 588 -- proto: CigarGold - entities: - - uid: 1219 - components: - - type: Transform - pos: 7.4719925,36.539555 - parent: 588 -- proto: ClosetBombFilled - entities: - - uid: 413 - components: - - type: Transform - pos: 14.5,6.5 - parent: 588 - - uid: 1014 - components: - - type: Transform - pos: 12.5,27.5 - parent: 588 - - uid: 1026 - components: - - type: Transform - pos: 16.5,27.5 - parent: 588 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 1203 - components: - - type: Transform - pos: 12.5,30.5 - parent: 588 - - uid: 1204 - components: - - type: Transform - pos: 0.5,32.5 - parent: 588 - - uid: 1205 - components: - - type: Transform - pos: 9.5,9.5 - parent: 588 - - uid: 1207 - components: - - type: Transform - pos: 1.5,7.5 - parent: 588 -- proto: ClosetFireFilled - entities: - - uid: 1194 - components: - - type: Transform - pos: 1.5,9.5 - parent: 588 - - uid: 1195 - components: - - type: Transform - pos: 9.5,7.5 - parent: 588 - - uid: 1196 - components: - - type: Transform - pos: 6.5,40.5 - parent: 588 - - uid: 1197 - components: - - type: Transform - pos: 0.5,38.5 - parent: 588 -- proto: ClosetL3SecurityFilled - entities: - - uid: 415 - components: - - type: Transform - pos: 20.5,10.5 - parent: 588 -- proto: ClosetToolFilled - entities: - - uid: 1007 - components: - - type: Transform - pos: 14.5,30.5 - parent: 588 -- proto: ClosetWallMaintenanceFilledRandom - entities: - - uid: 499 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,15.5 - parent: 588 - - uid: 868 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,27.5 - parent: 588 - - uid: 1564 - components: - - type: Transform - pos: 17.5,43.5 - parent: 588 - - uid: 1565 - components: - - type: Transform - pos: 21.5,43.5 - parent: 588 -- proto: ClothingBeltChampion - entities: - - uid: 1236 - components: - - type: Transform - pos: 10.581136,39.53631 - parent: 588 -- proto: ClothingEyesGlassesMeson - entities: - - uid: 1108 - components: - - type: Transform - pos: 25.666832,30.643515 - parent: 588 -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 1715 - components: - - type: Transform - pos: 10.432637,44.476112 - parent: 588 -- proto: ClothingHeadBandRed - entities: - - uid: 1295 - components: - - type: Transform - pos: 12.571781,39.694115 - parent: 588 -- proto: ClothingHeadHatFedoraBrown - entities: - - uid: 577 - components: - - type: Transform - pos: 12.686508,13.58602 - parent: 588 -- proto: ClothingHeadHatPwig - entities: - - uid: 369 - components: - - type: Transform - pos: 25.824945,3.5783403 - parent: 588 -- proto: ClothingHeadHatSecsoftFlipped - entities: - - uid: 606 - components: - - type: Transform - pos: 12.705482,6.671774 - parent: 588 - - uid: 1027 - components: - - type: Transform - pos: 18.403675,25.53719 - parent: 588 -- proto: ClothingHeadHatSurgcapPurple - entities: - - uid: 1711 - components: - - type: Transform - pos: 10.304593,44.632217 - parent: 588 -- proto: ClothingHeadHelmetRiot - entities: - - uid: 1617 - components: - - type: Transform - pos: 22.499683,6.7142525 - parent: 588 -- proto: ClothingHeadHelmetThunderdome - entities: - - uid: 1240 - components: - - type: Transform - pos: 34.666565,24.66942 - parent: 588 -- proto: ClothingNeckLawyerbadge - entities: - - uid: 326 - components: - - type: Transform - pos: 21.586027,4.583762 - parent: 588 -- proto: ClothingNeckTieDet - entities: - - uid: 573 - components: - - type: Transform - pos: 12.714905,13.486683 - parent: 588 -- proto: ClothingOuterArmorReflective - entities: - - uid: 1031 - components: - - type: Transform - pos: 18.47467,24.458666 - parent: 588 -- proto: ClothingOuterCoatDetective - entities: - - uid: 574 - components: - - type: Transform - pos: 13.396446,12.479115 - parent: 588 -- proto: ClothingOuterRobesJudge - entities: - - uid: 370 - components: - - type: Transform - pos: 27.40101,3.677678 - parent: 588 -- proto: ClothingShoesBootsCombatFilled - entities: - - uid: 1036 - components: - - type: Transform - pos: 12.582174,25.636528 - parent: 588 -- proto: ClothingShoesBootsLaceup - entities: - - uid: 372 - components: - - type: Transform - pos: 18.586912,0.70824456 - parent: 588 -- proto: ClothingUniformJumpskirtColorMaroon - entities: - - uid: 1714 - components: - - type: Transform - pos: 10.673761,44.53288 - parent: 588 -- proto: ClothingUniformJumpsuitColorMaroon - entities: - - uid: 1713 - components: - - type: Transform - pos: 10.645364,44.67479 - parent: 588 -- proto: ClusterBangFull - entities: - - uid: 599 - components: - - type: Transform - pos: 33.484257,28.42918 - parent: 588 -- proto: ComputerAlert - entities: - - uid: 999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,30.5 - parent: 588 - - uid: 1001 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,30.5 - parent: 588 - - uid: 1561 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,46.5 - parent: 588 -- proto: computerBodyScanner - entities: - - uid: 1394 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,44.5 - parent: 588 - - uid: 1423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,44.5 - parent: 588 -- proto: ComputerCriminalRecords - entities: - - uid: 461 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,0.5 - parent: 588 - - uid: 634 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,18.5 - parent: 588 -- proto: ComputerPowerMonitoring - entities: - - uid: 1000 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,30.5 - parent: 588 - - uid: 1002 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,30.5 - parent: 588 - - uid: 1560 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,46.5 - parent: 588 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,21.5 - parent: 588 -- proto: ComputerTelevision - entities: - - uid: 1229 - components: - - type: Transform - pos: 12.5,34.5 - parent: 588 - - uid: 1230 - components: - - type: Transform - pos: 22.5,36.5 - parent: 588 -- proto: CrateEngineeringGear - entities: - - uid: 1008 - components: - - type: Transform - pos: 26.5,30.5 - parent: 588 -- proto: CrateFunBoardGames - entities: - - uid: 1845 - components: - - type: Transform - pos: 26.5,48.5 - parent: 588 -- proto: CrateFunParty - entities: - - uid: 1876 - components: - - type: Transform - pos: 25.5,43.5 - parent: 588 -- proto: CrateHydroponicsSeedsExotic - entities: - - uid: 1660 - components: - - type: Transform - pos: 31.5,22.5 - parent: 588 -- proto: CrayonBox - entities: - - uid: 1057 - components: - - type: Transform - pos: 20.47107,24.608877 - parent: 588 - - uid: 1116 - components: - - type: Transform - pos: 20.607256,14.646415 - parent: 588 -- proto: CryoPod - entities: - - uid: 1395 - components: - - type: Transform - pos: 8.5,47.5 - parent: 588 - - uid: 1397 - components: - - type: Transform - pos: 14.5,47.5 - parent: 588 -- proto: DebugSMES - entities: - - uid: 971 - components: - - type: Transform - pos: 22.5,32.5 - parent: 588 - - uid: 974 - components: - - type: Transform - pos: 18.5,32.5 - parent: 588 -- proto: DeployableBarrier - entities: - - uid: 1233 - components: - - type: Transform - pos: 32.5,24.5 - parent: 588 -- proto: DiceBag - entities: - - uid: 552 - components: - - type: Transform - pos: 20.294882,15.426926 - parent: 588 -- proto: DiseaseDiagnoser - entities: - - uid: 1424 - components: - - type: Transform - pos: 14.5,44.5 - parent: 588 -- proto: DisposalUnit - entities: - - uid: 550 - components: - - type: Transform - pos: 22.5,16.5 - parent: 588 - - uid: 725 - components: - - type: Transform - pos: 21.5,22.5 - parent: 588 - - uid: 766 - components: - - type: Transform - pos: 9.5,22.5 - parent: 588 - - uid: 1288 - components: - - type: Transform - pos: 22.5,38.5 - parent: 588 -- proto: DonkpocketBoxSpawner - entities: - - uid: 526 - components: - - type: Transform - pos: 16.5,13.5 - parent: 588 - - uid: 723 - components: - - type: Transform - pos: 18.5,21.5 - parent: 588 -- proto: DoorElectronics - entities: - - uid: 659 - components: - - type: Transform - pos: 12.581519,21.410114 - parent: 588 - - uid: 1074 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.639427,25.54549 - parent: 588 -- proto: Dresser - entities: - - uid: 1051 - components: - - type: Transform - pos: 22.5,25.5 - parent: 588 - - uid: 1052 - components: - - type: Transform - pos: 20.5,27.5 - parent: 588 - - uid: 1061 - components: - - type: Transform - pos: 24.5,25.5 - parent: 588 - - uid: 1221 - components: - - type: Transform - pos: 21.5,36.5 - parent: 588 - - uid: 1222 - components: - - type: Transform - pos: 13.5,34.5 - parent: 588 -- proto: DrinkDetFlask - entities: - - uid: 1577 - components: - - type: Transform - pos: 12.606661,13.037249 - parent: 588 -- proto: DrinkMugMetal - entities: - - uid: 1294 - components: - - type: Transform - pos: 22.442232,12.514399 - parent: 588 -- proto: DrinkMugRed - entities: - - uid: 721 - components: - - type: Transform - pos: 22.448559,18.561966 - parent: 588 - - uid: 1293 - components: - - type: Transform - pos: 22.328642,12.741456 - parent: 588 -- proto: DrinkShinyFlask - entities: - - uid: 1874 - components: - - type: Transform - pos: 6.890398,22.663696 - parent: 588 -- proto: DrinkShotGlass - entities: - - uid: 578 - components: - - type: Transform - pos: 12.412022,12.535878 - parent: 588 - - uid: 579 - components: - - type: Transform - pos: 12.539811,12.748745 - parent: 588 -- proto: DrinkWaterCup - entities: - - uid: 722 - components: - - type: Transform - pos: 18.373508,18.661304 - parent: 588 - - uid: 762 - components: - - type: Transform - pos: 6.313587,19.590261 - parent: 588 - - uid: 763 - components: - - type: Transform - pos: 6.441377,19.419968 - parent: 588 -- proto: EmergencyLight - entities: - - uid: 1716 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,6.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1717 - components: - - type: Transform - pos: 21.5,10.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1718 - components: - - type: Transform - pos: 30.5,4.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1719 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,0.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1720 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,0.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1721 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,12.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1722 - components: - - type: Transform - pos: 18.5,16.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1723 - components: - - type: Transform - pos: 31.5,22.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1724 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,25.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1726 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,25.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,27.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,27.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,27.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,25.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,7.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1732 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,9.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,20.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1734 - components: - - type: Transform - pos: 1.5,24.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1735 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,30.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1736 - components: - - type: Transform - pos: 11.5,32.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,40.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1738 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,40.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1739 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,30.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1740 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,19.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,21.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,18.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,34.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1746 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,34.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1747 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,38.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,44.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1749 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,44.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1750 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,46.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1751 - components: - - type: Transform - pos: 30.5,6.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1752 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,10.5 - parent: 588 - - type: PointLight - enabled: True - - uid: 1832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,46.5 - parent: 588 - - type: PointLight - enabled: True -- proto: EmergencyRollerBed - entities: - - uid: 1141 - components: - - type: Transform - pos: 30.5,25.5 - parent: 588 - - uid: 1142 - components: - - type: Transform - pos: 30.5,24.5 - parent: 588 -- proto: ExtinguisherCabinetFilled - entities: - - uid: 867 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,26.5 - parent: 588 - - uid: 1198 - components: - - type: Transform - pos: 2.5,8.5 - parent: 588 - - uid: 1199 - components: - - type: Transform - pos: 8.5,8.5 - parent: 588 - - uid: 1200 - components: - - type: Transform - pos: 8.5,35.5 - parent: 588 - - uid: 1201 - components: - - type: Transform - pos: 1.5,35.5 - parent: 588 - - uid: 1202 - components: - - type: Transform - pos: 25.5,14.5 - parent: 588 - - uid: 1328 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,39.5 - parent: 588 - - uid: 1566 - components: - - type: Transform - pos: 17.5,44.5 - parent: 588 -- proto: filingCabinetRandom - entities: - - uid: 320 - components: - - type: Transform - pos: 21.5,0.5 - parent: 588 - - uid: 321 - components: - - type: Transform - pos: 20.5,0.5 - parent: 588 -- proto: filingCabinetTallRandom - entities: - - uid: 1396 - components: - - type: Transform - pos: 8.5,44.5 - parent: 588 -- proto: Flash - entities: - - uid: 1209 - components: - - type: Transform - pos: 10.726851,19.047483 - parent: 588 -- proto: FlashlightSeclite - entities: - - uid: 374 - components: - - type: Transform - pos: 13.377204,0.54605544 - parent: 588 -- proto: FloodlightBroken - entities: - - uid: 1193 - components: - - type: Transform - pos: 9.462372,35.6454 - parent: 588 -- proto: FloorDrain - entities: - - uid: 944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,28.5 - parent: 588 - - type: Fixtures - fixtures: {} - - uid: 945 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,28.5 - parent: 588 - - type: Fixtures - fixtures: {} -- proto: FloorLavaEntity - entities: - - uid: 47 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,8.5 - parent: 588 - - uid: 49 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,8.5 - parent: 588 - - uid: 458 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,10.5 - parent: 588 - - uid: 459 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,8.5 - parent: 588 - - uid: 460 - components: - - type: Transform - pos: 8.5,3.5 - parent: 588 - - uid: 645 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,20.5 - parent: 588 - - uid: 820 - components: - - type: Transform - pos: 4.5,32.5 - parent: 588 - - uid: 821 - components: - - type: Transform - pos: 4.5,31.5 - parent: 588 - - uid: 822 - components: - - type: Transform - pos: 5.5,31.5 - parent: 588 - - uid: 823 - components: - - type: Transform - pos: 5.5,32.5 - parent: 588 - - uid: 824 - components: - - type: Transform - pos: 5.5,30.5 - parent: 588 - - uid: 825 - components: - - type: Transform - pos: 6.5,30.5 - parent: 588 - - uid: 826 - components: - - type: Transform - pos: 7.5,30.5 - parent: 588 - - uid: 827 - components: - - type: Transform - pos: 6.5,32.5 - parent: 588 - - uid: 828 - components: - - type: Transform - pos: 7.5,32.5 - parent: 588 - - uid: 829 - components: - - type: Transform - pos: 7.5,31.5 - parent: 588 - - uid: 830 - components: - - type: Transform - pos: 6.5,31.5 - parent: 588 - - uid: 831 - components: - - type: Transform - pos: 8.5,30.5 - parent: 588 - - uid: 857 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,39.5 - parent: 588 - - uid: 858 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,39.5 - parent: 588 - - uid: 859 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,38.5 - parent: 588 - - uid: 860 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,40.5 - parent: 588 - - uid: 887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,40.5 - parent: 588 - - uid: 889 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,39.5 - parent: 588 - - uid: 906 - components: - - type: Transform - pos: 4.5,7.5 - parent: 588 - - uid: 907 - components: - - type: Transform - pos: 5.5,7.5 - parent: 588 - - uid: 908 - components: - - type: Transform - pos: 5.5,9.5 - parent: 588 - - uid: 909 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,6.5 - parent: 588 - - uid: 910 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,6.5 - parent: 588 - - uid: 911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,9.5 - parent: 588 - - uid: 913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,10.5 - parent: 588 - - uid: 1247 - components: - - type: Transform - pos: 8.5,4.5 - parent: 588 - - uid: 1248 - components: - - type: Transform - pos: 9.5,4.5 - parent: 588 - - uid: 1249 - components: - - type: Transform - pos: 8.5,2.5 - parent: 588 - - uid: 1250 - components: - - type: Transform - pos: 8.5,1.5 - parent: 588 - - uid: 1251 - components: - - type: Transform - pos: 9.5,1.5 - parent: 588 - - uid: 1252 - components: - - type: Transform - pos: 8.5,1.5 - parent: 588 - - uid: 1253 - components: - - type: Transform - pos: 8.5,0.5 - parent: 588 - - uid: 1254 - components: - - type: Transform - pos: 7.5,0.5 - parent: 588 - - uid: 1333 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,46.5 - parent: 588 - - uid: 1341 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,45.5 - parent: 588 - - uid: 1343 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,46.5 - parent: 588 - - uid: 1345 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,46.5 - parent: 588 - - uid: 1359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,47.5 - parent: 588 - - uid: 1360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,46.5 - parent: 588 - - uid: 1361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,47.5 - parent: 588 - - uid: 1362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,47.5 - parent: 588 - - uid: 1363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,44.5 - parent: 588 - - uid: 1364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,47.5 - parent: 588 - - uid: 1365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,44.5 - parent: 588 - - uid: 1366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,45.5 - parent: 588 - - uid: 1367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,44.5 - parent: 588 - - uid: 1368 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,43.5 - parent: 588 - - uid: 1369 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,43.5 - parent: 588 - - uid: 1370 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,42.5 - parent: 588 - - uid: 1371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,42.5 - parent: 588 - - uid: 1372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,43.5 - parent: 588 - - uid: 1373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,44.5 - parent: 588 - - uid: 1374 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,46.5 - parent: 588 - - uid: 1375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,43.5 - parent: 588 -- proto: FoodBowlBigTrash - entities: - - uid: 1840 - components: - - type: Transform - pos: 30.547388,48.16116 - parent: 588 -- proto: FoodBurgerMime - entities: - - uid: 399 - components: - - type: Transform - pos: 10.958169,39.64943 - parent: 588 -- proto: FoodPlateSmallPlastic - entities: - - uid: 529 - components: - - type: Transform - pos: 17.462528,12.615073 - parent: 588 -- proto: FoodPlateTrash - entities: - - uid: 1692 - components: - - type: Transform - pos: 28.80027,47.44947 - parent: 588 -- proto: ForensicPad - entities: - - uid: 761 - components: - - type: Transform - pos: 7.562898,22.48225 - parent: 588 -- proto: ForkPlastic - entities: - - uid: 531 - components: - - type: Transform - pos: 17.405733,12.600882 - parent: 588 -- proto: GasFilter - entities: - - uid: 1415 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,47.5 - parent: 588 -- proto: GasPipeBend - entities: - - uid: 1412 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,46.5 - parent: 588 - - uid: 1414 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,46.5 - parent: 588 - - uid: 1416 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,47.5 - parent: 588 - - uid: 1421 - components: - - type: Transform - pos: 13.5,47.5 - parent: 588 -- proto: GasPipeStraight - entities: - - uid: 1418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,47.5 - parent: 588 - - uid: 1420 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,46.5 - parent: 588 -- proto: GasPipeTJunction - entities: - - uid: 1410 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,46.5 - parent: 588 - - uid: 1411 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,46.5 - parent: 588 - - uid: 1417 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,46.5 - parent: 588 - - uid: 1419 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,46.5 - parent: 588 -- proto: GasPort - entities: - - uid: 1404 - components: - - type: Transform - pos: 9.5,48.5 - parent: 588 - - uid: 1422 - components: - - type: Transform - pos: 12.5,48.5 - parent: 588 -- proto: GasPressurePump - entities: - - uid: 1409 - components: - - type: Transform - pos: 9.5,47.5 - parent: 588 -- proto: GasThermoMachineFreezer - entities: - - uid: 1403 - components: - - type: Transform - pos: 10.5,48.5 - parent: 588 -- proto: GatfruitSeeds - entities: - - uid: 562 - components: - - type: Transform - pos: 8.528373,27.49547 - parent: 588 -- proto: Gauze - entities: - - uid: 1482 - components: - - type: Transform - pos: 8.452288,42.514927 - parent: 588 -- proto: GeneratorRTG - entities: - - uid: 742 - components: - - type: Transform - pos: 27.5,21.5 - parent: 588 - - uid: 748 - components: - - type: Transform - pos: 25.5,21.5 - parent: 588 -- proto: Girder - entities: - - uid: 1301 - components: - - type: Transform - pos: 26.5,39.5 - parent: 588 -- proto: Grille - entities: - - uid: 209 - components: - - type: Transform - pos: 15.5,34.5 - parent: 588 - - uid: 211 - components: - - type: Transform - pos: 19.5,36.5 - parent: 588 - - uid: 212 - components: - - type: Transform - pos: 19.5,34.5 - parent: 588 - - uid: 213 - components: - - type: Transform - pos: 15.5,36.5 - parent: 588 - - uid: 403 - components: - - type: Transform - pos: 15.5,9.5 - parent: 588 - - uid: 404 - components: - - type: Transform - pos: 15.5,7.5 - parent: 588 - - uid: 407 - components: - - type: Transform - pos: 19.5,9.5 - parent: 588 - - uid: 408 - components: - - type: Transform - pos: 19.5,7.5 - parent: 588 - - uid: 568 - components: - - type: Transform - pos: 12.5,15.5 - parent: 588 - - uid: 584 - components: - - type: Transform - pos: 2.5,12.5 - parent: 588 - - uid: 586 - components: - - type: Transform - pos: 2.5,16.5 - parent: 588 - - uid: 587 - components: - - type: Transform - pos: 4.5,16.5 - parent: 588 - - uid: 589 - components: - - type: Transform - pos: 4.5,12.5 - parent: 588 - - uid: 1465 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,43.5 - parent: 588 - - uid: 1466 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,43.5 - parent: 588 -- proto: GrilleBroken - entities: - - uid: 1302 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,39.5 - parent: 588 -- proto: Handcuffs - entities: - - uid: 1614 - components: - - type: Transform - pos: 22.608034,10.659381 - parent: 588 -- proto: Hemostat - entities: - - uid: 1471 - components: - - type: Transform - pos: 8.51377,43.004257 - parent: 588 -- proto: HighSecArmoryLocked - entities: - - uid: 1597 - components: - - type: Transform - pos: 26.5,7.5 - parent: 588 - - uid: 1598 - components: - - type: Transform - pos: 32.5,7.5 - parent: 588 - - uid: 1599 - components: - - type: Transform - pos: 29.5,9.5 - parent: 588 -- proto: HospitalCurtains - entities: - - uid: 402 - components: - - type: Transform - pos: 8.5,27.5 - parent: 588 - - uid: 949 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,24.5 - parent: 588 - - uid: 951 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,27.5 - parent: 588 - - uid: 1768 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,48.5 - parent: 588 -- proto: HospitalCurtainsOpen - entities: - - uid: 946 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,25.5 - parent: 588 - - uid: 947 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,24.5 - parent: 588 - - uid: 1040 - components: - - type: Transform - pos: 20.5,28.5 - parent: 588 - - uid: 1046 - components: - - type: Transform - pos: 22.5,24.5 - parent: 588 - - uid: 1148 - components: - - type: Transform - pos: 28.5,25.5 - parent: 588 - - uid: 1149 - components: - - type: Transform - pos: 28.5,24.5 - parent: 588 - - uid: 1223 - components: - - type: Transform - pos: 20.5,36.5 - parent: 588 - - uid: 1224 - components: - - type: Transform - pos: 14.5,34.5 - parent: 588 - - uid: 1467 - components: - - type: Transform - pos: 12.5,42.5 - parent: 588 - - uid: 1469 - components: - - type: Transform - pos: 10.5,42.5 - parent: 588 - - uid: 1767 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,42.5 - parent: 588 -- proto: HydroponicsToolHatchet - entities: - - uid: 1844 - components: - - type: Transform - pos: 29.538284,44.04174 - parent: 588 - - uid: 1851 - components: - - type: Transform - pos: 30.630798,21.602604 - parent: 588 -- proto: HydroponicsToolMiniHoe - entities: - - uid: 1837 - components: - - type: Transform - pos: 30.099596,43.446724 - parent: 588 - - uid: 1841 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.38517,20.601 - parent: 588 -- proto: HydroponicsToolSpade - entities: - - uid: 1838 - components: - - type: Transform - pos: 29.95761,43.361576 - parent: 588 - - uid: 1842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.42777,20.58681 - parent: 588 -- proto: hydroponicsTray - entities: - - uid: 796 - components: - - type: Transform - pos: 31.5,21.5 - parent: 588 - - uid: 797 - components: - - type: Transform - pos: 31.5,20.5 - parent: 588 - - uid: 798 - components: - - type: Transform - pos: 31.5,19.5 - parent: 588 - - uid: 1772 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,42.5 - parent: 588 - - uid: 1774 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,44.5 - parent: 588 - - uid: 1787 - components: - - type: Transform - pos: 30.5,44.5 - parent: 588 - - uid: 1788 - components: - - type: Transform - pos: 30.5,42.5 - parent: 588 -- proto: IngotGold - entities: - - uid: 952 - components: - - type: Transform - pos: 11.069347,39.504154 - parent: 588 -- proto: KitchenMicrowave - entities: - - uid: 524 - components: - - type: Transform - pos: 16.5,12.5 - parent: 588 - - uid: 709 - components: - - type: Transform - pos: 18.5,22.5 - parent: 588 - - uid: 1785 - components: - - type: Transform - pos: 29.5,48.5 - parent: 588 -- proto: KitchenReagentGrinder - entities: - - uid: 1786 - components: - - type: Transform - pos: 30.5,47.5 - parent: 588 -- proto: KnifePlastic - entities: - - uid: 530 - components: - - type: Transform - pos: 17.249546,12.643455 - parent: 588 - - uid: 1836 - components: - - type: Transform - pos: 30.241585,48.271698 - parent: 588 -- proto: Lamp - entities: - - uid: 581 - components: - - type: Transform - pos: 12.369425,13.798887 - parent: 588 -- proto: LampGold - entities: - - uid: 322 - components: - - type: Transform - pos: 18.419699,1.6320114 - parent: 588 - - uid: 323 - components: - - type: Transform - pos: 20.563715,4.8959665 - parent: 588 - - uid: 729 - components: - - type: Transform - pos: 6.4779434,22.892899 - parent: 588 - - uid: 730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.765976,19.912766 - parent: 588 -- proto: Lighter - entities: - - uid: 1220 - components: - - type: Transform - pos: 7.5287867,36.397644 - parent: 588 -- proto: LockerDetective - entities: - - uid: 560 - components: - - type: Transform - pos: 14.5,16.5 - parent: 588 -- proto: LockerEvidence - entities: - - uid: 254 - components: - - type: Transform - pos: 16.5,0.5 - parent: 588 - - uid: 262 - components: - - type: Transform - pos: 2.5,0.5 - parent: 588 - - uid: 263 - components: - - type: Transform - pos: 4.5,0.5 - parent: 588 - - uid: 276 - components: - - type: Transform - pos: 0.5,0.5 - parent: 588 - - uid: 286 - components: - - type: Transform - pos: 12.5,0.5 - parent: 588 - - uid: 287 - components: - - type: Transform - pos: 14.5,0.5 - parent: 588 - - uid: 704 - components: - - type: Transform - pos: 16.5,22.5 - parent: 588 -- proto: LockerMedicineFilled - entities: - - uid: 1152 - components: - - type: Transform - pos: 28.5,27.5 - parent: 588 -- proto: LockerSecurityFilled - entities: - - uid: 416 - components: - - type: Transform - pos: 20.5,6.5 - parent: 588 -- proto: LockerSyndicatePersonal - entities: - - uid: 605 - components: - - type: Transform - pos: 6.5,12.5 - parent: 588 -- proto: MachineFrame - entities: - - uid: 400 - components: - - type: Transform - pos: 26.5,8.5 - parent: 588 -- proto: MaintenanceFluffSpawner - entities: - - uid: 414 - components: - - type: Transform - pos: 25.5,32.5 - parent: 588 - - uid: 1289 - components: - - type: Transform - pos: 17.5,38.5 - parent: 588 - - uid: 1290 - components: - - type: Transform - pos: 21.5,40.5 - parent: 588 - - uid: 1291 - components: - - type: Transform - pos: 20.5,40.5 - parent: 588 -- proto: MaintenanceWeaponSpawner - entities: - - uid: 548 - components: - - type: Transform - pos: 15.5,4.5 - parent: 588 - - uid: 549 - components: - - type: Transform - pos: 3.5,4.5 - parent: 588 - - uid: 1580 - components: - - type: Transform - pos: 1.5,8.5 - parent: 588 - - uid: 1581 - components: - - type: Transform - pos: 9.5,8.5 - parent: 588 -- proto: MaterialCloth1 - entities: - - uid: 702 - components: - - type: Transform - pos: 12.462601,18.586084 - parent: 588 - - uid: 1065 - components: - - type: Transform - pos: 24.460928,24.594687 - parent: 588 - - uid: 1066 - components: - - type: Transform - pos: 24.389935,24.296673 - parent: 588 -- proto: MaterialWoodPlank1 - entities: - - uid: 703 - components: - - type: Transform - pos: 12.817572,18.685423 - parent: 588 - - uid: 1064 - components: - - type: Transform - pos: 26.278374,24.608877 - parent: 588 - - uid: 1067 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.801699,24.708214 - parent: 588 - - uid: 1076 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.823982,27.574818 - parent: 588 -- proto: MedicalBed - entities: - - uid: 1146 - components: - - type: Transform - pos: 28.5,24.5 - parent: 588 - - uid: 1147 - components: - - type: Transform - pos: 28.5,25.5 - parent: 588 -- proto: MedkitAdvancedFilled - entities: - - uid: 1153 - components: - - type: Transform - pos: 30.614443,28.392822 - parent: 588 -- proto: MedkitCombatFilled - entities: - - uid: 1154 - components: - - type: Transform - pos: 30.40146,28.066427 - parent: 588 -- proto: OperatingTable - entities: - - uid: 1389 - components: - - type: Transform - pos: 9.5,43.5 - parent: 588 -- proto: Paper - entities: - - uid: 1055 - components: - - type: Transform - pos: 20.428474,24.722406 - parent: 588 - - uid: 1056 - components: - - type: Transform - pos: 20.669853,24.52373 - parent: 588 -- proto: PaperOffice - entities: - - uid: 327 - components: - - type: Transform - pos: 21.415642,4.0728827 - parent: 588 - - uid: 328 - components: - - type: Transform - pos: 21.586027,4.0019264 - parent: 588 - - uid: 1113 - components: - - type: Transform - pos: 20.706646,15.341779 - parent: 588 - - uid: 1114 - components: - - type: Transform - pos: 20.465267,15.185677 - parent: 588 - - uid: 1115 - components: - - type: Transform - pos: 20.30908,14.603841 - parent: 588 -- proto: PartRodMetal1 - entities: - - uid: 1071 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.341253,26.595633 - parent: 588 - - uid: 1072 - components: - - type: Transform - pos: 25.36965,28.11408 - parent: 588 -- proto: Pen - entities: - - uid: 366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.352327,3.9473093 - parent: 588 - - uid: 367 - components: - - type: Transform - pos: 18.75395,1.1232786 - parent: 588 - - uid: 368 - components: - - type: Transform - pos: 24.788435,1.4496742 - parent: 588 - - uid: 731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.36841,19.019064 - parent: 588 - - uid: 732 - components: - - type: Transform - pos: 7.4631767,22.637186 - parent: 588 -- proto: PhoneInstrument - entities: - - uid: 371 - components: - - type: Transform - pos: 25.484175,4.4865713 - parent: 588 -- proto: PillCanister - entities: - - uid: 1481 - components: - - type: Transform - pos: 14.438607,42.637726 - parent: 588 -- proto: PillSpaceDrugs - entities: - - uid: 1479 - components: - - type: Transform - pos: 14.438607,42.96412 - parent: 588 - - uid: 1480 - components: - - type: Transform - pos: 14.537998,42.878975 - parent: 588 -- proto: PlushieNuke - entities: - - uid: 1850 - components: - - type: Transform - pos: 22.519993,28.594225 - parent: 588 -- proto: PortableFlasher - entities: - - uid: 1234 - components: - - type: Transform - pos: 32.5,25.5 - parent: 588 -- proto: PortableGeneratorPacman - entities: - - uid: 967 - components: - - type: Transform - pos: 16.5,32.5 - parent: 588 - - uid: 969 - components: - - type: Transform - pos: 24.5,32.5 - parent: 588 -- proto: PortableGeneratorSuperPacman - entities: - - uid: 50 - components: - - type: Transform - pos: 26.5,15.5 - parent: 588 - - uid: 55 - components: - - type: Transform - pos: 28.5,15.5 - parent: 588 - - uid: 1504 - components: - - type: Transform - pos: 18.5,44.5 - parent: 588 - - uid: 1505 - components: - - type: Transform - pos: 20.5,44.5 - parent: 588 -- proto: PortableScrubber - entities: - - uid: 1101 - components: - - type: Transform - pos: 18.5,30.5 - parent: 588 -- proto: PosterContrabandBountyHunters - entities: - - uid: 1578 - components: - - type: Transform - pos: 13.5,15.5 - parent: 588 -- proto: PosterLegitDickGumshue - entities: - - uid: 1576 - components: - - type: Transform - pos: 9.5,15.5 - parent: 588 -- proto: PosterLegitEnlist - entities: - - uid: 1800 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,9.5 - parent: 588 -- proto: PosterLegitNanotrasenLogo - entities: - - uid: 1802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,48.5 - parent: 588 - - uid: 1803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,21.5 - parent: 588 -- proto: PosterLegitObey - entities: - - uid: 1801 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,42.5 - parent: 588 -- proto: PosterLegitSecWatch - entities: - - uid: 1799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,7.5 - parent: 588 -- proto: PosterLegitSpaceCops - entities: - - uid: 1804 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,19.5 - parent: 588 -- proto: PottedPlantRandom - entities: - - uid: 1286 - components: - - type: Transform - pos: 16.5,38.5 - parent: 588 - - uid: 1287 - components: - - type: Transform - pos: 22.5,40.5 - parent: 588 -- proto: PowerCellHyper - entities: - - uid: 469 - components: - - type: Transform - pos: 12.355853,25.41643 - parent: 588 - - uid: 590 - components: - - type: Transform - pos: 5.381793,16.642464 - parent: 588 -- proto: PowerCellRecharger - entities: - - uid: 1103 - components: - - type: Transform - pos: 15.5,30.5 - parent: 588 - - uid: 1568 - components: - - type: Transform - pos: 21.5,47.5 - parent: 588 -- proto: Poweredlight - entities: - - uid: 1641 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,0.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1642 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,0.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1646 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,0.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1647 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,0.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1648 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,6.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1649 - components: - - type: Transform - pos: 13.5,10.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,6.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1651 - components: - - type: Transform - pos: 18.5,10.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1693 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,25.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1701 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,12.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1702 - components: - - type: Transform - pos: 20.5,16.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,20.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,25.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1705 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,27.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1706 - components: - - type: Transform - pos: 18.5,40.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1741 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,21.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1743 - components: - - type: Transform - pos: 21.5,22.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,43.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1831 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,47.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: PoweredlightLED - entities: - - uid: 1707 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,42.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1708 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,42.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1709 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,46.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1710 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,46.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1725 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,27.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: PoweredSmallLight - entities: - - uid: 470 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,14.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 940 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,28.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,28.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 953 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,25.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,10.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1604 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,10.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1605 - components: - - type: Transform - pos: 29.5,6.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1606 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,8.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1607 - components: - - type: Transform - pos: 32.5,8.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1608 - components: - - type: Transform - pos: 26.5,8.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,1.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1644 - components: - - type: Transform - pos: 20.5,4.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1645 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,0.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,8.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,8.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1654 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,8.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,8.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1656 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,14.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1657 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,14.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1659 - components: - - type: Transform - pos: 3.5,18.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1661 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,22.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1662 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,27.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,25.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1664 - components: - - type: Transform - pos: 0.5,28.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1665 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,24.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1666 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,30.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,30.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1668 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,36.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1669 - components: - - type: Transform - pos: 8.5,34.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,38.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1671 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,38.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,43.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,43.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1674 - components: - - type: Transform - pos: 2.5,47.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1675 - components: - - type: Transform - pos: 4.5,47.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1676 - components: - - type: Transform - pos: 9.5,40.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1677 - components: - - type: Transform - pos: 13.5,40.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1678 - components: - - type: Transform - pos: 13.5,36.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,34.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,35.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,35.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1682 - components: - - type: Transform - pos: 25.5,36.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1683 - components: - - type: Transform - pos: 28.5,38.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1684 - components: - - type: Transform - pos: 19.5,46.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,47.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,47.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1687 - components: - - type: Transform - pos: 23.5,32.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1688 - components: - - type: Transform - pos: 17.5,32.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,27.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1690 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,25.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1694 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,19.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,19.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1696 - components: - - type: Transform - pos: 13.5,22.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,18.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1698 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,18.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,16.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1700 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,13.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1828 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,42.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1829 - components: - - type: Transform - pos: 25.5,48.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: PoweredSmallLightEmpty - entities: - - uid: 1640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,25.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1658 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,27.5 - parent: 588 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: Rack - entities: - - uid: 255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,0.5 - parent: 588 - - uid: 264 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,0.5 - parent: 588 - - uid: 283 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,0.5 - parent: 588 - - uid: 285 - components: - - type: Transform - pos: 13.5,0.5 - parent: 588 - - uid: 324 - components: - - type: Transform - pos: 19.5,4.5 - parent: 588 - - uid: 396 - components: - - type: Transform - pos: 28.5,8.5 - parent: 588 - - uid: 401 - components: - - type: Transform - pos: 32.5,8.5 - parent: 588 - - uid: 417 - components: - - type: Transform - pos: 12.5,6.5 - parent: 588 - - uid: 418 - components: - - type: Transform - pos: 12.5,10.5 - parent: 588 - - uid: 419 - components: - - type: Transform - pos: 22.5,10.5 - parent: 588 - - uid: 420 - components: - - type: Transform - pos: 22.5,6.5 - parent: 588 - - uid: 478 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,15.5 - parent: 588 - - uid: 551 - components: - - type: Transform - pos: 22.5,15.5 - parent: 588 - - uid: 585 - components: - - type: Transform - pos: 1.5,12.5 - parent: 588 - - uid: 596 - components: - - type: Transform - pos: 1.5,16.5 - parent: 588 - - uid: 597 - components: - - type: Transform - pos: 5.5,16.5 - parent: 588 - - uid: 598 - components: - - type: Transform - pos: 5.5,12.5 - parent: 588 - - uid: 966 - components: - - type: Transform - pos: 25.5,32.5 - parent: 588 - - uid: 977 - components: - - type: Transform - pos: 15.5,32.5 - parent: 588 - - uid: 1015 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,25.5 - parent: 588 - - uid: 1016 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,24.5 - parent: 588 - - uid: 1021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,25.5 - parent: 588 - - uid: 1024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,24.5 - parent: 588 - - uid: 1111 - components: - - type: Transform - pos: 14.5,32.5 - parent: 588 - - uid: 1112 - components: - - type: Transform - pos: 26.5,32.5 - parent: 588 - - uid: 1206 - components: - - type: Transform - pos: 1.5,8.5 - parent: 588 - - uid: 1208 - components: - - type: Transform - pos: 9.5,8.5 - parent: 588 - - uid: 1211 - components: - - type: Transform - pos: 2.5,34.5 - parent: 588 - - uid: 1319 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,40.5 - parent: 588 - - uid: 1562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,47.5 - parent: 588 - - uid: 1858 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,21.5 - parent: 588 -- proto: Railing - entities: - - uid: 313 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,4.5 - parent: 588 - - uid: 314 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,0.5 - parent: 588 - - uid: 427 - components: - - type: Transform - pos: 6.5,7.5 - parent: 588 - - uid: 428 - components: - - type: Transform - pos: 4.5,7.5 - parent: 588 - - uid: 429 - components: - - type: Transform - pos: 3.5,7.5 - parent: 588 - - uid: 430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,9.5 - parent: 588 - - uid: 431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,9.5 - parent: 588 - - uid: 435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,9.5 - parent: 588 - - uid: 436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,9.5 - parent: 588 - - uid: 437 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,9.5 - parent: 588 - - uid: 439 - components: - - type: Transform - pos: 5.5,7.5 - parent: 588 - - uid: 440 - components: - - type: Transform - pos: 7.5,7.5 - parent: 588 - - uid: 770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,21.5 - parent: 588 - - uid: 850 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,30.5 - parent: 588 - - uid: 851 - components: - - type: Transform - pos: 9.5,32.5 - parent: 588 - - uid: 854 - components: - - type: Transform - pos: 3.5,32.5 - parent: 588 - - uid: 855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,30.5 - parent: 588 - - uid: 1259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,4.5 - parent: 588 - - uid: 1260 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,4.5 - parent: 588 - - uid: 1261 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,0.5 - parent: 588 - - uid: 1262 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,0.5 - parent: 588 -- proto: RailingCorner - entities: - - uid: 315 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,1.5 - parent: 588 - - uid: 316 - components: - - type: Transform - pos: 30.5,3.5 - parent: 588 - - uid: 771 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,21.5 - parent: 588 - - uid: 772 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,21.5 - parent: 588 - - uid: 845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,32.5 - parent: 588 - - uid: 846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,30.5 - parent: 588 - - uid: 847 - components: - - type: Transform - pos: 10.5,32.5 - parent: 588 - - uid: 848 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,30.5 - parent: 588 - - uid: 849 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,30.5 - parent: 588 - - uid: 852 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,32.5 - parent: 588 - - uid: 853 - components: - - type: Transform - pos: 4.5,32.5 - parent: 588 - - uid: 856 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,30.5 - parent: 588 - - uid: 886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,40.5 - parent: 588 - - uid: 888 - components: - - type: Transform - pos: 2.5,40.5 - parent: 588 - - uid: 890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,40.5 - parent: 588 - - uid: 891 - components: - - type: Transform - pos: 5.5,40.5 - parent: 588 - - uid: 892 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,38.5 - parent: 588 - - uid: 893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,38.5 - parent: 588 - - uid: 894 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,38.5 - parent: 588 - - uid: 895 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,38.5 - parent: 588 - - uid: 1255 - components: - - type: Transform - pos: 7.5,3.5 - parent: 588 - - uid: 1256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,3.5 - parent: 588 - - uid: 1257 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,1.5 - parent: 588 - - uid: 1258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,1.5 - parent: 588 - - uid: 1351 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,44.5 - parent: 588 - - uid: 1352 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,43.5 - parent: 588 - - uid: 1353 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,43.5 - parent: 588 - - uid: 1354 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,44.5 - parent: 588 - - uid: 1355 - components: - - type: Transform - pos: 1.5,46.5 - parent: 588 - - uid: 1356 - components: - - type: Transform - pos: 2.5,47.5 - parent: 588 - - uid: 1357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,47.5 - parent: 588 - - uid: 1358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,46.5 - parent: 588 -- proto: RailingCornerSmall - entities: - - uid: 337 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,3.5 - parent: 588 - - uid: 338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,1.5 - parent: 588 - - uid: 1376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,43.5 - parent: 588 - - uid: 1377 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,47.5 - parent: 588 - - uid: 1378 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,47.5 - parent: 588 - - uid: 1379 - components: - - type: Transform - pos: 5.5,43.5 - parent: 588 -- proto: RandomDrinkBottle - entities: - - uid: 580 - components: - - type: Transform - pos: 12.5,12.5 - parent: 588 -- proto: RandomFoodSingle - entities: - - uid: 764 - components: - - type: Transform - pos: 6.5,19.5 - parent: 588 -- proto: RandomInstruments - entities: - - uid: 546 - components: - - type: Transform - pos: 1.5,4.5 - parent: 588 - - uid: 1159 - components: - - type: Transform - pos: 21.5,18.5 - parent: 588 - - uid: 1833 - components: - - type: Transform - pos: 24.5,42.5 - parent: 588 -- proto: RandomPosterContraband - entities: - - uid: 1571 - components: - - type: Transform - pos: 25.5,39.5 - parent: 588 - - uid: 1572 - components: - - type: Transform - pos: 3.5,35.5 - parent: 588 - - uid: 1573 - components: - - type: Transform - pos: 7.5,35.5 - parent: 588 - - uid: 1574 - components: - - type: Transform - pos: 5.5,25.5 - parent: 588 - - uid: 1575 - components: - - type: Transform - pos: 30.5,15.5 - parent: 588 - - uid: 1805 - components: - - type: Transform - pos: 18.5,43.5 - parent: 588 - - uid: 1806 - components: - - type: Transform - pos: 20.5,47.5 - parent: 588 -- proto: RandomSoap - entities: - - uid: 397 - components: - - type: Transform - pos: 8.5,24.5 - parent: 588 -- proto: RandomVending - entities: - - uid: 539 - components: - - type: Transform - pos: 17.5,16.5 - parent: 588 -- proto: ReinforcedWindow - entities: - - uid: 214 - components: - - type: Transform - pos: 19.5,34.5 - parent: 588 - - uid: 409 - components: - - type: Transform - pos: 15.5,7.5 - parent: 588 - - uid: 410 - components: - - type: Transform - pos: 15.5,9.5 - parent: 588 - - uid: 411 - components: - - type: Transform - pos: 19.5,7.5 - parent: 588 - - uid: 412 - components: - - type: Transform - pos: 19.5,9.5 - parent: 588 - - uid: 591 - components: - - type: Transform - pos: 2.5,12.5 - parent: 588 - - uid: 592 - components: - - type: Transform - pos: 4.5,12.5 - parent: 588 - - uid: 594 - components: - - type: Transform - pos: 4.5,16.5 - parent: 588 - - uid: 595 - components: - - type: Transform - pos: 2.5,16.5 - parent: 588 - - uid: 1166 - components: - - type: Transform - pos: 19.5,36.5 - parent: 588 - - uid: 1168 - components: - - type: Transform - pos: 15.5,36.5 - parent: 588 - - uid: 1169 - components: - - type: Transform - pos: 15.5,34.5 - parent: 588 -- proto: RemoteSignaller - entities: - - uid: 593 - components: - - type: Transform - pos: 34.361877,24.623777 - parent: 588 - - type: DeviceLinkSource - linkedPorts: - 1238: - - Pressed: Toggle - 1239: - - Pressed: Toggle - 1237: - - Pressed: Toggle - - uid: 1104 - components: - - type: Transform - pos: 25.24476,30.698978 - parent: 588 - - uid: 1105 - components: - - type: Transform - pos: 25.443544,30.613832 - parent: 588 - - uid: 1106 - components: - - type: Transform - pos: 5.677143,16.762346 - parent: 588 -- proto: RiotLaserShield - entities: - - uid: 1618 - components: - - type: Transform - pos: 12.616156,10.534842 - parent: 588 -- proto: RiotShield - entities: - - uid: 600 - components: - - type: Transform - pos: 1.3209407,16.656654 - parent: 588 - - uid: 601 - components: - - type: Transform - pos: 1.5481212,16.543125 - parent: 588 -- proto: SalvageCanisterSpawner - entities: - - uid: 998 - components: - - type: Transform - pos: 22.5,30.5 - parent: 588 - - uid: 1009 - components: - - type: Transform - pos: 19.5,30.5 - parent: 588 - - uid: 1025 - components: - - type: Transform - pos: 21.5,30.5 - parent: 588 - - uid: 1190 - components: - - type: Transform - pos: 9.5,36.5 - parent: 588 - - uid: 1210 - components: - - type: Transform - pos: 9.5,48.5 - parent: 588 - - uid: 1413 - components: - - type: Transform - pos: 13.5,48.5 - parent: 588 - - uid: 1470 - components: - - type: Transform - pos: 12.5,48.5 - parent: 588 -- proto: SawAdvanced - entities: - - uid: 1468 - components: - - type: Transform - pos: 8.527969,43.529327 - parent: 588 -- proto: ScalpelLaser - entities: - - uid: 1472 - components: - - type: Transform - pos: 8.485372,43.131977 - parent: 588 -- proto: ScalpelShiv - entities: - - uid: 708 - components: - - type: Transform - pos: 16.074419,18.727995 - parent: 588 - - uid: 1592 - components: - - type: Transform - pos: 10.50393,24.491432 - parent: 588 -- proto: SeedExtractor - entities: - - uid: 802 - components: - - type: Transform - pos: 33.5,21.5 - parent: 588 - - uid: 1776 - components: - - type: Transform - pos: 28.5,42.5 - parent: 588 -- proto: SheetGlass - entities: - - uid: 649 - components: - - type: Transform - pos: 14.3137455,32.471424 - parent: 588 -- proto: SheetPlasteel - entities: - - uid: 866 - components: - - type: Transform - pos: 2.412651,34.456436 - parent: 588 -- proto: SheetPlastic - entities: - - uid: 398 - components: - - type: Transform - pos: 20.04785,45.07574 - parent: 588 -- proto: SheetSteel - entities: - - uid: 656 - components: - - type: Transform - pos: 26.36062,32.5183 - parent: 588 - - uid: 699 - components: - - type: Transform - pos: 29.259031,40.432583 - parent: 588 -- proto: ShowcaseRobot - entities: - - uid: 1621 - components: - - type: Transform - pos: 16.5,10.5 - parent: 588 - - uid: 1622 - components: - - type: Transform - pos: 18.5,6.5 - parent: 588 -- proto: ShuttersNormal - entities: - - uid: 1237 - components: - - type: Transform - pos: 34.5,27.5 - parent: 588 - - type: DeviceLinkSink - links: - - 593 - - uid: 1238 - components: - - type: Transform - pos: 32.5,27.5 - parent: 588 - - type: DeviceLinkSink - links: - - 593 -- proto: ShuttersWindow - entities: - - uid: 1239 - components: - - type: Transform - pos: 33.5,27.5 - parent: 588 - - type: DeviceLinkSink - links: - - 593 -- proto: SignCloning - entities: - - uid: 1484 - components: - - type: Transform - pos: 12.5,43.5 - parent: 588 -- proto: SignPrison - entities: - - uid: 1792 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,3.5 - parent: 588 - - uid: 1793 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,1.5 - parent: 588 - - uid: 1794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,21.5 - parent: 588 - - uid: 1795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,19.5 - parent: 588 - - uid: 1796 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,46.5 - parent: 588 - - uid: 1797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,44.5 - parent: 588 -- proto: SignSecurity - entities: - - uid: 1798 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,1.5 - parent: 588 -- proto: SignSurgery - entities: - - uid: 1483 - components: - - type: Transform - pos: 10.5,43.5 - parent: 588 -- proto: Sink - entities: - - uid: 935 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,25.5 - parent: 588 -- proto: SinkStemlessWater - entities: - - uid: 1461 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,42.5 - parent: 588 - - uid: 1462 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,42.5 - parent: 588 -- proto: SMESBasic - entities: - - uid: 46 - components: - - type: Transform - pos: 26.5,13.5 - parent: 588 - - uid: 56 - components: - - type: Transform - pos: 28.5,13.5 - parent: 588 - - uid: 747 - components: - - type: Transform - pos: 26.5,19.5 - parent: 588 - - uid: 1506 - components: - - type: Transform - pos: 18.5,46.5 - parent: 588 - - uid: 1507 - components: - - type: Transform - pos: 20.5,46.5 - parent: 588 -- proto: SoapSyndie - entities: - - uid: 1856 - components: - - type: Transform - pos: 10.4890785,27.46785 - parent: 588 -- proto: SpaceCash100 - entities: - - uid: 1243 - components: - - type: Transform - pos: 11.887424,39.621456 - parent: 588 - - uid: 1244 - components: - - type: Transform - pos: 11.759636,39.479546 - parent: 588 - - uid: 1296 - components: - - type: Transform - pos: 12.100407,39.465355 - parent: 588 - - uid: 1297 - components: - - type: Transform - pos: 12.100407,39.80594 - parent: 588 - - uid: 1298 - components: - - type: Transform - pos: 11.688642,39.720795 - parent: 588 - - uid: 1299 - components: - - type: Transform - pos: 11.4330635,39.57888 - parent: 588 -- proto: Spear - entities: - - uid: 1834 - components: - - type: Transform - pos: 24.466219,48.441994 - parent: 588 -- proto: SpeedLoaderMagnum - entities: - - uid: 950 - components: - - type: Transform - pos: 28.703945,8.421182 - parent: 588 -- proto: StasisBed - entities: - - uid: 1425 - components: - - type: Transform - pos: 13.5,43.5 - parent: 588 -- proto: StimkitFilled - entities: - - uid: 561 - components: - - type: Transform - pos: 30.39083,27.514402 - parent: 588 -- proto: StimpackMini - entities: - - uid: 1879 - components: - - type: Transform - pos: 24.467485,46.702366 - parent: 588 -- proto: Stool - entities: - - uid: 1017 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,25.5 - parent: 588 - - uid: 1018 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,24.5 - parent: 588 - - uid: 1019 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,28.5 - parent: 588 - - uid: 1020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,28.5 - parent: 588 - - uid: 1593 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,13.5 - parent: 588 - - uid: 1594 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,15.5 - parent: 588 - - uid: 1595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,15.5 - parent: 588 - - uid: 1596 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,13.5 - parent: 588 -- proto: SubstationBasic - entities: - - uid: 467 - components: - - type: Transform - pos: 27.5,13.5 - parent: 588 - - uid: 1508 - components: - - type: Transform - pos: 19.5,46.5 - parent: 588 -- proto: SubstationWallBasic - entities: - - uid: 774 - components: - - type: Transform - pos: 27.5,19.5 - parent: 588 - - uid: 972 - components: - - type: Transform - pos: 19.5,32.5 - parent: 588 -- proto: SyringeEphedrine - entities: - - uid: 1475 - components: - - type: Transform - pos: 14.472328,42.917698 - parent: 588 -- proto: Table - entities: - - uid: 525 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,13.5 - parent: 588 - - uid: 527 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,12.5 - parent: 588 - - uid: 528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,12.5 - parent: 588 - - uid: 535 - components: - - type: Transform - pos: 20.5,14.5 - parent: 588 - - uid: 536 - components: - - type: Transform - pos: 20.5,15.5 - parent: 588 - - uid: 630 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,19.5 - parent: 588 - - uid: 632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,19.5 - parent: 588 - - uid: 633 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,18.5 - parent: 588 - - uid: 636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,22.5 - parent: 588 - - uid: 637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,22.5 - parent: 588 - - uid: 710 - components: - - type: Transform - pos: 18.5,22.5 - parent: 588 - - uid: 711 - components: - - type: Transform - pos: 18.5,21.5 - parent: 588 - - uid: 712 - components: - - type: Transform - pos: 21.5,18.5 - parent: 588 - - uid: 713 - components: - - type: Transform - pos: 22.5,18.5 - parent: 588 - - uid: 714 - components: - - type: Transform - pos: 18.5,18.5 - parent: 588 - - uid: 715 - components: - - type: Transform - pos: 19.5,18.5 - parent: 588 - - uid: 799 - components: - - type: Transform - pos: 33.5,20.5 - parent: 588 - - uid: 1118 - components: - - type: Transform - pos: 22.5,12.5 - parent: 588 - - uid: 1778 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,48.5 - parent: 588 - - uid: 1779 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,48.5 - parent: 588 - - uid: 1780 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,47.5 - parent: 588 -- proto: TableFrame - entities: - - uid: 705 - components: - - type: Transform - pos: 15.5,22.5 - parent: 588 - - uid: 1063 - components: - - type: Transform - pos: 26.5,24.5 - parent: 588 -- proto: TableGlass - entities: - - uid: 1144 - components: - - type: Transform - pos: 30.5,27.5 - parent: 588 - - uid: 1145 - components: - - type: Transform - pos: 30.5,28.5 - parent: 588 - - uid: 1390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,43.5 - parent: 588 - - uid: 1391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,42.5 - parent: 588 - - uid: 1398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,44.5 - parent: 588 - - uid: 1405 - components: - - type: Transform - pos: 14.5,42.5 - parent: 588 - - uid: 1406 - components: - - type: Transform - pos: 14.5,43.5 - parent: 588 - - uid: 1407 - components: - - type: Transform - pos: 12.5,44.5 - parent: 588 -- proto: TableReinforced - entities: - - uid: 924 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,36.5 - parent: 588 - - uid: 925 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,35.5 - parent: 588 - - uid: 926 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,34.5 - parent: 588 - - uid: 1005 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,30.5 - parent: 588 - - uid: 1006 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,30.5 - parent: 588 - - uid: 1012 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,28.5 - parent: 588 - - uid: 1023 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,24.5 - parent: 588 - - uid: 1235 - components: - - type: Transform - pos: 34.5,24.5 - parent: 588 - - uid: 1567 - components: - - type: Transform - pos: 21.5,47.5 - parent: 588 -- proto: TableReinforcedGlass - entities: - - uid: 1213 - components: - - type: Transform - pos: 10.5,39.5 - parent: 588 - - uid: 1214 - components: - - type: Transform - pos: 11.5,39.5 - parent: 588 - - uid: 1215 - components: - - type: Transform - pos: 12.5,39.5 - parent: 588 -- proto: TableWood - entities: - - uid: 309 - components: - - type: Transform - pos: 20.5,4.5 - parent: 588 - - uid: 310 - components: - - type: Transform - pos: 21.5,4.5 - parent: 588 - - uid: 311 - components: - - type: Transform - pos: 18.5,0.5 - parent: 588 - - uid: 312 - components: - - type: Transform - pos: 21.5,3.5 - parent: 588 - - uid: 317 - components: - - type: Transform - pos: 18.5,1.5 - parent: 588 - - uid: 318 - components: - - type: Transform - pos: 19.5,0.5 - parent: 588 - - uid: 332 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,3.5 - parent: 588 - - uid: 333 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,3.5 - parent: 588 - - uid: 334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,3.5 - parent: 588 - - uid: 335 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,4.5 - parent: 588 - - uid: 336 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,4.5 - parent: 588 - - uid: 340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,1.5 - parent: 588 - - uid: 341 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,1.5 - parent: 588 - - uid: 342 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,1.5 - parent: 588 - - uid: 343 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,1.5 - parent: 588 - - uid: 563 - components: - - type: Transform - pos: 13.5,13.5 - parent: 588 - - uid: 564 - components: - - type: Transform - pos: 12.5,13.5 - parent: 588 - - uid: 565 - components: - - type: Transform - pos: 12.5,12.5 - parent: 588 - - uid: 1047 - components: - - type: Transform - pos: 22.5,28.5 - parent: 588 - - uid: 1048 - components: - - type: Transform - pos: 20.5,24.5 - parent: 588 - - uid: 1062 - components: - - type: Transform - pos: 26.5,28.5 - parent: 588 - - uid: 1227 - components: - - type: Transform - pos: 12.5,36.5 - parent: 588 - - uid: 1228 - components: - - type: Transform - pos: 22.5,34.5 - parent: 588 - - uid: 1783 - components: - - type: Transform - pos: 24.5,46.5 - parent: 588 - - uid: 1784 - components: - - type: Transform - pos: 24.5,44.5 - parent: 588 -- proto: TargetHuman - entities: - - uid: 1077 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,35.5 - parent: 588 -- proto: TintedWindow - entities: - - uid: 567 - components: - - type: Transform - pos: 12.5,15.5 - parent: 588 - - uid: 1463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,43.5 - parent: 588 - - uid: 1464 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,43.5 - parent: 588 -- proto: ToiletEmpty - entities: - - uid: 932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,24.5 - parent: 588 - - uid: 933 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,24.5 - parent: 588 - - uid: 934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,25.5 - parent: 588 -- proto: UniformScrubsColorPurple - entities: - - uid: 1712 - components: - - type: Transform - pos: 10.503376,44.53288 - parent: 588 -- proto: VendingMachineChefvend - entities: - - uid: 532 - components: - - type: Transform - pos: 18.5,12.5 - parent: 588 -- proto: VendingMachineCigs - entities: - - uid: 720 - components: - - type: Transform - pos: 22.5,22.5 - parent: 588 -- proto: VendingMachineCoffee - entities: - - uid: 765 - components: - - type: Transform - pos: 10.5,22.5 - parent: 588 - - uid: 1285 - components: - - type: Transform - pos: 18.5,40.5 - parent: 588 -- proto: VendingMachineDetDrobe - entities: - - uid: 582 - components: - - type: Transform - pos: 10.5,14.5 - parent: 588 -- proto: VendingMachineDinnerware - entities: - - uid: 1781 - components: - - type: Transform - pos: 30.5,46.5 - parent: 588 -- proto: VendingMachineDonut - entities: - - uid: 538 - components: - - type: Transform - pos: 16.5,16.5 - parent: 588 -- proto: VendingMachineLawDrobe - entities: - - uid: 319 - components: - - type: Transform - pos: 18.5,4.5 - parent: 588 -- proto: VendingMachineMedical - entities: - - uid: 1143 - components: - - type: Transform - pos: 28.5,28.5 - parent: 588 -- proto: VendingMachineSec - entities: - - uid: 1013 - components: - - type: Transform - pos: 14.5,27.5 - parent: 588 -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 800 - components: - - type: Transform - pos: 33.5,19.5 - parent: 588 - - uid: 1775 - components: - - type: Transform - pos: 28.5,44.5 - parent: 588 -- proto: WallmountTelescreen - entities: - - uid: 572 - components: - - type: Transform - pos: 13.5,13.5 - parent: 588 -- proto: WallPlastitaniumIndestructible - entities: - - uid: 377 - components: - - type: Transform - pos: 30.5,7.5 - parent: 588 - - uid: 378 - components: - - type: Transform - pos: 29.5,7.5 - parent: 588 - - uid: 379 - components: - - type: Transform - pos: 25.5,9.5 - parent: 588 - - uid: 380 - components: - - type: Transform - pos: 27.5,9.5 - parent: 588 - - uid: 381 - components: - - type: Transform - pos: 27.5,8.5 - parent: 588 - - uid: 382 - components: - - type: Transform - pos: 28.5,9.5 - parent: 588 - - uid: 383 - components: - - type: Transform - pos: 31.5,9.5 - parent: 588 - - uid: 384 - components: - - type: Transform - pos: 31.5,8.5 - parent: 588 - - uid: 385 - components: - - type: Transform - pos: 31.5,7.5 - parent: 588 - - uid: 386 - components: - - type: Transform - pos: 25.5,8.5 - parent: 588 - - uid: 387 - components: - - type: Transform - pos: 33.5,7.5 - parent: 588 - - uid: 388 - components: - - type: Transform - pos: 25.5,7.5 - parent: 588 - - uid: 389 - components: - - type: Transform - pos: 27.5,7.5 - parent: 588 - - uid: 390 - components: - - type: Transform - pos: 30.5,9.5 - parent: 588 - - uid: 391 - components: - - type: Transform - pos: 28.5,7.5 - parent: 588 - - uid: 392 - components: - - type: Transform - pos: 26.5,9.5 - parent: 588 - - uid: 393 - components: - - type: Transform - pos: 33.5,8.5 - parent: 588 - - uid: 394 - components: - - type: Transform - pos: 33.5,9.5 - parent: 588 - - uid: 395 - components: - - type: Transform - pos: 32.5,9.5 - parent: 588 -- proto: WallReinforced - entities: - - uid: 45 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,8.5 - parent: 588 - - uid: 51 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,8.5 - parent: 588 - - uid: 244 - components: - - type: Transform - pos: 6.5,4.5 - parent: 588 - - uid: 245 - components: - - type: Transform - pos: 6.5,3.5 - parent: 588 - - uid: 246 - components: - - type: Transform - pos: 10.5,4.5 - parent: 588 - - uid: 247 - components: - - type: Transform - pos: 10.5,3.5 - parent: 588 - - uid: 266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 588 - - uid: 267 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,0.5 - parent: 588 - - uid: 268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,1.5 - parent: 588 - - uid: 269 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,0.5 - parent: 588 - - uid: 291 - components: - - type: Transform - pos: 15.5,6.5 - parent: 588 - - uid: 292 - components: - - type: Transform - pos: 19.5,6.5 - parent: 588 - - uid: 405 - components: - - type: Transform - pos: 15.5,10.5 - parent: 588 - - uid: 406 - components: - - type: Transform - pos: 19.5,10.5 - parent: 588 - - uid: 426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,9.5 - parent: 588 - - uid: 432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,7.5 - parent: 588 - - uid: 433 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,9.5 - parent: 588 - - uid: 434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,7.5 - parent: 588 - - uid: 570 - components: - - type: Transform - pos: 0.5,46.5 - parent: 588 - - uid: 621 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,21.5 - parent: 588 - - uid: 622 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,19.5 - parent: 588 - - uid: 623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,21.5 - parent: 588 - - uid: 627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,19.5 - parent: 588 - - uid: 1078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,35.5 - parent: 588 - - uid: 1330 - components: - - type: Transform - pos: 0.5,44.5 - parent: 588 - - uid: 1332 - components: - - type: Transform - pos: 2.5,42.5 - parent: 588 - - uid: 1334 - components: - - type: Transform - pos: 4.5,42.5 - parent: 588 - - uid: 1335 - components: - - type: Transform - pos: 6.5,44.5 - parent: 588 - - uid: 1337 - components: - - type: Transform - pos: 4.5,48.5 - parent: 588 - - uid: 1338 - components: - - type: Transform - pos: 6.5,46.5 - parent: 588 - - uid: 1340 - components: - - type: Transform - pos: 2.5,48.5 - parent: 588 -- proto: WallSolid - entities: - - uid: 140 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,25.5 - parent: 588 - - uid: 144 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,26.5 - parent: 588 - - uid: 145 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,25.5 - parent: 588 - - uid: 146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,27.5 - parent: 588 - - uid: 205 - components: - - type: Transform - pos: 8.5,35.5 - parent: 588 - - uid: 206 - components: - - type: Transform - pos: 7.5,35.5 - parent: 588 - - uid: 207 - components: - - type: Transform - pos: 6.5,35.5 - parent: 588 - - uid: 208 - components: - - type: Transform - pos: 4.5,35.5 - parent: 588 - - uid: 210 - components: - - type: Transform - pos: 1.5,34.5 - parent: 588 - - uid: 305 - components: - - type: Transform - pos: 22.5,4.5 - parent: 588 - - uid: 306 - components: - - type: Transform - pos: 22.5,3.5 - parent: 588 - - uid: 307 - components: - - type: Transform - pos: 22.5,0.5 - parent: 588 - - uid: 308 - components: - - type: Transform - pos: 22.5,1.5 - parent: 588 - - uid: 476 - components: - - type: Transform - pos: 25.5,13.5 - parent: 588 - - uid: 481 - components: - - type: Transform - pos: 25.5,15.5 - parent: 588 - - uid: 483 - components: - - type: Transform - pos: 30.5,13.5 - parent: 588 - - uid: 501 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,14.5 - parent: 588 - - uid: 510 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,15.5 - parent: 588 - - uid: 749 - components: - - type: Transform - pos: 25.5,19.5 - parent: 588 - - uid: 750 - components: - - type: Transform - pos: 27.5,19.5 - parent: 588 - - uid: 975 - components: - - type: Transform - pos: 19.5,32.5 - parent: 588 - - uid: 995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,32.5 - parent: 588 - - uid: 1163 - components: - - type: Transform - pos: 8.5,36.5 - parent: 588 - - uid: 1164 - components: - - type: Transform - pos: 3.5,35.5 - parent: 588 - - uid: 1165 - components: - - type: Transform - pos: 2.5,35.5 - parent: 588 - - uid: 1167 - components: - - type: Transform - pos: 1.5,35.5 - parent: 588 - - uid: 1300 - components: - - type: Transform - pos: 25.5,39.5 - parent: 588 - - uid: 1303 - components: - - type: Transform - pos: 28.5,39.5 - parent: 588 - - uid: 1304 - components: - - type: Transform - pos: 29.5,39.5 - parent: 588 - - uid: 1305 - components: - - type: Transform - pos: 28.5,40.5 - parent: 588 - - uid: 1485 - components: - - type: Transform - pos: 17.5,43.5 - parent: 588 - - uid: 1486 - components: - - type: Transform - pos: 17.5,44.5 - parent: 588 - - uid: 1487 - components: - - type: Transform - pos: 18.5,43.5 - parent: 588 - - uid: 1488 - components: - - type: Transform - pos: 20.5,43.5 - parent: 588 - - uid: 1489 - components: - - type: Transform - pos: 21.5,43.5 - parent: 588 - - uid: 1490 - components: - - type: Transform - pos: 21.5,44.5 - parent: 588 - - uid: 1491 - components: - - type: Transform - pos: 18.5,47.5 - parent: 588 - - uid: 1492 - components: - - type: Transform - pos: 19.5,47.5 - parent: 588 - - uid: 1493 - components: - - type: Transform - pos: 20.5,47.5 - parent: 588 -- proto: WallWood - entities: - - uid: 554 - components: - - type: Transform - pos: 9.5,13.5 - parent: 588 - - uid: 555 - components: - - type: Transform - pos: 9.5,14.5 - parent: 588 - - uid: 556 - components: - - type: Transform - pos: 9.5,15.5 - parent: 588 - - uid: 557 - components: - - type: Transform - pos: 10.5,15.5 - parent: 588 - - uid: 558 - components: - - type: Transform - pos: 13.5,15.5 - parent: 588 - - uid: 559 - components: - - type: Transform - pos: 13.5,16.5 - parent: 588 - - uid: 566 - components: - - type: Transform - pos: 9.5,12.5 - parent: 588 -- proto: WardrobePrisonFilled - entities: - - uid: 297 - components: - - type: Transform - pos: 2.5,4.5 - parent: 588 - - uid: 302 - components: - - type: Transform - pos: 4.5,4.5 - parent: 588 - - uid: 303 - components: - - type: Transform - pos: 12.5,4.5 - parent: 588 - - uid: 304 - components: - - type: Transform - pos: 14.5,4.5 - parent: 588 - - uid: 544 - components: - - type: Transform - pos: 16.5,4.5 - parent: 588 - - uid: 545 - components: - - type: Transform - pos: 0.5,4.5 - parent: 588 - - uid: 1769 - components: - - type: Transform - pos: 24.5,43.5 - parent: 588 - - uid: 1770 - components: - - type: Transform - pos: 24.5,47.5 - parent: 588 -- proto: WaterCooler - entities: - - uid: 629 - components: - - type: Transform - pos: 6.5,18.5 - parent: 588 - - uid: 724 - components: - - type: Transform - pos: 19.5,22.5 - parent: 588 - - uid: 1284 - components: - - type: Transform - pos: 17.5,40.5 - parent: 588 - - uid: 1292 - components: - - type: Transform - pos: 21.5,12.5 - parent: 588 -- proto: WaterTankHighCapacity - entities: - - uid: 801 - components: - - type: Transform - pos: 30.5,22.5 - parent: 588 - - uid: 1789 - components: - - type: Transform - pos: 28.5,48.5 - parent: 588 -- proto: WeaponCapacitorRecharger - entities: - - uid: 760 - components: - - type: Transform - pos: 10.5,18.5 - parent: 588 - - uid: 929 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,34.5 - parent: 588 - - uid: 1033 - components: - - type: Transform - pos: 14.5,28.5 - parent: 588 - - uid: 1034 - components: - - type: Transform - pos: 16.5,24.5 - parent: 588 -- proto: WeaponDisablerPractice - entities: - - uid: 547 - components: - - type: Transform - pos: 1.4370823,0.5241035 - parent: 588 - - uid: 930 - components: - - type: Transform - pos: 26.440151,36.61676 - parent: 588 - - uid: 1611 - components: - - type: Transform - pos: 12.371853,10.605072 - parent: 588 -- proto: WeaponLaserCarbinePractice - entities: - - uid: 931 - components: - - type: Transform - pos: 26.596338,36.36132 - parent: 588 - - uid: 1612 - components: - - type: Transform - pos: 22.543945,6.5464144 - parent: 588 -- proto: WeaponShotgunKammerer - entities: - - uid: 583 - components: - - type: Transform - pos: 26.57963,35.4414 - parent: 588 -- proto: WindoorAssemblySecure - entities: - - uid: 696 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,19.5 - parent: 588 - - uid: 697 - components: - - type: Transform - pos: 12.5,21.5 - parent: 588 - - uid: 1073 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,25.5 - parent: 588 -- proto: WindoorSecure - entities: - - uid: 1761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,43.5 - parent: 588 - - uid: 1762 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,47.5 - parent: 588 -- proto: WindoorSecureBrigLocked - entities: - - uid: 339 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,2.5 - parent: 588 -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 1569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,45.5 - parent: 588 - - uid: 1570 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,45.5 - parent: 588 -- proto: WindoorSecureMedicalLocked - entities: - - uid: 1408 - components: - - type: Transform - pos: 11.5,44.5 - parent: 588 -- proto: WindoorSecureSecurityLocked - entities: - - uid: 252 - components: - - type: Transform - pos: 4.5,3.5 - parent: 588 - - uid: 253 - components: - - type: Transform - pos: 2.5,3.5 - parent: 588 - - uid: 256 - components: - - type: Transform - pos: 16.5,3.5 - parent: 588 - - uid: 274 - components: - - type: Transform - pos: 12.5,3.5 - parent: 588 - - uid: 275 - components: - - type: Transform - pos: 14.5,3.5 - parent: 588 - - uid: 289 - components: - - type: Transform - pos: 0.5,3.5 - parent: 588 - - uid: 698 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,19.5 - parent: 588 - - uid: 1053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,25.5 - parent: 588 - - uid: 1054 - components: - - type: Transform - pos: 21.5,27.5 - parent: 588 -- proto: WindowDirectional - entities: - - uid: 480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,15.5 - parent: 588 - - uid: 482 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,15.5 - parent: 588 - - uid: 540 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,15.5 - parent: 588 - - uid: 541 - components: - - type: Transform - pos: 26.5,13.5 - parent: 588 - - uid: 542 - components: - - type: Transform - pos: 27.5,13.5 - parent: 588 - - uid: 543 - components: - - type: Transform - pos: 28.5,13.5 - parent: 588 - - uid: 575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,20.5 - parent: 588 - - uid: 576 - components: - - type: Transform - pos: 26.5,19.5 - parent: 588 - - uid: 803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,21.5 - parent: 588 - - uid: 804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,19.5 - parent: 588 - - uid: 1087 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,36.5 - parent: 588 - - uid: 1088 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,34.5 - parent: 588 - - uid: 1520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,46.5 - parent: 588 - - uid: 1521 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,46.5 - parent: 588 - - uid: 1771 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,44.5 - parent: 588 - - uid: 1773 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,44.5 - parent: 588 - - uid: 1777 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,44.5 - parent: 588 - - uid: 1782 - components: - - type: Transform - pos: 30.5,46.5 - parent: 588 -- proto: WindowFrostedDirectional - entities: - - uid: 936 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,24.5 - parent: 588 - - uid: 937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,24.5 - parent: 588 - - uid: 938 - components: - - type: Transform - pos: 8.5,27.5 - parent: 588 - - uid: 939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,25.5 - parent: 588 - - uid: 941 - components: - - type: Transform - pos: 10.5,27.5 - parent: 588 - - uid: 942 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,28.5 - parent: 588 - - uid: 943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,28.5 - parent: 588 - - uid: 1392 - components: - - type: Transform - pos: 8.5,44.5 - parent: 588 - - uid: 1393 - components: - - type: Transform - pos: 10.5,44.5 - parent: 588 - - uid: 1401 - components: - - type: Transform - pos: 12.5,44.5 - parent: 588 - - uid: 1402 - components: - - type: Transform - pos: 14.5,44.5 - parent: 588 - - uid: 1753 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,43.5 - parent: 588 - - uid: 1754 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,43.5 - parent: 588 - - uid: 1755 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,43.5 - parent: 588 - - uid: 1756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,42.5 - parent: 588 - - uid: 1757 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,48.5 - parent: 588 - - uid: 1758 - components: - - type: Transform - pos: 26.5,47.5 - parent: 588 - - uid: 1759 - components: - - type: Transform - pos: 25.5,47.5 - parent: 588 - - uid: 1760 - components: - - type: Transform - pos: 24.5,47.5 - parent: 588 -- proto: WindowReinforcedDirectional - entities: - - uid: 97 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,14.5 - parent: 588 - - uid: 99 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,14.5 - parent: 588 - - uid: 258 - components: - - type: Transform - pos: 3.5,3.5 - parent: 588 - - uid: 259 - components: - - type: Transform - pos: 5.5,3.5 - parent: 588 - - uid: 260 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,3.5 - parent: 588 - - uid: 261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,4.5 - parent: 588 - - uid: 270 - components: - - type: Transform - pos: 11.5,3.5 - parent: 588 - - uid: 271 - components: - - type: Transform - pos: 13.5,3.5 - parent: 588 - - uid: 272 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,3.5 - parent: 588 - - uid: 273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,4.5 - parent: 588 - - uid: 277 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,4.5 - parent: 588 - - uid: 278 - components: - - type: Transform - pos: 15.5,3.5 - parent: 588 - - uid: 279 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,4.5 - parent: 588 - - uid: 280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,3.5 - parent: 588 - - uid: 281 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,3.5 - parent: 588 - - uid: 290 - components: - - type: Transform - pos: 1.5,3.5 - parent: 588 - - uid: 607 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,14.5 - parent: 588 - - uid: 609 - components: - - type: Transform - pos: 4.5,14.5 - parent: 588 - - uid: 611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,14.5 - parent: 588 - - uid: 612 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,14.5 - parent: 588 - - uid: 614 - components: - - type: Transform - pos: 3.5,14.5 - parent: 588 - - uid: 619 - components: - - type: Transform - pos: 2.5,14.5 - parent: 588 - - uid: 620 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,20.5 - parent: 588 - - uid: 624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,20.5 - parent: 588 - - uid: 625 - components: - - type: Transform - pos: 2.5,19.5 - parent: 588 - - uid: 626 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,21.5 - parent: 588 - - uid: 648 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,19.5 - parent: 588 - - uid: 650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,18.5 - parent: 588 - - uid: 651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,19.5 - parent: 588 - - uid: 652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,19.5 - parent: 588 - - uid: 653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,18.5 - parent: 588 - - uid: 654 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,21.5 - parent: 588 - - uid: 658 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,22.5 - parent: 588 - - uid: 660 - components: - - type: Transform - pos: 13.5,21.5 - parent: 588 - - uid: 805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,27.5 - parent: 588 - - uid: 806 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,26.5 - parent: 588 - - uid: 807 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,25.5 - parent: 588 - - uid: 808 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,25.5 - parent: 588 - - uid: 809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,26.5 - parent: 588 - - uid: 810 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,27.5 - parent: 588 - - uid: 811 - components: - - type: Transform - pos: 1.5,25.5 - parent: 588 - - uid: 812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,27.5 - parent: 588 - - uid: 1038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,25.5 - parent: 588 - - uid: 1039 - components: - - type: Transform - pos: 20.5,27.5 - parent: 588 - - uid: 1042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,25.5 - parent: 588 - - uid: 1045 - components: - - type: Transform - pos: 22.5,27.5 - parent: 588 - - uid: 1058 - components: - - type: Transform - pos: 24.5,27.5 - parent: 588 - - uid: 1059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,25.5 - parent: 588 - - uid: 1060 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,25.5 - parent: 588 - - uid: 1399 - components: - - type: Transform - pos: 9.5,44.5 - parent: 588 - - uid: 1400 - components: - - type: Transform - pos: 13.5,44.5 - parent: 588 -- proto: Wrench - entities: - - uid: 424 - components: - - type: Transform - pos: 15.156982,32.526764 - parent: 588 -- proto: Zipties - entities: - - uid: 1156 - components: - - type: Transform - pos: 15.332411,0.52492684 - parent: 588 -- proto: ZiptiesBroken - entities: - - uid: 48 - components: - - type: Transform - pos: 5.2591753,3.5817227 - parent: 588 - - uid: 706 - components: - - type: Transform - pos: 16.06022,21.977758 - parent: 588 -... +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 15: FloorBasalt + 29: FloorDark + 33: FloorDarkMini + 34: FloorDarkMono + 42: FloorElevatorShaft + 54: FloorGreenCircuit + 62: FloorLino + 77: FloorReinforced + 82: FloorShuttleOrange + 89: FloorSteel + 99: FloorSteelMini + 100: FloorSteelMono + 104: FloorTechMaint + 108: FloorWhite + 112: FloorWhiteMini + 118: FloorWood + 121: Plating +entities: +- proto: "" + entities: + - uid: 588 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: Broadphase + - type: OccluderTree + - type: MapGrid + chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: WQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABeQAAAAAADwAAAAAAHQAAAAABDwAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAADeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABIgAAAAABHQAAAAABDwAAAAAAHQAAAAACIgAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAADwAAAAAAHQAAAAACDwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHQAAAAABHQAAAAABHQAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAABHQAAAAADHQAAAAABUgAAAAAAZAAAAAACWQAAAAAAZAAAAAACeQAAAAAAHQAAAAAAIgAAAAADeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAIgAAAAACHQAAAAACUgAAAAAAYwAAAAACYwAAAAAAYwAAAAAAeQAAAAAAHQAAAAABIgAAAAACeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAIgAAAAABHQAAAAADUgAAAAAAYwAAAAACYwAAAAAAYwAAAAAAWQAAAAACHQAAAAAAIgAAAAADeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAIgAAAAAAHQAAAAABUgAAAAAAYwAAAAADYwAAAAABYwAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAABHQAAAAABHQAAAAAAUgAAAAAAZAAAAAABWQAAAAABZAAAAAACeQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAADeQAAAAAAHQAAAAADHQAAAAADUgAAAAAAaAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAAAdgAAAAADUgAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAAUgAAAAAAaAAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAACdgAAAAACUgAAAAAAHQAAAAADHQAAAAACDwAAAAAADwAAAAAADwAAAAAAHQAAAAACHQAAAAACUgAAAAAAaAAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACdgAAAAADUgAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAABUgAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABUgAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: HQAAAAAAHQAAAAADeQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAABUgAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAUgAAAAAAaAAAAAAAeQAAAAAAWQAAAAABaAAAAAAAHQAAAAACeQAAAAAADwAAAAAAeQAAAAAAHQAAAAACUgAAAAAAWQAAAAADYwAAAAAAYwAAAAABYwAAAAADWQAAAAABUgAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAHQAAAAABDwAAAAAADwAAAAAADwAAAAAAHQAAAAAAUgAAAAAAWQAAAAAAYwAAAAABYwAAAAACYwAAAAACWQAAAAADUgAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAHQAAAAAAeQAAAAAADwAAAAAAeQAAAAAAHQAAAAAAUgAAAAAAWQAAAAABYwAAAAABYwAAAAABYwAAAAABWQAAAAADUgAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAABUgAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABUgAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHQAAAAAAHQAAAAADHQAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAUgAAAAAAcAAAAAACcAAAAAACcAAAAAABUgAAAAAAWQAAAAADWQAAAAADZAAAAAAAUgAAAAAAHQAAAAAADwAAAAAAHQAAAAACUgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUgAAAAAAcAAAAAADcAAAAAACcAAAAAADUgAAAAAAWQAAAAAAWQAAAAABZAAAAAABUgAAAAAAHQAAAAACDwAAAAAAHQAAAAAAUgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUgAAAAAAcAAAAAADcAAAAAAAcAAAAAAAUgAAAAAAWQAAAAABWQAAAAABWQAAAAABUgAAAAAAHQAAAAACDwAAAAAAHQAAAAABUgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUgAAAAAAcAAAAAADcAAAAAADcAAAAAABUgAAAAAAZAAAAAACWQAAAAABWQAAAAACUgAAAAAAHQAAAAADHQAAAAACHQAAAAADUgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAUgAAAAAAcAAAAAACcAAAAAACcAAAAAADUgAAAAAAZAAAAAACWQAAAAAAWQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHQAAAAAAHQAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAADHQAAAAACUgAAAAAAWQAAAAABWQAAAAACHQAAAAACHQAAAAABHQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAADHQAAAAADHQAAAAAAUgAAAAAAaAAAAAAAeQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: WQAAAAABUgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAADWQAAAAADUgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAABWQAAAAAAUgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAIgAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABaAAAAAAAUgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAABaAAAAAAAUgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAADUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAZAAAAAAAWQAAAAABZAAAAAAAUgAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAYwAAAAAAYwAAAAAAYwAAAAABUgAAAAAATQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADYwAAAAADYwAAAAAAYwAAAAADUgAAAAAATQAAAAAAeQAAAAAAKgAAAAAAeQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAYwAAAAACYwAAAAABYwAAAAADUgAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAZAAAAAADWQAAAAABZAAAAAACUgAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADUgAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAUgAAAAAAWQAAAAABYwAAAAACYwAAAAACYwAAAAAAYwAAAAADYwAAAAACWQAAAAAAUgAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAUgAAAAAAWQAAAAAAYwAAAAABYwAAAAADYwAAAAABYwAAAAACYwAAAAAAWQAAAAACUgAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADaAAAAAAAUgAAAAAAWQAAAAACYwAAAAABYwAAAAABYwAAAAADYwAAAAAAYwAAAAABWQAAAAAAUgAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAUgAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: WQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACUgAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAaAAAAAAAUgAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADUgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAUgAAAAAAWQAAAAACWQAAAAACaAAAAAAAUgAAAAAAWQAAAAADYwAAAAACYwAAAAABYwAAAAAAWQAAAAABUgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUgAAAAAAWQAAAAADYwAAAAADWQAAAAACUgAAAAAAWQAAAAADYwAAAAADYwAAAAADYwAAAAADWQAAAAABUgAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAUgAAAAAAWQAAAAAAYwAAAAABWQAAAAADUgAAAAAAWQAAAAAAYwAAAAAAYwAAAAACYwAAAAACWQAAAAADUgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAUgAAAAAAWQAAAAADYwAAAAADWQAAAAACUgAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACUgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAUgAAAAAAWQAAAAACWQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAWQAAAAADWQAAAAABWQAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAUgAAAAAAWQAAAAABWQAAAAACZAAAAAACUgAAAAAAWQAAAAABWQAAAAAAWQAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAWQAAAAACWQAAAAADZAAAAAABUgAAAAAAWQAAAAACWQAAAAAAWQAAAAACUgAAAAAAWQAAAAACWQAAAAAAWQAAAAACUgAAAAAAWQAAAAADWQAAAAAAWQAAAAADUgAAAAAAWQAAAAADWQAAAAACWQAAAAADUgAAAAAAZAAAAAADWQAAAAACZAAAAAADUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAUgAAAAAAZAAAAAAAWQAAAAADWQAAAAACUgAAAAAAZAAAAAABWQAAAAABZAAAAAABUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAUgAAAAAAZAAAAAADWQAAAAADWQAAAAABUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: HQAAAAACHQAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAADHQAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAAAUgAAAAAAHQAAAAABTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAABUgAAAAAAHQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAAAUgAAAAAAHQAAAAAATQAAAAAANgAAAAAANgAAAAAANgAAAAAATQAAAAAAHQAAAAAAUgAAAAAAHQAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAACUgAAAAAAHQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAADwAAAAAADwAAAAAAeQAAAAAAIgAAAAABeQAAAAAADwAAAAAADwAAAAAAUgAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAABbAAAAAABUgAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAAADwAAAAAADwAAAAAADwAAAAAAUgAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAABbAAAAAADUgAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAUgAAAAAAIgAAAAABIgAAAAABIgAAAAACaAAAAAAAIgAAAAADIgAAAAACIgAAAAABUgAAAAAAIgAAAAAAHQAAAAACDwAAAAAADwAAAAAADwAAAAAAHQAAAAAAIgAAAAABUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAeQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAUgAAAAAAIgAAAAACIgAAAAAAIgAAAAABaAAAAAAAIgAAAAABIgAAAAACIgAAAAAAUgAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAADDwAAAAAADwAAAAAADwAAAAAAUgAAAAAAIgAAAAAAIgAAAAAAIgAAAAACaAAAAAAAIgAAAAAAIgAAAAACIgAAAAADUgAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: DwAAAAAADwAAAAAAeQAAAAAAIgAAAAAAeQAAAAAADwAAAAAADwAAAAAAUgAAAAAAIgAAAAACIgAAAAAAIgAAAAAAaAAAAAAAIgAAAAABIgAAAAACIgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: aAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAYwAAAAACYwAAAAADYwAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAHQAAAAACHQAAAAADHQAAAAACTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAYwAAAAACYwAAAAAAYwAAAAABWQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAHQAAAAACHQAAAAABHQAAAAABTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAYwAAAAADYwAAAAADYwAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAHQAAAAADHQAAAAABHQAAAAABTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAUgAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAUgAAAAAAWQAAAAACYwAAAAABYwAAAAACYwAAAAABYwAAAAADYwAAAAAAWQAAAAAAUgAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAUgAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADUgAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAACYwAAAAAAYwAAAAADYwAAAAADUgAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAADYwAAAAABYwAAAAABYwAAAAACUgAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAUgAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACYwAAAAADYwAAAAABYwAAAAACUgAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACaAAAAAAAUgAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADUgAAAAAAaAAAAAAAWQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAaAAAAAAAUgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACIQAAAAABIQAAAAADWQAAAAACUgAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABIQAAAAAAIQAAAAABWQAAAAABUgAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAUgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: HQAAAAAAHQAAAAABWQAAAAACUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAACWQAAAAABUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAACWQAAAAABUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAADWQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAWQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAADeQAAAAAATQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAeQAAAAAATQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: UgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAADUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAABWQAAAAADUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAADYwAAAAABWQAAAAABUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABYwAAAAAAWQAAAAABUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAACUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAACHQAAAAAAIgAAAAADUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAACHQAAAAACIgAAAAADUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAADUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAABIgAAAAACIgAAAAADUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAADHQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: UgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAHQAAAAADHQAAAAABUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAABeQAAAAAAHQAAAAADUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAHQAAAAAAHQAAAAADUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,3: + ind: 2,3 + tiles: UgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#52B4E996' + id: BotGreyscale + decals: + 680: 30,25 + 681: 30,24 + 682: 28,27 + 683: 28,27 + 684: 28,28 + 685: 28,28 + 686: 30,25 + 687: 30,24 + - node: + color: '#DE3A3A96' + id: BotGreyscale + decals: + 478: 32,25 + 479: 32,24 + 480: 34,25 + 481: 34,24 + 482: 16,28 + 483: 18,28 + 484: 18,27 + 485: 16,27 + 486: 14,25 + 487: 14,24 + 488: 12,27 + 489: 12,28 + 748: 26,7 + 749: 32,7 + 750: 29,9 + 836: 6,2 + 837: 10,2 + 940: 1,9 + 941: 1,8 + 942: 1,7 + 943: 9,9 + 944: 9,8 + 945: 9,7 + 946: 20,10 + 947: 14,10 + 948: 14,6 + 949: 20,6 + 950: 22,6 + 951: 22,10 + 952: 12,10 + 953: 12,6 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 194: 21,4 + 250: 10,44 + 525: 12,32 + 543: 4,22 + 585: 6,40 + 659: 34,36 + 675: 30,28 + 703: 6,16 + 757: 10,10 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 191: 18,4 + 251: 12,44 + 519: 0,32 + 542: 0,22 + 582: 0,40 + 633: 24,36 + 702: 0,16 + 754: 0,10 + 853: 23,4 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 192: 21,0 + 238: 10,46 + 272: 14,42 + 524: 12,30 + 537: 4,18 + 584: 6,38 + 658: 34,34 + 701: 6,12 + 755: 10,6 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 193: 18,0 + 241: 12,46 + 270: 8,42 + 518: 0,30 + 534: 0,18 + 583: 0,38 + 632: 24,34 + 672: 28,24 + 700: 0,12 + 756: 0,6 + 852: 23,0 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 202: 21,1 + 203: 21,2 + 204: 21,3 + 239: 10,47 + 240: 10,48 + 273: 14,43 + 501: 0,25 + 502: 0,26 + 503: 0,27 + 535: 4,19 + 536: 4,21 + 592: 14,38 + 593: 14,40 + 674: 30,27 + 706: 6,15 + 707: 6,13 + 758: 10,9 + 759: 10,7 + 926: 5,45 + 929: 33,36 + 930: 33,34 + 931: 10,31 + 935: 8,10 + 936: 8,6 + 937: 7,2 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 197: 19,4 + 198: 20,4 + 248: 8,44 + 249: 9,44 + 252: 13,44 + 253: 14,44 + 506: 0,28 + 507: 2,28 + 520: 1,32 + 523: 11,32 + 540: 1,22 + 541: 3,22 + 634: 25,36 + 635: 26,36 + 704: 1,16 + 705: 5,16 + 762: 1,10 + 765: 9,10 + 846: 24,4 + 847: 25,4 + 848: 27,4 + 849: 28,4 + 850: 29,4 + 851: 30,4 + 927: 3,47 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 195: 20,0 + 196: 19,0 + 244: 8,46 + 245: 9,46 + 246: 13,46 + 247: 14,46 + 274: 9,42 + 275: 10,42 + 276: 13,42 + 277: 12,42 + 504: 0,24 + 505: 2,24 + 521: 1,30 + 522: 11,30 + 538: 3,18 + 539: 1,18 + 636: 25,34 + 637: 26,34 + 710: 1,12 + 711: 5,12 + 763: 1,6 + 764: 9,6 + 840: 25,0 + 841: 24,0 + 842: 27,0 + 843: 28,0 + 844: 29,0 + 845: 30,0 + 928: 3,43 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 199: 18,3 + 200: 18,2 + 201: 18,1 + 242: 12,47 + 243: 12,48 + 271: 8,43 + 498: 2,27 + 499: 2,26 + 500: 2,25 + 544: 0,19 + 545: 0,21 + 590: 8,40 + 591: 8,38 + 673: 28,25 + 708: 0,13 + 709: 0,15 + 760: 0,7 + 761: 0,9 + 854: 23,3 + 855: 23,1 + 925: 1,45 + 932: 2,31 + 933: 2,10 + 934: 2,6 + 938: 9,2 + 939: 30,2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 84: 18,36 + 104: 16,25 + 336: 9,21 + 337: 10,22 + 364: 16,22 + 374: 21,15 + 375: 22,16 + 415: 21,21 + 421: 22,22 + 446: 33,21 + 447: 34,22 + 490: 12,25 + 554: 22,9 + 568: 14,9 + 610: 22,40 + 2025: 30,48 + 2039: 30,44 + 2058: 29,47 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 85: 16,36 + 103: 18,25 + 338: 7,21 + 339: 6,22 + 376: 17,15 + 377: 16,16 + 414: 19,21 + 420: 18,22 + 448: 31,21 + 449: 30,22 + 555: 20,9 + 569: 12,9 + 611: 16,40 + 2040: 28,44 + 2059: 28,47 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 83: 18,34 + 308: 26,30 + 332: 9,19 + 335: 10,18 + 372: 21,13 + 373: 22,12 + 418: 21,19 + 419: 22,18 + 452: 33,19 + 453: 34,18 + 561: 22,7 + 562: 14,7 + 609: 22,38 + 778: 16,0 + 779: 5,0 + 2038: 30,42 + 2056: 29,46 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 81: 16,34 + 82: 3,35 + 309: 14,30 + 333: 7,19 + 334: 6,18 + 370: 17,13 + 371: 16,12 + 416: 18,18 + 417: 19,19 + 450: 31,19 + 451: 30,18 + 493: 14,27 + 558: 20,7 + 567: 12,7 + 608: 16,38 + 780: 0,0 + 781: 11,0 + 2037: 28,42 + 2057: 28,46 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndE + decals: + 73: 21,39 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndW + decals: + 74: 17,39 + - node: + color: '#D4D4D496' + id: BrickTileSteelLineE + decals: + 1330: 32,2 + 1332: 31,2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 87: 18,35 + 93: 14,34 + 94: 14,35 + 95: 14,36 + 105: 16,24 + 286: 17,45 + 287: 17,46 + 288: 17,47 + 323: 27,20 + 349: 9,20 + 350: 10,21 + 351: 10,19 + 365: 16,21 + 378: 21,14 + 379: 22,13 + 380: 22,15 + 425: 21,20 + 426: 22,19 + 427: 22,21 + 454: 34,19 + 455: 34,21 + 462: 33,20 + 491: 12,24 + 559: 22,8 + 566: 14,8 + 802: 16,1 + 806: 5,1 + 872: 34,0 + 873: 34,1 + 874: 34,3 + 875: 34,4 + 1328: 33,2 + 2023: 30,46 + 2024: 30,47 + 2041: 30,43 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 75: 18,39 + 76: 19,39 + 77: 20,39 + 86: 17,36 + 340: 8,21 + 341: 9,22 + 342: 7,22 + 366: 15,22 + 391: 18,15 + 392: 19,15 + 393: 20,15 + 394: 21,16 + 395: 20,16 + 396: 18,16 + 397: 17,16 + 422: 20,21 + 423: 19,22 + 424: 21,22 + 458: 31,22 + 459: 33,22 + 460: 32,21 + 556: 21,9 + 564: 13,9 + 572: 16,10 + 573: 18,10 + 612: 17,40 + 613: 18,40 + 614: 21,40 + 615: 20,40 + 2026: 29,48 + 2027: 28,48 + 2044: 29,44 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 78: 18,39 + 79: 19,39 + 80: 20,39 + 89: 17,34 + 298: 15,30 + 299: 16,30 + 300: 17,30 + 301: 18,30 + 302: 19,30 + 303: 21,30 + 304: 22,30 + 305: 23,30 + 306: 24,30 + 307: 25,30 + 346: 8,19 + 347: 7,18 + 348: 9,18 + 384: 18,13 + 385: 19,13 + 386: 20,13 + 387: 20,12 + 388: 21,12 + 389: 18,12 + 390: 17,12 + 431: 20,19 + 432: 19,18 + 433: 21,18 + 463: 32,19 + 464: 31,18 + 465: 33,18 + 557: 21,7 + 563: 13,7 + 570: 16,6 + 571: 18,6 + 616: 17,38 + 617: 18,38 + 618: 21,38 + 619: 20,38 + 782: 1,0 + 783: 2,0 + 784: 3,0 + 785: 4,0 + 786: 0,3 + 787: 1,3 + 788: 2,3 + 789: 3,3 + 790: 4,3 + 791: 5,3 + 792: 12,0 + 793: 13,0 + 794: 14,0 + 795: 15,0 + 796: 11,3 + 797: 12,3 + 798: 13,3 + 799: 14,3 + 800: 15,3 + 801: 16,3 + 2043: 29,42 + - node: + color: '#D4D4D496' + id: BrickTileSteelLineW + decals: + 1329: 33,2 + 1331: 32,2 + 1333: 31,2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 88: 16,35 + 90: 20,34 + 91: 20,35 + 92: 20,36 + 102: 18,24 + 289: 21,45 + 290: 21,46 + 291: 21,47 + 322: 25,20 + 326: 29,15 + 327: 29,14 + 328: 29,13 + 343: 7,20 + 344: 6,21 + 345: 6,19 + 381: 17,14 + 382: 16,15 + 383: 16,13 + 428: 19,20 + 429: 18,19 + 430: 18,21 + 456: 30,19 + 457: 30,21 + 461: 31,20 + 492: 14,28 + 560: 20,8 + 565: 12,8 + 803: 0,1 + 805: 11,1 + 2021: 24,44 + 2022: 24,46 + 2042: 28,43 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 264: 10,44 + 679: 30,28 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 109: 16,25 + 362: 10,22 + 367: 16,22 + 413: 22,16 + 438: 22,22 + 475: 34,22 + 494: 12,25 + 527: 12,32 + 580: 4,22 + 587: 6,40 + 630: 22,40 + 660: 34,36 + 715: 6,16 + 777: 10,10 + 2045: 30,48 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 689: 10,28 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 265: 12,44 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 108: 18,25 + 363: 6,22 + 412: 16,16 + 442: 18,22 + 476: 30,22 + 532: 0,32 + 579: 0,22 + 588: 0,40 + 629: 16,40 + 639: 24,36 + 714: 0,16 + 772: 0,10 + 858: 23,4 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 688: 8,28 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 263: 10,46 + 279: 14,42 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 361: 10,18 + 411: 22,12 + 443: 22,18 + 477: 34,18 + 526: 12,30 + 581: 4,18 + 586: 6,38 + 628: 22,38 + 661: 34,34 + 713: 6,12 + 771: 10,6 + 809: 5,0 + 810: 16,0 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSe + decals: + 311: 26,30 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 690: 10,24 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 262: 12,46 + 278: 8,42 + 676: 28,24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 360: 6,18 + 406: 16,12 + 439: 18,18 + 474: 30,18 + 496: 14,27 + 533: 0,30 + 578: 0,18 + 589: 0,38 + 631: 16,38 + 638: 24,34 + 712: 0,12 + 770: 0,6 + 807: 0,0 + 808: 11,0 + 859: 23,0 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSw + decals: + 310: 14,30 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 691: 8,24 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 258: 10,47 + 259: 10,48 + 280: 14,43 + 678: 30,27 + - node: + color: '#D4D4D419' + id: BrickTileWhiteLineE + decals: + 895: 2,6 + 896: 2,10 + 900: 9,2 + 901: 30,2 + 906: 1,45 + 908: 2,31 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 96: 14,36 + 97: 14,35 + 98: 14,34 + 106: 16,24 + 356: 10,19 + 357: 10,21 + 368: 16,21 + 409: 22,15 + 410: 22,13 + 444: 22,19 + 445: 22,21 + 470: 34,21 + 471: 34,19 + 495: 12,24 + 511: 0,25 + 512: 0,26 + 513: 0,27 + 548: 4,19 + 549: 4,21 + 596: 14,38 + 597: 14,40 + 716: 6,15 + 717: 6,13 + 768: 10,9 + 769: 10,7 + 811: 5,1 + 812: 16,1 + 876: 34,0 + 877: 34,1 + 878: 34,3 + 879: 34,4 + 2048: 30,47 + 2049: 30,46 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 292: 17,45 + 293: 17,46 + 294: 17,47 + 324: 27,20 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 693: 10,27 + 694: 10,26 + 695: 10,25 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 266: 9,44 + 267: 8,44 + 268: 13,44 + 269: 14,44 + - node: + color: '#D4D4D419' + id: BrickTileWhiteLineN + decals: + 907: 3,43 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 358: 9,22 + 359: 7,22 + 369: 15,22 + 398: 18,16 + 399: 17,16 + 400: 21,16 + 401: 20,16 + 436: 19,22 + 437: 21,22 + 468: 31,22 + 469: 33,22 + 516: 0,28 + 517: 2,28 + 528: 11,32 + 531: 1,32 + 552: 1,22 + 553: 3,22 + 574: 16,10 + 575: 18,10 + 620: 18,40 + 621: 17,40 + 622: 20,40 + 623: 21,40 + 642: 25,36 + 643: 26,36 + 722: 1,16 + 723: 5,16 + 773: 1,10 + 774: 9,10 + 866: 24,4 + 867: 25,4 + 868: 27,4 + 869: 28,4 + 870: 30,4 + 871: 29,4 + 2046: 28,48 + 2047: 29,48 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 692: 9,28 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 254: 8,46 + 255: 9,46 + 256: 13,46 + 257: 14,46 + 282: 9,42 + 283: 10,42 + 284: 12,42 + 285: 13,42 + - node: + color: '#D4D4D419' + id: BrickTileWhiteLineS + decals: + 905: 3,47 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + decals: + 352: 7,18 + 353: 9,18 + 402: 17,12 + 403: 18,12 + 404: 20,12 + 405: 21,12 + 434: 19,18 + 435: 21,18 + 466: 33,18 + 467: 31,18 + 514: 0,24 + 515: 2,24 + 529: 11,30 + 530: 1,30 + 550: 1,18 + 551: 3,18 + 576: 16,6 + 577: 18,6 + 624: 17,38 + 625: 18,38 + 626: 20,38 + 627: 21,38 + 640: 25,34 + 641: 26,34 + 718: 5,12 + 719: 1,12 + 775: 1,6 + 776: 9,6 + 813: 12,0 + 814: 13,0 + 815: 14,0 + 816: 15,0 + 817: 16,3 + 818: 15,3 + 819: 13,3 + 820: 14,3 + 821: 11,3 + 822: 12,3 + 823: 0,3 + 824: 1,3 + 825: 2,3 + 826: 3,3 + 827: 4,3 + 828: 5,3 + 829: 4,0 + 830: 3,0 + 831: 2,0 + 832: 1,0 + 860: 24,0 + 861: 25,0 + 862: 27,0 + 863: 28,0 + 864: 29,0 + 865: 30,0 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 312: 15,30 + 313: 16,30 + 314: 17,30 + 315: 18,30 + 316: 19,30 + 317: 21,30 + 318: 22,30 + 319: 23,30 + 320: 24,30 + 321: 25,30 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 696: 9,24 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 260: 12,47 + 261: 12,48 + 281: 8,43 + 677: 28,25 + - node: + color: '#D4D4D419' + id: BrickTileWhiteLineW + decals: + 897: 8,10 + 898: 8,6 + 899: 7,2 + 902: 33,36 + 903: 33,34 + 904: 5,45 + 909: 10,31 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 99: 20,36 + 100: 20,35 + 101: 20,34 + 107: 18,24 + 354: 6,19 + 355: 6,21 + 407: 16,13 + 408: 16,15 + 440: 18,19 + 441: 18,21 + 472: 30,19 + 473: 30,21 + 497: 14,28 + 508: 2,25 + 509: 2,26 + 510: 2,27 + 546: 0,19 + 547: 0,21 + 594: 8,38 + 595: 8,40 + 720: 0,13 + 721: 0,15 + 766: 0,7 + 767: 0,9 + 804: 0,1 + 833: 11,1 + 856: 23,1 + 857: 23,3 + 2050: 24,44 + 2051: 24,46 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 295: 21,45 + 296: 21,46 + 297: 21,47 + 325: 25,20 + 329: 29,13 + 330: 29,14 + 331: 29,15 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 697: 8,25 + 698: 8,26 + 699: 8,27 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#B02E269B' + id: Clandestine + decals: + 2136: 3.132535,34.09553 + - node: + color: '#A4610696' + id: Dirt + decals: + 1334: 31,2 + 1335: 32,2 + 1336: 33,2 + 1337: 30,2 + 1338: 34,2 + 1339: 33,3 + 1340: 31,4 + 1341: 32,3 + 1342: 32,1 + 1343: 31,1 + 1344: 31,0 + 1345: 33,0 + 1346: 32,0 + 1347: 33,3 + 1348: 33,4 + 1349: 32,4 + 1350: 31,3 + 1351: 32,1 + 1352: 33,1 + - node: + cleanable: True + color: '#A4610696' + id: Dirt + decals: + 954: 0,45 + 955: 3,47 + 956: 3,48 + 957: 6,45 + 958: 3,42 + 959: 3,43 + 960: 5,45 + 961: 1,45 + 962: 13,45 + 963: 12,45 + 964: 11,47 + 965: 9,45 + 966: 8,45 + 967: 8,46 + 968: 10,47 + 969: 13,47 + 970: 14,46 + 971: 11,43 + 972: 11,42 + 973: 9,42 + 974: 10,42 + 975: 13,42 + 976: 12,42 + 977: 13,43 + 978: 9,43 + 979: 11,44 + 980: 11,45 + 981: 11,47 + 982: 9,46 + 983: 11,46 + 984: 16,45 + 985: 16,46 + 986: 16,47 + 987: 16,44 + 988: 17,45 + 989: 17,46 + 990: 21,45 + 991: 22,45 + 992: 22,44 + 993: 22,43 + 994: 22,46 + 995: 21,45 + 996: 21,46 + 997: 22,47 + 998: 24,39 + 999: 24,38 + 1000: 24,40 + 1001: 27,39 + 1002: 27,39 + 1003: 30,40 + 1004: 30,39 + 1005: 30,38 + 1006: 30,39 + 1007: 34,35 + 1008: 33,34 + 1009: 33,36 + 1010: 24,35 + 1011: 22,35 + 1012: 20,35 + 1013: 21,35 + 1014: 20,34 + 1015: 14,35 + 1016: 13,35 + 1017: 12,35 + 1018: 14,36 + 1019: 17,36 + 1020: 17,35 + 1021: 17,34 + 1022: 16,35 + 1023: 18,35 + 1024: 18,36 + 1025: 18,34 + 1026: 16,34 + 1027: 16,36 + 1028: 16,30 + 1029: 16,30 + 1030: 18,30 + 1031: 19,30 + 1032: 22,30 + 1033: 24,30 + 1034: 25,30 + 1035: 26,30 + 1036: 20,30 + 1037: 20,30 + 1038: 15,30 + 1039: 14,30 + 1040: 14,31 + 1041: 26,31 + 1042: 10,31 + 1043: 2,31 + 1044: 0,31 + 1045: 12,31 + 1046: 5,35 + 1047: 6,36 + 1048: 4,34 + 1049: 9,35 + 1050: 9,35 + 1051: 10,35 + 1052: 10,34 + 1053: 0,35 + 1054: 0,36 + 1055: 0,35 + 1056: 5,36 + 1057: 6,36 + 1058: 6,39 + 1059: 0,39 + 1060: 8,39 + 1061: 8,40 + 1062: 8,38 + 1063: 9,39 + 1064: 11,38 + 1065: 9,38 + 1066: 11,40 + 1067: 10,40 + 1068: 13,39 + 1069: 14,39 + 1070: 14,40 + 1071: 14,38 + 1072: 13,39 + 1073: 13,40 + 1074: 16,39 + 1075: 18,40 + 1076: 19,40 + 1077: 19,39 + 1078: 18,39 + 1079: 17,39 + 1080: 20,39 + 1081: 21,39 + 1082: 19,38 + 1083: 22,39 + 1084: 21,38 + 1085: 24,39 + 1086: 24,38 + 1087: 24,40 + 1088: 17,32 + 1089: 24,32 + 1090: 23,32 + 1091: 34,26 + 1092: 33,26 + 1093: 33,28 + 1094: 32,28 + 1095: 32,27 + 1096: 34,27 + 1097: 34,28 + 1098: 32,25 + 1099: 33,24 + 1100: 33,25 + 1101: 32,26 + 1102: 29,24 + 1103: 30,26 + 1104: 28,26 + 1105: 29,28 + 1106: 29,27 + 1107: 29,25 + 1108: 25,26 + 1109: 24,26 + 1110: 26,26 + 1111: 25,27 + 1112: 24,28 + 1113: 25,28 + 1114: 24,27 + 1115: 24,24 + 1116: 25,25 + 1117: 25,24 + 1118: 26,25 + 1119: 22,26 + 1120: 24,26 + 1121: 26,26 + 1122: 20,26 + 1123: 21,25 + 1124: 21,24 + 1125: 21,28 + 1126: 21,27 + 1127: 18,26 + 1128: 16,26 + 1129: 17,27 + 1130: 17,28 + 1131: 17,25 + 1132: 17,24 + 1133: 17,26 + 1134: 13,28 + 1135: 13,27 + 1136: 13,26 + 1137: 13,25 + 1138: 13,24 + 1139: 12,26 + 1140: 14,26 + 1141: 9,26 + 1142: 9,27 + 1143: 9,28 + 1144: 8,28 + 1145: 8,27 + 1146: 8,26 + 1147: 9,25 + 1148: 8,25 + 1149: 8,24 + 1150: 9,24 + 1151: 10,24 + 1152: 10,25 + 1153: 10,26 + 1154: 10,27 + 1155: 10,28 + 1156: 5,28 + 1157: 5,28 + 1158: 5,24 + 1159: 5,24 + 1160: 0,26 + 1161: 2,26 + 1162: 2,28 + 1163: 1,24 + 1164: 2,24 + 1165: 2,22 + 1166: 4,20 + 1167: 2,18 + 1168: 1,19 + 1169: 0,20 + 1170: 0,17 + 1171: 0,18 + 1172: 4,18 + 1173: 4,19 + 1174: 4,22 + 1175: 0,22 + 1176: 6,20 + 1177: 7,20 + 1178: 8,20 + 1179: 9,20 + 1180: 10,20 + 1181: 8,21 + 1182: 8,22 + 1183: 8,19 + 1184: 8,18 + 1185: 6,18 + 1186: 7,19 + 1187: 7,18 + 1188: 9,20 + 1189: 10,21 + 1190: 9,21 + 1191: 9,22 + 1192: 9,19 + 1193: 7,21 + 1194: 8,13 + 1195: 8,13 + 1196: 11,16 + 1197: 11,16 + 1198: 10,16 + 1199: 9,16 + 1200: 8,15 + 1201: 8,14 + 1202: 8,16 + 1203: 10,16 + 1204: 9,16 + 1205: 12,14 + 1206: 11,14 + 1207: 11,12 + 1208: 10,12 + 1209: 14,12 + 1210: 14,14 + 1211: 14,15 + 1212: 13,14 + 1213: 12,14 + 1214: 11,14 + 1215: 11,13 + 1216: 6,14 + 1217: 0,14 + 1218: 3,16 + 1219: 3,12 + 1220: 3,13 + 1221: 2,13 + 1222: 4,13 + 1223: 3,15 + 1224: 2,15 + 1225: 4,15 + 1226: 5,14 + 1227: 1,14 + 1228: 1,15 + 1229: 1,13 + 1230: 5,15 + 1231: 5,13 + 1232: 0,8 + 1233: 2,10 + 1234: 2,6 + 1235: 8,6 + 1236: 8,10 + 1237: 0,8 + 1238: 10,8 + 1239: 10,10 + 1240: 10,7 + 1241: 10,6 + 1242: 9,6 + 1243: 9,10 + 1244: 1,10 + 1245: 0,7 + 1246: 0,6 + 1247: 0,3 + 1248: 1,3 + 1249: 1,3 + 1250: 2,3 + 1251: 3,3 + 1252: 4,3 + 1253: 4,3 + 1254: 5,3 + 1255: 7,2 + 1256: 9,2 + 1257: 4,0 + 1258: 4,1 + 1259: 2,1 + 1260: 1,1 + 1261: 0,2 + 1262: 1,2 + 1263: 2,2 + 1264: 5,2 + 1265: 4,2 + 1266: 3,2 + 1267: 4,1 + 1268: 3,1 + 1269: 11,2 + 1270: 12,3 + 1271: 11,3 + 1272: 14,3 + 1273: 14,3 + 1274: 15,3 + 1275: 16,3 + 1276: 13,3 + 1277: 11,3 + 1278: 12,2 + 1279: 11,1 + 1280: 13,1 + 1281: 16,2 + 1282: 16,1 + 1283: 14,1 + 1284: 13,2 + 1285: 14,2 + 1286: 18,2 + 1287: 19,2 + 1288: 20,2 + 1289: 21,2 + 1290: 19,3 + 1291: 18,3 + 1292: 20,3 + 1293: 20,1 + 1294: 21,1 + 1295: 19,1 + 1296: 23,2 + 1297: 28,2 + 1298: 29,2 + 1299: 30,2 + 1300: 28,4 + 1301: 29,4 + 1302: 26,4 + 1303: 26,2 + 1304: 26,1 + 1305: 26,0 + 1306: 24,2 + 1307: 25,2 + 1308: 27,2 + 1309: 24,4 + 1310: 23,3 + 1311: 24,3 + 1312: 23,4 + 1469: 14,8 + 1470: 12,8 + 1471: 12,7 + 1472: 13,7 + 1473: 13,6 + 1474: 13,10 + 1475: 12,9 + 1476: 14,9 + 1477: 17,10 + 1478: 17,9 + 1479: 18,9 + 1480: 18,8 + 1481: 17,7 + 1482: 17,7 + 1483: 17,6 + 1484: 17,8 + 1485: 16,7 + 1486: 18,7 + 1487: 20,9 + 1488: 20,8 + 1489: 21,10 + 1490: 21,9 + 1491: 21,7 + 1492: 21,6 + 1493: 20,7 + 1494: 22,7 + 1495: 22,8 + 1534: 19,16 + 1535: 18,15 + 1536: 19,13 + 1537: 19,12 + 1538: 22,14 + 1539: 22,14 + 1540: 22,15 + 1541: 21,16 + 1542: 21,15 + 1543: 21,13 + 1544: 16,14 + 1545: 17,13 + 1546: 17,15 + 1556: 30,20 + 1557: 32,22 + 1558: 31,22 + 1559: 31,21 + 1560: 32,19 + 1561: 32,18 + 1562: 34,20 + 1563: 34,19 + 1564: 34,18 + 1565: 34,21 + 1566: 34,22 + 2060: 24,45 + 2061: 25,45 + 2062: 27,48 + 2063: 27,42 + 2064: 30,45 + 2065: 28,43 + 2066: 29,43 + 2067: 30,43 + 2068: 24,42 + 2069: 25,43 + 2070: 26,42 + 2071: 25,42 + 2072: 26,48 + 2073: 25,47 + 2074: 26,47 + 2075: 25,47 + 2076: 25,48 + 2077: 27,47 + 2078: 27,45 + 2079: 27,46 + 2080: 26,45 + 2081: 28,45 + 2082: 26,44 + 2083: 27,44 + 2084: 25,46 + 2085: 26,46 + 2086: 29,45 + - node: + color: '#A4610696' + id: DirtHeavy + decals: + 1353: 11,31 + 1354: 1,31 + 1355: 0,39 + 1356: 6,39 + 1357: 5,45 + 1358: 14,39 + 1359: 16,39 + 1360: 19,38 + - node: + cleanable: True + color: '#A4610696' + id: DirtHeavy + decals: + 1361: 22,39 + 1362: 19,40 + 1363: 30,39 + 1364: 25,35 + 1365: 24,36 + 1366: 20,30 + 1367: 14,30 + 1368: 18,30 + 1369: 22,30 + 1370: 26,31 + 1371: 22,26 + 1372: 24,26 + 1373: 26,26 + 1374: 28,26 + 1375: 29,27 + 1376: 33,25 + 1377: 33,28 + 1378: 32,28 + 1379: 14,26 + 1380: 12,26 + 1381: 9,26 + 1382: 9,28 + 1383: 8,28 + 1384: 8,24 + 1385: 10,25 + 1386: 5,24 + 1387: 5,28 + 1388: 0,26 + 1389: 0,27 + 1390: 2,24 + 1391: 2,25 + 1392: 0,35 + 1393: 0,36 + 1394: 7,36 + 1395: 5,35 + 1396: 4,34 + 1397: 10,35 + 1398: 9,35 + 1399: 8,39 + 1400: 14,39 + 1401: 14,38 + 1402: 8,45 + 1403: 11,48 + 1404: 11,44 + 1405: 14,45 + 1406: 11,42 + 1407: 9,42 + 1408: 13,43 + 1409: 3,47 + 1410: 4,20 + 1411: 3,22 + 1412: 2,18 + 1413: 0,19 + 1414: 6,20 + 1415: 8,20 + 1416: 8,18 + 1417: 10,20 + 1418: 8,22 + 1419: 14,20 + 1420: 15,21 + 1421: 16,20 + 1422: 12,20 + 1423: 12,21 + 1424: 13,22 + 1425: 13,21 + 1426: 13,19 + 1427: 16,19 + 1428: 16,19 + 1429: 15,20 + 1430: 14,18 + 1431: 12,20 + 1432: 14,22 + 1433: 20,20 + 1434: 20,22 + 1435: 18,20 + 1436: 22,21 + 1437: 19,21 + 1438: 20,18 + 1439: 22,20 + 1440: 27,22 + 1441: 25,22 + 1442: 26,18 + 1443: 27,18 + 1444: 31,18 + 1445: 32,18 + 1446: 31,20 + 1447: 32,21 + 1448: 34,22 + 1449: 34,20 + 1450: 32,19 + 1451: 29,14 + 1452: 24,14 + 1453: 24,13 + 1454: 30,14 + 1455: 29,13 + 1456: 34,2 + 1457: 32,3 + 1458: 30,1 + 1459: 26,1 + 1460: 23,3 + 1461: 24,4 + 1462: 29,4 + 1463: 26,0 + 1464: 26,1 + 1465: 18,2 + 1466: 22,8 + 1467: 20,8 + 1468: 16,8 + 1496: 17,6 + 1497: 16,8 + 1498: 18,8 + 1499: 17,10 + 1500: 14,8 + 1501: 12,8 + 1502: 13,6 + 1503: 13,10 + 1504: 21,10 + 1505: 21,9 + 1506: 21,8 + 1507: 21,7 + 1508: 21,6 + 1509: 10,8 + 1510: 9,10 + 1511: 9,6 + 1512: 2,6 + 1513: 0,7 + 1514: 0,9 + 1515: 1,10 + 1516: 8,10 + 1517: 0,14 + 1518: 5,14 + 1519: 4,15 + 1520: 3,16 + 1521: 1,18 + 1522: 5,15 + 1523: 6,14 + 1524: 11,16 + 1525: 8,13 + 1526: 11,12 + 1527: 10,13 + 1528: 16,14 + 1529: 19,16 + 1530: 19,13 + 1531: 18,13 + 1532: 18,15 + 1533: 16,15 + 1547: 19,16 + 1548: 16,14 + 1549: 17,15 + 1550: 18,14 + 1551: 19,13 + 1552: 21,13 + 1553: 22,14 + 1554: 29,15 + 1555: 29,13 + 2095: 24,45 + 2096: 27,48 + 2097: 27,42 + 2098: 25,44 + 2099: 29,45 + 2100: 29,46 + 2101: 29,47 + 2102: 25,45 + - node: + cleanable: True + color: '#A4610696' + id: DirtLight + decals: + 1567: 0,2 + 1568: 5,2 + 1569: 4,1 + 1570: 5,2 + 1571: 2,1 + 1572: 7,2 + 1573: 9,2 + 1574: 11,2 + 1575: 14,2 + 1576: 13,3 + 1577: 10,3 + 1578: 11,3 + 1579: 12,3 + 1580: 16,3 + 1581: 15,3 + 1582: 16,2 + 1583: 16,1 + 1584: 14,1 + 1585: 15,1 + 1586: 1,3 + 1587: 3,3 + 1588: 5,3 + 1589: 5,3 + 1590: 1,1 + 1591: 23,2 + 1592: 26,2 + 1593: 28,2 + 1594: 28,4 + 1595: 30,2 + 1596: 31,1 + 1597: 34,1 + 1598: 33,0 + 1599: 34,3 + 1600: 21,9 + 1601: 20,8 + 1602: 22,8 + 1603: 16,8 + 1604: 17,9 + 1605: 17,10 + 1606: 17,6 + 1607: 12,8 + 1608: 14,9 + 1609: 14,8 + 1610: 13,6 + 1611: 10,8 + 1612: 8,10 + 1613: 2,10 + 1614: 0,8 + 1615: 0,9 + 1616: 2,6 + 1617: 0,14 + 1618: 3,12 + 1619: 1,14 + 1620: 3,15 + 1621: 5,14 + 1622: 5,15 + 1623: 6,14 + 1624: 3,13 + 1625: 3,12 + 1626: 8,13 + 1627: 10,16 + 1628: 11,16 + 1629: 17,14 + 1630: 17,13 + 1631: 16,15 + 1632: 19,16 + 1633: 22,14 + 1634: 21,14 + 1635: 21,13 + 1636: 19,13 + 1637: 20,12 + 1638: 20,13 + 1639: 21,15 + 1640: 29,14 + 1641: 29,15 + 1642: 34,20 + 1643: 32,18 + 1644: 34,18 + 1645: 34,21 + 1646: 32,22 + 1647: 30,20 + 1648: 30,21 + 1649: 32,19 + 1650: 32,21 + 1651: 32,20 + 1652: 30,18 + 1653: 26,22 + 1654: 25,22 + 1655: 25,20 + 1656: 27,20 + 1657: 27,22 + 1658: 25,20 + 1659: 27,20 + 1660: 26,18 + 1661: 27,18 + 1662: 25,18 + 1663: 22,20 + 1664: 18,20 + 1665: 20,22 + 1666: 20,20 + 1667: 19,19 + 1668: 20,19 + 1669: 20,21 + 1670: 21,20 + 1671: 16,20 + 1672: 16,21 + 1673: 12,20 + 1674: 13,21 + 1675: 13,22 + 1676: 13,19 + 1677: 13,19 + 1678: 14,20 + 1679: 14,18 + 1680: 10,20 + 1681: 10,21 + 1682: 8,22 + 1683: 6,21 + 1684: 6,20 + 1685: 7,20 + 1686: 7,19 + 1687: 8,20 + 1688: 9,20 + 1689: 4,20 + 1690: 3,18 + 1691: 2,18 + 1692: 1,18 + 1693: 0,21 + 1694: 1,22 + 1695: 0,20 + 1696: 2,22 + 1697: 1,24 + 1698: 0,26 + 1699: 0,25 + 1700: 2,25 + 1701: 2,27 + 1702: 5,28 + 1703: 5,24 + 1704: 9,26 + 1705: 9,27 + 1706: 9,24 + 1707: 8,24 + 1708: 10,24 + 1709: 10,26 + 1710: 13,26 + 1711: 12,26 + 1712: 13,28 + 1713: 12,28 + 1714: 13,24 + 1715: 14,26 + 1716: 13,25 + 1717: 18,26 + 1718: 16,26 + 1719: 17,28 + 1720: 17,25 + 1721: 17,24 + 1722: 20,26 + 1723: 22,26 + 1724: 21,26 + 1725: 21,27 + 1726: 21,24 + 1727: 21,25 + 1728: 25,26 + 1729: 26,26 + 1730: 25,26 + 1731: 25,26 + 1732: 25,24 + 1733: 25,24 + 1734: 26,25 + 1735: 24,27 + 1736: 29,26 + 1737: 29,27 + 1738: 30,26 + 1739: 29,24 + 1740: 33,26 + 1741: 33,24 + 1742: 34,26 + 1743: 32,26 + 1744: 34,28 + 1745: 34,28 + 1746: 33,28 + 1747: 32,28 + 1748: 26,31 + 1749: 21,30 + 1750: 20,30 + 1751: 17,30 + 1752: 15,30 + 1753: 14,31 + 1754: 10,31 + 1755: 2,31 + 1756: 11,30 + 1757: 12,31 + 1758: 0,32 + 1759: 1,32 + 1760: 0,31 + 1761: -1,35 + 1762: 0,36 + 1763: 0,35 + 1764: 4,34 + 1765: 5,35 + 1766: 3,34 + 1767: 10,34 + 1768: 10,35 + 1769: 6,39 + 1770: 0,39 + 1771: 0,45 + 1772: 3,43 + 1773: 3,47 + 1774: 4,45 + 1775: 5,45 + 1776: 8,45 + 1777: 11,46 + 1778: 11,45 + 1779: 11,42 + 1780: 13,42 + 1781: 9,42 + 1782: 14,45 + 1783: 10,44 + 1784: 11,44 + 1785: 11,45 + 1786: 16,47 + 1787: 16,45 + 1788: 17,45 + 1789: 21,45 + 1790: 16,48 + 1791: 16,43 + 1792: 23,43 + 1793: 22,42 + 1794: 30,38 + 1795: 30,40 + 1796: 24,38 + 1797: 22,39 + 1798: 19,38 + 1799: 19,39 + 1800: 18,39 + 1801: 16,39 + 1802: 18,38 + 1803: 17,38 + 1804: 14,38 + 1805: 14,40 + 1806: 9,39 + 1807: 10,40 + 1808: 12,38 + 1809: 10,38 + 1810: 10,38 + 1811: 6,39 + 1812: 0,39 + 2103: 24,45 + 2104: 30,45 + 2105: 26,44 + 2106: 27,43 + 2107: 30,43 + 2108: 29,42 + 2109: 28,47 + - node: + cleanable: True + color: '#A4610696' + id: DirtMedium + decals: + 1813: 0,35 + 1814: 0,39 + 1815: 6,39 + 1816: 3,43 + 1817: 1,45 + 1818: 11,45 + 1819: 11,42 + 1820: 14,45 + 1821: 16,45 + 1822: 21,45 + 1823: 22,45 + 1824: 21,38 + 1825: 20,38 + 1826: 20,38 + 1827: 24,38 + 1828: 30,39 + 1829: 34,35 + 1830: 33,36 + 1831: 33,34 + 1832: 24,34 + 1833: 20,34 + 1834: 22,35 + 1835: 17,35 + 1836: 16,34 + 1837: 17,36 + 1838: 12,35 + 1839: 10,35 + 1840: 5,35 + 1841: 0,35 + 1842: 1,31 + 1843: 2,31 + 1844: 11,31 + 1845: 9,26 + 1846: 8,26 + 1847: 9,27 + 1848: 9,28 + 1849: 10,26 + 1850: 10,25 + 1851: 9,25 + 1852: 13,26 + 1853: 12,26 + 1854: 13,28 + 1855: 14,26 + 1856: 17,24 + 1857: 18,26 + 1858: 17,28 + 1859: 16,26 + 1860: 22,26 + 1861: 20,26 + 1862: 25,27 + 1863: 24,27 + 1864: 24,28 + 1865: 24,25 + 1866: 25,25 + 1867: 25,24 + 1868: 24,24 + 1869: 26,25 + 1870: 26,26 + 1871: 25,26 + 1872: 24,26 + 1873: 24,26 + 1874: 25,26 + 1875: 25,26 + 1876: 28,26 + 1877: 30,26 + 1878: 29,27 + 1879: 29,25 + 1880: 33,26 + 1881: 34,26 + 1882: 34,28 + 1883: 32,28 + 1884: 34,28 + 1885: 32,20 + 1886: 31,20 + 1887: 30,20 + 1888: 30,18 + 1889: 34,18 + 1890: 34,21 + 1891: 25,18 + 1892: 26,18 + 1893: 25,18 + 1894: 27,20 + 1895: 27,22 + 1896: 29,15 + 1897: 30,14 + 1898: 29,12 + 1899: 24,14 + 1900: 24,15 + 1901: 24,16 + 1902: 20,20 + 1903: 17,20 + 1904: 19,21 + 1905: 18,20 + 1906: 21,22 + 1907: 22,20 + 1908: 22,21 + 1909: 20,19 + 1910: 15,20 + 1911: 14,21 + 1912: 15,21 + 1913: 16,21 + 1914: 14,22 + 1915: 12,20 + 1916: 14,18 + 1917: 15,18 + 1918: 16,19 + 1919: 16,19 + 1920: 13,19 + 1921: 12,19 + 1922: 12,19 + 1923: 12,18 + 1924: 14,18 + 1925: 15,18 + 1926: 15,18 + 1927: 10,20 + 1928: 8,22 + 1929: 7,20 + 1930: 9,21 + 1931: 7,19 + 1932: 10,19 + 1933: 10,21 + 1934: 7,18 + 1935: 4,20 + 1936: 4,21 + 1937: 2,22 + 1938: 1,22 + 1939: 0,19 + 1940: 1,18 + 1941: 1,18 + 1942: 3,18 + 1943: 0,14 + 1944: 2,13 + 1945: 3,13 + 1946: 5,13 + 1947: 3,12 + 1948: 8,15 + 1949: 8,16 + 1950: 9,16 + 1951: 9,16 + 1952: 18,14 + 1953: 19,16 + 1954: 19,14 + 1955: 20,13 + 1956: 18,16 + 1957: 17,13 + 1958: 20,12 + 1959: 22,13 + 1960: 24,13 + 1961: 30,12 + 1962: 30,14 + 1963: 29,16 + 1964: 24,16 + 1965: 24,16 + 1966: 25,6 + 1967: 24,7 + 1968: 26,9 + 1969: 27,10 + 1970: 28,10 + 1971: 34,10 + 1972: 34,8 + 1973: 34,7 + 1974: 33,6 + 1975: 30,6 + 1976: 27,6 + 1977: 21,8 + 1978: 16,8 + 1979: 17,10 + 1980: 18,8 + 1981: 17,6 + 1982: 13,7 + 1983: 13,9 + 1984: 13,8 + 1985: 14,7 + 1986: 10,6 + 1987: 8,10 + 1988: 2,6 + 1989: 0,7 + 1990: 1,1 + 1991: 0,1 + 1992: 4,1 + 1993: 5,2 + 1994: 3,1 + 1995: 3,0 + 1996: 7,2 + 1997: 9,2 + 1998: 11,2 + 1999: 13,1 + 2000: 15,1 + 2001: 16,2 + 2002: 16,1 + 2003: 23,2 + 2004: 26,2 + 2005: 29,3 + 2006: 30,2 + 2007: 33,2 + 2008: 33,3 + 2009: 34,2 + 2010: 34,0 + 2011: 34,1 + 2012: 31,1 + 2013: 29,0 + 2014: 26,0 + 2015: 23,3 + 2016: 28,4 + 2087: 27,42 + 2088: 27,48 + 2089: 24,45 + 2090: 30,45 + 2091: 28,45 + 2092: 26,45 + 2093: 28,47 + 2094: 27,44 + 2110: 24,45 + 2111: 27,48 + 2112: 27,45 + 2113: 26,46 + 2114: 26,42 + 2115: 25,42 + 2116: 25,47 + 2117: 25,47 + 2118: 26,48 + 2119: 26,47 + 2120: 26,47 + 2121: 26,43 + 2122: 26,43 + 2123: 27,43 + 2124: 6,1 + 2125: 10,3 + - node: + color: '#D4D4D41B' + id: FullTileOverlayGreyscale + decals: + 1313: 31,4 + 1314: 31,3 + 1315: 31,2 + 1316: 31,1 + 1317: 31,0 + - node: + color: '#D4D4D433' + id: FullTileOverlayGreyscale + decals: + 1318: 32,0 + 1319: 32,1 + 1320: 32,2 + 1321: 32,3 + 1322: 32,4 + - node: + color: '#D4D4D44C' + id: FullTileOverlayGreyscale + decals: + 1323: 33,0 + 1324: 33,1 + 1325: 33,2 + 1326: 33,3 + 1327: 33,4 + - node: + color: '#D4D4D40C' + id: HalfTileOverlayGreyscale + decals: + 923: 3,47 + - node: + color: '#D4D4D419' + id: HalfTileOverlayGreyscale + decals: + 893: 3,43 + - node: + color: '#D4D4D40C' + id: HalfTileOverlayGreyscale180 + decals: + 924: 3,43 + - node: + color: '#D4D4D419' + id: HalfTileOverlayGreyscale180 + decals: + 894: 3,47 + - node: + color: '#D4D4D40C' + id: HalfTileOverlayGreyscale270 + decals: + 910: 30,2 + 911: 9,2 + 914: 2,6 + 915: 2,10 + 918: 2,31 + 922: 1,45 + - node: + color: '#D4D4D419' + id: HalfTileOverlayGreyscale270 + decals: + 882: 7,2 + 883: 8,6 + 884: 8,10 + 888: 10,31 + 889: 33,34 + 890: 33,36 + 891: 5,45 + - node: + color: '#D4D4D40C' + id: HalfTileOverlayGreyscale90 + decals: + 912: 7,2 + 913: 8,6 + 916: 8,10 + 917: 10,31 + 919: 33,34 + 920: 33,36 + 921: 5,45 + - node: + color: '#D4D4D419' + id: HalfTileOverlayGreyscale90 + decals: + 880: 30,2 + 881: 9,2 + 885: 2,6 + 886: 2,10 + 887: 2,31 + 892: 1,45 + - node: + color: '#9FED5896' + id: MiniTileCheckerAOverlay + decals: + 2028: 28,42 + 2029: 29,42 + 2030: 30,42 + 2031: 28,43 + 2032: 29,43 + 2033: 30,43 + 2034: 28,44 + 2035: 29,44 + 2036: 30,44 + - node: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + decals: + 0: 7,19 + 1: 8,19 + 2: 9,19 + 3: 9,20 + 4: 8,20 + 5: 7,20 + 6: 7,21 + 7: 8,21 + 8: 9,21 + 9: 19,19 + 10: 20,19 + 11: 21,19 + 12: 21,20 + 13: 20,20 + 14: 19,20 + 15: 19,21 + 16: 20,21 + 17: 21,21 + 18: 17,15 + 19: 17,14 + 20: 17,13 + 21: 18,13 + 22: 19,13 + 23: 20,13 + 24: 21,13 + 25: 21,14 + 26: 21,15 + 27: 20,15 + 28: 19,15 + 29: 18,15 + 30: 18,14 + 31: 19,14 + 32: 20,9 + 33: 21,9 + 34: 22,9 + 35: 22,8 + 36: 22,7 + 37: 21,7 + 38: 21,8 + 39: 20,8 + 40: 20,7 + 41: 12,7 + 42: 13,7 + 43: 14,7 + 44: 14,8 + 45: 13,8 + 46: 12,8 + 47: 12,9 + 48: 13,9 + 49: 14,9 + 59: 17,39 + 60: 18,39 + 61: 19,39 + 62: 20,39 + 63: 21,39 + 64: 16,36 + 65: 16,35 + 66: 16,34 + 67: 17,34 + 68: 18,34 + 69: 18,35 + 70: 17,35 + 71: 17,36 + 72: 18,36 + - node: + color: '#FFFFFFFF' + id: MiniTileCheckerAOverlay + decals: + 2052: 28,46 + 2053: 28,47 + 2054: 29,47 + 2055: 29,46 + - node: + color: '#9FED5896' + id: MiniTileCheckerBOverlay + decals: + 50: 31,21 + 51: 31,20 + 52: 31,19 + 53: 33,21 + 54: 33,20 + 55: 33,19 + - node: + color: '#DE3A3A96' + id: MiniTileCheckerBOverlay + decals: + 56: 32,21 + 57: 32,20 + 58: 32,19 + - node: + color: '#DE3A3A96' + id: StandClearGreyscale + decals: + 751: 26,7 + 752: 32,7 + 753: 29,9 + 838: 6,2 + 839: 10,2 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 605: 13,40 + 747: 34,10 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 606: 9,40 + 741: 24,10 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 604: 13,38 + 746: 34,6 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 598: 9,38 + 740: 24,6 + - node: + color: '#FFFFFFFF' + id: WarnFull + decals: + 657: 32,35 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 607: 13,39 + 644: 26,34 + 645: 26,35 + 646: 26,36 + 744: 34,7 + 745: 34,9 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleE + decals: + 112: 18,26 + 117: 14,26 + 118: 22,26 + 121: 22,35 + 122: 22,39 + 128: 14,39 + 131: 6,39 + 132: 12,31 + 135: 26,31 + 140: 26,26 + 145: 30,26 + 146: 34,26 + 153: 2,26 + 159: 4,20 + 160: 10,20 + 166: 16,20 + 170: 22,20 + 175: 34,20 + 176: 22,14 + 183: 6,14 + 184: 10,8 + 188: 16,2 + 190: 34,2 + 205: 21,2 + 213: 34,8 + 214: 30,14 + 219: 34,35 + 223: 30,39 + 224: 22,45 + 227: 14,45 + 230: 6,45 + 235: 10,35 + 834: 5,2 + 2018: 30,45 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleN + decals: + 111: 17,28 + 116: 13,28 + 125: 19,40 + 126: 11,40 + 138: 21,28 + 144: 29,28 + 154: 1,28 + 158: 2,22 + 161: 8,22 + 165: 14,22 + 171: 20,22 + 173: 32,22 + 179: 19,16 + 180: 3,16 + 186: 17,10 + 209: 26,4 + 210: 29,10 + 217: 26,22 + 220: 29,36 + 228: 11,48 + 233: 3,48 + 237: 5,28 + 2020: 27,48 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 667: 27,35 + 668: 28,35 + 669: 29,35 + 670: 30,35 + 671: 31,35 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleS + decals: + 110: 17,24 + 115: 13,24 + 124: 19,38 + 127: 11,38 + 136: 20,30 + 137: 21,24 + 139: 25,24 + 143: 29,24 + 148: 33,24 + 149: 32,28 + 150: 33,28 + 151: 34,28 + 152: 1,24 + 157: 2,18 + 163: 8,18 + 164: 14,18 + 169: 20,18 + 172: 32,18 + 177: 19,12 + 181: 3,12 + 187: 17,6 + 208: 26,0 + 211: 29,6 + 216: 26,18 + 221: 29,34 + 229: 11,42 + 231: 3,42 + 236: 5,24 + 2019: 27,42 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleS + decals: + 662: 27,35 + 663: 28,35 + 664: 29,35 + 665: 30,35 + 666: 31,35 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleW + decals: + 113: 16,26 + 114: 12,26 + 119: 20,26 + 120: 12,35 + 123: 16,39 + 129: 8,39 + 130: 0,39 + 133: 0,31 + 134: 14,31 + 141: 24,26 + 142: 28,26 + 147: 32,26 + 155: 0,26 + 156: 0,20 + 162: 6,20 + 167: 12,20 + 168: 18,20 + 174: 30,20 + 178: 16,14 + 182: 0,14 + 185: 0,8 + 189: 0,2 + 206: 18,2 + 207: 23,2 + 212: 24,8 + 215: 24,14 + 218: 24,35 + 222: 24,39 + 225: 16,45 + 226: 8,45 + 232: 0,45 + 234: 0,35 + 835: 11,2 + 2017: 24,45 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 601: 10,38 + 602: 12,38 + 647: 27,34 + 648: 28,34 + 649: 30,34 + 650: 31,34 + 651: 32,34 + 732: 28,6 + 733: 27,6 + 734: 26,6 + 735: 25,6 + 736: 30,6 + 737: 31,6 + 738: 32,6 + 739: 33,6 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 603: 9,39 + 742: 24,7 + 743: 24,9 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 599: 10,40 + 600: 12,40 + 652: 27,36 + 653: 28,36 + 654: 30,36 + 655: 31,36 + 656: 32,36 + 724: 25,10 + 725: 26,10 + 726: 28,10 + 727: 27,10 + 728: 30,10 + 729: 31,10 + 730: 32,10 + 731: 33,10 + - node: + cleanable: True + color: '#80C71F7F' + id: revolution + decals: + 2138: 14.060958,20.754644 + 2139: 13.607299,19.803425 + - node: + cleanable: True + color: '#B02E60A3' + id: revolution + decals: + 2137: 25.02975,25.438416 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#B02E2644' + id: splatter + decals: + 2131: 27.967218,24.104916 + - node: + cleanable: True + color: '#B02E2666' + id: splatter + decals: + 2126: 8.891183,43.065514 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#B02E266F' + id: splatter + decals: + 2132: 28.36234,24.163452 + 2133: 32.200607,35.087025 + 2134: 13.24002,46.473877 + 2135: 24.497486,47.84553 + - node: + cleanable: True + angle: -4.71238898038469 rad + color: '#B02E26B4' + id: splatter + decals: + 2128: 8.788744,42.524048 + 2129: 15.538555,20.953827 + 2130: 24.864944,27.488853 + - node: + cleanable: True + angle: -3.141592653589793 rad + color: '#B02E26B4' + id: splatter + decals: + 2127: 9.110695,42.81673 + - type: RadiationGridResistance + - type: LoadedMap + - type: SpreaderGrid + - type: GridTree + - type: MovedGrids + - type: GridPathfinding +- proto: AirlockBrigGlassLocked + entities: + - uid: 1245 + components: + - type: Transform + pos: 15.5,35.5 + parent: 588 + - uid: 1246 + components: + - type: Transform + pos: 19.5,35.5 + parent: 588 + - uid: 1625 + components: + - type: Transform + pos: 22.5,2.5 + parent: 588 +- proto: AirlockEngineering + entities: + - uid: 1515 + components: + - type: Transform + pos: 19.5,43.5 + parent: 588 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 1579 + components: + - type: Transform + pos: 11.5,15.5 + parent: 588 + - uid: 1609 + components: + - type: Transform + pos: 15.5,8.5 + parent: 588 + - uid: 1610 + components: + - type: Transform + pos: 19.5,8.5 + parent: 588 + - uid: 1623 + components: + - type: Transform + pos: 6.5,2.5 + parent: 588 + - uid: 1624 + components: + - type: Transform + pos: 10.5,2.5 + parent: 588 +- proto: APCBasic + entities: + - uid: 484 + components: + - type: Transform + pos: 25.5,13.5 + parent: 588 + - uid: 773 + components: + - type: Transform + pos: 25.5,19.5 + parent: 588 + - uid: 973 + components: + - type: Transform + pos: 21.5,32.5 + parent: 588 + - uid: 1509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,47.5 + parent: 588 +- proto: BannerSecurity + entities: + - uid: 553 + components: + - type: Transform + pos: 30.5,8.5 + parent: 588 + - uid: 1619 + components: + - type: Transform + pos: 18.5,10.5 + parent: 588 + - uid: 1620 + components: + - type: Transform + pos: 16.5,6.5 + parent: 588 +- proto: BasaltFive + entities: + - uid: 608 + components: + - type: Transform + pos: 2.5,14.5 + parent: 588 + - uid: 647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 588 + - uid: 899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,30.5 + parent: 588 + - uid: 1264 + components: + - type: Transform + pos: 9.5,0.5 + parent: 588 + - uid: 1384 + components: + - type: Transform + pos: 5.5,48.5 + parent: 588 + - uid: 1386 + components: + - type: Transform + pos: 0.5,47.5 + parent: 588 + - uid: 1387 + components: + - type: Transform + pos: 0.5,42.5 + parent: 588 + - uid: 1388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,42.5 + parent: 588 +- proto: BasaltFour + entities: + - uid: 900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,32.5 + parent: 588 + - uid: 904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,40.5 + parent: 588 + - uid: 1381 + components: + - type: Transform + pos: 1.5,44.5 + parent: 588 + - uid: 1385 + components: + - type: Transform + pos: 6.5,48.5 + parent: 588 +- proto: BasaltOne + entities: + - uid: 813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,27.5 + parent: 588 + - uid: 897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,30.5 + parent: 588 + - uid: 901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,32.5 + parent: 588 + - uid: 903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,38.5 + parent: 588 + - uid: 1382 + components: + - type: Transform + pos: 1.5,48.5 + parent: 588 +- proto: BasaltRandom + entities: + - uid: 613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 588 + - uid: 615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,7.5 + parent: 588 +- proto: BasaltThree + entities: + - uid: 616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,7.5 + parent: 588 + - uid: 644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,20.5 + parent: 588 + - uid: 898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,30.5 + parent: 588 + - uid: 905 + components: + - type: Transform + pos: 4.5,38.5 + parent: 588 + - uid: 1265 + components: + - type: Transform + pos: 7.5,1.5 + parent: 588 + - uid: 1266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 588 + - uid: 1383 + components: + - type: Transform + pos: 6.5,47.5 + parent: 588 +- proto: BasaltTwo + entities: + - uid: 610 + components: + - type: Transform + pos: 3.5,14.5 + parent: 588 + - uid: 617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 588 + - uid: 618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 588 + - uid: 646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,19.5 + parent: 588 + - uid: 814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,26.5 + parent: 588 + - uid: 896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,32.5 + parent: 588 + - uid: 902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,38.5 + parent: 588 + - uid: 1263 + components: + - type: Transform + pos: 7.5,4.5 + parent: 588 + - uid: 1380 + components: + - type: Transform + pos: 1.5,43.5 + parent: 588 +- proto: Bed + entities: + - uid: 257 + components: + - type: Transform + pos: 15.5,4.5 + parent: 588 + - uid: 282 + components: + - type: Transform + pos: 1.5,4.5 + parent: 588 + - uid: 293 + components: + - type: Transform + pos: 3.5,4.5 + parent: 588 + - uid: 294 + components: + - type: Transform + pos: 5.5,4.5 + parent: 588 + - uid: 295 + components: + - type: Transform + pos: 11.5,4.5 + parent: 588 + - uid: 296 + components: + - type: Transform + pos: 13.5,4.5 + parent: 588 + - uid: 700 + components: + - type: Transform + pos: 12.5,22.5 + parent: 588 + - uid: 701 + components: + - type: Transform + pos: 16.5,18.5 + parent: 588 + - uid: 1043 + components: + - type: Transform + pos: 20.5,28.5 + parent: 588 + - uid: 1044 + components: + - type: Transform + pos: 22.5,24.5 + parent: 588 + - uid: 1075 + components: + - type: Transform + pos: 24.5,28.5 + parent: 588 + - uid: 1099 + components: + - type: Transform + pos: 20.5,36.5 + parent: 588 + - uid: 1100 + components: + - type: Transform + pos: 14.5,34.5 + parent: 588 + - uid: 1763 + components: + - type: Transform + pos: 24.5,48.5 + parent: 588 + - uid: 1764 + components: + - type: Transform + pos: 24.5,42.5 + parent: 588 +- proto: BedsheetMedical + entities: + - uid: 1150 + components: + - type: Transform + pos: 28.5,24.5 + parent: 588 + - uid: 1151 + components: + - type: Transform + pos: 28.5,25.5 + parent: 588 +- proto: BedsheetOrange + entities: + - uid: 298 + components: + - type: Transform + pos: 3.5,4.5 + parent: 588 + - uid: 299 + components: + - type: Transform + pos: 5.5,4.5 + parent: 588 + - uid: 300 + components: + - type: Transform + pos: 13.5,4.5 + parent: 588 + - uid: 1765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,42.5 + parent: 588 +- proto: BedsheetSpawner + entities: + - uid: 301 + components: + - type: Transform + pos: 11.5,4.5 + parent: 588 + - uid: 1041 + components: + - type: Transform + pos: 20.5,28.5 + parent: 588 + - uid: 1225 + components: + - type: Transform + pos: 14.5,34.5 + parent: 588 + - uid: 1226 + components: + - type: Transform + pos: 20.5,36.5 + parent: 588 +- proto: BedsheetSyndie + entities: + - uid: 1037 + components: + - type: Transform + pos: 22.5,24.5 + parent: 588 + - uid: 1766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,48.5 + parent: 588 +- proto: BlastDoor + entities: + - uid: 1600 + components: + - type: Transform + pos: 26.5,7.5 + parent: 588 + - uid: 1601 + components: + - type: Transform + pos: 29.5,9.5 + parent: 588 + - uid: 1602 + components: + - type: Transform + pos: 32.5,7.5 + parent: 588 +- proto: Bola + entities: + - uid: 1157 + components: + - type: Transform + pos: 15.616387,0.61007345 + parent: 588 +- proto: BookEscalationSecurity + entities: + - uid: 373 + components: + - type: Transform + pos: 19.42657,0.6288943 + parent: 588 +- proto: BookRandom + entities: + - uid: 1835 + components: + - type: Transform + pos: 24.420084,44.539436 + parent: 588 +- proto: BookSecurity + entities: + - uid: 522 + components: + - type: Transform + pos: 32.41844,8.400207 + parent: 588 +- proto: BoxFolderBlack + entities: + - uid: 365 + components: + - type: Transform + pos: 27.841173,1.5632035 + parent: 588 + - uid: 728 + components: + - type: Transform + pos: 10.690479,19.262342 + parent: 588 +- proto: BoxFolderGrey + entities: + - uid: 364 + components: + - type: Transform + pos: 25.072409,1.4780562 + parent: 588 + - uid: 727 + components: + - type: Transform + pos: 7.2148314,22.575037 + parent: 588 +- proto: BoxFolderRed + entities: + - uid: 329 + components: + - type: Transform + pos: 21.42984,3.6329575 + parent: 588 + - uid: 362 + components: + - type: Transform + pos: 24.788435,1.6057768 + parent: 588 + - uid: 363 + components: + - type: Transform + pos: 28.196142,1.5773941 + parent: 588 + - uid: 726 + components: + - type: Transform + pos: 10.428753,19.429379 + parent: 588 +- proto: BoxMouthSwab + entities: + - uid: 1476 + components: + - type: Transform + pos: 12.356534,44.605965 + parent: 588 +- proto: BoxSterileMask + entities: + - uid: 1477 + components: + - type: Transform + pos: 12.683106,44.705303 + parent: 588 +- proto: BriefcaseBrownFilled + entities: + - uid: 325 + components: + - type: Transform + pos: 19.413612,4.6972914 + parent: 588 +- proto: BrokenBottle + entities: + - uid: 1691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.063513,27.520548 + parent: 588 +- proto: Bucket + entities: + - uid: 1839 + components: + - type: Transform + pos: 29.616838,43.531868 + parent: 588 + - uid: 1857 + components: + - type: Transform + pos: 30.264944,21.705044 + parent: 588 +- proto: CableApcExtension + entities: + - uid: 1 + components: + - type: Transform + pos: 0.5,2.5 + parent: 588 + - uid: 2 + components: + - type: Transform + pos: 1.5,2.5 + parent: 588 + - uid: 3 + components: + - type: Transform + pos: 2.5,2.5 + parent: 588 + - uid: 4 + components: + - type: Transform + pos: 3.5,2.5 + parent: 588 + - uid: 5 + components: + - type: Transform + pos: 4.5,2.5 + parent: 588 + - uid: 6 + components: + - type: Transform + pos: 5.5,2.5 + parent: 588 + - uid: 7 + components: + - type: Transform + pos: 6.5,2.5 + parent: 588 + - uid: 8 + components: + - type: Transform + pos: 7.5,2.5 + parent: 588 + - uid: 9 + components: + - type: Transform + pos: 8.5,2.5 + parent: 588 + - uid: 10 + components: + - type: Transform + pos: 9.5,2.5 + parent: 588 + - uid: 11 + components: + - type: Transform + pos: 10.5,2.5 + parent: 588 + - uid: 12 + components: + - type: Transform + pos: 11.5,2.5 + parent: 588 + - uid: 13 + components: + - type: Transform + pos: 12.5,2.5 + parent: 588 + - uid: 14 + components: + - type: Transform + pos: 13.5,2.5 + parent: 588 + - uid: 15 + components: + - type: Transform + pos: 14.5,2.5 + parent: 588 + - uid: 16 + components: + - type: Transform + pos: 15.5,2.5 + parent: 588 + - uid: 17 + components: + - type: Transform + pos: 16.5,2.5 + parent: 588 + - uid: 18 + components: + - type: Transform + pos: 8.5,4.5 + parent: 588 + - uid: 19 + components: + - type: Transform + pos: 8.5,3.5 + parent: 588 + - uid: 20 + components: + - type: Transform + pos: 8.5,1.5 + parent: 588 + - uid: 21 + components: + - type: Transform + pos: 8.5,0.5 + parent: 588 + - uid: 22 + components: + - type: Transform + pos: 18.5,2.5 + parent: 588 + - uid: 23 + components: + - type: Transform + pos: 19.5,2.5 + parent: 588 + - uid: 24 + components: + - type: Transform + pos: 20.5,2.5 + parent: 588 + - uid: 25 + components: + - type: Transform + pos: 21.5,2.5 + parent: 588 + - uid: 26 + components: + - type: Transform + pos: 22.5,2.5 + parent: 588 + - uid: 27 + components: + - type: Transform + pos: 23.5,2.5 + parent: 588 + - uid: 28 + components: + - type: Transform + pos: 24.5,2.5 + parent: 588 + - uid: 29 + components: + - type: Transform + pos: 25.5,2.5 + parent: 588 + - uid: 30 + components: + - type: Transform + pos: 26.5,2.5 + parent: 588 + - uid: 31 + components: + - type: Transform + pos: 27.5,2.5 + parent: 588 + - uid: 32 + components: + - type: Transform + pos: 28.5,2.5 + parent: 588 + - uid: 33 + components: + - type: Transform + pos: 29.5,2.5 + parent: 588 + - uid: 34 + components: + - type: Transform + pos: 30.5,2.5 + parent: 588 + - uid: 35 + components: + - type: Transform + pos: 31.5,2.5 + parent: 588 + - uid: 36 + components: + - type: Transform + pos: 32.5,2.5 + parent: 588 + - uid: 37 + components: + - type: Transform + pos: 33.5,2.5 + parent: 588 + - uid: 38 + components: + - type: Transform + pos: 34.5,2.5 + parent: 588 + - uid: 39 + components: + - type: Transform + pos: 26.5,4.5 + parent: 588 + - uid: 40 + components: + - type: Transform + pos: 26.5,3.5 + parent: 588 + - uid: 41 + components: + - type: Transform + pos: 26.5,1.5 + parent: 588 + - uid: 42 + components: + - type: Transform + pos: 26.5,0.5 + parent: 588 + - uid: 43 + components: + - type: Transform + pos: 0.5,8.5 + parent: 588 + - uid: 44 + components: + - type: Transform + pos: 1.5,8.5 + parent: 588 + - uid: 52 + components: + - type: Transform + pos: 9.5,8.5 + parent: 588 + - uid: 53 + components: + - type: Transform + pos: 10.5,8.5 + parent: 588 + - uid: 54 + components: + - type: Transform + pos: 5.5,10.5 + parent: 588 + - uid: 57 + components: + - type: Transform + pos: 5.5,6.5 + parent: 588 + - uid: 58 + components: + - type: Transform + pos: 17.5,6.5 + parent: 588 + - uid: 59 + components: + - type: Transform + pos: 17.5,7.5 + parent: 588 + - uid: 60 + components: + - type: Transform + pos: 17.5,8.5 + parent: 588 + - uid: 61 + components: + - type: Transform + pos: 17.5,9.5 + parent: 588 + - uid: 62 + components: + - type: Transform + pos: 17.5,10.5 + parent: 588 + - uid: 63 + components: + - type: Transform + pos: 12.5,8.5 + parent: 588 + - uid: 64 + components: + - type: Transform + pos: 13.5,8.5 + parent: 588 + - uid: 65 + components: + - type: Transform + pos: 14.5,8.5 + parent: 588 + - uid: 66 + components: + - type: Transform + pos: 15.5,8.5 + parent: 588 + - uid: 67 + components: + - type: Transform + pos: 16.5,8.5 + parent: 588 + - uid: 68 + components: + - type: Transform + pos: 18.5,8.5 + parent: 588 + - uid: 69 + components: + - type: Transform + pos: 19.5,8.5 + parent: 588 + - uid: 70 + components: + - type: Transform + pos: 20.5,8.5 + parent: 588 + - uid: 71 + components: + - type: Transform + pos: 21.5,8.5 + parent: 588 + - uid: 72 + components: + - type: Transform + pos: 22.5,8.5 + parent: 588 + - uid: 73 + components: + - type: Transform + pos: 22.5,14.5 + parent: 588 + - uid: 74 + components: + - type: Transform + pos: 21.5,14.5 + parent: 588 + - uid: 75 + components: + - type: Transform + pos: 20.5,14.5 + parent: 588 + - uid: 76 + components: + - type: Transform + pos: 19.5,14.5 + parent: 588 + - uid: 77 + components: + - type: Transform + pos: 18.5,14.5 + parent: 588 + - uid: 78 + components: + - type: Transform + pos: 17.5,14.5 + parent: 588 + - uid: 79 + components: + - type: Transform + pos: 16.5,14.5 + parent: 588 + - uid: 80 + components: + - type: Transform + pos: 19.5,13.5 + parent: 588 + - uid: 81 + components: + - type: Transform + pos: 19.5,12.5 + parent: 588 + - uid: 82 + components: + - type: Transform + pos: 19.5,15.5 + parent: 588 + - uid: 83 + components: + - type: Transform + pos: 19.5,16.5 + parent: 588 + - uid: 84 + components: + - type: Transform + pos: 14.5,14.5 + parent: 588 + - uid: 85 + components: + - type: Transform + pos: 13.5,14.5 + parent: 588 + - uid: 86 + components: + - type: Transform + pos: 12.5,14.5 + parent: 588 + - uid: 87 + components: + - type: Transform + pos: 11.5,14.5 + parent: 588 + - uid: 88 + components: + - type: Transform + pos: 10.5,14.5 + parent: 588 + - uid: 89 + components: + - type: Transform + pos: 9.5,14.5 + parent: 588 + - uid: 90 + components: + - type: Transform + pos: 8.5,14.5 + parent: 588 + - uid: 91 + components: + - type: Transform + pos: 11.5,13.5 + parent: 588 + - uid: 92 + components: + - type: Transform + pos: 11.5,12.5 + parent: 588 + - uid: 93 + components: + - type: Transform + pos: 11.5,15.5 + parent: 588 + - uid: 94 + components: + - type: Transform + pos: 11.5,16.5 + parent: 588 + - uid: 95 + components: + - type: Transform + pos: 6.5,14.5 + parent: 588 + - uid: 96 + components: + - type: Transform + pos: 5.5,14.5 + parent: 588 + - uid: 98 + components: + - type: Transform + pos: 4.5,22.5 + parent: 588 + - uid: 100 + components: + - type: Transform + pos: 1.5,14.5 + parent: 588 + - uid: 101 + components: + - type: Transform + pos: 0.5,14.5 + parent: 588 + - uid: 102 + components: + - type: Transform + pos: 3.5,15.5 + parent: 588 + - uid: 103 + components: + - type: Transform + pos: 3.5,16.5 + parent: 588 + - uid: 104 + components: + - type: Transform + pos: 3.5,13.5 + parent: 588 + - uid: 105 + components: + - type: Transform + pos: 3.5,12.5 + parent: 588 + - uid: 106 + components: + - type: Transform + pos: 14.5,18.5 + parent: 588 + - uid: 107 + components: + - type: Transform + pos: 14.5,19.5 + parent: 588 + - uid: 108 + components: + - type: Transform + pos: 14.5,20.5 + parent: 588 + - uid: 109 + components: + - type: Transform + pos: 14.5,21.5 + parent: 588 + - uid: 110 + components: + - type: Transform + pos: 14.5,22.5 + parent: 588 + - uid: 111 + components: + - type: Transform + pos: 15.5,20.5 + parent: 588 + - uid: 112 + components: + - type: Transform + pos: 16.5,20.5 + parent: 588 + - uid: 113 + components: + - type: Transform + pos: 13.5,20.5 + parent: 588 + - uid: 114 + components: + - type: Transform + pos: 12.5,20.5 + parent: 588 + - uid: 115 + components: + - type: Transform + pos: 8.5,18.5 + parent: 588 + - uid: 116 + components: + - type: Transform + pos: 8.5,19.5 + parent: 588 + - uid: 117 + components: + - type: Transform + pos: 8.5,20.5 + parent: 588 + - uid: 118 + components: + - type: Transform + pos: 8.5,21.5 + parent: 588 + - uid: 119 + components: + - type: Transform + pos: 8.5,22.5 + parent: 588 + - uid: 120 + components: + - type: Transform + pos: 9.5,20.5 + parent: 588 + - uid: 121 + components: + - type: Transform + pos: 10.5,20.5 + parent: 588 + - uid: 122 + components: + - type: Transform + pos: 7.5,20.5 + parent: 588 + - uid: 123 + components: + - type: Transform + pos: 6.5,20.5 + parent: 588 + - uid: 124 + components: + - type: Transform + pos: 2.5,22.5 + parent: 588 + - uid: 125 + components: + - type: Transform + pos: 4.5,21.5 + parent: 588 + - uid: 126 + components: + - type: Transform + pos: 4.5,19.5 + parent: 588 + - uid: 127 + components: + - type: Transform + pos: 3.5,18.5 + parent: 588 + - uid: 128 + components: + - type: Transform + pos: 2.5,18.5 + parent: 588 + - uid: 129 + components: + - type: Transform + pos: 3.5,22.5 + parent: 588 + - uid: 130 + components: + - type: Transform + pos: 0.5,20.5 + parent: 588 + - uid: 131 + components: + - type: Transform + pos: 4.5,18.5 + parent: 588 + - uid: 132 + components: + - type: Transform + pos: 4.5,20.5 + parent: 588 + - uid: 133 + components: + - type: Transform + pos: 1.5,24.5 + parent: 588 + - uid: 134 + components: + - type: Transform + pos: 2.5,25.5 + parent: 588 + - uid: 135 + components: + - type: Transform + pos: 0.5,24.5 + parent: 588 + - uid: 136 + components: + - type: Transform + pos: 2.5,24.5 + parent: 588 + - uid: 137 + components: + - type: Transform + pos: 1.5,28.5 + parent: 588 + - uid: 138 + components: + - type: Transform + pos: 0.5,26.5 + parent: 588 + - uid: 139 + components: + - type: Transform + pos: 2.5,26.5 + parent: 588 + - uid: 147 + components: + - type: Transform + pos: 9.5,28.5 + parent: 588 + - uid: 148 + components: + - type: Transform + pos: 9.5,27.5 + parent: 588 + - uid: 149 + components: + - type: Transform + pos: 9.5,26.5 + parent: 588 + - uid: 150 + components: + - type: Transform + pos: 9.5,25.5 + parent: 588 + - uid: 151 + components: + - type: Transform + pos: 9.5,24.5 + parent: 588 + - uid: 152 + components: + - type: Transform + pos: 8.5,26.5 + parent: 588 + - uid: 153 + components: + - type: Transform + pos: 10.5,26.5 + parent: 588 + - uid: 154 + components: + - type: Transform + pos: 13.5,28.5 + parent: 588 + - uid: 155 + components: + - type: Transform + pos: 13.5,27.5 + parent: 588 + - uid: 156 + components: + - type: Transform + pos: 13.5,26.5 + parent: 588 + - uid: 157 + components: + - type: Transform + pos: 13.5,25.5 + parent: 588 + - uid: 158 + components: + - type: Transform + pos: 13.5,24.5 + parent: 588 + - uid: 159 + components: + - type: Transform + pos: 12.5,26.5 + parent: 588 + - uid: 160 + components: + - type: Transform + pos: 14.5,26.5 + parent: 588 + - uid: 161 + components: + - type: Transform + pos: 0.5,31.5 + parent: 588 + - uid: 162 + components: + - type: Transform + pos: 1.5,31.5 + parent: 588 + - uid: 163 + components: + - type: Transform + pos: 2.5,31.5 + parent: 588 + - uid: 164 + components: + - type: Transform + pos: 3.5,31.5 + parent: 588 + - uid: 165 + components: + - type: Transform + pos: 4.5,31.5 + parent: 588 + - uid: 166 + components: + - type: Transform + pos: 5.5,31.5 + parent: 588 + - uid: 167 + components: + - type: Transform + pos: 6.5,31.5 + parent: 588 + - uid: 168 + components: + - type: Transform + pos: 7.5,31.5 + parent: 588 + - uid: 169 + components: + - type: Transform + pos: 8.5,31.5 + parent: 588 + - uid: 170 + components: + - type: Transform + pos: 9.5,31.5 + parent: 588 + - uid: 171 + components: + - type: Transform + pos: 10.5,31.5 + parent: 588 + - uid: 172 + components: + - type: Transform + pos: 11.5,31.5 + parent: 588 + - uid: 173 + components: + - type: Transform + pos: 12.5,31.5 + parent: 588 + - uid: 174 + components: + - type: Transform + pos: 6.5,30.5 + parent: 588 + - uid: 175 + components: + - type: Transform + pos: 6.5,32.5 + parent: 588 + - uid: 176 + components: + - type: Transform + pos: 26.5,31.5 + parent: 588 + - uid: 177 + components: + - type: Transform + pos: 25.5,31.5 + parent: 588 + - uid: 178 + components: + - type: Transform + pos: 24.5,31.5 + parent: 588 + - uid: 179 + components: + - type: Transform + pos: 23.5,31.5 + parent: 588 + - uid: 180 + components: + - type: Transform + pos: 22.5,31.5 + parent: 588 + - uid: 181 + components: + - type: Transform + pos: 21.5,31.5 + parent: 588 + - uid: 182 + components: + - type: Transform + pos: 20.5,31.5 + parent: 588 + - uid: 183 + components: + - type: Transform + pos: 19.5,31.5 + parent: 588 + - uid: 184 + components: + - type: Transform + pos: 18.5,31.5 + parent: 588 + - uid: 185 + components: + - type: Transform + pos: 17.5,31.5 + parent: 588 + - uid: 186 + components: + - type: Transform + pos: 16.5,31.5 + parent: 588 + - uid: 187 + components: + - type: Transform + pos: 15.5,31.5 + parent: 588 + - uid: 188 + components: + - type: Transform + pos: 14.5,31.5 + parent: 588 + - uid: 189 + components: + - type: Transform + pos: 20.5,32.5 + parent: 588 + - uid: 190 + components: + - type: Transform + pos: 20.5,30.5 + parent: 588 + - uid: 191 + components: + - type: Transform + pos: 22.5,35.5 + parent: 588 + - uid: 192 + components: + - type: Transform + pos: 21.5,35.5 + parent: 588 + - uid: 193 + components: + - type: Transform + pos: 20.5,35.5 + parent: 588 + - uid: 194 + components: + - type: Transform + pos: 19.5,35.5 + parent: 588 + - uid: 195 + components: + - type: Transform + pos: 18.5,35.5 + parent: 588 + - uid: 196 + components: + - type: Transform + pos: 17.5,35.5 + parent: 588 + - uid: 197 + components: + - type: Transform + pos: 16.5,35.5 + parent: 588 + - uid: 198 + components: + - type: Transform + pos: 15.5,35.5 + parent: 588 + - uid: 199 + components: + - type: Transform + pos: 14.5,35.5 + parent: 588 + - uid: 200 + components: + - type: Transform + pos: 13.5,35.5 + parent: 588 + - uid: 201 + components: + - type: Transform + pos: 12.5,35.5 + parent: 588 + - uid: 202 + components: + - type: Transform + pos: 17.5,36.5 + parent: 588 + - uid: 203 + components: + - type: Transform + pos: 17.5,34.5 + parent: 588 + - uid: 204 + components: + - type: Transform + pos: 10.5,35.5 + parent: 588 + - uid: 215 + components: + - type: Transform + pos: 5.5,36.5 + parent: 588 + - uid: 216 + components: + - type: Transform + pos: 5.5,34.5 + parent: 588 + - uid: 217 + components: + - type: Transform + pos: 0.5,39.5 + parent: 588 + - uid: 218 + components: + - type: Transform + pos: 1.5,39.5 + parent: 588 + - uid: 219 + components: + - type: Transform + pos: 2.5,39.5 + parent: 588 + - uid: 220 + components: + - type: Transform + pos: 3.5,39.5 + parent: 588 + - uid: 221 + components: + - type: Transform + pos: 4.5,39.5 + parent: 588 + - uid: 222 + components: + - type: Transform + pos: 5.5,39.5 + parent: 588 + - uid: 223 + components: + - type: Transform + pos: 6.5,39.5 + parent: 588 + - uid: 224 + components: + - type: Transform + pos: 3.5,38.5 + parent: 588 + - uid: 225 + components: + - type: Transform + pos: 3.5,40.5 + parent: 588 + - uid: 226 + components: + - type: Transform + pos: 8.5,39.5 + parent: 588 + - uid: 227 + components: + - type: Transform + pos: 9.5,39.5 + parent: 588 + - uid: 228 + components: + - type: Transform + pos: 10.5,39.5 + parent: 588 + - uid: 229 + components: + - type: Transform + pos: 11.5,39.5 + parent: 588 + - uid: 230 + components: + - type: Transform + pos: 12.5,39.5 + parent: 588 + - uid: 231 + components: + - type: Transform + pos: 13.5,39.5 + parent: 588 + - uid: 232 + components: + - type: Transform + pos: 14.5,39.5 + parent: 588 + - uid: 233 + components: + - type: Transform + pos: 11.5,38.5 + parent: 588 + - uid: 234 + components: + - type: Transform + pos: 11.5,40.5 + parent: 588 + - uid: 235 + components: + - type: Transform + pos: 16.5,39.5 + parent: 588 + - uid: 236 + components: + - type: Transform + pos: 17.5,39.5 + parent: 588 + - uid: 237 + components: + - type: Transform + pos: 18.5,39.5 + parent: 588 + - uid: 238 + components: + - type: Transform + pos: 19.5,39.5 + parent: 588 + - uid: 239 + components: + - type: Transform + pos: 20.5,39.5 + parent: 588 + - uid: 240 + components: + - type: Transform + pos: 21.5,39.5 + parent: 588 + - uid: 241 + components: + - type: Transform + pos: 22.5,39.5 + parent: 588 + - uid: 242 + components: + - type: Transform + pos: 19.5,40.5 + parent: 588 + - uid: 243 + components: + - type: Transform + pos: 19.5,38.5 + parent: 588 + - uid: 284 + components: + - type: Transform + pos: 29.5,26.5 + parent: 588 + - uid: 288 + components: + - type: Transform + pos: 28.5,26.5 + parent: 588 + - uid: 425 + components: + - type: Transform + pos: 1.5,10.5 + parent: 588 + - uid: 438 + components: + - type: Transform + pos: 1.5,9.5 + parent: 588 + - uid: 441 + components: + - type: Transform + pos: 2.5,10.5 + parent: 588 + - uid: 442 + components: + - type: Transform + pos: 3.5,10.5 + parent: 588 + - uid: 443 + components: + - type: Transform + pos: 4.5,10.5 + parent: 588 + - uid: 444 + components: + - type: Transform + pos: 1.5,7.5 + parent: 588 + - uid: 445 + components: + - type: Transform + pos: 1.5,6.5 + parent: 588 + - uid: 446 + components: + - type: Transform + pos: 2.5,6.5 + parent: 588 + - uid: 447 + components: + - type: Transform + pos: 3.5,6.5 + parent: 588 + - uid: 448 + components: + - type: Transform + pos: 4.5,6.5 + parent: 588 + - uid: 449 + components: + - type: Transform + pos: 6.5,6.5 + parent: 588 + - uid: 450 + components: + - type: Transform + pos: 7.5,6.5 + parent: 588 + - uid: 451 + components: + - type: Transform + pos: 8.5,6.5 + parent: 588 + - uid: 452 + components: + - type: Transform + pos: 9.5,6.5 + parent: 588 + - uid: 453 + components: + - type: Transform + pos: 9.5,7.5 + parent: 588 + - uid: 454 + components: + - type: Transform + pos: 9.5,9.5 + parent: 588 + - uid: 455 + components: + - type: Transform + pos: 9.5,10.5 + parent: 588 + - uid: 456 + components: + - type: Transform + pos: 8.5,10.5 + parent: 588 + - uid: 457 + components: + - type: Transform + pos: 7.5,10.5 + parent: 588 + - uid: 472 + components: + - type: Transform + pos: 29.5,14.5 + parent: 588 + - uid: 477 + components: + - type: Transform + pos: 24.5,13.5 + parent: 588 + - uid: 479 + components: + - type: Transform + pos: 30.5,14.5 + parent: 588 + - uid: 493 + components: + - type: Transform + pos: 25.5,13.5 + parent: 588 + - uid: 494 + components: + - type: Transform + pos: 25.5,12.5 + parent: 588 + - uid: 495 + components: + - type: Transform + pos: 26.5,12.5 + parent: 588 + - uid: 496 + components: + - type: Transform + pos: 27.5,12.5 + parent: 588 + - uid: 497 + components: + - type: Transform + pos: 28.5,12.5 + parent: 588 + - uid: 498 + components: + - type: Transform + pos: 29.5,12.5 + parent: 588 + - uid: 500 + components: + - type: Transform + pos: 24.5,12.5 + parent: 588 + - uid: 502 + components: + - type: Transform + pos: 24.5,14.5 + parent: 588 + - uid: 503 + components: + - type: Transform + pos: 24.5,15.5 + parent: 588 + - uid: 504 + components: + - type: Transform + pos: 24.5,16.5 + parent: 588 + - uid: 505 + components: + - type: Transform + pos: 25.5,16.5 + parent: 588 + - uid: 506 + components: + - type: Transform + pos: 26.5,16.5 + parent: 588 + - uid: 507 + components: + - type: Transform + pos: 27.5,16.5 + parent: 588 + - uid: 508 + components: + - type: Transform + pos: 28.5,16.5 + parent: 588 + - uid: 509 + components: + - type: Transform + pos: 29.5,16.5 + parent: 588 + - uid: 514 + components: + - type: Transform + pos: 29.5,13.5 + parent: 588 + - uid: 523 + components: + - type: Transform + pos: 29.5,15.5 + parent: 588 + - uid: 628 + components: + - type: Transform + pos: 1.5,22.5 + parent: 588 + - uid: 639 + components: + - type: Transform + pos: 0.5,22.5 + parent: 588 + - uid: 640 + components: + - type: Transform + pos: 0.5,21.5 + parent: 588 + - uid: 641 + components: + - type: Transform + pos: 0.5,19.5 + parent: 588 + - uid: 642 + components: + - type: Transform + pos: 0.5,18.5 + parent: 588 + - uid: 643 + components: + - type: Transform + pos: 1.5,18.5 + parent: 588 + - uid: 657 + components: + - type: Transform + pos: 2.5,15.5 + parent: 588 + - uid: 661 + components: + - type: Transform + pos: 1.5,15.5 + parent: 588 + - uid: 662 + components: + - type: Transform + pos: 1.5,13.5 + parent: 588 + - uid: 663 + components: + - type: Transform + pos: 2.5,13.5 + parent: 588 + - uid: 664 + components: + - type: Transform + pos: 4.5,13.5 + parent: 588 + - uid: 665 + components: + - type: Transform + pos: 5.5,13.5 + parent: 588 + - uid: 666 + components: + - type: Transform + pos: 5.5,15.5 + parent: 588 + - uid: 667 + components: + - type: Transform + pos: 4.5,15.5 + parent: 588 + - uid: 668 + components: + - type: Transform + pos: 29.5,10.5 + parent: 588 + - uid: 669 + components: + - type: Transform + pos: 28.5,10.5 + parent: 588 + - uid: 670 + components: + - type: Transform + pos: 27.5,10.5 + parent: 588 + - uid: 671 + components: + - type: Transform + pos: 26.5,10.5 + parent: 588 + - uid: 672 + components: + - type: Transform + pos: 25.5,10.5 + parent: 588 + - uid: 673 + components: + - type: Transform + pos: 24.5,10.5 + parent: 588 + - uid: 674 + components: + - type: Transform + pos: 24.5,9.5 + parent: 588 + - uid: 675 + components: + - type: Transform + pos: 24.5,8.5 + parent: 588 + - uid: 676 + components: + - type: Transform + pos: 24.5,7.5 + parent: 588 + - uid: 677 + components: + - type: Transform + pos: 24.5,6.5 + parent: 588 + - uid: 678 + components: + - type: Transform + pos: 25.5,6.5 + parent: 588 + - uid: 679 + components: + - type: Transform + pos: 26.5,6.5 + parent: 588 + - uid: 680 + components: + - type: Transform + pos: 27.5,6.5 + parent: 588 + - uid: 681 + components: + - type: Transform + pos: 28.5,6.5 + parent: 588 + - uid: 682 + components: + - type: Transform + pos: 29.5,6.5 + parent: 588 + - uid: 683 + components: + - type: Transform + pos: 30.5,6.5 + parent: 588 + - uid: 684 + components: + - type: Transform + pos: 31.5,6.5 + parent: 588 + - uid: 685 + components: + - type: Transform + pos: 32.5,6.5 + parent: 588 + - uid: 686 + components: + - type: Transform + pos: 33.5,6.5 + parent: 588 + - uid: 687 + components: + - type: Transform + pos: 34.5,6.5 + parent: 588 + - uid: 688 + components: + - type: Transform + pos: 34.5,7.5 + parent: 588 + - uid: 689 + components: + - type: Transform + pos: 34.5,8.5 + parent: 588 + - uid: 690 + components: + - type: Transform + pos: 34.5,9.5 + parent: 588 + - uid: 691 + components: + - type: Transform + pos: 34.5,10.5 + parent: 588 + - uid: 692 + components: + - type: Transform + pos: 33.5,10.5 + parent: 588 + - uid: 693 + components: + - type: Transform + pos: 32.5,10.5 + parent: 588 + - uid: 694 + components: + - type: Transform + pos: 31.5,10.5 + parent: 588 + - uid: 695 + components: + - type: Transform + pos: 30.5,10.5 + parent: 588 + - uid: 733 + components: + - type: Transform + pos: 20.5,18.5 + parent: 588 + - uid: 734 + components: + - type: Transform + pos: 20.5,19.5 + parent: 588 + - uid: 735 + components: + - type: Transform + pos: 20.5,20.5 + parent: 588 + - uid: 736 + components: + - type: Transform + pos: 20.5,21.5 + parent: 588 + - uid: 737 + components: + - type: Transform + pos: 20.5,22.5 + parent: 588 + - uid: 738 + components: + - type: Transform + pos: 21.5,20.5 + parent: 588 + - uid: 739 + components: + - type: Transform + pos: 22.5,20.5 + parent: 588 + - uid: 740 + components: + - type: Transform + pos: 19.5,20.5 + parent: 588 + - uid: 741 + components: + - type: Transform + pos: 18.5,20.5 + parent: 588 + - uid: 751 + components: + - type: Transform + pos: 32.5,22.5 + parent: 588 + - uid: 752 + components: + - type: Transform + pos: 32.5,21.5 + parent: 588 + - uid: 753 + components: + - type: Transform + pos: 32.5,20.5 + parent: 588 + - uid: 754 + components: + - type: Transform + pos: 32.5,19.5 + parent: 588 + - uid: 755 + components: + - type: Transform + pos: 32.5,18.5 + parent: 588 + - uid: 756 + components: + - type: Transform + pos: 31.5,20.5 + parent: 588 + - uid: 757 + components: + - type: Transform + pos: 30.5,20.5 + parent: 588 + - uid: 758 + components: + - type: Transform + pos: 33.5,20.5 + parent: 588 + - uid: 759 + components: + - type: Transform + pos: 34.5,20.5 + parent: 588 + - uid: 779 + components: + - type: Transform + pos: 25.5,19.5 + parent: 588 + - uid: 780 + components: + - type: Transform + pos: 25.5,18.5 + parent: 588 + - uid: 781 + components: + - type: Transform + pos: 24.5,18.5 + parent: 588 + - uid: 782 + components: + - type: Transform + pos: 24.5,19.5 + parent: 588 + - uid: 783 + components: + - type: Transform + pos: 24.5,20.5 + parent: 588 + - uid: 784 + components: + - type: Transform + pos: 24.5,21.5 + parent: 588 + - uid: 785 + components: + - type: Transform + pos: 24.5,22.5 + parent: 588 + - uid: 786 + components: + - type: Transform + pos: 25.5,22.5 + parent: 588 + - uid: 787 + components: + - type: Transform + pos: 26.5,22.5 + parent: 588 + - uid: 788 + components: + - type: Transform + pos: 27.5,22.5 + parent: 588 + - uid: 789 + components: + - type: Transform + pos: 28.5,22.5 + parent: 588 + - uid: 790 + components: + - type: Transform + pos: 28.5,21.5 + parent: 588 + - uid: 791 + components: + - type: Transform + pos: 28.5,20.5 + parent: 588 + - uid: 792 + components: + - type: Transform + pos: 28.5,19.5 + parent: 588 + - uid: 793 + components: + - type: Transform + pos: 28.5,18.5 + parent: 588 + - uid: 794 + components: + - type: Transform + pos: 27.5,18.5 + parent: 588 + - uid: 795 + components: + - type: Transform + pos: 26.5,18.5 + parent: 588 + - uid: 815 + components: + - type: Transform + pos: 0.5,25.5 + parent: 588 + - uid: 816 + components: + - type: Transform + pos: 0.5,27.5 + parent: 588 + - uid: 817 + components: + - type: Transform + pos: 0.5,28.5 + parent: 588 + - uid: 818 + components: + - type: Transform + pos: 2.5,28.5 + parent: 588 + - uid: 819 + components: + - type: Transform + pos: 2.5,27.5 + parent: 588 + - uid: 869 + components: + - type: Transform + pos: 5.5,24.5 + parent: 588 + - uid: 870 + components: + - type: Transform + pos: 6.5,24.5 + parent: 588 + - uid: 871 + components: + - type: Transform + pos: 6.5,25.5 + parent: 588 + - uid: 872 + components: + - type: Transform + pos: 6.5,26.5 + parent: 588 + - uid: 873 + components: + - type: Transform + pos: 6.5,27.5 + parent: 588 + - uid: 874 + components: + - type: Transform + pos: 6.5,28.5 + parent: 588 + - uid: 875 + components: + - type: Transform + pos: 5.5,28.5 + parent: 588 + - uid: 876 + components: + - type: Transform + pos: 4.5,28.5 + parent: 588 + - uid: 877 + components: + - type: Transform + pos: 4.5,27.5 + parent: 588 + - uid: 878 + components: + - type: Transform + pos: 4.5,26.5 + parent: 588 + - uid: 912 + components: + - type: Transform + pos: 6.5,10.5 + parent: 588 + - uid: 927 + components: + - type: Transform + pos: 34.5,36.5 + parent: 588 + - uid: 928 + components: + - type: Transform + pos: 32.5,36.5 + parent: 588 + - uid: 996 + components: + - type: Transform + pos: 21.5,32.5 + parent: 588 + - uid: 1079 + components: + - type: Transform + pos: 32.5,35.5 + parent: 588 + - uid: 1080 + components: + - type: Transform + pos: 31.5,35.5 + parent: 588 + - uid: 1081 + components: + - type: Transform + pos: 32.5,34.5 + parent: 588 + - uid: 1082 + components: + - type: Transform + pos: 29.5,34.5 + parent: 588 + - uid: 1083 + components: + - type: Transform + pos: 24.5,35.5 + parent: 588 + - uid: 1084 + components: + - type: Transform + pos: 27.5,35.5 + parent: 588 + - uid: 1085 + components: + - type: Transform + pos: 29.5,35.5 + parent: 588 + - uid: 1086 + components: + - type: Transform + pos: 28.5,35.5 + parent: 588 + - uid: 1089 + components: + - type: Transform + pos: 4.5,36.5 + parent: 588 + - uid: 1090 + components: + - type: Transform + pos: 33.5,34.5 + parent: 588 + - uid: 1091 + components: + - type: Transform + pos: 5.5,35.5 + parent: 588 + - uid: 1092 + components: + - type: Transform + pos: 29.5,36.5 + parent: 588 + - uid: 1093 + components: + - type: Transform + pos: 34.5,34.5 + parent: 588 + - uid: 1094 + components: + - type: Transform + pos: 34.5,35.5 + parent: 588 + - uid: 1095 + components: + - type: Transform + pos: 26.5,35.5 + parent: 588 + - uid: 1096 + components: + - type: Transform + pos: 25.5,35.5 + parent: 588 + - uid: 1097 + components: + - type: Transform + pos: 33.5,36.5 + parent: 588 + - uid: 1098 + components: + - type: Transform + pos: 30.5,35.5 + parent: 588 + - uid: 1117 + components: + - type: Transform + pos: 16.5,26.5 + parent: 588 + - uid: 1121 + components: + - type: Transform + pos: 17.5,26.5 + parent: 588 + - uid: 1122 + components: + - type: Transform + pos: 18.5,26.5 + parent: 588 + - uid: 1123 + components: + - type: Transform + pos: 17.5,27.5 + parent: 588 + - uid: 1124 + components: + - type: Transform + pos: 17.5,28.5 + parent: 588 + - uid: 1125 + components: + - type: Transform + pos: 17.5,24.5 + parent: 588 + - uid: 1126 + components: + - type: Transform + pos: 17.5,25.5 + parent: 588 + - uid: 1127 + components: + - type: Transform + pos: 20.5,26.5 + parent: 588 + - uid: 1128 + components: + - type: Transform + pos: 21.5,26.5 + parent: 588 + - uid: 1129 + components: + - type: Transform + pos: 22.5,26.5 + parent: 588 + - uid: 1130 + components: + - type: Transform + pos: 21.5,27.5 + parent: 588 + - uid: 1131 + components: + - type: Transform + pos: 21.5,28.5 + parent: 588 + - uid: 1132 + components: + - type: Transform + pos: 21.5,25.5 + parent: 588 + - uid: 1133 + components: + - type: Transform + pos: 21.5,24.5 + parent: 588 + - uid: 1134 + components: + - type: Transform + pos: 24.5,26.5 + parent: 588 + - uid: 1135 + components: + - type: Transform + pos: 25.5,26.5 + parent: 588 + - uid: 1136 + components: + - type: Transform + pos: 26.5,26.5 + parent: 588 + - uid: 1137 + components: + - type: Transform + pos: 25.5,27.5 + parent: 588 + - uid: 1138 + components: + - type: Transform + pos: 25.5,28.5 + parent: 588 + - uid: 1139 + components: + - type: Transform + pos: 25.5,25.5 + parent: 588 + - uid: 1140 + components: + - type: Transform + pos: 25.5,24.5 + parent: 588 + - uid: 1170 + components: + - type: Transform + pos: 3.5,36.5 + parent: 588 + - uid: 1171 + components: + - type: Transform + pos: 2.5,36.5 + parent: 588 + - uid: 1172 + components: + - type: Transform + pos: 1.5,36.5 + parent: 588 + - uid: 1173 + components: + - type: Transform + pos: 0.5,36.5 + parent: 588 + - uid: 1174 + components: + - type: Transform + pos: 0.5,35.5 + parent: 588 + - uid: 1175 + components: + - type: Transform + pos: 6.5,34.5 + parent: 588 + - uid: 1176 + components: + - type: Transform + pos: 7.5,34.5 + parent: 588 + - uid: 1177 + components: + - type: Transform + pos: 8.5,34.5 + parent: 588 + - uid: 1178 + components: + - type: Transform + pos: 9.5,34.5 + parent: 588 + - uid: 1179 + components: + - type: Transform + pos: 10.5,34.5 + parent: 588 + - uid: 1268 + components: + - type: Transform + pos: 30.5,26.5 + parent: 588 + - uid: 1269 + components: + - type: Transform + pos: 29.5,27.5 + parent: 588 + - uid: 1270 + components: + - type: Transform + pos: 29.5,28.5 + parent: 588 + - uid: 1271 + components: + - type: Transform + pos: 29.5,25.5 + parent: 588 + - uid: 1272 + components: + - type: Transform + pos: 29.5,24.5 + parent: 588 + - uid: 1273 + components: + - type: Transform + pos: 32.5,26.5 + parent: 588 + - uid: 1274 + components: + - type: Transform + pos: 33.5,26.5 + parent: 588 + - uid: 1275 + components: + - type: Transform + pos: 34.5,26.5 + parent: 588 + - uid: 1276 + components: + - type: Transform + pos: 33.5,27.5 + parent: 588 + - uid: 1277 + components: + - type: Transform + pos: 33.5,28.5 + parent: 588 + - uid: 1278 + components: + - type: Transform + pos: 33.5,25.5 + parent: 588 + - uid: 1279 + components: + - type: Transform + pos: 33.5,24.5 + parent: 588 + - uid: 1306 + components: + - type: Transform + pos: 27.5,40.5 + parent: 588 + - uid: 1307 + components: + - type: Transform + pos: 26.5,40.5 + parent: 588 + - uid: 1308 + components: + - type: Transform + pos: 25.5,40.5 + parent: 588 + - uid: 1309 + components: + - type: Transform + pos: 24.5,40.5 + parent: 588 + - uid: 1310 + components: + - type: Transform + pos: 24.5,39.5 + parent: 588 + - uid: 1311 + components: + - type: Transform + pos: 24.5,38.5 + parent: 588 + - uid: 1312 + components: + - type: Transform + pos: 25.5,38.5 + parent: 588 + - uid: 1313 + components: + - type: Transform + pos: 26.5,38.5 + parent: 588 + - uid: 1314 + components: + - type: Transform + pos: 27.5,38.5 + parent: 588 + - uid: 1315 + components: + - type: Transform + pos: 28.5,38.5 + parent: 588 + - uid: 1316 + components: + - type: Transform + pos: 29.5,38.5 + parent: 588 + - uid: 1317 + components: + - type: Transform + pos: 30.5,38.5 + parent: 588 + - uid: 1318 + components: + - type: Transform + pos: 30.5,39.5 + parent: 588 + - uid: 1426 + components: + - type: Transform + pos: 11.5,42.5 + parent: 588 + - uid: 1427 + components: + - type: Transform + pos: 11.5,43.5 + parent: 588 + - uid: 1428 + components: + - type: Transform + pos: 11.5,44.5 + parent: 588 + - uid: 1429 + components: + - type: Transform + pos: 11.5,45.5 + parent: 588 + - uid: 1430 + components: + - type: Transform + pos: 11.5,46.5 + parent: 588 + - uid: 1431 + components: + - type: Transform + pos: 11.5,47.5 + parent: 588 + - uid: 1432 + components: + - type: Transform + pos: 11.5,48.5 + parent: 588 + - uid: 1433 + components: + - type: Transform + pos: 10.5,45.5 + parent: 588 + - uid: 1434 + components: + - type: Transform + pos: 9.5,45.5 + parent: 588 + - uid: 1435 + components: + - type: Transform + pos: 8.5,45.5 + parent: 588 + - uid: 1436 + components: + - type: Transform + pos: 12.5,45.5 + parent: 588 + - uid: 1437 + components: + - type: Transform + pos: 13.5,45.5 + parent: 588 + - uid: 1438 + components: + - type: Transform + pos: 14.5,45.5 + parent: 588 + - uid: 1439 + components: + - type: Transform + pos: 13.5,46.5 + parent: 588 + - uid: 1440 + components: + - type: Transform + pos: 13.5,47.5 + parent: 588 + - uid: 1441 + components: + - type: Transform + pos: 9.5,46.5 + parent: 588 + - uid: 1442 + components: + - type: Transform + pos: 9.5,47.5 + parent: 588 + - uid: 1443 + components: + - type: Transform + pos: 10.5,43.5 + parent: 588 + - uid: 1444 + components: + - type: Transform + pos: 9.5,43.5 + parent: 588 + - uid: 1445 + components: + - type: Transform + pos: 12.5,43.5 + parent: 588 + - uid: 1446 + components: + - type: Transform + pos: 13.5,43.5 + parent: 588 + - uid: 1447 + components: + - type: Transform + pos: 3.5,42.5 + parent: 588 + - uid: 1448 + components: + - type: Transform + pos: 3.5,43.5 + parent: 588 + - uid: 1449 + components: + - type: Transform + pos: 3.5,44.5 + parent: 588 + - uid: 1450 + components: + - type: Transform + pos: 3.5,45.5 + parent: 588 + - uid: 1451 + components: + - type: Transform + pos: 3.5,46.5 + parent: 588 + - uid: 1452 + components: + - type: Transform + pos: 3.5,47.5 + parent: 588 + - uid: 1453 + components: + - type: Transform + pos: 3.5,48.5 + parent: 588 + - uid: 1454 + components: + - type: Transform + pos: 0.5,45.5 + parent: 588 + - uid: 1455 + components: + - type: Transform + pos: 1.5,45.5 + parent: 588 + - uid: 1456 + components: + - type: Transform + pos: 2.5,45.5 + parent: 588 + - uid: 1457 + components: + - type: Transform + pos: 3.5,45.5 + parent: 588 + - uid: 1458 + components: + - type: Transform + pos: 4.5,45.5 + parent: 588 + - uid: 1459 + components: + - type: Transform + pos: 5.5,45.5 + parent: 588 + - uid: 1460 + components: + - type: Transform + pos: 6.5,45.5 + parent: 588 + - uid: 1529 + components: + - type: Transform + pos: 19.5,47.5 + parent: 588 + - uid: 1530 + components: + - type: Transform + pos: 19.5,48.5 + parent: 588 + - uid: 1531 + components: + - type: Transform + pos: 18.5,48.5 + parent: 588 + - uid: 1532 + components: + - type: Transform + pos: 17.5,48.5 + parent: 588 + - uid: 1533 + components: + - type: Transform + pos: 16.5,48.5 + parent: 588 + - uid: 1534 + components: + - type: Transform + pos: 16.5,47.5 + parent: 588 + - uid: 1535 + components: + - type: Transform + pos: 16.5,46.5 + parent: 588 + - uid: 1536 + components: + - type: Transform + pos: 16.5,45.5 + parent: 588 + - uid: 1537 + components: + - type: Transform + pos: 16.5,44.5 + parent: 588 + - uid: 1538 + components: + - type: Transform + pos: 16.5,43.5 + parent: 588 + - uid: 1539 + components: + - type: Transform + pos: 16.5,42.5 + parent: 588 + - uid: 1540 + components: + - type: Transform + pos: 17.5,42.5 + parent: 588 + - uid: 1541 + components: + - type: Transform + pos: 18.5,42.5 + parent: 588 + - uid: 1542 + components: + - type: Transform + pos: 19.5,42.5 + parent: 588 + - uid: 1543 + components: + - type: Transform + pos: 20.5,42.5 + parent: 588 + - uid: 1544 + components: + - type: Transform + pos: 21.5,42.5 + parent: 588 + - uid: 1545 + components: + - type: Transform + pos: 22.5,42.5 + parent: 588 + - uid: 1546 + components: + - type: Transform + pos: 22.5,43.5 + parent: 588 + - uid: 1547 + components: + - type: Transform + pos: 22.5,44.5 + parent: 588 + - uid: 1548 + components: + - type: Transform + pos: 22.5,45.5 + parent: 588 + - uid: 1549 + components: + - type: Transform + pos: 22.5,46.5 + parent: 588 + - uid: 1550 + components: + - type: Transform + pos: 22.5,47.5 + parent: 588 + - uid: 1551 + components: + - type: Transform + pos: 22.5,48.5 + parent: 588 + - uid: 1552 + components: + - type: Transform + pos: 21.5,48.5 + parent: 588 + - uid: 1553 + components: + - type: Transform + pos: 20.5,48.5 + parent: 588 + - uid: 1554 + components: + - type: Transform + pos: 19.5,43.5 + parent: 588 + - uid: 1555 + components: + - type: Transform + pos: 19.5,44.5 + parent: 588 + - uid: 1556 + components: + - type: Transform + pos: 19.5,45.5 + parent: 588 + - uid: 1557 + components: + - type: Transform + pos: 19.5,46.5 + parent: 588 + - uid: 1807 + components: + - type: Transform + pos: 27.5,42.5 + parent: 588 + - uid: 1808 + components: + - type: Transform + pos: 27.5,43.5 + parent: 588 + - uid: 1809 + components: + - type: Transform + pos: 27.5,44.5 + parent: 588 + - uid: 1810 + components: + - type: Transform + pos: 27.5,45.5 + parent: 588 + - uid: 1811 + components: + - type: Transform + pos: 27.5,46.5 + parent: 588 + - uid: 1812 + components: + - type: Transform + pos: 27.5,47.5 + parent: 588 + - uid: 1813 + components: + - type: Transform + pos: 27.5,48.5 + parent: 588 + - uid: 1814 + components: + - type: Transform + pos: 28.5,45.5 + parent: 588 + - uid: 1815 + components: + - type: Transform + pos: 29.5,45.5 + parent: 588 + - uid: 1816 + components: + - type: Transform + pos: 30.5,45.5 + parent: 588 + - uid: 1817 + components: + - type: Transform + pos: 26.5,45.5 + parent: 588 + - uid: 1818 + components: + - type: Transform + pos: 25.5,45.5 + parent: 588 + - uid: 1819 + components: + - type: Transform + pos: 24.5,45.5 + parent: 588 + - uid: 1820 + components: + - type: Transform + pos: 26.5,47.5 + parent: 588 + - uid: 1821 + components: + - type: Transform + pos: 25.5,47.5 + parent: 588 + - uid: 1822 + components: + - type: Transform + pos: 28.5,47.5 + parent: 588 + - uid: 1823 + components: + - type: Transform + pos: 29.5,47.5 + parent: 588 + - uid: 1824 + components: + - type: Transform + pos: 26.5,43.5 + parent: 588 + - uid: 1825 + components: + - type: Transform + pos: 25.5,43.5 + parent: 588 + - uid: 1826 + components: + - type: Transform + pos: 28.5,43.5 + parent: 588 + - uid: 1827 + components: + - type: Transform + pos: 29.5,43.5 + parent: 588 +- proto: CableApcStack1 + entities: + - uid: 655 + components: + - type: Transform + pos: 16.273203,19.650417 + parent: 588 +- proto: CableHV + entities: + - uid: 462 + components: + - type: Transform + pos: 27.5,13.5 + parent: 588 + - uid: 466 + components: + - type: Transform + pos: 26.5,13.5 + parent: 588 + - uid: 468 + components: + - type: Transform + pos: 28.5,13.5 + parent: 588 + - uid: 485 + components: + - type: Transform + pos: 26.5,15.5 + parent: 588 + - uid: 486 + components: + - type: Transform + pos: 26.5,14.5 + parent: 588 + - uid: 487 + components: + - type: Transform + pos: 27.5,14.5 + parent: 588 + - uid: 488 + components: + - type: Transform + pos: 28.5,14.5 + parent: 588 + - uid: 489 + components: + - type: Transform + pos: 28.5,15.5 + parent: 588 + - uid: 743 + components: + - type: Transform + pos: 26.5,21.5 + parent: 588 + - uid: 744 + components: + - type: Transform + pos: 27.5,21.5 + parent: 588 + - uid: 745 + components: + - type: Transform + pos: 26.5,20.5 + parent: 588 + - uid: 746 + components: + - type: Transform + pos: 25.5,21.5 + parent: 588 + - uid: 768 + components: + - type: Transform + pos: 26.5,19.5 + parent: 588 + - uid: 778 + components: + - type: Transform + pos: 27.5,19.5 + parent: 588 + - uid: 978 + components: + - type: Transform + pos: 16.5,32.5 + parent: 588 + - uid: 979 + components: + - type: Transform + pos: 15.5,31.5 + parent: 588 + - uid: 980 + components: + - type: Transform + pos: 16.5,31.5 + parent: 588 + - uid: 981 + components: + - type: Transform + pos: 17.5,31.5 + parent: 588 + - uid: 982 + components: + - type: Transform + pos: 18.5,31.5 + parent: 588 + - uid: 983 + components: + - type: Transform + pos: 22.5,31.5 + parent: 588 + - uid: 984 + components: + - type: Transform + pos: 23.5,31.5 + parent: 588 + - uid: 985 + components: + - type: Transform + pos: 24.5,31.5 + parent: 588 + - uid: 986 + components: + - type: Transform + pos: 24.5,32.5 + parent: 588 + - uid: 987 + components: + - type: Transform + pos: 25.5,31.5 + parent: 588 + - uid: 989 + components: + - type: Transform + pos: 18.5,32.5 + parent: 588 + - uid: 990 + components: + - type: Transform + pos: 19.5,32.5 + parent: 588 + - uid: 991 + components: + - type: Transform + pos: 20.5,32.5 + parent: 588 + - uid: 992 + components: + - type: Transform + pos: 21.5,32.5 + parent: 588 + - uid: 993 + components: + - type: Transform + pos: 22.5,32.5 + parent: 588 + - uid: 1003 + components: + - type: Transform + pos: 16.5,30.5 + parent: 588 + - uid: 1004 + components: + - type: Transform + pos: 24.5,30.5 + parent: 588 + - uid: 1510 + components: + - type: Transform + pos: 18.5,44.5 + parent: 588 + - uid: 1511 + components: + - type: Transform + pos: 18.5,45.5 + parent: 588 + - uid: 1512 + components: + - type: Transform + pos: 20.5,45.5 + parent: 588 + - uid: 1513 + components: + - type: Transform + pos: 20.5,44.5 + parent: 588 + - uid: 1514 + components: + - type: Transform + pos: 19.5,44.5 + parent: 588 + - uid: 1522 + components: + - type: Transform + pos: 17.5,46.5 + parent: 588 + - uid: 1523 + components: + - type: Transform + pos: 21.5,46.5 + parent: 588 + - uid: 1524 + components: + - type: Transform + pos: 20.5,46.5 + parent: 588 + - uid: 1525 + components: + - type: Transform + pos: 18.5,46.5 + parent: 588 + - uid: 1526 + components: + - type: Transform + pos: 19.5,46.5 + parent: 588 +- proto: CableMV + entities: + - uid: 490 + components: + - type: Transform + pos: 27.5,13.5 + parent: 588 + - uid: 491 + components: + - type: Transform + pos: 26.5,13.5 + parent: 588 + - uid: 492 + components: + - type: Transform + pos: 25.5,13.5 + parent: 588 + - uid: 775 + components: + - type: Transform + pos: 27.5,19.5 + parent: 588 + - uid: 776 + components: + - type: Transform + pos: 26.5,19.5 + parent: 588 + - uid: 777 + components: + - type: Transform + pos: 25.5,19.5 + parent: 588 + - uid: 1527 + components: + - type: Transform + pos: 19.5,46.5 + parent: 588 + - uid: 1528 + components: + - type: Transform + pos: 19.5,47.5 + parent: 588 +- proto: CableTerminal + entities: + - uid: 463 + components: + - type: Transform + pos: 26.5,14.5 + parent: 588 + - uid: 464 + components: + - type: Transform + pos: 27.5,14.5 + parent: 588 + - uid: 465 + components: + - type: Transform + pos: 28.5,14.5 + parent: 588 + - uid: 767 + components: + - type: Transform + pos: 26.5,20.5 + parent: 588 + - uid: 970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,31.5 + parent: 588 + - uid: 976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,31.5 + parent: 588 + - uid: 1558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,45.5 + parent: 588 + - uid: 1559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,45.5 + parent: 588 +- proto: Carpet + entities: + - uid: 1632 + components: + - type: Transform + pos: 24.5,0.5 + parent: 588 + - uid: 1633 + components: + - type: Transform + pos: 25.5,0.5 + parent: 588 + - uid: 1634 + components: + - type: Transform + pos: 25.5,1.5 + parent: 588 + - uid: 1635 + components: + - type: Transform + pos: 24.5,1.5 + parent: 588 +- proto: CarpetBlue + entities: + - uid: 1636 + components: + - type: Transform + pos: 27.5,0.5 + parent: 588 + - uid: 1637 + components: + - type: Transform + pos: 28.5,1.5 + parent: 588 + - uid: 1638 + components: + - type: Transform + pos: 27.5,1.5 + parent: 588 + - uid: 1639 + components: + - type: Transform + pos: 28.5,0.5 + parent: 588 +- proto: CarpetPurple + entities: + - uid: 1626 + components: + - type: Transform + pos: 25.5,4.5 + parent: 588 + - uid: 1627 + components: + - type: Transform + pos: 25.5,3.5 + parent: 588 + - uid: 1628 + components: + - type: Transform + pos: 26.5,3.5 + parent: 588 + - uid: 1629 + components: + - type: Transform + pos: 27.5,3.5 + parent: 588 + - uid: 1630 + components: + - type: Transform + pos: 27.5,4.5 + parent: 588 + - uid: 1631 + components: + - type: Transform + pos: 26.5,4.5 + parent: 588 +- proto: Catwalk + entities: + - uid: 141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,24.5 + parent: 588 + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,26.5 + parent: 588 + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,25.5 + parent: 588 + - uid: 248 + components: + - type: Transform + pos: 8.5,4.5 + parent: 588 + - uid: 249 + components: + - type: Transform + pos: 8.5,2.5 + parent: 588 + - uid: 250 + components: + - type: Transform + pos: 8.5,3.5 + parent: 588 + - uid: 251 + components: + - type: Transform + pos: 8.5,1.5 + parent: 588 + - uid: 471 + components: + - type: Transform + pos: 27.5,14.5 + parent: 588 + - uid: 473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,12.5 + parent: 588 + - uid: 474 + components: + - type: Transform + pos: 28.5,14.5 + parent: 588 + - uid: 475 + components: + - type: Transform + pos: 26.5,14.5 + parent: 588 + - uid: 512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,12.5 + parent: 588 + - uid: 513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,12.5 + parent: 588 + - uid: 515 + components: + - type: Transform + pos: 25.5,16.5 + parent: 588 + - uid: 516 + components: + - type: Transform + pos: 26.5,16.5 + parent: 588 + - uid: 517 + components: + - type: Transform + pos: 27.5,16.5 + parent: 588 + - uid: 518 + components: + - type: Transform + pos: 28.5,16.5 + parent: 588 + - uid: 519 + components: + - type: Transform + pos: 29.5,16.5 + parent: 588 + - uid: 520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,12.5 + parent: 588 + - uid: 521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,12.5 + parent: 588 + - uid: 769 + components: + - type: Transform + pos: 26.5,20.5 + parent: 588 + - uid: 832 + components: + - type: Transform + pos: 3.5,31.5 + parent: 588 + - uid: 833 + components: + - type: Transform + pos: 4.5,31.5 + parent: 588 + - uid: 834 + components: + - type: Transform + pos: 5.5,31.5 + parent: 588 + - uid: 835 + components: + - type: Transform + pos: 6.5,31.5 + parent: 588 + - uid: 836 + components: + - type: Transform + pos: 7.5,31.5 + parent: 588 + - uid: 837 + components: + - type: Transform + pos: 8.5,31.5 + parent: 588 + - uid: 838 + components: + - type: Transform + pos: 9.5,31.5 + parent: 588 + - uid: 839 + components: + - type: Transform + pos: 6.5,32.5 + parent: 588 + - uid: 840 + components: + - type: Transform + pos: 6.5,30.5 + parent: 588 + - uid: 841 + components: + - type: Transform + pos: 5.5,32.5 + parent: 588 + - uid: 842 + components: + - type: Transform + pos: 7.5,32.5 + parent: 588 + - uid: 843 + components: + - type: Transform + pos: 5.5,30.5 + parent: 588 + - uid: 844 + components: + - type: Transform + pos: 7.5,30.5 + parent: 588 + - uid: 861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,27.5 + parent: 588 + - uid: 862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,28.5 + parent: 588 + - uid: 863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,28.5 + parent: 588 + - uid: 864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,27.5 + parent: 588 + - uid: 865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,26.5 + parent: 588 + - uid: 879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,40.5 + parent: 588 + - uid: 880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,39.5 + parent: 588 + - uid: 881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,39.5 + parent: 588 + - uid: 882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,39.5 + parent: 588 + - uid: 883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,39.5 + parent: 588 + - uid: 884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,39.5 + parent: 588 + - uid: 885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,38.5 + parent: 588 + - uid: 914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,10.5 + parent: 588 + - uid: 915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,10.5 + parent: 588 + - uid: 916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 588 + - uid: 917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 588 + - uid: 918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 588 + - uid: 919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 588 + - uid: 920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 588 + - uid: 921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 588 + - uid: 922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 588 + - uid: 923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 588 + - uid: 955 + components: + - type: Transform + pos: 15.5,31.5 + parent: 588 + - uid: 956 + components: + - type: Transform + pos: 16.5,31.5 + parent: 588 + - uid: 957 + components: + - type: Transform + pos: 17.5,31.5 + parent: 588 + - uid: 958 + components: + - type: Transform + pos: 18.5,31.5 + parent: 588 + - uid: 959 + components: + - type: Transform + pos: 19.5,31.5 + parent: 588 + - uid: 960 + components: + - type: Transform + pos: 20.5,31.5 + parent: 588 + - uid: 961 + components: + - type: Transform + pos: 21.5,31.5 + parent: 588 + - uid: 962 + components: + - type: Transform + pos: 22.5,31.5 + parent: 588 + - uid: 963 + components: + - type: Transform + pos: 23.5,31.5 + parent: 588 + - uid: 964 + components: + - type: Transform + pos: 24.5,31.5 + parent: 588 + - uid: 965 + components: + - type: Transform + pos: 25.5,31.5 + parent: 588 + - uid: 994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,32.5 + parent: 588 + - uid: 1158 + components: + - type: Transform + pos: 8.5,0.5 + parent: 588 + - uid: 1180 + components: + - type: Transform + pos: 1.5,36.5 + parent: 588 + - uid: 1181 + components: + - type: Transform + pos: 2.5,36.5 + parent: 588 + - uid: 1182 + components: + - type: Transform + pos: 3.5,36.5 + parent: 588 + - uid: 1183 + components: + - type: Transform + pos: 4.5,36.5 + parent: 588 + - uid: 1184 + components: + - type: Transform + pos: 5.5,36.5 + parent: 588 + - uid: 1185 + components: + - type: Transform + pos: 5.5,34.5 + parent: 588 + - uid: 1186 + components: + - type: Transform + pos: 6.5,34.5 + parent: 588 + - uid: 1187 + components: + - type: Transform + pos: 7.5,34.5 + parent: 588 + - uid: 1188 + components: + - type: Transform + pos: 8.5,34.5 + parent: 588 + - uid: 1189 + components: + - type: Transform + pos: 9.5,34.5 + parent: 588 + - uid: 1320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,40.5 + parent: 588 + - uid: 1321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,40.5 + parent: 588 + - uid: 1322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,40.5 + parent: 588 + - uid: 1323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,38.5 + parent: 588 + - uid: 1324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,38.5 + parent: 588 + - uid: 1325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,38.5 + parent: 588 + - uid: 1326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,38.5 + parent: 588 + - uid: 1327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,38.5 + parent: 588 + - uid: 1331 + components: + - type: Transform + pos: 4.5,45.5 + parent: 588 + - uid: 1336 + components: + - type: Transform + pos: 2.5,45.5 + parent: 588 + - uid: 1339 + components: + - type: Transform + pos: 3.5,45.5 + parent: 588 + - uid: 1342 + components: + - type: Transform + pos: 3.5,46.5 + parent: 588 + - uid: 1344 + components: + - type: Transform + pos: 3.5,44.5 + parent: 588 + - uid: 1346 + components: + - type: Transform + pos: 2.5,44.5 + parent: 588 + - uid: 1347 + components: + - type: Transform + pos: 4.5,44.5 + parent: 588 + - uid: 1348 + components: + - type: Transform + pos: 4.5,44.5 + parent: 588 + - uid: 1349 + components: + - type: Transform + pos: 4.5,46.5 + parent: 588 + - uid: 1350 + components: + - type: Transform + pos: 2.5,46.5 + parent: 588 + - uid: 1494 + components: + - type: Transform + pos: 17.5,42.5 + parent: 588 + - uid: 1495 + components: + - type: Transform + pos: 18.5,42.5 + parent: 588 + - uid: 1496 + components: + - type: Transform + pos: 19.5,42.5 + parent: 588 + - uid: 1497 + components: + - type: Transform + pos: 20.5,42.5 + parent: 588 + - uid: 1498 + components: + - type: Transform + pos: 21.5,42.5 + parent: 588 + - uid: 1499 + components: + - type: Transform + pos: 17.5,48.5 + parent: 588 + - uid: 1500 + components: + - type: Transform + pos: 18.5,48.5 + parent: 588 + - uid: 1501 + components: + - type: Transform + pos: 19.5,48.5 + parent: 588 + - uid: 1502 + components: + - type: Transform + pos: 20.5,48.5 + parent: 588 + - uid: 1503 + components: + - type: Transform + pos: 21.5,48.5 + parent: 588 + - uid: 1516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,44.5 + parent: 588 + - uid: 1517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,45.5 + parent: 588 + - uid: 1518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,45.5 + parent: 588 + - uid: 1519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,45.5 + parent: 588 + - uid: 1582 + components: + - type: Transform + pos: 28.5,22.5 + parent: 588 + - uid: 1583 + components: + - type: Transform + pos: 28.5,21.5 + parent: 588 + - uid: 1584 + components: + - type: Transform + pos: 28.5,20.5 + parent: 588 + - uid: 1585 + components: + - type: Transform + pos: 28.5,19.5 + parent: 588 + - uid: 1586 + components: + - type: Transform + pos: 28.5,18.5 + parent: 588 + - uid: 1587 + components: + - type: Transform + pos: 24.5,22.5 + parent: 588 + - uid: 1588 + components: + - type: Transform + pos: 24.5,21.5 + parent: 588 + - uid: 1589 + components: + - type: Transform + pos: 24.5,20.5 + parent: 588 + - uid: 1590 + components: + - type: Transform + pos: 24.5,19.5 + parent: 588 + - uid: 1591 + components: + - type: Transform + pos: 24.5,18.5 + parent: 588 +- proto: Cautery + entities: + - uid: 1474 + components: + - type: Transform + pos: 8.533231,42.775993 + parent: 588 +- proto: Chair + entities: + - uid: 357 + components: + - type: Transform + pos: 23.5,4.5 + parent: 588 + - uid: 421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,9.5 + parent: 588 + - uid: 422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,9.5 + parent: 588 + - uid: 423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,7.5 + parent: 588 + - uid: 533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,14.5 + parent: 588 + - uid: 534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,15.5 + parent: 588 + - uid: 537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,14.5 + parent: 588 + - uid: 569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,13.5 + parent: 588 + - uid: 716 + components: + - type: Transform + pos: 18.5,19.5 + parent: 588 + - uid: 717 + components: + - type: Transform + pos: 19.5,19.5 + parent: 588 + - uid: 718 + components: + - type: Transform + pos: 22.5,19.5 + parent: 588 + - uid: 719 + components: + - type: Transform + pos: 21.5,19.5 + parent: 588 + - uid: 1280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,38.5 + parent: 588 + - uid: 1281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,38.5 + parent: 588 + - uid: 1282 + components: + - type: Transform + pos: 20.5,40.5 + parent: 588 + - uid: 1283 + components: + - type: Transform + pos: 21.5,40.5 + parent: 588 + - uid: 1865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,7.5 + parent: 588 +- proto: ChairFolding + entities: + - uid: 344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,0.5 + parent: 588 + - uid: 345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,1.5 + parent: 588 + - uid: 346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,0.5 + parent: 588 + - uid: 347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,3.5 + parent: 588 + - uid: 348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,3.5 + parent: 588 + - uid: 349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,4.5 + parent: 588 + - uid: 350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,1.5 + parent: 588 + - uid: 351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,0.5 + parent: 588 + - uid: 352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,4.5 + parent: 588 + - uid: 353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,4.5 + parent: 588 + - uid: 1212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,36.5 + parent: 588 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.53707,1.6455604 + parent: 588 + - uid: 355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.595894,3.4052575 + parent: 588 +- proto: ChairOfficeDark + entities: + - uid: 330 + components: + - type: Transform + pos: 19.5,1.5 + parent: 588 + - uid: 331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,3.5 + parent: 588 + - uid: 358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,0.5 + parent: 588 + - uid: 359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,0.5 + parent: 588 + - uid: 360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,0.5 + parent: 588 + - uid: 361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,0.5 + parent: 588 + - uid: 571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,12.5 + parent: 588 +- proto: ChairOfficeLight + entities: + - uid: 631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,19.5 + parent: 588 + - uid: 638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,21.5 + parent: 588 + - uid: 707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,21.5 + parent: 588 +- proto: ChairPilotSeat + entities: + - uid: 356 + components: + - type: Transform + pos: 26.5,4.5 + parent: 588 +- proto: ChairWood + entities: + - uid: 1049 + components: + - type: Transform + pos: 20.5,25.5 + parent: 588 + - uid: 1050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,27.5 + parent: 588 + - uid: 1231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,34.5 + parent: 588 + - uid: 1232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,36.5 + parent: 588 + - uid: 1790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,46.5 + parent: 588 + - uid: 1791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,44.5 + parent: 588 +- proto: CigarGold + entities: + - uid: 1219 + components: + - type: Transform + pos: 7.4719925,36.539555 + parent: 588 +- proto: ClosetBombFilled + entities: + - uid: 413 + components: + - type: Transform + pos: 14.5,6.5 + parent: 588 + - uid: 1014 + components: + - type: Transform + pos: 12.5,27.5 + parent: 588 + - uid: 1026 + components: + - type: Transform + pos: 16.5,27.5 + parent: 588 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 1203 + components: + - type: Transform + pos: 12.5,30.5 + parent: 588 + - uid: 1204 + components: + - type: Transform + pos: 0.5,32.5 + parent: 588 + - uid: 1205 + components: + - type: Transform + pos: 9.5,9.5 + parent: 588 + - uid: 1207 + components: + - type: Transform + pos: 1.5,7.5 + parent: 588 +- proto: ClosetFireFilled + entities: + - uid: 1194 + components: + - type: Transform + pos: 1.5,9.5 + parent: 588 + - uid: 1195 + components: + - type: Transform + pos: 9.5,7.5 + parent: 588 + - uid: 1196 + components: + - type: Transform + pos: 6.5,40.5 + parent: 588 + - uid: 1197 + components: + - type: Transform + pos: 0.5,38.5 + parent: 588 +- proto: ClosetL3SecurityFilled + entities: + - uid: 415 + components: + - type: Transform + pos: 20.5,10.5 + parent: 588 +- proto: ClosetToolFilled + entities: + - uid: 1007 + components: + - type: Transform + pos: 14.5,30.5 + parent: 588 +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,15.5 + parent: 588 + - uid: 868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,27.5 + parent: 588 + - uid: 1564 + components: + - type: Transform + pos: 17.5,43.5 + parent: 588 + - uid: 1565 + components: + - type: Transform + pos: 21.5,43.5 + parent: 588 +- proto: ClothingBeltChampion + entities: + - uid: 1236 + components: + - type: Transform + pos: 10.581136,39.53631 + parent: 588 +- proto: ClothingEyesGlassesMeson + entities: + - uid: 1108 + components: + - type: Transform + pos: 25.666832,30.643515 + parent: 588 +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 1715 + components: + - type: Transform + pos: 10.432637,44.476112 + parent: 588 +- proto: ClothingHeadBandRed + entities: + - uid: 1295 + components: + - type: Transform + pos: 12.571781,39.694115 + parent: 588 +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 577 + components: + - type: Transform + pos: 12.686508,13.58602 + parent: 588 +- proto: ClothingHeadHatPwig + entities: + - uid: 369 + components: + - type: Transform + pos: 25.824945,3.5783403 + parent: 588 +- proto: ClothingHeadHatSecsoftFlipped + entities: + - uid: 606 + components: + - type: Transform + pos: 12.705482,6.671774 + parent: 588 + - uid: 1027 + components: + - type: Transform + pos: 18.403675,25.53719 + parent: 588 +- proto: ClothingHeadHatSurgcapPurple + entities: + - uid: 1711 + components: + - type: Transform + pos: 10.304593,44.632217 + parent: 588 +- proto: ClothingHeadHelmetRiot + entities: + - uid: 1617 + components: + - type: Transform + pos: 22.499683,6.7142525 + parent: 588 +- proto: ClothingHeadHelmetThunderdome + entities: + - uid: 1240 + components: + - type: Transform + pos: 34.666565,24.66942 + parent: 588 +- proto: ClothingNeckLawyerbadge + entities: + - uid: 326 + components: + - type: Transform + pos: 21.586027,4.583762 + parent: 588 +- proto: ClothingNeckTieDet + entities: + - uid: 573 + components: + - type: Transform + pos: 12.714905,13.486683 + parent: 588 +- proto: ClothingOuterArmorReflective + entities: + - uid: 1031 + components: + - type: Transform + pos: 18.47467,24.458666 + parent: 588 +- proto: ClothingOuterCoatDetectiveLoadout + entities: + - uid: 574 + components: + - type: Transform + pos: 13.396446,12.479115 + parent: 588 +- proto: ClothingOuterRobesJudge + entities: + - uid: 370 + components: + - type: Transform + pos: 27.40101,3.677678 + parent: 588 +- proto: ClothingShoesBootsCombatFilled + entities: + - uid: 1036 + components: + - type: Transform + pos: 12.582174,25.636528 + parent: 588 +- proto: ClothingShoesBootsLaceup + entities: + - uid: 372 + components: + - type: Transform + pos: 18.586912,0.70824456 + parent: 588 +- proto: ClothingUniformJumpskirtColorMaroon + entities: + - uid: 1714 + components: + - type: Transform + pos: 10.673761,44.53288 + parent: 588 +- proto: ClothingUniformJumpsuitColorMaroon + entities: + - uid: 1713 + components: + - type: Transform + pos: 10.645364,44.67479 + parent: 588 +- proto: ClusterBangFull + entities: + - uid: 599 + components: + - type: Transform + pos: 33.484257,28.42918 + parent: 588 +- proto: ComputerAlert + entities: + - uid: 999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,30.5 + parent: 588 + - uid: 1001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,30.5 + parent: 588 + - uid: 1561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,46.5 + parent: 588 +- proto: computerBodyScanner + entities: + - uid: 1394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,44.5 + parent: 588 + - uid: 1423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,44.5 + parent: 588 +- proto: ComputerCriminalRecords + entities: + - uid: 461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 588 + - uid: 634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,18.5 + parent: 588 +- proto: ComputerPowerMonitoring + entities: + - uid: 1000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,30.5 + parent: 588 + - uid: 1002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,30.5 + parent: 588 + - uid: 1560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,46.5 + parent: 588 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,21.5 + parent: 588 +- proto: ComputerTelevision + entities: + - uid: 1229 + components: + - type: Transform + pos: 12.5,34.5 + parent: 588 + - uid: 1230 + components: + - type: Transform + pos: 22.5,36.5 + parent: 588 +- proto: CrateEngineeringGear + entities: + - uid: 1008 + components: + - type: Transform + pos: 26.5,30.5 + parent: 588 +- proto: CrateFunBoardGames + entities: + - uid: 1845 + components: + - type: Transform + pos: 26.5,48.5 + parent: 588 +- proto: CrateFunParty + entities: + - uid: 1876 + components: + - type: Transform + pos: 25.5,43.5 + parent: 588 +- proto: CrateHydroponicsSeedsExotic + entities: + - uid: 1660 + components: + - type: Transform + pos: 31.5,22.5 + parent: 588 +- proto: CrayonBox + entities: + - uid: 1057 + components: + - type: Transform + pos: 20.47107,24.608877 + parent: 588 + - uid: 1116 + components: + - type: Transform + pos: 20.607256,14.646415 + parent: 588 +- proto: CryoPod + entities: + - uid: 1395 + components: + - type: Transform + pos: 8.5,47.5 + parent: 588 + - uid: 1397 + components: + - type: Transform + pos: 14.5,47.5 + parent: 588 +- proto: DebugSMES + entities: + - uid: 971 + components: + - type: Transform + pos: 22.5,32.5 + parent: 588 + - uid: 974 + components: + - type: Transform + pos: 18.5,32.5 + parent: 588 +- proto: DeployableBarrier + entities: + - uid: 1233 + components: + - type: Transform + pos: 32.5,24.5 + parent: 588 +- proto: DiceBag + entities: + - uid: 552 + components: + - type: Transform + pos: 20.294882,15.426926 + parent: 588 +- proto: DiseaseDiagnoser + entities: + - uid: 1424 + components: + - type: Transform + pos: 14.5,44.5 + parent: 588 +- proto: DisposalUnit + entities: + - uid: 550 + components: + - type: Transform + pos: 22.5,16.5 + parent: 588 + - uid: 725 + components: + - type: Transform + pos: 21.5,22.5 + parent: 588 + - uid: 766 + components: + - type: Transform + pos: 9.5,22.5 + parent: 588 + - uid: 1288 + components: + - type: Transform + pos: 22.5,38.5 + parent: 588 +- proto: DonkpocketBoxSpawner + entities: + - uid: 526 + components: + - type: Transform + pos: 16.5,13.5 + parent: 588 + - uid: 723 + components: + - type: Transform + pos: 18.5,21.5 + parent: 588 +- proto: DoorElectronics + entities: + - uid: 659 + components: + - type: Transform + pos: 12.581519,21.410114 + parent: 588 + - uid: 1074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.639427,25.54549 + parent: 588 +- proto: Dresser + entities: + - uid: 1051 + components: + - type: Transform + pos: 22.5,25.5 + parent: 588 + - uid: 1052 + components: + - type: Transform + pos: 20.5,27.5 + parent: 588 + - uid: 1061 + components: + - type: Transform + pos: 24.5,25.5 + parent: 588 + - uid: 1221 + components: + - type: Transform + pos: 21.5,36.5 + parent: 588 + - uid: 1222 + components: + - type: Transform + pos: 13.5,34.5 + parent: 588 +- proto: DrinkDetFlask + entities: + - uid: 1577 + components: + - type: Transform + pos: 12.606661,13.037249 + parent: 588 +- proto: DrinkMugMetal + entities: + - uid: 1294 + components: + - type: Transform + pos: 22.442232,12.514399 + parent: 588 +- proto: DrinkMugRed + entities: + - uid: 721 + components: + - type: Transform + pos: 22.448559,18.561966 + parent: 588 + - uid: 1293 + components: + - type: Transform + pos: 22.328642,12.741456 + parent: 588 +- proto: DrinkShinyFlask + entities: + - uid: 1874 + components: + - type: Transform + pos: 6.890398,22.663696 + parent: 588 +- proto: DrinkShotGlass + entities: + - uid: 578 + components: + - type: Transform + pos: 12.412022,12.535878 + parent: 588 + - uid: 579 + components: + - type: Transform + pos: 12.539811,12.748745 + parent: 588 +- proto: DrinkWaterCup + entities: + - uid: 722 + components: + - type: Transform + pos: 18.373508,18.661304 + parent: 588 + - uid: 762 + components: + - type: Transform + pos: 6.313587,19.590261 + parent: 588 + - uid: 763 + components: + - type: Transform + pos: 6.441377,19.419968 + parent: 588 +- proto: EmergencyLight + entities: + - uid: 1716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,6.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1717 + components: + - type: Transform + pos: 21.5,10.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1718 + components: + - type: Transform + pos: 30.5,4.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,0.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1722 + components: + - type: Transform + pos: 18.5,16.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1723 + components: + - type: Transform + pos: 31.5,22.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,25.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,25.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,27.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,27.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,27.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,25.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,9.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,20.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1734 + components: + - type: Transform + pos: 1.5,24.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,30.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1736 + components: + - type: Transform + pos: 11.5,32.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,40.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,40.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,30.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,19.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,21.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,18.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,34.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,34.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,38.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,44.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,44.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,46.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1751 + components: + - type: Transform + pos: 30.5,6.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,10.5 + parent: 588 + - type: PointLight + enabled: True + - uid: 1832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,46.5 + parent: 588 + - type: PointLight + enabled: True +- proto: EmergencyRollerBed + entities: + - uid: 1141 + components: + - type: Transform + pos: 30.5,25.5 + parent: 588 + - uid: 1142 + components: + - type: Transform + pos: 30.5,24.5 + parent: 588 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,26.5 + parent: 588 + - uid: 1198 + components: + - type: Transform + pos: 2.5,8.5 + parent: 588 + - uid: 1199 + components: + - type: Transform + pos: 8.5,8.5 + parent: 588 + - uid: 1200 + components: + - type: Transform + pos: 8.5,35.5 + parent: 588 + - uid: 1201 + components: + - type: Transform + pos: 1.5,35.5 + parent: 588 + - uid: 1202 + components: + - type: Transform + pos: 25.5,14.5 + parent: 588 + - uid: 1328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,39.5 + parent: 588 + - uid: 1566 + components: + - type: Transform + pos: 17.5,44.5 + parent: 588 +- proto: filingCabinetRandom + entities: + - uid: 320 + components: + - type: Transform + pos: 21.5,0.5 + parent: 588 + - uid: 321 + components: + - type: Transform + pos: 20.5,0.5 + parent: 588 +- proto: filingCabinetTallRandom + entities: + - uid: 1396 + components: + - type: Transform + pos: 8.5,44.5 + parent: 588 +- proto: Flash + entities: + - uid: 1209 + components: + - type: Transform + pos: 10.726851,19.047483 + parent: 588 +- proto: FlashlightSeclite + entities: + - uid: 374 + components: + - type: Transform + pos: 13.377204,0.54605544 + parent: 588 +- proto: FloodlightBroken + entities: + - uid: 1193 + components: + - type: Transform + pos: 9.462372,35.6454 + parent: 588 +- proto: FloorDrain + entities: + - uid: 944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 588 + - type: Fixtures + fixtures: {} + - uid: 945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,28.5 + parent: 588 + - type: Fixtures + fixtures: {} +- proto: FloorLavaEntity + entities: + - uid: 47 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 588 + - uid: 49 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,8.5 + parent: 588 + - uid: 458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 588 + - uid: 459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,8.5 + parent: 588 + - uid: 460 + components: + - type: Transform + pos: 8.5,3.5 + parent: 588 + - uid: 645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,20.5 + parent: 588 + - uid: 820 + components: + - type: Transform + pos: 4.5,32.5 + parent: 588 + - uid: 821 + components: + - type: Transform + pos: 4.5,31.5 + parent: 588 + - uid: 822 + components: + - type: Transform + pos: 5.5,31.5 + parent: 588 + - uid: 823 + components: + - type: Transform + pos: 5.5,32.5 + parent: 588 + - uid: 824 + components: + - type: Transform + pos: 5.5,30.5 + parent: 588 + - uid: 825 + components: + - type: Transform + pos: 6.5,30.5 + parent: 588 + - uid: 826 + components: + - type: Transform + pos: 7.5,30.5 + parent: 588 + - uid: 827 + components: + - type: Transform + pos: 6.5,32.5 + parent: 588 + - uid: 828 + components: + - type: Transform + pos: 7.5,32.5 + parent: 588 + - uid: 829 + components: + - type: Transform + pos: 7.5,31.5 + parent: 588 + - uid: 830 + components: + - type: Transform + pos: 6.5,31.5 + parent: 588 + - uid: 831 + components: + - type: Transform + pos: 8.5,30.5 + parent: 588 + - uid: 857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,39.5 + parent: 588 + - uid: 858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,39.5 + parent: 588 + - uid: 859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,38.5 + parent: 588 + - uid: 860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,40.5 + parent: 588 + - uid: 887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,40.5 + parent: 588 + - uid: 889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,39.5 + parent: 588 + - uid: 906 + components: + - type: Transform + pos: 4.5,7.5 + parent: 588 + - uid: 907 + components: + - type: Transform + pos: 5.5,7.5 + parent: 588 + - uid: 908 + components: + - type: Transform + pos: 5.5,9.5 + parent: 588 + - uid: 909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 588 + - uid: 910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 588 + - uid: 911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 588 + - uid: 913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 588 + - uid: 1247 + components: + - type: Transform + pos: 8.5,4.5 + parent: 588 + - uid: 1248 + components: + - type: Transform + pos: 9.5,4.5 + parent: 588 + - uid: 1249 + components: + - type: Transform + pos: 8.5,2.5 + parent: 588 + - uid: 1250 + components: + - type: Transform + pos: 8.5,1.5 + parent: 588 + - uid: 1251 + components: + - type: Transform + pos: 9.5,1.5 + parent: 588 + - uid: 1252 + components: + - type: Transform + pos: 8.5,1.5 + parent: 588 + - uid: 1253 + components: + - type: Transform + pos: 8.5,0.5 + parent: 588 + - uid: 1254 + components: + - type: Transform + pos: 7.5,0.5 + parent: 588 + - uid: 1333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,46.5 + parent: 588 + - uid: 1341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,45.5 + parent: 588 + - uid: 1343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,46.5 + parent: 588 + - uid: 1345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,46.5 + parent: 588 + - uid: 1359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,47.5 + parent: 588 + - uid: 1360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,46.5 + parent: 588 + - uid: 1361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,47.5 + parent: 588 + - uid: 1362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,47.5 + parent: 588 + - uid: 1363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,44.5 + parent: 588 + - uid: 1364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,47.5 + parent: 588 + - uid: 1365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,44.5 + parent: 588 + - uid: 1366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,45.5 + parent: 588 + - uid: 1367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,44.5 + parent: 588 + - uid: 1368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,43.5 + parent: 588 + - uid: 1369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,43.5 + parent: 588 + - uid: 1370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,42.5 + parent: 588 + - uid: 1371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,42.5 + parent: 588 + - uid: 1372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,43.5 + parent: 588 + - uid: 1373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,44.5 + parent: 588 + - uid: 1374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,46.5 + parent: 588 + - uid: 1375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,43.5 + parent: 588 +- proto: FoodBowlBigTrash + entities: + - uid: 1840 + components: + - type: Transform + pos: 30.547388,48.16116 + parent: 588 +- proto: FoodBurgerMime + entities: + - uid: 399 + components: + - type: Transform + pos: 10.958169,39.64943 + parent: 588 +- proto: FoodPlateSmallPlastic + entities: + - uid: 529 + components: + - type: Transform + pos: 17.462528,12.615073 + parent: 588 +- proto: FoodPlateTrash + entities: + - uid: 1692 + components: + - type: Transform + pos: 28.80027,47.44947 + parent: 588 +- proto: ForensicPad + entities: + - uid: 761 + components: + - type: Transform + pos: 7.562898,22.48225 + parent: 588 +- proto: ForkPlastic + entities: + - uid: 531 + components: + - type: Transform + pos: 17.405733,12.600882 + parent: 588 +- proto: GasFilter + entities: + - uid: 1415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,47.5 + parent: 588 +- proto: GasPipeBend + entities: + - uid: 1412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,46.5 + parent: 588 + - uid: 1414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,46.5 + parent: 588 + - uid: 1416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,47.5 + parent: 588 + - uid: 1421 + components: + - type: Transform + pos: 13.5,47.5 + parent: 588 +- proto: GasPipeStraight + entities: + - uid: 1418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,47.5 + parent: 588 + - uid: 1420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,46.5 + parent: 588 +- proto: GasPipeTJunction + entities: + - uid: 1410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,46.5 + parent: 588 + - uid: 1411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,46.5 + parent: 588 + - uid: 1417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,46.5 + parent: 588 + - uid: 1419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,46.5 + parent: 588 +- proto: GasPort + entities: + - uid: 1404 + components: + - type: Transform + pos: 9.5,48.5 + parent: 588 + - uid: 1422 + components: + - type: Transform + pos: 12.5,48.5 + parent: 588 +- proto: GasPressurePump + entities: + - uid: 1409 + components: + - type: Transform + pos: 9.5,47.5 + parent: 588 +- proto: GasThermoMachineFreezer + entities: + - uid: 1403 + components: + - type: Transform + pos: 10.5,48.5 + parent: 588 +- proto: GatfruitSeeds + entities: + - uid: 562 + components: + - type: Transform + pos: 8.528373,27.49547 + parent: 588 +- proto: Gauze + entities: + - uid: 1482 + components: + - type: Transform + pos: 8.452288,42.514927 + parent: 588 +- proto: GeneratorRTG + entities: + - uid: 742 + components: + - type: Transform + pos: 27.5,21.5 + parent: 588 + - uid: 748 + components: + - type: Transform + pos: 25.5,21.5 + parent: 588 +- proto: Girder + entities: + - uid: 1301 + components: + - type: Transform + pos: 26.5,39.5 + parent: 588 +- proto: Grille + entities: + - uid: 209 + components: + - type: Transform + pos: 15.5,34.5 + parent: 588 + - uid: 211 + components: + - type: Transform + pos: 19.5,36.5 + parent: 588 + - uid: 212 + components: + - type: Transform + pos: 19.5,34.5 + parent: 588 + - uid: 213 + components: + - type: Transform + pos: 15.5,36.5 + parent: 588 + - uid: 403 + components: + - type: Transform + pos: 15.5,9.5 + parent: 588 + - uid: 404 + components: + - type: Transform + pos: 15.5,7.5 + parent: 588 + - uid: 407 + components: + - type: Transform + pos: 19.5,9.5 + parent: 588 + - uid: 408 + components: + - type: Transform + pos: 19.5,7.5 + parent: 588 + - uid: 568 + components: + - type: Transform + pos: 12.5,15.5 + parent: 588 + - uid: 584 + components: + - type: Transform + pos: 2.5,12.5 + parent: 588 + - uid: 586 + components: + - type: Transform + pos: 2.5,16.5 + parent: 588 + - uid: 587 + components: + - type: Transform + pos: 4.5,16.5 + parent: 588 + - uid: 589 + components: + - type: Transform + pos: 4.5,12.5 + parent: 588 + - uid: 1465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,43.5 + parent: 588 + - uid: 1466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,43.5 + parent: 588 +- proto: GrilleBroken + entities: + - uid: 1302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,39.5 + parent: 588 +- proto: Handcuffs + entities: + - uid: 1614 + components: + - type: Transform + pos: 22.608034,10.659381 + parent: 588 +- proto: Hemostat + entities: + - uid: 1471 + components: + - type: Transform + pos: 8.51377,43.004257 + parent: 588 +- proto: HighSecArmoryLocked + entities: + - uid: 1597 + components: + - type: Transform + pos: 26.5,7.5 + parent: 588 + - uid: 1598 + components: + - type: Transform + pos: 32.5,7.5 + parent: 588 + - uid: 1599 + components: + - type: Transform + pos: 29.5,9.5 + parent: 588 +- proto: HospitalCurtains + entities: + - uid: 402 + components: + - type: Transform + pos: 8.5,27.5 + parent: 588 + - uid: 949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,24.5 + parent: 588 + - uid: 951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,27.5 + parent: 588 + - uid: 1768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,48.5 + parent: 588 +- proto: HospitalCurtainsOpen + entities: + - uid: 946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,25.5 + parent: 588 + - uid: 947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,24.5 + parent: 588 + - uid: 1040 + components: + - type: Transform + pos: 20.5,28.5 + parent: 588 + - uid: 1046 + components: + - type: Transform + pos: 22.5,24.5 + parent: 588 + - uid: 1148 + components: + - type: Transform + pos: 28.5,25.5 + parent: 588 + - uid: 1149 + components: + - type: Transform + pos: 28.5,24.5 + parent: 588 + - uid: 1223 + components: + - type: Transform + pos: 20.5,36.5 + parent: 588 + - uid: 1224 + components: + - type: Transform + pos: 14.5,34.5 + parent: 588 + - uid: 1467 + components: + - type: Transform + pos: 12.5,42.5 + parent: 588 + - uid: 1469 + components: + - type: Transform + pos: 10.5,42.5 + parent: 588 + - uid: 1767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,42.5 + parent: 588 +- proto: HydroponicsToolHatchet + entities: + - uid: 1844 + components: + - type: Transform + pos: 29.538284,44.04174 + parent: 588 + - uid: 1851 + components: + - type: Transform + pos: 30.630798,21.602604 + parent: 588 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 1837 + components: + - type: Transform + pos: 30.099596,43.446724 + parent: 588 + - uid: 1841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.38517,20.601 + parent: 588 +- proto: HydroponicsToolSpade + entities: + - uid: 1838 + components: + - type: Transform + pos: 29.95761,43.361576 + parent: 588 + - uid: 1842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.42777,20.58681 + parent: 588 +- proto: hydroponicsTray + entities: + - uid: 796 + components: + - type: Transform + pos: 31.5,21.5 + parent: 588 + - uid: 797 + components: + - type: Transform + pos: 31.5,20.5 + parent: 588 + - uid: 798 + components: + - type: Transform + pos: 31.5,19.5 + parent: 588 + - uid: 1772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,42.5 + parent: 588 + - uid: 1774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,44.5 + parent: 588 + - uid: 1787 + components: + - type: Transform + pos: 30.5,44.5 + parent: 588 + - uid: 1788 + components: + - type: Transform + pos: 30.5,42.5 + parent: 588 +- proto: IngotGold + entities: + - uid: 952 + components: + - type: Transform + pos: 11.069347,39.504154 + parent: 588 +- proto: KitchenMicrowave + entities: + - uid: 524 + components: + - type: Transform + pos: 16.5,12.5 + parent: 588 + - uid: 709 + components: + - type: Transform + pos: 18.5,22.5 + parent: 588 + - uid: 1785 + components: + - type: Transform + pos: 29.5,48.5 + parent: 588 +- proto: KitchenReagentGrinder + entities: + - uid: 1786 + components: + - type: Transform + pos: 30.5,47.5 + parent: 588 +- proto: KnifePlastic + entities: + - uid: 530 + components: + - type: Transform + pos: 17.249546,12.643455 + parent: 588 + - uid: 1836 + components: + - type: Transform + pos: 30.241585,48.271698 + parent: 588 +- proto: Lamp + entities: + - uid: 581 + components: + - type: Transform + pos: 12.369425,13.798887 + parent: 588 +- proto: LampGold + entities: + - uid: 322 + components: + - type: Transform + pos: 18.419699,1.6320114 + parent: 588 + - uid: 323 + components: + - type: Transform + pos: 20.563715,4.8959665 + parent: 588 + - uid: 729 + components: + - type: Transform + pos: 6.4779434,22.892899 + parent: 588 + - uid: 730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.765976,19.912766 + parent: 588 +- proto: Lighter + entities: + - uid: 1220 + components: + - type: Transform + pos: 7.5287867,36.397644 + parent: 588 +- proto: LockerDetective + entities: + - uid: 560 + components: + - type: Transform + pos: 14.5,16.5 + parent: 588 +- proto: LockerEvidence + entities: + - uid: 254 + components: + - type: Transform + pos: 16.5,0.5 + parent: 588 + - uid: 262 + components: + - type: Transform + pos: 2.5,0.5 + parent: 588 + - uid: 263 + components: + - type: Transform + pos: 4.5,0.5 + parent: 588 + - uid: 276 + components: + - type: Transform + pos: 0.5,0.5 + parent: 588 + - uid: 286 + components: + - type: Transform + pos: 12.5,0.5 + parent: 588 + - uid: 287 + components: + - type: Transform + pos: 14.5,0.5 + parent: 588 + - uid: 704 + components: + - type: Transform + pos: 16.5,22.5 + parent: 588 +- proto: LockerMedicineFilled + entities: + - uid: 1152 + components: + - type: Transform + pos: 28.5,27.5 + parent: 588 +- proto: LockerSecurityFilled + entities: + - uid: 416 + components: + - type: Transform + pos: 20.5,6.5 + parent: 588 +- proto: LockerSyndicatePersonal + entities: + - uid: 605 + components: + - type: Transform + pos: 6.5,12.5 + parent: 588 +- proto: MachineFrame + entities: + - uid: 400 + components: + - type: Transform + pos: 26.5,8.5 + parent: 588 +- proto: MaintenanceFluffSpawner + entities: + - uid: 414 + components: + - type: Transform + pos: 25.5,32.5 + parent: 588 + - uid: 1289 + components: + - type: Transform + pos: 17.5,38.5 + parent: 588 + - uid: 1290 + components: + - type: Transform + pos: 21.5,40.5 + parent: 588 + - uid: 1291 + components: + - type: Transform + pos: 20.5,40.5 + parent: 588 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 548 + components: + - type: Transform + pos: 15.5,4.5 + parent: 588 + - uid: 549 + components: + - type: Transform + pos: 3.5,4.5 + parent: 588 + - uid: 1580 + components: + - type: Transform + pos: 1.5,8.5 + parent: 588 + - uid: 1581 + components: + - type: Transform + pos: 9.5,8.5 + parent: 588 +- proto: MaterialCloth1 + entities: + - uid: 702 + components: + - type: Transform + pos: 12.462601,18.586084 + parent: 588 + - uid: 1065 + components: + - type: Transform + pos: 24.460928,24.594687 + parent: 588 + - uid: 1066 + components: + - type: Transform + pos: 24.389935,24.296673 + parent: 588 +- proto: MaterialWoodPlank1 + entities: + - uid: 703 + components: + - type: Transform + pos: 12.817572,18.685423 + parent: 588 + - uid: 1064 + components: + - type: Transform + pos: 26.278374,24.608877 + parent: 588 + - uid: 1067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.801699,24.708214 + parent: 588 + - uid: 1076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.823982,27.574818 + parent: 588 +- proto: MedicalBed + entities: + - uid: 1146 + components: + - type: Transform + pos: 28.5,24.5 + parent: 588 + - uid: 1147 + components: + - type: Transform + pos: 28.5,25.5 + parent: 588 +- proto: MedkitAdvancedFilled + entities: + - uid: 1153 + components: + - type: Transform + pos: 30.614443,28.392822 + parent: 588 +- proto: MedkitCombatFilled + entities: + - uid: 1154 + components: + - type: Transform + pos: 30.40146,28.066427 + parent: 588 +- proto: OperatingTable + entities: + - uid: 1389 + components: + - type: Transform + pos: 9.5,43.5 + parent: 588 +- proto: Paper + entities: + - uid: 1055 + components: + - type: Transform + pos: 20.428474,24.722406 + parent: 588 + - uid: 1056 + components: + - type: Transform + pos: 20.669853,24.52373 + parent: 588 +- proto: PaperOffice + entities: + - uid: 327 + components: + - type: Transform + pos: 21.415642,4.0728827 + parent: 588 + - uid: 328 + components: + - type: Transform + pos: 21.586027,4.0019264 + parent: 588 + - uid: 1113 + components: + - type: Transform + pos: 20.706646,15.341779 + parent: 588 + - uid: 1114 + components: + - type: Transform + pos: 20.465267,15.185677 + parent: 588 + - uid: 1115 + components: + - type: Transform + pos: 20.30908,14.603841 + parent: 588 +- proto: PartRodMetal1 + entities: + - uid: 1071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.341253,26.595633 + parent: 588 + - uid: 1072 + components: + - type: Transform + pos: 25.36965,28.11408 + parent: 588 +- proto: Pen + entities: + - uid: 366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.352327,3.9473093 + parent: 588 + - uid: 367 + components: + - type: Transform + pos: 18.75395,1.1232786 + parent: 588 + - uid: 368 + components: + - type: Transform + pos: 24.788435,1.4496742 + parent: 588 + - uid: 731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.36841,19.019064 + parent: 588 + - uid: 732 + components: + - type: Transform + pos: 7.4631767,22.637186 + parent: 588 +- proto: PhoneInstrument + entities: + - uid: 371 + components: + - type: Transform + pos: 25.484175,4.4865713 + parent: 588 +- proto: PillCanister + entities: + - uid: 1481 + components: + - type: Transform + pos: 14.438607,42.637726 + parent: 588 +- proto: PillSpaceDrugs + entities: + - uid: 1479 + components: + - type: Transform + pos: 14.438607,42.96412 + parent: 588 + - uid: 1480 + components: + - type: Transform + pos: 14.537998,42.878975 + parent: 588 +- proto: PlushieNuke + entities: + - uid: 1850 + components: + - type: Transform + pos: 22.519993,28.594225 + parent: 588 +- proto: PortableFlasher + entities: + - uid: 1234 + components: + - type: Transform + pos: 32.5,25.5 + parent: 588 +- proto: PortableGeneratorPacman + entities: + - uid: 967 + components: + - type: Transform + pos: 16.5,32.5 + parent: 588 + - uid: 969 + components: + - type: Transform + pos: 24.5,32.5 + parent: 588 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 50 + components: + - type: Transform + pos: 26.5,15.5 + parent: 588 + - uid: 55 + components: + - type: Transform + pos: 28.5,15.5 + parent: 588 + - uid: 1504 + components: + - type: Transform + pos: 18.5,44.5 + parent: 588 + - uid: 1505 + components: + - type: Transform + pos: 20.5,44.5 + parent: 588 +- proto: PortableScrubber + entities: + - uid: 1101 + components: + - type: Transform + pos: 18.5,30.5 + parent: 588 +- proto: PosterContrabandBountyHunters + entities: + - uid: 1578 + components: + - type: Transform + pos: 13.5,15.5 + parent: 588 +- proto: PosterLegitDickGumshue + entities: + - uid: 1576 + components: + - type: Transform + pos: 9.5,15.5 + parent: 588 +- proto: PosterLegitEnlist + entities: + - uid: 1800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 588 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 1802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,48.5 + parent: 588 + - uid: 1803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,21.5 + parent: 588 +- proto: PosterLegitObey + entities: + - uid: 1801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,42.5 + parent: 588 +- proto: PosterLegitSecWatch + entities: + - uid: 1799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 588 +- proto: PosterLegitSpaceCops + entities: + - uid: 1804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,19.5 + parent: 588 +- proto: PottedPlantRandom + entities: + - uid: 1286 + components: + - type: Transform + pos: 16.5,38.5 + parent: 588 + - uid: 1287 + components: + - type: Transform + pos: 22.5,40.5 + parent: 588 +- proto: PowerCellHyper + entities: + - uid: 469 + components: + - type: Transform + pos: 12.355853,25.41643 + parent: 588 + - uid: 590 + components: + - type: Transform + pos: 5.381793,16.642464 + parent: 588 +- proto: PowerCellRecharger + entities: + - uid: 1103 + components: + - type: Transform + pos: 15.5,30.5 + parent: 588 + - uid: 1568 + components: + - type: Transform + pos: 21.5,47.5 + parent: 588 +- proto: Poweredlight + entities: + - uid: 1641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,0.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,0.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,0.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,6.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1649 + components: + - type: Transform + pos: 13.5,10.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,6.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1651 + components: + - type: Transform + pos: 18.5,10.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,25.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,12.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1702 + components: + - type: Transform + pos: 20.5,16.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,20.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,25.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,27.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1706 + components: + - type: Transform + pos: 18.5,40.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,21.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1743 + components: + - type: Transform + pos: 21.5,22.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,43.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,47.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredlightLED + entities: + - uid: 1707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,42.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,42.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,46.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,46.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,27.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredSmallLight + entities: + - uid: 470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,14.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,28.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,10.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,10.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1605 + components: + - type: Transform + pos: 29.5,6.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,8.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1607 + components: + - type: Transform + pos: 32.5,8.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1608 + components: + - type: Transform + pos: 26.5,8.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1644 + components: + - type: Transform + pos: 20.5,4.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,0.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,8.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,8.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,14.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,14.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1659 + components: + - type: Transform + pos: 3.5,18.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,22.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,27.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,25.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1664 + components: + - type: Transform + pos: 0.5,28.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,24.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,30.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,30.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,36.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1669 + components: + - type: Transform + pos: 8.5,34.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,38.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,38.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,43.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,43.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1674 + components: + - type: Transform + pos: 2.5,47.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1675 + components: + - type: Transform + pos: 4.5,47.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1676 + components: + - type: Transform + pos: 9.5,40.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1677 + components: + - type: Transform + pos: 13.5,40.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1678 + components: + - type: Transform + pos: 13.5,36.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,34.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,35.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,35.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1682 + components: + - type: Transform + pos: 25.5,36.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1683 + components: + - type: Transform + pos: 28.5,38.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1684 + components: + - type: Transform + pos: 19.5,46.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,47.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,47.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1687 + components: + - type: Transform + pos: 23.5,32.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1688 + components: + - type: Transform + pos: 17.5,32.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,27.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,25.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,19.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,19.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1696 + components: + - type: Transform + pos: 13.5,22.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,18.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,18.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,16.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,13.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,42.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1829 + components: + - type: Transform + pos: 25.5,48.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredSmallLightEmpty + entities: + - uid: 1640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,25.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,27.5 + parent: 588 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: Rack + entities: + - uid: 255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,0.5 + parent: 588 + - uid: 264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 588 + - uid: 283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 588 + - uid: 285 + components: + - type: Transform + pos: 13.5,0.5 + parent: 588 + - uid: 324 + components: + - type: Transform + pos: 19.5,4.5 + parent: 588 + - uid: 396 + components: + - type: Transform + pos: 28.5,8.5 + parent: 588 + - uid: 401 + components: + - type: Transform + pos: 32.5,8.5 + parent: 588 + - uid: 417 + components: + - type: Transform + pos: 12.5,6.5 + parent: 588 + - uid: 418 + components: + - type: Transform + pos: 12.5,10.5 + parent: 588 + - uid: 419 + components: + - type: Transform + pos: 22.5,10.5 + parent: 588 + - uid: 420 + components: + - type: Transform + pos: 22.5,6.5 + parent: 588 + - uid: 478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,15.5 + parent: 588 + - uid: 551 + components: + - type: Transform + pos: 22.5,15.5 + parent: 588 + - uid: 585 + components: + - type: Transform + pos: 1.5,12.5 + parent: 588 + - uid: 596 + components: + - type: Transform + pos: 1.5,16.5 + parent: 588 + - uid: 597 + components: + - type: Transform + pos: 5.5,16.5 + parent: 588 + - uid: 598 + components: + - type: Transform + pos: 5.5,12.5 + parent: 588 + - uid: 966 + components: + - type: Transform + pos: 25.5,32.5 + parent: 588 + - uid: 977 + components: + - type: Transform + pos: 15.5,32.5 + parent: 588 + - uid: 1015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,25.5 + parent: 588 + - uid: 1016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,24.5 + parent: 588 + - uid: 1021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,25.5 + parent: 588 + - uid: 1024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,24.5 + parent: 588 + - uid: 1111 + components: + - type: Transform + pos: 14.5,32.5 + parent: 588 + - uid: 1112 + components: + - type: Transform + pos: 26.5,32.5 + parent: 588 + - uid: 1206 + components: + - type: Transform + pos: 1.5,8.5 + parent: 588 + - uid: 1208 + components: + - type: Transform + pos: 9.5,8.5 + parent: 588 + - uid: 1211 + components: + - type: Transform + pos: 2.5,34.5 + parent: 588 + - uid: 1319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,40.5 + parent: 588 + - uid: 1562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,47.5 + parent: 588 + - uid: 1858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,21.5 + parent: 588 +- proto: Railing + entities: + - uid: 313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,4.5 + parent: 588 + - uid: 314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,0.5 + parent: 588 + - uid: 427 + components: + - type: Transform + pos: 6.5,7.5 + parent: 588 + - uid: 428 + components: + - type: Transform + pos: 4.5,7.5 + parent: 588 + - uid: 429 + components: + - type: Transform + pos: 3.5,7.5 + parent: 588 + - uid: 430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,9.5 + parent: 588 + - uid: 431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 588 + - uid: 435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,9.5 + parent: 588 + - uid: 436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 588 + - uid: 437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,9.5 + parent: 588 + - uid: 439 + components: + - type: Transform + pos: 5.5,7.5 + parent: 588 + - uid: 440 + components: + - type: Transform + pos: 7.5,7.5 + parent: 588 + - uid: 770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,21.5 + parent: 588 + - uid: 850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,30.5 + parent: 588 + - uid: 851 + components: + - type: Transform + pos: 9.5,32.5 + parent: 588 + - uid: 854 + components: + - type: Transform + pos: 3.5,32.5 + parent: 588 + - uid: 855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,30.5 + parent: 588 + - uid: 1259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 588 + - uid: 1260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 588 + - uid: 1261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 588 + - uid: 1262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 588 +- proto: RailingCorner + entities: + - uid: 315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,1.5 + parent: 588 + - uid: 316 + components: + - type: Transform + pos: 30.5,3.5 + parent: 588 + - uid: 771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,21.5 + parent: 588 + - uid: 772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,21.5 + parent: 588 + - uid: 845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,32.5 + parent: 588 + - uid: 846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,30.5 + parent: 588 + - uid: 847 + components: + - type: Transform + pos: 10.5,32.5 + parent: 588 + - uid: 848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,30.5 + parent: 588 + - uid: 849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,30.5 + parent: 588 + - uid: 852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,32.5 + parent: 588 + - uid: 853 + components: + - type: Transform + pos: 4.5,32.5 + parent: 588 + - uid: 856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,30.5 + parent: 588 + - uid: 886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,40.5 + parent: 588 + - uid: 888 + components: + - type: Transform + pos: 2.5,40.5 + parent: 588 + - uid: 890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,40.5 + parent: 588 + - uid: 891 + components: + - type: Transform + pos: 5.5,40.5 + parent: 588 + - uid: 892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,38.5 + parent: 588 + - uid: 893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,38.5 + parent: 588 + - uid: 894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,38.5 + parent: 588 + - uid: 895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,38.5 + parent: 588 + - uid: 1255 + components: + - type: Transform + pos: 7.5,3.5 + parent: 588 + - uid: 1256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 588 + - uid: 1257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,1.5 + parent: 588 + - uid: 1258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 588 + - uid: 1351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,44.5 + parent: 588 + - uid: 1352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,43.5 + parent: 588 + - uid: 1353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,43.5 + parent: 588 + - uid: 1354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,44.5 + parent: 588 + - uid: 1355 + components: + - type: Transform + pos: 1.5,46.5 + parent: 588 + - uid: 1356 + components: + - type: Transform + pos: 2.5,47.5 + parent: 588 + - uid: 1357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,47.5 + parent: 588 + - uid: 1358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,46.5 + parent: 588 +- proto: RailingCornerSmall + entities: + - uid: 337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,3.5 + parent: 588 + - uid: 338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,1.5 + parent: 588 + - uid: 1376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,43.5 + parent: 588 + - uid: 1377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,47.5 + parent: 588 + - uid: 1378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,47.5 + parent: 588 + - uid: 1379 + components: + - type: Transform + pos: 5.5,43.5 + parent: 588 +- proto: RandomDrinkBottle + entities: + - uid: 580 + components: + - type: Transform + pos: 12.5,12.5 + parent: 588 +- proto: RandomFoodSingle + entities: + - uid: 764 + components: + - type: Transform + pos: 6.5,19.5 + parent: 588 +- proto: RandomInstruments + entities: + - uid: 546 + components: + - type: Transform + pos: 1.5,4.5 + parent: 588 + - uid: 1159 + components: + - type: Transform + pos: 21.5,18.5 + parent: 588 + - uid: 1833 + components: + - type: Transform + pos: 24.5,42.5 + parent: 588 +- proto: RandomPosterContraband + entities: + - uid: 1571 + components: + - type: Transform + pos: 25.5,39.5 + parent: 588 + - uid: 1572 + components: + - type: Transform + pos: 3.5,35.5 + parent: 588 + - uid: 1573 + components: + - type: Transform + pos: 7.5,35.5 + parent: 588 + - uid: 1574 + components: + - type: Transform + pos: 5.5,25.5 + parent: 588 + - uid: 1575 + components: + - type: Transform + pos: 30.5,15.5 + parent: 588 + - uid: 1805 + components: + - type: Transform + pos: 18.5,43.5 + parent: 588 + - uid: 1806 + components: + - type: Transform + pos: 20.5,47.5 + parent: 588 +- proto: RandomSoap + entities: + - uid: 397 + components: + - type: Transform + pos: 8.5,24.5 + parent: 588 +- proto: RandomVending + entities: + - uid: 539 + components: + - type: Transform + pos: 17.5,16.5 + parent: 588 +- proto: ReinforcedWindow + entities: + - uid: 214 + components: + - type: Transform + pos: 19.5,34.5 + parent: 588 + - uid: 409 + components: + - type: Transform + pos: 15.5,7.5 + parent: 588 + - uid: 410 + components: + - type: Transform + pos: 15.5,9.5 + parent: 588 + - uid: 411 + components: + - type: Transform + pos: 19.5,7.5 + parent: 588 + - uid: 412 + components: + - type: Transform + pos: 19.5,9.5 + parent: 588 + - uid: 591 + components: + - type: Transform + pos: 2.5,12.5 + parent: 588 + - uid: 592 + components: + - type: Transform + pos: 4.5,12.5 + parent: 588 + - uid: 594 + components: + - type: Transform + pos: 4.5,16.5 + parent: 588 + - uid: 595 + components: + - type: Transform + pos: 2.5,16.5 + parent: 588 + - uid: 1166 + components: + - type: Transform + pos: 19.5,36.5 + parent: 588 + - uid: 1168 + components: + - type: Transform + pos: 15.5,36.5 + parent: 588 + - uid: 1169 + components: + - type: Transform + pos: 15.5,34.5 + parent: 588 +- proto: RemoteSignaller + entities: + - uid: 593 + components: + - type: Transform + pos: 34.361877,24.623777 + parent: 588 + - type: DeviceLinkSource + linkedPorts: + 1238: + - Pressed: Toggle + 1239: + - Pressed: Toggle + 1237: + - Pressed: Toggle + - uid: 1104 + components: + - type: Transform + pos: 25.24476,30.698978 + parent: 588 + - uid: 1105 + components: + - type: Transform + pos: 25.443544,30.613832 + parent: 588 + - uid: 1106 + components: + - type: Transform + pos: 5.677143,16.762346 + parent: 588 +- proto: RiotLaserShield + entities: + - uid: 1618 + components: + - type: Transform + pos: 12.616156,10.534842 + parent: 588 +- proto: RiotShield + entities: + - uid: 600 + components: + - type: Transform + pos: 1.3209407,16.656654 + parent: 588 + - uid: 601 + components: + - type: Transform + pos: 1.5481212,16.543125 + parent: 588 +- proto: SalvageCanisterSpawner + entities: + - uid: 998 + components: + - type: Transform + pos: 22.5,30.5 + parent: 588 + - uid: 1009 + components: + - type: Transform + pos: 19.5,30.5 + parent: 588 + - uid: 1025 + components: + - type: Transform + pos: 21.5,30.5 + parent: 588 + - uid: 1190 + components: + - type: Transform + pos: 9.5,36.5 + parent: 588 + - uid: 1210 + components: + - type: Transform + pos: 9.5,48.5 + parent: 588 + - uid: 1413 + components: + - type: Transform + pos: 13.5,48.5 + parent: 588 + - uid: 1470 + components: + - type: Transform + pos: 12.5,48.5 + parent: 588 +- proto: SawAdvanced + entities: + - uid: 1468 + components: + - type: Transform + pos: 8.527969,43.529327 + parent: 588 +- proto: ScalpelLaser + entities: + - uid: 1472 + components: + - type: Transform + pos: 8.485372,43.131977 + parent: 588 +- proto: ScalpelShiv + entities: + - uid: 708 + components: + - type: Transform + pos: 16.074419,18.727995 + parent: 588 + - uid: 1592 + components: + - type: Transform + pos: 10.50393,24.491432 + parent: 588 +- proto: SeedExtractor + entities: + - uid: 802 + components: + - type: Transform + pos: 33.5,21.5 + parent: 588 + - uid: 1776 + components: + - type: Transform + pos: 28.5,42.5 + parent: 588 +- proto: SheetGlass + entities: + - uid: 649 + components: + - type: Transform + pos: 14.3137455,32.471424 + parent: 588 +- proto: SheetPlasteel + entities: + - uid: 866 + components: + - type: Transform + pos: 2.412651,34.456436 + parent: 588 +- proto: SheetPlastic + entities: + - uid: 398 + components: + - type: Transform + pos: 20.04785,45.07574 + parent: 588 +- proto: SheetSteel + entities: + - uid: 656 + components: + - type: Transform + pos: 26.36062,32.5183 + parent: 588 + - uid: 699 + components: + - type: Transform + pos: 29.259031,40.432583 + parent: 588 +- proto: ShowcaseRobot + entities: + - uid: 1621 + components: + - type: Transform + pos: 16.5,10.5 + parent: 588 + - uid: 1622 + components: + - type: Transform + pos: 18.5,6.5 + parent: 588 +- proto: ShuttersNormal + entities: + - uid: 1237 + components: + - type: Transform + pos: 34.5,27.5 + parent: 588 + - type: DeviceLinkSink + links: + - 593 + - uid: 1238 + components: + - type: Transform + pos: 32.5,27.5 + parent: 588 + - type: DeviceLinkSink + links: + - 593 +- proto: ShuttersWindow + entities: + - uid: 1239 + components: + - type: Transform + pos: 33.5,27.5 + parent: 588 + - type: DeviceLinkSink + links: + - 593 +- proto: SignCloning + entities: + - uid: 1484 + components: + - type: Transform + pos: 12.5,43.5 + parent: 588 +- proto: SignPrison + entities: + - uid: 1792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 588 + - uid: 1793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 588 + - uid: 1794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,21.5 + parent: 588 + - uid: 1795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 588 + - uid: 1796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,46.5 + parent: 588 + - uid: 1797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,44.5 + parent: 588 +- proto: SignSecurity + entities: + - uid: 1798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,1.5 + parent: 588 +- proto: SignSurgery + entities: + - uid: 1483 + components: + - type: Transform + pos: 10.5,43.5 + parent: 588 +- proto: Sink + entities: + - uid: 935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 588 +- proto: SinkStemlessWater + entities: + - uid: 1461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,42.5 + parent: 588 + - uid: 1462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,42.5 + parent: 588 +- proto: SMESBasic + entities: + - uid: 46 + components: + - type: Transform + pos: 26.5,13.5 + parent: 588 + - uid: 56 + components: + - type: Transform + pos: 28.5,13.5 + parent: 588 + - uid: 747 + components: + - type: Transform + pos: 26.5,19.5 + parent: 588 + - uid: 1506 + components: + - type: Transform + pos: 18.5,46.5 + parent: 588 + - uid: 1507 + components: + - type: Transform + pos: 20.5,46.5 + parent: 588 +- proto: SoapSyndie + entities: + - uid: 1856 + components: + - type: Transform + pos: 10.4890785,27.46785 + parent: 588 +- proto: SpaceCash100 + entities: + - uid: 1243 + components: + - type: Transform + pos: 11.887424,39.621456 + parent: 588 + - uid: 1244 + components: + - type: Transform + pos: 11.759636,39.479546 + parent: 588 + - uid: 1296 + components: + - type: Transform + pos: 12.100407,39.465355 + parent: 588 + - uid: 1297 + components: + - type: Transform + pos: 12.100407,39.80594 + parent: 588 + - uid: 1298 + components: + - type: Transform + pos: 11.688642,39.720795 + parent: 588 + - uid: 1299 + components: + - type: Transform + pos: 11.4330635,39.57888 + parent: 588 +- proto: Spear + entities: + - uid: 1834 + components: + - type: Transform + pos: 24.466219,48.441994 + parent: 588 +- proto: SpeedLoaderMagnum + entities: + - uid: 950 + components: + - type: Transform + pos: 28.703945,8.421182 + parent: 588 +- proto: StasisBed + entities: + - uid: 1425 + components: + - type: Transform + pos: 13.5,43.5 + parent: 588 +- proto: StimkitFilled + entities: + - uid: 561 + components: + - type: Transform + pos: 30.39083,27.514402 + parent: 588 +- proto: StimpackMini + entities: + - uid: 1879 + components: + - type: Transform + pos: 24.467485,46.702366 + parent: 588 +- proto: Stool + entities: + - uid: 1017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,25.5 + parent: 588 + - uid: 1018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,24.5 + parent: 588 + - uid: 1019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,28.5 + parent: 588 + - uid: 1020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,28.5 + parent: 588 + - uid: 1593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 588 + - uid: 1594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,15.5 + parent: 588 + - uid: 1595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,15.5 + parent: 588 + - uid: 1596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,13.5 + parent: 588 +- proto: SubstationBasic + entities: + - uid: 467 + components: + - type: Transform + pos: 27.5,13.5 + parent: 588 + - uid: 1508 + components: + - type: Transform + pos: 19.5,46.5 + parent: 588 +- proto: SubstationWallBasic + entities: + - uid: 774 + components: + - type: Transform + pos: 27.5,19.5 + parent: 588 + - uid: 972 + components: + - type: Transform + pos: 19.5,32.5 + parent: 588 +- proto: SyringeEphedrine + entities: + - uid: 1475 + components: + - type: Transform + pos: 14.472328,42.917698 + parent: 588 +- proto: Table + entities: + - uid: 525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,13.5 + parent: 588 + - uid: 527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,12.5 + parent: 588 + - uid: 528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,12.5 + parent: 588 + - uid: 535 + components: + - type: Transform + pos: 20.5,14.5 + parent: 588 + - uid: 536 + components: + - type: Transform + pos: 20.5,15.5 + parent: 588 + - uid: 630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,19.5 + parent: 588 + - uid: 632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,19.5 + parent: 588 + - uid: 633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,18.5 + parent: 588 + - uid: 636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,22.5 + parent: 588 + - uid: 637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,22.5 + parent: 588 + - uid: 710 + components: + - type: Transform + pos: 18.5,22.5 + parent: 588 + - uid: 711 + components: + - type: Transform + pos: 18.5,21.5 + parent: 588 + - uid: 712 + components: + - type: Transform + pos: 21.5,18.5 + parent: 588 + - uid: 713 + components: + - type: Transform + pos: 22.5,18.5 + parent: 588 + - uid: 714 + components: + - type: Transform + pos: 18.5,18.5 + parent: 588 + - uid: 715 + components: + - type: Transform + pos: 19.5,18.5 + parent: 588 + - uid: 799 + components: + - type: Transform + pos: 33.5,20.5 + parent: 588 + - uid: 1118 + components: + - type: Transform + pos: 22.5,12.5 + parent: 588 + - uid: 1778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,48.5 + parent: 588 + - uid: 1779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,48.5 + parent: 588 + - uid: 1780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,47.5 + parent: 588 +- proto: TableFrame + entities: + - uid: 705 + components: + - type: Transform + pos: 15.5,22.5 + parent: 588 + - uid: 1063 + components: + - type: Transform + pos: 26.5,24.5 + parent: 588 +- proto: TableGlass + entities: + - uid: 1144 + components: + - type: Transform + pos: 30.5,27.5 + parent: 588 + - uid: 1145 + components: + - type: Transform + pos: 30.5,28.5 + parent: 588 + - uid: 1390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,43.5 + parent: 588 + - uid: 1391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,42.5 + parent: 588 + - uid: 1398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,44.5 + parent: 588 + - uid: 1405 + components: + - type: Transform + pos: 14.5,42.5 + parent: 588 + - uid: 1406 + components: + - type: Transform + pos: 14.5,43.5 + parent: 588 + - uid: 1407 + components: + - type: Transform + pos: 12.5,44.5 + parent: 588 +- proto: TableReinforced + entities: + - uid: 924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,36.5 + parent: 588 + - uid: 925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,35.5 + parent: 588 + - uid: 926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,34.5 + parent: 588 + - uid: 1005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,30.5 + parent: 588 + - uid: 1006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,30.5 + parent: 588 + - uid: 1012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,28.5 + parent: 588 + - uid: 1023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,24.5 + parent: 588 + - uid: 1235 + components: + - type: Transform + pos: 34.5,24.5 + parent: 588 + - uid: 1567 + components: + - type: Transform + pos: 21.5,47.5 + parent: 588 +- proto: TableReinforcedGlass + entities: + - uid: 1213 + components: + - type: Transform + pos: 10.5,39.5 + parent: 588 + - uid: 1214 + components: + - type: Transform + pos: 11.5,39.5 + parent: 588 + - uid: 1215 + components: + - type: Transform + pos: 12.5,39.5 + parent: 588 +- proto: TableWood + entities: + - uid: 309 + components: + - type: Transform + pos: 20.5,4.5 + parent: 588 + - uid: 310 + components: + - type: Transform + pos: 21.5,4.5 + parent: 588 + - uid: 311 + components: + - type: Transform + pos: 18.5,0.5 + parent: 588 + - uid: 312 + components: + - type: Transform + pos: 21.5,3.5 + parent: 588 + - uid: 317 + components: + - type: Transform + pos: 18.5,1.5 + parent: 588 + - uid: 318 + components: + - type: Transform + pos: 19.5,0.5 + parent: 588 + - uid: 332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,3.5 + parent: 588 + - uid: 333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,3.5 + parent: 588 + - uid: 334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,3.5 + parent: 588 + - uid: 335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,4.5 + parent: 588 + - uid: 336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,4.5 + parent: 588 + - uid: 340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,1.5 + parent: 588 + - uid: 341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,1.5 + parent: 588 + - uid: 342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,1.5 + parent: 588 + - uid: 343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,1.5 + parent: 588 + - uid: 563 + components: + - type: Transform + pos: 13.5,13.5 + parent: 588 + - uid: 564 + components: + - type: Transform + pos: 12.5,13.5 + parent: 588 + - uid: 565 + components: + - type: Transform + pos: 12.5,12.5 + parent: 588 + - uid: 1047 + components: + - type: Transform + pos: 22.5,28.5 + parent: 588 + - uid: 1048 + components: + - type: Transform + pos: 20.5,24.5 + parent: 588 + - uid: 1062 + components: + - type: Transform + pos: 26.5,28.5 + parent: 588 + - uid: 1227 + components: + - type: Transform + pos: 12.5,36.5 + parent: 588 + - uid: 1228 + components: + - type: Transform + pos: 22.5,34.5 + parent: 588 + - uid: 1783 + components: + - type: Transform + pos: 24.5,46.5 + parent: 588 + - uid: 1784 + components: + - type: Transform + pos: 24.5,44.5 + parent: 588 +- proto: TargetHuman + entities: + - uid: 1077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,35.5 + parent: 588 +- proto: TintedWindow + entities: + - uid: 567 + components: + - type: Transform + pos: 12.5,15.5 + parent: 588 + - uid: 1463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,43.5 + parent: 588 + - uid: 1464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,43.5 + parent: 588 +- proto: ToiletEmpty + entities: + - uid: 932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,24.5 + parent: 588 + - uid: 933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,24.5 + parent: 588 + - uid: 934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,25.5 + parent: 588 +- proto: UniformScrubsColorPurple + entities: + - uid: 1712 + components: + - type: Transform + pos: 10.503376,44.53288 + parent: 588 +- proto: VendingMachineChefvend + entities: + - uid: 532 + components: + - type: Transform + pos: 18.5,12.5 + parent: 588 +- proto: VendingMachineCigs + entities: + - uid: 720 + components: + - type: Transform + pos: 22.5,22.5 + parent: 588 +- proto: VendingMachineCoffee + entities: + - uid: 765 + components: + - type: Transform + pos: 10.5,22.5 + parent: 588 + - uid: 1285 + components: + - type: Transform + pos: 18.5,40.5 + parent: 588 +- proto: VendingMachineDetDrobe + entities: + - uid: 582 + components: + - type: Transform + pos: 10.5,14.5 + parent: 588 +- proto: VendingMachineDinnerware + entities: + - uid: 1781 + components: + - type: Transform + pos: 30.5,46.5 + parent: 588 +- proto: VendingMachineDonut + entities: + - uid: 538 + components: + - type: Transform + pos: 16.5,16.5 + parent: 588 +- proto: VendingMachineLawDrobe + entities: + - uid: 319 + components: + - type: Transform + pos: 18.5,4.5 + parent: 588 +- proto: VendingMachineMedical + entities: + - uid: 1143 + components: + - type: Transform + pos: 28.5,28.5 + parent: 588 +- proto: VendingMachineSec + entities: + - uid: 1013 + components: + - type: Transform + pos: 14.5,27.5 + parent: 588 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 800 + components: + - type: Transform + pos: 33.5,19.5 + parent: 588 + - uid: 1775 + components: + - type: Transform + pos: 28.5,44.5 + parent: 588 +- proto: WallmountTelescreen + entities: + - uid: 572 + components: + - type: Transform + pos: 13.5,13.5 + parent: 588 +- proto: WallPlastitaniumIndestructible + entities: + - uid: 377 + components: + - type: Transform + pos: 30.5,7.5 + parent: 588 + - uid: 378 + components: + - type: Transform + pos: 29.5,7.5 + parent: 588 + - uid: 379 + components: + - type: Transform + pos: 25.5,9.5 + parent: 588 + - uid: 380 + components: + - type: Transform + pos: 27.5,9.5 + parent: 588 + - uid: 381 + components: + - type: Transform + pos: 27.5,8.5 + parent: 588 + - uid: 382 + components: + - type: Transform + pos: 28.5,9.5 + parent: 588 + - uid: 383 + components: + - type: Transform + pos: 31.5,9.5 + parent: 588 + - uid: 384 + components: + - type: Transform + pos: 31.5,8.5 + parent: 588 + - uid: 385 + components: + - type: Transform + pos: 31.5,7.5 + parent: 588 + - uid: 386 + components: + - type: Transform + pos: 25.5,8.5 + parent: 588 + - uid: 387 + components: + - type: Transform + pos: 33.5,7.5 + parent: 588 + - uid: 388 + components: + - type: Transform + pos: 25.5,7.5 + parent: 588 + - uid: 389 + components: + - type: Transform + pos: 27.5,7.5 + parent: 588 + - uid: 390 + components: + - type: Transform + pos: 30.5,9.5 + parent: 588 + - uid: 391 + components: + - type: Transform + pos: 28.5,7.5 + parent: 588 + - uid: 392 + components: + - type: Transform + pos: 26.5,9.5 + parent: 588 + - uid: 393 + components: + - type: Transform + pos: 33.5,8.5 + parent: 588 + - uid: 394 + components: + - type: Transform + pos: 33.5,9.5 + parent: 588 + - uid: 395 + components: + - type: Transform + pos: 32.5,9.5 + parent: 588 +- proto: WallReinforced + entities: + - uid: 45 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 588 + - uid: 51 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,8.5 + parent: 588 + - uid: 244 + components: + - type: Transform + pos: 6.5,4.5 + parent: 588 + - uid: 245 + components: + - type: Transform + pos: 6.5,3.5 + parent: 588 + - uid: 246 + components: + - type: Transform + pos: 10.5,4.5 + parent: 588 + - uid: 247 + components: + - type: Transform + pos: 10.5,3.5 + parent: 588 + - uid: 266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 588 + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 588 + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,1.5 + parent: 588 + - uid: 269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,0.5 + parent: 588 + - uid: 291 + components: + - type: Transform + pos: 15.5,6.5 + parent: 588 + - uid: 292 + components: + - type: Transform + pos: 19.5,6.5 + parent: 588 + - uid: 405 + components: + - type: Transform + pos: 15.5,10.5 + parent: 588 + - uid: 406 + components: + - type: Transform + pos: 19.5,10.5 + parent: 588 + - uid: 426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,9.5 + parent: 588 + - uid: 432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 588 + - uid: 433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 588 + - uid: 434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 588 + - uid: 570 + components: + - type: Transform + pos: 0.5,46.5 + parent: 588 + - uid: 621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,21.5 + parent: 588 + - uid: 622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 588 + - uid: 623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,21.5 + parent: 588 + - uid: 627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,19.5 + parent: 588 + - uid: 1078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,35.5 + parent: 588 + - uid: 1330 + components: + - type: Transform + pos: 0.5,44.5 + parent: 588 + - uid: 1332 + components: + - type: Transform + pos: 2.5,42.5 + parent: 588 + - uid: 1334 + components: + - type: Transform + pos: 4.5,42.5 + parent: 588 + - uid: 1335 + components: + - type: Transform + pos: 6.5,44.5 + parent: 588 + - uid: 1337 + components: + - type: Transform + pos: 4.5,48.5 + parent: 588 + - uid: 1338 + components: + - type: Transform + pos: 6.5,46.5 + parent: 588 + - uid: 1340 + components: + - type: Transform + pos: 2.5,48.5 + parent: 588 +- proto: WallSolid + entities: + - uid: 140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,25.5 + parent: 588 + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,26.5 + parent: 588 + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,25.5 + parent: 588 + - uid: 146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,27.5 + parent: 588 + - uid: 205 + components: + - type: Transform + pos: 8.5,35.5 + parent: 588 + - uid: 206 + components: + - type: Transform + pos: 7.5,35.5 + parent: 588 + - uid: 207 + components: + - type: Transform + pos: 6.5,35.5 + parent: 588 + - uid: 208 + components: + - type: Transform + pos: 4.5,35.5 + parent: 588 + - uid: 210 + components: + - type: Transform + pos: 1.5,34.5 + parent: 588 + - uid: 305 + components: + - type: Transform + pos: 22.5,4.5 + parent: 588 + - uid: 306 + components: + - type: Transform + pos: 22.5,3.5 + parent: 588 + - uid: 307 + components: + - type: Transform + pos: 22.5,0.5 + parent: 588 + - uid: 308 + components: + - type: Transform + pos: 22.5,1.5 + parent: 588 + - uid: 476 + components: + - type: Transform + pos: 25.5,13.5 + parent: 588 + - uid: 481 + components: + - type: Transform + pos: 25.5,15.5 + parent: 588 + - uid: 483 + components: + - type: Transform + pos: 30.5,13.5 + parent: 588 + - uid: 501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,14.5 + parent: 588 + - uid: 510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,15.5 + parent: 588 + - uid: 749 + components: + - type: Transform + pos: 25.5,19.5 + parent: 588 + - uid: 750 + components: + - type: Transform + pos: 27.5,19.5 + parent: 588 + - uid: 975 + components: + - type: Transform + pos: 19.5,32.5 + parent: 588 + - uid: 995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,32.5 + parent: 588 + - uid: 1163 + components: + - type: Transform + pos: 8.5,36.5 + parent: 588 + - uid: 1164 + components: + - type: Transform + pos: 3.5,35.5 + parent: 588 + - uid: 1165 + components: + - type: Transform + pos: 2.5,35.5 + parent: 588 + - uid: 1167 + components: + - type: Transform + pos: 1.5,35.5 + parent: 588 + - uid: 1300 + components: + - type: Transform + pos: 25.5,39.5 + parent: 588 + - uid: 1303 + components: + - type: Transform + pos: 28.5,39.5 + parent: 588 + - uid: 1304 + components: + - type: Transform + pos: 29.5,39.5 + parent: 588 + - uid: 1305 + components: + - type: Transform + pos: 28.5,40.5 + parent: 588 + - uid: 1485 + components: + - type: Transform + pos: 17.5,43.5 + parent: 588 + - uid: 1486 + components: + - type: Transform + pos: 17.5,44.5 + parent: 588 + - uid: 1487 + components: + - type: Transform + pos: 18.5,43.5 + parent: 588 + - uid: 1488 + components: + - type: Transform + pos: 20.5,43.5 + parent: 588 + - uid: 1489 + components: + - type: Transform + pos: 21.5,43.5 + parent: 588 + - uid: 1490 + components: + - type: Transform + pos: 21.5,44.5 + parent: 588 + - uid: 1491 + components: + - type: Transform + pos: 18.5,47.5 + parent: 588 + - uid: 1492 + components: + - type: Transform + pos: 19.5,47.5 + parent: 588 + - uid: 1493 + components: + - type: Transform + pos: 20.5,47.5 + parent: 588 +- proto: WallWood + entities: + - uid: 554 + components: + - type: Transform + pos: 9.5,13.5 + parent: 588 + - uid: 555 + components: + - type: Transform + pos: 9.5,14.5 + parent: 588 + - uid: 556 + components: + - type: Transform + pos: 9.5,15.5 + parent: 588 + - uid: 557 + components: + - type: Transform + pos: 10.5,15.5 + parent: 588 + - uid: 558 + components: + - type: Transform + pos: 13.5,15.5 + parent: 588 + - uid: 559 + components: + - type: Transform + pos: 13.5,16.5 + parent: 588 + - uid: 566 + components: + - type: Transform + pos: 9.5,12.5 + parent: 588 +- proto: WardrobePrisonFilled + entities: + - uid: 297 + components: + - type: Transform + pos: 2.5,4.5 + parent: 588 + - uid: 302 + components: + - type: Transform + pos: 4.5,4.5 + parent: 588 + - uid: 303 + components: + - type: Transform + pos: 12.5,4.5 + parent: 588 + - uid: 304 + components: + - type: Transform + pos: 14.5,4.5 + parent: 588 + - uid: 544 + components: + - type: Transform + pos: 16.5,4.5 + parent: 588 + - uid: 545 + components: + - type: Transform + pos: 0.5,4.5 + parent: 588 + - uid: 1769 + components: + - type: Transform + pos: 24.5,43.5 + parent: 588 + - uid: 1770 + components: + - type: Transform + pos: 24.5,47.5 + parent: 588 +- proto: WaterCooler + entities: + - uid: 629 + components: + - type: Transform + pos: 6.5,18.5 + parent: 588 + - uid: 724 + components: + - type: Transform + pos: 19.5,22.5 + parent: 588 + - uid: 1284 + components: + - type: Transform + pos: 17.5,40.5 + parent: 588 + - uid: 1292 + components: + - type: Transform + pos: 21.5,12.5 + parent: 588 +- proto: WaterTankHighCapacity + entities: + - uid: 801 + components: + - type: Transform + pos: 30.5,22.5 + parent: 588 + - uid: 1789 + components: + - type: Transform + pos: 28.5,48.5 + parent: 588 +- proto: WeaponCapacitorRecharger + entities: + - uid: 760 + components: + - type: Transform + pos: 10.5,18.5 + parent: 588 + - uid: 929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,34.5 + parent: 588 + - uid: 1033 + components: + - type: Transform + pos: 14.5,28.5 + parent: 588 + - uid: 1034 + components: + - type: Transform + pos: 16.5,24.5 + parent: 588 +- proto: WeaponDisablerPractice + entities: + - uid: 547 + components: + - type: Transform + pos: 1.4370823,0.5241035 + parent: 588 + - uid: 930 + components: + - type: Transform + pos: 26.440151,36.61676 + parent: 588 + - uid: 1611 + components: + - type: Transform + pos: 12.371853,10.605072 + parent: 588 +- proto: WeaponLaserCarbinePractice + entities: + - uid: 931 + components: + - type: Transform + pos: 26.596338,36.36132 + parent: 588 + - uid: 1612 + components: + - type: Transform + pos: 22.543945,6.5464144 + parent: 588 +- proto: WeaponShotgunKammerer + entities: + - uid: 583 + components: + - type: Transform + pos: 26.57963,35.4414 + parent: 588 +- proto: WindoorAssemblySecure + entities: + - uid: 696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,19.5 + parent: 588 + - uid: 697 + components: + - type: Transform + pos: 12.5,21.5 + parent: 588 + - uid: 1073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,25.5 + parent: 588 +- proto: WindoorSecure + entities: + - uid: 1761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,43.5 + parent: 588 + - uid: 1762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,47.5 + parent: 588 +- proto: WindoorSecureBrigLocked + entities: + - uid: 339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,2.5 + parent: 588 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 1569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,45.5 + parent: 588 + - uid: 1570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,45.5 + parent: 588 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 1408 + components: + - type: Transform + pos: 11.5,44.5 + parent: 588 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 252 + components: + - type: Transform + pos: 4.5,3.5 + parent: 588 + - uid: 253 + components: + - type: Transform + pos: 2.5,3.5 + parent: 588 + - uid: 256 + components: + - type: Transform + pos: 16.5,3.5 + parent: 588 + - uid: 274 + components: + - type: Transform + pos: 12.5,3.5 + parent: 588 + - uid: 275 + components: + - type: Transform + pos: 14.5,3.5 + parent: 588 + - uid: 289 + components: + - type: Transform + pos: 0.5,3.5 + parent: 588 + - uid: 698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,19.5 + parent: 588 + - uid: 1053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,25.5 + parent: 588 + - uid: 1054 + components: + - type: Transform + pos: 21.5,27.5 + parent: 588 +- proto: WindowDirectional + entities: + - uid: 480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,15.5 + parent: 588 + - uid: 482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,15.5 + parent: 588 + - uid: 540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,15.5 + parent: 588 + - uid: 541 + components: + - type: Transform + pos: 26.5,13.5 + parent: 588 + - uid: 542 + components: + - type: Transform + pos: 27.5,13.5 + parent: 588 + - uid: 543 + components: + - type: Transform + pos: 28.5,13.5 + parent: 588 + - uid: 575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,20.5 + parent: 588 + - uid: 576 + components: + - type: Transform + pos: 26.5,19.5 + parent: 588 + - uid: 803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,21.5 + parent: 588 + - uid: 804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,19.5 + parent: 588 + - uid: 1087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,36.5 + parent: 588 + - uid: 1088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,34.5 + parent: 588 + - uid: 1520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,46.5 + parent: 588 + - uid: 1521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,46.5 + parent: 588 + - uid: 1771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,44.5 + parent: 588 + - uid: 1773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,44.5 + parent: 588 + - uid: 1777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,44.5 + parent: 588 + - uid: 1782 + components: + - type: Transform + pos: 30.5,46.5 + parent: 588 +- proto: WindowFrostedDirectional + entities: + - uid: 936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,24.5 + parent: 588 + - uid: 937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,24.5 + parent: 588 + - uid: 938 + components: + - type: Transform + pos: 8.5,27.5 + parent: 588 + - uid: 939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,25.5 + parent: 588 + - uid: 941 + components: + - type: Transform + pos: 10.5,27.5 + parent: 588 + - uid: 942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,28.5 + parent: 588 + - uid: 943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 588 + - uid: 1392 + components: + - type: Transform + pos: 8.5,44.5 + parent: 588 + - uid: 1393 + components: + - type: Transform + pos: 10.5,44.5 + parent: 588 + - uid: 1401 + components: + - type: Transform + pos: 12.5,44.5 + parent: 588 + - uid: 1402 + components: + - type: Transform + pos: 14.5,44.5 + parent: 588 + - uid: 1753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,43.5 + parent: 588 + - uid: 1754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,43.5 + parent: 588 + - uid: 1755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,43.5 + parent: 588 + - uid: 1756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,42.5 + parent: 588 + - uid: 1757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,48.5 + parent: 588 + - uid: 1758 + components: + - type: Transform + pos: 26.5,47.5 + parent: 588 + - uid: 1759 + components: + - type: Transform + pos: 25.5,47.5 + parent: 588 + - uid: 1760 + components: + - type: Transform + pos: 24.5,47.5 + parent: 588 +- proto: WindowReinforcedDirectional + entities: + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 588 + - uid: 99 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,14.5 + parent: 588 + - uid: 258 + components: + - type: Transform + pos: 3.5,3.5 + parent: 588 + - uid: 259 + components: + - type: Transform + pos: 5.5,3.5 + parent: 588 + - uid: 260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 588 + - uid: 261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 588 + - uid: 270 + components: + - type: Transform + pos: 11.5,3.5 + parent: 588 + - uid: 271 + components: + - type: Transform + pos: 13.5,3.5 + parent: 588 + - uid: 272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,3.5 + parent: 588 + - uid: 273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,4.5 + parent: 588 + - uid: 277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 588 + - uid: 278 + components: + - type: Transform + pos: 15.5,3.5 + parent: 588 + - uid: 279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,4.5 + parent: 588 + - uid: 280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 588 + - uid: 281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,3.5 + parent: 588 + - uid: 290 + components: + - type: Transform + pos: 1.5,3.5 + parent: 588 + - uid: 607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 588 + - uid: 609 + components: + - type: Transform + pos: 4.5,14.5 + parent: 588 + - uid: 611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 588 + - uid: 612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 588 + - uid: 614 + components: + - type: Transform + pos: 3.5,14.5 + parent: 588 + - uid: 619 + components: + - type: Transform + pos: 2.5,14.5 + parent: 588 + - uid: 620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,20.5 + parent: 588 + - uid: 624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,20.5 + parent: 588 + - uid: 625 + components: + - type: Transform + pos: 2.5,19.5 + parent: 588 + - uid: 626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,21.5 + parent: 588 + - uid: 648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,19.5 + parent: 588 + - uid: 650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,18.5 + parent: 588 + - uid: 651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,19.5 + parent: 588 + - uid: 652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,19.5 + parent: 588 + - uid: 653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,18.5 + parent: 588 + - uid: 654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,21.5 + parent: 588 + - uid: 658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,22.5 + parent: 588 + - uid: 660 + components: + - type: Transform + pos: 13.5,21.5 + parent: 588 + - uid: 805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,27.5 + parent: 588 + - uid: 806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,26.5 + parent: 588 + - uid: 807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,25.5 + parent: 588 + - uid: 808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,25.5 + parent: 588 + - uid: 809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,26.5 + parent: 588 + - uid: 810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,27.5 + parent: 588 + - uid: 811 + components: + - type: Transform + pos: 1.5,25.5 + parent: 588 + - uid: 812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,27.5 + parent: 588 + - uid: 1038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,25.5 + parent: 588 + - uid: 1039 + components: + - type: Transform + pos: 20.5,27.5 + parent: 588 + - uid: 1042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,25.5 + parent: 588 + - uid: 1045 + components: + - type: Transform + pos: 22.5,27.5 + parent: 588 + - uid: 1058 + components: + - type: Transform + pos: 24.5,27.5 + parent: 588 + - uid: 1059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,25.5 + parent: 588 + - uid: 1060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,25.5 + parent: 588 + - uid: 1399 + components: + - type: Transform + pos: 9.5,44.5 + parent: 588 + - uid: 1400 + components: + - type: Transform + pos: 13.5,44.5 + parent: 588 +- proto: Wrench + entities: + - uid: 424 + components: + - type: Transform + pos: 15.156982,32.526764 + parent: 588 +- proto: Zipties + entities: + - uid: 1156 + components: + - type: Transform + pos: 15.332411,0.52492684 + parent: 588 +- proto: ZiptiesBroken + entities: + - uid: 48 + components: + - type: Transform + pos: 5.2591753,3.5817227 + parent: 588 + - uid: 706 + components: + - type: Transform + pos: 16.06022,21.977758 + parent: 588 +... diff --git a/Resources/Maps/Moose.yml b/Resources/Maps/Moose.yml new file mode 100644 index 0000000000..fa565b3fdb --- /dev/null +++ b/Resources/Maps/Moose.yml @@ -0,0 +1,108647 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 21: FloorArcadeBlue2 + 41: FloorArcadeRed + 40: FloorAsteroidSand + 44: FloorAsteroidSandDug + 46: FloorAsteroidSandUnvariantized + 23: FloorAstroGrass + 27: FloorAstroGrassAutumnOrange + 55: FloorAstroGrassAutumnRed + 7: FloorAstroGrassAutumnYellow + 49: FloorBar + 32: FloorBlueCircuit + 43: FloorBrokenWood + 35: FloorCarpetClown + 3: FloorCarpetOffice + 57: FloorClown + 2: FloorDark + 54: FloorDarkDiagonal + 13: FloorDarkHerringbone + 16: FloorDarkMini + 10: FloorDarkMono + 17: FloorDarkOffset + 29: FloorDarkPavementVertical + 53: FloorDarkPlastic + 19: FloorDirt + 48: FloorFreezer + 51: FloorGrass + 28: FloorGrassDark + 14: FloorGreenCircuit + 11: FloorKitchen + 37: FloorLino + 15: FloorMetalDiamond + 36: FloorMime + 22: FloorMono + 38: FloorPlanetGrass + 26: FloorPlasticGreen + 33: FloorRGlass + 42: FloorReinforced + 39: FloorReinforcedHardened + 20: FloorSteel + 31: FloorSteelCheckerDark + 47: FloorSteelDiagonal + 9: FloorSteelDirty + 24: FloorSteelMini + 30: FloorTechMaint + 18: FloorTechMaint2 + 50: FloorTechMaint3 + 25: FloorWhite + 6: FloorWhiteHerringbone + 8: FloorWhiteMini + 52: FloorWhiteMono + 12: FloorWhitePlastic + 1: FloorWood + 34: FloorWoodLarge + 4: FloorWoodTile + 139: Lattice + 5: Plating + 45: PlatingAsteroid +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: map 6969 + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 2 + components: + - type: MetaData + name: Moose + - type: Transform + pos: -0.515625,-0.828125 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: GAAAAAADFAAAAAABAgAAAAACFAAAAAAAFAAAAAABFAAAAAABFAAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAABFAAAAAABFAAAAAAAGAAAAAABFAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAAAGAAAAAADFAAAAAACFAAAAAAAEgAAAAAAFAAAAAABEgAAAAAAFAAAAAABBQAAAAAACgAAAAADCgAAAAACCgAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAGAAAAAACFAAAAAADEgAAAAAAFAAAAAAAEgAAAAAAFAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAABFAAAAAAAFAAAAAADEgAAAAAAFAAAAAAAEgAAAAAAFAAAAAADBQAAAAAACgAAAAACCgAAAAACCgAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAABEgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAACAgAAAAAABQAAAAAAEgAAAAAAFAAAAAABEgAAAAAAFAAAAAACEgAAAAAAFAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAADAgAAAAADGQAAAAAAFAAAAAACEgAAAAAACgAAAAAACgAAAAACFAAAAAAAEgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAACEgAAAAAAFAAAAAADCgAAAAACBQAAAAAABQAAAAAAAgAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAADCgAAAAAACgAAAAACFAAAAAAAEgAAAAAACgAAAAADBQAAAAAACgAAAAADAgAAAAACBQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAADAgAAAAACFAAAAAAAEgAAAAAAFAAAAAAAEgAAAAAAEgAAAAAAAgAAAAACAgAAAAADCgAAAAABBQAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAABCgAAAAAACgAAAAACFAAAAAADEgAAAAAACgAAAAADBQAAAAAACgAAAAABAgAAAAABCgAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAADwAAAAAABQAAAAAABQAAAAAAEgAAAAAAFAAAAAABCgAAAAABBQAAAAAACgAAAAACAgAAAAABCgAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAAAgAAAAABAgAAAAACBQAAAAAAFAAAAAADEgAAAAAALwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAADAgAAAAADEgAAAAAAFAAAAAACCgAAAAADCgAAAAADBQAAAAAABQAAAAAACgAAAAABCgAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAADAgAAAAABAgAAAAABFAAAAAACEgAAAAAAFAAAAAABEgAAAAAABQAAAAAACgAAAAACCgAAAAADAgAAAAACCgAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: FAAAAAADFAAAAAACFAAAAAABFAAAAAABAgAAAAACFAAAAAADFAAAAAADFAAAAAAAFAAAAAACFAAAAAACFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAADFAAAAAAABQAAAAAABQAAAAAAFAAAAAAABQAAAAAABQAAAAAAAgAAAAABAgAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAABQAAAAAAFAAAAAAAFAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAABQAAAAAAFAAAAAADFAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAABQAAAAAAFAAAAAACFAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAABQAAAAAAFAAAAAABFAAAAAADBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAABQAAAAAAFAAAAAAAFAAAAAABBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAACFAAAAAADBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAAFAAAAAABFAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAACFAAAAAADBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAAFAAAAAACFAAAAAADBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAAFAAAAAAAFAAAAAABBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAABFAAAAAACBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABQAAAAAAFAAAAAADFAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABLwAAAAAALwAAAAACEgAAAAAABQAAAAAAFAAAAAAAFAAAAAACBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAALwAAAAABLwAAAAADLwAAAAACBQAAAAAAFAAAAAADFAAAAAADBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: EgAAAAAALwAAAAABLwAAAAACLwAAAAAALwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAiwAAAAAAEgAAAAAALwAAAAABLwAAAAABLwAAAAAALwAAAAADHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAHEgAAAAAALwAAAAACLwAAAAADLwAAAAADLwAAAAABHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEgAAAAAALwAAAAADLwAAAAADLwAAAAABLwAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEgAAAAAALwAAAAADLwAAAAADLwAAAAADLwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAALwAAAAADLwAAAAACBQAAAAAAAgAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAADIgAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAALwAAAAADLwAAAAABBQAAAAAAAgAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAALwAAAAABLwAAAAAABQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAABBQAAAAAABQAAAAAAHgAAAAAABQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAALwAAAAABAQAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAALwAAAAABLwAAAAABLwAAAAABLwAAAAAALwAAAAAABQAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAAEgAAAAAALwAAAAACLwAAAAABLwAAAAAALwAAAAABBQAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAAEgAAAAAALwAAAAADLwAAAAAAAQAAAAACBQAAAAAABQAAAAAABQAAAAAABAAAAAABBQAAAAAABQAAAAAABAAAAAABBQAAAAAABQAAAAAAFAAAAAADFAAAAAABBQAAAAAABQAAAAAAEgAAAAAABQAAAAAAFAAAAAABFAAAAAADAgAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAADFAAAAAADFAAAAAACFAAAAAADFAAAAAABFAAAAAACFAAAAAACFAAAAAADGAAAAAADFAAAAAABAgAAAAADFAAAAAABGAAAAAABGAAAAAABGAAAAAACGAAAAAADGAAAAAADGAAAAAADGAAAAAACGAAAAAACGAAAAAACGAAAAAAAGAAAAAAAGAAAAAAC + version: 6 + 1,-1: + ind: 1,-1 + tiles: iwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAABQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAEgAAAAAABQAAAAAAKAAAAAAAKAAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAALwAAAAACBQAAAAAAKAAAAAAMKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAABBQAAAAAAKAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAFAAAAAACFAAAAAADFAAAAAABAgAAAAADFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAADFAAAAAADFAAAAAAAFAAAAAADFAAAAAADFAAAAAACFAAAAAADGAAAAAABGAAAAAABGAAAAAADFAAAAAADAgAAAAABFAAAAAABGAAAAAABGAAAAAAAGAAAAAADGAAAAAABGAAAAAACGAAAAAAAGAAAAAABGAAAAAAAGAAAAAADGAAAAAAD + version: 6 + 2,0: + ind: 2,0 + tiles: FAAAAAACFAAAAAACFAAAAAACFAAAAAACBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAAgAAAAACAgAAAAAABQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAACFAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAABFAAAAAACBQAAAAAAFAAAAAADFAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAACFAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAABBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAACFAAAAAAABQAAAAAAFAAAAAACFAAAAAADBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAAAFAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAAAFAAAAAABBQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAAAFAAAAAABBQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAABFAAAAAABBQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAABFAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAABFAAAAAADBQAAAAAAFAAAAAAAFAAAAAADBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAADFAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAACFAAAAAABFAAAAAACFAAAAAAAFAAAAAABBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAADFAAAAAABBQAAAAAAFAAAAAADFAAAAAABBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: iwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAABFAAAAAACFAAAAAAAFAAAAAACBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAACGAAAAAACFAAAAAACBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: EgAAAAAAEgAAAAAALwAAAAABLwAAAAADFAAAAAAAFAAAAAABFAAAAAABBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAFAAAAAADBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAADFAAAAAAAFAAAAAABBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAADFAAAAAAAFAAAAAADBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAFAAAAAABFAAAAAADBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAFKAAAAAAAKAAAAAAAKAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAFAAAAAACBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAABEgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAFAAAAAADBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAEgAAAAAACgAAAAACCgAAAAADCgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAFAAAAAACEgAAAAAAFAAAAAACEgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAABEgAAAAAACgAAAAACCgAAAAACCgAAAAABBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: AAAAAAAABQAAAAAAFAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAAABQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAACBQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAADBQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: FAAAAAACFAAAAAADFAAAAAADFAAAAAABFAAAAAACFAAAAAAAFAAAAAADFAAAAAADFAAAAAACFAAAAAADFAAAAAACAgAAAAACFAAAAAABFAAAAAACFAAAAAACFAAAAAADBQAAAAAABQAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAAAFAAAAAABBQAAAAAAFAAAAAADFAAAAAAAFAAAAAABBQAAAAAAFAAAAAAAFAAAAAABBQAAAAAAFAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADBQAAAAAAHgAAAAAABQAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAACBQAAAAAAEAAAAAACAgAAAAAAAgAAAAACBQAAAAAAFAAAAAADGAAAAAAAGAAAAAACGAAAAAACBQAAAAAABQAAAAAABQAAAAAAEAAAAAACAgAAAAABAgAAAAABEAAAAAADAgAAAAAAEAAAAAABEAAAAAAAEAAAAAADBQAAAAAAFAAAAAACFAAAAAAAFAAAAAACFAAAAAAAHgAAAAAABQAAAAAABQAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAADBQAAAAAAEAAAAAAAEAAAAAABEAAAAAABBQAAAAAAAgAAAAACAgAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAACFAAAAAADBQAAAAAAAgAAAAACBQAAAAAABQAAAAAABQAAAAAANgAAAAABNgAAAAAANgAAAAADNgAAAAABNgAAAAACBQAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAAAFAAAAAADBQAAAAAAAgAAAAACBQAAAAAABQAAAAAABQAAAAAANgAAAAACNgAAAAABCgAAAAACCgAAAAAACgAAAAABBQAAAAAAiwAAAAAAiwAAAAAABQAAAAAAFAAAAAADFAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAAANgAAAAAACgAAAAADCgAAAAADCgAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAABFAAAAAACBQAAAAAACgAAAAACNgAAAAABNgAAAAACBQAAAAAACgAAAAAANgAAAAACCgAAAAABCgAAAAACCgAAAAADBQAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAADFAAAAAABBQAAAAAACgAAAAADNgAAAAADNgAAAAABAgAAAAACNgAAAAACNgAAAAACCgAAAAAACgAAAAAACgAAAAABBQAAAAAAiwAAAAAAiwAAAAAABQAAAAAAFAAAAAACFAAAAAADBQAAAAAACgAAAAAANgAAAAAANgAAAAACBQAAAAAACgAAAAAANgAAAAADNgAAAAABNgAAAAADNgAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAADFAAAAAACBQAAAAAADwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAMQAAAAABMQAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAACFAAAAAADBQAAAAAAAgAAAAAAAgAAAAADAgAAAAADAgAAAAADAgAAAAACAgAAAAADAgAAAAACAgAAAAACAgAAAAACAgAAAAAAJwAAAAAAAgAAAAAAAgAAAAABFAAAAAAAFAAAAAABBQAAAAAAAgAAAAABAgAAAAAAAgAAAAADAgAAAAABAgAAAAACAgAAAAACAgAAAAAAAgAAAAAAAgAAAAACAgAAAAACJwAAAAAAAgAAAAADAgAAAAACFAAAAAACFAAAAAABBQAAAAAAAgAAAAAB + version: 6 + -1,-1: + ind: -1,-1 + tiles: CwAAAAADCwAAAAABFAAAAAABLwAAAAABEgAAAAAAEgAAAAAALwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABQAAAAAAFAAAAAADGAAAAAAAFAAAAAADEgAAAAAAEgAAAAAACwAAAAAACwAAAAACFAAAAAAALwAAAAAALwAAAAACLwAAAAAALwAAAAABEgAAAAAAIQAAAAADEgAAAAAABQAAAAAAFAAAAAAAGAAAAAACFAAAAAABEgAAAAAAEgAAAAAACwAAAAADCwAAAAABBQAAAAAALwAAAAADEgAAAAAAEgAAAAAALwAAAAADLwAAAAAAEgAAAAAAEgAAAAAAFAAAAAADFAAAAAAAGAAAAAAAFAAAAAACEgAAAAAAEgAAAAAACwAAAAABCwAAAAADAgAAAAABLwAAAAABEgAAAAAAEgAAAAAALwAAAAACLwAAAAABLwAAAAAALwAAAAABFAAAAAACFAAAAAADGAAAAAADFAAAAAADEgAAAAAAEgAAAAAAMAAAAAAACwAAAAAABQAAAAAALwAAAAAALwAAAAABLwAAAAAALwAAAAACEgAAAAAAEgAAAAAALwAAAAAAAgAAAAACFAAAAAACGAAAAAACFAAAAAAAEgAAAAAAEgAAAAAAMAAAAAABMAAAAAADBQAAAAAAEgAAAAAAEgAAAAAALwAAAAACLwAAAAACEgAAAAAAEgAAAAAALwAAAAADLwAAAAADFAAAAAABGAAAAAABFAAAAAABBQAAAAAABQAAAAAAMAAAAAABMAAAAAACBQAAAAAAEgAAAAAAIQAAAAADEgAAAAAALwAAAAACLwAAAAADLwAAAAADLwAAAAABLwAAAAACFAAAAAAAGAAAAAADFAAAAAABBQAAAAAALwAAAAABBQAAAAAAMAAAAAACBQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAALwAAAAAALwAAAAADLwAAAAADLwAAAAACAgAAAAABFAAAAAADFAAAAAACFAAAAAACFAAAAAADLwAAAAAAEgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAMQAAAAAAMQAAAAACMQAAAAAAMQAAAAABMQAAAAACMQAAAAAAFAAAAAADFAAAAAAABQAAAAAALwAAAAACBQAAAAAABQAAAAAABQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAMQAAAAADMQAAAAABMQAAAAACMQAAAAABMQAAAAABMQAAAAAAFAAAAAADFAAAAAABBQAAAAAABQAAAAAABQAAAAAAEgAAAAAABQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAMQAAAAACMQAAAAABMQAAAAACMQAAAAACMQAAAAACMQAAAAADFAAAAAACFAAAAAADBQAAAAAAEgAAAAAABQAAAAAAEgAAAAAAEgAAAAAAJQAAAAAAJQAAAAAAEgAAAAAAMQAAAAABMQAAAAADMQAAAAACMQAAAAABMQAAAAACMQAAAAAAFAAAAAADFAAAAAADBQAAAAAAEgAAAAAABQAAAAAABQAAAAAABQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAFgAAAAAAMQAAAAABMQAAAAABMQAAAAADMQAAAAABMQAAAAABFAAAAAAAFAAAAAAABQAAAAAAEgAAAAAAFAAAAAADFAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAACAgAAAAACBQAAAAAABQAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAACFAAAAAABFAAAAAACFAAAAAACFAAAAAADAgAAAAAAFAAAAAACFAAAAAAAFAAAAAACFAAAAAABGAAAAAABGAAAAAABGAAAAAABGAAAAAAAGAAAAAAAGAAAAAABGAAAAAAAGAAAAAACGAAAAAAAGAAAAAADFAAAAAAAAgAAAAADFAAAAAADGAAAAAABGAAAAAADGAAAAAAD + version: 6 + -2,0: + ind: -2,0 + tiles: FAAAAAACAgAAAAADFAAAAAABFAAAAAADFAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAAAAgAAAAABFAAAAAACFAAAAAADFAAAAAABFAAAAAABFAAAAAABFAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAADAgAAAAADBQAAAAAAFAAAAAABFAAAAAABFAAAAAAAFAAAAAAAFAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABwAAAAAHGwAAAAADNwAAAAABBQAAAAAAFAAAAAACFAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAGwAAAAAGGwAAAAAGNwAAAAAHBQAAAAAAFAAAAAAAFAAAAAADBQAAAAAAHgAAAAAAHgAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAAEgAAAAAAHgAAAAAABQAAAAAAGwAAAAABGwAAAAAEGwAAAAAEBQAAAAAAFAAAAAAAFAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEgAAAAAAHgAAAAAABQAAAAAANwAAAAABGwAAAAADBwAAAAADBQAAAAAAFAAAAAACFAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEgAAAAAAEgAAAAAABQAAAAAANwAAAAACNwAAAAAFBwAAAAAFBQAAAAAAFAAAAAADFAAAAAADBQAAAAAABQAAAAAAHgAAAAAABQAAAAAAMAAAAAAAMAAAAAADBQAAAAAAHgAAAAAAHgAAAAAABQAAAAAAGwAAAAADNwAAAAAHBwAAAAAEBwAAAAACFAAAAAADFAAAAAACBQAAAAAABQAAAAAAHgAAAAAABQAAAAAAMAAAAAADMAAAAAADMAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAFAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAANgAAAAADFAAAAAACFAAAAAADFAAAAAADFAAAAAADFAAAAAABFAAAAAABBQAAAAAAFAAAAAADFAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAANgAAAAACNgAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAADFAAAAAADAgAAAAAAFAAAAAADFAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAANgAAAAABNgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAACFAAAAAAABQAAAAAAFAAAAAADFAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAANgAAAAAANgAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAFAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAANgAAAAACNgAAAAADAgAAAAABAgAAAAADAgAAAAACBQAAAAAACgAAAAADCgAAAAACBQAAAAAAFAAAAAADFAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAADCgAAAAABAgAAAAABCgAAAAABAgAAAAAAAgAAAAACCgAAAAABFAAAAAADFAAAAAACAgAAAAABAgAAAAAAJwAAAAAAAgAAAAADAgAAAAAAAgAAAAABAgAAAAABAgAAAAADAgAAAAACAgAAAAAABQAAAAAACgAAAAABCgAAAAABBQAAAAAAFAAAAAAAFAAAAAACAgAAAAACAgAAAAACJwAAAAAAAgAAAAACAgAAAAAAAgAAAAADAgAAAAAC + version: 6 + -2,-1: + ind: -2,-1 + tiles: BQAAAAAAGQAAAAACGQAAAAADGQAAAAACGQAAAAABGQAAAAADBQAAAAAAFAAAAAAAGAAAAAADFAAAAAAABQAAAAAACwAAAAACCwAAAAABCwAAAAACCwAAAAAACwAAAAADBQAAAAAACgAAAAAACgAAAAADCgAAAAABCgAAAAACGQAAAAABBQAAAAAAFAAAAAAAGAAAAAABFAAAAAAACwAAAAACCwAAAAAACwAAAAAACwAAAAADCwAAAAADCwAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAGQAAAAABBQAAAAAAFAAAAAACGAAAAAADFAAAAAACBQAAAAAACwAAAAADCwAAAAABCwAAAAACCwAAAAADCwAAAAAABQAAAAAACgAAAAAAGQAAAAAAGQAAAAABGQAAAAAAGQAAAAACBQAAAAAAFAAAAAAAGAAAAAABFAAAAAACBQAAAAAABQAAAAAAAgAAAAACAgAAAAAABQAAAAAACwAAAAAAGQAAAAAAGQAAAAACGQAAAAACCgAAAAADGQAAAAABCgAAAAAABQAAAAAAFAAAAAABGAAAAAAAFAAAAAAABQAAAAAAAgAAAAADGgAAAAACGgAAAAABBQAAAAAACwAAAAADGQAAAAABGQAAAAADGQAAAAAACgAAAAADCgAAAAAACgAAAAACBQAAAAAAFAAAAAABGAAAAAAAFAAAAAACBQAAAAAAAgAAAAACGgAAAAAAAgAAAAACBQAAAAAAMAAAAAAAGQAAAAABGQAAAAACGQAAAAABGQAAAAABGQAAAAADGQAAAAADBQAAAAAAFAAAAAAAGAAAAAACFAAAAAABAgAAAAADGgAAAAADGgAAAAACAgAAAAADBQAAAAAAMAAAAAABGQAAAAADGQAAAAADGQAAAAADGQAAAAABGQAAAAADGQAAAAADBQAAAAAAFAAAAAAAGAAAAAABFAAAAAACBQAAAAAAAgAAAAAAGgAAAAADAgAAAAADBQAAAAAABQAAAAAABQAAAAAAOQAAAAADBQAAAAAAGQAAAAADGQAAAAABGQAAAAAABQAAAAAAFAAAAAAAFAAAAAAAFAAAAAADBQAAAAAAAgAAAAACGgAAAAABGgAAAAACAgAAAAABBQAAAAAAGQAAAAAAGQAAAAABBQAAAAAAGQAAAAABGQAAAAADBQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAADGgAAAAAAGgAAAAABAgAAAAACBQAAAAAAGQAAAAAACgAAAAACBQAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAAAFAAAAAACFAAAAAAAFAAAAAABGgAAAAAAGgAAAAACGgAAAAACGgAAAAACAgAAAAADBQAAAAAAGQAAAAABGQAAAAABOQAAAAAFFAAAAAACGAAAAAADGAAAAAAAGAAAAAABGAAAAAAAFAAAAAABFAAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAAAAgAAAAADBQAAAAAACgAAAAADCgAAAAABBQAAAAAAFAAAAAAAGAAAAAADFAAAAAADFAAAAAADFAAAAAABFAAAAAAAFAAAAAABGgAAAAACAgAAAAADAgAAAAAAAgAAAAACAgAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAGAAAAAAAFAAAAAADBQAAAAAAFAAAAAABFAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAACAgAAAAADFAAAAAACFAAAAAACGAAAAAACFAAAAAABFAAAAAAAFAAAAAABFAAAAAACAgAAAAADFAAAAAABFAAAAAADFAAAAAACFAAAAAAAFAAAAAADFAAAAAACFAAAAAAAAgAAAAABFAAAAAACGAAAAAAAGAAAAAABGAAAAAAAGAAAAAADGAAAAAABFAAAAAABAgAAAAABFAAAAAACGAAAAAAAGAAAAAABGAAAAAAAGAAAAAABGAAAAAAA + version: 6 + -3,0: + ind: -3,0 + tiles: FAAAAAADFAAAAAAAFAAAAAACFAAAAAABFAAAAAACFAAAAAADFAAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAACFAAAAAAAFAAAAAADFAAAAAACFAAAAAABFAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAMQAAAAABBQAAAAAABQAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAABQAAAAAAHgAAAAAAEgAAAAAAHgAAAAAABQAAAAAAHgAAAAAAEgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAACFAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAAEgAAAAAAMQAAAAACEgAAAAAABQAAAAAAEgAAAAAAMQAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAHgAAAAAAHgAAAAAABQAAAAAAHgAAAAAABQAAAAAAEgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEgAAAAAABQAAAAAAHgAAAAAAEgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAEgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAEgAAAAAAEgAAAAAAHgAAAAAAFAAAAAABFAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAAMQAAAAABMQAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAACFAAAAAADFAAAAAADFAAAAAACFAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAAFAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAACBQAAAAAAFAAAAAACFAAAAAAAFAAAAAADFAAAAAABBQAAAAAAFAAAAAACFAAAAAADFAAAAAABHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAACBQAAAAAAFAAAAAABFAAAAAACMQAAAAABFAAAAAADBQAAAAAABQAAAAAAFAAAAAACEgAAAAAABQAAAAAABQAAAAAAMQAAAAADBQAAAAAABQAAAAAABQAAAAAAFAAAAAAAFAAAAAADFAAAAAACHgAAAAAAEgAAAAAAHgAAAAAAFAAAAAABFAAAAAAAHgAAAAAAMQAAAAAAHgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAHgAAAAAAHgAAAAAABQAAAAAAMQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEgAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAAHgAAAAAAEgAAAAAAHgAAAAAABQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAAHgAAAAAABQAAAAAAHgAAAAAABQAAAAAAEgAAAAAADwAAAAAADwAAAAAADwAAAAAAEgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAAHgAAAAAABQAAAAAAEgAAAAAADwAAAAAADwAAAAAADwAAAAAAEgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAEgAAAAAAHgAAAAAABQAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAABQAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: CgAAAAACGQAAAAACCgAAAAABBQAAAAAAGQAAAAACDAAAAAACDAAAAAAABQAAAAAACgAAAAABCAAAAAABCgAAAAAABQAAAAAACgAAAAAAGQAAAAAAGQAAAAACGQAAAAABGQAAAAADGQAAAAADCgAAAAACBQAAAAAACgAAAAADDAAAAAABCgAAAAABBQAAAAAACgAAAAABCAAAAAADCgAAAAAABQAAAAAACgAAAAACGQAAAAAAGQAAAAAAGQAAAAABCgAAAAADGQAAAAACCgAAAAABBQAAAAAACgAAAAACDAAAAAABCgAAAAABBQAAAAAACgAAAAAACAAAAAAACgAAAAAABQAAAAAAGQAAAAACGQAAAAADGQAAAAACGQAAAAAABQAAAAAAGQAAAAADBQAAAAAABQAAAAAABQAAAAAAGQAAAAACBQAAAAAABQAAAAAABQAAAAAAAgAAAAADBQAAAAAABQAAAAAABQAAAAAAGQAAAAADGQAAAAADBQAAAAAAGQAAAAADGQAAAAABGQAAAAAAGQAAAAACGQAAAAABGQAAAAABGQAAAAAAGQAAAAABGQAAAAADGQAAAAACGQAAAAAAGQAAAAAAGQAAAAADGQAAAAADGQAAAAAAGQAAAAADGQAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAACCAAAAAACGQAAAAACGQAAAAADGQAAAAACGQAAAAADGQAAAAABGQAAAAACGQAAAAADGQAAAAABGQAAAAACGQAAAAAAGQAAAAACGQAAAAAAGQAAAAACGQAAAAABGQAAAAAAGQAAAAACGQAAAAACGQAAAAADGQAAAAACGQAAAAACGQAAAAABGQAAAAACEAAAAAAABQAAAAAABQAAAAAABQAAAAAAGQAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAAGQAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAGQAAAAACGQAAAAADCgAAAAACCgAAAAABBQAAAAAAGQAAAAADGQAAAAABCgAAAAAABQAAAAAACgAAAAABGQAAAAAACgAAAAAABQAAAAAACgAAAAABCgAAAAADBQAAAAAAOQAAAAADGQAAAAAAGQAAAAAACgAAAAAABQAAAAAAGQAAAAABGQAAAAACGQAAAAACBQAAAAAACgAAAAACGQAAAAAACgAAAAACBQAAAAAACgAAAAADGQAAAAABCgAAAAABGQAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAOQAAAAADBQAAAAAABQAAAAAAGQAAAAAAGQAAAAADGQAAAAACBQAAAAAACgAAAAACGQAAAAAACgAAAAADGQAAAAAAAQAAAAAAAQAAAAABAQAAAAAABQAAAAAAGQAAAAABGQAAAAAAGQAAAAADBQAAAAAAGQAAAAACCgAAAAABGQAAAAADBQAAAAAACgAAAAACGQAAAAADGQAAAAACGQAAAAAAAQAAAAADAQAAAAABAQAAAAAABQAAAAAAGQAAAAABCgAAAAACGQAAAAAABQAAAAAACgAAAAACCgAAAAACCgAAAAADBQAAAAAACgAAAAABCgAAAAACCgAAAAABCgAAAAADBQAAAAAAFAAAAAACFAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAFAAAAAADFAAAAAADFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAACFAAAAAABFAAAAAACFAAAAAABFAAAAAADFAAAAAADGAAAAAABGAAAAAAAGAAAAAACGAAAAAABGAAAAAABGAAAAAADGAAAAAABGAAAAAADGAAAAAAAGAAAAAAAGAAAAAABGAAAAAABGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAB + version: 6 + -4,0: + ind: -4,0 + tiles: FAAAAAAAFAAAAAACFAAAAAABFAAAAAADFAAAAAADFAAAAAABFAAAAAACFAAAAAADFAAAAAACFAAAAAAAFAAAAAABAgAAAAABFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAABQAAAAAABQAAAAAAFAAAAAAAFAAAAAAABQAAAAAAKAAAAAAALAAAAAAAKAAAAAAIKAAAAAAAKAAAAAAFKAAAAAAAKAAAAAAAKAAAAAAMBQAAAAAAHgAAAAAAEgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAHKAAAAAAEKAAAAAAAKAAAAAAAKAAAAAAGBQAAAAAAHgAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAJKAAAAAAMKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAAHgAAAAAAEgAAAAAAHgAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAKBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAAMQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAJLAAAAAAAKAAAAAAAKAAAAAAALAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAALKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAFKAAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAJKAAAAAAAKAAAAAAAKAAAAAAIBQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAA + version: 6 + -4,-1: + ind: -4,-1 + tiles: KAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAAHgAAAAAAMgAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAGQAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFgAAAAAAFAAAAAABFAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAAHgAAAAAAMgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAABFAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAOQAAAAANGQAAAAAAFAAAAAADEAAAAAADEAAAAAACEAAAAAABEAAAAAACFAAAAAACBQAAAAAACgAAAAABAgAAAAABAgAAAAABAgAAAAADBQAAAAAABQAAAAAABQAAAAAAOQAAAAAAGQAAAAACFAAAAAABEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABFAAAAAABBQAAAAAACgAAAAACAgAAAAABAgAAAAAAAgAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAEAAAAAABEAAAAAABEAAAAAAAEAAAAAADFAAAAAABBQAAAAAACgAAAAABAgAAAAADAgAAAAADAgAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAABFAAAAAABFAAAAAABFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAABQAAAAAACgAAAAAAAgAAAAAAAgAAAAACAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAAFAAAAAABFAAAAAACFAAAAAABFAAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAACBQAAAAAABQAAAAAABQAAAAAAFAAAAAADFAAAAAABBQAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAADFAAAAAABFAAAAAACFAAAAAAAFAAAAAACFAAAAAABAgAAAAACFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAAGAAAAAACGAAAAAACGAAAAAACGAAAAAAAGAAAAAACGAAAAAAAGAAAAAACGAAAAAABGAAAAAACFAAAAAACAgAAAAACFAAAAAADGAAAAAADGAAAAAADGAAAAAAC + version: 6 + -5,0: + ind: -5,0 + tiles: GwAAAAACFAAAAAAAFAAAAAADFAAAAAABFAAAAAADAgAAAAACFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAAAFAAAAAABFAAAAAACFAAAAAACFAAAAAABAgAAAAACNwAAAAAHFAAAAAAAFAAAAAACFAAAAAACFAAAAAAABQAAAAAAFAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAFAAAAAABFAAAAAACBQAAAAAAFAAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAMKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAAFAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAHKAAAAAAALAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAFAAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAMKAAAAAAAKAAAAAAAKAAAAAABKAAAAAAAKAAAAAAAKAAAAAAGKAAAAAAAKAAAAAAAAAAAAAAALAAAAAAAKAAAAAADFAAAAAADBQAAAAAAKAAAAAAAKAAAAAALKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAKAAAAAADKAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,-1: + ind: -5,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAEKAAAAAAAKAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAALKAAAAAAAKAAAAAAMKAAAAAAAKAAAAAAABQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAGKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAABKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAJKAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAALKAAAAAAAKAAAAAAAKAAAAAAALAAAAAAAKAAAAAAAKAAAAAAALQAAAAAALQAAAAAAKAAAAAAABQAAAAAAHgAAAAAAMgAAAAAAHgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAMBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAKKAAAAAAAKAAAAAAHKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAAKAAAAAAABQAAAAAAHgAAAAAABQAAAAAAMgAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAAKAAAAAAABQAAAAAAHgAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAALAAAAAAAHgAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAACFAAAAAADFAAAAAADFAAAAAADFAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAABFAAAAAAABQAAAAAAFAAAAAACFAAAAAABFAAAAAADFAAAAAABFAAAAAACAgAAAAADFAAAAAACFAAAAAACFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAABFAAAAAACAgAAAAACBwAAAAAFFAAAAAABFAAAAAADFAAAAAACFAAAAAAAAgAAAAAAFAAAAAABGAAAAAABGAAAAAACGAAAAAAAGAAAAAABGAAAAAABGAAAAAACGAAAAAAAFAAAAAACAgAAAAAC + version: 6 + -6,-1: + ind: -6,-1 + tiles: iwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAgAAAAACAgAAAAADAgAAAAACBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAgAAAAADAgAAAAADAgAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAACFAAAAAACFAAAAAABFAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAACFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAACFAAAAAABFAAAAAACFAAAAAAB + version: 6 + -6,0: + ind: -6,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAABFAAAAAADFAAAAAACFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAAAFAAAAAACFAAAAAADFAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAFAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAACFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAFAAAAAADFAAAAAADFAAAAAAAFAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: BQAAAAAAMQAAAAADAgAAAAADMQAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAABAgAAAAAABQAAAAAABQAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAAAEAAAAAAACgAAAAABEAAAAAACEAAAAAABCgAAAAABBQAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAAAFAAAAAACFAAAAAADAgAAAAADAgAAAAADAgAAAAACAgAAAAACAgAAAAACAgAAAAAAAgAAAAACEAAAAAACCgAAAAABBQAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACFAAAAAACCgAAAAABAgAAAAACEAAAAAACAgAAAAAACgAAAAADAgAAAAADEAAAAAAACgAAAAABCgAAAAADBQAAAAAAFAAAAAACFAAAAAACFAAAAAABFAAAAAACFAAAAAACFAAAAAADCgAAAAAAEAAAAAACEAAAAAACEAAAAAADCgAAAAACEAAAAAABEAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAADNQAAAAACCgAAAAACCgAAAAACCgAAAAAACgAAAAABCgAAAAABBQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAALAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAGKAAAAAAAKAAAAAAAKAAAAAAEKAAAAAAAKAAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAALAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAAHgAAAAAAKAAAAAAAKAAAAAAAKAAAAAACKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAADKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAABQAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAABQAAAAAAFAAAAAADFAAAAAACFAAAAAABBQAAAAAABQAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAABQAAAAAAFAAAAAABGAAAAAAAFAAAAAAAFAAAAAACFAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAABQAAAAAAFAAAAAACGAAAAAAAFAAAAAADFAAAAAADFAAAAAACFAAAAAABFAAAAAACBQAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAGAAAAAADFAAAAAACBQAAAAAAFAAAAAACFAAAAAACFAAAAAABFAAAAAAAFAAAAAADFAAAAAADFAAAAAAAFAAAAAACBQAAAAAAFAAAAAACFAAAAAAABQAAAAAAFAAAAAACGAAAAAABFAAAAAADBQAAAAAAFAAAAAADFAAAAAABFAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAACBQAAAAAAFAAAAAADGAAAAAADFAAAAAACFAAAAAADFAAAAAAAFAAAAAADFAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAADBQAAAAAAFAAAAAAAGAAAAAAAFAAAAAAAFAAAAAADFAAAAAACEgAAAAAAFAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAABFAAAAAABFAAAAAADFAAAAAAAFAAAAAACFAAAAAAAGAAAAAAAFAAAAAACBQAAAAAABQAAAAAAEgAAAAAAFAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADFAAAAAACGAAAAAACFAAAAAAABQAAAAAAEAAAAAADEgAAAAAAFAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAADFAAAAAADFAAAAAAAFAAAAAABBQAAAAAAFAAAAAADGAAAAAADFAAAAAABBQAAAAAAEAAAAAADFAAAAAACFAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAAABQAAAAAAFAAAAAADFAAAAAABFAAAAAAABQAAAAAAEAAAAAABFAAAAAABFAAAAAACFAAAAAAAFAAAAAACFAAAAAACFAAAAAADFAAAAAABBQAAAAAAFAAAAAABFAAAAAABBQAAAAAAAgAAAAADAgAAAAABAgAAAAADBQAAAAAABQAAAAAAFAAAAAADFAAAAAACBQAAAAAAFAAAAAABFAAAAAAAFAAAAAAAFAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAADFAAAAAABFAAAAAAAFAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAABQAAAAAAFAAAAAACGAAAAAACFAAAAAABFAAAAAABBQAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAABQAAAAAAFAAAAAABGAAAAAAAFAAAAAAAEgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAGAAAAAABFAAAAAAAEgAAAAAAEgAAAAAA + version: 6 + -1,-3: + ind: -1,-3 + tiles: HQAAAAACHQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAALQAAAAAALQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAALAAAAAAAGQAAAAAAGQAAAAACAgAAAAADAgAAAAACAgAAAAAAAgAAAAACBQAAAAAABQAAAAAABQAAAAAALQAAAAAALQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAMKAAAAAAAKAAAAAAAGQAAAAABGQAAAAACGQAAAAACGQAAAAABGQAAAAABGQAAAAACGQAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAGQAAAAACAgAAAAAAGQAAAAADAgAAAAADAgAAAAACGQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAABBQAAAAAAKAAAAAAABQAAAAAABQAAAAAAGQAAAAADBQAAAAAABQAAAAAAEAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAKAAAAAAAAgAAAAACBQAAAAAAHgAAAAAABQAAAAAAEAAAAAAAEAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAACAgAAAAABBQAAAAAAKAAAAAAAAgAAAAACBQAAAAAABQAAAAAABQAAAAAAEAAAAAACEAAAAAACBQAAAAAABQAAAAAABQAAAAAAAgAAAAACAgAAAAADAgAAAAABAgAAAAACAgAAAAACBQAAAAAAKAAAAAAAAgAAAAABBQAAAAAABQAAAAAABQAAAAAAEAAAAAABEAAAAAADBQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAABAgAAAAACAgAAAAADAgAAAAACBQAAAAAAKAAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAACAgAAAAABAgAAAAABAgAAAAADAgAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEQAAAAACAgAAAAADAgAAAAAAAgAAAAABAgAAAAAAAgAAAAADAgAAAAACEQAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAABAgAAAAACAgAAAAABAgAAAAACAgAAAAADAgAAAAABEgAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAABFAAAAAABFAAAAAACFAAAAAACFAAAAAADBQAAAAAAEQAAAAACBQAAAAAAFAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAABFAAAAAADFAAAAAACFAAAAAAAFAAAAAABFAAAAAABFAAAAAABFAAAAAADFAAAAAABFAAAAAADFAAAAAAAFAAAAAACFAAAAAAAFAAAAAABBQAAAAAAEgAAAAAAGAAAAAADGAAAAAABGAAAAAADGAAAAAACGAAAAAACGAAAAAABGAAAAAACGAAAAAAAGAAAAAABGAAAAAABGAAAAAACGAAAAAADGAAAAAACFAAAAAAABQAAAAAABQAAAAAAFAAAAAABFAAAAAABFAAAAAABFAAAAAADFAAAAAADFAAAAAACFAAAAAADFAAAAAAAFAAAAAADFAAAAAABFAAAAAADFAAAAAABFAAAAAADFAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAADAgAAAAADBQAAAAAABQAAAAAA + version: 6 + -2,-2: + ind: -2,-2 + tiles: BQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAADBQAAAAAAFAAAAAAAFAAAAAABFAAAAAABBQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAABBQAAAAAAFAAAAAAAGAAAAAACFAAAAAABBQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABAAAAAADBAAAAAAABQAAAAAAFAAAAAACGAAAAAAAFAAAAAABBQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABAAAAAAABAAAAAAABQAAAAAAFAAAAAAAGAAAAAACFAAAAAACBQAAAAAAiwAAAAAABQAAAAAAFAAAAAADFAAAAAADFAAAAAAAJQAAAAAAJQAAAAAAIgAAAAACJQAAAAAABAAAAAACBAAAAAABBQAAAAAAFAAAAAACGAAAAAACFAAAAAABBQAAAAAAAAAAAAAABQAAAAAAFAAAAAABFAAAAAABFAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAABGAAAAAABFAAAAAAABQAAAAAAAAAAAAAABQAAAAAAFAAAAAADFAAAAAAAFAAAAAABBQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAADGAAAAAAAFAAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAABFAAAAAACFAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAADGAAAAAADFAAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAAAEgAAAAAAEgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAMgAAAAAAHgAAAAAABQAAAAAAFAAAAAABGAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAEgAAAAAAEgAAAAAAGQAAAAADCgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAGAAAAAACFAAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAABEgAAAAAAEgAAAAAAGQAAAAACCgAAAAADBQAAAAAAEgAAAAAALwAAAAADLwAAAAADFAAAAAAAFAAAAAADGAAAAAABFAAAAAADBQAAAAAAAAAAAAAABQAAAAAAFAAAAAABFAAAAAADFAAAAAACGQAAAAACBQAAAAAABQAAAAAALwAAAAADLwAAAAACEgAAAAAABQAAAAAAFAAAAAADGAAAAAAAFAAAAAAABQAAAAAAAAAAAAAABQAAAAAAFAAAAAACFAAAAAACFAAAAAAAGQAAAAABMQAAAAACLwAAAAADLwAAAAAALwAAAAADLwAAAAABFgAAAAAAFAAAAAACGAAAAAACFAAAAAADBQAAAAAAiwAAAAAABQAAAAAAFAAAAAABFAAAAAADFAAAAAACAgAAAAADBQAAAAAAEgAAAAAAEgAAAAAALwAAAAACEgAAAAAAFgAAAAAAFAAAAAACFAAAAAAAFAAAAAADBQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAACAgAAAAADAgAAAAACBQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAADCgAAAAAACgAAAAABCgAAAAADCgAAAAABBQAAAAAAFAAAAAACFAAAAAACFAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + version: 6 + -2,-3: + ind: -2,-3 + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAABAgAAAAACAgAAAAAAAgAAAAABBQAAAAAAGQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAAAgAAAAACGQAAAAADGQAAAAABGQAAAAAAGQAAAAAAGQAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAGQAAAAABGQAAAAADAgAAAAACBQAAAAAAGQAAAAADBQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAAGQAAAAADGQAAAAACGQAAAAADGQAAAAABGQAAAAAAGQAAAAABGQAAAAABGQAAAAAAAgAAAAAABQAAAAAAGQAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAADGQAAAAAAGQAAAAAAGQAAAAADGQAAAAABGQAAAAADGQAAAAADGQAAAAACAgAAAAABBQAAAAAAGQAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAADGQAAAAADGQAAAAACAgAAAAACBQAAAAAAAgAAAAABGQAAAAACGQAAAAAAAgAAAAAABQAAAAAAGQAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAADGQAAAAAAGQAAAAAAAgAAAAADBQAAAAAAGQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAADwAAAAAADwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAGQAAAAADBQAAAAAABQAAAAAABQAAAAAAGQAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAADwAAAAAADwAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAADFAAAAAAAFAAAAAACFAAAAAABFAAAAAABFAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAADwAAAAAADwAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAADFAAAAAAAFAAAAAACFAAAAAAAFAAAAAADBQAAAAAADwAAAAAADwAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAABFAAAAAABBQAAAAAABQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAADFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAAFAAAAAACFAAAAAADGAAAAAAAGAAAAAADGAAAAAADGAAAAAADGAAAAAAAGAAAAAACGAAAAAABGAAAAAADGAAAAAABGAAAAAABGAAAAAADGAAAAAAAGAAAAAACGAAAAAADGAAAAAACGAAAAAABFAAAAAAAFAAAAAACFAAAAAABFAAAAAABFAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACFAAAAAABFAAAAAAAFAAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAACBQAAAAAABQAAAAAABQAAAAAAAgAAAAADAgAAAAADAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAADAgAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAACFAAAAAABFAAAAAADFAAAAAACBQAAAAAACgAAAAACEAAAAAAAEAAAAAABCgAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAABFAAAAAABFAAAAAACFAAAAAABFAAAAAABFAAAAAABFAAAAAAABQAAAAAACgAAAAAAEAAAAAACAgAAAAADAgAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAABBQAAAAAANQAAAAAANQAAAAABEAAAAAADAgAAAAAABQAAAAAAKAAAAAAFKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEAAAAAADEAAAAAADKAAAAAAIKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAGKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAJKAAAAAAAKAAAAAAABQAAAAAACgAAAAAACgAAAAACKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAADKAAAAAAAKAAAAAAALgAAAAAAKAAAAAAAKAAAAAAALAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAGKAAAAAAAKAAAAAAALAAAAAAALgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAGKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAJKAAAAAAAKAAAAAABKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAALAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAFAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAEKAAAAAAIKAAAAAAAKAAAAAAGKAAAAAABKAAAAAAKiwAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAHiwAAAAAAiwAAAAAABQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAGKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAKKAAAAAAAKAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + version: 6 + -3,-3: + ind: -3,-3 + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAAAAgAAAAAAAgAAAAACAgAAAAADCgAAAAABBQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAABAgAAAAABAgAAAAACAgAAAAABCgAAAAADAgAAAAADJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAHgAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAABCgAAAAABCgAAAAAACgAAAAABCgAAAAABBQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAADAgAAAAACCgAAAAADAgAAAAACAgAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAACAgAAAAADCgAAAAADAgAAAAADAgAAAAABAgAAAAABAgAAAAABAgAAAAABBQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAADAgAAAAADCgAAAAABAgAAAAABAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAABAgAAAAABCgAAAAADAgAAAAABAgAAAAACAgAAAAACAgAAAAACAgAAAAACBQAAAAAAHgAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAAAgAAAAACAgAAAAAACgAAAAADAgAAAAACAgAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAAAgAAAAADAgAAAAABCgAAAAABAgAAAAAAAgAAAAAABQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAABCgAAAAABCgAAAAADCgAAAAABCgAAAAACAgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAACBQAAAAAACgAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAACFAAAAAAAFAAAAAADFAAAAAACFAAAAAADFAAAAAADFAAAAAACFAAAAAADFAAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAADFAAAAAACAgAAAAADFAAAAAAAFAAAAAACFAAAAAACGAAAAAADGAAAAAAAGAAAAAABGAAAAAAAGAAAAAAAGAAAAAABGAAAAAAAGAAAAAABGAAAAAADGAAAAAADGAAAAAABFAAAAAADAgAAAAABFAAAAAADGAAAAAAAGAAAAAACFAAAAAAAFAAAAAACFAAAAAABFAAAAAADFAAAAAAAFAAAAAADFAAAAAADFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAACAgAAAAACFAAAAAACFAAAAAABFAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAMAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + version: 6 + -4,-3: + ind: -4,-3 + tiles: AAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAKKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAHKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAIKAAAAAAAKAAAAAAGKAAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAJKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAACKAAAAAAALAAAAAAAKAAAAAAAKAAAAAABBQAAAAAABQAAAAAAKwAAAAAFBQAAAAAAKwAAAAAFBQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAKBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAABBQAAAAAABQAAAAAABQAAAAAAKAAAAAALKAAAAAACKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAAQAAAAACBQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAAEgAAAAAAEgAAAAAALwAAAAABEgAAAAAABQAAAAAABQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAAQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAALAAAAAAABQAAAAAALwAAAAAALwAAAAABLwAAAAABLwAAAAABBQAAAAAAKwAAAAACJQAAAAAAJQAAAAAABQAAAAAAKwAAAAAEAQAAAAACBQAAAAAAKAAAAAAAKAAAAAAGKAAAAAAABQAAAAAALwAAAAADLwAAAAAALwAAAAADLwAAAAABBQAAAAAAAQAAAAABBQAAAAAABQAAAAAAAQAAAAADBQAAAAAAKwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAALwAAAAADLwAAAAABLwAAAAAALwAAAAADBQAAAAAAAQAAAAACAQAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAADCgAAAAADAgAAAAABBQAAAAAAEgAAAAAALwAAAAABLwAAAAADEgAAAAAABQAAAAAAAQAAAAADKwAAAAAGAQAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAABCgAAAAAAAgAAAAABBQAAAAAABQAAAAAABQAAAAAAFAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAABCgAAAAACCgAAAAADGAAAAAABFAAAAAABFAAAAAACFAAAAAACFAAAAAAAFAAAAAACFAAAAAACFAAAAAADFAAAAAADFAAAAAAAFAAAAAABFAAAAAADFAAAAAAAAgAAAAACAgAAAAADAgAAAAABBQAAAAAAFAAAAAADGAAAAAADGAAAAAADGAAAAAADGAAAAAABGAAAAAACGAAAAAAAGAAAAAAAGAAAAAACGAAAAAABGAAAAAACGAAAAAACCgAAAAACCgAAAAAACgAAAAACCgAAAAACFAAAAAACFAAAAAACFAAAAAADFAAAAAADFAAAAAABFAAAAAAAFAAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAACFAAAAAAAAgAAAAADCgAAAAABAgAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAADAgAAAAADBQAAAAAABQAAAAAABQAAAAAA + version: 6 + -4,-2: + ind: -4,-2 + tiles: AgAAAAACCgAAAAABAgAAAAABBQAAAAAAHgAAAAAABQAAAAAABQAAAAAABAAAAAACBAAAAAADBAAAAAABBQAAAAAAFAAAAAABFAAAAAADBQAAAAAABAAAAAADBAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAADBAAAAAADBAAAAAAABQAAAAAAFAAAAAACFAAAAAABIgAAAAADBAAAAAACBAAAAAAAKAAAAAAAKAAAAAAEKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAAABAAAAAADBAAAAAADIgAAAAABFAAAAAACFAAAAAABBQAAAAAABAAAAAAABAAAAAAAKAAAAAAAKAAAAAAALAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAAABQAAAAAAFAAAAAAAFAAAAAAABQAAAAAABAAAAAACBAAAAAABKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAADBQAAAAAABQAAAAAABQAAAAAAFAAAAAACFAAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAADBAAAAAADBAAAAAACBQAAAAAAFAAAAAAAFAAAAAAABQAAAAAABAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAADBAAAAAADBAAAAAADIgAAAAAAFAAAAAACFAAAAAACBQAAAAAABAAAAAAAIgAAAAACBQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAACBAAAAAABBAAAAAABBQAAAAAAFAAAAAACFAAAAAACIgAAAAACBAAAAAACBAAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAAIgAAAAABBAAAAAADBAAAAAACBQAAAAAAFAAAAAACFAAAAAACBQAAAAAABAAAAAADBAAAAAAABQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAFAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAACEgAAAAAAFAAAAAABBQAAAAAAFAAAAAABFAAAAAADBQAAAAAABAAAAAABBAAAAAACBQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAFAAAAAABFAAAAAABIgAAAAAABAAAAAACBAAAAAABBQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAEgAAAAAAFAAAAAACBQAAAAAAFAAAAAAAFAAAAAAABQAAAAAABAAAAAABBAAAAAACKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAABQAAAAAAMgAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAMgAAAAAABQAAAAAABQAAAAAAKAAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEgAAAAAAFAAAAAACCgAAAAACAgAAAAADAgAAAAADAgAAAAAACgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAACCgAAAAACAgAAAAABBQAAAAAAFAAAAAAAEgAAAAAACgAAAAACAgAAAAAAAgAAAAACAgAAAAAACgAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAADAgAAAAAAAgAAAAACAgAAAAAAEgAAAAAAFAAAAAAACgAAAAADAgAAAAADCgAAAAACAgAAAAABCgAAAAACBQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAACgAAAAADCgAAAAADAgAAAAAABQAAAAAAFAAAAAADEgAAAAAACgAAAAAACgAAAAABCgAAAAAAAgAAAAABCgAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAACCgAAAAAAAgAAAAADBQAAAAAAEgAAAAAAFAAAAAABBQAAAAAABQAAAAAACgAAAAACCgAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAABEgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAEgAAAAAAFAAAAAACEgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAAEgAAAAAAFAAAAAADEgAAAAAAFAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEgAAAAAAFAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAABFAAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAFAAAAAAACgAAAAAAFAAAAAAAEgAAAAAAFAAAAAADEgAAAAAAFAAAAAADEgAAAAAAFAAAAAADEgAAAAAAFAAAAAACEgAAAAAAFAAAAAACAAAAAAAAAAAAAAAAiwAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAADEgAAAAAAFAAAAAADEgAAAAAAFAAAAAADEgAAAAAAFAAAAAADEgAAAAAAFAAAAAAAEgAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAFAAAAAABFAAAAAAAFAAAAAACEgAAAAAACgAAAAABCgAAAAACFAAAAAABCgAAAAABBQAAAAAABQAAAAAAFAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEgAAAAAAFAAAAAACFAAAAAAABQAAAAAAFAAAAAACBQAAAAAABQAAAAAACgAAAAACFAAAAAABCgAAAAADBQAAAAAABQAAAAAACgAAAAAAFAAAAAABCgAAAAABCgAAAAACEgAAAAAAFAAAAAADCgAAAAACCgAAAAAAFAAAAAAACgAAAAACFAAAAAACCgAAAAABFAAAAAAAFAAAAAADBQAAAAAABQAAAAAACgAAAAADEgAAAAAAFAAAAAADEgAAAAAAFAAAAAABEgAAAAAAFAAAAAAAEgAAAAAAFAAAAAACCgAAAAADBQAAAAAACgAAAAAAFAAAAAADFAAAAAADBQAAAAAABQAAAAAABQAAAAAAEgAAAAAABQAAAAAABQAAAAAABQAAAAAAEgAAAAAABQAAAAAABQAAAAAAEgAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAFAAAAAABBQAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: CgAAAAABFAAAAAACFAAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAABFAAAAAACBQAAAAAAEgAAAAAAEgAAAAAACgAAAAADBQAAAAAACgAAAAADBQAAAAAABQAAAAAACgAAAAADFAAAAAABFAAAAAADCgAAAAADCgAAAAABFAAAAAACFAAAAAACFAAAAAAABQAAAAAABQAAAAAAEgAAAAAABQAAAAAABQAAAAAAKAAAAAAABQAAAAAABQAAAAAACgAAAAABCgAAAAADFAAAAAACFAAAAAACCgAAAAADFAAAAAAAFAAAAAACFAAAAAAABQAAAAAAFAAAAAABFAAAAAABBQAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAAAFAAAAAABFAAAAAADFAAAAAADBQAAAAAAFAAAAAAAFAAAAAABBQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAABFAAAAAADFAAAAAADFAAAAAAAFAAAAAABBQAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAAAFAAAAAAAFAAAAAABFAAAAAABFAAAAAAABQAAAAAAKAAAAAAKKAAAAAAAFAAAAAABFAAAAAABFAAAAAADFAAAAAAAFAAAAAAAFAAAAAACFAAAAAADFAAAAAAAFAAAAAABFAAAAAADFAAAAAACFAAAAAABFAAAAAAABQAAAAAAKAAAAAAGKAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAABFAAAAAADFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACFAAAAAABFAAAAAADFAAAAAAABQAAAAAAKAAAAAAAKAAAAAAGFAAAAAABFAAAAAAAFAAAAAACFAAAAAABFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACFAAAAAABFAAAAAADFAAAAAABBQAAAAAAKAAAAAAAKAAAAAAABQAAAAAAFAAAAAADBQAAAAAABQAAAAAAFAAAAAADFAAAAAACFAAAAAACFAAAAAACBQAAAAAABQAAAAAAFAAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAFAAAAAABFAAAAAADFAAAAAABBQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACBQAAAAAAFAAAAAABFAAAAAADFAAAAAABBQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAFAAAAAACFAAAAAABFAAAAAADBQAAAAAAFAAAAAABFAAAAAABFAAAAAABFAAAAAAABQAAAAAAFAAAAAABFAAAAAABFAAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAKKAAAAAAAKAAAAAAJKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAGKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAADKAAAAAAAKAAAAAAAKAAAAAAJKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAADKAAAAAAAKAAAAAAALAAAAAAAKAAAAAAAAAAAAAAAKAAAAAAJKAAAAAAAKAAAAAAHKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAHKAAAAAAAKAAAAAAEKAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAHKAAAAAAAKAAAAAAAKAAAAAAFKAAAAAAAKAAAAAAAKAAAAAACKAAAAAAAKAAAAAAFKAAAAAAAKAAAAAALAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,1: + ind: -4,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAGKAAAAAAAKAAAAAAAKAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAFKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAIKAAAAAACKAAAAAAAKAAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAKAAAAAAAKAAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAADFAAAAAABFAAAAAADFAAAAAACFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAADKAAAAAAAKAAAAAAAFAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAADKAAAAAAAFAAAAAACBQAAAAAAFAAAAAACFAAAAAAAFAAAAAACFAAAAAABFAAAAAACFAAAAAABFAAAAAACFAAAAAAAFAAAAAAAFAAAAAABFAAAAAADFAAAAAAAKAAAAAAAKAAAAAAAFAAAAAADBQAAAAAAFAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEgAAAAAABQAAAAAAEgAAAAAAEgAAAAAABQAAAAAAFAAAAAADBQAAAAAAFAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEgAAAAAAFAAAAAABFAAAAAABBQAAAAAAFAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEgAAAAAABQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAHKAAAAAAMKAAAAAAJKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAKKAAAAAAAKAAAAAAAKAAAAAAGKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAHKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + version: 6 + -3,1: + ind: -3,1 + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAEgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAAEgAAAAAABQAAAAAAEgAAAAAAKAAAAAALKAAAAAAIBQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAAAFAAAAAADFAAAAAACBQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAHgAAAAAAEgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAFAAAAAAAHgAAAAAAHgAAAAAABQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAAKAAAAAAAKAAAAAADKAAAAAAALAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAABKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAKKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAFKAAAAAAHBQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAFKAAAAAAAKAAAAAAALQAAAAAALQAAAAAALQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAALQAAAAAAKAAAAAABKAAAAAAA + version: 6 + -2,-4: + ind: -2,-4 + tiles: iwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAJKAAAAAAABQAAAAAACgAAAAABCgAAAAADCgAAAAABBQAAAAAACgAAAAACiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAACgAAAAABCgAAAAACCgAAAAACBQAAAAAAAgAAAAACiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAALAAAAAAAKAAAAAAABQAAAAAANQAAAAACiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAABQAAAAAANQAAAAABiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAABQAAAAAABQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAALAAAAAAAKAAAAAAJiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAALAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAEKAAAAAACKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAAAgAAAAACBQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAKKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAALAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAAAgAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAACAgAAAAACBQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAGQAAAAAB + version: 6 + -1,-4: + ind: -1,-4 + tiles: CgAAAAACCgAAAAABBQAAAAAABQAAAAAACgAAAAADCgAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAACCgAAAAAABQAAAAAABQAAAAAACgAAAAADCgAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAACAgAAAAADBQAAAAAABQAAAAAACgAAAAADCgAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAADNQAAAAADBQAAAAAACgAAAAACCgAAAAAACgAAAAADBQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAABCgAAAAADCgAAAAACBQAAAAAANQAAAAADCgAAAAAACgAAAAABBQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAKAAAAAAKKAAAAAAALAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABBQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGQAAAAAAAgAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAIKAAAAAAAKAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAADAgAAAAACBQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAFKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAEKAAAAAAAGQAAAAACGQAAAAABAgAAAAABBQAAAAAAKAAAAAAHKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAILAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAGQAAAAABGQAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAHLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAGQAAAAABGQAAAAADAgAAAAABBQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAAKAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAGQAAAAACGQAAAAAAGQAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAALQAAAAAALQAAAAAALQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAA + version: 6 + -2,-5: + ind: -2,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAJBQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAAAgAAAAACiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAKKAAAAAAGKAAAAAAAKAAAAAAABQAAAAAACgAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAJKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAACiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAACgAAAAABCgAAAAAACgAAAAAABQAAAAAACgAAAAADiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAGBQAAAAAACgAAAAADCgAAAAACCgAAAAAABQAAAAAACgAAAAACiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAEBQAAAAAACgAAAAAACgAAAAABCgAAAAABAgAAAAADCgAAAAAC + version: 6 + -1,-5: + ind: -1,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAJKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAALAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABBQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAADCgAAAAADCgAAAAABBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAACCgAAAAACCgAAAAAABQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAADCgAAAAADBQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAADCgAAAAADNQAAAAAACgAAAAABNQAAAAAACgAAAAACCgAAAAAACgAAAAADCgAAAAADBQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAABCgAAAAAACgAAAAAACgAAAAACCgAAAAAACgAAAAAACgAAAAADCgAAAAAACgAAAAABBQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAACCgAAAAAACgAAAAABCgAAAAABCgAAAAADCgAAAAABCgAAAAAACgAAAAACBQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAACBQAAAAAABQAAAAAACgAAAAABCgAAAAAANQAAAAADNQAAAAACNQAAAAACBQAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAABQAAAAAABQAAAAAACgAAAAACCgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: KAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAABKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAHKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAHKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAKKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAJKAAAAAAAKAAAAAACLAAAAAAAKAAAAAAMKAAAAAAKKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEgAAAAAABQAAAAAAKAAAAAACKAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEgAAAAAABQAAAAAAKAAAAAAFKAAAAAABAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABQAAAAAABQAAAAAAEgAAAAAABQAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABQAAAAAABQAAAAAAAgAAAAADAgAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAADAgAAAAADAgAAAAACBQAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAgAAAAABAgAAAAACAgAAAAADAgAAAAADAgAAAAACBQAAAAAAAgAAAAACAgAAAAADAgAAAAAAAgAAAAADBQAAAAAAKAAAAAAMKAAAAAAAKAAAAAAAAAAAAAAA + version: 6 + 0,-4: + ind: 0,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: BQAAAAAAAgAAAAAAAgAAAAADAgAAAAAAAgAAAAABAgAAAAAABQAAAAAAAgAAAAACAgAAAAAAAgAAAAAAAgAAAAACBQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAFAAAAAABAgAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAAABQAAAAAAAgAAAAAAAgAAAAABAgAAAAAAAgAAAAACBQAAAAAAKAAAAAAAKAAAAAAKKAAAAAAAAAAAAAAAFAAAAAAAAgAAAAAAAgAAAAABAgAAAAADAgAAAAACAgAAAAACBQAAAAAABQAAAAAAAgAAAAABAgAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAFAAAAAABBQAAAAAABQAAAAAABQAAAAAAAgAAAAABAgAAAAAABQAAAAAAAgAAAAACAgAAAAACAgAAAAACAgAAAAAAMQAAAAABBQAAAAAABQAAAAAAMQAAAAABAAAAAAAAFAAAAAACBQAAAAAAAgAAAAACAgAAAAAAAgAAAAAAAgAAAAACAgAAAAACAgAAAAAAAgAAAAADAgAAAAABAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAFAAAAAABMQAAAAABAgAAAAADAgAAAAAAAgAAAAACAgAAAAABAgAAAAAAAgAAAAADAgAAAAADAgAAAAACAgAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAFAAAAAAAMQAAAAAAAgAAAAAAAgAAAAACAgAAAAACAgAAAAACAgAAAAABAgAAAAACAgAAAAADAgAAAAADAgAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAABQAAAAAABQAAAAAAAgAAAAABAgAAAAABAgAAAAADAgAAAAABAgAAAAACAgAAAAADAgAAAAAAAgAAAAAAAgAAAAACMQAAAAADBQAAAAAABQAAAAAAMQAAAAACAAAAAAAAEAAAAAACEAAAAAAAAgAAAAABAgAAAAADAgAAAAAABQAAAAAABQAAAAAAAgAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAEAAAAAACEAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAEAAAAAACEAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAFAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAHgAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAALwAAAAACLwAAAAABLwAAAAACEgAAAAAABQAAAAAABQAAAAAABQAAAAAALAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAABQAAAAAALwAAAAADLwAAAAABLwAAAAADLwAAAAACLwAAAAADLwAAAAABLwAAAAADEgAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAALwAAAAAALwAAAAADLwAAAAADLwAAAAABLwAAAAACLwAAAAABLwAAAAACEgAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAABKAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,2: + ind: -3,2 + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAHKAAAAAAAKAAAAAAALQAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAFKAAAAAAAKAAAAAAALQAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAFKAAAAAAIKAAAAAAAKAAAAAAJKAAAAAAIKAAAAAABLQAAAAAAKAAAAAAAKAAAAAAIBQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAIKAAAAAAAKAAAAAAAKAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAADKAAAAAAHKAAAAAAAKAAAAAAHKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAALAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAiwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAiwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAJKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAJKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAiwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAiwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAJKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAEKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAACKAAAAAAAKAAAAAAAiwAAAAAAKAAAAAALKAAAAAAALAAAAAAAKAAAAAAAKAAAAAAEKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAHKAAAAAAAKAAAAAACKAAAAAAGAAAAAAAAAAAAAAAAiwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAIKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAJKAAAAAADKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAA + version: 6 + -3,-2: + ind: -3,-2 + tiles: BAAAAAADBQAAAAAAMAAAAAACMAAAAAACMAAAAAAAMAAAAAABMAAAAAABMAAAAAAAMAAAAAADBQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAABBQAAAAAABQAAAAAAMAAAAAADMAAAAAADMAAAAAAAMAAAAAABMAAAAAADMAAAAAADBQAAAAAAMgAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAADBQAAAAAAMAAAAAAAMAAAAAACMAAAAAACMAAAAAABMAAAAAACMAAAAAADMAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAAABAAAAAABBQAAAAAABAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAMAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAABBQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAAABAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAABBQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAAMgAAAAACBQAAAAAABAAAAAABBQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAADBQAAAAAAMgAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAACGQAAAAABGQAAAAACGQAAAAADBAAAAAADBQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAACgAAAAACGQAAAAAAGQAAAAAAGQAAAAACBAAAAAAABQAAAAAAMgAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAACgAAAAACGQAAAAACCAAAAAACGQAAAAAABAAAAAABBQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAMgAAAAAABQAAAAAABQAAAAAACgAAAAAAGQAAAAABCAAAAAABGQAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAADGQAAAAACCAAAAAAAGQAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAADBQAAAAAABQAAAAAACgAAAAAAGQAAAAABGQAAAAAAGQAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAACgAAAAAACgAAAAACCgAAAAACBQAAAAAACgAAAAACCAAAAAAACgAAAAAABQAAAAAACgAAAAADFgAAAAAAGQAAAAABGQAAAAAD + version: 6 + -5,-2: + ind: -5,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAACKAAAAAAABQAAAAAAAgAAAAAAAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAGKAAAAAAEBQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAMKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAALiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAADKAAAAAADKAAAAAAAKAAAAAAAKAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAALAAAAAAAKAAAAAABKAAAAAAAKAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAGKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAMAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAACKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAALKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAALAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAIKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAALAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAKKAAAAAAAKAAAAAAIKAAAAAALKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAALKAAAAAAAKAAAAAAKKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAHKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAABKAAAAAAAKAAAAAAAKAAAAAALKAAAAAAI + version: 6 + -5,-3: + ind: -5,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAMKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAACKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAACKAAAAAAAKAAAAAABBQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAAAgAAAAACAgAAAAABiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAAAgAAAAACAgAAAAACAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAADBQAAAAAACgAAAAAACgAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAADKAAAAAAAKAAAAAAABQAAAAAAAgAAAAACAgAAAAACAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAACgAAAAADCgAAAAABiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAKAAAAAAHKAAAAAAAKAAAAAAGBQAAAAAAAgAAAAAAAgAAAAAB + version: 6 + -3,-4: + ind: -3,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAADKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAEKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAIKAAAAAAABQAAAAAAEwAAAAACEwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAALAAAAAAAKAAAAAACBQAAAAAAEwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAA + version: 6 + -4,-4: + ind: -4,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAJKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAABQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAKBQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAAKAAAAAAAKAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAACBQAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAABQAAAAAAHgAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAJKAAAAAAMBQAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAAHgAAAAAAHgAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAABKAAAAAAEKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAHKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + version: 6 + -4,2: + ind: -4,2 + tiles: KAAAAAAGKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAKBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAHKAAAAAAALAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAFKAAAAAAAKAAAAAAAKAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAGKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAADKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAKAAAAAADKAAAAAAAKAAAAAAALAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAHiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAABKAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAABKAAAAAAAKAAAAAAAKAAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAHiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAGiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAEKAAAAAAKKAAAAAAAKAAAAAAAKAAAAAAGKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAFKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,2: + ind: -2,2 + tiles: KAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAFKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAHKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAABQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAABQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAABQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAABQAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAKAAAAAAABQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAJKAAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAKBQAAAAAAFAAAAAACBQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAABQAAAAAAFAAAAAADiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAABQAAAAAAFAAAAAABBQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAIBQAAAAAAFAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAHKAAAAAAAKAAAAAAABQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAHKAAAAAAJBQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAKKAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-5: + ind: -3,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAA + version: 6 + -7,-1: + ind: -7,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -6,-2: + ind: -6,-2 + tiles: BQAAAAAABQAAAAAABQAAAAAAAgAAAAACAgAAAAACAgAAAAACAgAAAAACBQAAAAAAAgAAAAADBQAAAAAABQAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAABQAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -7,-2: + ind: -7,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAABQAAAAAA + version: 6 + -2,3: + ind: -2,3 + tiles: iwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: iwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,3: + ind: -3,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -6,-3: + ind: -6,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAiwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAACAgAAAAABAgAAAAADAgAAAAACBQAAAAAAAgAAAAADBQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAAgAAAAACAgAAAAAAAgAAAAABAgAAAAADAgAAAAAABQAAAAAAAgAAAAACAgAAAAAACgAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAABQAAAAAAAgAAAAABAgAAAAABBQAAAAAABQAAAAAAAgAAAAACAgAAAAAACgAAAAADAgAAAAADAgAAAAADBQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAABQAAAAAAAgAAAAABAgAAAAAABQAAAAAAAgAAAAACAgAAAAACAgAAAAAABQAAAAAAAgAAAAADAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAACAgAAAAACBQAAAAAABQAAAAAAAgAAAAADAgAAAAACCgAAAAAAAgAAAAADAgAAAAACBQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAABQAAAAAABQAAAAAAAgAAAAACAgAAAAACAgAAAAAAAgAAAAAAAgAAAAACBQAAAAAAAgAAAAAAAgAAAAADCgAAAAADiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAA + version: 6 + -7,-3: + ind: -7,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAABQAAAAAA + version: 6 + -5,1: + ind: -5,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAFKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAFLAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAEKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAEKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAHKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAACKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAAEgAAAAAAEgAAAAAAHgAAAAAAEgAAAAAAEgAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAAEgAAAAAAFAAAAAAAEgAAAAAAEgAAAAAAHgAAAAAAEgAAAAAAEgAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABQAAAAAAEgAAAAAAEgAAAAAAHgAAAAAAEgAAAAAAEgAAAAAAKAAAAAAKBQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAAFAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAABQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAAKAAAAAAAKAAAAAAKKAAAAAAJBQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAACBQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABQAAAAAAKAAAAAAAKAAAAAAAiwAAAAAABQAAAAAAEgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAEgAAAAAABQAAAAAAiwAAAAAAKAAAAAAA + version: 6 + -5,2: + ind: -5,2 + tiles: iwAAAAAABQAAAAAAEgAAAAAAEgAAAAAAHgAAAAAAHgAAAAAABQAAAAAAHgAAAAAABQAAAAAAHgAAAAAAHgAAAAAAEgAAAAAAEgAAAAAABQAAAAAAiwAAAAAAKAAAAAAIiwAAAAAABQAAAAAAEgAAAAAAEgAAAAAAHgAAAAAAHgAAAAAABQAAAAAAHgAAAAAABQAAAAAAHgAAAAAAHgAAAAAAEgAAAAAAEgAAAAAABQAAAAAAiwAAAAAAKAAAAAAAiwAAAAAABQAAAAAAEgAAAAAAEgAAAAAAHgAAAAAAHgAAAAAABQAAAAAAHgAAAAAABQAAAAAAHgAAAAAAHgAAAAAAEgAAAAAAEgAAAAAABQAAAAAAiwAAAAAAKAAAAAAAiwAAAAAABQAAAAAAEgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEgAAAAAABQAAAAAAiwAAAAAAKAAAAAAAKAAAAAAABQAAAAAAEgAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAAEgAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAGBQAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAKAAAAAAIKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAIKAAAAAAAKAAAAAABKAAAAAAAKAAAAAAMBQAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAEKAAAAAACKAAAAAAKKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAACKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAGKAAAAAAAKAAAAAAAKAAAAAAGKAAAAAAAKAAAAAAIKAAAAAAAKAAAAAAGKAAAAAAAAAAAAAAAKAAAAAAHKAAAAAAFKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAACKAAAAAAAKAAAAAAHKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -6,2: + ind: -6,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAABKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -6,1: + ind: -6,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAGKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAEKAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAEKAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: AAAAAAAAAAAAAAAAKAAAAAAAKAAAAAACAAAAAAAAKAAAAAAFKAAAAAAAKAAAAAAGKAAAAAAAKAAAAAAIKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAKAAAAAABKAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAGKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: EgAAAAAAFAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADEgAAAAAACgAAAAACCgAAAAACBQAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAABQAAAAAACgAAAAABBQAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + zIndex: 10 + color: '#B7818651' + id: 5 + decals: + 4572: -10.009225,-49.980217 + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 1201: -32.40904,23.329243 + 1213: -4.8611717,20.985579 + 1214: 17.734123,22.009039 + 1216: 19,-5 + 1219: 14,-21 + 1224: -4,-47 + 1225: -3,-53 + 1230: -1,-41 + 1231: -12,-56 + 1237: -18,-56 + 1240: -60,-45 + 1249: -72,3 + 1250: -36,34 + 1259: -68,-25 + 1260: -72,-26 + 4819: -60,39 + 4820: -62,34 + 4823: -79,43 + 4916: -1,47 + 4918: 8,50 + 5024: -68,3 + 5139: -53,11 + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 1208: -14.476731,23.345797 + - node: + color: '#FFFFFFFF' + id: Basalt3 + decals: + 1204: -38.017628,25.630959 + 1205: -26.136497,21.34644 + 1206: -23.484678,23.477783 + 1207: -18.471771,23.498528 + 1241: -62,-44 + 4917: 15,43 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 1212: -3.0679789,20.913242 + 1215: 17,22 + 1223: -7,-51 + 1232: -13,-57 + 1239: -59,-44 + 1248: -70,2 + 1251: -39,36 + 1253: -53,8 + 1261: -69,-29 + 4821: -61,32 + 4822: -84,26 + 5026: -62,2 + 5027: -66,3 + 5140: -55,11 + 5141: -59,8 + - node: + color: '#FFFFFFFF' + id: Basalt6 + decals: + 1220: 13,-23 + 1228: 8,-40 + - node: + color: '#FFFFFFFF' + id: Basalt7 + decals: + 1202: -34.887512,23.430832 + 1203: -37.96626,27.801846 + 1221: 12,-22 + 1222: 0,-49 + 1229: 6,-40 + 1242: -63,-41 + 1243: -66,-27 + 1244: -71,-23 + 1245: -66,-19 + 1246: -73,-15 + 1247: -77,-12 + 4919: 6,48 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 1209: -11.307752,23.946156 + 1210: -24.101477,21.391861 + 1226: -1,-52 + 1227: 4,-40 + 1238: -23,-65 + 1254: -55,8 + 1255: -64,2 + 5025: -57,2 + - node: + cleanable: True + color: '#48000063' + id: Blasto + decals: + 2761: -26,-46 + 2762: -26,-46 + 2763: -26,-46 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 46: -12,1 + 47: -13,1 + 49: -14,1 + 139: -11,1 + 781: -54,-7 + 782: -54,-6 + 783: -54,-5 + 784: -54,-4 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 779: -57,-4 + 780: -57,-5 + - node: + color: '#BC863FCC' + id: Box + decals: + 1391: 6,-26 + 1392: 7,-26 + 1393: 7,-27 + 1394: 6,-27 + - node: + color: '#334E6DCC' + id: BoxGreyscale + decals: + 1119: -65,-33 + 1120: -65,-38 + 1196: -88,-32 + 1197: -88,-38 + - node: + color: '#3C44AACC' + id: BoxGreyscale + decals: + 1057: -16,-25 + - node: + color: '#52B4E9CC' + id: BoxGreyscale + decals: + 1287: -36,-11 + 3701: -27,-10 + - node: + color: '#B02E26CC' + id: BoxGreyscale + decals: + 1056: -18,-23 + - node: + color: '#B3B3B3CC' + id: BoxGreyscale + decals: + 232: -28,17 + 233: -28,19 + 890: -57,-20 + 891: -57,-21 + 892: -57,-22 + 893: -55,-20 + 894: -55,-22 + 1012: -11,-29 + 1013: -12,-29 + 1014: -13,-29 + 1015: -11,-20 + 1016: -12,-20 + 1017: -13,-20 + 1018: -8,-26 + 1019: -9,-26 + 1020: -8,-23 + 1021: -9,-23 + 1047: -16,-27 + 1048: -17,-27 + 1049: -18,-27 + 1050: -15,-25 + 1051: -15,-24 + 1052: -15,-23 + 1053: -16,-21 + 1054: -17,-21 + 1055: -18,-21 + 3149: 2,-15 + 3150: 0,-16 + 3151: 0,-17 + 3152: -2,-16 + 3153: -2,-17 + 3154: -2,-13 + 3155: -2,-12 + 3156: 0,-12 + 3157: 0,-13 + 4426: 1,-8 + 4427: -1,-8 + 5032: -68,1 + 5033: -67,1 + 5034: -66,1 + 5067: -81,0 + 5068: -81,-1 + 5069: -79,1 + 5070: -79,0 + 5071: -79,-1 + 5129: -81,1 + - node: + color: '#BC863FCC' + id: BoxGreyscale + decals: + 1397: 2,-27 + - node: + color: '#DE3A3ACC' + id: BoxGreyscale + decals: + 916: -1,-5 + 5423: 4,35 + 5483: 14,31 + - node: + color: '#EFB34196' + id: BoxGreyscale + decals: + 4641: -71,36 + 4642: -73,36 + 4643: -75,36 + 4651: -69,33 + 4652: -73,29 + 4653: -77,34 + - node: + color: '#EFB34199' + id: BoxGreyscale + decals: + 3692: -31,6 + - node: + color: '#F98AFFCC' + id: BoxGreyscale + decals: + 1411: -21,-41 + - node: + color: '#FA7500CC' + id: BoxGreyscale + decals: + 5200: -35,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 801: -60,-5 + 813: -59,-4 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 802: -63,-5 + 814: -64,-4 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 803: -60,-8 + 815: -59,-9 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 804: -63,-8 + 4284: -64,-9 + - node: + color: '#E6E6E6CC' + id: BrickTileDarkEndE + decals: + 1108: -62,-36 + 1109: -62,-34 + - node: + color: '#E6E6E6CC' + id: BrickTileDarkEndW + decals: + 1110: -66,-34 + 1111: -66,-36 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 811: -60,-6 + 812: -60,-7 + 826: -59,-8 + 4281: -59,-7 + 4282: -59,-6 + 4283: -59,-5 + - node: + color: '#E6E6E6CC' + id: BrickTileDarkLineN + decals: + 1098: -65,-34 + 1099: -64,-34 + 1102: -63,-36 + 1103: -64,-36 + 1104: -65,-36 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 809: -62,-5 + 810: -61,-5 + 822: -63,-4 + 823: -62,-4 + 824: -61,-4 + 825: -60,-4 + - node: + color: '#E6E6E6CC' + id: BrickTileDarkLineS + decals: + 1100: -65,-36 + 1101: -64,-36 + 1105: -65,-34 + 1106: -64,-34 + 1107: -63,-34 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 805: -62,-8 + 806: -61,-8 + 816: -60,-9 + 817: -61,-9 + 818: -62,-9 + 819: -63,-9 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 807: -63,-7 + 808: -63,-6 + 820: -64,-6 + 821: -64,-5 + 4279: -64,-8 + 4280: -64,-7 + - node: + color: '#334E6DCC' + id: BrickTileSteelCornerSe + decals: + 4552: -6,3 + - node: + color: '#334E6DCC' + id: BrickTileSteelLineE + decals: + 4553: -6,4 + - node: + color: '#FBB2FFFF' + id: BrickTileSteelLineS + decals: + 32: -18,-47 + - node: + color: '#FBB2FFFF' + id: BrickTileSteelLineW + decals: + 33: -17,-40 + - node: + color: '#639137CC' + id: BrickTileWhiteBox + decals: + 5192: -90,-35 + - node: + color: '#334E6DCC' + id: BrickTileWhiteCornerNe + decals: + 4486: -30,15 + 4541: -9,12 + 4554: -6,5 + 4555: -15,12 + - node: + color: '#52B4E9CC' + id: BrickTileWhiteCornerNe + decals: + 1269: -27,-8 + 3788: -33,-14 + 3969: -42,-7 + 3972: -42,-4 + - node: + color: '#9FED58CC' + id: BrickTileWhiteCornerNe + decals: + 188: -23,-8 + 1069: -52,-20 + 4069: 16,-4 + - node: + color: '#B3B3B3CC' + id: BrickTileWhiteCornerNe + decals: + 267: 15,1 + 313: 35,15 + 356: 22,20 + 646: -50,1 + 1037: -15,-20 + 3117: -2,-19 + 4420: 1,-8 + 5054: -80,5 + - node: + color: '#DE3A3ACC' + id: BrickTileWhiteCornerNe + decals: + 915: 1,-4 + 1149: -92,-38 + 4409: 3,20 + 4946: 1,15 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNe + decals: + 4610: -68,36 + 4638: -71,37 + 4659: -71,26 + 4681: -64,26 + 5274: -29,11 + - node: + color: '#F98AFFCC' + id: BrickTileWhiteCornerNe + decals: + 1078: -64,-37 + 1433: -14,-60 + - node: + color: '#334E6DCC' + id: BrickTileWhiteCornerNw + decals: + 1173: -94,-33 + 4485: -32,15 + 4550: -8,5 + 4564: -18,12 + - node: + color: '#52B4E9CC' + id: BrickTileWhiteCornerNw + decals: + 1083: -62,-37 + 1293: -36,-14 + 3970: -44,-7 + 3971: -44,-4 + 3986: -49,-7 + - node: + color: '#9FED58CC' + id: BrickTileWhiteCornerNw + decals: + 1141: -90,-37 + - node: + color: '#B3B3B3CC' + id: BrickTileWhiteCornerNw + decals: + 225: -28,19 + 354: 20,20 + 391: -6,19 + 1009: -13,-20 + 3099: -5,-9 + 4419: -1,-8 + - node: + color: '#DE3A3ACC' + id: BrickTileWhiteCornerNw + decals: + 910: -1,-4 + 3432: 8,18 + 3438: 4,23 + 4920: 3,15 + 4947: -1,15 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNw + decals: + 4609: -78,36 + 4637: -75,37 + 4684: -69,26 + 5023: -42,10 + 5277: -32,11 + 5282: -48,9 + - node: + color: '#334E6DCC' + id: BrickTileWhiteCornerSe + decals: + 4490: -30,13 + 4539: -9,7 + 4556: -15,10 + - node: + color: '#52B4E9CC' + id: BrickTileWhiteCornerSe + decals: + 1326: -42,-5 + - node: + color: '#9FED58CC' + id: BrickTileWhiteCornerSe + decals: + 166: -15,-3 + - node: + color: '#B3B3B3CC' + id: BrickTileWhiteCornerSe + decals: + 222: -22,17 + 279: 11,-3 + 301: 35,-2 + 392: -1,17 + 551: -29,-37 + - node: + color: '#BC863FCC' + id: BrickTileWhiteCornerSe + decals: + 625: -3,-36 + 1129: -92,-32 + - node: + color: '#DE3A3ACC' + id: BrickTileWhiteCornerSe + decals: + 1087: -64,-33 + 4054: 6,2 + 4412: 3,17 + 4941: 1,13 + 4996: 7,22 + 5081: -81,-7 + 5519: 17,25 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSe + decals: + 4682: -64,24 + 5235: -27,9 + 5236: -34,12 + 5275: -29,10 + - node: + color: '#F98AFFCC' + id: BrickTileWhiteCornerSe + decals: + 1443: -11,-69 + 1449: -8,-72 + - node: + color: '#334E6DCC' + id: BrickTileWhiteCornerSw + decals: + 1091: -62,-33 + 1132: -90,-33 + 1172: -94,-37 + 4489: -32,13 + 4536: -13,7 + 4561: -18,9 + 5409: -8,3 + - node: + color: '#52B4E9CC' + id: BrickTileWhiteCornerSw + decals: + 1325: -44,-5 + 3989: -49,-8 + - node: + color: '#B3B3B3CC' + id: BrickTileWhiteCornerSw + decals: + 224: -28,17 + 355: 20,18 + 390: -6,17 + 648: -52,-3 + 986: -13,-29 + - node: + color: '#DE3A3ACC' + id: BrickTileWhiteCornerSw + decals: + 911: -1,-6 + 4923: 3,6 + 4940: -1,13 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSw + decals: + 4683: -69,24 + 4689: -62,20 + 5237: -38,12 + 5276: -32,10 + - node: + color: '#F98AFFCC' + id: BrickTileWhiteCornerSw + decals: + 520: -22,-39 + 1399: -23,-45 + - node: + color: '#52B4E9CC' + id: BrickTileWhiteEndE + decals: + 3469: -42,-16 + - node: + color: '#B3B3B3CC' + id: BrickTileWhiteEndE + decals: + 684: 9,-1 + 700: 10,-1 + - node: + color: '#DE3A3ACC' + id: BrickTileWhiteEndE + decals: + 4055: 10,3 + 5418: 4,32 + - node: + color: '#334E6DCC' + id: BrickTileWhiteEndN + decals: + 1185: -88,-32 + - node: + color: '#334E6DCC' + id: BrickTileWhiteEndS + decals: + 1186: -88,-38 + - node: + color: '#52B4E9CC' + id: BrickTileWhiteEndS + decals: + 1333: -47,-16 + - node: + color: '#52B4E9CC' + id: BrickTileWhiteEndW + decals: + 1332: -48,-15 + 3468: -44,-16 + - node: + color: '#B3B3B3CC' + id: BrickTileWhiteEndW + decals: + 683: 4,-1 + - node: + color: '#334E6DCC' + id: BrickTileWhiteInnerNe + decals: + 1170: -94,-37 + 1195: -88,-33 + 1488: -10,19 + - node: + color: '#52B4E9CC' + id: BrickTileWhiteInnerNe + decals: + 120: -27,-4 + 3471: -43,-16 + - node: + color: '#9FED58CC' + id: BrickTileWhiteInnerNe + decals: + 187: -24,-8 + 603: -52,-34 + - node: + color: '#B3B3B3CC' + id: BrickTileWhiteInnerNe + decals: + 243: -24,0 + 260: 15,0 + 320: 34,15 + 337: 22,0 + 448: -23,-34 + 647: -50,0 + 1004: -10,-22 + 3119: -3,-19 + 5049: -76,0 + 5056: -80,2 + - node: + color: '#BC863FCC' + id: BrickTileWhiteInnerNe + decals: + 1362: -3,-30 + 1372: -3,-26 + - node: + color: '#DE3A3ACC' + id: BrickTileWhiteInnerNe + decals: + 72: -3,0 + 148: -3,4 + 161: 1,0 + 718: 4,12 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerNe + decals: + 4700: -60,22 + - node: + color: '#334E6DCC' + id: BrickTileWhiteInnerNw + decals: + 1169: -91,-37 + 1174: -94,-34 + 4506: -18,19 + - node: + color: '#52B4E9CC' + id: BrickTileWhiteInnerNw + decals: + 119: -25,-4 + 1268: -29,-9 + 1281: -33,-10 + 1338: -47,-15 + 3470: -43,-16 + - node: + color: '#9FED58CC' + id: BrickTileWhiteInnerNw + decals: + 511: -25,-34 + 602: -53,-34 + - node: + color: '#B3B3B3CC' + id: BrickTileWhiteInnerNw + decals: + 209: -4,0 + 244: -25,0 + 335: 34,0 + 370: 21,0 + 424: -5,-34 + 999: -10,-28 + 3124: -4,-9 + - node: + color: '#BC863FCC' + id: BrickTileWhiteInnerNw + decals: + 1363: -1,-30 + 5295: 3,-26 + - node: + color: '#DE3A3ACC' + id: BrickTileWhiteInnerNw + decals: + 74: -1,0 + 4061: 5,15 + 4938: 3,11 + - node: + color: '#334E6DCC' + id: BrickTileWhiteInnerSe + decals: + 1168: -94,-33 + 1188: -88,-37 + 4560: -17,10 + - node: + color: '#52B4E9CC' + id: BrickTileWhiteInnerSe + decals: + 118: -27,-2 + - node: + color: '#9FED58CC' + id: BrickTileWhiteInnerSe + decals: + 167: -15,-2 + 184: -24,-2 + - node: + color: '#B3B3B3CC' + id: BrickTileWhiteInnerSe + decals: + 237: -24,17 + 387: 11,-2 + 388: -3,17 + 541: -29,-36 + 1001: -10,-27 + - node: + color: '#BC863FCC' + id: BrickTileWhiteInnerSe + decals: + 1361: -3,-27 + 1373: -3,-31 + - node: + color: '#DE3A3ACC' + id: BrickTileWhiteInnerSe + decals: + 86: -3,2 + 219: -3,-2 + 714: 6,6 + 717: 4,14 + - node: + color: '#F98AFFCC' + id: BrickTileWhiteInnerSe + decals: + 532: -17,-36 + 4448: -11,-68 + - node: + color: '#334E6DCC' + id: BrickTileWhiteInnerSw + decals: + 1167: -91,-33 + 1175: -94,-36 + - node: + color: '#52B4E9CC' + id: BrickTileWhiteInnerSw + decals: + 461: -25,-2 + 464: -25,-6 + 478: -29,-2 + 1275: -31,-12 + 1337: -47,-15 + - node: + color: '#9FED58CC' + id: BrickTileWhiteInnerSw + decals: + 3423: -16,-2 + - node: + color: '#B3B3B3CC' + id: BrickTileWhiteInnerSw + decals: + 236: -25,17 + 358: 21,18 + 389: -4,17 + 649: -52,-2 + 1000: -10,-21 + 3096: -4,-2 + - node: + color: '#BC863FCC' + id: BrickTileWhiteInnerSw + decals: + 1360: -1,-27 + - node: + color: '#DE3A3ACC' + id: BrickTileWhiteInnerSw + decals: + 71: -1,2 + 713: 5,6 + 4939: 3,9 + - node: + color: '#F98AFFCC' + id: BrickTileWhiteInnerSw + decals: + 529: -22,-36 + - node: + color: '#334E6DCC' + id: BrickTileWhiteLineE + decals: + 112: -24,13 + 238: -24,16 + 1162: -94,-34 + 1163: -94,-35 + 1164: -94,-36 + 1190: -87,-36 + 1191: -87,-35 + 1192: -87,-34 + 4516: -10,20 + 4540: -9,10 + - node: + color: '#52B4E9CC' + id: BrickTileWhiteLineE + decals: + 115: -27,-3 + 1270: -27,-9 + 1271: -27,-11 + 1290: -27,-16 + 1292: -33,-16 + 1294: -32,-21 + 1295: -33,-18 + 1306: -43,-14 + 1307: -43,-15 + 1317: -38,-11 + 1327: -38,-6 + 1334: -47,-15 + 1335: -47,-14 + 3700: -27,-10 + 3790: -33,-15 + 3974: -38,-5 + - node: + color: '#639137CC' + id: BrickTileWhiteLineE + decals: + 1072: -64,-38 + - node: + color: '#9FED58CC' + id: BrickTileWhiteLineE + decals: + 185: -24,-3 + 186: -24,-7 + 189: -23,-9 + 190: -23,-11 + 191: -23,-12 + 192: -23,-13 + 193: -23,-14 + 194: -23,-16 + 195: -23,-17 + 614: -52,-22 + 615: -52,-23 + 616: -52,-24 + 617: -52,-26 + 618: -52,-27 + 619: -52,-28 + 620: -52,-28 + 621: -52,-29 + 622: -52,-30 + 623: -52,-32 + 624: -52,-33 + 4384: 19,15 + - node: + color: '#B3B3B3CC' + id: BrickTileWhiteLineE + decals: + 98: -24,3 + 99: -24,4 + 100: -24,6 + 101: -24,5 + 102: -24,7 + 103: -24,8 + 104: -24,9 + 105: -24,10 + 106: -24,11 + 223: -22,18 + 240: -24,2 + 241: -24,1 + 300: 35,-1 + 302: 35,0 + 303: 35,1 + 304: 35,2 + 305: 35,3 + 306: 35,6 + 307: 35,7 + 308: 35,8 + 309: 35,9 + 310: 35,10 + 311: 35,11 + 312: 35,12 + 314: 34,18 + 315: 34,17 + 316: 34,16 + 336: 22,1 + 338: 22,2 + 339: 22,3 + 340: 22,4 + 341: 22,5 + 342: 22,7 + 343: 22,8 + 344: 22,9 + 345: 22,10 + 346: 22,12 + 347: 22,11 + 348: 22,14 + 349: 22,15 + 350: 22,16 + 351: 22,17 + 352: 22,18 + 353: 22,19 + 395: -1,18 + 406: -23,-23 + 407: -23,-22 + 408: -23,-21 + 409: -23,-20 + 410: -23,-19 + 411: -23,-18 + 412: -3,-8 + 439: -23,-33 + 440: -23,-32 + 441: -23,-31 + 442: -23,-30 + 443: -23,-29 + 444: -23,-28 + 445: -23,-28 + 446: -23,-27 + 447: -23,-26 + 1002: -10,-28 + 1003: -7,-23 + 1005: -10,-21 + 1038: -15,-27 + 1039: -15,-26 + 1040: -15,-23 + 1041: -15,-22 + 1045: -15,-25 + 1046: -15,-24 + 3118: -3,-18 + 3147: -3,-10 + 3148: -3,-11 + 4421: 1,-9 + 4956: -7,-26 + 5048: -76,1 + 5052: -80,3 + 5053: -80,4 + - node: + color: '#BC863FCC' + id: BrickTileWhiteLineE + decals: + 629: -3,-34 + 630: -3,-33 + 631: -2,-32 + 632: -3,-32 + 633: -3,-29 + 634: -3,-28 + 635: -3,-25 + 636: -3,-24 + 637: -3,-23 + 638: -3,-22 + 639: -3,-21 + 1367: 0,-29 + 1368: 0,-28 + 4479: -3,-44 + 5308: 5,-31 + 5309: 9,-31 + 5310: 9,-32 + 5311: 9,-33 + 5312: 9,-34 + 5317: -3,-41 + 5318: -3,-43 + 5319: -3,-42 + - node: + color: '#DE3A3ACC' + id: BrickTileWhiteLineE + decals: + 64: -3,12 + 65: -3,8 + 66: -3,7 + 67: 1,1 + 68: -3,1 + 140: -3,6 + 141: -3,9 + 142: -3,10 + 143: -3,11 + 144: -3,13 + 145: -3,14 + 146: -3,15 + 147: -3,5 + 159: 1,3 + 160: -3,16 + 216: -3,-6 + 217: -3,-4 + 218: -3,-3 + 707: 6,16 + 708: 4,13 + 709: 6,5 + 710: 6,4 + 711: 6,3 + 914: 1,-5 + 1354: 3,3 + 3125: -3,-7 + 3126: -3,-5 + 3999: -27,-20 + 4050: 6,15 + 4051: 6,18 + 4052: 6,19 + 4411: 3,19 + 5082: -81,-6 + 5489: 17,32 + 5490: 17,31 + 5504: 17,26 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 4600: -68,35 + 4601: -68,32 + 4602: -68,34 + 4650: -68,33 + 4670: -68,30 + 4671: -68,31 + 4697: -60,23 + 4698: -60,24 + 4699: -60,25 + 4726: -46,20 + 5242: -34,13 + 5243: -34,14 + - node: + color: '#EFB34199' + id: BrickTileWhiteLineE + decals: + 3658: -46,4 + 3664: -39,8 + 3665: -34,8 + 3683: -34,4 + 3691: -31,6 + - node: + color: '#F98AFFCC' + id: BrickTileWhiteLineE + decals: + 530: -17,-38 + 531: -17,-37 + 1445: -8,-67 + 1448: -8,-70 + 3799: -8,-71 + 3818: -19,-66 + 5166: -11,-61 + 5167: -11,-65 + 5168: -11,-66 + 5367: -15,-53 + - node: + color: '#FF9821CC' + id: BrickTileWhiteLineE + decals: + 1094: -64,-32 + - node: + color: '#334E6DCC' + id: BrickTileWhiteLineN + decals: + 60: -9,0 + 61: -15,0 + 213: -13,0 + 214: -12,0 + 215: -11,0 + 1165: -93,-37 + 1166: -92,-37 + 1193: -87,-33 + 1468: -18,15 + 1469: -17,15 + 1470: -17,15 + 1471: -16,15 + 1472: -12,15 + 1473: -11,15 + 1474: -10,15 + 1475: -14,15 + 1495: -12,5 + 4487: -31,15 + 4542: -12,12 + 4551: -7,5 + 4557: -16,12 + 4558: -17,12 + - node: + color: '#52B4E9CC' + id: BrickTileWhiteLineN + decals: + 117: -26,-4 + 1266: -32,-9 + 1267: -30,-9 + 1278: -34,-10 + 1279: -35,-10 + 1308: -43,-10 + 1309: -47,-10 + 3725: -40,-10 + 3726: -41,-10 + 3727: -46,-10 + 3728: -45,-10 + 3987: -48,-7 + 3988: -47,-7 + 4058: 0,7 + - node: + color: '#639137CC' + id: BrickTileWhiteLineN + decals: + 1144: -93,-38 + - node: + color: '#9FED58CC' + id: BrickTileWhiteLineN + decals: + 505: -32,-34 + 506: -31,-34 + 507: -30,-34 + 508: -28,-34 + 509: -27,-34 + 510: -26,-34 + 594: -48,-34 + 595: -49,-34 + 596: -50,-34 + 597: -51,-34 + 598: -54,-34 + 599: -55,-34 + 600: -56,-34 + 601: -57,-34 + 4070: 15,-4 + 4375: 18,16 + - node: + color: '#B3B3B3CC' + id: BrickTileWhiteLineN + decals: + 93: -17,0 + 94: -26,0 + 95: -27,0 + 96: -28,0 + 97: -29,0 + 208: -5,0 + 226: -27,19 + 227: -26,19 + 228: -25,19 + 229: -24,19 + 230: -23,19 + 242: -23,0 + 251: -31,0 + 252: -30,0 + 258: 13,1 + 259: 14,1 + 261: 16,0 + 262: 17,0 + 263: 19,0 + 264: 20,0 + 268: 23,0 + 269: 24,0 + 270: 25,0 + 271: 26,0 + 272: 27,0 + 273: 28,0 + 274: 29,0 + 275: 30,0 + 276: 31,0 + 277: 32,0 + 278: 33,0 + 357: 21,20 + 396: -2,19 + 397: -3,19 + 398: -4,19 + 399: -5,19 + 425: -6,-34 + 426: -8,-34 + 427: -9,-34 + 428: -7,-34 + 429: -10,-34 + 430: -11,-34 + 431: -13,-34 + 432: -12,-34 + 433: -17,-34 + 434: -18,-34 + 435: -19,-34 + 436: -20,-34 + 437: -22,-34 + 438: -21,-34 + 565: -33,-34 + 566: -36,-34 + 567: -35,-34 + 568: -37,-34 + 569: -38,-34 + 570: -41,-34 + 571: -42,-34 + 572: -44,-34 + 573: -45,-34 + 574: -46,-34 + 587: -58,-34 + 588: -47,-34 + 650: -52,0 + 651: -53,0 + 652: -57,0 + 653: -56,0 + 654: -58,0 + 655: -60,0 + 656: -59,0 + 657: -61,0 + 658: -62,0 + 659: -62,0 + 660: -63,0 + 661: -64,0 + 662: -65,0 + 663: -69,0 + 664: -70,0 + 665: -71,0 + 666: -73,0 + 667: -72,0 + 685: 5,-1 + 686: 6,-1 + 687: 8,-1 + 695: 7,-1 + 965: -40,-34 + 966: -39,-34 + 969: -60,-34 + 989: -13,-28 + 998: -11,-28 + 1006: -9,-22 + 1007: -11,-20 + 1008: -12,-20 + 1042: -18,-20 + 1043: -17,-20 + 1044: -16,-20 + 1430: -16,-34 + 1431: -15,-34 + 1432: -14,-34 + 4417: 0,-8 + 4959: -12,-28 + 5046: -74,0 + 5047: -75,0 + 5050: -78,2 + 5051: -79,2 + 5055: -81,5 + - node: + color: '#BC863FCC' + id: BrickTileWhiteLineN + decals: + 1358: -2,-30 + 1369: 0,-26 + 1370: -2,-26 + 1371: -1,-26 + 1374: 8,-25 + 1388: 9,-25 + 5296: 6,-25 + 5297: 5,-25 + - node: + color: '#DE3A3ACC' + id: BrickTileWhiteLineN + decals: + 73: -2,0 + 75: 4,0 + 76: 11,0 + 85: -2,4 + 149: -1,4 + 150: 0,4 + 151: 3,0 + 152: 5,0 + 153: 6,0 + 154: 8,0 + 155: 9,0 + 156: 10,0 + 162: 2,0 + 691: 7,0 + 715: 7,7 + 716: 4,15 + 720: 7,3 + 1344: -28,-19 + 4057: 9,3 + 4395: -59,-38 + 4410: 2,20 + 4836: 8,30 + 4837: 7,30 + 4838: 5,30 + 4839: 4,30 + 4840: 3,30 + 4986: 8,12 + 5421: 2,34 + 5422: 3,34 + 5515: 15,26 + 5516: 14,26 + 5517: 12,26 + 5518: 11,26 + - node: + angle: 4.71238898038469 rad + color: '#DE3A3ACC' + id: BrickTileWhiteLineN + decals: + 4396: -57,-41 + 4397: -57,-40 + 4398: -57,-39 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineN + decals: + 4630: -72,30 + 4631: -74,30 + 4632: -74,37 + 4633: -73,37 + 4634: -72,37 + 4660: -72,26 + 4675: -68,26 + 4676: -66,26 + 4677: -65,26 + 4694: -57,22 + 4695: -58,22 + 4696: -59,22 + 4721: -53,22 + 4722: -52,22 + 4727: -48,22 + 4728: -50,22 + 5230: -28,11 + 5278: -31,11 + 5279: -30,11 + - node: + color: '#EFB34199' + id: BrickTileWhiteLineN + decals: + 3620: -55,0 + 3623: -49,0 + 3624: -48,0 + 3625: -47,0 + 3626: -46,0 + 3627: -45,0 + 3628: -44,0 + 3629: -42,0 + 3630: -41,0 + 3631: -32,0 + 3632: -33,0 + 3659: -47,9 + 3660: -40,10 + 3669: -35,10 + - node: + color: '#F98AFFCC' + id: BrickTileWhiteLineN + decals: + 1410: -16,-45 + 1446: -11,-60 + 5365: -20,-41 + - node: + color: '#334E6DCC' + id: BrickTileWhiteLineS + decals: + 827: -54,-2 + 828: -57,-2 + 829: -55,-2 + 830: -58,-2 + 1160: -92,-33 + 1161: -93,-33 + 1189: -87,-37 + 1476: -12,14 + 1477: -14,14 + 1478: -13,14 + 1479: -15,14 + 1480: -16,14 + 1481: -17,14 + 1482: -18,14 + 1483: -12,17 + 1484: -10,17 + 1485: -16,17 + 1486: -14,17 + 1487: -18,17 + 4491: -31,13 + 4496: -9,17 + 4517: -19,17 + 4537: -12,7 + 4538: -10,7 + 4559: -16,10 + - node: + color: '#52B4E9CC' + id: BrickTileWhiteLineS + decals: + 116: -26,-2 + 123: -26,-6 + 463: -27,-6 + 479: -30,-2 + 480: -31,-2 + 481: -32,-2 + 482: -33,-2 + 483: -34,-2 + 484: -35,-2 + 485: -36,-2 + 486: -38,-2 + 487: -37,-2 + 488: -39,-2 + 489: -40,-2 + 490: -41,-2 + 491: -42,-2 + 492: -43,-2 + 493: -44,-2 + 494: -45,-2 + 1272: -28,-13 + 1273: -29,-13 + 1274: -30,-13 + 1276: -32,-12 + 1277: -33,-12 + 1310: -48,-12 + 1311: -46,-12 + 1312: -45,-12 + 1313: -44,-12 + 1314: -42,-12 + 1315: -41,-12 + 1316: -40,-12 + 1324: -43,-8 + 3467: -43,-16 + 3897: -35,-23 + 3898: -34,-23 + 3899: -32,-23 + 4060: 0,6 + - node: + color: '#9FED58CC' + id: BrickTileWhiteLineS + decals: + 163: -12,-2 + 164: -13,-2 + 165: -14,-2 + 177: -18,-2 + 178: -17,-2 + 179: -19,-2 + 180: -20,-2 + 181: -21,-2 + 182: -22,-2 + 183: -23,-2 + 496: -43,-36 + 497: -41,-36 + 498: -40,-36 + 499: -39,-36 + 500: -38,-36 + 501: -37,-36 + 502: -36,-36 + 503: -45,-36 + 504: -46,-36 + 1062: 12,-2 + 1063: 13,-2 + 1064: 17,-2 + 1065: 16,-2 + 1066: 15,-2 + 3424: -11,-2 + - node: + color: '#B3B3B3CC' + id: BrickTileWhiteLineS + decals: + 138: -26,17 + 220: -27,17 + 221: -23,17 + 283: 18,-2 + 284: 19,-2 + 285: 20,-2 + 286: 21,-2 + 287: 22,-2 + 288: 23,-2 + 289: 24,-2 + 290: 25,-2 + 291: 26,-2 + 292: 27,-2 + 293: 28,-2 + 294: 29,-2 + 295: 30,-2 + 296: 31,-2 + 297: 32,-2 + 298: 33,-2 + 299: 34,-2 + 393: -5,17 + 394: -2,17 + 449: -14,-36 + 450: -16,-36 + 540: -35,-36 + 547: -33,-37 + 548: -32,-37 + 549: -31,-37 + 550: -30,-37 + 577: -56,-36 + 578: -55,-36 + 579: -54,-36 + 580: -53,-36 + 581: -52,-36 + 582: -51,-36 + 583: -49,-36 + 584: -48,-36 + 585: -47,-36 + 643: -48,-2 + 644: -50,-2 + 671: -53,-2 + 672: -59,-2 + 673: -61,-2 + 674: -62,-2 + 675: -64,-2 + 676: -65,-2 + 688: 5,-1 + 689: 6,-1 + 690: 8,-1 + 696: 7,-1 + 987: -12,-29 + 988: -11,-29 + 990: -13,-21 + 991: -12,-21 + 992: -11,-21 + 3425: -10,-2 + 3426: -9,-2 + 3427: -7,-2 + 3428: -6,-2 + 3429: -8,-2 + 4039: -5,-2 + 4957: -9,-27 + 5039: -68,-2 + 5040: -69,-2 + 5041: -70,-2 + 5042: -71,-2 + 5043: -72,-2 + 5044: -74,-2 + 5045: -75,-2 + 5060: -80,-3 + 5061: -79,-3 + - node: + color: '#BC863FCC' + id: BrickTileWhiteLineS + decals: + 626: -8,-36 + 627: -6,-36 + 628: -4,-36 + 1359: -2,-27 + 1364: -2,-31 + 1365: -1,-31 + 1366: 0,-31 + 1375: 6,-28 + 4478: -6,-42 + 5306: 4,-33 + - node: + color: '#DE3A3ACC' + id: BrickTileWhiteLineS + decals: + 70: -2,2 + 80: -1,-2 + 81: -2,-2 + 82: 8,-2 + 83: 9,-2 + 203: 1,-2 + 204: 3,-2 + 205: 2,-2 + 206: 6,-2 + 207: 5,-2 + 719: 7,3 + 723: 4,2 + 724: 2,2 + 846: -59,-36 + 847: -57,-36 + 913: 0,-6 + 968: -60,-36 + 1345: -28,-22 + 4053: 7,6 + 4056: 9,3 + 4841: 9,29 + 4924: 4,6 + 4942: 0,13 + 4954: -58,-42 + 4979: 2,29 + 5419: 3,32 + 5420: 1,32 + 5505: 16,25 + 5506: 15,25 + 5507: 13,25 + 5508: 12,25 + 5509: 14,25 + 5510: 11,25 + 5511: 10,25 + 5512: 8,25 + 5513: 9,25 + 5514: 7,25 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 4611: -71,28 + 4612: -70,28 + 4613: -72,28 + 4614: -74,28 + 4615: -75,28 + 4616: -77,28 + 4678: -68,24 + 4679: -66,24 + 4680: -65,24 + 4690: -61,20 + 4691: -60,20 + 4692: -59,20 + 4693: -58,20 + 4723: -53,20 + 4724: -52,20 + 4729: -42,20 + 4730: -43,20 + 5231: -31,9 + 5232: -30,9 + 5233: -28,9 + 5234: -29,9 + 5240: -37,12 + 5241: -35,12 + 5280: -31,10 + 5281: -30,10 + - node: + color: '#EFB34199' + id: BrickTileWhiteLineS + decals: + 3655: -45,11 + 3656: -47,11 + 3657: -47,2 + 3661: -40,7 + 3662: -41,7 + 3663: -46,6 + 3681: -39,3 + 3682: -36,3 + - node: + color: '#F98AFFCC' + id: BrickTileWhiteLineS + decals: + 521: -20,-39 + 522: -19,-39 + 523: -18,-39 + 526: -23,-36 + 527: -24,-36 + 528: -25,-36 + 533: -28,-36 + 1413: -27,-44 + 1414: -26,-44 + 1415: -25,-44 + 1442: -15,-69 + 1444: -10,-68 + 4987: -13,-69 + - node: + color: '#FA7500CC' + id: BrickTileWhiteLineS + decals: + 4989: -32,-7 + - node: + color: '#FF9821CC' + id: BrickTileWhiteLineS + decals: + 1126: -93,-32 + - node: + color: '#334E6DCC' + id: BrickTileWhiteLineW + decals: + 51: -4,13 + 52: -4,12 + 53: -4,11 + 54: -4,10 + 55: -4,9 + 56: -4,8 + 57: -4,7 + 196: -4,2 + 197: -4,3 + 198: -4,4 + 199: -4,5 + 200: -4,6 + 201: -4,16 + 967: -60,-35 + 1158: -91,-36 + 1159: -91,-34 + 1187: -88,-37 + 1194: -88,-33 + 1264: -25,13 + 1265: -25,15 + 4488: -32,14 + 4515: -18,20 + 4562: -18,10 + 4563: -18,11 + - node: + color: '#52B4E9CC' + id: BrickTileWhiteLineW + decals: + 113: -29,-3 + 114: -25,-3 + 462: -29,-4 + 465: -25,-7 + 466: -25,-8 + 467: -25,-9 + 468: -25,-10 + 469: -25,-10 + 470: -25,-11 + 471: -25,-12 + 472: -25,-13 + 473: -25,-14 + 474: -25,-14 + 475: -25,-15 + 476: -25,-16 + 477: -25,-17 + 495: -25,-18 + 1135: -90,-32 + 1280: -36,-11 + 1291: -31,-16 + 1304: -43,-14 + 1305: -43,-15 + 1336: -47,-14 + 3975: -40,-6 + 3976: -40,-5 + - node: + color: '#9FED58CC' + id: BrickTileWhiteLineW + decals: + 382: 21,12 + 383: 21,13 + 384: 21,14 + 385: 21,15 + 386: 21,17 + 512: -25,-33 + 513: -25,-32 + 514: -25,-31 + 515: -25,-30 + 516: -25,-30 + 517: -25,-28 + 518: -25,-29 + 519: -25,-27 + 604: -53,-33 + 605: -53,-32 + 606: -53,-31 + 607: -53,-29 + 608: -53,-28 + 609: -53,-27 + 610: -53,-25 + 611: -53,-24 + 612: -53,-23 + 883: -53,-22 + 1075: -62,-38 + 4383: 16,14 + - node: + color: '#B3B3B3CC' + id: BrickTileWhiteLineW + decals: + 84: -4,1 + 107: -25,8 + 108: -25,12 + 235: -25,16 + 245: -25,2 + 246: -25,1 + 247: -25,4 + 248: -25,3 + 249: -25,5 + 250: -25,6 + 317: 34,16 + 318: 34,17 + 319: 34,18 + 321: 34,15 + 322: 34,14 + 323: 34,12 + 324: 34,11 + 325: 34,10 + 326: 34,9 + 327: 34,9 + 328: 34,8 + 329: 34,7 + 330: 34,5 + 331: 34,4 + 332: 34,3 + 333: 34,2 + 334: 34,1 + 359: 21,11 + 360: 21,9 + 361: 21,10 + 362: 21,8 + 363: 21,7 + 364: 21,6 + 365: 21,5 + 366: 21,4 + 367: 21,3 + 368: 21,2 + 369: 21,1 + 400: -6,18 + 413: -5,-22 + 414: -5,-21 + 415: -5,-23 + 416: -5,-27 + 417: -5,-26 + 418: -5,-28 + 419: -5,-29 + 420: -5,-30 + 421: -5,-31 + 422: -5,-32 + 423: -5,-33 + 453: -25,-24 + 454: -25,-26 + 455: -25,-23 + 993: -10,-22 + 994: -10,-23 + 995: -10,-24 + 996: -10,-26 + 997: -10,-27 + 1031: -19,-28 + 1032: -19,-27 + 1033: -19,-26 + 1034: -19,-23 + 1035: -19,-22 + 1036: -19,-21 + 3100: -5,-12 + 3101: -5,-13 + 3102: -5,-14 + 3103: -5,-15 + 3104: -5,-16 + 3105: -5,-17 + 3106: -5,-18 + 3107: -5,-19 + 3108: -5,-20 + 3123: -4,-8 + 4040: -4,-3 + 4958: -10,-25 + 5057: -82,4 + 5058: -82,2 + 5059: -82,-2 + - node: + color: '#BC863FCC' + id: BrickTileWhiteLineW + decals: + 1097: -62,-32 + 1356: -1,-29 + 1357: -1,-28 + 5294: 3,-25 + 5307: 2,-32 + 5313: 8,-31 + 5314: 8,-32 + 5315: 8,-33 + 5316: 8,-34 + 5320: -4,-43 + - node: + color: '#DE3A3ACC' + id: BrickTileWhiteLineW + decals: + 69: -1,1 + 456: -25,-21 + 702: 5,3 + 703: 5,5 + 704: 5,16 + 705: 5,17 + 706: 5,19 + 912: -1,-5 + 1343: -29,-21 + 1348: 3,8 + 1355: 3,3 + 3439: 5,26 + 4413: 1,18 + 4921: 3,13 + 4922: 3,12 + 4948: -1,14 + 5080: -82,-6 + 5491: 16,30 + 5492: 16,31 + 5493: 16,32 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 4603: -78,30 + 4604: -78,31 + 4605: -78,33 + 4606: -78,34 + 4607: -78,35 + 4608: -78,32 + 4685: -62,24 + 4686: -62,23 + 4687: -62,22 + 4688: -62,21 + 4725: -54,21 + 4740: -44,20 + 5238: -38,13 + 5239: -38,14 + - node: + color: '#EFB34199' + id: BrickTileWhiteLineW + decals: + 3666: -37,8 + 3676: -25,9 + 3677: -25,11 + 3688: -32,6 + 3695: -32,4 + - node: + color: '#F98AFFCC' + id: BrickTileWhiteLineW + decals: + 524: -22,-38 + 525: -22,-37 + 1138: -90,-38 + 1400: -17,-42 + 1401: -17,-42 + 1439: -17,-68 + 1440: -17,-67 + 1441: -17,-66 + 1447: -12,-62 + 5366: -16,-53 + - node: + color: '#FF9550FF' + id: BushCTwo + decals: + 5530: -28.909824,1.972992 + - node: + color: '#FF9550FF' + id: Busha2 + decals: + 5529: -26.911112,3.5256476 + - node: + color: '#FF9550FF' + id: Bushb1 + decals: + 5528: -29.666094,5.402335 + - node: + color: '#FF9550FF' + id: Bushg4 + decals: + 5541: -80.12462,-0.653828 + - node: + color: '#FF9550FF' + id: Bushi3 + decals: + 5531: -27.964487,4.7542706 + - node: + color: '#FF9550FF' + id: Bushj3 + decals: + 5532: -28.342623,6.3744326 + - node: + color: '#FF9550FF' + id: Bushk2 + decals: + 5533: -28.464167,5.442839 + - node: + color: '#FF9550FF' + id: Bushn1 + decals: + 5540: -80.05709,0.46678376 + - node: + color: '#DE3A3ACC' + id: CautionGreyscale + decals: + 5475: 19,34 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#5F00005B' + id: Clandestine + decals: + 3077: 11,-13 + 3078: 11,-13 + 3079: 11,-13 + 3080: 11,-13 + 3081: 11,-13 + - node: + cleanable: True + color: '#690000C3' + id: Clandestine + decals: + 2612: -36,-43 + - node: + cleanable: True + color: '#D69949FF' + id: ConcreteTrimLineS + decals: + 0: 10,-29 + - node: + cleanable: True + color: '#690000C3' + id: Cyber + decals: + 2613: -52,-40 + - node: + cleanable: True + color: '#00130063' + id: Damaged + decals: + 2693: -31,-45 + 2694: -31,-41 + 2695: -36,-41 + 2696: -35,-43 + 2697: -33,-53 + 2698: -31,-39 + 2755: -21,-50 + 2756: -22,-50 + 2757: -25,-47 + 2758: -30,-39 + 2759: -31,-39 + - node: + cleanable: True + color: '#00260063' + id: Damaged + decals: + 2614: -48,-42 + 2615: -48,-44 + 2616: -51,-48 + 2617: -45,-49 + 2618: -40,-49 + 2619: -40,-52 + 2620: -35,-46 + 2621: -30,-50 + 2622: -31,-49 + 2623: -37,-50 + - node: + cleanable: True + color: '#002C005B' + id: Damaged + decals: + 3072: 9,-23 + 3073: 0,-19 + 3074: 10,-13 + 3075: 11,-13 + 3076: 11,-7 + - node: + cleanable: True + color: '#00300043' + id: Damaged + decals: + 2293: -27,-24 + 2294: -31,-26 + 2295: -34,-26 + 2296: -37,-25 + 2297: -38,-20 + 2298: -39,-20 + 2299: -39,-21 + 2300: -39,-22 + 2301: -46,-20 + 2302: -45,-21 + - node: + cleanable: True + color: '#004B006B' + id: Damaged + decals: + 1942: -57,-17 + 1943: -53,-17 + 1944: -53,-13 + 1945: -59,-19 + 1946: -61,-17 + 1947: -59,-27 + 1948: -60,-32 + - node: + color: '#007A006E' + id: Damaged + decals: + 3320: -21,6 + 3321: -18,3 + 3322: -31,17 + 3323: -35,18 + - node: + cleanable: True + color: '#134F0BA0' + id: Damaged + decals: + 2906: 10,-37 + - node: + cleanable: True + color: '#484F45A1' + id: Damaged + decals: + 2905: 8,-38 + - node: + cleanable: True + color: '#75EB7F59' + id: Damaged + decals: + 1805: -65.38233,-5.391706 + 1806: -67,-12 + 1807: -64,-11 + 1808: -57,-9 + 1809: -54,-11 + - node: + color: '#BC863FCC' + id: Delivery + decals: + 1395: 8,-26 + 1396: 8,-27 + 1398: 0,-29 + - node: + color: '#FFFFFFCC' + id: Delivery + decals: + 725: -65,-1 + 726: -65,0 + 727: -65,-2 + 728: -53,-2 + 729: -53,-1 + 730: -53,0 + 731: -31,-2 + 732: -31,-1 + 733: -31,0 + 734: -24,1 + 735: -25,1 + 736: -24,16 + 737: -25,16 + 738: -25,-7 + 739: -24,-7 + 740: -23,-1 + 741: -23,-2 + 742: -23,0 + 743: -5,-1 + 744: -5,0 + 745: -3,-3 + 746: 2,-2 + 747: 2,-1 + 748: 2,0 + 749: -3,16 + 750: -4,16 + 751: 20,0 + 752: 20,-1 + 753: 20,-2 + 754: 21,1 + 755: 22,1 + 756: 35,1 + 757: 34,1 + 758: -5,-21 + 759: -4,-21 + 760: -3,-21 + 761: -5,-33 + 762: -4,-33 + 763: -3,-33 + 764: -23,-33 + 765: -24,-33 + 766: -25,-33 + 767: -36,-36 + 768: -36,-35 + 769: -36,-34 + 770: -52,-33 + 771: -53,-33 + 772: -24,-18 + 773: -25,-18 + 774: -23,-18 + 4041: -5,-2 + 4042: -4,-3 + 4518: -21,15 + 4519: -7,14 + 4520: -7,15 + 4529: -21,14 + 4644: -67,26 + 4645: -67,25 + 4646: -67,24 + 4647: -76,27 + 4648: -78,27 + 4649: -77,27 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 48: -10,1 + 157: -3,5 + 158: -4,5 + 5087: -75,0 + 5088: -75,-1 + 5089: -75,-2 + - node: + color: '#334E6DCC' + id: DeliveryGreyscale + decals: + 1123: -66,-35 + 1184: -88,-35 + 1491: -16,19 + 1492: -12,19 + 1493: -13,12 + 4428: -10,5 + 4492: -31,14 + 4493: -28,13 + 4494: -17,17 + 4495: -11,17 + 4584: -11,11 + 4585: -10,11 + 4586: -9,11 + 4587: -9,8 + 4588: -10,8 + 4589: -11,8 + - node: + color: '#52B4E9CC' + id: DeliveryGreyscale + decals: + 1342: -46,-15 + 3463: -40,-14 + 3464: -40,-15 + 3465: -44,-17 + 3466: -42,-17 + 3475: -49,-11 + 3702: -29,-15 + 3703: -28,-15 + 3704: -27,-17 + 3705: -30,-17 + 3706: -31,-15 + 3721: -31,-13 + 3724: -42,-10 + 3804: -36,-22 + 3983: -46,-7 + 3997: -39,-5 + 4995: -27,-12 + 5202: -1,7 + 5203: -1,6 + 5204: 1,6 + 5408: -43,-4 + - node: + color: '#9FED58CC' + id: DeliveryGreyscale + decals: + 1068: -52,-20 + 4062: 13,-5 + 4376: 16,16 + 4382: 19,13 + 4401: 17,13 + 4402: 16,-6 + - node: + color: '#B3B3B3CC' + id: DeliveryGreyscale + decals: + 124: -6,1 + 130: -22,1 + 131: -18,1 + 132: -26,19 + 133: -25,19 + 234: -22,17 + 253: -52,-3 + 254: 11,-3 + 3405: -21,-14 + 4386: 5,-20 + 4387: 6,-20 + 5062: -78,-3 + 5063: -77,-3 + 5064: -76,-3 + 5065: -77,2 + 5066: -76,2 + 5125: -84,3 + 5126: -84,5 + 5127: -84,-3 + 5410: -19,-20 + 5411: -10,-20 + 5412: -10,-29 + 5413: -15,-29 + 5414: -18,-29 + 5415: -19,-29 + - node: + color: '#BC863FCC' + id: DeliveryGreyscale + decals: + 4334: 5,-32 + 4335: 5,-33 + 4344: 4,-24 + 4468: -3,-40 + 4469: -2,-38 + 4470: -3,-38 + 4471: -4,-38 + - node: + color: '#DE3A3ACC' + id: DeliveryGreyscale + decals: + 1351: 10,4 + 1352: 9,4 + 3414: 7,9 + 3421: 9,10 + 3447: -29,-22 + 4044: 8,2 + 4045: 9,2 + 4046: 10,2 + 4400: -57,-38 + 4403: 1,17 + 4404: 2,17 + 4592: 7,18 + 4593: 7,16 + 4824: 1,30 + 4825: 1,29 + 4826: 11,32 + 4827: 10,30 + 4828: 10,29 + 4829: 7,29 + 4830: 4,29 + 4926: 2,9 + 4927: 2,11 + 4928: 1,9 + 4929: 0,9 + 4930: -1,9 + 4931: -1,10 + 4932: -1,11 + 4933: 0,11 + 4934: 1,11 + 4949: 5,14 + 4950: 6,14 + 4951: 6,7 + 4952: 5,7 + 4953: -60,-38 + 4976: 4,25 + 4977: 8,29 + 4978: 3,29 + 5004: 11,19 + 5005: 11,18 + 5006: 11,17 + 5007: 11,16 + 5008: 11,15 + 5128: -84,-5 + 5424: 4,33 + 5425: 3,33 + 5466: 8,27 + 5467: 7,27 + 5468: 10,27 + 5469: 12,28 + 5470: 13,32 + 5471: 16,34 + 5472: 16,33 + 5473: 18,33 + 5484: 14,28 + 5485: 20,29 + 5486: 19,29 + 5487: 20,31 + - node: + color: '#EFB34196' + id: DeliveryGreyscale + decals: + 4617: -76,28 + 4618: -78,28 + 4666: -71,24 + 4667: -61,26 + 4668: -62,26 + 4669: -60,26 + 4731: -51,19 + 4732: -50,19 + 4733: -49,19 + 4734: -48,19 + 4735: -47,19 + 4736: -46,19 + 4737: -43,22 + 4738: -44,22 + 4739: -40,20 + 5019: -45,9 + 5020: -44,9 + 5021: -43,9 + 5022: -39,10 + 5216: -48,3 + 5217: -48,4 + 5218: -48,5 + 5219: -42,2 + 5220: -44,2 + 5244: -37,15 + 5245: -37,14 + 5246: -37,13 + 5247: -36,15 + 5248: -36,14 + 5249: -36,13 + 5250: -35,15 + 5251: -35,14 + 5252: -35,13 + - node: + color: '#EFB34199' + id: DeliveryGreyscale + decals: + 3553: -44,6 + 3554: -45,6 + 3555: -48,6 + 3556: -48,7 + 3557: -46,5 + 3558: -40,5 + 3572: -44,13 + 3573: -44,12 + 3574: -44,11 + 3575: -48,12 + 3576: -48,11 + 3578: -37,10 + 3579: -34,10 + 3584: -42,14 + 3585: -42,15 + 3586: -40,15 + 3587: -40,14 + 3614: -42,18 + 3615: -40,18 + 3616: -27,11 + 3633: -39,1 + 3634: -40,1 + 3635: -36,1 + 3636: -35,1 + 3637: -34,1 + 3689: -32,7 + 3690: -31,7 + 3694: -31,4 + - node: + color: '#F98AFFCC' + id: DeliveryGreyscale + decals: + 1420: -26,-37 + 1421: -27,-37 + 1426: -17,-53 + 1427: -17,-54 + 1428: -14,-52 + 1429: -14,-53 + 3759: -16,-41 + 3760: -16,-42 + 3761: -16,-43 + 3762: -19,-43 + 3764: -19,-47 + 3765: -20,-47 + 3766: -21,-47 + 3767: -22,-45 + 3768: -17,-47 + 3769: -15,-45 + 3770: -13,-47 + 3771: -12,-45 + 3772: -24,-42 + 3794: -17,-50 + 3795: -14,-50 + 3796: -14,-61 + 3797: -17,-61 + 3798: -17,-60 + 3805: -21,-65 + 3806: -21,-66 + 5018: -14,-47 + - node: + color: '#FA750096' + id: DeliveryGreyscale + decals: + 3715: -35,-4 + 3716: -34,-4 + 3717: -34,-7 + 3718: -31,-4 + 3719: -32,-4 + 3746: -34,-6 + - node: + color: '#FA7500CC' + id: DeliveryGreyscale + decals: + 5198: -36,-7 + 5199: -36,-8 + - node: + cleanable: True + color: '#690000A8' + id: Diablo + decals: + 2411: -54,-42 + - node: + color: '#6B0000C0' + id: Diablo + decals: + 3319: -20,3 + - node: + cleanable: True + color: '#00130063' + id: Dirt + decals: + 2750: -27,-46 + 2751: -26,-46 + 2752: -28,-46 + 2753: -28,-47 + 2754: -30,-44 + - node: + cleanable: True + color: '#484F45A1' + id: Dirt + decals: + 2799: -9,-43 + 2800: -9,-42 + 2801: -9,-41 + 2802: -9,-40 + 2803: -9,-40 + 2804: -10,-39 + 2805: -13,-39 + 2806: -13,-39 + 2807: -13,-39 + 2808: -14,-39 + 2809: -14,-39 + 2810: -14,-40 + 2811: -14,-42 + 2812: -14,-42 + 2813: -14,-42 + 2814: -14,-41 + 2815: -15,-39 + 2816: -15,-38 + 2817: -9,-48 + 2818: -9,-49 + 2819: -10,-50 + 2820: -10,-49 + 2821: -11,-49 + 2822: -12,-49 + 2823: -12,-49 + 2881: 8,-38 + 2882: 6,-38 + 2883: 8,-37 + 2884: 9,-36 + 2885: 10,-38 + 2886: 7,-38 + 2887: 6,-36 + 2888: 7,-36 + 2889: 4,-36 + 2890: 4,-35 + 2891: 3,-35 + 2892: 2,-36 + 2893: 1,-37 + 2894: 1,-38 + 2895: 1,-39 + 2896: 0,-37 + 2897: 0,-34 + 2898: 0,-33 + 2899: -1,-35 + 2900: -1,-36 + 2901: 0,-36 + 2902: 0,-36 + - node: + cleanable: True + color: '#4E000063' + id: Dirt + decals: + 2340: -54,-44 + 2341: -53,-44 + 2342: -53,-45 + 2343: -55,-44 + 2344: -55,-45 + 2345: -55,-43 + 2346: -55,-42 + 2347: -54,-42 + 2348: -54,-42 + 2349: -54,-40 + 2350: -55,-41 + 2351: -55,-40 + 2352: -55,-39 + 2353: -54,-39 + 2354: -54,-39 + 2355: -54,-39 + 2356: -54,-38 + 2357: -54,-38 + 2358: -53,-38 + 2359: -55,-39 + 2360: -53,-38 + 2361: -52,-40 + 2362: -55,-40 + 2363: -51,-41 + 2364: -51,-42 + 2365: -50,-41 + 2366: -50,-40 + 2367: -51,-42 + 2368: -52,-44 + 2369: -52,-44 + 2370: -52,-45 + 2371: -51,-45 + 2372: -52,-44 + 2373: -53,-44 + 2374: -53,-43 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#5100007E' + id: Dirt + decals: + 1818: -56,-9 + 1819: -55,-9 + 1820: -56,-11 + 1821: -54,-9 + 1822: -59,-11 + 1823: -60,-11 + 1824: -61,-11 + 1825: -61,-11 + 1826: -71,-8 + 1827: -72,-8 + 1828: -72,-10 + 1829: -67,-6 + 1830: -66,-7 + 1831: -66,-6 + 1832: -73,-6 + 1833: -75,-7 + 1834: -76,-7 + 1835: -76,-5 + 1836: -75,-6 + - node: + cleanable: True + color: '#52000089' + id: Dirt + decals: + 1866: -61,-14 + 1867: -61,-13 + 1868: -62,-15 + 1869: -61,-17 + 1870: -61,-18 + 1871: -61,-17 + 1872: -58,-17 + 1873: -61,-12 + 1874: -61,-12 + 1875: -58,-11 + 1876: -56,-11 + 1877: -57,-11 + 1878: -56,-9 + 1879: -55,-9 + 1880: -57,-9 + 1881: -56,-9 + 1882: -59,-19 + 1883: -58,-18 + 1884: -53,-18 + 1885: -55,-18 + 1886: -56,-18 + 1887: -56,-18 + 1888: -52,-17 + 1889: -53,-17 + 1890: -53,-17 + 1891: -53,-16 + 1892: -53,-15 + 1893: -54,-15 + 1894: -54,-15 + 1895: -54,-13 + 1896: -53,-13 + 1897: -53,-14 + 1898: -53,-14 + 1928: -59,-31 + 1929: -59,-30 + 1930: -59,-30 + 1931: -59,-29 + 1932: -59,-28 + 1933: -59,-26 + 1934: -59,-24 + 1935: -59,-23 + 1936: -59,-22 + 1937: -59,-20 + 1938: -59,-18 + 1939: -53,-13 + 1940: -53,-15 + - node: + cleanable: True + color: '#5600006B' + id: Dirt + decals: + 1970: -61,-23 + 1971: -62,-23 + 1972: -62,-22 + 1973: -64,-22 + 1974: -61,-20 + 1975: -61,-20 + 1976: -61,-21 + 1977: -63,-21 + 1978: -63,-22 + 1979: -63,-23 + - node: + cleanable: True + color: '#6300006D' + id: Dirt + decals: + 2192: -42,-26 + 2193: -42,-25 + 2194: -41,-25 + 2195: -42,-25 + 2196: -41,-25 + 2197: -41,-26 + 2198: -41,-26 + 2199: -42,-24 + 2200: -41,-26 + 2201: -41,-26 + 2202: -41,-25 + 2203: -41,-24 + 2204: -41,-25 + 2205: -41,-24 + 2206: -41,-25 + 2207: -41,-24 + 2208: -46,-25 + 2209: -46,-26 + 2210: -46,-26 + 2211: -46,-25 + 2212: -46,-25 + 2213: -46,-25 + 2214: -45,-25 + 2215: -46,-24 + - node: + cleanable: True + color: '#630000B6' + id: Dirt + decals: + 2259: -33,-32 + 2260: -34,-32 + 2261: -36,-32 + 2262: -37,-32 + 2263: -38,-32 + 2264: -37,-31 + 2265: -38,-28 + 2266: -40,-28 + 2267: -41,-28 + 2268: -42,-28 + 2269: -43,-28 + 2270: -43,-28 + 2271: -39,-26 + 2272: -36,-26 + 2273: -36,-25 + 2274: -35,-26 + 2275: -37,-25 + 2276: -30,-26 + 2277: -29,-26 + 2278: -28,-26 + 2279: -27,-25 + 2280: -27,-24 + 2281: -28,-24 + 2282: -29,-24 + 2283: -46,-28 + 2284: -45,-28 + 2285: -42,-28 + 2286: -40,-28 + 2287: -37,-28 + 2288: -37,-29 + 2289: -37,-31 + 2290: -38,-31 + 2291: -38,-32 + 2292: -35,-32 + - node: + cleanable: True + color: '#69000063' + id: Dirt + decals: + 2527: -37,-50 + 2528: -36,-50 + 2529: -35,-49 + 2530: -35,-49 + 2531: -35,-48 + 2532: -35,-48 + 2533: -35,-47 + 2534: -35,-46 + 2535: -36,-49 + 2536: -36,-49 + 2537: -36,-50 + 2538: -38,-50 + 2539: -39,-49 + 2540: -39,-49 + 2541: -40,-50 + 2542: -40,-50 + 2543: -41,-50 + 2544: -42,-49 + 2545: -41,-53 + 2546: -41,-53 + 2547: -42,-53 + 2548: -42,-52 + 2549: -42,-52 + 2550: -40,-52 + 2551: -42,-50 + 2552: -45,-50 + 2553: -45,-50 + 2554: -48,-50 + 2555: -48,-50 + 2556: -48,-50 + 2557: -49,-48 + 2558: -49,-46 + 2559: -49,-45 + 2560: -49,-43 + 2561: -48,-42 + 2562: -48,-41 + 2563: -48,-40 + 2564: -48,-40 + 2565: -48,-39 + 2566: -47,-39 + 2567: -47,-39 + 2568: -47,-40 + 2569: -34,-50 + 2570: -32,-50 + 2571: -30,-49 + 2572: -31,-49 + 2573: -29,-49 + 2574: -30,-50 + 2575: -32,-49 + 2576: -33,-49 + - node: + cleanable: True + color: '#697D7463' + id: Dirt + decals: + 2577: -30,-50 + 2578: -29,-50 + 2579: -31,-49 + 2580: -32,-50 + 2581: -33,-50 + 2582: -35,-49 + 2583: -35,-48 + 2584: -35,-47 + 2585: -36,-50 + 2586: -38,-50 + 2587: -40,-50 + 2588: -43,-49 + 2589: -45,-49 + 2590: -46,-50 + 2591: -48,-49 + 2592: -49,-48 + 2593: -49,-48 + 2594: -49,-48 + 2595: -48,-45 + 2596: -47,-44 + 2597: -47,-44 + 2598: -48,-43 + 2599: -48,-43 + 2600: -47,-40 + 2601: -47,-40 + 2602: -48,-39 + 2603: -48,-39 + 2604: -48,-39 + 2605: -47,-38 + 2606: -48,-40 + 2607: -48,-41 + 2608: -48,-42 + - node: + cleanable: True + color: '#82757C63' + id: Dirt + decals: + 2633: -33,-54 + 2634: -34,-54 + 2635: -34,-53 + 2636: -33,-53 + 2637: -34,-52 + 2638: -30,-50 + 2639: -32,-47 + 2640: -32,-47 + 2641: -33,-46 + 2642: -31,-47 + 2643: -31,-47 + 2644: -31,-45 + 2645: -32,-45 + 2646: -33,-45 + 2647: -33,-44 + 2648: -33,-44 + 2649: -32,-44 + 2650: -31,-42 + 2651: -31,-41 + 2652: -32,-41 + 2653: -34,-41 + 2654: -34,-41 + 2655: -33,-42 + 2656: -33,-42 + 2657: -33,-42 + 2658: -34,-41 + 2659: -35,-41 + 2660: -35,-42 + 2661: -35,-42 + 2662: -35,-43 + 2663: -36,-43 + 2664: -36,-41 + 2665: -35,-41 + 2666: -36,-42 + 2667: -36,-42 + 2668: -35,-42 + - node: + color: '#A0A99997' + id: Dirt + decals: + 3382: -50,3 + 3383: -50,3 + 3384: -50,5 + 3385: -50,6 + 3386: -51,7 + 3387: -51,7 + 3388: -50,9 + 3389: -50,9 + 3390: -52,9 + 3391: -51,10 + 3392: -50,12 + 3393: -51,13 + 3394: -51,13 + 3395: -50,14 + 3396: -50,14 + 3397: -50,15 + 3398: -50,17 + 3399: -48,17 + 3400: -48,17 + 3401: -49,17 + 3402: -46,17 + - node: + zIndex: 10 + color: '#B7818651' + id: Dirt + decals: + 4573: -53.047485,-9.013238 + 4574: -53.00324,-9.013238 + 4575: -53.00324,-9.013238 + 4576: -53.00324,-9.013238 + 4577: -53.00324,-9.013238 + 4578: -53.00324,-9.013238 + - node: + cleanable: True + color: '#C17B7C6D' + id: Dirt + decals: + 2125: -37,-22 + 2126: -38,-22 + 2127: -38,-21 + 2128: -38,-21 + 2129: -39,-21 + 2130: -39,-22 + 2131: -38,-20 + 2132: -38,-20 + 2133: -39,-19 + 2134: -41,-19 + 2135: -42,-19 + 2136: -42,-19 + 2137: -42,-19 + 2138: -43,-19 + 2139: -43,-20 + 2140: -45,-22 + 2141: -45,-22 + 2142: -45,-20 + 2143: -41,-22 + 2144: -41,-22 + 2145: -41,-22 + 2146: -41,-22 + 2147: -41,-22 + 2148: -42,-22 + 2149: -41,-21 + 2150: -46,-18 + 2151: -46,-18 + 2152: -47,-18 + 2153: -49,-18 + 2154: -49,-18 + 2155: -50,-16 + - node: + cleanable: True + color: '#C1B3BD31' + id: Dirt + decals: + 2107: -29,-25 + 2108: -30,-26 + 2109: -31,-26 + 2110: -31,-26 + - node: + cleanable: True + color: '#C1B3BD6F' + id: Dirt + decals: + 2111: -32,-26 + 2112: -33,-26 + 2113: -34,-26 + 2114: -34,-26 + 2115: -35,-26 + 2116: -35,-26 + 2117: -35,-26 + 2118: -36,-25 + 2119: -37,-25 + 2120: -37,-25 + 2121: -37,-25 + 2122: -37,-25 + 2123: -38,-26 + 2124: -40,-24 + - node: + cleanable: True + color: '#C1B3BDBF' + id: Dirt + decals: + 2037: -46,-21 + 2038: -46,-22 + 2039: -45,-22 + 2040: -45,-21 + 2041: -45,-20 + 2042: -46,-20 + 2043: -46,-18 + 2044: -46,-20 + 2103: -27,-25 + 2104: -27,-26 + 2105: -27,-24 + 2106: -28,-26 + - node: + color: '#FFFFFF37' + id: Dirt + decals: + 4304: 5,3 + 4305: 6,5 + 4306: 5,5 + 4307: 6,6 + 4308: 7,6 + 4309: 7,7 + 4310: 5,6 + 4311: 3,8 + 4312: 4,10 + 4313: 3,10 + 4314: 3,12 + 4315: 3,13 + 4316: 4,14 + 4317: 5,15 + 4318: 6,15 + 4319: 6,15 + 4320: 4,14 + 4321: 3,13 + 4322: 3,12 + 4323: 4,11 + 4324: 3,10 + 4325: 4,12 + 4326: 4,13 + 4327: 3,13 + 4328: 3,14 + 4329: 6,15 + 4330: 6,17 + 4331: 8,17 + 4332: 7,15 + 4333: 8,18 + - node: + color: '#FFFFFF5B' + id: Dirt + decals: + 1701: -61,-11 + 1705: -70,-10 + 1706: -70,-9 + 1707: -71,-9 + - node: + cleanable: True + color: '#FFFFFF5B' + id: Dirt + decals: + 1765: -57,-9 + 1766: -55,-9 + 1767: -54,-9 + 1768: -54,-9 + 1769: -54,-10 + 1770: -54,-11 + 1771: -55,-11 + 1772: -56,-10 + 1773: -58,-11 + 1774: -59,-11 + 1775: -60,-11 + 1776: -61,-11 + 1777: -64,-11 + 1778: -64,-12 + 1779: -64,-12 + 1780: -64,-12 + 1781: -63,-12 + 1782: -64,-11 + 1783: -64,-11 + 1784: -64,-11 + 1785: -66,-12 + 1786: -67,-11 + 1787: -66,-7 + 1788: -66,-6 + 1789: -67,-6 + 1790: -67,-6 + 1791: -71,-6 + 1792: -72,-6 + 1793: -74,-6 + 1794: -75,-6 + 1795: -73,-6 + 1796: -73,-6 + 1797: -75,-7 + 1798: -75,-7 + 1799: -75,-7 + 1800: -76,-5 + 1801: -76,-5 + 1802: -54,-10 + 1803: -53,-10 + 1804: -53,-9 + - node: + cleanable: True + color: '#FFFFFF5D' + id: Dirt + decals: + 3033: 10,-13 + 3034: 9,-13 + 3035: 9,-12 + 3036: 9,-12 + 3037: 9,-12 + 3038: 8,-12 + 3039: 7,-12 + 3040: 6,-12 + 3041: 6,-12 + 3042: 6,-12 + 3043: 5,-12 + 3044: 6,-14 + 3045: 6,-15 + 3046: 11,-16 + 3047: 10,-15 + 3048: 10,-15 + 3049: 10,-16 + 3050: 10,-18 + 3051: 10,-20 + 3052: 10,-21 + 3053: 10,-21 + 3054: 10,-23 + 3055: 9,-23 + 3056: 8,-22 + 3057: 9,-22 + 3058: 8,-22 + 3059: 7,-23 + 3060: 5,-22 + 3061: 4,-22 + 3062: 4,-22 + 3063: 1,-19 + 3064: 2,-19 + 3065: 2,-19 + 3066: 11,-7 + 3067: 11,-6 + 3068: 11,-5 + 3069: 11,-5 + 3070: 10,-5 + - node: + color: '#FFFFFF75' + id: Dirt + decals: + 4299: 3,2 + 4300: 3,4 + 4301: 5,4 + 4302: 5,2 + 4303: 6,4 + - node: + cleanable: True + color: '#FFFFFF75' + id: Dirt + decals: + 4298: -4,-39 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 3172: -1,22 + 3173: 0,23 + 3413: -20,3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 1682: -61,-22 + 1927: -59,-32 + 1949: -60,-32 + 2306: -46,-24 + 4871: 2,38 + 4872: 4,38 + 4873: 5,39 + 4874: 7,39 + 4875: 8,38 + 4876: 9,37 + 4877: 10,38 + 4878: 7,37 + 4879: 2,35 + 4880: 1,36 + 4881: 1,40 + 4882: 11,37 + 4883: 8,39 + 4884: 9,38 + 4885: 10,41 + 4886: 10,42 + 4887: 7,40 + 4888: 1,40 + 4892: 4,37 + 4893: 6,38 + 4894: 10,34 + 4895: 10,35 + 4896: 2,37 + 4897: 2,34 + 4898: 9,34 + 4899: 8,37 + 5130: -67,-5 + 5131: -66,-5 + 5142: -55,17 + 5169: -54,-53 + 5170: -55,-54 + 5171: -54,-57 + 5172: -54,-59 + 5173: -53,-58 + 5321: -4,-42 + 5322: -3,-42 + 5323: -4,-43 + 5324: -3,-43 + 5325: -4,-44 + 5326: -3,-41 + 5327: -6,-41 + 5328: -6,-40 + 5448: 6,32 + 5449: 7,33 + 5450: 7,34 + 5451: 6,34 + 5452: 8,36 + 5453: 11,36 + 5454: 10,37 + 5455: 6,36 + 5456: 7,36 + 5457: 5,37 + 5458: 6,39 + 5459: 5,40 + 5460: 3,37 + 5461: 2,36 + 5462: 2,33 + 5463: 2,32 + 5464: 4,32 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 4008: -78,-7 + 4009: -78,-5 + 4010: -79,-5 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 1817: -57,-11 + - node: + cleanable: True + color: '#484F45A1' + id: DirtHeavy + decals: + 2903: 0,-36 + 2904: 1,-36 + - node: + cleanable: True + color: '#5600006B' + id: DirtHeavy + decals: + 1951: -59,-17 + 1952: -60,-17 + 1953: -61,-17 + 1954: -61,-14 + 1955: -54,-17 + 1956: -55,-17 + 1957: -53,-17 + 1958: -53,-14 + 1959: -53,-13 + 1960: -54,-13 + 1961: -62,-22 + 1962: -63,-22 + 1963: -62,-21 + 1964: -62,-22 + 1965: -63,-22 + 1966: -63,-21 + 1967: -61,-23 + 1968: -63,-23 + 1969: -63,-22 + - node: + cleanable: True + color: '#690000A8' + id: DirtHeavy + decals: + 2412: -47,-38 + 2413: -48,-41 + - node: + color: '#B18BDAFF' + id: DirtHeavy + decals: + 3753: -11,-60 + - node: + cleanable: True + angle: -0.4886921905584123 rad + color: '#B8B9B88A' + id: DirtHeavy + decals: + 1838: -56,-11 + - node: + cleanable: True + color: '#C1B3BDBF' + id: DirtHeavy + decals: + 2045: -45,-21 + 2046: -46,-22 + 2047: -46,-22 + 2048: -46,-21 + 2049: -45,-20 + 2050: -42,-19 + 2051: -42,-19 + 2052: -41,-19 + 2053: -41,-21 + 2054: -41,-22 + 2055: -42,-22 + 2056: -42,-21 + 2057: -41,-21 + 2058: -41,-20 + 2059: -38,-19 + 2060: -37,-20 + 2061: -38,-20 + 2062: -38,-20 + 2063: -39,-20 + 2064: -39,-20 + 2065: -39,-21 + 2066: -39,-21 + 2067: -38,-22 + 2068: -39,-20 + 2069: -39,-22 + 2070: -38,-23 + 2071: -38,-23 + 2072: -38,-23 + 2073: -39,-25 + 2074: -39,-25 + 2075: -39,-26 + 2076: -39,-24 + 2077: -39,-24 + 2078: -37,-25 + 2079: -38,-26 + 2080: -36,-25 + 2081: -36,-26 + 2082: -36,-26 + 2083: -35,-26 + 2084: -35,-25 + 2085: -34,-26 + 2086: -34,-26 + 2087: -33,-25 + 2088: -30,-25 + 2089: -30,-25 + 2090: -31,-26 + 2091: -30,-26 + 2092: -29,-26 + 2093: -28,-26 + 2094: -28,-26 + 2095: -28,-26 + 2096: -27,-25 + 2097: -27,-24 + 2098: -28,-24 + 2099: -28,-24 + 2100: -29,-24 + 2101: -29,-25 + 2102: -28,-25 + - node: + color: '#D69949FF' + id: DirtHeavy + decals: + 9: 8,-28 + - node: + color: '#FFFFFF58' + id: DirtHeavy + decals: + 3819: -35,-23 + 3820: -35,-22 + 3821: -34,-22 + 3822: -34,-23 + 3823: -35,-21 + 3824: -33,-22 + 3825: -33,-23 + 3826: -32,-23 + 3827: -32,-22 + 3828: -32,-21 + 3829: -32,-20 + 3830: -33,-19 + 3831: -33,-19 + 3832: -33,-18 + 3833: -35,-18 + 3834: -35,-18 + 3835: -35,-19 + 3836: -33,-16 + 3837: -34,-16 + 3838: -34,-17 + 3839: -34,-15 + 3840: -33,-15 + 3841: -33,-14 + 3842: -34,-14 + 3843: -35,-14 + 3844: -35,-15 + 3845: -35,-16 + 3846: -34,-15 + 3847: -36,-23 + 3848: -36,-22 + 3849: -36,-21 + 3850: -36,-20 + 3890: -31,-17 + 3891: -31,-16 + 3892: -30,-16 + 3893: -28,-16 + 3894: -27,-16 + 3895: -27,-16 + 3896: -27,-15 + - node: + cleanable: True + color: '#FFFFFF5D' + id: DirtHeavy + decals: + 3071: 7,-15 + - node: + cleanable: True + color: '#FFFFFF6B' + id: DirtHeavy + decals: + 1950: -59,-17 + - node: + cleanable: True + color: '#FFFFFF72' + id: DirtHeavy + decals: + 4286: -42,-32 + 4287: -43,-32 + 4288: -44,-31 + 4289: -43,-30 + - node: + cleanable: True + color: '#FFFFFF78' + id: DirtHeavy + decals: + 4076: -18,-15 + 4077: -19,-14 + 4078: -20,-15 + 4079: -16,-14 + 4080: -17,-13 + 4081: -15,-13 + 4082: -12,-13 + 4083: -8,-12 + 4084: -12,-10 + 4085: -14,-9 + 4086: -13,-9 + 4087: -13,-11 + 4088: -8,-16 + 4089: -7,-15 + 4090: -7,-14 + 4091: -9,-16 + 4092: -20,-11 + 4093: -20,-11 + 4094: -20,-10 + 4095: -21,-10 + 4096: -19,-8 + 4097: -19,-7 + 4098: -21,-6 + 4099: -22,-6 + 4100: -22,-5 + 4101: -22,-4 + 4102: -21,-5 + 4103: -20,-5 + 4104: -20,-5 + 4105: -19,-6 + 4106: -20,-8 + 4107: -16,-11 + 4108: -17,-11 + 4109: -17,-10 + 4110: -15,-10 + 4111: -15,-11 + 4112: -29,-3 + 4113: -30,-2 + 4114: -30,-1 + 4115: -30,0 + 4116: -29,0 + 4117: -29,-3 + 4118: -29,-4 + 4119: -29,-5 + 4120: -29,-6 + 4121: -27,-6 + 4122: -28,-6 + 4123: -26,-6 + 4124: -25,-6 + 4125: -24,-6 + 4126: -24,-5 + 4127: -25,-4 + 4128: -26,-4 + 4129: -27,-4 + 4130: -27,-3 + 4131: -27,-2 + 4132: -26,-2 + 4133: -25,-2 + 4134: -25,-3 + 4135: -24,-3 + 4136: -24,-2 + 4137: -24,-1 + 4138: -25,0 + 4139: -26,0 + 4140: -25,2 + 4141: -25,3 + 4142: -24,2 + 4143: -25,4 + 4144: -24,4 + 4145: -24,5 + 4146: -25,7 + 4147: -24,7 + 4148: -24,8 + 4149: -25,8 + 4150: -25,9 + 4151: -25,10 + 4152: -24,10 + 4153: -24,11 + 4154: -25,11 + 4155: -25,12 + 4156: -24,12 + 4157: -24,13 + 4158: -25,14 + 4159: -24,14 + 4160: -24,15 + 4161: -25,15 + 4162: -26,17 + 4163: -27,17 + 4164: -28,17 + 4165: -28,18 + 4166: -28,20 + 4167: -26,18 + 4168: -25,18 + 4169: -26,19 + 4170: -26,19 + 4171: -24,19 + 4172: -24,18 + 4173: -23,18 + 4174: -23,19 + 4175: -23,18 + 4176: -23,17 + 4177: -22,17 + 4178: -22,17 + 4179: -22,18 + 4180: -22,19 + 4181: -25,-10 + 4182: -25,-8 + 4183: -24,-8 + 4184: -23,-8 + 4185: -23,-9 + 4186: -23,-10 + 4187: -23,-11 + 4188: -25,-13 + 4189: -25,-14 + 4190: -23,-13 + 4191: -23,-14 + 4192: -23,-15 + 4193: -25,-16 + 4194: -25,-17 + 4195: -24,-17 + 4196: -23,-17 + 4197: -21,-15 + 4198: -25,-19 + 4199: -24,-19 + 4200: -23,-19 + 4201: -23,-21 + 4202: -25,-21 + 4203: -25,-22 + 4204: -23,-23 + 4205: -25,-24 + 4206: -25,-25 + 4207: -25,-26 + 4208: -23,-26 + 4209: -23,-25 + 4210: -23,-24 + 4211: -25,-27 + 4212: -23,-27 + 4213: -23,-28 + 4214: -25,-29 + 4215: -25,-30 + 4216: -23,-30 + 4217: -23,-31 + 4218: -23,-32 + 4219: -24,-32 + 4220: -25,-32 + 4221: -25,-31 + 4222: -60,0 + 4223: -61,0 + 4224: -62,0 + 4225: -64,0 + 4226: -64,-2 + 4227: -63,-2 + 4228: -62,-2 + 4229: -60,-2 + 4230: -58,-2 + 4231: -57,-2 + 4232: -55,-2 + 4233: -56,-2 + 4234: -54,-2 + 4235: -54,-1 + 4236: -54,0 + 4237: -55,0 + 4238: -57,0 + 4239: -58,0 + 4240: -51,-3 + 4241: -52,-3 + 4242: -52,-1 + 4243: -52,0 + 4244: -51,0 + 4245: -51,1 + 4246: -50,0 + 4247: -50,-2 + 4248: -49,0 + 4249: -49,-2 + 4250: -50,-2 + 4251: -48,0 + 4252: -47,-2 + 4253: -45,-2 + 4254: -46,0 + 4255: -47,0 + 4256: -45,0 + 4257: -44,0 + 4258: -47,-2 + 4259: -43,-2 + 4260: -42,-2 + 4261: -43,0 + 4262: -42,0 + 4263: -41,0 + 4264: -40,0 + 4265: -38,0 + 4266: -38,1 + 4267: -39,0 + 4268: -35,-2 + 4269: -34,-2 + 4270: -34,0 + 4271: -36,0 + 4272: -36,0 + 4273: -38,1 + 4274: -32,0 + 4275: -32,-1 + 4276: -32,-2 + 4277: -39,-2 + 4278: -38,-2 + - node: + color: '#FFFFFF82' + id: DirtHeavy + decals: + 3901: -35,-11 + 3902: -35,-10 + 3903: -35,-10 + 3904: -36,-11 + 3905: -36,-12 + 3906: -36,-12 + 3907: -35,-12 + 3908: -36,-10 + 3909: -34,-12 + 3910: -33,-12 + 3911: -33,-11 + 3912: -33,-9 + 3913: -32,-9 + 3914: -32,-10 + 3915: -33,-10 + 3916: -31,-10 + 3917: -31,-9 + 3918: -31,-11 + 3919: -32,-11 + 3920: -32,-12 + 3921: -30,-12 + 3922: -30,-13 + 3923: -30,-11 + 3924: -29,-13 + 3925: -29,-13 + 3926: -27,-13 + 3927: -27,-13 + 3928: -28,-13 + 3929: -28,-12 + 3930: -28,-10 + 3931: -29,-10 + 3932: -29,-9 + 3933: -30,-9 + 3934: -29,-8 + 3935: -27,-9 + 3936: -27,-8 + 3937: -28,-9 + - node: + color: '#FFFFFF93' + id: DirtHeavy + decals: + 4346: 4,-28 + 4347: 5,-28 + 4348: 5,-27 + 4349: 2,-26 + 4350: 2,-27 + 4351: 3,-24 + 4352: 8,-25 + 4353: 9,-25 + 4354: 9,-26 + 4355: 9,-27 + 4356: 10,-28 + 4357: 8,-29 + 4358: 6,-28 + 4359: 7,-28 + 4360: 7,-27 + 4361: 6,-27 + 4362: 6,-26 + 4363: 7,-26 + 4364: 0,-31 + 4365: -1,-31 + 4366: -2,-31 + 4367: -2,-30 + 4368: 12,-28 + 4369: 13,-28 + 4370: 13,-29 + 4371: 13,-29 + 4372: 12,-26 + 4373: 13,-26 + 4374: 13,-25 + - node: + color: '#FFFFFF99' + id: DirtHeavy + decals: + 3479: -46,8 + 3480: -45,7 + 3481: -45,8 + 3482: -44,8 + 3483: -43,8 + 3484: -42,8 + 3485: -42,7 + 3486: -41,8 + 3487: -40,8 + 3488: -46,3 + 3489: -47,5 + 3490: -47,7 + 3491: -47,7 + 3492: -47,7 + 3493: -47,8 + 3494: -41,9 + 3495: -46,8 + 3496: -40,8 + 3497: -38,3 + 3498: -37,3 + 3499: -34,4 + 3500: -34,5 + 3501: -40,3 + 3502: -38,3 + 3503: -38,3 + 3504: -38,4 + 3505: -38,4 + 3506: -35,4 + 3507: -32,5 + 3508: -32,6 + 3509: -32,6 + 3510: -32,5 + 3511: -35,10 + 3512: -35,10 + 3513: -35,9 + 3514: -36,9 + 3515: -39,9 + 3516: -46,11 + 3517: -45,11 + 3518: -47,11 + 3519: -45,12 + 3520: -45,13 + 3521: -45,14 + 3522: -45,14 + 3523: -45,15 + 3524: -46,15 + 3525: -47,15 + 3526: -48,15 + 3527: -48,14 + 3528: -47,14 + 3529: -46,13 + 3530: -41,15 + 3531: -41,14 + 3532: -41,14 + 3533: -41,12 + - node: + color: '#FFFFFFA3' + id: DirtHeavy + decals: + 1696: -70,-10 + 1697: -72,-9 + 1698: -72,-8 + 1699: -62,-12 + 1700: -61,-11 + - node: + cleanable: True + color: '#FFFFFFCC' + id: DirtHeavy + decals: + 4074: -19,-15 + 4075: -16,-13 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 31: -16,-5 + 1689: -70,-9 + 1690: -71,-10 + 1691: -72,-10 + 1692: -71,-9 + 1693: -71,-8 + 1694: -70,-8 + 1695: -70,-10 + 3082: 6,-23 + 3158: -1,21 + 3159: -1,22 + 3160: -1,23 + 3161: 0,23 + 3162: 0,22 + 3163: 2,22 + 3164: 2,22 + 3165: 2,22 + 3166: 1,22 + 3167: 2,22 + 3168: 2,22 + 3169: 1,23 + 3170: 2,22 + 3171: 1,22 + 3174: 2,23 + 3175: 2,23 + 3176: 9,23 + 3177: 10,23 + 3178: 11,23 + 3179: 11,23 + 3180: 12,22 + 3181: 14,23 + 3182: 13,23 + 3183: 13,23 + 3184: 12,23 + 3185: 12,23 + 3186: 13,22 + 3187: 13,22 + 3188: 14,21 + 3189: 14,22 + 3190: 14,20 + 3191: 14,20 + 3192: 13,21 + 3193: 13,21 + 3194: 14,15 + 3195: 14,13 + 3196: 12,14 + 3197: 13,14 + 3198: 14,15 + 3199: 14,16 + 3200: 13,16 + 3201: 13,17 + 3202: 13,19 + 3203: 13,20 + 3204: 16,20 + 3205: 16,20 + 3206: 17,20 + 3207: 16,18 + 3208: 15,18 + 3209: 16,18 + 3210: 17,18 + 3211: 17,18 + 3212: 18,18 + 3213: 18,19 + 3214: 12,12 + 3215: 13,12 + 3216: 14,12 + 3217: 14,13 + 3218: 14,14 + 3219: 14,14 + 3220: 13,14 + 3221: 11,12 + 3222: 11,12 + 3223: 11,12 + 3224: 12,10 + 3225: 11,10 + 3226: 12,10 + 3227: 12,9 + 3228: 12,9 + 3229: 12,8 + 3230: 12,8 + 3231: 12,8 + 3232: 11,8 + 3233: 11,8 + 3234: 10,7 + 3235: 10,6 + 3236: 12,5 + 3237: 13,5 + 3238: 13,5 + 3239: 13,6 + 3240: 12,6 + 3241: 12,3 + 3242: 12,3 + 3243: 12,3 + 3244: 14,3 + 3245: 14,3 + 3246: 15,3 + 3247: 15,3 + 3248: 15,4 + 3249: 15,5 + 3250: 15,7 + 3251: 15,7 + 3252: 15,8 + 3253: 15,8 + 3254: 13,9 + 3255: 17,10 + 3256: 17,10 + 3257: 16,10 + 3258: 16,10 + 3259: 15,10 + 3260: 15,10 + 3261: 17,10 + 3262: 18,10 + 3263: 18,10 + 3264: 18,11 + 3265: 19,10 + 3266: 19,9 + 3267: 19,9 + 3268: 17,8 + 3269: 17,8 + 3270: 19,8 + 3271: 19,9 + 3272: 18,8 + 3273: 18,8 + 3274: 19,10 + 3281: -19,3 + 3282: -19,4 + 3283: -18,3 + 3284: -20,3 + 3285: -21,4 + 3286: -21,3 + 3287: -21,4 + 3288: -21,5 + 3289: -22,3 + 3290: -22,6 + 3291: -21,7 + 3292: -22,7 + 3293: -22,7 + 3294: -22,9 + 3295: -22,10 + 3296: -22,11 + 3297: -22,11 + 3298: -22,12 + 3299: -22,12 + 3300: -20,11 + 3301: -20,11 + 3302: -20,10 + 3303: -20,9 + 3304: -16,2 + 3305: -15,3 + 3306: -15,3 + 3307: -15,4 + 3308: -16,4 + 3309: -16,4 + 3310: -16,5 + 3311: -15,5 + 3312: -15,5 + 3313: -15,7 + 3314: -15,8 + 3315: -15,8 + 3316: -15,7 + 3317: -16,5 + 3318: -16,5 + 3324: -35,18 + 3325: -35,17 + 3326: -36,17 + 3327: -34,17 + 3328: -34,17 + 3329: -33,18 + 3330: -32,18 + 3331: -32,18 + 3332: -32,17 + 3333: -31,17 + 3334: -30,17 + 3335: -30,17 + 3336: -31,17 + 3337: -32,17 + 3338: -49,17 + 3339: -50,17 + 3340: -51,16 + 3341: -51,16 + 3342: -51,16 + 3343: -51,15 + 3344: -51,15 + 3345: -51,13 + 3346: -51,13 + 3347: -51,12 + 3348: -49,13 + 3349: -50,13 + 3350: -50,14 + 3351: -50,15 + 3352: -50,15 + 3353: -50,13 + 3354: -50,12 + 3355: -50,10 + 3356: -50,10 + 3357: -50,11 + 3358: -44,17 + 3359: -43,17 + 3360: -40,18 + 3361: -50,11 + 3362: -50,9 + 3363: -50,8 + 3364: -51,9 + 3365: -51,9 + 3366: -51,8 + 3367: -51,6 + 3368: -51,6 + 3369: -51,5 + 3370: -50,6 + 3371: -50,6 + 3372: -51,4 + 3373: -51,4 + 3374: -51,3 + 3375: -50,3 + 3376: -50,3 + 3377: -51,4 + 3378: -51,5 + 3379: -51,6 + 3380: -50,5 + 3381: -50,5 + 3535: -32,2 + 3536: -31,2 + 3537: -33,17 + 3538: -33,17 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 1498: -40,-2 + 1499: -37,-2 + 1500: -33,-2 + 1501: -27,0 + 1502: -24,-4 + 1503: -25,-9 + 1504: -23,-12 + 1505: -25,-15 + 1506: -23,-16 + 1507: -25,-20 + 1508: -23,-20 + 1509: -23,-22 + 1510: -25,-23 + 1511: -24,-26 + 1512: -25,-28 + 1513: -23,-29 + 1514: -25,-11 + 1515: -20,0 + 1516: -18,-2 + 1517: -17,-1 + 1518: -14,-1 + 1519: -13,-2 + 1520: -7,0 + 1521: -10,0 + 1522: -8,-1 + 1523: -8,0 + 1524: -24,0 + 1525: -24,3 + 1526: -25,5 + 1527: -24,6 + 1528: -25,6 + 1529: -24,9 + 1530: -25,13 + 1531: -24,17 + 1532: -27,18 + 1533: -27,19 + 1534: -25,17 + 1535: -48,-2 + 1536: -52,-2 + 1537: -51,-2 + 1538: -56,0 + 1539: -61,-2 + 1540: -60,-1 + 1541: -63,0 + 1542: -64,-1 + 1543: -59,0 + 1544: -59,-2 + 1545: -67,-2 + 1546: -73,0 + 1547: -71,0 + 1548: -16,-34 + 1549: -18,-39 + 1550: -26,-34 + 1551: -33,-34 + 1552: -34,-36 + 1553: -38,-34 + 1554: -40,-35 + 1555: -41,-35 + 1556: -43,-34 + 1557: -45,-34 + 1558: -45,-35 + 1559: -52,-35 + 1560: -55,-34 + 1561: -56,-35 + 1562: -58,-34 + 1563: -56,-34 + 1564: -49,-36 + 1565: -52,-36 + 1566: -45,-36 + 1567: -50,-36 + 1568: -59,-36 + 1569: -60,-35 + 1570: -47,-35 + 1571: -47,-34 + 1572: -52,-32 + 1573: -53,-30 + 1574: -52,-28 + 1575: -52,-29 + 1576: -53,-21 + 1577: -53,-22 + 1578: -52,-24 + 1579: -9,-34 + 1580: -12,-36 + 1581: -5,-33 + 1582: -3,-34 + 1583: -3,-29 + 1584: -4,-27 + 1585: -5,-28 + 1586: -4,-31 + 1587: -1,-30 + 1588: -1,-26 + 1589: -4,-25 + 1590: -5,-24 + 1591: -3,-23 + 1592: -4,-21 + 1593: -3,2 + 1594: -4,7 + 1595: -3,10 + 1596: -4,12 + 1597: -2,17 + 1598: -4,18 + 1599: -4,19 + 1600: 1,-1 + 1601: 4,-1 + 1602: 6,0 + 1603: 7,-2 + 1604: 10,-2 + 1605: 8,-2 + 1606: 13,-2 + 1607: 16,0 + 1608: 17,0 + 1609: 19,-2 + 1610: 18,0 + 1611: 23,-1 + 1612: 23,-2 + 1613: 17,-1 + 1614: 28,-1 + 1615: 29,-2 + 1616: 26,-1 + 1617: 22,0 + 1618: 22,-1 + 1619: 25,-2 + 1620: 30,-1 + 1621: 33,-1 + 1622: 34,0 + 1623: 35,-2 + 1624: 35,2 + 1625: 34,5 + 1626: 37,4 + 1627: 38,6 + 1628: 35,7 + 1629: 34,10 + 1630: 35,11 + 1631: 34,14 + 1632: 34,19 + 1633: 21,14 + 1634: 22,12 + 1635: 22,10 + 1636: 22,19 + 1637: 20,19 + 1638: 22,17 + 1639: 21,8 + 1640: 22,4 + 1641: 21,3 + 1642: -28,-8 + 1643: -30,-10 + 1644: -34,-10 + 1645: -34,-11 + 1646: -45,-12 + 1647: -33,-17 + 1648: -34,-18 + 1649: -35,-20 + 1650: -33,-21 + 1651: -19,-26 + 1652: -16,-26 + 1653: -16,-22 + 1654: -18,-20 + 1655: -17,-28 + 1656: -41,13 + 1657: -40,17 + 1658: -42,18 + 1659: -55,-5 + 1660: -60,-4 + 1661: -61,-9 + 1662: -64,-6 + 1663: 9,-29 + 1664: 9,-28 + 1665: 7,-25 + 1666: 10,-26 + 1667: 0,-30 + 1668: -17,-42 + 1669: -15,-61 + 1670: -16,-65 + 1671: -17,-68 + 1672: -10,-68 + 1673: -11,-64 + 1674: -12,-62 + 1675: -19,0 + 1676: -28,0 + 1677: -29,-2 + 1678: -11,0 + 1679: -29,-16 + 1680: -31,-16 + 1681: -43,-14 + 1683: -61,-21 + 1684: -62,-23 + 1685: -61,-23 + 1686: -62,-21 + 1687: -63,-23 + 1688: -61,-20 + 1708: -76,-7 + 1709: -75,-7 + 1710: -75,-6 + 1711: -75,-6 + 1712: -76,-6 + 1713: -76,-6 + 1714: -76,-6 + 1715: -74,-7 + 1716: -74,-7 + 1717: -73,-6 + 1718: -73,-6 + 1719: -74,-6 + 1720: -71,-6 + 1721: -70,-6 + 1722: -70,-6 + 1723: -68,-6 + 1724: -67,-6 + 1725: -66,-6 + 1726: -66,-7 + 1727: -67,-7 + 1728: -67,-8 + 1729: -66,-8 + 1730: -66,-9 + 1731: -67,-10 + 1732: -67,-11 + 1733: -66,-11 + 1734: -66,-11 + 1735: -66,-11 + 1736: -65,-12 + 1737: -65,-12 + 1738: -67,-12 + 1739: -66,-12 + 1740: -64,-12 + 1741: -63,-12 + 1742: -64,-11 + 1743: -64,-11 + 1744: -63,-11 + 1745: -63,-12 + 1746: -62,-11 + 1747: -61,-11 + 1748: -60,-11 + 1749: -59,-11 + 1750: -58,-11 + 1751: -57,-10 + 1752: -56,-10 + 1753: -55,-10 + 1754: -55,-11 + 1755: -54,-11 + 1756: -54,-11 + 1757: -53,-10 + 1758: -54,-9 + 1759: -55,-9 + 1760: -55,-9 + 1761: -55,-11 + 1762: -54,-9 + 1763: -57,-9 + 1840: -61,-12 + 1841: -62,-14 + 1842: -61,-16 + 1843: -61,-16 + 1844: -61,-16 + 1845: -61,-18 + 1846: -61,-18 + 1847: -62,-16 + 1848: -62,-16 + 1849: -62,-14 + 1850: -62,-14 + 1851: -62,-15 + 1852: -60,-17 + 1853: -60,-17 + 1854: -57,-17 + 1855: -56,-17 + 1856: -55,-17 + 1857: -59,-18 + 1858: -59,-19 + 1899: -58,-18 + 1900: -53,-18 + 1901: -53,-18 + 1902: -53,-16 + 1903: -53,-16 + 1904: -53,-15 + 1905: -53,-13 + 1906: -54,-13 + 1907: -54,-13 + 1908: -52,-14 + 1909: -53,-14 + 1910: -52,-14 + 1911: -59,-20 + 1912: -59,-20 + 1913: -59,-22 + 1914: -59,-24 + 1915: -59,-25 + 1916: -59,-26 + 1917: -59,-28 + 1918: -59,-29 + 1919: -59,-31 + 1920: -59,-32 + 1921: -59,-32 + 1922: -59,-31 + 1923: -59,-30 + 1924: -59,-28 + 1925: -59,-28 + 1926: -59,-27 + 1980: -61,-15 + 1981: -61,-15 + 1998: -52,-13 + 1999: -53,-10 + 2000: -52,-14 + 2001: -51,-15 + 2002: -50,-14 + 2003: -53,-6 + 2004: -51,-8 + 2005: -52,-7 + 2006: -52,-5 + 2007: -51,-8 + 2008: -52,-7 + 2009: -52,-5 + 2010: -52,-13 + 2011: -50,-14 + 2012: -51,-17 + 2013: -51,-18 + 2014: -50,-18 + 2015: -50,-17 + 2016: -50,-17 + 2017: -50,-15 + 2018: -49,-18 + 2019: -48,-18 + 2020: -47,-18 + 2021: -46,-19 + 2022: -46,-18 + 2023: -46,-19 + 2024: -46,-18 + 2025: -47,-18 + 2026: -48,-18 + 2027: -50,-18 + 2028: -50,-15 + 2029: -50,-15 + 2217: -42,-26 + 2218: -42,-25 + 2219: -42,-25 + 2220: -41,-24 + 2221: -41,-25 + 2222: -41,-26 + 2223: -41,-26 + 2224: -42,-25 + 2225: -42,-24 + 2226: -45,-28 + 2227: -46,-28 + 2228: -42,-28 + 2229: -42,-28 + 2230: -41,-28 + 2231: -42,-28 + 2232: -43,-28 + 2233: -43,-28 + 2234: -43,-28 + 2235: -37,-28 + 2236: -37,-28 + 2237: -40,-28 + 2238: -40,-28 + 2239: -40,-28 + 2240: -37,-28 + 2241: -37,-29 + 2242: -37,-29 + 2243: -38,-29 + 2244: -37,-29 + 2245: -37,-30 + 2246: -38,-30 + 2247: -38,-31 + 2248: -38,-31 + 2249: -38,-32 + 2250: -37,-31 + 2251: -38,-30 + 2252: -37,-32 + 2253: -36,-32 + 2254: -36,-32 + 2255: -35,-32 + 2256: -34,-32 + 2257: -34,-32 + 2258: -33,-32 + 2314: -55,-42 + 2315: -55,-42 + 2316: -55,-43 + 2317: -55,-44 + 2318: -54,-44 + 2319: -54,-44 + 2320: -53,-44 + 2321: -53,-45 + 2322: -55,-45 + 2323: -51,-44 + 2324: -51,-44 + 2325: -51,-45 + 2326: -50,-42 + 2327: -52,-41 + 2328: -54,-42 + 2329: -54,-40 + 2330: -53,-39 + 2331: -52,-39 + 2332: -52,-39 + 2333: -52,-39 + 2334: -52,-38 + 2335: -52,-38 + 2336: -51,-38 + 2337: -51,-38 + 2338: -53,-39 + 2339: -54,-40 + 2414: -48,-38 + 2415: -48,-39 + 2416: -48,-39 + 2417: -47,-38 + 2418: -47,-39 + 2419: -47,-40 + 2420: -48,-41 + 2421: -48,-41 + 2422: -48,-43 + 2423: -48,-43 + 2424: -48,-44 + 2425: -47,-43 + 2426: -47,-43 + 2427: -48,-42 + 2428: -49,-44 + 2429: -49,-45 + 2430: -49,-45 + 2431: -49,-46 + 2432: -49,-47 + 2433: -49,-47 + 2434: -49,-48 + 2435: -49,-48 + 2436: -51,-48 + 2437: -51,-47 + 2438: -51,-47 + 2439: -52,-47 + 2440: -52,-48 + 2441: -50,-47 + 2442: -50,-47 + 2443: -51,-47 + 2444: -52,-47 + 2445: -51,-47 + 2446: -49,-49 + 2447: -48,-50 + 2448: -49,-50 + 2449: -48,-50 + 2450: -47,-50 + 2451: -47,-49 + 2452: -48,-49 + 2453: -47,-49 + 2454: -45,-50 + 2455: -44,-50 + 2456: -45,-49 + 2457: -44,-49 + 2458: -43,-50 + 2459: -44,-50 + 2460: -45,-49 + 2461: -44,-49 + 2462: -43,-49 + 2463: -43,-50 + 2464: -42,-50 + 2465: -41,-50 + 2466: -41,-49 + 2467: -42,-49 + 2468: -42,-49 + 2469: -42,-50 + 2470: -42,-52 + 2471: -42,-53 + 2472: -42,-53 + 2473: -43,-53 + 2474: -43,-52 + 2475: -43,-52 + 2476: -42,-52 + 2477: -41,-53 + 2478: -41,-52 + 2479: -41,-52 + 2480: -40,-52 + 2481: -41,-53 + 2482: -41,-50 + 2483: -40,-49 + 2484: -40,-49 + 2485: -39,-49 + 2486: -38,-50 + 2487: -38,-50 + 2488: -38,-50 + 2489: -38,-49 + 2490: -39,-49 + 2491: -38,-50 + 2492: -36,-50 + 2493: -36,-50 + 2494: -36,-52 + 2495: -36,-53 + 2496: -36,-53 + 2497: -37,-53 + 2498: -37,-52 + 2499: -38,-52 + 2500: -36,-50 + 2501: -35,-49 + 2502: -35,-49 + 2503: -35,-49 + 2504: -35,-48 + 2505: -35,-48 + 2506: -35,-47 + 2507: -35,-47 + 2508: -35,-46 + 2509: -35,-46 + 2510: -33,-50 + 2511: -33,-49 + 2512: -34,-49 + 2513: -34,-49 + 2514: -33,-50 + 2515: -32,-50 + 2516: -32,-50 + 2517: -32,-49 + 2518: -31,-49 + 2519: -30,-50 + 2520: -29,-50 + 2521: -29,-50 + 2522: -30,-49 + 2523: -29,-49 + 2524: -29,-49 + 2525: -30,-49 + 2526: -30,-49 + 2625: -33,-54 + 2626: -34,-54 + 2627: -33,-53 + 2628: -32,-54 + 2629: -32,-52 + 2630: -33,-52 + 2631: -34,-53 + 2632: -33,-53 + 2669: -32,-46 + 2670: -32,-46 + 2671: -33,-47 + 2672: -33,-47 + 2673: -32,-45 + 2674: -31,-45 + 2675: -32,-44 + 2676: -32,-44 + 2677: -31,-44 + 2678: -31,-42 + 2679: -31,-42 + 2680: -32,-41 + 2681: -33,-41 + 2682: -33,-41 + 2683: -33,-41 + 2684: -35,-41 + 2685: -35,-41 + 2686: -35,-42 + 2687: -36,-41 + 2688: -36,-43 + 2689: -35,-43 + 2690: -31,-44 + 2691: -33,-44 + 2692: -32,-47 + 2699: -29,-46 + 2700: -29,-47 + 2701: -28,-46 + 2702: -27,-47 + 2703: -27,-47 + 2704: -26,-46 + 2705: -26,-46 + 2706: -28,-46 + 2707: -28,-46 + 2708: -27,-46 + 2709: -29,-46 + 2710: -28,-47 + 2711: -27,-49 + 2712: -26,-50 + 2713: -26,-50 + 2714: -26,-49 + 2715: -29,-43 + 2716: -29,-42 + 2717: -29,-41 + 2718: -29,-41 + 2719: -29,-40 + 2720: -30,-40 + 2721: -31,-39 + 2722: -31,-39 + 2723: -29,-39 + 2724: -29,-39 + 2725: -25,-46 + 2726: -24,-46 + 2727: -24,-46 + 2728: -24,-47 + 2729: -24,-47 + 2730: -24,-46 + 2731: -25,-46 + 2732: -24,-47 + 2733: -24,-48 + 2734: -23,-49 + 2735: -24,-50 + 2736: -24,-50 + 2737: -23,-50 + 2738: -22,-49 + 2739: -22,-50 + 2740: -21,-50 + 2741: -21,-49 + 2742: -21,-50 + 2743: -22,-50 + 2744: -20,-50 + 2745: -20,-50 + 2746: -20,-49 + 2747: -20,-49 + 2748: -21,-49 + 2749: -22,-49 + 2769: -12,-49 + 2770: -12,-50 + 2771: -11,-50 + 2772: -9,-47 + 2773: -9,-47 + 2774: -9,-47 + 2775: -9,-46 + 2776: -9,-45 + 2777: -9,-42 + 2778: -9,-40 + 2779: -9,-39 + 2780: -10,-39 + 2781: -12,-39 + 2782: -13,-39 + 2783: -14,-39 + 2784: -14,-39 + 2785: -14,-39 + 2786: -14,-41 + 2787: -14,-41 + 2788: -14,-42 + 2789: -14,-42 + 2790: -14,-43 + 2791: -14,-43 + 2792: -14,-42 + 2793: -14,-40 + 2794: -14,-40 + 2795: -14,-40 + 2796: -14,-40 + 2797: -15,-38 + 2798: -15,-38 + 2834: 1,-35 + 2835: 0,-35 + 2836: -1,-35 + 2837: -1,-36 + 2838: -1,-35 + 2839: 0,-34 + 2840: 0,-33 + 2841: 0,-37 + 2842: 1,-39 + 2843: 1,-39 + 2844: 1,-38 + 2845: 1,-38 + 2846: 3,-35 + 2847: 3,-35 + 2848: 3,-36 + 2849: 3,-37 + 2850: 4,-35 + 2851: 2,-36 + 2852: 3,-35 + 2853: 4,-35 + 2854: 4,-36 + 2855: 5,-35 + 2856: 5,-36 + 2857: 7,-36 + 2858: 6,-36 + 2859: 6,-36 + 2860: 8,-38 + 2861: 9,-38 + 2862: 10,-38 + 2863: 10,-37 + 2864: 10,-36 + 2865: 10,-36 + 2866: 9,-36 + 2867: 9,-36 + 2868: 8,-37 + 2869: 7,-38 + 2870: 7,-38 + 2871: 7,-38 + 2872: 7,-38 + 2873: 6,-37 + 2874: 6,-38 + 2875: 5,-38 + 2876: 5,-38 + 2877: 4,-38 + 2878: 3,-38 + 2879: 3,-38 + 2880: 5,-37 + 2954: 0,-19 + 2955: 0,-20 + 2956: 1,-20 + 2957: 1,-19 + 2958: 2,-19 + 2959: 2,-19 + 2960: 3,-20 + 2961: 3,-19 + 2962: 3,-21 + 2963: 3,-21 + 2964: 3,-22 + 2965: 4,-22 + 2966: 5,-22 + 2967: 5,-22 + 2968: 7,-23 + 2969: 7,-23 + 2970: 6,-22 + 2971: 7,-22 + 2972: 8,-23 + 2973: 9,-23 + 2974: 9,-23 + 2975: 9,-22 + 2976: 9,-22 + 2977: 10,-23 + 2978: 10,-23 + 2979: 7,-22 + 2980: 10,-20 + 2981: 10,-19 + 2982: 10,-19 + 2983: 10,-18 + 2984: 10,-17 + 2985: 10,-15 + 2986: 10,-15 + 2987: 8,-15 + 2988: 4,-15 + 2989: 6,-15 + 2990: 6,-15 + 2991: 5,-15 + 2992: 5,-14 + 2993: 5,-13 + 2994: 5,-13 + 2995: 6,-14 + 2996: 6,-12 + 2997: 6,-12 + 2998: 5,-12 + 2999: 8,-12 + 3000: 8,-13 + 3001: 9,-13 + 3002: 8,-12 + 3003: 7,-12 + 3004: 9,-12 + 3005: 10,-13 + 3006: 11,-13 + 3007: 11,-12 + 3008: 11,-11 + 3009: 11,-11 + 3010: 10,-10 + 3011: 10,-9 + 3012: 10,-9 + 3013: 10,-8 + 3014: 11,-8 + 3015: 12,-9 + 3016: 12,-9 + 3017: 11,-9 + 3018: 11,-6 + 3019: 10,-6 + 3020: 10,-6 + 3021: 10,-5 + 3022: 10,-5 + 3023: 11,-6 + 3024: 11,-7 + 3025: 11,-7 + 3026: 13,-12 + 3027: 13,-11 + 3028: 14,-11 + 3029: 14,-11 + 3030: 14,-12 + 3031: 15,-12 + 3032: 15,-11 + 3539: -37,3 + 3550: -36,10 + 3561: -36,3 + 3567: -38,5 + 3568: -37,5 + 3569: -35,5 + 3570: -36,5 + 3571: -35,5 + 3598: -54,2 + 3599: -54,3 + 3600: -54,4 + 3601: -54,6 + 3602: -55,4 + 3603: -55,3 + 3604: -55,2 + 3605: -53,2 + 3606: -53,3 + 3607: -53,4 + 3608: -53,6 + 3609: -55,6 + 3617: -37,8 + 3618: -34,8 + 3621: -34,9 + 3622: -37,9 + 3667: -39,8 + 3668: -39,7 + 3670: -40,7 + 3671: -41,7 + 3672: -40,10 + 3673: -47,9 + 3674: -46,6 + 3675: -46,7 + 3938: -47,-10 + 3941: -40,-11 + 3943: -43,-10 + 3980: -53,-25 + 3996: -41,-12 + 4844: 5,27 + 4845: 5,25 + 4846: 6,30 + 4847: 5,29 + 4848: 4,30 + 4849: 2,30 + 4850: 9,30 + 4851: 9,29 + 4852: 10,32 + 4853: 9,35 + 4854: 2,35 + 4855: 1,37 + 4856: 5,38 + 4857: 7,38 + 4858: 9,37 + 4859: 5,39 + 4860: 5,41 + 4861: 3,38 + 4862: 1,38 + 4863: 0,39 + 4864: 1,41 + 4865: 1,41 + 4866: 11,36 + 4867: 11,38 + 4868: 6,39 + 4869: 6,40 + 4870: 3,37 + 4900: 4,37 + 4901: 6,37 + 4902: 6,41 + 4903: 7,41 + 4904: 7,39 + 4905: -1,37 + 4906: 1,42 + 4907: 0,41 + 4908: 1,39 + 4909: 12,37 + 4910: 12,36 + 4911: 10,34 + 4912: 10,36 + 4913: 1,35 + 4914: 2,34 + 4915: 9,36 + 4973: -8,-22 + 4974: -10,-26 + 4975: -9,-27 + 4980: 2,29 + 4981: 3,30 + 4982: 5,30 + 4983: 6,29 + 4984: 7,30 + 4985: 9,30 + 4990: -32,-7 + 4991: -31,-7 + 4992: -32,-6 + 4993: -33,-7 + 4994: -33,-6 + 5091: -76,0 + 5092: -78,0 + 5093: -77,-2 + 5094: -77,-1 + 5095: -77,0 + 5096: -78,1 + 5097: -81,2 + 5098: -82,4 + 5099: -81,5 + 5100: -81,4 + 5101: -82,2 + 5102: -82,0 + 5103: -81,-2 + 5104: -80,-2 + 5105: -81,-3 + 5106: -82,-2 + 5107: -78,-2 + 5108: -73,-2 + 5109: -71,-2 + 5110: -71,-1 + 5111: -73,-1 + 5112: -74,-2 + 5113: -69,-2 + 5114: -68,-1 + 5115: -66,-1 + 5116: -69,0 + 5117: -66,0 + 5118: -68,1 + 5119: -73,-2 + 5120: -72,-2 + 5121: -82,-9 + 5122: -82,-6 + 5123: -81,-7 + 5124: -81,-5 + 5132: -70,-4 + 5133: -69,-5 + 5134: -71,-4 + 5135: -69,-4 + 5136: -73,-5 + 5137: -74,-4 + 5138: -73,-4 + 5143: -55,15 + 5144: -54,14 + 5145: -53,14 + 5146: -54,13 + 5147: -54,13 + 5148: -52,13 + 5149: -53,13 + 5150: -53,18 + 5151: -55,18 + 5152: -55,18 + 5153: -11,-67 + 5154: -12,-65 + 5155: -12,-68 + 5156: -15,-67 + 5157: -16,-65 + 5158: -15,-64 + 5159: -8,-68 + 5160: -9,-67 + 5161: -11,-65 + 5162: -12,-63 + 5163: -12,-67 + 5174: -55,-58 + 5175: -54,-58 + 5176: -56,-58 + 5177: -53,-57 + 5178: -53,-56 + 5179: -52,-56 + 5180: -52,-54 + 5181: -52,-50 + 5182: -54,-53 + 5183: -55,-53 + 5184: -56,-53 + 5185: -56,-54 + 5186: -55,-51 + 5187: -56,-51 + 5188: -56,-52 + 5189: -55,-52 + 5190: -56,-55 + 5191: -55,-55 + 5205: -15,-5 + 5206: -15,-6 + 5207: -15,-8 + 5208: -15,-8 + 5209: -15,-7 + 5210: -15,-5 + 5211: -16,-8 + 5212: -16,-8 + 5213: -42,7 + 5214: -43,7 + 5215: -44,7 + 5272: -36,8 + 5273: -35,8 + 5285: -30,10 + 5286: -29,11 + 5287: -29,10 + 5288: -31,10 + 5289: -30,11 + 5290: -32,10 + 5291: -48,8 + 5292: -48,9 + 5293: -42,17 + 5370: -20,-42 + 5371: -20,-41 + 5372: -21,-42 + 5373: -20,-43 + 5374: -21,-43 + 5375: -21,-45 + 5376: -22,-43 + 5377: -21,-44 + 5378: -21,-41 + 5379: -20,-45 + 5380: -19,-46 + 5381: -25,-43 + 5382: -26,-42 + 5383: -26,-43 + 5384: -25,-44 + 5385: -26,-44 + 5386: -16,-49 + 5387: -16,-50 + 5388: -15,-49 + 5389: -14,-49 + 5390: -14,-50 + 5391: -15,-50 + 5392: -16,-45 + 5393: -16,-46 + 5394: -14,-46 + 5395: -15,-47 + 5396: -12,-46 + 5397: -14,-45 + 5398: -16,-53 + 5399: -15,-52 + 5400: -15,-54 + 5401: -15,-53 + - node: + cleanable: True + angle: 0.2617993877991494 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 1984: -51,-11 + 1985: -51,-9 + 1986: -51,-9 + 1987: -52,-6 + 1988: -52,-6 + 1989: -51,-5 + 1990: -51,-6 + 1991: -51,-6 + 1992: -51,-9 + 1993: -51,-11 + 1994: -52,-10 + 1995: -53,-10 + 1996: -51,-14 + 1997: -51,-14 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 4002: -78,-7 + 4003: -78,-6 + 4004: -78,-5 + 4005: -79,-5 + 4006: -79,-6 + 4007: -79,-7 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 1814: -57,-11 + 1815: -56,-11 + 1816: -56,-9 + - node: + cleanable: True + color: '#B18BDAFF' + id: DirtHeavyMonotile + decals: + 3763: -20,-66 + - node: + color: '#F9FFFF8F' + id: DirtHeavyMonotile + decals: + 4461: -22,-43 + - node: + color: '#FFFFFF58' + id: DirtHeavyMonotile + decals: + 3851: -36,-23 + 3852: -36,-22 + 3853: -36,-21 + 3854: -36,-21 + 3855: -36,-20 + 3856: -36,-19 + 3857: -36,-18 + 3858: -36,-17 + 3859: -35,-17 + 3860: -36,-16 + 3861: -36,-15 + 3862: -36,-14 + 3863: -31,-23 + 3864: -31,-22 + 3865: -32,-22 + 3866: -32,-23 + 3867: -33,-23 + 3868: -33,-22 + 3869: -33,-21 + 3870: -32,-19 + 3871: -35,-21 + 3872: -34,-21 + 3873: -34,-20 + 3874: -34,-19 + 3875: -30,-17 + 3876: -29,-17 + 3877: -29,-17 + 3878: -27,-17 + 3879: -28,-17 + 3880: -28,-15 + 3881: -29,-15 + 3882: -30,-15 + 3883: -31,-15 + 3884: -31,-15 + 3885: -30,-15 + 3886: -30,-15 + 3887: -29,-15 + 3888: -29,-15 + 3889: -28,-15 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 3534: -35,13 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 1764: -57,-9 + 1859: -61,-14 + 1860: -61,-13 + 1861: -61,-17 + 1862: -58,-17 + 1863: -57,-17 + 1864: -58,-18 + 1865: -59,-19 + 2030: -51,-17 + 2303: -46,-24 + 2375: -52,-41 + 2376: -52,-40 + 3734: -36,-7 + 3735: -35,-7 + 3736: -35,-6 + 3737: -35,-5 + 3738: -34,-5 + 3739: -33,-5 + 3740: -33,-6 + 3741: -34,-7 + 3742: -35,-8 + 3743: -34,-7 + 3744: -36,-6 + 3745: -36,-5 + 3747: -36,-4 + 3748: -34,-4 + 3749: -33,-4 + 3750: -32,-4 + 3751: -31,-4 + 3752: -32,-5 + 3940: -45,-11 + 3942: -39,-6 + 3967: -45,-10 + 3968: -33,-23 + 3973: -34,-1 + 3995: -47,-15 + 4294: -5,-40 + 4295: -5,-39 + 4296: -4,-39 + 4297: -4,-41 + - node: + cleanable: True + color: '#B18BDAFF' + id: DirtLight + decals: + 3757: -11,-45 + - node: + color: '#FFFFFF5B' + id: DirtLight + decals: + 1702: -70,-10 + 1703: -71,-10 + 1704: -72,-10 + - node: + color: '#FFFFFF82' + id: DirtLight + decals: + 3945: -43,-15 + 3946: -44,-16 + 3947: -43,-16 + 3948: -43,-16 + 3949: -47,-16 + 3950: -47,-15 + 3951: -47,-15 + 3952: -47,-14 + 3953: -48,-15 + 3954: -47,-12 + 3955: -46,-12 + 3956: -47,-12 + 3957: -48,-11 + 3958: -43,-12 + 3959: -44,-12 + 3960: -44,-10 + 3961: -45,-10 + 3962: -44,-8 + 3963: -43,-7 + 3964: -43,-8 + 3965: -42,-8 + 3966: -43,-8 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 2304: -46,-24 + 2305: -46,-24 + 3540: -46,9 + 3939: -38,-10 + 3990: 5,22 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 3541: -42,9 + 3542: -41,10 + 3543: -40,9 + 3544: -41,17 + 3545: -39,3 + 3546: -39,3 + 3547: -39,5 + 3548: -40,3 + 3549: -47,6 + 3944: -48,-10 + 4011: -47,21 + 4012: -48,21 + 4013: -49,21 + 4014: -41,21 + 4015: -50,21 + 4016: -52,21 + 4017: -52,21 + 4018: -50,27 + 4019: -52,28 + 4020: -52,25 + 4021: -55,30 + 4022: -51,31 + 4023: -54,30 + 4024: -56,28 + 4025: -49,32 + 4026: -54,33 + 4027: -55,34 + 4028: -55,31 + 4029: -51,32 + 4030: -55,35 + 4031: -56,31 + 4032: -51,28 + 4033: -49,30 + 4034: -52,27 + 4035: -45,25 + 4036: -46,26 + 4037: -48,27 + 4741: -62,24 + 4742: -62,23 + 4743: -60,23 + 4744: -60,24 + 4745: -62,25 + 4746: -59,20 + 4747: -58,22 + 4748: -61,20 + 4749: -62,22 + 4750: -56,20 + 4751: -56,22 + 4752: -58,20 + 4753: -52,20 + 4754: -53,21 + 4755: -52,22 + 4756: -50,20 + 4757: -50,22 + 4758: -54,22 + 4759: -48,20 + 4760: -49,20 + 4761: -49,20 + 4762: -51,22 + 4763: -48,22 + 4764: -47,20 + 4765: -46,21 + 4766: -43,20 + 4767: -42,21 + 4768: -44,21 + 4769: -44,20 + 4770: -41,20 + 4771: -51,21 + 4772: -54,22 + 4773: -54,20 + 4774: -64,24 + 4775: -65,26 + 4776: -65,26 + 4777: -66,25 + 4778: -66,24 + 4779: -65,24 + 4780: -65,25 + 4781: -68,26 + 4782: -69,24 + 4783: -69,25 + 4784: -67,24 + 4785: -68,25 + 4786: -73,26 + 4787: -72,26 + 4788: -71,26 + 4789: -71,25 + 4790: -73,28 + 4791: -73,30 + 4792: -76,30 + 4793: -78,30 + 4794: -78,29 + 4795: -69,29 + 4796: -69,30 + 4797: -70,30 + 4798: -68,31 + 4799: -68,32 + 4800: -68,34 + 4801: -68,34 + 4802: -69,35 + 4803: -72,37 + 4804: -73,37 + 4805: -72,36 + 4806: -74,36 + 4807: -74,37 + 4808: -78,35 + 4809: -77,34 + 4810: -78,32 + 4811: -77,32 + 4812: -77,33 + 4813: -78,33 + 4814: -77,30 + 4815: -76,30 + 4816: -78,30 + 4817: -75,30 + 4818: -73,30 + 4889: 0,37 + 4890: 0,38 + 4891: 2,36 + 4960: -11,-21 + 4961: -10,-23 + 4962: -7,-24 + 4963: -9,-26 + 4964: -10,-28 + 4965: -12,-29 + 4966: -10,-26 + 4967: -10,-24 + 4968: -12,-28 + 4969: -7,-27 + 4970: -7,-25 + 4971: -7,-22 + 5255: -32,9 + 5256: -30,9 + 5257: -31,9 + 5258: -29,9 + 5259: -28,9 + 5260: -28,10 + 5261: -28,11 + 5262: -27,10 + 5263: -27,9 + 5264: -29,9 + 5265: -42,3 + 5266: -43,2 + 5267: -44,3 + 5268: -46,4 + 5269: -47,5 + 5270: -46,3 + 5271: -47,2 + 5329: 2,-32 + 5330: 2,-31 + 5331: 2,-30 + 5332: 3,-32 + 5333: 3,-31 + 5334: 4,-31 + 5335: 4,-30 + 5336: 5,-30 + 5337: 5,-31 + 5338: 4,-32 + 5339: 4,-33 + 5340: 8,-32 + 5341: 9,-31 + 5342: 8,-31 + 5343: 9,-32 + 5344: 8,-33 + 5345: 9,-34 + 5346: 8,-34 + 5347: 9,-33 + 5348: 4,-28 + 5349: 4,-27 + 5350: 5,-27 + 5351: 5,-26 + 5352: 4,-26 + 5353: 3,-27 + 5354: 3,-25 + 5355: 4,-25 + 5356: 6,-25 + 5357: 5,-25 + 5358: 3,-27 + 5359: 3,-26 + 5360: 6,-28 + 5361: 5,-28 + 5362: 9,-27 + 5363: 9,-26 + 5364: 7,-28 + 5431: 2,33 + 5432: 1,32 + 5433: 1,33 + 5434: 2,32 + 5435: 2,32 + 5436: 3,32 + 5437: 3,34 + 5438: 7,34 + 5439: 6,35 + 5440: 6,35 + 5441: 6,33 + 5442: 6,33 + 5443: 6,32 + 5444: 7,35 + 5445: 6,36 + 5446: 7,36 + 5447: 9,36 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Donk + decals: + 2609: -43,-48 + - node: + color: '#FF9550FF' + id: Flowersbr2 + decals: + 5526: -28.8423,3.8361788 + 5539: -79.98957,-0.07327008 + - node: + color: '#FF9550FF' + id: Flowerspv2 + decals: + 5538: -79.97607,-0.89685225 + - node: + color: '#FF9550FF' + id: Flowersy1 + decals: + 5527: -27.181208,5.024297 + - node: + color: '#FF9550FF' + id: Flowersy2 + decals: + 5537: -80.21915,0.8313205 + - node: + color: '#65090093' + id: Gene + decals: + 3403: -50,15 + 3404: -50,15 + - node: + cleanable: True + color: '#690000C3' + id: Gib + decals: + 2610: -42,-53 + - node: + color: '#FF9550FF' + id: Grassa3 + decals: + 5521: -27.599857,5.6723623 + - node: + color: '#FF9550FF' + id: Grassa4 + decals: + 5536: -80.16513,-0.16777968 + - node: + color: '#FF9550FF' + id: Grassa5 + decals: + 5520: -28.653233,2.5400486 + - node: + color: '#FF9550FF' + id: Grassc1 + decals: + 5522: -29.017862,6.3879337 + 5523: -27.869953,1.8784828 + 5524: -28.734262,4.470742 + 5525: -27.262236,6.6039553 + - node: + color: '#FF9550FF' + id: Grassc2 + decals: + 5535: -80.111115,0.69630694 + - node: + color: '#FF9550FF' + id: Grasse1 + decals: + 5534: -80.01658,-0.8698499 + - node: + angle: -3.141592653589793 rad + color: '#DE3A3ACC' + id: LoadingAreaGreyscale + decals: + 5476: 19,33 + - node: + angle: 1.5707963267948966 rad + color: '#DE3A3ACC' + id: LoadingAreaGreyscale + decals: + 4594: 7,17 + - node: + color: '#724276FF' + id: MiniTileCheckerAOverlay + decals: + 34: -11,-43 + 35: -12,-43 + 36: -12,-42 + 37: -11,-42 + 38: -11,-41 + 39: -12,-41 + - node: + color: '#765428FF' + id: MiniTileCheckerAOverlay + decals: + 10: 1,-24 + 11: 0,-24 + 12: -1,-24 + 13: -1,-23 + 14: 0,-23 + 15: 1,-23 + 16: 1,-22 + 17: 0,-22 + 18: -1,-22 + - node: + color: '#808080FF' + id: MiniTileCheckerAOverlay + decals: + 785: -63,-5 + 786: -62,-5 + 787: -61,-5 + 788: -60,-5 + 789: -60,-6 + 790: -61,-6 + 791: -62,-6 + 792: -63,-6 + 793: -63,-7 + 794: -62,-7 + 795: -61,-7 + 796: -60,-7 + 797: -60,-8 + 798: -61,-8 + 799: -63,-8 + 800: -62,-8 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkCornerNe + decals: + 19: 1,-22 + 43: -11,-41 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkCornerNw + decals: + 42: -12,-41 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkCornerSe + decals: + 41: -11,-43 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkCornerSw + decals: + 40: -12,-43 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkEndN + decals: + 5009: 10,19 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkEndS + decals: + 5010: 10,15 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerNw + decals: + 5016: 10,18 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerSw + decals: + 5017: 10,16 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineE + decals: + 20: 1,-23 + 21: 1,-24 + 44: -11,-42 + 5011: 10,16 + 5012: 10,17 + 5013: 10,18 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineN + decals: + 28: -1,-22 + 29: 0,-22 + 30: 1,-22 + 5015: 9,18 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineS + decals: + 22: 1,-24 + 23: 0,-24 + 24: -1,-24 + 5014: 9,16 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineW + decals: + 25: -1,-24 + 26: -1,-23 + 27: -1,-22 + 45: -12,-42 + - node: + color: '#B3B3B3CC' + id: MiniTileSteelCornerNe + decals: + 943: -41,-45 + - node: + color: '#B3B3B3CC' + id: MiniTileSteelCornerNw + decals: + 944: -45,-45 + - node: + color: '#B3B3B3CC' + id: MiniTileSteelCornerSe + decals: + 946: -41,-47 + - node: + color: '#B3B3B3CC' + id: MiniTileSteelCornerSw + decals: + 945: -45,-47 + - node: + color: '#B3B3B3CC' + id: MiniTileSteelEndE + decals: + 930: -41,-38 + - node: + color: '#B3B3B3CC' + id: MiniTileSteelEndW + decals: + 931: -45,-38 + - node: + color: '#B3B3B3CC' + id: MiniTileSteelInnerNe + decals: + 942: -43,-45 + - node: + color: '#B3B3B3CC' + id: MiniTileSteelInnerNw + decals: + 941: -43,-45 + - node: + color: '#B3B3B3CC' + id: MiniTileSteelInnerSe + decals: + 938: -43,-38 + - node: + color: '#B3B3B3CC' + id: MiniTileSteelInnerSw + decals: + 937: -43,-38 + - node: + color: '#B3B3B3CC' + id: MiniTileSteelLineE + decals: + 924: -43,-44 + 925: -43,-43 + 926: -43,-42 + 927: -43,-41 + 928: -43,-40 + 929: -43,-39 + 947: -41,-46 + - node: + color: '#B3B3B3CC' + id: MiniTileSteelLineN + decals: + 932: -44,-38 + 933: -43,-38 + 934: -42,-38 + 939: -44,-45 + 940: -42,-45 + - node: + color: '#B3B3B3CC' + id: MiniTileSteelLineS + decals: + 935: -44,-38 + 936: -42,-38 + - node: + color: '#B3B3B3CC' + id: MiniTileSteelLineW + decals: + 918: -43,-39 + 919: -43,-40 + 920: -43,-41 + 921: -43,-42 + 922: -43,-43 + 923: -43,-44 + 948: -45,-46 + - node: + color: '#999999CC' + id: MiniTileWhiteCornerNe + decals: + 3093: -11,-16 + 3128: 7,-17 + - node: + color: '#B3B3B37F' + id: MiniTileWhiteCornerNe + decals: + 5402: -8,-11 + 5406: -11,-13 + - node: + color: '#999999CC' + id: MiniTileWhiteCornerNw + decals: + 3084: -12,-13 + 3087: -9,-15 + 3088: -8,-14 + 3094: -12,-16 + 3131: 5,-17 + - node: + color: '#B3B3B37F' + id: MiniTileWhiteCornerNw + decals: + 5405: -9,-11 + - node: + color: '#999999CC' + id: MiniTileWhiteCornerSe + decals: + 3083: -8,-12 + 3089: -12,-11 + 3090: -11,-10 + 3129: 7,-19 + - node: + color: '#B3B3B37F' + id: MiniTileWhiteCornerSe + decals: + 5407: -11,-14 + - node: + color: '#999999CC' + id: MiniTileWhiteCornerSw + decals: + 3130: 5,-19 + - node: + color: '#B3B3B37F' + id: MiniTileWhiteCornerSw + decals: + 5403: -12,-14 + 5404: -9,-12 + - node: + color: '#999999CC' + id: MiniTileWhiteLineE + decals: + 3092: -11,-9 + 3133: 7,-18 + - node: + color: '#999999CC' + id: MiniTileWhiteLineN + decals: + 3085: -7,-14 + 3127: 6,-17 + 3135: -9,-9 + 3136: -8,-9 + 3137: -10,-9 + 3138: -7,-9 + - node: + color: '#999999CC' + id: MiniTileWhiteLineS + decals: + 3091: -13,-11 + 3132: 6,-19 + - node: + color: '#999999CC' + id: MiniTileWhiteLineW + decals: + 3086: -9,-16 + 3134: 5,-18 + - node: + cleanable: True + color: '#4E00008B' + id: Newton + decals: + 2309: -50,-41 + - node: + color: '#6B000079' + id: Osiron + decals: + 3278: 9,23 + 3279: 9,23 + - node: + cleanable: True + angle: 0.2617993877991494 rad + color: '#5200006B' + id: Psyke + decals: + 1941: -58,-17 + - node: + color: '#6B000079' + id: Psyke + decals: + 3276: 12,12 + 3277: 12,12 + - node: + color: '#446326CC' + id: QuarterTileOverlayGreyscale + decals: + 2824: -22,-4 + 2827: -21,-5 + 2828: -22,-5 + 2829: -22,-6 + 2830: -21,-6 + 2917: -20,-6 + 2920: -20,-5 + 2921: -20,-7 + 2922: -20,-8 + 2923: -20,-9 + 2924: -21,-10 + 2925: -20,-10 + 2926: -20,-11 + 2927: -20,-12 + 2928: -19,-12 + 2950: -19,-5 + 2951: -19,-6 + 2952: -19,-7 + 2953: -19,-8 + - node: + color: '#446326CC' + id: QuarterTileOverlayGreyscale180 + decals: + 2825: -22,-4 + 2826: -21,-5 + 2831: -22,-5 + 2832: -22,-6 + 2833: -21,-6 + 2907: -20,-6 + 2908: -20,-8 + 2909: -20,-9 + 2910: -20,-10 + 2911: -20,-11 + 2912: -20,-12 + 2913: -19,-12 + 2914: -21,-10 + 2915: -20,-5 + 2929: -20,-7 + 2946: -19,-8 + 2947: -19,-7 + 2948: -19,-6 + 2949: -19,-5 + - node: + color: '#FFFFFFFF' + id: Remains + decals: + 3275: 18,8 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 1200: -25.224575,23.196384 + 1211: -37.434036,18.932444 + 1217: 12,-23 + 1233: -17,-75 + 1235: -19,-60 + 1236: -20,-69 + 1252: -44,41 + 1256: -79,-13 + - node: + color: '#FFFFFFFF' + id: Rock07 + decals: + 1218: 14,-20 + 1234: -12,-76 + 1257: -73,-21 + 1258: -69,-18 + - node: + cleanable: True + color: '#48000063' + id: Sirius + decals: + 2764: -12,-50 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign1 + decals: + 692: 4,-1 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign2 + decals: + 693: 5,-1 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign3 + decals: + 694: 6,-1 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign4 + decals: + 697: 7,-1 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign5 + decals: + 698: 8,-1 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign6 + decals: + 699: 9,-1 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign7 + decals: + 701: 10,-1 + - node: + cleanable: True + color: '#52000089' + id: Tunnel + decals: + 1839: -54,-9 + - node: + color: '#334E6DCC' + id: WarnCornerGreyscaleNE + decals: + 1155: -90,-34 + 4522: -9,15 + - node: + color: '#52B4E9CC' + id: WarnCornerGreyscaleNE + decals: + 3733: -38,-10 + 3756: -27,-15 + 4059: 1,7 + - node: + color: '#9FED58CC' + id: WarnCornerGreyscaleNE + decals: + 4380: 19,16 + - node: + color: '#B3B3B3CC' + id: WarnCornerGreyscaleNE + decals: + 401: -1,19 + 4955: -7,-22 + - node: + color: '#BC863FCC' + id: WarnCornerGreyscaleNE + decals: + 1384: 10,-25 + 5305: 5,-30 + - node: + color: '#DE3A3ACC' + id: WarnCornerGreyscaleNE + decals: + 62: 1,4 + 3441: 6,20 + 3444: 8,7 + 4997: 7,23 + 5076: -81,-5 + 5497: 6,27 + 5501: 17,27 + - node: + color: '#EFB34196' + id: WarnCornerGreyscaleNE + decals: + 4702: -56,22 + - node: + color: '#EFB34199' + id: WarnCornerGreyscaleNE + decals: + 3639: -37,1 + 3684: -34,5 + - node: + color: '#F98AFFCC' + id: WarnCornerGreyscaleNE + decals: + 3789: -11,-45 + 3793: -14,-49 + 4415: -15,-52 + 4449: -15,-63 + - node: + color: '#334E6DCC' + id: WarnCornerGreyscaleNW + decals: + 4523: -19,15 + 4530: -13,5 + - node: + cleanable: True + color: '#52B4E996' + id: WarnCornerGreyscaleNW + decals: + 3722: -36,-10 + 3723: -36,-10 + - node: + color: '#52B4E9CC' + id: WarnCornerGreyscaleNW + decals: + 1285: -33,-9 + 3755: -29,-8 + - node: + color: '#9FED58CC' + id: WarnCornerGreyscaleNW + decals: + 613: -53,-20 + - node: + color: '#B3B3B3CC' + id: WarnCornerGreyscaleNW + decals: + 257: 12,1 + 2307: -51,1 + 5073: -82,5 + - node: + color: '#BC863FCC' + id: WarnCornerGreyscaleNW + decals: + 4342: 2,-26 + 4343: 3,-24 + 4475: -7,-38 + 5302: 2,-30 + 5304: 4,-30 + - node: + color: '#DE3A3ACC' + id: WarnCornerGreyscaleNW + decals: + 3440: 5,20 + 4072: 5,27 + 5077: -82,-5 + 5502: 16,27 + - node: + color: '#EFB34196' + id: WarnCornerGreyscaleNW + decals: + 4720: -54,22 + - node: + color: '#EFB34199' + id: WarnCornerGreyscaleNW + decals: + 3638: -38,1 + - node: + color: '#F98AFFCC' + id: WarnCornerGreyscaleNW + decals: + 3792: -17,-49 + 4414: -16,-52 + 4436: -17,-45 + 4439: -9,-70 + - node: + color: '#334E6DCC' + id: WarnCornerGreyscaleSE + decals: + 4433: -10,3 + 4521: -9,14 + 4565: -17,9 + - node: + color: '#52B4E9CC' + id: WarnCornerGreyscaleSE + decals: + 3729: -38,-12 + 3754: -27,-13 + - node: + color: '#9FED58CC' + id: WarnCornerGreyscaleSE + decals: + 4071: 16,-5 + - node: + color: '#B3B3B3CC' + id: WarnCornerGreyscaleSE + decals: + 681: -51,-3 + 984: -7,-27 + 3139: -2,-20 + - node: + color: '#BC863FCC' + id: WarnCornerGreyscaleSE + decals: + 1385: 10,-29 + 4474: -2,-39 + - node: + color: '#DE3A3ACC' + id: WarnCornerGreyscaleSE + decals: + 3998: -27,-22 + 4047: 8,6 + 4073: 1,-6 + 5495: 17,29 + - node: + color: '#EFB34196' + id: WarnCornerGreyscaleSE + decals: + 4623: -68,29 + 4624: -76,29 + 4625: -75,30 + 4703: -56,20 + - node: + color: '#EFB34199' + id: WarnCornerGreyscaleSE + decals: + 3641: -46,3 + 3653: -40,17 + 3654: -39,7 + - node: + color: '#F98AFFCC' + id: WarnCornerGreyscaleSE + decals: + 537: -17,-39 + 3773: -24,-44 + 4416: -15,-54 + 4437: -8,-68 + - node: + color: '#FA7500CC' + id: WarnCornerGreyscaleSE + decals: + 4595: -31,-7 + - node: + color: '#334E6DCC' + id: WarnCornerGreyscaleSW + decals: + 4524: -19,14 + - node: + color: '#52B4E9CC' + id: WarnCornerGreyscaleSW + decals: + 122: -29,-6 + 3476: -44,-8 + 3730: -36,-12 + 3758: -31,-17 + 3981: -49,-12 + - node: + color: '#9FED58CC' + id: WarnCornerGreyscaleSW + decals: + 168: -16,-3 + 4381: 16,13 + - node: + color: '#B3B3B3CC' + id: WarnCornerGreyscaleSW + decals: + 282: 10,-3 + 538: -34,-37 + - node: + color: '#BC863FCC' + id: WarnCornerGreyscaleSW + decals: + 4472: -4,-45 + - node: + color: '#DE3A3ACC' + id: WarnCornerGreyscaleSW + decals: + 3431: 4,22 + 3437: 5,25 + 3448: -30,-20 + 4048: 5,2 + 5075: -82,-3 + 5494: 16,29 + - node: + color: '#EFB34196' + id: WarnCornerGreyscaleSW + decals: + 4619: -70,29 + 4622: -78,29 + 4626: -71,30 + 4719: -54,20 + 5228: -32,9 + 5284: -42,17 + - node: + color: '#EFB34199' + id: WarnCornerGreyscaleSW + decals: + 3679: -40,3 + - node: + color: '#F98AFFCC' + id: WarnCornerGreyscaleSW + decals: + 3800: -17,-69 + 4418: -16,-54 + 4440: -9,-72 + - node: + color: '#334E6DCC' + id: WarnCornerSmallGreyscaleNE + decals: + 1090: -63,-34 + 1154: -91,-34 + - node: + color: '#639137CC' + id: WarnCornerSmallGreyscaleNE + decals: + 5196: -91,-36 + - node: + color: '#B3B3B3CC' + id: WarnCornerSmallGreyscaleNE + decals: + 887: -56,-21 + - node: + color: '#F98AFFCC' + id: WarnCornerSmallGreyscaleNE + decals: + 4459: -15,-67 + - node: + color: '#334E6DCC' + id: WarnCornerSmallGreyscaleNW + decals: + 1180: -94,-36 + - node: + color: '#B3B3B3CC' + id: WarnCornerSmallGreyscaleNW + decals: + 280: 12,0 + 2308: -51,0 + - node: + color: '#BC863FCC' + id: WarnCornerSmallGreyscaleNW + decals: + 1151: -91,-33 + - node: + color: '#DE3A3ACC' + id: WarnCornerSmallGreyscaleNW + decals: + 1086: -63,-34 + 5503: 16,26 + - node: + color: '#F98AFFCC' + id: WarnCornerSmallGreyscaleNW + decals: + 4460: -12,-67 + - node: + color: '#52B4E9CC' + id: WarnCornerSmallGreyscaleSE + decals: + 1082: -63,-36 + - node: + color: '#639137CC' + id: WarnCornerSmallGreyscaleSE + decals: + 5197: -91,-34 + - node: + color: '#9FED58CC' + id: WarnCornerSmallGreyscaleSE + decals: + 1153: -91,-36 + - node: + color: '#B3B3B3CC' + id: WarnCornerSmallGreyscaleSE + decals: + 451: -3,-20 + 682: -51,-2 + 888: -56,-21 + - node: + color: '#EFB34196' + id: WarnCornerSmallGreyscaleSE + decals: + 4628: -76,30 + - node: + color: '#334E6DCC' + id: WarnCornerSmallGreyscaleSW + decals: + 1181: -94,-34 + - node: + color: '#B3B3B3CC' + id: WarnCornerSmallGreyscaleSW + decals: + 281: 10,-2 + 539: -34,-36 + - node: + color: '#DE3A3ACC' + id: WarnCornerSmallGreyscaleSW + decals: + 1147: -91,-37 + 3449: -29,-20 + - node: + color: '#EFB34196' + id: WarnCornerSmallGreyscaleSW + decals: + 4627: -70,30 + - node: + color: '#F98AFFCC' + id: WarnCornerSmallGreyscaleSW + decals: + 1079: -63,-36 + - node: + color: '#334E6DCC' + id: WarnEndGreyscaleE + decals: + 4483: -27,14 + - node: + color: '#B3B3B3CC' + id: WarnEndGreyscaleE + decals: + 884: -55,-21 + - node: + color: '#DE3A3ACC' + id: WarnEndGreyscaleE + decals: + 4843: 10,32 + 4936: 1,10 + - node: + color: '#334E6DCC' + id: WarnEndGreyscaleN + decals: + 4525: -22,15 + 4528: -6,15 + - node: + color: '#B3B3B3CC' + id: WarnEndGreyscaleN + decals: + 379: 34,19 + 886: -56,-20 + - node: + color: '#DE3A3ACC' + id: WarnEndGreyscaleN + decals: + 3443: 3,4 + - node: + color: '#F98AFFCC' + id: WarnEndGreyscaleN + decals: + 4434: -17,-41 + - node: + color: '#334E6DCC' + id: WarnEndGreyscaleS + decals: + 4526: -22,14 + 4527: -6,14 + - node: + color: '#B3B3B3CC' + id: WarnEndGreyscaleS + decals: + 885: -56,-22 + - node: + color: '#DE3A3ACC' + id: WarnEndGreyscaleS + decals: + 3442: 3,2 + - node: + color: '#F98AFFCC' + id: WarnEndGreyscaleS + decals: + 4435: -17,-43 + - node: + color: '#334E6DCC' + id: WarnEndGreyscaleW + decals: + 4482: -28,14 + - node: + color: '#DE3A3ACC' + id: WarnEndGreyscaleW + decals: + 4043: 8,3 + 4842: 9,32 + 4935: 0,10 + - node: + color: '#334E6DCC' + id: WarnFullGreyscale + decals: + 1088: -62,-33 + 1112: -62,-35 + 1113: -63,-35 + 1114: -64,-35 + 1115: -65,-35 + 1116: -66,-33 + 1117: -66,-32 + 1118: -65,-32 + 1121: -66,-38 + 1122: -66,-37 + 1130: -90,-33 + 1171: -92,-35 + 1176: -95,-36 + 1177: -95,-34 + 1178: -95,-35 + 1262: -27,13 + 1489: -16,20 + 1490: -12,20 + 4429: -13,4 + 4430: -13,3 + 4431: -12,3 + 4432: -11,3 + 4480: -28,15 + 4481: -27,15 + 4497: -20,19 + 4498: -19,19 + 4499: -16,21 + 4500: -15,21 + 4501: -14,21 + 4502: -13,21 + 4503: -12,21 + 4504: -9,19 + 4505: -8,19 + 4507: -20,17 + 4508: -20,18 + 4543: -11,10 + 4544: -11,9 + 4545: -10,9 + 4546: -10,10 + 4547: -9,10 + 4590: -13,9 + 4591: -13,10 + - node: + color: '#446326CC' + id: WarnFullGreyscale + decals: + 2930: -18,-6 + 2931: -18,-5 + 2932: -18,-4 + 2933: -21,-12 + 2934: -21,-7 + 2935: -21,-8 + 2936: -21,-9 + 2937: -19,-9 + 2938: -19,-10 + 2939: -19,-11 + 2940: -21,-11 + 2941: -21,-4 + 2942: -20,-4 + 2943: -19,-4 + 2944: -18,-8 + 2945: -18,-7 + - node: + color: '#52B4E996' + id: WarnFullGreyscale + decals: + 4513: -11,21 + 4514: -10,21 + - node: + color: '#52B4E9CC' + id: WarnFullGreyscale + decals: + 1080: -62,-37 + 1133: -90,-32 + 1282: -27,-11 + 1283: -28,-11 + 1284: -29,-11 + 1286: -29,-12 + 1300: -42,-15 + 1301: -42,-14 + 1302: -44,-14 + 1303: -44,-15 + 1329: -46,-14 + 1330: -46,-16 + 1331: -46,-16 + 1339: -48,-14 + 1340: -48,-16 + 3454: -31,-23 + 3455: -31,-22 + 3456: -36,-15 + 3457: -36,-17 + 3458: -36,-16 + 3459: -35,-17 + 3461: -40,-17 + 3462: -40,-16 + 3472: -43,-17 + 3473: -49,-10 + 3474: -32,-19 + 3478: -42,-8 + 3696: -40,-7 + 3697: -40,-8 + 3698: -38,-7 + 3699: -38,-8 + 3707: -28,-17 + 3708: -29,-17 + 3709: -30,-15 + 3807: -36,-21 + 3808: -36,-20 + 3809: -36,-19 + 3810: -36,-18 + 3811: -36,-23 + 3977: -40,-4 + 3978: -39,-4 + 3979: -38,-4 + 3984: -47,-8 + 3985: -46,-8 + 3991: -38,-17 + 3992: -38,-16 + 3993: -38,-15 + 3994: -38,-14 + - node: + color: '#639137CC' + id: WarnFullGreyscale + decals: + 1070: -64,-38 + 1142: -93,-38 + - node: + color: '#999999CC' + id: WarnFullGreyscale + decals: + 3095: -11,-4 + - node: + color: '#9FED58CC' + id: WarnFullGreyscale + decals: + 1073: -62,-38 + 1139: -90,-37 + 4063: 13,-7 + 4064: 14,-7 + 4065: 15,-7 + 4066: 13,-4 + 4377: 17,16 + 4378: 18,13 + 4379: 19,14 + 4385: 16,15 + - node: + color: '#B3B3B3CC' + id: WarnFullGreyscale + decals: + 125: -7,1 + 126: -8,1 + 127: -19,1 + 128: -20,1 + 129: -21,1 + 134: -24,19 + 135: -23,19 + 136: -22,19 + 137: -22,18 + 255: 14,1 + 256: 13,1 + 266: 15,1 + 542: -29,-37 + 543: -30,-37 + 544: -31,-37 + 545: -33,-37 + 546: -32,-37 + 558: -13,-37 + 559: -12,-37 + 560: -10,-37 + 561: -10,-37 + 562: -11,-37 + 563: -9,-37 + 645: -50,1 + 1030: -18,-30 + 1058: -8,-28 + 1059: -7,-28 + 1060: -7,-21 + 1061: -8,-21 + 3406: -16,-16 + 3407: -17,-16 + 3408: -18,-16 + 3409: -19,-16 + 3410: -20,-16 + 3411: -21,-16 + 3412: -18,-14 + 4388: 7,-20 + 4389: 8,-20 + 4390: 8,-19 + 4391: 8,-18 + 4392: 8,-17 + 4422: 1,-10 + 4423: 0,-10 + 4424: -1,-10 + 5030: -67,-3 + 5031: -66,-3 + 5416: -17,-29 + 5417: -16,-29 + - node: + color: '#BC863FCC' + id: WarnFullGreyscale + decals: + 1095: -62,-32 + 1128: -92,-32 + 4336: 2,-33 + 4337: 3,-33 + 4338: 7,-29 + 4339: 10,-27 + 4340: 2,-28 + 4341: 3,-28 + 4345: 3,-30 + 4462: -3,-45 + 4463: -7,-42 + 4464: -7,-40 + 4465: -7,-41 + 4466: -6,-38 + 4467: -5,-42 + - node: + color: '#D69949FF' + id: WarnFullGreyscale + decals: + 1: 10,-31 + 2: 10,-32 + 3: 10,-33 + 4: 10,-34 + 5: 7,-34 + 6: 7,-33 + 7: 7,-32 + 8: 7,-31 + - node: + color: '#DE3A3A96' + id: WarnFullGreyscale + decals: + 4511: -8,18 + 4512: -8,17 + - node: + color: '#DE3A3ACC' + id: WarnFullGreyscale + decals: + 848: -57,-42 + 907: 3,-10 + 908: 3,-9 + 909: 1,-4 + 1084: -64,-33 + 1148: -92,-38 + 1346: -26,-19 + 1347: -26,-20 + 1353: 8,4 + 3415: 5,11 + 3416: 5,12 + 3417: 7,12 + 3418: 7,11 + 3419: 9,11 + 3420: 9,12 + 3445: 5,9 + 3446: 5,8 + 3450: -29,-19 + 3451: -30,-19 + 3452: -27,-21 + 3453: -27,-19 + 4406: 1,20 + 4407: 1,19 + 4408: 2,19 + 4943: 0,15 + 4944: 0,14 + 4998: 9,19 + 4999: 9,20 + 5000: 10,20 + 5001: 9,15 + 5002: 9,14 + 5003: 10,14 + 5079: -82,-8 + 5426: 0,32 + 5427: 0,33 + 5428: 0,34 + 5429: 1,34 + 5465: 4,34 + 5477: 17,34 + 5478: 18,29 + 5479: 19,31 + 5480: 18,31 + 5481: 12,29 + 5482: 12,30 + - node: + color: '#DE3A3AFF' + id: WarnFullGreyscale + decals: + 4393: -59,-42 + 4394: -60,-42 + - node: + color: '#EFB34196' + id: WarnFullGreyscale + decals: + 4509: -18,21 + 4510: -17,21 + 4598: -68,28 + 4599: -69,28 + 4639: -69,31 + 4640: -77,31 + 4654: -73,33 + 4655: -73,34 + 4656: -73,32 + 4661: -74,24 + 4662: -72,24 + 4663: -73,24 + 4664: -74,25 + 4665: -74,26 + 4711: -46,22 + 4712: -47,22 + 4713: -40,21 + 4714: -40,21 + 4715: -40,22 + 4716: -41,22 + 4717: -42,22 + 4718: -44,19 + 5221: -43,4 + 5225: -44,4 + 5226: -42,4 + 5253: -38,15 + 5254: -34,15 + - node: + color: '#EFB34199' + id: WarnFullGreyscale + decals: + 3551: -42,6 + 3552: -43,6 + 3559: -34,3 + 3560: -35,3 + 3562: -35,5 + 3563: -36,5 + 3564: -37,5 + 3565: -38,5 + 3566: -40,4 + 3577: -48,13 + 3580: -42,13 + 3581: -42,12 + 3582: -40,13 + 3583: -40,12 + 3588: -53,2 + 3589: -53,3 + 3590: -53,4 + 3591: -55,4 + 3592: -55,3 + 3593: -55,2 + 3594: -53,6 + 3595: -55,6 + 3596: -46,2 + 3597: -48,2 + 3610: -37,7 + 3611: -36,7 + 3612: -35,7 + 3613: -34,7 + 3693: -31,5 + - node: + color: '#F98AFFCC' + id: WarnFullGreyscale + decals: + 1076: -64,-37 + 1136: -90,-38 + 1424: -14,-54 + 1425: -17,-52 + 1456: -21,-64 + 1457: -20,-64 + 1458: -19,-64 + 1459: -19,-63 + 1460: -20,-63 + 1461: -21,-63 + 3774: -27,-43 + 3775: -27,-42 + 3776: -22,-42 + 3777: -22,-41 + 3778: -19,-44 + 3779: -19,-45 + 3780: -22,-46 + 3781: -22,-47 + 3783: -19,-41 + 3784: -19,-42 + 3785: -13,-45 + 3786: -12,-47 + 3787: -11,-47 + 3801: -19,-67 + 3802: -20,-67 + 3803: -21,-67 + 3812: -12,-60 + 3813: -8,-66 + 3814: -9,-66 + 3815: -10,-66 + 3816: -12,-69 + 3817: -16,-69 + 4988: -14,-69 + - node: + color: '#FA750096' + id: WarnFullGreyscale + decals: + 3710: -36,-4 + 3711: -36,-5 + 3712: -36,-6 + 3713: -35,-8 + 3714: -33,-4 + - node: + color: '#FA7500CC' + id: WarnFullGreyscale + decals: + 5201: -31,-6 + - node: + color: '#FF982199' + id: WarnFullGreyscale + decals: + 5083: -84,-7 + 5084: -84,-8 + 5085: -83,-8 + 5086: -83,-7 + - node: + color: '#FF9821CC' + id: WarnFullGreyscale + decals: + 1092: -64,-32 + 1124: -93,-32 + - node: + color: '#334E6DCC' + id: WarnLineGreyscaleE + decals: + 111: -24,14 + 239: -24,15 + 1089: -63,-33 + 1131: -91,-33 + 1156: -90,-36 + 1198: -87,-33 + 1199: -87,-37 + 1496: -10,4 + 4484: -30,14 + 4548: -15,11 + - node: + color: '#52B4E9CC' + id: WarnLineGreyscaleE + decals: + 1081: -63,-37 + 1134: -91,-32 + 3460: -32,-20 + 3782: -33,-17 + - node: + color: '#639137CC' + id: WarnLineGreyscaleE + decals: + 5195: -91,-35 + - node: + color: '#9FED58CC' + id: WarnLineGreyscaleE + decals: + 169: -24,-6 + 170: -24,-5 + 171: -24,-4 + 172: -23,-10 + 173: -23,-15 + 591: -52,-21 + 592: -52,-25 + 593: -52,-31 + 1074: -63,-38 + 1140: -91,-37 + - node: + color: '#B3B3B3CC' + id: WarnLineGreyscaleE + decals: + 110: -24,12 + 373: 22,13 + 374: 22,6 + 375: 35,4 + 376: 35,5 + 377: 35,13 + 378: 35,14 + 404: -23,-24 + 405: -23,-25 + 982: -7,-24 + 983: -7,-25 + 1026: -15,-21 + 1027: -15,-28 + 1028: -21,-25 + 1029: -21,-24 + 3140: -3,-17 + 3141: -3,-16 + 3142: -3,-15 + 3143: -3,-14 + 3144: -3,-13 + 3145: -3,-12 + 3146: -3,-9 + - node: + color: '#BC863FCC' + id: WarnLineGreyscaleE + decals: + 642: -3,-35 + 1096: -63,-32 + 1376: 0,-31 + 1377: 0,-30 + 1378: 0,-27 + 1379: 0,-26 + 1386: 10,-28 + 1387: 10,-26 + - node: + color: '#DE3A3ACC' + id: WarnLineGreyscaleE + decals: + 63: 1,2 + 722: 6,17 + 1349: 5,10 + 4405: 3,18 + 4925: 1,8 + 4945: 1,14 + 5488: 17,33 + 5496: 17,30 + - node: + color: '#EFB34196' + id: WarnLineGreyscaleE + decals: + 4635: -71,36 + 4657: -71,25 + 4674: -64,25 + 4710: -46,21 + 5222: -42,3 + 5229: -27,10 + - node: + color: '#EFB34199' + id: WarnLineGreyscaleE + decals: + 3643: -39,9 + 3648: -34,9 + - node: + color: '#F98AFFCC' + id: WarnLineGreyscaleE + decals: + 1137: -91,-38 + 1407: -11,-46 + 1412: -17,-42 + 1417: -24,-43 + 1451: -11,-60 + 1452: -11,-63 + 1453: -11,-64 + 1455: -19,-65 + 3791: -19,-46 + 4442: -11,-72 + 4443: -11,-71 + 4446: -15,-72 + 4447: -15,-71 + 4450: -15,-64 + 4451: -15,-65 + 4452: -15,-66 + 5164: -11,-62 + - node: + color: '#FA7500CC' + id: WarnLineGreyscaleE + decals: + 4597: -31,-5 + - node: + color: '#334E6DCC' + id: WarnLineGreyscaleN + decals: + 58: -10,0 + 59: -14,0 + 680: -76,3 + 1464: -15,15 + 1465: -13,15 + 1497: -11,5 + 4531: -11,12 + 4532: -10,12 + - node: + color: '#52B4E9CC' + id: WarnLineGreyscaleN + decals: + 1288: -31,-9 + 1289: -28,-8 + 1296: -34,-14 + 1297: -35,-14 + 1298: -39,-14 + 1321: -39,-10 + 1322: -44,-10 + 1323: -48,-10 + 1341: -47,-14 + 3477: -43,-7 + - node: + color: '#639137CC' + id: WarnLineGreyscaleN + decals: + 5193: -90,-36 + - node: + color: '#9FED58CC' + id: WarnLineGreyscaleN + decals: + 176: -29,-34 + 4068: 14,-4 + - node: + color: '#B3B3B3CC' + id: WarnLineGreyscaleN + decals: + 87: -7,0 + 88: -8,0 + 89: -18,0 + 90: -19,0 + 91: -20,0 + 92: -21,0 + 210: -6,0 + 211: -22,0 + 212: -16,0 + 265: 18,0 + 564: -34,-34 + 575: -43,-34 + 576: -59,-34 + 668: -65,0 + 4972: -8,-22 + 5035: -68,0 + 5036: -66,0 + 5037: -66,0 + 5038: -67,0 + - node: + color: '#BC863FCC' + id: WarnLineGreyscaleN + decals: + 1127: -92,-33 + 1382: 7,-25 + 4477: -5,-38 + 5300: 8,-31 + 5301: 9,-31 + - node: + color: '#DE3A3ACC' + id: WarnLineGreyscaleN + decals: + 917: 0,-4 + 3433: 5,23 + 3434: 6,23 + 4399: -58,-38 + 4833: 2,30 + 4834: 9,30 + 4835: 6,30 + 5474: 19,34 + 5499: 9,27 + 5500: 13,26 + - node: + color: '#EFB34196' + id: WarnLineGreyscaleN + decals: + 4629: -73,30 + 4658: -73,26 + 4705: -51,22 + 4706: -49,22 + 4708: -41,18 + - node: + color: '#EFB34199' + id: WarnLineGreyscaleN + decals: + 3619: -54,0 + 3640: -43,0 + 3644: -41,10 + 3645: -46,9 + 3646: -41,15 + 3650: -36,10 + 3680: -39,5 + - node: + color: '#F98AFFCC' + id: WarnLineGreyscaleN + decals: + 1404: -21,-41 + 1406: -14,-45 + 1418: -25,-42 + 1419: -26,-42 + 1422: -15,-49 + 1423: -16,-49 + 1436: -15,-60 + 1437: -16,-60 + 1438: -16,-63 + 1450: -8,-70 + 4457: -13,-67 + 4458: -14,-67 + - node: + color: '#FF9821CC' + id: WarnLineGreyscaleN + decals: + 1125: -93,-33 + - node: + color: '#334E6DCC' + id: WarnLineGreyscaleS + decals: + 831: -56,-2 + 1462: -10,14 + 1463: -11,14 + 1466: -15,17 + 1467: -13,17 + 4535: -11,7 + - node: + color: '#52B4E9CC' + id: WarnLineGreyscaleS + decals: + 121: -28,-6 + 1299: -39,-17 + 1318: -43,-12 + 1319: -39,-12 + 1320: -47,-12 + 1328: -39,-8 + 3720: -43,-5 + 3731: -35,-12 + 3732: -34,-12 + 3900: -33,-23 + 3982: -48,-8 + - node: + color: '#639137CC' + id: WarnLineGreyscaleS + decals: + 1143: -93,-37 + 5194: -90,-34 + - node: + color: '#9FED58CC' + id: WarnLineGreyscaleS + decals: + 174: -44,-36 + 175: -42,-36 + 1067: 14,-2 + 1152: -90,-36 + - node: + color: '#B3B3B3CC' + id: WarnLineGreyscaleS + decals: + 552: -15,-36 + 553: -13,-36 + 554: -12,-36 + 555: -11,-36 + 556: -10,-36 + 557: -9,-36 + 586: -50,-36 + 669: -63,-2 + 670: -60,-2 + 677: -49,-2 + 678: -47,-2 + 679: -46,-2 + 985: -8,-27 + 5028: -66,-2 + 5029: -67,-2 + 5090: -73,-2 + - node: + color: '#BC863FCC' + id: WarnLineGreyscaleS + decals: + 640: -7,-36 + 641: -5,-36 + 1380: 4,-28 + 1381: 5,-28 + 1389: 8,-29 + 1390: 9,-29 + 5298: 9,-34 + 5299: 8,-34 + - node: + color: '#DE3A3ACC' + id: WarnLineGreyscaleS + decals: + 77: 0,-2 + 78: 4,-2 + 79: 7,-2 + 845: -58,-36 + 1145: -92,-37 + 3422: 8,9 + 3435: 5,22 + 3436: 6,22 + 4831: 6,29 + 4832: 5,29 + 5074: -81,-3 + 5430: 2,32 + 5498: 6,25 + - node: + color: '#EFB34196' + id: WarnLineGreyscaleS + decals: + 4620: -69,29 + 4621: -77,29 + 4672: -73,28 + 4704: -57,20 + 4707: -41,20 + 5223: -43,2 + 5227: -36,12 + - node: + color: '#EFB34199' + id: WarnLineGreyscaleS + decals: + 3642: -47,6 + 3647: -41,12 + 3651: -46,11 + 3652: -41,17 + 3685: -37,3 + 3686: -38,3 + - node: + color: '#F98AFFCC' + id: WarnLineGreyscaleS + decals: + 534: -27,-36 + 535: -26,-36 + 536: -21,-39 + 1408: -15,-47 + 1409: -16,-47 + 1434: -16,-61 + 1435: -15,-61 + 4438: -9,-68 + 5368: -16,-50 + 5369: -15,-50 + - node: + color: '#FA7500CC' + id: WarnLineGreyscaleS + decals: + 4596: -33,-7 + - node: + color: '#334E6DCC' + id: WarnLineGreyscaleW + decals: + 50: -4,14 + 202: -4,15 + 970: -60,-34 + 971: -60,-36 + 1157: -91,-35 + 1179: -94,-35 + 1182: -88,-36 + 1183: -88,-34 + 1263: -25,14 + 4533: -13,8 + 4534: -13,11 + 4549: -8,4 + - node: + color: '#52B4E9CC' + id: WarnLineGreyscaleW + decals: + 460: -29,-5 + - node: + color: '#639137CC' + id: WarnLineGreyscaleW + decals: + 1071: -63,-38 + - node: + color: '#9FED58CC' + id: WarnLineGreyscaleW + decals: + 381: 21,16 + 589: -53,-30 + 590: -53,-26 + 882: -53,-21 + 4067: 13,-6 + - node: + color: '#B3B3B3CC' + id: WarnLineGreyscaleW + decals: + 109: -25,7 + 231: -28,18 + 371: 34,6 + 372: 34,13 + 380: 20,19 + 402: -5,-24 + 403: -5,-25 + 452: -25,-25 + 889: -56,-21 + 1010: -13,-21 + 1011: -13,-28 + 1022: -21,-24 + 1023: -21,-25 + 1024: -19,-24 + 1025: -19,-25 + 3097: -5,-11 + 3098: -5,-10 + 3120: -4,-7 + 3121: -4,-6 + 3122: -4,-5 + 4038: -4,-4 + 4425: -1,-9 + 5072: -82,3 + - node: + color: '#BC863FCC' + id: WarnLineGreyscaleW + decals: + 1150: -91,-32 + 1383: 2,-27 + 4473: -4,-44 + 4476: -7,-39 + 5303: 2,-31 + - node: + color: '#DE3A3ACC' + id: WarnLineGreyscaleW + decals: + 457: -25,-22 + 458: -25,-20 + 459: -25,-19 + 712: 5,18 + 721: 3,7 + 1085: -63,-33 + 1146: -91,-38 + 1350: 7,10 + 3430: 8,17 + 4049: 5,4 + 4937: 3,14 + 5078: -82,-7 + - node: + color: '#EFB34196' + id: WarnLineGreyscaleW + decals: + 4636: -75,36 + 4673: -69,25 + 4701: -62,25 + 4709: -44,21 + 5224: -44,3 + 5283: -48,8 + - node: + color: '#EFB34199' + id: WarnLineGreyscaleW + decals: + 3649: -37,9 + 3678: -25,10 + 3687: -32,5 + - node: + color: '#F98AFFCC' + id: WarnLineGreyscaleW + decals: + 1077: -63,-37 + 1402: -22,-44 + 1403: -22,-43 + 1405: -17,-46 + 1416: -27,-44 + 1454: -17,-65 + 4441: -9,-71 + 4444: -13,-72 + 4445: -13,-71 + 4453: -12,-64 + 4454: -12,-66 + 4455: -12,-63 + 4456: -12,-65 + 5165: -12,-61 + - node: + color: '#FF9821CC' + id: WarnLineGreyscaleW + decals: + 1093: -63,-32 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 775: -56,-4 + 776: -56,-5 + 777: -56,-6 + 778: -56,-7 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinBox + decals: + 981: 8,-10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 842: -46,-4 + 849: 8,-4 + 952: -37,-45 + 959: -36,-38 + 978: -29,-28 + 3110: -12,-4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 841: -49,-4 + 850: 3,-4 + 949: -39,-45 + 958: -39,-38 + 979: -32,-28 + 2310: -54,-41 + 3109: -13,-4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 839: -46,-5 + 950: -37,-47 + 957: -36,-39 + 2311: -52,-43 + 3115: -12,-7 + 4285: -29,-30 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 840: -49,-5 + 896: 3,-8 + 951: -39,-47 + 960: -39,-39 + 980: -32,-30 + 2313: -54,-43 + 3116: -13,-7 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndS + decals: + 895: 4,-10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 906: 6,-7 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 905: 5,-7 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 879: 6,-4 + 900: 4,-8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 880: 5,-4 + 898: 7,-8 + 899: 4,-8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 851: 8,-9 + 852: 8,-8 + 853: 8,-7 + 854: 8,-6 + 855: 8,-5 + 868: 4,-9 + 875: 6,-6 + 876: 6,-5 + 954: -37,-46 + 974: -29,-29 + 2312: -52,-42 + 3111: -12,-5 + 3112: -12,-6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 832: -46,-3 + 833: -47,-3 + 834: -48,-3 + 835: -49,-3 + 836: -49,-4 + 837: -48,-4 + 838: -47,-4 + 856: 7,-4 + 857: 6,-4 + 858: 5,-4 + 859: 4,-4 + 869: 3,-7 + 874: 8,-7 + 903: 7,-7 + 904: 4,-7 + 955: -38,-45 + 963: -38,-38 + 964: -37,-38 + 975: -31,-28 + 977: -30,-28 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 843: -47,-5 + 844: -48,-5 + 863: 5,-10 + 864: 7,-10 + 865: 6,-10 + 872: 4,-4 + 873: 3,-4 + 877: 7,-4 + 878: 8,-4 + 881: 4,-17 + 901: 5,-8 + 902: 6,-8 + 956: -38,-47 + 961: -38,-39 + 962: -37,-39 + 972: -31,-30 + 973: -30,-30 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 860: 3,-5 + 861: 3,-6 + 862: 3,-7 + 866: 7,-9 + 867: 7,-10 + 870: 5,-6 + 871: 5,-5 + 897: 4,-9 + 953: -39,-46 + 976: -32,-29 + 1494: -14,8 + 3113: -13,-5 + 3114: -13,-6 + - node: + angle: 1.5707963267948966 rad + color: '#80808099' + id: arrow + decals: + 4000: -76,-6 + - node: + zIndex: 10 + color: '#B7818651' + id: arrow + decals: + 4580: -32.95286,17.61088 + - node: + cleanable: True + color: '#48000063' + id: biohazard + decals: + 2760: -21.006418,-49.984905 + - node: + cleanable: True + color: '#AAB3B47C' + id: body + decals: + 2410: -50.965786,-44.850903 + - node: + cleanable: True + angle: 0.7853981633974483 rad + color: '#AAB3B47C' + id: body + decals: + 2408: -55.01266,-42.100903 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#AAB3B47C' + id: body + decals: + 2409: -53.41891,-38.100903 + - node: + cleanable: True + angle: 0.17453292519943295 rad + color: '#E4DCE0BF' + id: body + decals: + 2031: -55.350708,-8.884533 + - node: + cleanable: True + zIndex: 10 + color: '#B7818651' + id: bottle + decals: + 4583: -15.202014,-6.9944453 + - node: + cleanable: True + angle: -0.2617993877991494 rad + color: '#E40000BF' + id: bottle + decals: + 2032: -49.672386,-9.452461 + - node: + zIndex: 10 + color: '#B7818651' + id: carp + decals: + 4571: 1.0282984,-38.051735 + - node: + zIndex: 10 + color: '#B7818651' + id: clown + decals: + 4570: 0.012550831,-18.999561 + - node: + cleanable: True + color: '#5600006B' + id: cyka + decals: + 1982: -75,-7 + - node: + cleanable: True + color: '#56000084' + id: cyka + decals: + 1983: -75,-7 + - node: + cleanable: True + color: '#690000C3' + id: cyka + decals: + 2611: -42,-49 + - node: + zIndex: 10 + color: '#B7818651' + id: cyka + decals: + 4579: -36.988064,-25.359404 + - node: + cleanable: True + angle: 0.2617993877991494 rad + color: '#C1AAAC6D' + id: disk + decals: + 2156: -34.034637,-26.040276 + - node: + cleanable: True + color: '#630000B6' + id: end + decals: + 2216: -46,-25 + - node: + zIndex: 10 + color: '#B7818651' + id: face + decals: + 4569: 10.266987,-23.21018 + - node: + cleanable: True + angle: -0.2617993877991494 rad + color: '#C1B3BDBF' + id: face + decals: + 2033: -51.984886,-4.9993362 + - node: + cleanable: True + color: '#82757C63' + id: firedanger + decals: + 2624: -49,-48 + - node: + color: '#6B0000C0' + id: guy + decals: + 3280: 12.990083,20.413334 + - node: + zIndex: 10 + color: '#B7818651' + id: guy + decals: + 4568: 9.042798,-12.986315 + - node: + cleanable: True + angle: -0.17453292519943295 rad + color: '#C1AAAC6D' + id: peace + decals: + 2160: -39,-21 + - node: + cleanable: True + color: '#C1B3BDBF' + id: plus + decals: + 2034: -46.21617,-17.882368 + 2035: -45.981796,-17.866743 + 2036: -45.794296,-17.835493 + - node: + cleanable: True + angle: 0.6981317007977318 rad + color: '#C1AAAC6D' + id: questionmark + decals: + 2159: -29,-26 + - node: + cleanable: True + color: '#C1AAAC6D' + id: radiation + decals: + 2157: -46,-21 + - node: + cleanable: True + color: '#847F7CA0' + id: shop + decals: + 2916: 1,-36 + 2918: 1,-36 + 2919: 1,-36 + - node: + angle: 1.5707963267948966 rad + color: '#80808099' + id: skull + decals: + 4001: -75,-6 + - node: + zIndex: 10 + color: '#B7818651' + id: skull + decals: + 4581: -32.938114,16.991411 + - node: + zIndex: 10 + color: '#B7BCB051' + id: skull + decals: + 4566: 14,14 + - node: + cleanable: True + angle: -0.4886921905584123 rad + color: '#B8B9B88A' + id: skull + decals: + 1837: -66,-7 + - node: + cleanable: True + color: '#C1AAAC6D' + id: skull + decals: + 2158: -39,-26 + - node: + zIndex: 10 + color: '#B7818651' + id: snake + decals: + 4567: 11,10 + - node: + cleanable: True + color: '#484F45A1' + id: space + decals: + 2765: -14,-41 + 2766: -14,-41 + 2767: -14,-41 + 2768: -14,-41 + - node: + cleanable: True + color: '#4E000063' + id: splatter + decals: + 2377: -55.465786,-42.632153 + 2378: -55.340786,-42.350903 + 2379: -55.41891,-41.850903 + 2380: -55.41891,-41.850903 + 2381: -55.41891,-41.897778 + 2382: -55.45016,-42.163403 + 2383: -55.38766,-42.257153 + 2384: -55.38766,-42.257153 + 2385: -55.653286,-42.132153 + 2386: -55.184536,-42.491528 + 2387: -53.85641,-37.694653 + 2388: -53.715786,-37.679028 + 2389: -53.66891,-37.710278 + 2390: -53.66891,-37.804028 + 2391: -53.79391,-37.929028 + 2392: -53.88766,-38.022778 + 2393: -53.60641,-38.210278 + 2394: -53.32516,-37.694653 + 2395: -53.29391,-37.647778 + 2396: -53.559536,-37.710278 + 2397: -53.434536,-37.741528 + 2398: -53.01266,-37.475903 + 2399: -51.153286,-45.350903 + 2400: -51.090786,-45.350903 + 2401: -50.872036,-45.210278 + 2402: -50.73141,-45.022778 + 2403: -50.622036,-44.725903 + 2404: -50.903286,-45.397778 + 2405: -50.840786,-45.413403 + 2406: -50.66891,-45.319653 + 2407: -50.465786,-45.163403 + - node: + cleanable: True + color: '#51000059' + id: splatter + decals: + 1811: -55.37182,-8.443881 + 1812: -55.17043,-8.478603 + 1813: -55.05932,-8.499436 + - node: + cleanable: True + color: '#6300006D' + id: splatter + decals: + 2161: -40.830013,-25.449554 + 2162: -40.830013,-25.43393 + 2163: -40.830013,-25.355804 + 2164: -40.923763,-24.730804 + 2165: -41.09564,-24.668304 + 2166: -41.15814,-24.77768 + 2167: -41.15814,-25.043304 + 2168: -41.048763,-25.21518 + 2169: -41.78314,-25.27768 + 2170: -41.736263,-25.387054 + 2171: -41.173763,-25.480804 + 2172: -41.173763,-25.480804 + 2173: -41.236263,-25.324554 + 2174: -41.236263,-25.199554 + 2175: -40.84564,-25.12143 + 2176: -40.84564,-24.90268 + 2177: -40.81439,-24.90268 + 2178: -40.705013,-25.199554 + 2179: -40.62689,-25.34018 + 2180: -40.56439,-25.418304 + 2181: -40.580013,-24.96518 + 2182: -40.580013,-24.62143 + 2183: -40.580013,-24.52768 + 2184: -40.517513,-24.168304 + 2185: -40.56439,-25.355804 + 2186: -40.580013,-25.62143 + 2187: -40.611263,-25.730804 + 2188: -40.611263,-25.793304 + 2189: -40.62689,-25.80893 + 2190: -40.81439,-25.71518 + 2191: -40.81439,-25.71518 + - node: + cleanable: True + color: '#6F380070' + id: splatter + decals: + 4292: -46,-32 + 4293: -46,-32 + - node: + cleanable: True + color: '#8C4F0070' + id: splatter + decals: + 4290: -46,-32 + - node: + cleanable: True + color: '#96380070' + id: splatter + decals: + 4291: -46,-32 + - node: + cleanable: True + color: '#A60D0059' + id: splatter + decals: + 1810: -55.40654,-8.423048 + - node: + cleanable: True + zIndex: 10 + color: '#B7818651' + id: stickman + decals: + 4582: -15.003123,3.0394628 + - type: RadiationGridResistance + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 48959 + 0,-1: + 0: 65307 + -1,0: + 0: 65471 + 0,1: + 0: 64271 + -1,1: + 0: 47935 + 0,2: + 0: 65528 + -1,2: + 0: 48051 + 0,3: + 0: 49080 + -1,3: + 0: 48051 + 1,0: + 0: 59151 + 1,1: + 0: 65383 + 1,2: + 0: 49075 + 1,3: + 0: 30491 + 1,-1: + 0: 65439 + 1,4: + 0: 28654 + 2,0: + 0: 30479 + 2,1: + 0: 22279 + 2,2: + 0: 15133 + 2,3: + 0: 58891 + 2,-1: + 0: 65477 + 2,4: + 0: 61166 + 3,0: + 0: 61951 + 3,1: + 0: 39864 + 3,2: + 0: 12159 + 3,-1: + 0: 65358 + 3,3: + 0: 17478 + 3,4: + 0: 17476 + 4,0: + 0: 65103 + 4,2: + 0: 57294 + 4,3: + 0: 65521 + 4,-1: + 0: 65289 + 4,1: + 0: 3822 + 4,4: + 0: 50959 + 5,0: + 0: 26223 + 5,-1: + 0: 65280 + 5,1: + 0: 28262 + 5,2: + 0: 26214 + 5,3: + 0: 26342 + 5,4: + 0: 30567 + 6,0: + 0: 15 + 6,-1: + 0: 65280 + 7,0: + 0: 15 + 7,-1: + 0: 65280 + 8,0: + 0: 52431 + 0,-4: + 0: 65535 + 0,-5: + 0: 61695 + -1,-4: + 0: 65535 + 0,-3: + 0: 47887 + -1,-3: + 0: 64319 + 0,-2: + 0: 49035 + -1,-2: + 0: 47931 + -1,-1: + 0: 65339 + 1,-4: + 0: 63208 + 1,-3: + 0: 65294 + 1,-2: + 0: 65535 + 1,-5: + 0: 65262 + 2,-4: + 0: 61556 + 2,-3: + 0: 62927 + 2,-2: + 0: 56797 + 2,-5: + 0: 21845 + 3,-3: + 0: 24815 + 3,-2: + 0: 61408 + 3,-4: + 0: 57344 + 1: 8 + 4,-4: + 1: 61183 + 4,-3: + 0: 1 + 1: 1646 + 4,-2: + 0: 37120 + 5,-4: + 1: 17663 + 0: 43520 + 5,-3: + 0: 43690 + 1: 17476 + 5,-2: + 0: 2730 + 1: 1092 + 5,-5: + 1: 20224 + 6,-4: + 1: 17663 + 0: 43520 + 6,-3: + 0: 43690 + 1: 17476 + 6,-2: + 0: 2730 + 1: 1092 + 6,-5: + 1: 20224 + 7,-4: + 1: 17663 + 0: 43520 + 7,-3: + 0: 43690 + 1: 17476 + 7,-2: + 0: 2730 + 1: 1092 + 7,-5: + 1: 20224 + 8,-4: + 1: 17663 + 0: 43520 + 8,-1: + 0: 65280 + 8,1: + 0: 52940 + 8,2: + 0: 52428 + 8,3: + 0: 52460 + 8,4: + 0: 17476 + 9,1: + 0: 1791 + 9,3: + 0: 28662 + 9,-1: + 0: 4096 + 9,0: + 1: 224 + 0: 24576 + 9,2: + 1: 3630 + 8,-3: + 0: 43690 + 1: 17476 + 8,-2: + 0: 2730 + 1: 1092 + 8,-5: + 1: 20224 + 9,-4: + 1: 17509 + 0: 16 + 9,-5: + 1: 18176 + 9,-3: + 1: 17476 + 9,-2: + 1: 1092 + 4,5: + 0: 1799 + 3,5: + 0: 30540 + 4,6: + 0: 13104 + 3,6: + 0: 12272 + 4,7: + 0: 65523 + 4,8: + 0: 35827 + 5,5: + 0: 1799 + 1: 4096 + 5,7: + 0: 4368 + 8,5: + 0: 1092 + 9,4: + 1: 5104 + 9,5: + 1: 1 + -4,0: + 0: 45535 + -4,-1: + 0: 65337 + -5,0: + 0: 28799 + -4,1: + 0: 41723 + -5,1: + 0: 58895 + -4,2: + 0: 64398 + -5,2: + 0: 56792 + -4,3: + 0: 65291 + -5,3: + 0: 65293 + -4,4: + 0: 65530 + -3,0: + 0: 29823 + -3,1: + 0: 62079 + -3,2: + 0: 65535 + -3,3: + 0: 65391 + -3,-1: + 0: 65293 + -2,0: + 0: 28799 + -2,1: + 0: 119 + -2,3: + 0: 65280 + -2,-1: + 0: 65295 + -2,2: + 1: 24582 + -1,4: + 0: 65523 + -4,-4: + 0: 65471 + -5,-4: + 0: 49151 + -4,-3: + 0: 43145 + 2: 816 + -5,-3: + 2: 2176 + 0: 13107 + -4,-2: + 0: 64435 + -5,-1: + 0: 65287 + -3,-4: + 0: 65535 + -3,-3: + 0: 65535 + -3,-2: + 0: 64988 + -2,-4: + 0: 48059 + -2,-3: + 0: 49147 + -2,-2: + 0: 65523 + -2,-5: + 0: 34952 + 1: 816 + -1,-5: + 0: 62335 + -8,0: + 0: 35599 + -8,-1: + 0: 65419 + -9,0: + 0: 28799 + -8,1: + 0: 48059 + -9,1: + 0: 28919 + -8,2: + 0: 65520 + -9,2: + 0: 2039 + -8,3: + 0: 30576 + -7,0: + 0: 48015 + -7,1: + 0: 64443 + -7,2: + 0: 49080 + -7,3: + 0: 49080 + -7,-1: + 0: 65471 + -6,0: + 0: 53727 + -6,1: + 0: 56797 + -6,2: + 0: 21845 + -6,3: + 0: 65311 + -7,4: + 0: 65528 + -6,-1: + 0: 65311 + -6,4: + 0: 30577 + -8,-5: + 0: 61663 + -8,-4: + 0: 57582 + -9,-4: + 0: 28671 + -8,-3: + 0: 65535 + -9,-3: + 0: 36863 + -8,-2: + 0: 64443 + -9,-2: + 0: 65531 + -9,-1: + 0: 65295 + -7,-4: + 0: 47803 + -7,-3: + 0: 48059 + -7,-2: + 0: 65435 + -7,-5: + 0: 47359 + -6,-4: + 0: 15355 + -6,-3: + 0: 49083 + -6,-2: + 0: 65435 + -6,-5: + 0: 13107 + 1: 2184 + -5,-2: + 0: 30583 + -12,0: + 0: 63247 + -12,-1: + 0: 65383 + -13,0: + 0: 25199 + -12,1: + 0: 65399 + -12,2: + 0: 62719 + -13,2: + 0: 25710 + -12,3: + 0: 65535 + -11,0: + 0: 63279 + -11,1: + 0: 63239 + -11,2: + 0: 40191 + -11,3: + 0: 56797 + -11,-1: + 0: 65287 + -10,0: + 0: 64767 + -10,1: + 0: 45823 + -10,2: + 0: 3067 + -10,3: + 0: 56797 + -11,4: + 0: 40184 + -10,-1: + 0: 65287 + -9,3: + 0: 30583 + -12,-4: + 0: 10103 + -12,-3: + 0: 8191 + -13,-3: + 0: 11182 + -12,-2: + 0: 28791 + -13,-2: + 0: 46010 + -13,-1: + 0: 65466 + -11,-4: + 0: 10103 + -11,-3: + 0: 8191 + -11,-2: + 0: 29303 + -11,-5: + 0: 28921 + -10,-4: + 0: 10103 + -10,-3: + 0: 12159 + -10,-2: + 0: 30583 + -10,-5: + 0: 29302 + -9,-5: + 0: 65535 + -16,0: + 0: 3855 + -16,-1: + 0: 65327 + -17,0: + 0: 61567 + -15,0: + 0: 12047 + -16,3: + 0: 32768 + -15,-1: + 0: 65307 + -15,3: + 0: 16 + -15,2: + 0: 3138 + -14,0: + 0: 61007 + -14,2: + 0: 48846 + -14,3: + 0: 61121 + -14,-1: + 0: 65303 + -14,1: + 0: 3662 + -14,4: + 0: 4082 + -13,3: + 0: 26230 + -13,1: + 0: 9830 + -13,4: + 0: 57586 + -16,-3: + 0: 62203 + -17,-3: + 0: 26350 + -16,-2: + 0: 65535 + -17,-1: + 0: 65376 + -16,-4: + 0: 36044 + -16,-5: + 0: 34824 + -15,-3: + 0: 47352 + -15,-2: + 0: 48051 + -15,-5: + 0: 65066 + -15,-4: + 0: 61152 + -14,-4: + 0: 56796 + -14,-3: + 0: 65520 + -14,-2: + 0: 30576 + -14,-5: + 0: 65419 + -13,-4: + 0: 14180 + -13,-5: + 0: 28173 + -20,0: + 0: 8191 + -20,-1: + 0: 65520 + -21,0: + 0: 64767 + -20,1: + 0: 17 + -21,1: + 0: 252 + -19,0: + 0: 287 + -19,-1: + 0: 65436 + -18,0: + 0: 30479 + -18,1: + 0: 16 + -18,-1: + 0: 65294 + -17,1: + 0: 5 + -20,-4: + 1: 112 + 0: 65408 + -21,-4: + 1: 41105 + 0: 3842 + -20,-3: + 0: 141 + -20,-2: + 0: 26208 + -21,-2: + 0: 64759 + -21,-1: + 0: 64760 + -19,-4: + 0: 57340 + -19,-2: + 0: 57200 + -19,-3: + 0: 12 + -19,-5: + 0: 34952 + -18,-4: + 0: 65407 + -18,-3: + 0: 65391 + -18,-2: + 0: 36719 + -18,-5: + 0: 65535 + -17,-4: + 0: 17 + -17,-2: + 0: 30566 + -17,-5: + 0: 14335 + -24,-4: + 1: 40977 + 0: 3850 + -24,-5: + 1: 4369 + 0: 43690 + -25,-4: + 0: 3080 + 1: 37719 + -24,-3: + 1: 15 + -25,-3: + 1: 15 + -23,-4: + 1: 40977 + 0: 3850 + -23,-3: + 1: 15 + -23,-5: + 1: 4369 + 0: 43690 + -22,-4: + 1: 40977 + 0: 3850 + -22,-3: + 1: 15 + -22,-5: + 1: 4369 + 0: 43690 + -21,-3: + 1: 7 + -22,-2: + 0: 32768 + -22,-1: + 0: 128 + -21,-5: + 1: 4369 + 0: 8738 + -22,0: + 0: 32768 + -22,1: + 0: 128 + -5,4: + 0: 65520 + -4,5: + 0: 61695 + -5,5: + 0: 61916 + -4,6: + 0: 15 + -5,6: + 0: 127 + -4,7: + 0: 28784 + 1: 34688 + -5,7: + 0: 61680 + 1: 3840 + -3,4: + 0: 65520 + -3,5: + 0: 61559 + -3,6: + 0: 15 + -3,7: + 1: 28945 + -3,8: + 1: 4381 + -2,4: + 0: 56784 + -2,5: + 0: 21136 + -2,6: + 0: 3 + -1,5: + 0: 35000 + -1,7: + 0: 16384 + 1: 8 + -1,8: + 0: 4 + 1: 48 + 0,5: + 0: 32526 + -1,6: + 1: 128 + 0,6: + 1: 21616 + -4,-8: + 0: 45056 + 1: 102 + -4,-7: + 0: 48063 + -5,-8: + 0: 57344 + 1: 48 + -5,-7: + 0: 65262 + -4,-6: + 0: 64443 + -5,-6: + 0: 61167 + -4,-5: + 0: 11 + 1: 1536 + -5,-5: + 0: 14 + 1: 768 + -3,-8: + 0: 28672 + 1: 196 + -3,-7: + 0: 65527 + -3,-6: + 0: 32767 + -3,-5: + 0: 7 + 1: 3072 + -2,-8: + 1: 787 + 0: 34952 + -2,-7: + 0: 64443 + -2,-6: + 0: 48063 + -2,-9: + 0: 36863 + -1,-8: + 0: 49139 + -1,-7: + 0: 16379 + -1,-6: + 0: 15291 + -1,-9: + 0: 46075 + 0,-8: + 0: 8188 + 0,-7: + 0: 36861 + 0,-6: + 0: 35647 + -4,-12: + 0: 65523 + -4,-13: + 0: 63287 + -5,-12: + 0: 49072 + -4,-11: + 0: 21844 + -5,-11: + 0: 48059 + -5,-10: + 0: 53240 + -4,-10: + 0: 41700 + -4,-9: + 0: 4095 + -5,-9: + 0: 4095 + -3,-12: + 0: 49080 + -3,-11: + 0: 48058 + -3,-10: + 0: 61688 + -3,-9: + 0: 4095 + -3,-13: + 0: 65280 + -2,-10: + 0: 44798 + -2,-12: + 0: 59118 + -2,-11: + 0: 60942 + -2,-13: + 0: 61166 + -1,-12: + 0: 47359 + -1,-11: + 0: 45875 + -1,-10: + 0: 2035 + -1,-13: + 0: 65535 + 0,-12: + 0: 65331 + 0,-11: + 0: 15 + 0,-10: + 0: 65328 + 0,-9: + 0: 53759 + -8,-8: + 0: 65518 + -9,-8: + 0: 58895 + -8,-7: + 0: 65327 + -9,-7: + 0: 65286 + -8,-6: + 0: 39736 + -9,-6: + 0: 65528 + -8,-9: + 0: 36863 + -7,-8: + 0: 48059 + -7,-7: + 0: 64395 + -7,-6: + 0: 49035 + -7,-9: + 0: 36863 + -6,-8: + 0: 13107 + 1: 34952 + -6,-7: + 0: 62259 + -6,-6: + 0: 13119 + -6,-9: + 0: 16383 + -8,-12: + 0: 44984 + -9,-12: + 0: 44002 + -8,-11: + 0: 47275 + -9,-11: + 0: 63800 + -8,-10: + 0: 61688 + -9,-10: + 0: 50640 + -9,-9: + 0: 20479 + -8,-13: + 0: 61185 + -7,-12: + 0: 4084 + -7,-11: + 0: 61167 + -7,-10: + 0: 3822 + -7,-13: + 0: 26112 + -6,-12: + 0: 52689 + -6,-11: + 0: 56831 + -6,-10: + 0: 52697 + -6,-13: + 0: 65284 + -5,-13: + 0: 64266 + -8,4: + 0: 3952 + -9,4: + 0: 3824 + -8,5: + 0: 61441 + -9,5: + 0: 61964 + -8,6: + 0: 7935 + -9,6: + 0: 29423 + -8,7: + 0: 2048 + -7,5: + 0: 65248 + -7,6: + 0: 32767 + 1: 32768 + -6,5: + 0: 64304 + -6,6: + 0: 8959 + 1: 23808 + -6,7: + 0: 41634 + 1: 19520 + -6,8: + 0: 41634 + 1: 19520 + -12,-13: + 0: 48899 + -13,-12: + 0: 47355 + -12,-12: + 0: 43680 + -12,-11: + 0: 48059 + -13,-11: + 0: 32571 + -12,-10: + 0: 3003 + -13,-10: + 0: 20245 + -12,-9: + 0: 4095 + -13,-9: + 0: 8191 + -12,-8: + 0: 7453 + -11,-12: + 0: 65522 + -11,-11: + 0: 65535 + -11,-10: + 0: 24575 + -11,-9: + 0: 12287 + -11,-13: + 0: 65423 + -11,-8: + 0: 12159 + -10,-12: + 0: 61408 + -10,-10: + 0: 4064 + -10,-9: + 0: 4095 + -10,-13: + 0: 32525 + -10,-11: + 0: 24672 + -10,-8: + 0: 52685 + -9,-13: + 0: 65421 + -16,-11: + 0: 25612 + -16,-10: + 0: 30470 + -17,-10: + 0: 52224 + -16,-9: + 0: 30583 + -17,-9: + 0: 52428 + -16,-8: + 0: 22279 + -16,-12: + 0: 49154 + -15,-12: + 0: 28672 + -15,-11: + 0: 65295 + -15,-10: + 0: 20479 + -15,-9: + 0: 12287 + -15,-8: + 0: 10923 + -14,-9: + 0: 36863 + -14,-12: + 0: 57344 + -14,-11: + 0: 61166 + -14,-10: + 0: 3822 + -14,-8: + 0: 44987 + -13,-8: + 0: 56829 + -13,-13: + 0: 36625 + -17,-8: + 0: 6156 + -17,-7: + 0: 65527 + -16,-7: + 0: 57344 + -16,-6: + 0: 61166 + -17,-6: + 0: 65535 + -15,-6: + 0: 43818 + -15,-7: + 0: 43690 + -14,-7: + 0: 49080 + -14,-6: + 0: 64395 + -13,-7: + 0: 64849 + -13,-6: + 0: 64797 + -12,-7: + 0: 54541 + -12,-6: + 0: 56581 + -12,-5: + 0: 1997 + 0,4: + 0: 61152 + 0,7: + 0: 20192 + 0,8: + 0: 4095 + 1,5: + 0: 65382 + 1,6: + 0: 65526 + 1,7: + 0: 20470 + 1,8: + 0: 56797 + 2,5: + 0: 61446 + 2,6: + 0: 32752 + 2,7: + 0: 10098 + 2,8: + 0: 26190 + 3,7: + 0: 26487 + 3,8: + 0: 16454 + 0,9: + 0: 65535 + -1,9: + 0: 34952 + 0,10: + 0: 1906 + 0,11: + 0: 10240 + 1,9: + 0: 65534 + 1,10: + 0: 4095 + 1,11: + 0: 128 + 1,12: + 0: 68 + 2,9: + 0: 65535 + 2,10: + 0: 3812 + 3,9: + 0: 4381 + 3,11: + 0: 32 + 3,10: + 0: 34816 + -16,4: + 0: 16 + -16,6: + 0: 3581 + -17,6: + 0: 4095 + -16,5: + 0: 52428 + -16,8: + 0: 3788 + -15,5: + 0: 8191 + -15,6: + 0: 3549 + -15,4: + 0: 34944 + -15,7: + 0: 34952 + -14,5: + 0: 4063 + -14,6: + 0: 52701 + -14,7: + 0: 65535 + -15,8: + 0: 34952 + -14,8: + 0: 65535 + -13,5: + 0: 45055 + -13,6: + 0: 65535 + -13,7: + 0: 65535 + -13,8: + 0: 65535 + -12,4: + 0: 28912 + -12,5: + 0: 2039 + -12,6: + 0: 30583 + -12,7: + 0: 30583 + -12,8: + 0: 21879 + -11,5: + 0: 4095 + -11,6: + 1: 4369 + 3: 12 + 4: 3072 + -11,7: + 1: 4369 + 0: 12 + 5: 3072 + -11,8: + 1: 17 + 0: 45836 + -10,4: + 0: 49648 + -10,5: + 0: 273 + -10,6: + 3: 1 + 4: 256 + 0: 17472 + -10,7: + 0: 1093 + 5: 256 + -10,8: + 0: 64641 + -9,7: + 0: 25207 + -9,8: + 0: 13106 + -8,-16: + 1: 4369 + -8,-17: + 1: 4369 + -9,-16: + 1: 52431 + 0: 12336 + -8,-15: + 1: 4369 + -9,-15: + 1: 52431 + 0: 48 + -8,-14: + 1: 3 + 0: 4352 + -9,-14: + 1: 14 + 0: 56448 + -7,-14: + 0: 48 + -6,-16: + 0: 392 + -6,-17: + 0: 43648 + -5,-16: + 0: 37051 + -5,-17: + 0: 64440 + -5,-15: + 0: 26155 + -5,-14: + 0: 43524 + -4,-16: + 0: 29695 + -4,-15: + 0: 47927 + -4,-14: + 0: 30523 + -4,-17: + 0: 65535 + -3,-16: + 0: 16383 + -3,-15: + 0: 4879 + -3,-14: + 0: 2113 + -3,-17: + 0: 16383 + -2,-16: + 0: 273 + 1: 136 + -2,-15: + 0: 3 + -2,-14: + 0: 62208 + -2,-17: + 1: 51336 + 0: 273 + -1,-14: + 0: 61440 + 0,-13: + 0: 4369 + -8,-20: + 1: 28672 + -9,-20: + 1: 61440 + -8,-19: + 1: 4380 + -9,-19: + 0: 14464 + 1: 50265 + -8,-18: + 1: 4369 + -9,-18: + 1: 52431 + 0: 12336 + -9,-17: + 1: 52431 + 0: 12336 + -7,-19: + 1: 34959 + -7,-20: + 1: 32768 + -6,-20: + 1: 63488 + -7,-18: + 1: 2184 + 0: 32768 + -5,-20: + 1: 20224 + -5,-18: + 0: 45960 + -5,-19: + 0: 3264 + 1: 4 + -4,-20: + 1: 20224 + -4,-19: + 0: 4095 + -4,-18: + 0: 61695 + -3,-20: + 1: 36608 + -3,-19: + 0: 3953 + -3,-18: + 0: 47359 + -2,-20: + 1: 4096 + -2,-19: + 0: 256 + 1: 2207 + -2,-18: + 0: 4369 + 1: 51328 + 1,-12: + 0: 29440 + 1,-11: + 0: 231 + 1,-10: + 0: 65295 + 1,-9: + 0: 47167 + 1,-8: + 0: 46011 + 2,-11: + 0: 3120 + 2,-10: + 0: 30467 + 2,-9: + 0: 30519 + 2,-8: + 0: 29559 + 3,-8: + 0: 12337 + 1,-7: + 0: 65535 + 1,-6: + 0: 4041 + 2,-7: + 0: 32639 + 2,-6: + 0: 18288 + 3,-7: + 0: 14087 + 3,-6: + 0: 16688 + 3,-5: + 0: 20 + -12,9: + 1: 4368 + 0: 61156 + -13,9: + 1: 240 + 0: 28672 + -12,10: + 1: 273 + 0: 136 + -13,10: + 1: 3840 + 0: 7 + -11,9: + 0: 32699 + -11,10: + 0: 17 + -10,9: + 0: 239 + -9,9: + 0: 3 + -9,10: + 0: 8 + -9,11: + 1: 50372 + -9,12: + 1: 196 + -8,10: + 0: 49345 + 1: 3072 + -8,11: + 0: 61680 + 1: 3840 + -11,-7: + 0: 64799 + -11,-6: + 0: 56605 + -10,-7: + 0: 60943 + -10,-6: + 0: 26182 + -20,-8: + 1: 4096 + -20,-7: + 1: 35939 + -21,-8: + 1: 35939 + -19,-7: + 1: 4096 + -19,-6: + 1: 1123 + 0: 34816 + -18,-6: + 0: 65535 + -18,-7: + 0: 65484 + -18,-8: + 0: 52420 + -20,-10: + 1: 61440 + -21,-10: + 1: 61440 + -20,-9: + 0: 240 + 1: 61954 + -21,-9: + 0: 240 + 1: 62468 + -19,-10: + 1: 62060 + -19,-9: + 0: 240 + 1: 63753 + -19,-11: + 1: 32768 + -18,-11: + 1: 4406 + -18,-10: + 1: 12291 + -18,-9: + 0: 48 + 1: 12288 + -18,-12: + 1: 51200 + -17,-12: + 1: 1792 + -17,-11: + 0: 4 + -12,-14: + 0: 8192 + -12,-16: + 1: 34952 + -12,-17: + 1: 34952 + -11,-16: + 1: 4126 + 0: 57568 + -12,-15: + 1: 34952 + -11,-15: + 1: 30 + 0: 224 + -11,-14: + 0: 61440 + -11,-17: + 0: 57568 + 1: 4126 + -10,-16: + 1: 15 + 0: 61680 + -10,-15: + 1: 15 + 0: 240 + -10,-17: + 0: 61680 + 1: 15 + -10,-14: + 0: 32768 + -15,-13: + 0: 272 + -15,-16: + 0: 18432 + -14,-15: + 0: 65520 + -14,-14: + 0: 63288 + -14,-13: + 0: 2227 + -13,-16: + 0: 4096 + -13,-14: + 0: 5393 + -16,9: + 0: 43008 + -15,9: + 0: 4224 + -15,10: + 0: 16 + -14,9: + 0: 33040 + 1: 8928 + -14,10: + 1: 3618 + 0: 8 + -8,12: + 1: 245 + -7,10: + 0: 61680 + 1: 3840 + -7,11: + 0: 61680 + 1: 3840 + -7,9: + 0: 61680 + 1: 3840 + -7,12: + 1: 2293 + -6,9: + 1: 23888 + 0: 41634 + -6,10: + 1: 23888 + 0: 41634 + -6,11: + 1: 23888 + 0: 41634 + -6,12: + 0: 2 + 1: 4000 + -5,8: + 0: 61680 + 1: 3840 + -5,9: + 0: 61680 + 1: 3840 + -5,10: + 0: 61680 + 1: 3840 + -5,11: + 0: 61680 + 1: 3840 + -5,12: + 1: 245 + -4,8: + 0: 28784 + 1: 34688 + -4,9: + 0: 28784 + 1: 34688 + -4,10: + 0: 28784 + 1: 34688 + -4,11: + 0: 28784 + 1: 34688 + -4,12: + 1: 245 + -3,9: + 1: 4369 + -3,10: + 1: 4369 + -3,11: + 1: 4369 + -3,12: + 1: 17 + -2,8: + 1: 241 + -1,11: + 0: 32770 + 4,-5: + 1: 3072 + -12,-19: + 1: 34944 + -11,-19: + 1: 6896 + 0: 57344 + -12,-18: + 1: 34952 + -11,-18: + 1: 4126 + 0: 57568 + -10,-19: + 1: 2800 + 0: 61440 + -10,-18: + 1: 15 + 0: 61680 + -25,-5: + 1: 9766 + 0: 34952 + -25,-8: + 1: 8 + -24,-8: + 1: 57600 + 0: 8 + -24,-6: + 1: 4527 + 0: 43520 + -25,-6: + 1: 9902 + 0: 34816 + -24,-9: + 0: 50790 + -23,-8: + 0: 7 + -23,-6: + 1: 4527 + 0: 43520 + -23,-9: + 0: 30326 + -22,-8: + 0: 1 + 1: 768 + -22,-6: + 1: 4527 + 0: 43520 + -22,-9: + 0: 29619 + 1: 34824 + -21,-6: + 1: 4399 + 0: 8704 + -24,-10: + 1: 1 + 0: 51200 + -25,-10: + 1: 18432 + -24,-11: + 1: 57344 + -23,-10: + 0: 30464 + -22,-10: + 1: 32771 + 0: 28928 + -25,-9: + 1: 17476 + -20,5: + 0: 152 + -21,5: + 0: 2176 + -20,7: + 1: 4096 + 0: 52428 + -20,8: + 1: 4369 + 0: 52428 + -20,6: + 0: 3276 + -19,6: + 0: 36317 + -19,7: + 0: 36863 + -19,8: + 0: 3003 + -18,6: + 0: 3067 + -18,7: + 0: 36863 + -18,5: + 0: 96 + -18,8: + 0: 36590 + -17,7: + 0: 4369 + 1: 16384 + -17,8: + 0: 4369 + 1: 17476 + -21,10: + 0: 8 + -20,10: + 0: 25344 + -20,9: + 0: 12 + 1: 32768 + -19,9: + 0: 239 + 1: 61440 + -18,9: + 0: 63 + 1: 61440 + -18,10: + 0: 4864 + -17,9: + 0: 1 + -21,8: + 0: 272 + -21,7: + 0: 4129 + -21,9: + 0: 32 + -21,6: + 0: 4370 + 2,12: + 0: 256 + 5,8: + 0: 544 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: NavMap + - type: BecomesStation + id: MooseStation + - uid: 3058 + components: + - type: MetaData + - type: Transform + parent: 2081 + - type: Solution + solution: + maxVol: 6 + name: food + reagents: + - ReagentId: Nutriment + Quantity: 5 + - type: ContainedSolution + containerName: food + container: 2081 +- proto: AccordionInstrument + entities: + - uid: 8990 + components: + - type: Transform + pos: 8.408675,-17.149057 + parent: 2 + - uid: 13040 + components: + - type: Transform + pos: 4.434486,42.821125 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: AcousticGuitarInstrument + entities: + - uid: 1013 + components: + - type: Transform + pos: 4.4434147,42.64375 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 5887 + components: + - type: Transform + pos: 9.544364,12.137335 + parent: 2 + - uid: 11906 + components: + - type: Transform + pos: -60.560284,33.67317 + parent: 2 + - uid: 15661 + components: + - type: Transform + parent: 15660 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ActionToggleBlock + entities: + - uid: 557 + components: + - type: Transform + parent: 556 + - type: InstantAction + container: 556 + - uid: 993 + components: + - type: Transform + parent: 992 + - type: InstantAction + container: 992 + - uid: 15975 + components: + - type: Transform + parent: 15974 + - type: InstantAction + container: 15974 + - uid: 15977 + components: + - type: Transform + parent: 15976 + - type: InstantAction + container: 15976 + - uid: 15979 + components: + - type: Transform + parent: 15978 + - type: InstantAction + container: 15978 + - uid: 15981 + components: + - type: Transform + parent: 15980 + - type: InstantAction + container: 15980 + - uid: 15987 + components: + - type: Transform + parent: 15986 + - type: InstantAction + container: 15986 + - uid: 15991 + components: + - type: Transform + parent: 15990 + - type: InstantAction + container: 15990 +- proto: ActionToggleInternals + entities: + - uid: 463 + components: + - type: Transform + parent: 1033 + - type: InstantAction + container: 1033 + - uid: 6971 + components: + - type: Transform + parent: 6944 + - type: InstantAction + container: 6944 + - uid: 7069 + components: + - type: Transform + parent: 7124 + - type: InstantAction + container: 7124 + - uid: 7070 + components: + - type: Transform + parent: 7127 + - type: InstantAction + container: 7127 + - uid: 8732 + components: + - type: Transform + parent: 15204 + - type: InstantAction + container: 15204 + - uid: 15983 + components: + - type: Transform + parent: 15209 + - type: InstantAction + container: 15209 +- proto: ActionToggleJetpack + entities: + - uid: 438 + components: + - type: Transform + parent: 1033 + - type: InstantAction + container: 1033 + - uid: 8453 + components: + - type: Transform + parent: 15204 + - type: InstantAction + container: 15204 + - uid: 15982 + components: + - type: Transform + parent: 15209 + - type: InstantAction + container: 15209 +- proto: ActionToggleLight + entities: + - uid: 546 + components: + - type: Transform + parent: 541 + - type: InstantAction + container: 541 + - uid: 5540 + components: + - type: Transform + parent: 5574 + - type: InstantAction + container: 5574 + - uid: 5926 + components: + - type: Transform + parent: 12243 + - type: InstantAction + container: 12243 + - uid: 8111 + components: + - type: Transform + parent: 8110 + - type: InstantAction + container: 8110 + - uid: 8116 + components: + - type: Transform + parent: 8115 + - type: InstantAction + container: 8115 + - uid: 8257 + components: + - type: Transform + parent: 8256 + - type: InstantAction + container: 8256 + - uid: 11307 + components: + - type: Transform + parent: 9634 + - type: InstantAction + container: 9634 + - uid: 13202 + components: + - type: Transform + parent: 13200 + - type: InstantAction + container: 13200 + - uid: 14230 + components: + - type: Transform + parent: 14229 + - type: InstantAction + container: 14229 + - uid: 14232 + components: + - type: Transform + parent: 14231 + - type: InstantAction + container: 14231 + - uid: 15966 + components: + - type: Transform + parent: 15965 + - type: InstantAction + container: 15965 +- proto: ActionToggleMagboots + entities: + - uid: 6934 + components: + - type: Transform + parent: 8144 + - type: InstantAction + container: 8144 + - uid: 8133 + components: + - type: Transform + parent: 7415 + - type: InstantAction + container: 7415 + - uid: 8134 + components: + - type: Transform + parent: 8146 + - type: InstantAction + container: 8146 +- proto: ActionToggleMagbootsSyndie + entities: + - uid: 984 + components: + - type: Transform + parent: 1033 + - type: InstantAction + container: 1033 +- proto: AirAlarm + entities: + - uid: 4 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 5671 + - 5808 + - uid: 225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 2659 + - 5571 + - 13095 + - uid: 241 + components: + - type: Transform + pos: -26.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 2665 + - 3630 + - uid: 418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-33.5 + parent: 2 + - type: DeviceList + devices: + - 3826 + - 3286 + - 3834 + - 3313 + - uid: 912 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 2907 + - 12943 + - uid: 1290 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 2 + - type: DeviceList + devices: + - 3287 + - 3825 + - uid: 1296 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 + - type: DeviceList + devices: + - 6473 + - 3827 + - 3285 + - 7022 + - uid: 3479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 5572 + - 2660 + - 3469 + - uid: 3658 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 2585 + - 2424 + - uid: 5492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 3172 + - 3494 + - 5549 + - uid: 5534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 3483 + - 3173 + - 5573 + - uid: 5539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 5513 + - 3174 + - uid: 5569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,18.5 + parent: 2 + - uid: 5661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 2658 + - 3444 + - 3453 + - 3134 + - uid: 6260 + components: + - type: Transform + pos: -39.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 6356 + - 2656 + - 3424 + - uid: 6331 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 15792 + - 5936 + - 15788 + - 15791 + - 15786 + - 15790 + - 15785 + - 15789 + - 15799 + - uid: 6344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,28.5 + parent: 2 + - uid: 6799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-42.5 + parent: 2 + - uid: 7108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 5694 + - 2692 + - 3870 + - 3258 + - uid: 8042 + components: + - type: Transform + pos: -73.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 2668 + - 3626 + - 2655 + - 3627 + - uid: 8046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 10448 + - 10392 + - 10371 + - 10449 + - 10477 + - 10479 + - uid: 12389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-37.5 + parent: 2 + - type: DeviceList + devices: + - 3736 + - 3329 + - 7023 + - uid: 12810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 3876 + - 3881 + - uid: 12813 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 3874 + - 3284 + - uid: 12921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-14.5 + parent: 2 + - type: DeviceList + devices: + - 4948 + - 5024 + - uid: 12928 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - uid: 12929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 12902 + - 12903 + - uid: 12930 + components: + - type: Transform + pos: -39.5,-12.5 + parent: 2 + - type: DeviceList + devices: + - 2902 + - uid: 12935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 2663 + - 3550 + - uid: 12936 + components: + - type: Transform + pos: -44.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 7018 + - 6975 + - 6976 + - 4029 + - 2904 + - 4027 + - 2906 + - uid: 12938 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 7019 + - 2900 + - 4024 + - uid: 12939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 3090 + - 4026 + - uid: 12944 + components: + - type: Transform + pos: -16.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 2664 + - 3631 + - uid: 12945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 3518 + - 2661 + - 3517 + - 8092 + - uid: 12950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 2662 + - 3549 + - 2670 + - 3548 + - uid: 12952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 2806 + - 7919 + - 7926 + - 2694 + - uid: 12953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 3668 + - 3666 + - 3669 + - 2682 + - uid: 12959 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 3735 + - 2683 + - 3946 + - 3945 + - 2684 + - 3734 + - uid: 12961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-26.5 + parent: 2 + - type: DeviceList + devices: + - 3802 + - 2679 + - 2680 + - 3801 + - 3106 + - 2681 + - uid: 12968 + components: + - type: Transform + pos: -45.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 2685 + - 3733 + - 6412 + - 2686 + - uid: 12974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-27.5 + parent: 2 + - type: DeviceList + devices: + - 2688 + - 3764 + - 3763 + - 3250 + - uid: 12975 + components: + - type: Transform + pos: -38.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 2666 + - 3629 + - 3628 + - 2667 + - uid: 12981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 3952 + - 2689 + - uid: 12982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-44.5 + parent: 2 + - type: DeviceList + devices: + - 8584 + - 8590 + - uid: 12983 + components: + - type: Transform + pos: -59.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 3746 + - 3391 + - uid: 12984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 3731 + - 3234 + - uid: 12994 + components: + - type: Transform + pos: -86.5,-31.5 + parent: 2 + - type: DeviceList + devices: + - 11495 + - uid: 12995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 3836 + - 3092 + - 3843 + - 3099 + - uid: 13109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-44.5 + parent: 2 + - type: DeviceList + devices: + - 3943 + - 3331 + - 7221 + - uid: 13110 + components: + - type: Transform + pos: -23.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 12748 + - 3915 + - uid: 13112 + components: + - type: Transform + pos: -16.5,-50.5 + parent: 2 + - type: DeviceList + devices: + - 7222 + - 3108 + - 6518 + - uid: 13113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-43.5 + parent: 2 + - type: DeviceList + devices: + - 3944 + - 3378 + - 13111 + - uid: 13114 + components: + - type: Transform + pos: -8.5,-64.5 + parent: 2 + - type: DeviceList + devices: + - 7225 + - 7224 + - 3941 + - 3333 + - uid: 13115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-63.5 + parent: 2 + - type: DeviceList + devices: + - 3942 + - 3334 + - uid: 13373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 13357 + - 6291 + - uid: 13374 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 13375 + - 3399 + - 6257 + - uid: 13376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 3425 + - 2657 + - uid: 13385 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 7021 + - 3438 + - 2678 + - uid: 13390 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 2675 + - 13382 + - uid: 13393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 2674 + - 3965 + - 7020 + - uid: 14642 + components: + - type: Transform + pos: -48.5,38.5 + parent: 2 + - uid: 14664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 11844 + - 14538 + - uid: 14667 + components: + - type: Transform + pos: -51.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 11858 + - 4850 + - uid: 14668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 14710 + - 14712 + - 14714 + - uid: 15025 + components: + - type: Transform + pos: -73.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 14877 + - uid: 16399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 16325 + - 16346 + - 16347 + - 16330 + - 16326 +- proto: AirCanister + entities: + - uid: 1955 + components: + - type: Transform + pos: -39.5,1.5 + parent: 2 + - uid: 1956 + components: + - type: Transform + pos: -38.5,1.5 + parent: 2 + - uid: 6959 + components: + - type: Transform + pos: -39.5,-6.5 + parent: 2 + - uid: 9626 + components: + - type: Transform + pos: -32.5,-44.5 + parent: 2 + - uid: 13057 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 +- proto: Airlock + entities: + - uid: 1098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-27.5 + parent: 2 + - uid: 1099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-20.5 + parent: 2 + - uid: 8212 + components: + - type: Transform + pos: -53.5,-29.5 + parent: 2 + - uid: 8213 + components: + - type: Transform + pos: -50.5,-30.5 + parent: 2 + - uid: 8214 + components: + - type: Transform + pos: -50.5,-24.5 + parent: 2 + - uid: 8215 + components: + - type: Transform + pos: -53.5,-25.5 + parent: 2 + - uid: 8704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 9047 + - uid: 8705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-31.5 + parent: 2 + - uid: 8706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-29.5 + parent: 2 + - uid: 8707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-31.5 + parent: 2 + - uid: 8719 + components: + - type: Transform + pos: -42.5,-32.5 + parent: 2 +- proto: AirlockArmoryGlassLocked + entities: + - uid: 417 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 14691 + components: + - type: Transform + pos: -48.5,23.5 + parent: 2 + - uid: 14692 + components: + - type: Transform + pos: -50.5,23.5 + parent: 2 +- proto: AirlockBarLocked + entities: + - uid: 137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 2 +- proto: AirlockCaptainLocked + entities: + - uid: 5 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 +- proto: AirlockCargoGlassLocked + entities: + - uid: 1494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-30.5 + parent: 2 + - uid: 1554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-28.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-28.5 + parent: 2 + - uid: 1560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 2 +- proto: AirlockCargoLocked + entities: + - uid: 46 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-29.5 + parent: 2 + - uid: 99 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-29.5 + parent: 2 + - uid: 1479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-34.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-34.5 + parent: 2 +- proto: AirlockChapelLocked + entities: + - uid: 260 + components: + - type: Transform + pos: -39.5,-45.5 + parent: 2 + - uid: 8639 + components: + - type: Transform + pos: -39.5,-37.5 + parent: 2 +- proto: AirlockChemistryLocked + entities: + - uid: 733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-7.5 + parent: 2 +- proto: AirlockChiefEngineerGlassLocked + entities: + - uid: 1620 + components: + - type: Transform + pos: -32.5,5.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-8.5 + parent: 2 +- proto: AirlockCommandGlassLocked + entities: + - uid: 67 + components: + - type: Transform + pos: -19.5,14.5 + parent: 2 + - uid: 133 + components: + - type: Transform + pos: -22.5,15.5 + parent: 2 + - uid: 288 + components: + - type: Transform + pos: -7.5,15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 5524 + - uid: 292 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: -22.5,14.5 + parent: 2 + - uid: 308 + components: + - type: Transform + pos: -7.5,14.5 + parent: 2 + - uid: 334 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 700 + components: + - type: Transform + pos: -19.5,15.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: -14.5,16.5 + parent: 2 + - uid: 747 + components: + - type: Transform + pos: -12.5,16.5 + parent: 2 + - uid: 752 + components: + - type: Transform + pos: -10.5,13.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: -9.5,13.5 + parent: 2 +- proto: AirlockCommandLocked + entities: + - uid: 11410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,14.5 + parent: 2 + - uid: 14225 + components: + - type: Transform + pos: -56.5,-11.5 + parent: 2 + - uid: 14466 + components: + - type: Transform + pos: -53.5,5.5 + parent: 2 +- proto: AirlockDetectiveGlassLocked + entities: + - uid: 220 + components: + - type: Transform + pos: -57.5,-36.5 + parent: 2 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 64 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - uid: 1622 + components: + - type: Transform + pos: -37.5,9.5 + parent: 2 + - uid: 1623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,10.5 + parent: 2 + - uid: 1627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,16.5 + parent: 2 + - uid: 1629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,3.5 + parent: 2 + - uid: 1633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,3.5 + parent: 2 + - uid: 1679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,1.5 + parent: 2 + - uid: 6452 + components: + - type: Transform + pos: -38.5,6.5 + parent: 2 + - uid: 11413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,9.5 + parent: 2 + - uid: 13366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,11.5 + parent: 2 + - uid: 15045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,20.5 + parent: 2 + - uid: 15237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,22.5 + parent: 2 +- proto: AirlockEngineeringLocked + entities: + - uid: 163 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 2 + - uid: 166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,25.5 + parent: 2 + - uid: 239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,25.5 + parent: 2 + - uid: 440 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 1135 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 2 + - uid: 1695 + components: + - type: Transform + pos: -40.5,-19.5 + parent: 2 + - uid: 1822 + components: + - type: Transform + pos: -69.5,-6.5 + parent: 2 + - uid: 1823 + components: + - type: Transform + pos: -70.5,-6.5 + parent: 2 + - uid: 1886 + components: + - type: Transform + pos: -46.5,-44.5 + parent: 2 + - uid: 2107 + components: + - type: Transform + pos: -25.5,-47.5 + parent: 2 + - uid: 2320 + components: + - type: Transform + pos: -32.5,-50.5 + parent: 2 + - uid: 12811 + components: + - type: Transform + pos: -19.5,11.5 + parent: 2 + - uid: 14442 + components: + - type: Transform + pos: -53.5,1.5 + parent: 2 + - uid: 14822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,21.5 + parent: 2 + - uid: 15220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,27.5 + parent: 2 + - uid: 15221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,31.5 + parent: 2 + - uid: 15256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,19.5 + parent: 2 +- proto: AirlockEVAGlassLocked + entities: + - uid: 194 + components: + - type: Transform + pos: -55.5,-2.5 + parent: 2 +- proto: AirlockExternalAtmosphericsLocked + entities: + - uid: 4907 + components: + - type: Transform + pos: -45.5,36.5 + parent: 2 + - uid: 6050 + components: + - type: Transform + pos: -45.5,34.5 + parent: 2 +- proto: AirlockExternalCargoLocked + entities: + - uid: 1954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-43.5 + parent: 2 + - uid: 1994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-44.5 + parent: 2 + - uid: 6585 + components: + - type: Transform + pos: -5.5,-45.5 + parent: 2 + - uid: 6586 + components: + - type: Transform + pos: -6.5,-45.5 + parent: 2 +- proto: AirlockExternalEngineeringLocked + entities: + - uid: 1384 + components: + - type: Transform + pos: -32.5,-54.5 + parent: 2 + - uid: 9913 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 10601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-10.5 + parent: 2 + - uid: 10602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-10.5 + parent: 2 + - uid: 10766 + components: + - type: Transform + pos: -34.5,26.5 + parent: 2 + - uid: 10767 + components: + - type: Transform + pos: -34.5,30.5 + parent: 2 +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 1495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 2 + - uid: 1553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-27.5 + parent: 2 +- proto: AirlockExternalGlassLocked + entities: + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,-4.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 7802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,13.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 7803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,14.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 7804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,4.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 7805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,5.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 10455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,-2.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 10456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,3.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 10468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,5.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 11392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,-36.5 + parent: 2 + - uid: 11393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,-32.5 + parent: 2 + - uid: 11942 + components: + - type: Transform + pos: -6.5,-59.5 + parent: 2 + missingComponents: + - AccessReader +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 62 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,13.5 + parent: 2 + - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,6.5 + parent: 2 + - uid: 173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,6.5 + parent: 2 + - uid: 8347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,13.5 + parent: 2 + - type: Door + secondsUntilStateChange: -30627.271 + state: Opening +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 13657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 2 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 42 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,14.5 + parent: 2 + - uid: 43 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,13.5 + parent: 2 + - uid: 48 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,4.5 + parent: 2 + - uid: 54 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,5.5 + parent: 2 +- proto: AirlockExternalLocked + entities: + - uid: 7806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,20.5 + parent: 2 +- proto: AirlockExternalShuttleLocked + entities: + - uid: 15654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,22.5 + parent: 2 +- proto: AirlockFreezer + entities: + - uid: 14523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-11.5 + parent: 2 +- proto: AirlockGlass + entities: + - uid: 21 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - uid: 56 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-0.5 + parent: 2 + - uid: 57 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 2 + - uid: 69 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - uid: 72 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 2 + - uid: 85 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-6.5 + parent: 2 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-1.5 + parent: 2 + - uid: 152 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 2 + - uid: 177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-36.5 + parent: 2 + - uid: 189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-36.5 + parent: 2 + - uid: 216 + components: + - type: Transform + pos: -35.5,-33.5 + parent: 2 + - uid: 218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 2 + - uid: 222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,0.5 + parent: 2 + - uid: 821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,0.5 + parent: 2 + - uid: 943 + components: + - type: Transform + pos: -23.5,-32.5 + parent: 2 + - uid: 945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 2 + - uid: 952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 2 + - uid: 971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-1.5 + parent: 2 + - uid: 976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,1.5 + parent: 2 + - uid: 981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,1.5 + parent: 2 + - uid: 1055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-24.5 + parent: 2 + - uid: 1056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-23.5 + parent: 2 + - uid: 1100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-24.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-23.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - uid: 1318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,1.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 2 + - uid: 1586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 2 + - uid: 3835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-24.5 + parent: 2 + - uid: 5750 + components: + - type: Transform + pos: -35.5,-34.5 + parent: 2 + - uid: 5806 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 2 + - uid: 6670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 2 + - uid: 7155 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - uid: 7898 + components: + - type: Transform + pos: -22.5,-32.5 + parent: 2 + - uid: 7917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,1.5 + parent: 2 + - uid: 7923 + components: + - type: Transform + pos: -35.5,-35.5 + parent: 2 + - uid: 7924 + components: + - type: Transform + pos: -52.5,-32.5 + parent: 2 + - uid: 7928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 2 + - uid: 7932 + components: + - type: Transform + pos: -51.5,-32.5 + parent: 2 + - uid: 7939 + components: + - type: Transform + pos: -24.5,-32.5 + parent: 2 + - uid: 7940 + components: + - type: Transform + pos: -4.5,-32.5 + parent: 2 + - uid: 7941 + components: + - type: Transform + pos: -3.5,-32.5 + parent: 2 + - uid: 7942 + components: + - type: Transform + pos: -2.5,-32.5 + parent: 2 + - uid: 7943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 2 + - uid: 7944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,0.5 + parent: 2 + - uid: 8032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,7.5 + parent: 2 + - uid: 8135 + components: + - type: Transform + pos: 18.5,1.5 + parent: 2 + - uid: 8175 + components: + - type: Transform + pos: -48.5,-2.5 + parent: 2 + - uid: 8191 + components: + - type: Transform + pos: -59.5,-2.5 + parent: 2 + - uid: 8192 + components: + - type: Transform + pos: -62.5,-2.5 + parent: 2 + - uid: 8211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-20.5 + parent: 2 + - uid: 8788 + components: + - type: Transform + pos: -28.5,-32.5 + parent: 2 + - uid: 8848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-23.5 + parent: 2 + - uid: 15665 + components: + - type: Transform + pos: 10.5,40.5 + parent: 2 + - uid: 15794 + components: + - type: Transform + pos: 1.5,40.5 + parent: 2 +- proto: AirlockGlassShuttle + entities: + - uid: 673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-27.5 + parent: 2 + - uid: 980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-25.5 + parent: 2 + - uid: 10369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,3.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 10453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,-4.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 10454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,-2.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 10457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,5.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 16407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,35.5 + parent: 2 +- proto: AirlockHeadOfPersonnelGlassLocked + entities: + - uid: 699 + components: + - type: Transform + pos: -10.5,6.5 + parent: 2 +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,4.5 + parent: 2 +- proto: AirlockHeadOfSecurityLocked + entities: + - uid: 7116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,18.5 + parent: 2 +- proto: AirlockHydroGlassLocked + entities: + - uid: 873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-12.5 + parent: 2 + - uid: 6750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 2 +- proto: AirlockJanitorLocked + entities: + - uid: 115 + components: + - type: Transform + pos: 20.5,16.5 + parent: 2 +- proto: AirlockKitchenGlassLocked + entities: + - uid: 6979 + components: + - type: Transform + pos: -21.5,-14.5 + parent: 2 + - uid: 12609 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 2 +- proto: AirlockMaintBarLocked + entities: + - uid: 136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-4.5 + parent: 2 +- proto: AirlockMaintCargoLocked + entities: + - uid: 6530 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 2 +- proto: AirlockMaintChapelLocked + entities: + - uid: 8407 + components: + - type: Transform + pos: -35.5,-45.5 + parent: 2 +- proto: AirlockMaintCommandLocked + entities: + - uid: 719 + components: + - type: Transform + pos: -13.5,8.5 + parent: 2 +- proto: AirlockMaintCommonLocked + entities: + - uid: 73 + components: + - type: Transform + pos: -58.5,-32.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: -33.5,-32.5 + parent: 2 + - uid: 312 + components: + - type: Transform + pos: -22.5,12.5 + parent: 2 + - uid: 316 + components: + - type: Transform + pos: -15.5,1.5 + parent: 2 + - uid: 343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,10.5 + parent: 2 + - uid: 452 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 497 + components: + - type: Transform + pos: -49.5,-36.5 + parent: 2 + - uid: 501 + components: + - type: Transform + pos: -0.5,20.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: -28.5,18.5 + parent: 2 + - uid: 770 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 811 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 2 + - uid: 854 + components: + - type: Transform + pos: -50.5,2.5 + parent: 2 + - uid: 1626 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 2 + - uid: 1802 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 + - uid: 1803 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 2 + - uid: 2176 + components: + - type: Transform + pos: -33.5,-37.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + pos: 16.5,3.5 + parent: 2 + - uid: 2345 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 2 + - uid: 2346 + components: + - type: Transform + pos: -62.5,-9.5 + parent: 2 + - uid: 2347 + components: + - type: Transform + pos: -12.5,-48.5 + parent: 2 + - uid: 2527 + components: + - type: Transform + pos: -38.5,17.5 + parent: 2 + - uid: 2621 + components: + - type: Transform + pos: -52.5,-18.5 + parent: 2 + - uid: 5829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-24.5 + parent: 2 + - uid: 6319 + components: + - type: Transform + pos: -42.5,17.5 + parent: 2 + - uid: 7218 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 + - uid: 7219 + components: + - type: Transform + pos: -42.5,-28.5 + parent: 2 + - uid: 7916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,-2.5 + parent: 2 + - uid: 9095 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 9096 + components: + - type: Transform + pos: -40.5,-50.5 + parent: 2 + - uid: 12406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 2 + - uid: 12864 + components: + - type: Transform + pos: -51.5,13.5 + parent: 2 + - uid: 13173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-24.5 + parent: 2 + - uid: 13643 + components: + - type: Transform + pos: 19.5,19.5 + parent: 2 + - uid: 14640 + components: + - type: Transform + pos: -54.5,16.5 + parent: 2 + - uid: 15043 + components: + - type: Transform + pos: 8.5,23.5 + parent: 2 + - uid: 16225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-49.5 + parent: 2 + - uid: 16260 + components: + - type: Transform + pos: -52.5,-52.5 + parent: 2 + - uid: 16274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-54.5 + parent: 2 +- proto: AirlockMaintEngiLocked + entities: + - uid: 11877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,8.5 + parent: 2 + - uid: 14690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,19.5 + parent: 2 +- proto: AirlockMaintHOPLocked + entities: + - uid: 698 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 +- proto: AirlockMaintJanitorLocked + entities: + - uid: 190 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 +- proto: AirlockMaintKitchenLocked + entities: + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-8.5 + parent: 2 +- proto: AirlockMaintLocked + entities: + - uid: 164 + components: + - type: Transform + pos: -25.5,-24.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-48.5 + parent: 2 + - uid: 8642 + components: + - type: Transform + pos: -42.5,-47.5 + parent: 2 + - uid: 8785 + components: + - type: Transform + pos: -30.5,-26.5 + parent: 2 + - uid: 13160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-22.5 + parent: 2 + - uid: 13162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-49.5 + parent: 2 + - uid: 13165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-47.5 + parent: 2 + - uid: 13166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-15.5 + parent: 2 +- proto: AirlockMaintMedLocked + entities: + - uid: 818 + components: + - type: Transform + pos: -49.5,-11.5 + parent: 2 + - uid: 819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-17.5 + parent: 2 + - uid: 7004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-23.5 + parent: 2 +- proto: AirlockMaintRnDLocked + entities: + - uid: 392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-43.5 + parent: 2 + - uid: 7217 + components: + - type: Transform + pos: -9.5,-45.5 + parent: 2 + - uid: 7220 + components: + - type: Transform + pos: -13.5,-43.5 + parent: 2 +- proto: AirlockMaintSalvageLocked + entities: + - uid: 6588 + components: + - type: Transform + pos: -7.5,-38.5 + parent: 2 +- proto: AirlockMaintSecLocked + entities: + - uid: 413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,6.5 + parent: 2 +- proto: AirlockMaintServiceLocked + entities: + - uid: 9022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 2 +- proto: AirlockMaintTheatreLocked + entities: + - uid: 1680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-15.5 + parent: 2 +- proto: AirlockMantisLocked + entities: + - uid: 5748 + components: + - type: Transform + pos: -50.5,-20.5 + parent: 2 +- proto: AirlockMedical + entities: + - uid: 443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 2 +- proto: AirlockMedicalGlass + entities: + - uid: 749 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 2 + - uid: 820 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-11.5 + parent: 2 + - uid: 741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-9.5 + parent: 2 + - uid: 744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-12.5 + parent: 2 + - uid: 746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-12.5 + parent: 2 + - uid: 761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-16.5 + parent: 2 + - uid: 766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 2 + - uid: 832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-8.5 + parent: 2 + - uid: 9230 + components: + - type: Transform + pos: -46.5,-12.5 + parent: 2 +- proto: AirlockMedicalLocked + entities: + - uid: 734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-12.5 + parent: 2 + - uid: 5482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-8.5 + parent: 2 + - uid: 6853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-5.5 + parent: 2 +- proto: AirlockQuartermasterGlassLocked + entities: + - uid: 6529 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 +- proto: AirlockResearchDirectorGlassLocked + entities: + - uid: 7216 + components: + - type: Transform + pos: -10.5,-43.5 + parent: 2 +- proto: AirlockSalvageGlassLocked + entities: + - uid: 6587 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 2 +- proto: AirlockSalvageLocked + entities: + - uid: 6590 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 2 +- proto: AirlockScienceGlassLocked + entities: + - uid: 264 + components: + - type: Transform + pos: -8.5,-68.5 + parent: 2 + - uid: 287 + components: + - type: Transform + pos: -9.5,-70.5 + parent: 2 + - uid: 379 + components: + - type: Transform + pos: -9.5,-71.5 + parent: 2 + - uid: 423 + components: + - type: Transform + pos: -13.5,-71.5 + parent: 2 + - uid: 462 + components: + - type: Transform + pos: -13.5,-70.5 + parent: 2 + - uid: 469 + components: + - type: Transform + pos: -14.5,-61.5 + parent: 2 + - uid: 479 + components: + - type: Transform + pos: -17.5,-64.5 + parent: 2 + - uid: 517 + components: + - type: Transform + pos: -15.5,-61.5 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: -15.5,-58.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: -15.5,-54.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: -14.5,-58.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: -14.5,-54.5 + parent: 2 + - uid: 580 + components: + - type: Transform + pos: -22.5,-43.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 2 + - uid: 645 + components: + - type: Transform + pos: -22.5,-42.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: -16.5,-43.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: -14.5,-50.5 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: -15.5,-47.5 + parent: 2 + - uid: 695 + components: + - type: Transform + pos: -15.5,-50.5 + parent: 2 + - uid: 1032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-59.5 + parent: 2 + - uid: 2357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-68.5 + parent: 2 + - uid: 3936 + components: + - type: Transform + pos: -17.5,-45.5 + parent: 2 + - uid: 6752 + components: + - type: Transform + pos: -14.5,-47.5 + parent: 2 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-19.5 + parent: 2 + - uid: 408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-21.5 + parent: 2 + - uid: 447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,24.5 + parent: 2 + - uid: 455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,21.5 + parent: 2 + - uid: 467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,21.5 + parent: 2 + - uid: 526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,24.5 + parent: 2 + - uid: 548 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 878 + components: + - type: Transform + pos: 6.5,28.5 + parent: 2 + - uid: 881 + components: + - type: Transform + pos: 5.5,28.5 + parent: 2 + - uid: 5844 + components: + - type: Transform + pos: 10.5,33.5 + parent: 2 + - uid: 5845 + components: + - type: Transform + pos: 9.5,31.5 + parent: 2 + - uid: 6107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,31.5 + parent: 2 + - uid: 8009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-3.5 + parent: 2 + - uid: 11709 + components: + - type: Transform + pos: 9.5,28.5 + parent: 2 + - uid: 16133 + components: + - type: Transform + pos: 17.5,28.5 + parent: 2 + - uid: 16134 + components: + - type: Transform + pos: 16.5,28.5 + parent: 2 + - uid: 16214 + components: + - type: Transform + pos: 18.5,33.5 + parent: 2 +- proto: AirlockSecurityLawyerGlassLocked + entities: + - uid: 58 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 2 + - uid: 1241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 2 + - uid: 2321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 2 + - uid: 3264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 2 + - uid: 5651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 2 +- proto: AirlockSecurityLocked + entities: + - uid: 8736 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 16085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,27.5 + parent: 2 +- proto: AirlockServiceCaptainLocked + entities: + - uid: 300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,8.5 + parent: 2 +- proto: AirlockServiceLocked + entities: + - uid: 3358 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - uid: 8731 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 2 +- proto: AirlockTheatreLocked + entities: + - uid: 1832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-16.5 + parent: 2 +- proto: AirlockVirologyLocked + entities: + - uid: 837 + components: + - type: Transform + pos: -42.5,-12.5 + parent: 2 +- proto: AirSensor + entities: + - uid: 5571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 225 + - uid: 5572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3479 + - uid: 5573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5534 + - uid: 6342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,10.5 + parent: 2 + - uid: 6356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6260 + - uid: 7018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12936 + - uid: 7019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12938 + - uid: 7020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13393 + - uid: 7021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13385 + - uid: 7022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1296 + - uid: 7023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12389 + - uid: 7221 + components: + - type: Transform + pos: -14.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13109 + - uid: 7222 + components: + - type: Transform + pos: -14.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13112 + - uid: 7223 + components: + - type: Transform + pos: -15.5,-66.5 + parent: 2 + - uid: 7224 + components: + - type: Transform + pos: -15.5,-71.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13114 + - uid: 7225 + components: + - type: Transform + pos: -11.5,-71.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13114 + - uid: 13111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13113 + - uid: 13375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13374 + - uid: 14710 + components: + - type: Transform + pos: -50.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14668 +- proto: AltarSpawner + entities: + - uid: 8613 + components: + - type: Transform + pos: -42.5,-45.5 + parent: 2 +- proto: AlwaysPoweredWallLight + entities: + - uid: 13144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-37.5 + parent: 2 +- proto: AnomalyScanner + entities: + - uid: 7146 + components: + - type: Transform + pos: -18.790756,-66.31606 + parent: 2 + - uid: 7147 + components: + - type: Transform + pos: -18.431982,-66.24332 + parent: 2 +- proto: APCBasic + entities: + - uid: 81 + components: + - type: Transform + pos: -46.5,34.5 + parent: 2 + - uid: 285 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 578 + components: + - type: Transform + pos: 28.5,1.5 + parent: 2 + - uid: 616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 2 + - uid: 1805 + components: + - type: Transform + pos: -64.5,-30.5 + parent: 2 + - uid: 2392 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - uid: 2623 + components: + - type: Transform + pos: -42.5,10.5 + parent: 2 + - uid: 2629 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 2631 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 2 + - uid: 2632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-9.5 + parent: 2 + - uid: 2633 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 2 + - uid: 2635 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - uid: 2637 + components: + - type: Transform + pos: -15.5,16.5 + parent: 2 + - uid: 2641 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - uid: 2642 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 2 + - uid: 2643 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 2 + - uid: 2644 + components: + - type: Transform + pos: -14.5,-43.5 + parent: 2 + - uid: 2645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-40.5 + parent: 2 + - uid: 2646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-60.5 + parent: 2 + - uid: 2648 + components: + - type: Transform + pos: -39.5,-39.5 + parent: 2 + - uid: 2652 + components: + - type: Transform + pos: -61.5,-19.5 + parent: 2 + - uid: 2653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-15.5 + parent: 2 + - uid: 2654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-7.5 + parent: 2 + - uid: 2823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 2 + - uid: 3700 + components: + - type: Transform + pos: -58.5,-2.5 + parent: 2 + - uid: 4439 + components: + - type: Transform + pos: 4.5,28.5 + parent: 2 + - uid: 4467 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 + - uid: 4476 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 2 + - uid: 4578 + components: + - type: Transform + pos: -17.5,8.5 + parent: 2 + - uid: 4770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,12.5 + parent: 2 + - uid: 4924 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 + - uid: 4932 + components: + - type: Transform + pos: -48.5,-5.5 + parent: 2 + - uid: 5666 + components: + - type: Transform + pos: -30.5,16.5 + parent: 2 + - uid: 6856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-14.5 + parent: 2 + - uid: 7044 + components: + - type: Transform + pos: -42.5,23.5 + parent: 2 + - uid: 7277 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 2 + - uid: 7394 + components: + - type: Transform + pos: -51.5,-18.5 + parent: 2 + - uid: 7411 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 7519 + components: + - type: Transform + pos: -1.5,20.5 + parent: 2 + - uid: 7844 + components: + - type: Transform + pos: -72.5,1.5 + parent: 2 + - uid: 8173 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 8248 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 8263 + components: + - type: Transform + pos: -58.5,-36.5 + parent: 2 + - uid: 8558 + components: + - type: Transform + pos: -53.5,-2.5 + parent: 2 + - uid: 8715 + components: + - type: Transform + pos: -41.5,-28.5 + parent: 2 + - uid: 8756 + components: + - type: Transform + pos: -33.5,-26.5 + parent: 2 + - uid: 8841 + components: + - type: Transform + pos: -20.5,-22.5 + parent: 2 + - uid: 9023 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - uid: 9444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,17.5 + parent: 2 + - uid: 9911 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 + - uid: 10163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-52.5 + parent: 2 + - uid: 10451 + components: + - type: Transform + pos: -82.5,-5.5 + parent: 2 + - uid: 10603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,-8.5 + parent: 2 + - uid: 11499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,-34.5 + parent: 2 + - type: Apc + lastExternalState: Good + lastChargeState: Full + - uid: 11678 + components: + - type: Transform + pos: -53.5,7.5 + parent: 2 + - uid: 14179 + components: + - type: Transform + pos: -30.5,8.5 + parent: 2 + - uid: 15015 + components: + - type: Transform + pos: -72.5,38.5 + parent: 2 + - uid: 16226 + components: + - type: Transform + pos: 15.5,27.5 + parent: 2 +- proto: APCElectronics + entities: + - uid: 5636 + components: + - type: Transform + pos: -52.5567,3.8565185 + parent: 2 +- proto: AppraisalTool + entities: + - uid: 12816 + components: + - type: Transform + pos: 3.260471,-32.46087 + parent: 2 +- proto: ArrivalsShuttleTimer + entities: + - uid: 12402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,1.5 + parent: 2 +- proto: Ash + entities: + - uid: 16270 + components: + - type: Transform + pos: -54.49015,-54.301952 + parent: 2 +- proto: AtmosDeviceFanTiny + entities: + - uid: 1386 + components: + - type: Transform + pos: -6.5,-59.5 + parent: 2 + - uid: 6673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-8.5 + parent: 2 + - uid: 11386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,-32.5 + parent: 2 + - uid: 11390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,-36.5 + parent: 2 + - uid: 12851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-23.5 + parent: 2 + - uid: 13690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 2 + - uid: 14216 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 + - uid: 14220 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2 + - uid: 14239 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 14240 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 14241 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 + - uid: 14242 + components: + - type: Transform + pos: 33.5,6.5 + parent: 2 + - uid: 14243 + components: + - type: Transform + pos: 33.5,13.5 + parent: 2 + - uid: 14244 + components: + - type: Transform + pos: 23.5,13.5 + parent: 2 + - uid: 14521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-11.5 + parent: 2 + - uid: 14540 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 2 + - uid: 14541 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 2 + - uid: 14915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,31.5 + parent: 2 + - uid: 15613 + components: + - type: Transform + pos: 34.5,22.5 + parent: 2 + - uid: 15938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,32.5 + parent: 2 + - uid: 16115 + components: + - type: Transform + pos: -84.5,3.5 + parent: 2 + - uid: 16116 + components: + - type: Transform + pos: -84.5,5.5 + parent: 2 + - uid: 16117 + components: + - type: Transform + pos: -84.5,-2.5 + parent: 2 + - uid: 16118 + components: + - type: Transform + pos: -84.5,-4.5 + parent: 2 + - uid: 16215 + components: + - type: Transform + pos: 19.5,35.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 6674 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - uid: 6675 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 2 + - uid: 6676 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 2 + - uid: 6677 + components: + - type: Transform + pos: -15.5,-10.5 + parent: 2 + - uid: 6678 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 2 + - uid: 6679 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 2 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 4806 + components: + - type: Transform + pos: -39.5,24.5 + parent: 2 + - uid: 6021 + components: + - type: Transform + pos: -40.5,24.5 + parent: 2 + - uid: 6059 + components: + - type: Transform + pos: -41.5,24.5 + parent: 2 +- proto: AtmosFixOxygenMarker + entities: + - uid: 1760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,26.5 + parent: 2 + - uid: 1762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,26.5 + parent: 2 + - uid: 12795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,26.5 + parent: 2 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 4897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,30.5 + parent: 2 + - uid: 4899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,30.5 + parent: 2 + - uid: 6027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,30.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 2848 + components: + - type: Transform + pos: -18.5,-41.5 + parent: 2 + - uid: 6312 + components: + - type: Transform + pos: -36.5,5.5 + parent: 2 +- proto: BackgammonBoard + entities: + - uid: 15657 + components: + - type: Transform + pos: 4.3293595,41.589188 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: BalloonNT + entities: + - uid: 8454 + components: + - type: Transform + pos: -60.638313,-5.63952 + parent: 2 +- proto: BananaPhoneInstrument + entities: + - uid: 8989 + components: + - type: Transform + pos: 8.324597,-18.755806 + parent: 2 +- proto: BannerCargo + entities: + - uid: 1224 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 2 + - uid: 6517 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 2 +- proto: BannerNanotrasen + entities: + - uid: 11369 + components: + - type: Transform + pos: -87.5,-37.5 + parent: 2 + - uid: 11375 + components: + - type: Transform + pos: -87.5,-31.5 + parent: 2 +- proto: BarberScissors + entities: + - uid: 14522 + components: + - type: Transform + pos: -0.27750063,-9.374335 + parent: 2 +- proto: Barricade + entities: + - uid: 424 + components: + - type: Transform + pos: -71.5,-24.5 + parent: 2 + - uid: 433 + components: + - type: Transform + pos: -72.5,-15.5 + parent: 2 + - uid: 435 + components: + - type: Transform + pos: -67.5,-28.5 + parent: 2 + - uid: 2031 + components: + - type: Transform + pos: -68.5,-18.5 + parent: 2 + - uid: 6194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-46.5 + parent: 2 + - uid: 9614 + components: + - type: Transform + pos: -30.5,-45.5 + parent: 2 + - uid: 9615 + components: + - type: Transform + pos: -30.5,-42.5 + parent: 2 + - uid: 9616 + components: + - type: Transform + pos: -33.5,-40.5 + parent: 2 + - uid: 9618 + components: + - type: Transform + pos: -33.5,-46.5 + parent: 2 +- proto: BarricadeBlock + entities: + - uid: 3150 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 4795 + components: + - type: Transform + pos: -76.5,-5.5 + parent: 2 + - uid: 16163 + components: + - type: Transform + pos: -54.5,16.5 + parent: 2 + - uid: 16165 + components: + - type: Transform + pos: -51.5,13.5 + parent: 2 + - uid: 16241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-49.5 + parent: 2 + - uid: 16268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-52.5 + parent: 2 +- proto: BarSignMaidCafe + entities: + - uid: 12383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-13.5 + parent: 2 +- proto: BaseGasCondenser + entities: + - uid: 14575 + components: + - type: Transform + pos: -56.5,35.5 + parent: 2 + - uid: 14636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-7.5 + parent: 2 +- proto: BassGuitarInstrument + entities: + - uid: 3370 + components: + - type: Transform + pos: 8.577337,-17.406464 + parent: 2 +- proto: Beaker + entities: + - uid: 13208 + components: + - type: Transform + pos: -37.424694,-6.372337 + parent: 2 +- proto: Bed + entities: + - uid: 1583 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 + - uid: 5025 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 2 + - uid: 5541 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 5831 + components: + - type: Transform + pos: 9.5,41.5 + parent: 2 + - uid: 5915 + components: + - type: Transform + pos: 2.5,42.5 + parent: 2 + - uid: 5929 + components: + - type: Transform + pos: 11.5,41.5 + parent: 2 + - uid: 6373 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - uid: 6466 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 2 + - uid: 6660 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 2 + - uid: 8177 + components: + - type: Transform + pos: -54.5,-31.5 + parent: 2 + - uid: 8178 + components: + - type: Transform + pos: -49.5,-28.5 + parent: 2 + - uid: 8179 + components: + - type: Transform + pos: -56.5,-23.5 + parent: 2 + - uid: 8180 + components: + - type: Transform + pos: -47.5,-25.5 + parent: 2 + - uid: 8181 + components: + - type: Transform + pos: -47.5,-21.5 + parent: 2 + - uid: 8634 + components: + - type: Transform + pos: -35.5,-38.5 + parent: 2 + - uid: 8730 + components: + - type: Transform + pos: -33.5,-29.5 + parent: 2 + - uid: 11606 + components: + - type: Transform + pos: 0.5,41.5 + parent: 2 + - uid: 11664 + components: + - type: Transform + pos: 9.5,42.5 + parent: 2 + - uid: 12907 + components: + - type: Transform + pos: -43.5,-3.5 + parent: 2 + - uid: 12909 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - uid: 15310 + components: + - type: Transform + pos: 2.5,41.5 + parent: 2 +- proto: BedsheetBlack + entities: + - uid: 8635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-38.5 + parent: 2 +- proto: BedsheetBrown + entities: + - uid: 8791 + components: + - type: Transform + pos: -33.5,-29.5 + parent: 2 +- proto: BedsheetCaptain + entities: + - uid: 7238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,12.5 + parent: 2 +- proto: BedsheetCE + entities: + - uid: 6374 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 +- proto: BedsheetCMO + entities: + - uid: 9490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-6.5 + parent: 2 +- proto: BedsheetGreen + entities: + - uid: 12889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-16.5 + parent: 2 + - uid: 12890 + components: + - type: Transform + pos: -41.5,-16.5 + parent: 2 +- proto: BedsheetHOP + entities: + - uid: 5487 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 +- proto: BedsheetMedical + entities: + - uid: 6996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-20.5 + parent: 2 + - uid: 6997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-22.5 + parent: 2 + - uid: 9595 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 12911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-3.5 + parent: 2 + - uid: 12912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-3.5 + parent: 2 +- proto: BedsheetOrange + entities: + - uid: 4447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,41.5 + parent: 2 + - uid: 5930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,42.5 + parent: 2 + - uid: 5933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,41.5 + parent: 2 + - uid: 5937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,41.5 + parent: 2 + - uid: 11585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,41.5 + parent: 2 + - uid: 11607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,42.5 + parent: 2 +- proto: BedsheetQM + entities: + - uid: 6467 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 2 +- proto: BedsheetSpawner + entities: + - uid: 8183 + components: + - type: Transform + pos: -54.5,-31.5 + parent: 2 + - uid: 8184 + components: + - type: Transform + pos: -49.5,-28.5 + parent: 2 + - uid: 8185 + components: + - type: Transform + pos: -56.5,-23.5 + parent: 2 + - uid: 8186 + components: + - type: Transform + pos: -47.5,-25.5 + parent: 2 + - uid: 8187 + components: + - type: Transform + pos: -47.5,-21.5 + parent: 2 + - uid: 9192 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 2 +- proto: BenchSofaCorpCorner + entities: + - uid: 6712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-15.5 + parent: 2 + - uid: 9404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-8.5 + parent: 2 + - uid: 10460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,1.5 + parent: 2 + - uid: 10461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,-0.5 + parent: 2 +- proto: BenchSofaCorpLeft + entities: + - uid: 6682 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 8740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-15.5 + parent: 2 + - uid: 10463 + components: + - type: Transform + pos: -82.5,1.5 + parent: 2 +- proto: BenchSofaCorpMiddle + entities: + - uid: 5542 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 + - uid: 5778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-15.5 + parent: 2 + - uid: 9407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-9.5 + parent: 2 + - uid: 9523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 2 + - uid: 10464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,0.5 + parent: 2 +- proto: BenchSofaCorpRight + entities: + - uid: 4716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-10.5 + parent: 2 + - uid: 5823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 2 + - uid: 10462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,-0.5 + parent: 2 +- proto: BenchSteelLeft + entities: + - uid: 7978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-36.5 + parent: 2 +- proto: BenchSteelMiddle + entities: + - uid: 7979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-36.5 + parent: 2 +- proto: BenchSteelRight + entities: + - uid: 7972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-36.5 + parent: 2 +- proto: BenchSteelWhiteLeft + entities: + - uid: 6820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-7.5 + parent: 2 + - uid: 6824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-11.5 + parent: 2 +- proto: BenchSteelWhiteRight + entities: + - uid: 6821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-8.5 + parent: 2 + - uid: 6823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-11.5 + parent: 2 +- proto: Biofabricator + entities: + - uid: 12620 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 2 +- proto: BiomassReclaimer + entities: + - uid: 8722 + components: + - type: Transform + pos: -47.5,-13.5 + parent: 2 +- proto: BlastDoor + entities: + - uid: 1319 + components: + - type: Transform + pos: -16.5,-57.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12497 + - 7137 + - uid: 1320 + components: + - type: Transform + pos: -16.5,-56.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12497 + - 7137 + - uid: 1321 + components: + - type: Transform + pos: -16.5,-55.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12497 + - 7137 + - uid: 1322 + components: + - type: Transform + pos: -13.5,-55.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12497 + - 7137 + - uid: 1323 + components: + - type: Transform + pos: -13.5,-56.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12497 + - 7137 + - uid: 1324 + components: + - type: Transform + pos: -13.5,-57.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12497 + - 7137 + - uid: 1452 + components: + - type: Transform + pos: -11.5,-72.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10149 + - uid: 1453 + components: + - type: Transform + pos: -15.5,-72.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14252 + - uid: 1584 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 2 + - uid: 1585 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 2 + - uid: 1587 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 2 + - uid: 4846 + components: + - type: Transform + pos: -54.5,24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6066 + - uid: 4895 + components: + - type: Transform + pos: -51.5,41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6061 + - 5968 + - uid: 4896 + components: + - type: Transform + pos: -54.5,25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6066 + - uid: 5967 + components: + - type: Transform + pos: -50.5,41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6061 + - 5968 + - uid: 6058 + components: + - type: Transform + pos: -54.5,26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6066 + - uid: 7094 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 2 + - uid: 7145 + components: + - type: Transform + pos: -25.5,-36.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7189 + - uid: 7153 + components: + - type: Transform + pos: -16.5,-69.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14253 + - uid: 7178 + components: + - type: Transform + pos: -26.5,-36.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7189 + - uid: 11628 + components: + - type: Transform + pos: -72.5,35.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15623 + - uid: 11632 + components: + - type: Transform + pos: -71.5,38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15623 + - uid: 11633 + components: + - type: Transform + pos: -73.5,38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15623 + - uid: 12118 + components: + - type: Transform + pos: -63.5,-23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12860 + - uid: 12193 + components: + - type: Transform + pos: 14.5,34.5 + parent: 2 + - uid: 15193 + components: + - type: Transform + pos: -75.5,27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15197 + - uid: 15194 + components: + - type: Transform + pos: -77.5,27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15197 + - uid: 15195 + components: + - type: Transform + pos: -76.5,27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15197 +- proto: BlastDoorOpen + entities: + - uid: 5523 + components: + - type: Transform + pos: -20.5,14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 5524 + - uid: 5525 + components: + - type: Transform + pos: -20.5,15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 5524 + - uid: 5526 + components: + - type: Transform + pos: -6.5,14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 5524 + - uid: 5527 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 5524 + - uid: 15153 + components: + - type: Transform + pos: -66.5,26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15152 + - 15618 + - uid: 15154 + components: + - type: Transform + pos: -66.5,25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15152 + - 15618 + - uid: 15155 + components: + - type: Transform + pos: -66.5,24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15152 + - 15618 + - uid: 15156 + components: + - type: Transform + pos: -71.5,27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15136 + - uid: 15232 + components: + - type: Transform + pos: -73.5,27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15136 +- proto: BlockGameArcade + entities: + - uid: 1317 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 8118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,4.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 15952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,34.5 + parent: 2 + - type: SpamEmitSound + enabled: False +- proto: Bonfire + entities: + - uid: 8237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,-6.5 + parent: 2 + - uid: 13094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,34.5 + parent: 2 +- proto: BookNarsieLegend + entities: + - uid: 8787 + components: + - type: Transform + pos: -34.645348,-28.676172 + parent: 2 +- proto: BooksBag + entities: + - uid: 2069 + components: + - type: Transform + pos: -34.535583,-28.479477 + parent: 2 +- proto: BookshelfFilled + entities: + - uid: 7968 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 8592 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 + - uid: 8789 + components: + - type: Transform + pos: -31.5,-27.5 + parent: 2 + - uid: 8792 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 2 + - uid: 8793 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 2 + - uid: 8808 + components: + - type: Transform + pos: -26.5,-31.5 + parent: 2 + - uid: 12846 + components: + - type: Transform + pos: -26.5,-30.5 + parent: 2 + - uid: 14758 + components: + - type: Transform + pos: -27.5,-31.5 + parent: 2 +- proto: BookTruth + entities: + - uid: 15760 + components: + - type: Transform + pos: 2.6653397,41.390457 + parent: 2 +- proto: BoozeDispenser + entities: + - uid: 6637 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - uid: 7154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-42.5 + parent: 2 +- proto: BorgCharger + entities: + - uid: 3288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-51.5 + parent: 2 + - uid: 7081 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 2 +- proto: BoxBeaker + entities: + - uid: 3352 + components: + - type: Transform + pos: -18.377687,-44.003197 + parent: 2 + - uid: 14204 + components: + - type: Transform + pos: -35.712524,-4.097505 + parent: 2 +- proto: BoxBeanbag + entities: + - uid: 192 + components: + - type: Transform + pos: 9.504546,15.696196 + parent: 2 + - uid: 6646 + components: + - type: Transform + pos: -11.366594,-3.685844 + parent: 2 + - uid: 15736 + components: + - type: Transform + parent: 15660 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: BoxBodyBag + entities: + - uid: 6974 + components: + - type: Transform + pos: -39.49205,-16.400173 + parent: 2 + - uid: 8629 + components: + - type: Transform + pos: -37.49115,-44.32949 + parent: 2 + - uid: 13662 + components: + - type: Transform + parent: 5580 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16219 + components: + - type: Transform + pos: 12.528133,30.776741 + parent: 2 +- proto: BoxCandle + entities: + - uid: 8637 + components: + - type: Transform + pos: -38.652706,-38.282543 + parent: 2 +- proto: BoxDarts + entities: + - uid: 5472 + components: + - type: Transform + pos: -10.502023,-13.2908745 + parent: 2 +- proto: BoxEncryptionKeyPrisoner + entities: + - uid: 15719 + components: + - type: Transform + parent: 15660 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: BoxFlashbang + entities: + - uid: 16030 + components: + - type: Transform + pos: 4.343387,26.845251 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 16050 + components: + - type: Transform + pos: 10.219779,14.631623 + parent: 2 +- proto: BoxFolderBlue + entities: + - uid: 5581 + components: + - type: Transform + pos: -10.462236,9.6757145 + parent: 2 + - uid: 8378 + components: + - type: Transform + pos: 7.580028,-5.2727942 + parent: 2 +- proto: BoxFolderRed + entities: + - uid: 8377 + components: + - type: Transform + pos: 4.389017,-5.2444205 + parent: 2 + - uid: 8809 + components: + - type: Transform + pos: 1.3452368,19.88179 + parent: 2 +- proto: BoxFolderYellow + entities: + - uid: 13072 + components: + - type: Transform + pos: -0.6550728,-23.393314 + parent: 2 +- proto: BoxHandcuff + entities: + - uid: 15203 + components: + - type: Transform + pos: 10.657466,14.666233 + parent: 2 +- proto: BoxingBell + entities: + - uid: 8917 + components: + - type: Transform + pos: -13.5,-25.5 + parent: 2 +- proto: BoxLethalshot + entities: + - uid: 3883 + components: + - type: Transform + pos: 9.52937,15.355085 + parent: 2 +- proto: BoxPDAPrisoner + entities: + - uid: 15409 + components: + - type: Transform + parent: 15660 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: BoxShotgunIncendiary + entities: + - uid: 15984 + components: + - type: Transform + pos: 9.465853,15.709407 + parent: 2 +- proto: BoxShotgunSlug + entities: + - uid: 15985 + components: + - type: Transform + pos: 9.517674,15.468745 + parent: 2 +- proto: BoxZiptie + entities: + - uid: 15202 + components: + - type: Transform + pos: 10.657046,14.446586 + parent: 2 + - uid: 16015 + components: + - type: Transform + pos: 5.609897,11.992479 + parent: 2 + - uid: 16033 + components: + - type: Transform + pos: 4.3108916,26.591747 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: BrbSign + entities: + - uid: 6937 + components: + - type: Transform + pos: -9.471312,2.466256 + parent: 2 +- proto: BrigTimer + entities: + - uid: 565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,30.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 412: + - Start: Off + - Timer: On + - uid: 5917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,30.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15936: + - Start: Off + - Timer: On + - uid: 5918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,29.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15933: + - Start: Off + - Timer: On + - uid: 11592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,29.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 559: + - Start: Off + - Timer: On +- proto: Bucket + entities: + - uid: 529 + components: + - type: Transform + pos: -57.80567,-14.32648 + parent: 2 + - uid: 997 + components: + - type: Transform + pos: 12.277589,39.625134 + parent: 2 + - uid: 9608 + components: + - type: Transform + pos: -40.294956,-52.461815 + parent: 2 + - uid: 11557 + components: + - type: Transform + pos: 12.585637,39.800426 + parent: 2 + - uid: 14235 + components: + - type: Transform + pos: -57.43154,-14.2669325 + parent: 2 + - uid: 14236 + components: + - type: Transform + pos: -57.16814,-14.268267 + parent: 2 + - uid: 14832 + components: + - type: Transform + pos: 16.280304,15.516066 + parent: 2 +- proto: ButtonFrameCaution + entities: + - uid: 1983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-67.5 + parent: 2 + - uid: 4898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,27.5 + parent: 2 + - uid: 5966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,41.5 + parent: 2 + - uid: 6031 + components: + - type: Transform + pos: -53.5,36.5 + parent: 2 + - uid: 7074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 2 + - uid: 7989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-68.5 + parent: 2 + - uid: 8745 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 12479 + components: + - type: Transform + pos: -11.5,16.5 + parent: 2 + - uid: 12488 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 12490 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 + - uid: 12496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-38.5 + parent: 2 + - uid: 12498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-54.5 + parent: 2 + - uid: 12499 + components: + - type: Transform + pos: -13.5,-58.5 + parent: 2 + - uid: 12507 + components: + - type: Transform + pos: -11.5,6.5 + parent: 2 + - uid: 12614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 2 + - uid: 13104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-68.5 + parent: 2 + - uid: 13821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 2 + - uid: 14182 + components: + - type: Transform + pos: -31.5,8.5 + parent: 2 + - uid: 14248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,9.5 + parent: 2 + - uid: 15139 + components: + - type: Transform + pos: -64.5,27.5 + parent: 2 + - uid: 15148 + components: + - type: Transform + pos: -71.5,31.5 + parent: 2 + - uid: 15196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,27.5 + parent: 2 + - uid: 15619 + components: + - type: Transform + pos: -67.5,27.5 + parent: 2 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 15624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,27.5 + parent: 2 +- proto: ButtonFrameGrey + entities: + - uid: 12491 + components: + - type: Transform + pos: -45.5,-30.5 + parent: 2 + - uid: 12492 + components: + - type: Transform + pos: -45.5,-28.5 + parent: 2 + - uid: 12493 + components: + - type: Transform + pos: -39.5,-28.5 + parent: 2 + - uid: 12494 + components: + - type: Transform + pos: -39.5,-30.5 + parent: 2 +- proto: ButtonFrameJanitor + entities: + - uid: 12478 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - uid: 12481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,16.5 + parent: 2 + - uid: 12482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,6.5 + parent: 2 + - uid: 12486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-12.5 + parent: 2 + - uid: 12501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-9.5 + parent: 2 + - uid: 12504 + components: + - type: Transform + pos: -15.5,-43.5 + parent: 2 + - uid: 12506 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 109 + components: + - type: Transform + pos: -30.5,9.5 + parent: 2 + - uid: 117 + components: + - type: Transform + pos: 8.5,23.5 + parent: 2 + - uid: 198 + components: + - type: Transform + pos: 28.5,1.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 213 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 + - uid: 215 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 228 + components: + - type: Transform + pos: -32.5,5.5 + parent: 2 + - uid: 232 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 234 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - uid: 257 + components: + - type: Transform + pos: -47.5,-8.5 + parent: 2 + - uid: 259 + components: + - type: Transform + pos: -48.5,-5.5 + parent: 2 + - uid: 268 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 + - uid: 523 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 527 + components: + - type: Transform + pos: 9.5,23.5 + parent: 2 + - uid: 542 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 544 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 560 + components: + - type: Transform + pos: 1.5,32.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: 8.5,11.5 + parent: 2 + - uid: 822 + components: + - type: Transform + pos: 3.5,28.5 + parent: 2 + - uid: 942 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 965 + components: + - type: Transform + pos: 4.5,34.5 + parent: 2 + - uid: 1422 + components: + - type: Transform + pos: -29.5,9.5 + parent: 2 + - uid: 1423 + components: + - type: Transform + pos: -28.5,9.5 + parent: 2 + - uid: 1561 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 2 + - uid: 1678 + components: + - type: Transform + pos: 11.5,23.5 + parent: 2 + - uid: 1738 + components: + - type: Transform + pos: -55.5,32.5 + parent: 2 + - uid: 1739 + components: + - type: Transform + pos: -55.5,33.5 + parent: 2 + - uid: 1740 + components: + - type: Transform + pos: -55.5,34.5 + parent: 2 + - uid: 1741 + components: + - type: Transform + pos: -54.5,33.5 + parent: 2 + - uid: 1744 + components: + - type: Transform + pos: -53.5,33.5 + parent: 2 + - uid: 1746 + components: + - type: Transform + pos: -50.5,36.5 + parent: 2 + - uid: 1747 + components: + - type: Transform + pos: -50.5,37.5 + parent: 2 + - uid: 1748 + components: + - type: Transform + pos: -50.5,39.5 + parent: 2 + - uid: 1749 + components: + - type: Transform + pos: -50.5,40.5 + parent: 2 + - uid: 1750 + components: + - type: Transform + pos: -52.5,33.5 + parent: 2 + - uid: 1751 + components: + - type: Transform + pos: -51.5,33.5 + parent: 2 + - uid: 1752 + components: + - type: Transform + pos: -49.5,33.5 + parent: 2 + - uid: 1884 + components: + - type: Transform + pos: -76.5,33.5 + parent: 2 + - uid: 2203 + components: + - type: Transform + pos: -52.5,-20.5 + parent: 2 + - uid: 2223 + components: + - type: Transform + pos: -77.5,26.5 + parent: 2 + - uid: 2225 + components: + - type: Transform + pos: -77.5,28.5 + parent: 2 + - uid: 2244 + components: + - type: Transform + pos: -45.5,-17.5 + parent: 2 + - uid: 2245 + components: + - type: Transform + pos: -44.5,-18.5 + parent: 2 + - uid: 2252 + components: + - type: Transform + pos: -75.5,29.5 + parent: 2 + - uid: 2417 + components: + - type: Transform + pos: -69.5,29.5 + parent: 2 + - uid: 2418 + components: + - type: Transform + pos: -68.5,30.5 + parent: 2 + - uid: 2429 + components: + - type: Transform + pos: -73.5,29.5 + parent: 2 + - uid: 2624 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 2 + - uid: 2626 + components: + - type: Transform + pos: -68.5,29.5 + parent: 2 + - uid: 2639 + components: + - type: Transform + pos: -29.5,16.5 + parent: 2 + - uid: 2992 + components: + - type: Transform + pos: -49.5,-17.5 + parent: 2 + - uid: 2993 + components: + - type: Transform + pos: -48.5,-17.5 + parent: 2 + - uid: 3007 + components: + - type: Transform + pos: -47.5,-17.5 + parent: 2 + - uid: 3011 + components: + - type: Transform + pos: -46.5,-17.5 + parent: 2 + - uid: 3078 + components: + - type: Transform + pos: -49.5,-15.5 + parent: 2 + - uid: 3107 + components: + - type: Transform + pos: -39.5,-34.5 + parent: 2 + - uid: 3135 + components: + - type: Transform + pos: -49.5,-16.5 + parent: 2 + - uid: 3280 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 3372 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - uid: 3403 + components: + - type: Transform + pos: -43.5,-39.5 + parent: 2 + - uid: 3747 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 3991 + components: + - type: Transform + pos: -45.5,-18.5 + parent: 2 + - uid: 4048 + components: + - type: Transform + pos: 6.5,24.5 + parent: 2 + - uid: 4440 + components: + - type: Transform + pos: 4.5,28.5 + parent: 2 + - uid: 4454 + components: + - type: Transform + pos: 6.5,23.5 + parent: 2 + - uid: 4455 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 + - uid: 4456 + components: + - type: Transform + pos: 6.5,21.5 + parent: 2 + - uid: 4457 + components: + - type: Transform + pos: 6.5,20.5 + parent: 2 + - uid: 4458 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 + - uid: 4459 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - uid: 4460 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 4461 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 4462 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 4463 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 4464 + components: + - type: Transform + pos: 2.5,19.5 + parent: 2 + - uid: 4465 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - uid: 4466 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 + - uid: 4470 + components: + - type: Transform + pos: 10.5,23.5 + parent: 2 + - uid: 4471 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 + - uid: 4472 + components: + - type: Transform + pos: 9.5,16.5 + parent: 2 + - uid: 4473 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - uid: 4474 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 + - uid: 4475 + components: + - type: Transform + pos: 6.5,25.5 + parent: 2 + - uid: 4478 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 4479 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 + - uid: 4480 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 4481 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 4482 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 4483 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 4484 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 4485 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 + - uid: 4486 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 + - uid: 4487 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 4488 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 4489 + components: + - type: Transform + pos: 3.5,14.5 + parent: 2 + - uid: 4490 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 4491 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 4492 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 4493 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - uid: 4494 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 + - uid: 4495 + components: + - type: Transform + pos: 8.5,10.5 + parent: 2 + - uid: 4496 + components: + - type: Transform + pos: 2.5,11.5 + parent: 2 + - uid: 4497 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 + - uid: 4498 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 4499 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 4500 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 4501 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 4502 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 4503 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 4505 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - uid: 4506 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 4507 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 4508 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 4509 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 4510 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 4511 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 4512 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 4513 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - uid: 4514 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 4515 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 4516 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 4517 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 4518 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 4519 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 4566 + components: + - type: Transform + pos: 12.5,23.5 + parent: 2 + - uid: 4579 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - uid: 4580 + components: + - type: Transform + pos: -11.5,9.5 + parent: 2 + - uid: 4581 + components: + - type: Transform + pos: -10.5,9.5 + parent: 2 + - uid: 4582 + components: + - type: Transform + pos: -9.5,9.5 + parent: 2 + - uid: 4583 + components: + - type: Transform + pos: -8.5,12.5 + parent: 2 + - uid: 4584 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 + - uid: 4585 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 4586 + components: + - type: Transform + pos: -8.5,10.5 + parent: 2 + - uid: 4587 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 4588 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - uid: 4589 + components: + - type: Transform + pos: -10.5,8.5 + parent: 2 + - uid: 4590 + components: + - type: Transform + pos: -10.5,7.5 + parent: 2 + - uid: 4591 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - uid: 4592 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 4593 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 4594 + components: + - type: Transform + pos: -11.5,4.5 + parent: 2 + - uid: 4595 + components: + - type: Transform + pos: -10.5,4.5 + parent: 2 + - uid: 4596 + components: + - type: Transform + pos: -9.5,4.5 + parent: 2 + - uid: 4597 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - uid: 4598 + components: + - type: Transform + pos: -7.5,4.5 + parent: 2 + - uid: 4599 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 4600 + components: + - type: Transform + pos: -17.5,8.5 + parent: 2 + - uid: 4601 + components: + - type: Transform + pos: -17.5,7.5 + parent: 2 + - uid: 4602 + components: + - type: Transform + pos: -17.5,6.5 + parent: 2 + - uid: 4603 + components: + - type: Transform + pos: -17.5,9.5 + parent: 2 + - uid: 4604 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 4605 + components: + - type: Transform + pos: -17.5,11.5 + parent: 2 + - uid: 4606 + components: + - type: Transform + pos: -16.5,11.5 + parent: 2 + - uid: 4607 + components: + - type: Transform + pos: -15.5,11.5 + parent: 2 + - uid: 4608 + components: + - type: Transform + pos: -15.5,16.5 + parent: 2 + - uid: 4609 + components: + - type: Transform + pos: -15.5,15.5 + parent: 2 + - uid: 4610 + components: + - type: Transform + pos: -15.5,14.5 + parent: 2 + - uid: 4611 + components: + - type: Transform + pos: -17.5,14.5 + parent: 2 + - uid: 4612 + components: + - type: Transform + pos: -16.5,14.5 + parent: 2 + - uid: 4613 + components: + - type: Transform + pos: -14.5,14.5 + parent: 2 + - uid: 4614 + components: + - type: Transform + pos: -13.5,14.5 + parent: 2 + - uid: 4615 + components: + - type: Transform + pos: -12.5,14.5 + parent: 2 + - uid: 4616 + components: + - type: Transform + pos: -11.5,14.5 + parent: 2 + - uid: 4617 + components: + - type: Transform + pos: -10.5,14.5 + parent: 2 + - uid: 4618 + components: + - type: Transform + pos: -9.5,14.5 + parent: 2 + - uid: 4619 + components: + - type: Transform + pos: -7.5,15.5 + parent: 2 + - uid: 4620 + components: + - type: Transform + pos: -7.5,14.5 + parent: 2 + - uid: 4621 + components: + - type: Transform + pos: -18.5,14.5 + parent: 2 + - uid: 4622 + components: + - type: Transform + pos: -19.5,14.5 + parent: 2 + - uid: 4623 + components: + - type: Transform + pos: -20.5,14.5 + parent: 2 + - uid: 4624 + components: + - type: Transform + pos: -15.5,17.5 + parent: 2 + - uid: 4625 + components: + - type: Transform + pos: -15.5,18.5 + parent: 2 + - uid: 4626 + components: + - type: Transform + pos: -15.5,19.5 + parent: 2 + - uid: 4627 + components: + - type: Transform + pos: -14.5,19.5 + parent: 2 + - uid: 4628 + components: + - type: Transform + pos: -13.5,19.5 + parent: 2 + - uid: 4629 + components: + - type: Transform + pos: -12.5,19.5 + parent: 2 + - uid: 4630 + components: + - type: Transform + pos: -11.5,19.5 + parent: 2 + - uid: 4631 + components: + - type: Transform + pos: -10.5,19.5 + parent: 2 + - uid: 4632 + components: + - type: Transform + pos: -9.5,19.5 + parent: 2 + - uid: 4633 + components: + - type: Transform + pos: -9.5,18.5 + parent: 2 + - uid: 4634 + components: + - type: Transform + pos: -16.5,18.5 + parent: 2 + - uid: 4635 + components: + - type: Transform + pos: -17.5,18.5 + parent: 2 + - uid: 4636 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 + - uid: 4637 + components: + - type: Transform + pos: -13.5,20.5 + parent: 2 + - uid: 4638 + components: + - type: Transform + pos: -13.5,21.5 + parent: 2 + - uid: 4639 + components: + - type: Transform + pos: -16.5,20.5 + parent: 2 + - uid: 4640 + components: + - type: Transform + pos: -15.5,20.5 + parent: 2 + - uid: 4641 + components: + - type: Transform + pos: -9.5,20.5 + parent: 2 + - uid: 4642 + components: + - type: Transform + pos: -8.5,18.5 + parent: 2 + - uid: 4643 + components: + - type: Transform + pos: -12.5,18.5 + parent: 2 + - uid: 4644 + components: + - type: Transform + pos: -12.5,17.5 + parent: 2 + - uid: 4645 + components: + - type: Transform + pos: -6.5,14.5 + parent: 2 + - uid: 4646 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - uid: 4647 + components: + - type: Transform + pos: -8.5,15.5 + parent: 2 + - uid: 4648 + components: + - type: Transform + pos: -9.5,15.5 + parent: 2 + - uid: 4709 + components: + - type: Transform + pos: -37.5,12.5 + parent: 2 + - uid: 4710 + components: + - type: Transform + pos: -34.5,15.5 + parent: 2 + - uid: 4711 + components: + - type: Transform + pos: -34.5,14.5 + parent: 2 + - uid: 4712 + components: + - type: Transform + pos: -34.5,13.5 + parent: 2 + - uid: 4714 + components: + - type: Transform + pos: -34.5,12.5 + parent: 2 + - uid: 4715 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - uid: 4718 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - uid: 4719 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - uid: 4720 + components: + - type: Transform + pos: -33.5,5.5 + parent: 2 + - uid: 4721 + components: + - type: Transform + pos: -34.5,5.5 + parent: 2 + - uid: 4722 + components: + - type: Transform + pos: -35.5,5.5 + parent: 2 + - uid: 4723 + components: + - type: Transform + pos: -36.5,5.5 + parent: 2 + - uid: 4724 + components: + - type: Transform + pos: -37.5,5.5 + parent: 2 + - uid: 4725 + components: + - type: Transform + pos: -38.5,5.5 + parent: 2 + - uid: 4726 + components: + - type: Transform + pos: -38.5,4.5 + parent: 2 + - uid: 4727 + components: + - type: Transform + pos: -38.5,3.5 + parent: 2 + - uid: 4728 + components: + - type: Transform + pos: -39.5,3.5 + parent: 2 + - uid: 4729 + components: + - type: Transform + pos: -40.5,3.5 + parent: 2 + - uid: 4730 + components: + - type: Transform + pos: -41.5,3.5 + parent: 2 + - uid: 4731 + components: + - type: Transform + pos: -42.5,3.5 + parent: 2 + - uid: 4732 + components: + - type: Transform + pos: -47.5,-9.5 + parent: 2 + - uid: 4734 + components: + - type: Transform + pos: -45.5,3.5 + parent: 2 + - uid: 4735 + components: + - type: Transform + pos: -46.5,3.5 + parent: 2 + - uid: 4736 + components: + - type: Transform + pos: -46.5,4.5 + parent: 2 + - uid: 4737 + components: + - type: Transform + pos: -46.5,5.5 + parent: 2 + - uid: 4738 + components: + - type: Transform + pos: -46.5,6.5 + parent: 2 + - uid: 4739 + components: + - type: Transform + pos: -46.5,7.5 + parent: 2 + - uid: 4740 + components: + - type: Transform + pos: -46.5,8.5 + parent: 2 + - uid: 4741 + components: + - type: Transform + pos: -45.5,8.5 + parent: 2 + - uid: 4742 + components: + - type: Transform + pos: -44.5,8.5 + parent: 2 + - uid: 4743 + components: + - type: Transform + pos: -43.5,8.5 + parent: 2 + - uid: 4744 + components: + - type: Transform + pos: -42.5,8.5 + parent: 2 + - uid: 4745 + components: + - type: Transform + pos: -42.5,9.5 + parent: 2 + - uid: 4746 + components: + - type: Transform + pos: -42.5,10.5 + parent: 2 + - uid: 4747 + components: + - type: Transform + pos: -42.5,7.5 + parent: 2 + - uid: 4748 + components: + - type: Transform + pos: -41.5,10.5 + parent: 2 + - uid: 4749 + components: + - type: Transform + pos: -40.5,10.5 + parent: 2 + - uid: 4750 + components: + - type: Transform + pos: -40.5,11.5 + parent: 2 + - uid: 4751 + components: + - type: Transform + pos: -40.5,12.5 + parent: 2 + - uid: 4752 + components: + - type: Transform + pos: -40.5,13.5 + parent: 2 + - uid: 4753 + components: + - type: Transform + pos: -40.5,14.5 + parent: 2 + - uid: 4754 + components: + - type: Transform + pos: -40.5,15.5 + parent: 2 + - uid: 4755 + components: + - type: Transform + pos: -45.5,9.5 + parent: 2 + - uid: 4756 + components: + - type: Transform + pos: -45.5,10.5 + parent: 2 + - uid: 4757 + components: + - type: Transform + pos: -45.5,11.5 + parent: 2 + - uid: 4758 + components: + - type: Transform + pos: -45.5,12.5 + parent: 2 + - uid: 4759 + components: + - type: Transform + pos: -45.5,13.5 + parent: 2 + - uid: 4760 + components: + - type: Transform + pos: -45.5,14.5 + parent: 2 + - uid: 4761 + components: + - type: Transform + pos: -44.5,13.5 + parent: 2 + - uid: 4762 + components: + - type: Transform + pos: -46.5,13.5 + parent: 2 + - uid: 4763 + components: + - type: Transform + pos: -35.5,12.5 + parent: 2 + - uid: 4764 + components: + - type: Transform + pos: -35.5,11.5 + parent: 2 + - uid: 4765 + components: + - type: Transform + pos: -35.5,10.5 + parent: 2 + - uid: 4766 + components: + - type: Transform + pos: -35.5,9.5 + parent: 2 + - uid: 4767 + components: + - type: Transform + pos: -34.5,9.5 + parent: 2 + - uid: 4768 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 + - uid: 4771 + components: + - type: Transform + pos: -38.5,12.5 + parent: 2 + - uid: 4772 + components: + - type: Transform + pos: -36.5,12.5 + parent: 2 + - uid: 4783 + components: + - type: Transform + pos: -26.5,9.5 + parent: 2 + - uid: 4784 + components: + - type: Transform + pos: -27.5,9.5 + parent: 2 + - uid: 4785 + components: + - type: Transform + pos: -39.5,10.5 + parent: 2 + - uid: 4786 + components: + - type: Transform + pos: -39.5,9.5 + parent: 2 + - uid: 4787 + components: + - type: Transform + pos: -39.5,8.5 + parent: 2 + - uid: 4788 + components: + - type: Transform + pos: -39.5,7.5 + parent: 2 + - uid: 4790 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 2 + - uid: 4805 + components: + - type: Transform + pos: -42.5,25.5 + parent: 2 + - uid: 4813 + components: + - type: Transform + pos: -31.5,20.5 + parent: 2 + - uid: 4825 + components: + - type: Transform + pos: -38.5,25.5 + parent: 2 + - uid: 4857 + components: + - type: Transform + pos: -40.5,19.5 + parent: 2 + - uid: 4858 + components: + - type: Transform + pos: -40.5,18.5 + parent: 2 + - uid: 4925 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 + - uid: 4926 + components: + - type: Transform + pos: -34.5,-4.5 + parent: 2 + - uid: 4927 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 2 + - uid: 4928 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 2 + - uid: 4929 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 2 + - uid: 4930 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 2 + - uid: 4931 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 2 + - uid: 4933 + components: + - type: Transform + pos: -41.5,-10.5 + parent: 2 + - uid: 4934 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 2 + - uid: 4935 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 2 + - uid: 4936 + components: + - type: Transform + pos: -46.5,-6.5 + parent: 2 + - uid: 4937 + components: + - type: Transform + pos: -48.5,-10.5 + parent: 2 + - uid: 4938 + components: + - type: Transform + pos: -47.5,-10.5 + parent: 2 + - uid: 4939 + components: + - type: Transform + pos: -46.5,-10.5 + parent: 2 + - uid: 4940 + components: + - type: Transform + pos: -45.5,-10.5 + parent: 2 + - uid: 4941 + components: + - type: Transform + pos: -44.5,-10.5 + parent: 2 + - uid: 4942 + components: + - type: Transform + pos: -43.5,-10.5 + parent: 2 + - uid: 4943 + components: + - type: Transform + pos: -42.5,-10.5 + parent: 2 + - uid: 4944 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 2 + - uid: 4945 + components: + - type: Transform + pos: -40.5,-10.5 + parent: 2 + - uid: 4946 + components: + - type: Transform + pos: -39.5,-10.5 + parent: 2 + - uid: 4947 + components: + - type: Transform + pos: -38.5,-10.5 + parent: 2 + - uid: 4951 + components: + - type: Transform + pos: -42.5,-9.5 + parent: 2 + - uid: 4952 + components: + - type: Transform + pos: -42.5,-8.5 + parent: 2 + - uid: 4953 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 2 + - uid: 4954 + components: + - type: Transform + pos: -42.5,-6.5 + parent: 2 + - uid: 4955 + components: + - type: Transform + pos: -42.5,-5.5 + parent: 2 + - uid: 4956 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 2 + - uid: 4957 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 2 + - uid: 4958 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 2 + - uid: 4959 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 2 + - uid: 4960 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 4961 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 2 + - uid: 4962 + components: + - type: Transform + pos: -38.5,-9.5 + parent: 2 + - uid: 4963 + components: + - type: Transform + pos: -38.5,-11.5 + parent: 2 + - uid: 4964 + components: + - type: Transform + pos: -38.5,-12.5 + parent: 2 + - uid: 4965 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 + - uid: 4966 + components: + - type: Transform + pos: -38.5,-14.5 + parent: 2 + - uid: 4967 + components: + - type: Transform + pos: -38.5,-15.5 + parent: 2 + - uid: 4968 + components: + - type: Transform + pos: -38.5,-16.5 + parent: 2 + - uid: 4969 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 2 + - uid: 4970 + components: + - type: Transform + pos: -30.5,-21.5 + parent: 2 + - uid: 4971 + components: + - type: Transform + pos: -31.5,-21.5 + parent: 2 + - uid: 4972 + components: + - type: Transform + pos: -32.5,-21.5 + parent: 2 + - uid: 4973 + components: + - type: Transform + pos: -33.5,-21.5 + parent: 2 + - uid: 4974 + components: + - type: Transform + pos: -33.5,-20.5 + parent: 2 + - uid: 4975 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - uid: 4976 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 + - uid: 4977 + components: + - type: Transform + pos: -33.5,-17.5 + parent: 2 + - uid: 4978 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 2 + - uid: 4979 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 2 + - uid: 4980 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 2 + - uid: 4981 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 2 + - uid: 4982 + components: + - type: Transform + pos: -32.5,-16.5 + parent: 2 + - uid: 4983 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 2 + - uid: 4984 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 2 + - uid: 4985 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 2 + - uid: 4986 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 2 + - uid: 4987 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 2 + - uid: 4988 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 2 + - uid: 4989 + components: + - type: Transform + pos: -33.5,-13.5 + parent: 2 + - uid: 4990 + components: + - type: Transform + pos: -33.5,-12.5 + parent: 2 + - uid: 4991 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 2 + - uid: 4992 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - uid: 4993 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - uid: 4994 + components: + - type: Transform + pos: -31.5,-10.5 + parent: 2 + - uid: 4995 + components: + - type: Transform + pos: -30.5,-10.5 + parent: 2 + - uid: 4996 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 2 + - uid: 4997 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - uid: 4998 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 2 + - uid: 4999 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 2 + - uid: 5000 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 5001 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 2 + - uid: 5123 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 2 + - uid: 5124 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 2 + - uid: 5125 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 2 + - uid: 5126 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 2 + - uid: 5127 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 2 + - uid: 5128 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 2 + - uid: 5129 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 2 + - uid: 5130 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - uid: 5131 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 2 + - uid: 5132 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 2 + - uid: 5133 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 2 + - uid: 5134 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 2 + - uid: 5135 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 2 + - uid: 5136 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 2 + - uid: 5137 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 5138 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 2 + - uid: 5139 + components: + - type: Transform + pos: -17.5,-14.5 + parent: 2 + - uid: 5140 + components: + - type: Transform + pos: -18.5,-14.5 + parent: 2 + - uid: 5141 + components: + - type: Transform + pos: -19.5,-14.5 + parent: 2 + - uid: 5142 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - uid: 5143 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 5144 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 + - uid: 5145 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 2 + - uid: 5146 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 2 + - uid: 5147 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 2 + - uid: 5148 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 2 + - uid: 5149 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 2 + - uid: 5150 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 2 + - uid: 5151 + components: + - type: Transform + pos: -9.5,-14.5 + parent: 2 + - uid: 5152 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 2 + - uid: 5153 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - uid: 5154 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 2 + - uid: 5155 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - uid: 5156 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - uid: 5157 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - uid: 5158 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - uid: 5159 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 5160 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 2 + - uid: 5161 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 2 + - uid: 5162 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 2 + - uid: 5163 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 2 + - uid: 5164 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 2 + - uid: 5165 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 2 + - uid: 5166 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 2 + - uid: 5167 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 2 + - uid: 5168 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 + - uid: 5169 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 2 + - uid: 5170 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 5171 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 + - uid: 5172 + components: + - type: Transform + pos: -0.5,-29.5 + parent: 2 + - uid: 5173 + components: + - type: Transform + pos: -0.5,-28.5 + parent: 2 + - uid: 5174 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 2 + - uid: 5175 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 2 + - uid: 5176 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 2 + - uid: 5177 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 2 + - uid: 5178 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 2 + - uid: 5179 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 2 + - uid: 5180 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 2 + - uid: 5181 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 2 + - uid: 5183 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 + - uid: 5184 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - uid: 5185 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 5186 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - uid: 5187 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 2 + - uid: 5188 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 2 + - uid: 5189 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 2 + - uid: 5190 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 2 + - uid: 5191 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 2 + - uid: 5192 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 2 + - uid: 5193 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 2 + - uid: 5194 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 2 + - uid: 5195 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 2 + - uid: 5196 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 2 + - uid: 5197 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 2 + - uid: 5198 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 2 + - uid: 5199 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 2 + - uid: 5200 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 2 + - uid: 5201 + components: + - type: Transform + pos: 11.5,-27.5 + parent: 2 + - uid: 5202 + components: + - type: Transform + pos: 10.5,-27.5 + parent: 2 + - uid: 5203 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 2 + - uid: 5204 + components: + - type: Transform + pos: 8.5,-27.5 + parent: 2 + - uid: 5205 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 2 + - uid: 5206 + components: + - type: Transform + pos: 3.5,-27.5 + parent: 2 + - uid: 5207 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 2 + - uid: 5208 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 2 + - uid: 5209 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 + - uid: 5210 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 2 + - uid: 5211 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 2 + - uid: 5212 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 2 + - uid: 5213 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 2 + - uid: 5214 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 2 + - uid: 5215 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 2 + - uid: 5216 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 2 + - uid: 5217 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 2 + - uid: 5218 + components: + - type: Transform + pos: 9.5,-32.5 + parent: 2 + - uid: 5219 + components: + - type: Transform + pos: 9.5,-33.5 + parent: 2 + - uid: 5220 + components: + - type: Transform + pos: 9.5,-34.5 + parent: 2 + - uid: 5221 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 2 + - uid: 5222 + components: + - type: Transform + pos: 9.5,-36.5 + parent: 2 + - uid: 5223 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 2 + - uid: 5224 + components: + - type: Transform + pos: 7.5,-36.5 + parent: 2 + - uid: 5225 + components: + - type: Transform + pos: 6.5,-36.5 + parent: 2 + - uid: 5226 + components: + - type: Transform + pos: 5.5,-36.5 + parent: 2 + - uid: 5227 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 2 + - uid: 5228 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 2 + - uid: 5229 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 2 + - uid: 5230 + components: + - type: Transform + pos: 1.5,-36.5 + parent: 2 + - uid: 5231 + components: + - type: Transform + pos: 1.5,-35.5 + parent: 2 + - uid: 5232 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 2 + - uid: 5233 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 2 + - uid: 5234 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 2 + - uid: 5235 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 2 + - uid: 5236 + components: + - type: Transform + pos: -1.5,-37.5 + parent: 2 + - uid: 5237 + components: + - type: Transform + pos: -1.5,-38.5 + parent: 2 + - uid: 5238 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 2 + - uid: 5239 + components: + - type: Transform + pos: -3.5,-38.5 + parent: 2 + - uid: 5240 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 2 + - uid: 5241 + components: + - type: Transform + pos: -5.5,-38.5 + parent: 2 + - uid: 5242 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 2 + - uid: 5243 + components: + - type: Transform + pos: -5.5,-40.5 + parent: 2 + - uid: 5244 + components: + - type: Transform + pos: -5.5,-41.5 + parent: 2 + - uid: 5245 + components: + - type: Transform + pos: -4.5,-41.5 + parent: 2 + - uid: 5246 + components: + - type: Transform + pos: -3.5,-41.5 + parent: 2 + - uid: 5247 + components: + - type: Transform + pos: -3.5,-42.5 + parent: 2 + - uid: 5248 + components: + - type: Transform + pos: -3.5,-43.5 + parent: 2 + - uid: 5249 + components: + - type: Transform + pos: -4.5,-43.5 + parent: 2 + - uid: 5250 + components: + - type: Transform + pos: -5.5,-43.5 + parent: 2 + - uid: 5251 + components: + - type: Transform + pos: -5.5,-44.5 + parent: 2 + - uid: 5252 + components: + - type: Transform + pos: -5.5,-45.5 + parent: 2 + - uid: 5253 + components: + - type: Transform + pos: -5.5,-46.5 + parent: 2 + - uid: 5254 + components: + - type: Transform + pos: -5.5,-47.5 + parent: 2 + - uid: 5288 + components: + - type: Transform + pos: -10.5,-41.5 + parent: 2 + - uid: 5289 + components: + - type: Transform + pos: -10.5,-42.5 + parent: 2 + - uid: 5290 + components: + - type: Transform + pos: -10.5,-43.5 + parent: 2 + - uid: 5291 + components: + - type: Transform + pos: -10.5,-44.5 + parent: 2 + - uid: 5292 + components: + - type: Transform + pos: -10.5,-45.5 + parent: 2 + - uid: 5293 + components: + - type: Transform + pos: -11.5,-45.5 + parent: 2 + - uid: 5294 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 2 + - uid: 5295 + components: + - type: Transform + pos: -13.5,-45.5 + parent: 2 + - uid: 5296 + components: + - type: Transform + pos: -14.5,-45.5 + parent: 2 + - uid: 5297 + components: + - type: Transform + pos: -14.5,-44.5 + parent: 2 + - uid: 5298 + components: + - type: Transform + pos: -14.5,-43.5 + parent: 2 + - uid: 5299 + components: + - type: Transform + pos: -15.5,-45.5 + parent: 2 + - uid: 5300 + components: + - type: Transform + pos: -16.5,-45.5 + parent: 2 + - uid: 5301 + components: + - type: Transform + pos: -16.5,-44.5 + parent: 2 + - uid: 5302 + components: + - type: Transform + pos: -16.5,-43.5 + parent: 2 + - uid: 5303 + components: + - type: Transform + pos: -16.5,-42.5 + parent: 2 + - uid: 5304 + components: + - type: Transform + pos: -16.5,-41.5 + parent: 2 + - uid: 5306 + components: + - type: Transform + pos: -18.5,-45.5 + parent: 2 + - uid: 5307 + components: + - type: Transform + pos: -19.5,-45.5 + parent: 2 + - uid: 5308 + components: + - type: Transform + pos: -20.5,-45.5 + parent: 2 + - uid: 5309 + components: + - type: Transform + pos: -20.5,-44.5 + parent: 2 + - uid: 5310 + components: + - type: Transform + pos: -20.5,-43.5 + parent: 2 + - uid: 5311 + components: + - type: Transform + pos: -20.5,-42.5 + parent: 2 + - uid: 5312 + components: + - type: Transform + pos: -20.5,-41.5 + parent: 2 + - uid: 5313 + components: + - type: Transform + pos: -27.5,-40.5 + parent: 2 + - uid: 5314 + components: + - type: Transform + pos: -26.5,-40.5 + parent: 2 + - uid: 5315 + components: + - type: Transform + pos: -25.5,-40.5 + parent: 2 + - uid: 5316 + components: + - type: Transform + pos: -24.5,-40.5 + parent: 2 + - uid: 5317 + components: + - type: Transform + pos: -24.5,-39.5 + parent: 2 + - uid: 5318 + components: + - type: Transform + pos: -24.5,-38.5 + parent: 2 + - uid: 5319 + components: + - type: Transform + pos: -24.5,-37.5 + parent: 2 + - uid: 5320 + components: + - type: Transform + pos: -24.5,-41.5 + parent: 2 + - uid: 5321 + components: + - type: Transform + pos: -24.5,-42.5 + parent: 2 + - uid: 5322 + components: + - type: Transform + pos: -24.5,-43.5 + parent: 2 + - uid: 5323 + components: + - type: Transform + pos: -14.5,-46.5 + parent: 2 + - uid: 5324 + components: + - type: Transform + pos: -14.5,-47.5 + parent: 2 + - uid: 5325 + components: + - type: Transform + pos: -14.5,-48.5 + parent: 2 + - uid: 5326 + components: + - type: Transform + pos: -14.5,-49.5 + parent: 2 + - uid: 5327 + components: + - type: Transform + pos: -14.5,-50.5 + parent: 2 + - uid: 5328 + components: + - type: Transform + pos: -14.5,-51.5 + parent: 2 + - uid: 5329 + components: + - type: Transform + pos: -14.5,-52.5 + parent: 2 + - uid: 5330 + components: + - type: Transform + pos: -14.5,-53.5 + parent: 2 + - uid: 5331 + components: + - type: Transform + pos: -14.5,-56.5 + parent: 2 + - uid: 5332 + components: + - type: Transform + pos: -14.5,-57.5 + parent: 2 + - uid: 5333 + components: + - type: Transform + pos: -14.5,-58.5 + parent: 2 + - uid: 5334 + components: + - type: Transform + pos: -14.5,-59.5 + parent: 2 + - uid: 5335 + components: + - type: Transform + pos: -14.5,-60.5 + parent: 2 + - uid: 5336 + components: + - type: Transform + pos: -14.5,-61.5 + parent: 2 + - uid: 5337 + components: + - type: Transform + pos: -14.5,-62.5 + parent: 2 + - uid: 5338 + components: + - type: Transform + pos: -14.5,-63.5 + parent: 2 + - uid: 5339 + components: + - type: Transform + pos: -14.5,-64.5 + parent: 2 + - uid: 5340 + components: + - type: Transform + pos: -14.5,-65.5 + parent: 2 + - uid: 5341 + components: + - type: Transform + pos: -14.5,-66.5 + parent: 2 + - uid: 5342 + components: + - type: Transform + pos: -14.5,-67.5 + parent: 2 + - uid: 5343 + components: + - type: Transform + pos: -12.5,-60.5 + parent: 2 + - uid: 5344 + components: + - type: Transform + pos: -13.5,-60.5 + parent: 2 + - uid: 5345 + components: + - type: Transform + pos: -11.5,-60.5 + parent: 2 + - uid: 5346 + components: + - type: Transform + pos: -10.5,-60.5 + parent: 2 + - uid: 5347 + components: + - type: Transform + pos: -9.5,-60.5 + parent: 2 + - uid: 5352 + components: + - type: Transform + pos: -13.5,-65.5 + parent: 2 + - uid: 5353 + components: + - type: Transform + pos: -12.5,-65.5 + parent: 2 + - uid: 5354 + components: + - type: Transform + pos: -11.5,-65.5 + parent: 2 + - uid: 5355 + components: + - type: Transform + pos: -10.5,-65.5 + parent: 2 + - uid: 5356 + components: + - type: Transform + pos: -9.5,-65.5 + parent: 2 + - uid: 5357 + components: + - type: Transform + pos: -8.5,-65.5 + parent: 2 + - uid: 5358 + components: + - type: Transform + pos: -7.5,-65.5 + parent: 2 + - uid: 5359 + components: + - type: Transform + pos: -8.5,-66.5 + parent: 2 + - uid: 5360 + components: + - type: Transform + pos: -8.5,-67.5 + parent: 2 + - uid: 5361 + components: + - type: Transform + pos: -8.5,-68.5 + parent: 2 + - uid: 5362 + components: + - type: Transform + pos: -8.5,-69.5 + parent: 2 + - uid: 5363 + components: + - type: Transform + pos: -8.5,-70.5 + parent: 2 + - uid: 5364 + components: + - type: Transform + pos: -8.5,-71.5 + parent: 2 + - uid: 5365 + components: + - type: Transform + pos: -10.5,-71.5 + parent: 2 + - uid: 5366 + components: + - type: Transform + pos: -9.5,-71.5 + parent: 2 + - uid: 5367 + components: + - type: Transform + pos: -11.5,-71.5 + parent: 2 + - uid: 5368 + components: + - type: Transform + pos: -12.5,-71.5 + parent: 2 + - uid: 5369 + components: + - type: Transform + pos: -13.5,-71.5 + parent: 2 + - uid: 5370 + components: + - type: Transform + pos: -14.5,-71.5 + parent: 2 + - uid: 5371 + components: + - type: Transform + pos: -15.5,-71.5 + parent: 2 + - uid: 5372 + components: + - type: Transform + pos: -11.5,-67.5 + parent: 2 + - uid: 5373 + components: + - type: Transform + pos: -11.5,-66.5 + parent: 2 + - uid: 5374 + components: + - type: Transform + pos: -15.5,-64.5 + parent: 2 + - uid: 5375 + components: + - type: Transform + pos: -16.5,-64.5 + parent: 2 + - uid: 5376 + components: + - type: Transform + pos: -17.5,-64.5 + parent: 2 + - uid: 5377 + components: + - type: Transform + pos: -18.5,-64.5 + parent: 2 + - uid: 5378 + components: + - type: Transform + pos: -19.5,-64.5 + parent: 2 + - uid: 5379 + components: + - type: Transform + pos: -19.5,-63.5 + parent: 2 + - uid: 5380 + components: + - type: Transform + pos: -19.5,-65.5 + parent: 2 + - uid: 5381 + components: + - type: Transform + pos: -23.5,-43.5 + parent: 2 + - uid: 5382 + components: + - type: Transform + pos: -22.5,-43.5 + parent: 2 + - uid: 5383 + components: + - type: Transform + pos: -21.5,-43.5 + parent: 2 + - uid: 5476 + components: + - type: Transform + pos: -62.5,-4.5 + parent: 2 + - uid: 5499 + components: + - type: Transform + pos: -31.5,-39.5 + parent: 2 + - uid: 5516 + components: + - type: Transform + pos: -31.5,-40.5 + parent: 2 + - uid: 5618 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 5626 + components: + - type: Transform + pos: -74.5,29.5 + parent: 2 + - uid: 5629 + components: + - type: Transform + pos: -68.5,25.5 + parent: 2 + - uid: 5630 + components: + - type: Transform + pos: -72.5,25.5 + parent: 2 + - uid: 5638 + components: + - type: Transform + pos: -70.5,25.5 + parent: 2 + - uid: 5641 + components: + - type: Transform + pos: -75.5,36.5 + parent: 2 + - uid: 5643 + components: + - type: Transform + pos: -72.5,28.5 + parent: 2 + - uid: 5668 + components: + - type: Transform + pos: -26.5,10.5 + parent: 2 + - uid: 5693 + components: + - type: Transform + pos: -73.5,36.5 + parent: 2 + - uid: 5697 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 + - uid: 5713 + components: + - type: Transform + pos: -77.5,34.5 + parent: 2 + - uid: 5714 + components: + - type: Transform + pos: -77.5,36.5 + parent: 2 + - uid: 5726 + components: + - type: Transform + pos: -60.5,23.5 + parent: 2 + - uid: 5749 + components: + - type: Transform + pos: -59.5,21.5 + parent: 2 + - uid: 5762 + components: + - type: Transform + pos: -54.5,21.5 + parent: 2 + - uid: 5868 + components: + - type: Transform + pos: 2.5,28.5 + parent: 2 + - uid: 5882 + components: + - type: Transform + pos: 6.5,26.5 + parent: 2 + - uid: 5942 + components: + - type: Transform + pos: -46.5,25.5 + parent: 2 + - uid: 5947 + components: + - type: Transform + pos: -58.5,21.5 + parent: 2 + - uid: 5961 + components: + - type: Transform + pos: -44.5,38.5 + parent: 2 + - uid: 5973 + components: + - type: Transform + pos: -43.5,38.5 + parent: 2 + - uid: 5974 + components: + - type: Transform + pos: -47.5,25.5 + parent: 2 + - uid: 5975 + components: + - type: Transform + pos: -48.5,25.5 + parent: 2 + - uid: 5976 + components: + - type: Transform + pos: -51.5,40.5 + parent: 2 + - uid: 5977 + components: + - type: Transform + pos: -42.5,31.5 + parent: 2 + - uid: 5978 + components: + - type: Transform + pos: -51.5,21.5 + parent: 2 + - uid: 5979 + components: + - type: Transform + pos: -50.5,38.5 + parent: 2 + - uid: 5980 + components: + - type: Transform + pos: -46.5,21.5 + parent: 2 + - uid: 5981 + components: + - type: Transform + pos: -48.5,21.5 + parent: 2 + - uid: 5982 + components: + - type: Transform + pos: -46.5,30.5 + parent: 2 + - uid: 5983 + components: + - type: Transform + pos: -43.5,21.5 + parent: 2 + - uid: 5984 + components: + - type: Transform + pos: -45.5,36.5 + parent: 2 + - uid: 5985 + components: + - type: Transform + pos: -48.5,20.5 + parent: 2 + - uid: 5986 + components: + - type: Transform + pos: -46.5,32.5 + parent: 2 + - uid: 5987 + components: + - type: Transform + pos: -46.5,34.5 + parent: 2 + - uid: 5988 + components: + - type: Transform + pos: -45.5,37.5 + parent: 2 + - uid: 5991 + components: + - type: Transform + pos: -40.5,20.5 + parent: 2 + - uid: 5993 + components: + - type: Transform + pos: -50.5,33.5 + parent: 2 + - uid: 5996 + components: + - type: Transform + pos: -42.5,32.5 + parent: 2 + - uid: 5997 + components: + - type: Transform + pos: -45.5,34.5 + parent: 2 + - uid: 6000 + components: + - type: Transform + pos: -42.5,28.5 + parent: 2 + - uid: 6002 + components: + - type: Transform + pos: -42.5,26.5 + parent: 2 + - uid: 6003 + components: + - type: Transform + pos: -47.5,33.5 + parent: 2 + - uid: 6006 + components: + - type: Transform + pos: -47.5,21.5 + parent: 2 + - uid: 6008 + components: + - type: Transform + pos: -45.5,21.5 + parent: 2 + - uid: 6009 + components: + - type: Transform + pos: -45.5,35.5 + parent: 2 + - uid: 6012 + components: + - type: Transform + pos: -46.5,28.5 + parent: 2 + - uid: 6013 + components: + - type: Transform + pos: -46.5,31.5 + parent: 2 + - uid: 6014 + components: + - type: Transform + pos: -45.5,38.5 + parent: 2 + - uid: 6017 + components: + - type: Transform + pos: -42.5,23.5 + parent: 2 + - uid: 6020 + components: + - type: Transform + pos: -50.5,34.5 + parent: 2 + - uid: 6023 + components: + - type: Transform + pos: -41.5,22.5 + parent: 2 + - uid: 6024 + components: + - type: Transform + pos: -40.5,22.5 + parent: 2 + - uid: 6025 + components: + - type: Transform + pos: -40.5,21.5 + parent: 2 + - uid: 6026 + components: + - type: Transform + pos: -50.5,35.5 + parent: 2 + - uid: 6033 + components: + - type: Transform + pos: -48.5,33.5 + parent: 2 + - uid: 6036 + components: + - type: Transform + pos: -51.5,17.5 + parent: 2 + - uid: 6041 + components: + - type: Transform + pos: -46.5,29.5 + parent: 2 + - uid: 6042 + components: + - type: Transform + pos: -46.5,26.5 + parent: 2 + - uid: 6043 + components: + - type: Transform + pos: -42.5,21.5 + parent: 2 + - uid: 6044 + components: + - type: Transform + pos: -49.5,21.5 + parent: 2 + - uid: 6045 + components: + - type: Transform + pos: -46.5,27.5 + parent: 2 + - uid: 6046 + components: + - type: Transform + pos: -52.5,21.5 + parent: 2 + - uid: 6047 + components: + - type: Transform + pos: -50.5,21.5 + parent: 2 + - uid: 6048 + components: + - type: Transform + pos: -46.5,33.5 + parent: 2 + - uid: 6072 + components: + - type: Transform + pos: -50.5,25.5 + parent: 2 + - uid: 6086 + components: + - type: Transform + pos: -40.5,37.5 + parent: 2 + - uid: 6087 + components: + - type: Transform + pos: -41.5,38.5 + parent: 2 + - uid: 6088 + components: + - type: Transform + pos: -42.5,38.5 + parent: 2 + - uid: 6089 + components: + - type: Transform + pos: -40.5,38.5 + parent: 2 + - uid: 6090 + components: + - type: Transform + pos: -40.5,36.5 + parent: 2 + - uid: 6092 + components: + - type: Transform + pos: -40.5,35.5 + parent: 2 + - uid: 6120 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 6121 + components: + - type: Transform + pos: -49.5,25.5 + parent: 2 + - uid: 6122 + components: + - type: Transform + pos: -52.5,25.5 + parent: 2 + - uid: 6123 + components: + - type: Transform + pos: -51.5,25.5 + parent: 2 + - uid: 6124 + components: + - type: Transform + pos: -54.5,25.5 + parent: 2 + - uid: 6125 + components: + - type: Transform + pos: -53.5,25.5 + parent: 2 + - uid: 6166 + components: + - type: Transform + pos: -32.5,19.5 + parent: 2 + - uid: 6168 + components: + - type: Transform + pos: -33.5,20.5 + parent: 2 + - uid: 6174 + components: + - type: Transform + pos: -32.5,20.5 + parent: 2 + - uid: 6683 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 2 + - uid: 6684 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 + - uid: 6685 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 2 + - uid: 6687 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 6688 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 2 + - uid: 7050 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 + - uid: 7067 + components: + - type: Transform + pos: 8.5,12.5 + parent: 2 + - uid: 7078 + components: + - type: Transform + pos: -3.5,-31.5 + parent: 2 + - uid: 7079 + components: + - type: Transform + pos: -2.5,-41.5 + parent: 2 + - uid: 7242 + components: + - type: Transform + pos: -22.5,-18.5 + parent: 2 + - uid: 7243 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 2 + - uid: 7244 + components: + - type: Transform + pos: -22.5,-20.5 + parent: 2 + - uid: 7245 + components: + - type: Transform + pos: -22.5,-21.5 + parent: 2 + - uid: 7246 + components: + - type: Transform + pos: -22.5,-22.5 + parent: 2 + - uid: 7247 + components: + - type: Transform + pos: -22.5,-23.5 + parent: 2 + - uid: 7248 + components: + - type: Transform + pos: -22.5,-24.5 + parent: 2 + - uid: 7249 + components: + - type: Transform + pos: -22.5,-25.5 + parent: 2 + - uid: 7250 + components: + - type: Transform + pos: -22.5,-26.5 + parent: 2 + - uid: 7251 + components: + - type: Transform + pos: -22.5,-27.5 + parent: 2 + - uid: 7252 + components: + - type: Transform + pos: -22.5,-28.5 + parent: 2 + - uid: 7253 + components: + - type: Transform + pos: -22.5,-29.5 + parent: 2 + - uid: 7254 + components: + - type: Transform + pos: -22.5,-30.5 + parent: 2 + - uid: 7255 + components: + - type: Transform + pos: -22.5,-31.5 + parent: 2 + - uid: 7256 + components: + - type: Transform + pos: -22.5,-32.5 + parent: 2 + - uid: 7257 + components: + - type: Transform + pos: -22.5,-33.5 + parent: 2 + - uid: 7258 + components: + - type: Transform + pos: -21.5,-33.5 + parent: 2 + - uid: 7259 + components: + - type: Transform + pos: -20.5,-33.5 + parent: 2 + - uid: 7260 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 2 + - uid: 7261 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 2 + - uid: 7262 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 2 + - uid: 7263 + components: + - type: Transform + pos: -16.5,-33.5 + parent: 2 + - uid: 7264 + components: + - type: Transform + pos: -15.5,-33.5 + parent: 2 + - uid: 7265 + components: + - type: Transform + pos: -14.5,-33.5 + parent: 2 + - uid: 7266 + components: + - type: Transform + pos: -13.5,-33.5 + parent: 2 + - uid: 7267 + components: + - type: Transform + pos: -12.5,-33.5 + parent: 2 + - uid: 7268 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 2 + - uid: 7269 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 2 + - uid: 7270 + components: + - type: Transform + pos: -9.5,-33.5 + parent: 2 + - uid: 7271 + components: + - type: Transform + pos: -8.5,-33.5 + parent: 2 + - uid: 7272 + components: + - type: Transform + pos: -7.5,-33.5 + parent: 2 + - uid: 7273 + components: + - type: Transform + pos: -6.5,-33.5 + parent: 2 + - uid: 7274 + components: + - type: Transform + pos: -5.5,-33.5 + parent: 2 + - uid: 7275 + components: + - type: Transform + pos: -4.5,-33.5 + parent: 2 + - uid: 7276 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 2 + - uid: 7278 + components: + - type: Transform + pos: -3.5,-33.5 + parent: 2 + - uid: 7287 + components: + - type: Transform + pos: -10.5,-34.5 + parent: 2 + - uid: 7288 + components: + - type: Transform + pos: -10.5,-35.5 + parent: 2 + - uid: 7289 + components: + - type: Transform + pos: -23.5,-24.5 + parent: 2 + - uid: 7290 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 2 + - uid: 7291 + components: + - type: Transform + pos: -23.5,-33.5 + parent: 2 + - uid: 7292 + components: + - type: Transform + pos: -23.5,-34.5 + parent: 2 + - uid: 7293 + components: + - type: Transform + pos: -24.5,-34.5 + parent: 2 + - uid: 7294 + components: + - type: Transform + pos: -25.5,-34.5 + parent: 2 + - uid: 7295 + components: + - type: Transform + pos: -26.5,-34.5 + parent: 2 + - uid: 7296 + components: + - type: Transform + pos: -27.5,-34.5 + parent: 2 + - uid: 7297 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 2 + - uid: 7298 + components: + - type: Transform + pos: -29.5,-34.5 + parent: 2 + - uid: 7299 + components: + - type: Transform + pos: -30.5,-34.5 + parent: 2 + - uid: 7300 + components: + - type: Transform + pos: -31.5,-34.5 + parent: 2 + - uid: 7301 + components: + - type: Transform + pos: -32.5,-34.5 + parent: 2 + - uid: 7302 + components: + - type: Transform + pos: -33.5,-34.5 + parent: 2 + - uid: 7303 + components: + - type: Transform + pos: -34.5,-34.5 + parent: 2 + - uid: 7304 + components: + - type: Transform + pos: -33.5,-35.5 + parent: 2 + - uid: 7305 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 2 + - uid: 7306 + components: + - type: Transform + pos: -17.5,-35.5 + parent: 2 + - uid: 7307 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 2 + - uid: 7308 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 2 + - uid: 7309 + components: + - type: Transform + pos: -18.5,-37.5 + parent: 2 + - uid: 7310 + components: + - type: Transform + pos: -19.5,-37.5 + parent: 2 + - uid: 7311 + components: + - type: Transform + pos: -20.5,-37.5 + parent: 2 + - uid: 7312 + components: + - type: Transform + pos: -20.5,-36.5 + parent: 2 + - uid: 7313 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 2 + - uid: 7314 + components: + - type: Transform + pos: -3.5,-29.5 + parent: 2 + - uid: 7315 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 2 + - uid: 7316 + components: + - type: Transform + pos: -3.5,-27.5 + parent: 2 + - uid: 7317 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 2 + - uid: 7318 + components: + - type: Transform + pos: -3.5,-25.5 + parent: 2 + - uid: 7319 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 2 + - uid: 7320 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 + - uid: 7321 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 2 + - uid: 7322 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 2 + - uid: 7323 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 2 + - uid: 7324 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 2 + - uid: 7325 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 2 + - uid: 7326 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 7327 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 2 + - uid: 7328 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 2 + - uid: 7329 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 2 + - uid: 7330 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - uid: 7331 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 + - uid: 7332 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 2 + - uid: 7333 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 2 + - uid: 7334 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 2 + - uid: 7335 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 2 + - uid: 7336 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 + - uid: 7337 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 2 + - uid: 7338 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 2 + - uid: 7339 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - uid: 7340 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 2 + - uid: 7341 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 2 + - uid: 7342 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 2 + - uid: 7343 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 + - uid: 7344 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 7345 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - uid: 7346 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 + - uid: 7347 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 + - uid: 7348 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 + - uid: 7349 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 2 + - uid: 7350 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - uid: 7351 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - uid: 7352 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 2 + - uid: 7353 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 2 + - uid: 7354 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 2 + - uid: 7355 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - uid: 7356 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - uid: 7357 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 + - uid: 7358 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - uid: 7359 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - uid: 7360 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 + - uid: 7361 + components: + - type: Transform + pos: -36.5,-34.5 + parent: 2 + - uid: 7362 + components: + - type: Transform + pos: -37.5,-34.5 + parent: 2 + - uid: 7363 + components: + - type: Transform + pos: -38.5,-34.5 + parent: 2 + - uid: 7365 + components: + - type: Transform + pos: -40.5,-34.5 + parent: 2 + - uid: 7366 + components: + - type: Transform + pos: -41.5,-34.5 + parent: 2 + - uid: 7367 + components: + - type: Transform + pos: -42.5,-34.5 + parent: 2 + - uid: 7368 + components: + - type: Transform + pos: -43.5,-34.5 + parent: 2 + - uid: 7369 + components: + - type: Transform + pos: -44.5,-34.5 + parent: 2 + - uid: 7370 + components: + - type: Transform + pos: -45.5,-34.5 + parent: 2 + - uid: 7371 + components: + - type: Transform + pos: -46.5,-34.5 + parent: 2 + - uid: 7372 + components: + - type: Transform + pos: -58.5,-34.5 + parent: 2 + - uid: 7373 + components: + - type: Transform + pos: -59.5,-34.5 + parent: 2 + - uid: 7374 + components: + - type: Transform + pos: -47.5,-34.5 + parent: 2 + - uid: 7375 + components: + - type: Transform + pos: -48.5,-34.5 + parent: 2 + - uid: 7376 + components: + - type: Transform + pos: -49.5,-34.5 + parent: 2 + - uid: 7377 + components: + - type: Transform + pos: -50.5,-34.5 + parent: 2 + - uid: 7378 + components: + - type: Transform + pos: -51.5,-34.5 + parent: 2 + - uid: 7379 + components: + - type: Transform + pos: -52.5,-34.5 + parent: 2 + - uid: 7380 + components: + - type: Transform + pos: -53.5,-34.5 + parent: 2 + - uid: 7381 + components: + - type: Transform + pos: -54.5,-34.5 + parent: 2 + - uid: 7382 + components: + - type: Transform + pos: -55.5,-34.5 + parent: 2 + - uid: 7383 + components: + - type: Transform + pos: -56.5,-34.5 + parent: 2 + - uid: 7384 + components: + - type: Transform + pos: -57.5,-34.5 + parent: 2 + - uid: 7385 + components: + - type: Transform + pos: -51.5,-33.5 + parent: 2 + - uid: 7386 + components: + - type: Transform + pos: -51.5,-32.5 + parent: 2 + - uid: 7387 + components: + - type: Transform + pos: -51.5,-31.5 + parent: 2 + - uid: 7388 + components: + - type: Transform + pos: -51.5,-30.5 + parent: 2 + - uid: 7389 + components: + - type: Transform + pos: -51.5,-29.5 + parent: 2 + - uid: 7390 + components: + - type: Transform + pos: -51.5,-28.5 + parent: 2 + - uid: 7391 + components: + - type: Transform + pos: -51.5,-27.5 + parent: 2 + - uid: 7392 + components: + - type: Transform + pos: -51.5,-26.5 + parent: 2 + - uid: 7395 + components: + - type: Transform + pos: -51.5,-25.5 + parent: 2 + - uid: 7396 + components: + - type: Transform + pos: -51.5,-24.5 + parent: 2 + - uid: 7397 + components: + - type: Transform + pos: -51.5,-23.5 + parent: 2 + - uid: 7398 + components: + - type: Transform + pos: -51.5,-22.5 + parent: 2 + - uid: 7399 + components: + - type: Transform + pos: -51.5,-21.5 + parent: 2 + - uid: 7400 + components: + - type: Transform + pos: -51.5,-20.5 + parent: 2 + - uid: 7401 + components: + - type: Transform + pos: -51.5,-19.5 + parent: 2 + - uid: 7402 + components: + - type: Transform + pos: -51.5,-18.5 + parent: 2 + - uid: 7416 + components: + - type: Transform + pos: -55.5,-21.5 + parent: 2 + - uid: 7417 + components: + - type: Transform + pos: -50.5,-20.5 + parent: 2 + - uid: 7418 + components: + - type: Transform + pos: -49.5,-20.5 + parent: 2 + - uid: 7419 + components: + - type: Transform + pos: -48.5,-20.5 + parent: 2 + - uid: 7420 + components: + - type: Transform + pos: -48.5,-24.5 + parent: 2 + - uid: 7421 + components: + - type: Transform + pos: -49.5,-24.5 + parent: 2 + - uid: 7422 + components: + - type: Transform + pos: -50.5,-24.5 + parent: 2 + - uid: 7423 + components: + - type: Transform + pos: -52.5,-25.5 + parent: 2 + - uid: 7424 + components: + - type: Transform + pos: -53.5,-25.5 + parent: 2 + - uid: 7425 + components: + - type: Transform + pos: -54.5,-25.5 + parent: 2 + - uid: 7426 + components: + - type: Transform + pos: -55.5,-25.5 + parent: 2 + - uid: 7427 + components: + - type: Transform + pos: -55.5,-24.5 + parent: 2 + - uid: 7428 + components: + - type: Transform + pos: -52.5,-29.5 + parent: 2 + - uid: 7429 + components: + - type: Transform + pos: -53.5,-29.5 + parent: 2 + - uid: 7430 + components: + - type: Transform + pos: -54.5,-29.5 + parent: 2 + - uid: 7431 + components: + - type: Transform + pos: -55.5,-29.5 + parent: 2 + - uid: 7432 + components: + - type: Transform + pos: -55.5,-30.5 + parent: 2 + - uid: 7433 + components: + - type: Transform + pos: -50.5,-30.5 + parent: 2 + - uid: 7434 + components: + - type: Transform + pos: -49.5,-30.5 + parent: 2 + - uid: 7435 + components: + - type: Transform + pos: -48.5,-30.5 + parent: 2 + - uid: 7436 + components: + - type: Transform + pos: -48.5,-29.5 + parent: 2 + - uid: 7437 + components: + - type: Transform + pos: -22.5,-16.5 + parent: 2 + - uid: 7438 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 2 + - uid: 7439 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 + - uid: 7440 + components: + - type: Transform + pos: -22.5,-13.5 + parent: 2 + - uid: 7441 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 2 + - uid: 7442 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 2 + - uid: 7443 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 2 + - uid: 7444 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 2 + - uid: 7445 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 7446 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 2 + - uid: 7447 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 2 + - uid: 7448 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 2 + - uid: 7449 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 2 + - uid: 7450 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 + - uid: 7451 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - uid: 7452 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 2 + - uid: 7453 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 2 + - uid: 7454 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 2 + - uid: 7455 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 7456 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 7457 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 2 + - uid: 7458 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - uid: 7459 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 2 + - uid: 7460 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - uid: 7461 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - uid: 7462 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 2 + - uid: 7463 + components: + - type: Transform + pos: -22.5,-0.5 + parent: 2 + - uid: 7464 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 2 + - uid: 7465 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - uid: 7466 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - uid: 7467 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 2 + - uid: 7468 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 + - uid: 7469 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 2 + - uid: 7470 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 2 + - uid: 7471 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 2 + - uid: 7472 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 2 + - uid: 7473 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - uid: 7474 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 + - uid: 7475 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 2 + - uid: 7476 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 2 + - uid: 7477 + components: + - type: Transform + pos: -48.5,-0.5 + parent: 2 + - uid: 7478 + components: + - type: Transform + pos: -49.5,-0.5 + parent: 2 + - uid: 7479 + components: + - type: Transform + pos: -50.5,-0.5 + parent: 2 + - uid: 7480 + components: + - type: Transform + pos: -51.5,-0.5 + parent: 2 + - uid: 7481 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 2 + - uid: 7482 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 + - uid: 7483 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 2 + - uid: 7484 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 2 + - uid: 7485 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 2 + - uid: 7486 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 2 + - uid: 7487 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 2 + - uid: 7488 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 + - uid: 7489 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 2 + - uid: 7490 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 2 + - uid: 7491 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 2 + - uid: 7492 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 + - uid: 7493 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 2 + - uid: 7494 + components: + - type: Transform + pos: -37.5,-0.5 + parent: 2 + - uid: 7495 + components: + - type: Transform + pos: -38.5,-0.5 + parent: 2 + - uid: 7496 + components: + - type: Transform + pos: -39.5,-0.5 + parent: 2 + - uid: 7497 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 2 + - uid: 7498 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - uid: 7499 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 2 + - uid: 7500 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 2 + - uid: 7501 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 + - uid: 7502 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - uid: 7503 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 7504 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 7505 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 2 + - uid: 7506 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 2 + - uid: 7507 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 2 + - uid: 7508 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 2 + - uid: 7531 + components: + - type: Transform + pos: -1.5,20.5 + parent: 2 + - uid: 7532 + components: + - type: Transform + pos: -1.5,19.5 + parent: 2 + - uid: 7533 + components: + - type: Transform + pos: -1.5,18.5 + parent: 2 + - uid: 7534 + components: + - type: Transform + pos: -2.5,18.5 + parent: 2 + - uid: 7535 + components: + - type: Transform + pos: -3.5,18.5 + parent: 2 + - uid: 7536 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - uid: 7537 + components: + - type: Transform + pos: -2.5,17.5 + parent: 2 + - uid: 7538 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 7539 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 7540 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 + - uid: 7541 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - uid: 7542 + components: + - type: Transform + pos: -2.5,12.5 + parent: 2 + - uid: 7543 + components: + - type: Transform + pos: -2.5,11.5 + parent: 2 + - uid: 7544 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 7545 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 + - uid: 7546 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - uid: 7547 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 + - uid: 7548 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 + - uid: 7549 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 7550 + components: + - type: Transform + pos: -2.5,4.5 + parent: 2 + - uid: 7551 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - uid: 7552 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 7553 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 7554 + components: + - type: Transform + pos: -2.5,0.5 + parent: 2 + - uid: 7555 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - uid: 7556 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 2 + - uid: 7557 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - uid: 7558 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 7559 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 7560 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 7561 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 7562 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 7563 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 7576 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 7577 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 7578 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 7579 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - uid: 7580 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 2 + - uid: 7581 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 7582 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 + - uid: 7583 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 7584 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - uid: 7585 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - uid: 7586 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 2 + - uid: 7587 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 2 + - uid: 7588 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 2 + - uid: 7589 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 2 + - uid: 7590 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 2 + - uid: 7591 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 2 + - uid: 7592 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 2 + - uid: 7593 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 2 + - uid: 7594 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 2 + - uid: 7595 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 2 + - uid: 7596 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 7597 + components: + - type: Transform + pos: 22.5,1.5 + parent: 2 + - uid: 7598 + components: + - type: Transform + pos: 22.5,2.5 + parent: 2 + - uid: 7599 + components: + - type: Transform + pos: 22.5,3.5 + parent: 2 + - uid: 7600 + components: + - type: Transform + pos: 22.5,4.5 + parent: 2 + - uid: 7601 + components: + - type: Transform + pos: 22.5,5.5 + parent: 2 + - uid: 7602 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 7603 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 7604 + components: + - type: Transform + pos: 22.5,8.5 + parent: 2 + - uid: 7605 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 7606 + components: + - type: Transform + pos: 22.5,10.5 + parent: 2 + - uid: 7607 + components: + - type: Transform + pos: 22.5,11.5 + parent: 2 + - uid: 7608 + components: + - type: Transform + pos: 22.5,12.5 + parent: 2 + - uid: 7609 + components: + - type: Transform + pos: 22.5,13.5 + parent: 2 + - uid: 7610 + components: + - type: Transform + pos: 22.5,14.5 + parent: 2 + - uid: 7611 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 7612 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 + - uid: 7613 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - uid: 7614 + components: + - type: Transform + pos: 22.5,18.5 + parent: 2 + - uid: 7615 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 + - uid: 7616 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 7617 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 2 + - uid: 7618 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 2 + - uid: 7619 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 + - uid: 7620 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 7621 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 2 + - uid: 7622 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - uid: 7623 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 2 + - uid: 7624 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 2 + - uid: 7625 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 2 + - uid: 7626 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 2 + - uid: 7627 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 2 + - uid: 7628 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 2 + - uid: 7629 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 7630 + components: + - type: Transform + pos: 18.5,1.5 + parent: 2 + - uid: 7631 + components: + - type: Transform + pos: 18.5,2.5 + parent: 2 + - uid: 7632 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 7633 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 7634 + components: + - type: Transform + pos: 18.5,5.5 + parent: 2 + - uid: 7651 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - uid: 7757 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 7758 + components: + - type: Transform + pos: -25.5,7.5 + parent: 2 + - uid: 7759 + components: + - type: Transform + pos: -25.5,6.5 + parent: 2 + - uid: 7760 + components: + - type: Transform + pos: -25.5,5.5 + parent: 2 + - uid: 7761 + components: + - type: Transform + pos: -25.5,4.5 + parent: 2 + - uid: 7762 + components: + - type: Transform + pos: -27.5,3.5 + parent: 2 + - uid: 7763 + components: + - type: Transform + pos: -26.5,3.5 + parent: 2 + - uid: 7764 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 + - uid: 7765 + components: + - type: Transform + pos: -24.5,3.5 + parent: 2 + - uid: 7766 + components: + - type: Transform + pos: -23.5,3.5 + parent: 2 + - uid: 7767 + components: + - type: Transform + pos: -26.5,6.5 + parent: 2 + - uid: 7768 + components: + - type: Transform + pos: -24.5,6.5 + parent: 2 + - uid: 7769 + components: + - type: Transform + pos: -23.5,6.5 + parent: 2 + - uid: 7770 + components: + - type: Transform + pos: -23.5,17.5 + parent: 2 + - uid: 7771 + components: + - type: Transform + pos: -23.5,18.5 + parent: 2 + - uid: 7772 + components: + - type: Transform + pos: -23.5,7.5 + parent: 2 + - uid: 7773 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - uid: 7774 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 7775 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 7776 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 + - uid: 7777 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 + - uid: 7778 + components: + - type: Transform + pos: -23.5,13.5 + parent: 2 + - uid: 7779 + components: + - type: Transform + pos: -23.5,14.5 + parent: 2 + - uid: 7780 + components: + - type: Transform + pos: -23.5,15.5 + parent: 2 + - uid: 7781 + components: + - type: Transform + pos: -23.5,16.5 + parent: 2 + - uid: 7782 + components: + - type: Transform + pos: -21.5,18.5 + parent: 2 + - uid: 7783 + components: + - type: Transform + pos: -22.5,18.5 + parent: 2 + - uid: 7784 + components: + - type: Transform + pos: -24.5,18.5 + parent: 2 + - uid: 7785 + components: + - type: Transform + pos: -25.5,18.5 + parent: 2 + - uid: 7786 + components: + - type: Transform + pos: -26.5,18.5 + parent: 2 + - uid: 7787 + components: + - type: Transform + pos: -27.5,18.5 + parent: 2 + - uid: 7807 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - uid: 7808 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 + - uid: 7809 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 + - uid: 7810 + components: + - type: Transform + pos: 34.5,13.5 + parent: 2 + - uid: 7811 + components: + - type: Transform + pos: 34.5,14.5 + parent: 2 + - uid: 7812 + components: + - type: Transform + pos: 34.5,15.5 + parent: 2 + - uid: 7813 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 7814 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 7815 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 7816 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 + - uid: 7817 + components: + - type: Transform + pos: 34.5,0.5 + parent: 2 + - uid: 7818 + components: + - type: Transform + pos: 34.5,1.5 + parent: 2 + - uid: 7819 + components: + - type: Transform + pos: 34.5,2.5 + parent: 2 + - uid: 7820 + components: + - type: Transform + pos: 34.5,3.5 + parent: 2 + - uid: 7821 + components: + - type: Transform + pos: 34.5,4.5 + parent: 2 + - uid: 7822 + components: + - type: Transform + pos: 34.5,5.5 + parent: 2 + - uid: 7823 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 7824 + components: + - type: Transform + pos: 34.5,7.5 + parent: 2 + - uid: 7825 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - uid: 7826 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 7827 + components: + - type: Transform + pos: 35.5,13.5 + parent: 2 + - uid: 7828 + components: + - type: Transform + pos: 36.5,13.5 + parent: 2 + - uid: 7829 + components: + - type: Transform + pos: 37.5,13.5 + parent: 2 + - uid: 7830 + components: + - type: Transform + pos: 38.5,13.5 + parent: 2 + - uid: 7831 + components: + - type: Transform + pos: 35.5,4.5 + parent: 2 + - uid: 7832 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - uid: 7833 + components: + - type: Transform + pos: 37.5,4.5 + parent: 2 + - uid: 7834 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - uid: 7874 + components: + - type: Transform + pos: -63.5,-0.5 + parent: 2 + - uid: 7875 + components: + - type: Transform + pos: -64.5,-0.5 + parent: 2 + - uid: 7876 + components: + - type: Transform + pos: -65.5,-0.5 + parent: 2 + - uid: 7877 + components: + - type: Transform + pos: -66.5,-0.5 + parent: 2 + - uid: 7878 + components: + - type: Transform + pos: -67.5,-0.5 + parent: 2 + - uid: 7879 + components: + - type: Transform + pos: -68.5,-0.5 + parent: 2 + - uid: 7880 + components: + - type: Transform + pos: -69.5,-0.5 + parent: 2 + - uid: 7881 + components: + - type: Transform + pos: -70.5,-0.5 + parent: 2 + - uid: 7882 + components: + - type: Transform + pos: -71.5,-0.5 + parent: 2 + - uid: 7883 + components: + - type: Transform + pos: -72.5,-0.5 + parent: 2 + - uid: 7884 + components: + - type: Transform + pos: -53.5,-0.5 + parent: 2 + - uid: 7885 + components: + - type: Transform + pos: -54.5,-0.5 + parent: 2 + - uid: 7886 + components: + - type: Transform + pos: -55.5,-0.5 + parent: 2 + - uid: 7887 + components: + - type: Transform + pos: -56.5,-0.5 + parent: 2 + - uid: 7888 + components: + - type: Transform + pos: -57.5,-0.5 + parent: 2 + - uid: 7889 + components: + - type: Transform + pos: -58.5,-0.5 + parent: 2 + - uid: 7890 + components: + - type: Transform + pos: -59.5,-0.5 + parent: 2 + - uid: 7891 + components: + - type: Transform + pos: -60.5,-0.5 + parent: 2 + - uid: 7892 + components: + - type: Transform + pos: -61.5,-0.5 + parent: 2 + - uid: 7893 + components: + - type: Transform + pos: -62.5,-0.5 + parent: 2 + - uid: 7894 + components: + - type: Transform + pos: -72.5,0.5 + parent: 2 + - uid: 7895 + components: + - type: Transform + pos: -72.5,1.5 + parent: 2 + - uid: 7897 + components: + - type: Transform + pos: -73.5,1.5 + parent: 2 + - uid: 7901 + components: + - type: Transform + pos: -65.5,0.5 + parent: 2 + - uid: 7902 + components: + - type: Transform + pos: -72.5,-1.5 + parent: 2 + - uid: 7903 + components: + - type: Transform + pos: -73.5,-1.5 + parent: 2 + - uid: 7904 + components: + - type: Transform + pos: -74.5,-1.5 + parent: 2 + - uid: 7910 + components: + - type: Transform + pos: -68.5,-1.5 + parent: 2 + - uid: 7929 + components: + - type: Transform + pos: -36.5,-24.5 + parent: 2 + - uid: 8170 + components: + - type: Transform + pos: -57.5,21.5 + parent: 2 + - uid: 8171 + components: + - type: Transform + pos: -53.5,21.5 + parent: 2 + - uid: 8172 + components: + - type: Transform + pos: -56.5,21.5 + parent: 2 + - uid: 8176 + components: + - type: Transform + pos: -55.5,21.5 + parent: 2 + - uid: 8182 + components: + - type: Transform + pos: -55.5,-20.5 + parent: 2 + - uid: 8194 + components: + - type: Transform + pos: -54.5,-20.5 + parent: 2 + - uid: 8231 + components: + - type: Transform + pos: -53.5,-20.5 + parent: 2 + - uid: 8265 + components: + - type: Transform + pos: -58.5,-36.5 + parent: 2 + - uid: 8266 + components: + - type: Transform + pos: -58.5,-37.5 + parent: 2 + - uid: 8267 + components: + - type: Transform + pos: -58.5,-38.5 + parent: 2 + - uid: 8268 + components: + - type: Transform + pos: -58.5,-39.5 + parent: 2 + - uid: 8269 + components: + - type: Transform + pos: -58.5,-40.5 + parent: 2 + - uid: 8274 + components: + - type: Transform + pos: -59.5,-40.5 + parent: 2 + - uid: 8275 + components: + - type: Transform + pos: -57.5,-40.5 + parent: 2 + - uid: 8276 + components: + - type: Transform + pos: -56.5,-40.5 + parent: 2 + - uid: 8280 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 + - uid: 8282 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 8284 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 8287 + components: + - type: Transform + pos: -42.5,-43.5 + parent: 2 + - uid: 8332 + components: + - type: Transform + pos: -85.5,-34.5 + parent: 2 + - uid: 8335 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 2 + - uid: 8361 + components: + - type: Transform + pos: -76.5,36.5 + parent: 2 + - uid: 8387 + components: + - type: Transform + pos: -42.5,-40.5 + parent: 2 + - uid: 8414 + components: + - type: Transform + pos: -41.5,-28.5 + parent: 2 + - uid: 8415 + components: + - type: Transform + pos: -41.5,-29.5 + parent: 2 + - uid: 8416 + components: + - type: Transform + pos: -41.5,-30.5 + parent: 2 + - uid: 8417 + components: + - type: Transform + pos: -42.5,-30.5 + parent: 2 + - uid: 8418 + components: + - type: Transform + pos: -43.5,-30.5 + parent: 2 + - uid: 8450 + components: + - type: Transform + pos: -77.5,35.5 + parent: 2 + - uid: 8463 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - uid: 8464 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - uid: 8465 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 8466 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 8467 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 8468 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 8469 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 8470 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 + - uid: 8471 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 8472 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 8473 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 + - uid: 8474 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 8475 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 2 + - uid: 8476 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 8477 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 8478 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 8544 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 8545 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - uid: 8546 + components: + - type: Transform + pos: 18.5,15.5 + parent: 2 + - uid: 8547 + components: + - type: Transform + pos: 18.5,14.5 + parent: 2 + - uid: 8548 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - uid: 8566 + components: + - type: Transform + pos: -58.5,-2.5 + parent: 2 + - uid: 8567 + components: + - type: Transform + pos: -58.5,-3.5 + parent: 2 + - uid: 8568 + components: + - type: Transform + pos: -58.5,-4.5 + parent: 2 + - uid: 8569 + components: + - type: Transform + pos: -59.5,-4.5 + parent: 2 + - uid: 8570 + components: + - type: Transform + pos: -59.5,-5.5 + parent: 2 + - uid: 8571 + components: + - type: Transform + pos: -59.5,-6.5 + parent: 2 + - uid: 8572 + components: + - type: Transform + pos: -59.5,-7.5 + parent: 2 + - uid: 8573 + components: + - type: Transform + pos: -60.5,-6.5 + parent: 2 + - uid: 8574 + components: + - type: Transform + pos: -61.5,-6.5 + parent: 2 + - uid: 8575 + components: + - type: Transform + pos: -62.5,-6.5 + parent: 2 + - uid: 8576 + components: + - type: Transform + pos: -53.5,-2.5 + parent: 2 + - uid: 8577 + components: + - type: Transform + pos: -53.5,-3.5 + parent: 2 + - uid: 8578 + components: + - type: Transform + pos: -53.5,-4.5 + parent: 2 + - uid: 8579 + components: + - type: Transform + pos: -54.5,-4.5 + parent: 2 + - uid: 8580 + components: + - type: Transform + pos: -54.5,-5.5 + parent: 2 + - uid: 8581 + components: + - type: Transform + pos: -54.5,-6.5 + parent: 2 + - uid: 8676 + components: + - type: Transform + pos: -39.5,-39.5 + parent: 2 + - uid: 8678 + components: + - type: Transform + pos: -40.5,-39.5 + parent: 2 + - uid: 8680 + components: + - type: Transform + pos: -41.5,-39.5 + parent: 2 + - uid: 8681 + components: + - type: Transform + pos: -42.5,-42.5 + parent: 2 + - uid: 8682 + components: + - type: Transform + pos: -42.5,-39.5 + parent: 2 + - uid: 8683 + components: + - type: Transform + pos: -42.5,-41.5 + parent: 2 + - uid: 8684 + components: + - type: Transform + pos: -42.5,-44.5 + parent: 2 + - uid: 8685 + components: + - type: Transform + pos: -41.5,-44.5 + parent: 2 + - uid: 8686 + components: + - type: Transform + pos: -40.5,-44.5 + parent: 2 + - uid: 8687 + components: + - type: Transform + pos: -43.5,-44.5 + parent: 2 + - uid: 8688 + components: + - type: Transform + pos: -44.5,-44.5 + parent: 2 + - uid: 8689 + components: + - type: Transform + pos: -40.5,-45.5 + parent: 2 + - uid: 8690 + components: + - type: Transform + pos: -39.5,-45.5 + parent: 2 + - uid: 8691 + components: + - type: Transform + pos: -38.5,-45.5 + parent: 2 + - uid: 8692 + components: + - type: Transform + pos: -37.5,-45.5 + parent: 2 + - uid: 8693 + components: + - type: Transform + pos: -42.5,-38.5 + parent: 2 + - uid: 8694 + components: + - type: Transform + pos: -42.5,-37.5 + parent: 2 + - uid: 8695 + components: + - type: Transform + pos: -41.5,-37.5 + parent: 2 + - uid: 8696 + components: + - type: Transform + pos: -40.5,-37.5 + parent: 2 + - uid: 8697 + components: + - type: Transform + pos: -39.5,-37.5 + parent: 2 + - uid: 8698 + components: + - type: Transform + pos: -38.5,-37.5 + parent: 2 + - uid: 8699 + components: + - type: Transform + pos: -37.5,-37.5 + parent: 2 + - uid: 8700 + components: + - type: Transform + pos: -36.5,-37.5 + parent: 2 + - uid: 8701 + components: + - type: Transform + pos: -36.5,-38.5 + parent: 2 + - uid: 8734 + components: + - type: Transform + pos: -72.5,26.5 + parent: 2 + - uid: 8766 + components: + - type: Transform + pos: -33.5,-26.5 + parent: 2 + - uid: 8767 + components: + - type: Transform + pos: -33.5,-27.5 + parent: 2 + - uid: 8768 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 2 + - uid: 8769 + components: + - type: Transform + pos: -32.5,-27.5 + parent: 2 + - uid: 8770 + components: + - type: Transform + pos: -31.5,-27.5 + parent: 2 + - uid: 8771 + components: + - type: Transform + pos: -30.5,-27.5 + parent: 2 + - uid: 8772 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 2 + - uid: 8773 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 2 + - uid: 8774 + components: + - type: Transform + pos: -28.5,-28.5 + parent: 2 + - uid: 8775 + components: + - type: Transform + pos: -28.5,-29.5 + parent: 2 + - uid: 8776 + components: + - type: Transform + pos: -28.5,-30.5 + parent: 2 + - uid: 8777 + components: + - type: Transform + pos: -28.5,-31.5 + parent: 2 + - uid: 8778 + components: + - type: Transform + pos: -27.5,-31.5 + parent: 2 + - uid: 8817 + components: + - type: Transform + pos: -62.5,-5.5 + parent: 2 + - uid: 8863 + components: + - type: Transform + pos: -20.5,-22.5 + parent: 2 + - uid: 8864 + components: + - type: Transform + pos: -20.5,-23.5 + parent: 2 + - uid: 8865 + components: + - type: Transform + pos: -19.5,-23.5 + parent: 2 + - uid: 8866 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 2 + - uid: 8867 + components: + - type: Transform + pos: -17.5,-23.5 + parent: 2 + - uid: 8868 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 2 + - uid: 8869 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 2 + - uid: 8870 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 2 + - uid: 8871 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - uid: 8872 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 2 + - uid: 8873 + components: + - type: Transform + pos: -16.5,-24.5 + parent: 2 + - uid: 8874 + components: + - type: Transform + pos: -16.5,-25.5 + parent: 2 + - uid: 8875 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 2 + - uid: 8876 + components: + - type: Transform + pos: -16.5,-27.5 + parent: 2 + - uid: 8877 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 2 + - uid: 8878 + components: + - type: Transform + pos: -14.5,-27.5 + parent: 2 + - uid: 8879 + components: + - type: Transform + pos: -13.5,-27.5 + parent: 2 + - uid: 8880 + components: + - type: Transform + pos: -12.5,-27.5 + parent: 2 + - uid: 8881 + components: + - type: Transform + pos: -11.5,-27.5 + parent: 2 + - uid: 8882 + components: + - type: Transform + pos: -10.5,-27.5 + parent: 2 + - uid: 8883 + components: + - type: Transform + pos: -9.5,-27.5 + parent: 2 + - uid: 8884 + components: + - type: Transform + pos: -9.5,-26.5 + parent: 2 + - uid: 8888 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 2 + - uid: 8889 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 2 + - uid: 8890 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 2 + - uid: 8891 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 2 + - uid: 8892 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 2 + - uid: 8893 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 2 + - uid: 8894 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 2 + - uid: 8895 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 2 + - uid: 8896 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 2 + - uid: 8897 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 2 + - uid: 8898 + components: + - type: Transform + pos: -6.5,-24.5 + parent: 2 + - uid: 8899 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 2 + - uid: 8900 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 2 + - uid: 8901 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 2 + - uid: 8902 + components: + - type: Transform + pos: -6.5,-25.5 + parent: 2 + - uid: 8903 + components: + - type: Transform + pos: -6.5,-26.5 + parent: 2 + - uid: 8947 + components: + - type: Transform + pos: -8.5,-26.5 + parent: 2 + - uid: 8980 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 + - uid: 8982 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 2 + - uid: 9006 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - uid: 9007 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 + - uid: 9008 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 9009 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 2 + - uid: 9010 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 2 + - uid: 9011 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 2 + - uid: 9082 + components: + - type: Transform + pos: -54.5,0.5 + parent: 2 + - uid: 9328 + components: + - type: Transform + pos: -66.5,25.5 + parent: 2 + - uid: 9329 + components: + - type: Transform + pos: -65.5,25.5 + parent: 2 + - uid: 9330 + components: + - type: Transform + pos: -69.5,25.5 + parent: 2 + - uid: 9331 + components: + - type: Transform + pos: -71.5,25.5 + parent: 2 + - uid: 9332 + components: + - type: Transform + pos: -67.5,25.5 + parent: 2 + - uid: 9333 + components: + - type: Transform + pos: -71.5,29.5 + parent: 2 + - uid: 9339 + components: + - type: Transform + pos: -70.5,29.5 + parent: 2 + - uid: 9344 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 9418 + components: + - type: Transform + pos: -55.5,-40.5 + parent: 2 + - uid: 9419 + components: + - type: Transform + pos: -54.5,-40.5 + parent: 2 + - uid: 9420 + components: + - type: Transform + pos: -53.5,-40.5 + parent: 2 + - uid: 9421 + components: + - type: Transform + pos: -53.5,-39.5 + parent: 2 + - uid: 9480 + components: + - type: Transform + pos: -50.5,29.5 + parent: 2 + - uid: 9481 + components: + - type: Transform + pos: -72.5,29.5 + parent: 2 + - uid: 9486 + components: + - type: Transform + pos: -68.5,31.5 + parent: 2 + - uid: 9522 + components: + - type: Transform + pos: -68.5,32.5 + parent: 2 + - uid: 9546 + components: + - type: Transform + pos: -55.5,25.5 + parent: 2 + - uid: 9566 + components: + - type: Transform + pos: -52.5,29.5 + parent: 2 + - uid: 9583 + components: + - type: Transform + pos: -77.5,29.5 + parent: 2 + - uid: 9888 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 9889 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 9890 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 + - uid: 9891 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - uid: 9892 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 9893 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 2 + - uid: 9894 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - uid: 9895 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - uid: 9896 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 + - uid: 9897 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 + - uid: 9898 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - uid: 9899 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - uid: 9900 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 + - uid: 9901 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 + - uid: 9909 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 9910 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 + - uid: 10159 + components: + - type: Transform + pos: -5.5,-48.5 + parent: 2 + - uid: 10179 + components: + - type: Transform + pos: -34.5,-52.5 + parent: 2 + - uid: 10180 + components: + - type: Transform + pos: -33.5,-52.5 + parent: 2 + - uid: 10181 + components: + - type: Transform + pos: -32.5,-52.5 + parent: 2 + - uid: 10182 + components: + - type: Transform + pos: -32.5,-53.5 + parent: 2 + - uid: 10183 + components: + - type: Transform + pos: -32.5,-54.5 + parent: 2 + - uid: 10184 + components: + - type: Transform + pos: -32.5,-51.5 + parent: 2 + - uid: 10185 + components: + - type: Transform + pos: -32.5,-50.5 + parent: 2 + - uid: 10186 + components: + - type: Transform + pos: -32.5,-49.5 + parent: 2 + - uid: 10187 + components: + - type: Transform + pos: -33.5,-49.5 + parent: 2 + - uid: 10188 + components: + - type: Transform + pos: -34.5,-49.5 + parent: 2 + - uid: 10189 + components: + - type: Transform + pos: -35.5,-49.5 + parent: 2 + - uid: 10190 + components: + - type: Transform + pos: -36.5,-49.5 + parent: 2 + - uid: 10191 + components: + - type: Transform + pos: -37.5,-49.5 + parent: 2 + - uid: 10192 + components: + - type: Transform + pos: -38.5,-49.5 + parent: 2 + - uid: 10193 + components: + - type: Transform + pos: -39.5,-49.5 + parent: 2 + - uid: 10194 + components: + - type: Transform + pos: -40.5,-49.5 + parent: 2 + - uid: 10195 + components: + - type: Transform + pos: -41.5,-49.5 + parent: 2 + - uid: 10196 + components: + - type: Transform + pos: -42.5,-49.5 + parent: 2 + - uid: 10197 + components: + - type: Transform + pos: -44.5,-49.5 + parent: 2 + - uid: 10198 + components: + - type: Transform + pos: -45.5,-49.5 + parent: 2 + - uid: 10199 + components: + - type: Transform + pos: -46.5,-49.5 + parent: 2 + - uid: 10200 + components: + - type: Transform + pos: -47.5,-49.5 + parent: 2 + - uid: 10201 + components: + - type: Transform + pos: -48.5,-49.5 + parent: 2 + - uid: 10202 + components: + - type: Transform + pos: -48.5,-48.5 + parent: 2 + - uid: 10203 + components: + - type: Transform + pos: -48.5,-47.5 + parent: 2 + - uid: 10204 + components: + - type: Transform + pos: -48.5,-46.5 + parent: 2 + - uid: 10205 + components: + - type: Transform + pos: -48.5,-45.5 + parent: 2 + - uid: 10206 + components: + - type: Transform + pos: -48.5,-44.5 + parent: 2 + - uid: 10207 + components: + - type: Transform + pos: -48.5,-43.5 + parent: 2 + - uid: 10208 + components: + - type: Transform + pos: -47.5,-43.5 + parent: 2 + - uid: 10209 + components: + - type: Transform + pos: -31.5,-49.5 + parent: 2 + - uid: 10210 + components: + - type: Transform + pos: -30.5,-49.5 + parent: 2 + - uid: 10211 + components: + - type: Transform + pos: -29.5,-49.5 + parent: 2 + - uid: 10212 + components: + - type: Transform + pos: -28.5,-49.5 + parent: 2 + - uid: 10213 + components: + - type: Transform + pos: -28.5,-38.5 + parent: 2 + - uid: 10214 + components: + - type: Transform + pos: -28.5,-48.5 + parent: 2 + - uid: 10215 + components: + - type: Transform + pos: -28.5,-47.5 + parent: 2 + - uid: 10216 + components: + - type: Transform + pos: -28.5,-46.5 + parent: 2 + - uid: 10217 + components: + - type: Transform + pos: -28.5,-45.5 + parent: 2 + - uid: 10218 + components: + - type: Transform + pos: -28.5,-44.5 + parent: 2 + - uid: 10219 + components: + - type: Transform + pos: -28.5,-43.5 + parent: 2 + - uid: 10220 + components: + - type: Transform + pos: -28.5,-42.5 + parent: 2 + - uid: 10221 + components: + - type: Transform + pos: -28.5,-41.5 + parent: 2 + - uid: 10222 + components: + - type: Transform + pos: -28.5,-40.5 + parent: 2 + - uid: 10223 + components: + - type: Transform + pos: -28.5,-39.5 + parent: 2 + - uid: 10224 + components: + - type: Transform + pos: -29.5,-38.5 + parent: 2 + - uid: 10225 + components: + - type: Transform + pos: -30.5,-38.5 + parent: 2 + - uid: 10226 + components: + - type: Transform + pos: -31.5,-38.5 + parent: 2 + - uid: 10227 + components: + - type: Transform + pos: -32.5,-38.5 + parent: 2 + - uid: 10228 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 + - uid: 10229 + components: + - type: Transform + pos: -27.5,-46.5 + parent: 2 + - uid: 10230 + components: + - type: Transform + pos: -26.5,-46.5 + parent: 2 + - uid: 10231 + components: + - type: Transform + pos: -25.5,-46.5 + parent: 2 + - uid: 10232 + components: + - type: Transform + pos: -24.5,-46.5 + parent: 2 + - uid: 10233 + components: + - type: Transform + pos: -23.5,-46.5 + parent: 2 + - uid: 10234 + components: + - type: Transform + pos: -23.5,-47.5 + parent: 2 + - uid: 10235 + components: + - type: Transform + pos: -23.5,-48.5 + parent: 2 + - uid: 10236 + components: + - type: Transform + pos: -22.5,-48.5 + parent: 2 + - uid: 10237 + components: + - type: Transform + pos: -22.5,-48.5 + parent: 2 + - uid: 10238 + components: + - type: Transform + pos: -21.5,-48.5 + parent: 2 + - uid: 10239 + components: + - type: Transform + pos: -20.5,-48.5 + parent: 2 + - uid: 10240 + components: + - type: Transform + pos: -19.5,-48.5 + parent: 2 + - uid: 10241 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 2 + - uid: 10242 + components: + - type: Transform + pos: -17.5,-48.5 + parent: 2 + - uid: 10243 + components: + - type: Transform + pos: -16.5,-48.5 + parent: 2 + - uid: 10244 + components: + - type: Transform + pos: -46.5,-43.5 + parent: 2 + - uid: 10245 + components: + - type: Transform + pos: -46.5,-42.5 + parent: 2 + - uid: 10246 + components: + - type: Transform + pos: -46.5,-41.5 + parent: 2 + - uid: 10247 + components: + - type: Transform + pos: -46.5,-40.5 + parent: 2 + - uid: 10248 + components: + - type: Transform + pos: -46.5,-39.5 + parent: 2 + - uid: 10249 + components: + - type: Transform + pos: -46.5,-38.5 + parent: 2 + - uid: 10250 + components: + - type: Transform + pos: -46.5,-37.5 + parent: 2 + - uid: 10251 + components: + - type: Transform + pos: -47.5,-37.5 + parent: 2 + - uid: 10252 + components: + - type: Transform + pos: -48.5,-37.5 + parent: 2 + - uid: 10609 + components: + - type: Transform + pos: -72.5,-8.5 + parent: 2 + - uid: 10610 + components: + - type: Transform + pos: -71.5,-8.5 + parent: 2 + - uid: 10611 + components: + - type: Transform + pos: -70.5,-8.5 + parent: 2 + - uid: 10612 + components: + - type: Transform + pos: -70.5,-7.5 + parent: 2 + - uid: 10613 + components: + - type: Transform + pos: -70.5,-6.5 + parent: 2 + - uid: 10614 + components: + - type: Transform + pos: -70.5,-5.5 + parent: 2 + - uid: 10615 + components: + - type: Transform + pos: -71.5,-5.5 + parent: 2 + - uid: 10616 + components: + - type: Transform + pos: -72.5,-5.5 + parent: 2 + - uid: 10617 + components: + - type: Transform + pos: -73.5,-5.5 + parent: 2 + - uid: 10618 + components: + - type: Transform + pos: -69.5,-5.5 + parent: 2 + - uid: 10619 + components: + - type: Transform + pos: -68.5,-5.5 + parent: 2 + - uid: 10620 + components: + - type: Transform + pos: -67.5,-5.5 + parent: 2 + - uid: 10621 + components: + - type: Transform + pos: -66.5,-5.5 + parent: 2 + - uid: 10622 + components: + - type: Transform + pos: -66.5,-6.5 + parent: 2 + - uid: 10623 + components: + - type: Transform + pos: -66.5,-7.5 + parent: 2 + - uid: 10624 + components: + - type: Transform + pos: -66.5,-8.5 + parent: 2 + - uid: 10625 + components: + - type: Transform + pos: -66.5,-9.5 + parent: 2 + - uid: 10626 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - uid: 10627 + components: + - type: Transform + pos: -55.5,-10.5 + parent: 2 + - uid: 10628 + components: + - type: Transform + pos: -65.5,-10.5 + parent: 2 + - uid: 10629 + components: + - type: Transform + pos: -64.5,-10.5 + parent: 2 + - uid: 10630 + components: + - type: Transform + pos: -63.5,-10.5 + parent: 2 + - uid: 10631 + components: + - type: Transform + pos: -62.5,-10.5 + parent: 2 + - uid: 10632 + components: + - type: Transform + pos: -61.5,-10.5 + parent: 2 + - uid: 10633 + components: + - type: Transform + pos: -60.5,-10.5 + parent: 2 + - uid: 10634 + components: + - type: Transform + pos: -59.5,-10.5 + parent: 2 + - uid: 10635 + components: + - type: Transform + pos: -58.5,-10.5 + parent: 2 + - uid: 10636 + components: + - type: Transform + pos: -57.5,-10.5 + parent: 2 + - uid: 10637 + components: + - type: Transform + pos: -56.5,-10.5 + parent: 2 + - uid: 10638 + components: + - type: Transform + pos: -55.5,-9.5 + parent: 2 + - uid: 10639 + components: + - type: Transform + pos: -54.5,-9.5 + parent: 2 + - uid: 10640 + components: + - type: Transform + pos: -53.5,-9.5 + parent: 2 + - uid: 10641 + components: + - type: Transform + pos: -52.5,-9.5 + parent: 2 + - uid: 10642 + components: + - type: Transform + pos: -51.5,-9.5 + parent: 2 + - uid: 10643 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 10644 + components: + - type: Transform + pos: -50.5,-8.5 + parent: 2 + - uid: 10645 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 10646 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - uid: 10647 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - uid: 10648 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 2 + - uid: 10649 + components: + - type: Transform + pos: -50.5,-10.5 + parent: 2 + - uid: 10650 + components: + - type: Transform + pos: -50.5,-11.5 + parent: 2 + - uid: 10651 + components: + - type: Transform + pos: -50.5,-12.5 + parent: 2 + - uid: 10652 + components: + - type: Transform + pos: -50.5,-13.5 + parent: 2 + - uid: 10653 + components: + - type: Transform + pos: -50.5,-14.5 + parent: 2 + - uid: 10654 + components: + - type: Transform + pos: -49.5,-14.5 + parent: 2 + - uid: 10657 + components: + - type: Transform + pos: -46.5,-14.5 + parent: 2 + - uid: 10662 + components: + - type: Transform + pos: -45.5,-13.5 + parent: 2 + - uid: 10663 + components: + - type: Transform + pos: -44.5,-14.5 + parent: 2 + - uid: 10665 + components: + - type: Transform + pos: -42.5,-18.5 + parent: 2 + - uid: 10666 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 10667 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - uid: 10668 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 2 + - uid: 10669 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 2 + - uid: 10670 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 2 + - uid: 10671 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 + - uid: 10672 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 10673 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 2 + - uid: 10674 + components: + - type: Transform + pos: -37.5,-22.5 + parent: 2 + - uid: 10675 + components: + - type: Transform + pos: -37.5,-23.5 + parent: 2 + - uid: 10676 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 2 + - uid: 10677 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 2 + - uid: 10679 + components: + - type: Transform + pos: -35.5,-24.5 + parent: 2 + - uid: 10680 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 2 + - uid: 10681 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 2 + - uid: 10682 + components: + - type: Transform + pos: -32.5,-24.5 + parent: 2 + - uid: 10683 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 2 + - uid: 10684 + components: + - type: Transform + pos: -30.5,-24.5 + parent: 2 + - uid: 10685 + components: + - type: Transform + pos: -29.5,-24.5 + parent: 2 + - uid: 10686 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 2 + - uid: 10687 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 2 + - uid: 10688 + components: + - type: Transform + pos: -43.5,-18.5 + parent: 2 + - uid: 10689 + components: + - type: Transform + pos: -43.5,-19.5 + parent: 2 + - uid: 10690 + components: + - type: Transform + pos: -43.5,-20.5 + parent: 2 + - uid: 10691 + components: + - type: Transform + pos: -43.5,-21.5 + parent: 2 + - uid: 10692 + components: + - type: Transform + pos: -43.5,-22.5 + parent: 2 + - uid: 10693 + components: + - type: Transform + pos: -43.5,-23.5 + parent: 2 + - uid: 10694 + components: + - type: Transform + pos: -43.5,-24.5 + parent: 2 + - uid: 10695 + components: + - type: Transform + pos: -43.5,-25.5 + parent: 2 + - uid: 10696 + components: + - type: Transform + pos: -43.5,-26.5 + parent: 2 + - uid: 10697 + components: + - type: Transform + pos: -43.5,-27.5 + parent: 2 + - uid: 10699 + components: + - type: Transform + pos: -41.5,-27.5 + parent: 2 + - uid: 10700 + components: + - type: Transform + pos: -40.5,-27.5 + parent: 2 + - uid: 10701 + components: + - type: Transform + pos: -39.5,-27.5 + parent: 2 + - uid: 10702 + components: + - type: Transform + pos: -38.5,-27.5 + parent: 2 + - uid: 10703 + components: + - type: Transform + pos: -37.5,-27.5 + parent: 2 + - uid: 10704 + components: + - type: Transform + pos: -36.5,-27.5 + parent: 2 + - uid: 10705 + components: + - type: Transform + pos: -36.5,-28.5 + parent: 2 + - uid: 10706 + components: + - type: Transform + pos: -36.5,-29.5 + parent: 2 + - uid: 10707 + components: + - type: Transform + pos: -36.5,-30.5 + parent: 2 + - uid: 10708 + components: + - type: Transform + pos: -36.5,-31.5 + parent: 2 + - uid: 10709 + components: + - type: Transform + pos: -35.5,-31.5 + parent: 2 + - uid: 10710 + components: + - type: Transform + pos: -34.5,-31.5 + parent: 2 + - uid: 10711 + components: + - type: Transform + pos: -33.5,-31.5 + parent: 2 + - uid: 10712 + components: + - type: Transform + pos: -51.5,-13.5 + parent: 2 + - uid: 10713 + components: + - type: Transform + pos: -52.5,-13.5 + parent: 2 + - uid: 10714 + components: + - type: Transform + pos: -53.5,-13.5 + parent: 2 + - uid: 10715 + components: + - type: Transform + pos: -53.5,-14.5 + parent: 2 + - uid: 10716 + components: + - type: Transform + pos: -53.5,-15.5 + parent: 2 + - uid: 10717 + components: + - type: Transform + pos: -53.5,-16.5 + parent: 2 + - uid: 10718 + components: + - type: Transform + pos: -53.5,-17.5 + parent: 2 + - uid: 10719 + components: + - type: Transform + pos: -54.5,-17.5 + parent: 2 + - uid: 10720 + components: + - type: Transform + pos: -55.5,-17.5 + parent: 2 + - uid: 10721 + components: + - type: Transform + pos: -56.5,-17.5 + parent: 2 + - uid: 10722 + components: + - type: Transform + pos: -57.5,-17.5 + parent: 2 + - uid: 10723 + components: + - type: Transform + pos: -58.5,-17.5 + parent: 2 + - uid: 10724 + components: + - type: Transform + pos: -58.5,-18.5 + parent: 2 + - uid: 10725 + components: + - type: Transform + pos: -58.5,-19.5 + parent: 2 + - uid: 10726 + components: + - type: Transform + pos: -58.5,-20.5 + parent: 2 + - uid: 10727 + components: + - type: Transform + pos: -58.5,-21.5 + parent: 2 + - uid: 10728 + components: + - type: Transform + pos: -58.5,-22.5 + parent: 2 + - uid: 10729 + components: + - type: Transform + pos: -58.5,-23.5 + parent: 2 + - uid: 10730 + components: + - type: Transform + pos: -58.5,-24.5 + parent: 2 + - uid: 10731 + components: + - type: Transform + pos: -58.5,-25.5 + parent: 2 + - uid: 10732 + components: + - type: Transform + pos: -58.5,-26.5 + parent: 2 + - uid: 10733 + components: + - type: Transform + pos: -58.5,-27.5 + parent: 2 + - uid: 10734 + components: + - type: Transform + pos: -58.5,-28.5 + parent: 2 + - uid: 10735 + components: + - type: Transform + pos: -58.5,-29.5 + parent: 2 + - uid: 10736 + components: + - type: Transform + pos: -58.5,-30.5 + parent: 2 + - uid: 10737 + components: + - type: Transform + pos: -58.5,-31.5 + parent: 2 + - uid: 10738 + components: + - type: Transform + pos: -70.5,-8.5 + parent: 2 + - uid: 10739 + components: + - type: Transform + pos: -70.5,-9.5 + parent: 2 + - uid: 10740 + components: + - type: Transform + pos: -70.5,-10.5 + parent: 2 + - uid: 10741 + components: + - type: Transform + pos: -62.5,-9.5 + parent: 2 + - uid: 10742 + components: + - type: Transform + pos: -62.5,-8.5 + parent: 2 + - uid: 10743 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 + - uid: 10744 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 2 + - uid: 11166 + components: + - type: Transform + pos: -53.5,29.5 + parent: 2 + - uid: 11167 + components: + - type: Transform + pos: -56.5,25.5 + parent: 2 + - uid: 11168 + components: + - type: Transform + pos: -39.5,35.5 + parent: 2 + - uid: 11169 + components: + - type: Transform + pos: -48.5,29.5 + parent: 2 + - uid: 11174 + components: + - type: Transform + pos: -39.5,35.5 + parent: 2 + - uid: 11175 + components: + - type: Transform + pos: -38.5,35.5 + parent: 2 + - uid: 11176 + components: + - type: Transform + pos: -37.5,35.5 + parent: 2 + - uid: 11177 + components: + - type: Transform + pos: -36.5,35.5 + parent: 2 + - uid: 11178 + components: + - type: Transform + pos: -35.5,35.5 + parent: 2 + - uid: 11179 + components: + - type: Transform + pos: -34.5,35.5 + parent: 2 + - uid: 11180 + components: + - type: Transform + pos: -34.5,34.5 + parent: 2 + - uid: 11181 + components: + - type: Transform + pos: -34.5,33.5 + parent: 2 + - uid: 11182 + components: + - type: Transform + pos: -34.5,32.5 + parent: 2 + - uid: 11183 + components: + - type: Transform + pos: -34.5,31.5 + parent: 2 + - uid: 11184 + components: + - type: Transform + pos: -34.5,30.5 + parent: 2 + - uid: 11185 + components: + - type: Transform + pos: -34.5,29.5 + parent: 2 + - uid: 11186 + components: + - type: Transform + pos: -34.5,28.5 + parent: 2 + - uid: 11187 + components: + - type: Transform + pos: -34.5,27.5 + parent: 2 + - uid: 11188 + components: + - type: Transform + pos: -34.5,26.5 + parent: 2 + - uid: 11254 + components: + - type: Transform + pos: -64.5,-30.5 + parent: 2 + - uid: 11255 + components: + - type: Transform + pos: -64.5,-31.5 + parent: 2 + - uid: 11256 + components: + - type: Transform + pos: -64.5,-32.5 + parent: 2 + - uid: 11257 + components: + - type: Transform + pos: -64.5,-33.5 + parent: 2 + - uid: 11258 + components: + - type: Transform + pos: -64.5,-34.5 + parent: 2 + - uid: 11259 + components: + - type: Transform + pos: -63.5,-34.5 + parent: 2 + - uid: 11260 + components: + - type: Transform + pos: -62.5,-34.5 + parent: 2 + - uid: 11261 + components: + - type: Transform + pos: -61.5,-34.5 + parent: 2 + - uid: 11262 + components: + - type: Transform + pos: -62.5,-35.5 + parent: 2 + - uid: 11263 + components: + - type: Transform + pos: -62.5,-36.5 + parent: 2 + - uid: 11315 + components: + - type: Transform + pos: -30.5,16.5 + parent: 2 + - uid: 11419 + components: + - type: Transform + pos: -26.5,14.5 + parent: 2 + - uid: 11436 + components: + - type: Transform + pos: -27.5,14.5 + parent: 2 + - uid: 11438 + components: + - type: Transform + pos: -28.5,14.5 + parent: 2 + - uid: 11453 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - uid: 11454 + components: + - type: Transform + pos: -77.5,27.5 + parent: 2 + - uid: 11471 + components: + - type: Transform + pos: -88.5,-34.5 + parent: 2 + - uid: 11472 + components: + - type: Transform + pos: -89.5,-34.5 + parent: 2 + - uid: 11473 + components: + - type: Transform + pos: -90.5,-34.5 + parent: 2 + - uid: 11474 + components: + - type: Transform + pos: -90.5,-35.5 + parent: 2 + - uid: 11475 + components: + - type: Transform + pos: -90.5,-36.5 + parent: 2 + - uid: 11476 + components: + - type: Transform + pos: -90.5,-37.5 + parent: 2 + - uid: 11477 + components: + - type: Transform + pos: -90.5,-33.5 + parent: 2 + - uid: 11478 + components: + - type: Transform + pos: -90.5,-32.5 + parent: 2 + - uid: 11479 + components: + - type: Transform + pos: -90.5,-31.5 + parent: 2 + - uid: 11480 + components: + - type: Transform + pos: -93.5,-32.5 + parent: 2 + - uid: 11481 + components: + - type: Transform + pos: -93.5,-33.5 + parent: 2 + - uid: 11482 + components: + - type: Transform + pos: -93.5,-34.5 + parent: 2 + - uid: 11483 + components: + - type: Transform + pos: -92.5,-32.5 + parent: 2 + - uid: 11484 + components: + - type: Transform + pos: -91.5,-32.5 + parent: 2 + - uid: 11485 + components: + - type: Transform + pos: -87.5,-34.5 + parent: 2 + - uid: 11486 + components: + - type: Transform + pos: -86.5,-34.5 + parent: 2 + - uid: 11487 + components: + - type: Transform + pos: -86.5,-33.5 + parent: 2 + - uid: 11488 + components: + - type: Transform + pos: -86.5,-32.5 + parent: 2 + - uid: 11489 + components: + - type: Transform + pos: -86.5,-35.5 + parent: 2 + - uid: 11490 + components: + - type: Transform + pos: -86.5,-36.5 + parent: 2 + - uid: 11491 + components: + - type: Transform + pos: -92.5,-36.5 + parent: 2 + - uid: 11492 + components: + - type: Transform + pos: -91.5,-36.5 + parent: 2 + - uid: 11493 + components: + - type: Transform + pos: -93.5,-36.5 + parent: 2 + - uid: 11494 + components: + - type: Transform + pos: -93.5,-35.5 + parent: 2 + - uid: 11847 + components: + - type: Transform + pos: -42.5,24.5 + parent: 2 + - uid: 11878 + components: + - type: Transform + pos: -54.5,29.5 + parent: 2 + - uid: 11890 + components: + - type: Transform + pos: -77.5,25.5 + parent: 2 + - uid: 11951 + components: + - type: Transform + pos: -82.5,-5.5 + parent: 2 + - uid: 11961 + components: + - type: Transform + pos: -82.5,-6.5 + parent: 2 + - uid: 11962 + components: + - type: Transform + pos: -81.5,-6.5 + parent: 2 + - uid: 11964 + components: + - type: Transform + pos: -80.5,-6.5 + parent: 2 + - uid: 11965 + components: + - type: Transform + pos: -80.5,-5.5 + parent: 2 + - uid: 11966 + components: + - type: Transform + pos: -80.5,-4.5 + parent: 2 + - uid: 11968 + components: + - type: Transform + pos: -80.5,-3.5 + parent: 2 + - uid: 11976 + components: + - type: Transform + pos: -80.5,-2.5 + parent: 2 + - uid: 12122 + components: + - type: Transform + pos: -8.5,-63.5 + parent: 2 + - uid: 12215 + components: + - type: Transform + pos: -5.5,-49.5 + parent: 2 + - uid: 12218 + components: + - type: Transform + pos: -4.5,-49.5 + parent: 2 + - uid: 12219 + components: + - type: Transform + pos: -3.5,-49.5 + parent: 2 + - uid: 12220 + components: + - type: Transform + pos: -2.5,-49.5 + parent: 2 + - uid: 12238 + components: + - type: Transform + pos: -57.5,-15.5 + parent: 2 + - uid: 12240 + components: + - type: Transform + pos: -57.5,-13.5 + parent: 2 + - uid: 12248 + components: + - type: Transform + pos: -77.5,33.5 + parent: 2 + - uid: 12349 + components: + - type: Transform + pos: -80.5,-1.5 + parent: 2 + - uid: 12386 + components: + - type: Transform + pos: -45.5,-14.5 + parent: 2 + - uid: 12405 + components: + - type: Transform + pos: -80.5,-0.5 + parent: 2 + - uid: 12512 + components: + - type: Transform + pos: -49.5,29.5 + parent: 2 + - uid: 12516 + components: + - type: Transform + pos: -47.5,29.5 + parent: 2 + - uid: 12520 + components: + - type: Transform + pos: -51.5,29.5 + parent: 2 + - uid: 12524 + components: + - type: Transform + pos: -55.5,30.5 + parent: 2 + - uid: 12528 + components: + - type: Transform + pos: -55.5,31.5 + parent: 2 + - uid: 12532 + components: + - type: Transform + pos: -55.5,29.5 + parent: 2 + - uid: 12578 + components: + - type: Transform + pos: -8.5,-62.5 + parent: 2 + - uid: 12676 + components: + - type: Transform + pos: -80.5,0.5 + parent: 2 + - uid: 12678 + components: + - type: Transform + pos: -80.5,1.5 + parent: 2 + - uid: 12679 + components: + - type: Transform + pos: -80.5,2.5 + parent: 2 + - uid: 12680 + components: + - type: Transform + pos: -80.5,3.5 + parent: 2 + - uid: 12683 + components: + - type: Transform + pos: -80.5,4.5 + parent: 2 + - uid: 12684 + components: + - type: Transform + pos: -79.5,2.5 + parent: 2 + - uid: 12685 + components: + - type: Transform + pos: -78.5,2.5 + parent: 2 + - uid: 12801 + components: + - type: Transform + pos: -34.5,25.5 + parent: 2 + - uid: 12802 + components: + - type: Transform + pos: -33.5,25.5 + parent: 2 + - uid: 12803 + components: + - type: Transform + pos: -32.5,25.5 + parent: 2 + - uid: 12804 + components: + - type: Transform + pos: -31.5,25.5 + parent: 2 + - uid: 12805 + components: + - type: Transform + pos: -30.5,25.5 + parent: 2 + - uid: 12806 + components: + - type: Transform + pos: -29.5,25.5 + parent: 2 + - uid: 12807 + components: + - type: Transform + pos: -28.5,25.5 + parent: 2 + - uid: 12808 + components: + - type: Transform + pos: -27.5,25.5 + parent: 2 + - uid: 12809 + components: + - type: Transform + pos: -26.5,25.5 + parent: 2 + - uid: 12869 + components: + - type: Transform + pos: -61.5,-19.5 + parent: 2 + - uid: 12870 + components: + - type: Transform + pos: -61.5,-20.5 + parent: 2 + - uid: 12871 + components: + - type: Transform + pos: -61.5,-21.5 + parent: 2 + - uid: 12872 + components: + - type: Transform + pos: -61.5,-22.5 + parent: 2 + - uid: 12895 + components: + - type: Transform + pos: -42.5,-11.5 + parent: 2 + - uid: 12896 + components: + - type: Transform + pos: -42.5,-12.5 + parent: 2 + - uid: 12897 + components: + - type: Transform + pos: -42.5,-13.5 + parent: 2 + - uid: 12898 + components: + - type: Transform + pos: -42.5,-14.5 + parent: 2 + - uid: 12899 + components: + - type: Transform + pos: -42.5,-15.5 + parent: 2 + - uid: 12977 + components: + - type: Transform + pos: -77.5,2.5 + parent: 2 + - uid: 12979 + components: + - type: Transform + pos: -77.5,1.5 + parent: 2 + - uid: 13031 + components: + - type: Transform + pos: -77.5,0.5 + parent: 2 + - uid: 13050 + components: + - type: Transform + pos: -77.5,-0.5 + parent: 2 + - uid: 13199 + components: + - type: Transform + pos: -10.5,-48.5 + parent: 2 + - uid: 13210 + components: + - type: Transform + pos: -50.5,3.5 + parent: 2 + - uid: 13212 + components: + - type: Transform + pos: -50.5,4.5 + parent: 2 + - uid: 13216 + components: + - type: Transform + pos: -50.5,5.5 + parent: 2 + - uid: 13217 + components: + - type: Transform + pos: -50.5,6.5 + parent: 2 + - uid: 13218 + components: + - type: Transform + pos: -50.5,7.5 + parent: 2 + - uid: 13219 + components: + - type: Transform + pos: -50.5,8.5 + parent: 2 + - uid: 13220 + components: + - type: Transform + pos: -50.5,9.5 + parent: 2 + - uid: 13221 + components: + - type: Transform + pos: -50.5,12.5 + parent: 2 + - uid: 13222 + components: + - type: Transform + pos: -50.5,13.5 + parent: 2 + - uid: 13223 + components: + - type: Transform + pos: -50.5,11.5 + parent: 2 + - uid: 13224 + components: + - type: Transform + pos: -50.5,14.5 + parent: 2 + - uid: 13225 + components: + - type: Transform + pos: -50.5,15.5 + parent: 2 + - uid: 13226 + components: + - type: Transform + pos: -50.5,16.5 + parent: 2 + - uid: 13227 + components: + - type: Transform + pos: -50.5,17.5 + parent: 2 + - uid: 13228 + components: + - type: Transform + pos: -49.5,17.5 + parent: 2 + - uid: 13229 + components: + - type: Transform + pos: -48.5,17.5 + parent: 2 + - uid: 13230 + components: + - type: Transform + pos: -47.5,17.5 + parent: 2 + - uid: 13231 + components: + - type: Transform + pos: -46.5,17.5 + parent: 2 + - uid: 13232 + components: + - type: Transform + pos: -44.5,17.5 + parent: 2 + - uid: 13233 + components: + - type: Transform + pos: -43.5,17.5 + parent: 2 + - uid: 13234 + components: + - type: Transform + pos: -42.5,17.5 + parent: 2 + - uid: 13235 + components: + - type: Transform + pos: -45.5,17.5 + parent: 2 + - uid: 13236 + components: + - type: Transform + pos: -37.5,17.5 + parent: 2 + - uid: 13237 + components: + - type: Transform + pos: -35.5,17.5 + parent: 2 + - uid: 13238 + components: + - type: Transform + pos: -36.5,17.5 + parent: 2 + - uid: 13239 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 + - uid: 13240 + components: + - type: Transform + pos: -33.5,17.5 + parent: 2 + - uid: 13241 + components: + - type: Transform + pos: -33.5,18.5 + parent: 2 + - uid: 13242 + components: + - type: Transform + pos: -32.5,18.5 + parent: 2 + - uid: 13243 + components: + - type: Transform + pos: -31.5,18.5 + parent: 2 + - uid: 13244 + components: + - type: Transform + pos: -30.5,18.5 + parent: 2 + - uid: 13245 + components: + - type: Transform + pos: -29.5,18.5 + parent: 2 + - uid: 13246 + components: + - type: Transform + pos: -28.5,18.5 + parent: 2 + - uid: 13247 + components: + - type: Transform + pos: -0.5,21.5 + parent: 2 + - uid: 13248 + components: + - type: Transform + pos: -0.5,22.5 + parent: 2 + - uid: 13249 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - uid: 13250 + components: + - type: Transform + pos: 1.5,22.5 + parent: 2 + - uid: 13251 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 13252 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 13257 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 13258 + components: + - type: Transform + pos: 12.5,22.5 + parent: 2 + - uid: 13267 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - uid: 13268 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - uid: 13270 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 13271 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 13272 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 13273 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - uid: 13274 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 13275 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 13276 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 13277 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 13278 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - uid: 13279 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 13280 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 13281 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 + - uid: 13282 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 13283 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - uid: 13284 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 13285 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 13286 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 13287 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 13288 + components: + - type: Transform + pos: 16.5,3.5 + parent: 2 + - uid: 13289 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 13290 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 + - uid: 13291 + components: + - type: Transform + pos: 16.5,20.5 + parent: 2 + - uid: 13292 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 13293 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 13294 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 13295 + components: + - type: Transform + pos: 19.5,19.5 + parent: 2 + - uid: 13296 + components: + - type: Transform + pos: -11.5,-48.5 + parent: 2 + - uid: 13297 + components: + - type: Transform + pos: -9.5,-48.5 + parent: 2 + - uid: 13298 + components: + - type: Transform + pos: -8.5,-48.5 + parent: 2 + - uid: 13300 + components: + - type: Transform + pos: -8.5,-47.5 + parent: 2 + - uid: 13301 + components: + - type: Transform + pos: -8.5,-46.5 + parent: 2 + - uid: 13302 + components: + - type: Transform + pos: -8.5,-45.5 + parent: 2 + - uid: 13303 + components: + - type: Transform + pos: -8.5,-43.5 + parent: 2 + - uid: 13304 + components: + - type: Transform + pos: -8.5,-44.5 + parent: 2 + - uid: 13305 + components: + - type: Transform + pos: -8.5,-41.5 + parent: 2 + - uid: 13306 + components: + - type: Transform + pos: -8.5,-42.5 + parent: 2 + - uid: 13307 + components: + - type: Transform + pos: -8.5,-40.5 + parent: 2 + - uid: 13308 + components: + - type: Transform + pos: -8.5,-39.5 + parent: 2 + - uid: 13309 + components: + - type: Transform + pos: -8.5,-38.5 + parent: 2 + - uid: 13310 + components: + - type: Transform + pos: -9.5,-38.5 + parent: 2 + - uid: 13311 + components: + - type: Transform + pos: -10.5,-38.5 + parent: 2 + - uid: 13312 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 2 + - uid: 13313 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 2 + - uid: 13314 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 2 + - uid: 13315 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 2 + - uid: 13316 + components: + - type: Transform + pos: -14.5,-37.5 + parent: 2 + - uid: 13318 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 13319 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 + - uid: 13320 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 13321 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 2 + - uid: 13322 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 2 + - uid: 13323 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 2 + - uid: 13324 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 2 + - uid: 13325 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 2 + - uid: 13326 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 + - uid: 13327 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 2 + - uid: 13328 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 2 + - uid: 13329 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 13330 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 2 + - uid: 13331 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 2 + - uid: 13332 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 2 + - uid: 13333 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 + - uid: 13335 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 13336 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 2 + - uid: 13337 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 13338 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 2 + - uid: 13339 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - uid: 13340 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 13341 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 13342 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 13343 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 13344 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 2 + - uid: 13346 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 13347 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 13348 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 13349 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 13350 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 13351 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - uid: 13352 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 + - uid: 13457 + components: + - type: Transform + pos: -42.5,30.5 + parent: 2 + - uid: 13598 + components: + - type: Transform + pos: -70.5,-11.5 + parent: 2 + - uid: 13599 + components: + - type: Transform + pos: -70.5,-12.5 + parent: 2 + - uid: 13600 + components: + - type: Transform + pos: -70.5,-13.5 + parent: 2 + - uid: 13601 + components: + - type: Transform + pos: -72.5,-13.5 + parent: 2 + - uid: 13602 + components: + - type: Transform + pos: -73.5,-13.5 + parent: 2 + - uid: 13603 + components: + - type: Transform + pos: -74.5,-13.5 + parent: 2 + - uid: 13604 + components: + - type: Transform + pos: -75.5,-13.5 + parent: 2 + - uid: 13605 + components: + - type: Transform + pos: -76.5,-13.5 + parent: 2 + - uid: 13606 + components: + - type: Transform + pos: -77.5,-13.5 + parent: 2 + - uid: 13607 + components: + - type: Transform + pos: -78.5,-13.5 + parent: 2 + - uid: 13608 + components: + - type: Transform + pos: -79.5,-13.5 + parent: 2 + - uid: 13609 + components: + - type: Transform + pos: -71.5,-13.5 + parent: 2 + - uid: 13617 + components: + - type: Transform + pos: -36.5,-25.5 + parent: 2 + - uid: 13618 + components: + - type: Transform + pos: -37.5,-25.5 + parent: 2 + - uid: 13628 + components: + - type: Transform + pos: -49.5,9.5 + parent: 2 + - uid: 13629 + components: + - type: Transform + pos: -49.5,10.5 + parent: 2 + - uid: 13630 + components: + - type: Transform + pos: -49.5,11.5 + parent: 2 + - uid: 13631 + components: + - type: Transform + pos: -42.5,27.5 + parent: 2 + - uid: 13632 + components: + - type: Transform + pos: -42.5,29.5 + parent: 2 + - uid: 13634 + components: + - type: Transform + pos: -42.5,22.5 + parent: 2 + - uid: 13641 + components: + - type: Transform + pos: 17.5,3.5 + parent: 2 + - uid: 13642 + components: + - type: Transform + pos: 16.5,3.5 + parent: 2 + - uid: 13644 + components: + - type: Transform + pos: 20.5,19.5 + parent: 2 + - uid: 13669 + components: + - type: Transform + pos: -57.5,-14.5 + parent: 2 + - uid: 13709 + components: + - type: Transform + pos: -76.5,-0.5 + parent: 2 + - uid: 13710 + components: + - type: Transform + pos: -81.5,-2.5 + parent: 2 + - uid: 13711 + components: + - type: Transform + pos: -82.5,-2.5 + parent: 2 + - uid: 13712 + components: + - type: Transform + pos: -83.5,-2.5 + parent: 2 + - uid: 13713 + components: + - type: Transform + pos: -81.5,3.5 + parent: 2 + - uid: 13715 + components: + - type: Transform + pos: -82.5,3.5 + parent: 2 + - uid: 13716 + components: + - type: Transform + pos: -83.5,3.5 + parent: 2 + - uid: 14046 + components: + - type: Transform + pos: -47.5,8.5 + parent: 2 + - uid: 14166 + components: + - type: Transform + pos: -43.5,-49.5 + parent: 2 + - uid: 14167 + components: + - type: Transform + pos: -83.5,4.5 + parent: 2 + - uid: 14183 + components: + - type: Transform + pos: -30.5,7.5 + parent: 2 + - uid: 14184 + components: + - type: Transform + pos: -30.5,8.5 + parent: 2 + - uid: 14209 + components: + - type: Transform + pos: -47.5,9.5 + parent: 2 + - uid: 14210 + components: + - type: Transform + pos: -48.5,9.5 + parent: 2 + - uid: 14245 + components: + - type: Transform + pos: -83.5,5.5 + parent: 2 + - uid: 14246 + components: + - type: Transform + pos: -80.5,5.5 + parent: 2 + - uid: 14418 + components: + - type: Transform + pos: 1.5,28.5 + parent: 2 + - uid: 14421 + components: + - type: Transform + pos: 9.5,28.5 + parent: 2 + - uid: 14422 + components: + - type: Transform + pos: 10.5,28.5 + parent: 2 + - uid: 14436 + components: + - type: Transform + pos: -53.5,3.5 + parent: 2 + - uid: 14437 + components: + - type: Transform + pos: -53.5,4.5 + parent: 2 + - uid: 14438 + components: + - type: Transform + pos: -53.5,5.5 + parent: 2 + - uid: 14439 + components: + - type: Transform + pos: -53.5,6.5 + parent: 2 + - uid: 14440 + components: + - type: Transform + pos: -53.5,7.5 + parent: 2 + - uid: 14542 + components: + - type: Transform + pos: -44.5,21.5 + parent: 2 + - uid: 14731 + components: + - type: Transform + pos: -44.5,-39.5 + parent: 2 + - uid: 14735 + components: + - type: Transform + pos: -61.5,-23.5 + parent: 2 + - uid: 14736 + components: + - type: Transform + pos: -62.5,-23.5 + parent: 2 + - uid: 14737 + components: + - type: Transform + pos: -63.5,-23.5 + parent: 2 + - uid: 14738 + components: + - type: Transform + pos: -64.5,-23.5 + parent: 2 + - uid: 14819 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 + - uid: 14960 + components: + - type: Transform + pos: -68.5,34.5 + parent: 2 + - uid: 14976 + components: + - type: Transform + pos: -77.5,31.5 + parent: 2 + - uid: 14981 + components: + - type: Transform + pos: -60.5,24.5 + parent: 2 + - uid: 14983 + components: + - type: Transform + pos: -60.5,22.5 + parent: 2 + - uid: 14984 + components: + - type: Transform + pos: -70.5,36.5 + parent: 2 + - uid: 14985 + components: + - type: Transform + pos: -71.5,36.5 + parent: 2 + - uid: 14986 + components: + - type: Transform + pos: -74.5,36.5 + parent: 2 + - uid: 14987 + components: + - type: Transform + pos: -64.5,25.5 + parent: 2 + - uid: 14988 + components: + - type: Transform + pos: -62.5,25.5 + parent: 2 + - uid: 14989 + components: + - type: Transform + pos: -63.5,25.5 + parent: 2 + - uid: 14990 + components: + - type: Transform + pos: -60.5,25.5 + parent: 2 + - uid: 14991 + components: + - type: Transform + pos: -61.5,25.5 + parent: 2 + - uid: 14992 + components: + - type: Transform + pos: -68.5,36.5 + parent: 2 + - uid: 14993 + components: + - type: Transform + pos: -68.5,35.5 + parent: 2 + - uid: 14994 + components: + - type: Transform + pos: -69.5,36.5 + parent: 2 + - uid: 14995 + components: + - type: Transform + pos: -76.5,25.5 + parent: 2 + - uid: 14996 + components: + - type: Transform + pos: -76.5,29.5 + parent: 2 + - uid: 14997 + components: + - type: Transform + pos: -77.5,30.5 + parent: 2 + - uid: 15013 + components: + - type: Transform + pos: -77.5,32.5 + parent: 2 + - uid: 15014 + components: + - type: Transform + pos: -60.5,21.5 + parent: 2 + - uid: 15024 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 + - uid: 15034 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 15110 + components: + - type: Transform + pos: -72.5,38.5 + parent: 2 + - uid: 15111 + components: + - type: Transform + pos: -72.5,37.5 + parent: 2 + - uid: 15112 + components: + - type: Transform + pos: -72.5,36.5 + parent: 2 + - uid: 15113 + components: + - type: Transform + pos: -72.5,35.5 + parent: 2 + - uid: 15114 + components: + - type: Transform + pos: -72.5,34.5 + parent: 2 + - uid: 15115 + components: + - type: Transform + pos: -72.5,33.5 + parent: 2 + - uid: 15116 + components: + - type: Transform + pos: -72.5,32.5 + parent: 2 + - uid: 15117 + components: + - type: Transform + pos: -72.5,31.5 + parent: 2 + - uid: 15118 + components: + - type: Transform + pos: -72.5,30.5 + parent: 2 + - uid: 15119 + components: + - type: Transform + pos: -73.5,33.5 + parent: 2 + - uid: 15120 + components: + - type: Transform + pos: -74.5,33.5 + parent: 2 + - uid: 15121 + components: + - type: Transform + pos: -75.5,33.5 + parent: 2 + - uid: 15122 + components: + - type: Transform + pos: -71.5,33.5 + parent: 2 + - uid: 15123 + components: + - type: Transform + pos: -70.5,33.5 + parent: 2 + - uid: 15124 + components: + - type: Transform + pos: -69.5,33.5 + parent: 2 + - uid: 15125 + components: + - type: Transform + pos: -68.5,33.5 + parent: 2 + - uid: 15219 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2 + - uid: 15260 + components: + - type: Transform + pos: -55.5,17.5 + parent: 2 + - uid: 15291 + components: + - type: Transform + pos: -54.5,17.5 + parent: 2 + - uid: 15330 + components: + - type: Transform + pos: -52.5,17.5 + parent: 2 + - uid: 15333 + components: + - type: Transform + pos: -53.5,17.5 + parent: 2 + - uid: 15664 + components: + - type: Transform + pos: 2.5,31.5 + parent: 2 + - uid: 15666 + components: + - type: Transform + pos: 4.5,30.5 + parent: 2 + - uid: 15667 + components: + - type: Transform + pos: 4.5,29.5 + parent: 2 + - uid: 15668 + components: + - type: Transform + pos: 2.5,30.5 + parent: 2 + - uid: 15669 + components: + - type: Transform + pos: 3.5,30.5 + parent: 2 + - uid: 15670 + components: + - type: Transform + pos: 2.5,32.5 + parent: 2 + - uid: 15672 + components: + - type: Transform + pos: 1.5,33.5 + parent: 2 + - uid: 15673 + components: + - type: Transform + pos: 1.5,34.5 + parent: 2 + - uid: 15674 + components: + - type: Transform + pos: 1.5,35.5 + parent: 2 + - uid: 15675 + components: + - type: Transform + pos: 1.5,36.5 + parent: 2 + - uid: 15676 + components: + - type: Transform + pos: 1.5,37.5 + parent: 2 + - uid: 15677 + components: + - type: Transform + pos: 1.5,38.5 + parent: 2 + - uid: 15678 + components: + - type: Transform + pos: 1.5,39.5 + parent: 2 + - uid: 15679 + components: + - type: Transform + pos: 1.5,40.5 + parent: 2 + - uid: 15680 + components: + - type: Transform + pos: 1.5,41.5 + parent: 2 + - uid: 15681 + components: + - type: Transform + pos: 2.5,37.5 + parent: 2 + - uid: 15682 + components: + - type: Transform + pos: 3.5,37.5 + parent: 2 + - uid: 15683 + components: + - type: Transform + pos: 4.5,37.5 + parent: 2 + - uid: 15684 + components: + - type: Transform + pos: 5.5,37.5 + parent: 2 + - uid: 15685 + components: + - type: Transform + pos: 6.5,37.5 + parent: 2 + - uid: 15686 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - uid: 15687 + components: + - type: Transform + pos: 8.5,37.5 + parent: 2 + - uid: 15688 + components: + - type: Transform + pos: 9.5,37.5 + parent: 2 + - uid: 15689 + components: + - type: Transform + pos: 10.5,37.5 + parent: 2 + - uid: 15690 + components: + - type: Transform + pos: 10.5,38.5 + parent: 2 + - uid: 15691 + components: + - type: Transform + pos: 10.5,39.5 + parent: 2 + - uid: 15692 + components: + - type: Transform + pos: 10.5,40.5 + parent: 2 + - uid: 15693 + components: + - type: Transform + pos: 10.5,41.5 + parent: 2 + - uid: 15694 + components: + - type: Transform + pos: 6.5,38.5 + parent: 2 + - uid: 15695 + components: + - type: Transform + pos: 6.5,39.5 + parent: 2 + - uid: 15696 + components: + - type: Transform + pos: 6.5,40.5 + parent: 2 + - uid: 15697 + components: + - type: Transform + pos: 6.5,41.5 + parent: 2 + - uid: 15698 + components: + - type: Transform + pos: 10.5,36.5 + parent: 2 + - uid: 15699 + components: + - type: Transform + pos: 10.5,35.5 + parent: 2 + - uid: 15700 + components: + - type: Transform + pos: 10.5,34.5 + parent: 2 + - uid: 15701 + components: + - type: Transform + pos: 10.5,33.5 + parent: 2 + - uid: 15702 + components: + - type: Transform + pos: 10.5,32.5 + parent: 2 + - uid: 15703 + components: + - type: Transform + pos: 9.5,32.5 + parent: 2 + - uid: 15704 + components: + - type: Transform + pos: 9.5,31.5 + parent: 2 + - uid: 15705 + components: + - type: Transform + pos: 9.5,30.5 + parent: 2 + - uid: 15706 + components: + - type: Transform + pos: 9.5,29.5 + parent: 2 + - uid: 15707 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - uid: 15708 + components: + - type: Transform + pos: 7.5,30.5 + parent: 2 + - uid: 15710 + components: + - type: Transform + pos: 5.5,30.5 + parent: 2 + - uid: 15714 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - uid: 15715 + components: + - type: Transform + pos: 5.5,31.5 + parent: 2 + - uid: 15716 + components: + - type: Transform + pos: 5.5,32.5 + parent: 2 + - uid: 15717 + components: + - type: Transform + pos: 5.5,33.5 + parent: 2 + - uid: 15718 + components: + - type: Transform + pos: 5.5,34.5 + parent: 2 + - uid: 15787 + components: + - type: Transform + pos: 6.5,30.5 + parent: 2 + - uid: 16044 + components: + - type: Transform + pos: -29.5,14.5 + parent: 2 + - uid: 16059 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 16060 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 + - uid: 16061 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - uid: 16129 + components: + - type: Transform + pos: -72.5,-4.5 + parent: 2 + - uid: 16130 + components: + - type: Transform + pos: -68.5,-4.5 + parent: 2 + - uid: 16131 + components: + - type: Transform + pos: -68.5,-3.5 + parent: 2 + - uid: 16132 + components: + - type: Transform + pos: -69.5,-3.5 + parent: 2 + - uid: 16155 + components: + - type: Transform + pos: -8.5,-61.5 + parent: 2 + - uid: 16168 + components: + - type: Transform + pos: -8.5,-64.5 + parent: 2 + - uid: 16169 + components: + - type: Transform + pos: -8.5,-59.5 + parent: 2 + - uid: 16170 + components: + - type: Transform + pos: -7.5,-59.5 + parent: 2 + - uid: 16171 + components: + - type: Transform + pos: -8.5,-60.5 + parent: 2 + - uid: 16242 + components: + - type: Transform + pos: -54.5,16.5 + parent: 2 + - uid: 16243 + components: + - type: Transform + pos: -54.5,15.5 + parent: 2 + - uid: 16244 + components: + - type: Transform + pos: -54.5,14.5 + parent: 2 + - uid: 16245 + components: + - type: Transform + pos: -53.5,14.5 + parent: 2 + - uid: 16295 + components: + - type: Transform + pos: -49.5,-49.5 + parent: 2 + - uid: 16296 + components: + - type: Transform + pos: -50.5,-49.5 + parent: 2 + - uid: 16297 + components: + - type: Transform + pos: -51.5,-49.5 + parent: 2 + - uid: 16298 + components: + - type: Transform + pos: -51.5,-50.5 + parent: 2 + - uid: 16299 + components: + - type: Transform + pos: -51.5,-51.5 + parent: 2 + - uid: 16300 + components: + - type: Transform + pos: -51.5,-52.5 + parent: 2 + - uid: 16301 + components: + - type: Transform + pos: -51.5,-53.5 + parent: 2 + - uid: 16302 + components: + - type: Transform + pos: -52.5,-52.5 + parent: 2 + - uid: 16303 + components: + - type: Transform + pos: -53.5,-52.5 + parent: 2 + - uid: 16304 + components: + - type: Transform + pos: -54.5,-52.5 + parent: 2 + - uid: 16305 + components: + - type: Transform + pos: -51.5,-55.5 + parent: 2 + - uid: 16306 + components: + - type: Transform + pos: -51.5,-54.5 + parent: 2 + - uid: 16307 + components: + - type: Transform + pos: -52.5,-55.5 + parent: 2 + - uid: 16308 + components: + - type: Transform + pos: -52.5,-56.5 + parent: 2 + - uid: 16309 + components: + - type: Transform + pos: -52.5,-57.5 + parent: 2 + - uid: 16310 + components: + - type: Transform + pos: -53.5,-57.5 + parent: 2 + - uid: 16311 + components: + - type: Transform + pos: -54.5,-57.5 + parent: 2 + - uid: 16319 + components: + - type: Transform + pos: -13.5,-48.5 + parent: 2 + - uid: 16320 + components: + - type: Transform + pos: -12.5,-48.5 + parent: 2 + - uid: 16360 + components: + - type: Transform + pos: 15.5,27.5 + parent: 2 + - uid: 16361 + components: + - type: Transform + pos: 15.5,26.5 + parent: 2 + - uid: 16362 + components: + - type: Transform + pos: 15.5,25.5 + parent: 2 + - uid: 16363 + components: + - type: Transform + pos: 14.5,25.5 + parent: 2 + - uid: 16364 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 16365 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 + - uid: 16366 + components: + - type: Transform + pos: 11.5,25.5 + parent: 2 + - uid: 16367 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 16368 + components: + - type: Transform + pos: 9.5,25.5 + parent: 2 + - uid: 16369 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 16370 + components: + - type: Transform + pos: 16.5,25.5 + parent: 2 + - uid: 16371 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 + - uid: 16372 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 16373 + components: + - type: Transform + pos: 17.5,27.5 + parent: 2 + - uid: 16374 + components: + - type: Transform + pos: 17.5,28.5 + parent: 2 + - uid: 16375 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 16376 + components: + - type: Transform + pos: 17.5,30.5 + parent: 2 + - uid: 16377 + components: + - type: Transform + pos: 17.5,31.5 + parent: 2 + - uid: 16378 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 + - uid: 16379 + components: + - type: Transform + pos: 18.5,30.5 + parent: 2 + - uid: 16380 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 + - uid: 16381 + components: + - type: Transform + pos: 20.5,30.5 + parent: 2 + - uid: 16382 + components: + - type: Transform + pos: 17.5,33.5 + parent: 2 + - uid: 16383 + components: + - type: Transform + pos: 18.5,33.5 + parent: 2 + - uid: 16384 + components: + - type: Transform + pos: 19.5,33.5 + parent: 2 + - uid: 16385 + components: + - type: Transform + pos: 19.5,34.5 + parent: 2 + - uid: 16389 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - uid: 16400 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 + - uid: 16401 + components: + - type: Transform + pos: 13.5,27.5 + parent: 2 + - uid: 16402 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 + - uid: 16403 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - uid: 16404 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 + - uid: 16405 + components: + - type: Transform + pos: 13.5,31.5 + parent: 2 + - uid: 16406 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 +- proto: CableApcStack + entities: + - uid: 3104 + components: + - type: Transform + pos: -10.445693,-46.264732 + parent: 2 + - type: RCDAmmo + charges: 6 + - uid: 8112 + components: + - type: Transform + pos: -22.93217,19.83176 + parent: 2 + - type: RCDAmmo + charges: 6 +- proto: CableApcStack1 + entities: + - uid: 9402 + components: + - type: Transform + pos: -53.56284,-38.481995 + parent: 2 + - type: RCDAmmo + charges: 0 + - uid: 9422 + components: + - type: Transform + pos: -52.56284,-38.49762 + parent: 2 + - type: RCDAmmo + charges: 0 + - uid: 9423 + components: + - type: Transform + pos: -51.640965,-38.450745 + parent: 2 + - type: RCDAmmo + charges: 0 + - uid: 9424 + components: + - type: Transform + pos: -51.46909,-37.49762 + parent: 2 + - type: RCDAmmo + charges: 0 + - uid: 9426 + components: + - type: Transform + pos: -51.31024,-37.834328 + parent: 2 + - type: RCDAmmo + charges: 0 + - uid: 9427 + components: + - type: Transform + pos: -49.50034,-37.43512 + parent: 2 + - type: RCDAmmo + charges: 0 +- proto: CableApcStack10 + entities: + - uid: 6968 + components: + - type: Transform + pos: -47.422028,-15.311699 + parent: 2 + - type: RCDAmmo + charges: 2 + - uid: 13365 + components: + - type: Transform + pos: -56.4718,-8.608038 + parent: 2 + - type: RCDAmmo + charges: 2 +- proto: CableHV + entities: + - uid: 6 + components: + - type: Transform + pos: -29.5,-38.5 + parent: 2 + - uid: 19 + components: + - type: Transform + pos: -31.5,-34.5 + parent: 2 + - uid: 22 + components: + - type: Transform + pos: -29.5,-34.5 + parent: 2 + - uid: 25 + components: + - type: Transform + pos: -33.5,-35.5 + parent: 2 + - uid: 26 + components: + - type: Transform + pos: -28.5,-40.5 + parent: 2 + - uid: 28 + components: + - type: Transform + pos: -33.5,-37.5 + parent: 2 + - uid: 31 + components: + - type: Transform + pos: -28.5,-41.5 + parent: 2 + - uid: 37 + components: + - type: Transform + pos: -26.5,-46.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: -28.5,-47.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: -29.5,-49.5 + parent: 2 + - uid: 52 + components: + - type: Transform + pos: -28.5,-49.5 + parent: 2 + - uid: 61 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 + - uid: 86 + components: + - type: Transform + pos: -28.5,-48.5 + parent: 2 + - uid: 91 + components: + - type: Transform + pos: 12.5,22.5 + parent: 2 + - uid: 112 + components: + - type: Transform + pos: -31.5,-49.5 + parent: 2 + - uid: 123 + components: + - type: Transform + pos: -32.5,-49.5 + parent: 2 + - uid: 124 + components: + - type: Transform + pos: -32.5,-50.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: -28.5,-46.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: -49.5,11.5 + parent: 2 + - uid: 160 + components: + - type: Transform + pos: -27.5,-46.5 + parent: 2 + - uid: 169 + components: + - type: Transform + pos: -30.5,-49.5 + parent: 2 + - uid: 179 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: 7.5,22.5 + parent: 2 + - uid: 385 + components: + - type: Transform + pos: 7.5,23.5 + parent: 2 + - uid: 389 + components: + - type: Transform + pos: 10.5,23.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 425 + components: + - type: Transform + pos: -31.5,-38.5 + parent: 2 + - uid: 426 + components: + - type: Transform + pos: -30.5,-38.5 + parent: 2 + - uid: 428 + components: + - type: Transform + pos: -15.5,1.5 + parent: 2 + - uid: 436 + components: + - type: Transform + pos: -28.5,-38.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: -33.5,-34.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: -30.5,-34.5 + parent: 2 + - uid: 518 + components: + - type: Transform + pos: -28.5,-45.5 + parent: 2 + - uid: 519 + components: + - type: Transform + pos: -32.5,-38.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: -28.5,-43.5 + parent: 2 + - uid: 522 + components: + - type: Transform + pos: 11.5,23.5 + parent: 2 + - uid: 528 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 576 + components: + - type: Transform + pos: -42.5,1.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: -32.5,-51.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: -28.5,-42.5 + parent: 2 + - uid: 852 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 2 + - uid: 949 + components: + - type: Transform + pos: 8.5,26.5 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 + - uid: 1014 + components: + - type: Transform + pos: -28.5,-44.5 + parent: 2 + - uid: 1133 + components: + - type: Transform + pos: -22.5,-0.5 + parent: 2 + - uid: 1134 + components: + - type: Transform + pos: -28.5,-39.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 1274 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 1477 + components: + - type: Transform + pos: -46.5,-17.5 + parent: 2 + - uid: 1630 + components: + - type: Transform + pos: -34.5,8.5 + parent: 2 + - uid: 1769 + components: + - type: Transform + pos: -43.5,21.5 + parent: 2 + - uid: 1770 + components: + - type: Transform + pos: -42.5,21.5 + parent: 2 + - uid: 1852 + components: + - type: Transform + pos: -69.5,34.5 + parent: 2 + - uid: 1905 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - uid: 1939 + components: + - type: Transform + pos: -49.5,-17.5 + parent: 2 + - uid: 2238 + components: + - type: Transform + pos: -49.5,-16.5 + parent: 2 + - uid: 2239 + components: + - type: Transform + pos: -49.5,-15.5 + parent: 2 + - uid: 2353 + components: + - type: Transform + pos: 12.5,23.5 + parent: 2 + - uid: 2414 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - uid: 2602 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 2628 + components: + - type: Transform + pos: -33.5,7.5 + parent: 2 + - uid: 2630 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 + - uid: 2636 + components: + - type: Transform + pos: -38.5,4.5 + parent: 2 + - uid: 2649 + components: + - type: Transform + pos: -46.5,-41.5 + parent: 2 + - uid: 2702 + components: + - type: Transform + pos: -33.5,8.5 + parent: 2 + - uid: 3997 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - uid: 3998 + components: + - type: Transform + pos: -47.5,-17.5 + parent: 2 + - uid: 4049 + components: + - type: Transform + pos: -45.5,12.5 + parent: 2 + - uid: 4050 + components: + - type: Transform + pos: -45.5,13.5 + parent: 2 + - uid: 4051 + components: + - type: Transform + pos: -45.5,14.5 + parent: 2 + - uid: 4052 + components: + - type: Transform + pos: -46.5,14.5 + parent: 2 + - uid: 4053 + components: + - type: Transform + pos: -44.5,14.5 + parent: 2 + - uid: 4054 + components: + - type: Transform + pos: -45.5,11.5 + parent: 2 + - uid: 4055 + components: + - type: Transform + pos: -45.5,10.5 + parent: 2 + - uid: 4056 + components: + - type: Transform + pos: -45.5,9.5 + parent: 2 + - uid: 4057 + components: + - type: Transform + pos: -44.5,9.5 + parent: 2 + - uid: 4058 + components: + - type: Transform + pos: -43.5,9.5 + parent: 2 + - uid: 4059 + components: + - type: Transform + pos: -42.5,9.5 + parent: 2 + - uid: 4060 + components: + - type: Transform + pos: -41.5,9.5 + parent: 2 + - uid: 4061 + components: + - type: Transform + pos: -40.5,9.5 + parent: 2 + - uid: 4062 + components: + - type: Transform + pos: -39.5,9.5 + parent: 2 + - uid: 4063 + components: + - type: Transform + pos: -38.5,9.5 + parent: 2 + - uid: 4064 + components: + - type: Transform + pos: -37.5,9.5 + parent: 2 + - uid: 4065 + components: + - type: Transform + pos: -36.5,9.5 + parent: 2 + - uid: 4066 + components: + - type: Transform + pos: -35.5,9.5 + parent: 2 + - uid: 4067 + components: + - type: Transform + pos: -34.5,6.5 + parent: 2 + - uid: 4069 + components: + - type: Transform + pos: -35.5,8.5 + parent: 2 + - uid: 4074 + components: + - type: Transform + pos: -37.5,4.5 + parent: 2 + - uid: 4075 + components: + - type: Transform + pos: -36.5,5.5 + parent: 2 + - uid: 4076 + components: + - type: Transform + pos: -36.5,4.5 + parent: 2 + - uid: 4077 + components: + - type: Transform + pos: -39.5,3.5 + parent: 2 + - uid: 4078 + components: + - type: Transform + pos: -40.5,3.5 + parent: 2 + - uid: 4079 + components: + - type: Transform + pos: -41.5,3.5 + parent: 2 + - uid: 4080 + components: + - type: Transform + pos: -42.5,3.5 + parent: 2 + - uid: 4081 + components: + - type: Transform + pos: -42.5,2.5 + parent: 2 + - uid: 4083 + components: + - type: Transform + pos: -42.5,0.5 + parent: 2 + - uid: 4084 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 2 + - uid: 4085 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 2 + - uid: 4086 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 + - uid: 4087 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 + - uid: 4088 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 2 + - uid: 4089 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 2 + - uid: 4090 + components: + - type: Transform + pos: -48.5,-0.5 + parent: 2 + - uid: 4091 + components: + - type: Transform + pos: -49.5,-0.5 + parent: 2 + - uid: 4092 + components: + - type: Transform + pos: -50.5,-0.5 + parent: 2 + - uid: 4093 + components: + - type: Transform + pos: -50.5,0.5 + parent: 2 + - uid: 4094 + components: + - type: Transform + pos: -50.5,1.5 + parent: 2 + - uid: 4095 + components: + - type: Transform + pos: -50.5,2.5 + parent: 2 + - uid: 4096 + components: + - type: Transform + pos: -50.5,3.5 + parent: 2 + - uid: 4097 + components: + - type: Transform + pos: -50.5,4.5 + parent: 2 + - uid: 4098 + components: + - type: Transform + pos: -50.5,5.5 + parent: 2 + - uid: 4099 + components: + - type: Transform + pos: -50.5,6.5 + parent: 2 + - uid: 4100 + components: + - type: Transform + pos: -50.5,7.5 + parent: 2 + - uid: 4101 + components: + - type: Transform + pos: -50.5,8.5 + parent: 2 + - uid: 4102 + components: + - type: Transform + pos: -50.5,9.5 + parent: 2 + - uid: 4104 + components: + - type: Transform + pos: -50.5,11.5 + parent: 2 + - uid: 4105 + components: + - type: Transform + pos: -50.5,12.5 + parent: 2 + - uid: 4106 + components: + - type: Transform + pos: -50.5,13.5 + parent: 2 + - uid: 4107 + components: + - type: Transform + pos: -50.5,14.5 + parent: 2 + - uid: 4108 + components: + - type: Transform + pos: -50.5,15.5 + parent: 2 + - uid: 4109 + components: + - type: Transform + pos: -50.5,16.5 + parent: 2 + - uid: 4110 + components: + - type: Transform + pos: -50.5,17.5 + parent: 2 + - uid: 4111 + components: + - type: Transform + pos: -49.5,17.5 + parent: 2 + - uid: 4112 + components: + - type: Transform + pos: -48.5,17.5 + parent: 2 + - uid: 4113 + components: + - type: Transform + pos: -47.5,17.5 + parent: 2 + - uid: 4114 + components: + - type: Transform + pos: -46.5,17.5 + parent: 2 + - uid: 4115 + components: + - type: Transform + pos: -45.5,17.5 + parent: 2 + - uid: 4116 + components: + - type: Transform + pos: -44.5,17.5 + parent: 2 + - uid: 4117 + components: + - type: Transform + pos: -43.5,17.5 + parent: 2 + - uid: 4118 + components: + - type: Transform + pos: -42.5,17.5 + parent: 2 + - uid: 4119 + components: + - type: Transform + pos: -41.5,17.5 + parent: 2 + - uid: 4120 + components: + - type: Transform + pos: -40.5,17.5 + parent: 2 + - uid: 4121 + components: + - type: Transform + pos: -39.5,17.5 + parent: 2 + - uid: 4122 + components: + - type: Transform + pos: -38.5,17.5 + parent: 2 + - uid: 4123 + components: + - type: Transform + pos: -37.5,17.5 + parent: 2 + - uid: 4124 + components: + - type: Transform + pos: -36.5,17.5 + parent: 2 + - uid: 4125 + components: + - type: Transform + pos: -35.5,17.5 + parent: 2 + - uid: 4126 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 + - uid: 4127 + components: + - type: Transform + pos: -33.5,17.5 + parent: 2 + - uid: 4128 + components: + - type: Transform + pos: -33.5,18.5 + parent: 2 + - uid: 4129 + components: + - type: Transform + pos: -32.5,18.5 + parent: 2 + - uid: 4130 + components: + - type: Transform + pos: -31.5,18.5 + parent: 2 + - uid: 4131 + components: + - type: Transform + pos: -30.5,18.5 + parent: 2 + - uid: 4132 + components: + - type: Transform + pos: -29.5,18.5 + parent: 2 + - uid: 4133 + components: + - type: Transform + pos: -28.5,18.5 + parent: 2 + - uid: 4134 + components: + - type: Transform + pos: -27.5,18.5 + parent: 2 + - uid: 4135 + components: + - type: Transform + pos: -26.5,18.5 + parent: 2 + - uid: 4136 + components: + - type: Transform + pos: -25.5,18.5 + parent: 2 + - uid: 4137 + components: + - type: Transform + pos: -24.5,18.5 + parent: 2 + - uid: 4138 + components: + - type: Transform + pos: -24.5,17.5 + parent: 2 + - uid: 4139 + components: + - type: Transform + pos: -24.5,16.5 + parent: 2 + - uid: 4140 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 + - uid: 4141 + components: + - type: Transform + pos: -24.5,14.5 + parent: 2 + - uid: 4142 + components: + - type: Transform + pos: -24.5,13.5 + parent: 2 + - uid: 4143 + components: + - type: Transform + pos: -24.5,12.5 + parent: 2 + - uid: 4144 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 + - uid: 4145 + components: + - type: Transform + pos: -22.5,12.5 + parent: 2 + - uid: 4146 + components: + - type: Transform + pos: -21.5,12.5 + parent: 2 + - uid: 4147 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 4148 + components: + - type: Transform + pos: -19.5,12.5 + parent: 2 + - uid: 4149 + components: + - type: Transform + pos: -19.5,11.5 + parent: 2 + - uid: 4150 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 4151 + components: + - type: Transform + pos: -19.5,9.5 + parent: 2 + - uid: 4152 + components: + - type: Transform + pos: -21.5,11.5 + parent: 2 + - uid: 4153 + components: + - type: Transform + pos: -21.5,10.5 + parent: 2 + - uid: 4154 + components: + - type: Transform + pos: -21.5,9.5 + parent: 2 + - uid: 4155 + components: + - type: Transform + pos: -21.5,8.5 + parent: 2 + - uid: 4156 + components: + - type: Transform + pos: -21.5,7.5 + parent: 2 + - uid: 4157 + components: + - type: Transform + pos: -21.5,6.5 + parent: 2 + - uid: 4158 + components: + - type: Transform + pos: -21.5,5.5 + parent: 2 + - uid: 4159 + components: + - type: Transform + pos: -21.5,4.5 + parent: 2 + - uid: 4160 + components: + - type: Transform + pos: -20.5,4.5 + parent: 2 + - uid: 4161 + components: + - type: Transform + pos: -19.5,4.5 + parent: 2 + - uid: 4162 + components: + - type: Transform + pos: -18.5,4.5 + parent: 2 + - uid: 4163 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 + - uid: 4164 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 4165 + components: + - type: Transform + pos: -15.5,4.5 + parent: 2 + - uid: 4166 + components: + - type: Transform + pos: -15.5,3.5 + parent: 2 + - uid: 4167 + components: + - type: Transform + pos: -15.5,2.5 + parent: 2 + - uid: 4168 + components: + - type: Transform + pos: -33.5,-36.5 + parent: 2 + - uid: 4169 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - uid: 4170 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 2 + - uid: 4171 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 2 + - uid: 4172 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 + - uid: 4173 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 2 + - uid: 4174 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - uid: 4175 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - uid: 4176 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 2 + - uid: 4177 + components: + - type: Transform + pos: -32.5,-34.5 + parent: 2 + - uid: 4178 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 2 + - uid: 4179 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 2 + - uid: 4180 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 + - uid: 4181 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 2 + - uid: 4182 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 2 + - uid: 4183 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 2 + - uid: 4184 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 + - uid: 4185 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 2 + - uid: 4186 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 + - uid: 4187 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 2 + - uid: 4188 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 2 + - uid: 4189 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 2 + - uid: 4190 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 + - uid: 4191 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 2 + - uid: 4192 + components: + - type: Transform + pos: -37.5,-0.5 + parent: 2 + - uid: 4193 + components: + - type: Transform + pos: -38.5,-0.5 + parent: 2 + - uid: 4194 + components: + - type: Transform + pos: -39.5,-0.5 + parent: 2 + - uid: 4195 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 2 + - uid: 4196 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - uid: 4199 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 4200 + components: + - type: Transform + pos: 13.5,6.5 + parent: 2 + - uid: 4202 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 4203 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 4204 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 4205 + components: + - type: Transform + pos: -41.5,-20.5 + parent: 2 + - uid: 4206 + components: + - type: Transform + pos: -40.5,-20.5 + parent: 2 + - uid: 4207 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - uid: 4208 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - uid: 4209 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 4210 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 + - uid: 4211 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 4212 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 2 + - uid: 4213 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - uid: 4214 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 4215 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 4216 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 4217 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 4218 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 4219 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 4220 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - uid: 4221 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 2 + - uid: 4222 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - uid: 4223 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 4225 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 2 + - uid: 4226 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - uid: 4227 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - uid: 4228 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 2 + - uid: 4229 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - uid: 4230 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 2 + - uid: 4231 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 4232 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 4233 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 2 + - uid: 4234 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 2 + - uid: 4235 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 + - uid: 4236 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 4237 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 4238 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 + - uid: 4239 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - uid: 4240 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 4241 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 4242 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 4243 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 4244 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 4245 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - uid: 4246 + components: + - type: Transform + pos: -0.5,-32.5 + parent: 2 + - uid: 4247 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - uid: 4248 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 2 + - uid: 4249 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 2 + - uid: 4250 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 2 + - uid: 4251 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 2 + - uid: 4252 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 2 + - uid: 4253 + components: + - type: Transform + pos: -3.5,-34.5 + parent: 2 + - uid: 4254 + components: + - type: Transform + pos: -25.5,-48.5 + parent: 2 + - uid: 4255 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 2 + - uid: 4256 + components: + - type: Transform + pos: -26.5,-48.5 + parent: 2 + - uid: 4257 + components: + - type: Transform + pos: -25.5,-46.5 + parent: 2 + - uid: 4258 + components: + - type: Transform + pos: -25.5,-47.5 + parent: 2 + - uid: 4259 + components: + - type: Transform + pos: -24.5,-46.5 + parent: 2 + - uid: 4260 + components: + - type: Transform + pos: -23.5,-46.5 + parent: 2 + - uid: 4261 + components: + - type: Transform + pos: -23.5,-47.5 + parent: 2 + - uid: 4262 + components: + - type: Transform + pos: -23.5,-48.5 + parent: 2 + - uid: 4263 + components: + - type: Transform + pos: -22.5,-48.5 + parent: 2 + - uid: 4264 + components: + - type: Transform + pos: -21.5,-48.5 + parent: 2 + - uid: 4265 + components: + - type: Transform + pos: -20.5,-48.5 + parent: 2 + - uid: 4266 + components: + - type: Transform + pos: -19.5,-48.5 + parent: 2 + - uid: 4267 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 2 + - uid: 4268 + components: + - type: Transform + pos: -17.5,-48.5 + parent: 2 + - uid: 4269 + components: + - type: Transform + pos: -16.5,-48.5 + parent: 2 + - uid: 4270 + components: + - type: Transform + pos: -15.5,-48.5 + parent: 2 + - uid: 4271 + components: + - type: Transform + pos: -14.5,-48.5 + parent: 2 + - uid: 4272 + components: + - type: Transform + pos: -13.5,-48.5 + parent: 2 + - uid: 4273 + components: + - type: Transform + pos: -12.5,-48.5 + parent: 2 + - uid: 4274 + components: + - type: Transform + pos: -11.5,-48.5 + parent: 2 + - uid: 4275 + components: + - type: Transform + pos: -10.5,-48.5 + parent: 2 + - uid: 4276 + components: + - type: Transform + pos: -9.5,-48.5 + parent: 2 + - uid: 4277 + components: + - type: Transform + pos: -8.5,-48.5 + parent: 2 + - uid: 4278 + components: + - type: Transform + pos: -8.5,-46.5 + parent: 2 + - uid: 4279 + components: + - type: Transform + pos: -8.5,-45.5 + parent: 2 + - uid: 4280 + components: + - type: Transform + pos: -8.5,-44.5 + parent: 2 + - uid: 4281 + components: + - type: Transform + pos: -8.5,-43.5 + parent: 2 + - uid: 4282 + components: + - type: Transform + pos: -8.5,-42.5 + parent: 2 + - uid: 4283 + components: + - type: Transform + pos: -8.5,-41.5 + parent: 2 + - uid: 4284 + components: + - type: Transform + pos: -8.5,-40.5 + parent: 2 + - uid: 4285 + components: + - type: Transform + pos: -8.5,-39.5 + parent: 2 + - uid: 4286 + components: + - type: Transform + pos: -8.5,-38.5 + parent: 2 + - uid: 4287 + components: + - type: Transform + pos: -8.5,-47.5 + parent: 2 + - uid: 4288 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 2 + - uid: 4289 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 2 + - uid: 4290 + components: + - type: Transform + pos: -6.5,-34.5 + parent: 2 + - uid: 4291 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 2 + - uid: 4292 + components: + - type: Transform + pos: -8.5,-34.5 + parent: 2 + - uid: 4293 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 2 + - uid: 4294 + components: + - type: Transform + pos: -10.5,-34.5 + parent: 2 + - uid: 4295 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 2 + - uid: 4296 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 2 + - uid: 4297 + components: + - type: Transform + pos: -13.5,-34.5 + parent: 2 + - uid: 4298 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 2 + - uid: 4299 + components: + - type: Transform + pos: -14.5,-35.5 + parent: 2 + - uid: 4300 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 2 + - uid: 4301 + components: + - type: Transform + pos: -14.5,-37.5 + parent: 2 + - uid: 4302 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 2 + - uid: 4303 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 2 + - uid: 4304 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 2 + - uid: 4305 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 2 + - uid: 4306 + components: + - type: Transform + pos: -10.5,-38.5 + parent: 2 + - uid: 4307 + components: + - type: Transform + pos: -9.5,-38.5 + parent: 2 + - uid: 4308 + components: + - type: Transform + pos: -15.5,-34.5 + parent: 2 + - uid: 4309 + components: + - type: Transform + pos: -16.5,-34.5 + parent: 2 + - uid: 4310 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 2 + - uid: 4311 + components: + - type: Transform + pos: -18.5,-34.5 + parent: 2 + - uid: 4312 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 2 + - uid: 4313 + components: + - type: Transform + pos: -20.5,-34.5 + parent: 2 + - uid: 4314 + components: + - type: Transform + pos: -21.5,-34.5 + parent: 2 + - uid: 4315 + components: + - type: Transform + pos: -22.5,-34.5 + parent: 2 + - uid: 4316 + components: + - type: Transform + pos: -23.5,-34.5 + parent: 2 + - uid: 4317 + components: + - type: Transform + pos: -23.5,-33.5 + parent: 2 + - uid: 4318 + components: + - type: Transform + pos: -23.5,-32.5 + parent: 2 + - uid: 4319 + components: + - type: Transform + pos: -23.5,-31.5 + parent: 2 + - uid: 4320 + components: + - type: Transform + pos: -23.5,-30.5 + parent: 2 + - uid: 4321 + components: + - type: Transform + pos: -23.5,-29.5 + parent: 2 + - uid: 4322 + components: + - type: Transform + pos: -23.5,-28.5 + parent: 2 + - uid: 4323 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 2 + - uid: 4324 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 2 + - uid: 4325 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 2 + - uid: 4326 + components: + - type: Transform + pos: -23.5,-24.5 + parent: 2 + - uid: 4327 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 2 + - uid: 4328 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 2 + - uid: 4329 + components: + - type: Transform + pos: -23.5,-21.5 + parent: 2 + - uid: 4330 + components: + - type: Transform + pos: -23.5,-20.5 + parent: 2 + - uid: 4331 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 2 + - uid: 4332 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 2 + - uid: 4333 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 + - uid: 4334 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 2 + - uid: 4335 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - uid: 4336 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - uid: 4337 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 2 + - uid: 4338 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - uid: 4339 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - uid: 4340 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - uid: 4341 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 2 + - uid: 4342 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 4343 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 2 + - uid: 4344 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 2 + - uid: 4345 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 + - uid: 4346 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - uid: 4347 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 2 + - uid: 4348 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 2 + - uid: 4349 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 2 + - uid: 4350 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 2 + - uid: 4351 + components: + - type: Transform + pos: -27.5,-34.5 + parent: 2 + - uid: 4352 + components: + - type: Transform + pos: -26.5,-34.5 + parent: 2 + - uid: 4353 + components: + - type: Transform + pos: -25.5,-34.5 + parent: 2 + - uid: 4354 + components: + - type: Transform + pos: -24.5,-34.5 + parent: 2 + - uid: 4355 + components: + - type: Transform + pos: -40.5,-19.5 + parent: 2 + - uid: 4356 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - uid: 4357 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 4358 + components: + - type: Transform + pos: -42.5,-18.5 + parent: 2 + - uid: 4368 + components: + - type: Transform + pos: -48.5,-17.5 + parent: 2 + - uid: 4369 + components: + - type: Transform + pos: -49.5,-14.5 + parent: 2 + - uid: 4370 + components: + - type: Transform + pos: -50.5,-14.5 + parent: 2 + - uid: 4371 + components: + - type: Transform + pos: -50.5,-13.5 + parent: 2 + - uid: 4372 + components: + - type: Transform + pos: -50.5,-12.5 + parent: 2 + - uid: 4373 + components: + - type: Transform + pos: -50.5,-11.5 + parent: 2 + - uid: 4374 + components: + - type: Transform + pos: -50.5,-10.5 + parent: 2 + - uid: 4375 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 4376 + components: + - type: Transform + pos: -50.5,-8.5 + parent: 2 + - uid: 4377 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 4378 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - uid: 4379 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - uid: 4380 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 2 + - uid: 4381 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 + - uid: 4382 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 2 + - uid: 4383 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 + - uid: 4384 + components: + - type: Transform + pos: -51.5,-9.5 + parent: 2 + - uid: 4385 + components: + - type: Transform + pos: -52.5,-9.5 + parent: 2 + - uid: 4386 + components: + - type: Transform + pos: -53.5,-9.5 + parent: 2 + - uid: 4387 + components: + - type: Transform + pos: -54.5,-9.5 + parent: 2 + - uid: 4388 + components: + - type: Transform + pos: -55.5,-9.5 + parent: 2 + - uid: 4389 + components: + - type: Transform + pos: -56.5,-9.5 + parent: 2 + - uid: 4390 + components: + - type: Transform + pos: -56.5,-10.5 + parent: 2 + - uid: 4391 + components: + - type: Transform + pos: -57.5,-10.5 + parent: 2 + - uid: 4392 + components: + - type: Transform + pos: -58.5,-10.5 + parent: 2 + - uid: 4393 + components: + - type: Transform + pos: -59.5,-10.5 + parent: 2 + - uid: 4394 + components: + - type: Transform + pos: -60.5,-10.5 + parent: 2 + - uid: 4395 + components: + - type: Transform + pos: -61.5,-10.5 + parent: 2 + - uid: 4396 + components: + - type: Transform + pos: -62.5,-10.5 + parent: 2 + - uid: 4397 + components: + - type: Transform + pos: -63.5,-10.5 + parent: 2 + - uid: 4398 + components: + - type: Transform + pos: -64.5,-10.5 + parent: 2 + - uid: 4399 + components: + - type: Transform + pos: -65.5,-10.5 + parent: 2 + - uid: 4400 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - uid: 4401 + components: + - type: Transform + pos: -66.5,-9.5 + parent: 2 + - uid: 4402 + components: + - type: Transform + pos: -66.5,-8.5 + parent: 2 + - uid: 4403 + components: + - type: Transform + pos: -66.5,-7.5 + parent: 2 + - uid: 4404 + components: + - type: Transform + pos: -66.5,-6.5 + parent: 2 + - uid: 4405 + components: + - type: Transform + pos: -66.5,-5.5 + parent: 2 + - uid: 4406 + components: + - type: Transform + pos: -67.5,-5.5 + parent: 2 + - uid: 4407 + components: + - type: Transform + pos: -68.5,-5.5 + parent: 2 + - uid: 4408 + components: + - type: Transform + pos: -69.5,-5.5 + parent: 2 + - uid: 4409 + components: + - type: Transform + pos: -69.5,-6.5 + parent: 2 + - uid: 4410 + components: + - type: Transform + pos: -69.5,-7.5 + parent: 2 + - uid: 4411 + components: + - type: Transform + pos: -46.5,-46.5 + parent: 2 + - uid: 4412 + components: + - type: Transform + pos: -46.5,-45.5 + parent: 2 + - uid: 4413 + components: + - type: Transform + pos: -46.5,-44.5 + parent: 2 + - uid: 4414 + components: + - type: Transform + pos: -46.5,-43.5 + parent: 2 + - uid: 4415 + components: + - type: Transform + pos: -47.5,-43.5 + parent: 2 + - uid: 4416 + components: + - type: Transform + pos: -48.5,-43.5 + parent: 2 + - uid: 4417 + components: + - type: Transform + pos: -48.5,-44.5 + parent: 2 + - uid: 4418 + components: + - type: Transform + pos: -48.5,-45.5 + parent: 2 + - uid: 4419 + components: + - type: Transform + pos: -48.5,-46.5 + parent: 2 + - uid: 4420 + components: + - type: Transform + pos: -48.5,-47.5 + parent: 2 + - uid: 4421 + components: + - type: Transform + pos: -48.5,-48.5 + parent: 2 + - uid: 4422 + components: + - type: Transform + pos: -48.5,-49.5 + parent: 2 + - uid: 4423 + components: + - type: Transform + pos: -47.5,-49.5 + parent: 2 + - uid: 4424 + components: + - type: Transform + pos: -46.5,-49.5 + parent: 2 + - uid: 4425 + components: + - type: Transform + pos: -45.5,-49.5 + parent: 2 + - uid: 4426 + components: + - type: Transform + pos: -44.5,-49.5 + parent: 2 + - uid: 4427 + components: + - type: Transform + pos: -43.5,-49.5 + parent: 2 + - uid: 4428 + components: + - type: Transform + pos: -42.5,-49.5 + parent: 2 + - uid: 4429 + components: + - type: Transform + pos: -41.5,-49.5 + parent: 2 + - uid: 4430 + components: + - type: Transform + pos: -40.5,-49.5 + parent: 2 + - uid: 4431 + components: + - type: Transform + pos: -39.5,-49.5 + parent: 2 + - uid: 4432 + components: + - type: Transform + pos: -38.5,-49.5 + parent: 2 + - uid: 4433 + components: + - type: Transform + pos: -37.5,-49.5 + parent: 2 + - uid: 4434 + components: + - type: Transform + pos: -36.5,-49.5 + parent: 2 + - uid: 4435 + components: + - type: Transform + pos: -35.5,-49.5 + parent: 2 + - uid: 4436 + components: + - type: Transform + pos: -34.5,-49.5 + parent: 2 + - uid: 4437 + components: + - type: Transform + pos: -33.5,-49.5 + parent: 2 + - uid: 4707 + components: + - type: Transform + pos: -35.5,7.5 + parent: 2 + - uid: 4780 + components: + - type: Transform + pos: -80.5,-34.5 + parent: 2 + - uid: 4781 + components: + - type: Transform + pos: -81.5,-34.5 + parent: 2 + - uid: 4782 + components: + - type: Transform + pos: -82.5,-34.5 + parent: 2 + - uid: 4794 + components: + - type: Transform + pos: -69.5,32.5 + parent: 2 + - uid: 4800 + components: + - type: Transform + pos: -45.5,21.5 + parent: 2 + - uid: 4844 + components: + - type: Transform + pos: -37.5,15.5 + parent: 2 + - uid: 4876 + components: + - type: Transform + pos: -36.5,7.5 + parent: 2 + - uid: 4878 + components: + - type: Transform + pos: -36.5,6.5 + parent: 2 + - uid: 4879 + components: + - type: Transform + pos: -34.5,7.5 + parent: 2 + - uid: 4917 + components: + - type: Transform + pos: -35.5,6.5 + parent: 2 + - uid: 5020 + components: + - type: Transform + pos: -44.5,-18.5 + parent: 2 + - uid: 5023 + components: + - type: Transform + pos: -45.5,-18.5 + parent: 2 + - uid: 5348 + components: + - type: Transform + pos: -69.5,34.5 + parent: 2 + - uid: 5454 + components: + - type: Transform + pos: -76.5,-34.5 + parent: 2 + - uid: 5456 + components: + - type: Transform + pos: -75.5,-34.5 + parent: 2 + - uid: 5458 + components: + - type: Transform + pos: -79.5,-34.5 + parent: 2 + - uid: 5478 + components: + - type: Transform + pos: -78.5,-34.5 + parent: 2 + - uid: 5479 + components: + - type: Transform + pos: -77.5,-34.5 + parent: 2 + - uid: 5480 + components: + - type: Transform + pos: -74.5,-34.5 + parent: 2 + - uid: 5696 + components: + - type: Transform + pos: 8.5,24.5 + parent: 2 + - uid: 5764 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 5781 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - uid: 5878 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 5879 + components: + - type: Transform + pos: 4.5,23.5 + parent: 2 + - uid: 5880 + components: + - type: Transform + pos: 4.5,24.5 + parent: 2 + - uid: 5881 + components: + - type: Transform + pos: 4.5,25.5 + parent: 2 + - uid: 5884 + components: + - type: Transform + pos: 4.5,28.5 + parent: 2 + - uid: 5897 + components: + - type: Transform + pos: 3.5,28.5 + parent: 2 + - uid: 5898 + components: + - type: Transform + pos: 2.5,28.5 + parent: 2 + - uid: 5899 + components: + - type: Transform + pos: 1.5,28.5 + parent: 2 + - uid: 5900 + components: + - type: Transform + pos: 0.5,28.5 + parent: 2 + - uid: 5904 + components: + - type: Transform + pos: 5.5,28.5 + parent: 2 + - uid: 5905 + components: + - type: Transform + pos: 6.5,28.5 + parent: 2 + - uid: 5906 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - uid: 5907 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - uid: 5908 + components: + - type: Transform + pos: 9.5,28.5 + parent: 2 + - uid: 5909 + components: + - type: Transform + pos: 10.5,28.5 + parent: 2 + - uid: 5910 + components: + - type: Transform + pos: 11.5,28.5 + parent: 2 + - uid: 5923 + components: + - type: Transform + pos: 3.5,27.5 + parent: 2 + - uid: 5924 + components: + - type: Transform + pos: 3.5,25.5 + parent: 2 + - uid: 5943 + components: + - type: Transform + pos: -38.5,7.5 + parent: 2 + - uid: 5954 + components: + - type: Transform + pos: -38.5,8.5 + parent: 2 + - uid: 5994 + components: + - type: Transform + pos: -38.5,5.5 + parent: 2 + - uid: 5999 + components: + - type: Transform + pos: -38.5,6.5 + parent: 2 + - uid: 6034 + components: + - type: Transform + pos: -40.5,20.5 + parent: 2 + - uid: 6035 + components: + - type: Transform + pos: -41.5,21.5 + parent: 2 + - uid: 6038 + components: + - type: Transform + pos: -40.5,21.5 + parent: 2 + - uid: 6039 + components: + - type: Transform + pos: -44.5,21.5 + parent: 2 + - uid: 6079 + components: + - type: Transform + pos: -48.5,24.5 + parent: 2 + - uid: 6080 + components: + - type: Transform + pos: -47.5,24.5 + parent: 2 + - uid: 6081 + components: + - type: Transform + pos: -46.5,24.5 + parent: 2 + - uid: 6082 + components: + - type: Transform + pos: -42.5,38.5 + parent: 2 + - uid: 6083 + components: + - type: Transform + pos: -40.5,37.5 + parent: 2 + - uid: 6084 + components: + - type: Transform + pos: -40.5,38.5 + parent: 2 + - uid: 6085 + components: + - type: Transform + pos: -45.5,24.5 + parent: 2 + - uid: 6091 + components: + - type: Transform + pos: -40.5,35.5 + parent: 2 + - uid: 6093 + components: + - type: Transform + pos: -40.5,36.5 + parent: 2 + - uid: 6094 + components: + - type: Transform + pos: -41.5,38.5 + parent: 2 + - uid: 6095 + components: + - type: Transform + pos: -43.5,38.5 + parent: 2 + - uid: 6096 + components: + - type: Transform + pos: -44.5,38.5 + parent: 2 + - uid: 6196 + components: + - type: Transform + pos: -40.5,19.5 + parent: 2 + - uid: 6197 + components: + - type: Transform + pos: -40.5,18.5 + parent: 2 + - uid: 6213 + components: + - type: Transform + pos: -39.5,35.5 + parent: 2 + - uid: 6214 + components: + - type: Transform + pos: -38.5,35.5 + parent: 2 + - uid: 6215 + components: + - type: Transform + pos: -37.5,35.5 + parent: 2 + - uid: 6216 + components: + - type: Transform + pos: -36.5,35.5 + parent: 2 + - uid: 6252 + components: + - type: Transform + pos: -44.5,1.5 + parent: 2 + - uid: 6254 + components: + - type: Transform + pos: -46.5,1.5 + parent: 2 + - uid: 6357 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - uid: 6835 + components: + - type: Transform + pos: -43.5,-18.5 + parent: 2 + - uid: 7565 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 7566 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 7567 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 7568 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 + - uid: 7569 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 7570 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 7571 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - uid: 7572 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 7573 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - uid: 7574 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 7575 + components: + - type: Transform + pos: 12.5,6.5 + parent: 2 + - uid: 8099 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 8101 + components: + - type: Transform + pos: 3.5,26.5 + parent: 2 + - uid: 8198 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 2 + - uid: 8329 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 8376 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 2 + - uid: 8718 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 2 + - uid: 9088 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 + - uid: 9549 + components: + - type: Transform + pos: -46.5,-40.5 + parent: 2 + - uid: 9646 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 9647 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 9648 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 + - uid: 9649 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 2 + - uid: 9650 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 2 + - uid: 9651 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 9652 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 2 + - uid: 9653 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 2 + - uid: 9654 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 9656 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 + - uid: 9657 + components: + - type: Transform + pos: 29.5,-6.5 + parent: 2 + - uid: 9658 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 2 + - uid: 9659 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 2 + - uid: 9661 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 2 + - uid: 9663 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 2 + - uid: 9664 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - uid: 9665 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 2 + - uid: 9666 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 9667 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 2 + - uid: 9668 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 9669 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 + - uid: 9671 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 2 + - uid: 9674 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 2 + - uid: 9675 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 9676 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 2 + - uid: 9677 + components: + - type: Transform + pos: 29.5,-12.5 + parent: 2 + - uid: 9678 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 9679 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 2 + - uid: 9680 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 2 + - uid: 9681 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 2 + - uid: 9682 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 + - uid: 9683 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 2 + - uid: 9684 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 2 + - uid: 9685 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 2 + - uid: 9686 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 + - uid: 9695 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 9715 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 2 + - uid: 9719 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 2 + - uid: 9722 + components: + - type: Transform + pos: 35.5,-14.5 + parent: 2 + - uid: 9729 + components: + - type: Transform + pos: 36.5,-14.5 + parent: 2 + - uid: 9787 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 9803 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - uid: 9804 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 2 + - uid: 9805 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 2 + - uid: 9806 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 2 + - uid: 9807 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 2 + - uid: 9808 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 2 + - uid: 9809 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 9810 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 9811 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 + - uid: 9812 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 + - uid: 9813 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 9814 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 9815 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - uid: 9816 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 9817 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - uid: 9818 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 2 + - uid: 9819 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 + - uid: 9820 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 2 + - uid: 9821 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 + - uid: 9822 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 2 + - uid: 9823 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - uid: 9824 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 2 + - uid: 9825 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 + - uid: 9826 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 2 + - uid: 9827 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 + - uid: 9828 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - uid: 9829 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 2 + - uid: 9838 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 9875 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 2 + - uid: 9876 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 9877 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - uid: 9878 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 2 + - uid: 9879 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 2 + - uid: 9880 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 + - uid: 9881 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 9883 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 2 + - uid: 9884 + components: + - type: Transform + pos: -32.5,-55.5 + parent: 2 + - uid: 9914 + components: + - type: Transform + pos: -34.5,-72.5 + parent: 2 + - uid: 9915 + components: + - type: Transform + pos: -42.5,-58.5 + parent: 2 + - uid: 9916 + components: + - type: Transform + pos: -41.5,-58.5 + parent: 2 + - uid: 9917 + components: + - type: Transform + pos: -40.5,-58.5 + parent: 2 + - uid: 9918 + components: + - type: Transform + pos: -39.5,-58.5 + parent: 2 + - uid: 9919 + components: + - type: Transform + pos: -38.5,-58.5 + parent: 2 + - uid: 9920 + components: + - type: Transform + pos: -37.5,-58.5 + parent: 2 + - uid: 9921 + components: + - type: Transform + pos: -36.5,-58.5 + parent: 2 + - uid: 9922 + components: + - type: Transform + pos: -35.5,-58.5 + parent: 2 + - uid: 9923 + components: + - type: Transform + pos: -34.5,-58.5 + parent: 2 + - uid: 9924 + components: + - type: Transform + pos: -34.5,-60.5 + parent: 2 + - uid: 9925 + components: + - type: Transform + pos: -35.5,-60.5 + parent: 2 + - uid: 9926 + components: + - type: Transform + pos: -36.5,-60.5 + parent: 2 + - uid: 9927 + components: + - type: Transform + pos: -37.5,-60.5 + parent: 2 + - uid: 9928 + components: + - type: Transform + pos: -38.5,-60.5 + parent: 2 + - uid: 9929 + components: + - type: Transform + pos: -39.5,-60.5 + parent: 2 + - uid: 9930 + components: + - type: Transform + pos: -40.5,-60.5 + parent: 2 + - uid: 9931 + components: + - type: Transform + pos: -41.5,-60.5 + parent: 2 + - uid: 9932 + components: + - type: Transform + pos: -42.5,-60.5 + parent: 2 + - uid: 9933 + components: + - type: Transform + pos: -42.5,-62.5 + parent: 2 + - uid: 9934 + components: + - type: Transform + pos: -41.5,-62.5 + parent: 2 + - uid: 9935 + components: + - type: Transform + pos: -32.5,-54.5 + parent: 2 + - uid: 9936 + components: + - type: Transform + pos: -40.5,-62.5 + parent: 2 + - uid: 9937 + components: + - type: Transform + pos: -39.5,-62.5 + parent: 2 + - uid: 9938 + components: + - type: Transform + pos: -38.5,-62.5 + parent: 2 + - uid: 9939 + components: + - type: Transform + pos: -37.5,-62.5 + parent: 2 + - uid: 9940 + components: + - type: Transform + pos: -36.5,-62.5 + parent: 2 + - uid: 9941 + components: + - type: Transform + pos: -35.5,-62.5 + parent: 2 + - uid: 9942 + components: + - type: Transform + pos: -34.5,-62.5 + parent: 2 + - uid: 9943 + components: + - type: Transform + pos: -34.5,-64.5 + parent: 2 + - uid: 9944 + components: + - type: Transform + pos: -35.5,-64.5 + parent: 2 + - uid: 9945 + components: + - type: Transform + pos: -36.5,-64.5 + parent: 2 + - uid: 9946 + components: + - type: Transform + pos: -37.5,-64.5 + parent: 2 + - uid: 9947 + components: + - type: Transform + pos: -38.5,-64.5 + parent: 2 + - uid: 9948 + components: + - type: Transform + pos: -39.5,-64.5 + parent: 2 + - uid: 9949 + components: + - type: Transform + pos: -40.5,-64.5 + parent: 2 + - uid: 9950 + components: + - type: Transform + pos: -41.5,-64.5 + parent: 2 + - uid: 9951 + components: + - type: Transform + pos: -42.5,-64.5 + parent: 2 + - uid: 9952 + components: + - type: Transform + pos: -42.5,-66.5 + parent: 2 + - uid: 9953 + components: + - type: Transform + pos: -41.5,-66.5 + parent: 2 + - uid: 9954 + components: + - type: Transform + pos: -40.5,-66.5 + parent: 2 + - uid: 9955 + components: + - type: Transform + pos: -39.5,-66.5 + parent: 2 + - uid: 9956 + components: + - type: Transform + pos: -38.5,-66.5 + parent: 2 + - uid: 9957 + components: + - type: Transform + pos: -37.5,-66.5 + parent: 2 + - uid: 9958 + components: + - type: Transform + pos: -36.5,-66.5 + parent: 2 + - uid: 9959 + components: + - type: Transform + pos: -35.5,-66.5 + parent: 2 + - uid: 9960 + components: + - type: Transform + pos: -34.5,-66.5 + parent: 2 + - uid: 9961 + components: + - type: Transform + pos: -34.5,-68.5 + parent: 2 + - uid: 9962 + components: + - type: Transform + pos: -35.5,-68.5 + parent: 2 + - uid: 9963 + components: + - type: Transform + pos: -36.5,-68.5 + parent: 2 + - uid: 9964 + components: + - type: Transform + pos: -37.5,-68.5 + parent: 2 + - uid: 9965 + components: + - type: Transform + pos: -38.5,-68.5 + parent: 2 + - uid: 9966 + components: + - type: Transform + pos: -39.5,-68.5 + parent: 2 + - uid: 9967 + components: + - type: Transform + pos: -40.5,-68.5 + parent: 2 + - uid: 9968 + components: + - type: Transform + pos: -41.5,-68.5 + parent: 2 + - uid: 9969 + components: + - type: Transform + pos: -42.5,-68.5 + parent: 2 + - uid: 9970 + components: + - type: Transform + pos: -42.5,-70.5 + parent: 2 + - uid: 9971 + components: + - type: Transform + pos: -41.5,-70.5 + parent: 2 + - uid: 9972 + components: + - type: Transform + pos: -40.5,-70.5 + parent: 2 + - uid: 9973 + components: + - type: Transform + pos: -39.5,-70.5 + parent: 2 + - uid: 9974 + components: + - type: Transform + pos: -38.5,-70.5 + parent: 2 + - uid: 9975 + components: + - type: Transform + pos: -37.5,-70.5 + parent: 2 + - uid: 9976 + components: + - type: Transform + pos: -36.5,-70.5 + parent: 2 + - uid: 9977 + components: + - type: Transform + pos: -35.5,-70.5 + parent: 2 + - uid: 9978 + components: + - type: Transform + pos: -34.5,-70.5 + parent: 2 + - uid: 9979 + components: + - type: Transform + pos: -35.5,-72.5 + parent: 2 + - uid: 9980 + components: + - type: Transform + pos: -36.5,-72.5 + parent: 2 + - uid: 9981 + components: + - type: Transform + pos: -37.5,-72.5 + parent: 2 + - uid: 9982 + components: + - type: Transform + pos: -38.5,-72.5 + parent: 2 + - uid: 9983 + components: + - type: Transform + pos: -39.5,-72.5 + parent: 2 + - uid: 9984 + components: + - type: Transform + pos: -40.5,-72.5 + parent: 2 + - uid: 9985 + components: + - type: Transform + pos: -41.5,-72.5 + parent: 2 + - uid: 9986 + components: + - type: Transform + pos: -42.5,-72.5 + parent: 2 + - uid: 9987 + components: + - type: Transform + pos: -32.5,-74.5 + parent: 2 + - uid: 9988 + components: + - type: Transform + pos: -32.5,-73.5 + parent: 2 + - uid: 9989 + components: + - type: Transform + pos: -33.5,-72.5 + parent: 2 + - uid: 9990 + components: + - type: Transform + pos: -32.5,-72.5 + parent: 2 + - uid: 10154 + components: + - type: Transform + pos: -31.5,-51.5 + parent: 2 + - uid: 10155 + components: + - type: Transform + pos: -31.5,-52.5 + parent: 2 + - uid: 10156 + components: + - type: Transform + pos: -31.5,-53.5 + parent: 2 + - uid: 10157 + components: + - type: Transform + pos: -32.5,-53.5 + parent: 2 + - uid: 10161 + components: + - type: Transform + pos: -46.5,-42.5 + parent: 2 + - uid: 10429 + components: + - type: Transform + pos: -97.5,-13.5 + parent: 2 + - uid: 10430 + components: + - type: Transform + pos: -96.5,-13.5 + parent: 2 + - uid: 10431 + components: + - type: Transform + pos: -96.5,-15.5 + parent: 2 + - uid: 10432 + components: + - type: Transform + pos: -96.5,-16.5 + parent: 2 + - uid: 10433 + components: + - type: Transform + pos: -96.5,-17.5 + parent: 2 + - uid: 10434 + components: + - type: Transform + pos: -96.5,-18.5 + parent: 2 + - uid: 10435 + components: + - type: Transform + pos: -96.5,-19.5 + parent: 2 + - uid: 10436 + components: + - type: Transform + pos: -96.5,-20.5 + parent: 2 + - uid: 10437 + components: + - type: Transform + pos: -96.5,-21.5 + parent: 2 + - uid: 10438 + components: + - type: Transform + pos: -95.5,-15.5 + parent: 2 + - uid: 10439 + components: + - type: Transform + pos: -94.5,-15.5 + parent: 2 + - uid: 10440 + components: + - type: Transform + pos: -94.5,-16.5 + parent: 2 + - uid: 10441 + components: + - type: Transform + pos: -94.5,-17.5 + parent: 2 + - uid: 10442 + components: + - type: Transform + pos: -94.5,-18.5 + parent: 2 + - uid: 10443 + components: + - type: Transform + pos: -94.5,-19.5 + parent: 2 + - uid: 10444 + components: + - type: Transform + pos: -94.5,-20.5 + parent: 2 + - uid: 10445 + components: + - type: Transform + pos: -94.5,-21.5 + parent: 2 + - uid: 10488 + components: + - type: Transform + pos: -88.5,-15.5 + parent: 2 + - uid: 10489 + components: + - type: Transform + pos: -88.5,-16.5 + parent: 2 + - uid: 10490 + components: + - type: Transform + pos: -88.5,-17.5 + parent: 2 + - uid: 10491 + components: + - type: Transform + pos: -88.5,-18.5 + parent: 2 + - uid: 10492 + components: + - type: Transform + pos: -88.5,-19.5 + parent: 2 + - uid: 10493 + components: + - type: Transform + pos: -88.5,-20.5 + parent: 2 + - uid: 10494 + components: + - type: Transform + pos: -88.5,-21.5 + parent: 2 + - uid: 10495 + components: + - type: Transform + pos: -90.5,-21.5 + parent: 2 + - uid: 10496 + components: + - type: Transform + pos: -90.5,-20.5 + parent: 2 + - uid: 10497 + components: + - type: Transform + pos: -90.5,-19.5 + parent: 2 + - uid: 10498 + components: + - type: Transform + pos: -90.5,-18.5 + parent: 2 + - uid: 10499 + components: + - type: Transform + pos: -90.5,-17.5 + parent: 2 + - uid: 10500 + components: + - type: Transform + pos: -90.5,-16.5 + parent: 2 + - uid: 10501 + components: + - type: Transform + pos: -90.5,-15.5 + parent: 2 + - uid: 10502 + components: + - type: Transform + pos: -92.5,-15.5 + parent: 2 + - uid: 10503 + components: + - type: Transform + pos: -92.5,-16.5 + parent: 2 + - uid: 10504 + components: + - type: Transform + pos: -92.5,-17.5 + parent: 2 + - uid: 10505 + components: + - type: Transform + pos: -92.5,-18.5 + parent: 2 + - uid: 10506 + components: + - type: Transform + pos: -92.5,-19.5 + parent: 2 + - uid: 10507 + components: + - type: Transform + pos: -92.5,-20.5 + parent: 2 + - uid: 10508 + components: + - type: Transform + pos: -92.5,-21.5 + parent: 2 + - uid: 10509 + components: + - type: Transform + pos: -86.5,-21.5 + parent: 2 + - uid: 10510 + components: + - type: Transform + pos: -86.5,-20.5 + parent: 2 + - uid: 10511 + components: + - type: Transform + pos: -86.5,-19.5 + parent: 2 + - uid: 10512 + components: + - type: Transform + pos: -86.5,-18.5 + parent: 2 + - uid: 10513 + components: + - type: Transform + pos: -86.5,-17.5 + parent: 2 + - uid: 10514 + components: + - type: Transform + pos: -86.5,-16.5 + parent: 2 + - uid: 10515 + components: + - type: Transform + pos: -86.5,-15.5 + parent: 2 + - uid: 10516 + components: + - type: Transform + pos: -88.5,-15.5 + parent: 2 + - uid: 10517 + components: + - type: Transform + pos: -88.5,-16.5 + parent: 2 + - uid: 10518 + components: + - type: Transform + pos: -88.5,-17.5 + parent: 2 + - uid: 10519 + components: + - type: Transform + pos: -88.5,-18.5 + parent: 2 + - uid: 10520 + components: + - type: Transform + pos: -88.5,-19.5 + parent: 2 + - uid: 10521 + components: + - type: Transform + pos: -88.5,-20.5 + parent: 2 + - uid: 10522 + components: + - type: Transform + pos: -88.5,-21.5 + parent: 2 + - uid: 10523 + components: + - type: Transform + pos: -84.5,-15.5 + parent: 2 + - uid: 10524 + components: + - type: Transform + pos: -84.5,-16.5 + parent: 2 + - uid: 10525 + components: + - type: Transform + pos: -84.5,-17.5 + parent: 2 + - uid: 10526 + components: + - type: Transform + pos: -84.5,-18.5 + parent: 2 + - uid: 10527 + components: + - type: Transform + pos: -84.5,-19.5 + parent: 2 + - uid: 10528 + components: + - type: Transform + pos: -84.5,-20.5 + parent: 2 + - uid: 10529 + components: + - type: Transform + pos: -84.5,-21.5 + parent: 2 + - uid: 10530 + components: + - type: Transform + pos: -82.5,-15.5 + parent: 2 + - uid: 10531 + components: + - type: Transform + pos: -82.5,-16.5 + parent: 2 + - uid: 10532 + components: + - type: Transform + pos: -82.5,-17.5 + parent: 2 + - uid: 10533 + components: + - type: Transform + pos: -82.5,-18.5 + parent: 2 + - uid: 10534 + components: + - type: Transform + pos: -82.5,-19.5 + parent: 2 + - uid: 10535 + components: + - type: Transform + pos: -82.5,-20.5 + parent: 2 + - uid: 10536 + components: + - type: Transform + pos: -82.5,-21.5 + parent: 2 + - uid: 10537 + components: + - type: Transform + pos: -83.5,-15.5 + parent: 2 + - uid: 10538 + components: + - type: Transform + pos: -87.5,-15.5 + parent: 2 + - uid: 10539 + components: + - type: Transform + pos: -91.5,-15.5 + parent: 2 + - uid: 10543 + components: + - type: Transform + pos: -79.5,-13.5 + parent: 2 + - uid: 10544 + components: + - type: Transform + pos: -78.5,-13.5 + parent: 2 + - uid: 10545 + components: + - type: Transform + pos: -77.5,-13.5 + parent: 2 + - uid: 10546 + components: + - type: Transform + pos: -76.5,-13.5 + parent: 2 + - uid: 10547 + components: + - type: Transform + pos: -75.5,-13.5 + parent: 2 + - uid: 10548 + components: + - type: Transform + pos: -74.5,-13.5 + parent: 2 + - uid: 10549 + components: + - type: Transform + pos: -73.5,-13.5 + parent: 2 + - uid: 10550 + components: + - type: Transform + pos: -72.5,-13.5 + parent: 2 + - uid: 10551 + components: + - type: Transform + pos: -71.5,-13.5 + parent: 2 + - uid: 10552 + components: + - type: Transform + pos: -70.5,-13.5 + parent: 2 + - uid: 10553 + components: + - type: Transform + pos: -69.5,-13.5 + parent: 2 + - uid: 10554 + components: + - type: Transform + pos: -69.5,-10.5 + parent: 2 + - uid: 10555 + components: + - type: Transform + pos: -69.5,-12.5 + parent: 2 + - uid: 10556 + components: + - type: Transform + pos: -69.5,-11.5 + parent: 2 + - uid: 10557 + components: + - type: Transform + pos: -69.5,-10.5 + parent: 2 + - uid: 10558 + components: + - type: Transform + pos: -69.5,-9.5 + parent: 2 + - uid: 10559 + components: + - type: Transform + pos: -68.5,-9.5 + parent: 2 + - uid: 10560 + components: + - type: Transform + pos: -68.5,-8.5 + parent: 2 + - uid: 10561 + components: + - type: Transform + pos: -68.5,-7.5 + parent: 2 + - uid: 10778 + components: + - type: Transform + pos: -35.5,35.5 + parent: 2 + - uid: 10779 + components: + - type: Transform + pos: -34.5,35.5 + parent: 2 + - uid: 10780 + components: + - type: Transform + pos: -34.5,34.5 + parent: 2 + - uid: 10781 + components: + - type: Transform + pos: -34.5,33.5 + parent: 2 + - uid: 10782 + components: + - type: Transform + pos: -34.5,32.5 + parent: 2 + - uid: 10783 + components: + - type: Transform + pos: -34.5,31.5 + parent: 2 + - uid: 10784 + components: + - type: Transform + pos: -34.5,30.5 + parent: 2 + - uid: 10785 + components: + - type: Transform + pos: -34.5,29.5 + parent: 2 + - uid: 10786 + components: + - type: Transform + pos: -33.5,29.5 + parent: 2 + - uid: 10787 + components: + - type: Transform + pos: -33.5,28.5 + parent: 2 + - uid: 10788 + components: + - type: Transform + pos: -33.5,27.5 + parent: 2 + - uid: 10789 + components: + - type: Transform + pos: -34.5,27.5 + parent: 2 + - uid: 10790 + components: + - type: Transform + pos: -34.5,26.5 + parent: 2 + - uid: 10791 + components: + - type: Transform + pos: -34.5,25.5 + parent: 2 + - uid: 11005 + components: + - type: Transform + pos: -20.5,39.5 + parent: 2 + - uid: 11037 + components: + - type: Transform + pos: -31.5,47.5 + parent: 2 + - uid: 11038 + components: + - type: Transform + pos: -30.5,47.5 + parent: 2 + - uid: 11039 + components: + - type: Transform + pos: -29.5,47.5 + parent: 2 + - uid: 11040 + components: + - type: Transform + pos: -28.5,47.5 + parent: 2 + - uid: 11041 + components: + - type: Transform + pos: -27.5,47.5 + parent: 2 + - uid: 11042 + components: + - type: Transform + pos: -26.5,47.5 + parent: 2 + - uid: 11043 + components: + - type: Transform + pos: -25.5,47.5 + parent: 2 + - uid: 11044 + components: + - type: Transform + pos: -24.5,47.5 + parent: 2 + - uid: 11045 + components: + - type: Transform + pos: -22.5,48.5 + parent: 2 + - uid: 11046 + components: + - type: Transform + pos: -22.5,47.5 + parent: 2 + - uid: 11047 + components: + - type: Transform + pos: -31.5,45.5 + parent: 2 + - uid: 11048 + components: + - type: Transform + pos: -30.5,45.5 + parent: 2 + - uid: 11049 + components: + - type: Transform + pos: -29.5,45.5 + parent: 2 + - uid: 11050 + components: + - type: Transform + pos: -28.5,45.5 + parent: 2 + - uid: 11051 + components: + - type: Transform + pos: -27.5,45.5 + parent: 2 + - uid: 11052 + components: + - type: Transform + pos: -26.5,45.5 + parent: 2 + - uid: 11053 + components: + - type: Transform + pos: -25.5,45.5 + parent: 2 + - uid: 11054 + components: + - type: Transform + pos: -24.5,45.5 + parent: 2 + - uid: 11055 + components: + - type: Transform + pos: -20.5,47.5 + parent: 2 + - uid: 11056 + components: + - type: Transform + pos: -19.5,47.5 + parent: 2 + - uid: 11057 + components: + - type: Transform + pos: -18.5,47.5 + parent: 2 + - uid: 11058 + components: + - type: Transform + pos: -17.5,47.5 + parent: 2 + - uid: 11059 + components: + - type: Transform + pos: -16.5,47.5 + parent: 2 + - uid: 11060 + components: + - type: Transform + pos: -15.5,47.5 + parent: 2 + - uid: 11061 + components: + - type: Transform + pos: -14.5,47.5 + parent: 2 + - uid: 11062 + components: + - type: Transform + pos: -13.5,47.5 + parent: 2 + - uid: 11063 + components: + - type: Transform + pos: -13.5,45.5 + parent: 2 + - uid: 11064 + components: + - type: Transform + pos: -14.5,45.5 + parent: 2 + - uid: 11065 + components: + - type: Transform + pos: -15.5,45.5 + parent: 2 + - uid: 11066 + components: + - type: Transform + pos: -16.5,45.5 + parent: 2 + - uid: 11067 + components: + - type: Transform + pos: -17.5,45.5 + parent: 2 + - uid: 11068 + components: + - type: Transform + pos: -18.5,45.5 + parent: 2 + - uid: 11069 + components: + - type: Transform + pos: -19.5,45.5 + parent: 2 + - uid: 11070 + components: + - type: Transform + pos: -20.5,45.5 + parent: 2 + - uid: 11071 + components: + - type: Transform + pos: -20.5,43.5 + parent: 2 + - uid: 11072 + components: + - type: Transform + pos: -19.5,43.5 + parent: 2 + - uid: 11073 + components: + - type: Transform + pos: -18.5,43.5 + parent: 2 + - uid: 11074 + components: + - type: Transform + pos: -17.5,43.5 + parent: 2 + - uid: 11075 + components: + - type: Transform + pos: -16.5,43.5 + parent: 2 + - uid: 11076 + components: + - type: Transform + pos: -15.5,43.5 + parent: 2 + - uid: 11077 + components: + - type: Transform + pos: -14.5,43.5 + parent: 2 + - uid: 11078 + components: + - type: Transform + pos: -13.5,43.5 + parent: 2 + - uid: 11079 + components: + - type: Transform + pos: -13.5,41.5 + parent: 2 + - uid: 11080 + components: + - type: Transform + pos: -14.5,41.5 + parent: 2 + - uid: 11081 + components: + - type: Transform + pos: -15.5,41.5 + parent: 2 + - uid: 11082 + components: + - type: Transform + pos: -16.5,41.5 + parent: 2 + - uid: 11083 + components: + - type: Transform + pos: -17.5,41.5 + parent: 2 + - uid: 11084 + components: + - type: Transform + pos: -18.5,41.5 + parent: 2 + - uid: 11085 + components: + - type: Transform + pos: -19.5,41.5 + parent: 2 + - uid: 11086 + components: + - type: Transform + pos: -20.5,41.5 + parent: 2 + - uid: 11087 + components: + - type: Transform + pos: -24.5,41.5 + parent: 2 + - uid: 11088 + components: + - type: Transform + pos: -25.5,41.5 + parent: 2 + - uid: 11089 + components: + - type: Transform + pos: -26.5,41.5 + parent: 2 + - uid: 11090 + components: + - type: Transform + pos: -27.5,41.5 + parent: 2 + - uid: 11091 + components: + - type: Transform + pos: -28.5,41.5 + parent: 2 + - uid: 11092 + components: + - type: Transform + pos: -29.5,41.5 + parent: 2 + - uid: 11093 + components: + - type: Transform + pos: -29.5,43.5 + parent: 2 + - uid: 11094 + components: + - type: Transform + pos: -28.5,43.5 + parent: 2 + - uid: 11095 + components: + - type: Transform + pos: -27.5,43.5 + parent: 2 + - uid: 11096 + components: + - type: Transform + pos: -26.5,43.5 + parent: 2 + - uid: 11097 + components: + - type: Transform + pos: -25.5,43.5 + parent: 2 + - uid: 11098 + components: + - type: Transform + pos: -24.5,43.5 + parent: 2 + - uid: 11099 + components: + - type: Transform + pos: -27.5,39.5 + parent: 2 + - uid: 11100 + components: + - type: Transform + pos: -26.5,39.5 + parent: 2 + - uid: 11101 + components: + - type: Transform + pos: -25.5,39.5 + parent: 2 + - uid: 11102 + components: + - type: Transform + pos: -24.5,39.5 + parent: 2 + - uid: 11103 + components: + - type: Transform + pos: -27.5,37.5 + parent: 2 + - uid: 11104 + components: + - type: Transform + pos: -26.5,37.5 + parent: 2 + - uid: 11105 + components: + - type: Transform + pos: -25.5,37.5 + parent: 2 + - uid: 11106 + components: + - type: Transform + pos: -24.5,37.5 + parent: 2 + - uid: 11107 + components: + - type: Transform + pos: -19.5,39.5 + parent: 2 + - uid: 11108 + components: + - type: Transform + pos: -18.5,39.5 + parent: 2 + - uid: 11109 + components: + - type: Transform + pos: -17.5,39.5 + parent: 2 + - uid: 11110 + components: + - type: Transform + pos: -16.5,39.5 + parent: 2 + - uid: 11111 + components: + - type: Transform + pos: -15.5,39.5 + parent: 2 + - uid: 11112 + components: + - type: Transform + pos: -14.5,39.5 + parent: 2 + - uid: 11113 + components: + - type: Transform + pos: -13.5,39.5 + parent: 2 + - uid: 11114 + components: + - type: Transform + pos: -20.5,31.5 + parent: 2 + - uid: 11115 + components: + - type: Transform + pos: -13.5,37.5 + parent: 2 + - uid: 11116 + components: + - type: Transform + pos: -14.5,37.5 + parent: 2 + - uid: 11117 + components: + - type: Transform + pos: -15.5,37.5 + parent: 2 + - uid: 11118 + components: + - type: Transform + pos: -16.5,37.5 + parent: 2 + - uid: 11119 + components: + - type: Transform + pos: -17.5,37.5 + parent: 2 + - uid: 11120 + components: + - type: Transform + pos: -18.5,37.5 + parent: 2 + - uid: 11121 + components: + - type: Transform + pos: -19.5,37.5 + parent: 2 + - uid: 11122 + components: + - type: Transform + pos: -20.5,37.5 + parent: 2 + - uid: 11123 + components: + - type: Transform + pos: -20.5,35.5 + parent: 2 + - uid: 11124 + components: + - type: Transform + pos: -19.5,35.5 + parent: 2 + - uid: 11125 + components: + - type: Transform + pos: -18.5,35.5 + parent: 2 + - uid: 11126 + components: + - type: Transform + pos: -17.5,35.5 + parent: 2 + - uid: 11127 + components: + - type: Transform + pos: -16.5,35.5 + parent: 2 + - uid: 11128 + components: + - type: Transform + pos: -15.5,35.5 + parent: 2 + - uid: 11129 + components: + - type: Transform + pos: -14.5,35.5 + parent: 2 + - uid: 11130 + components: + - type: Transform + pos: -13.5,35.5 + parent: 2 + - uid: 11131 + components: + - type: Transform + pos: -13.5,33.5 + parent: 2 + - uid: 11132 + components: + - type: Transform + pos: -14.5,33.5 + parent: 2 + - uid: 11133 + components: + - type: Transform + pos: -15.5,33.5 + parent: 2 + - uid: 11134 + components: + - type: Transform + pos: -16.5,33.5 + parent: 2 + - uid: 11135 + components: + - type: Transform + pos: -17.5,33.5 + parent: 2 + - uid: 11136 + components: + - type: Transform + pos: -18.5,33.5 + parent: 2 + - uid: 11137 + components: + - type: Transform + pos: -19.5,33.5 + parent: 2 + - uid: 11138 + components: + - type: Transform + pos: -20.5,33.5 + parent: 2 + - uid: 11139 + components: + - type: Transform + pos: -19.5,31.5 + parent: 2 + - uid: 11140 + components: + - type: Transform + pos: -18.5,31.5 + parent: 2 + - uid: 11141 + components: + - type: Transform + pos: -17.5,31.5 + parent: 2 + - uid: 11142 + components: + - type: Transform + pos: -16.5,31.5 + parent: 2 + - uid: 11143 + components: + - type: Transform + pos: -15.5,31.5 + parent: 2 + - uid: 11144 + components: + - type: Transform + pos: -14.5,31.5 + parent: 2 + - uid: 11145 + components: + - type: Transform + pos: -13.5,31.5 + parent: 2 + - uid: 11146 + components: + - type: Transform + pos: -20.5,46.5 + parent: 2 + - uid: 11147 + components: + - type: Transform + pos: -13.5,29.5 + parent: 2 + - uid: 11148 + components: + - type: Transform + pos: -14.5,29.5 + parent: 2 + - uid: 11149 + components: + - type: Transform + pos: -15.5,29.5 + parent: 2 + - uid: 11150 + components: + - type: Transform + pos: -16.5,29.5 + parent: 2 + - uid: 11151 + components: + - type: Transform + pos: -17.5,29.5 + parent: 2 + - uid: 11152 + components: + - type: Transform + pos: -18.5,29.5 + parent: 2 + - uid: 11153 + components: + - type: Transform + pos: -19.5,29.5 + parent: 2 + - uid: 11154 + components: + - type: Transform + pos: -20.5,29.5 + parent: 2 + - uid: 11155 + components: + - type: Transform + pos: -20.5,30.5 + parent: 2 + - uid: 11156 + components: + - type: Transform + pos: -20.5,34.5 + parent: 2 + - uid: 11157 + components: + - type: Transform + pos: -20.5,38.5 + parent: 2 + - uid: 11158 + components: + - type: Transform + pos: -20.5,42.5 + parent: 2 + - uid: 11159 + components: + - type: Transform + pos: -24.5,46.5 + parent: 2 + - uid: 11160 + components: + - type: Transform + pos: -24.5,42.5 + parent: 2 + - uid: 11161 + components: + - type: Transform + pos: -33.5,25.5 + parent: 2 + - uid: 11162 + components: + - type: Transform + pos: -24.5,38.5 + parent: 2 + - uid: 11163 + components: + - type: Transform + pos: -32.5,25.5 + parent: 2 + - uid: 11164 + components: + - type: Transform + pos: -31.5,25.5 + parent: 2 + - uid: 11165 + components: + - type: Transform + pos: -30.5,25.5 + parent: 2 + - uid: 11200 + components: + - type: Transform + pos: -46.5,-39.5 + parent: 2 + - uid: 11201 + components: + - type: Transform + pos: -46.5,-38.5 + parent: 2 + - uid: 11202 + components: + - type: Transform + pos: -46.5,-37.5 + parent: 2 + - uid: 11203 + components: + - type: Transform + pos: -47.5,-37.5 + parent: 2 + - uid: 11204 + components: + - type: Transform + pos: -48.5,-37.5 + parent: 2 + - uid: 11205 + components: + - type: Transform + pos: -49.5,-37.5 + parent: 2 + - uid: 11206 + components: + - type: Transform + pos: -49.5,-36.5 + parent: 2 + - uid: 11207 + components: + - type: Transform + pos: -49.5,-35.5 + parent: 2 + - uid: 11208 + components: + - type: Transform + pos: -49.5,-34.5 + parent: 2 + - uid: 11209 + components: + - type: Transform + pos: -50.5,-34.5 + parent: 2 + - uid: 11210 + components: + - type: Transform + pos: -51.5,-34.5 + parent: 2 + - uid: 11211 + components: + - type: Transform + pos: -52.5,-34.5 + parent: 2 + - uid: 11212 + components: + - type: Transform + pos: -53.5,-34.5 + parent: 2 + - uid: 11213 + components: + - type: Transform + pos: -54.5,-34.5 + parent: 2 + - uid: 11214 + components: + - type: Transform + pos: -55.5,-34.5 + parent: 2 + - uid: 11215 + components: + - type: Transform + pos: -56.5,-34.5 + parent: 2 + - uid: 11216 + components: + - type: Transform + pos: -57.5,-34.5 + parent: 2 + - uid: 11217 + components: + - type: Transform + pos: -58.5,-34.5 + parent: 2 + - uid: 11218 + components: + - type: Transform + pos: -59.5,-34.5 + parent: 2 + - uid: 11219 + components: + - type: Transform + pos: -59.5,-35.5 + parent: 2 + - uid: 11220 + components: + - type: Transform + pos: -60.5,-35.5 + parent: 2 + - uid: 11221 + components: + - type: Transform + pos: -61.5,-35.5 + parent: 2 + - uid: 11222 + components: + - type: Transform + pos: -62.5,-35.5 + parent: 2 + - uid: 11223 + components: + - type: Transform + pos: -63.5,-35.5 + parent: 2 + - uid: 11224 + components: + - type: Transform + pos: -63.5,-36.5 + parent: 2 + - uid: 11225 + components: + - type: Transform + pos: -63.5,-37.5 + parent: 2 + - uid: 11226 + components: + - type: Transform + pos: -64.5,-37.5 + parent: 2 + - uid: 11227 + components: + - type: Transform + pos: -65.5,-37.5 + parent: 2 + - uid: 11228 + components: + - type: Transform + pos: -65.5,-36.5 + parent: 2 + - uid: 11399 + components: + - type: Transform + pos: -63.5,-34.5 + parent: 2 + - uid: 11400 + components: + - type: Transform + pos: -64.5,-34.5 + parent: 2 + - uid: 11401 + components: + - type: Transform + pos: -65.5,-34.5 + parent: 2 + - uid: 11402 + components: + - type: Transform + pos: -66.5,-34.5 + parent: 2 + - uid: 11403 + components: + - type: Transform + pos: -67.5,-34.5 + parent: 2 + - uid: 11404 + components: + - type: Transform + pos: -68.5,-34.5 + parent: 2 + - uid: 11405 + components: + - type: Transform + pos: -69.5,-34.5 + parent: 2 + - uid: 11406 + components: + - type: Transform + pos: -70.5,-34.5 + parent: 2 + - uid: 11407 + components: + - type: Transform + pos: -71.5,-34.5 + parent: 2 + - uid: 11408 + components: + - type: Transform + pos: -72.5,-34.5 + parent: 2 + - uid: 11409 + components: + - type: Transform + pos: -73.5,-34.5 + parent: 2 + - uid: 11420 + components: + - type: Transform + pos: -84.5,-34.5 + parent: 2 + - uid: 11421 + components: + - type: Transform + pos: -85.5,-34.5 + parent: 2 + - uid: 11422 + components: + - type: Transform + pos: -86.5,-34.5 + parent: 2 + - uid: 11423 + components: + - type: Transform + pos: -86.5,-33.5 + parent: 2 + - uid: 11424 + components: + - type: Transform + pos: -87.5,-33.5 + parent: 2 + - uid: 11425 + components: + - type: Transform + pos: -88.5,-33.5 + parent: 2 + - uid: 11426 + components: + - type: Transform + pos: -89.5,-33.5 + parent: 2 + - uid: 11427 + components: + - type: Transform + pos: -90.5,-33.5 + parent: 2 + - uid: 11428 + components: + - type: Transform + pos: -90.5,-32.5 + parent: 2 + - uid: 11429 + components: + - type: Transform + pos: -91.5,-32.5 + parent: 2 + - uid: 11430 + components: + - type: Transform + pos: -92.5,-32.5 + parent: 2 + - uid: 11431 + components: + - type: Transform + pos: -93.5,-32.5 + parent: 2 + - uid: 11434 + components: + - type: Transform + pos: -93.5,-33.5 + parent: 2 + - uid: 11435 + components: + - type: Transform + pos: -93.5,-34.5 + parent: 2 + - uid: 11455 + components: + - type: Transform + pos: -83.5,-34.5 + parent: 2 + - uid: 11801 + components: + - type: Transform + pos: -48.5,23.5 + parent: 2 + - uid: 11802 + components: + - type: Transform + pos: -47.5,21.5 + parent: 2 + - uid: 11804 + components: + - type: Transform + pos: -48.5,22.5 + parent: 2 + - uid: 11806 + components: + - type: Transform + pos: -48.5,21.5 + parent: 2 + - uid: 11807 + components: + - type: Transform + pos: -45.5,38.5 + parent: 2 + - uid: 11808 + components: + - type: Transform + pos: -45.5,36.5 + parent: 2 + - uid: 11809 + components: + - type: Transform + pos: -45.5,37.5 + parent: 2 + - uid: 11810 + components: + - type: Transform + pos: -45.5,35.5 + parent: 2 + - uid: 11811 + components: + - type: Transform + pos: -45.5,28.5 + parent: 2 + - uid: 11812 + components: + - type: Transform + pos: -45.5,26.5 + parent: 2 + - uid: 11813 + components: + - type: Transform + pos: -45.5,27.5 + parent: 2 + - uid: 11814 + components: + - type: Transform + pos: -45.5,25.5 + parent: 2 + - uid: 11815 + components: + - type: Transform + pos: -45.5,34.5 + parent: 2 + - uid: 11817 + components: + - type: Transform + pos: -45.5,32.5 + parent: 2 + - uid: 11818 + components: + - type: Transform + pos: -45.5,33.5 + parent: 2 + - uid: 11820 + components: + - type: Transform + pos: -45.5,30.5 + parent: 2 + - uid: 11821 + components: + - type: Transform + pos: -45.5,31.5 + parent: 2 + - uid: 11822 + components: + - type: Transform + pos: -45.5,29.5 + parent: 2 + - uid: 11854 + components: + - type: Transform + pos: -35.5,11.5 + parent: 2 + - uid: 11875 + components: + - type: Transform + pos: -35.5,12.5 + parent: 2 + - uid: 11886 + components: + - type: Transform + pos: -46.5,21.5 + parent: 2 + - uid: 12534 + components: + - type: Transform + pos: -36.5,13.5 + parent: 2 + - uid: 12722 + components: + - type: Transform + pos: -35.5,13.5 + parent: 2 + - uid: 12728 + components: + - type: Transform + pos: -94.5,-34.5 + parent: 2 + - uid: 12745 + components: + - type: Transform + pos: -45.5,-17.5 + parent: 2 + - uid: 13263 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 13264 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 13265 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 13266 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 13269 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 + - uid: 13554 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - uid: 13555 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 13556 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 13626 + components: + - type: Transform + pos: -49.5,10.5 + parent: 2 + - uid: 13627 + components: + - type: Transform + pos: -49.5,9.5 + parent: 2 + - uid: 14136 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 + - uid: 14598 + components: + - type: Transform + pos: -35.5,10.5 + parent: 2 + - uid: 14624 + components: + - type: Transform + pos: -37.5,13.5 + parent: 2 + - uid: 14627 + components: + - type: Transform + pos: -37.5,14.5 + parent: 2 + - uid: 14850 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - uid: 15018 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 + - uid: 15039 + components: + - type: Transform + pos: 9.5,23.5 + parent: 2 + - uid: 15042 + components: + - type: Transform + pos: 8.5,23.5 + parent: 2 + - uid: 15061 + components: + - type: Transform + pos: -49.5,21.5 + parent: 2 + - uid: 15062 + components: + - type: Transform + pos: -50.5,21.5 + parent: 2 + - uid: 15063 + components: + - type: Transform + pos: -51.5,21.5 + parent: 2 + - uid: 15064 + components: + - type: Transform + pos: -52.5,21.5 + parent: 2 + - uid: 15065 + components: + - type: Transform + pos: -53.5,21.5 + parent: 2 + - uid: 15077 + components: + - type: Transform + pos: -67.5,28.5 + parent: 2 + - uid: 15078 + components: + - type: Transform + pos: -68.5,28.5 + parent: 2 + - uid: 15079 + components: + - type: Transform + pos: -69.5,28.5 + parent: 2 + - uid: 15080 + components: + - type: Transform + pos: -70.5,28.5 + parent: 2 + - uid: 15081 + components: + - type: Transform + pos: -71.5,28.5 + parent: 2 + - uid: 15082 + components: + - type: Transform + pos: -72.5,28.5 + parent: 2 + - uid: 15083 + components: + - type: Transform + pos: -72.5,29.5 + parent: 2 + - uid: 15093 + components: + - type: Transform + pos: -72.5,30.5 + parent: 2 + - uid: 15094 + components: + - type: Transform + pos: -71.5,30.5 + parent: 2 + - uid: 15095 + components: + - type: Transform + pos: -70.5,30.5 + parent: 2 + - uid: 15096 + components: + - type: Transform + pos: -70.5,31.5 + parent: 2 + - uid: 15097 + components: + - type: Transform + pos: -70.5,32.5 + parent: 2 + - uid: 15098 + components: + - type: Transform + pos: -70.5,33.5 + parent: 2 + - uid: 15099 + components: + - type: Transform + pos: -70.5,34.5 + parent: 2 + - uid: 15100 + components: + - type: Transform + pos: -74.5,34.5 + parent: 2 + - uid: 15101 + components: + - type: Transform + pos: -74.5,33.5 + parent: 2 + - uid: 15102 + components: + - type: Transform + pos: -74.5,32.5 + parent: 2 + - uid: 15103 + components: + - type: Transform + pos: -74.5,31.5 + parent: 2 + - uid: 15104 + components: + - type: Transform + pos: -74.5,30.5 + parent: 2 + - uid: 15105 + components: + - type: Transform + pos: -73.5,30.5 + parent: 2 + - uid: 15218 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2 + - uid: 15251 + components: + - type: Transform + pos: -71.5,25.5 + parent: 2 + - uid: 15254 + components: + - type: Transform + pos: -70.5,25.5 + parent: 2 + - uid: 15255 + components: + - type: Transform + pos: -72.5,27.5 + parent: 2 + - uid: 15265 + components: + - type: Transform + pos: -65.5,25.5 + parent: 2 + - uid: 15266 + components: + - type: Transform + pos: -63.5,25.5 + parent: 2 + - uid: 15267 + components: + - type: Transform + pos: -60.5,24.5 + parent: 2 + - uid: 15268 + components: + - type: Transform + pos: -60.5,22.5 + parent: 2 + - uid: 15270 + components: + - type: Transform + pos: -56.5,21.5 + parent: 2 + - uid: 15271 + components: + - type: Transform + pos: -59.5,21.5 + parent: 2 + - uid: 15273 + components: + - type: Transform + pos: -58.5,21.5 + parent: 2 + - uid: 15274 + components: + - type: Transform + pos: -54.5,21.5 + parent: 2 + - uid: 15279 + components: + - type: Transform + pos: -66.5,25.5 + parent: 2 + - uid: 15280 + components: + - type: Transform + pos: -61.5,25.5 + parent: 2 + - uid: 15282 + components: + - type: Transform + pos: -72.5,25.5 + parent: 2 + - uid: 15283 + components: + - type: Transform + pos: -69.5,25.5 + parent: 2 + - uid: 15284 + components: + - type: Transform + pos: -72.5,26.5 + parent: 2 + - uid: 15287 + components: + - type: Transform + pos: -67.5,25.5 + parent: 2 + - uid: 15288 + components: + - type: Transform + pos: -68.5,25.5 + parent: 2 + - uid: 15293 + components: + - type: Transform + pos: -64.5,25.5 + parent: 2 + - uid: 15294 + components: + - type: Transform + pos: -62.5,25.5 + parent: 2 + - uid: 15295 + components: + - type: Transform + pos: -60.5,23.5 + parent: 2 + - uid: 15296 + components: + - type: Transform + pos: -60.5,25.5 + parent: 2 + - uid: 15297 + components: + - type: Transform + pos: -60.5,21.5 + parent: 2 + - uid: 15298 + components: + - type: Transform + pos: -57.5,21.5 + parent: 2 + - uid: 15300 + components: + - type: Transform + pos: -55.5,21.5 + parent: 2 + - uid: 16411 + components: + - type: Transform + pos: 9.5,25.5 + parent: 2 + - uid: 16412 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 16413 + components: + - type: Transform + pos: 11.5,25.5 + parent: 2 + - uid: 16414 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 + - uid: 16415 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 16416 + components: + - type: Transform + pos: 14.5,25.5 + parent: 2 + - uid: 16417 + components: + - type: Transform + pos: 15.5,25.5 + parent: 2 + - uid: 16418 + components: + - type: Transform + pos: 16.5,25.5 + parent: 2 + - uid: 16419 + components: + - type: Transform + pos: 16.5,26.5 + parent: 2 + - uid: 16420 + components: + - type: Transform + pos: 18.5,25.5 + parent: 2 + - uid: 16421 + components: + - type: Transform + pos: 18.5,26.5 + parent: 2 + - uid: 16422 + components: + - type: Transform + pos: 17.5,27.5 + parent: 2 + - uid: 16423 + components: + - type: Transform + pos: 17.5,28.5 + parent: 2 + - uid: 16424 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 16425 + components: + - type: Transform + pos: 17.5,30.5 + parent: 2 + - uid: 16426 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 16427 + components: + - type: Transform + pos: 18.5,30.5 + parent: 2 + - uid: 16428 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 + - uid: 16429 + components: + - type: Transform + pos: 20.5,30.5 + parent: 2 + - uid: 16430 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 +- proto: CableHVStack + entities: + - uid: 5710 + components: + - type: Transform + pos: -33.38639,15.367272 + parent: 2 + - type: RCDAmmo + charges: 6 + - uid: 8113 + components: + - type: Transform + pos: -22.79247,19.562798 + parent: 2 + - type: RCDAmmo + charges: 6 + - uid: 11194 + components: + - type: Transform + pos: -35.34548,29.41852 + parent: 2 + - type: RCDAmmo + charges: 6 + - uid: 11195 + components: + - type: Transform + pos: -35.58398,29.63867 + parent: 2 + - type: RCDAmmo + charges: 6 +- proto: CableMV + entities: + - uid: 65 + components: + - type: Transform + pos: -89.5,-34.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: -1.5,15.5 + parent: 2 + - uid: 149 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - uid: 407 + components: + - type: Transform + pos: -1.5,14.5 + parent: 2 + - uid: 514 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - uid: 568 + components: + - type: Transform + pos: 1.5,35.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 610 + components: + - type: Transform + pos: 2.5,33.5 + parent: 2 + - uid: 798 + components: + - type: Transform + pos: -72.5,-3.5 + parent: 2 + - uid: 838 + components: + - type: Transform + pos: -46.5,-38.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: -53.5,-0.5 + parent: 2 + - uid: 936 + components: + - type: Transform + pos: -72.5,-5.5 + parent: 2 + - uid: 944 + components: + - type: Transform + pos: -52.5,-13.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: 5.5,31.5 + parent: 2 + - uid: 1008 + components: + - type: Transform + pos: -41.5,20.5 + parent: 2 + - uid: 1114 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 1115 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 1116 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + pos: -42.5,20.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: -36.5,7.5 + parent: 2 + - uid: 1190 + components: + - type: Transform + pos: -28.5,14.5 + parent: 2 + - uid: 1412 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + pos: 3.5,33.5 + parent: 2 + - uid: 1625 + components: + - type: Transform + pos: -44.5,33.5 + parent: 2 + - uid: 1659 + components: + - type: Transform + pos: -46.5,-39.5 + parent: 2 + - uid: 1753 + components: + - type: Transform + pos: -44.5,30.5 + parent: 2 + - uid: 1754 + components: + - type: Transform + pos: -44.5,34.5 + parent: 2 + - uid: 1755 + components: + - type: Transform + pos: -44.5,32.5 + parent: 2 + - uid: 1804 + components: + - type: Transform + pos: -88.5,-34.5 + parent: 2 + - uid: 1811 + components: + - type: Transform + pos: -46.5,-40.5 + parent: 2 + - uid: 1812 + components: + - type: Transform + pos: -46.5,-37.5 + parent: 2 + - uid: 1813 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 1824 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 1830 + components: + - type: Transform + pos: -48.5,-37.5 + parent: 2 + - uid: 1906 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - uid: 1986 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 2 + - uid: 1988 + components: + - type: Transform + pos: -49.5,-16.5 + parent: 2 + - uid: 2034 + components: + - type: Transform + pos: -30.5,7.5 + parent: 2 + - uid: 2051 + components: + - type: Transform + pos: 8.5,10.5 + parent: 2 + - uid: 2070 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 2217 + components: + - type: Transform + pos: -44.5,-18.5 + parent: 2 + - uid: 2218 + components: + - type: Transform + pos: -45.5,-17.5 + parent: 2 + - uid: 2236 + components: + - type: Transform + pos: -48.5,-17.5 + parent: 2 + - uid: 2560 + components: + - type: Transform + pos: -47.5,-37.5 + parent: 2 + - uid: 2638 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - uid: 2775 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 2901 + components: + - type: Transform + pos: -49.5,-17.5 + parent: 2 + - uid: 2903 + components: + - type: Transform + pos: -46.5,-17.5 + parent: 2 + - uid: 2905 + components: + - type: Transform + pos: -45.5,-18.5 + parent: 2 + - uid: 2974 + components: + - type: Transform + pos: -47.5,-17.5 + parent: 2 + - uid: 2979 + components: + - type: Transform + pos: -47.5,-9.5 + parent: 2 + - uid: 2983 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 2 + - uid: 2984 + components: + - type: Transform + pos: -47.5,-10.5 + parent: 2 + - uid: 2991 + components: + - type: Transform + pos: -49.5,-15.5 + parent: 2 + - uid: 3263 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - uid: 3373 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - uid: 3888 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 + - uid: 4068 + components: + - type: Transform + pos: -93.5,-34.5 + parent: 2 + - uid: 4082 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 4522 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 4523 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 + - uid: 4524 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 4525 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 4526 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 4527 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 4528 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 4529 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - uid: 4530 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 4531 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - uid: 4532 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - uid: 4533 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 4534 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 4535 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 4536 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 4537 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - uid: 4538 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 4539 + components: + - type: Transform + pos: 12.5,6.5 + parent: 2 + - uid: 4547 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - uid: 4548 + components: + - type: Transform + pos: 4.5,14.5 + parent: 2 + - uid: 4549 + components: + - type: Transform + pos: 4.5,15.5 + parent: 2 + - uid: 4550 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 4551 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 4552 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 4553 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 4554 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 4555 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 4556 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 4557 + components: + - type: Transform + pos: 2.5,19.5 + parent: 2 + - uid: 4558 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - uid: 4559 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 + - uid: 4560 + components: + - type: Transform + pos: 6.5,17.5 + parent: 2 + - uid: 4561 + components: + - type: Transform + pos: 7.5,17.5 + parent: 2 + - uid: 4562 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 + - uid: 4563 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 + - uid: 4567 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 4568 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 + - uid: 4569 + components: + - type: Transform + pos: 5.5,21.5 + parent: 2 + - uid: 4570 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - uid: 4571 + components: + - type: Transform + pos: 5.5,23.5 + parent: 2 + - uid: 4572 + components: + - type: Transform + pos: 5.5,24.5 + parent: 2 + - uid: 4573 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 4574 + components: + - type: Transform + pos: 5.5,26.5 + parent: 2 + - uid: 4575 + components: + - type: Transform + pos: 5.5,27.5 + parent: 2 + - uid: 4576 + components: + - type: Transform + pos: 5.5,28.5 + parent: 2 + - uid: 4577 + components: + - type: Transform + pos: 4.5,28.5 + parent: 2 + - uid: 4649 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 + - uid: 4650 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 + - uid: 4651 + components: + - type: Transform + pos: -14.5,6.5 + parent: 2 + - uid: 4652 + components: + - type: Transform + pos: -14.5,5.5 + parent: 2 + - uid: 4653 + components: + - type: Transform + pos: -14.5,4.5 + parent: 2 + - uid: 4654 + components: + - type: Transform + pos: -15.5,4.5 + parent: 2 + - uid: 4655 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 4656 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 + - uid: 4657 + components: + - type: Transform + pos: -18.5,4.5 + parent: 2 + - uid: 4658 + components: + - type: Transform + pos: -19.5,4.5 + parent: 2 + - uid: 4659 + components: + - type: Transform + pos: -20.5,4.5 + parent: 2 + - uid: 4660 + components: + - type: Transform + pos: -21.5,4.5 + parent: 2 + - uid: 4661 + components: + - type: Transform + pos: -21.5,5.5 + parent: 2 + - uid: 4662 + components: + - type: Transform + pos: -21.5,6.5 + parent: 2 + - uid: 4663 + components: + - type: Transform + pos: -21.5,7.5 + parent: 2 + - uid: 4664 + components: + - type: Transform + pos: -21.5,8.5 + parent: 2 + - uid: 4665 + components: + - type: Transform + pos: -21.5,9.5 + parent: 2 + - uid: 4666 + components: + - type: Transform + pos: -21.5,10.5 + parent: 2 + - uid: 4667 + components: + - type: Transform + pos: -21.5,11.5 + parent: 2 + - uid: 4668 + components: + - type: Transform + pos: -21.5,12.5 + parent: 2 + - uid: 4669 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 4670 + components: + - type: Transform + pos: -19.5,12.5 + parent: 2 + - uid: 4671 + components: + - type: Transform + pos: -19.5,11.5 + parent: 2 + - uid: 4672 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 4673 + components: + - type: Transform + pos: -19.5,9.5 + parent: 2 + - uid: 4674 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - uid: 4675 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 4676 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - uid: 4677 + components: + - type: Transform + pos: -13.5,8.5 + parent: 2 + - uid: 4678 + components: + - type: Transform + pos: -12.5,8.5 + parent: 2 + - uid: 4679 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 + - uid: 4680 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 + - uid: 4681 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 + - uid: 4682 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 + - uid: 4683 + components: + - type: Transform + pos: -14.5,11.5 + parent: 2 + - uid: 4684 + components: + - type: Transform + pos: -15.5,11.5 + parent: 2 + - uid: 4685 + components: + - type: Transform + pos: -16.5,11.5 + parent: 2 + - uid: 4686 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 4687 + components: + - type: Transform + pos: -16.5,9.5 + parent: 2 + - uid: 4688 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 + - uid: 4689 + components: + - type: Transform + pos: -10.5,10.5 + parent: 2 + - uid: 4690 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - uid: 4691 + components: + - type: Transform + pos: -17.5,8.5 + parent: 2 + - uid: 4692 + components: + - type: Transform + pos: -9.5,10.5 + parent: 2 + - uid: 4693 + components: + - type: Transform + pos: -8.5,10.5 + parent: 2 + - uid: 4694 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 4695 + components: + - type: Transform + pos: -8.5,12.5 + parent: 2 + - uid: 4696 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 + - uid: 4697 + components: + - type: Transform + pos: -8.5,14.5 + parent: 2 + - uid: 4698 + components: + - type: Transform + pos: -9.5,14.5 + parent: 2 + - uid: 4699 + components: + - type: Transform + pos: -10.5,14.5 + parent: 2 + - uid: 4700 + components: + - type: Transform + pos: -11.5,14.5 + parent: 2 + - uid: 4701 + components: + - type: Transform + pos: -12.5,14.5 + parent: 2 + - uid: 4702 + components: + - type: Transform + pos: -13.5,14.5 + parent: 2 + - uid: 4704 + components: + - type: Transform + pos: -15.5,14.5 + parent: 2 + - uid: 4705 + components: + - type: Transform + pos: -15.5,15.5 + parent: 2 + - uid: 4706 + components: + - type: Transform + pos: -15.5,16.5 + parent: 2 + - uid: 4713 + components: + - type: Transform + pos: -24.5,14.5 + parent: 2 + - uid: 4769 + components: + - type: Transform + pos: -24.5,13.5 + parent: 2 + - uid: 4778 + components: + - type: Transform + pos: -94.5,-34.5 + parent: 2 + - uid: 4812 + components: + - type: Transform + pos: -37.5,13.5 + parent: 2 + - uid: 4821 + components: + - type: Transform + pos: -44.5,25.5 + parent: 2 + - uid: 4822 + components: + - type: Transform + pos: -44.5,24.5 + parent: 2 + - uid: 4838 + components: + - type: Transform + pos: -44.5,23.5 + parent: 2 + - uid: 4839 + components: + - type: Transform + pos: -44.5,22.5 + parent: 2 + - uid: 4860 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - uid: 4861 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - uid: 4862 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - uid: 4863 + components: + - type: Transform + pos: -32.5,5.5 + parent: 2 + - uid: 4864 + components: + - type: Transform + pos: -33.5,5.5 + parent: 2 + - uid: 4865 + components: + - type: Transform + pos: -34.5,5.5 + parent: 2 + - uid: 4866 + components: + - type: Transform + pos: -35.5,5.5 + parent: 2 + - uid: 4867 + components: + - type: Transform + pos: -36.5,5.5 + parent: 2 + - uid: 4868 + components: + - type: Transform + pos: -37.5,5.5 + parent: 2 + - uid: 4869 + components: + - type: Transform + pos: -38.5,5.5 + parent: 2 + - uid: 4870 + components: + - type: Transform + pos: -38.5,6.5 + parent: 2 + - uid: 4871 + components: + - type: Transform + pos: -38.5,7.5 + parent: 2 + - uid: 4872 + components: + - type: Transform + pos: -38.5,8.5 + parent: 2 + - uid: 4873 + components: + - type: Transform + pos: -38.5,9.5 + parent: 2 + - uid: 4874 + components: + - type: Transform + pos: -37.5,9.5 + parent: 2 + - uid: 4875 + components: + - type: Transform + pos: -36.5,9.5 + parent: 2 + - uid: 4877 + components: + - type: Transform + pos: -36.5,8.5 + parent: 2 + - uid: 4880 + components: + - type: Transform + pos: -39.5,9.5 + parent: 2 + - uid: 4881 + components: + - type: Transform + pos: -40.5,9.5 + parent: 2 + - uid: 4882 + components: + - type: Transform + pos: -41.5,9.5 + parent: 2 + - uid: 4883 + components: + - type: Transform + pos: -42.5,9.5 + parent: 2 + - uid: 4884 + components: + - type: Transform + pos: -42.5,10.5 + parent: 2 + - uid: 4885 + components: + - type: Transform + pos: -40.5,10.5 + parent: 2 + - uid: 4886 + components: + - type: Transform + pos: -40.5,11.5 + parent: 2 + - uid: 4887 + components: + - type: Transform + pos: -40.5,12.5 + parent: 2 + - uid: 4888 + components: + - type: Transform + pos: -40.5,13.5 + parent: 2 + - uid: 4889 + components: + - type: Transform + pos: -40.5,14.5 + parent: 2 + - uid: 4890 + components: + - type: Transform + pos: -40.5,15.5 + parent: 2 + - uid: 4891 + components: + - type: Transform + pos: -40.5,16.5 + parent: 2 + - uid: 4892 + components: + - type: Transform + pos: -40.5,17.5 + parent: 2 + - uid: 4893 + components: + - type: Transform + pos: -40.5,18.5 + parent: 2 + - uid: 4894 + components: + - type: Transform + pos: -40.5,19.5 + parent: 2 + - uid: 4902 + components: + - type: Transform + pos: -38.5,25.5 + parent: 2 + - uid: 4912 + components: + - type: Transform + pos: -37.5,12.5 + parent: 2 + - uid: 4913 + components: + - type: Transform + pos: -38.5,12.5 + parent: 2 + - uid: 4916 + components: + - type: Transform + pos: -29.5,16.5 + parent: 2 + - uid: 5005 + components: + - type: Transform + pos: -40.5,-11.5 + parent: 2 + - uid: 5006 + components: + - type: Transform + pos: -41.5,-11.5 + parent: 2 + - uid: 5007 + components: + - type: Transform + pos: -42.5,-11.5 + parent: 2 + - uid: 5008 + components: + - type: Transform + pos: -43.5,-11.5 + parent: 2 + - uid: 5009 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 2 + - uid: 5010 + components: + - type: Transform + pos: -45.5,-11.5 + parent: 2 + - uid: 5011 + components: + - type: Transform + pos: -46.5,-11.5 + parent: 2 + - uid: 5012 + components: + - type: Transform + pos: -47.5,-11.5 + parent: 2 + - uid: 5013 + components: + - type: Transform + pos: -48.5,-11.5 + parent: 2 + - uid: 5014 + components: + - type: Transform + pos: -49.5,-11.5 + parent: 2 + - uid: 5015 + components: + - type: Transform + pos: -50.5,-11.5 + parent: 2 + - uid: 5016 + components: + - type: Transform + pos: -50.5,-12.5 + parent: 2 + - uid: 5017 + components: + - type: Transform + pos: -50.5,-13.5 + parent: 2 + - uid: 5018 + components: + - type: Transform + pos: -50.5,-14.5 + parent: 2 + - uid: 5019 + components: + - type: Transform + pos: -49.5,-14.5 + parent: 2 + - uid: 5027 + components: + - type: Transform + pos: -45.5,-14.5 + parent: 2 + - uid: 5028 + components: + - type: Transform + pos: -44.5,-14.5 + parent: 2 + - uid: 5030 + components: + - type: Transform + pos: -42.5,-18.5 + parent: 2 + - uid: 5031 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 5032 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - uid: 5033 + components: + - type: Transform + pos: -40.5,-19.5 + parent: 2 + - uid: 5034 + components: + - type: Transform + pos: -40.5,-20.5 + parent: 2 + - uid: 5035 + components: + - type: Transform + pos: -41.5,-20.5 + parent: 2 + - uid: 5036 + components: + - type: Transform + pos: -39.5,-11.5 + parent: 2 + - uid: 5037 + components: + - type: Transform + pos: -38.5,-11.5 + parent: 2 + - uid: 5038 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 2 + - uid: 5039 + components: + - type: Transform + pos: -36.5,-11.5 + parent: 2 + - uid: 5040 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 2 + - uid: 5041 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 2 + - uid: 5042 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 2 + - uid: 5043 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 2 + - uid: 5044 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 2 + - uid: 5045 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 2 + - uid: 5046 + components: + - type: Transform + pos: -30.5,-10.5 + parent: 2 + - uid: 5047 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 2 + - uid: 5048 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 5049 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 5050 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 5051 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - uid: 5052 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - uid: 5053 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 2 + - uid: 5054 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 + - uid: 5055 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 + - uid: 5056 + components: + - type: Transform + pos: -34.5,-4.5 + parent: 2 + - uid: 5057 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 + - uid: 5058 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 + - uid: 5059 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 2 + - uid: 5060 + components: + - type: Transform + pos: -30.5,-21.5 + parent: 2 + - uid: 5061 + components: + - type: Transform + pos: -30.5,-22.5 + parent: 2 + - uid: 5062 + components: + - type: Transform + pos: -31.5,-22.5 + parent: 2 + - uid: 5063 + components: + - type: Transform + pos: -32.5,-22.5 + parent: 2 + - uid: 5064 + components: + - type: Transform + pos: -32.5,-23.5 + parent: 2 + - uid: 5065 + components: + - type: Transform + pos: -32.5,-24.5 + parent: 2 + - uid: 5066 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 2 + - uid: 5067 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 2 + - uid: 5068 + components: + - type: Transform + pos: -35.5,-24.5 + parent: 2 + - uid: 5069 + components: + - type: Transform + pos: -36.5,-24.5 + parent: 2 + - uid: 5070 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 2 + - uid: 5071 + components: + - type: Transform + pos: -37.5,-23.5 + parent: 2 + - uid: 5072 + components: + - type: Transform + pos: -37.5,-22.5 + parent: 2 + - uid: 5073 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 2 + - uid: 5074 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 5075 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 + - uid: 5076 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 2 + - uid: 5077 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 2 + - uid: 5078 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 2 + - uid: 5079 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 2 + - uid: 5080 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 2 + - uid: 5081 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - uid: 5082 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 2 + - uid: 5083 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - uid: 5084 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 2 + - uid: 5085 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - uid: 5086 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 2 + - uid: 5087 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 2 + - uid: 5088 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - uid: 5089 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 2 + - uid: 5090 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 5091 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 + - uid: 5092 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 2 + - uid: 5093 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 2 + - uid: 5094 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 2 + - uid: 5095 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 2 + - uid: 5096 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 2 + - uid: 5097 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 2 + - uid: 5098 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 2 + - uid: 5099 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 2 + - uid: 5100 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 2 + - uid: 5101 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 2 + - uid: 5102 + components: + - type: Transform + pos: -19.5,-14.5 + parent: 2 + - uid: 5103 + components: + - type: Transform + pos: -18.5,-14.5 + parent: 2 + - uid: 5104 + components: + - type: Transform + pos: -17.5,-14.5 + parent: 2 + - uid: 5105 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 2 + - uid: 5106 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 5107 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 2 + - uid: 5108 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 5109 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 2 + - uid: 5110 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 2 + - uid: 5111 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 2 + - uid: 5112 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 5113 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 2 + - uid: 5114 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 2 + - uid: 5115 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 2 + - uid: 5116 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 + - uid: 5117 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 2 + - uid: 5118 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 2 + - uid: 5119 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 2 + - uid: 5120 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 2 + - uid: 5121 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - uid: 5255 + components: + - type: Transform + pos: -0.5,-32.5 + parent: 2 + - uid: 5256 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 2 + - uid: 5257 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 2 + - uid: 5258 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 2 + - uid: 5259 + components: + - type: Transform + pos: 0.5,-35.5 + parent: 2 + - uid: 5260 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 2 + - uid: 5261 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 2 + - uid: 5262 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 2 + - uid: 5263 + components: + - type: Transform + pos: -1.5,-37.5 + parent: 2 + - uid: 5264 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 2 + - uid: 5265 + components: + - type: Transform + pos: 1.5,-36.5 + parent: 2 + - uid: 5266 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 2 + - uid: 5267 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 2 + - uid: 5268 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 2 + - uid: 5269 + components: + - type: Transform + pos: 5.5,-36.5 + parent: 2 + - uid: 5270 + components: + - type: Transform + pos: 6.5,-36.5 + parent: 2 + - uid: 5271 + components: + - type: Transform + pos: 7.5,-36.5 + parent: 2 + - uid: 5272 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 2 + - uid: 5273 + components: + - type: Transform + pos: 8.5,-35.5 + parent: 2 + - uid: 5274 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 2 + - uid: 5275 + components: + - type: Transform + pos: 8.5,-33.5 + parent: 2 + - uid: 5276 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 2 + - uid: 5277 + components: + - type: Transform + pos: 8.5,-31.5 + parent: 2 + - uid: 5278 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 2 + - uid: 5279 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 2 + - uid: 5280 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 2 + - uid: 5281 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 2 + - uid: 5282 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 2 + - uid: 5283 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 2 + - uid: 5284 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 2 + - uid: 5285 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 2 + - uid: 5286 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 2 + - uid: 5287 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 2 + - uid: 5305 + components: + - type: Transform + pos: -14.5,-43.5 + parent: 2 + - uid: 5384 + components: + - type: Transform + pos: -14.5,-44.5 + parent: 2 + - uid: 5385 + components: + - type: Transform + pos: -14.5,-45.5 + parent: 2 + - uid: 5386 + components: + - type: Transform + pos: -14.5,-46.5 + parent: 2 + - uid: 5387 + components: + - type: Transform + pos: -14.5,-47.5 + parent: 2 + - uid: 5388 + components: + - type: Transform + pos: -14.5,-48.5 + parent: 2 + - uid: 5389 + components: + - type: Transform + pos: -14.5,-49.5 + parent: 2 + - uid: 5390 + components: + - type: Transform + pos: -14.5,-50.5 + parent: 2 + - uid: 5391 + components: + - type: Transform + pos: -14.5,-51.5 + parent: 2 + - uid: 5392 + components: + - type: Transform + pos: -14.5,-52.5 + parent: 2 + - uid: 5393 + components: + - type: Transform + pos: -14.5,-53.5 + parent: 2 + - uid: 5394 + components: + - type: Transform + pos: -14.5,-54.5 + parent: 2 + - uid: 5395 + components: + - type: Transform + pos: -14.5,-55.5 + parent: 2 + - uid: 5396 + components: + - type: Transform + pos: -14.5,-56.5 + parent: 2 + - uid: 5397 + components: + - type: Transform + pos: -14.5,-57.5 + parent: 2 + - uid: 5398 + components: + - type: Transform + pos: -14.5,-58.5 + parent: 2 + - uid: 5399 + components: + - type: Transform + pos: -14.5,-59.5 + parent: 2 + - uid: 5400 + components: + - type: Transform + pos: -14.5,-60.5 + parent: 2 + - uid: 5401 + components: + - type: Transform + pos: -13.5,-60.5 + parent: 2 + - uid: 5402 + components: + - type: Transform + pos: -12.5,-60.5 + parent: 2 + - uid: 5403 + components: + - type: Transform + pos: -27.5,-40.5 + parent: 2 + - uid: 5404 + components: + - type: Transform + pos: -26.5,-40.5 + parent: 2 + - uid: 5405 + components: + - type: Transform + pos: -26.5,-41.5 + parent: 2 + - uid: 5406 + components: + - type: Transform + pos: -26.5,-42.5 + parent: 2 + - uid: 5407 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 2 + - uid: 5408 + components: + - type: Transform + pos: -27.5,-43.5 + parent: 2 + - uid: 5409 + components: + - type: Transform + pos: -28.5,-43.5 + parent: 2 + - uid: 5410 + components: + - type: Transform + pos: -28.5,-44.5 + parent: 2 + - uid: 5411 + components: + - type: Transform + pos: -28.5,-45.5 + parent: 2 + - uid: 5412 + components: + - type: Transform + pos: -28.5,-46.5 + parent: 2 + - uid: 5413 + components: + - type: Transform + pos: -27.5,-46.5 + parent: 2 + - uid: 5414 + components: + - type: Transform + pos: -26.5,-46.5 + parent: 2 + - uid: 5415 + components: + - type: Transform + pos: -25.5,-46.5 + parent: 2 + - uid: 5416 + components: + - type: Transform + pos: -25.5,-47.5 + parent: 2 + - uid: 5417 + components: + - type: Transform + pos: -25.5,-48.5 + parent: 2 + - uid: 5418 + components: + - type: Transform + pos: -26.5,-48.5 + parent: 2 + - uid: 5419 + components: + - type: Transform + pos: -24.5,-46.5 + parent: 2 + - uid: 5420 + components: + - type: Transform + pos: -23.5,-46.5 + parent: 2 + - uid: 5421 + components: + - type: Transform + pos: -23.5,-47.5 + parent: 2 + - uid: 5422 + components: + - type: Transform + pos: -23.5,-48.5 + parent: 2 + - uid: 5423 + components: + - type: Transform + pos: -22.5,-48.5 + parent: 2 + - uid: 5424 + components: + - type: Transform + pos: -21.5,-48.5 + parent: 2 + - uid: 5425 + components: + - type: Transform + pos: -20.5,-48.5 + parent: 2 + - uid: 5426 + components: + - type: Transform + pos: -19.5,-48.5 + parent: 2 + - uid: 5427 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 2 + - uid: 5428 + components: + - type: Transform + pos: -17.5,-48.5 + parent: 2 + - uid: 5429 + components: + - type: Transform + pos: -16.5,-48.5 + parent: 2 + - uid: 5430 + components: + - type: Transform + pos: -15.5,-48.5 + parent: 2 + - uid: 5484 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 2 + - uid: 5538 + components: + - type: Transform + pos: -14.5,14.5 + parent: 2 + - uid: 5621 + components: + - type: Transform + pos: 2.5,35.5 + parent: 2 + - uid: 5663 + components: + - type: Transform + pos: 8.5,11.5 + parent: 2 + - uid: 5669 + components: + - type: Transform + pos: -30.5,16.5 + parent: 2 + - uid: 5706 + components: + - type: Transform + pos: -62.5,-9.5 + parent: 2 + - uid: 5708 + components: + - type: Transform + pos: -62.5,-8.5 + parent: 2 + - uid: 5836 + components: + - type: Transform + pos: -53.5,0.5 + parent: 2 + - uid: 5853 + components: + - type: Transform + pos: 2.5,34.5 + parent: 2 + - uid: 5891 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 5892 + components: + - type: Transform + pos: 8.5,12.5 + parent: 2 + - uid: 5958 + components: + - type: Transform + pos: -42.5,23.5 + parent: 2 + - uid: 5992 + components: + - type: Transform + pos: -44.5,29.5 + parent: 2 + - uid: 6005 + components: + - type: Transform + pos: -42.5,21.5 + parent: 2 + - uid: 6011 + components: + - type: Transform + pos: -42.5,22.5 + parent: 2 + - uid: 6018 + components: + - type: Transform + pos: -46.5,34.5 + parent: 2 + - uid: 6019 + components: + - type: Transform + pos: -44.5,27.5 + parent: 2 + - uid: 6077 + components: + - type: Transform + pos: -44.5,28.5 + parent: 2 + - uid: 6078 + components: + - type: Transform + pos: -45.5,34.5 + parent: 2 + - uid: 6097 + components: + - type: Transform + pos: -44.5,26.5 + parent: 2 + - uid: 6220 + components: + - type: Transform + pos: -69.5,33.5 + parent: 2 + - uid: 6222 + components: + - type: Transform + pos: -75.5,33.5 + parent: 2 + - uid: 6227 + components: + - type: Transform + pos: -76.5,32.5 + parent: 2 + - uid: 6243 + components: + - type: Transform + pos: -76.5,33.5 + parent: 2 + - uid: 6306 + components: + - type: Transform + pos: -76.5,34.5 + parent: 2 + - uid: 6309 + components: + - type: Transform + pos: -76.5,35.5 + parent: 2 + - uid: 6310 + components: + - type: Transform + pos: -76.5,36.5 + parent: 2 + - uid: 6311 + components: + - type: Transform + pos: -75.5,36.5 + parent: 2 + - uid: 6313 + components: + - type: Transform + pos: -74.5,36.5 + parent: 2 + - uid: 6323 + components: + - type: Transform + pos: -73.5,36.5 + parent: 2 + - uid: 6347 + components: + - type: Transform + pos: -72.5,36.5 + parent: 2 + - uid: 6358 + components: + - type: Transform + pos: -70.5,36.5 + parent: 2 + - uid: 6375 + components: + - type: Transform + pos: -69.5,36.5 + parent: 2 + - uid: 6381 + components: + - type: Transform + pos: -68.5,36.5 + parent: 2 + - uid: 6386 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 + - uid: 6387 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 + - uid: 6388 + components: + - type: Transform + pos: -24.5,12.5 + parent: 2 + - uid: 6395 + components: + - type: Transform + pos: -68.5,34.5 + parent: 2 + - uid: 6397 + components: + - type: Transform + pos: -44.5,21.5 + parent: 2 + - uid: 6399 + components: + - type: Transform + pos: -43.5,21.5 + parent: 2 + - uid: 6406 + components: + - type: Transform + pos: -68.5,33.5 + parent: 2 + - uid: 6410 + components: + - type: Transform + pos: -68.5,32.5 + parent: 2 + - uid: 6506 + components: + - type: Transform + pos: -25.5,14.5 + parent: 2 + - uid: 6507 + components: + - type: Transform + pos: -26.5,14.5 + parent: 2 + - uid: 6512 + components: + - type: Transform + pos: -68.5,35.5 + parent: 2 + - uid: 6599 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 2 + - uid: 6604 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 2 + - uid: 6623 + components: + - type: Transform + pos: -53.5,3.5 + parent: 2 + - uid: 6671 + components: + - type: Transform + pos: -51.5,-13.5 + parent: 2 + - uid: 6907 + components: + - type: Transform + pos: -46.5,-14.5 + parent: 2 + - uid: 6938 + components: + - type: Transform + pos: -48.5,-5.5 + parent: 2 + - uid: 6995 + components: + - type: Transform + pos: -40.5,20.5 + parent: 2 + - uid: 7039 + components: + - type: Transform + pos: -53.5,4.5 + parent: 2 + - uid: 7281 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 2 + - uid: 7282 + components: + - type: Transform + pos: -3.5,-33.5 + parent: 2 + - uid: 7283 + components: + - type: Transform + pos: -4.5,-33.5 + parent: 2 + - uid: 7284 + components: + - type: Transform + pos: -5.5,-33.5 + parent: 2 + - uid: 7285 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 2 + - uid: 7286 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 2 + - uid: 7403 + components: + - type: Transform + pos: -53.5,-13.5 + parent: 2 + - uid: 7404 + components: + - type: Transform + pos: -53.5,-14.5 + parent: 2 + - uid: 7405 + components: + - type: Transform + pos: -53.5,-15.5 + parent: 2 + - uid: 7406 + components: + - type: Transform + pos: -53.5,-16.5 + parent: 2 + - uid: 7407 + components: + - type: Transform + pos: -53.5,-17.5 + parent: 2 + - uid: 7408 + components: + - type: Transform + pos: -52.5,-17.5 + parent: 2 + - uid: 7409 + components: + - type: Transform + pos: -52.5,-18.5 + parent: 2 + - uid: 7410 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 7412 + components: + - type: Transform + pos: -51.5,-18.5 + parent: 2 + - uid: 7414 + components: + - type: Transform + pos: -46.5,-43.5 + parent: 2 + - uid: 7509 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 + - uid: 7510 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 7511 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 2 + - uid: 7512 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 2 + - uid: 7513 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 2 + - uid: 7514 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 2 + - uid: 7515 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 + - uid: 7516 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 2 + - uid: 7517 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - uid: 7518 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 7520 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 7521 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 7522 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 7523 + components: + - type: Transform + pos: 1.5,22.5 + parent: 2 + - uid: 7524 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - uid: 7525 + components: + - type: Transform + pos: -0.5,22.5 + parent: 2 + - uid: 7526 + components: + - type: Transform + pos: -0.5,21.5 + parent: 2 + - uid: 7527 + components: + - type: Transform + pos: -0.5,20.5 + parent: 2 + - uid: 7528 + components: + - type: Transform + pos: -0.5,19.5 + parent: 2 + - uid: 7529 + components: + - type: Transform + pos: -1.5,19.5 + parent: 2 + - uid: 7530 + components: + - type: Transform + pos: -1.5,20.5 + parent: 2 + - uid: 7636 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 7637 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - uid: 7638 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 7639 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 7640 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 + - uid: 7641 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 7642 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 7643 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - uid: 7645 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 7646 + components: + - type: Transform + pos: 18.5,1.5 + parent: 2 + - uid: 7647 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 7648 + components: + - type: Transform + pos: 17.5,3.5 + parent: 2 + - uid: 7649 + components: + - type: Transform + pos: 18.5,2.5 + parent: 2 + - uid: 7650 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - uid: 7652 + components: + - type: Transform + pos: 16.5,3.5 + parent: 2 + - uid: 7653 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 2 + - uid: 7654 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 2 + - uid: 7655 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 + - uid: 7656 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 2 + - uid: 7657 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 2 + - uid: 7658 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - uid: 7659 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 + - uid: 7660 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 2 + - uid: 7661 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 + - uid: 7662 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 7663 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - uid: 7664 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 + - uid: 7665 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - uid: 7666 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 7667 + components: + - type: Transform + pos: 28.5,1.5 + parent: 2 + - uid: 7748 + components: + - type: Transform + pos: -25.5,7.5 + parent: 2 + - uid: 7749 + components: + - type: Transform + pos: -24.5,7.5 + parent: 2 + - uid: 7750 + components: + - type: Transform + pos: -23.5,7.5 + parent: 2 + - uid: 7751 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - uid: 7752 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 7753 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 7754 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 + - uid: 7755 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 + - uid: 7756 + components: + - type: Transform + pos: -22.5,12.5 + parent: 2 + - uid: 7835 + components: + - type: Transform + pos: -73.5,-5.5 + parent: 2 + - uid: 7836 + components: + - type: Transform + pos: -73.5,-4.5 + parent: 2 + - uid: 7837 + components: + - type: Transform + pos: -73.5,-3.5 + parent: 2 + - uid: 7839 + components: + - type: Transform + pos: -72.5,-2.5 + parent: 2 + - uid: 7840 + components: + - type: Transform + pos: -72.5,-1.5 + parent: 2 + - uid: 7841 + components: + - type: Transform + pos: -72.5,-0.5 + parent: 2 + - uid: 7842 + components: + - type: Transform + pos: -72.5,0.5 + parent: 2 + - uid: 7843 + components: + - type: Transform + pos: -72.5,1.5 + parent: 2 + - uid: 7845 + components: + - type: Transform + pos: -71.5,-5.5 + parent: 2 + - uid: 7846 + components: + - type: Transform + pos: -70.5,-5.5 + parent: 2 + - uid: 7847 + components: + - type: Transform + pos: -69.5,-5.5 + parent: 2 + - uid: 7848 + components: + - type: Transform + pos: -68.5,-5.5 + parent: 2 + - uid: 7849 + components: + - type: Transform + pos: -67.5,-5.5 + parent: 2 + - uid: 7850 + components: + - type: Transform + pos: -66.5,-5.5 + parent: 2 + - uid: 7851 + components: + - type: Transform + pos: -65.5,-10.5 + parent: 2 + - uid: 7852 + components: + - type: Transform + pos: -66.5,-6.5 + parent: 2 + - uid: 7853 + components: + - type: Transform + pos: -66.5,-7.5 + parent: 2 + - uid: 7854 + components: + - type: Transform + pos: -66.5,-8.5 + parent: 2 + - uid: 7855 + components: + - type: Transform + pos: -66.5,-9.5 + parent: 2 + - uid: 7856 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - uid: 7857 + components: + - type: Transform + pos: -64.5,-10.5 + parent: 2 + - uid: 7858 + components: + - type: Transform + pos: -63.5,-10.5 + parent: 2 + - uid: 7859 + components: + - type: Transform + pos: -62.5,-10.5 + parent: 2 + - uid: 7860 + components: + - type: Transform + pos: -61.5,-10.5 + parent: 2 + - uid: 7861 + components: + - type: Transform + pos: -60.5,-10.5 + parent: 2 + - uid: 7862 + components: + - type: Transform + pos: -59.5,-10.5 + parent: 2 + - uid: 7863 + components: + - type: Transform + pos: -58.5,-10.5 + parent: 2 + - uid: 7864 + components: + - type: Transform + pos: -57.5,-10.5 + parent: 2 + - uid: 7865 + components: + - type: Transform + pos: -56.5,-10.5 + parent: 2 + - uid: 7866 + components: + - type: Transform + pos: -56.5,-9.5 + parent: 2 + - uid: 7867 + components: + - type: Transform + pos: -55.5,-9.5 + parent: 2 + - uid: 7868 + components: + - type: Transform + pos: -54.5,-9.5 + parent: 2 + - uid: 7869 + components: + - type: Transform + pos: -53.5,-9.5 + parent: 2 + - uid: 7870 + components: + - type: Transform + pos: -52.5,-9.5 + parent: 2 + - uid: 7871 + components: + - type: Transform + pos: -51.5,-9.5 + parent: 2 + - uid: 7872 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 7873 + components: + - type: Transform + pos: -50.5,-10.5 + parent: 2 + - uid: 8169 + components: + - type: Transform + pos: -71.5,31.5 + parent: 2 + - uid: 8264 + components: + - type: Transform + pos: -61.5,-8.5 + parent: 2 + - uid: 8270 + components: + - type: Transform + pos: -46.5,-44.5 + parent: 2 + - uid: 8271 + components: + - type: Transform + pos: -46.5,-45.5 + parent: 2 + - uid: 8272 + components: + - type: Transform + pos: -46.5,-46.5 + parent: 2 + - uid: 8277 + components: + - type: Transform + pos: -46.5,-42.5 + parent: 2 + - uid: 8278 + components: + - type: Transform + pos: -46.5,-41.5 + parent: 2 + - uid: 8294 + components: + - type: Transform + pos: -49.5,-37.5 + parent: 2 + - uid: 8295 + components: + - type: Transform + pos: -49.5,-36.5 + parent: 2 + - uid: 8296 + components: + - type: Transform + pos: -49.5,-35.5 + parent: 2 + - uid: 8297 + components: + - type: Transform + pos: -49.5,-34.5 + parent: 2 + - uid: 8298 + components: + - type: Transform + pos: -49.5,-33.5 + parent: 2 + - uid: 8300 + components: + - type: Transform + pos: -50.5,-33.5 + parent: 2 + - uid: 8301 + components: + - type: Transform + pos: -51.5,-33.5 + parent: 2 + - uid: 8302 + components: + - type: Transform + pos: -52.5,-33.5 + parent: 2 + - uid: 8303 + components: + - type: Transform + pos: -53.5,-33.5 + parent: 2 + - uid: 8304 + components: + - type: Transform + pos: -54.5,-33.5 + parent: 2 + - uid: 8305 + components: + - type: Transform + pos: -55.5,-33.5 + parent: 2 + - uid: 8306 + components: + - type: Transform + pos: -56.5,-33.5 + parent: 2 + - uid: 8307 + components: + - type: Transform + pos: -57.5,-33.5 + parent: 2 + - uid: 8312 + components: + - type: Transform + pos: -57.5,-34.5 + parent: 2 + - uid: 8313 + components: + - type: Transform + pos: -57.5,-35.5 + parent: 2 + - uid: 8314 + components: + - type: Transform + pos: -57.5,-36.5 + parent: 2 + - uid: 8315 + components: + - type: Transform + pos: -58.5,-36.5 + parent: 2 + - uid: 8419 + components: + - type: Transform + pos: -43.5,-18.5 + parent: 2 + - uid: 8420 + components: + - type: Transform + pos: -43.5,-19.5 + parent: 2 + - uid: 8421 + components: + - type: Transform + pos: -43.5,-20.5 + parent: 2 + - uid: 8422 + components: + - type: Transform + pos: -43.5,-21.5 + parent: 2 + - uid: 8479 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 8480 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 8481 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 + - uid: 8482 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 2 + - uid: 8483 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - uid: 8484 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - uid: 8485 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 8486 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 8487 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 8488 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 8489 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 8490 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 8491 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 + - uid: 8492 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 8493 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 8494 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - uid: 8495 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 + - uid: 8496 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 8497 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 8498 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 8499 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - uid: 8500 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 2 + - uid: 8501 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 8502 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 8503 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 8504 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 8505 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 2 + - uid: 8506 + components: + - type: Transform + pos: -43.5,-22.5 + parent: 2 + - uid: 8507 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 8508 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 8509 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 8510 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - uid: 8511 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 2 + - uid: 8512 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 8513 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 2 + - uid: 8514 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 8515 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 + - uid: 8516 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 2 + - uid: 8517 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 2 + - uid: 8518 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 + - uid: 8519 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 2 + - uid: 8520 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 2 + - uid: 8531 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 + - uid: 8532 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 8533 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 8534 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 8535 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 8536 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 + - uid: 8537 + components: + - type: Transform + pos: 16.5,14.5 + parent: 2 + - uid: 8538 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - uid: 8539 + components: + - type: Transform + pos: 18.5,14.5 + parent: 2 + - uid: 8540 + components: + - type: Transform + pos: 18.5,15.5 + parent: 2 + - uid: 8541 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - uid: 8542 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 8549 + components: + - type: Transform + pos: -59.5,-8.5 + parent: 2 + - uid: 8550 + components: + - type: Transform + pos: -59.5,-7.5 + parent: 2 + - uid: 8551 + components: + - type: Transform + pos: -60.5,-8.5 + parent: 2 + - uid: 8552 + components: + - type: Transform + pos: -59.5,-6.5 + parent: 2 + - uid: 8553 + components: + - type: Transform + pos: -59.5,-5.5 + parent: 2 + - uid: 8554 + components: + - type: Transform + pos: -59.5,-4.5 + parent: 2 + - uid: 8555 + components: + - type: Transform + pos: -59.5,-3.5 + parent: 2 + - uid: 8556 + components: + - type: Transform + pos: -58.5,-3.5 + parent: 2 + - uid: 8557 + components: + - type: Transform + pos: -58.5,-2.5 + parent: 2 + - uid: 8559 + components: + - type: Transform + pos: -58.5,-1.5 + parent: 2 + - uid: 8560 + components: + - type: Transform + pos: -57.5,-1.5 + parent: 2 + - uid: 8561 + components: + - type: Transform + pos: -56.5,-1.5 + parent: 2 + - uid: 8562 + components: + - type: Transform + pos: -55.5,-1.5 + parent: 2 + - uid: 8563 + components: + - type: Transform + pos: -54.5,-1.5 + parent: 2 + - uid: 8564 + components: + - type: Transform + pos: -53.5,-1.5 + parent: 2 + - uid: 8565 + components: + - type: Transform + pos: -53.5,-2.5 + parent: 2 + - uid: 8649 + components: + - type: Transform + pos: -47.5,-43.5 + parent: 2 + - uid: 8650 + components: + - type: Transform + pos: -48.5,-43.5 + parent: 2 + - uid: 8651 + components: + - type: Transform + pos: -48.5,-44.5 + parent: 2 + - uid: 8652 + components: + - type: Transform + pos: -48.5,-45.5 + parent: 2 + - uid: 8653 + components: + - type: Transform + pos: -48.5,-46.5 + parent: 2 + - uid: 8654 + components: + - type: Transform + pos: -48.5,-47.5 + parent: 2 + - uid: 8655 + components: + - type: Transform + pos: -48.5,-48.5 + parent: 2 + - uid: 8656 + components: + - type: Transform + pos: -48.5,-49.5 + parent: 2 + - uid: 8657 + components: + - type: Transform + pos: -47.5,-49.5 + parent: 2 + - uid: 8658 + components: + - type: Transform + pos: -46.5,-49.5 + parent: 2 + - uid: 8659 + components: + - type: Transform + pos: -45.5,-49.5 + parent: 2 + - uid: 8660 + components: + - type: Transform + pos: -44.5,-49.5 + parent: 2 + - uid: 8661 + components: + - type: Transform + pos: -43.5,-49.5 + parent: 2 + - uid: 8662 + components: + - type: Transform + pos: -42.5,-49.5 + parent: 2 + - uid: 8663 + components: + - type: Transform + pos: -42.5,-48.5 + parent: 2 + - uid: 8664 + components: + - type: Transform + pos: -42.5,-47.5 + parent: 2 + - uid: 8665 + components: + - type: Transform + pos: -42.5,-46.5 + parent: 2 + - uid: 8666 + components: + - type: Transform + pos: -42.5,-45.5 + parent: 2 + - uid: 8667 + components: + - type: Transform + pos: -42.5,-44.5 + parent: 2 + - uid: 8668 + components: + - type: Transform + pos: -42.5,-43.5 + parent: 2 + - uid: 8669 + components: + - type: Transform + pos: -42.5,-42.5 + parent: 2 + - uid: 8670 + components: + - type: Transform + pos: -42.5,-41.5 + parent: 2 + - uid: 8671 + components: + - type: Transform + pos: -42.5,-40.5 + parent: 2 + - uid: 8672 + components: + - type: Transform + pos: -42.5,-39.5 + parent: 2 + - uid: 8673 + components: + - type: Transform + pos: -41.5,-39.5 + parent: 2 + - uid: 8674 + components: + - type: Transform + pos: -40.5,-39.5 + parent: 2 + - uid: 8675 + components: + - type: Transform + pos: -39.5,-39.5 + parent: 2 + - uid: 8737 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 8738 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 8739 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 8757 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 2 + - uid: 8758 + components: + - type: Transform + pos: -30.5,-24.5 + parent: 2 + - uid: 8759 + components: + - type: Transform + pos: -30.5,-25.5 + parent: 2 + - uid: 8760 + components: + - type: Transform + pos: -30.5,-26.5 + parent: 2 + - uid: 8761 + components: + - type: Transform + pos: -30.5,-27.5 + parent: 2 + - uid: 8762 + components: + - type: Transform + pos: -31.5,-27.5 + parent: 2 + - uid: 8763 + components: + - type: Transform + pos: -32.5,-27.5 + parent: 2 + - uid: 8764 + components: + - type: Transform + pos: -33.5,-27.5 + parent: 2 + - uid: 8765 + components: + - type: Transform + pos: -33.5,-26.5 + parent: 2 + - uid: 8813 + components: + - type: Transform + pos: -57.5,-15.5 + parent: 2 + - uid: 8851 + components: + - type: Transform + pos: -20.5,-22.5 + parent: 2 + - uid: 8852 + components: + - type: Transform + pos: -20.5,-23.5 + parent: 2 + - uid: 8853 + components: + - type: Transform + pos: -20.5,-24.5 + parent: 2 + - uid: 8854 + components: + - type: Transform + pos: -21.5,-24.5 + parent: 2 + - uid: 8855 + components: + - type: Transform + pos: -22.5,-24.5 + parent: 2 + - uid: 8856 + components: + - type: Transform + pos: -23.5,-24.5 + parent: 2 + - uid: 8857 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 2 + - uid: 8858 + components: + - type: Transform + pos: -25.5,-24.5 + parent: 2 + - uid: 8859 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 2 + - uid: 8860 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 2 + - uid: 8861 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 2 + - uid: 8862 + components: + - type: Transform + pos: -29.5,-24.5 + parent: 2 + - uid: 8972 + components: + - type: Transform + pos: -43.5,-23.5 + parent: 2 + - uid: 8973 + components: + - type: Transform + pos: -43.5,-24.5 + parent: 2 + - uid: 8974 + components: + - type: Transform + pos: -43.5,-25.5 + parent: 2 + - uid: 8975 + components: + - type: Transform + pos: -43.5,-26.5 + parent: 2 + - uid: 8976 + components: + - type: Transform + pos: -43.5,-27.5 + parent: 2 + - uid: 8977 + components: + - type: Transform + pos: -42.5,-27.5 + parent: 2 + - uid: 8978 + components: + - type: Transform + pos: -42.5,-28.5 + parent: 2 + - uid: 8981 + components: + - type: Transform + pos: -41.5,-28.5 + parent: 2 + - uid: 8999 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 + - uid: 9000 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 2 + - uid: 9001 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 2 + - uid: 9002 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 2 + - uid: 9003 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 9004 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - uid: 9005 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 9024 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 9025 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 9026 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 + - uid: 9027 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 + - uid: 9028 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - uid: 9507 + components: + - type: Transform + pos: -47.5,-8.5 + parent: 2 + - uid: 9590 + components: + - type: Transform + pos: -30.5,8.5 + parent: 2 + - uid: 9903 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - uid: 9904 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 2 + - uid: 9905 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - uid: 9906 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 9907 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 9908 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 + - uid: 10160 + components: + - type: Transform + pos: -65.5,-36.5 + parent: 2 + - uid: 10164 + components: + - type: Transform + pos: -41.5,-49.5 + parent: 2 + - uid: 10165 + components: + - type: Transform + pos: -40.5,-49.5 + parent: 2 + - uid: 10166 + components: + - type: Transform + pos: -39.5,-49.5 + parent: 2 + - uid: 10167 + components: + - type: Transform + pos: -38.5,-49.5 + parent: 2 + - uid: 10168 + components: + - type: Transform + pos: -37.5,-49.5 + parent: 2 + - uid: 10169 + components: + - type: Transform + pos: -36.5,-49.5 + parent: 2 + - uid: 10170 + components: + - type: Transform + pos: -35.5,-49.5 + parent: 2 + - uid: 10171 + components: + - type: Transform + pos: -34.5,-49.5 + parent: 2 + - uid: 10172 + components: + - type: Transform + pos: -33.5,-49.5 + parent: 2 + - uid: 10173 + components: + - type: Transform + pos: -32.5,-49.5 + parent: 2 + - uid: 10174 + components: + - type: Transform + pos: -32.5,-50.5 + parent: 2 + - uid: 10175 + components: + - type: Transform + pos: -32.5,-51.5 + parent: 2 + - uid: 10176 + components: + - type: Transform + pos: -32.5,-52.5 + parent: 2 + - uid: 10177 + components: + - type: Transform + pos: -33.5,-52.5 + parent: 2 + - uid: 10178 + components: + - type: Transform + pos: -34.5,-52.5 + parent: 2 + - uid: 10281 + components: + - type: Transform + pos: -81.5,-4.5 + parent: 2 + - uid: 10291 + components: + - type: Transform + pos: -81.5,-5.5 + parent: 2 + - uid: 10292 + components: + - type: Transform + pos: -82.5,-5.5 + parent: 2 + - uid: 10385 + components: + - type: Transform + pos: -77.5,-2.5 + parent: 2 + - uid: 10393 + components: + - type: Transform + pos: -81.5,-2.5 + parent: 2 + - uid: 10394 + components: + - type: Transform + pos: -81.5,-3.5 + parent: 2 + - uid: 10395 + components: + - type: Transform + pos: -79.5,-2.5 + parent: 2 + - uid: 10396 + components: + - type: Transform + pos: -80.5,-2.5 + parent: 2 + - uid: 10397 + components: + - type: Transform + pos: -78.5,-2.5 + parent: 2 + - uid: 10480 + components: + - type: Transform + pos: -75.5,-2.5 + parent: 2 + - uid: 10482 + components: + - type: Transform + pos: -74.5,-2.5 + parent: 2 + - uid: 10483 + components: + - type: Transform + pos: -76.5,-2.5 + parent: 2 + - uid: 10563 + components: + - type: Transform + pos: -74.5,-1.5 + parent: 2 + - uid: 10604 + components: + - type: Transform + pos: -70.5,-6.5 + parent: 2 + - uid: 10605 + components: + - type: Transform + pos: -70.5,-7.5 + parent: 2 + - uid: 10606 + components: + - type: Transform + pos: -70.5,-8.5 + parent: 2 + - uid: 10607 + components: + - type: Transform + pos: -71.5,-8.5 + parent: 2 + - uid: 10608 + components: + - type: Transform + pos: -72.5,-8.5 + parent: 2 + - uid: 10655 + components: + - type: Transform + pos: -46.5,-12.5 + parent: 2 + - uid: 10659 + components: + - type: Transform + pos: -46.5,-13.5 + parent: 2 + - uid: 11247 + components: + - type: Transform + pos: -65.5,-35.5 + parent: 2 + - uid: 11248 + components: + - type: Transform + pos: -65.5,-34.5 + parent: 2 + - uid: 11249 + components: + - type: Transform + pos: -65.5,-33.5 + parent: 2 + - uid: 11250 + components: + - type: Transform + pos: -65.5,-32.5 + parent: 2 + - uid: 11251 + components: + - type: Transform + pos: -65.5,-31.5 + parent: 2 + - uid: 11252 + components: + - type: Transform + pos: -64.5,-31.5 + parent: 2 + - uid: 11253 + components: + - type: Transform + pos: -64.5,-30.5 + parent: 2 + - uid: 11292 + components: + - type: Transform + pos: -27.5,14.5 + parent: 2 + - uid: 11462 + components: + - type: Transform + pos: -90.5,-34.5 + parent: 2 + - uid: 11463 + components: + - type: Transform + pos: -90.5,-35.5 + parent: 2 + - uid: 11464 + components: + - type: Transform + pos: -90.5,-36.5 + parent: 2 + - uid: 11465 + components: + - type: Transform + pos: -91.5,-36.5 + parent: 2 + - uid: 11466 + components: + - type: Transform + pos: -92.5,-36.5 + parent: 2 + - uid: 11467 + components: + - type: Transform + pos: -93.5,-36.5 + parent: 2 + - uid: 11468 + components: + - type: Transform + pos: -93.5,-35.5 + parent: 2 + - uid: 11862 + components: + - type: Transform + pos: -73.5,-1.5 + parent: 2 + - uid: 11927 + components: + - type: Transform + pos: -53.5,2.5 + parent: 2 + - uid: 12241 + components: + - type: Transform + pos: -57.5,-16.5 + parent: 2 + - uid: 12873 + components: + - type: Transform + pos: -54.5,-17.5 + parent: 2 + - uid: 12874 + components: + - type: Transform + pos: -55.5,-17.5 + parent: 2 + - uid: 12875 + components: + - type: Transform + pos: -56.5,-17.5 + parent: 2 + - uid: 12876 + components: + - type: Transform + pos: -57.5,-17.5 + parent: 2 + - uid: 12877 + components: + - type: Transform + pos: -58.5,-17.5 + parent: 2 + - uid: 12878 + components: + - type: Transform + pos: -58.5,-18.5 + parent: 2 + - uid: 12879 + components: + - type: Transform + pos: -58.5,-19.5 + parent: 2 + - uid: 12880 + components: + - type: Transform + pos: -58.5,-20.5 + parent: 2 + - uid: 12881 + components: + - type: Transform + pos: -58.5,-21.5 + parent: 2 + - uid: 12882 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 2 + - uid: 12883 + components: + - type: Transform + pos: -60.5,-21.5 + parent: 2 + - uid: 12884 + components: + - type: Transform + pos: -61.5,-21.5 + parent: 2 + - uid: 12885 + components: + - type: Transform + pos: -61.5,-20.5 + parent: 2 + - uid: 12886 + components: + - type: Transform + pos: -61.5,-19.5 + parent: 2 + - uid: 13560 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 13561 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 13562 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 13563 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 13564 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 13565 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 13566 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 13567 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 13568 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 + - uid: 13569 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 13570 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 13571 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 13572 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 13573 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 13574 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - uid: 13625 + components: + - type: Transform + pos: -44.5,31.5 + parent: 2 + - uid: 13636 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 + - uid: 13637 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 + - uid: 13638 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 13639 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 2 + - uid: 13640 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - uid: 14195 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 14353 + components: + - type: Transform + pos: -53.5,1.5 + parent: 2 + - uid: 14432 + components: + - type: Transform + pos: -53.5,5.5 + parent: 2 + - uid: 14433 + components: + - type: Transform + pos: -53.5,6.5 + parent: 2 + - uid: 14434 + components: + - type: Transform + pos: -53.5,7.5 + parent: 2 + - uid: 14600 + components: + - type: Transform + pos: -37.5,15.5 + parent: 2 + - uid: 14601 + components: + - type: Transform + pos: -37.5,14.5 + parent: 2 + - uid: 14914 + components: + - type: Transform + pos: -71.5,30.5 + parent: 2 + - uid: 14982 + components: + - type: Transform + pos: -71.5,29.5 + parent: 2 + - uid: 15016 + components: + - type: Transform + pos: -72.5,38.5 + parent: 2 + - uid: 15017 + components: + - type: Transform + pos: -72.5,37.5 + parent: 2 + - uid: 15021 + components: + - type: Transform + pos: -72.5,33.5 + parent: 2 + - uid: 15022 + components: + - type: Transform + pos: -72.5,32.5 + parent: 2 + - uid: 15023 + components: + - type: Transform + pos: -72.5,31.5 + parent: 2 + - uid: 15073 + components: + - type: Transform + pos: -71.5,36.5 + parent: 2 + - uid: 15074 + components: + - type: Transform + pos: -71.5,35.5 + parent: 2 + - uid: 15075 + components: + - type: Transform + pos: -71.5,34.5 + parent: 2 + - uid: 15085 + components: + - type: Transform + pos: -70.5,29.5 + parent: 2 + - uid: 15086 + components: + - type: Transform + pos: -69.5,29.5 + parent: 2 + - uid: 15087 + components: + - type: Transform + pos: -68.5,29.5 + parent: 2 + - uid: 15088 + components: + - type: Transform + pos: -67.5,29.5 + parent: 2 + - uid: 15089 + components: + - type: Transform + pos: -67.5,28.5 + parent: 2 + - uid: 15106 + components: + - type: Transform + pos: -74.5,33.5 + parent: 2 + - uid: 15107 + components: + - type: Transform + pos: -73.5,33.5 + parent: 2 + - uid: 15108 + components: + - type: Transform + pos: -70.5,33.5 + parent: 2 + - uid: 15109 + components: + - type: Transform + pos: -71.5,33.5 + parent: 2 + - uid: 15653 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 + - uid: 15711 + components: + - type: Transform + pos: 4.5,31.5 + parent: 2 + - uid: 15712 + components: + - type: Transform + pos: 4.5,29.5 + parent: 2 + - uid: 15713 + components: + - type: Transform + pos: 4.5,30.5 + parent: 2 + - uid: 15729 + components: + - type: Transform + pos: 3.5,31.5 + parent: 2 + - uid: 15731 + components: + - type: Transform + pos: 3.5,35.5 + parent: 2 + - uid: 15732 + components: + - type: Transform + pos: 3.5,36.5 + parent: 2 + - uid: 15733 + components: + - type: Transform + pos: 4.5,36.5 + parent: 2 + - uid: 15738 + components: + - type: Transform + pos: 5.5,33.5 + parent: 2 + - uid: 15740 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - uid: 15741 + components: + - type: Transform + pos: 9.5,33.5 + parent: 2 + - uid: 15744 + components: + - type: Transform + pos: 3.5,32.5 + parent: 2 + - uid: 15747 + components: + - type: Transform + pos: 8.5,33.5 + parent: 2 + - uid: 15748 + components: + - type: Transform + pos: 8.5,32.5 + parent: 2 + - uid: 15750 + components: + - type: Transform + pos: 7.5,31.5 + parent: 2 + - uid: 15752 + components: + - type: Transform + pos: 6.5,31.5 + parent: 2 + - uid: 15756 + components: + - type: Transform + pos: 0.5,35.5 + parent: 2 + - uid: 15801 + components: + - type: Transform + pos: 5.5,35.5 + parent: 2 + - uid: 15802 + components: + - type: Transform + pos: 5.5,32.5 + parent: 2 + - uid: 15806 + components: + - type: Transform + pos: 5.5,34.5 + parent: 2 + - uid: 15816 + components: + - type: Transform + pos: 5.5,36.5 + parent: 2 + - uid: 15934 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 16043 + components: + - type: Transform + pos: -29.5,14.5 + parent: 2 + - uid: 16056 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 + - uid: 16057 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 16058 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - uid: 16348 + components: + - type: Transform + pos: 6.5,27.5 + parent: 2 + - uid: 16349 + components: + - type: Transform + pos: 7.5,27.5 + parent: 2 + - uid: 16350 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 + - uid: 16351 + components: + - type: Transform + pos: 9.5,27.5 + parent: 2 + - uid: 16352 + components: + - type: Transform + pos: 9.5,26.5 + parent: 2 + - uid: 16353 + components: + - type: Transform + pos: 10.5,26.5 + parent: 2 + - uid: 16354 + components: + - type: Transform + pos: 11.5,26.5 + parent: 2 + - uid: 16355 + components: + - type: Transform + pos: 12.5,26.5 + parent: 2 + - uid: 16356 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 + - uid: 16357 + components: + - type: Transform + pos: 14.5,26.5 + parent: 2 + - uid: 16358 + components: + - type: Transform + pos: 15.5,26.5 + parent: 2 + - uid: 16359 + components: + - type: Transform + pos: 15.5,27.5 + parent: 2 +- proto: CableMVStack + entities: + - uid: 8114 + components: + - type: Transform + pos: -22.840862,19.690744 + parent: 2 + - type: RCDAmmo + charges: 6 +- proto: CableTerminal + entities: + - uid: 1391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,6.5 + parent: 2 + - uid: 2122 + components: + - type: Transform + pos: -33.5,8.5 + parent: 2 + - uid: 2619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-9.5 + parent: 2 + - uid: 2620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-53.5 + parent: 2 + - uid: 4918 + components: + - type: Transform + pos: -34.5,8.5 + parent: 2 + - uid: 4919 + components: + - type: Transform + pos: -35.5,8.5 + parent: 2 + - uid: 9882 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 + - uid: 11190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,27.5 + parent: 2 + - uid: 11229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-37.5 + parent: 2 + - uid: 15084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,28.5 + parent: 2 +- proto: CannabisSeeds + entities: + - uid: 6593 + components: + - type: Transform + pos: -20.698257,-11.269745 + parent: 2 + - uid: 15649 + components: + - type: Transform + parent: 15640 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15930 + components: + - type: Transform + pos: 0.46021032,42.635647 + parent: 2 +- proto: CapacitorStockPart + entities: + - uid: 296 + components: + - type: Transform + pos: -11.032251,-46.48385 + parent: 2 + - uid: 7192 + components: + - type: Transform + pos: -10.394918,-46.56306 + parent: 2 + - uid: 14254 + components: + - type: Transform + pos: -56.50305,-8.358038 + parent: 2 + - uid: 14461 + components: + - type: Transform + pos: -54.5569,3.7708642 + parent: 2 + - uid: 14469 + components: + - type: Transform + pos: -54.49141,3.5420792 + parent: 2 +- proto: CaptainIDCard + entities: + - uid: 5577 + components: + - type: Transform + pos: -17.460424,12.56571 + parent: 2 +- proto: CarbonDioxideCanister + entities: + - uid: 5925 + components: + - type: Transform + pos: -12.5,-62.5 + parent: 2 + - uid: 5995 + components: + - type: Transform + pos: -40.5,28.5 + parent: 2 + - uid: 14652 + components: + - type: Transform + pos: -57.5,26.5 + parent: 2 +- proto: Carpet + entities: + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-30.5 + parent: 2 + - uid: 1815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-40.5 + parent: 2 + - uid: 1849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-40.5 + parent: 2 + - uid: 5679 + components: + - type: Transform + pos: -34.5,-29.5 + parent: 2 + - uid: 6458 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 2 + - uid: 8316 + components: + - type: Transform + pos: -58.5,-38.5 + parent: 2 + - uid: 8317 + components: + - type: Transform + pos: -58.5,-39.5 + parent: 2 + - uid: 8318 + components: + - type: Transform + pos: -59.5,-38.5 + parent: 2 + - uid: 8319 + components: + - type: Transform + pos: -59.5,-39.5 + parent: 2 + - uid: 8367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 2 + - uid: 8368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 2 + - uid: 8369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 2 + - uid: 8370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 2 + - uid: 8423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-30.5 + parent: 2 + - uid: 8424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-29.5 + parent: 2 + - uid: 8425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-29.5 + parent: 2 + - uid: 8643 + components: + - type: Transform + pos: -43.5,-45.5 + parent: 2 + - uid: 8644 + components: + - type: Transform + pos: -43.5,-46.5 + parent: 2 + - uid: 8645 + components: + - type: Transform + pos: -42.5,-45.5 + parent: 2 + - uid: 8646 + components: + - type: Transform + pos: -41.5,-46.5 + parent: 2 + - uid: 8647 + components: + - type: Transform + pos: -41.5,-45.5 + parent: 2 + - uid: 8648 + components: + - type: Transform + pos: -42.5,-46.5 + parent: 2 + - uid: 12484 + components: + - type: Transform + pos: -33.5,-29.5 + parent: 2 + - uid: 13066 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 2 +- proto: CarpetBlack + entities: + - uid: 8245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-29.5 + parent: 2 + - uid: 8426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-30.5 + parent: 2 + - uid: 8433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-29.5 + parent: 2 + - uid: 8434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-30.5 + parent: 2 +- proto: CarpetBlue + entities: + - uid: 5544 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 5545 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 5546 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 + - uid: 5547 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 + - uid: 5615 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 + - uid: 8819 + components: + - type: Transform + pos: -30.5,-31.5 + parent: 2 + - uid: 8823 + components: + - type: Transform + pos: -30.5,-30.5 + parent: 2 + - uid: 11896 + components: + - type: Transform + pos: -17.5,12.5 + parent: 2 + - uid: 12251 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 2 + - uid: 13122 + components: + - type: Transform + pos: -29.5,-31.5 + parent: 2 +- proto: CarpetChapel + entities: + - uid: 2427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-43.5 + parent: 2 + - uid: 2540 + components: + - type: Transform + pos: -41.5,-41.5 + parent: 2 + - uid: 2547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-40.5 + parent: 2 + - uid: 6717 + components: + - type: Transform + pos: -44.5,-39.5 + parent: 2 + - uid: 8383 + components: + - type: Transform + pos: -41.5,-43.5 + parent: 2 + - uid: 8582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-39.5 + parent: 2 + - uid: 8583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-40.5 + parent: 2 + - uid: 8586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-42.5 + parent: 2 + - uid: 8587 + components: + - type: Transform + pos: -44.5,-43.5 + parent: 2 + - uid: 8588 + components: + - type: Transform + pos: -44.5,-41.5 + parent: 2 + - uid: 8589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-40.5 + parent: 2 + - uid: 8591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-42.5 + parent: 2 + - uid: 8593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-40.5 + parent: 2 + - uid: 8594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-39.5 + parent: 2 + - uid: 8596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-38.5 + parent: 2 + - uid: 8597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-38.5 + parent: 2 + - uid: 8598 + components: + - type: Transform + pos: -41.5,-39.5 + parent: 2 + - uid: 8599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-42.5 + parent: 2 + - uid: 8600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-42.5 + parent: 2 + - uid: 8602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-41.5 + parent: 2 + - uid: 8603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-38.5 + parent: 2 + - uid: 8605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-41.5 + parent: 2 + - uid: 8607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-43.5 + parent: 2 + - uid: 8677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-38.5 + parent: 2 +- proto: CarpetGreen + entities: + - uid: 8371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 2 + - uid: 8372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 2 + - uid: 8373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 2 + - uid: 8374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 2 + - uid: 8427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-25.5 + parent: 2 + - uid: 8430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-24.5 + parent: 2 + - uid: 8431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-25.5 + parent: 2 + - uid: 8432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-24.5 + parent: 2 +- proto: CarpetPurple + entities: + - uid: 1851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-29.5 + parent: 2 + - uid: 5814 + components: + - type: Transform + pos: -27.5,-27.5 + parent: 2 + - uid: 5815 + components: + - type: Transform + pos: -27.5,-28.5 + parent: 2 + - uid: 6888 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 + - uid: 8435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-20.5 + parent: 2 + - uid: 8436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-21.5 + parent: 2 + - uid: 8437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-20.5 + parent: 2 + - uid: 8438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-21.5 + parent: 2 + - uid: 12254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-29.5 + parent: 2 + - uid: 12487 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 2 +- proto: CarpetSBlue + entities: + - uid: 7413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-25.5 + parent: 2 + - uid: 8217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-25.5 + parent: 2 + - uid: 8363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-4.5 + parent: 2 + - uid: 8364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 2 + - uid: 8365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 2 + - uid: 8366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 2 + - uid: 8428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-24.5 + parent: 2 + - uid: 8429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-24.5 + parent: 2 +- proto: CartridgeLightRifle + entities: + - uid: 1482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.187477,19.602528 + parent: 2 + - uid: 12242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.1219246,19.602528 + parent: 2 + - uid: 14759 + components: + - type: Transform + pos: 2.213698,19.510756 + parent: 2 +- proto: CarvedPumpkin + entities: + - uid: 16569 + components: + - type: Transform + pos: -8.679096,-10.906703 + parent: 2 + - uid: 16580 + components: + - type: Transform + pos: -42.53398,-45.282913 + parent: 2 +- proto: CarvedPumpkinLarge + entities: + - uid: 16571 + components: + - type: Transform + pos: -11.704405,-23.717247 + parent: 2 +- proto: CarvedPumpkinSmall + entities: + - uid: 16572 + components: + - type: Transform + pos: -26.78265,-27.534475 + parent: 2 +- proto: Catwalk + entities: + - uid: 1018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-43.5 + parent: 2 + - uid: 1289 + components: + - type: Transform + pos: -25.5,-40.5 + parent: 2 + - uid: 1392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-63.5 + parent: 2 + - uid: 2458 + components: + - type: Transform + pos: -8.5,-62.5 + parent: 2 + - uid: 3356 + components: + - type: Transform + pos: -6.5,-44.5 + parent: 2 + - uid: 3402 + components: + - type: Transform + pos: -48.5,37.5 + parent: 2 + - uid: 3406 + components: + - type: Transform + pos: -43.5,38.5 + parent: 2 + - uid: 3411 + components: + - type: Transform + pos: -44.5,38.5 + parent: 2 + - uid: 3412 + components: + - type: Transform + pos: -45.5,38.5 + parent: 2 + - uid: 3671 + components: + - type: Transform + pos: -45.5,37.5 + parent: 2 + - uid: 3807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-39.5 + parent: 2 + - uid: 4002 + components: + - type: Transform + pos: -48.5,-17.5 + parent: 2 + - uid: 4070 + components: + - type: Transform + pos: -40.5,35.5 + parent: 2 + - uid: 4072 + components: + - type: Transform + pos: -40.5,36.5 + parent: 2 + - uid: 4359 + components: + - type: Transform + pos: -49.5,-15.5 + parent: 2 + - uid: 4360 + components: + - type: Transform + pos: -46.5,-17.5 + parent: 2 + - uid: 4361 + components: + - type: Transform + pos: -47.5,-17.5 + parent: 2 + - uid: 4362 + components: + - type: Transform + pos: -45.5,-18.5 + parent: 2 + - uid: 4565 + components: + - type: Transform + pos: 10.5,23.5 + parent: 2 + - uid: 4779 + components: + - type: Transform + pos: -40.5,37.5 + parent: 2 + - uid: 4796 + components: + - type: Transform + pos: -40.5,38.5 + parent: 2 + - uid: 4797 + components: + - type: Transform + pos: -41.5,38.5 + parent: 2 + - uid: 4798 + components: + - type: Transform + pos: -42.5,38.5 + parent: 2 + - uid: 4900 + components: + - type: Transform + pos: -43.5,24.5 + parent: 2 + - uid: 4905 + components: + - type: Transform + pos: -43.5,27.5 + parent: 2 + - uid: 4906 + components: + - type: Transform + pos: -43.5,29.5 + parent: 2 + - uid: 4908 + components: + - type: Transform + pos: -48.5,42.5 + parent: 2 + - uid: 4909 + components: + - type: Transform + pos: -43.5,26.5 + parent: 2 + - uid: 4910 + components: + - type: Transform + pos: -46.5,38.5 + parent: 2 + - uid: 4911 + components: + - type: Transform + pos: -47.5,40.5 + parent: 2 + - uid: 4922 + components: + - type: Transform + pos: -43.5,30.5 + parent: 2 + - uid: 5665 + components: + - type: Transform + pos: -43.5,33.5 + parent: 2 + - uid: 5742 + components: + - type: Transform + pos: -23.5,-39.5 + parent: 2 + - uid: 5760 + components: + - type: Transform + pos: -40.5,9.5 + parent: 2 + - uid: 5944 + components: + - type: Transform + pos: -43.5,31.5 + parent: 2 + - uid: 5945 + components: + - type: Transform + pos: -47.5,38.5 + parent: 2 + - uid: 5946 + components: + - type: Transform + pos: -47.5,39.5 + parent: 2 + - uid: 5948 + components: + - type: Transform + pos: -43.5,25.5 + parent: 2 + - uid: 5949 + components: + - type: Transform + pos: -49.5,42.5 + parent: 2 + - uid: 5955 + components: + - type: Transform + pos: -43.5,28.5 + parent: 2 + - uid: 5956 + components: + - type: Transform + pos: -47.5,41.5 + parent: 2 + - uid: 5957 + components: + - type: Transform + pos: -47.5,37.5 + parent: 2 + - uid: 6016 + components: + - type: Transform + pos: -43.5,32.5 + parent: 2 + - uid: 6062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,12.5 + parent: 2 + - uid: 6099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,29.5 + parent: 2 + - uid: 6100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,28.5 + parent: 2 + - uid: 6102 + components: + - type: Transform + pos: -39.5,35.5 + parent: 2 + - uid: 6190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,31.5 + parent: 2 + - uid: 6228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,14.5 + parent: 2 + - uid: 6229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,14.5 + parent: 2 + - uid: 6230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,14.5 + parent: 2 + - uid: 6231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,13.5 + parent: 2 + - uid: 6232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,12.5 + parent: 2 + - uid: 6275 + components: + - type: Transform + pos: -50.5,-10.5 + parent: 2 + - uid: 6396 + components: + - type: Transform + pos: -47.5,42.5 + parent: 2 + - uid: 6401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,-34.5 + parent: 2 + - uid: 6402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,-34.5 + parent: 2 + - uid: 6403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,-34.5 + parent: 2 + - uid: 6404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,-34.5 + parent: 2 + - uid: 6405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,-34.5 + parent: 2 + - uid: 6407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,-34.5 + parent: 2 + - uid: 6408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,-34.5 + parent: 2 + - uid: 6409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-34.5 + parent: 2 + - uid: 6500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-38.5 + parent: 2 + - uid: 6524 + components: + - type: Transform + pos: -24.5,-40.5 + parent: 2 + - uid: 6550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-35.5 + parent: 2 + - uid: 6551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-36.5 + parent: 2 + - uid: 6553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-35.5 + parent: 2 + - uid: 6554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-36.5 + parent: 2 + - uid: 6555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-37.5 + parent: 2 + - uid: 6556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-36.5 + parent: 2 + - uid: 6557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-37.5 + parent: 2 + - uid: 6558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-36.5 + parent: 2 + - uid: 6559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-37.5 + parent: 2 + - uid: 6560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-36.5 + parent: 2 + - uid: 6561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-37.5 + parent: 2 + - uid: 6562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-36.5 + parent: 2 + - uid: 6564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-36.5 + parent: 2 + - uid: 6565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-37.5 + parent: 2 + - uid: 6566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-36.5 + parent: 2 + - uid: 6567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-37.5 + parent: 2 + - uid: 6568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-36.5 + parent: 2 + - uid: 6569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-37.5 + parent: 2 + - uid: 6570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-36.5 + parent: 2 + - uid: 6571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-37.5 + parent: 2 + - uid: 6572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-38.5 + parent: 2 + - uid: 6573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-38.5 + parent: 2 + - uid: 6661 + components: + - type: Transform + pos: -50.5,-12.5 + parent: 2 + - uid: 6689 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 2 + - uid: 6690 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 + - uid: 6778 + components: + - type: Transform + pos: -48.5,21.5 + parent: 2 + - uid: 6779 + components: + - type: Transform + pos: -47.5,21.5 + parent: 2 + - uid: 6858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,30.5 + parent: 2 + - uid: 6990 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - uid: 7097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-55.5 + parent: 2 + - uid: 7099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-56.5 + parent: 2 + - uid: 7100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-57.5 + parent: 2 + - uid: 7101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-55.5 + parent: 2 + - uid: 7102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-56.5 + parent: 2 + - uid: 7103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-57.5 + parent: 2 + - uid: 7119 + components: + - type: Transform + pos: -23.5,-37.5 + parent: 2 + - uid: 7144 + components: + - type: Transform + pos: -23.5,-38.5 + parent: 2 + - uid: 7191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-37.5 + parent: 2 + - uid: 7226 + components: + - type: Transform + pos: -5.5,-44.5 + parent: 2 + - uid: 7227 + components: + - type: Transform + pos: -5.5,-43.5 + parent: 2 + - uid: 7239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-40.5 + parent: 2 + - uid: 7240 + components: + - type: Transform + pos: -23.5,-40.5 + parent: 2 + - uid: 8242 + components: + - type: Transform + pos: -50.5,21.5 + parent: 2 + - uid: 8254 + components: + - type: Transform + pos: -49.5,21.5 + parent: 2 + - uid: 9097 + components: + - type: Transform + pos: -14.5,-37.5 + parent: 2 + - uid: 9098 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 2 + - uid: 9099 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 2 + - uid: 9100 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 2 + - uid: 9101 + components: + - type: Transform + pos: -10.5,-38.5 + parent: 2 + - uid: 9102 + components: + - type: Transform + pos: -9.5,-38.5 + parent: 2 + - uid: 9103 + components: + - type: Transform + pos: -8.5,-38.5 + parent: 2 + - uid: 9104 + components: + - type: Transform + pos: -8.5,-40.5 + parent: 2 + - uid: 9105 + components: + - type: Transform + pos: -8.5,-41.5 + parent: 2 + - uid: 9106 + components: + - type: Transform + pos: -8.5,-42.5 + parent: 2 + - uid: 9107 + components: + - type: Transform + pos: -8.5,-43.5 + parent: 2 + - uid: 9108 + components: + - type: Transform + pos: -8.5,-44.5 + parent: 2 + - uid: 9109 + components: + - type: Transform + pos: -8.5,-45.5 + parent: 2 + - uid: 9110 + components: + - type: Transform + pos: -8.5,-47.5 + parent: 2 + - uid: 9111 + components: + - type: Transform + pos: -8.5,-48.5 + parent: 2 + - uid: 9112 + components: + - type: Transform + pos: -9.5,-48.5 + parent: 2 + - uid: 9113 + components: + - type: Transform + pos: -10.5,-48.5 + parent: 2 + - uid: 9114 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 2 + - uid: 9115 + components: + - type: Transform + pos: -19.5,-48.5 + parent: 2 + - uid: 9116 + components: + - type: Transform + pos: -20.5,-48.5 + parent: 2 + - uid: 9117 + components: + - type: Transform + pos: -21.5,-48.5 + parent: 2 + - uid: 9118 + components: + - type: Transform + pos: -22.5,-48.5 + parent: 2 + - uid: 9119 + components: + - type: Transform + pos: -23.5,-48.5 + parent: 2 + - uid: 9120 + components: + - type: Transform + pos: -23.5,-47.5 + parent: 2 + - uid: 9121 + components: + - type: Transform + pos: -24.5,-46.5 + parent: 2 + - uid: 9122 + components: + - type: Transform + pos: -25.5,-46.5 + parent: 2 + - uid: 9123 + components: + - type: Transform + pos: -26.5,-46.5 + parent: 2 + - uid: 9124 + components: + - type: Transform + pos: -27.5,-46.5 + parent: 2 + - uid: 9125 + components: + - type: Transform + pos: -28.5,-46.5 + parent: 2 + - uid: 9126 + components: + - type: Transform + pos: -28.5,-44.5 + parent: 2 + - uid: 9127 + components: + - type: Transform + pos: -28.5,-43.5 + parent: 2 + - uid: 9128 + components: + - type: Transform + pos: -28.5,-42.5 + parent: 2 + - uid: 9129 + components: + - type: Transform + pos: -28.5,-41.5 + parent: 2 + - uid: 9130 + components: + - type: Transform + pos: -28.5,-40.5 + parent: 2 + - uid: 9131 + components: + - type: Transform + pos: -28.5,-39.5 + parent: 2 + - uid: 9132 + components: + - type: Transform + pos: -28.5,-38.5 + parent: 2 + - uid: 9133 + components: + - type: Transform + pos: -29.5,-38.5 + parent: 2 + - uid: 9134 + components: + - type: Transform + pos: -31.5,-38.5 + parent: 2 + - uid: 9135 + components: + - type: Transform + pos: -32.5,-38.5 + parent: 2 + - uid: 9136 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 + - uid: 9137 + components: + - type: Transform + pos: -28.5,-48.5 + parent: 2 + - uid: 9138 + components: + - type: Transform + pos: -28.5,-49.5 + parent: 2 + - uid: 9139 + components: + - type: Transform + pos: -30.5,-49.5 + parent: 2 + - uid: 9140 + components: + - type: Transform + pos: -31.5,-49.5 + parent: 2 + - uid: 9141 + components: + - type: Transform + pos: -32.5,-49.5 + parent: 2 + - uid: 9142 + components: + - type: Transform + pos: -33.5,-49.5 + parent: 2 + - uid: 9143 + components: + - type: Transform + pos: -34.5,-49.5 + parent: 2 + - uid: 9144 + components: + - type: Transform + pos: -35.5,-49.5 + parent: 2 + - uid: 9145 + components: + - type: Transform + pos: -38.5,-49.5 + parent: 2 + - uid: 9146 + components: + - type: Transform + pos: -39.5,-49.5 + parent: 2 + - uid: 9147 + components: + - type: Transform + pos: -40.5,-49.5 + parent: 2 + - uid: 9148 + components: + - type: Transform + pos: -41.5,-49.5 + parent: 2 + - uid: 9149 + components: + - type: Transform + pos: -42.5,-49.5 + parent: 2 + - uid: 9150 + components: + - type: Transform + pos: -43.5,-49.5 + parent: 2 + - uid: 9151 + components: + - type: Transform + pos: -44.5,-49.5 + parent: 2 + - uid: 9152 + components: + - type: Transform + pos: -46.5,-49.5 + parent: 2 + - uid: 9153 + components: + - type: Transform + pos: -47.5,-49.5 + parent: 2 + - uid: 9154 + components: + - type: Transform + pos: -48.5,-49.5 + parent: 2 + - uid: 9155 + components: + - type: Transform + pos: -48.5,-48.5 + parent: 2 + - uid: 9156 + components: + - type: Transform + pos: -48.5,-46.5 + parent: 2 + - uid: 9157 + components: + - type: Transform + pos: -48.5,-45.5 + parent: 2 + - uid: 9158 + components: + - type: Transform + pos: -48.5,-44.5 + parent: 2 + - uid: 9159 + components: + - type: Transform + pos: -48.5,-43.5 + parent: 2 + - uid: 9160 + components: + - type: Transform + pos: -46.5,-43.5 + parent: 2 + - uid: 9161 + components: + - type: Transform + pos: -46.5,-41.5 + parent: 2 + - uid: 9162 + components: + - type: Transform + pos: -46.5,-40.5 + parent: 2 + - uid: 9163 + components: + - type: Transform + pos: -46.5,-39.5 + parent: 2 + - uid: 9164 + components: + - type: Transform + pos: -46.5,-38.5 + parent: 2 + - uid: 9165 + components: + - type: Transform + pos: -46.5,-37.5 + parent: 2 + - uid: 9166 + components: + - type: Transform + pos: -48.5,-37.5 + parent: 2 + - uid: 9167 + components: + - type: Transform + pos: -49.5,-37.5 + parent: 2 + - uid: 9168 + components: + - type: Transform + pos: -58.5,-31.5 + parent: 2 + - uid: 9169 + components: + - type: Transform + pos: -58.5,-30.5 + parent: 2 + - uid: 9170 + components: + - type: Transform + pos: -58.5,-29.5 + parent: 2 + - uid: 9171 + components: + - type: Transform + pos: -58.5,-28.5 + parent: 2 + - uid: 9172 + components: + - type: Transform + pos: -58.5,-25.5 + parent: 2 + - uid: 9173 + components: + - type: Transform + pos: -58.5,-24.5 + parent: 2 + - uid: 9174 + components: + - type: Transform + pos: -58.5,-23.5 + parent: 2 + - uid: 9175 + components: + - type: Transform + pos: -58.5,-22.5 + parent: 2 + - uid: 9176 + components: + - type: Transform + pos: -58.5,-21.5 + parent: 2 + - uid: 9177 + components: + - type: Transform + pos: -58.5,-20.5 + parent: 2 + - uid: 9178 + components: + - type: Transform + pos: -58.5,-19.5 + parent: 2 + - uid: 9179 + components: + - type: Transform + pos: -58.5,-17.5 + parent: 2 + - uid: 9180 + components: + - type: Transform + pos: -56.5,-17.5 + parent: 2 + - uid: 9181 + components: + - type: Transform + pos: -55.5,-17.5 + parent: 2 + - uid: 9182 + components: + - type: Transform + pos: -54.5,-17.5 + parent: 2 + - uid: 9183 + components: + - type: Transform + pos: -53.5,-17.5 + parent: 2 + - uid: 9184 + components: + - type: Transform + pos: -52.5,-17.5 + parent: 2 + - uid: 9185 + components: + - type: Transform + pos: -53.5,-16.5 + parent: 2 + - uid: 9186 + components: + - type: Transform + pos: -53.5,-15.5 + parent: 2 + - uid: 9187 + components: + - type: Transform + pos: -53.5,-14.5 + parent: 2 + - uid: 9188 + components: + - type: Transform + pos: -53.5,-13.5 + parent: 2 + - uid: 9189 + components: + - type: Transform + pos: -50.5,-13.5 + parent: 2 + - uid: 9194 + components: + - type: Transform + pos: -50.5,-8.5 + parent: 2 + - uid: 9195 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 2 + - uid: 9196 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - uid: 9197 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - uid: 9198 + components: + - type: Transform + pos: -51.5,-9.5 + parent: 2 + - uid: 9199 + components: + - type: Transform + pos: -53.5,-9.5 + parent: 2 + - uid: 9200 + components: + - type: Transform + pos: -54.5,-9.5 + parent: 2 + - uid: 9201 + components: + - type: Transform + pos: -55.5,-9.5 + parent: 2 + - uid: 9202 + components: + - type: Transform + pos: -56.5,-9.5 + parent: 2 + - uid: 9203 + components: + - type: Transform + pos: -57.5,-10.5 + parent: 2 + - uid: 9204 + components: + - type: Transform + pos: -58.5,-10.5 + parent: 2 + - uid: 9205 + components: + - type: Transform + pos: -59.5,-10.5 + parent: 2 + - uid: 9207 + components: + - type: Transform + pos: -61.5,-10.5 + parent: 2 + - uid: 9208 + components: + - type: Transform + pos: -62.5,-10.5 + parent: 2 + - uid: 9209 + components: + - type: Transform + pos: -64.5,-10.5 + parent: 2 + - uid: 9210 + components: + - type: Transform + pos: -65.5,-10.5 + parent: 2 + - uid: 9211 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - uid: 9212 + components: + - type: Transform + pos: -66.5,-9.5 + parent: 2 + - uid: 9214 + components: + - type: Transform + pos: -66.5,-7.5 + parent: 2 + - uid: 9215 + components: + - type: Transform + pos: -66.5,-6.5 + parent: 2 + - uid: 9216 + components: + - type: Transform + pos: -67.5,-5.5 + parent: 2 + - uid: 9217 + components: + - type: Transform + pos: -68.5,-5.5 + parent: 2 + - uid: 9218 + components: + - type: Transform + pos: -69.5,-5.5 + parent: 2 + - uid: 9219 + components: + - type: Transform + pos: -70.5,-5.5 + parent: 2 + - uid: 9220 + components: + - type: Transform + pos: -71.5,-5.5 + parent: 2 + - uid: 9221 + components: + - type: Transform + pos: -73.5,-5.5 + parent: 2 + - uid: 9222 + components: + - type: Transform + pos: -49.5,-14.5 + parent: 2 + - uid: 9231 + components: + - type: Transform + pos: -42.5,-18.5 + parent: 2 + - uid: 9232 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - uid: 9233 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 2 + - uid: 9234 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 2 + - uid: 9235 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 2 + - uid: 9236 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 9237 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 2 + - uid: 9238 + components: + - type: Transform + pos: -37.5,-22.5 + parent: 2 + - uid: 9239 + components: + - type: Transform + pos: -37.5,-23.5 + parent: 2 + - uid: 9240 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 2 + - uid: 9241 + components: + - type: Transform + pos: -35.5,-24.5 + parent: 2 + - uid: 9242 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 2 + - uid: 9243 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 2 + - uid: 9244 + components: + - type: Transform + pos: -32.5,-24.5 + parent: 2 + - uid: 9245 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 2 + - uid: 9246 + components: + - type: Transform + pos: -30.5,-24.5 + parent: 2 + - uid: 9247 + components: + - type: Transform + pos: -29.5,-24.5 + parent: 2 + - uid: 9248 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 2 + - uid: 9249 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 2 + - uid: 9250 + components: + - type: Transform + pos: -33.5,-31.5 + parent: 2 + - uid: 9251 + components: + - type: Transform + pos: -34.5,-31.5 + parent: 2 + - uid: 9252 + components: + - type: Transform + pos: -35.5,-31.5 + parent: 2 + - uid: 9253 + components: + - type: Transform + pos: -36.5,-31.5 + parent: 2 + - uid: 9254 + components: + - type: Transform + pos: -36.5,-29.5 + parent: 2 + - uid: 9255 + components: + - type: Transform + pos: -36.5,-28.5 + parent: 2 + - uid: 9256 + components: + - type: Transform + pos: -36.5,-27.5 + parent: 2 + - uid: 9257 + components: + - type: Transform + pos: -37.5,-27.5 + parent: 2 + - uid: 9258 + components: + - type: Transform + pos: -38.5,-27.5 + parent: 2 + - uid: 9259 + components: + - type: Transform + pos: -39.5,-27.5 + parent: 2 + - uid: 9260 + components: + - type: Transform + pos: -42.5,-27.5 + parent: 2 + - uid: 9261 + components: + - type: Transform + pos: -43.5,-27.5 + parent: 2 + - uid: 9262 + components: + - type: Transform + pos: -43.5,-26.5 + parent: 2 + - uid: 9263 + components: + - type: Transform + pos: -43.5,-25.5 + parent: 2 + - uid: 9264 + components: + - type: Transform + pos: -43.5,-24.5 + parent: 2 + - uid: 9265 + components: + - type: Transform + pos: -43.5,-23.5 + parent: 2 + - uid: 9266 + components: + - type: Transform + pos: -43.5,-21.5 + parent: 2 + - uid: 9267 + components: + - type: Transform + pos: -43.5,-20.5 + parent: 2 + - uid: 9268 + components: + - type: Transform + pos: -43.5,-19.5 + parent: 2 + - uid: 9269 + components: + - type: Transform + pos: -43.5,-18.5 + parent: 2 + - uid: 9270 + components: + - type: Transform + pos: -50.5,3.5 + parent: 2 + - uid: 9271 + components: + - type: Transform + pos: -50.5,4.5 + parent: 2 + - uid: 9272 + components: + - type: Transform + pos: -50.5,5.5 + parent: 2 + - uid: 9273 + components: + - type: Transform + pos: -50.5,6.5 + parent: 2 + - uid: 9274 + components: + - type: Transform + pos: -50.5,7.5 + parent: 2 + - uid: 9275 + components: + - type: Transform + pos: -50.5,8.5 + parent: 2 + - uid: 9276 + components: + - type: Transform + pos: -50.5,11.5 + parent: 2 + - uid: 9277 + components: + - type: Transform + pos: -50.5,12.5 + parent: 2 + - uid: 9278 + components: + - type: Transform + pos: -50.5,14.5 + parent: 2 + - uid: 9279 + components: + - type: Transform + pos: -50.5,15.5 + parent: 2 + - uid: 9280 + components: + - type: Transform + pos: -50.5,16.5 + parent: 2 + - uid: 9281 + components: + - type: Transform + pos: -50.5,17.5 + parent: 2 + - uid: 9282 + components: + - type: Transform + pos: -49.5,17.5 + parent: 2 + - uid: 9283 + components: + - type: Transform + pos: -47.5,17.5 + parent: 2 + - uid: 9284 + components: + - type: Transform + pos: -46.5,17.5 + parent: 2 + - uid: 9285 + components: + - type: Transform + pos: -45.5,17.5 + parent: 2 + - uid: 9286 + components: + - type: Transform + pos: -44.5,17.5 + parent: 2 + - uid: 9287 + components: + - type: Transform + pos: -43.5,17.5 + parent: 2 + - uid: 9288 + components: + - type: Transform + pos: -37.5,17.5 + parent: 2 + - uid: 9289 + components: + - type: Transform + pos: -36.5,17.5 + parent: 2 + - uid: 9290 + components: + - type: Transform + pos: -35.5,17.5 + parent: 2 + - uid: 9291 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 + - uid: 9292 + components: + - type: Transform + pos: -33.5,17.5 + parent: 2 + - uid: 9293 + components: + - type: Transform + pos: -31.5,18.5 + parent: 2 + - uid: 9294 + components: + - type: Transform + pos: -31.5,18.5 + parent: 2 + - uid: 9295 + components: + - type: Transform + pos: -30.5,18.5 + parent: 2 + - uid: 9296 + components: + - type: Transform + pos: -29.5,18.5 + parent: 2 + - uid: 9298 + components: + - type: Transform + pos: -33.5,18.5 + parent: 2 + - uid: 9299 + components: + - type: Transform + pos: -19.5,12.5 + parent: 2 + - uid: 9300 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 9301 + components: + - type: Transform + pos: -21.5,12.5 + parent: 2 + - uid: 9302 + components: + - type: Transform + pos: -21.5,10.5 + parent: 2 + - uid: 9303 + components: + - type: Transform + pos: -21.5,9.5 + parent: 2 + - uid: 9304 + components: + - type: Transform + pos: -21.5,8.5 + parent: 2 + - uid: 9305 + components: + - type: Transform + pos: -21.5,7.5 + parent: 2 + - uid: 9306 + components: + - type: Transform + pos: -21.5,5.5 + parent: 2 + - uid: 9307 + components: + - type: Transform + pos: -21.5,4.5 + parent: 2 + - uid: 9308 + components: + - type: Transform + pos: -19.5,4.5 + parent: 2 + - uid: 9309 + components: + - type: Transform + pos: -18.5,4.5 + parent: 2 + - uid: 9310 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 + - uid: 9311 + components: + - type: Transform + pos: -15.5,3.5 + parent: 2 + - uid: 9312 + components: + - type: Transform + pos: -15.5,4.5 + parent: 2 + - uid: 9313 + components: + - type: Transform + pos: -15.5,2.5 + parent: 2 + - uid: 9314 + components: + - type: Transform + pos: -14.5,4.5 + parent: 2 + - uid: 9315 + components: + - type: Transform + pos: -14.5,6.5 + parent: 2 + - uid: 9316 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 + - uid: 9317 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 + - uid: 9318 + components: + - type: Transform + pos: -0.5,21.5 + parent: 2 + - uid: 9319 + components: + - type: Transform + pos: -0.5,22.5 + parent: 2 + - uid: 9320 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - uid: 9321 + components: + - type: Transform + pos: 1.5,22.5 + parent: 2 + - uid: 9322 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 9326 + components: + - type: Transform + pos: 12.5,22.5 + parent: 2 + - uid: 9327 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 9334 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 + - uid: 9335 + components: + - type: Transform + pos: 16.5,20.5 + parent: 2 + - uid: 9336 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 9337 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 9338 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 9340 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - uid: 9345 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 9346 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 9347 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 9348 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - uid: 9349 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 9350 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - uid: 9351 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 9352 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 9353 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 9354 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 + - uid: 9355 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 9356 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 + - uid: 9357 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 9358 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 9359 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - uid: 9360 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 9361 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 9362 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 9363 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 + - uid: 9364 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - uid: 9365 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 9366 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 9367 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 9368 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - uid: 9369 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 9370 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 2 + - uid: 9371 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 9372 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 9373 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 9374 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 2 + - uid: 9375 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 9376 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 9377 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 9378 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - uid: 9379 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 9380 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 2 + - uid: 9381 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 9382 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 + - uid: 9383 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 2 + - uid: 9384 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 2 + - uid: 9385 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 9386 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 2 + - uid: 9387 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 + - uid: 9388 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 2 + - uid: 9389 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 2 + - uid: 9390 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 2 + - uid: 9391 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 2 + - uid: 9392 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 9393 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 + - uid: 9394 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 9395 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 2 + - uid: 9397 + components: + - type: Transform + pos: -46.5,-45.5 + parent: 2 + - uid: 9655 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 2 + - uid: 9660 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 2 + - uid: 9662 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 2 + - uid: 9670 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 + - uid: 9672 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 2 + - uid: 9673 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - uid: 9705 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 9706 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 2 + - uid: 9707 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 2 + - uid: 9708 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 2 + - uid: 9709 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 2 + - uid: 9710 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 2 + - uid: 9711 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 2 + - uid: 9712 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 2 + - uid: 9713 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 2 + - uid: 9714 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 + - uid: 9718 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 2 + - uid: 9720 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 + - uid: 9721 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 + - uid: 9724 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 2 + - uid: 9728 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - uid: 9730 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 2 + - uid: 9731 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 + - uid: 9732 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 2 + - uid: 9734 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 2 + - uid: 9738 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 2 + - uid: 9739 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 9740 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 2 + - uid: 9741 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 + - uid: 9742 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 2 + - uid: 9744 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 2 + - uid: 9753 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 2 + - uid: 9754 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 2 + - uid: 9755 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 2 + - uid: 9756 + components: + - type: Transform + pos: 34.5,-12.5 + parent: 2 + - uid: 9757 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 2 + - uid: 9760 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 2 + - uid: 9761 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 2 + - uid: 9762 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 2 + - uid: 9763 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 2 + - uid: 9764 + components: + - type: Transform + pos: 26.5,-8.5 + parent: 2 + - uid: 9768 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - uid: 9769 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 2 + - uid: 9770 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 + - uid: 9771 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - uid: 9772 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 2 + - uid: 9783 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 2 + - uid: 9784 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 2 + - uid: 9785 + components: + - type: Transform + pos: 34.5,-14.5 + parent: 2 + - uid: 9786 + components: + - type: Transform + pos: 36.5,-14.5 + parent: 2 + - uid: 9790 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 2 + - uid: 9791 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 2 + - uid: 9792 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 2 + - uid: 9793 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 2 + - uid: 9794 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 2 + - uid: 9798 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 + - uid: 9799 + components: + - type: Transform + pos: 33.5,-14.5 + parent: 2 + - uid: 9800 + components: + - type: Transform + pos: 35.5,-14.5 + parent: 2 + - uid: 9801 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 2 + - uid: 9802 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 2 + - uid: 10065 + components: + - type: Transform + pos: -32.5,-55.5 + parent: 2 + - uid: 10066 + components: + - type: Transform + pos: -32.5,-56.5 + parent: 2 + - uid: 10067 + components: + - type: Transform + pos: -32.5,-57.5 + parent: 2 + - uid: 10068 + components: + - type: Transform + pos: -32.5,-58.5 + parent: 2 + - uid: 10069 + components: + - type: Transform + pos: -32.5,-59.5 + parent: 2 + - uid: 10070 + components: + - type: Transform + pos: -32.5,-60.5 + parent: 2 + - uid: 10071 + components: + - type: Transform + pos: -32.5,-61.5 + parent: 2 + - uid: 10072 + components: + - type: Transform + pos: -32.5,-62.5 + parent: 2 + - uid: 10073 + components: + - type: Transform + pos: -32.5,-63.5 + parent: 2 + - uid: 10074 + components: + - type: Transform + pos: -32.5,-64.5 + parent: 2 + - uid: 10075 + components: + - type: Transform + pos: -32.5,-65.5 + parent: 2 + - uid: 10076 + components: + - type: Transform + pos: -32.5,-66.5 + parent: 2 + - uid: 10077 + components: + - type: Transform + pos: -32.5,-67.5 + parent: 2 + - uid: 10078 + components: + - type: Transform + pos: -32.5,-68.5 + parent: 2 + - uid: 10079 + components: + - type: Transform + pos: -32.5,-69.5 + parent: 2 + - uid: 10080 + components: + - type: Transform + pos: -32.5,-70.5 + parent: 2 + - uid: 10081 + components: + - type: Transform + pos: -32.5,-71.5 + parent: 2 + - uid: 10082 + components: + - type: Transform + pos: -32.5,-72.5 + parent: 2 + - uid: 10083 + components: + - type: Transform + pos: -32.5,-73.5 + parent: 2 + - uid: 10084 + components: + - type: Transform + pos: -33.5,-71.5 + parent: 2 + - uid: 10085 + components: + - type: Transform + pos: -34.5,-71.5 + parent: 2 + - uid: 10086 + components: + - type: Transform + pos: -35.5,-71.5 + parent: 2 + - uid: 10087 + components: + - type: Transform + pos: -36.5,-71.5 + parent: 2 + - uid: 10088 + components: + - type: Transform + pos: -37.5,-71.5 + parent: 2 + - uid: 10089 + components: + - type: Transform + pos: -38.5,-71.5 + parent: 2 + - uid: 10090 + components: + - type: Transform + pos: -39.5,-71.5 + parent: 2 + - uid: 10091 + components: + - type: Transform + pos: -40.5,-71.5 + parent: 2 + - uid: 10092 + components: + - type: Transform + pos: -41.5,-71.5 + parent: 2 + - uid: 10093 + components: + - type: Transform + pos: -42.5,-71.5 + parent: 2 + - uid: 10094 + components: + - type: Transform + pos: -42.5,-67.5 + parent: 2 + - uid: 10095 + components: + - type: Transform + pos: -41.5,-67.5 + parent: 2 + - uid: 10096 + components: + - type: Transform + pos: -40.5,-67.5 + parent: 2 + - uid: 10097 + components: + - type: Transform + pos: -39.5,-67.5 + parent: 2 + - uid: 10098 + components: + - type: Transform + pos: -38.5,-67.5 + parent: 2 + - uid: 10099 + components: + - type: Transform + pos: -37.5,-67.5 + parent: 2 + - uid: 10100 + components: + - type: Transform + pos: -36.5,-67.5 + parent: 2 + - uid: 10101 + components: + - type: Transform + pos: -35.5,-67.5 + parent: 2 + - uid: 10102 + components: + - type: Transform + pos: -34.5,-67.5 + parent: 2 + - uid: 10103 + components: + - type: Transform + pos: -33.5,-67.5 + parent: 2 + - uid: 10104 + components: + - type: Transform + pos: -33.5,-63.5 + parent: 2 + - uid: 10105 + components: + - type: Transform + pos: -34.5,-63.5 + parent: 2 + - uid: 10106 + components: + - type: Transform + pos: -35.5,-63.5 + parent: 2 + - uid: 10107 + components: + - type: Transform + pos: -36.5,-63.5 + parent: 2 + - uid: 10108 + components: + - type: Transform + pos: -37.5,-63.5 + parent: 2 + - uid: 10109 + components: + - type: Transform + pos: -38.5,-63.5 + parent: 2 + - uid: 10110 + components: + - type: Transform + pos: -39.5,-63.5 + parent: 2 + - uid: 10111 + components: + - type: Transform + pos: -40.5,-63.5 + parent: 2 + - uid: 10112 + components: + - type: Transform + pos: -41.5,-63.5 + parent: 2 + - uid: 10113 + components: + - type: Transform + pos: -42.5,-63.5 + parent: 2 + - uid: 10114 + components: + - type: Transform + pos: -42.5,-59.5 + parent: 2 + - uid: 10115 + components: + - type: Transform + pos: -41.5,-59.5 + parent: 2 + - uid: 10116 + components: + - type: Transform + pos: -40.5,-59.5 + parent: 2 + - uid: 10117 + components: + - type: Transform + pos: -39.5,-59.5 + parent: 2 + - uid: 10118 + components: + - type: Transform + pos: -38.5,-59.5 + parent: 2 + - uid: 10119 + components: + - type: Transform + pos: -37.5,-59.5 + parent: 2 + - uid: 10120 + components: + - type: Transform + pos: -36.5,-59.5 + parent: 2 + - uid: 10121 + components: + - type: Transform + pos: -35.5,-59.5 + parent: 2 + - uid: 10122 + components: + - type: Transform + pos: -34.5,-59.5 + parent: 2 + - uid: 10123 + components: + - type: Transform + pos: -33.5,-59.5 + parent: 2 + - uid: 10256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-13.5 + parent: 2 + - uid: 10257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-13.5 + parent: 2 + - uid: 10258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-13.5 + parent: 2 + - uid: 10259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,-13.5 + parent: 2 + - uid: 10260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,-13.5 + parent: 2 + - uid: 10261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,-13.5 + parent: 2 + - uid: 10262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,-13.5 + parent: 2 + - uid: 10263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,-13.5 + parent: 2 + - uid: 10264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,-13.5 + parent: 2 + - uid: 10265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-13.5 + parent: 2 + - uid: 10266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,-13.5 + parent: 2 + - uid: 10267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,-13.5 + parent: 2 + - uid: 10268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,-13.5 + parent: 2 + - uid: 10269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,-13.5 + parent: 2 + - uid: 10270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,-13.5 + parent: 2 + - uid: 10271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,-13.5 + parent: 2 + - uid: 10272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,-13.5 + parent: 2 + - uid: 10273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,-13.5 + parent: 2 + - uid: 10282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,-14.5 + parent: 2 + - uid: 10283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,-15.5 + parent: 2 + - uid: 10284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,-16.5 + parent: 2 + - uid: 10285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,-17.5 + parent: 2 + - uid: 10286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,-18.5 + parent: 2 + - uid: 10287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,-19.5 + parent: 2 + - uid: 10288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,-20.5 + parent: 2 + - uid: 10289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,-21.5 + parent: 2 + - uid: 10295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,-21.5 + parent: 2 + - uid: 10296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,-20.5 + parent: 2 + - uid: 10297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,-19.5 + parent: 2 + - uid: 10298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,-18.5 + parent: 2 + - uid: 10299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,-17.5 + parent: 2 + - uid: 10300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,-16.5 + parent: 2 + - uid: 10301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,-15.5 + parent: 2 + - uid: 10302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,-14.5 + parent: 2 + - uid: 10314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,-14.5 + parent: 2 + - uid: 10315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,-15.5 + parent: 2 + - uid: 10316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,-16.5 + parent: 2 + - uid: 10317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,-17.5 + parent: 2 + - uid: 10318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,-18.5 + parent: 2 + - uid: 10319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,-19.5 + parent: 2 + - uid: 10320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,-20.5 + parent: 2 + - uid: 10321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,-21.5 + parent: 2 + - uid: 10322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,-21.5 + parent: 2 + - uid: 10323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,-20.5 + parent: 2 + - uid: 10324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,-19.5 + parent: 2 + - uid: 10325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,-18.5 + parent: 2 + - uid: 10326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,-17.5 + parent: 2 + - uid: 10327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,-16.5 + parent: 2 + - uid: 10328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,-15.5 + parent: 2 + - uid: 10329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,-14.5 + parent: 2 + - uid: 10768 + components: + - type: Transform + pos: -39.5,35.5 + parent: 2 + - uid: 10769 + components: + - type: Transform + pos: -38.5,35.5 + parent: 2 + - uid: 10770 + components: + - type: Transform + pos: -37.5,35.5 + parent: 2 + - uid: 10771 + components: + - type: Transform + pos: -36.5,35.5 + parent: 2 + - uid: 10772 + components: + - type: Transform + pos: -35.5,35.5 + parent: 2 + - uid: 10773 + components: + - type: Transform + pos: -34.5,35.5 + parent: 2 + - uid: 10774 + components: + - type: Transform + pos: -34.5,34.5 + parent: 2 + - uid: 10775 + components: + - type: Transform + pos: -34.5,33.5 + parent: 2 + - uid: 10776 + components: + - type: Transform + pos: -34.5,32.5 + parent: 2 + - uid: 10777 + components: + - type: Transform + pos: -34.5,31.5 + parent: 2 + - uid: 10792 + components: + - type: Transform + pos: -22.5,26.5 + parent: 2 + - uid: 10793 + components: + - type: Transform + pos: -22.5,27.5 + parent: 2 + - uid: 10794 + components: + - type: Transform + pos: -22.5,28.5 + parent: 2 + - uid: 10795 + components: + - type: Transform + pos: -22.5,29.5 + parent: 2 + - uid: 10796 + components: + - type: Transform + pos: -22.5,30.5 + parent: 2 + - uid: 10797 + components: + - type: Transform + pos: -22.5,31.5 + parent: 2 + - uid: 10798 + components: + - type: Transform + pos: -22.5,32.5 + parent: 2 + - uid: 10799 + components: + - type: Transform + pos: -22.5,33.5 + parent: 2 + - uid: 10800 + components: + - type: Transform + pos: -22.5,34.5 + parent: 2 + - uid: 10801 + components: + - type: Transform + pos: -22.5,35.5 + parent: 2 + - uid: 10802 + components: + - type: Transform + pos: -22.5,36.5 + parent: 2 + - uid: 10803 + components: + - type: Transform + pos: -22.5,37.5 + parent: 2 + - uid: 10804 + components: + - type: Transform + pos: -22.5,38.5 + parent: 2 + - uid: 10805 + components: + - type: Transform + pos: -22.5,39.5 + parent: 2 + - uid: 10806 + components: + - type: Transform + pos: -22.5,40.5 + parent: 2 + - uid: 10807 + components: + - type: Transform + pos: -22.5,41.5 + parent: 2 + - uid: 10808 + components: + - type: Transform + pos: -22.5,42.5 + parent: 2 + - uid: 10809 + components: + - type: Transform + pos: -22.5,43.5 + parent: 2 + - uid: 10810 + components: + - type: Transform + pos: -22.5,44.5 + parent: 2 + - uid: 10811 + components: + - type: Transform + pos: -22.5,45.5 + parent: 2 + - uid: 10812 + components: + - type: Transform + pos: -22.5,46.5 + parent: 2 + - uid: 10813 + components: + - type: Transform + pos: -22.5,47.5 + parent: 2 + - uid: 10814 + components: + - type: Transform + pos: -21.5,46.5 + parent: 2 + - uid: 10815 + components: + - type: Transform + pos: -20.5,46.5 + parent: 2 + - uid: 10816 + components: + - type: Transform + pos: -19.5,46.5 + parent: 2 + - uid: 10817 + components: + - type: Transform + pos: -18.5,46.5 + parent: 2 + - uid: 10818 + components: + - type: Transform + pos: -17.5,46.5 + parent: 2 + - uid: 10819 + components: + - type: Transform + pos: -16.5,46.5 + parent: 2 + - uid: 10820 + components: + - type: Transform + pos: -15.5,46.5 + parent: 2 + - uid: 10821 + components: + - type: Transform + pos: -14.5,46.5 + parent: 2 + - uid: 10822 + components: + - type: Transform + pos: -13.5,46.5 + parent: 2 + - uid: 10823 + components: + - type: Transform + pos: -13.5,42.5 + parent: 2 + - uid: 10824 + components: + - type: Transform + pos: -14.5,42.5 + parent: 2 + - uid: 10825 + components: + - type: Transform + pos: -15.5,42.5 + parent: 2 + - uid: 10826 + components: + - type: Transform + pos: -16.5,42.5 + parent: 2 + - uid: 10827 + components: + - type: Transform + pos: -17.5,42.5 + parent: 2 + - uid: 10828 + components: + - type: Transform + pos: -18.5,42.5 + parent: 2 + - uid: 10829 + components: + - type: Transform + pos: -19.5,42.5 + parent: 2 + - uid: 10830 + components: + - type: Transform + pos: -20.5,42.5 + parent: 2 + - uid: 10831 + components: + - type: Transform + pos: -21.5,42.5 + parent: 2 + - uid: 10832 + components: + - type: Transform + pos: -23.5,46.5 + parent: 2 + - uid: 10833 + components: + - type: Transform + pos: -24.5,46.5 + parent: 2 + - uid: 10834 + components: + - type: Transform + pos: -25.5,46.5 + parent: 2 + - uid: 10835 + components: + - type: Transform + pos: -26.5,46.5 + parent: 2 + - uid: 10836 + components: + - type: Transform + pos: -27.5,46.5 + parent: 2 + - uid: 10837 + components: + - type: Transform + pos: -28.5,46.5 + parent: 2 + - uid: 10838 + components: + - type: Transform + pos: -29.5,46.5 + parent: 2 + - uid: 10839 + components: + - type: Transform + pos: -30.5,46.5 + parent: 2 + - uid: 10840 + components: + - type: Transform + pos: -31.5,46.5 + parent: 2 + - uid: 10841 + components: + - type: Transform + pos: -29.5,42.5 + parent: 2 + - uid: 10842 + components: + - type: Transform + pos: -28.5,42.5 + parent: 2 + - uid: 10843 + components: + - type: Transform + pos: -27.5,42.5 + parent: 2 + - uid: 10844 + components: + - type: Transform + pos: -26.5,42.5 + parent: 2 + - uid: 10845 + components: + - type: Transform + pos: -25.5,42.5 + parent: 2 + - uid: 10846 + components: + - type: Transform + pos: -24.5,42.5 + parent: 2 + - uid: 10847 + components: + - type: Transform + pos: -23.5,42.5 + parent: 2 + - uid: 10848 + components: + - type: Transform + pos: -27.5,38.5 + parent: 2 + - uid: 10849 + components: + - type: Transform + pos: -26.5,38.5 + parent: 2 + - uid: 10850 + components: + - type: Transform + pos: -25.5,38.5 + parent: 2 + - uid: 10851 + components: + - type: Transform + pos: -24.5,38.5 + parent: 2 + - uid: 10852 + components: + - type: Transform + pos: -23.5,38.5 + parent: 2 + - uid: 10853 + components: + - type: Transform + pos: -21.5,38.5 + parent: 2 + - uid: 10854 + components: + - type: Transform + pos: -20.5,38.5 + parent: 2 + - uid: 10855 + components: + - type: Transform + pos: -19.5,38.5 + parent: 2 + - uid: 10856 + components: + - type: Transform + pos: -18.5,38.5 + parent: 2 + - uid: 10857 + components: + - type: Transform + pos: -17.5,38.5 + parent: 2 + - uid: 10858 + components: + - type: Transform + pos: -16.5,38.5 + parent: 2 + - uid: 10859 + components: + - type: Transform + pos: -15.5,38.5 + parent: 2 + - uid: 10860 + components: + - type: Transform + pos: -14.5,38.5 + parent: 2 + - uid: 10861 + components: + - type: Transform + pos: -13.5,38.5 + parent: 2 + - uid: 10862 + components: + - type: Transform + pos: -13.5,34.5 + parent: 2 + - uid: 10863 + components: + - type: Transform + pos: -14.5,34.5 + parent: 2 + - uid: 10864 + components: + - type: Transform + pos: -15.5,34.5 + parent: 2 + - uid: 10865 + components: + - type: Transform + pos: -16.5,34.5 + parent: 2 + - uid: 10866 + components: + - type: Transform + pos: -17.5,34.5 + parent: 2 + - uid: 10867 + components: + - type: Transform + pos: -18.5,34.5 + parent: 2 + - uid: 10868 + components: + - type: Transform + pos: -19.5,34.5 + parent: 2 + - uid: 10869 + components: + - type: Transform + pos: -20.5,34.5 + parent: 2 + - uid: 10870 + components: + - type: Transform + pos: -21.5,34.5 + parent: 2 + - uid: 10871 + components: + - type: Transform + pos: -21.5,30.5 + parent: 2 + - uid: 10872 + components: + - type: Transform + pos: -20.5,30.5 + parent: 2 + - uid: 10873 + components: + - type: Transform + pos: -19.5,30.5 + parent: 2 + - uid: 10874 + components: + - type: Transform + pos: -18.5,30.5 + parent: 2 + - uid: 10875 + components: + - type: Transform + pos: -17.5,30.5 + parent: 2 + - uid: 10876 + components: + - type: Transform + pos: -16.5,30.5 + parent: 2 + - uid: 10877 + components: + - type: Transform + pos: -15.5,30.5 + parent: 2 + - uid: 10878 + components: + - type: Transform + pos: -14.5,30.5 + parent: 2 + - uid: 10879 + components: + - type: Transform + pos: -13.5,30.5 + parent: 2 + - uid: 11318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,-32.5 + parent: 2 + - uid: 11450 + components: + - type: Transform + pos: -44.5,-18.5 + parent: 2 + - uid: 11456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,-34.5 + parent: 2 + - uid: 11469 + components: + - type: Transform + pos: -79.5,-36.5 + parent: 2 + - uid: 11511 + components: + - type: Transform + pos: -78.5,-36.5 + parent: 2 + - uid: 11512 + components: + - type: Transform + pos: -77.5,-36.5 + parent: 2 + - uid: 11513 + components: + - type: Transform + pos: -74.5,-32.5 + parent: 2 + - uid: 11514 + components: + - type: Transform + pos: -75.5,-32.5 + parent: 2 + - uid: 11515 + components: + - type: Transform + pos: -82.5,-32.5 + parent: 2 + - uid: 11516 + components: + - type: Transform + pos: -81.5,-32.5 + parent: 2 + - uid: 11518 + components: + - type: Transform + pos: -71.5,-36.5 + parent: 2 + - uid: 11519 + components: + - type: Transform + pos: -72.5,-36.5 + parent: 2 + - uid: 11535 + components: + - type: Transform + pos: -84.5,-33.5 + parent: 2 + - uid: 11536 + components: + - type: Transform + pos: -84.5,-32.5 + parent: 2 + - uid: 11537 + components: + - type: Transform + pos: -84.5,-35.5 + parent: 2 + - uid: 11538 + components: + - type: Transform + pos: -84.5,-36.5 + parent: 2 + - uid: 11876 + components: + - type: Transform + pos: -35.5,4.5 + parent: 2 + - uid: 12120 + components: + - type: Transform + pos: -73.5,-4.5 + parent: 2 + - uid: 12187 + components: + - type: Transform + pos: -16.5,-73.5 + parent: 2 + - uid: 12198 + components: + - type: Transform + pos: -15.5,-73.5 + parent: 2 + - uid: 12199 + components: + - type: Transform + pos: -14.5,-73.5 + parent: 2 + - uid: 12200 + components: + - type: Transform + pos: -13.5,-73.5 + parent: 2 + - uid: 12201 + components: + - type: Transform + pos: -12.5,-73.5 + parent: 2 + - uid: 12202 + components: + - type: Transform + pos: -11.5,-73.5 + parent: 2 + - uid: 12203 + components: + - type: Transform + pos: -10.5,-73.5 + parent: 2 + - uid: 12370 + components: + - type: Transform + pos: -49.5,-16.5 + parent: 2 + - uid: 12513 + components: + - type: Transform + pos: -50.5,42.5 + parent: 2 + - uid: 12514 + components: + - type: Transform + pos: -54.5,38.5 + parent: 2 + - uid: 12515 + components: + - type: Transform + pos: -54.5,41.5 + parent: 2 + - uid: 12517 + components: + - type: Transform + pos: -51.5,42.5 + parent: 2 + - uid: 12518 + components: + - type: Transform + pos: -53.5,37.5 + parent: 2 + - uid: 12519 + components: + - type: Transform + pos: -54.5,37.5 + parent: 2 + - uid: 12521 + components: + - type: Transform + pos: -52.5,42.5 + parent: 2 + - uid: 12522 + components: + - type: Transform + pos: -52.5,37.5 + parent: 2 + - uid: 12523 + components: + - type: Transform + pos: -51.5,37.5 + parent: 2 + - uid: 12525 + components: + - type: Transform + pos: -53.5,42.5 + parent: 2 + - uid: 12526 + components: + - type: Transform + pos: -54.5,40.5 + parent: 2 + - uid: 12527 + components: + - type: Transform + pos: -49.5,37.5 + parent: 2 + - uid: 12529 + components: + - type: Transform + pos: -54.5,42.5 + parent: 2 + - uid: 12530 + components: + - type: Transform + pos: -54.5,39.5 + parent: 2 + - uid: 12531 + components: + - type: Transform + pos: -50.5,37.5 + parent: 2 + - uid: 12849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,-34.5 + parent: 2 + - uid: 12850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,-34.5 + parent: 2 + - uid: 12852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,-34.5 + parent: 2 + - uid: 12853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,-34.5 + parent: 2 + - uid: 12854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-34.5 + parent: 2 + - uid: 12855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,-34.5 + parent: 2 + - uid: 12862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-61.5 + parent: 2 + - uid: 13046 + components: + - type: Transform + pos: -50.5,-11.5 + parent: 2 + - uid: 14219 + components: + - type: Transform + pos: -40.5,14.5 + parent: 2 + - uid: 14221 + components: + - type: Transform + pos: -57.5,-12.5 + parent: 2 + - uid: 14222 + components: + - type: Transform + pos: -57.5,-13.5 + parent: 2 + - uid: 14223 + components: + - type: Transform + pos: -56.5,-12.5 + parent: 2 + - uid: 14224 + components: + - type: Transform + pos: -56.5,-13.5 + parent: 2 + - uid: 14290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-5.5 + parent: 2 + - uid: 14411 + components: + - type: Transform + pos: -40.5,-21.5 + parent: 2 + - uid: 14483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-49.5 + parent: 2 + - uid: 14484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-41.5 + parent: 2 + - uid: 14534 + components: + - type: Transform + pos: -40.5,13.5 + parent: 2 + - uid: 14537 + components: + - type: Transform + pos: -46.5,21.5 + parent: 2 + - uid: 14546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,13.5 + parent: 2 + - uid: 14549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,13.5 + parent: 2 + - uid: 14550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,12.5 + parent: 2 + - uid: 14553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,7.5 + parent: 2 + - uid: 14554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,8.5 + parent: 2 + - uid: 14559 + components: + - type: Transform + pos: -37.5,4.5 + parent: 2 + - uid: 14560 + components: + - type: Transform + pos: -36.5,4.5 + parent: 2 + - uid: 14568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,9.5 + parent: 2 + - uid: 14569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,9.5 + parent: 2 + - uid: 14584 + components: + - type: Transform + pos: -34.5,4.5 + parent: 2 + - uid: 14588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,4.5 + parent: 2 + - uid: 14591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,3.5 + parent: 2 + - uid: 14593 + components: + - type: Transform + pos: -53.5,3.5 + parent: 2 + - uid: 14595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,3.5 + parent: 2 + - uid: 14596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,4.5 + parent: 2 + - uid: 14604 + components: + - type: Transform + pos: -42.5,8.5 + parent: 2 + - uid: 14605 + components: + - type: Transform + pos: -44.5,8.5 + parent: 2 + - uid: 14606 + components: + - type: Transform + pos: -39.5,8.5 + parent: 2 + - uid: 14611 + components: + - type: Transform + pos: -43.5,8.5 + parent: 2 + - uid: 14612 + components: + - type: Transform + pos: -45.5,8.5 + parent: 2 + - uid: 14613 + components: + - type: Transform + pos: -40.5,8.5 + parent: 2 + - uid: 14614 + components: + - type: Transform + pos: -41.5,8.5 + parent: 2 + - uid: 14617 + components: + - type: Transform + pos: -47.5,14.5 + parent: 2 + - uid: 14618 + components: + - type: Transform + pos: -47.5,15.5 + parent: 2 + - uid: 14619 + components: + - type: Transform + pos: -46.5,15.5 + parent: 2 + - uid: 14620 + components: + - type: Transform + pos: -44.5,15.5 + parent: 2 + - uid: 14621 + components: + - type: Transform + pos: -43.5,15.5 + parent: 2 + - uid: 14622 + components: + - type: Transform + pos: -43.5,14.5 + parent: 2 + - uid: 14623 + components: + - type: Transform + pos: -45.5,15.5 + parent: 2 + - uid: 14635 + components: + - type: Transform + pos: -51.5,21.5 + parent: 2 + - uid: 14693 + components: + - type: Transform + pos: -57.5,26.5 + parent: 2 + - uid: 14694 + components: + - type: Transform + pos: -57.5,25.5 + parent: 2 + - uid: 14695 + components: + - type: Transform + pos: -57.5,24.5 + parent: 2 + - uid: 14696 + components: + - type: Transform + pos: -56.5,26.5 + parent: 2 + - uid: 14697 + components: + - type: Transform + pos: -56.5,25.5 + parent: 2 + - uid: 14698 + components: + - type: Transform + pos: -56.5,24.5 + parent: 2 + - uid: 14699 + components: + - type: Transform + pos: -55.5,26.5 + parent: 2 + - uid: 14700 + components: + - type: Transform + pos: -55.5,25.5 + parent: 2 + - uid: 14701 + components: + - type: Transform + pos: -55.5,24.5 + parent: 2 + - uid: 14702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,17.5 + parent: 2 + - uid: 14851 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 + - uid: 15056 + components: + - type: Transform + pos: -56.5,21.5 + parent: 2 + - uid: 15059 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 + - uid: 15060 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 15066 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 15128 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 15130 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 15143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,29.5 + parent: 2 + - uid: 15172 + components: + - type: Transform + pos: -55.5,21.5 + parent: 2 + - uid: 15173 + components: + - type: Transform + pos: -57.5,21.5 + parent: 2 + - uid: 15174 + components: + - type: Transform + pos: -58.5,21.5 + parent: 2 + - uid: 15175 + components: + - type: Transform + pos: -59.5,21.5 + parent: 2 + - uid: 15176 + components: + - type: Transform + pos: -60.5,21.5 + parent: 2 + - uid: 15177 + components: + - type: Transform + pos: -60.5,22.5 + parent: 2 + - uid: 15178 + components: + - type: Transform + pos: -60.5,23.5 + parent: 2 + - uid: 15179 + components: + - type: Transform + pos: -60.5,24.5 + parent: 2 + - uid: 15180 + components: + - type: Transform + pos: -60.5,25.5 + parent: 2 + - uid: 15181 + components: + - type: Transform + pos: -72.5,25.5 + parent: 2 + - uid: 15182 + components: + - type: Transform + pos: -71.5,25.5 + parent: 2 + - uid: 15184 + components: + - type: Transform + pos: -77.5,26.5 + parent: 2 + - uid: 15185 + components: + - type: Transform + pos: -77.5,25.5 + parent: 2 + - uid: 15186 + components: + - type: Transform + pos: -77.5,24.5 + parent: 2 + - uid: 15187 + components: + - type: Transform + pos: -76.5,26.5 + parent: 2 + - uid: 15188 + components: + - type: Transform + pos: -76.5,25.5 + parent: 2 + - uid: 15189 + components: + - type: Transform + pos: -76.5,24.5 + parent: 2 + - uid: 15190 + components: + - type: Transform + pos: -75.5,26.5 + parent: 2 + - uid: 15191 + components: + - type: Transform + pos: -75.5,25.5 + parent: 2 + - uid: 15192 + components: + - type: Transform + pos: -75.5,24.5 + parent: 2 + - uid: 15198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,29.5 + parent: 2 + - uid: 15199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,29.5 + parent: 2 + - uid: 15217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,29.5 + parent: 2 + - uid: 15223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,36.5 + parent: 2 + - uid: 15224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,36.5 + parent: 2 + - uid: 15225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,36.5 + parent: 2 + - uid: 15226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,36.5 + parent: 2 + - uid: 15227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,35.5 + parent: 2 + - uid: 15248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,17.5 + parent: 2 + - uid: 15252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,17.5 + parent: 2 + - uid: 15253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,17.5 + parent: 2 + - uid: 15281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,18.5 + parent: 2 + - uid: 15615 + components: + - type: Transform + pos: -68.5,35.5 + parent: 2 + - uid: 16048 + components: + - type: Transform + pos: -52.5,21.5 + parent: 2 + - uid: 16275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-52.5 + parent: 2 + - uid: 16276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-51.5 + parent: 2 + - uid: 16277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-50.5 + parent: 2 + - uid: 16278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-49.5 + parent: 2 + - uid: 16291 + components: + - type: Transform + pos: -55.5,-56.5 + parent: 2 + - uid: 16292 + components: + - type: Transform + pos: -54.5,-56.5 + parent: 2 + - uid: 16293 + components: + - type: Transform + pos: -54.5,-58.5 + parent: 2 + - uid: 16294 + components: + - type: Transform + pos: -55.5,-58.5 + parent: 2 +- proto: Chair + entities: + - uid: 549 + components: + - type: Transform + pos: -66.5,1.5 + parent: 2 + - uid: 643 + components: + - type: Transform + pos: -67.5,1.5 + parent: 2 + - uid: 2389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-24.5 + parent: 2 + - uid: 3215 + components: + - type: Transform + pos: -61.5,-4.5 + parent: 2 + - uid: 3379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,32.5 + parent: 2 + - uid: 3455 + components: + - type: Transform + pos: -61.5,-13.5 + parent: 2 + - uid: 5624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 2 + - uid: 5627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 2 + - uid: 5628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 2 + - uid: 5631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 2 + - uid: 5633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 2 + - uid: 5707 + components: + - type: Transform + pos: -60.5,-4.5 + parent: 2 + - uid: 6543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 2 + - uid: 6969 + components: + - type: Transform + pos: -45.5,-9.5 + parent: 2 + - uid: 6970 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 2 + - uid: 6978 + components: + - type: Transform + pos: -39.5,-9.5 + parent: 2 + - uid: 7970 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 7971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-36.5 + parent: 2 + - uid: 7974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-36.5 + parent: 2 + - uid: 7992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 2 + - uid: 8015 + components: + - type: Transform + pos: -65.5,1.5 + parent: 2 + - uid: 8055 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - uid: 8056 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 8057 + components: + - type: Transform + pos: 32.5,0.5 + parent: 2 + - uid: 8058 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 8059 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 8069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,-0.5 + parent: 2 + - uid: 8072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,0.5 + parent: 2 + - uid: 8076 + components: + - type: Transform + pos: 14.5,1.5 + parent: 2 + - uid: 8085 + components: + - type: Transform + pos: 13.5,1.5 + parent: 2 + - uid: 8127 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 + - uid: 8129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-35.5 + parent: 2 + - uid: 8131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-35.5 + parent: 2 + - uid: 8167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-5.5 + parent: 2 + - uid: 8168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-7.5 + parent: 2 + - uid: 8243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-20.5 + parent: 2 + - uid: 8246 + components: + - type: Transform + pos: -48.5,-30.5 + parent: 2 + - uid: 8249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-30.5 + parent: 2 + - uid: 8250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-24.5 + parent: 2 + - uid: 8327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-38.5 + parent: 2 + - uid: 8328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-39.5 + parent: 2 + - uid: 8334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-7.5 + parent: 2 + - uid: 8358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 2 + - uid: 8401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-22.5 + parent: 2 + - uid: 8720 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 2 + - uid: 8744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 2 + - uid: 8885 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 8887 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 2 + - uid: 8904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-23.5 + parent: 2 + - uid: 8905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-24.5 + parent: 2 + - uid: 8909 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - uid: 8910 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 2 + - uid: 8911 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 2 + - uid: 8912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-26.5 + parent: 2 + - uid: 8913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-26.5 + parent: 2 + - uid: 8914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-26.5 + parent: 2 + - uid: 8946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-25.5 + parent: 2 + - uid: 8949 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 2 + - uid: 8950 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 2 + - uid: 8951 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 2 + - uid: 8952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-28.5 + parent: 2 + - uid: 8953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-28.5 + parent: 2 + - uid: 8954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-28.5 + parent: 2 + - uid: 8955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-25.5 + parent: 2 + - uid: 9042 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 9416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 2 + - uid: 10377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,0.5 + parent: 2 + - uid: 10379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,-0.5 + parent: 2 + - uid: 10383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,1.5 + parent: 2 + - uid: 10384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,1.5 + parent: 2 + - uid: 10574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,-5.5 + parent: 2 + - uid: 10575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,-6.5 + parent: 2 + - uid: 10576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,-7.5 + parent: 2 + - uid: 10577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,-7.5 + parent: 2 + - uid: 11600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,42.5 + parent: 2 + - uid: 11867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,-2.5 + parent: 2 + - uid: 11900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,-2.5 + parent: 2 + - uid: 11955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,3.5 + parent: 2 + - uid: 11956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,4.5 + parent: 2 + - uid: 11957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,5.5 + parent: 2 + - uid: 12836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,10.5 + parent: 2 + - uid: 12837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,10.5 + parent: 2 + - uid: 13170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-15.5 + parent: 2 + - uid: 15231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 2 + - uid: 15614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,41.5 + parent: 2 + - uid: 15628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,41.5 + parent: 2 + - uid: 16217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,31.5 + parent: 2 + - uid: 16218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,30.5 + parent: 2 +- proto: ChairFolding + entities: + - uid: 6546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5322685,-36.401726 + parent: 2 + - uid: 6547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.4541435,-36.401726 + parent: 2 + - uid: 6548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.3291438,-36.37829 + parent: 2 + - uid: 6549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5557063,-35.393913 + parent: 2 + - uid: 6692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.510075,-7.5138445 + parent: 2 + - uid: 9429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.656693,-46.403313 + parent: 2 + - uid: 9530 + components: + - type: Transform + pos: -40.494366,-48.421616 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,12.5 + parent: 2 + - uid: 1556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 2 + - uid: 2743 + components: + - type: Transform + pos: -36.5,3.5 + parent: 2 + - uid: 3481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,17.5 + parent: 2 + - uid: 3851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-19.5 + parent: 2 + - uid: 4703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,20.5 + parent: 2 + - uid: 5455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,17.5 + parent: 2 + - uid: 5506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.495077,3.586721 + parent: 2 + - uid: 8240 + components: + - type: Transform + pos: -46.41224,-3.4493961 + parent: 2 + - uid: 8399 + components: + - type: Transform + pos: 0.50947,-4.363797 + parent: 2 + - uid: 9043 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 + - uid: 11271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.52679,-32.33668 + parent: 2 + - uid: 13213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,20.5 + parent: 2 + - uid: 13215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,20.5 + parent: 2 + - uid: 15798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,33.5 + parent: 2 + - uid: 15950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5326643,15.692835 + parent: 2 + - uid: 16263 + components: + - type: Transform + pos: -54.5,-53.5 + parent: 2 +- proto: ChairOfficeLight + entities: + - uid: 416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-40.5 + parent: 2 + - uid: 4363 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - uid: 4366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-11.5 + parent: 2 + - uid: 6792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.568542,-6.4302197 + parent: 2 + - uid: 6793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.506042,-4.3677197 + parent: 2 + - uid: 6860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.33285,-6.4725194 + parent: 2 +- proto: ChairWood + entities: + - uid: 789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-40.5 + parent: 2 + - uid: 794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-42.5 + parent: 2 + - uid: 6722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.43225,-44.37713 + parent: 2 + - uid: 8000 + components: + - type: Transform + pos: -54.479126,-43.432983 + parent: 2 + - uid: 8610 + components: + - type: Transform + pos: -44.5,-39.5 + parent: 2 + - uid: 8611 + components: + - type: Transform + pos: -43.5,-39.5 + parent: 2 + - uid: 8614 + components: + - type: Transform + pos: -40.5,-39.5 + parent: 2 + - uid: 8615 + components: + - type: Transform + pos: -41.5,-39.5 + parent: 2 + - uid: 8616 + components: + - type: Transform + pos: -40.5,-41.5 + parent: 2 + - uid: 8617 + components: + - type: Transform + pos: -41.5,-41.5 + parent: 2 + - uid: 8618 + components: + - type: Transform + pos: -40.5,-43.5 + parent: 2 + - uid: 8619 + components: + - type: Transform + pos: -41.5,-43.5 + parent: 2 + - uid: 8620 + components: + - type: Transform + pos: -43.5,-43.5 + parent: 2 + - uid: 8621 + components: + - type: Transform + pos: -44.5,-43.5 + parent: 2 + - uid: 8622 + components: + - type: Transform + pos: -43.5,-41.5 + parent: 2 + - uid: 8623 + components: + - type: Transform + pos: -44.5,-41.5 + parent: 2 + - uid: 8746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-29.5 + parent: 2 + - uid: 8799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-31.5 + parent: 2 + - uid: 8804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-28.5 + parent: 2 + - uid: 9415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.608475,-37.47214 + parent: 2 +- proto: CheapLighter + entities: + - uid: 4717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.352806,-14.377692 + parent: 2 +- proto: CheckerBoard + entities: + - uid: 5622 + components: + - type: Transform + pos: -8.486398,-11.2908745 + parent: 2 +- proto: chem_master + entities: + - uid: 6786 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 2 + - uid: 6787 + components: + - type: Transform + pos: -33.5,-6.5 + parent: 2 +- proto: ChemDispenser + entities: + - uid: 6789 + components: + - type: Transform + pos: -31.5,-3.5 + parent: 2 + - uid: 6790 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 2 +- proto: ChemistryHotplate + entities: + - uid: 16328 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 +- proto: ChessBoard + entities: + - uid: 4859 + components: + - type: Transform + pos: -8.399681,-14.393317 + parent: 2 + - uid: 8812 + components: + - type: Transform + pos: -27.452692,-27.429317 + parent: 2 + - uid: 11590 + components: + - type: Transform + pos: 6.401253,42.613335 + parent: 2 +- proto: Cigarette + entities: + - uid: 10381 + components: + - type: Transform + pos: -82.35193,0.80609274 + parent: 2 + - uid: 10382 + components: + - type: Transform + pos: -82.439896,0.61092806 + parent: 2 + - uid: 14234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.522889,19.319914 + parent: 2 + - uid: 14251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.624485,-14.715437 + parent: 2 + - uid: 14320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.73386,-14.840437 + parent: 2 +- proto: CigaretteSpent + entities: + - uid: 14338 + components: + - type: Transform + pos: -45.66378,-19.424622 + parent: 2 + - uid: 14348 + components: + - type: Transform + pos: -45.66378,-19.59129 + parent: 2 + - uid: 14349 + components: + - type: Transform + pos: -45.573505,-19.507956 + parent: 2 +- proto: CigarGold + entities: + - uid: 2476 + components: + - type: Transform + pos: -8.817266,9.940188 + parent: 2 + - uid: 5529 + components: + - type: Transform + pos: -8.543429,9.724864 + parent: 2 + - uid: 5667 + components: + - type: Transform + pos: -26.580704,15.573829 + parent: 2 + - uid: 5711 + components: + - type: Transform + pos: -26.68498,15.708009 + parent: 2 + - uid: 6383 + components: + - type: Transform + pos: -30.646751,5.629158 + parent: 2 +- proto: CigCartonBlack + entities: + - uid: 5739 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: CigPackBlack + entities: + - uid: 5576 + components: + - type: Transform + pos: -10.621579,10.604299 + parent: 2 + - uid: 9581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.675968,-14.141944 + parent: 2 + - uid: 10466 + components: + - type: Transform + pos: -82.64174,0.74291515 + parent: 2 +- proto: CigPackGreen + entities: + - uid: 7976 + components: + - type: Transform + pos: -31.31753,-36.215256 + parent: 2 +- proto: CircuitImprinter + entities: + - uid: 2856 + components: + - type: Transform + pos: -18.5,-42.5 + parent: 2 +- proto: CleanerDispenser + entities: + - uid: 9074 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 +- proto: CleanerGrenade + entities: + - uid: 8339 + components: + - type: Transform + pos: 16.20657,15.741993 + parent: 2 + - uid: 8340 + components: + - type: Transform + pos: 16.42532,15.741993 + parent: 2 + - uid: 8341 + components: + - type: Transform + pos: 16.622875,15.758171 + parent: 2 +- proto: CloningConsoleComputerCircuitboard + entities: + - uid: 6864 + components: + - type: Transform + pos: -47.57657,-15.441446 + parent: 2 +- proto: CloningPodMachineCircuitboard + entities: + - uid: 6865 + components: + - type: Transform + pos: -45.37498,-7.1868763 + parent: 2 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 1814 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 2 + - uid: 5471 + components: + - type: Transform + pos: -10.5,17.5 + parent: 2 + - uid: 6575 + components: + - type: Transform + pos: 6.5,-35.5 + parent: 2 + - uid: 7135 + components: + - type: Transform + pos: -16.5,-49.5 + parent: 2 + - uid: 8014 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 + - uid: 8016 + components: + - type: Transform + pos: -29.5,-36.5 + parent: 2 + - uid: 8050 + components: + - type: Transform + pos: -65.5,-2.5 + parent: 2 + - uid: 8061 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - uid: 8126 + components: + - type: Transform + pos: 20.5,18.5 + parent: 2 + - uid: 9449 + components: + - type: Transform + pos: -60.5,-19.5 + parent: 2 + - uid: 9458 + components: + - type: Transform + pos: -75.5,-6.5 + parent: 2 + - uid: 9459 + components: + - type: Transform + pos: -63.5,-11.5 + parent: 2 + - uid: 9460 + components: + - type: Transform + pos: -29.5,-48.5 + parent: 2 + - uid: 9461 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 + - uid: 9462 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 9465 + components: + - type: Transform + pos: -0.5,23.5 + parent: 2 + - uid: 9466 + components: + - type: Transform + pos: -29.5,17.5 + parent: 2 + - uid: 9467 + components: + - type: Transform + pos: -49.5,5.5 + parent: 2 + - uid: 9474 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 2 + - uid: 10375 + components: + - type: Transform + pos: -75.5,2.5 + parent: 2 + - uid: 14629 + components: + - type: Transform + pos: -41.5,18.5 + parent: 2 + - uid: 15200 + components: + - type: Transform + pos: 7.5,22.5 + parent: 2 + - uid: 15327 + components: + - type: Transform + pos: -53.5,18.5 + parent: 2 +- proto: ClosetFireFilled + entities: + - uid: 1332 + components: + - type: Transform + pos: -28.5,-36.5 + parent: 2 + - uid: 5470 + components: + - type: Transform + pos: -16.5,17.5 + parent: 2 + - uid: 6576 + components: + - type: Transform + pos: 7.5,-35.5 + parent: 2 + - uid: 6663 + components: + - type: Transform + pos: 4.5,23.5 + parent: 2 + - uid: 6887 + components: + - type: Transform + pos: -32.5,-14.5 + parent: 2 + - uid: 7104 + components: + - type: Transform + pos: -15.5,-42.5 + parent: 2 + - uid: 7128 + components: + - type: Transform + pos: -13.5,-49.5 + parent: 2 + - uid: 8013 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 + - uid: 8043 + components: + - type: Transform + pos: -66.5,-2.5 + parent: 2 + - uid: 8060 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 8125 + components: + - type: Transform + pos: 20.5,20.5 + parent: 2 + - uid: 9450 + components: + - type: Transform + pos: -30.5,-48.5 + parent: 2 + - uid: 9451 + components: + - type: Transform + pos: -19.5,-49.5 + parent: 2 + - uid: 9452 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 2 + - uid: 9455 + components: + - type: Transform + pos: -30.5,17.5 + parent: 2 + - uid: 9456 + components: + - type: Transform + pos: -49.5,14.5 + parent: 2 + - uid: 9457 + components: + - type: Transform + pos: -65.5,-11.5 + parent: 2 + - uid: 10376 + components: + - type: Transform + pos: -76.5,2.5 + parent: 2 + - uid: 14592 + components: + - type: Transform + pos: -39.5,18.5 + parent: 2 +- proto: ClosetJanitorFilled + entities: + - uid: 3534 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetL3JanitorFilled + entities: + - uid: 8311 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 +- proto: ClosetL3ScienceFilled + entities: + - uid: 1963 + components: + - type: Transform + pos: -16.5,-60.5 + parent: 2 + - uid: 7106 + components: + - type: Transform + pos: -15.5,-40.5 + parent: 2 + - uid: 9529 + components: + - type: Transform + pos: -47.5,-48.5 + parent: 2 +- proto: ClosetL3VirologyFilled + entities: + - uid: 1965 + components: + - type: Transform + pos: -43.5,-13.5 + parent: 2 +- proto: ClosetLegalFilled + entities: + - uid: 2589 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2650 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 2352 + components: + - type: Transform + pos: 14.5,23.5 + parent: 2 + - uid: 6991 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 9436 + components: + - type: Transform + pos: -46.5,-48.5 + parent: 2 + - uid: 9437 + components: + - type: Transform + pos: -37.5,-48.5 + parent: 2 + - uid: 9438 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 2 + - uid: 9439 + components: + - type: Transform + pos: -0.5,-35.5 + parent: 2 + - uid: 9440 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 + - uid: 9441 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 9445 + components: + - type: Transform + pos: -34.5,18.5 + parent: 2 + - uid: 9446 + components: + - type: Transform + pos: -49.5,12.5 + parent: 2 + - uid: 9447 + components: + - type: Transform + pos: -51.5,-6.5 + parent: 2 + - uid: 9448 + components: + - type: Transform + pos: -62.5,-11.5 + parent: 2 + - uid: 9473 + components: + - type: Transform + pos: -28.5,-23.5 + parent: 2 + - uid: 13058 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 + - uid: 13176 + components: + - type: Transform + pos: -45.5,-27.5 + parent: 2 + - uid: 14306 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 2 + - uid: 14415 + components: + - type: Transform + pos: -45.5,-21.5 + parent: 2 + - uid: 15336 + components: + - type: Transform + pos: -52.5,18.5 + parent: 2 + - uid: 16128 + components: + - type: Transform + pos: -70.5,-3.5 + parent: 2 + - uid: 16254 + components: + - type: Transform + pos: -52.5,-50.5 + parent: 2 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 372 + components: + - type: Transform + pos: -16.5,-59.5 + parent: 2 + - uid: 3401 + components: + - type: Transform + pos: -33.5,10.5 + parent: 2 + - uid: 7105 + components: + - type: Transform + pos: -15.5,-41.5 + parent: 2 + - uid: 9528 + components: + - type: Transform + pos: -35.5,-48.5 + parent: 2 + - uid: 14625 + components: + - type: Transform + pos: -36.5,10.5 + parent: 2 + - uid: 14980 + components: + - type: Transform + pos: -61.5,26.5 + parent: 2 + - uid: 15140 + components: + - type: Transform + pos: -60.5,26.5 + parent: 2 + - uid: 15151 + components: + - type: Transform + pos: -59.5,26.5 + parent: 2 +- proto: ClosetToolFilled + entities: + - uid: 6308 + components: + - type: Transform + pos: -41.5,15.5 + parent: 2 + - uid: 9517 + components: + - type: Transform + pos: -38.5,-48.5 + parent: 2 + - uid: 9518 + components: + - type: Transform + pos: -47.5,-40.5 + parent: 2 + - uid: 9519 + components: + - type: Transform + pos: -60.5,-17.5 + parent: 2 + - uid: 9520 + components: + - type: Transform + pos: -65.5,-5.5 + parent: 2 + - uid: 9521 + components: + - type: Transform + pos: -15.5,5.5 + parent: 2 + - uid: 9584 + components: + - type: Transform + pos: -33.5,29.5 + parent: 2 +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 14425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-12.5 + parent: 2 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 6977 + components: + - type: Transform + pos: -39.553413,-15.696136 + parent: 2 + - uid: 16091 + components: + - type: Transform + pos: 12.415729,30.45577 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: ClothingBackpackMerc + entities: + - uid: 9638 + components: + - type: Transform + pos: -34.29493,-42.666412 + parent: 2 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null +- proto: ClothingBeltMilitaryWebbing + entities: + - uid: 1772 + components: + - type: Transform + parent: 1019 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]50%[/color]. + priority: 0 + component: Armor + title: null + - type: InsideEntityStorage +- proto: ClothingBeltSalvageWebbing + entities: + - uid: 7057 + components: + - type: Transform + parent: 1419 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7058 + components: + - type: Transform + parent: 4540 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7059 + components: + - type: Transform + parent: 6772 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltUtilityFilled + entities: + - uid: 6523 + components: + - type: Transform + pos: 3.2202928,-32.245186 + parent: 2 + - uid: 9516 + components: + - type: Transform + pos: -43.6618,-48.40754 + parent: 2 +- proto: ClothingEyesGlassesMeson + entities: + - uid: 6324 + components: + - type: Transform + pos: -34.439342,5.380217 + parent: 2 + - uid: 7068 + components: + - type: Transform + pos: -7.8540573,-65.192184 + parent: 2 +- proto: ClothingEyesGlassesOutlawGlasses + entities: + - uid: 8344 + components: + - type: Transform + pos: -58.504562,-39.34211 + parent: 2 +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 6762 + components: + - type: Transform + pos: -7.803381,-5.5421114 + parent: 2 + - uid: 9038 + components: + - type: Transform + parent: 9037 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesHudMedical + entities: + - uid: 6956 + components: + - type: Transform + pos: -27.4413,-16.517826 + parent: 2 + - uid: 9492 + components: + - type: Transform + pos: -27.519014,-16.471733 + parent: 2 +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 8920 + components: + - type: Transform + pos: -15.526287,-24.410599 + parent: 2 +- proto: ClothingHandsGlovesBoxingGreen + entities: + - uid: 8919 + components: + - type: Transform + pos: -15.413289,-28.4253 + parent: 2 +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 8918 + components: + - type: Transform + pos: -17.452164,-22.544758 + parent: 2 +- proto: ClothingHandsGlovesBoxingYellow + entities: + - uid: 8916 + components: + - type: Transform + pos: -15.60734,-28.307526 + parent: 2 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 2895 + components: + - type: Transform + pos: -42.45295,4.5157614 + parent: 2 + - uid: 3232 + components: + - type: Transform + pos: -31.481926,-51.517532 + parent: 2 + - uid: 6163 + components: + - type: Transform + parent: 6162 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13082 + components: + - type: Transform + pos: -7.545479,-65.494156 + parent: 2 +- proto: ClothingHandsGlovesConducting + entities: + - uid: 6164 + components: + - type: Transform + parent: 6162 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesMercFingerless + entities: + - uid: 9639 + components: + - type: Transform + pos: -34.54493,-42.307037 + parent: 2 +- proto: ClothingHeadBandSkull + entities: + - uid: 15671 + components: + - type: Transform + pos: 9.620365,42.3696 + parent: 2 +- proto: ClothingHeadHatBeretEngineering + entities: + - uid: 12844 + components: + - type: Transform + pos: -30.657654,11.746092 + parent: 2 +- proto: ClothingHeadHatBeretMerc + entities: + - uid: 5522 + components: + - type: Transform + pos: -35.51557,-40.740345 + parent: 2 +- proto: ClothingHeadHatBowlerHat + entities: + - uid: 6761 + components: + - type: Transform + pos: -7.725256,-5.2921114 + parent: 2 +- proto: ClothingHeadHatCardborg + entities: + - uid: 13116 + components: + - type: Transform + pos: -26.414045,-41.99083 + parent: 2 +- proto: ClothingHeadHatCentcomcap + entities: + - uid: 3166 + components: + - type: Transform + pos: -63.50067,-29.010057 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: ClothingHeadHatFezMantis + entities: + - uid: 5473 + components: + - type: Transform + pos: -48.529377,-19.41072 + parent: 2 +- proto: ClothingHeadHatHardhatWhite + entities: + - uid: 14229 + components: + - type: Transform + pos: -58.578125,-14.482984 + parent: 2 + - type: HandheldLight + toggleActionEntity: 14230 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 14230 + - type: ActionsContainer + - uid: 14231 + components: + - type: Transform + pos: -58.233376,-14.506815 + parent: 2 + - type: HandheldLight + toggleActionEntity: 14232 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 14232 + - type: ActionsContainer + - uid: 14233 + components: + - type: Transform + pos: -58.201466,-14.276398 + parent: 2 +- proto: ClothingHeadHatHardhatYellow + entities: + - uid: 13200 + components: + - type: Transform + pos: -59.30323,2.458405 + parent: 2 + - type: HandheldLight + toggleActionEntity: 13202 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 13201 + actions: !type:Container + showEnts: False + occludes: True + ents: + - 13202 + - type: ActionsContainer +- proto: ClothingHeadHatHoboCap + entities: + - uid: 1855 + components: + - type: Transform + pos: -77.5241,-4.7481833 + parent: 2 +- proto: ClothingHeadHatPaper + entities: + - uid: 93 + components: + - type: Transform + pos: -30.391277,2.599544 + parent: 2 +- proto: ClothingHeadHatPwig + entities: + - uid: 2650 + components: + - type: Transform + parent: 2589 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatSurgcapBlue + entities: + - uid: 6963 + components: + - type: Transform + pos: -37.38713,-6.914573 + parent: 2 + - uid: 14531 + components: + - type: Transform + pos: 0.46142185,-9.400478 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: ClothingHeadHatUshanka + entities: + - uid: 15531 + components: + - type: Transform + pos: -61.07476,34.467327 + parent: 2 + - uid: 15662 + components: + - type: Transform + parent: 15660 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatWelding + entities: + - uid: 8077 + components: + - type: Transform + pos: -22.109964,19.613182 + parent: 2 +- proto: ClothingHeadHelmetAncient + entities: + - uid: 7114 + components: + - type: Transform + parent: 7111 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7121 + components: + - type: Transform + parent: 7112 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHelmetEVA + entities: + - uid: 8289 + components: + - type: Transform + parent: 8288 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8293 + components: + - type: Transform + parent: 8292 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHelmetRiot + entities: + - uid: 15988 + components: + - type: Transform + parent: 15205 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15993 + components: + - type: Transform + parent: 15205 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskBandMerc + entities: + - uid: 9641 + components: + - type: Transform + pos: -34.731583,-42.576195 + parent: 2 +- proto: ClothingMaskBreath + entities: + - uid: 6994 + components: + - type: Transform + pos: -39.600548,-15.263451 + parent: 2 + - uid: 7125 + components: + - type: Transform + pos: -13.781642,-53.42128 + parent: 2 + - uid: 7126 + components: + - type: Transform + pos: -13.687558,-53.26162 + parent: 2 + - uid: 16093 + components: + - type: Transform + pos: 12.463206,29.607254 + parent: 2 +- proto: ClothingMaskMuzzle + entities: + - uid: 12182 + components: + - type: Transform + pos: 13.446235,32.379005 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 14414 + components: + - type: Transform + pos: -41.12689,-24.804138 + parent: 2 +- proto: ClothingMaskSexyClown + entities: + - uid: 1517 + components: + - type: Transform + parent: 1021 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskSexyMime + entities: + - uid: 1756 + components: + - type: Transform + parent: 1541 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckHeadphones + entities: + - uid: 9036 + components: + - type: Transform + pos: 13.54963,-3.463489 + parent: 2 +- proto: ClothingNeckScarfStripedGreen + entities: + - uid: 1105 + components: + - type: Transform + pos: -34.58068,-29.29348 + parent: 2 +- proto: ClothingNeckScarfStripedSyndieRed + entities: + - uid: 1031 + components: + - type: Transform + parent: 1019 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckScarfStripedZebra + entities: + - uid: 8244 + components: + - type: Transform + pos: -48.69063,-4.536962 + parent: 2 +- proto: ClothingNeckStoleChaplain + entities: + - uid: 8636 + components: + - type: Transform + pos: -38.11356,-38.402874 + parent: 2 +- proto: ClothingNeckTieRed + entities: + - uid: 9039 + components: + - type: Transform + parent: 9037 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterArmorBasic + entities: + - uid: 15709 + components: + - type: Transform + parent: 15660 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 15206 + components: + - type: Transform + parent: 15205 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15208 + components: + - type: Transform + parent: 15205 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15213 + components: + - type: Transform + parent: 15205 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterArmorReflective + entities: + - uid: 15215 + components: + - type: Transform + parent: 15205 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15216 + components: + - type: Transform + parent: 15205 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15951 + components: + - type: Transform + parent: 15205 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterArmorRiot + entities: + - uid: 15992 + components: + - type: Transform + parent: 15205 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15994 + components: + - type: Transform + parent: 15205 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterBioScientist + entities: + - uid: 16284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.46404,-51.3862 + parent: 2 +- proto: ClothingOuterHardsuitAncientEVA + entities: + - uid: 7115 + components: + - type: Transform + parent: 7112 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7120 + components: + - type: Transform + parent: 7111 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitAtmos + entities: + - uid: 12237 + components: + - type: Transform + parent: 14573 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: Понижает вашу скорость на [color=yellow]15%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Тупой[/color] урон снижается на [color=lightblue]10%[/color]. + + - [color=yellow]Рубящий[/color] урон снижается на [color=lightblue]10%[/color]. + + - [color=yellow]Проникающий[/color] урон снижается на [color=lightblue]10%[/color]. + + - [color=yellow]Тепловой[/color] урон снижается на [color=lightblue]80%[/color]. + + - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=orange]Взрывной[/color] урон снижен благодаря [color=lightblue]50%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14092 + components: + - type: Transform + parent: 14634 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: Понижает вашу скорость на [color=yellow]15%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Тупой[/color] урон снижается на [color=lightblue]10%[/color]. + + - [color=yellow]Рубящий[/color] урон снижается на [color=lightblue]10%[/color]. + + - [color=yellow]Проникающий[/color] урон снижается на [color=lightblue]10%[/color]. + + - [color=yellow]Тепловой[/color] урон снижается на [color=lightblue]80%[/color]. + + - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=orange]Взрывной[/color] урон снижен благодаря [color=lightblue]50%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitEVA + entities: + - uid: 8291 + components: + - type: Transform + parent: 8288 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8333 + components: + - type: Transform + parent: 8292 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitSecurity + entities: + - uid: 15207 + components: + - type: Transform + parent: 15205 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15210 + components: + - type: Transform + parent: 15205 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15211 + components: + - type: Transform + parent: 15205 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15212 + components: + - type: Transform + parent: 15205 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15214 + components: + - type: Transform + parent: 15205 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterStraightjacket + entities: + - uid: 12905 + components: + - type: Transform + pos: -42.628227,-3.3455281 + parent: 2 + - uid: 12908 + components: + - type: Transform + pos: -42.277126,-3.3250217 + parent: 2 +- proto: ClothingOuterSuitEmergency + entities: + - uid: 15920 + components: + - type: Transform + pos: 3.5060701,46.52745 + parent: 2 +- proto: ClothingOuterVestWebMerc + entities: + - uid: 5437 + components: + - type: Transform + pos: -29.70332,-76.518814 + parent: 2 +- proto: ClothingOuterWinterClown + entities: + - uid: 1271 + components: + - type: Transform + parent: 1021 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterGen + entities: + - uid: 6962 + components: + - type: Transform + pos: -37.403076,-7.313011 + parent: 2 +- proto: ClothingOuterWinterMime + entities: + - uid: 1757 + components: + - type: Transform + parent: 1541 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBling + entities: + - uid: 1432 + components: + - type: Transform + parent: 1021 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsLaceup + entities: + - uid: 9041 + components: + - type: Transform + parent: 9037 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsMag + entities: + - uid: 7415 + components: + - type: Transform + pos: -53.5383,-6.4957566 + parent: 2 + - type: Magboots + toggleActionEntity: 8133 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 8133 + - uid: 8144 + components: + - type: Transform + pos: -53.29291,-6.665767 + parent: 2 + - type: Magboots + toggleActionEntity: 6934 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 6934 + - uid: 8146 + components: + - type: Transform + pos: -53.351135,-6.2962737 + parent: 2 + - type: Magboots + toggleActionEntity: 8134 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 8134 +- proto: ClothingShoesBootsMagAdv + entities: + - uid: 1953 + components: + - type: Transform + parent: 6372 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsMagSyndie + entities: + - uid: 1033 + components: + - type: Transform + parent: 1019 + - type: Magboots + toggleActionEntity: 984 + - type: GasTank + toggleActionEntity: 463 + - type: Jetpack + toggleActionEntity: 438 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 438 + - 463 + - 984 + - type: InsideEntityStorage +- proto: ClothingShoesColorBlack + entities: + - uid: 15631 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15632 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15633 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15634 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15635 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15636 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15637 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15638 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15639 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesGaloshes + entities: + - uid: 8281 + components: + - type: Transform + pos: 16.66545,15.385233 + parent: 2 +- proto: ClothingUniformJumpskirtTacticool + entities: + - uid: 1768 + components: + - type: Transform + parent: 1019 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitAncient + entities: + - uid: 2123 + components: + - type: Transform + pos: -30.906902,2.333919 + parent: 2 +- proto: ClothingUniformJumpsuitPrisoner + entities: + - uid: 12696 + components: + - type: MetaData + name: комбинезон заключенного (ТРЕТИЙ) + - type: Transform + parent: 609 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12700 + components: + - type: MetaData + name: комбинезон заключенного (ВТОРОЙ) + - type: Transform + parent: 885 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12701 + components: + - type: MetaData + name: комбинезон заключенного (ПЕРВЫЙ) + - type: Transform + parent: 937 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12702 + components: + - type: MetaData + name: комбинезон заключенного (ЧЕТВЕРТЫЙ) + - type: Transform + parent: 4442 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12708 + components: + - type: MetaData + name: комбинезон заключенного (ПЕРМА) + - type: Transform + pos: 7.688501,29.588326 + parent: 2 + - uid: 15967 + components: + - type: MetaData + name: комбинезон заключенного (ПЕРМА) + - type: Transform + pos: 7.3865986,29.42628 + parent: 2 + - uid: 15968 + components: + - type: MetaData + name: комбинезон заключенного (ПЕРМА) + - type: Transform + pos: 7.505603,29.700611 + parent: 2 +- proto: ClothingUniformJumpsuitReporter + entities: + - uid: 9040 + components: + - type: Transform + parent: 9037 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitTacticool + entities: + - uid: 1674 + components: + - type: Transform + parent: 1019 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClownRecorder + entities: + - uid: 8987 + components: + - type: Transform + pos: 8.732734,-19.329597 + parent: 2 +- proto: Cobweb1 + entities: + - uid: 16538 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 + - uid: 16539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,3.5 + parent: 2 + - uid: 16540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,2.5 + parent: 2 + - uid: 16541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,2.5 + parent: 2 + - uid: 16542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,6.5 + parent: 2 + - uid: 16543 + components: + - type: Transform + pos: 3.5,15.5 + parent: 2 + - uid: 16544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,19.5 + parent: 2 + - uid: 16545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,12.5 + parent: 2 + - uid: 16546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,3.5 + parent: 2 + - uid: 16547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-2.5 + parent: 2 + - uid: 16548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-15.5 + parent: 2 + - uid: 16549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-6.5 + parent: 2 + - uid: 16550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 2 + - uid: 16551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-15.5 + parent: 2 + - uid: 16552 + components: + - type: Transform + pos: -30.5,-14.5 + parent: 2 + - uid: 16553 + components: + - type: Transform + pos: -35.5,-3.5 + parent: 2 + - uid: 16554 + components: + - type: Transform + pos: -28.5,7.5 + parent: 2 + - uid: 16556 + components: + - type: Transform + pos: -39.5,5.5 + parent: 2 + - uid: 16557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,10.5 + parent: 2 + - uid: 16558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,11.5 + parent: 2 + - uid: 16559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,22.5 + parent: 2 + - uid: 16560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,28.5 + parent: 2 + - uid: 16561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,-2.5 + parent: 2 + - uid: 16562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-46.5 + parent: 2 + - uid: 16563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-41.5 + parent: 2 + - uid: 16564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-46.5 + parent: 2 + - uid: 16565 + components: + - type: Transform + pos: -16.5,-59.5 + parent: 2 + - uid: 16566 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 2 + - uid: 16567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-23.5 + parent: 2 +- proto: CombatKnife + entities: + - uid: 16014 + components: + - type: Transform + pos: 9.622079,19.760103 + parent: 2 + - uid: 16016 + components: + - type: Transform + pos: 9.691658,19.61641 + parent: 2 +- proto: ComfyChair + entities: + - uid: 663 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - uid: 1774 + components: + - type: Transform + pos: -10.5,11.5 + parent: 2 + - uid: 1857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 2 + - uid: 1869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,8.5 + parent: 2 + - uid: 1870 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 + - uid: 1888 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 2096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,8.5 + parent: 2 + - uid: 2899 + components: + - type: Transform + pos: -30.5,6.5 + parent: 2 + - uid: 4842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,19.5 + parent: 2 + - uid: 6141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,18.5 + parent: 2 + - uid: 6142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,19.5 + parent: 2 + - uid: 6144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,18.5 + parent: 2 + - uid: 6150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,4.5 + parent: 2 + - uid: 6191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 2 + - uid: 6192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 2 + - uid: 6193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-13.5 + parent: 2 + - uid: 6202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 2 + - uid: 6217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,1.5 + parent: 2 + - uid: 6219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,1.5 + parent: 2 + - uid: 11725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-51.5 + parent: 2 + - uid: 15960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-52.5 + parent: 2 + - uid: 15961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-51.5 + parent: 2 +- proto: CommsComputerCircuitboard + entities: + - uid: 14458 + components: + - type: Transform + pos: -54.493942,6.6742187 + parent: 2 +- proto: ComputerAlert + entities: + - uid: 14630 + components: + - type: Transform + pos: -40.5,22.5 + parent: 2 + - uid: 15138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,25.5 + parent: 2 +- proto: ComputerAnalysisConsole + entities: + - uid: 1515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-68.5 + parent: 2 + - uid: 2651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-68.5 + parent: 2 +- proto: computerBodyScanner + entities: + - uid: 6872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-21.5 + parent: 2 + - uid: 7061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-39.5 + parent: 2 + - uid: 16264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-53.5 + parent: 2 +- proto: ComputerCargoBounty + entities: + - uid: 3350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-27.5 + parent: 2 +- proto: ComputerCargoOrders + entities: + - uid: 12815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-27.5 + parent: 2 +- proto: ComputerComms + entities: + - uid: 843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,11.5 + parent: 2 + - uid: 3465 + components: + - type: Transform + pos: -13.5,21.5 + parent: 2 +- proto: ComputerCrewMonitoring + entities: + - uid: 5447 + components: + - type: Transform + pos: -10.5,21.5 + parent: 2 + - uid: 6817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-11.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 1117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,32.5 + parent: 2 + - uid: 3980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,11.5 + parent: 2 + - uid: 5446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,18.5 + parent: 2 + - uid: 5664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-20.5 + parent: 2 + - uid: 8408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-41.5 + parent: 2 +- proto: ComputerFrame + entities: + - uid: 6001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-14.5 + parent: 2 + - uid: 13206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-25.5 + parent: 2 +- proto: ComputerId + entities: + - uid: 5443 + components: + - type: Transform + pos: -12.5,21.5 + parent: 2 + - uid: 5474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,10.5 + parent: 2 + - uid: 5505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,3.5 + parent: 2 +- proto: ComputerMassMedia + entities: + - uid: 9033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-6.5 + parent: 2 +- proto: ComputerMedicalRecords + entities: + - uid: 5026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-14.5 + parent: 2 + - uid: 12744 + components: + - type: Transform + pos: -9.5,21.5 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 2818 + components: + - type: Transform + pos: -35.5,5.5 + parent: 2 + - uid: 5462 + components: + - type: Transform + pos: -17.5,21.5 + parent: 2 + - uid: 7644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-12.5 + parent: 2 + - uid: 10158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-52.5 + parent: 2 + - uid: 10698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-8.5 + parent: 2 + - uid: 11191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,28.5 + parent: 2 + - uid: 15142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,26.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 5450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,17.5 + parent: 2 + - uid: 11686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,6.5 + parent: 2 + - uid: 13080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-50.5 + parent: 2 + - uid: 16071 + components: + - type: Transform + pos: 17.5,34.5 + parent: 2 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 7060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-40.5 + parent: 2 + - uid: 7080 + components: + - type: Transform + pos: -12.5,-44.5 + parent: 2 + - uid: 7176 + components: + - type: Transform + pos: -9.5,-65.5 + parent: 2 +- proto: ComputerSalvageExpedition + entities: + - uid: 14247 + components: + - type: Transform + pos: -5.5,-37.5 + parent: 2 +- proto: ComputerShuttleCargo + entities: + - uid: 6483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-26.5 + parent: 2 +- proto: ComputerShuttleSalvage + entities: + - uid: 1935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-41.5 + parent: 2 +- proto: ComputerSolarControl + entities: + - uid: 10746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-52.5 + parent: 2 + - uid: 10747 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 11192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,28.5 + parent: 2 + - uid: 11687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,6.5 + parent: 2 + - uid: 12769 + components: + - type: Transform + pos: -16.5,21.5 + parent: 2 + - uid: 15302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-7.5 + parent: 2 +- proto: ComputerStationRecords + entities: + - uid: 5449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,17.5 + parent: 2 + - uid: 5888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,12.5 + parent: 2 + - uid: 8409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-41.5 + parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 5451 + components: + - type: Transform + pos: -14.5,21.5 + parent: 2 + - uid: 5537 + components: + - type: Transform + pos: -26.5,-18.5 + parent: 2 + - uid: 13044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 2 + - uid: 14633 + components: + - type: Transform + pos: -41.5,22.5 + parent: 2 + - uid: 15804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,33.5 + parent: 2 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 5444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,18.5 + parent: 2 + - uid: 9045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-6.5 + parent: 2 + - uid: 10308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 2 +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 7066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-44.5 + parent: 2 +- proto: ComputerTelevision + entities: + - uid: 5477 + components: + - type: Transform + pos: -14.5,12.5 + parent: 2 + - uid: 8204 + components: + - type: Transform + pos: -56.5,-29.5 + parent: 2 + - uid: 8222 + components: + - type: Transform + pos: -49.5,-23.5 + parent: 2 + - uid: 8224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-23.5 + parent: 2 + - uid: 8229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-30.5 + parent: 2 + - uid: 8234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-19.5 + parent: 2 + - uid: 9213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 2 + - uid: 9410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-39.5 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 1387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12117 + - uid: 1394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12117 + - uid: 1669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12117 + - uid: 1810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12117 + - uid: 2283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12117 + - uid: 2456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12117 + - uid: 6488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6498 + - uid: 6489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6498 + - uid: 6490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6498 + - uid: 6491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6498 + - uid: 6492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6498 + - uid: 6493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6498 + - uid: 6494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6498 + - uid: 6495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6498 + - uid: 6496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6498 + - uid: 6497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6498 + - uid: 11918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12117 + - uid: 12121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12117 +- proto: CrateArtifactContainer + entities: + - uid: 7 + components: + - type: Transform + pos: -11.5,-60.5 + parent: 2 + - uid: 14785 + components: + - type: Transform + pos: -11.5,-61.5 + parent: 2 +- proto: CrateCoffin + entities: + - uid: 8631 + components: + - type: Transform + pos: -38.5,-46.5 + parent: 2 + - uid: 8632 + components: + - type: Transform + pos: -37.5,-46.5 + parent: 2 + - uid: 8633 + components: + - type: Transform + pos: -36.5,-46.5 + parent: 2 +- proto: CrateEmergencyRadiation + entities: + - uid: 15055 + components: + - type: Transform + pos: -70.5,24.5 + parent: 2 +- proto: CrateEmptySpawner + entities: + - uid: 3351 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 2 + - uid: 5858 + components: + - type: Transform + pos: -52.5,15.5 + parent: 2 + - uid: 6133 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 2 + - uid: 6505 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 2 + - uid: 16167 + components: + - type: Transform + pos: -53.5,15.5 + parent: 2 +- proto: CrateEngineeringAMEControl + entities: + - uid: 2893 + components: + - type: Transform + pos: -43.5,13.5 + parent: 2 +- proto: CrateEngineeringAMEJar + entities: + - uid: 2894 + components: + - type: Transform + pos: -43.5,12.5 + parent: 2 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 6301 + components: + - type: Transform + pos: -43.5,11.5 + parent: 2 +- proto: CrateEngineeringCableBulk + entities: + - uid: 9887 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 11874 + components: + - type: Transform + pos: -45.5,5.5 + parent: 2 +- proto: CrateEngineeringCableHV + entities: + - uid: 2687 + components: + - type: Transform + pos: -33.5,-51.5 + parent: 2 + - uid: 3110 + components: + - type: Transform + pos: -71.5,-7.5 + parent: 2 +- proto: CrateEngineeringSolar + entities: + - uid: 7998 + components: + - type: Transform + pos: -43.5,6.5 + parent: 2 +- proto: CrateEvaKit + entities: + - uid: 8288 + components: + - type: Transform + pos: -53.5,-4.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8289 + - 8291 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8292 + components: + - type: Transform + pos: -53.5,-3.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8293 + - 8333 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateFilledSpawner + entities: + - uid: 5457 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 2 + - uid: 6241 + components: + - type: Transform + pos: 10.5,-31.5 + parent: 2 + - uid: 6503 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 2 + - uid: 6504 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 2 + - uid: 7093 + components: + - type: Transform + pos: 10.5,-32.5 + parent: 2 + - uid: 16164 + components: + - type: Transform + pos: -53.5,13.5 + parent: 2 +- proto: CrateFoodMRE + entities: + - uid: 9511 + components: + - type: Transform + pos: -66.5,-11.5 + parent: 2 +- proto: CrateFreezer + entities: + - uid: 9502 + components: + - type: Transform + pos: -39.5,-13.5 + parent: 2 +- proto: CrateFunToyBox + entities: + - uid: 9513 + components: + - type: Transform + pos: -32.5,-48.5 + parent: 2 + - uid: 9525 + components: + - type: Transform + pos: -49.5,3.5 + parent: 2 +- proto: CrateMedicalSurgery + entities: + - uid: 7092 + components: + - type: Transform + pos: -23.5,-37.5 + parent: 2 +- proto: CrateMousetrapBoxes + entities: + - uid: 6162 + components: + - type: Transform + pos: -32.5,20.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6164 + - 6163 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 9527 + components: + - type: Transform + pos: -31.5,17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateNPCCow + entities: + - uid: 9094 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 2 +- proto: CrateNPCHamlet + entities: + - uid: 5445 + components: + - type: Transform + pos: -11.5,19.5 + parent: 2 +- proto: CrateSecgear + entities: + - uid: 15737 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14697 + moles: + - 1.8744951 + - 7.051672 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5791 + - 5790 + - 15722 + - 5787 + - 5740 + - 15721 + - 15726 + - 15725 + - 15724 + - 15723 + - 15728 + - 5789 + - 5788 + - 15727 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateServiceGuidebooks + entities: + - uid: 9526 + components: + - type: Transform + pos: -53.5,-12.5 + parent: 2 +- proto: CrateServiceReplacementLights + entities: + - uid: 9540 + components: + - type: Transform + pos: -55.5,-12.5 + parent: 2 +- proto: CrateSurgery + entities: + - uid: 16088 + components: + - type: Transform + pos: 12.5,28.5 + parent: 2 +- proto: CrateTrackingImplants + entities: + - uid: 286 + components: + - type: Transform + pos: 9.5,18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateTrashCart + entities: + - uid: 12887 + components: + - type: Transform + pos: -62.5,-20.5 + parent: 2 +- proto: CrayonBox + entities: + - uid: 8197 + components: + - type: Transform + pos: -61.486374,-5.684803 + parent: 2 +- proto: Crematorium + entities: + - uid: 8627 + components: + - type: Transform + pos: -38.5,-44.5 + parent: 2 +- proto: CrewMonitoringServer + entities: + - uid: 11458 + components: + - type: Transform + pos: -94.5,-33.5 + parent: 2 + - type: SingletonDeviceNetServer + active: False + available: False +- proto: CrowbarRed + entities: + - uid: 6767 + components: + - type: Transform + pos: -78.28037,-5.6293173 + parent: 2 + - uid: 7179 + components: + - type: Transform + pos: -16.471771,-63.468224 + parent: 2 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 6136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-20.5 + parent: 2 + - uid: 6153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-19.5 + parent: 2 + - uid: 6198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-19.5 + parent: 2 + - uid: 6377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-21.5 + parent: 2 + - uid: 6378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-21.5 + parent: 2 +- proto: CryogenicSleepUnitSpawnerPrisoner + entities: + - uid: 15810 + components: + - type: Transform + pos: 7.5,32.5 + parent: 2 + - uid: 15824 + components: + - type: Transform + pos: 7.5,33.5 + parent: 2 +- proto: CryoPod + entities: + - uid: 6948 + components: + - type: Transform + pos: -37.5,-3.5 + parent: 2 + - uid: 6949 + components: + - type: Transform + pos: -39.5,-3.5 + parent: 2 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 12137 + components: + - type: Transform + pos: -37.247944,-6.1263947 + parent: 2 +- proto: CrystalCyan + entities: + - uid: 13155 + components: + - type: Transform + pos: -18.5,-51.5 + parent: 2 +- proto: DefaultStationBeaconAICore + entities: + - uid: 12324 + components: + - type: Transform + pos: -90.5,-34.5 + parent: 2 +- proto: DefaultStationBeaconAME + entities: + - uid: 12325 + components: + - type: Transform + pos: -45.5,12.5 + parent: 2 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 12326 + components: + - type: Transform + pos: -18.5,-64.5 + parent: 2 +- proto: DefaultStationBeaconArmory + entities: + - uid: 12328 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 12329 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 2 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 16036 + components: + - type: Transform + pos: -13.5,-66.5 + parent: 2 +- proto: DefaultStationBeaconBar + entities: + - uid: 12330 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 2 +- proto: DefaultStationBeaconBotany + entities: + - uid: 12331 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 +- proto: DefaultStationBeaconBridge + entities: + - uid: 12333 + components: + - type: Transform + pos: -13.5,18.5 + parent: 2 +- proto: DefaultStationBeaconBrig + entities: + - uid: 12334 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 12335 + components: + - type: Transform + pos: -14.5,11.5 + parent: 2 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 12338 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 2 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 12336 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 +- proto: DefaultStationBeaconChapel + entities: + - uid: 12339 + components: + - type: Transform + pos: -42.5,-42.5 + parent: 2 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 12340 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 2 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 12337 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 2 +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 6140 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 2 + - uid: 12381 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 12341 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 2 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 12342 + components: + - type: Transform + pos: -55.5,-20.5 + parent: 2 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 12344 + components: + - type: Transform + pos: -57.5,-39.5 + parent: 2 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 12346 + components: + - type: Transform + pos: -61.5,-20.5 + parent: 2 +- proto: DefaultStationBeaconDorms + entities: + - uid: 12343 + components: + - type: Transform + pos: -52.5,-24.5 + parent: 2 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 12348 + components: + - type: Transform + pos: -42.5,7.5 + parent: 2 +- proto: DefaultStationBeaconEvac + entities: + - uid: 7911 + components: + - type: Transform + pos: -81.5,0.5 + parent: 2 +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 12347 + components: + - type: Transform + pos: -55.5,-4.5 + parent: 2 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 12350 + components: + - type: Transform + pos: -34.5,13.5 + parent: 2 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 12351 + components: + - type: Transform + pos: -11.5,4.5 + parent: 2 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 12352 + components: + - type: Transform + pos: 3.5,19.5 + parent: 2 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 12353 + components: + - type: Transform + pos: 17.5,15.5 + parent: 2 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 12354 + components: + - type: Transform + pos: -17.5,-14.5 + parent: 2 +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 12355 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 12356 + components: + - type: Transform + pos: -28.5,-30.5 + parent: 2 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 12357 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 12358 + components: + - type: Transform + pos: -38.5,-16.5 + parent: 2 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 12360 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 12361 + components: + - type: Transform + pos: -10.5,-41.5 + parent: 2 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 12362 + components: + - type: Transform + pos: -25.5,-38.5 + parent: 2 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 12364 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 2 +- proto: DefaultStationBeaconScience + entities: + - uid: 12363 + components: + - type: Transform + pos: -19.5,-45.5 + parent: 2 +- proto: DefaultStationBeaconService + entities: + - uid: 12365 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 2 +- proto: DefaultStationBeaconSolars + entities: + - uid: 12366 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - uid: 12367 + components: + - type: Transform + pos: -32.5,-52.5 + parent: 2 + - uid: 12368 + components: + - type: Transform + pos: -70.5,-8.5 + parent: 2 + - uid: 12369 + components: + - type: Transform + pos: -34.5,28.5 + parent: 2 +- proto: DefaultStationBeaconTechVault + entities: + - uid: 14465 + components: + - type: Transform + pos: -53.5,3.5 + parent: 2 +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 12374 + components: + - type: Transform + pos: -64.5,-34.5 + parent: 2 +- proto: DefaultStationBeaconTheater + entities: + - uid: 12373 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 12372 + components: + - type: Transform + pos: -25.5,18.5 + parent: 2 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 12371 + components: + - type: Transform + pos: 8.5,10.5 + parent: 2 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 2 + - uid: 6870 + components: + - type: Transform + pos: -31.5,-17.5 + parent: 2 + - uid: 6871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-15.5 + parent: 2 + - uid: 9062 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 +- proto: DeployableBarrier + entities: + - uid: 342 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 14196 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 + - uid: 15238 + components: + - type: Transform + pos: 7.5,16.5 + parent: 2 + - uid: 15947 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 +- proto: DiceBag + entities: + - uid: 8100 + components: + - type: Transform + pos: -1.4994135,19.678305 + parent: 2 + - uid: 8807 + components: + - type: Transform + pos: -26.535767,-28.233362 + parent: 2 + - uid: 15626 + components: + - type: Transform + pos: 4.368693,41.981262 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: DiseaseDiagnoser + entities: + - uid: 5002 + components: + - type: Transform + pos: -41.5,-14.5 + parent: 2 +- proto: DisposalBend + entities: + - uid: 4847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,9.5 + parent: 2 + - uid: 6332 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 6363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 2 + - uid: 6535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 2 + - uid: 10565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,-1.5 + parent: 2 + - uid: 12610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 2 + - uid: 13671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-21.5 + parent: 2 + - uid: 13687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-13.5 + parent: 2 + - uid: 13689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-13.5 + parent: 2 + - uid: 13692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-17.5 + parent: 2 + - uid: 13719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,8.5 + parent: 2 + - uid: 13720 + components: + - type: Transform + pos: -39.5,8.5 + parent: 2 + - uid: 13721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,3.5 + parent: 2 + - uid: 13722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,3.5 + parent: 2 + - uid: 13762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,17.5 + parent: 2 + - uid: 13784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,10.5 + parent: 2 + - uid: 13801 + components: + - type: Transform + pos: -14.5,18.5 + parent: 2 + - uid: 13802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,18.5 + parent: 2 + - uid: 13804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,12.5 + parent: 2 + - uid: 13805 + components: + - type: Transform + pos: -10.5,14.5 + parent: 2 + - uid: 13837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-35.5 + parent: 2 + - uid: 13838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-37.5 + parent: 2 + - uid: 13842 + components: + - type: Transform + pos: -52.5,-17.5 + parent: 2 + - uid: 13843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-19.5 + parent: 2 + - uid: 13905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-31.5 + parent: 2 + - uid: 13906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-30.5 + parent: 2 + - uid: 13910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-13.5 + parent: 2 + - uid: 13928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-39.5 + parent: 2 + - uid: 13929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-34.5 + parent: 2 + - uid: 13930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-35.5 + parent: 2 + - uid: 13938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-34.5 + parent: 2 + - uid: 14023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,0.5 + parent: 2 + - uid: 14031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-60.5 + parent: 2 + - uid: 14045 + components: + - type: Transform + pos: -14.5,-45.5 + parent: 2 + - uid: 14065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-3.5 + parent: 2 + - uid: 14185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 2 + - uid: 14189 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 14190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 2 + - uid: 14201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 2 + - uid: 14504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-10.5 + parent: 2 + - uid: 14506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-13.5 + parent: 2 + - uid: 14507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-13.5 + parent: 2 + - uid: 14719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,20.5 + parent: 2 + - uid: 14729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,9.5 + parent: 2 + - uid: 14755 + components: + - type: Transform + pos: -3.5,-25.5 + parent: 2 + - uid: 14756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-25.5 + parent: 2 + - uid: 15923 + components: + - type: Transform + pos: 4.5,38.5 + parent: 2 + - uid: 15924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,38.5 + parent: 2 +- proto: DisposalJunction + entities: + - uid: 1877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-1.5 + parent: 2 + - uid: 5972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 2 + - uid: 13730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-1.5 + parent: 2 + - uid: 13783 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 13800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,14.5 + parent: 2 + - uid: 13841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-17.5 + parent: 2 + - uid: 13859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-35.5 + parent: 2 + - uid: 13901 + components: + - type: Transform + pos: -42.5,-30.5 + parent: 2 + - uid: 14032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 2 + - uid: 14034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,0.5 + parent: 2 + - uid: 14069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-1.5 + parent: 2 + - uid: 14097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-45.5 + parent: 2 + - uid: 14202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 +- proto: DisposalJunctionFlipped + entities: + - uid: 2442 + components: + - type: Transform + pos: -50.5,-10.5 + parent: 2 + - uid: 4468 + components: + - type: Transform + pos: -40.5,10.5 + parent: 2 + - uid: 6307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-12.5 + parent: 2 + - uid: 13770 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 + - uid: 13773 + components: + - type: Transform + pos: -24.5,14.5 + parent: 2 + - uid: 13836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-35.5 + parent: 2 + - uid: 13885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-35.5 + parent: 2 + - uid: 13889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-35.5 + parent: 2 + - uid: 13900 + components: + - type: Transform + pos: -42.5,-31.5 + parent: 2 + - uid: 13922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-35.5 + parent: 2 + - uid: 13972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 + - uid: 14026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 2 +- proto: DisposalPipe + entities: + - uid: 75 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 2 + - uid: 79 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-21.5 + parent: 2 + - uid: 204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 2 + - uid: 248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 2 + - uid: 303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-20.5 + parent: 2 + - uid: 720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-1.5 + parent: 2 + - uid: 1878 + components: + - type: Transform + pos: -24.5,16.5 + parent: 2 + - uid: 2100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-19.5 + parent: 2 + - uid: 2551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-34.5 + parent: 2 + - uid: 2594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,-34.5 + parent: 2 + - uid: 2611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-11.5 + parent: 2 + - uid: 2923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,-34.5 + parent: 2 + - uid: 3252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,-34.5 + parent: 2 + - uid: 3433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,-34.5 + parent: 2 + - uid: 3434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,-34.5 + parent: 2 + - uid: 3435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,-34.5 + parent: 2 + - uid: 3540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,-34.5 + parent: 2 + - uid: 3962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,-34.5 + parent: 2 + - uid: 3963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,-34.5 + parent: 2 + - uid: 5481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,-34.5 + parent: 2 + - uid: 5753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,10.5 + parent: 2 + - uid: 5865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,36.5 + parent: 2 + - uid: 6368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,-34.5 + parent: 2 + - uid: 6385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,-34.5 + parent: 2 + - uid: 7912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-1.5 + parent: 2 + - uid: 7913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-1.5 + parent: 2 + - uid: 7915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-1.5 + parent: 2 + - uid: 7950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,-1.5 + parent: 2 + - uid: 8798 + components: + - type: Transform + pos: -60.5,-23.5 + parent: 2 + - uid: 9411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-12.5 + parent: 2 + - uid: 9417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-12.5 + parent: 2 + - uid: 10151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-10.5 + parent: 2 + - uid: 10366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-1.5 + parent: 2 + - uid: 10566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-1.5 + parent: 2 + - uid: 10567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-1.5 + parent: 2 + - uid: 10568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-1.5 + parent: 2 + - uid: 11281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-34.5 + parent: 2 + - uid: 11282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-34.5 + parent: 2 + - uid: 11283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-34.5 + parent: 2 + - uid: 11300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,-34.5 + parent: 2 + - uid: 11301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-34.5 + parent: 2 + - uid: 11302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-34.5 + parent: 2 + - uid: 11304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,-34.5 + parent: 2 + - uid: 11317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,-34.5 + parent: 2 + - uid: 13004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-12.5 + parent: 2 + - uid: 13105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-12.5 + parent: 2 + - uid: 13214 + components: + - type: Transform + pos: -42.5,1.5 + parent: 2 + - uid: 13544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 2 + - uid: 13545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 2 + - uid: 13658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-17.5 + parent: 2 + - uid: 13659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-17.5 + parent: 2 + - uid: 13660 + components: + - type: Transform + pos: -53.5,-16.5 + parent: 2 + - uid: 13663 + components: + - type: Transform + pos: -53.5,-14.5 + parent: 2 + - uid: 13664 + components: + - type: Transform + pos: -53.5,-15.5 + parent: 2 + - uid: 13665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-1.5 + parent: 2 + - uid: 13666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-18.5 + parent: 2 + - uid: 13668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-17.5 + parent: 2 + - uid: 13670 + components: + - type: Transform + pos: -60.5,-22.5 + parent: 2 + - uid: 13672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-17.5 + parent: 2 + - uid: 13673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-13.5 + parent: 2 + - uid: 13674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-13.5 + parent: 2 + - uid: 13675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-12.5 + parent: 2 + - uid: 13678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-9.5 + parent: 2 + - uid: 13679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-8.5 + parent: 2 + - uid: 13680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-7.5 + parent: 2 + - uid: 13681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-6.5 + parent: 2 + - uid: 13682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-5.5 + parent: 2 + - uid: 13683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-4.5 + parent: 2 + - uid: 13684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-3.5 + parent: 2 + - uid: 13685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-2.5 + parent: 2 + - uid: 13693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-1.5 + parent: 2 + - uid: 13694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-1.5 + parent: 2 + - uid: 13695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-1.5 + parent: 2 + - uid: 13696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-1.5 + parent: 2 + - uid: 13697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-1.5 + parent: 2 + - uid: 13698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-1.5 + parent: 2 + - uid: 13699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-1.5 + parent: 2 + - uid: 13701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-1.5 + parent: 2 + - uid: 13702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-1.5 + parent: 2 + - uid: 13703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-1.5 + parent: 2 + - uid: 13704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-1.5 + parent: 2 + - uid: 13705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-1.5 + parent: 2 + - uid: 13706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-1.5 + parent: 2 + - uid: 13707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-1.5 + parent: 2 + - uid: 13708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-1.5 + parent: 2 + - uid: 13723 + components: + - type: Transform + pos: -41.5,4.5 + parent: 2 + - uid: 13724 + components: + - type: Transform + pos: -39.5,7.5 + parent: 2 + - uid: 13725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,8.5 + parent: 2 + - uid: 13726 + components: + - type: Transform + pos: -39.5,6.5 + parent: 2 + - uid: 13727 + components: + - type: Transform + pos: -39.5,5.5 + parent: 2 + - uid: 13728 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 + - uid: 13729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,3.5 + parent: 2 + - uid: 13731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-1.5 + parent: 2 + - uid: 13732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-1.5 + parent: 2 + - uid: 13733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-1.5 + parent: 2 + - uid: 13734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-1.5 + parent: 2 + - uid: 13735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-1.5 + parent: 2 + - uid: 13736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-1.5 + parent: 2 + - uid: 13737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-1.5 + parent: 2 + - uid: 13738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,3.5 + parent: 2 + - uid: 13739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,2.5 + parent: 2 + - uid: 13740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,0.5 + parent: 2 + - uid: 13741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-0.5 + parent: 2 + - uid: 13742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-1.5 + parent: 2 + - uid: 13743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-1.5 + parent: 2 + - uid: 13744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 2 + - uid: 13745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-1.5 + parent: 2 + - uid: 13746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 2 + - uid: 13747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-1.5 + parent: 2 + - uid: 13748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-1.5 + parent: 2 + - uid: 13749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-1.5 + parent: 2 + - uid: 13750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-1.5 + parent: 2 + - uid: 13751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-1.5 + parent: 2 + - uid: 13752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-1.5 + parent: 2 + - uid: 13753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 2 + - uid: 13754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 2 + - uid: 13755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-1.5 + parent: 2 + - uid: 13756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-1.5 + parent: 2 + - uid: 13757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-1.5 + parent: 2 + - uid: 13763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,17.5 + parent: 2 + - uid: 13764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,17.5 + parent: 2 + - uid: 13766 + components: + - type: Transform + pos: -24.5,4.5 + parent: 2 + - uid: 13767 + components: + - type: Transform + pos: -24.5,3.5 + parent: 2 + - uid: 13768 + components: + - type: Transform + pos: -24.5,2.5 + parent: 2 + - uid: 13769 + components: + - type: Transform + pos: -24.5,1.5 + parent: 2 + - uid: 13771 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 2 + - uid: 13772 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 + - uid: 13774 + components: + - type: Transform + pos: -24.5,13.5 + parent: 2 + - uid: 13775 + components: + - type: Transform + pos: -24.5,12.5 + parent: 2 + - uid: 13776 + components: + - type: Transform + pos: -24.5,11.5 + parent: 2 + - uid: 13778 + components: + - type: Transform + pos: -24.5,9.5 + parent: 2 + - uid: 13779 + components: + - type: Transform + pos: -24.5,8.5 + parent: 2 + - uid: 13780 + components: + - type: Transform + pos: -24.5,7.5 + parent: 2 + - uid: 13781 + components: + - type: Transform + pos: -24.5,6.5 + parent: 2 + - uid: 13782 + components: + - type: Transform + pos: -24.5,5.5 + parent: 2 + - uid: 13785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,10.5 + parent: 2 + - uid: 13788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,14.5 + parent: 2 + - uid: 13789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,14.5 + parent: 2 + - uid: 13790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,14.5 + parent: 2 + - uid: 13791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,14.5 + parent: 2 + - uid: 13792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,14.5 + parent: 2 + - uid: 13793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,14.5 + parent: 2 + - uid: 13794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,14.5 + parent: 2 + - uid: 13795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,14.5 + parent: 2 + - uid: 13796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,14.5 + parent: 2 + - uid: 13797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,15.5 + parent: 2 + - uid: 13798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,16.5 + parent: 2 + - uid: 13799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,17.5 + parent: 2 + - uid: 13806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,14.5 + parent: 2 + - uid: 13807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,14.5 + parent: 2 + - uid: 13808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,14.5 + parent: 2 + - uid: 13809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,12.5 + parent: 2 + - uid: 13811 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 2 + - uid: 13812 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 2 + - uid: 13813 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 2 + - uid: 13814 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 2 + - uid: 13815 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 2 + - uid: 13816 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 2 + - uid: 13817 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 13818 + components: + - type: Transform + pos: -24.5,-9.5 + parent: 2 + - uid: 13819 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 2 + - uid: 13820 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 2 + - uid: 13823 + components: + - type: Transform + pos: -58.5,-22.5 + parent: 2 + - uid: 13824 + components: + - type: Transform + pos: -58.5,-23.5 + parent: 2 + - uid: 13825 + components: + - type: Transform + pos: -58.5,-24.5 + parent: 2 + - uid: 13826 + components: + - type: Transform + pos: -58.5,-25.5 + parent: 2 + - uid: 13827 + components: + - type: Transform + pos: -58.5,-26.5 + parent: 2 + - uid: 13828 + components: + - type: Transform + pos: -58.5,-27.5 + parent: 2 + - uid: 13829 + components: + - type: Transform + pos: -58.5,-28.5 + parent: 2 + - uid: 13830 + components: + - type: Transform + pos: -58.5,-29.5 + parent: 2 + - uid: 13831 + components: + - type: Transform + pos: -58.5,-30.5 + parent: 2 + - uid: 13832 + components: + - type: Transform + pos: -58.5,-31.5 + parent: 2 + - uid: 13833 + components: + - type: Transform + pos: -58.5,-32.5 + parent: 2 + - uid: 13834 + components: + - type: Transform + pos: -58.5,-33.5 + parent: 2 + - uid: 13835 + components: + - type: Transform + pos: -58.5,-34.5 + parent: 2 + - uid: 13840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-36.5 + parent: 2 + - uid: 13844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-18.5 + parent: 2 + - uid: 13845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-35.5 + parent: 2 + - uid: 13846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-35.5 + parent: 2 + - uid: 13847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-35.5 + parent: 2 + - uid: 13848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-35.5 + parent: 2 + - uid: 13849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-35.5 + parent: 2 + - uid: 13850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-35.5 + parent: 2 + - uid: 13851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-35.5 + parent: 2 + - uid: 13852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-35.5 + parent: 2 + - uid: 13853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-35.5 + parent: 2 + - uid: 13854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-35.5 + parent: 2 + - uid: 13855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-35.5 + parent: 2 + - uid: 13856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-35.5 + parent: 2 + - uid: 13857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-35.5 + parent: 2 + - uid: 13858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-35.5 + parent: 2 + - uid: 13860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-35.5 + parent: 2 + - uid: 13861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-35.5 + parent: 2 + - uid: 13862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-35.5 + parent: 2 + - uid: 13863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-35.5 + parent: 2 + - uid: 13864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-35.5 + parent: 2 + - uid: 13865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-35.5 + parent: 2 + - uid: 13866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-35.5 + parent: 2 + - uid: 13867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-35.5 + parent: 2 + - uid: 13868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-35.5 + parent: 2 + - uid: 13869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-35.5 + parent: 2 + - uid: 13870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-35.5 + parent: 2 + - uid: 13871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-35.5 + parent: 2 + - uid: 13872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-35.5 + parent: 2 + - uid: 13873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-35.5 + parent: 2 + - uid: 13874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-35.5 + parent: 2 + - uid: 13875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-35.5 + parent: 2 + - uid: 13876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-35.5 + parent: 2 + - uid: 13877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-35.5 + parent: 2 + - uid: 13878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-35.5 + parent: 2 + - uid: 13879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-35.5 + parent: 2 + - uid: 13880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-35.5 + parent: 2 + - uid: 13881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-35.5 + parent: 2 + - uid: 13882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-35.5 + parent: 2 + - uid: 13883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-35.5 + parent: 2 + - uid: 13884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-35.5 + parent: 2 + - uid: 13886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-35.5 + parent: 2 + - uid: 13887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-35.5 + parent: 2 + - uid: 13888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-35.5 + parent: 2 + - uid: 13896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-29.5 + parent: 2 + - uid: 13897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-29.5 + parent: 2 + - uid: 13898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-29.5 + parent: 2 + - uid: 13899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-29.5 + parent: 2 + - uid: 13902 + components: + - type: Transform + pos: -42.5,-32.5 + parent: 2 + - uid: 13903 + components: + - type: Transform + pos: -42.5,-33.5 + parent: 2 + - uid: 13904 + components: + - type: Transform + pos: -42.5,-34.5 + parent: 2 + - uid: 13907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-31.5 + parent: 2 + - uid: 13908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-31.5 + parent: 2 + - uid: 13909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-31.5 + parent: 2 + - uid: 13912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-13.5 + parent: 2 + - uid: 13913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-13.5 + parent: 2 + - uid: 13914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 2 + - uid: 13915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-35.5 + parent: 2 + - uid: 13916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-35.5 + parent: 2 + - uid: 13917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-35.5 + parent: 2 + - uid: 13918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-35.5 + parent: 2 + - uid: 13919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-35.5 + parent: 2 + - uid: 13920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-35.5 + parent: 2 + - uid: 13921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-35.5 + parent: 2 + - uid: 13923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-36.5 + parent: 2 + - uid: 13924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-37.5 + parent: 2 + - uid: 13925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-38.5 + parent: 2 + - uid: 13926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-39.5 + parent: 2 + - uid: 13932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-34.5 + parent: 2 + - uid: 13933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-34.5 + parent: 2 + - uid: 13934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-34.5 + parent: 2 + - uid: 13935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-34.5 + parent: 2 + - uid: 13936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-34.5 + parent: 2 + - uid: 13937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-34.5 + parent: 2 + - uid: 13939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-33.5 + parent: 2 + - uid: 13940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-32.5 + parent: 2 + - uid: 13941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-31.5 + parent: 2 + - uid: 13942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-30.5 + parent: 2 + - uid: 13943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-29.5 + parent: 2 + - uid: 13944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-28.5 + parent: 2 + - uid: 13945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-27.5 + parent: 2 + - uid: 13946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-26.5 + parent: 2 + - uid: 13947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-25.5 + parent: 2 + - uid: 13948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-24.5 + parent: 2 + - uid: 13950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-56.5 + parent: 2 + - uid: 13951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-59.5 + parent: 2 + - uid: 13952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,0.5 + parent: 2 + - uid: 13953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,0.5 + parent: 2 + - uid: 13954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,0.5 + parent: 2 + - uid: 13955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,0.5 + parent: 2 + - uid: 13956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,0.5 + parent: 2 + - uid: 13957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,0.5 + parent: 2 + - uid: 13958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,0.5 + parent: 2 + - uid: 13959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,0.5 + parent: 2 + - uid: 13960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,0.5 + parent: 2 + - uid: 13961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,0.5 + parent: 2 + - uid: 13962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,0.5 + parent: 2 + - uid: 13963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,0.5 + parent: 2 + - uid: 13964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,0.5 + parent: 2 + - uid: 13965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 2 + - uid: 13966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,0.5 + parent: 2 + - uid: 13967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 2 + - uid: 13968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 2 + - uid: 13969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-57.5 + parent: 2 + - uid: 13970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 2 + - uid: 13971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 2 + - uid: 13973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + - uid: 13974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 + - uid: 13975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 2 + - uid: 13976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 2 + - uid: 13977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - uid: 13978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - uid: 13979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 2 + - uid: 13980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + - uid: 13981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + - uid: 13982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + - uid: 13983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 2 + - uid: 13984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 2 + - uid: 13985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,0.5 + parent: 2 + - uid: 13986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,0.5 + parent: 2 + - uid: 13987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,0.5 + parent: 2 + - uid: 13988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,0.5 + parent: 2 + - uid: 13989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,0.5 + parent: 2 + - uid: 13990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,0.5 + parent: 2 + - uid: 13991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,0.5 + parent: 2 + - uid: 13992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,0.5 + parent: 2 + - uid: 13993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,0.5 + parent: 2 + - uid: 13994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,0.5 + parent: 2 + - uid: 13995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,0.5 + parent: 2 + - uid: 13996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,0.5 + parent: 2 + - uid: 13997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,0.5 + parent: 2 + - uid: 13998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,0.5 + parent: 2 + - uid: 13999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,0.5 + parent: 2 + - uid: 14000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,0.5 + parent: 2 + - uid: 14001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,0.5 + parent: 2 + - uid: 14002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,0.5 + parent: 2 + - uid: 14003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,0.5 + parent: 2 + - uid: 14004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,0.5 + parent: 2 + - uid: 14005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,0.5 + parent: 2 + - uid: 14006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,0.5 + parent: 2 + - uid: 14007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,0.5 + parent: 2 + - uid: 14008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,1.5 + parent: 2 + - uid: 14009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,2.5 + parent: 2 + - uid: 14010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,3.5 + parent: 2 + - uid: 14011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,4.5 + parent: 2 + - uid: 14012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,5.5 + parent: 2 + - uid: 14013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,6.5 + parent: 2 + - uid: 14014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,7.5 + parent: 2 + - uid: 14015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,8.5 + parent: 2 + - uid: 14016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,9.5 + parent: 2 + - uid: 14017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,10.5 + parent: 2 + - uid: 14018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,11.5 + parent: 2 + - uid: 14019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,12.5 + parent: 2 + - uid: 14020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,13.5 + parent: 2 + - uid: 14021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,14.5 + parent: 2 + - uid: 14024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-55.5 + parent: 2 + - uid: 14029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-1.5 + parent: 2 + - uid: 14030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-0.5 + parent: 2 + - uid: 14035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-58.5 + parent: 2 + - uid: 14036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-54.5 + parent: 2 + - uid: 14037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-53.5 + parent: 2 + - uid: 14038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-52.5 + parent: 2 + - uid: 14039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-51.5 + parent: 2 + - uid: 14040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-50.5 + parent: 2 + - uid: 14041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-49.5 + parent: 2 + - uid: 14042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-48.5 + parent: 2 + - uid: 14043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-47.5 + parent: 2 + - uid: 14044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-46.5 + parent: 2 + - uid: 14047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-45.5 + parent: 2 + - uid: 14048 + components: + - type: Transform + pos: -16.5,-44.5 + parent: 2 + - uid: 14049 + components: + - type: Transform + pos: -16.5,-43.5 + parent: 2 + - uid: 14050 + components: + - type: Transform + pos: -16.5,-42.5 + parent: 2 + - uid: 14051 + components: + - type: Transform + pos: -16.5,-41.5 + parent: 2 + - uid: 14052 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 2 + - uid: 14053 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 2 + - uid: 14054 + components: + - type: Transform + pos: -16.5,-38.5 + parent: 2 + - uid: 14055 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 2 + - uid: 14056 + components: + - type: Transform + pos: -16.5,-36.5 + parent: 2 + - uid: 14067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-2.5 + parent: 2 + - uid: 14117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 2 + - uid: 14176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 2 + - uid: 14186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 2 + - uid: 14187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 2 + - uid: 14188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 2 + - uid: 14192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 2 + - uid: 14193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 2 + - uid: 14198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 2 + - uid: 14199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 2 + - uid: 14200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 2 + - uid: 14203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 2 + - uid: 14508 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - uid: 14509 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 2 + - uid: 14510 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 2 + - uid: 14511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-10.5 + parent: 2 + - uid: 14512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 2 + - uid: 14513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 2 + - uid: 14514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 2 + - uid: 14515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 2 + - uid: 14516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-12.5 + parent: 2 + - uid: 14517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-11.5 + parent: 2 + - uid: 14518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-13.5 + parent: 2 + - uid: 14519 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 2 + - uid: 14720 + components: + - type: Transform + pos: -40.5,19.5 + parent: 2 + - uid: 14721 + components: + - type: Transform + pos: -40.5,18.5 + parent: 2 + - uid: 14722 + components: + - type: Transform + pos: -40.5,17.5 + parent: 2 + - uid: 14723 + components: + - type: Transform + pos: -40.5,16.5 + parent: 2 + - uid: 14724 + components: + - type: Transform + pos: -40.5,15.5 + parent: 2 + - uid: 14725 + components: + - type: Transform + pos: -40.5,14.5 + parent: 2 + - uid: 14726 + components: + - type: Transform + pos: -40.5,13.5 + parent: 2 + - uid: 14727 + components: + - type: Transform + pos: -40.5,12.5 + parent: 2 + - uid: 14728 + components: + - type: Transform + pos: -40.5,11.5 + parent: 2 + - uid: 14733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 2 + - uid: 14734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,13.5 + parent: 2 + - uid: 14739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-34.5 + parent: 2 + - uid: 14740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-33.5 + parent: 2 + - uid: 14741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-32.5 + parent: 2 + - uid: 14742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-31.5 + parent: 2 + - uid: 14743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-30.5 + parent: 2 + - uid: 14744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-29.5 + parent: 2 + - uid: 14745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-28.5 + parent: 2 + - uid: 14746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-27.5 + parent: 2 + - uid: 14747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-26.5 + parent: 2 + - uid: 14748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-25.5 + parent: 2 + - uid: 14749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-25.5 + parent: 2 + - uid: 14750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-25.5 + parent: 2 + - uid: 14751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-25.5 + parent: 2 + - uid: 14752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-25.5 + parent: 2 + - uid: 14753 + components: + - type: Transform + pos: -9.5,-26.5 + parent: 2 + - uid: 14754 + components: + - type: Transform + pos: -9.5,-27.5 + parent: 2 + - uid: 15922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,37.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-2.5 + parent: 2 + - uid: 5683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,10.5 + parent: 2 + - uid: 6714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-10.5 + parent: 2 + - uid: 7993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-12.5 + parent: 2 + - uid: 8452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,9.5 + parent: 2 + - uid: 10564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,-2.5 + parent: 2 + - uid: 11284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-34.5 + parent: 2 + - uid: 11319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,-34.5 + parent: 2 + - uid: 12566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,35.5 + parent: 2 + - uid: 13691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-19.5 + parent: 2 + - uid: 13759 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 13760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,17.5 + parent: 2 + - uid: 13761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-60.5 + parent: 2 + - uid: 13786 + components: + - type: Transform + pos: -26.5,11.5 + parent: 2 + - uid: 13803 + components: + - type: Transform + pos: -15.5,19.5 + parent: 2 + - uid: 13810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,12.5 + parent: 2 + - uid: 13839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-37.5 + parent: 2 + - uid: 13890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-36.5 + parent: 2 + - uid: 13892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-29.5 + parent: 2 + - uid: 13893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-29.5 + parent: 2 + - uid: 13894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-31.5 + parent: 2 + - uid: 13895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-31.5 + parent: 2 + - uid: 13911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 2 + - uid: 13927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-39.5 + parent: 2 + - uid: 13949 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 2 + - uid: 14022 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 + - uid: 14028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 2 + - uid: 14033 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - uid: 14064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-3.5 + parent: 2 + - uid: 14206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-46.5 + parent: 2 + - uid: 14520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-15.5 + parent: 2 + - uid: 14718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,20.5 + parent: 2 + - uid: 14757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-28.5 + parent: 2 +- proto: DisposalUnit + entities: + - uid: 3638 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 2 + - uid: 5463 + components: + - type: Transform + pos: -15.5,19.5 + parent: 2 + - uid: 5536 + components: + - type: Transform + pos: -12.5,12.5 + parent: 2 + - uid: 5846 + components: + - type: Transform + pos: 4.5,35.5 + parent: 2 + - uid: 6482 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 2 + - uid: 6710 + components: + - type: Transform + pos: -20.5,-13.5 + parent: 2 + - uid: 6825 + components: + - type: Transform + pos: -30.5,-12.5 + parent: 2 + - uid: 6965 + components: + - type: Transform + pos: -48.5,-10.5 + parent: 2 + - uid: 7098 + components: + - type: Transform + pos: -21.5,-44.5 + parent: 2 + - uid: 7118 + components: + - type: Transform + pos: -13.5,-60.5 + parent: 2 + - uid: 7980 + components: + - type: Transform + pos: -12.5,-36.5 + parent: 2 + - uid: 8063 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 + - uid: 8064 + components: + - type: Transform + pos: -51.5,-2.5 + parent: 2 + - uid: 8086 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 2 + - uid: 8087 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - uid: 8106 + components: + - type: Transform + pos: -21.5,17.5 + parent: 2 + - uid: 8259 + components: + - type: Transform + pos: 16.5,16.5 + parent: 2 + - uid: 8847 + components: + - type: Transform + pos: -9.5,-28.5 + parent: 2 + - uid: 9032 + components: + - type: Transform + pos: -51.5,-19.5 + parent: 2 + - uid: 9206 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 2 + - uid: 10378 + components: + - type: Transform + pos: -77.5,-2.5 + parent: 2 + - uid: 11197 + components: + - type: Transform + pos: -56.5,-37.5 + parent: 2 + - uid: 11285 + components: + - type: Transform + pos: -65.5,-34.5 + parent: 2 + - uid: 11382 + components: + - type: Transform + pos: -87.5,-34.5 + parent: 2 + - uid: 12838 + components: + - type: Transform + pos: -26.5,11.5 + parent: 2 + - uid: 13758 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 14063 + components: + - type: Transform + pos: -58.5,-3.5 + parent: 2 + - uid: 14205 + components: + - type: Transform + pos: -16.5,-46.5 + parent: 2 + - uid: 14570 + components: + - type: Transform + pos: -39.5,20.5 + parent: 2 + - uid: 15989 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 + - uid: 16062 + components: + - type: Transform + pos: -38.5,10.5 + parent: 2 + - uid: 16135 + components: + - type: Transform + pos: 10.5,27.5 + parent: 2 +- proto: DisposalYJunction + entities: + - uid: 301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-21.5 + parent: 2 + - uid: 13686 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 + - uid: 13787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-1.5 + parent: 2 + - uid: 13891 + components: + - type: Transform + pos: -42.5,-29.5 + parent: 2 +- proto: DogBed + entities: + - uid: 5486 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 12922 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 16224 + components: + - type: Transform + pos: 4.5,32.5 + parent: 2 +- proto: DoorElectronics + entities: + - uid: 14468 + components: + - type: Transform + pos: -52.441704,3.453683 + parent: 2 +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 10751 + components: + - type: Transform + pos: -71.43442,-9.37114 + parent: 2 +- proto: DresserCaptainFilled + entities: + - uid: 5535 + components: + - type: Transform + pos: -15.5,10.5 + parent: 2 +- proto: DresserChiefEngineerFilled + entities: + - uid: 6371 + components: + - type: Transform + pos: -30.5,7.5 + parent: 2 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 6861 + components: + - type: Transform + pos: -48.5,-7.5 + parent: 2 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 1471 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 8727 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 +- proto: DresserQuarterMasterFilled + entities: + - uid: 6465 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 +- proto: DresserResearchDirectorFilled + entities: + - uid: 7084 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 2 +- proto: DrinkBeerBottleFull + entities: + - uid: 5459 + components: + - type: Transform + pos: 36.529762,-15.330887 + parent: 2 + - uid: 5610 + components: + - type: Transform + pos: -5.7289104,19.821692 + parent: 2 + - uid: 5699 + components: + - type: Transform + pos: -5.6409683,19.012453 + parent: 2 + - uid: 6522 + components: + - type: Transform + pos: 3.6842332,-32.292625 + parent: 2 + - uid: 6711 + components: + - type: Transform + pos: -10.309409,-9.0238695 + parent: 2 + - uid: 8956 + components: + - type: Transform + pos: -8.075498,-23.692085 + parent: 2 + - uid: 8957 + components: + - type: Transform + pos: -7.9149094,-23.5466 + parent: 2 + - uid: 9398 + components: + - type: Transform + pos: -10.543784,-9.2894945 + parent: 2 + - uid: 16161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.508728,14.260138 + parent: 2 + - uid: 16166 + components: + - type: Transform + pos: -54.784782,14.552605 + parent: 2 +- proto: DrinkBeerGrowler + entities: + - uid: 14314 + components: + - type: Transform + pos: -61.686985,-14.027937 + parent: 2 +- proto: DrinkBottleBeer + entities: + - uid: 12608 + components: + - type: Transform + pos: -36.83943,34.96187 + parent: 2 +- proto: DrinkBottleOfNothingFull + entities: + - uid: 1542 + components: + - type: Transform + parent: 1541 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1581 + components: + - type: Transform + parent: 1541 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: DrinkBottleVodka + entities: + - uid: 13611 + components: + - type: Transform + pos: -64.153946,-25.572588 + parent: 2 +- proto: DrinkCoffeeLiqueurBottleFull + entities: + - uid: 9061 + components: + - type: Transform + pos: -46.01513,-4.156159 + parent: 2 +- proto: DrinkCognacBottleFull + entities: + - uid: 1519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.523544,-15.701113 + parent: 2 + - uid: 9060 + components: + - type: Transform + pos: -45.72259,-4.2097373 + parent: 2 + - uid: 13187 + components: + - type: Transform + pos: -36.48755,-50.894077 + parent: 2 +- proto: DrinkDoctorsDelightGlass + entities: + - uid: 13034 + components: + - type: Transform + pos: -46.06049,-7.274932 + parent: 2 +- proto: DrinkGlass + entities: + - uid: 6695 + components: + - type: Transform + pos: -8.207346,-5.4956627 + parent: 2 + - uid: 6696 + components: + - type: Transform + pos: -8.418283,-5.4956627 + parent: 2 + - uid: 6697 + components: + - type: Transform + pos: -8.652658,-5.4956627 + parent: 2 + - uid: 6698 + components: + - type: Transform + pos: -8.816721,-5.23785 + parent: 2 + - uid: 6699 + components: + - type: Transform + pos: -8.652658,-5.23785 + parent: 2 + - uid: 6700 + components: + - type: Transform + pos: -8.441721,-5.23785 + parent: 2 + - uid: 8235 + components: + - type: Transform + pos: -46.519432,-4.4168715 + parent: 2 + - uid: 8236 + components: + - type: Transform + pos: -46.661457,-4.2687564 + parent: 2 +- proto: DrinkHotCoffee + entities: + - uid: 5578 + components: + - type: Transform + pos: -17.40884,9.561233 + parent: 2 + - uid: 13065 + components: + - type: Transform + pos: 2.5770772,19.724388 + parent: 2 + - uid: 13191 + components: + - type: Transform + pos: -36.766674,-51.27749 + parent: 2 + - uid: 13193 + components: + - type: Transform + pos: -36.22285,-51.371387 + parent: 2 +- proto: DrinkLithiumFlask + entities: + - uid: 9406 + components: + - type: Transform + pos: -8.486398,-10.519755 + parent: 2 +- proto: DrinkManlyDorfGlass + entities: + - uid: 13045 + components: + - type: Transform + pos: 18.563393,8.394553 + parent: 2 +- proto: DrinkMilkCarton + entities: + - uid: 994 + components: + - type: Transform + pos: -0.699317,36.846256 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 6708 + components: + - type: Transform + pos: -16.878538,-13.458822 + parent: 2 + - uid: 9056 + components: + - type: Transform + pos: -45.338024,-4.29919 + parent: 2 + - uid: 13387 + components: + - type: Transform + pos: -16.8869,-13.195456 + parent: 2 + - uid: 15645 + components: + - type: Transform + parent: 15640 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15647 + components: + - type: Transform + parent: 15640 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15962 + components: + - type: Transform + pos: -35.477757,-52.255817 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: DrinkMREFlask + entities: + - uid: 1118 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1119 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1120 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1903 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1995 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 2071 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 5733 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: DrinkMugMetal + entities: + - uid: 12842 + components: + - type: Transform + pos: -30.14628,11.769638 + parent: 2 + - uid: 12843 + components: + - type: Transform + pos: -30.444746,11.496373 + parent: 2 + - uid: 15655 + components: + - type: Transform + pos: 7.6545677,42.455326 + parent: 2 + - uid: 15656 + components: + - type: Transform + pos: 7.0649214,42.674362 + parent: 2 + - uid: 15658 + components: + - type: Transform + pos: 7.293431,42.422215 + parent: 2 +- proto: DrinkRumBottleFull + entities: + - uid: 5613 + components: + - type: Transform + pos: -10.150692,10.691351 + parent: 2 + - uid: 6007 + components: + - type: Transform + pos: -26.23877,15.784417 + parent: 2 + - uid: 8735 + components: + - type: Transform + pos: -26.192966,16.012506 + parent: 2 +- proto: DrinkShotGlass + entities: + - uid: 2586 + components: + - type: Transform + pos: 7.7266855,-4.490795 + parent: 2 + - uid: 2587 + components: + - type: Transform + pos: 7.490158,-4.43842 + parent: 2 + - uid: 8521 + components: + - type: Transform + pos: 4.7529325,-4.466395 + parent: 2 + - uid: 8522 + components: + - type: Transform + pos: 4.4720497,-4.4298997 + parent: 2 +- proto: DrinkTeapot + entities: + - uid: 558 + components: + - type: Transform + pos: 7.6197658,42.89484 + parent: 2 +- proto: DrinkTequilaSunriseGlass + entities: + - uid: 6382 + components: + - type: Transform + pos: -30.231268,5.619775 + parent: 2 +- proto: DrinkTheMartinez + entities: + - uid: 14088 + components: + - type: Transform + pos: -36.509956,-51.679047 + parent: 2 +- proto: DrinkVodkaBottleFull + entities: + - uid: 15530 + components: + - type: Transform + pos: -60.242645,33.324757 + parent: 2 +- proto: DrinkWaterBottleFull + entities: + - uid: 8523 + components: + - type: Transform + pos: 4.555747,-4.22228 + parent: 2 + - uid: 8524 + components: + - type: Transform + pos: 7.593604,-4.2226486 + parent: 2 +- proto: EmergencyLight + entities: + - uid: 6413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-15.5 + parent: 2 + - uid: 9599 + components: + - type: Transform + pos: -13.5,21.5 + parent: 2 + - uid: 9605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,10.5 + parent: 2 + - uid: 11291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-42.5 + parent: 2 + - uid: 11414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,13.5 + parent: 2 + - uid: 12401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,11.5 + parent: 2 + - uid: 12559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 2 + - uid: 12565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,19.5 + parent: 2 + - uid: 12569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-1.5 + parent: 2 + - uid: 12571 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - uid: 12574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-1.5 + parent: 2 + - uid: 12579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,11.5 + parent: 2 + - uid: 12591 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 + - uid: 12594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 2 + - uid: 12605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,14.5 + parent: 2 + - uid: 12606 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 + - uid: 12622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-16.5 + parent: 2 + - uid: 12623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 2 + - uid: 12624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-10.5 + parent: 2 + - uid: 12630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-22.5 + parent: 2 + - uid: 12631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-25.5 + parent: 2 + - uid: 12633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-35.5 + parent: 2 + - uid: 12641 + components: + - type: Transform + pos: -30.5,-33.5 + parent: 2 + - uid: 12642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-35.5 + parent: 2 + - uid: 12643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-34.5 + parent: 2 + - uid: 12646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-23.5 + parent: 2 + - uid: 12657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,-35.5 + parent: 2 + - uid: 12662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-34.5 + parent: 2 + - uid: 12663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-39.5 + parent: 2 + - uid: 12665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-23.5 + parent: 2 + - uid: 12668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-8.5 + parent: 2 + - uid: 12671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-1.5 + parent: 2 + - uid: 12674 + components: + - type: Transform + pos: -48.5,0.5 + parent: 2 + - uid: 12686 + components: + - type: Transform + pos: -72.5,0.5 + parent: 2 + - uid: 12697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,8.5 + parent: 2 + - uid: 12719 + components: + - type: Transform + pos: -42.5,9.5 + parent: 2 + - uid: 12737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-11.5 + parent: 2 + - uid: 12742 + components: + - type: Transform + pos: -27.5,-27.5 + parent: 2 + - uid: 12749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-39.5 + parent: 2 + - uid: 12762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-44.5 + parent: 2 + - uid: 12765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-39.5 + parent: 2 + - uid: 12768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-53.5 + parent: 2 + - uid: 12778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-68.5 + parent: 2 + - uid: 12781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-8.5 + parent: 2 + - uid: 13076 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 2 + - uid: 13103 + components: + - type: Transform + pos: -13.5,-33.5 + parent: 2 + - uid: 14672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,24.5 + parent: 2 + - uid: 15246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,36.5 + parent: 2 + - uid: 15249 + components: + - type: Transform + pos: -73.5,30.5 + parent: 2 + - uid: 15286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,22.5 + parent: 2 +- proto: EmergencyMedipen + entities: + - uid: 6925 + components: + - type: Transform + pos: -35.514183,-19.384138 + parent: 2 + - uid: 6926 + components: + - type: Transform + pos: -35.500084,-19.533928 + parent: 2 + - uid: 6945 + components: + - type: Transform + pos: -35.501785,-19.213305 + parent: 2 +- proto: EmergencyOxygenTankFilled + entities: + - uid: 15921 + components: + - type: Transform + pos: 3.5302439,46.49772 + parent: 2 +- proto: Emitter + entities: + - uid: 4793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,33.5 + parent: 2 + - uid: 5637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,33.5 + parent: 2 +- proto: EncryptionKeyBinary + entities: + - uid: 11244 + components: + - type: Transform + parent: 11242 + - type: Physics + canCollide: False +- proto: EncryptionKeyCargo + entities: + - uid: 11233 + components: + - type: Transform + parent: 11232 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommand + entities: + - uid: 11231 + components: + - type: Transform + parent: 11230 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommon + entities: + - uid: 11246 + components: + - type: Transform + parent: 11245 + - type: Physics + canCollide: False +- proto: EncryptionKeyEngineering + entities: + - uid: 11235 + components: + - type: Transform + parent: 11234 + - type: Physics + canCollide: False +- proto: EncryptionKeyMedical + entities: + - uid: 11239 + components: + - type: Transform + parent: 11238 + - type: Physics + canCollide: False +- proto: EncryptionKeyScience + entities: + - uid: 11243 + components: + - type: Transform + parent: 11242 + - type: Physics + canCollide: False +- proto: EncryptionKeySecurity + entities: + - uid: 11237 + components: + - type: Transform + parent: 11236 + - type: Physics + canCollide: False +- proto: EncryptionKeyService + entities: + - uid: 11241 + components: + - type: Transform + parent: 11240 + - type: Physics + canCollide: False +- proto: ExosuitFabricator + entities: + - uid: 7237 + components: + - type: Transform + pos: -23.5,-40.5 + parent: 2 +- proto: ExtendedEmergencyOxygenTankFilled + entities: + - uid: 9886 + components: + - type: Transform + pos: 13.522701,-12.505081 + parent: 2 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 6421 + components: + - type: Transform + pos: -42.5,5.5 + parent: 2 + - uid: 6422 + components: + - type: Transform + pos: -33.5,11.5 + parent: 2 + - uid: 6423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,6.5 + parent: 2 + - uid: 6425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,8.5 + parent: 2 + - uid: 6501 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 2 + - uid: 6591 + components: + - type: Transform + pos: -1.5,-39.5 + parent: 2 + - uid: 7122 + components: + - type: Transform + pos: -17.5,-44.5 + parent: 2 + - uid: 7123 + components: + - type: Transform + pos: -2.5,-36.5 + parent: 2 + - uid: 7129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-15.5 + parent: 2 + - uid: 7130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,13.5 + parent: 2 + - uid: 7131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,12.5 + parent: 2 + - uid: 7132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-40.5 + parent: 2 + - uid: 8003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 2 + - uid: 9497 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - uid: 12535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-2.5 + parent: 2 + - uid: 12536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,1.5 + parent: 2 + - uid: 12537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-22.5 + parent: 2 + - uid: 12538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-36.5 + parent: 2 + - uid: 12539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-41.5 + parent: 2 + - uid: 12540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-32.5 + parent: 2 + - uid: 12541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-28.5 + parent: 2 + - uid: 12543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 2 + - uid: 12545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,12.5 + parent: 2 + - uid: 12546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,2.5 + parent: 2 + - uid: 12547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-32.5 + parent: 2 + - uid: 13035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-2.5 + parent: 2 + - uid: 13036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,16.5 + parent: 2 + - uid: 13037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-2.5 + parent: 2 + - uid: 13038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-24.5 + parent: 2 + - uid: 16386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,31.5 + parent: 2 +- proto: FaxMachineBase + entities: + - uid: 978 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 + - uid: 5464 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - type: FaxMachine + name: Мостик + - uid: 6521 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 2 + - type: FaxMachine + name: Отдел снабжения + - uid: 6815 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - type: FaxMachine + name: Медицинский отдел + - uid: 7136 + components: + - type: Transform + pos: -21.5,-41.5 + parent: 2 + - type: FaxMachine + name: Научный отдел + - uid: 8729 + components: + - type: Transform + pos: 1.5,20.5 + parent: 2 + - uid: 8796 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 2 + - type: FaxMachine + name: Библиотека + - uid: 11272 + components: + - type: Transform + pos: -65.5,-31.5 + parent: 2 + - type: FaxMachine + name: Телекоммуникация + - uid: 13052 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 + - type: FaxMachine + name: Суд + - uid: 13822 + components: + - type: Transform + pos: -31.5,10.5 + parent: 2 + - type: FaxMachine + name: Инженерный отдел +- proto: FaxMachineCaptain + entities: + - uid: 13714 + components: + - type: MetaData + name: факс дальнего действия + - type: Transform + pos: -12.5,10.5 + parent: 2 + - type: FaxMachine + name: Конференц зал +- proto: FigureSpawner + entities: + - uid: 5517 + components: + - type: Transform + pos: -32.5,40.5 + parent: 2 + - uid: 14818 + components: + - type: Transform + pos: -7.5,21.5 + parent: 2 +- proto: filingCabinet + entities: + - uid: 8392 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 +- proto: FireAlarm + entities: + - uid: 5556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,13.5 + parent: 2 + - uid: 5662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 187 + - 51 + - 45 + - 995 + - 1476 + - 990 + - 7946 + - 7977 + - uid: 5989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 8054 + - 8053 + - 8052 + - 16110 + - 16109 + - 16108 + - uid: 8049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 16110 + - 16109 + - 16108 + - uid: 12927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 7934 + - 7933 + - 7935 + - 154 + - 155 + - 7936 + - 174 + - 68 + - 12960 + - uid: 12932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 151 + - 162 + - 1262 + - 1263 + - uid: 12934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 841 + - 1011 + - 1020 + - 1262 + - 1263 + - 187 + - 45 + - 51 + - 186 + - 40 + - 7009 + - 7008 + - uid: 12946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 202 + - 185 + - 995 + - 1476 + - 990 + - 1291 + - 15 + - 951 + - 956 + - 1299 + - 12947 + - uid: 12949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 951 + - 1299 + - 956 + - 24 + - 9 + - 13 + - uid: 12951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 24 + - 9 + - 13 + - 27 + - 1331 + - 1330 + - 1329 + - uid: 12954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-23.5 + parent: 2 + - type: DeviceList + devices: + - 721 + - 726 + - 729 + - 7933 + - 7934 + - 7935 + - uid: 12957 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 721 + - 726 + - 729 + - 7028 + - 7029 + - 1291 + - 15 + - 7034 + - 7035 + - 7036 + - 7037 + - uid: 12962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-25.5 + parent: 2 + - type: DeviceList + devices: + - 155 + - 154 + - 7936 + - 158 + - 157 + - 159 + - 12964 + - 12966 + - uid: 12963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 2 + - type: DeviceList + devices: + - 186 + - 40 + - 157 + - 158 + - 159 + - uid: 12967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 68 + - 174 + - 250 + - 8601 + - 8595 + - 74 + - 63 + - 12970 + - 5894 + - 12971 + - uid: 12973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-26.5 + parent: 2 + - type: DeviceList + devices: + - 74 + - 12972 + - 63 + - uid: 12976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 1259 + - 1248 + - 1260 + - 1020 + - 1011 + - 841 + - uid: 12978 + components: + - type: Transform + pos: -57.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 1260 + - 1248 + - 1259 + - 8052 + - 8053 + - 8054 +- proto: FireAxeCabinetFilled + entities: + - uid: 4851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,23.5 + parent: 2 + - uid: 12721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,16.5 + parent: 2 +- proto: FireExtinguisher + entities: + - uid: 7180 + components: + - type: Transform + pos: -16.574741,-62.98323 + parent: 2 +- proto: Firelock + entities: + - uid: 6800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 2 + - uid: 6801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-27.5 + parent: 2 +- proto: FirelockEdge + entities: + - uid: 7946 + components: + - type: Transform + pos: -9.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5662 + - uid: 7977 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5662 + - uid: 16398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,30.5 + parent: 2 +- proto: FirelockGlass + entities: + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12949 + - 12951 + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12949 + - 12951 + - uid: 15 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12946 + - 12957 + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,16.5 + parent: 2 + - uid: 24 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12949 + - 12951 + - uid: 27 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12951 + - uid: 40 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12934 + - 12963 + - uid: 45 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12934 + - 5662 + - uid: 51 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12934 + - 5662 + - uid: 63 + components: + - type: Transform + pos: -52.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12967 + - 12973 + - uid: 68 + components: + - type: Transform + pos: -35.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12927 + - 12967 + - uid: 74 + components: + - type: Transform + pos: -51.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12967 + - 12973 + - uid: 151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12932 + - uid: 154 + components: + - type: Transform + pos: -23.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12927 + - 12962 + - uid: 155 + components: + - type: Transform + pos: -22.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12927 + - 12962 + - uid: 157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12963 + - 12962 + - uid: 158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12963 + - 12962 + - uid: 159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12963 + - 12962 + - uid: 162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12932 + - uid: 174 + components: + - type: Transform + pos: -35.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12927 + - 12967 + - uid: 184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,16.5 + parent: 2 + - uid: 185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12946 + - uid: 186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12934 + - 12963 + - uid: 187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12934 + - 5662 + - uid: 202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12946 + - uid: 224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,16.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: -35.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12967 + - uid: 307 + components: + - type: Transform + pos: -37.5,-22.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: -16.5,-43.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: -13.5,-43.5 + parent: 2 + - uid: 353 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 2 + - uid: 361 + components: + - type: Transform + pos: 5.5,24.5 + parent: 2 + - uid: 377 + components: + - type: Transform + pos: -22.5,-42.5 + parent: 2 + - uid: 409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,31.5 + parent: 2 + - uid: 444 + components: + - type: Transform + pos: -10.5,-43.5 + parent: 2 + - uid: 721 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12954 + - 12957 + - uid: 726 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12954 + - 12957 + - uid: 729 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12954 + - 12957 + - uid: 806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-12.5 + parent: 2 + - uid: 841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12934 + - 12976 + - uid: 951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12946 + - 12949 + - uid: 956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12946 + - 12949 + - uid: 990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5662 + - 12946 + - uid: 995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5662 + - 12946 + - uid: 1011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12934 + - 12976 + - uid: 1020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12934 + - 12976 + - uid: 1248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12976 + - 12978 + - uid: 1259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12976 + - 12978 + - uid: 1260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12976 + - 12978 + - uid: 1262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12934 + - 12932 + - uid: 1263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12934 + - 12932 + - uid: 1291 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12946 + - 12957 + - uid: 1299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12946 + - 12949 + - uid: 1329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12951 + - uid: 1330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12951 + - uid: 1331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12951 + - uid: 1476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5662 + - 12946 + - uid: 2090 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - uid: 2104 + components: + - type: Transform + pos: -50.5,7.5 + parent: 2 + - uid: 5557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,15.5 + parent: 2 + - uid: 5558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,14.5 + parent: 2 + - uid: 5559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,15.5 + parent: 2 + - uid: 5560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,14.5 + parent: 2 + - uid: 5561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,16.5 + parent: 2 + - uid: 5563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,16.5 + parent: 2 + - uid: 5564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,13.5 + parent: 2 + - uid: 5565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,13.5 + parent: 2 + - uid: 5566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,6.5 + parent: 2 + - uid: 5567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,11.5 + parent: 2 + - uid: 5568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,8.5 + parent: 2 + - uid: 5894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12967 + - uid: 6333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,18.5 + parent: 2 + - uid: 6334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,21.5 + parent: 2 + - uid: 6335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,21.5 + parent: 2 + - uid: 6336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 2 + - uid: 6337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 2 + - uid: 6338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,3.5 + parent: 2 + - uid: 6339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,6.5 + parent: 2 + - uid: 6340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 2 + - uid: 6341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,10.5 + parent: 2 + - uid: 6345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,28.5 + parent: 2 + - uid: 6346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,28.5 + parent: 2 + - uid: 6348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,2.5 + parent: 2 + - uid: 6349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,2.5 + parent: 2 + - uid: 6350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,3.5 + parent: 2 + - uid: 6351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,1.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,3.5 + parent: 2 + - uid: 6354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,9.5 + parent: 2 + - uid: 6484 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 6802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-29.5 + parent: 2 + - uid: 6803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-29.5 + parent: 2 + - uid: 6804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-28.5 + parent: 2 + - uid: 6805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-28.5 + parent: 2 + - uid: 6806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-26.5 + parent: 2 + - uid: 6808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-23.5 + parent: 2 + - uid: 6809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-23.5 + parent: 2 + - uid: 6810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 2 + - uid: 6811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-30.5 + parent: 2 + - uid: 6880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-9.5 + parent: 2 + - uid: 6881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-11.5 + parent: 2 + - uid: 6919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-12.5 + parent: 2 + - uid: 7005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-12.5 + parent: 2 + - uid: 7006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-12.5 + parent: 2 + - uid: 7007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-7.5 + parent: 2 + - uid: 7008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12934 + - uid: 7009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12934 + - uid: 7010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 2 + - uid: 7011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-16.5 + parent: 2 + - uid: 7012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-19.5 + parent: 2 + - uid: 7013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-12.5 + parent: 2 + - uid: 7015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-8.5 + parent: 2 + - uid: 7016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-8.5 + parent: 2 + - uid: 7017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-11.5 + parent: 2 + - uid: 7024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-38.5 + parent: 2 + - uid: 7025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-38.5 + parent: 2 + - uid: 7026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-36.5 + parent: 2 + - uid: 7027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-36.5 + parent: 2 + - uid: 7028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12957 + - uid: 7029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12957 + - uid: 7030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 7031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 2 + - uid: 7032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 2 + - uid: 7033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 2 + - uid: 7034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12957 + - uid: 7035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12957 + - uid: 7036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12957 + - uid: 7037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12957 + - uid: 7038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 2 + - uid: 7041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-12.5 + parent: 2 + - uid: 7042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 2 + - uid: 7043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 2 + - uid: 7045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-4.5 + parent: 2 + - uid: 7046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-3.5 + parent: 2 + - uid: 7196 + components: + - type: Transform + pos: -22.5,-43.5 + parent: 2 + - uid: 7197 + components: + - type: Transform + pos: -15.5,-47.5 + parent: 2 + - uid: 7198 + components: + - type: Transform + pos: -14.5,-47.5 + parent: 2 + - uid: 7199 + components: + - type: Transform + pos: -14.5,-50.5 + parent: 2 + - uid: 7200 + components: + - type: Transform + pos: -15.5,-50.5 + parent: 2 + - uid: 7201 + components: + - type: Transform + pos: -15.5,-54.5 + parent: 2 + - uid: 7202 + components: + - type: Transform + pos: -14.5,-54.5 + parent: 2 + - uid: 7203 + components: + - type: Transform + pos: -14.5,-58.5 + parent: 2 + - uid: 7204 + components: + - type: Transform + pos: -15.5,-58.5 + parent: 2 + - uid: 7205 + components: + - type: Transform + pos: -15.5,-61.5 + parent: 2 + - uid: 7206 + components: + - type: Transform + pos: -14.5,-61.5 + parent: 2 + - uid: 7209 + components: + - type: Transform + pos: -8.5,-68.5 + parent: 2 + - uid: 7210 + components: + - type: Transform + pos: -7.5,-68.5 + parent: 2 + - uid: 7211 + components: + - type: Transform + pos: -9.5,-70.5 + parent: 2 + - uid: 7212 + components: + - type: Transform + pos: -9.5,-71.5 + parent: 2 + - uid: 7213 + components: + - type: Transform + pos: -13.5,-70.5 + parent: 2 + - uid: 7214 + components: + - type: Transform + pos: -13.5,-71.5 + parent: 2 + - uid: 7215 + components: + - type: Transform + pos: -17.5,-64.5 + parent: 2 + - uid: 7933 + components: + - type: Transform + pos: -4.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12954 + - 12927 + - uid: 7934 + components: + - type: Transform + pos: -3.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12954 + - 12927 + - uid: 7935 + components: + - type: Transform + pos: -2.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12954 + - 12927 + - uid: 7936 + components: + - type: Transform + pos: -24.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12927 + - 12962 + - uid: 8052 + components: + - type: Transform + pos: -64.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12978 + - 5989 + - uid: 8053 + components: + - type: Transform + pos: -64.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12978 + - 5989 + - uid: 8054 + components: + - type: Transform + pos: -64.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12978 + - 5989 + - uid: 8595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12967 + - uid: 8601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12967 + - uid: 8733 + components: + - type: Transform + pos: 10.5,40.5 + parent: 2 + - uid: 9050 + components: + - type: Transform + pos: -40.5,16.5 + parent: 2 + - uid: 9051 + components: + - type: Transform + pos: -38.5,6.5 + parent: 2 + - uid: 9053 + components: + - type: Transform + pos: -45.5,10.5 + parent: 2 + - uid: 9054 + components: + - type: Transform + pos: -40.5,19.5 + parent: 2 + - uid: 9055 + components: + - type: Transform + pos: -48.5,-2.5 + parent: 2 + - uid: 9057 + components: + - type: Transform + pos: -62.5,-2.5 + parent: 2 + - uid: 9058 + components: + - type: Transform + pos: -59.5,-2.5 + parent: 2 + - uid: 9224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-8.5 + parent: 2 + - uid: 12542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-13.5 + parent: 2 + - uid: 12703 + components: + - type: Transform + pos: 1.5,40.5 + parent: 2 + - uid: 12947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12946 + - uid: 12948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 2 + - uid: 12955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-20.5 + parent: 2 + - uid: 12956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-27.5 + parent: 2 + - uid: 12960 + components: + - type: Transform + pos: -28.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12927 + - uid: 12964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12962 + - uid: 12965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-23.5 + parent: 2 + - uid: 12966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12962 + - uid: 12970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12967 + - uid: 12971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12967 + - uid: 12972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12973 + - uid: 12980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-2.5 + parent: 2 + - uid: 13145 + components: + - type: Transform + pos: -51.5,-9.5 + parent: 2 + - uid: 13146 + components: + - type: Transform + pos: -49.5,-15.5 + parent: 2 + - uid: 13161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-22.5 + parent: 2 + - uid: 13163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-49.5 + parent: 2 + - uid: 13164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-47.5 + parent: 2 + - uid: 13167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-15.5 + parent: 2 + - uid: 14539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,8.5 + parent: 2 + - uid: 14680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,21.5 + parent: 2 + - uid: 14681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,23.5 + parent: 2 + - uid: 14682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,23.5 + parent: 2 + - uid: 14823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,17.5 + parent: 2 + - uid: 14956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,17.5 + parent: 2 + - uid: 14957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,17.5 + parent: 2 + - uid: 15605 + components: + - type: Transform + pos: -54.5,20.5 + parent: 2 + - uid: 15606 + components: + - type: Transform + pos: -54.5,22.5 + parent: 2 + - uid: 15607 + components: + - type: Transform + pos: -62.5,25.5 + parent: 2 + - uid: 15608 + components: + - type: Transform + pos: -69.5,25.5 + parent: 2 + - uid: 15609 + components: + - type: Transform + pos: -72.5,27.5 + parent: 2 + - uid: 15616 + components: + - type: Transform + pos: -75.5,36.5 + parent: 2 + - uid: 15617 + components: + - type: Transform + pos: -69.5,36.5 + parent: 2 + - uid: 15948 + components: + - type: Transform + pos: 9.5,31.5 + parent: 2 + - uid: 15953 + components: + - type: Transform + pos: 10.5,33.5 + parent: 2 + - uid: 15955 + components: + - type: Transform + pos: 6.5,24.5 + parent: 2 + - uid: 16045 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 + - uid: 16108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5989 + - 8049 + - uid: 16109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5989 + - 8049 + - uid: 16110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5989 + - 8049 + - uid: 16393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,28.5 + parent: 2 + - uid: 16394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,28.5 + parent: 2 + - uid: 16395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,27.5 + parent: 2 + - uid: 16396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,25.5 + parent: 2 + - uid: 16397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,26.5 + parent: 2 +- proto: Fireplace + entities: + - uid: 2152 + components: + - type: Transform + pos: -7.5,5.5 + parent: 2 + - uid: 4841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,8.5 + parent: 2 + - uid: 5489 + components: + - type: Transform + pos: -15.5,12.5 + parent: 2 +- proto: FlashlightLantern + entities: + - uid: 8110 + components: + - type: Transform + pos: -21.461502,18.89364 + parent: 2 + - type: HandheldLight + toggleActionEntity: 8111 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 8111 + - type: ActionsContainer + - uid: 8115 + components: + - type: Transform + pos: -21.487556,18.5713 + parent: 2 + - type: HandheldLight + toggleActionEntity: 8116 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 8116 + - type: ActionsContainer +- proto: FlashlightSeclite + entities: + - uid: 15720 + components: + - type: Transform + parent: 15660 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FloorDrain + entities: + - uid: 2134 + components: + - type: Transform + pos: 18.5,14.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 5498 + components: + - type: Transform + pos: -18.5,6.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 8262 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 8714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-30.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 10658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-13.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13386 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloorTileItemLino + entities: + - uid: 14449 + components: + - type: Transform + pos: -53.30799,-39.428703 + parent: 2 +- proto: FloorTileItemWood + entities: + - uid: 7982 + components: + - type: Transform + pos: -54.245693,-43.440247 + parent: 2 + - uid: 14444 + components: + - type: Transform + pos: -51.620693,-40.408997 + parent: 2 + - uid: 14445 + components: + - type: Transform + pos: -49.44882,-41.54962 + parent: 2 + - uid: 14447 + components: + - type: Transform + pos: -52.495693,-43.48712 + parent: 2 + - uid: 14448 + components: + - type: Transform + pos: -52.464443,-38.471497 + parent: 2 +- proto: FloorWaterEntity + entities: + - uid: 8924 + components: + - type: Transform + pos: -11.5,-25.5 + parent: 2 + - uid: 8925 + components: + - type: Transform + pos: -11.5,-26.5 + parent: 2 + - uid: 8926 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 2 + - uid: 8927 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 2 + - uid: 8928 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - uid: 8929 + components: + - type: Transform + pos: -10.5,-24.5 + parent: 2 + - uid: 8930 + components: + - type: Transform + pos: -10.5,-25.5 + parent: 2 + - uid: 8931 + components: + - type: Transform + pos: -10.5,-26.5 + parent: 2 + - uid: 8932 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 2 + - uid: 8933 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 2 + - uid: 8934 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 2 + - uid: 8935 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 2 + - uid: 8936 + components: + - type: Transform + pos: -12.5,-25.5 + parent: 2 + - uid: 8937 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 2 + - uid: 8938 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 2 + - uid: 8939 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 2 + - uid: 8940 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 2 + - uid: 8941 + components: + - type: Transform + pos: -11.5,-24.5 + parent: 2 +- proto: FloraRockSolid01 + entities: + - uid: 12310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.43826,-17.348598 + parent: 2 + - uid: 12315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.3537064,-52.49204 + parent: 2 + - uid: 12317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.493508,-30.29846 + parent: 2 + - uid: 12320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.775181,24.57921 + parent: 2 + - uid: 15620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5306702,31.646652 + parent: 2 +- proto: FloraRockSolid02 + entities: + - uid: 12311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.700134,-20.80674 + parent: 2 + - uid: 12312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.83262,-27.292377 + parent: 2 + - uid: 12314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.584085,-75.36845 + parent: 2 + - uid: 12316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.2816978,-47.02736 + parent: 2 + - uid: 12318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.025509,22.60756 + parent: 2 +- proto: FloraRockSolid03 + entities: + - uid: 12306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.864876,2.5843132 + parent: 2 + - uid: 12313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.443579,-57.384026 + parent: 2 + - uid: 12319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.69862,25.016354 + parent: 2 + - uid: 12321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.824606,26.725382 + parent: 2 +- proto: FloraTreeAutumnOrange01 + entities: + - uid: 8035 + components: + - type: Transform + pos: -26.85677,2.6620107 + parent: 2 +- proto: FloraTreeAutumnOrangeLarge06 + entities: + - uid: 8023 + components: + - type: Transform + pos: -28.139729,6.469392 + parent: 2 +- proto: FoamBlade + entities: + - uid: 14791 + components: + - type: Transform + pos: 11.435905,12.549848 + parent: 2 +- proto: FolderSpawner + entities: + - uid: 14423 + components: + - type: Transform + pos: -38.619747,-19.74985 + parent: 2 +- proto: FoodBakedBunHotX + entities: + - uid: 2081 + components: + - type: Transform + pos: -37.565716,-38.284477 + parent: 2 + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 3058 + - uid: 8781 + components: + - type: Transform + pos: -37.458572,-38.432564 + parent: 2 +- proto: FoodBoxDonkpocket + entities: + - uid: 12841 + components: + - type: Transform + pos: -29.644344,11.708272 + parent: 2 + - uid: 16007 + components: + - type: Transform + pos: -13.552152,-12.40099 + parent: 2 +- proto: FoodBoxDonut + entities: + - uid: 5642 + components: + - type: Transform + pos: 5.557794,11.579032 + parent: 2 + - uid: 15964 + components: + - type: Transform + pos: 1.0491412,34.634243 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: FoodBurgerClown + entities: + - uid: 1139 + components: + - type: Transform + parent: 1021 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FoodBurgerRobot + entities: + - uid: 7086 + components: + - type: Transform + pos: -26.535,-41.22935 + parent: 2 +- proto: FoodCakeSuppermatterSlice + entities: + - uid: 15541 + components: + - type: Transform + pos: -72.32722,24.66505 + parent: 2 +- proto: FoodCheese + entities: + - uid: 15642 + components: + - type: Transform + parent: 15640 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15643 + components: + - type: Transform + parent: 15640 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FoodCondimentBottleVinegar + entities: + - uid: 13612 + components: + - type: Transform + pos: -70.78243,-24.960964 + parent: 2 +- proto: FoodContainerEgg + entities: + - uid: 2918 + components: + - type: Transform + pos: -16.506313,-13.114813 + parent: 2 + - uid: 11679 + components: + - type: Transform + pos: -16.52631,-12.894079 + parent: 2 + - uid: 15648 + components: + - type: Transform + parent: 15640 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FoodEggplant + entities: + - uid: 13098 + components: + - type: Transform + pos: -35.493286,-52.496662 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: FoodMeat + entities: + - uid: 15644 + components: + - type: Transform + parent: 15640 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15646 + components: + - type: Transform + parent: 15640 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15650 + components: + - type: Transform + parent: 15640 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatHuman + entities: + - uid: 14381 + components: + - type: Transform + parent: 14380 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatLizardtailKebab + entities: + - uid: 6578 + components: + - type: Transform + pos: -36.552483,34.528954 + parent: 2 +- proto: FoodMeatRatdoubleKebab + entities: + - uid: 8238 + components: + - type: Transform + pos: -77.51846,-6.454283 + parent: 2 +- proto: FoodPieBananaCream + entities: + - uid: 600 + components: + - type: Transform + pos: 7.450817,-19.356865 + parent: 2 + - uid: 3318 + components: + - type: Transform + pos: 7.3585033,-19.142883 + parent: 2 +- proto: FoodPizzaDonkpocketSlice + entities: + - uid: 8959 + components: + - type: Transform + pos: -8.505451,-23.338259 + parent: 2 + - uid: 8960 + components: + - type: Transform + pos: -8.566674,-24.448627 + parent: 2 + - uid: 8961 + components: + - type: Transform + pos: -7.4886513,-24.319828 + parent: 2 + - uid: 8965 + components: + - type: Transform + pos: -7.45556,-23.30443 + parent: 2 +- proto: FoodPlateSmall + entities: + - uid: 8962 + components: + - type: Transform + pos: -7.459735,-23.28098 + parent: 2 + - uid: 8963 + components: + - type: Transform + pos: -8.523484,-24.445074 + parent: 2 + - uid: 8964 + components: + - type: Transform + pos: -8.502493,-23.29698 + parent: 2 + - uid: 8966 + components: + - type: Transform + pos: -7.4745345,-24.26073 + parent: 2 +- proto: FoodSnackNutribrick + entities: + - uid: 2106 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 2194 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 2452 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 2496 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 3853 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 5677 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 5691 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 5705 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 5709 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: GasAnalyzer + entities: + - uid: 6961 + components: + - type: Transform + pos: -39.604527,-7.3743706 + parent: 2 + - uid: 7190 + components: + - type: Transform + pos: -8.490062,-65.34173 + parent: 2 +- proto: GasFilter + entities: + - uid: 6709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,25.5 + parent: 2 + - uid: 14218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,29.5 + parent: 2 + - uid: 14535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,31.5 + parent: 2 + - uid: 14558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,33.5 + parent: 2 + - uid: 14564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,27.5 + parent: 2 + - uid: 14961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#F19CBBFF' + - uid: 14962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#F19CBBFF' + - uid: 14963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#F19CBBFF' +- proto: GasFilterFlipped + entities: + - uid: 6957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' +- proto: GasMinerCarbonDioxide + entities: + - uid: 1759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,28.5 + parent: 2 +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 4849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,24.5 + parent: 2 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 11846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,26.5 + parent: 2 +- proto: GasMinerPlasma + entities: + - uid: 1721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,30.5 + parent: 2 +- proto: GasMixer + entities: + - uid: 97 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,25.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 + targetPressure: 300 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasMixerFlipped + entities: + - uid: 7170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-63.5 + parent: 2 +- proto: GasOutletInjector + entities: + - uid: 5847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-70.5 + parent: 2 + - uid: 5857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-70.5 + parent: 2 + - uid: 5963 + components: + - type: Transform + pos: -49.5,40.5 + parent: 2 + - uid: 6376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,28.5 + parent: 2 + - uid: 11834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,26.5 + parent: 2 + - uid: 14547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,30.5 + parent: 2 + - uid: 14548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,32.5 + parent: 2 + - uid: 14583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,24.5 + parent: 2 +- proto: GasPassiveVent + entities: + - uid: 1764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,28.5 + parent: 2 + - uid: 1766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,24.5 + parent: 2 + - uid: 1771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,32.5 + parent: 2 + - uid: 5965 + components: + - type: Transform + pos: -52.5,40.5 + parent: 2 + - uid: 6763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,26.5 + parent: 2 + - uid: 11798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,30.5 + parent: 2 + - uid: 14555 + components: + - type: Transform + pos: -47.5,37.5 + parent: 2 + - uid: 14787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-70.5 + parent: 2 + - uid: 14878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,39.5 + parent: 2 + - uid: 16035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-70.5 + parent: 2 + - uid: 16076 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 +- proto: GasPipeBend + entities: + - uid: 683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1714 + components: + - type: Transform + pos: -39.5,25.5 + parent: 2 + - uid: 1957 + components: + - type: Transform + pos: -15.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2703 + components: + - type: Transform + pos: -40.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2790 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2990 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3315 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3468 + components: + - type: Transform + pos: -14.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3814 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3908 + components: + - type: Transform + pos: -19.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4546 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 5550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 5835 + components: + - type: Transform + pos: 6.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6111 + components: + - type: Transform + pos: -39.5,27.5 + parent: 2 + - uid: 6259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6429 + components: + - type: Transform + pos: -33.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6444 + components: + - type: Transform + pos: -38.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-4.5 + parent: 2 + - uid: 7966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8310 + components: + - type: Transform + pos: -59.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 11459 + components: + - type: Transform + pos: -64.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11796 + components: + - type: Transform + pos: -39.5,29.5 + parent: 2 + - uid: 11799 + components: + - type: Transform + pos: -39.5,33.5 + parent: 2 + - uid: 11857 + components: + - type: Transform + pos: -39.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12790 + components: + - type: Transform + pos: -39.5,31.5 + parent: 2 + - uid: 13260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 13261 + components: + - type: Transform + pos: -60.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 13262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 13354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 13372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,34.5 + parent: 2 + - uid: 14579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14599 + components: + - type: Transform + pos: -48.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14603 + components: + - type: Transform + pos: -46.5,34.5 + parent: 2 + - uid: 14883 + components: + - type: Transform + pos: -68.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#F19CBBFF' + - uid: 14884 + components: + - type: Transform + pos: -70.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#F19CBBFF' + - uid: 14889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14890 + components: + - type: Transform + pos: -67.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#F19CBBFF' + - uid: 14998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,39.5 + parent: 2 + - uid: 15584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15586 + components: + - type: Transform + pos: -61.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15587 + components: + - type: Transform + pos: -59.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15774 + components: + - type: Transform + pos: 9.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' +- proto: GasPipeFourway + entities: + - uid: 2868 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2994 + components: + - type: Transform + pos: -38.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3112 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3160 + components: + - type: Transform + pos: -13.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3236 + components: + - type: Transform + pos: -51.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3314 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3547 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3667 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6279 + components: + - type: Transform + pos: -39.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6436 + components: + - type: Transform + pos: -34.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6875 + components: + - type: Transform + pos: -46.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6882 + components: + - type: Transform + pos: -42.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6892 + components: + - type: Transform + pos: -41.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 10 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 78 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 831 + components: + - type: Transform + pos: -48.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1034 + components: + - type: Transform + pos: -9.5,-62.5 + parent: 2 + - uid: 1043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,27.5 + parent: 2 + - uid: 1715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,25.5 + parent: 2 + - uid: 1716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,29.5 + parent: 2 + - uid: 1724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,33.5 + parent: 2 + - uid: 1725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,33.5 + parent: 2 + - uid: 1726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,33.5 + parent: 2 + - uid: 1727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,33.5 + parent: 2 + - uid: 1728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,33.5 + parent: 2 + - uid: 1729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,32.5 + parent: 2 + - uid: 1730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,31.5 + parent: 2 + - uid: 1731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,30.5 + parent: 2 + - uid: 1732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,29.5 + parent: 2 + - uid: 1733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,28.5 + parent: 2 + - uid: 1734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,27.5 + parent: 2 + - uid: 1735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,26.5 + parent: 2 + - uid: 1736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,30.5 + parent: 2 + - uid: 1780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,29.5 + parent: 2 + - uid: 1781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,31.5 + parent: 2 + - uid: 1782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,25.5 + parent: 2 + - uid: 1783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,24.5 + parent: 2 + - uid: 1784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,30.5 + parent: 2 + - uid: 1785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,28.5 + parent: 2 + - uid: 1786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,32.5 + parent: 2 + - uid: 1787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,29.5 + parent: 2 + - uid: 1788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,27.5 + parent: 2 + - uid: 1789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,26.5 + parent: 2 + - uid: 1790 + components: + - type: Transform + pos: -46.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 1973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2065 + components: + - type: Transform + pos: -60.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 2120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,28.5 + parent: 2 + - uid: 2513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2541 + components: + - type: Transform + pos: -43.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,25.5 + parent: 2 + - uid: 2601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,26.5 + parent: 2 + - uid: 2625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,27.5 + parent: 2 + - uid: 2669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,25.5 + parent: 2 + - uid: 2696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,24.5 + parent: 2 + - uid: 2697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,32.5 + parent: 2 + - uid: 2698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,31.5 + parent: 2 + - uid: 2704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2715 + components: + - type: Transform + pos: -40.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2791 + components: + - type: Transform + pos: 21.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2792 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2793 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2794 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2795 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2796 + components: + - type: Transform + pos: 21.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2797 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2798 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2799 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2800 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2801 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2802 + components: + - type: Transform + pos: 21.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2803 + components: + - type: Transform + pos: 21.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2804 + components: + - type: Transform + pos: 21.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2805 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2819 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2820 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2821 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2824 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2825 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2826 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2827 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2828 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2843 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2844 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2845 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2846 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2847 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2849 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2850 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2851 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2852 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2853 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2854 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2855 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2859 + components: + - type: Transform + pos: -3.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2860 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2861 + components: + - type: Transform + pos: -3.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2862 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2863 + components: + - type: Transform + pos: -3.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2864 + components: + - type: Transform + pos: -3.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2865 + components: + - type: Transform + pos: -3.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2910 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2988 + components: + - type: Transform + pos: -47.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2989 + components: + - type: Transform + pos: -47.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3013 + components: + - type: Transform + pos: -56.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3014 + components: + - type: Transform + pos: -56.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3015 + components: + - type: Transform + pos: -56.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3016 + components: + - type: Transform + pos: -56.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3017 + components: + - type: Transform + pos: -56.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3018 + components: + - type: Transform + pos: -56.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3029 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3030 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3031 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3032 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3033 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3034 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3035 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3036 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3037 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3038 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3039 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3041 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3042 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3044 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3045 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3046 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3047 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3048 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3049 + components: + - type: Transform + pos: -23.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3050 + components: + - type: Transform + pos: -23.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3052 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3053 + components: + - type: Transform + pos: -23.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3054 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3055 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3056 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3057 + components: + - type: Transform + pos: -23.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3060 + components: + - type: Transform + pos: -23.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3061 + components: + - type: Transform + pos: -23.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3079 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3080 + components: + - type: Transform + pos: -33.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3081 + components: + - type: Transform + pos: -33.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3082 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3083 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3084 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3085 + components: + - type: Transform + pos: -33.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3086 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3087 + components: + - type: Transform + pos: -33.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3088 + components: + - type: Transform + pos: -33.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3158 + components: + - type: Transform + pos: -13.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3162 + components: + - type: Transform + pos: -10.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3163 + components: + - type: Transform + pos: -10.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3164 + components: + - type: Transform + pos: -10.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3165 + components: + - type: Transform + pos: -10.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3167 + components: + - type: Transform + pos: -10.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3168 + components: + - type: Transform + pos: -10.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3169 + components: + - type: Transform + pos: -10.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3170 + components: + - type: Transform + pos: -10.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3171 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3237 + components: + - type: Transform + pos: -51.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3238 + components: + - type: Transform + pos: -51.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3239 + components: + - type: Transform + pos: -51.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3240 + components: + - type: Transform + pos: -51.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3241 + components: + - type: Transform + pos: -51.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3242 + components: + - type: Transform + pos: -51.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3243 + components: + - type: Transform + pos: -51.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3244 + components: + - type: Transform + pos: -51.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3245 + components: + - type: Transform + pos: -51.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3246 + components: + - type: Transform + pos: -51.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3247 + components: + - type: Transform + pos: -51.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3248 + components: + - type: Transform + pos: -51.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3270 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3271 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3273 + components: + - type: Transform + pos: 4.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3300 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3301 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3302 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3303 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3304 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3305 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3306 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3308 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3309 + components: + - type: Transform + pos: 5.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3310 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3311 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3312 + components: + - type: Transform + pos: 5.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3360 + components: + - type: Transform + pos: -16.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3361 + components: + - type: Transform + pos: -16.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3362 + components: + - type: Transform + pos: -16.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3363 + components: + - type: Transform + pos: -16.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3365 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3366 + components: + - type: Transform + pos: -16.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3367 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3368 + components: + - type: Transform + pos: -16.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3369 + components: + - type: Transform + pos: -16.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3380 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3381 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3382 + components: + - type: Transform + pos: -5.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3383 + components: + - type: Transform + pos: -5.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3387 + components: + - type: Transform + pos: -57.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3388 + components: + - type: Transform + pos: -57.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3389 + components: + - type: Transform + pos: -57.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3395 + components: + - type: Transform + pos: -38.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3396 + components: + - type: Transform + pos: -38.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3397 + components: + - type: Transform + pos: -38.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3398 + components: + - type: Transform + pos: -38.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3413 + components: + - type: Transform + pos: -39.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3414 + components: + - type: Transform + pos: -39.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3415 + components: + - type: Transform + pos: -39.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3416 + components: + - type: Transform + pos: -39.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3417 + components: + - type: Transform + pos: -39.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3418 + components: + - type: Transform + pos: -39.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3419 + components: + - type: Transform + pos: -39.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3420 + components: + - type: Transform + pos: -39.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3421 + components: + - type: Transform + pos: -39.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3445 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3446 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3447 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3448 + components: + - type: Transform + pos: -23.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3449 + components: + - type: Transform + pos: -23.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3450 + components: + - type: Transform + pos: -23.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3451 + components: + - type: Transform + pos: -23.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3452 + components: + - type: Transform + pos: -23.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3475 + components: + - type: Transform + pos: -9.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3490 + components: + - type: Transform + pos: -9.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3491 + components: + - type: Transform + pos: -9.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3492 + components: + - type: Transform + pos: -9.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3493 + components: + - type: Transform + pos: -9.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3632 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3633 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3634 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3635 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3636 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3637 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3639 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3640 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3641 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3642 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3643 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3644 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3645 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3647 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3648 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3649 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3650 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3651 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3652 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3653 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3654 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3655 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3657 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3659 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3660 + components: + - type: Transform + pos: -2.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3661 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3662 + components: + - type: Transform + pos: -2.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3663 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3664 + components: + - type: Transform + pos: -2.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3665 + components: + - type: Transform + pos: -2.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3738 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3739 + components: + - type: Transform + pos: -4.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3740 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3743 + components: + - type: Transform + pos: -56.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3744 + components: + - type: Transform + pos: -56.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3766 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3767 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3768 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3769 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3771 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3772 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3773 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3774 + components: + - type: Transform + pos: -24.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3775 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3776 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3777 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3779 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3780 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3781 + components: + - type: Transform + pos: -24.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3782 + components: + - type: Transform + pos: -24.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3783 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3784 + components: + - type: Transform + pos: -24.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3785 + components: + - type: Transform + pos: -24.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3786 + components: + - type: Transform + pos: -24.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3787 + components: + - type: Transform + pos: -24.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3789 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3790 + components: + - type: Transform + pos: -24.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3791 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3792 + components: + - type: Transform + pos: -24.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3794 + components: + - type: Transform + pos: -24.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3795 + components: + - type: Transform + pos: -24.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3796 + components: + - type: Transform + pos: -24.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3797 + components: + - type: Transform + pos: -24.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3798 + components: + - type: Transform + pos: -24.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3799 + components: + - type: Transform + pos: -24.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3815 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3816 + components: + - type: Transform + pos: 8.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3817 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3818 + components: + - type: Transform + pos: 8.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3819 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3821 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3822 + components: + - type: Transform + pos: 3.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3823 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3824 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3898 + components: + - type: Transform + pos: -20.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3899 + components: + - type: Transform + pos: -20.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3900 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3901 + components: + - type: Transform + pos: -20.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3902 + components: + - type: Transform + pos: -20.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3903 + components: + - type: Transform + pos: -20.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3904 + components: + - type: Transform + pos: -20.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3916 + components: + - type: Transform + pos: -14.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3917 + components: + - type: Transform + pos: -14.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3918 + components: + - type: Transform + pos: -14.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3919 + components: + - type: Transform + pos: -14.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3920 + components: + - type: Transform + pos: -14.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3921 + components: + - type: Transform + pos: -14.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3923 + components: + - type: Transform + pos: -14.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3924 + components: + - type: Transform + pos: -14.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3925 + components: + - type: Transform + pos: -14.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3926 + components: + - type: Transform + pos: -14.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3927 + components: + - type: Transform + pos: -14.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3928 + components: + - type: Transform + pos: -14.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3929 + components: + - type: Transform + pos: -14.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3930 + components: + - type: Transform + pos: -14.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3931 + components: + - type: Transform + pos: -14.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3932 + components: + - type: Transform + pos: -14.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3933 + components: + - type: Transform + pos: -14.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3934 + components: + - type: Transform + pos: -14.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3948 + components: + - type: Transform + pos: -60.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3949 + components: + - type: Transform + pos: -60.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3950 + components: + - type: Transform + pos: -60.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3951 + components: + - type: Transform + pos: -60.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3954 + components: + - type: Transform + pos: -54.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3955 + components: + - type: Transform + pos: -54.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3956 + components: + - type: Transform + pos: -54.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3957 + components: + - type: Transform + pos: -54.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3958 + components: + - type: Transform + pos: -54.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3968 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3969 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3970 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3971 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3972 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3973 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3974 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3975 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3976 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4015 + components: + - type: Transform + pos: -32.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4016 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4017 + components: + - type: Transform + pos: -32.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4018 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4019 + components: + - type: Transform + pos: -32.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4020 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4021 + components: + - type: Transform + pos: -32.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4022 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4023 + components: + - type: Transform + pos: -32.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 4033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4042 + components: + - type: Transform + pos: -23.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 4045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 4046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 4047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 4071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 4773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 4840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,31.5 + parent: 2 + - uid: 4845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 4848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 5003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 5460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 5501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 5648 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 5650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 5653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 5656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 5658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 5810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 5832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 5886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,24.5 + parent: 2 + - uid: 5969 + components: + - type: Transform + pos: -52.5,39.5 + parent: 2 + - uid: 5970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,25.5 + parent: 2 + - uid: 5971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,25.5 + parent: 2 + - uid: 6010 + components: + - type: Transform + pos: -49.5,37.5 + parent: 2 + - uid: 6015 + components: + - type: Transform + pos: -52.5,36.5 + parent: 2 + - uid: 6029 + components: + - type: Transform + pos: -49.5,38.5 + parent: 2 + - uid: 6030 + components: + - type: Transform + pos: -52.5,37.5 + parent: 2 + - uid: 6040 + components: + - type: Transform + pos: -77.5,38.5 + parent: 2 + - uid: 6055 + components: + - type: Transform + pos: -49.5,36.5 + parent: 2 + - uid: 6056 + components: + - type: Transform + pos: -49.5,39.5 + parent: 2 + - uid: 6057 + components: + - type: Transform + pos: -52.5,38.5 + parent: 2 + - uid: 6063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,31.5 + parent: 2 + - uid: 6075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6288 + components: + - type: Transform + pos: -46.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6289 + components: + - type: Transform + pos: -46.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6290 + components: + - type: Transform + pos: -46.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,29.5 + parent: 2 + - uid: 6400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,29.5 + parent: 2 + - uid: 6411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,28.5 + parent: 2 + - uid: 6430 + components: + - type: Transform + pos: -34.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6431 + components: + - type: Transform + pos: -34.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6432 + components: + - type: Transform + pos: -34.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6433 + components: + - type: Transform + pos: -34.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6434 + components: + - type: Transform + pos: -34.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6435 + components: + - type: Transform + pos: -34.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6445 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6447 + components: + - type: Transform + pos: -39.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6448 + components: + - type: Transform + pos: -39.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6449 + components: + - type: Transform + pos: -39.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6450 + components: + - type: Transform + pos: -39.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6451 + components: + - type: Transform + pos: -39.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,31.5 + parent: 2 + - uid: 6796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6899 + components: + - type: Transform + pos: -42.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6908 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6943 + components: + - type: Transform + pos: -42.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6958 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 7065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 7073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 7162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-69.5 + parent: 2 + - uid: 7163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-69.5 + parent: 2 + - uid: 7207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 7964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 7965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 7969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,27.5 + parent: 2 + - uid: 8071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8606 + components: + - type: Transform + pos: -41.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8608 + components: + - type: Transform + pos: -41.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9012 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9013 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9014 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9015 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9016 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9017 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9018 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 11432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 11663 + components: + - type: Transform + pos: -46.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 11680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11684 + components: + - type: Transform + pos: -45.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 11797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 11850 + components: + - type: Transform + pos: -39.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11851 + components: + - type: Transform + pos: -39.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11852 + components: + - type: Transform + pos: -39.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 11873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,27.5 + parent: 2 + - uid: 11882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 11885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11935 + components: + - type: Transform + pos: -60.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 11938 + components: + - type: Transform + pos: -7.5,-62.5 + parent: 2 + - uid: 11969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,33.5 + parent: 2 + - uid: 12196 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - uid: 12375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 12450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 12458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 12552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 12555 + components: + - type: Transform + pos: -60.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 12557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 12635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 12731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 12856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 12931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 13083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 13084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 13085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 13086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 13087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 13088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 13089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 13090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 13259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 13368 + components: + - type: Transform + pos: -45.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 13371 + components: + - type: Transform + pos: -45.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 13379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14557 + components: + - type: Transform + pos: -46.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14561 + components: + - type: Transform + pos: -47.5,36.5 + parent: 2 + - uid: 14563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,26.5 + parent: 2 + - uid: 14565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,30.5 + parent: 2 + - uid: 14566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,32.5 + parent: 2 + - uid: 14567 + components: + - type: Transform + pos: -47.5,35.5 + parent: 2 + - uid: 14571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-69.5 + parent: 2 + - uid: 14860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#F19CBBFF' + - uid: 14879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#F19CBBFF' + - uid: 14880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#F19CBBFF' + - uid: 14886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#F19CBBFF' + - uid: 14899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#F19CBBFF' + - uid: 14902 + components: + - type: Transform + pos: -77.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14948 + components: + - type: Transform + pos: -68.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#F19CBBFF' + - uid: 14964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#F19CBBFF' + - uid: 14970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#F19CBBFF' + - uid: 14971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#F19CBBFF' + - uid: 14972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#F19CBBFF' + - uid: 14973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15001 + components: + - type: Transform + pos: -50.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15002 + components: + - type: Transform + pos: -50.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15003 + components: + - type: Transform + pos: -50.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15004 + components: + - type: Transform + pos: -50.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15005 + components: + - type: Transform + pos: -50.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#F19CBBFF' + - uid: 15166 + components: + - type: Transform + pos: -72.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15563 + components: + - type: Transform + pos: -59.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15580 + components: + - type: Transform + pos: -59.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15581 + components: + - type: Transform + pos: -59.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15591 + components: + - type: Transform + pos: -70.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15592 + components: + - type: Transform + pos: -70.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15593 + components: + - type: Transform + pos: -70.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15594 + components: + - type: Transform + pos: -70.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15595 + components: + - type: Transform + pos: -71.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15596 + components: + - type: Transform + pos: -71.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15754 + components: + - type: Transform + pos: 6.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15755 + components: + - type: Transform + pos: 6.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15757 + components: + - type: Transform + pos: 5.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15758 + components: + - type: Transform + pos: 5.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15776 + components: + - type: Transform + pos: 9.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15777 + components: + - type: Transform + pos: 9.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15778 + components: + - type: Transform + pos: 9.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-69.5 + parent: 2 + - uid: 16083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' +- proto: GasPipeTJunction + entities: + - uid: 77 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 813 + components: + - type: Transform + pos: -39.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 1438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2393 + components: + - type: Transform + pos: 15.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2434 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2435 + components: + - type: Transform + pos: -16.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2436 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2783 + components: + - type: Transform + pos: 21.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2816 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3028 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3040 + components: + - type: Transform + pos: -34.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3059 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3076 + components: + - type: Transform + pos: -69.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3192 + components: + - type: Transform + pos: -56.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3257 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3386 + components: + - type: Transform + pos: -57.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3394 + components: + - type: Transform + pos: -38.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3429 + components: + - type: Transform + pos: -35.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3476 + components: + - type: Transform + pos: -9.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3529 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3572 + components: + - type: Transform + pos: -60.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3574 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3788 + components: + - type: Transform + pos: -47.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3809 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3953 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3964 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 4008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4014 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4032 + components: + - type: Transform + pos: -56.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 4477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 4504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 5530 + components: + - type: Transform + pos: -10.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 5532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 5639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 5646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5647 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 5649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 5741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5875 + components: + - type: Transform + pos: -14.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6176 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6183 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6261 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6295 + components: + - type: Transform + pos: -58.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6296 + components: + - type: Transform + pos: -61.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6486 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6487 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6852 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-4.5 + parent: 2 + - uid: 6953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-4.5 + parent: 2 + - uid: 7905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8165 + components: + - type: Transform + pos: -41.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8166 + components: + - type: Transform + pos: -43.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9524 + components: + - type: Transform + pos: -54.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11742 + components: + - type: Transform + pos: 9.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11836 + components: + - type: Transform + pos: -42.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 13645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14881 + components: + - type: Transform + pos: -72.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14898 + components: + - type: Transform + pos: -74.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14909 + components: + - type: Transform + pos: -72.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14979 + components: + - type: Transform + pos: -76.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15567 + components: + - type: Transform + pos: -64.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15597 + components: + - type: Transform + pos: -58.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' +- proto: GasPort + entities: + - uid: 2457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-63.5 + parent: 2 + - uid: 6426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-6.5 + parent: 2 + - uid: 7156 + components: + - type: Transform + pos: -14.5,-67.5 + parent: 2 + - uid: 7157 + components: + - type: Transform + pos: -10.5,-67.5 + parent: 2 + - uid: 7166 + components: + - type: Transform + pos: -13.5,-62.5 + parent: 2 + - uid: 7167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-63.5 + parent: 2 + - uid: 7168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-65.5 + parent: 2 + - uid: 12003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-63.5 + parent: 2 + - uid: 13360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14576 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 2 + - uid: 15129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 16038 + components: + - type: Transform + pos: -16.5,-67.5 + parent: 2 + - uid: 16039 + components: + - type: Transform + pos: -12.5,-67.5 + parent: 2 + - uid: 16327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,34.5 + parent: 2 +- proto: GasPressurePump + entities: + - uid: 932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,32.5 + parent: 2 + - uid: 2779 + components: + - type: MetaData + name: подача воздуха в канистры + - type: Transform + pos: -39.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-68.5 + parent: 2 + - uid: 5712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-68.5 + parent: 2 + - uid: 5828 + components: + - type: Transform + pos: -13.5,-64.5 + parent: 2 + - uid: 5998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,35.5 + parent: 2 + - uid: 6004 + components: + - type: Transform + pos: -52.5,35.5 + parent: 2 + - uid: 6071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,30.5 + parent: 2 + - uid: 6113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-5.5 + parent: 2 + - uid: 7158 + components: + - type: Transform + pos: -14.5,-68.5 + parent: 2 + - uid: 7159 + components: + - type: Transform + pos: -10.5,-68.5 + parent: 2 + - uid: 9297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,28.5 + parent: 2 + - uid: 11173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,29.5 + parent: 2 + - type: GasPressurePump + targetPressure: 50 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,27.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,33.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#F19CBBFF' + - uid: 14974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,34.5 + parent: 2 + - type: GasPressurePump + targetPressure: 200 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 15091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 16098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasThermoMachineFreezer + entities: + - uid: 1382 + components: + - type: Transform + pos: -9.5,-61.5 + parent: 2 + - uid: 6955 + components: + - type: Transform + pos: -38.5,-3.5 + parent: 2 + - uid: 14820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,31.5 + parent: 2 + - uid: 14821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,30.5 + parent: 2 + - uid: 14895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' + - uid: 14896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#78DBE2FF' +- proto: GasThermoMachineHeater + entities: + - uid: 1390 + components: + - type: Transform + pos: -7.5,-61.5 + parent: 2 + - uid: 1777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,29.5 + parent: 2 + - uid: 3410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,28.5 + parent: 2 +- proto: GasVentPump + entities: + - uid: 2585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3658 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12961 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6260 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13376 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13385 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5661 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3453 + components: + - type: Transform + pos: -23.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5661 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3479 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5534 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5492 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3517 + components: + - type: Transform + pos: -2.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12945 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12945 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12950 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12950 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12935 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8042 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8042 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12975 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12975 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 241 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12944 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3668 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12953 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3669 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12953 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12984 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12968 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12959 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12959 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12389 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12983 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3763 + components: + - type: Transform + pos: -52.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12974 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3764 + components: + - type: Transform + pos: -52.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12974 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12961 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12961 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1290 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 418 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1296 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 418 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12995 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12995 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3870 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7108 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12813 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3875 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12810 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13110 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13114 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13115 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13109 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13113 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12959 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12981 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3965 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13393 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12938 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12939 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4027 + components: + - type: Transform + pos: -37.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12936 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4029 + components: + - type: Transform + pos: -46.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12936 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14667 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12921 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5539 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5492 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7108 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6331 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13374 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13373 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12968 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6473 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1296 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13112 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6972 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12936 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7919 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12952 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12952 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12982 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8046 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8046 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10477 + components: + - type: Transform + pos: -81.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8046 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12994 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14664 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12929 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12943 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 912 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 225 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13390 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14668 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15604 + components: + - type: Transform + pos: -71.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15789 + components: + - type: Transform + pos: 5.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6331 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6331 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6331 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15792 + components: + - type: Transform + pos: 5.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6331 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16399 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16347 + components: + - type: Transform + pos: 17.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16399 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 2424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3658 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8042 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6260 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2657 + components: + - type: Transform + pos: -34.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13376 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5661 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 225 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3479 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12945 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12950 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12935 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12944 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 241 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12975 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12975 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8042 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12950 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13393 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2675 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13390 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2676 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13385 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12961 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12961 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12961 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12953 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12959 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12959 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12968 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12968 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12974 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12981 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7108 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2693 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12952 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12952 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12938 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12930 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12936 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2906 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12936 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 2907 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 912 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12939 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12995 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12995 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13112 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3134 + components: + - type: Transform + pos: -24.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5661 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5492 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5534 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5539 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12984 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3250 + components: + - type: Transform + pos: -51.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12974 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3251 + components: + - type: Transform + pos: -42.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3258 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7108 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12813 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3285 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1296 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 418 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1290 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 418 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12389 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13109 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13114 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13115 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13113 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12983 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13374 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12953 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12810 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 3946 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12959 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 5024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12921 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 5671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6862 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 6975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12936 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8092 + components: + - type: Transform + pos: -3.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12945 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12982 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 8755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 9019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8046 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8046 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 10479 + components: + - type: Transform + pos: -80.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8046 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 11858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14667 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 12748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13110 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 12903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12929 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 13357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13373 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14538 + components: + - type: Transform + pos: -43.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14664 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14668 + - uid: 14877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15025 + - type: AtmosPipeColor + color: '#F19CBBFF' + - uid: 15558 + components: + - type: Transform + pos: -65.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15598 + components: + - type: Transform + pos: -59.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15602 + components: + - type: Transform + pos: -70.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15603 + components: + - type: Transform + pos: -70.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15785 + components: + - type: Transform + pos: 6.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6331 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6331 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6331 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6331 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16399 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16330 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16399 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16346 + components: + - type: Transform + pos: 16.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16399 + - type: AtmosPipeColor + color: '#E32636FF' +- proto: GasVolumePump + entities: + - uid: 14551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' +- proto: GeneratorBasic15kW + entities: + - uid: 10309 + components: + - type: Transform + pos: -44.5,6.5 + parent: 2 +- proto: GeneratorRTG + entities: + - uid: 13718 + components: + - type: Transform + pos: -47.5,12.5 + parent: 2 +- proto: Girder + entities: + - uid: 5497 + components: + - type: Transform + pos: -50.5,-37.5 + parent: 2 + - uid: 14435 + components: + - type: Transform + pos: -48.5,-41.5 + parent: 2 +- proto: GlimmerProber + entities: + - uid: 5511 + components: + - type: Transform + pos: -11.5,-41.5 + parent: 2 +- proto: GravityGenerator + entities: + - uid: 5716 + components: + - type: Transform + pos: -35.5,14.5 + parent: 2 +- proto: GrenadeFlashBang + entities: + - uid: 5740 + components: + - type: Transform + parent: 15737 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 5787 + components: + - type: Transform + parent: 15737 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 5788 + components: + - type: Transform + parent: 15737 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 5789 + components: + - type: Transform + parent: 15737 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 5790 + components: + - type: Transform + parent: 15737 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 5791 + components: + - type: Transform + parent: 15737 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: GrenadeStinger + entities: + - uid: 15721 + components: + - type: Transform + parent: 15737 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15722 + components: + - type: Transform + parent: 15737 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15725 + components: + - type: Transform + parent: 15737 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15726 + components: + - type: Transform + parent: 15737 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Grille + entities: + - uid: 30 + components: + - type: Transform + pos: 37.5,7.5 + parent: 2 + - uid: 32 + components: + - type: Transform + pos: -25.5,-30.5 + parent: 2 + - uid: 33 + components: + - type: Transform + pos: 36.5,8.5 + parent: 2 + - uid: 34 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 + - uid: 36 + components: + - type: Transform + pos: 38.5,2.5 + parent: 2 + - uid: 39 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - uid: 94 + components: + - type: Transform + pos: -25.5,20.5 + parent: 2 + - uid: 104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,1.5 + parent: 2 + - uid: 111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,4.5 + parent: 2 + - uid: 130 + components: + - type: Transform + pos: 12.5,24.5 + parent: 2 + - uid: 138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - uid: 294 + components: + - type: Transform + pos: -26.5,20.5 + parent: 2 + - uid: 297 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 2 + - uid: 298 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 2 + - uid: 299 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: -1.5,14.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: 11.5,24.5 + parent: 2 + - uid: 420 + components: + - type: Transform + pos: -22.5,-50.5 + parent: 2 + - uid: 468 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 2 + - uid: 496 + components: + - type: Transform + pos: -62.5,-14.5 + parent: 2 + - uid: 507 + components: + - type: Transform + pos: -21.5,-50.5 + parent: 2 + - uid: 564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,32.5 + parent: 2 + - uid: 577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,-8.5 + parent: 2 + - uid: 581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,-5.5 + parent: 2 + - uid: 653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,0.5 + parent: 2 + - uid: 658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,-8.5 + parent: 2 + - uid: 763 + components: + - type: Transform + pos: -25.5,-29.5 + parent: 2 + - uid: 799 + components: + - type: Transform + pos: -37.5,-41.5 + parent: 2 + - uid: 815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,16.5 + parent: 2 + - uid: 919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,32.5 + parent: 2 + - uid: 948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,32.5 + parent: 2 + - uid: 958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,31.5 + parent: 2 + - uid: 960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,31.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + pos: -44.5,27.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: -18.5,-36.5 + parent: 2 + - uid: 1200 + components: + - type: Transform + pos: -18.5,-39.5 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: -19.5,-39.5 + parent: 2 + - uid: 1202 + components: + - type: Transform + pos: -21.5,-39.5 + parent: 2 + - uid: 1301 + components: + - type: Transform + pos: -17.5,-51.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + pos: -17.5,-52.5 + parent: 2 + - uid: 1303 + components: + - type: Transform + pos: -17.5,-53.5 + parent: 2 + - uid: 1304 + components: + - type: Transform + pos: -12.5,-51.5 + parent: 2 + - uid: 1305 + components: + - type: Transform + pos: -12.5,-52.5 + parent: 2 + - uid: 1306 + components: + - type: Transform + pos: -12.5,-53.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + pos: -17.5,-60.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: -17.5,-59.5 + parent: 2 + - uid: 1345 + components: + - type: Transform + pos: 36.5,6.5 + parent: 2 + - uid: 1350 + components: + - type: Transform + pos: -18.5,-67.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + pos: -19.5,-67.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + pos: -20.5,-67.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + pos: -21.5,-65.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + pos: -21.5,-64.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + pos: -18.5,-61.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: -19.5,-61.5 + parent: 2 + - uid: 1357 + components: + - type: Transform + pos: -20.5,-61.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: -11.5,-58.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + pos: -10.5,-58.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + pos: -7.5,-58.5 + parent: 2 + - uid: 1379 + components: + - type: Transform + pos: -7.5,-60.5 + parent: 2 + - uid: 1388 + components: + - type: Transform + pos: -6.5,-62.5 + parent: 2 + - uid: 1389 + components: + - type: Transform + pos: -6.5,-63.5 + parent: 2 + - uid: 1401 + components: + - type: Transform + pos: -6.5,-65.5 + parent: 2 + - uid: 1402 + components: + - type: Transform + pos: -6.5,-66.5 + parent: 2 + - uid: 1403 + components: + - type: Transform + pos: -6.5,-67.5 + parent: 2 + - uid: 1439 + components: + - type: Transform + pos: -15.5,-69.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + pos: -14.5,-69.5 + parent: 2 + - uid: 1441 + components: + - type: Transform + pos: -12.5,-69.5 + parent: 2 + - uid: 1442 + components: + - type: Transform + pos: -11.5,-69.5 + parent: 2 + - uid: 1443 + components: + - type: Transform + pos: -10.5,-69.5 + parent: 2 + - uid: 1444 + components: + - type: Transform + pos: -6.5,-70.5 + parent: 2 + - uid: 1445 + components: + - type: Transform + pos: -6.5,-71.5 + parent: 2 + - uid: 1446 + components: + - type: Transform + pos: -7.5,-72.5 + parent: 2 + - uid: 1447 + components: + - type: Transform + pos: -8.5,-72.5 + parent: 2 + - uid: 1448 + components: + - type: Transform + pos: -16.5,-72.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + pos: -14.5,-72.5 + parent: 2 + - uid: 1450 + components: + - type: Transform + pos: -10.5,-72.5 + parent: 2 + - uid: 1451 + components: + - type: Transform + pos: -12.5,-72.5 + parent: 2 + - uid: 1460 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 2 + - uid: 1461 + components: + - type: Transform + pos: -3.5,-36.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + pos: -6.5,-42.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + pos: -5.5,-42.5 + parent: 2 + - uid: 1484 + components: + - type: Transform + pos: -1.5,-41.5 + parent: 2 + - uid: 1489 + components: + - type: Transform + pos: -1.5,-43.5 + parent: 2 + - uid: 1499 + components: + - type: Transform + pos: -3.5,-45.5 + parent: 2 + - uid: 1521 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 2 + - uid: 1522 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 2 + - uid: 1523 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 + - uid: 1534 + components: + - type: Transform + pos: 8.5,-38.5 + parent: 2 + - uid: 1563 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 2 + - uid: 1564 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 2 + - uid: 1565 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 2 + - uid: 1567 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 1573 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 2 + - uid: 1574 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 2 + - uid: 1592 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 2 + - uid: 1618 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 2 + - uid: 1619 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 2 + - uid: 1657 + components: + - type: Transform + pos: -46.5,23.5 + parent: 2 + - uid: 1722 + components: + - type: Transform + pos: -42.5,30.5 + parent: 2 + - uid: 1723 + components: + - type: Transform + pos: -42.5,32.5 + parent: 2 + - uid: 1825 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 2 + - uid: 1887 + components: + - type: Transform + pos: -56.5,-36.5 + parent: 2 + - uid: 1889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-19.5 + parent: 2 + - uid: 1915 + components: + - type: Transform + pos: -17.5,-18.5 + parent: 2 + - uid: 1940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 2 + - uid: 1941 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 2 + - uid: 1944 + components: + - type: Transform + pos: -1.5,15.5 + parent: 2 + - uid: 1975 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 2 + - uid: 1996 + components: + - type: Transform + pos: 10.5,24.5 + parent: 2 + - uid: 2027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,1.5 + parent: 2 + - uid: 2030 + components: + - type: Transform + pos: -20.5,-50.5 + parent: 2 + - uid: 2063 + components: + - type: Transform + pos: -62.5,-15.5 + parent: 2 + - uid: 2064 + components: + - type: Transform + pos: -64.5,-12.5 + parent: 2 + - uid: 2083 + components: + - type: Transform + pos: -46.5,-50.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: -47.5,-50.5 + parent: 2 + - uid: 2086 + components: + - type: Transform + pos: -41.5,-53.5 + parent: 2 + - uid: 2087 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 + - uid: 2088 + components: + - type: Transform + pos: -40.5,-53.5 + parent: 2 + - uid: 2089 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 2117 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 2119 + components: + - type: Transform + pos: -24.5,20.5 + parent: 2 + - uid: 2208 + components: + - type: Transform + pos: 38.5,7.5 + parent: 2 + - uid: 2388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-2.5 + parent: 2 + - uid: 2426 + components: + - type: Transform + pos: -40.5,-36.5 + parent: 2 + - uid: 2460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-58.5 + parent: 2 + - uid: 2548 + components: + - type: Transform + pos: -44.5,-36.5 + parent: 2 + - uid: 2600 + components: + - type: Transform + pos: -7.5,8.5 + parent: 2 + - uid: 2617 + components: + - type: Transform + pos: 36.5,9.5 + parent: 2 + - uid: 2618 + components: + - type: Transform + pos: 37.5,2.5 + parent: 2 + - uid: 2640 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 2647 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 2 + - uid: 3043 + components: + - type: Transform + pos: -47.5,1.5 + parent: 2 + - uid: 3147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-60.5 + parent: 2 + - uid: 3400 + components: + - type: Transform + pos: -42.5,24.5 + parent: 2 + - uid: 3404 + components: + - type: Transform + pos: -44.5,24.5 + parent: 2 + - uid: 4030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,1.5 + parent: 2 + - uid: 4448 + components: + - type: Transform + pos: 4.5,36.5 + parent: 2 + - uid: 4521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 2 + - uid: 4799 + components: + - type: Transform + pos: 0.5,35.5 + parent: 2 + - uid: 4815 + components: + - type: Transform + pos: -44.5,32.5 + parent: 2 + - uid: 4816 + components: + - type: Transform + pos: -44.5,31.5 + parent: 2 + - uid: 4818 + components: + - type: Transform + pos: -44.5,20.5 + parent: 2 + - uid: 4819 + components: + - type: Transform + pos: -44.5,28.5 + parent: 2 + - uid: 4829 + components: + - type: Transform + pos: -44.5,30.5 + parent: 2 + - uid: 4831 + components: + - type: Transform + pos: -44.5,22.5 + parent: 2 + - uid: 4833 + components: + - type: Transform + pos: -44.5,25.5 + parent: 2 + - uid: 4836 + components: + - type: Transform + pos: -44.5,26.5 + parent: 2 + - uid: 4915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-23.5 + parent: 2 + - uid: 5452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-21.5 + parent: 2 + - uid: 5543 + components: + - type: Transform + pos: -31.5,-40.5 + parent: 2 + - uid: 5583 + components: + - type: Transform + pos: -7.5,20.5 + parent: 2 + - uid: 5584 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 + - uid: 5585 + components: + - type: Transform + pos: -8.5,21.5 + parent: 2 + - uid: 5586 + components: + - type: Transform + pos: -9.5,22.5 + parent: 2 + - uid: 5587 + components: + - type: Transform + pos: -10.5,22.5 + parent: 2 + - uid: 5588 + components: + - type: Transform + pos: -11.5,22.5 + parent: 2 + - uid: 5589 + components: + - type: Transform + pos: -12.5,22.5 + parent: 2 + - uid: 5590 + components: + - type: Transform + pos: -14.5,22.5 + parent: 2 + - uid: 5591 + components: + - type: Transform + pos: -15.5,22.5 + parent: 2 + - uid: 5592 + components: + - type: Transform + pos: -16.5,22.5 + parent: 2 + - uid: 5593 + components: + - type: Transform + pos: -17.5,22.5 + parent: 2 + - uid: 5594 + components: + - type: Transform + pos: -18.5,21.5 + parent: 2 + - uid: 5595 + components: + - type: Transform + pos: -18.5,20.5 + parent: 2 + - uid: 5596 + components: + - type: Transform + pos: -19.5,20.5 + parent: 2 + - uid: 5597 + components: + - type: Transform + pos: -16.5,16.5 + parent: 2 + - uid: 5599 + components: + - type: Transform + pos: -18.5,16.5 + parent: 2 + - uid: 5600 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 + - uid: 5602 + components: + - type: Transform + pos: -8.5,16.5 + parent: 2 + - uid: 5603 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - uid: 5604 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - uid: 5605 + components: + - type: Transform + pos: -7.5,9.5 + parent: 2 + - uid: 5607 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 5608 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 + - uid: 5609 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - uid: 5611 + components: + - type: Transform + pos: -5.5,6.5 + parent: 2 + - uid: 5612 + components: + - type: Transform + pos: -6.5,6.5 + parent: 2 + - uid: 5678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 2 + - uid: 5743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 2 + - uid: 5744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 2 + - uid: 5818 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 5819 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 + - uid: 5841 + components: + - type: Transform + pos: 2.5,35.5 + parent: 2 + - uid: 5859 + components: + - type: Transform + pos: 10.5,28.5 + parent: 2 + - uid: 5864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,33.5 + parent: 2 + - uid: 5869 + components: + - type: Transform + pos: 2.5,28.5 + parent: 2 + - uid: 5870 + components: + - type: Transform + pos: 1.5,28.5 + parent: 2 + - uid: 5893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 2 + - uid: 5911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,42.5 + parent: 2 + - uid: 5912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,40.5 + parent: 2 + - uid: 5922 + components: + - type: Transform + pos: 3.5,26.5 + parent: 2 + - uid: 6145 + components: + - type: Transform + pos: -48.5,40.5 + parent: 2 + - uid: 6149 + components: + - type: Transform + pos: -31.5,20.5 + parent: 2 + - uid: 6154 + components: + - type: Transform + pos: -49.5,38.5 + parent: 2 + - uid: 6156 + components: + - type: Transform + pos: -48.5,39.5 + parent: 2 + - uid: 6184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,19.5 + parent: 2 + - uid: 6188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 2 + - uid: 6199 + components: + - type: Transform + pos: -55.5,36.5 + parent: 2 + - uid: 6206 + components: + - type: Transform + pos: -49.5,36.5 + parent: 2 + - uid: 6208 + components: + - type: Transform + pos: -51.5,36.5 + parent: 2 + - uid: 6210 + components: + - type: Transform + pos: -54.5,36.5 + parent: 2 + - uid: 6211 + components: + - type: Transform + pos: -52.5,36.5 + parent: 2 + - uid: 6212 + components: + - type: Transform + pos: -50.5,36.5 + parent: 2 + - uid: 6233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,13.5 + parent: 2 + - uid: 6234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,14.5 + parent: 2 + - uid: 6236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,10.5 + parent: 2 + - uid: 6239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,10.5 + parent: 2 + - uid: 6244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,5.5 + parent: 2 + - uid: 6245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,6.5 + parent: 2 + - uid: 6246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,9.5 + parent: 2 + - uid: 6247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-24.5 + parent: 2 + - uid: 6318 + components: + - type: Transform + pos: -53.5,40.5 + parent: 2 + - uid: 6389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,10.5 + parent: 2 + - uid: 6391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,1.5 + parent: 2 + - uid: 6418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,1.5 + parent: 2 + - uid: 6581 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 + - uid: 6603 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 2 + - uid: 6624 + components: + - type: Transform + pos: -24.5,-76.5 + parent: 2 + - uid: 6639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-74.5 + parent: 2 + - uid: 6640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-75.5 + parent: 2 + - uid: 6664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,40.5 + parent: 2 + - uid: 6718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,33.5 + parent: 2 + - uid: 6738 + components: + - type: Transform + pos: -42.5,28.5 + parent: 2 + - uid: 6751 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 2 + - uid: 6807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,19.5 + parent: 2 + - uid: 6831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-8.5 + parent: 2 + - uid: 6832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-8.5 + parent: 2 + - uid: 6833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-10.5 + parent: 2 + - uid: 6834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-8.5 + parent: 2 + - uid: 6836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-8.5 + parent: 2 + - uid: 6837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-8.5 + parent: 2 + - uid: 6840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-13.5 + parent: 2 + - uid: 6841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-13.5 + parent: 2 + - uid: 6843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-5.5 + parent: 2 + - uid: 6844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-3.5 + parent: 2 + - uid: 6845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-2.5 + parent: 2 + - uid: 6846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-2.5 + parent: 2 + - uid: 6847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-2.5 + parent: 2 + - uid: 6848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-2.5 + parent: 2 + - uid: 6849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-2.5 + parent: 2 + - uid: 6850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-2.5 + parent: 2 + - uid: 6851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-2.5 + parent: 2 + - uid: 6927 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 2 + - uid: 6973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 2 + - uid: 7002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-18.5 + parent: 2 + - uid: 7003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-21.5 + parent: 2 + - uid: 7040 + components: + - type: Transform + pos: -54.5,1.5 + parent: 2 + - uid: 7109 + components: + - type: Transform + pos: -17.5,-46.5 + parent: 2 + - uid: 7113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,20.5 + parent: 2 + - uid: 7241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-22.5 + parent: 2 + - uid: 7635 + components: + - type: Transform + pos: 23.5,8.5 + parent: 2 + - uid: 7668 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 2 + - uid: 7669 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 2 + - uid: 7670 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 2 + - uid: 7671 + components: + - type: Transform + pos: -11.5,-32.5 + parent: 2 + - uid: 7672 + components: + - type: Transform + pos: -12.5,-32.5 + parent: 2 + - uid: 7673 + components: + - type: Transform + pos: -10.5,-29.5 + parent: 2 + - uid: 7674 + components: + - type: Transform + pos: -11.5,-29.5 + parent: 2 + - uid: 7675 + components: + - type: Transform + pos: -12.5,-29.5 + parent: 2 + - uid: 7676 + components: + - type: Transform + pos: -15.5,-29.5 + parent: 2 + - uid: 7677 + components: + - type: Transform + pos: -16.5,-29.5 + parent: 2 + - uid: 7678 + components: + - type: Transform + pos: -17.5,-29.5 + parent: 2 + - uid: 7679 + components: + - type: Transform + pos: -15.5,-32.5 + parent: 2 + - uid: 7680 + components: + - type: Transform + pos: -16.5,-32.5 + parent: 2 + - uid: 7681 + components: + - type: Transform + pos: -17.5,-32.5 + parent: 2 + - uid: 7682 + components: + - type: Transform + pos: -21.5,-27.5 + parent: 2 + - uid: 7683 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 2 + - uid: 7684 + components: + - type: Transform + pos: -21.5,-25.5 + parent: 2 + - uid: 7685 + components: + - type: Transform + pos: -21.5,-22.5 + parent: 2 + - uid: 7686 + components: + - type: Transform + pos: -21.5,-21.5 + parent: 2 + - uid: 7687 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 2 + - uid: 7688 + components: + - type: Transform + pos: -19.5,-20.5 + parent: 2 + - uid: 7689 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 2 + - uid: 7690 + components: + - type: Transform + pos: -19.5,-22.5 + parent: 2 + - uid: 7691 + components: + - type: Transform + pos: -19.5,-25.5 + parent: 2 + - uid: 7692 + components: + - type: Transform + pos: -19.5,-26.5 + parent: 2 + - uid: 7693 + components: + - type: Transform + pos: -19.5,-27.5 + parent: 2 + - uid: 7698 + components: + - type: Transform + pos: -8.5,-20.5 + parent: 2 + - uid: 7699 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 7700 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 + - uid: 7701 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 7702 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 2 + - uid: 7704 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 2 + - uid: 7705 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 7708 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 2 + - uid: 7709 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 2 + - uid: 7710 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 2 + - uid: 7711 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 7712 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 2 + - uid: 7713 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 7714 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 2 + - uid: 7715 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 2 + - uid: 7716 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 2 + - uid: 7719 + components: + - type: Transform + pos: 20.5,4.5 + parent: 2 + - uid: 7720 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - uid: 7721 + components: + - type: Transform + pos: 20.5,2.5 + parent: 2 + - uid: 7723 + components: + - type: Transform + pos: 19.5,1.5 + parent: 2 + - uid: 7724 + components: + - type: Transform + pos: 24.5,1.5 + parent: 2 + - uid: 7725 + components: + - type: Transform + pos: 25.5,1.5 + parent: 2 + - uid: 7726 + components: + - type: Transform + pos: 26.5,1.5 + parent: 2 + - uid: 7727 + components: + - type: Transform + pos: 30.5,1.5 + parent: 2 + - uid: 7728 + components: + - type: Transform + pos: 31.5,1.5 + parent: 2 + - uid: 7729 + components: + - type: Transform + pos: 32.5,1.5 + parent: 2 + - uid: 7730 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 7731 + components: + - type: Transform + pos: 23.5,10.5 + parent: 2 + - uid: 7732 + components: + - type: Transform + pos: 23.5,11.5 + parent: 2 + - uid: 7733 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 7734 + components: + - type: Transform + pos: 33.5,9.5 + parent: 2 + - uid: 7735 + components: + - type: Transform + pos: 33.5,10.5 + parent: 2 + - uid: 7736 + components: + - type: Transform + pos: 33.5,11.5 + parent: 2 + - uid: 7737 + components: + - type: Transform + pos: 23.5,15.5 + parent: 2 + - uid: 7738 + components: + - type: Transform + pos: 23.5,18.5 + parent: 2 + - uid: 7739 + components: + - type: Transform + pos: 23.5,19.5 + parent: 2 + - uid: 7740 + components: + - type: Transform + pos: 23.5,20.5 + parent: 2 + - uid: 7741 + components: + - type: Transform + pos: 22.5,21.5 + parent: 2 + - uid: 7742 + components: + - type: Transform + pos: 21.5,21.5 + parent: 2 + - uid: 7743 + components: + - type: Transform + pos: 20.5,21.5 + parent: 2 + - uid: 7744 + components: + - type: Transform + pos: -4.5,20.5 + parent: 2 + - uid: 7745 + components: + - type: Transform + pos: -3.5,20.5 + parent: 2 + - uid: 7746 + components: + - type: Transform + pos: -2.5,20.5 + parent: 2 + - uid: 7791 + components: + - type: Transform + pos: 37.5,11.5 + parent: 2 + - uid: 7792 + components: + - type: Transform + pos: 38.5,11.5 + parent: 2 + - uid: 7793 + components: + - type: Transform + pos: 39.5,12.5 + parent: 2 + - uid: 7794 + components: + - type: Transform + pos: 36.5,12.5 + parent: 2 + - uid: 7795 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 + - uid: 7796 + components: + - type: Transform + pos: 37.5,16.5 + parent: 2 + - uid: 7797 + components: + - type: Transform + pos: 38.5,16.5 + parent: 2 + - uid: 7798 + components: + - type: Transform + pos: 39.5,15.5 + parent: 2 + - uid: 7799 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 7800 + components: + - type: Transform + pos: 35.5,19.5 + parent: 2 + - uid: 7948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,1.5 + parent: 2 + - uid: 7954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,1.5 + parent: 2 + - uid: 7955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,1.5 + parent: 2 + - uid: 7956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,1.5 + parent: 2 + - uid: 7957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,1.5 + parent: 2 + - uid: 7958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,1.5 + parent: 2 + - uid: 7959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,1.5 + parent: 2 + - uid: 7967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-3.5 + parent: 2 + - uid: 8021 + components: + - type: Transform + pos: -59.5,-42.5 + parent: 2 + - uid: 8024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,5.5 + parent: 2 + - uid: 8029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,4.5 + parent: 2 + - uid: 8030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,3.5 + parent: 2 + - uid: 8065 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 8073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,-11.5 + parent: 2 + - uid: 8074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -98.5,-11.5 + parent: 2 + - uid: 8075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,-11.5 + parent: 2 + - uid: 8078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,-11.5 + parent: 2 + - uid: 8079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,-11.5 + parent: 2 + - uid: 8080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,-11.5 + parent: 2 + - uid: 8081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,-11.5 + parent: 2 + - uid: 8082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,-11.5 + parent: 2 + - uid: 8090 + components: + - type: Transform + pos: 3.5,25.5 + parent: 2 + - uid: 8188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-21.5 + parent: 2 + - uid: 8189 + components: + - type: Transform + pos: -61.5,-2.5 + parent: 2 + - uid: 8190 + components: + - type: Transform + pos: -60.5,-2.5 + parent: 2 + - uid: 8206 + components: + - type: Transform + pos: -53.5,-30.5 + parent: 2 + - uid: 8207 + components: + - type: Transform + pos: -50.5,-29.5 + parent: 2 + - uid: 8208 + components: + - type: Transform + pos: -53.5,-24.5 + parent: 2 + - uid: 8209 + components: + - type: Transform + pos: -50.5,-25.5 + parent: 2 + - uid: 8210 + components: + - type: Transform + pos: -50.5,-21.5 + parent: 2 + - uid: 8345 + components: + - type: Transform + pos: -67.5,2.5 + parent: 2 + - uid: 8348 + components: + - type: Transform + pos: -65.5,2.5 + parent: 2 + - uid: 8790 + components: + - type: Transform + pos: 3.5,27.5 + parent: 2 + - uid: 8970 + components: + - type: Transform + pos: -13.5,-24.5 + parent: 2 + - uid: 8971 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 2 + - uid: 9089 + components: + - type: Transform + pos: -58.5,-42.5 + parent: 2 + - uid: 9090 + components: + - type: Transform + pos: -57.5,-42.5 + parent: 2 + - uid: 9091 + components: + - type: Transform + pos: -60.5,-39.5 + parent: 2 + - uid: 9092 + components: + - type: Transform + pos: -60.5,-40.5 + parent: 2 + - uid: 9093 + components: + - type: Transform + pos: -60.5,-41.5 + parent: 2 + - uid: 9223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-8.5 + parent: 2 + - uid: 9226 + components: + - type: Transform + pos: -25.5,-14.5 + parent: 2 + - uid: 9494 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - uid: 9495 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 2 + - uid: 9848 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 2 + - uid: 9849 + components: + - type: Transform + pos: 38.5,-7.5 + parent: 2 + - uid: 9850 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 9851 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - uid: 9852 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 2 + - uid: 9853 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 2 + - uid: 9854 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 2 + - uid: 9855 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 2 + - uid: 9856 + components: + - type: Transform + pos: 38.5,-17.5 + parent: 2 + - uid: 9857 + components: + - type: Transform + pos: 37.5,-17.5 + parent: 2 + - uid: 9858 + components: + - type: Transform + pos: 35.5,-17.5 + parent: 2 + - uid: 9859 + components: + - type: Transform + pos: 34.5,-17.5 + parent: 2 + - uid: 9860 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 2 + - uid: 9861 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 2 + - uid: 9862 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 2 + - uid: 9863 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 2 + - uid: 9864 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 2 + - uid: 9865 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 2 + - uid: 9866 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 2 + - uid: 9867 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 2 + - uid: 9868 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 2 + - uid: 10124 + components: + - type: Transform + pos: -44.5,-57.5 + parent: 2 + - uid: 10125 + components: + - type: Transform + pos: -44.5,-58.5 + parent: 2 + - uid: 10126 + components: + - type: Transform + pos: -44.5,-59.5 + parent: 2 + - uid: 10127 + components: + - type: Transform + pos: -44.5,-61.5 + parent: 2 + - uid: 10128 + components: + - type: Transform + pos: -44.5,-62.5 + parent: 2 + - uid: 10129 + components: + - type: Transform + pos: -44.5,-63.5 + parent: 2 + - uid: 10130 + components: + - type: Transform + pos: -44.5,-64.5 + parent: 2 + - uid: 10131 + components: + - type: Transform + pos: -44.5,-65.5 + parent: 2 + - uid: 10132 + components: + - type: Transform + pos: -44.5,-66.5 + parent: 2 + - uid: 10133 + components: + - type: Transform + pos: -44.5,-69.5 + parent: 2 + - uid: 10134 + components: + - type: Transform + pos: -44.5,-73.5 + parent: 2 + - uid: 10135 + components: + - type: Transform + pos: -44.5,-72.5 + parent: 2 + - uid: 10136 + components: + - type: Transform + pos: -43.5,-74.5 + parent: 2 + - uid: 10137 + components: + - type: Transform + pos: -42.5,-74.5 + parent: 2 + - uid: 10138 + components: + - type: Transform + pos: -41.5,-74.5 + parent: 2 + - uid: 10139 + components: + - type: Transform + pos: -40.5,-74.5 + parent: 2 + - uid: 10140 + components: + - type: Transform + pos: -39.5,-74.5 + parent: 2 + - uid: 10141 + components: + - type: Transform + pos: -44.5,-74.5 + parent: 2 + - uid: 10142 + components: + - type: Transform + pos: -36.5,-74.5 + parent: 2 + - uid: 10143 + components: + - type: Transform + pos: -35.5,-75.5 + parent: 2 + - uid: 10144 + components: + - type: Transform + pos: -35.5,-76.5 + parent: 2 + - uid: 10145 + components: + - type: Transform + pos: -33.5,-76.5 + parent: 2 + - uid: 10146 + components: + - type: Transform + pos: -32.5,-76.5 + parent: 2 + - uid: 10147 + components: + - type: Transform + pos: -31.5,-76.5 + parent: 2 + - uid: 10148 + components: + - type: Transform + pos: -30.5,-76.5 + parent: 2 + - uid: 10274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,-11.5 + parent: 2 + - uid: 10275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,-11.5 + parent: 2 + - uid: 10280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,-11.5 + parent: 2 + - uid: 10305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,-11.5 + parent: 2 + - uid: 10307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,6.5 + parent: 2 + - uid: 10311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,6.5 + parent: 2 + - uid: 10312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,-0.5 + parent: 2 + - uid: 10360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,2.5 + parent: 2 + - uid: 10362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,1.5 + parent: 2 + - uid: 10363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,-1.5 + parent: 2 + - uid: 10388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,6.5 + parent: 2 + - uid: 10447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,-3.5 + parent: 2 + - uid: 10487 + components: + - type: Transform + pos: -66.5,2.5 + parent: 2 + - uid: 10578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,-13.5 + parent: 2 + - uid: 10579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,-14.5 + parent: 2 + - uid: 10580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,-15.5 + parent: 2 + - uid: 10581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,-15.5 + parent: 2 + - uid: 10582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,-17.5 + parent: 2 + - uid: 10583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,-18.5 + parent: 2 + - uid: 10584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,-19.5 + parent: 2 + - uid: 10585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,-21.5 + parent: 2 + - uid: 10586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,-22.5 + parent: 2 + - uid: 10587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,-23.5 + parent: 2 + - uid: 10588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,-23.5 + parent: 2 + - uid: 10589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,-23.5 + parent: 2 + - uid: 10590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,-23.5 + parent: 2 + - uid: 10591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,-23.5 + parent: 2 + - uid: 10592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,-23.5 + parent: 2 + - uid: 10593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,-23.5 + parent: 2 + - uid: 10594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,-23.5 + parent: 2 + - uid: 10595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-23.5 + parent: 2 + - uid: 10596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,-23.5 + parent: 2 + - uid: 10597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,-23.5 + parent: 2 + - uid: 10598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,-23.5 + parent: 2 + - uid: 10599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,-23.5 + parent: 2 + - uid: 10600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-23.5 + parent: 2 + - uid: 10656 + components: + - type: Transform + pos: -47.5,-12.5 + parent: 2 + - uid: 10976 + components: + - type: Transform + pos: -36.5,29.5 + parent: 2 + - uid: 10997 + components: + - type: Transform + pos: -36.5,28.5 + parent: 2 + - uid: 10998 + components: + - type: Transform + pos: -36.5,27.5 + parent: 2 + - uid: 10999 + components: + - type: Transform + pos: -11.5,29.5 + parent: 2 + - uid: 11000 + components: + - type: Transform + pos: -11.5,28.5 + parent: 2 + - uid: 11001 + components: + - type: Transform + pos: -11.5,31.5 + parent: 2 + - uid: 11002 + components: + - type: Transform + pos: -11.5,32.5 + parent: 2 + - uid: 11003 + components: + - type: Transform + pos: -11.5,33.5 + parent: 2 + - uid: 11004 + components: + - type: Transform + pos: -11.5,34.5 + parent: 2 + - uid: 11006 + components: + - type: Transform + pos: -11.5,36.5 + parent: 2 + - uid: 11007 + components: + - type: Transform + pos: -11.5,37.5 + parent: 2 + - uid: 11008 + components: + - type: Transform + pos: -11.5,38.5 + parent: 2 + - uid: 11009 + components: + - type: Transform + pos: -11.5,39.5 + parent: 2 + - uid: 11010 + components: + - type: Transform + pos: -11.5,40.5 + parent: 2 + - uid: 11011 + components: + - type: Transform + pos: -11.5,41.5 + parent: 2 + - uid: 11012 + components: + - type: Transform + pos: -11.5,42.5 + parent: 2 + - uid: 11013 + components: + - type: Transform + pos: -11.5,44.5 + parent: 2 + - uid: 11014 + components: + - type: Transform + pos: -11.5,48.5 + parent: 2 + - uid: 11015 + components: + - type: Transform + pos: -11.5,47.5 + parent: 2 + - uid: 11016 + components: + - type: Transform + pos: -11.5,46.5 + parent: 2 + - uid: 11017 + components: + - type: Transform + pos: -12.5,49.5 + parent: 2 + - uid: 11018 + components: + - type: Transform + pos: -13.5,49.5 + parent: 2 + - uid: 11019 + components: + - type: Transform + pos: -14.5,49.5 + parent: 2 + - uid: 11020 + components: + - type: Transform + pos: -15.5,49.5 + parent: 2 + - uid: 11021 + components: + - type: Transform + pos: -18.5,49.5 + parent: 2 + - uid: 11022 + components: + - type: Transform + pos: -19.5,49.5 + parent: 2 + - uid: 11023 + components: + - type: Transform + pos: -20.5,49.5 + parent: 2 + - uid: 11024 + components: + - type: Transform + pos: -21.5,50.5 + parent: 2 + - uid: 11025 + components: + - type: Transform + pos: -22.5,50.5 + parent: 2 + - uid: 11026 + components: + - type: Transform + pos: -23.5,50.5 + parent: 2 + - uid: 11027 + components: + - type: Transform + pos: -26.5,49.5 + parent: 2 + - uid: 11028 + components: + - type: Transform + pos: -27.5,49.5 + parent: 2 + - uid: 11029 + components: + - type: Transform + pos: -28.5,49.5 + parent: 2 + - uid: 11030 + components: + - type: Transform + pos: -30.5,49.5 + parent: 2 + - uid: 11031 + components: + - type: Transform + pos: -31.5,49.5 + parent: 2 + - uid: 11032 + components: + - type: Transform + pos: -32.5,49.5 + parent: 2 + - uid: 11033 + components: + - type: Transform + pos: -33.5,48.5 + parent: 2 + - uid: 11034 + components: + - type: Transform + pos: -33.5,47.5 + parent: 2 + - uid: 11035 + components: + - type: Transform + pos: -33.5,46.5 + parent: 2 + - uid: 11036 + components: + - type: Transform + pos: -33.5,45.5 + parent: 2 + - uid: 11170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,20.5 + parent: 2 + - uid: 11171 + components: + - type: Transform + pos: -52.5,41.5 + parent: 2 + - uid: 11172 + components: + - type: Transform + pos: -49.5,41.5 + parent: 2 + - uid: 11389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,-34.5 + parent: 2 + - uid: 11416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,11.5 + parent: 2 + - uid: 11523 + components: + - type: Transform + pos: -78.5,-32.5 + parent: 2 + - uid: 11525 + components: + - type: Transform + pos: -75.5,-36.5 + parent: 2 + - uid: 11527 + components: + - type: Transform + pos: -74.5,-36.5 + parent: 2 + - uid: 11530 + components: + - type: Transform + pos: -81.5,-36.5 + parent: 2 + - uid: 11531 + components: + - type: Transform + pos: -82.5,-36.5 + parent: 2 + - uid: 11532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,-32.5 + parent: 2 + - uid: 11533 + components: + - type: Transform + pos: -71.5,-32.5 + parent: 2 + - uid: 11534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,-32.5 + parent: 2 + - uid: 11539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,-30.5 + parent: 2 + - uid: 11541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-28.5 + parent: 2 + - uid: 11542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-29.5 + parent: 2 + - uid: 11543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,-26.5 + parent: 2 + - uid: 11544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,-27.5 + parent: 2 + - uid: 11546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-24.5 + parent: 2 + - uid: 11547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-24.5 + parent: 2 + - uid: 11548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-22.5 + parent: 2 + - uid: 11549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-23.5 + parent: 2 + - uid: 11550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-29.5 + parent: 2 + - uid: 11596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,33.5 + parent: 2 + - uid: 11608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,42.5 + parent: 2 + - uid: 11609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,40.5 + parent: 2 + - uid: 11616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,41.5 + parent: 2 + - uid: 11625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,41.5 + parent: 2 + - uid: 11627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,40.5 + parent: 2 + - uid: 11833 + components: + - type: Transform + pos: -37.5,10.5 + parent: 2 + - uid: 11849 + components: + - type: Transform + pos: -45.5,23.5 + parent: 2 + - uid: 11855 + components: + - type: Transform + pos: -42.5,26.5 + parent: 2 + - uid: 12116 + components: + - type: Transform + pos: -6.5,-61.5 + parent: 2 + - uid: 12268 + components: + - type: Transform + pos: -52.5,23.5 + parent: 2 + - uid: 12332 + components: + - type: Transform + pos: -49.5,23.5 + parent: 2 + - uid: 12385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-32.5 + parent: 2 + - uid: 12412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,32.5 + parent: 2 + - uid: 12418 + components: + - type: Transform + pos: -53.5,23.5 + parent: 2 + - uid: 12544 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 2 + - uid: 12788 + components: + - type: Transform + pos: -50.5,38.5 + parent: 2 + - uid: 12789 + components: + - type: Transform + pos: -52.5,38.5 + parent: 2 + - uid: 12792 + components: + - type: Transform + pos: -48.5,36.5 + parent: 2 + - uid: 12799 + components: + - type: Transform + pos: -51.5,38.5 + parent: 2 + - uid: 12839 + components: + - type: Transform + pos: -53.5,39.5 + parent: 2 + - uid: 12857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-20.5 + parent: 2 + - uid: 12858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-24.5 + parent: 2 + - uid: 12859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-19.5 + parent: 2 + - uid: 12915 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 2 + - uid: 12985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-38.5 + parent: 2 + - uid: 12986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-38.5 + parent: 2 + - uid: 12987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-38.5 + parent: 2 + - uid: 12988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-30.5 + parent: 2 + - uid: 12989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-30.5 + parent: 2 + - uid: 12990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-30.5 + parent: 2 + - uid: 12991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-33.5 + parent: 2 + - uid: 12992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-34.5 + parent: 2 + - uid: 12993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-35.5 + parent: 2 + - uid: 13063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,31.5 + parent: 2 + - uid: 13546 + components: + - type: Transform + pos: -23.5,20.5 + parent: 2 + - uid: 13547 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 13548 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 + - uid: 13549 + components: + - type: Transform + pos: -10.5,2.5 + parent: 2 + - uid: 13550 + components: + - type: Transform + pos: -11.5,2.5 + parent: 2 + - uid: 13551 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - uid: 13552 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - uid: 13553 + components: + - type: Transform + pos: -5.5,13.5 + parent: 2 + - uid: 13557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-8.5 + parent: 2 + - uid: 13577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 2 + - uid: 13578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 2 + - uid: 13580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-16.5 + parent: 2 + - uid: 13581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-16.5 + parent: 2 + - uid: 13582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-16.5 + parent: 2 + - uid: 13583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-16.5 + parent: 2 + - uid: 13584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-16.5 + parent: 2 + - uid: 13585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-16.5 + parent: 2 + - uid: 13586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 2 + - uid: 13587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 2 + - uid: 13588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 2 + - uid: 13589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 2 + - uid: 13590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-11.5 + parent: 2 + - uid: 13591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-10.5 + parent: 2 + - uid: 13592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-7.5 + parent: 2 + - uid: 13593 + components: + - type: Transform + pos: -42.5,-53.5 + parent: 2 + - uid: 13594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 2 + - uid: 13595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-2.5 + parent: 2 + - uid: 13596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 2 + - uid: 13597 + components: + - type: Transform + pos: -65.5,-12.5 + parent: 2 + - uid: 13614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-25.5 + parent: 2 + - uid: 13616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-25.5 + parent: 2 + - uid: 13619 + components: + - type: Transform + pos: 17.5,21.5 + parent: 2 + - uid: 13620 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 + - uid: 13621 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 + - uid: 13622 + components: + - type: Transform + pos: 33.5,18.5 + parent: 2 + - uid: 13623 + components: + - type: Transform + pos: 33.5,19.5 + parent: 2 + - uid: 13624 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 2 + - uid: 14197 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 14315 + components: + - type: Transform + pos: -26.5,-75.5 + parent: 2 + - uid: 14316 + components: + - type: Transform + pos: -23.5,-76.5 + parent: 2 + - uid: 14318 + components: + - type: Transform + pos: -27.5,-75.5 + parent: 2 + - uid: 14319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-75.5 + parent: 2 + - uid: 14321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-75.5 + parent: 2 + - uid: 14322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-75.5 + parent: 2 + - uid: 14323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-77.5 + parent: 2 + - uid: 14324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-77.5 + parent: 2 + - uid: 14325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-77.5 + parent: 2 + - uid: 14326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-77.5 + parent: 2 + - uid: 14328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-77.5 + parent: 2 + - uid: 14329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-77.5 + parent: 2 + - uid: 14330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-77.5 + parent: 2 + - uid: 14331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-77.5 + parent: 2 + - uid: 14332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-77.5 + parent: 2 + - uid: 14333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-77.5 + parent: 2 + - uid: 14354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,33.5 + parent: 2 + - uid: 14356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,33.5 + parent: 2 + - uid: 14358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,33.5 + parent: 2 + - uid: 14387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-37.5 + parent: 2 + - uid: 14391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,-39.5 + parent: 2 + - uid: 14392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-38.5 + parent: 2 + - uid: 14393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,-40.5 + parent: 2 + - uid: 14394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-40.5 + parent: 2 + - uid: 14396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-42.5 + parent: 2 + - uid: 14398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-42.5 + parent: 2 + - uid: 14399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-43.5 + parent: 2 + - uid: 14400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-45.5 + parent: 2 + - uid: 14401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-45.5 + parent: 2 + - uid: 14402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-45.5 + parent: 2 + - uid: 14403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-44.5 + parent: 2 + - uid: 14417 + components: + - type: Transform + pos: -22.5,-76.5 + parent: 2 + - uid: 14424 + components: + - type: Transform + pos: -20.5,-76.5 + parent: 2 + - uid: 14869 + components: + - type: Transform + pos: -73.5,32.5 + parent: 2 + - uid: 14870 + components: + - type: Transform + pos: -73.5,33.5 + parent: 2 + - uid: 14871 + components: + - type: Transform + pos: -73.5,34.5 + parent: 2 + - uid: 14872 + components: + - type: Transform + pos: -71.5,34.5 + parent: 2 + - uid: 14873 + components: + - type: Transform + pos: -71.5,33.5 + parent: 2 + - uid: 14874 + components: + - type: Transform + pos: -71.5,32.5 + parent: 2 + - uid: 15146 + components: + - type: Transform + pos: -71.5,27.5 + parent: 2 + - uid: 15147 + components: + - type: Transform + pos: -73.5,27.5 + parent: 2 + - uid: 15343 + components: + - type: Transform + pos: -74.5,39.5 + parent: 2 + - uid: 15369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,39.5 + parent: 2 + - uid: 15370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,39.5 + parent: 2 + - uid: 15371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,39.5 + parent: 2 + - uid: 15372 + components: + - type: Transform + pos: -70.5,39.5 + parent: 2 + - uid: 15373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,35.5 + parent: 2 + - uid: 15374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,34.5 + parent: 2 + - uid: 15375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,33.5 + parent: 2 + - uid: 15376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,32.5 + parent: 2 + - uid: 15377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,31.5 + parent: 2 + - uid: 15378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,31.5 + parent: 2 + - uid: 15379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,32.5 + parent: 2 + - uid: 15380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,33.5 + parent: 2 + - uid: 15381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,34.5 + parent: 2 + - uid: 15382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,35.5 + parent: 2 + - uid: 15739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,35.5 + parent: 2 + - uid: 15742 + components: + - type: Transform + pos: 1.5,35.5 + parent: 2 + - uid: 15793 + components: + - type: Transform + pos: 3.5,35.5 + parent: 2 + - uid: 15827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,34.5 + parent: 2 + - uid: 16078 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 + - uid: 16081 + components: + - type: Transform + pos: 12.5,27.5 + parent: 2 + - uid: 16106 + components: + - type: Transform + pos: 18.5,26.5 + parent: 2 + - uid: 16107 + components: + - type: Transform + pos: 18.5,25.5 + parent: 2 + - uid: 16172 + components: + - type: Transform + pos: -4.5,-64.5 + parent: 2 + - uid: 16173 + components: + - type: Transform + pos: -4.5,-65.5 + parent: 2 + - uid: 16174 + components: + - type: Transform + pos: -4.5,-66.5 + parent: 2 + - uid: 16175 + components: + - type: Transform + pos: -4.5,-68.5 + parent: 2 + - uid: 16176 + components: + - type: Transform + pos: -4.5,-69.5 + parent: 2 + - uid: 16177 + components: + - type: Transform + pos: -4.5,-62.5 + parent: 2 + - uid: 16212 + components: + - type: Transform + pos: 18.5,34.5 + parent: 2 + - uid: 16216 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - uid: 16408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,24.5 + parent: 2 + - uid: 16409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,24.5 + parent: 2 + - uid: 16410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,24.5 + parent: 2 +- proto: GrilleBroken + entities: + - uid: 909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-10.5 + parent: 2 + - uid: 911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-17.5 + parent: 2 + - uid: 1664 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 2153 + components: + - type: Transform + pos: 1.5,-37.5 + parent: 2 + - uid: 2154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-37.5 + parent: 2 + - uid: 2158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,8.5 + parent: 2 + - uid: 3672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-8.5 + parent: 2 + - uid: 5768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-17.5 + parent: 2 + - uid: 5932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-17.5 + parent: 2 + - uid: 6169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,18.5 + parent: 2 + - uid: 6175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,18.5 + parent: 2 + - uid: 6276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,8.5 + parent: 2 + - uid: 7987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,10.5 + parent: 2 + - uid: 7994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-17.5 + parent: 2 + - uid: 9869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-17.5 + parent: 2 + - uid: 9870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-17.5 + parent: 2 + - uid: 9871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-17.5 + parent: 2 + - uid: 9872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-17.5 + parent: 2 + - uid: 9873 + components: + - type: Transform + pos: 38.5,-8.5 + parent: 2 + - uid: 9874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-12.5 + parent: 2 + - uid: 10276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,-11.5 + parent: 2 + - uid: 10277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,-11.5 + parent: 2 + - uid: 10278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,-11.5 + parent: 2 + - uid: 10279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,-11.5 + parent: 2 + - uid: 10290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,-11.5 + parent: 2 + - uid: 11521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-32.5 + parent: 2 + - uid: 11522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,-32.5 + parent: 2 + - uid: 11526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-36.5 + parent: 2 + - uid: 11529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,-36.5 + parent: 2 + - uid: 11545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,-25.5 + parent: 2 + - uid: 11551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,-26.5 + parent: 2 + - uid: 11552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,-30.5 + parent: 2 + - uid: 11553 + components: + - type: Transform + pos: -75.5,-23.5 + parent: 2 + - uid: 11554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-23.5 + parent: 2 + - uid: 11555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,-28.5 + parent: 2 + - uid: 11556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,-30.5 + parent: 2 + - uid: 11926 + components: + - type: Transform + pos: -8.5,-46.5 + parent: 2 + - uid: 11928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,7.5 + parent: 2 + - uid: 12345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,10.5 + parent: 2 + - uid: 14285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-10.5 + parent: 2 + - uid: 14286 + components: + - type: Transform + pos: -66.5,-8.5 + parent: 2 + - uid: 14287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-10.5 + parent: 2 + - uid: 14288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-10.5 + parent: 2 + - uid: 14291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,-5.5 + parent: 2 + - uid: 14292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,-5.5 + parent: 2 + - uid: 14296 + components: + - type: Transform + pos: -58.5,-18.5 + parent: 2 + - uid: 14297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-18.5 + parent: 2 + - uid: 14298 + components: + - type: Transform + pos: -45.5,-17.5 + parent: 2 + - uid: 14300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-17.5 + parent: 2 + - uid: 14301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-18.5 + parent: 2 + - uid: 14302 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 14303 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 + - uid: 14304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-19.5 + parent: 2 + - uid: 14307 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 14309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-7.5 + parent: 2 + - uid: 14317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-77.5 + parent: 2 + - uid: 14327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-76.5 + parent: 2 + - uid: 14334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-76.5 + parent: 2 + - uid: 14335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-74.5 + parent: 2 + - uid: 14336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-77.5 + parent: 2 + - uid: 14337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-77.5 + parent: 2 + - uid: 14343 + components: + - type: Transform + pos: -44.5,-68.5 + parent: 2 + - uid: 14344 + components: + - type: Transform + pos: -35.5,-74.5 + parent: 2 + - uid: 14345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-74.5 + parent: 2 + - uid: 14346 + components: + - type: Transform + pos: -4.5,-73.5 + parent: 2 + - uid: 14351 + components: + - type: Transform + pos: -44.5,-60.5 + parent: 2 + - uid: 14352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-67.5 + parent: 2 + - uid: 14359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,33.5 + parent: 2 + - uid: 14361 + components: + - type: Transform + pos: -11.5,30.5 + parent: 2 + - uid: 14362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,31.5 + parent: 2 + - uid: 14363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,32.5 + parent: 2 + - uid: 14364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,33.5 + parent: 2 + - uid: 14365 + components: + - type: Transform + pos: -11.5,35.5 + parent: 2 + - uid: 14366 + components: + - type: Transform + pos: -11.5,43.5 + parent: 2 + - uid: 14367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,45.5 + parent: 2 + - uid: 14369 + components: + - type: Transform + pos: -11.5,49.5 + parent: 2 + - uid: 14370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,49.5 + parent: 2 + - uid: 14371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,44.5 + parent: 2 + - uid: 14372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,49.5 + parent: 2 + - uid: 14373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,49.5 + parent: 2 + - uid: 14374 + components: + - type: Transform + pos: -20.5,50.5 + parent: 2 + - uid: 14375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,50.5 + parent: 2 + - uid: 14376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,49.5 + parent: 2 + - uid: 14377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,50.5 + parent: 2 + - uid: 14378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,49.5 + parent: 2 + - uid: 14379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,49.5 + parent: 2 + - uid: 14382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,49.5 + parent: 2 + - uid: 14383 + components: + - type: Transform + pos: -33.5,49.5 + parent: 2 + - uid: 14385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-17.5 + parent: 2 + - uid: 14386 + components: + - type: Transform + pos: 38.5,-12.5 + parent: 2 + - uid: 14388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-17.5 + parent: 2 + - uid: 14389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-75.5 + parent: 2 + - uid: 14404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-39.5 + parent: 2 + - uid: 14405 + components: + - type: Transform + pos: -71.5,-41.5 + parent: 2 + - uid: 14406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,-41.5 + parent: 2 + - uid: 14407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-44.5 + parent: 2 + - uid: 14410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-45.5 + parent: 2 + - uid: 14426 + components: + - type: Transform + pos: -24.5,-75.5 + parent: 2 + - uid: 14428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-75.5 + parent: 2 + - uid: 14471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-37.5 + parent: 2 + - uid: 14472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-37.5 + parent: 2 + - uid: 14473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-42.5 + parent: 2 + - uid: 14474 + components: + - type: Transform + pos: -46.5,-42.5 + parent: 2 + - uid: 14475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-43.5 + parent: 2 + - uid: 14476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-43.5 + parent: 2 + - uid: 14477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-47.5 + parent: 2 + - uid: 14478 + components: + - type: Transform + pos: -48.5,-47.5 + parent: 2 + - uid: 14479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-49.5 + parent: 2 + - uid: 14480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-49.5 + parent: 2 + - uid: 14481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-49.5 + parent: 2 + - uid: 14482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-49.5 + parent: 2 + - uid: 14485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-46.5 + parent: 2 + - uid: 14486 + components: + - type: Transform + pos: -23.5,-46.5 + parent: 2 + - uid: 14487 + components: + - type: Transform + pos: -28.5,-45.5 + parent: 2 + - uid: 14488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-45.5 + parent: 2 + - uid: 14490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-46.5 + parent: 2 + - uid: 14491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-48.5 + parent: 2 + - uid: 14492 + components: + - type: Transform + pos: -8.5,-39.5 + parent: 2 + - uid: 14493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-39.5 + parent: 2 + - uid: 14494 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 2 + - uid: 14495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-38.5 + parent: 2 + - uid: 14496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-38.5 + parent: 2 + - uid: 14499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-37.5 + parent: 2 + - uid: 14500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-37.5 + parent: 2 + - uid: 14501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-37.5 + parent: 2 + - uid: 14502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-37.5 + parent: 2 + - uid: 14503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-37.5 + parent: 2 + - uid: 14525 + components: + - type: Transform + pos: -21.5,6.5 + parent: 2 + - uid: 14526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,6.5 + parent: 2 + - uid: 14527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,4.5 + parent: 2 + - uid: 14528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,4.5 + parent: 2 + - uid: 14529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,11.5 + parent: 2 + - uid: 14530 + components: + - type: Transform + pos: -21.5,11.5 + parent: 2 + - uid: 16178 + components: + - type: Transform + pos: -4.5,-67.5 + parent: 2 + - uid: 16179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-70.5 + parent: 2 + - uid: 16279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-49.5 + parent: 2 + - uid: 16280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-49.5 + parent: 2 + - uid: 16281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-49.5 + parent: 2 + - uid: 16282 + components: + - type: Transform + pos: -51.5,-49.5 + parent: 2 + - uid: 16283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-53.5 + parent: 2 +- proto: GrilleDiagonal + entities: + - uid: 5856 + components: + - type: Transform + pos: 3.5,36.5 + parent: 2 + - uid: 15797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,36.5 + parent: 2 +- proto: GroundCannabis + entities: + - uid: 6540 + components: + - type: Transform + pos: 5.372533,-34.72166 + parent: 2 + - uid: 14498 + components: + - type: Transform + pos: 5.606908,-34.956036 + parent: 2 +- proto: GunSafe + entities: + - uid: 6305 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9323 + - 6721 + - 6720 + - 15040 + - 15041 + - 6662 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' + - uid: 9464 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14703 + moles: + - 1.8977377 + - 7.139109 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 13254 + - 13253 + - 13120 + - 12548 + - 9582 + - 12407 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' + - uid: 13255 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + 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: + - 5660 + - 5659 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' + - uid: 13256 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14556 + - 13717 + - 13411 + - 14730 + - 15026 + - 15027 + - 15028 + - 15029 + - 15037 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' +- proto: Handcuffs + entities: + - uid: 620 + components: + - type: Transform + pos: 6.54223,10.778725 + parent: 2 + - uid: 5822 + components: + - type: Transform + pos: 6.4672284,10.65372 + parent: 2 + - uid: 12736 + components: + - type: Transform + pos: -28.927994,-18.30709 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 12917 + components: + - type: Transform + pos: -28.84991,-18.381721 + parent: 2 + - uid: 16113 + components: + - type: Transform + pos: -81.38398,-7.238888 + parent: 2 + - uid: 16114 + components: + - type: Transform + pos: -81.493225,-7.4295406 + parent: 2 +- proto: HandheldCrewMonitor + entities: + - uid: 6863 + components: + - type: Transform + pos: -46.423588,-7.3996925 + parent: 2 +- proto: HandheldGPSBasic + entities: + - uid: 6616 + components: + - type: Transform + pos: 7.242831,-28.657295 + parent: 2 +- proto: HandheldHealthAnalyzer + entities: + - uid: 6893 + components: + - type: Transform + pos: -35.54158,-16.203033 + parent: 2 +- proto: HandHeldMassScanner + entities: + - uid: 3 + components: + - type: Transform + pos: -4.289629,-41.411583 + parent: 2 + - uid: 7054 + components: + - type: Transform + pos: -4.703762,-41.424004 + parent: 2 +- proto: HandLabeler + entities: + - uid: 6617 + components: + - type: Transform + pos: 7.5943937,-28.32917 + parent: 2 + - uid: 6788 + components: + - type: Transform + pos: -35.447105,-4.532789 + parent: 2 + - uid: 16151 + components: + - type: Transform + pos: 18.411201,29.824472 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: HappyHonkMime + entities: + - uid: 1713 + components: + - type: Transform + parent: 1541 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: HarmonicaInstrument + entities: + - uid: 562 + components: + - type: Transform + pos: 4.450973,42.615562 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: HighSecArmoryLocked + entities: + - uid: 614 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 +- proto: HighSecCommandLocked + entities: + - uid: 2811 + components: + - type: Transform + pos: -35.5,11.5 + parent: 2 + - uid: 11280 + components: + - type: Transform + pos: -60.5,-33.5 + parent: 2 + - uid: 11379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-33.5 + parent: 2 + - uid: 11391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-35.5 + parent: 2 + - uid: 11411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,14.5 + parent: 2 + - uid: 12396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-35.5 + parent: 2 +- proto: HolofanProjector + entities: + - uid: 6277 + components: + - type: Transform + pos: -45.404816,2.6740484 + parent: 2 +- proto: HospitalCurtainsOpen + entities: + - uid: 618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,7.5 + parent: 2 + - uid: 6468 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 2 + - uid: 8193 + components: + - type: Transform + pos: -56.5,-23.5 + parent: 2 + - uid: 8195 + components: + - type: Transform + pos: -47.5,-21.5 + parent: 2 + - uid: 8196 + components: + - type: Transform + pos: -47.5,-25.5 + parent: 2 + - uid: 8199 + components: + - type: Transform + pos: -49.5,-28.5 + parent: 2 + - uid: 8200 + components: + - type: Transform + pos: -54.5,-31.5 + parent: 2 + - uid: 9430 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 2 + - uid: 11309 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 13345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,7.5 + parent: 2 +- proto: hydroponicsSoil + entities: + - uid: 6541 + components: + - type: Transform + pos: -43.5,-52.5 + parent: 2 + - uid: 6542 + components: + - type: Transform + pos: -43.5,-51.5 + parent: 2 + - uid: 13102 + components: + - type: Transform + pos: -42.5,-52.5 + parent: 2 +- proto: HydroponicsToolClippers + entities: + - uid: 11580 + components: + - type: Transform + pos: 12.494478,38.416866 + parent: 2 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 14419 + components: + - type: Transform + pos: 12.561471,38.60821 + parent: 2 +- proto: HydroponicsToolSpade + entities: + - uid: 11597 + components: + - type: Transform + pos: 12.379921,39.002365 + parent: 2 +- proto: hydroponicsTray + entities: + - uid: 4441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,36.5 + parent: 2 + - uid: 6739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-3.5 + parent: 2 + - uid: 6740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-3.5 + parent: 2 + - uid: 6741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-3.5 + parent: 2 + - uid: 6742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-6.5 + parent: 2 + - uid: 6743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 2 + - uid: 6744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-8.5 + parent: 2 + - uid: 6745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-10.5 + parent: 2 + - uid: 6748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-9.5 + parent: 2 + - uid: 6749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-10.5 + parent: 2 + - uid: 11621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,37.5 + parent: 2 + - uid: 12560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,36.5 + parent: 2 + - uid: 14777 + components: + - type: Transform + pos: 11.5,37.5 + parent: 2 + - uid: 15919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,38.5 + parent: 2 +- proto: InflatableWall + entities: + - uid: 9619 + components: + - type: Transform + pos: -34.5,-41.5 + parent: 2 + - uid: 9620 + components: + - type: Transform + pos: -31.5,-44.5 + parent: 2 + - uid: 9621 + components: + - type: Transform + pos: -30.5,-41.5 + parent: 2 + - uid: 13134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-47.5 + parent: 2 +- proto: IngotGold + entities: + - uid: 11311 + components: + - type: Transform + pos: -27.408632,15.634991 + parent: 2 +- proto: IngotSilver + entities: + - uid: 5575 + components: + - type: Transform + pos: -27.023216,15.614157 + parent: 2 +- proto: IntercomEngineering + entities: + - uid: 6267 + components: + - type: Transform + pos: -33.5,2.5 + parent: 2 +- proto: JanitorialTrolley + entities: + - uid: 8321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,14.5 + parent: 2 +- proto: JanitorServiceLight + entities: + - uid: 412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,35.5 + parent: 2 + - type: DeviceLinkSink + links: + - 565 + - uid: 559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,34.5 + parent: 2 + - type: DeviceLinkSink + links: + - 11592 + - uid: 11470 + components: + - type: Transform + pos: -40.5,0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12483 + - uid: 12451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12480 + - uid: 12469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12480 + - uid: 12471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12485 + - uid: 12472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-35.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12503 + - uid: 12473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12505 + - uid: 12475 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12474 + - uid: 12500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12485 + - uid: 13655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12483 + - uid: 15933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,34.5 + parent: 2 + - type: DeviceLinkSink + links: + - 5918 + - uid: 15936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,35.5 + parent: 2 + - type: DeviceLinkSink + links: + - 5917 +- proto: JetpackBlueFilled + entities: + - uid: 8290 + components: + - type: Transform + pos: -53.615463,-5.3059483 + parent: 2 + - uid: 9496 + components: + - type: Transform + pos: -53.40442,-5.4782987 + parent: 2 +- proto: JetpackSecurityFilled + entities: + - uid: 15204 + components: + - type: Transform + pos: 9.379106,20.473204 + parent: 2 + - type: GasTank + toggleActionEntity: 8732 + - type: Jetpack + toggleActionEntity: 8453 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 8453 + - 8732 + - uid: 15209 + components: + - type: Transform + pos: 9.372752,20.805513 + parent: 2 + - type: GasTank + toggleActionEntity: 15983 + - type: Jetpack + toggleActionEntity: 15982 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 15982 + - 15983 +- proto: JetpackVoidFilled + entities: + - uid: 13667 + components: + - type: Transform + parent: 6372 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Joint + entities: + - uid: 6693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.486637,-7.3263445 + parent: 2 + - uid: 8641 + components: + - type: Transform + pos: 5.4697084,-35.354015 + parent: 2 + - uid: 12607 + components: + - type: Transform + pos: 3.5620508,-34.94035 + parent: 2 +- proto: Jug + entities: + - uid: 14207 + components: + - type: Transform + pos: -35.26553,-4.068222 + parent: 2 +- proto: KalimbaInstrument + entities: + - uid: 8457 + components: + - type: Transform + pos: -49.33561,-31.361881 + parent: 2 +- proto: KitchenDeepFryer + entities: + - uid: 782 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 2 +- proto: KitchenElectricGrill + entities: + - uid: 16004 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 2 +- proto: KitchenKnife + entities: + - uid: 15841 + components: + - type: Transform + pos: 7.587607,45.49134 + parent: 2 + - uid: 16009 + components: + - type: Transform + pos: -17.715347,-15.321278 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 626 + components: + - type: Transform + pos: -17.5,-13.5 + parent: 2 + - uid: 1016 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - uid: 11582 + components: + - type: Transform + pos: -0.5,38.5 + parent: 2 + - uid: 12840 + components: + - type: Transform + pos: -31.5,11.5 + parent: 2 +- proto: KitchenReagentGrinder + entities: + - uid: 6716 + components: + - type: Transform + pos: -18.5,-15.5 + parent: 2 + - uid: 6777 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 2 + - uid: 11591 + components: + - type: Transform + pos: 0.5,36.5 + parent: 2 +- proto: KitchenSpike + entities: + - uid: 6681 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 2 +- proto: KnifePlastic + entities: + - uid: 13558 + components: + - type: Transform + pos: -0.29479218,37.932995 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: KoboldCubeBox + entities: + - uid: 7177 + components: + - type: Transform + pos: -16.542084,-62.46041 + parent: 2 +- proto: KukriKnife + entities: + - uid: 9640 + components: + - type: Transform + pos: -35.61064,-42.359097 + parent: 2 +- proto: KvassTankFull + entities: + - uid: 6129 + components: + - type: Transform + pos: 10.5,-33.5 + parent: 2 +- proto: Lamp + entities: + - uid: 8251 + components: + - type: Transform + pos: -47.47896,-31.145756 + parent: 2 + - uid: 8252 + components: + - type: Transform + pos: -56.468136,-31.05629 + parent: 2 + - uid: 8253 + components: + - type: Transform + pos: -55.478897,-23.111866 + parent: 2 + - uid: 8255 + components: + - type: Transform + pos: -48.633976,-18.97213 + parent: 2 + - uid: 8256 + components: + - type: Transform + pos: -47.553207,-23.235943 + parent: 2 + - type: HandheldLight + toggleActionEntity: 8257 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 8257 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 12243 + components: + - type: Transform + pos: 1.6727958,19.83934 + parent: 2 + - type: HandheldLight + toggleActionEntity: 5926 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 5926 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 15965 + components: + - type: Transform + pos: 1.5550396,34.78816 + parent: 2 + - type: HandheldLight + toggleActionEntity: 15966 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 15966 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: True + - type: ActionsContainer +- proto: LampGold + entities: + - uid: 597 + components: + - type: Transform + pos: -58.759605,-38.10844 + parent: 2 + - uid: 5574 + components: + - type: Transform + pos: -8.4422455,10.63013 + parent: 2 + - type: HandheldLight + toggleActionEntity: 5540 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 5540 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 9634 + components: + - type: Transform + pos: -17.692116,9.89784 + parent: 2 + - type: HandheldLight + toggleActionEntity: 11307 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 11307 + - type: Physics + canCollide: True + - type: ActionsContainer +- proto: LampInterrogator + entities: + - uid: 541 + components: + - type: Transform + pos: 0.49678588,15.737576 + parent: 2 + - type: HandheldLight + toggleActionEntity: 546 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 546 + - type: Physics + canCollide: True + - type: ActionsContainer +- proto: LandMineModular + entities: + - uid: 14795 + components: + - type: Transform + pos: -30.457436,-44.360546 + parent: 2 + - uid: 14796 + components: + - type: Transform + pos: -32.448586,-45.407745 + parent: 2 +- proto: LargeBeaker + entities: + - uid: 11603 + components: + - type: Transform + pos: -0.63172054,37.409817 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 15625 + components: + - type: Transform + pos: -0.29567528,37.369305 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: LauncherCreamPie + entities: + - uid: 8986 + components: + - type: Transform + pos: 8.491379,-19.276182 + parent: 2 +- proto: Lighter + entities: + - uid: 6641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.559616,-19.369066 + parent: 2 +- proto: LightReplacer + entities: + - uid: 9551 + components: + - type: Transform + pos: -55.42559,-14.352307 + parent: 2 +- proto: LockableButtonEngineering + entities: + - uid: 15152 + components: + - type: Transform + pos: -64.5,27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15153: + - Pressed: Toggle + 15154: + - Pressed: Toggle + 15155: + - Pressed: Toggle + - uid: 15618 + components: + - type: Transform + pos: -67.5,27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15153: + - Pressed: Toggle + 15154: + - Pressed: Toggle + 15155: + - Pressed: Toggle + - uid: 15623 + components: + - type: MetaData + name: кнопка сброса газов + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11628: + - Pressed: Toggle + 11632: + - Pressed: Toggle + 11633: + - Pressed: Toggle +- proto: LockerAtmosphericsFilled + entities: + - uid: 14573 + components: + - type: Transform + pos: -42.5,22.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14578 + - 12237 + - 14574 + - 1701 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' + - uid: 14634 + components: + - type: Transform + pos: -43.5,22.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14638 + - 14092 + - 14637 + - 1712 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' +- proto: LockerBooze + entities: + - uid: 8149 + components: + - type: MetaData + name: Шкафчик + - type: Transform + pos: -47.5,-27.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + missingComponents: + - AccessReader + - uid: 8150 + components: + - type: MetaData + name: Шкафчик + - type: Transform + pos: -54.5,-28.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + missingComponents: + - AccessReader + - uid: 8151 + components: + - type: MetaData + name: Шкафчик + - type: Transform + pos: -56.5,-27.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + missingComponents: + - AccessReader + - uid: 8152 + components: + - type: MetaData + name: Шкафчик + - type: Transform + pos: -49.5,-26.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: PointLight + color: '#D56C6CFF' + missingComponents: + - AccessReader +- proto: LockerBoozeFilled + entities: + - uid: 6539 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 9396 + components: + - type: Transform + pos: -49.5,-39.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerBotanistFilled + entities: + - uid: 6736 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 6737 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerBrigmedicFilled + entities: + - uid: 5580 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15959 + - 13662 + - 11933 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' +- proto: LockerCaptainFilledHardsuit + entities: + - uid: 5598 + components: + - type: Transform + pos: -14.5,10.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerChemistryFilled + entities: + - uid: 12937 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 13506 + components: + - type: Transform + pos: -33.5,-3.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerChiefEngineerFilledHardsuit + entities: + - uid: 6372 + components: + - type: Transform + pos: -30.5,4.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6134 + - 6126 + - 13667 + - 1953 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' +- proto: LockerChiefMedicalOfficerFilledHardsuit + entities: + - uid: 6859 + components: + - type: Transform + pos: -45.5,-6.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerClown + entities: + - uid: 1021 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1139 + - 1271 + - 1432 + - 1458 + - 1517 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerDetectiveFilled + entities: + - uid: 8330 + components: + - type: Transform + pos: -59.5,-37.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 2830 + components: + - type: Transform + pos: -47.5,11.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 6369 + components: + - type: Transform + pos: -41.5,2.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 3724 + components: + - type: Transform + pos: -44.5,9.5 + parent: 2 + - uid: 6271 + components: + - type: Transform + pos: -47.5,3.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 6272 + components: + - type: Transform + pos: -47.5,4.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 6273 + components: + - type: Transform + pos: -47.5,5.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 9454 + components: + - type: Transform + pos: -42.5,9.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 15201 + components: + - type: Transform + pos: -43.5,9.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerEvidence + entities: + - uid: 609 + components: + - type: Transform + pos: 10.5,30.5 + parent: 2 + - type: Lock + locked: False + - 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: + - 12696 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#7FC080FF' + - uid: 885 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - type: Lock + locked: False + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.147 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12700 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#7FC080FF' + - uid: 937 + components: + - type: Transform + pos: 1.5,30.5 + parent: 2 + - type: Lock + locked: False + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.147 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12701 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#7FC080FF' + - uid: 1017 + components: + - type: Transform + pos: 7.5,27.5 + parent: 2 + - uid: 4442 + components: + - type: Transform + pos: 10.5,29.5 + parent: 2 + - type: Lock + locked: False + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.147 + 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: + - 12702 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#7FC080FF' + - uid: 6983 + components: + - type: Transform + pos: -28.5,-21.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 11572 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 + - uid: 16003 + components: + - type: Transform + pos: 3.5,29.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 16034 + components: + - type: Transform + pos: 8.5,29.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerForensicMantisFilled + entities: + - uid: 5491 + components: + - type: Transform + pos: -47.5,-19.5 + parent: 2 +- proto: LockerFreezer + entities: + - uid: 644 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 14380 + components: + - type: Transform + pos: -41.5,-25.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14381 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' + - uid: 15640 + components: + - type: Transform + pos: -0.5,39.5 + parent: 2 + - type: Lock + locked: False + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + 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: + - 15648 + - 15649 + - 15650 + - 15647 + - 15646 + - 15645 + - 15644 + - 15643 + - 15642 + - 15641 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#7FC080FF' +- proto: LockerFreezerVaultFilled + entities: + - uid: 5493 + components: + - type: Transform + pos: -27.5,13.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 229 + components: + - type: Transform + pos: -7.5,3.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerHeadOfSecurityFilledHardsuit + entities: + - uid: 3407 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 +- proto: LockerMedicalFilled + entities: + - uid: 3409 + components: + - type: Transform + pos: -26.5,-16.5 + parent: 2 + - uid: 6903 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 6904 + components: + - type: Transform + pos: -27.5,-14.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerMedicineFilled + entities: + - uid: 11872 + components: + - type: Transform + pos: -35.5,-21.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerMime + entities: + - uid: 1541 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1542 + - 1581 + - 1710 + - 1713 + - 1756 + - 1757 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerParamedicFilledHardsuit + entities: + - uid: 376 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 531 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerQuarterMasterFilled + entities: + - uid: 6464 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerResearchDirectorFilledHardsuit + entities: + - uid: 974 + components: + - type: Transform + pos: -10.5,-40.5 + parent: 2 +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 1419 + components: + - type: Transform + pos: -1.5,-37.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7057 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' + - uid: 4540 + components: + - type: Transform + pos: -2.5,-37.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7058 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' + - uid: 6772 + components: + - type: Transform + pos: -3.5,-37.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7059 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' +- proto: LockerScienceFilled + entities: + - uid: 214 + components: + - type: Transform + pos: -13.5,-46.5 + parent: 2 + - uid: 7062 + components: + - type: Transform + pos: -19.5,-46.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 7063 + components: + - type: Transform + pos: -18.5,-46.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 7228 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerSecurity + entities: + - uid: 15660 + components: + - type: MetaData + name: шкаф надзирателя + - type: Transform + pos: 3.5,33.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15735 + - 15734 + - 15730 + - 15709 + - 15409 + - 15662 + - 15661 + - 15719 + - 15720 + - 15736 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSecurityFilled + entities: + - uid: 3408 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 5601 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 5681 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 5682 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 14646 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 16001 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 16002 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerSyndicatePersonal + entities: + - uid: 1019 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + 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: + - 1033 + - 1031 + - 1674 + - 1768 + - 1772 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' + - uid: 15205 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + 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: + - 15993 + - 15994 + - 15214 + - 15213 + - 15212 + - 15211 + - 15210 + - 15208 + - 15207 + - 15206 + - 15215 + - 15216 + - 15951 + - 15988 + - 15992 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' +- proto: LockerWardenFilledHardsuit + entities: + - uid: 16 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 6370 + components: + - type: Transform + pos: -43.5,2.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 11683 + components: + - type: Transform + pos: -41.5,14.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LuxuryPen + entities: + - uid: 8397 + components: + - type: Transform + pos: -0.31687164,-4.856185 + parent: 2 +- proto: Machete + entities: + - uid: 16159 + components: + - type: Transform + pos: -53.582,8.473885 + parent: 2 +- proto: MachineAnomalyGenerator + entities: + - uid: 7138 + components: + - type: Transform + pos: -19.5,-63.5 + parent: 2 +- proto: MachineAnomalyVessel + entities: + - uid: 7139 + components: + - type: Transform + pos: -20.5,-66.5 + parent: 2 + - uid: 7140 + components: + - type: Transform + pos: -19.5,-66.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 7141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-65.5 + parent: 2 + - uid: 7142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-64.5 + parent: 2 +- proto: MachineArtifactAnalyzer + entities: + - uid: 7164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-70.5 + parent: 2 + - uid: 7165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-70.5 + parent: 2 +- proto: MachineCentrifuge + entities: + - uid: 16322 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 +- proto: MachineElectrolysisUnit + entities: + - uid: 6791 + components: + - type: Transform + pos: -35.5,-3.5 + parent: 2 +- proto: MachineFrame + entities: + - uid: 1985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-15.5 + parent: 2 + - uid: 6916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-13.5 + parent: 2 + - uid: 9408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-42.5 + parent: 2 +- proto: MachineFrameDestroyed + entities: + - uid: 13182 + components: + - type: Transform + pos: -68.5,-23.5 + parent: 2 + - uid: 13207 + components: + - type: Transform + pos: -66.5,-19.5 + parent: 2 +- proto: MagazinePistolSubMachineGun + entities: + - uid: 12548 + components: + - type: Transform + parent: 9464 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13120 + components: + - type: Transform + parent: 9464 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13253 + components: + - type: Transform + parent: 9464 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13254 + components: + - type: Transform + parent: 9464 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: MagazineRifle + entities: + - uid: 6662 + components: + - type: Transform + parent: 6305 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 6720 + components: + - type: Transform + parent: 6305 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 6721 + components: + - type: Transform + parent: 6305 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 9323 + components: + - type: Transform + parent: 6305 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: MagazineShotgun + entities: + - uid: 14730 + components: + - type: Transform + parent: 13256 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15026 + components: + - type: Transform + parent: 13256 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15027 + components: + - type: Transform + parent: 13256 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15028 + components: + - type: Transform + parent: 13256 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15029 + components: + - type: Transform + parent: 13256 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15037 + components: + - type: Transform + parent: 13256 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: MagazineShotgunBeanbag + entities: + - uid: 15730 + components: + - type: Transform + parent: 15660 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15734 + components: + - type: Transform + parent: 15660 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: MailTeleporter + entities: + - uid: 5515 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 2 +- proto: MaintenanceFluffSpawner + entities: + - uid: 6187 + components: + - type: Transform + pos: -37.5,-29.5 + parent: 2 + - uid: 9558 + components: + - type: Transform + pos: -49.5,13.5 + parent: 2 + - uid: 9559 + components: + - type: Transform + pos: -64.5,-11.5 + parent: 2 + - uid: 9560 + components: + - type: Transform + pos: -47.5,-39.5 + parent: 2 + - uid: 9561 + components: + - type: Transform + pos: -43.5,-48.5 + parent: 2 + - uid: 9562 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 2 + - uid: 9636 + components: + - type: Transform + pos: -34.5,-44.5 + parent: 2 + - uid: 14305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-17.5 + parent: 2 + - uid: 14416 + components: + - type: Transform + pos: -38.5,-21.5 + parent: 2 +- proto: MaintenancePlantSpawner + entities: + - uid: 4564 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - uid: 9552 + components: + - type: Transform + pos: -52.5,-8.5 + parent: 2 + - uid: 9553 + components: + - type: Transform + pos: -55.5,-16.5 + parent: 2 + - uid: 9554 + components: + - type: Transform + pos: -22.5,-49.5 + parent: 2 + - uid: 9555 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 9556 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 9557 + components: + - type: Transform + pos: 1.5,23.5 + parent: 2 + - uid: 9585 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 2 + - uid: 9586 + components: + - type: Transform + pos: -10.5,-49.5 + parent: 2 + - uid: 9591 + components: + - type: Transform + pos: -65.5,-7.5 + parent: 2 + - uid: 9592 + components: + - type: Transform + pos: -54.5,-10.5 + parent: 2 + - uid: 9630 + components: + - type: Transform + pos: -30.5,-46.5 + parent: 2 + - uid: 9631 + components: + - type: Transform + pos: -32.5,-45.5 + parent: 2 + - uid: 9632 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 + - uid: 9633 + components: + - type: Transform + pos: -31.5,-45.5 + parent: 2 + - uid: 11915 + components: + - type: Transform + pos: -62.5,-21.5 + parent: 2 + - uid: 16127 + components: + - type: Transform + pos: -67.5,-4.5 + parent: 2 +- proto: MaintenanceToolSpawner + entities: + - uid: 9453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,10.5 + parent: 2 + - uid: 9565 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - uid: 9567 + components: + - type: Transform + pos: -51.5,-5.5 + parent: 2 + - uid: 9573 + components: + - type: Transform + pos: -73.5,-6.5 + parent: 2 + - uid: 9574 + components: + - type: Transform + pos: -47.5,-39.5 + parent: 2 + - uid: 9575 + components: + - type: Transform + pos: -24.5,-45.5 + parent: 2 + - uid: 9576 + components: + - type: Transform + pos: -24.5,-45.5 + parent: 2 + - uid: 9578 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 9635 + components: + - type: Transform + pos: -32.5,-41.5 + parent: 2 + - uid: 13159 + components: + - type: Transform + pos: -8.5,-49.5 + parent: 2 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 9568 + components: + - type: Transform + pos: -49.5,4.5 + parent: 2 + - uid: 9571 + components: + - type: Transform + pos: -75.5,-4.5 + parent: 2 + - uid: 9588 + components: + - type: Transform + pos: -33.5,-48.5 + parent: 2 + - uid: 9637 + components: + - type: Transform + pos: -32.5,-43.5 + parent: 2 + - uid: 14717 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 + - uid: 14925 + components: + - type: Transform + pos: -54.5,18.5 + parent: 2 +- proto: MakeshiftShield + entities: + - uid: 15855 + components: + - type: Transform + pos: 7.515099,45.473263 + parent: 2 +- proto: MarimbaInstrument + entities: + - uid: 9434 + components: + - type: Transform + pos: -51.5,-47.5 + parent: 2 +- proto: Matchbox + entities: + - uid: 3179 + components: + - type: Transform + pos: -51.198994,-46.07993 + parent: 2 + - uid: 5734 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 5737 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7975 + components: + - type: Transform + pos: -31.589275,-36.522858 + parent: 2 +- proto: MaterialCloth + entities: + - uid: 5508 + components: + - type: Transform + pos: -12.522149,3.5133371 + parent: 2 +- proto: MaterialDurathread + entities: + - uid: 5509 + components: + - type: Transform + pos: -12.705608,3.715142 + parent: 2 +- proto: Mattress + entities: + - uid: 12791 + components: + - type: Transform + pos: -78.5,-4.5 + parent: 2 +- proto: MedicalBed + entities: + - uid: 4367 + components: + - type: Transform + pos: -43.5,-16.5 + parent: 2 + - uid: 6883 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 2 + - uid: 6884 + components: + - type: Transform + pos: -35.5,-22.5 + parent: 2 + - uid: 9597 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 12888 + components: + - type: Transform + pos: -41.5,-16.5 + parent: 2 +- proto: MedicalScanner + entities: + - uid: 6873 + components: + - type: Transform + pos: -30.5,-22.5 + parent: 2 +- proto: MedicalScannerMachineCircuitboard + entities: + - uid: 6866 + components: + - type: Transform + pos: -45.47558,-7.473091 + parent: 2 +- proto: MedicalTechFab + entities: + - uid: 6897 + components: + - type: Transform + pos: -30.5,-14.5 + parent: 2 +- proto: MedicatedSuture + entities: + - uid: 11933 + components: + - type: Transform + parent: 5580 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14829 + components: + - type: Transform + pos: -27.610794,-16.310091 + parent: 2 +- proto: MedkitAdvancedFilled + entities: + - uid: 5350 + components: + - type: Transform + pos: -55.454323,12.494204 + parent: 2 + - uid: 6896 + components: + - type: Transform + pos: -35.451313,-15.350643 + parent: 2 +- proto: MedkitBruteFilled + entities: + - uid: 6912 + components: + - type: Transform + pos: -28.219778,-16.255417 + parent: 2 + - uid: 15959 + components: + - type: Transform + parent: 5580 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MedkitBurnFilled + entities: + - uid: 6914 + components: + - type: Transform + pos: -28.665678,-16.299198 + parent: 2 +- proto: MedkitFilled + entities: + - uid: 531 + components: + - type: Transform + parent: 376 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 5721 + components: + - type: Transform + pos: 4.541575,29.584633 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 6909 + components: + - type: Transform + pos: -28.689116,-16.46326 + parent: 2 + - uid: 6950 + components: + - type: Transform + pos: -35.528374,-15.671108 + parent: 2 + - uid: 8907 + components: + - type: Transform + pos: -16.490028,-28.361977 + parent: 2 + - uid: 9428 + components: + - type: Transform + pos: -19.521564,19.672852 + parent: 2 + - uid: 14828 + components: + - type: Transform + pos: -35.54454,-15.481346 + parent: 2 +- proto: MedkitRadiationFilled + entities: + - uid: 6911 + components: + - type: Transform + pos: -28.20866,-16.485518 + parent: 2 + - uid: 15168 + components: + - type: Transform + pos: -73.5494,24.696754 + parent: 2 + - uid: 15169 + components: + - type: Transform + pos: -73.33292,24.593992 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 6913 + components: + - type: Transform + pos: -28.712553,-16.46326 + parent: 2 +- proto: MicrophoneInstrument + entities: + - uid: 9031 + components: + - type: Transform + pos: 13.49999,-3.2745948 + parent: 2 +- proto: Mirror + entities: + - uid: 6538 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 + - uid: 8716 + components: + - type: Transform + pos: -44.5,-30.5 + parent: 2 + - uid: 8717 + components: + - type: Transform + pos: -40.5,-30.5 + parent: 2 + - uid: 15745 + components: + - type: Transform + pos: 10.5,43.5 + parent: 2 + - uid: 15749 + components: + - type: Transform + pos: 1.5,43.5 + parent: 2 +- proto: MopBucket + entities: + - uid: 8308 + components: + - type: Transform + pos: 19.5,15.5 + parent: 2 + - uid: 15663 + components: + - type: Transform + pos: 9.5,39.5 + parent: 2 +- proto: MopItem + entities: + - uid: 60 + components: + - type: Transform + pos: 19.534658,15.456097 + parent: 2 + - uid: 11587 + components: + - type: Transform + pos: 9.516268,39.545895 + parent: 2 + - uid: 14226 + components: + - type: Transform + pos: -55.572876,-13.360858 + parent: 2 + - uid: 14227 + components: + - type: Transform + pos: -55.544304,-13.457292 + parent: 2 + - uid: 14228 + components: + - type: Transform + pos: -55.528057,-13.513806 + parent: 2 +- proto: Morgue + entities: + - uid: 6826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-13.5 + parent: 2 + - uid: 6827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-14.5 + parent: 2 + - uid: 6828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-15.5 + parent: 2 + - uid: 6829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-16.5 + parent: 2 + - uid: 8630 + components: + - type: Transform + pos: -36.5,-44.5 + parent: 2 +- proto: Multitool + entities: + - uid: 3456 + components: + - type: Transform + pos: -19.013605,19.685257 + parent: 2 + - uid: 7160 + components: + - type: Transform + pos: 18.35595,29.598452 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 9547 + components: + - type: Transform + pos: -55.321564,-13.875846 + parent: 2 + - uid: 12920 + components: + - type: Transform + pos: 9.3865385,12.506502 + parent: 2 + - uid: 14616 + components: + - type: Transform + pos: -47.378597,13.386821 + parent: 2 + - uid: 15170 + components: + - type: Transform + pos: -72.74927,24.588608 + parent: 2 +- proto: NetworkConfigurator + entities: + - uid: 3105 + components: + - type: Transform + pos: -13.503358,-68.3973 + parent: 2 + - uid: 4364 + components: + - type: Transform + pos: -47.518414,-15.563232 + parent: 2 +- proto: NitrogenCanister + entities: + - uid: 7110 + components: + - type: Transform + pos: -13.5,-51.5 + parent: 2 + - uid: 7175 + components: + - type: Transform + pos: -12.5,-65.5 + parent: 2 + - uid: 8140 + components: + - type: Transform + pos: -56.5,-3.5 + parent: 2 + - uid: 9596 + components: + - type: Transform + pos: -52.5,-16.5 + parent: 2 + - uid: 11843 + components: + - type: Transform + pos: -40.5,24.5 + parent: 2 + - uid: 14649 + components: + - type: Transform + pos: -50.5,19.5 + parent: 2 + - uid: 14654 + components: + - type: Transform + pos: -56.5,24.5 + parent: 2 + - uid: 14658 + components: + - type: Transform + pos: -55.5,24.5 + parent: 2 + - uid: 15092 + components: + - type: Transform + pos: -77.5,25.5 + parent: 2 + - uid: 15126 + components: + - type: Transform + pos: -77.5,24.5 + parent: 2 + - uid: 15131 + components: + - type: Transform + pos: -75.5,25.5 + parent: 2 + - uid: 15132 + components: + - type: Transform + pos: -75.5,24.5 + parent: 2 + - uid: 16432 + components: + - type: Transform + pos: 16.5,33.5 + parent: 2 +- proto: NitrousOxideCanister + entities: + - uid: 7172 + components: + - type: Transform + pos: -12.5,-63.5 + parent: 2 + - uid: 14655 + components: + - type: Transform + pos: -56.5,26.5 + parent: 2 +- proto: NitrousOxideTankFilled + entities: + - uid: 6944 + components: + - type: Transform + pos: -39.57679,-15.219666 + parent: 2 + - type: GasTank + toggleActionEntity: 6971 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 6971 + - uid: 16092 + components: + - type: Transform + pos: 12.433917,29.962376 + parent: 2 +- proto: NuclearBomb + entities: + - uid: 12798 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 +- proto: OperatingTable + entities: + - uid: 3319 + components: + - type: Transform + pos: -23.5,-38.5 + parent: 2 + - uid: 9501 + components: + - type: Transform + pos: -39.5,-14.5 + parent: 2 + - uid: 14360 + components: + - type: Transform + pos: -40.5,-24.5 + parent: 2 + - uid: 16102 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 +- proto: OracleSpawner + entities: + - uid: 5761 + components: + - type: Transform + pos: -43.5,-45.5 + parent: 2 +- proto: OreBag + entities: + - uid: 16158 + components: + - type: Transform + pos: 19.473602,31.748302 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 16162 + components: + - type: Transform + pos: 19.507404,31.86876 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: OreProcessor + entities: + - uid: 3355 + components: + - type: Transform + pos: -2.5,-44.5 + parent: 2 +- proto: OrganDwarfHeart + entities: + - uid: 12824 + components: + - type: Transform + pos: 18.253658,8.615792 + parent: 2 +- proto: OrganHumanAppendix + entities: + - uid: 14368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.73333,-24.136953 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 4201 + components: + - type: Transform + pos: -6.5,-43.5 + parent: 2 + - uid: 7174 + components: + - type: Transform + pos: -12.5,-64.5 + parent: 2 + - uid: 8141 + components: + - type: Transform + pos: -56.5,-4.5 + parent: 2 + - uid: 9484 + components: + - type: Transform + pos: -37.5,-28.5 + parent: 2 + - uid: 9485 + components: + - type: Transform + pos: -26.5,-25.5 + parent: 2 + - uid: 9487 + components: + - type: Transform + pos: -44.5,-48.5 + parent: 2 + - uid: 9489 + components: + - type: Transform + pos: -52.5,-14.5 + parent: 2 + - uid: 9603 + components: + - type: Transform + pos: -59.5,-31.5 + parent: 2 + - uid: 9912 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 10750 + components: + - type: Transform + pos: -71.5,-8.5 + parent: 2 + - uid: 11196 + components: + - type: Transform + pos: -35.5,27.5 + parent: 2 + - uid: 13093 + components: + - type: Transform + pos: -13.5,-52.5 + parent: 2 + - uid: 14536 + components: + - type: Transform + pos: -40.5,26.5 + parent: 2 + - uid: 14650 + components: + - type: Transform + pos: -49.5,19.5 + parent: 2 + - uid: 14656 + components: + - type: Transform + pos: -57.5,25.5 + parent: 2 + - uid: 14657 + components: + - type: Transform + pos: -56.5,25.5 + parent: 2 + - uid: 16065 + components: + - type: Transform + pos: 16.5,34.5 + parent: 2 +- proto: OxygenTankFilled + entities: + - uid: 7124 + components: + - type: Transform + pos: -13.37084,-53.70624 + parent: 2 + - type: GasTank + toggleActionEntity: 7069 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 7069 + - uid: 7127 + components: + - type: Transform + pos: -13.42432,-53.513466 + parent: 2 + - type: GasTank + toggleActionEntity: 7070 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 7070 +- proto: PackPaperRollingFilters + entities: + - uid: 1837 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1921 + components: + - type: Transform + parent: 15630 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Paper + entities: + - uid: 774 + components: + - type: Transform + pos: 0.44452536,14.848346 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 3307 + components: + - type: Transform + pos: -0.6479298,-23.321884 + parent: 2 + - uid: 4949 + components: + - type: Transform + pos: -34.654953,-16.374908 + parent: 2 + - uid: 5531 + components: + - type: Transform + pos: -2.546276,-44.394726 + parent: 2 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + content: >- + Совместная работа отделов повышает эффективность всех сотрудников. Попроси помощи и помоги другим и увидишь, как тебе проще стало летать в космос. Грабеж и хамство последнее, что ты должен делать. + + + + ©️ Домминик Армстронг, утилизатор "золотой эпохи" утилизаторов + - uid: 6905 + components: + - type: Transform + pos: -41.719048,-7.218128 + parent: 2 + - uid: 6924 + components: + - type: Transform + pos: -34.466312,-16.279472 + parent: 2 + - uid: 8337 + components: + - type: Transform + pos: -58.49894,-38.784164 + parent: 2 + - uid: 8342 + components: + - type: Transform + pos: -58.69201,-38.867176 + parent: 2 + - uid: 8395 + components: + - type: Transform + pos: 0.58571887,-5.47503 + parent: 2 + - uid: 8525 + components: + - type: Transform + pos: 4.4515896,-5.2235327 + parent: 2 + - uid: 8526 + components: + - type: Transform + pos: 4.6393795,-5.1145787 + parent: 2 + - uid: 8527 + components: + - type: Transform + pos: 7.275643,-5.132944 + parent: 2 + - uid: 8528 + components: + - type: Transform + pos: 7.3805385,-5.206346 + parent: 2 + - uid: 8800 + components: + - type: Transform + pos: -29.3806,-31.24163 + parent: 2 + - uid: 8801 + components: + - type: Transform + pos: -29.57297,-31.122135 + parent: 2 + - uid: 11275 + components: + - type: Transform + pos: -65.65069,-32.142483 + parent: 2 + - uid: 11276 + components: + - type: Transform + pos: -65.62274,-32.317696 + parent: 2 + - uid: 14768 + components: + - type: Transform + pos: 1.6402216,20.029284 + parent: 2 + - uid: 15915 + components: + - type: Transform + pos: 0.5503794,14.669399 + parent: 2 +- proto: PaperBin10 + entities: + - uid: 5510 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 +- proto: PaperBin5 + entities: + - uid: 8396 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 +- proto: PaperScrap + entities: + - uid: 9432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.281693,-46.622063 + parent: 2 +- proto: ParchisBoard + entities: + - uid: 6986 + components: + - type: Transform + pos: -11.50188,-10.374677 + parent: 2 +- proto: PartRodMetal + entities: + - uid: 2768 + components: + - type: Transform + pos: -39.534515,13.25562 + parent: 2 + - type: RCDAmmo + charges: 15 + - uid: 9545 + components: + - type: Transform + pos: -58.50157,-13.95368 + parent: 2 + - type: RCDAmmo + charges: 15 +- proto: PartRodMetal1 + entities: + - uid: 14441 + components: + - type: Transform + pos: -52.413204,-41.500923 + parent: 2 + - type: RCDAmmo + charges: 0 +- proto: Pen + entities: + - uid: 4950 + components: + - type: Transform + pos: -34.43293,-16.379631 + parent: 2 + - uid: 6758 + components: + - type: Transform + pos: -11.488725,-9.53171 + parent: 2 + - uid: 6906 + components: + - type: Transform + pos: -41.71952,-7.433834 + parent: 2 + - uid: 8379 + components: + - type: Transform + pos: 7.700542,-4.8776326 + parent: 2 + - uid: 8380 + components: + - type: Transform + pos: 4.6894355,-5.4769964 + parent: 2 + - uid: 8802 + components: + - type: Transform + pos: -29.638237,-31.317093 + parent: 2 + - uid: 11277 + components: + - type: Transform + pos: -65.579926,-32.407497 + parent: 2 + - uid: 13073 + components: + - type: Transform + pos: -0.32461607,-23.440817 + parent: 2 + - uid: 14180 + components: + - type: Transform + pos: -30.378826,2.2662854 + parent: 2 + - uid: 16273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.9993,-54.24933 + parent: 2 +- proto: PersonalAI + entities: + - uid: 5553 + components: + - type: Transform + pos: -15.520933,21.491655 + parent: 2 +- proto: PhoneInstrument + entities: + - uid: 8381 + components: + - type: Transform + pos: 5.540812,-8.492133 + parent: 2 + - uid: 11273 + components: + - type: Transform + pos: -64.72056,-31.219097 + parent: 2 +- proto: PianoInstrument + entities: + - uid: 8010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-13.5 + parent: 2 +- proto: Pickaxe + entities: + - uid: 6726 + components: + - type: Transform + pos: 18.564552,31.801235 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 12743 + components: + - type: Transform + pos: 12.4630785,-21.955471 + parent: 2 + - uid: 13096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.315603,9.205763 + parent: 2 + - uid: 13150 + components: + - type: Transform + pos: -18.589268,-51.99662 + parent: 2 + - uid: 13194 + components: + - type: Transform + pos: -59.159393,2.3684773 + parent: 2 + - uid: 16141 + components: + - type: Transform + pos: 18.490108,31.665775 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 16145 + components: + - type: Transform + pos: 18.516102,31.508053 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: PillSpaceDrugs + entities: + - uid: 6785 + components: + - type: Transform + pos: -41.255318,-7.202778 + parent: 2 + - uid: 12904 + components: + - type: Transform + pos: -41.300766,-7.3729534 + parent: 2 + - uid: 16267 + components: + - type: Transform + pos: -55.542377,-52.730194 + parent: 2 +- proto: PlantBag + entities: + - uid: 5863 + components: + - type: Transform + pos: 12.773823,39.23071 + parent: 2 +- proto: PlasmaCanister + entities: + - uid: 7173 + components: + - type: Transform + pos: -13.5,-62.5 + parent: 2 + - uid: 14543 + components: + - type: Transform + pos: -40.5,30.5 + parent: 2 + - uid: 14651 + components: + - type: Transform + pos: -48.5,19.5 + parent: 2 + - uid: 14653 + components: + - type: Transform + pos: -57.5,24.5 + parent: 2 +- proto: PlasmaOre1 + entities: + - uid: 14788 + components: + - type: Transform + pos: 18.917374,10.193963 + parent: 2 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 5021 + components: + - type: Transform + pos: -43.5,-14.5 + parent: 2 + - uid: 7722 + components: + - type: Transform + pos: -41.5,-14.5 + parent: 2 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 7185 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 2 + - uid: 7186 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 2 + - uid: 7187 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 2 + - uid: 7188 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 2 + - uid: 12776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-23.5 + parent: 2 + - uid: 13106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-69.5 + parent: 2 +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 1776 + components: + - type: Transform + pos: -76.5,-5.5 + parent: 2 +- proto: PlushieCatBlack + entities: + - uid: 15963 + components: + - type: MetaData + name: Валерианокс + - type: Transform + pos: -36.473732,-52.48173 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: PlushieCatGrey + entities: + - uid: 15969 + components: + - type: MetaData + name: Рейнчик + - type: Transform + pos: -35.46991,-51.55186 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: PlushieCatTuxedo + entities: + - uid: 15995 + components: + - type: MetaData + name: Рейдеренок + - type: Transform + pos: -35.58454,-52.521774 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: PlushieCatWhite + entities: + - uid: 16011 + components: + - type: MetaData + name: Диаманчикс + - type: Transform + pos: -37.474304,-51.57286 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: PlushieLizard + entities: + - uid: 11913 + components: + - type: Transform + pos: -57.542606,10.544373 + parent: 2 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushieNar + entities: + - uid: 8458 + components: + - type: Transform + pos: -54.57225,-24.31145 + parent: 2 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushieNuke + entities: + - uid: 8022 + components: + - type: Transform + pos: -19.44844,1.7211654 + parent: 2 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushieSharkBlue + entities: + - uid: 8124 + components: + - type: Transform + pos: 19.594084,2.549111 + parent: 2 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} + - uid: 8968 + components: + - type: Transform + pos: -12.155042,-24.97646 + parent: 2 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushieSharkGrey + entities: + - uid: 12322 + components: + - type: Transform + pos: -70.5834,2.6112204 + parent: 2 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushieSharkPink + entities: + - uid: 5582 + components: + - type: Transform + pos: -9.457044,10.194241 + parent: 2 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} + - uid: 8201 + components: + - type: Transform + pos: -61.248184,-6.3917294 + parent: 2 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} + - uid: 8967 + components: + - type: Transform + pos: -11.166559,-22.21759 + parent: 2 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushieSnake + entities: + - uid: 8969 + components: + - type: Transform + pos: -7.4177713,-23.863325 + parent: 2 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PortableFlasher + entities: + - uid: 540 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + pos: 11.5,32.5 + parent: 2 + - uid: 5927 + components: + - type: Transform + pos: 4.5,25.5 + parent: 2 + - uid: 8742 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - uid: 15234 + components: + - type: Transform + pos: 7.5,18.5 + parent: 2 +- proto: PortableGeneratorJrPacman + entities: + - uid: 13068 + components: + - type: Transform + pos: -41.5,-21.5 + parent: 2 +- proto: PortableGeneratorPacman + entities: + - uid: 11672 + components: + - type: Transform + pos: -39.5,14.5 + parent: 2 +- proto: PortableGeneratorPacmanMachineCircuitboard + entities: + - uid: 14462 + components: + - type: Transform + pos: -52.435093,6.704668 + parent: 2 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 11682 + components: + - type: Transform + pos: -39.5,15.5 + parent: 2 +- proto: PortableGeneratorSuperPacmanMachineCircuitboard + entities: + - uid: 14463 + components: + - type: Transform + pos: -52.418503,6.4147477 + parent: 2 +- proto: PortableScrubber + entities: + - uid: 6437 + components: + - type: Transform + pos: -33.5,1.5 + parent: 2 + - uid: 6438 + components: + - type: Transform + pos: -34.5,1.5 + parent: 2 + - uid: 13361 + components: + - type: Transform + pos: -35.5,1.5 + parent: 2 +- proto: PosterBroken + entities: + - uid: 13613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-19.5 + parent: 2 +- proto: PosterContrabandFreeDrone + entities: + - uid: 9531 + components: + - type: Transform + pos: -54.5,-7.5 + parent: 2 +- proto: PosterContrabandFreeSyndicateEncryptionKey + entities: + - uid: 15958 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 +- proto: PosterContrabandMoth + entities: + - uid: 6328 + components: + - type: Transform + pos: -37.5,6.5 + parent: 2 +- proto: PosterLegitCarpMount + entities: + - uid: 5725 + components: + - type: Transform + pos: -7.5,-40.5 + parent: 2 +- proto: PosterLegitCleanliness + entities: + - uid: 8543 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 +- proto: PottedPlant21 + entities: + - uid: 7981 + components: + - type: Transform + pos: -8.5,-36.5 + parent: 2 +- proto: PottedPlant22 + entities: + - uid: 8128 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 +- proto: PottedPlantRandom + entities: + - uid: 773 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 6822 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 + - uid: 6918 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 + - uid: 6967 + components: + - type: Transform + pos: -46.5,-9.5 + parent: 2 + - uid: 8174 + components: + - type: Transform + pos: -63.5,-5.5 + parent: 2 + - uid: 8362 + components: + - type: Transform + pos: -58.5,-3.5 + parent: 2 + - uid: 8385 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 8386 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 8402 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 2 + - uid: 8404 + components: + - type: Transform + pos: -3.5,19.5 + parent: 2 + - uid: 8410 + components: + - type: Transform + pos: -57.5,-41.5 + parent: 2 +- proto: PowerCellHighPrinted + entities: + - uid: 7134 + components: + - type: Transform + pos: -26.312496,-41.543037 + parent: 2 +- proto: PowerCellMedium + entities: + - uid: 13201 + components: + - type: Transform + parent: 13200 + - type: Physics + canCollide: False + - type: PointLight +- proto: PowerCellRecharger + entities: + - uid: 5466 + components: + - type: Transform + pos: -8.5,19.5 + parent: 2 + - uid: 5702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,12.5 + parent: 2 + - uid: 6320 + components: + - type: Transform + pos: -37.5,2.5 + parent: 2 + - uid: 6765 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 2 + - uid: 6816 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 6984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-18.5 + parent: 2 + - uid: 7133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-43.5 + parent: 2 + - uid: 7231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-42.5 + parent: 2 + - uid: 7232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-59.5 + parent: 2 + - uid: 8117 + components: + - type: Transform + pos: -21.5,19.5 + parent: 2 + - uid: 8455 + components: + - type: Transform + pos: -56.5,-5.5 + parent: 2 + - uid: 9548 + components: + - type: Transform + pos: -56.5,-14.5 + parent: 2 + - uid: 15914 + components: + - type: Transform + pos: 4.5,39.5 + parent: 2 +- proto: PowerDrill + entities: + - uid: 14578 + components: + - type: Transform + parent: 14573 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14638 + components: + - type: Transform + parent: 14634 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Poweredlight + entities: + - uid: 613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,-1.5 + parent: 2 + - uid: 623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-14.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: -66.5,1.5 + parent: 2 + - uid: 918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,3.5 + parent: 2 + - uid: 1485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-14.5 + parent: 2 + - uid: 1875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 2 + - uid: 2761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 2 + - uid: 3364 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 2 + - uid: 3501 + components: + - type: Transform + pos: 8.5,12.5 + parent: 2 + - uid: 5496 + components: + - type: Transform + pos: -13.5,21.5 + parent: 2 + - uid: 5632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 2 + - uid: 5766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-19.5 + parent: 2 + - uid: 5817 + components: + - type: Transform + pos: -38.5,-3.5 + parent: 2 + - uid: 5873 + components: + - type: Transform + pos: 4.5,15.5 + parent: 2 + - uid: 5885 + components: + - type: Transform + pos: -27.5,-18.5 + parent: 2 + - uid: 5889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 2 + - uid: 5935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,36.5 + parent: 2 + - uid: 6508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-46.5 + parent: 2 + - uid: 6668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,4.5 + parent: 2 + - uid: 6713 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - uid: 6764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,9.5 + parent: 2 + - uid: 6783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-8.5 + parent: 2 + - uid: 6795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-8.5 + parent: 2 + - uid: 6993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-15.5 + parent: 2 + - uid: 7088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-42.5 + parent: 2 + - uid: 7089 + components: + - type: Transform + pos: -5.5,-37.5 + parent: 2 + - uid: 7091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-28.5 + parent: 2 + - uid: 7095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-32.5 + parent: 2 + - uid: 7096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-46.5 + parent: 2 + - uid: 7117 + components: + - type: Transform + pos: -16.5,-51.5 + parent: 2 + - uid: 8002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 2 + - uid: 8041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-5.5 + parent: 2 + - uid: 9600 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 + - uid: 9602 + components: + - type: Transform + pos: -12.5,12.5 + parent: 2 + - uid: 9604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,7.5 + parent: 2 + - uid: 9606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-63.5 + parent: 2 + - uid: 11316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,8.5 + parent: 2 + - uid: 11677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 2 + - uid: 11869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,-2.5 + parent: 2 + - uid: 11897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,0.5 + parent: 2 + - uid: 11953 + components: + - type: Transform + pos: -78.5,2.5 + parent: 2 + - uid: 12567 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - uid: 12568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-1.5 + parent: 2 + - uid: 12570 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - uid: 12572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-1.5 + parent: 2 + - uid: 12573 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 12575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,0.5 + parent: 2 + - uid: 12576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,7.5 + parent: 2 + - uid: 12577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,7.5 + parent: 2 + - uid: 12583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,18.5 + parent: 2 + - uid: 12584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,17.5 + parent: 2 + - uid: 12587 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 12588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-9.5 + parent: 2 + - uid: 12590 + components: + - type: Transform + pos: -8.5,0.5 + parent: 2 + - uid: 12592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,8.5 + parent: 2 + - uid: 12593 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 + - uid: 12595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,17.5 + parent: 2 + - uid: 12596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 2 + - uid: 12600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,14.5 + parent: 2 + - uid: 12601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,18.5 + parent: 2 + - uid: 12603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,18.5 + parent: 2 + - uid: 12611 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 12612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-15.5 + parent: 2 + - uid: 12613 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 + - uid: 12617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-11.5 + parent: 2 + - uid: 12618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-15.5 + parent: 2 + - uid: 12619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-15.5 + parent: 2 + - uid: 12621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 2 + - uid: 12625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-31.5 + parent: 2 + - uid: 12626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-26.5 + parent: 2 + - uid: 12627 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 2 + - uid: 12628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-26.5 + parent: 2 + - uid: 12629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-21.5 + parent: 2 + - uid: 12632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-35.5 + parent: 2 + - uid: 12634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-36.5 + parent: 2 + - uid: 12636 + components: + - type: Transform + pos: -26.5,-33.5 + parent: 2 + - uid: 12637 + components: + - type: Transform + pos: -41.5,-33.5 + parent: 2 + - uid: 12638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-35.5 + parent: 2 + - uid: 12639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-35.5 + parent: 2 + - uid: 12640 + components: + - type: Transform + pos: -57.5,-33.5 + parent: 2 + - uid: 12644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-28.5 + parent: 2 + - uid: 12645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-22.5 + parent: 2 + - uid: 12653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-39.5 + parent: 2 + - uid: 12664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-23.5 + parent: 2 + - uid: 12666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-15.5 + parent: 2 + - uid: 12667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-8.5 + parent: 2 + - uid: 12669 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 2 + - uid: 12670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-1.5 + parent: 2 + - uid: 12672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-1.5 + parent: 2 + - uid: 12673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-1.5 + parent: 2 + - uid: 12675 + components: + - type: Transform + pos: -38.5,1.5 + parent: 2 + - uid: 12677 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 12682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-1.5 + parent: 2 + - uid: 12692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,8.5 + parent: 2 + - uid: 12699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,23.5 + parent: 2 + - uid: 12709 + components: + - type: Transform + pos: 8.5,39.5 + parent: 2 + - uid: 12710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,3.5 + parent: 2 + - uid: 12711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,5.5 + parent: 2 + - uid: 12714 + components: + - type: Transform + pos: -42.5,9.5 + parent: 2 + - uid: 12729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-11.5 + parent: 2 + - uid: 12732 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - uid: 12746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-46.5 + parent: 2 + - uid: 12761 + components: + - type: Transform + pos: -19.5,-40.5 + parent: 2 + - uid: 12774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-67.5 + parent: 2 + - uid: 12775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-66.5 + parent: 2 + - uid: 12780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-8.5 + parent: 2 + - uid: 12812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-44.5 + parent: 2 + - uid: 12926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-22.5 + parent: 2 + - uid: 12996 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 2 + - uid: 12997 + components: + - type: Transform + pos: -9.5,-33.5 + parent: 2 + - uid: 13054 + components: + - type: Transform + pos: -61.5,-20.5 + parent: 2 + - uid: 13069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,18.5 + parent: 2 + - uid: 13071 + components: + - type: Transform + pos: 3.5,20.5 + parent: 2 + - uid: 13077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-27.5 + parent: 2 + - uid: 13078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-26.5 + parent: 2 + - uid: 13359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,2.5 + parent: 2 + - uid: 13377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,4.5 + parent: 2 + - uid: 13383 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 2 + - uid: 13384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 2 + - uid: 13650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-19.5 + parent: 2 + - uid: 13765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-5.5 + parent: 2 + - uid: 13777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-6.5 + parent: 2 + - uid: 14191 + components: + - type: Transform + pos: 3.5,39.5 + parent: 2 + - uid: 14533 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 14669 + components: + - type: Transform + pos: -41.5,22.5 + parent: 2 + - uid: 14670 + components: + - type: Transform + pos: -47.5,22.5 + parent: 2 + - uid: 14671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,20.5 + parent: 2 + - uid: 14673 + components: + - type: Transform + pos: -53.5,35.5 + parent: 2 + - uid: 14676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,27.5 + parent: 2 + - uid: 14677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,31.5 + parent: 2 + - uid: 14678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,24.5 + parent: 2 + - uid: 14679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,33.5 + parent: 2 + - uid: 14716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-40.5 + parent: 2 + - uid: 14831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-28.5 + parent: 2 + - uid: 14977 + components: + - type: Transform + pos: -60.5,26.5 + parent: 2 + - uid: 15052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,17.5 + parent: 2 + - uid: 15235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,16.5 + parent: 2 + - uid: 15247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,20.5 + parent: 2 + - uid: 15250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,24.5 + parent: 2 + - uid: 15800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,33.5 + parent: 2 + - uid: 15918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,32.5 + parent: 2 + - uid: 16049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-11.5 + parent: 2 + - uid: 16388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,30.5 + parent: 2 + - uid: 16391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,27.5 + parent: 2 + - uid: 16392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,31.5 + parent: 2 + - uid: 16433 + components: + - type: Transform + pos: 11.5,26.5 + parent: 2 +- proto: PoweredLightBlueInterior + entities: + - uid: 12755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-49.5 + parent: 2 +- proto: PoweredLightPostSmall + entities: + - uid: 10253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-56.5 + parent: 2 + - uid: 10254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-12.5 + parent: 2 + - uid: 10255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-12.5 + parent: 2 + - uid: 12800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,27.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 23 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,5.5 + parent: 2 + - uid: 82 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,15.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: -49.5,15.5 + parent: 2 + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-5.5 + parent: 2 + - uid: 87 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,3.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: -50.5,-40.5 + parent: 2 + - uid: 175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,34.5 + parent: 2 + - uid: 979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,3.5 + parent: 2 + - uid: 1761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,24.5 + parent: 2 + - uid: 1874 + components: + - type: Transform + pos: -33.5,25.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 2478 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 + - uid: 3157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-43.5 + parent: 2 + - uid: 3354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-33.5 + parent: 2 + - uid: 5004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-16.5 + parent: 2 + - uid: 5939 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 6052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,26.5 + parent: 2 + - uid: 6053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,32.5 + parent: 2 + - uid: 6060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,28.5 + parent: 2 + - uid: 6065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,30.5 + parent: 2 + - uid: 6240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-28.5 + parent: 2 + - uid: 6242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 2 + - uid: 6453 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 6592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-49.5 + parent: 2 + - uid: 6867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-11.5 + parent: 2 + - uid: 7090 + components: + - type: Transform + pos: -16.5,-48.5 + parent: 2 + - uid: 8346 + components: + - type: Transform + pos: -83.5,5.5 + parent: 2 + - uid: 8723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-6.5 + parent: 2 + - uid: 9598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-14.5 + parent: 2 + - uid: 11305 + components: + - type: Transform + pos: -46.5,-6.5 + parent: 2 + - uid: 11415 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 + - uid: 11418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,13.5 + parent: 2 + - uid: 11449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-31.5 + parent: 2 + - uid: 11510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,13.5 + parent: 2 + - uid: 11565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,24.5 + parent: 2 + - uid: 11888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,-4.5 + parent: 2 + - uid: 12040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-42.5 + parent: 2 + - uid: 12130 + components: + - type: Transform + pos: -7.5,-59.5 + parent: 2 + - uid: 12549 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 12550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 2 + - uid: 12580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,3.5 + parent: 2 + - uid: 12581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,12.5 + parent: 2 + - uid: 12582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,21.5 + parent: 2 + - uid: 12585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,14.5 + parent: 2 + - uid: 12586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,5.5 + parent: 2 + - uid: 12589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 2 + - uid: 12597 + components: + - type: Transform + pos: -5.5,15.5 + parent: 2 + - uid: 12598 + components: + - type: Transform + pos: -21.5,15.5 + parent: 2 + - uid: 12615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 2 + - uid: 12616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-9.5 + parent: 2 + - uid: 12647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-21.5 + parent: 2 + - uid: 12648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-26.5 + parent: 2 + - uid: 12649 + components: + - type: Transform + pos: -55.5,-29.5 + parent: 2 + - uid: 12650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-29.5 + parent: 2 + - uid: 12651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-21.5 + parent: 2 + - uid: 12652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-25.5 + parent: 2 + - uid: 12654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-34.5 + parent: 2 + - uid: 12655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-32.5 + parent: 2 + - uid: 12656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-37.5 + parent: 2 + - uid: 12658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,-34.5 + parent: 2 + - uid: 12659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,-34.5 + parent: 2 + - uid: 12660 + components: + - type: Transform + pos: -90.5,-31.5 + parent: 2 + - uid: 12661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -90.5,-37.5 + parent: 2 + - uid: 12687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,10.5 + parent: 2 + - uid: 12693 + components: + - type: Transform + pos: -21.5,19.5 + parent: 2 + - uid: 12694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-5.5 + parent: 2 + - uid: 12695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,17.5 + parent: 2 + - uid: 12698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,6.5 + parent: 2 + - uid: 12712 + components: + - type: Transform + pos: -42.5,4.5 + parent: 2 + - uid: 12713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,2.5 + parent: 2 + - uid: 12715 + components: + - type: Transform + pos: -45.5,15.5 + parent: 2 + - uid: 12716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,14.5 + parent: 2 + - uid: 12717 + components: + - type: Transform + pos: -34.5,10.5 + parent: 2 + - uid: 12718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,13.5 + parent: 2 + - uid: 12720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,18.5 + parent: 2 + - uid: 12725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-4.5 + parent: 2 + - uid: 12734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-16.5 + parent: 2 + - uid: 12740 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 + - uid: 12741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-27.5 + parent: 2 + - uid: 12750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-38.5 + parent: 2 + - uid: 12751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-46.5 + parent: 2 + - uid: 12754 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 2 + - uid: 12756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-44.5 + parent: 2 + - uid: 12758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-41.5 + parent: 2 + - uid: 12759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-41.5 + parent: 2 + - uid: 12760 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 2 + - uid: 12763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-43.5 + parent: 2 + - uid: 12764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-38.5 + parent: 2 + - uid: 12770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-59.5 + parent: 2 + - uid: 12771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-71.5 + parent: 2 + - uid: 12772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-71.5 + parent: 2 + - uid: 12773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-69.5 + parent: 2 + - uid: 12777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-60.5 + parent: 2 + - uid: 12782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-8.5 + parent: 2 + - uid: 12784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,28.5 + parent: 2 + - uid: 12814 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 2 + - uid: 12818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-53.5 + parent: 2 + - uid: 12819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-31.5 + parent: 2 + - uid: 12820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-29.5 + parent: 2 + - uid: 12821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-29.5 + parent: 2 + - uid: 12822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-31.5 + parent: 2 + - uid: 12823 + components: + - type: Transform + pos: -41.5,-29.5 + parent: 2 + - uid: 12845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,9.5 + parent: 2 + - uid: 12893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-15.5 + parent: 2 + - uid: 12894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-15.5 + parent: 2 + - uid: 12906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-4.5 + parent: 2 + - uid: 12916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-7.5 + parent: 2 + - uid: 12918 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 13079 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 13118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,17.5 + parent: 2 + - uid: 13121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-14.5 + parent: 2 + - uid: 13123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-21.5 + parent: 2 + - uid: 13124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-25.5 + parent: 2 + - uid: 13125 + components: + - type: Transform + pos: -10.5,-38.5 + parent: 2 + - uid: 13126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-27.5 + parent: 2 + - uid: 13127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-47.5 + parent: 2 + - uid: 13128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-21.5 + parent: 2 + - uid: 13130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-31.5 + parent: 2 + - uid: 13131 + components: + - type: Transform + pos: -36.5,-49.5 + parent: 2 + - uid: 13132 + components: + - type: Transform + pos: -23.5,-45.5 + parent: 2 + - uid: 13133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-49.5 + parent: 2 + - uid: 13135 + components: + - type: Transform + pos: -28.5,-38.5 + parent: 2 + - uid: 13136 + components: + - type: Transform + pos: -46.5,-37.5 + parent: 2 + - uid: 13138 + components: + - type: Transform + pos: -19.5,4.5 + parent: 2 + - uid: 13139 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 13140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 2 + - uid: 13141 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 2 + - uid: 13142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 2 + - uid: 13143 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - uid: 13353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,7.5 + parent: 2 + - uid: 13646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-8.5 + parent: 2 + - uid: 13647 + components: + - type: Transform + pos: -58.5,-10.5 + parent: 2 + - uid: 13648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-41.5 + parent: 2 + - uid: 13649 + components: + - type: Transform + pos: -71.5,-11.5 + parent: 2 + - uid: 13656 + components: + - type: Transform + pos: -49.5,-13.5 + parent: 2 + - uid: 14467 + components: + - type: Transform + pos: -53.5,6.5 + parent: 2 + - uid: 14674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,35.5 + parent: 2 + - uid: 14675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,25.5 + parent: 2 + - uid: 14688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,39.5 + parent: 2 + - uid: 14862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,34.5 + parent: 2 + - uid: 15050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,28.5 + parent: 2 + - uid: 15068 + components: + - type: Transform + pos: -72.5,37.5 + parent: 2 + - uid: 15157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,28.5 + parent: 2 + - uid: 15236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,24.5 + parent: 2 + - uid: 15318 + components: + - type: Transform + pos: -55.5,18.5 + parent: 2 + - uid: 15621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,24.5 + parent: 2 + - uid: 15925 + components: + - type: Transform + pos: 3.5,30.5 + parent: 2 + - uid: 15926 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - uid: 15928 + components: + - type: Transform + pos: 9.5,42.5 + parent: 2 + - uid: 15929 + components: + - type: Transform + pos: 2.5,42.5 + parent: 2 + - uid: 15957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,32.5 + parent: 2 + - uid: 16020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,22.5 + parent: 2 + - uid: 16031 + components: + - type: Transform + pos: 4.5,27.5 + parent: 2 + - uid: 16119 + components: + - type: Transform + pos: -53.5,15.5 + parent: 2 + - uid: 16315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-51.5 + parent: 2 + - uid: 16316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-52.5 + parent: 2 + - uid: 16317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-58.5 + parent: 2 + - uid: 16387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,34.5 + parent: 2 +- proto: PresentHalloweenRandom + entities: + - uid: 16446 + components: + - type: Transform + pos: 31.582443,0.5068464 + parent: 2 + - uid: 16586 + components: + - type: Transform + pos: -5.438054,-6.5072927 + parent: 2 + - uid: 16587 + components: + - type: Transform + pos: 6.6049867,-8.483891 + parent: 2 + - uid: 16588 + components: + - type: Transform + pos: 14.561431,1.3142297 + parent: 2 + - uid: 16589 + components: + - type: Transform + pos: 22.479008,20.382736 + parent: 2 + - uid: 16590 + components: + - type: Transform + pos: 0.5094559,-12.564487 + parent: 2 + - uid: 16591 + components: + - type: Transform + pos: -6.610688,-14.443876 + parent: 2 + - uid: 16592 + components: + - type: Transform + pos: -31.914207,-11.676588 + parent: 2 + - uid: 16593 + components: + - type: Transform + pos: -40.582867,-25.606684 + parent: 2 + - uid: 16594 + components: + - type: Transform + pos: -56.33716,-30.00879 + parent: 2 + - uid: 16595 + components: + - type: Transform + pos: -48.075687,-31.304916 + parent: 2 + - uid: 16596 + components: + - type: Transform + pos: -47.978455,-23.387562 + parent: 2 + - uid: 16597 + components: + - type: Transform + pos: -55.11469,-23.452368 + parent: 2 + - uid: 16598 + components: + - type: Transform + pos: -61.224957,-24.804428 + parent: 2 + - uid: 16599 + components: + - type: Transform + pos: -52.36857,-44.262123 + parent: 2 + - uid: 16600 + components: + - type: Transform + pos: -39.53431,-29.650982 + parent: 2 + - uid: 16601 + components: + - type: Transform + pos: -11.400858,-19.637606 + parent: 2 + - uid: 16602 + components: + - type: Transform + pos: -8.516227,-23.947237 + parent: 2 + - uid: 16603 + components: + - type: Transform + pos: -30.439976,-36.57802 + parent: 2 + - uid: 16604 + components: + - type: Transform + pos: -20.366438,1.433218 + parent: 2 + - uid: 16605 + components: + - type: Transform + pos: -27.701496,5.522977 + parent: 2 + - uid: 16606 + components: + - type: Transform + pos: -26.242975,2.5256767 + parent: 2 + - uid: 16607 + components: + - type: Transform + pos: -66.42867,1.3202963 + parent: 2 + - uid: 16608 + components: + - type: Transform + pos: -79.5079,4.4472094 + parent: 2 +- proto: Protolathe + entities: + - uid: 6314 + components: + - type: Transform + pos: -37.5,5.5 + parent: 2 + - uid: 6502 + components: + - type: Transform + pos: -18.5,-40.5 + parent: 2 +- proto: PsychBed + entities: + - uid: 9227 + components: + - type: Transform + pos: -43.5,-6.5 + parent: 2 +- proto: PumpkinLantern + entities: + - uid: 16573 + components: + - type: Transform + pos: -37.506958,-18.295586 + parent: 2 + - uid: 16574 + components: + - type: Transform + pos: -55.6858,-10.544887 + parent: 2 + - uid: 16575 + components: + - type: Transform + pos: -68.672424,-3.3514104 + parent: 2 + - uid: 16576 + components: + - type: Transform + pos: -50.44657,11.483526 + parent: 2 + - uid: 16577 + components: + - type: Transform + pos: -21.65753,19.138872 + parent: 2 + - uid: 16578 + components: + - type: Transform + pos: 12.4222145,9.534073 + parent: 2 + - uid: 16579 + components: + - type: Transform + pos: 10.552356,-14.373835 + parent: 2 + - uid: 16581 + components: + - type: Transform + pos: -48.594948,-43.43593 + parent: 2 +- proto: PumpkinLanternLarge + entities: + - uid: 16568 + components: + - type: Transform + pos: -26.758904,5.1425214 + parent: 2 +- proto: PumpkinLanternSmall + entities: + - uid: 16570 + components: + - type: Transform + pos: -5.536106,-3.3302221 + parent: 2 + - uid: 16582 + components: + - type: Transform + pos: -52.163815,-40.33564 + parent: 2 + - uid: 16583 + components: + - type: Transform + pos: -60.454613,-20.340023 + parent: 2 + - uid: 16584 + components: + - type: Transform + pos: -78.29758,1.4875729 + parent: 2 + - uid: 16585 + components: + - type: Transform + pos: -15.52491,-7.4068146 + parent: 2 +- proto: Rack + entities: + - uid: 904 + components: + - type: Transform + pos: -52.5,2.5 + parent: 2 + - uid: 914 + components: + - type: Transform + pos: -56.5,-8.5 + parent: 2 + - uid: 1597 + components: + - type: Transform + pos: -47.5,-41.5 + parent: 2 + - uid: 3182 + components: + - type: Transform + pos: -13.5,-53.5 + parent: 2 + - uid: 6070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,13.5 + parent: 2 + - uid: 6264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,4.5 + parent: 2 + - uid: 6274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,2.5 + parent: 2 + - uid: 6315 + components: + - type: Transform + pos: -34.5,5.5 + parent: 2 + - uid: 6416 + components: + - type: Transform + pos: -33.5,15.5 + parent: 2 + - uid: 6499 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 2 + - uid: 6579 + components: + - type: Transform + pos: -8.5,-49.5 + parent: 2 + - uid: 6644 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 2 + - uid: 6818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-15.5 + parent: 2 + - uid: 6898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-14.5 + parent: 2 + - uid: 6942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-3.5 + parent: 2 + - uid: 8089 + components: + - type: Transform + pos: 4.5,29.5 + parent: 2 + - uid: 8136 + components: + - type: Transform + pos: -53.5,-5.5 + parent: 2 + - uid: 8137 + components: + - type: Transform + pos: -53.5,-6.5 + parent: 2 + - uid: 8241 + components: + - type: Transform + pos: -48.5,-4.5 + parent: 2 + - uid: 8338 + components: + - type: Transform + pos: 16.5,15.5 + parent: 2 + - uid: 9409 + components: + - type: Transform + pos: -52.5,6.5 + parent: 2 + - uid: 9468 + components: + - type: Transform + pos: -49.5,13.5 + parent: 2 + - uid: 9469 + components: + - type: Transform + pos: -51.5,-5.5 + parent: 2 + - uid: 9470 + components: + - type: Transform + pos: -64.5,-11.5 + parent: 2 + - uid: 9471 + components: + - type: Transform + pos: -52.5,-15.5 + parent: 2 + - uid: 9472 + components: + - type: Transform + pos: -38.5,-21.5 + parent: 2 + - uid: 9475 + components: + - type: Transform + pos: -37.5,-29.5 + parent: 2 + - uid: 9476 + components: + - type: Transform + pos: -47.5,-39.5 + parent: 2 + - uid: 9477 + components: + - type: Transform + pos: -43.5,-48.5 + parent: 2 + - uid: 9478 + components: + - type: Transform + pos: -24.5,-45.5 + parent: 2 + - uid: 9479 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - uid: 9569 + components: + - type: Transform + pos: -49.5,4.5 + parent: 2 + - uid: 9570 + components: + - type: Transform + pos: -75.5,-4.5 + parent: 2 + - uid: 9572 + components: + - type: Transform + pos: -73.5,-6.5 + parent: 2 + - uid: 9594 + components: + - type: Transform + pos: -52.5,-10.5 + parent: 2 + - uid: 9622 + components: + - type: Transform + pos: -32.5,-41.5 + parent: 2 + - uid: 9623 + components: + - type: Transform + pos: -34.5,-42.5 + parent: 2 + - uid: 9624 + components: + - type: Transform + pos: -34.5,-44.5 + parent: 2 + - uid: 9625 + components: + - type: Transform + pos: -32.5,-43.5 + parent: 2 + - uid: 9885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-12.5 + parent: 2 + - uid: 10162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-51.5 + parent: 2 + - uid: 10748 + components: + - type: Transform + pos: -71.5,-9.5 + parent: 2 + - uid: 11193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,29.5 + parent: 2 + - uid: 11702 + components: + - type: Transform + pos: 18.5,31.5 + parent: 2 + - uid: 13178 + components: + - type: Transform + pos: -45.5,-25.5 + parent: 2 + - uid: 13184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-52.5 + parent: 2 + - uid: 14299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-17.5 + parent: 2 + - uid: 14350 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 2 + - uid: 14454 + components: + - type: Transform + pos: -54.5,6.5 + parent: 2 + - uid: 14608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,4.5 + parent: 2 + - uid: 14647 + components: + - type: Transform + pos: -47.5,35.5 + parent: 2 + - uid: 14711 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 + - uid: 15134 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 + - uid: 15324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,18.5 + parent: 2 + - uid: 16026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,29.5 + parent: 2 + - uid: 16094 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - uid: 16097 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 16150 + components: + - type: Transform + pos: 19.5,31.5 + parent: 2 + - uid: 16198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-49.5 + parent: 2 + - uid: 16206 + components: + - type: Transform + pos: -52.5,-58.5 + parent: 2 +- proto: RadarConsoleCircuitboard + entities: + - uid: 14460 + components: + - type: Transform + pos: -52.436752,4.296235 + parent: 2 +- proto: RadiationCollector + entities: + - uid: 4446 + components: + - type: Transform + pos: -75.5,32.5 + parent: 2 + - uid: 4792 + components: + - type: Transform + pos: -75.5,34.5 + parent: 2 + - uid: 4843 + components: + - type: Transform + pos: -69.5,34.5 + parent: 2 + - uid: 5692 + components: + - type: Transform + pos: -69.5,32.5 + parent: 2 +- proto: RadioHandheld + entities: + - uid: 5554 + components: + - type: Transform + pos: -15.675322,20.736752 + parent: 2 + - uid: 12925 + components: + - type: Transform + pos: -28.318666,-18.388664 + parent: 2 +- proto: RagItem + entities: + - uid: 6694 + components: + - type: Transform + pos: -7.457346,-5.42535 + parent: 2 +- proto: Railing + entities: + - uid: 1488 + components: + - type: Transform + pos: -61.5,-22.5 + parent: 2 + - uid: 1670 + components: + - type: Transform + pos: -62.5,-22.5 + parent: 2 + - uid: 3844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-25.5 + parent: 2 + - uid: 6725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 2 + - uid: 7076 + components: + - type: Transform + pos: -26.5,-39.5 + parent: 2 + - uid: 7694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-22.5 + parent: 2 + - uid: 7995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 2 + - uid: 7996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 2 + - uid: 7997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 2 + - uid: 7999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 2 + - uid: 8001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 2 + - uid: 8835 + components: + - type: Transform + pos: -16.5,-24.5 + parent: 2 + - uid: 8836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-23.5 + parent: 2 + - uid: 8837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-22.5 + parent: 2 + - uid: 8838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-23.5 + parent: 2 + - uid: 8842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-21.5 + parent: 2 + - uid: 8843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-21.5 + parent: 2 + - uid: 8849 + components: + - type: Transform + pos: -11.5,-26.5 + parent: 2 + - uid: 8850 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 2 + - uid: 14793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-43.5 + parent: 2 + - uid: 14794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-43.5 + parent: 2 + - uid: 16255 + components: + - type: Transform + pos: -54.5,-51.5 + parent: 2 + - uid: 16256 + components: + - type: Transform + pos: -55.5,-51.5 + parent: 2 +- proto: RailingCorner + entities: + - uid: 7075 + components: + - type: Transform + pos: -25.5,-39.5 + parent: 2 + - uid: 8815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-22.5 + parent: 2 + - uid: 8831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-22.5 + parent: 2 + - uid: 8833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-24.5 + parent: 2 + - uid: 8834 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 2 + - uid: 8839 + components: + - type: Transform + pos: -10.5,-26.5 + parent: 2 + - uid: 8840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-21.5 + parent: 2 + - uid: 14792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-45.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 1474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,23.5 + parent: 2 + - uid: 1582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,23.5 + parent: 2 + - uid: 5521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,23.5 + parent: 2 + - uid: 5698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,23.5 + parent: 2 + - uid: 7077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-38.5 + parent: 2 + - uid: 8343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-23.5 + parent: 2 + - uid: 8724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-24.5 + parent: 2 +- proto: RandomArtifactSpawner + entities: + - uid: 13517 + components: + - type: Transform + pos: -15.5,-70.5 + parent: 2 + - uid: 13676 + components: + - type: Transform + pos: -11.5,-70.5 + parent: 2 +- proto: RandomBook + entities: + - uid: 8360 + components: + - type: Transform + pos: -56.5,-30.5 + parent: 2 +- proto: RandomBox + entities: + - uid: 13062 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 +- proto: RandomDrinkBottle + entities: + - uid: 6753 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 + - uid: 9425 + components: + - type: Transform + pos: -52.5,-40.5 + parent: 2 +- proto: RandomDrinkGlass + entities: + - uid: 6727 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 2 + - uid: 6730 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 2 + - uid: 8462 + components: + - type: Transform + pos: -48.5,-31.5 + parent: 2 + - uid: 14450 + components: + - type: Transform + pos: -51.5,-44.5 + parent: 2 +- proto: RandomFoodBakedWhole + entities: + - uid: 8461 + components: + - type: Transform + pos: -48.5,-23.5 + parent: 2 +- proto: RandomFoodMeal + entities: + - uid: 11929 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 2 + - uid: 14452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-37.5 + parent: 2 +- proto: RandomFoodSingle + entities: + - uid: 8460 + components: + - type: Transform + pos: -55.5,-31.5 + parent: 2 +- proto: RandomPosterAny + entities: + - uid: 180 + components: + - type: Transform + pos: -1.5,-35.5 + parent: 2 + - uid: 13061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-22.5 + parent: 2 + - uid: 14058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,11.5 + parent: 2 + - uid: 14059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,16.5 + parent: 2 + - uid: 14060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,12.5 + parent: 2 + - uid: 14093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-17.5 + parent: 2 + - uid: 14094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-30.5 + parent: 2 + - uid: 14095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-17.5 + parent: 2 + - uid: 14096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,11.5 + parent: 2 + - uid: 14102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-46.5 + parent: 2 + - uid: 14103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-44.5 + parent: 2 + - uid: 14104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-61.5 + parent: 2 + - uid: 14105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-64.5 + parent: 2 + - uid: 14106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-66.5 + parent: 2 + - uid: 14107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-41.5 + parent: 2 + - uid: 14114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-30.5 + parent: 2 + - uid: 14115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-28.5 + parent: 2 + - uid: 14116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-25.5 + parent: 2 + - uid: 14118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-19.5 + parent: 2 + - uid: 14122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-15.5 + parent: 2 + - uid: 14123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-14.5 + parent: 2 + - uid: 14124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-21.5 + parent: 2 + - uid: 14126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-6.5 + parent: 2 + - uid: 14127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-2.5 + parent: 2 + - uid: 14130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,5.5 + parent: 2 + - uid: 14131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,20.5 + parent: 2 + - uid: 14135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,8.5 + parent: 2 + - uid: 14143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,17.5 + parent: 2 + - uid: 14148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-10.5 + parent: 2 + - uid: 14149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-4.5 + parent: 2 + - uid: 14150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 2 + - uid: 14151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-10.5 + parent: 2 + - uid: 14152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-16.5 + parent: 2 + - uid: 14153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-26.5 + parent: 2 + - uid: 14156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-31.5 + parent: 2 + - uid: 14157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-28.5 + parent: 2 + - uid: 14159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-23.5 + parent: 2 + - uid: 14572 + components: + - type: Transform + pos: -57.5,34.5 + parent: 2 + - uid: 14661 + components: + - type: Transform + pos: -44.5,33.5 + parent: 2 + - uid: 14706 + components: + - type: Transform + pos: -57.5,29.5 + parent: 2 + - uid: 15996 + components: + - type: Transform + pos: 3.5,31.5 + parent: 2 + - uid: 15997 + components: + - type: Transform + pos: 8.5,40.5 + parent: 2 + - uid: 15998 + components: + - type: Transform + pos: 3.5,40.5 + parent: 2 + - uid: 15999 + components: + - type: Transform + pos: 12.5,41.5 + parent: 2 + - uid: 16000 + components: + - type: Transform + pos: 4.5,43.5 + parent: 2 +- proto: RandomPosterContraband + entities: + - uid: 9607 + components: + - type: Transform + pos: -48.5,11.5 + parent: 2 + - uid: 14137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 2 + - uid: 14138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-9.5 + parent: 2 + - uid: 14139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-13.5 + parent: 2 + - uid: 14140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-20.5 + parent: 2 + - uid: 14141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-20.5 + parent: 2 + - uid: 14142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,21.5 + parent: 2 + - uid: 14144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 2 + - uid: 14154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-38.5 + parent: 2 + - uid: 14155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-36.5 + parent: 2 + - uid: 14161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-23.5 + parent: 2 + - uid: 14162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-24.5 + parent: 2 + - uid: 14163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-16.5 + parent: 2 + - uid: 14164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-9.5 + parent: 2 + - uid: 14168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,19.5 + parent: 2 + - uid: 14170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-42.5 + parent: 2 + - uid: 14171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-45.5 + parent: 2 + - uid: 14172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-50.5 + parent: 2 + - uid: 14173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-45.5 + parent: 2 + - uid: 14174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-39.5 + parent: 2 + - uid: 14175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-48.5 + parent: 2 + - uid: 14451 + components: + - type: Transform + pos: -49.5,-43.5 + parent: 2 + - uid: 15033 + components: + - type: Transform + pos: 15.5,16.5 + parent: 2 + - uid: 16160 + components: + - type: Transform + pos: -52.5,16.5 + parent: 2 + - uid: 16312 + components: + - type: Transform + pos: -54.5,-49.5 + parent: 2 + - uid: 16313 + components: + - type: Transform + pos: -54.5,-55.5 + parent: 2 + - uid: 16314 + components: + - type: Transform + pos: -51.5,-57.5 + parent: 2 +- proto: RandomPosterLegit + entities: + - uid: 252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,1.5 + parent: 2 + - uid: 289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,7.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: -17.5,13.5 + parent: 2 + - uid: 1880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-40.5 + parent: 2 + - uid: 5616 + components: + - type: Transform + pos: -19.5,16.5 + parent: 2 + - uid: 13059 + components: + - type: Transform + pos: -57.5,-30.5 + parent: 2 + - uid: 13117 + components: + - type: Transform + pos: -51.5,9.5 + parent: 2 + - uid: 13158 + components: + - type: Transform + pos: -7.5,-46.5 + parent: 2 + - uid: 13700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-2.5 + parent: 2 + - uid: 14025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 2 + - uid: 14027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,3.5 + parent: 2 + - uid: 14057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,2.5 + parent: 2 + - uid: 14061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,5.5 + parent: 2 + - uid: 14062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,16.5 + parent: 2 + - uid: 14066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,2.5 + parent: 2 + - uid: 14068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-2.5 + parent: 2 + - uid: 14070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,16.5 + parent: 2 + - uid: 14071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 2 + - uid: 14072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,14.5 + parent: 2 + - uid: 14073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 2 + - uid: 14077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,24.5 + parent: 2 + - uid: 14078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 2 + - uid: 14079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,16.5 + parent: 2 + - uid: 14080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,14.5 + parent: 2 + - uid: 14082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,10.5 + parent: 2 + - uid: 14083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,5.5 + parent: 2 + - uid: 14084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 2 + - uid: 14085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 2 + - uid: 14086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-22.5 + parent: 2 + - uid: 14087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-21.5 + parent: 2 + - uid: 14089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-21.5 + parent: 2 + - uid: 14090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-25.5 + parent: 2 + - uid: 14098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 2 + - uid: 14099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-32.5 + parent: 2 + - uid: 14100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-37.5 + parent: 2 + - uid: 14101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-38.5 + parent: 2 + - uid: 14108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-32.5 + parent: 2 + - uid: 14109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-36.5 + parent: 2 + - uid: 14110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-32.5 + parent: 2 + - uid: 14111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-36.5 + parent: 2 + - uid: 14112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-32.5 + parent: 2 + - uid: 14113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-38.5 + parent: 2 + - uid: 14119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-18.5 + parent: 2 + - uid: 14120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-23.5 + parent: 2 + - uid: 14121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-28.5 + parent: 2 + - uid: 14125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-17.5 + parent: 2 + - uid: 14128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-5.5 + parent: 2 + - uid: 14129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-10.5 + parent: 2 + - uid: 14133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,14.5 + parent: 2 + - uid: 14134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,13.5 + parent: 2 + - uid: 14145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 2 + - uid: 14146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,7.5 + parent: 2 + - uid: 14147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,17.5 + parent: 2 + - uid: 14158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-28.5 + parent: 2 + - uid: 14160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-26.5 + parent: 2 + - uid: 14169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-43.5 + parent: 2 + - uid: 16124 + components: + - type: Transform + pos: -68.5,-2.5 + parent: 2 + - uid: 16125 + components: + - type: Transform + pos: -78.5,3.5 + parent: 2 + - uid: 16126 + components: + - type: Transform + pos: -79.5,-4.5 + parent: 2 +- proto: RandomSpawner + entities: + - uid: 2026 + components: + - type: Transform + pos: -71.5,-19.5 + parent: 2 + - uid: 2029 + components: + - type: Transform + pos: -65.5,-18.5 + parent: 2 + - uid: 13203 + components: + - type: Transform + pos: -65.5,-21.5 + parent: 2 + - uid: 13204 + components: + - type: Transform + pos: -66.5,-24.5 + parent: 2 + - uid: 13205 + components: + - type: Transform + pos: -69.5,-22.5 + parent: 2 +- proto: RandomVending + entities: + - uid: 15548 + components: + - type: Transform + pos: -49.5,-53.5 + parent: 2 +- proto: RCDAmmo + entities: + - uid: 1701 + components: + - type: Transform + parent: 14573 + - type: RCDAmmo + charges: 100 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1712 + components: + - type: Transform + parent: 14634 + - type: RCDAmmo + charges: 100 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 6126 + components: + - type: Transform + parent: 6372 + - type: RCDAmmo + charges: 100 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 6134 + components: + - type: Transform + parent: 6372 + - type: RCDAmmo + charges: 100 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ReagentContainerCornmeal + entities: + - uid: 2943 + components: + - type: Transform + pos: -17.196201,-15.211575 + parent: 2 +- proto: ReagentContainerFlour + entities: + - uid: 998 + components: + - type: Transform + pos: -0.48699188,37.01736 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 6705 + components: + - type: Transform + pos: -17.235981,-15.398273 + parent: 2 + - uid: 15641 + components: + - type: Transform + parent: 15640 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ReagentContainerMayo + entities: + - uid: 14181 + components: + - type: MetaData + desc: Лысина всегда в моде! + name: Гель для облысения + - type: Transform + pos: -31.624126,2.4380324 + parent: 2 +- proto: ReagentContainerSugar + entities: + - uid: 1003 + components: + - type: Transform + pos: -0.5098629,36.663567 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: Recycler + entities: + - uid: 1393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12117 +- proto: ReinforcedGirder + entities: + - uid: 9613 + components: + - type: Transform + pos: -29.5,-45.5 + parent: 2 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 3405 + components: + - type: Transform + pos: -42.5,28.5 + parent: 2 + - uid: 4807 + components: + - type: Transform + pos: -42.5,32.5 + parent: 2 + - uid: 4810 + components: + - type: Transform + pos: -42.5,26.5 + parent: 2 + - uid: 6032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,30.5 + parent: 2 + - uid: 6146 + components: + - type: Transform + pos: -52.5,38.5 + parent: 2 + - uid: 6152 + components: + - type: Transform + pos: -50.5,38.5 + parent: 2 + - uid: 6155 + components: + - type: Transform + pos: -51.5,38.5 + parent: 2 + - uid: 6157 + components: + - type: Transform + pos: -53.5,39.5 + parent: 2 + - uid: 6158 + components: + - type: Transform + pos: -53.5,40.5 + parent: 2 + - uid: 6159 + components: + - type: Transform + pos: -48.5,39.5 + parent: 2 + - uid: 6177 + components: + - type: Transform + pos: -49.5,38.5 + parent: 2 + - uid: 6178 + components: + - type: Transform + pos: -48.5,40.5 + parent: 2 + - uid: 6179 + components: + - type: Transform + pos: -49.5,41.5 + parent: 2 + - uid: 6180 + components: + - type: Transform + pos: -52.5,41.5 + parent: 2 + - uid: 11880 + components: + - type: Transform + pos: -42.5,24.5 + parent: 2 + - uid: 15144 + components: + - type: Transform + pos: -73.5,27.5 + parent: 2 + - uid: 15145 + components: + - type: Transform + pos: -71.5,27.5 + parent: 2 +- proto: ReinforcedWindow + entities: + - uid: 96 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,0.5 + parent: 2 + - uid: 108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,-8.5 + parent: 2 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,4.5 + parent: 2 + - uid: 118 + components: + - type: Transform + pos: -32.5,10.5 + parent: 2 + - uid: 140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,19.5 + parent: 2 + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,10.5 + parent: 2 + - uid: 142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,11.5 + parent: 2 + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,15.5 + parent: 2 + - uid: 144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,18.5 + parent: 2 + - uid: 145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,19.5 + parent: 2 + - uid: 146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,20.5 + parent: 2 + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,19.5 + parent: 2 + - uid: 156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,18.5 + parent: 2 + - uid: 197 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - uid: 305 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 + - uid: 315 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 2 + - uid: 319 + components: + - type: Transform + pos: -35.5,-2.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: -37.5,-2.5 + parent: 2 + - uid: 327 + components: + - type: Transform + pos: -39.5,-2.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - uid: 335 + components: + - type: Transform + pos: -43.5,-2.5 + parent: 2 + - uid: 347 + components: + - type: Transform + pos: -1.5,14.5 + parent: 2 + - uid: 351 + components: + - type: Transform + pos: -59.5,1.5 + parent: 2 + - uid: 355 + components: + - type: Transform + pos: -58.5,1.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: -57.5,1.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: -61.5,1.5 + parent: 2 + - uid: 399 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 2 + - uid: 410 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - uid: 419 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 427 + components: + - type: Transform + pos: -6.5,-62.5 + parent: 2 + - uid: 429 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 2 + - uid: 432 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 2 + - uid: 437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 2 + - uid: 439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 2 + - uid: 441 + components: + - type: Transform + pos: -41.5,-53.5 + parent: 2 + - uid: 442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-2.5 + parent: 2 + - uid: 445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,24.5 + parent: 2 + - uid: 446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-2.5 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: -3.5,-36.5 + parent: 2 + - uid: 449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,24.5 + parent: 2 + - uid: 450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,2.5 + parent: 2 + - uid: 451 + components: + - type: Transform + pos: -40.5,-53.5 + parent: 2 + - uid: 453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,1.5 + parent: 2 + - uid: 454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,7.5 + parent: 2 + - uid: 456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,21.5 + parent: 2 + - uid: 457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-2.5 + parent: 2 + - uid: 458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-2.5 + parent: 2 + - uid: 460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,14.5 + parent: 2 + - uid: 461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-2.5 + parent: 2 + - uid: 464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,24.5 + parent: 2 + - uid: 465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,1.5 + parent: 2 + - uid: 466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,6.5 + parent: 2 + - uid: 470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,1.5 + parent: 2 + - uid: 471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,24.5 + parent: 2 + - uid: 474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,2.5 + parent: 2 + - uid: 475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-2.5 + parent: 2 + - uid: 480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-2.5 + parent: 2 + - uid: 481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,21.5 + parent: 2 + - uid: 484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,7.5 + parent: 2 + - uid: 485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,1.5 + parent: 2 + - uid: 486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,24.5 + parent: 2 + - uid: 489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,3.5 + parent: 2 + - uid: 490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,1.5 + parent: 2 + - uid: 494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-2.5 + parent: 2 + - uid: 495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,24.5 + parent: 2 + - uid: 499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-2.5 + parent: 2 + - uid: 500 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 2 + - uid: 508 + components: + - type: Transform + pos: -42.5,-53.5 + parent: 2 + - uid: 510 + components: + - type: Transform + pos: -46.5,-50.5 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: 8.5,-38.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 + - uid: 547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,-5.5 + parent: 2 + - uid: 599 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 2 + - uid: 603 + components: + - type: Transform + pos: -62.5,1.5 + parent: 2 + - uid: 604 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 608 + components: + - type: Transform + pos: -63.5,1.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: -69.5,1.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: -10.5,2.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: -70.5,1.5 + parent: 2 + - uid: 634 + components: + - type: Transform + pos: -5.5,13.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - uid: 637 + components: + - type: Transform + pos: -11.5,2.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: -71.5,1.5 + parent: 2 + - uid: 639 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - uid: 640 + components: + - type: Transform + pos: -7.5,9.5 + parent: 2 + - uid: 642 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 + - uid: 647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,2.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - uid: 652 + components: + - type: Transform + pos: -25.5,20.5 + parent: 2 + - uid: 655 + components: + - type: Transform + pos: -8.5,21.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: -14.5,22.5 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: -24.5,20.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: -9.5,22.5 + parent: 2 + - uid: 661 + components: + - type: Transform + pos: -18.5,16.5 + parent: 2 + - uid: 662 + components: + - type: Transform + pos: -23.5,20.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: -10.5,22.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 + - uid: 669 + components: + - type: Transform + pos: -19.5,20.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: -11.5,22.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: -16.5,16.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: -4.5,20.5 + parent: 2 + - uid: 674 + components: + - type: Transform + pos: -18.5,20.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: -12.5,22.5 + parent: 2 + - uid: 676 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 + - uid: 677 + components: + - type: Transform + pos: -3.5,20.5 + parent: 2 + - uid: 679 + components: + - type: Transform + pos: -18.5,21.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: -17.5,22.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: -2.5,20.5 + parent: 2 + - uid: 684 + components: + - type: Transform + pos: -7.5,20.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: -16.5,22.5 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: -8.5,16.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: -15.5,22.5 + parent: 2 + - uid: 691 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - uid: 725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,1.5 + parent: 2 + - uid: 857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-8.5 + parent: 2 + - uid: 862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-2.5 + parent: 2 + - uid: 867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-2.5 + parent: 2 + - uid: 872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-2.5 + parent: 2 + - uid: 877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-18.5 + parent: 2 + - uid: 882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-18.5 + parent: 2 + - uid: 883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-16.5 + parent: 2 + - uid: 886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-16.5 + parent: 2 + - uid: 887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-18.5 + parent: 2 + - uid: 888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-16.5 + parent: 2 + - uid: 890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-16.5 + parent: 2 + - uid: 891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-16.5 + parent: 2 + - uid: 892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-18.5 + parent: 2 + - uid: 893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-16.5 + parent: 2 + - uid: 894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-11.5 + parent: 2 + - uid: 895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-10.5 + parent: 2 + - uid: 896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-7.5 + parent: 2 + - uid: 897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-18.5 + parent: 2 + - uid: 902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-2.5 + parent: 2 + - uid: 907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 2 + - uid: 917 + components: + - type: Transform + pos: 36.5,9.5 + parent: 2 + - uid: 922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-12.5 + parent: 2 + - uid: 947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,16.5 + parent: 2 + - uid: 950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,31.5 + parent: 2 + - uid: 955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,31.5 + parent: 2 + - uid: 957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,15.5 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: 3.5,26.5 + parent: 2 + - uid: 961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,11.5 + parent: 2 + - uid: 962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,12.5 + parent: 2 + - uid: 963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,32.5 + parent: 2 + - uid: 966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,11.5 + parent: 2 + - uid: 970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,28.5 + parent: 2 + - uid: 972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,15.5 + parent: 2 + - uid: 975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,28.5 + parent: 2 + - uid: 986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,8.5 + parent: 2 + - uid: 989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,28.5 + parent: 2 + - uid: 991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,9.5 + parent: 2 + - uid: 996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,10.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,11.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,21.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,21.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,21.5 + parent: 2 + - uid: 1010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,8.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,9.5 + parent: 2 + - uid: 1022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-18.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-20.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-21.5 + parent: 2 + - uid: 1044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-22.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-20.5 + parent: 2 + - uid: 1046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-21.5 + parent: 2 + - uid: 1047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-22.5 + parent: 2 + - uid: 1048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-25.5 + parent: 2 + - uid: 1049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-26.5 + parent: 2 + - uid: 1050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-27.5 + parent: 2 + - uid: 1051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-25.5 + parent: 2 + - uid: 1052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-26.5 + parent: 2 + - uid: 1053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-27.5 + parent: 2 + - uid: 1054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-20.5 + parent: 2 + - uid: 1059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-27.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-32.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-32.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-32.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-32.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-32.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-32.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-29.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-29.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-29.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-29.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-29.5 + parent: 2 + - uid: 1097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-29.5 + parent: 2 + - uid: 1264 + components: + - type: Transform + pos: -19.5,-39.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: -18.5,-39.5 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: -21.5,-39.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: -17.5,-53.5 + parent: 2 + - uid: 1308 + components: + - type: Transform + pos: -17.5,-52.5 + parent: 2 + - uid: 1309 + components: + - type: Transform + pos: -17.5,-51.5 + parent: 2 + - uid: 1310 + components: + - type: Transform + pos: -12.5,-51.5 + parent: 2 + - uid: 1311 + components: + - type: Transform + pos: -12.5,-52.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + pos: -12.5,-53.5 + parent: 2 + - uid: 1341 + components: + - type: Transform + pos: -17.5,-60.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + pos: -17.5,-59.5 + parent: 2 + - uid: 1347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,19.5 + parent: 2 + - uid: 1363 + components: + - type: Transform + pos: -21.5,-65.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + pos: -21.5,-64.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: -20.5,-61.5 + parent: 2 + - uid: 1366 + components: + - type: Transform + pos: -19.5,-61.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + pos: -18.5,-61.5 + parent: 2 + - uid: 1368 + components: + - type: Transform + pos: -18.5,-67.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + pos: -19.5,-67.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + pos: -20.5,-67.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-60.5 + parent: 2 + - uid: 1377 + components: + - type: Transform + pos: -11.5,-58.5 + parent: 2 + - uid: 1378 + components: + - type: Transform + pos: -10.5,-58.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + pos: -7.5,-58.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + pos: -6.5,-61.5 + parent: 2 + - uid: 1404 + components: + - type: Transform + pos: -6.5,-67.5 + parent: 2 + - uid: 1405 + components: + - type: Transform + pos: -6.5,-66.5 + parent: 2 + - uid: 1406 + components: + - type: Transform + pos: -6.5,-65.5 + parent: 2 + - uid: 1424 + components: + - type: Transform + pos: -6.5,-70.5 + parent: 2 + - uid: 1425 + components: + - type: Transform + pos: -6.5,-71.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + pos: -8.5,-72.5 + parent: 2 + - uid: 1427 + components: + - type: Transform + pos: -7.5,-72.5 + parent: 2 + - uid: 1428 + components: + - type: Transform + pos: -10.5,-72.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + pos: -12.5,-72.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + pos: -14.5,-72.5 + parent: 2 + - uid: 1431 + components: + - type: Transform + pos: -16.5,-72.5 + parent: 2 + - uid: 1433 + components: + - type: Transform + pos: -15.5,-69.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + pos: -14.5,-69.5 + parent: 2 + - uid: 1435 + components: + - type: Transform + pos: -12.5,-69.5 + parent: 2 + - uid: 1436 + components: + - type: Transform + pos: -11.5,-69.5 + parent: 2 + - uid: 1437 + components: + - type: Transform + pos: -10.5,-69.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + pos: -6.5,-42.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + pos: -5.5,-42.5 + parent: 2 + - uid: 1483 + components: + - type: Transform + pos: -1.5,-41.5 + parent: 2 + - uid: 1487 + components: + - type: Transform + pos: -1.5,-43.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + pos: -3.5,-45.5 + parent: 2 + - uid: 1566 + components: + - type: Transform + pos: -7.5,8.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + pos: -47.5,10.5 + parent: 2 + - uid: 1637 + components: + - type: Transform + pos: -43.5,10.5 + parent: 2 + - uid: 1639 + components: + - type: Transform + pos: -42.5,14.5 + parent: 2 + - uid: 1640 + components: + - type: Transform + pos: -42.5,13.5 + parent: 2 + - uid: 1819 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 2 + - uid: 1820 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 + - uid: 1821 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 2 + - uid: 1853 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 1854 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 + - uid: 1881 + components: + - type: Transform + pos: -1.5,15.5 + parent: 2 + - uid: 1904 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 1912 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - uid: 1913 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 2 + - uid: 1933 + components: + - type: Transform + pos: -30.5,-13.5 + parent: 2 + - uid: 1934 + components: + - type: Transform + pos: -29.5,-13.5 + parent: 2 + - uid: 1936 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 2 + - uid: 1937 + components: + - type: Transform + pos: -39.5,-8.5 + parent: 2 + - uid: 1942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 2 + - uid: 1959 + components: + - type: Transform + pos: -36.5,-10.5 + parent: 2 + - uid: 1974 + components: + - type: Transform + pos: -45.5,-8.5 + parent: 2 + - uid: 1997 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 2 + - uid: 1998 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 2 + - uid: 2006 + components: + - type: Transform + pos: -25.5,-14.5 + parent: 2 + - uid: 2007 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 2 + - uid: 2025 + components: + - type: Transform + pos: -47.5,-50.5 + parent: 2 + - uid: 2028 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 2 + - uid: 2032 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 2 + - uid: 2033 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 2 + - uid: 2045 + components: + - type: Transform + pos: 37.5,16.5 + parent: 2 + - uid: 2050 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 2052 + components: + - type: Transform + pos: -30.5,-18.5 + parent: 2 + - uid: 2056 + components: + - type: Transform + pos: -29.5,-21.5 + parent: 2 + - uid: 2062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,1.5 + parent: 2 + - uid: 2095 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 2193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 2 + - uid: 2228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-21.5 + parent: 2 + - uid: 2310 + components: + - type: Transform + pos: -62.5,-14.5 + parent: 2 + - uid: 2311 + components: + - type: Transform + pos: -62.5,-15.5 + parent: 2 + - uid: 2312 + components: + - type: Transform + pos: -63.5,-20.5 + parent: 2 + - uid: 2313 + components: + - type: Transform + pos: -63.5,-21.5 + parent: 2 + - uid: 2314 + components: + - type: Transform + pos: -63.5,-22.5 + parent: 2 + - uid: 2315 + components: + - type: Transform + pos: -63.5,-24.5 + parent: 2 + - uid: 2316 + components: + - type: Transform + pos: -59.5,-24.5 + parent: 2 + - uid: 2317 + components: + - type: Transform + pos: -59.5,-23.5 + parent: 2 + - uid: 2318 + components: + - type: Transform + pos: -59.5,-19.5 + parent: 2 + - uid: 2325 + components: + - type: Transform + pos: -64.5,-12.5 + parent: 2 + - uid: 2326 + components: + - type: Transform + pos: -65.5,-12.5 + parent: 2 + - uid: 2366 + components: + - type: Transform + pos: -61.5,-30.5 + parent: 2 + - uid: 2367 + components: + - type: Transform + pos: -62.5,-30.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + pos: -63.5,-30.5 + parent: 2 + - uid: 2374 + components: + - type: Transform + pos: -66.5,-33.5 + parent: 2 + - uid: 2375 + components: + - type: Transform + pos: -66.5,-34.5 + parent: 2 + - uid: 2376 + components: + - type: Transform + pos: -66.5,-35.5 + parent: 2 + - uid: 2382 + components: + - type: Transform + pos: -63.5,-38.5 + parent: 2 + - uid: 2383 + components: + - type: Transform + pos: -62.5,-38.5 + parent: 2 + - uid: 2384 + components: + - type: Transform + pos: -61.5,-38.5 + parent: 2 + - uid: 2390 + components: + - type: Transform + pos: -56.5,-36.5 + parent: 2 + - uid: 2400 + components: + - type: Transform + pos: -60.5,-39.5 + parent: 2 + - uid: 2401 + components: + - type: Transform + pos: -60.5,-40.5 + parent: 2 + - uid: 2402 + components: + - type: Transform + pos: -60.5,-41.5 + parent: 2 + - uid: 2403 + components: + - type: Transform + pos: -59.5,-42.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + pos: -58.5,-42.5 + parent: 2 + - uid: 2405 + components: + - type: Transform + pos: -57.5,-42.5 + parent: 2 + - uid: 2459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-58.5 + parent: 2 + - uid: 2490 + components: + - type: Transform + pos: -22.5,-50.5 + parent: 2 + - uid: 2491 + components: + - type: Transform + pos: -20.5,-50.5 + parent: 2 + - uid: 2492 + components: + - type: Transform + pos: -21.5,-50.5 + parent: 2 + - uid: 2615 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 2622 + components: + - type: Transform + pos: 36.5,12.5 + parent: 2 + - uid: 2627 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 + - uid: 2951 + components: + - type: Transform + pos: -47.5,1.5 + parent: 2 + - uid: 3265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 2 + - uid: 3269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 2 + - uid: 3272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 2 + - uid: 3470 + components: + - type: Transform + pos: -6.5,6.5 + parent: 2 + - uid: 3482 + components: + - type: Transform + pos: -5.5,6.5 + parent: 2 + - uid: 4733 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 4820 + components: + - type: Transform + pos: -45.5,23.5 + parent: 2 + - uid: 4823 + components: + - type: Transform + pos: -44.5,22.5 + parent: 2 + - uid: 4824 + components: + - type: Transform + pos: -44.5,24.5 + parent: 2 + - uid: 4826 + components: + - type: Transform + pos: -44.5,25.5 + parent: 2 + - uid: 4827 + components: + - type: Transform + pos: -44.5,26.5 + parent: 2 + - uid: 4828 + components: + - type: Transform + pos: -44.5,28.5 + parent: 2 + - uid: 4830 + components: + - type: Transform + pos: -44.5,27.5 + parent: 2 + - uid: 4832 + components: + - type: Transform + pos: -44.5,20.5 + parent: 2 + - uid: 4853 + components: + - type: Transform + pos: -37.5,10.5 + parent: 2 + - uid: 4901 + components: + - type: Transform + pos: -44.5,31.5 + parent: 2 + - uid: 5528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,16.5 + parent: 2 + - uid: 5555 + components: + - type: Transform + pos: 36.5,8.5 + parent: 2 + - uid: 5738 + components: + - type: Transform + pos: 5.5,35.5 + parent: 2 + - uid: 5840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,34.5 + parent: 2 + - uid: 5843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,32.5 + parent: 2 + - uid: 5860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,35.5 + parent: 2 + - uid: 5883 + components: + - type: Transform + pos: 3.5,25.5 + parent: 2 + - uid: 5902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,31.5 + parent: 2 + - uid: 6105 + components: + - type: Transform + pos: -50.5,-21.5 + parent: 2 + - uid: 6147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,19.5 + parent: 2 + - uid: 6160 + components: + - type: Transform + pos: -26.5,20.5 + parent: 2 + - uid: 6207 + components: + - type: Transform + pos: -55.5,36.5 + parent: 2 + - uid: 6209 + components: + - type: Transform + pos: -54.5,36.5 + parent: 2 + - uid: 6248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,6.5 + parent: 2 + - uid: 6249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,5.5 + parent: 2 + - uid: 6355 + components: + - type: Transform + pos: -51.5,36.5 + parent: 2 + - uid: 6419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,1.5 + parent: 2 + - uid: 6582 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 + - uid: 6857 + components: + - type: Transform + pos: -44.5,30.5 + parent: 2 + - uid: 6877 + components: + - type: Transform + pos: -44.5,32.5 + parent: 2 + - uid: 7789 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 7790 + components: + - type: Transform + pos: 36.5,6.5 + parent: 2 + - uid: 7801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,36.5 + parent: 2 + - uid: 8008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-3.5 + parent: 2 + - uid: 8051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,2.5 + parent: 2 + - uid: 8139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-2.5 + parent: 2 + - uid: 8154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-19.5 + parent: 2 + - uid: 8824 + components: + - type: Transform + pos: 3.5,27.5 + parent: 2 + - uid: 9498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-8.5 + parent: 2 + - uid: 9499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-8.5 + parent: 2 + - uid: 9509 + components: + - type: Transform + pos: -47.5,-12.5 + parent: 2 + - uid: 10306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,6.5 + parent: 2 + - uid: 10370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,1.5 + parent: 2 + - uid: 10398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,6.5 + parent: 2 + - uid: 10399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,6.5 + parent: 2 + - uid: 10467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,-3.5 + parent: 2 + - uid: 10469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,-1.5 + parent: 2 + - uid: 10474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,-8.5 + parent: 2 + - uid: 10475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,-0.5 + parent: 2 + - uid: 10476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,2.5 + parent: 2 + - uid: 10486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,2.5 + parent: 2 + - uid: 10763 + components: + - type: Transform + pos: -36.5,29.5 + parent: 2 + - uid: 10764 + components: + - type: Transform + pos: -36.5,28.5 + parent: 2 + - uid: 10765 + components: + - type: Transform + pos: -36.5,27.5 + parent: 2 + - uid: 11288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,1.5 + parent: 2 + - uid: 11387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,-34.5 + parent: 2 + - uid: 11574 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 11575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,33.5 + parent: 2 + - uid: 11666 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 + - uid: 11901 + components: + - type: Transform + pos: -52.5,23.5 + parent: 2 + - uid: 11940 + components: + - type: Transform + pos: -6.5,-63.5 + parent: 2 + - uid: 11972 + components: + - type: Transform + pos: -53.5,23.5 + parent: 2 + - uid: 11973 + components: + - type: Transform + pos: -49.5,23.5 + parent: 2 + - uid: 11974 + components: + - type: Transform + pos: -46.5,23.5 + parent: 2 + - uid: 12495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,20.5 + parent: 2 + - uid: 12509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-8.5 + parent: 2 + - uid: 12533 + components: + - type: Transform + pos: -49.5,36.5 + parent: 2 + - uid: 12562 + components: + - type: Transform + pos: 12.5,27.5 + parent: 2 + - uid: 12787 + components: + - type: Transform + pos: -52.5,36.5 + parent: 2 + - uid: 12796 + components: + - type: Transform + pos: -48.5,36.5 + parent: 2 + - uid: 12861 + components: + - type: Transform + pos: -7.5,-60.5 + parent: 2 + - uid: 13355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 2 + - uid: 13362 + components: + - type: Transform + pos: -50.5,36.5 + parent: 2 + - uid: 13543 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 14430 + components: + - type: Transform + pos: -54.5,1.5 + parent: 2 + - uid: 14863 + components: + - type: Transform + pos: -73.5,34.5 + parent: 2 + - uid: 14864 + components: + - type: Transform + pos: -73.5,33.5 + parent: 2 + - uid: 14865 + components: + - type: Transform + pos: -73.5,32.5 + parent: 2 + - uid: 14867 + components: + - type: Transform + pos: -71.5,33.5 + parent: 2 + - uid: 14868 + components: + - type: Transform + pos: -71.5,32.5 + parent: 2 + - uid: 15036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,34.5 + parent: 2 + - uid: 15767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,33.5 + parent: 2 + - uid: 15795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,35.5 + parent: 2 + - uid: 15822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,35.5 + parent: 2 + - uid: 15825 + components: + - type: Transform + pos: 3.5,35.5 + parent: 2 + - uid: 16046 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - uid: 16104 + components: + - type: Transform + pos: 18.5,26.5 + parent: 2 + - uid: 16105 + components: + - type: Transform + pos: 18.5,25.5 + parent: 2 + - uid: 16208 + components: + - type: Transform + pos: 18.5,34.5 + parent: 2 +- proto: ReinforcedWindowDiagonal + entities: + - uid: 615 + components: + - type: Transform + pos: 3.5,36.5 + parent: 2 + - uid: 5855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,36.5 + parent: 2 +- proto: RemoteSignaller + entities: + - uid: 8845 + components: + - type: Transform + parent: 8728 + - type: DeviceLinkSource + linkedPorts: + 6104: + - Pressed: DoorBolt + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8942 + components: + - type: Transform + parent: 7695 + - type: DeviceLinkSource + linkedPorts: + 8844: + - Pressed: DoorBolt + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8943 + components: + - type: Transform + parent: 8725 + - type: DeviceLinkSource + linkedPorts: + 8726: + - Pressed: DoorBolt + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8944 + components: + - type: Transform + parent: 7697 + - type: DeviceLinkSource + linkedPorts: + 7696: + - Pressed: DoorBolt + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 16186 + components: + - type: Transform + pos: 18.801369,29.893389 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 16187 + components: + - type: Transform + pos: 18.797718,29.76948 + parent: 2 + - uid: 16199 + components: + - type: Transform + pos: 18.797718,29.655817 + parent: 2 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 7085 + components: + - type: Transform + pos: -11.5,-42.5 + parent: 2 +- proto: RGBStaff + entities: + - uid: 13177 + components: + - type: Transform + pos: -45.505722,-25.40746 + parent: 2 +- proto: RiotBulletShield + entities: + - uid: 15976 + components: + - type: Transform + pos: 10.2760725,20.583164 + parent: 2 + - type: Blocking + blockingToggleActionEntity: 15977 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 15977 + - uid: 15980 + components: + - type: Transform + pos: 10.243547,20.779776 + parent: 2 + - type: Blocking + blockingToggleActionEntity: 15981 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 15981 +- proto: RiotLaserShield + entities: + - uid: 15974 + components: + - type: Transform + pos: 10.739879,20.630249 + parent: 2 + - type: Blocking + blockingToggleActionEntity: 15975 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 15975 + - uid: 15978 + components: + - type: Transform + pos: 10.707735,20.729624 + parent: 2 + - type: Blocking + blockingToggleActionEntity: 15979 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 15979 +- proto: RiotShield + entities: + - uid: 556 + components: + - type: Transform + pos: 4.672752,26.903267 + parent: 2 + - type: Blocking + blockingToggleActionEntity: 557 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 557 + - uid: 992 + components: + - type: Transform + pos: 4.706554,26.725956 + parent: 2 + - type: Blocking + blockingToggleActionEntity: 993 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 993 + - uid: 15986 + components: + - type: Transform + pos: 9.880672,20.81847 + parent: 2 + - type: Blocking + blockingToggleActionEntity: 15987 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 15987 + - uid: 15990 + components: + - type: Transform + pos: 9.891738,20.611526 + parent: 2 + - type: Blocking + blockingToggleActionEntity: 15991 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 15991 +- proto: RockGuitarInstrument + entities: + - uid: 3328 + components: + - type: Transform + pos: 8.565853,-17.568176 + parent: 2 +- proto: RollerBed + entities: + - uid: 6939 + components: + - type: Transform + pos: -43.54285,-11.435363 + parent: 2 + - uid: 12735 + components: + - type: Transform + pos: -41.491684,-11.421684 + parent: 2 + - uid: 13661 + components: + - type: Transform + pos: -35.461044,-13.332869 + parent: 2 +- proto: RollingPin + entities: + - uid: 4450 + components: + - type: Transform + pos: -0.47923994,38.0213 + parent: 2 +- proto: RubberStampApproved + entities: + - uid: 2858 + components: + - type: Transform + pos: 0.08247113,-23.213303 + parent: 2 + - uid: 5448 + components: + - type: Transform + pos: -15.295991,20.568375 + parent: 2 + - uid: 8530 + components: + - type: Transform + pos: 0.0030927658,-5.4750395 + parent: 2 +- proto: RubberStampDenied + entities: + - uid: 5453 + components: + - type: Transform + pos: -15.349797,20.887802 + parent: 2 + - uid: 8529 + components: + - type: Transform + pos: 0.041119576,-5.252901 + parent: 2 + - uid: 13074 + components: + - type: Transform + pos: 0.112219095,-23.496302 + parent: 2 +- proto: SalvageCanisterSpawner + entities: + - uid: 3353 + components: + - type: Transform + pos: 7.5,-33.5 + parent: 2 + - uid: 9512 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 2 +- proto: SalvageMagnet + entities: + - uid: 13081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-49.5 + parent: 2 +- proto: SawElectric + entities: + - uid: 6894 + components: + - type: Transform + pos: -39.418438,-15.4987755 + parent: 2 +- proto: SawImprov + entities: + - uid: 13175 + components: + - type: Transform + pos: -40.435005,-25.525074 + parent: 2 +- proto: SaxophoneInstrument + entities: + - uid: 8991 + components: + - type: Transform + pos: 8.540806,-18.325834 + parent: 2 +- proto: ScalpelShiv + entities: + - uid: 14390 + components: + - type: Transform + pos: -40.45063,-24.462574 + parent: 2 +- proto: Screen + entities: + - uid: 5826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 2 + - uid: 6987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-32.5 + parent: 2 + - uid: 7838 + components: + - type: Transform + pos: -64.5,1.5 + parent: 2 + - uid: 7899 + components: + - type: Transform + pos: -82.5,2.5 + parent: 2 + - uid: 8012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-14.5 + parent: 2 + - uid: 12400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,1.5 + parent: 2 + - uid: 12403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 + - uid: 12404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,1.5 + parent: 2 + - uid: 12408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 2 + - uid: 12688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-2.5 + parent: 2 + - uid: 12969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-32.5 + parent: 2 + - uid: 16435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-2.5 + parent: 2 +- proto: Screwdriver + entities: + - uid: 8286 + components: + - type: Transform + pos: -47.46844,-15.496532 + parent: 2 +- proto: SeashellInstrument + entities: + - uid: 3161 + components: + - type: Transform + pos: -60.520622,-44.597103 + parent: 2 +- proto: SecurityTechFab + entities: + - uid: 5689 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 +- proto: SeedExtractor + entities: + - uid: 6733 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 2 + - uid: 11561 + components: + - type: Transform + pos: 8.5,39.5 + parent: 2 +- proto: ShardGlass + entities: + - uid: 505 + components: + - type: Transform + pos: -66.07664,-27.06991 + parent: 2 + - uid: 1873 + components: + - type: Transform + pos: -71.07493,-21.116673 + parent: 2 + - uid: 2053 + components: + - type: Transform + pos: -65.16112,-23.353928 + parent: 2 + - uid: 9627 + components: + - type: Transform + pos: -35.258305,-41.60283 + parent: 2 + - uid: 9628 + components: + - type: Transform + pos: -30.562725,-40.626842 + parent: 2 + - uid: 9629 + components: + - type: Transform + pos: -30.968975,-46.553303 + parent: 2 +- proto: ShardGlassReinforced + entities: + - uid: 476 + components: + - type: Transform + pos: -69.371544,-17.369442 + parent: 2 + - uid: 2061 + components: + - type: Transform + pos: -64.58434,-18.688614 + parent: 2 +- proto: SheetGlass + entities: + - uid: 196 + components: + - type: Transform + pos: -39.478123,13.7022915 + parent: 2 + - uid: 5674 + components: + - type: Transform + pos: 9.616264,11.491429 + parent: 2 + - uid: 7235 + components: + - type: Transform + pos: -21.560415,-45.830303 + parent: 2 + - uid: 9541 + components: + - type: Transform + pos: -58.54384,-12.488851 + parent: 2 + - uid: 9542 + components: + - type: Transform + pos: -58.403214,-12.598226 + parent: 2 +- proto: SheetPaper + entities: + - uid: 5512 + components: + - type: Transform + pos: -12.613878,3.6234126 + parent: 2 + - uid: 8393 + components: + - type: Transform + pos: -0.63303113,-5.271905 + parent: 2 +- proto: SheetPlasma + entities: + - uid: 13363 + components: + - type: Transform + pos: -41.550934,12.623541 + parent: 2 +- proto: SheetPlasma1 + entities: + - uid: 536 + components: + - type: Transform + pos: -18.289738,-66.66382 + parent: 2 + - type: Stack + count: 15 + - uid: 6784 + components: + - type: Transform + pos: -35.412117,-3.8363671 + parent: 2 +- proto: SheetPlasteel + entities: + - uid: 6642 + components: + - type: Transform + pos: -39.358047,12.934998 + parent: 2 + - type: RCDAmmo + charges: 60 +- proto: SheetPlastic + entities: + - uid: 5673 + components: + - type: Transform + pos: 9.605464,11.518216 + parent: 2 + - type: RCDAmmo + charges: 15 + - uid: 7236 + components: + - type: Transform + pos: -21.586489,-45.322193 + parent: 2 + - type: RCDAmmo + charges: 15 +- proto: SheetRGlass + entities: + - uid: 14663 + components: + - type: Transform + pos: -39.425957,21.700565 + parent: 2 + - type: RCDAmmo + charges: 60 +- proto: SheetSteel + entities: + - uid: 5672 + components: + - type: Transform + pos: 9.616264,11.491429 + parent: 2 + - uid: 6359 + components: + - type: Transform + pos: -39.48605,12.652872 + parent: 2 + - uid: 7234 + components: + - type: Transform + pos: -21.577385,-45.545486 + parent: 2 + - uid: 9543 + components: + - type: Transform + pos: -58.73134,-13.332601 + parent: 2 + - uid: 9544 + components: + - type: Transform + pos: -58.60683,-13.303678 + parent: 2 + - uid: 14446 + components: + - type: Transform + pos: -52.468884,2.5612302 + parent: 2 + - uid: 14665 + components: + - type: Transform + pos: -39.47187,22.643137 + parent: 2 + - uid: 14666 + components: + - type: Transform + pos: -39.56723,22.28059 + parent: 2 + - uid: 15167 + components: + - type: Transform + pos: -71.63785,24.606619 + parent: 2 +- proto: ShellShotgunImprovised + entities: + - uid: 14773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.786797,-40.610535 + parent: 2 +- proto: Shiv + entities: + - uid: 14308 + components: + - type: Transform + pos: -55.496147,-8.390962 + parent: 2 +- proto: ShockCollar + entities: + - uid: 16154 + components: + - type: Transform + pos: 19.468155,31.448807 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 16156 + components: + - type: Transform + pos: 19.45863,31.472618 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 16157 + components: + - type: Transform + pos: 19.441975,31.44046 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: ShotGunCabinetFilled + entities: + - uid: 666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,16.5 + parent: 2 +- proto: Shovel + entities: + - uid: 13183 + components: + - type: Transform + pos: -42.28955,-51.7153 + parent: 2 +- proto: ShuttersNormalOpen + entities: + - uid: 596 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 5785 + components: + - type: Transform + pos: -9.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 5524 + - uid: 5786 + components: + - type: Transform + pos: -10.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 5524 + - uid: 5793 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 5807 + - uid: 5794 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 5807 + - uid: 5795 + components: + - type: Transform + pos: -11.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 5524 + - uid: 5796 + components: + - type: Transform + pos: -12.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 5524 + - uid: 5797 + components: + - type: Transform + pos: -14.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 5524 + - uid: 5798 + components: + - type: Transform + pos: -15.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 5524 + - uid: 5799 + components: + - type: Transform + pos: -16.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 5524 + - uid: 5800 + components: + - type: Transform + pos: -17.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 5524 + - uid: 5803 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 5805 + - uid: 5804 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 5805 + - uid: 6477 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 + - uid: 6478 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6476 + - uid: 6479 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6476 + - uid: 6626 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6754 + - uid: 6627 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6754 + - uid: 6628 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6754 + - uid: 7983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6754 + - uid: 7984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6754 + - uid: 7985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6754 + - uid: 7986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6754 + - uid: 8439 + components: + - type: Transform + pos: -50.5,-29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 9047 + - 8447 + - uid: 8440 + components: + - type: Transform + pos: -53.5,-30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8446 + - uid: 8441 + components: + - type: Transform + pos: -53.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8449 + - uid: 8442 + components: + - type: Transform + pos: -50.5,-25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8445 + - uid: 8443 + components: + - type: Transform + pos: -50.5,-21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8444 + - uid: 9048 + components: + - type: Transform + pos: -46.5,-2.5 + parent: 2 + - uid: 9049 + components: + - type: Transform + pos: -45.5,-2.5 + parent: 2 + - uid: 13149 + components: + - type: Transform + pos: -29.5,5.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 13356 + - uid: 13169 + components: + - type: Transform + pos: -29.5,6.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 13356 + - uid: 13388 + components: + - type: Transform + pos: -7.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13516 + - uid: 13391 + components: + - type: Transform + pos: -7.5,9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13516 + - uid: 13423 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13516 + - uid: 13496 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13516 + - uid: 13651 + components: + - type: Transform + pos: -9.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12508 + - uid: 13652 + components: + - type: Transform + pos: -10.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12508 + - uid: 13653 + components: + - type: Transform + pos: -11.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12508 + - uid: 13654 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12508 + - uid: 14177 + components: + - type: Transform + pos: -45.5,-8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 724 + - uid: 14178 + components: + - type: Transform + pos: -46.5,-8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 724 + - uid: 15931 + components: + - type: Transform + pos: -1.5,15.5 + parent: 2 + - uid: 15943 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 14459 + components: + - type: Transform + pos: -54.496826,6.3433704 + parent: 2 +- proto: SignalButton + entities: + - uid: 724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14178: + - Pressed: Toggle + 14177: + - Pressed: Toggle + - uid: 3718 + components: + - type: Transform + pos: -39.5,-28.5 + parent: 2 + - uid: 5524 + components: + - type: Transform + pos: -11.5,16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5527: + - Pressed: Toggle + 5526: + - Pressed: Toggle + 5525: + - Pressed: Toggle + 5523: + - Pressed: Toggle + 288: [] + 5785: + - Pressed: Toggle + 5795: + - Pressed: Toggle + 5786: + - Pressed: Toggle + 5796: + - Pressed: Toggle + 5798: + - Pressed: Toggle + 5797: + - Pressed: Toggle + 5799: + - Pressed: Toggle + 5800: + - Pressed: Toggle + - uid: 5805 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5803: + - Pressed: Toggle + 5804: + - Pressed: Toggle + - uid: 5807 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5793: + - Pressed: Toggle + 5794: + - Pressed: Toggle + - uid: 5968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5967: + - Pressed: Toggle + 4895: + - Pressed: Toggle + - uid: 6061 + components: + - type: Transform + pos: -53.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4895: + - Pressed: Toggle + 5967: + - Pressed: Toggle + - uid: 6066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6058: + - Pressed: Toggle + 4896: + - Pressed: Toggle + 4846: + - Pressed: Toggle + - uid: 6476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6478: + - Pressed: Toggle + 6479: + - Pressed: Toggle + - uid: 6754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7986: + - Pressed: Toggle + 7985: + - Pressed: Toggle + 7984: + - Pressed: Toggle + 7983: + - Pressed: Toggle + 6627: + - Pressed: Toggle + 6628: + - Pressed: Toggle + 6626: + - Pressed: Toggle + - uid: 6886 + components: + - type: Transform + pos: -39.5,-30.5 + parent: 2 + - uid: 7137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-54.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1321: + - Pressed: Toggle + 1320: + - Pressed: Toggle + 1319: + - Pressed: Toggle + 1322: + - Pressed: Toggle + 1323: + - Pressed: Toggle + 1324: + - Pressed: Toggle + - uid: 7189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-38.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7178: + - Pressed: Toggle + 7145: + - Pressed: Toggle + - uid: 8444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8443: + - Pressed: Toggle + - uid: 8445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-24.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8442: + - Pressed: Toggle + - uid: 8446 + components: + - type: Transform + pos: -55.5,-28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8440: + - Pressed: Toggle + - uid: 8447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.49302,-28.728817 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8439: + - Pressed: Toggle + - uid: 8449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8441: + - Pressed: Toggle + - uid: 9046 + components: + - type: Transform + pos: -45.5,-30.5 + parent: 2 + - type: SignalSwitch + state: True + - uid: 9047 + components: + - type: Transform + pos: -45.5,-28.5 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 8439: + - Pressed: Toggle + 8704: [] + - uid: 9059 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 2 + - uid: 10149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-68.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1452: + - Pressed: Toggle + - uid: 12474 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12475: + - Pressed: Toggle + - uid: 12480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12451: + - Pressed: Toggle + 12469: + - Pressed: Toggle + - uid: 12483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13655: + - Pressed: Toggle + 11470: + - Pressed: Toggle + - uid: 12485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-12.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12500: + - Pressed: Toggle + 12471: + - Pressed: Toggle + - uid: 12497 + components: + - type: Transform + pos: -13.5,-58.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1324: + - Pressed: Toggle + 1323: + - Pressed: Toggle + 1322: + - Pressed: Toggle + 1319: + - Pressed: Toggle + 1320: + - Pressed: Toggle + 1321: + - Pressed: Toggle + - uid: 12502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-9.5 + parent: 2 + - uid: 12503 + components: + - type: Transform + pos: -15.5,-43.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12472: + - Pressed: Toggle + - uid: 12505 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12473: + - Pressed: Toggle + - uid: 12508 + components: + - type: Transform + pos: -11.5,6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13654: + - Pressed: Toggle + 13653: + - Pressed: Toggle + 13652: + - Pressed: Toggle + 13651: + - Pressed: Toggle + - uid: 12860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12118: + - Pressed: Toggle + - uid: 14252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-68.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1453: + - Pressed: Toggle + - uid: 14253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-67.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7153: + - Pressed: Toggle + - uid: 15136 + components: + - type: Transform + pos: -71.5,31.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15156: + - Pressed: Toggle + 15232: + - Pressed: Toggle + - uid: 15197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15193: + - Pressed: Toggle + 15195: + - Pressed: Toggle + 15194: + - Pressed: Toggle +- proto: SignalButtonWindows + entities: + - uid: 13356 + components: + - type: Transform + pos: -31.5,8.5 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 13169: + - Pressed: Toggle + 13149: + - Pressed: Toggle + - uid: 13516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13496: + - Pressed: Toggle + 13423: + - Pressed: Toggle + 13391: + - Pressed: Toggle + 13388: + - Pressed: Toggle +- proto: SignAnomaly + entities: + - uid: 11279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-61.5 + parent: 2 +- proto: SignAnomaly2 + entities: + - uid: 12376 + components: + - type: MetaData + desc: Знак, указывающий на лабораторию аномалий. + name: знак "лаборатория аномалий" + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-65.5 + parent: 2 +- proto: SignArcade + entities: + - uid: 6921 + components: + - type: MetaData + desc: Знак, указывающий на помещение аркад. + name: знак "аркада" + - type: Transform + pos: 17.5,1.5 + parent: 2 +- proto: SignArmory + entities: + - uid: 15229 + components: + - type: Transform + pos: 8.5,18.5 + parent: 2 +- proto: SignArrivals + entities: + - uid: 16439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,1.5 + parent: 2 +- proto: SignAtmos + entities: + - uid: 6929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,19.5 + parent: 2 +- proto: SignBar + entities: + - uid: 6930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 2 +- proto: SignBarbershop + entities: + - uid: 14524 + components: + - type: MetaData + desc: Знак, указывающий на барбершоп. + name: знак "барбершоп" + - type: Transform + pos: -1.5,-7.5 + parent: 2 +- proto: SignBridge + entities: + - uid: 1696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,13.5 + parent: 2 + - uid: 6424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,13.5 + parent: 2 +- proto: SignCanisters + entities: + - uid: 16437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,23.5 + parent: 2 +- proto: SignCaptain + entities: + - uid: 12689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,12.5 + parent: 2 +- proto: SignCargo + entities: + - uid: 1826 + components: + - type: Transform + pos: -1.5,-31.5 + parent: 2 + - uid: 6577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-34.5 + parent: 2 +- proto: SignCargoDock + entities: + - uid: 6516 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 2 +- proto: SignChapel + entities: + - uid: 6981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-36.5 + parent: 2 +- proto: SignChem + entities: + - uid: 11296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-7.5 + parent: 2 +- proto: SignCloning + entities: + - uid: 12914 + components: + - type: Transform + pos: -45.5,-12.5 + parent: 2 +- proto: SignConference + entities: + - uid: 11295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,13.5 + parent: 2 +- proto: SignCourt + entities: + - uid: 12379 + components: + - type: MetaData + desc: Знак, указывающий на суд. + name: знак "суд" + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 2 +- proto: SignCryogenicsMed + entities: + - uid: 6928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-8.5 + parent: 2 +- proto: SignDangerMed + entities: + - uid: 6186 + components: + - type: Transform + pos: -32.5,21.5 + parent: 2 + - uid: 15325 + components: + - type: Transform + pos: -62.5,24.5 + parent: 2 +- proto: SignDirectionalBar + entities: + - uid: 1500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.785374,1.4779391 + parent: 2 + - uid: 14420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.495754,-32.01433 + parent: 2 +- proto: SignDirectionalBridge + entities: + - uid: 12359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.506197,-31.662712 + parent: 2 + - uid: 14776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5015993,2.5788407 + parent: 2 +- proto: SignDirectionalBrig + entities: + - uid: 11314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.491928,1.2954941 + parent: 2 + - uid: 13677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.491915,-32.282326 + parent: 2 +- proto: SignDirectionalChapel + entities: + - uid: 12604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.489063,-32.2305 + parent: 2 +- proto: SignDirectionalEng + entities: + - uid: 1498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.482624,1.4834856 + parent: 2 + - uid: 12247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.4841485,1.9330403 + parent: 2 + - uid: 14778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.508034,-32.077427 + parent: 2 +- proto: SignDirectionalEvac + entities: + - uid: 12228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.48877,1.6895766 + parent: 2 + - uid: 13053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.491028,-32.72805 + parent: 2 + - uid: 13064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.488947,2.1464903 + parent: 2 +- proto: SignDirectionalHydro + entities: + - uid: 14784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.506943,-32.447594 + parent: 2 +- proto: SignDirectionalJanitor + entities: + - uid: 12681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.483665,-31.802887 + parent: 2 + - uid: 13484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5118027,2.370677 + parent: 2 +- proto: SignDirectionalLibrary + entities: + - uid: 14783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.506943,-32.635094 + parent: 2 +- proto: SignDirectionalMed + entities: + - uid: 12558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.507221,-32.499645 + parent: 2 + - uid: 12847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 2 +- proto: SignDirectionalSci + entities: + - uid: 1490 + components: + - type: Transform + pos: -4.4933715,1.7078463 + parent: 2 + - uid: 12227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.788738,1.6749878 + parent: 2 +- proto: SignDirectionalSupply + entities: + - uid: 8794 + components: + - type: Transform + pos: -4.4961553,1.2955743 + parent: 2 + - uid: 12070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.783478,1.2893815 + parent: 2 + - uid: 14781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.510326,-31.851574 + parent: 2 +- proto: SignDisposalSpace + entities: + - uid: 13211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-20.5 + parent: 2 +- proto: SignDorms + entities: + - uid: 16438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-32.5 + parent: 2 +- proto: SignDrones + entities: + - uid: 1843 + components: + - type: Transform + pos: -55.5,-11.5 + parent: 2 +- proto: SignElectricalMed + entities: + - uid: 13575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,16.5 + parent: 2 + - uid: 15945 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 +- proto: SignEngine + entities: + - uid: 15542 + components: + - type: Transform + pos: -54.5,21.5 + parent: 2 +- proto: SignEngineering + entities: + - uid: 6414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,1.5 + parent: 2 +- proto: SignEscapePods + entities: + - uid: 13688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-1.5 + parent: 2 +- proto: SignEVA + entities: + - uid: 8155 + components: + - type: Transform + pos: -56.5,-2.5 + parent: 2 +- proto: SignEvac + entities: + - uid: 16442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,1.5 + parent: 2 +- proto: SignGravity + entities: + - uid: 6322 + components: + - type: Transform + pos: -34.5,11.5 + parent: 2 +- proto: SignHead + entities: + - uid: 6839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-8.5 + parent: 2 + - uid: 11297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-43.5 + parent: 2 + - uid: 12387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-24.5 + parent: 2 + - uid: 12388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,4.5 + parent: 2 + - uid: 13437 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 +- proto: SignHOP + entities: + - uid: 5825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,1.5 + parent: 2 +- proto: SignHydro2 + entities: + - uid: 6931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-6.5 + parent: 2 +- proto: SignInterrogation + entities: + - uid: 15944 + components: + - type: Transform + pos: 2.5,15.5 + parent: 2 +- proto: SignJanitor + entities: + - uid: 8741 + components: + - type: MetaData + desc: Знак, указывающий на каморку уборщика. + name: знак "уборщик" + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,15.5 + parent: 2 +- proto: SignLawyer + entities: + - uid: 12378 + components: + - type: MetaData + desc: Знак, указывающий на офис юриста. + name: знак "юрист" + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 2 +- proto: SignLibrary + entities: + - uid: 11303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-32.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 6933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-6.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 6830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-12.5 + parent: 2 +- proto: SignNews + entities: + - uid: 12380 + components: + - type: MetaData + desc: Знак, указывающий на офис репортера. + name: знак "новости" + - type: Transform + pos: 13.5,-2.5 + parent: 2 +- proto: SignNosmoking + entities: + - uid: 11294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,19.5 + parent: 2 +- proto: SignNukeVault + entities: + - uid: 16441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,13.5 + parent: 2 +- proto: SignPlaque + entities: + - uid: 6936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,13.5 + parent: 2 +- proto: SignPrison + entities: + - uid: 15972 + components: + - type: Transform + pos: 7.5,24.5 + parent: 2 +- proto: SignPsychology + entities: + - uid: 6885 + components: + - type: MetaData + desc: Знак, указывающий на кабинет психолога. + name: знак "психология" + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-8.5 + parent: 2 +- proto: SignRedFour + entities: + - uid: 953 + components: + - type: Transform + pos: 11.438797,29.218342 + parent: 2 + - uid: 15927 + components: + - type: Transform + pos: 11.5,34.5 + parent: 2 +- proto: SignRedOne + entities: + - uid: 2542 + components: + - type: Transform + pos: 0.43953943,30.233011 + parent: 2 + - uid: 15917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,35.5 + parent: 2 +- proto: SignRedThree + entities: + - uid: 601 + components: + - type: Transform + pos: 11.455588,30.24144 + parent: 2 + - uid: 12690 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 +- proto: SignRedTwo + entities: + - uid: 968 + components: + - type: Transform + pos: 0.4586916,29.176273 + parent: 2 + - uid: 15913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,34.5 + parent: 2 +- proto: SignRND + entities: + - uid: 12384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-39.5 + parent: 2 +- proto: SignRobo + entities: + - uid: 12391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-36.5 + parent: 2 +- proto: SignSecureMed + entities: + - uid: 12833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,11.5 + parent: 2 +- proto: SignSecureMedRed + entities: + - uid: 15230 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 +- proto: SignSecurity + entities: + - uid: 16436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 2 +- proto: SignShipDock + entities: + - uid: 12393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,3.5 + parent: 2 + - uid: 12394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,12.5 + parent: 2 + - uid: 16111 + components: + - type: Transform + pos: -82.5,-1.5 + parent: 2 + - uid: 16112 + components: + - type: Transform + pos: -82.5,4.5 + parent: 2 + - uid: 16431 + components: + - type: Transform + pos: 18.5,34.5 + parent: 2 +- proto: SignSMES + entities: + - uid: 16434 + components: + - type: Transform + pos: -37.5,10.5 + parent: 2 +- proto: SignSmoking + entities: + - uid: 11286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,21.5 + parent: 2 +- proto: SignSpace + entities: + - uid: 2857 + components: + - type: Transform + pos: -13.5,-54.5 + parent: 2 + - uid: 3357 + components: + - type: Transform + pos: -4.5,-42.5 + parent: 2 +- proto: SignSurgery + entities: + - uid: 16087 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 +- proto: SignTelecomms + entities: + - uid: 12397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-34.5 + parent: 2 +- proto: SignTheatre + entities: + - uid: 2897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 2 +- proto: SignToilet + entities: + - uid: 13436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-32.5 + parent: 2 +- proto: SignToolStorage + entities: + - uid: 11298 + components: + - type: MetaData + desc: Знак, указывающий на склад медикаментов. + name: знак "склад медикаментов" + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-13.5 + parent: 2 +- proto: SignVirology + entities: + - uid: 5485 + components: + - type: Transform + pos: -41.5,-12.5 + parent: 2 +- proto: SignXenobio + entities: + - uid: 16259 + components: + - type: Transform + pos: -52.5,-51.5 + parent: 2 +- proto: SilverOre1 + entities: + - uid: 14602 + components: + - type: Transform + pos: 19.507345,10.577444 + parent: 2 +- proto: Sink + entities: + - uid: 8148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-15.5 + parent: 2 +- proto: SinkStemlessWater + entities: + - uid: 9609 + components: + - type: Transform + pos: -39.5,-51.5 + parent: 2 + - uid: 11540 + components: + - type: Transform + pos: 1.5,42.5 + parent: 2 + - uid: 12892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-15.5 + parent: 2 + - uid: 12910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-4.5 + parent: 2 + - uid: 14295 + components: + - type: Transform + pos: 9.5,39.5 + parent: 2 + - uid: 14855 + components: + - type: Transform + pos: 10.5,42.5 + parent: 2 +- proto: SinkWide + entities: + - uid: 6701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-6.5 + parent: 2 + - uid: 8712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-30.5 + parent: 2 + - uid: 8713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-30.5 + parent: 2 + - uid: 16329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-6.5 + parent: 2 +- proto: SmartFridge + entities: + - uid: 1743 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 2 + - uid: 6842 + components: + - type: Transform + pos: -31.5,-7.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 2612 + components: + - type: Transform + pos: -31.5,-53.5 + parent: 2 + - uid: 2613 + components: + - type: Transform + pos: -65.5,-37.5 + parent: 2 + - uid: 2614 + components: + - type: Transform + pos: -68.5,-9.5 + parent: 2 + - uid: 2616 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 2 + - uid: 2701 + components: + - type: Transform + pos: -33.5,7.5 + parent: 2 + - uid: 4920 + components: + - type: Transform + pos: -34.5,7.5 + parent: 2 + - uid: 4921 + components: + - type: Transform + pos: -35.5,7.5 + parent: 2 + - uid: 7564 + components: + - type: Transform + pos: 13.5,6.5 + parent: 2 + - uid: 11189 + components: + - type: Transform + pos: -33.5,27.5 + parent: 2 + - uid: 15057 + components: + - type: Transform + pos: -68.5,28.5 + parent: 2 +- proto: SmokeGrenade + entities: + - uid: 16017 + components: + - type: Transform + pos: 9.575564,20.047615 + parent: 2 + - uid: 16018 + components: + - type: Transform + pos: 9.361061,19.952053 + parent: 2 +- proto: SmokingPipe + entities: + - uid: 5842 + components: + - type: Transform + pos: -51.846252,-46.6195 + parent: 2 +- proto: SnapPopBox + entities: + - uid: 14797 + components: + - type: Transform + pos: -47.462772,-41.45193 + parent: 2 +- proto: soda_dispenser + entities: + - uid: 6638 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 +- proto: SolarPanel + entities: + - uid: 9687 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 9688 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 2 + - uid: 9689 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 + - uid: 9690 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 2 + - uid: 9691 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 9692 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 2 + - uid: 9693 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 2 + - uid: 9694 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 9696 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - uid: 9697 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 2 + - uid: 9698 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 2 + - uid: 9699 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 + - uid: 9700 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 + - uid: 9701 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - uid: 9702 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 + - uid: 9703 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 2 + - uid: 9704 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 9716 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - uid: 9717 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - uid: 9723 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 + - uid: 9725 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 2 + - uid: 9726 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 + - uid: 9727 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 9733 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 2 + - uid: 9735 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 9736 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 2 + - uid: 9737 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 9743 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 2 + - uid: 9746 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 2 + - uid: 9747 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 9748 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 + - uid: 9749 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 2 + - uid: 9750 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 2 + - uid: 9751 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 2 + - uid: 9752 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 2 + - uid: 9758 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 9759 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 2 + - uid: 9765 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 2 + - uid: 9766 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 2 + - uid: 9767 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 2 + - uid: 9773 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - uid: 9774 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - uid: 9775 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 2 + - uid: 9776 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 2 + - uid: 9777 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 2 + - uid: 9778 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 2 + - uid: 9779 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 2 + - uid: 9780 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 2 + - uid: 9781 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 2 + - uid: 9782 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 9788 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 2 + - uid: 9789 + components: + - type: Transform + pos: 29.5,-6.5 + parent: 2 + - uid: 9795 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 2 + - uid: 9796 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 2 + - uid: 9797 + components: + - type: Transform + pos: 29.5,-12.5 + parent: 2 + - uid: 9830 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 + - uid: 9831 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 2 + - uid: 9832 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 2 + - uid: 9833 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 2 + - uid: 9834 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 9835 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 9836 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 + - uid: 9837 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 9839 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 9840 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 + - uid: 9841 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 + - uid: 9842 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 + - uid: 9843 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 9844 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 2 + - uid: 9845 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 9846 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 2 + - uid: 9847 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 9991 + components: + - type: Transform + pos: -42.5,-64.5 + parent: 2 + - uid: 9993 + components: + - type: Transform + pos: -42.5,-72.5 + parent: 2 + - uid: 9994 + components: + - type: Transform + pos: -41.5,-72.5 + parent: 2 + - uid: 9995 + components: + - type: Transform + pos: -40.5,-72.5 + parent: 2 + - uid: 9996 + components: + - type: Transform + pos: -39.5,-72.5 + parent: 2 + - uid: 9997 + components: + - type: Transform + pos: -38.5,-72.5 + parent: 2 + - uid: 9998 + components: + - type: Transform + pos: -37.5,-72.5 + parent: 2 + - uid: 9999 + components: + - type: Transform + pos: -36.5,-72.5 + parent: 2 + - uid: 10000 + components: + - type: Transform + pos: -35.5,-72.5 + parent: 2 + - uid: 10001 + components: + - type: Transform + pos: -34.5,-72.5 + parent: 2 + - uid: 10002 + components: + - type: Transform + pos: -34.5,-70.5 + parent: 2 + - uid: 10003 + components: + - type: Transform + pos: -35.5,-70.5 + parent: 2 + - uid: 10004 + components: + - type: Transform + pos: -36.5,-70.5 + parent: 2 + - uid: 10005 + components: + - type: Transform + pos: -37.5,-70.5 + parent: 2 + - uid: 10006 + components: + - type: Transform + pos: -38.5,-70.5 + parent: 2 + - uid: 10007 + components: + - type: Transform + pos: -39.5,-70.5 + parent: 2 + - uid: 10008 + components: + - type: Transform + pos: -40.5,-70.5 + parent: 2 + - uid: 10009 + components: + - type: Transform + pos: -41.5,-70.5 + parent: 2 + - uid: 10010 + components: + - type: Transform + pos: -42.5,-70.5 + parent: 2 + - uid: 10011 + components: + - type: Transform + pos: -42.5,-68.5 + parent: 2 + - uid: 10012 + components: + - type: Transform + pos: -41.5,-68.5 + parent: 2 + - uid: 10013 + components: + - type: Transform + pos: -40.5,-68.5 + parent: 2 + - uid: 10014 + components: + - type: Transform + pos: -39.5,-68.5 + parent: 2 + - uid: 10015 + components: + - type: Transform + pos: -38.5,-68.5 + parent: 2 + - uid: 10016 + components: + - type: Transform + pos: -37.5,-68.5 + parent: 2 + - uid: 10017 + components: + - type: Transform + pos: -36.5,-68.5 + parent: 2 + - uid: 10018 + components: + - type: Transform + pos: -35.5,-68.5 + parent: 2 + - uid: 10019 + components: + - type: Transform + pos: -34.5,-68.5 + parent: 2 + - uid: 10020 + components: + - type: Transform + pos: -34.5,-66.5 + parent: 2 + - uid: 10021 + components: + - type: Transform + pos: -35.5,-66.5 + parent: 2 + - uid: 10022 + components: + - type: Transform + pos: -36.5,-66.5 + parent: 2 + - uid: 10023 + components: + - type: Transform + pos: -37.5,-66.5 + parent: 2 + - uid: 10024 + components: + - type: Transform + pos: -38.5,-66.5 + parent: 2 + - uid: 10025 + components: + - type: Transform + pos: -39.5,-66.5 + parent: 2 + - uid: 10026 + components: + - type: Transform + pos: -40.5,-66.5 + parent: 2 + - uid: 10027 + components: + - type: Transform + pos: -41.5,-66.5 + parent: 2 + - uid: 10028 + components: + - type: Transform + pos: -42.5,-66.5 + parent: 2 + - uid: 10029 + components: + - type: Transform + pos: -41.5,-64.5 + parent: 2 + - uid: 10030 + components: + - type: Transform + pos: -40.5,-64.5 + parent: 2 + - uid: 10031 + components: + - type: Transform + pos: -39.5,-64.5 + parent: 2 + - uid: 10032 + components: + - type: Transform + pos: -38.5,-64.5 + parent: 2 + - uid: 10033 + components: + - type: Transform + pos: -37.5,-64.5 + parent: 2 + - uid: 10034 + components: + - type: Transform + pos: -36.5,-64.5 + parent: 2 + - uid: 10035 + components: + - type: Transform + pos: -35.5,-64.5 + parent: 2 + - uid: 10036 + components: + - type: Transform + pos: -34.5,-64.5 + parent: 2 + - uid: 10037 + components: + - type: Transform + pos: -42.5,-60.5 + parent: 2 + - uid: 10038 + components: + - type: Transform + pos: -34.5,-62.5 + parent: 2 + - uid: 10039 + components: + - type: Transform + pos: -35.5,-62.5 + parent: 2 + - uid: 10040 + components: + - type: Transform + pos: -36.5,-62.5 + parent: 2 + - uid: 10041 + components: + - type: Transform + pos: -37.5,-62.5 + parent: 2 + - uid: 10042 + components: + - type: Transform + pos: -38.5,-62.5 + parent: 2 + - uid: 10043 + components: + - type: Transform + pos: -39.5,-62.5 + parent: 2 + - uid: 10044 + components: + - type: Transform + pos: -40.5,-62.5 + parent: 2 + - uid: 10045 + components: + - type: Transform + pos: -41.5,-62.5 + parent: 2 + - uid: 10046 + components: + - type: Transform + pos: -42.5,-62.5 + parent: 2 + - uid: 10047 + components: + - type: Transform + pos: -41.5,-60.5 + parent: 2 + - uid: 10048 + components: + - type: Transform + pos: -40.5,-60.5 + parent: 2 + - uid: 10049 + components: + - type: Transform + pos: -39.5,-60.5 + parent: 2 + - uid: 10050 + components: + - type: Transform + pos: -38.5,-60.5 + parent: 2 + - uid: 10051 + components: + - type: Transform + pos: -37.5,-60.5 + parent: 2 + - uid: 10052 + components: + - type: Transform + pos: -36.5,-60.5 + parent: 2 + - uid: 10053 + components: + - type: Transform + pos: -35.5,-60.5 + parent: 2 + - uid: 10054 + components: + - type: Transform + pos: -34.5,-60.5 + parent: 2 + - uid: 10055 + components: + - type: Transform + pos: -13.5,29.5 + parent: 2 + - uid: 10056 + components: + - type: Transform + pos: -34.5,-58.5 + parent: 2 + - uid: 10057 + components: + - type: Transform + pos: -35.5,-58.5 + parent: 2 + - uid: 10058 + components: + - type: Transform + pos: -36.5,-58.5 + parent: 2 + - uid: 10059 + components: + - type: Transform + pos: -37.5,-58.5 + parent: 2 + - uid: 10060 + components: + - type: Transform + pos: -38.5,-58.5 + parent: 2 + - uid: 10061 + components: + - type: Transform + pos: -39.5,-58.5 + parent: 2 + - uid: 10062 + components: + - type: Transform + pos: -40.5,-58.5 + parent: 2 + - uid: 10063 + components: + - type: Transform + pos: -41.5,-58.5 + parent: 2 + - uid: 10064 + components: + - type: Transform + pos: -42.5,-58.5 + parent: 2 + - uid: 10330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,-15.5 + parent: 2 + - uid: 10331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,-16.5 + parent: 2 + - uid: 10332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,-17.5 + parent: 2 + - uid: 10333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,-18.5 + parent: 2 + - uid: 10334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,-19.5 + parent: 2 + - uid: 10335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,-20.5 + parent: 2 + - uid: 10336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,-21.5 + parent: 2 + - uid: 10337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,-15.5 + parent: 2 + - uid: 10338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,-16.5 + parent: 2 + - uid: 10339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,-17.5 + parent: 2 + - uid: 10340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,-18.5 + parent: 2 + - uid: 10341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,-19.5 + parent: 2 + - uid: 10342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,-20.5 + parent: 2 + - uid: 10343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,-21.5 + parent: 2 + - uid: 10344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,-15.5 + parent: 2 + - uid: 10345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,-16.5 + parent: 2 + - uid: 10346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,-17.5 + parent: 2 + - uid: 10347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,-18.5 + parent: 2 + - uid: 10348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,-19.5 + parent: 2 + - uid: 10349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,-20.5 + parent: 2 + - uid: 10350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,-21.5 + parent: 2 + - uid: 10351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-15.5 + parent: 2 + - uid: 10352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-16.5 + parent: 2 + - uid: 10353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-17.5 + parent: 2 + - uid: 10354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-18.5 + parent: 2 + - uid: 10355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-19.5 + parent: 2 + - uid: 10356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-20.5 + parent: 2 + - uid: 10357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-21.5 + parent: 2 + - uid: 10400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,-15.5 + parent: 2 + - uid: 10401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,-16.5 + parent: 2 + - uid: 10402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,-17.5 + parent: 2 + - uid: 10403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,-18.5 + parent: 2 + - uid: 10404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,-19.5 + parent: 2 + - uid: 10405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,-20.5 + parent: 2 + - uid: 10406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,-21.5 + parent: 2 + - uid: 10407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,-21.5 + parent: 2 + - uid: 10408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,-20.5 + parent: 2 + - uid: 10409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,-19.5 + parent: 2 + - uid: 10410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,-18.5 + parent: 2 + - uid: 10411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,-17.5 + parent: 2 + - uid: 10412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,-16.5 + parent: 2 + - uid: 10413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,-15.5 + parent: 2 + - uid: 10414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,-15.5 + parent: 2 + - uid: 10415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,-16.5 + parent: 2 + - uid: 10416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,-17.5 + parent: 2 + - uid: 10417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,-18.5 + parent: 2 + - uid: 10418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,-19.5 + parent: 2 + - uid: 10419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,-20.5 + parent: 2 + - uid: 10420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,-21.5 + parent: 2 + - uid: 10421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,-21.5 + parent: 2 + - uid: 10422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,-20.5 + parent: 2 + - uid: 10423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,-19.5 + parent: 2 + - uid: 10424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,-18.5 + parent: 2 + - uid: 10425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,-17.5 + parent: 2 + - uid: 10426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,-16.5 + parent: 2 + - uid: 10427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,-15.5 + parent: 2 + - uid: 10881 + components: + - type: Transform + pos: -13.5,45.5 + parent: 2 + - uid: 10882 + components: + - type: Transform + pos: -14.5,45.5 + parent: 2 + - uid: 10883 + components: + - type: Transform + pos: -15.5,45.5 + parent: 2 + - uid: 10884 + components: + - type: Transform + pos: -16.5,45.5 + parent: 2 + - uid: 10885 + components: + - type: Transform + pos: -17.5,45.5 + parent: 2 + - uid: 10886 + components: + - type: Transform + pos: -18.5,45.5 + parent: 2 + - uid: 10887 + components: + - type: Transform + pos: -19.5,45.5 + parent: 2 + - uid: 10888 + components: + - type: Transform + pos: -20.5,45.5 + parent: 2 + - uid: 10889 + components: + - type: Transform + pos: -15.5,47.5 + parent: 2 + - uid: 10890 + components: + - type: Transform + pos: -14.5,47.5 + parent: 2 + - uid: 10891 + components: + - type: Transform + pos: -24.5,45.5 + parent: 2 + - uid: 10892 + components: + - type: Transform + pos: -25.5,45.5 + parent: 2 + - uid: 10893 + components: + - type: Transform + pos: -26.5,45.5 + parent: 2 + - uid: 10894 + components: + - type: Transform + pos: -27.5,45.5 + parent: 2 + - uid: 10895 + components: + - type: Transform + pos: -28.5,45.5 + parent: 2 + - uid: 10896 + components: + - type: Transform + pos: -29.5,45.5 + parent: 2 + - uid: 10897 + components: + - type: Transform + pos: -30.5,45.5 + parent: 2 + - uid: 10898 + components: + - type: Transform + pos: -31.5,45.5 + parent: 2 + - uid: 10899 + components: + - type: Transform + pos: -31.5,47.5 + parent: 2 + - uid: 10900 + components: + - type: Transform + pos: -30.5,47.5 + parent: 2 + - uid: 10901 + components: + - type: Transform + pos: -29.5,47.5 + parent: 2 + - uid: 10902 + components: + - type: Transform + pos: -28.5,47.5 + parent: 2 + - uid: 10903 + components: + - type: Transform + pos: -27.5,47.5 + parent: 2 + - uid: 10904 + components: + - type: Transform + pos: -26.5,47.5 + parent: 2 + - uid: 10905 + components: + - type: Transform + pos: -25.5,47.5 + parent: 2 + - uid: 10906 + components: + - type: Transform + pos: -24.5,47.5 + parent: 2 + - uid: 10907 + components: + - type: Transform + pos: -13.5,47.5 + parent: 2 + - uid: 10908 + components: + - type: Transform + pos: -16.5,47.5 + parent: 2 + - uid: 10909 + components: + - type: Transform + pos: -17.5,47.5 + parent: 2 + - uid: 10910 + components: + - type: Transform + pos: -18.5,47.5 + parent: 2 + - uid: 10911 + components: + - type: Transform + pos: -19.5,47.5 + parent: 2 + - uid: 10912 + components: + - type: Transform + pos: -20.5,47.5 + parent: 2 + - uid: 10913 + components: + - type: Transform + pos: -20.5,43.5 + parent: 2 + - uid: 10914 + components: + - type: Transform + pos: -19.5,43.5 + parent: 2 + - uid: 10915 + components: + - type: Transform + pos: -18.5,43.5 + parent: 2 + - uid: 10916 + components: + - type: Transform + pos: -17.5,43.5 + parent: 2 + - uid: 10917 + components: + - type: Transform + pos: -16.5,43.5 + parent: 2 + - uid: 10918 + components: + - type: Transform + pos: -15.5,43.5 + parent: 2 + - uid: 10919 + components: + - type: Transform + pos: -14.5,43.5 + parent: 2 + - uid: 10920 + components: + - type: Transform + pos: -13.5,43.5 + parent: 2 + - uid: 10921 + components: + - type: Transform + pos: -13.5,41.5 + parent: 2 + - uid: 10922 + components: + - type: Transform + pos: -14.5,41.5 + parent: 2 + - uid: 10923 + components: + - type: Transform + pos: -15.5,41.5 + parent: 2 + - uid: 10924 + components: + - type: Transform + pos: -16.5,41.5 + parent: 2 + - uid: 10925 + components: + - type: Transform + pos: -17.5,41.5 + parent: 2 + - uid: 10926 + components: + - type: Transform + pos: -18.5,41.5 + parent: 2 + - uid: 10927 + components: + - type: Transform + pos: -19.5,41.5 + parent: 2 + - uid: 10928 + components: + - type: Transform + pos: -20.5,41.5 + parent: 2 + - uid: 10929 + components: + - type: Transform + pos: -20.5,39.5 + parent: 2 + - uid: 10930 + components: + - type: Transform + pos: -19.5,39.5 + parent: 2 + - uid: 10931 + components: + - type: Transform + pos: -18.5,39.5 + parent: 2 + - uid: 10932 + components: + - type: Transform + pos: -17.5,39.5 + parent: 2 + - uid: 10933 + components: + - type: Transform + pos: -16.5,39.5 + parent: 2 + - uid: 10934 + components: + - type: Transform + pos: -15.5,39.5 + parent: 2 + - uid: 10935 + components: + - type: Transform + pos: -14.5,39.5 + parent: 2 + - uid: 10936 + components: + - type: Transform + pos: -13.5,39.5 + parent: 2 + - uid: 10937 + components: + - type: Transform + pos: -13.5,37.5 + parent: 2 + - uid: 10938 + components: + - type: Transform + pos: -14.5,37.5 + parent: 2 + - uid: 10939 + components: + - type: Transform + pos: -15.5,37.5 + parent: 2 + - uid: 10940 + components: + - type: Transform + pos: -16.5,37.5 + parent: 2 + - uid: 10941 + components: + - type: Transform + pos: -17.5,37.5 + parent: 2 + - uid: 10942 + components: + - type: Transform + pos: -18.5,37.5 + parent: 2 + - uid: 10943 + components: + - type: Transform + pos: -19.5,37.5 + parent: 2 + - uid: 10944 + components: + - type: Transform + pos: -20.5,37.5 + parent: 2 + - uid: 10945 + components: + - type: Transform + pos: -20.5,35.5 + parent: 2 + - uid: 10946 + components: + - type: Transform + pos: -19.5,35.5 + parent: 2 + - uid: 10947 + components: + - type: Transform + pos: -18.5,35.5 + parent: 2 + - uid: 10948 + components: + - type: Transform + pos: -17.5,35.5 + parent: 2 + - uid: 10949 + components: + - type: Transform + pos: -16.5,35.5 + parent: 2 + - uid: 10950 + components: + - type: Transform + pos: -15.5,35.5 + parent: 2 + - uid: 10951 + components: + - type: Transform + pos: -14.5,35.5 + parent: 2 + - uid: 10952 + components: + - type: Transform + pos: -13.5,35.5 + parent: 2 + - uid: 10953 + components: + - type: Transform + pos: -13.5,33.5 + parent: 2 + - uid: 10954 + components: + - type: Transform + pos: -14.5,33.5 + parent: 2 + - uid: 10955 + components: + - type: Transform + pos: -15.5,33.5 + parent: 2 + - uid: 10956 + components: + - type: Transform + pos: -16.5,33.5 + parent: 2 + - uid: 10957 + components: + - type: Transform + pos: -17.5,33.5 + parent: 2 + - uid: 10958 + components: + - type: Transform + pos: -18.5,33.5 + parent: 2 + - uid: 10959 + components: + - type: Transform + pos: -19.5,33.5 + parent: 2 + - uid: 10960 + components: + - type: Transform + pos: -20.5,33.5 + parent: 2 + - uid: 10961 + components: + - type: Transform + pos: -20.5,31.5 + parent: 2 + - uid: 10962 + components: + - type: Transform + pos: -19.5,31.5 + parent: 2 + - uid: 10963 + components: + - type: Transform + pos: -18.5,31.5 + parent: 2 + - uid: 10964 + components: + - type: Transform + pos: -17.5,31.5 + parent: 2 + - uid: 10965 + components: + - type: Transform + pos: -16.5,31.5 + parent: 2 + - uid: 10966 + components: + - type: Transform + pos: -15.5,31.5 + parent: 2 + - uid: 10967 + components: + - type: Transform + pos: -14.5,31.5 + parent: 2 + - uid: 10968 + components: + - type: Transform + pos: -13.5,31.5 + parent: 2 + - uid: 10969 + components: + - type: Transform + pos: -14.5,29.5 + parent: 2 + - uid: 10970 + components: + - type: Transform + pos: -15.5,29.5 + parent: 2 + - uid: 10971 + components: + - type: Transform + pos: -16.5,29.5 + parent: 2 + - uid: 10972 + components: + - type: Transform + pos: -17.5,29.5 + parent: 2 + - uid: 10973 + components: + - type: Transform + pos: -18.5,29.5 + parent: 2 + - uid: 10974 + components: + - type: Transform + pos: -19.5,29.5 + parent: 2 + - uid: 10975 + components: + - type: Transform + pos: -20.5,29.5 + parent: 2 + - uid: 10977 + components: + - type: Transform + pos: -24.5,37.5 + parent: 2 + - uid: 10978 + components: + - type: Transform + pos: -25.5,37.5 + parent: 2 + - uid: 10979 + components: + - type: Transform + pos: -26.5,37.5 + parent: 2 + - uid: 10980 + components: + - type: Transform + pos: -27.5,37.5 + parent: 2 + - uid: 10981 + components: + - type: Transform + pos: -27.5,39.5 + parent: 2 + - uid: 10982 + components: + - type: Transform + pos: -26.5,39.5 + parent: 2 + - uid: 10983 + components: + - type: Transform + pos: -25.5,39.5 + parent: 2 + - uid: 10984 + components: + - type: Transform + pos: -24.5,39.5 + parent: 2 + - uid: 10985 + components: + - type: Transform + pos: -24.5,41.5 + parent: 2 + - uid: 10986 + components: + - type: Transform + pos: -25.5,41.5 + parent: 2 + - uid: 10987 + components: + - type: Transform + pos: -26.5,41.5 + parent: 2 + - uid: 10988 + components: + - type: Transform + pos: -27.5,41.5 + parent: 2 + - uid: 10989 + components: + - type: Transform + pos: -28.5,41.5 + parent: 2 + - uid: 10990 + components: + - type: Transform + pos: -29.5,41.5 + parent: 2 + - uid: 10991 + components: + - type: Transform + pos: -29.5,43.5 + parent: 2 + - uid: 10992 + components: + - type: Transform + pos: -28.5,43.5 + parent: 2 + - uid: 10993 + components: + - type: Transform + pos: -27.5,43.5 + parent: 2 + - uid: 10994 + components: + - type: Transform + pos: -26.5,43.5 + parent: 2 + - uid: 10995 + components: + - type: Transform + pos: -25.5,43.5 + parent: 2 + - uid: 10996 + components: + - type: Transform + pos: -24.5,43.5 + parent: 2 +- proto: SolarTracker + entities: + - uid: 9745 + components: + - type: Transform + pos: 36.5,-14.5 + parent: 2 + - uid: 9992 + components: + - type: Transform + pos: -32.5,-74.5 + parent: 2 + - uid: 10428 + components: + - type: Transform + pos: -97.5,-13.5 + parent: 2 + - uid: 10880 + components: + - type: Transform + pos: -22.5,48.5 + parent: 2 +- proto: SophicScribeSpawner + entities: + - uid: 5461 + components: + - type: Transform + pos: -41.5,-45.5 + parent: 2 +- proto: SpaceCash10 + entities: + - uid: 5488 + components: + - type: Transform + pos: -9.791661,9.757823 + parent: 2 + - uid: 5494 + components: + - type: Transform + pos: -9.418014,9.492336 + parent: 2 + - uid: 14408 + components: + - type: Transform + pos: -41.56439,-23.210388 + parent: 2 + - uid: 14409 + components: + - type: Transform + pos: -41.361263,-23.460388 + parent: 2 + - uid: 14412 + components: + - type: Transform + pos: -41.173763,-23.194763 + parent: 2 + - uid: 14497 + components: + - type: Transform + pos: 3.591283,-35.40916 + parent: 2 +- proto: SpaceCash100 + entities: + - uid: 13075 + components: + - type: Transform + pos: 0.56126785,-23.289867 + parent: 2 +- proto: SpaceTickSpawner + entities: + - uid: 15939 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 +- proto: SpaceVillainArcade + entities: + - uid: 66 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,35.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 8119 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 8120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,3.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 8123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,4.5 + parent: 2 + - type: SpamEmitSound + enabled: False +- proto: SpaceVillainArcadeFilled + entities: + - uid: 6667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-43.5 + parent: 2 + - type: SpamEmitSound + enabled: False +- proto: SpawnMobAlexander + entities: + - uid: 16257 + components: + - type: Transform + pos: -55.5,-50.5 + parent: 2 + - uid: 16258 + components: + - type: Transform + pos: -54.5,-51.5 + parent: 2 +- proto: SpawnMobBandito + entities: + - uid: 14213 + components: + - type: Transform + pos: -10.5,-41.5 + parent: 2 +- proto: SpawnMobBear + entities: + - uid: 11884 + components: + - type: Transform + pos: -61.5,33.5 + parent: 2 +- proto: SpawnMobButterfly + entities: + - uid: 2916 + components: + - type: Transform + pos: -28.5,3.5 + parent: 2 + - uid: 13526 + components: + - type: Transform + pos: -26.5,5.5 + parent: 2 + - uid: 13527 + components: + - type: Transform + pos: -28.5,5.5 + parent: 2 +- proto: SpawnMobCatFloppa + entities: + - uid: 13529 + components: + - type: Transform + pos: -40.5,9.5 + parent: 2 +- proto: SpawnMobCatRuntime + entities: + - uid: 14214 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 2 +- proto: SpawnMobCockroach + entities: + - uid: 9463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,9.5 + parent: 2 +- proto: SpawnMobCorgi + entities: + - uid: 16047 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 +- proto: SpawnMobDrone + entities: + - uid: 1621 + components: + - type: Transform + pos: -57.5,-12.5 + parent: 2 + - uid: 6394 + components: + - type: Transform + pos: -56.5,-13.5 + parent: 2 + - uid: 9443 + components: + - type: Transform + pos: -56.5,-12.5 + parent: 2 +- proto: SpawnMobFoxRenault + entities: + - uid: 14211 + components: + - type: Transform + pos: -16.5,9.5 + parent: 2 +- proto: SpawnMobGoat + entities: + - uid: 14836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,4.5 + parent: 2 +- proto: SpawnMobMcGriff + entities: + - uid: 13490 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 +- proto: SpawnMobMedibot + entities: + - uid: 13531 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 2 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 14835 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 2 +- proto: SpawnMobPossumMorty + entities: + - uid: 13530 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 +- proto: SpawnMobRaccoonMorticia + entities: + - uid: 13533 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 +- proto: SpawnMobSecDogLaika + entities: + - uid: 16223 + components: + - type: Transform + pos: 4.5,32.5 + parent: 2 +- proto: SpawnMobShiva + entities: + - uid: 11657 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 +- proto: SpawnMobSlothPaperwork + entities: + - uid: 13528 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 +- proto: SpawnMobWalter + entities: + - uid: 13532 + components: + - type: Transform + pos: -34.5,-4.5 + parent: 2 +- proto: SpawnPointAtmos + entities: + - uid: 967 + components: + - type: Transform + pos: -47.5,27.5 + parent: 2 + - uid: 973 + components: + - type: Transform + pos: -49.5,22.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: -41.5,21.5 + parent: 2 + - uid: 14732 + components: + - type: Transform + pos: -53.5,31.5 + parent: 2 +- proto: SpawnPointBartender + entities: + - uid: 1418 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 + - uid: 13421 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 13422 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 2 +- proto: SpawnPointBorg + entities: + - uid: 920 + components: + - type: Transform + pos: -24.5,-39.5 + parent: 2 + - uid: 11274 + components: + - type: Transform + pos: -26.5,-37.5 + parent: 2 +- proto: SpawnPointBotanist + entities: + - uid: 13427 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 2 + - uid: 13428 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 2 + - uid: 13429 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - uid: 13430 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 +- proto: SpawnPointBoxer + entities: + - uid: 1579 + components: + - type: Transform + pos: -16.5,-25.5 + parent: 2 + - uid: 13389 + components: + - type: Transform + pos: -18.5,-21.5 + parent: 2 + - uid: 13392 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 2 +- proto: SpawnPointBrigmedic + entities: + - uid: 5715 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 9587 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 12551 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 +- proto: SpawnPointCaptain + entities: + - uid: 13489 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 +- proto: SpawnPointCargoTechnician + entities: + - uid: 13446 + components: + - type: Transform + pos: 3.5,-31.5 + parent: 2 + - uid: 13447 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 2 + - uid: 13448 + components: + - type: Transform + pos: 9.5,-32.5 + parent: 2 + - uid: 13511 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 2 +- proto: SpawnPointChaplain + entities: + - uid: 13477 + components: + - type: Transform + pos: -36.5,-37.5 + parent: 2 + - uid: 13478 + components: + - type: Transform + pos: -42.5,-41.5 + parent: 2 + - uid: 13479 + components: + - type: Transform + pos: -37.5,-45.5 + parent: 2 + - uid: 13480 + components: + - type: Transform + pos: -42.5,-46.5 + parent: 2 +- proto: SpawnPointChef + entities: + - uid: 13504 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 2 + - uid: 13505 + components: + - type: Transform + pos: -18.5,-14.5 + parent: 2 +- proto: SpawnPointChemist + entities: + - uid: 13507 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 2 + - uid: 13508 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 +- proto: SpawnPointChiefEngineer + entities: + - uid: 13364 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 13462 + components: + - type: Transform + pos: -10.5,11.5 + parent: 2 +- proto: SpawnPointClown + entities: + - uid: 13431 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 2 + - uid: 13433 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 +- proto: SpawnPointDetective + entities: + - uid: 13449 + components: + - type: Transform + pos: -56.5,-40.5 + parent: 2 + - uid: 13450 + components: + - type: Transform + pos: -59.5,-39.5 + parent: 2 +- proto: SpawnPointForensicMantis + entities: + - uid: 934 + components: + - type: Transform + pos: -48.5,-20.5 + parent: 2 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 13432 + components: + - type: Transform + pos: -10.5,8.5 + parent: 2 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 13464 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 +- proto: SpawnPointHobo + entities: + - uid: 1767 + components: + - type: Transform + pos: -78.5,-4.5 + parent: 2 +- proto: SpawnPointJanitor + entities: + - uid: 13494 + components: + - type: Transform + pos: 19.5,16.5 + parent: 2 + - uid: 13495 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 +- proto: SpawnPointLawyer + entities: + - uid: 13509 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 2 + - uid: 13510 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 +- proto: SpawnPointLibrarian + entities: + - uid: 13424 + components: + - type: Transform + pos: -27.5,-31.5 + parent: 2 + - uid: 13425 + components: + - type: Transform + pos: -29.5,-28.5 + parent: 2 + - uid: 13426 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 2 +- proto: SpawnPointMaid + entities: + - uid: 1518 + components: + - type: Transform + pos: -11.5,14.5 + parent: 2 + - uid: 1758 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 + - uid: 1775 + components: + - type: Transform + pos: -15.5,18.5 + parent: 2 +- proto: SpawnPointMailCarrier + entities: + - uid: 5625 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 2 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 13438 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 2 + - uid: 13439 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - uid: 13440 + components: + - type: Transform + pos: -32.5,-20.5 + parent: 2 + - uid: 13441 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 2 + - uid: 13442 + components: + - type: Transform + pos: -29.5,-11.5 + parent: 2 + - uid: 13443 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 2 + - uid: 13444 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 2 + - uid: 13445 + components: + - type: Transform + pos: -39.5,-11.5 + parent: 2 +- proto: SpawnPointMedicalIntern + entities: + - uid: 13459 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 2 + - uid: 13460 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 2 + - uid: 13461 + components: + - type: Transform + pos: -40.5,-10.5 + parent: 2 +- proto: SpawnPointMime + entities: + - uid: 13434 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - uid: 13435 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 +- proto: SpawnPointMusician + entities: + - uid: 13465 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 2 + - uid: 13466 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 2 +- proto: SpawnPointObserver + entities: + - uid: 13488 + components: + - type: Transform + pos: -13.5,18.5 + parent: 2 +- proto: SpawnPointParamedic + entities: + - uid: 7000 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 2 + - uid: 13413 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 + - uid: 13414 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - uid: 13415 + components: + - type: Transform + pos: -42.5,-10.5 + parent: 2 + - uid: 13416 + components: + - type: Transform + pos: -31.5,-10.5 + parent: 2 + - uid: 13417 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 2 +- proto: SpawnPointPassenger + entities: + - uid: 13512 + components: + - type: Transform + pos: -59.5,-5.5 + parent: 2 + - uid: 13513 + components: + - type: Transform + pos: -60.5,-8.5 + parent: 2 + - uid: 13514 + components: + - type: Transform + pos: -62.5,-5.5 + parent: 2 + - uid: 13515 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - uid: 13518 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 2 + - uid: 13519 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 2 + - uid: 13520 + components: + - type: Transform + pos: -17.5,-26.5 + parent: 2 + - uid: 13521 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 2 + - uid: 13522 + components: + - type: Transform + pos: -61.5,-3.5 + parent: 2 + - uid: 13523 + components: + - type: Transform + pos: -22.5,18.5 + parent: 2 + - uid: 13524 + components: + - type: Transform + pos: -24.5,17.5 + parent: 2 + - uid: 13525 + components: + - type: Transform + pos: -27.5,18.5 + parent: 2 + - uid: 13535 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 2 +- proto: SpawnPointPrisoner + entities: + - uid: 5934 + components: + - type: Transform + pos: 0.5,39.5 + parent: 2 + - uid: 15812 + components: + - type: Transform + pos: 2.5,38.5 + parent: 2 + - uid: 15813 + components: + - type: Transform + pos: 6.5,38.5 + parent: 2 + - uid: 15814 + components: + - type: Transform + pos: 5.5,40.5 + parent: 2 + - uid: 15815 + components: + - type: Transform + pos: 9.5,37.5 + parent: 2 +- proto: SpawnPointPrisonGuard + entities: + - uid: 15826 + components: + - type: Transform + pos: 2.5,33.5 + parent: 2 +- proto: SpawnPointPsychologist + entities: + - uid: 13473 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 2 + - uid: 13474 + components: + - type: Transform + pos: -43.5,-4.5 + parent: 2 +- proto: SpawnPointQuartermaster + entities: + - uid: 13463 + components: + - type: Transform + pos: -9.5,8.5 + parent: 2 +- proto: SpawnPointReporter + entities: + - uid: 13475 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - uid: 13476 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 +- proto: SpawnPointResearchAssistant + entities: + - uid: 13412 + components: + - type: Transform + pos: -20.5,-43.5 + parent: 2 + - uid: 16055 + components: + - type: Transform + pos: -14.5,-46.5 + parent: 2 +- proto: SpawnPointResearchDirector + entities: + - uid: 13467 + components: + - type: Transform + pos: -8.5,8.5 + parent: 2 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 6666 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 2 + - uid: 13497 + components: + - type: Transform + pos: -2.5,-41.5 + parent: 2 + - uid: 13500 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 2 + - uid: 13501 + components: + - type: Transform + pos: -3.5,-38.5 + parent: 2 +- proto: SpawnPointScientist + entities: + - uid: 13498 + components: + - type: Transform + pos: -20.5,-42.5 + parent: 2 + - uid: 13499 + components: + - type: Transform + pos: -25.5,-41.5 + parent: 2 + - uid: 13502 + components: + - type: Transform + pos: -15.5,-45.5 + parent: 2 + - uid: 13503 + components: + - type: Transform + pos: -14.5,-63.5 + parent: 2 +- proto: SpawnPointSecurityCadet + entities: + - uid: 14798 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - uid: 14799 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 13468 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 13469 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 13470 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 13471 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 13472 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 +- proto: SpawnPointSeniorEngineer + entities: + - uid: 13394 + components: + - type: Transform + pos: -35.5,4.5 + parent: 2 + - uid: 13395 + components: + - type: Transform + pos: -38.5,3.5 + parent: 2 + - uid: 13396 + components: + - type: Transform + pos: -46.5,3.5 + parent: 2 + - uid: 13397 + components: + - type: Transform + pos: -43.5,8.5 + parent: 2 + - uid: 13398 + components: + - type: Transform + pos: -40.5,14.5 + parent: 2 +- proto: SpawnPointSeniorOfficer + entities: + - uid: 13404 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 13405 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 + - uid: 13406 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 +- proto: SpawnPointSeniorPhysician + entities: + - uid: 13408 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 + - uid: 13409 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 13410 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 2 +- proto: SpawnPointSeniorResearcher + entities: + - uid: 13399 + components: + - type: Transform + pos: -19.5,-41.5 + parent: 2 + - uid: 13400 + components: + - type: Transform + pos: -13.5,-45.5 + parent: 2 + - uid: 13401 + components: + - type: Transform + pos: -15.5,-52.5 + parent: 2 + - uid: 13402 + components: + - type: Transform + pos: -15.5,-64.5 + parent: 2 + - uid: 13403 + components: + - type: Transform + pos: -10.5,-61.5 + parent: 2 +- proto: SpawnPointServiceWorker + entities: + - uid: 13481 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 2 + - uid: 13482 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - uid: 13483 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 2 + - uid: 13485 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 2 + - uid: 16008 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 +- proto: SpawnPointStationEngineer + entities: + - uid: 13451 + components: + - type: Transform + pos: -34.5,4.5 + parent: 2 + - uid: 13452 + components: + - type: Transform + pos: -42.5,8.5 + parent: 2 + - uid: 13453 + components: + - type: Transform + pos: -42.5,3.5 + parent: 2 + - uid: 13454 + components: + - type: Transform + pos: -46.5,4.5 + parent: 2 + - uid: 13455 + components: + - type: Transform + pos: -46.5,2.5 + parent: 2 + - uid: 13456 + components: + - type: Transform + pos: -45.5,4.5 + parent: 2 + - uid: 13458 + components: + - type: Transform + pos: -44.5,12.5 + parent: 2 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 13491 + components: + - type: Transform + pos: -42.5,7.5 + parent: 2 + - uid: 13492 + components: + - type: Transform + pos: -45.5,3.5 + parent: 2 + - uid: 13493 + components: + - type: Transform + pos: -37.5,4.5 + parent: 2 +- proto: SpawnPointWarden + entities: + - uid: 13486 + components: + - type: Transform + pos: 8.5,11.5 + parent: 2 + - uid: 13487 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 +- proto: SpiderWeb + entities: + - uid: 16443 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 16444 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - uid: 16445 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - uid: 16447 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 2 + - uid: 16448 + components: + - type: Transform + pos: 18.5,2.5 + parent: 2 + - uid: 16449 + components: + - type: Transform + pos: 16.5,14.5 + parent: 2 + - uid: 16450 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - uid: 16451 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 16452 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 16453 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 16454 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 16455 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 16456 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - uid: 16457 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 16458 + components: + - type: Transform + pos: 0.5,38.5 + parent: 2 + - uid: 16459 + components: + - type: Transform + pos: 7.5,40.5 + parent: 2 + - uid: 16460 + components: + - type: Transform + pos: 7.5,25.5 + parent: 2 + - uid: 16461 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 16462 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 16463 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 + - uid: 16464 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 + - uid: 16465 + components: + - type: Transform + pos: -15.5,15.5 + parent: 2 + - uid: 16466 + components: + - type: Transform + pos: -9.5,19.5 + parent: 2 + - uid: 16467 + components: + - type: Transform + pos: -19.5,19.5 + parent: 2 + - uid: 16468 + components: + - type: Transform + pos: -26.5,17.5 + parent: 2 + - uid: 16469 + components: + - type: Transform + pos: -23.5,7.5 + parent: 2 + - uid: 16470 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 16471 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 2 + - uid: 16472 + components: + - type: Transform + pos: -17.5,-14.5 + parent: 2 + - uid: 16473 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 + - uid: 16474 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 2 + - uid: 16475 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 2 + - uid: 16476 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 2 + - uid: 16477 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 + - uid: 16478 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 2 + - uid: 16479 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 2 + - uid: 16480 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 + - uid: 16481 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 16482 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 2 + - uid: 16483 + components: + - type: Transform + pos: 9.5,-36.5 + parent: 2 + - uid: 16484 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 2 + - uid: 16485 + components: + - type: Transform + pos: -3.5,-41.5 + parent: 2 + - uid: 16486 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 2 + - uid: 16487 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 2 + - uid: 16488 + components: + - type: Transform + pos: -15.5,-56.5 + parent: 2 + - uid: 16489 + components: + - type: Transform + pos: -12.5,-68.5 + parent: 2 + - uid: 16490 + components: + - type: Transform + pos: -27.5,-46.5 + parent: 2 + - uid: 16491 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 2 + - uid: 16492 + components: + - type: Transform + pos: -4.5,-26.5 + parent: 2 + - uid: 16493 + components: + - type: Transform + pos: -8.5,-26.5 + parent: 2 + - uid: 16494 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 2 + - uid: 16495 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 2 + - uid: 16496 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 2 + - uid: 16497 + components: + - type: Transform + pos: -31.5,-38.5 + parent: 2 + - uid: 16498 + components: + - type: Transform + pos: -33.5,-33.5 + parent: 2 + - uid: 16499 + components: + - type: Transform + pos: -28.5,-29.5 + parent: 2 + - uid: 16500 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 2 + - uid: 16501 + components: + - type: Transform + pos: -41.5,-27.5 + parent: 2 + - uid: 16502 + components: + - type: Transform + pos: -44.5,-37.5 + parent: 2 + - uid: 16503 + components: + - type: Transform + pos: -40.5,-46.5 + parent: 2 + - uid: 16504 + components: + - type: Transform + pos: -54.5,-39.5 + parent: 2 + - uid: 16505 + components: + - type: Transform + pos: -49.5,-39.5 + parent: 2 + - uid: 16506 + components: + - type: Transform + pos: -48.5,-47.5 + parent: 2 + - uid: 16507 + components: + - type: Transform + pos: -34.5,-46.5 + parent: 2 + - uid: 16508 + components: + - type: Transform + pos: -53.5,-52.5 + parent: 2 + - uid: 16509 + components: + - type: Transform + pos: -52.5,-56.5 + parent: 2 + - uid: 16510 + components: + - type: Transform + pos: -56.5,-39.5 + parent: 2 + - uid: 16511 + components: + - type: Transform + pos: -62.5,-33.5 + parent: 2 + - uid: 16512 + components: + - type: Transform + pos: -54.5,-29.5 + parent: 2 + - uid: 16513 + components: + - type: Transform + pos: -48.5,-25.5 + parent: 2 + - uid: 16514 + components: + - type: Transform + pos: -47.5,-17.5 + parent: 2 + - uid: 16515 + components: + - type: Transform + pos: -45.5,-11.5 + parent: 2 + - uid: 16516 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 16517 + components: + - type: Transform + pos: -31.5,-22.5 + parent: 2 + - uid: 16518 + components: + - type: Transform + pos: -27.5,-19.5 + parent: 2 + - uid: 16519 + components: + - type: Transform + pos: -43.5,0.5 + parent: 2 + - uid: 16520 + components: + - type: Transform + pos: -37.5,3.5 + parent: 2 + - uid: 16521 + components: + - type: Transform + pos: -47.5,9.5 + parent: 2 + - uid: 16522 + components: + - type: Transform + pos: -39.5,17.5 + parent: 2 + - uid: 16523 + components: + - type: Transform + pos: -33.5,17.5 + parent: 2 + - uid: 16524 + components: + - type: Transform + pos: -33.5,17.5 + parent: 2 + - uid: 16525 + components: + - type: Transform + pos: -51.5,20.5 + parent: 2 + - uid: 16526 + components: + - type: Transform + pos: -53.5,27.5 + parent: 2 + - uid: 16527 + components: + - type: Transform + pos: -49.5,34.5 + parent: 2 + - uid: 16528 + components: + - type: Transform + pos: -67.5,31.5 + parent: 2 + - uid: 16529 + components: + - type: Transform + pos: -74.5,28.5 + parent: 2 + - uid: 16530 + components: + - type: Transform + pos: -50.5,7.5 + parent: 2 + - uid: 16531 + components: + - type: Transform + pos: -62.5,-3.5 + parent: 2 + - uid: 16532 + components: + - type: Transform + pos: -57.5,-10.5 + parent: 2 + - uid: 16533 + components: + - type: Transform + pos: -58.5,-17.5 + parent: 2 + - uid: 16534 + components: + - type: Transform + pos: -69.5,-5.5 + parent: 2 + - uid: 16535 + components: + - type: Transform + pos: -73.5,0.5 + parent: 2 + - uid: 16536 + components: + - type: Transform + pos: -81.5,2.5 + parent: 2 + - uid: 16537 + components: + - type: Transform + pos: -54.5,-1.5 + parent: 2 + - uid: 16555 + components: + - type: Transform + pos: -27.5,3.5 + parent: 2 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 9075 + components: + - type: Transform + pos: 16.828882,15.701771 + parent: 2 +- proto: SprayBottleWater + entities: + - uid: 139 + components: + - type: Transform + pos: 1.274735,-9.417248 + parent: 2 + - uid: 9193 + components: + - type: Transform + pos: 1.5329185,-9.2718525 + parent: 2 +- proto: StasisBed + entities: + - uid: 4365 + components: + - type: Transform + pos: -35.5,-17.5 + parent: 2 + - uid: 9493 + components: + - type: Transform + pos: -35.5,-18.5 + parent: 2 + - uid: 12817 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 +- proto: StationMap + entities: + - uid: 793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,-2.5 + parent: 2 + - uid: 12958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,7.5 + parent: 2 + - uid: 13028 + components: + - type: Transform + pos: 11.5,1.5 + parent: 2 + - uid: 13029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,13.5 + parent: 2 + - uid: 13030 + components: + - type: Transform + pos: -25.5,1.5 + parent: 2 + - uid: 13032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-22.5 + parent: 2 + - uid: 13033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-36.5 + parent: 2 +- proto: Stool + entities: + - uid: 8011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-14.5 + parent: 2 +- proto: StoolBar + entities: + - uid: 1871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-39.5 + parent: 2 + - uid: 4801 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 + - uid: 4814 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - uid: 6629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 2 + - uid: 6630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-8.5 + parent: 2 + - uid: 6631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-8.5 + parent: 2 + - uid: 6632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 2 + - uid: 6633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 2 + - uid: 6634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 2 + - uid: 6635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 2 + - uid: 9412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-40.5 + parent: 2 + - uid: 9413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-42.5 + parent: 2 +- proto: StorageCanister + entities: + - uid: 7193 + components: + - type: Transform + pos: -13.5,-65.5 + parent: 2 + - uid: 14544 + components: + - type: Transform + pos: -40.5,32.5 + parent: 2 + - uid: 14644 + components: + - type: Transform + pos: -46.5,19.5 + parent: 2 + - uid: 14645 + components: + - type: Transform + pos: -45.5,19.5 + parent: 2 + - uid: 14648 + components: + - type: Transform + pos: -47.5,19.5 + parent: 2 + - uid: 14659 + components: + - type: Transform + pos: -55.5,26.5 + parent: 2 + - uid: 14660 + components: + - type: Transform + pos: -55.5,25.5 + parent: 2 + - uid: 15090 + components: + - type: Transform + pos: -76.5,25.5 + parent: 2 + - uid: 15127 + components: + - type: Transform + pos: -76.5,24.5 + parent: 2 +- proto: StrangePill + entities: + - uid: 16269 + components: + - type: Transform + pos: -55.238808,-54.469334 + parent: 2 + - uid: 16271 + components: + - type: Transform + pos: -55.06654,-53.270096 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 2592 + components: + - type: Transform + pos: -19.5,9.5 + parent: 2 + - uid: 2596 + components: + - type: Transform + pos: -65.5,-36.5 + parent: 2 + - uid: 2597 + components: + - type: Transform + pos: -46.5,-46.5 + parent: 2 + - uid: 2598 + components: + - type: Transform + pos: -26.5,-48.5 + parent: 2 + - uid: 2599 + components: + - type: Transform + pos: -0.5,-32.5 + parent: 2 + - uid: 4923 + components: + - type: Transform + pos: -36.5,7.5 + parent: 2 + - uid: 5722 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 11500 + components: + - type: Transform + pos: -94.5,-34.5 + parent: 2 + - uid: 14626 + components: + - type: Transform + pos: -37.5,15.5 + parent: 2 + - uid: 15076 + components: + - type: Transform + pos: -67.5,28.5 + parent: 2 +- proto: SubstationBasicEmpty + entities: + - uid: 2595 + components: + - type: Transform + pos: -41.5,-20.5 + parent: 2 +- proto: SubstationMachineCircuitboard + entities: + - uid: 14464 + components: + - type: Transform + pos: -54.502,3.199474 + parent: 2 +- proto: SuitStorageBase + entities: + - uid: 7111 + components: + - type: Transform + pos: -16.5,-53.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7120 + - 7114 + - uid: 7112 + components: + - type: Transform + pos: -16.5,-52.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7115 + - 7121 +- proto: SuitStorageEVAPrisoner + entities: + - uid: 16143 + components: + - type: Transform + pos: 20.5,31.5 + parent: 2 + - uid: 16146 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 + - uid: 16147 + components: + - type: Transform + pos: 20.5,29.5 + parent: 2 +- proto: Supermatter + entities: + - uid: 2077 + components: + - type: Transform + pos: -72.5,33.5 + parent: 2 + - type: Supermatter + zapTimer: 1E+27 + activated: True +- proto: SurveillanceCameraCommand + entities: + - uid: 12390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,13.5 + parent: 2 + - type: SurveillanceCamera + id: Генератор Гравитации + - uid: 12424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 2 + - type: SurveillanceCamera + id: Кабинет КМ + - uid: 12425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,4.5 + parent: 2 + - type: SurveillanceCamera + id: Кабинет ХоПа + - uid: 12426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,5.5 + parent: 2 + - type: SurveillanceCamera + id: Стойка ХоПа + - uid: 12427 + components: + - type: Transform + pos: -9.5,7.5 + parent: 2 + - type: SurveillanceCamera + id: Конференц-зал + - uid: 12428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,10.5 + parent: 2 + - type: SurveillanceCamera + id: Кабинет капитана + - uid: 12429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,18.5 + parent: 2 + - type: SurveillanceCamera + id: Кабинет ХоСа + - uid: 12430 + components: + - type: Transform + pos: -11.5,17.5 + parent: 2 + - type: SurveillanceCamera + id: Мостик + - uid: 12431 + components: + - type: Transform + pos: -30.5,4.5 + parent: 2 + - type: SurveillanceCamera + id: Кабинет СЕ + - uid: 12432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-6.5 + parent: 2 + - type: SurveillanceCamera + id: Кабинет СМО + - uid: 12433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-42.5 + parent: 2 + - type: SurveillanceCamera + id: Кабинет РД + - uid: 12459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-34.5 + parent: 2 + - type: SurveillanceCamera + id: Телекоммуникация + - uid: 12460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,-33.5 + parent: 2 + - type: SurveillanceCamera + id: ИИ + - uid: 12461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,-35.5 + parent: 2 + - type: SurveillanceCamera + id: Ядро ИИ + - uid: 13011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,14.5 + parent: 2 + - type: SurveillanceCamera + id: Хранилище +- proto: SurveillanceCameraEngineering + entities: + - uid: 12415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,10.5 + parent: 2 + - type: SurveillanceCamera + id: СМЕСы + - uid: 12416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,15.5 + parent: 2 + - type: SurveillanceCamera + id: ДАМ + - uid: 12417 + components: + - type: Transform + pos: -40.5,7.5 + parent: 2 + - type: SurveillanceCamera + id: 'Инженерный ' + - uid: 12420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,4.5 + parent: 2 + - type: SurveillanceCamera + id: Стойка + - uid: 14707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,21.5 + parent: 2 + - type: SurveillanceCamera + id: Атмос - 1 + - uid: 14709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,30.5 + parent: 2 + - type: SurveillanceCamera + id: Атмос - 2 + - uid: 14713 + components: + - type: Transform + pos: -41.5,20.5 + parent: 2 + - type: SurveillanceCamera + id: Вход Атмоса + - uid: 14715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,29.5 + parent: 2 + - type: SurveillanceCamera + id: Атмос - 3 + - uid: 15222 + components: + - type: Transform + pos: -73.5,28.5 + parent: 2 + - type: SurveillanceCamera + id: Суперматерия - 1 + - uid: 15545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,37.5 + parent: 2 + - type: SurveillanceCamera + id: Суперматерия - 2 +- proto: SurveillanceCameraGeneral + entities: + - uid: 5763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-33.5 + parent: 2 + - type: SurveillanceCamera + id: РНД + - uid: 5896 + components: + - type: Transform + pos: -41.5,-31.5 + parent: 2 + - type: SurveillanceCamera + id: Туалет + - uid: 6724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 2 + - uid: 11959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,3.5 + parent: 2 + - type: SurveillanceCamera + id: Отбытие + - uid: 12999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-26.5 + parent: 2 + - type: SurveillanceCamera + id: Дормы + - uid: 13000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-19.5 + parent: 2 + - type: SurveillanceCamera + id: Криосон + - uid: 13001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-33.5 + parent: 2 + - type: SurveillanceCamera + id: Утилизаторы + - uid: 13002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-25.5 + parent: 2 + - type: SurveillanceCamera + id: Снабжение + - uid: 13003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-22.5 + parent: 2 + - type: SurveillanceCamera + id: Бассейн + - uid: 13005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-25.5 + parent: 2 + - type: SurveillanceCamera + id: Ринг + - uid: 13006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 2 + - type: SurveillanceCamera + id: Суд + - uid: 13007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 2 + - type: SurveillanceCamera + id: Бриг + - uid: 13008 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 2 + - type: SurveillanceCamera + id: Стойка ХоПа + - uid: 13009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-2.5 + parent: 2 + - type: SurveillanceCamera + id: Медицинский + - uid: 13010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,6.5 + parent: 2 + - type: SurveillanceCamera + id: Зоопарк + - uid: 13012 + components: + - type: Transform + pos: -22.5,17.5 + parent: 2 + - type: SurveillanceCamera + id: Склад инструментов + - uid: 13013 + components: + - type: Transform + pos: -38.5,-1.5 + parent: 2 + - type: SurveillanceCamera + id: Инженерный + - uid: 13014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-5.5 + parent: 2 + - type: SurveillanceCamera + id: Гардеробная + - uid: 13015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,0.5 + parent: 2 + - type: SurveillanceCamera + id: Коридор отбытия + - uid: 13016 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 + - type: SurveillanceCamera + id: Прибытие 1 + - uid: 13017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,12.5 + parent: 2 + - type: SurveillanceCamera + id: Прибытие 2 + - uid: 13018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,14.5 + parent: 2 + - type: SurveillanceCamera + id: Прибытие 3 + - uid: 13021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,5.5 + parent: 2 + - type: SurveillanceCamera + id: Аркады + - uid: 15971 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 + - type: SurveillanceCamera + id: Раздевалка общей камеры +- proto: SurveillanceCameraMedical + entities: + - uid: 5029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-15.5 + parent: 2 + - type: SurveillanceCamera + id: Вирусология + - uid: 6940 + components: + - type: Transform + pos: -46.5,-15.5 + parent: 2 + - type: SurveillanceCamera + id: Клонирование + - uid: 12434 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 2 + - type: SurveillanceCamera + id: Склад медикаментов + - uid: 12435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-9.5 + parent: 2 + - type: SurveillanceCamera + id: Холл + - uid: 12436 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 2 + - type: SurveillanceCamera + id: 'Медицинский ' + - uid: 12437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-4.5 + parent: 2 + - type: SurveillanceCamera + id: Дурдом + - uid: 12438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-14.5 + parent: 2 + - uid: 12439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-5.5 + parent: 2 + - type: SurveillanceCamera + id: Криогеника + - uid: 12440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-3.5 + parent: 2 + - type: SurveillanceCamera + id: Химия + - uid: 12470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-17.5 + parent: 2 + - type: SurveillanceCamera + id: Палаты +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 11506 + components: + - type: Transform + pos: -89.5,-32.5 + parent: 2 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 11508 + components: + - type: Transform + pos: -92.5,-31.5 + parent: 2 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 11501 + components: + - type: Transform + pos: -92.5,-37.5 + parent: 2 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 11502 + components: + - type: Transform + pos: -89.5,-31.5 + parent: 2 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 11505 + components: + - type: Transform + pos: -89.5,-37.5 + parent: 2 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 11503 + components: + - type: Transform + pos: -91.5,-37.5 + parent: 2 +- proto: SurveillanceCameraRouterService + entities: + - uid: 11504 + components: + - type: Transform + pos: -89.5,-36.5 + parent: 2 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 11507 + components: + - type: Transform + pos: -91.5,-31.5 + parent: 2 +- proto: SurveillanceCameraScience + entities: + - uid: 12441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-40.5 + parent: 2 + - type: SurveillanceCamera + id: Стойка + - uid: 12442 + components: + - type: Transform + pos: -11.5,-46.5 + parent: 2 + - type: SurveillanceCamera + id: Научный + - uid: 12443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-39.5 + parent: 2 + - type: SurveillanceCamera + id: Робототехника + - uid: 12444 + components: + - type: Transform + pos: -13.5,-68.5 + parent: 2 + - type: SurveillanceCamera + id: Ксено-археология + - uid: 12445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-65.5 + parent: 2 + - type: SurveillanceCamera + id: Генератор Аномалий +- proto: SurveillanceCameraSecurity + entities: + - uid: 1833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-6.5 + parent: 2 + - type: SurveillanceCamera + id: Пост - отбытие + - uid: 12446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-18.5 + parent: 2 + - type: SurveillanceCamera + id: Пост сб + - uid: 12447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 2 + - type: SurveillanceCamera + id: Вход брига + - uid: 12448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,13.5 + parent: 2 + - type: SurveillanceCamera + id: Бриг + - uid: 12456 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - type: SurveillanceCamera + id: Офис юриста + - uid: 12462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-38.5 + parent: 2 + - type: SurveillanceCamera + id: Кабинет детектива + - uid: 12466 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 + - type: SurveillanceCamera + id: Кабинет смотрителя + - uid: 15054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,17.5 + parent: 2 + - uid: 15970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,42.5 + parent: 2 + - type: SurveillanceCamera + id: Общая камера +- proto: SurveillanceCameraService + entities: + - uid: 12452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-12.5 + parent: 2 + - type: SurveillanceCamera + id: Кухня + - uid: 12453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-3.5 + parent: 2 + - type: SurveillanceCamera + id: Стойка бармена + - uid: 12454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 2 + - type: SurveillanceCamera + id: Каюта бармена + - uid: 12455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 2 + - type: SurveillanceCamera + id: Бар + - uid: 12457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 2 + - type: SurveillanceCamera + id: Театр + - uid: 12463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-37.5 + parent: 2 + - type: SurveillanceCamera + id: Келья + - uid: 12464 + components: + - type: Transform + pos: -37.5,-46.5 + parent: 2 + - type: SurveillanceCamera + id: Церковный морг + - uid: 12465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-42.5 + parent: 2 + - type: SurveillanceCamera + id: Церковь + - uid: 12468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-8.5 + parent: 2 + - type: SurveillanceCamera + id: Ботаника + - uid: 12998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-27.5 + parent: 2 + - type: SurveillanceCamera + id: Библиотека + - uid: 13019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-3.5 + parent: 2 + - type: SurveillanceCamera + id: Репортерская + - uid: 13020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 2 + - type: SurveillanceCamera + id: Уборщик +- proto: SurveillanceCameraSupply + entities: + - uid: 12421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-24.5 + parent: 2 + - type: SurveillanceCamera + id: Снабжение + - uid: 12422 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 2 + - type: SurveillanceCamera + id: Зона грузчиков + - uid: 12423 + components: + - type: Transform + pos: 7.5,-33.5 + parent: 2 + - type: SurveillanceCamera + id: Склад снабжения + - uid: 12467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-42.5 + parent: 2 + - type: SurveillanceCamera + id: Утилизаторская +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 10749 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 +- proto: SurveillanceWirelessCameraAnchoredEntertainment + entities: + - uid: 9030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-5.5 + parent: 2 +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 11509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 2 +- proto: SynthesizerInstrument + entities: + - uid: 8988 + components: + - type: Transform + pos: 8.574146,-18.037113 + parent: 2 +- proto: Syringe + entities: + - uid: 13209 + components: + - type: Transform + pos: -37.572296,-6.2624383 + parent: 2 + - uid: 16084 + components: + - type: Transform + pos: 14.548028,28.64328 + parent: 2 + - uid: 16261 + components: + - type: Transform + pos: -54.669083,-52.619858 + parent: 2 + - uid: 16272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.43475,-53.641785 + parent: 2 +- proto: SyringeIpecac + entities: + - uid: 12891 + components: + - type: Transform + pos: -42.534622,-16.29866 + parent: 2 +- proto: Table + entities: + - uid: 999 + components: + - type: Transform + pos: 4.5,42.5 + parent: 2 + - uid: 1203 + components: + - type: Transform + pos: -20.5,-39.5 + parent: 2 + - uid: 1459 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 2 + - uid: 1478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-32.5 + parent: 2 + - uid: 1697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-32.5 + parent: 2 + - uid: 2533 + components: + - type: Transform + pos: -0.5,37.5 + parent: 2 + - uid: 5442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,42.5 + parent: 2 + - uid: 6362 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 6469 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 6470 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 6481 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 2 + - uid: 6515 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 2 + - uid: 6715 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 + - uid: 6874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 2 + - uid: 7047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-41.5 + parent: 2 + - uid: 7048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-42.5 + parent: 2 + - uid: 7049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-41.5 + parent: 2 + - uid: 7071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-25.5 + parent: 2 + - uid: 7107 + components: + - type: Transform + pos: -4.5,-41.5 + parent: 2 + - uid: 8102 + components: + - type: Transform + pos: -21.5,19.5 + parent: 2 + - uid: 8103 + components: + - type: Transform + pos: -21.5,18.5 + parent: 2 + - uid: 8104 + components: + - type: Transform + pos: -22.5,19.5 + parent: 2 + - uid: 8105 + components: + - type: Transform + pos: -23.5,19.5 + parent: 2 + - uid: 8122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,2.5 + parent: 2 + - uid: 8886 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 2 + - uid: 8921 + components: + - type: Transform + pos: -16.5,-28.5 + parent: 2 + - uid: 8922 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 2 + - uid: 8945 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 2 + - uid: 8948 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 2 + - uid: 8958 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 2 + - uid: 9515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-48.5 + parent: 2 + - uid: 9610 + components: + - type: Transform + pos: -40.5,-52.5 + parent: 2 + - uid: 11517 + components: + - type: Transform + pos: 4.5,41.5 + parent: 2 + - uid: 11581 + components: + - type: Transform + pos: -0.5,36.5 + parent: 2 + - uid: 11599 + components: + - type: Transform + pos: 12.5,38.5 + parent: 2 + - uid: 11602 + components: + - type: Transform + pos: 12.5,39.5 + parent: 2 + - uid: 11934 + components: + - type: Transform + pos: -61.5,-14.5 + parent: 2 + - uid: 15285 + components: + - type: Transform + pos: -0.5,38.5 + parent: 2 + - uid: 15627 + components: + - type: Transform + pos: 7.5,42.5 + parent: 2 + - uid: 15916 + components: + - type: Transform + pos: 4.5,39.5 + parent: 2 +- proto: TableCarpet + entities: + - uid: 1850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-28.5 + parent: 2 + - uid: 3742 + components: + - type: Transform + pos: -34.5,-29.5 + parent: 2 + - uid: 6531 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 2 + - uid: 6532 + components: + - type: Transform + pos: 5.5,-35.5 + parent: 2 + - uid: 6533 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 2 + - uid: 6534 + components: + - type: Transform + pos: 3.5,-35.5 + parent: 2 + - uid: 6536 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 2 + - uid: 8036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,18.5 + parent: 2 + - uid: 8088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,19.5 + parent: 2 + - uid: 8095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,19.5 + parent: 2 + - uid: 8309 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 2 + - uid: 8803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-27.5 + parent: 2 + - uid: 9580 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 12382 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 +- proto: TableFrame + entities: + - uid: 5635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-42.5 + parent: 2 +- proto: TableGlass + entities: + - uid: 1920 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 + - uid: 6672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,1.5 + parent: 2 + - uid: 6773 + components: + - type: Transform + pos: -35.5,-3.5 + parent: 2 + - uid: 6774 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 + - uid: 6775 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 2 + - uid: 6780 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - uid: 6876 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 2 + - uid: 6889 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - uid: 6890 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 2 + - uid: 6891 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 2 + - uid: 6946 + components: + - type: Transform + pos: -39.5,-7.5 + parent: 2 + - uid: 6947 + components: + - type: Transform + pos: -37.5,-7.5 + parent: 2 + - uid: 6960 + components: + - type: Transform + pos: -37.5,-6.5 + parent: 2 + - uid: 7051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-43.5 + parent: 2 + - uid: 7052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-45.5 + parent: 2 + - uid: 7053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-46.5 + parent: 2 + - uid: 7055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-46.5 + parent: 2 + - uid: 7056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-46.5 + parent: 2 + - uid: 7973 + components: + - type: Transform + pos: -31.5,-36.5 + parent: 2 + - uid: 10465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,0.5 + parent: 2 + - uid: 11306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-44.5 + parent: 2 + - uid: 16265 + components: + - type: Transform + pos: -54.5,-54.5 + parent: 2 + - uid: 16266 + components: + - type: Transform + pos: -55.5,-54.5 + parent: 2 + - uid: 16323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-5.5 + parent: 2 +- proto: TablePlasmaGlass + entities: + - uid: 7148 + components: + - type: Transform + pos: -16.5,-62.5 + parent: 2 + - uid: 7149 + components: + - type: Transform + pos: -16.5,-63.5 + parent: 2 + - uid: 7150 + components: + - type: Transform + pos: -13.5,-68.5 + parent: 2 + - uid: 7151 + components: + - type: Transform + pos: -7.5,-65.5 + parent: 2 + - uid: 7152 + components: + - type: Transform + pos: -8.5,-65.5 + parent: 2 + - uid: 9228 + components: + - type: Transform + pos: -42.5,-16.5 + parent: 2 + - uid: 12767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-59.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 411 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 472 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: -81.5,-7.5 + parent: 2 + - uid: 863 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - uid: 868 + components: + - type: Transform + pos: -52.5,3.5 + parent: 2 + - uid: 899 + components: + - type: Transform + pos: -52.5,4.5 + parent: 2 + - uid: 906 + components: + - type: Transform + pos: -54.5,2.5 + parent: 2 + - uid: 910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-3.5 + parent: 2 + - uid: 915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-4.5 + parent: 2 + - uid: 939 + components: + - type: Transform + pos: -71.5,24.5 + parent: 2 + - uid: 1106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 2 + - uid: 1562 + components: + - type: Transform + pos: -17.5,-13.5 + parent: 2 + - uid: 1624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,13.5 + parent: 2 + - uid: 1693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,34.5 + parent: 2 + - uid: 1699 + components: + - type: Transform + pos: -37.5,2.5 + parent: 2 + - uid: 1700 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 1919 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 2 + - uid: 1922 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 + - uid: 1976 + components: + - type: Transform + pos: -45.5,-2.5 + parent: 2 + - uid: 1977 + components: + - type: Transform + pos: -46.5,-2.5 + parent: 2 + - uid: 2019 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 + - uid: 2020 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 2 + - uid: 2338 + components: + - type: Transform + pos: 6.5,31.5 + parent: 2 + - uid: 4774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,15.5 + parent: 2 + - uid: 4776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,15.5 + parent: 2 + - uid: 5431 + components: + - type: Transform + pos: -19.5,19.5 + parent: 2 + - uid: 5432 + components: + - type: Transform + pos: -18.5,19.5 + parent: 2 + - uid: 5433 + components: + - type: Transform + pos: -7.5,19.5 + parent: 2 + - uid: 5434 + components: + - type: Transform + pos: -7.5,19.5 + parent: 2 + - uid: 5435 + components: + - type: Transform + pos: -8.5,19.5 + parent: 2 + - uid: 5619 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - uid: 5670 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 5675 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 5676 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 + - uid: 5765 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 2 + - uid: 5802 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - uid: 5812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,11.5 + parent: 2 + - uid: 5866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,34.5 + parent: 2 + - uid: 5890 + components: + - type: Transform + pos: 9.5,12.5 + parent: 2 + - uid: 6563 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 2 + - uid: 6702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 2 + - uid: 6703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 2 + - uid: 6704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-15.5 + parent: 2 + - uid: 6895 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 2 + - uid: 6901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-16.5 + parent: 2 + - uid: 6902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-16.5 + parent: 2 + - uid: 6982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-18.5 + parent: 2 + - uid: 8142 + components: + - type: Transform + pos: -56.5,-5.5 + parent: 2 + - uid: 8160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-5.5 + parent: 2 + - uid: 8161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-6.5 + parent: 2 + - uid: 8162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-5.5 + parent: 2 + - uid: 8163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-6.5 + parent: 2 + - uid: 8205 + components: + - type: Transform + pos: -45.5,-4.5 + parent: 2 + - uid: 8223 + components: + - type: Transform + pos: -46.5,-4.5 + parent: 2 + - uid: 9324 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 + - uid: 9533 + components: + - type: Transform + pos: -58.5,-12.5 + parent: 2 + - uid: 9534 + components: + - type: Transform + pos: -58.5,-13.5 + parent: 2 + - uid: 9535 + components: + - type: Transform + pos: -58.5,-14.5 + parent: 2 + - uid: 9536 + components: + - type: Transform + pos: -57.5,-14.5 + parent: 2 + - uid: 9537 + components: + - type: Transform + pos: -56.5,-14.5 + parent: 2 + - uid: 9538 + components: + - type: Transform + pos: -55.5,-14.5 + parent: 2 + - uid: 9539 + components: + - type: Transform + pos: -55.5,-13.5 + parent: 2 + - uid: 11268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-31.5 + parent: 2 + - uid: 11269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-31.5 + parent: 2 + - uid: 11270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-32.5 + parent: 2 + - uid: 11299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,10.5 + parent: 2 + - uid: 11558 + components: + - type: Transform + pos: -91.5,-34.5 + parent: 2 + - uid: 11863 + components: + - type: Transform + pos: -39.5,13.5 + parent: 2 + - uid: 11865 + components: + - type: Transform + pos: -41.5,13.5 + parent: 2 + - uid: 11866 + components: + - type: Transform + pos: -41.5,12.5 + parent: 2 + - uid: 11870 + components: + - type: Transform + pos: -45.5,-7.5 + parent: 2 + - uid: 11871 + components: + - type: Transform + pos: -46.5,-7.5 + parent: 2 + - uid: 12831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,11.5 + parent: 2 + - uid: 12832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,11.5 + parent: 2 + - uid: 12834 + components: + - type: Transform + pos: -29.5,11.5 + parent: 2 + - uid: 13186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-51.5 + parent: 2 + - uid: 13635 + components: + - type: Transform + pos: -39.5,12.5 + parent: 2 + - uid: 14395 + components: + - type: Transform + pos: -41.5,-23.5 + parent: 2 + - uid: 14397 + components: + - type: Transform + pos: -40.5,-23.5 + parent: 2 + - uid: 14457 + components: + - type: Transform + pos: -54.5,3.5 + parent: 2 + - uid: 14631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,22.5 + parent: 2 + - uid: 14632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,21.5 + parent: 2 + - uid: 14779 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 15141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,24.5 + parent: 2 + - uid: 15165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,24.5 + parent: 2 + - uid: 15932 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 16005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-13.5 + parent: 2 + - uid: 16051 + components: + - type: Transform + pos: 9.5,14.5 + parent: 2 + - uid: 16052 + components: + - type: Transform + pos: 9.5,20.5 + parent: 2 + - uid: 16054 + components: + - type: Transform + pos: 9.5,19.5 + parent: 2 + - uid: 16089 + components: + - type: Transform + pos: 12.5,29.5 + parent: 2 + - uid: 16090 + components: + - type: Transform + pos: 12.5,30.5 + parent: 2 + - uid: 16200 + components: + - type: Transform + pos: 18.5,29.5 + parent: 2 + - uid: 16221 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - uid: 16222 + components: + - type: Transform + pos: 4.5,27.5 + parent: 2 +- proto: TableReinforcedGlass + entities: + - uid: 1964 + components: + - type: Transform + pos: -39.5,-15.5 + parent: 2 + - uid: 5438 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - uid: 5439 + components: + - type: Transform + pos: -11.5,20.5 + parent: 2 + - uid: 5440 + components: + - type: Transform + pos: -15.5,21.5 + parent: 2 + - uid: 5441 + components: + - type: Transform + pos: -15.5,20.5 + parent: 2 + - uid: 6812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-10.5 + parent: 2 + - uid: 6813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-10.5 + parent: 2 + - uid: 6814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-10.5 + parent: 2 + - uid: 6992 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 2 + - uid: 7143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-66.5 + parent: 2 +- proto: TableStone + entities: + - uid: 1191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,9.5 + parent: 2 + - uid: 5475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,12.5 + parent: 2 + - uid: 5723 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 + - uid: 5724 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 + - uid: 5951 + components: + - type: Transform + pos: -9.5,10.5 + parent: 2 + - uid: 5964 + components: + - type: Transform + pos: -8.5,10.5 + parent: 2 + - uid: 6415 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 6509 + components: + - type: Transform + pos: -10.5,10.5 + parent: 2 + - uid: 6686 + components: + - type: Transform + pos: -10.5,9.5 + parent: 2 + - uid: 7194 + components: + - type: Transform + pos: -9.5,9.5 + parent: 2 + - uid: 8805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,20.5 + parent: 2 + - uid: 12476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,19.5 + parent: 2 + - uid: 12477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,19.5 + parent: 2 +- proto: TableWood + entities: + - uid: 59 + components: + - type: Transform + pos: -55.5,-23.5 + parent: 2 + - uid: 785 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 1816 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 + - uid: 2116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 2 + - uid: 2121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 2 + - uid: 2251 + components: + - type: Transform + pos: -47.5,-31.5 + parent: 2 + - uid: 3359 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - uid: 3688 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - uid: 5490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-9.5 + parent: 2 + - uid: 5502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,3.5 + parent: 2 + - uid: 5503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,3.5 + parent: 2 + - uid: 5504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,3.5 + parent: 2 + - uid: 5520 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 + - uid: 5623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 2 + - uid: 5695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 2 + - uid: 6380 + components: + - type: Transform + pos: -30.5,5.5 + parent: 2 + - uid: 6618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-3.5 + parent: 2 + - uid: 6619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 2 + - uid: 6723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-44.5 + parent: 2 + - uid: 6728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 2 + - uid: 6755 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - uid: 6756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-10.5 + parent: 2 + - uid: 6757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-5.5 + parent: 2 + - uid: 6760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 2 + - uid: 8007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-14.5 + parent: 2 + - uid: 8083 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 + - uid: 8130 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 + - uid: 8156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-23.5 + parent: 2 + - uid: 8158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-24.5 + parent: 2 + - uid: 8202 + components: + - type: Transform + pos: -47.5,-23.5 + parent: 2 + - uid: 8203 + components: + - type: Transform + pos: -48.5,-23.5 + parent: 2 + - uid: 8220 + components: + - type: Transform + pos: -47.5,-30.5 + parent: 2 + - uid: 8221 + components: + - type: Transform + pos: -48.5,-31.5 + parent: 2 + - uid: 8225 + components: + - type: Transform + pos: -49.5,-23.5 + parent: 2 + - uid: 8226 + components: + - type: Transform + pos: -56.5,-30.5 + parent: 2 + - uid: 8227 + components: + - type: Transform + pos: -56.5,-29.5 + parent: 2 + - uid: 8228 + components: + - type: Transform + pos: -49.5,-31.5 + parent: 2 + - uid: 8232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-19.5 + parent: 2 + - uid: 8233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-19.5 + parent: 2 + - uid: 8247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-31.5 + parent: 2 + - uid: 8322 + components: + - type: Transform + pos: -59.5,-38.5 + parent: 2 + - uid: 8323 + components: + - type: Transform + pos: -58.5,-38.5 + parent: 2 + - uid: 8324 + components: + - type: Transform + pos: -58.5,-39.5 + parent: 2 + - uid: 8352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 2 + - uid: 8353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 2 + - uid: 8354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 2 + - uid: 8355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 2 + - uid: 8356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 2 + - uid: 8357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 2 + - uid: 8389 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 + - uid: 8390 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 + - uid: 8391 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 + - uid: 8459 + components: + - type: Transform + pos: -55.5,-31.5 + parent: 2 + - uid: 8628 + components: + - type: Transform + pos: -37.5,-44.5 + parent: 2 + - uid: 8638 + components: + - type: Transform + pos: -38.5,-38.5 + parent: 2 + - uid: 8779 + components: + - type: Transform + pos: -37.5,-38.5 + parent: 2 + - uid: 8795 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 2 + - uid: 8979 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - uid: 9190 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - uid: 9191 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - uid: 9399 + components: + - type: Transform + pos: -51.5,-42.5 + parent: 2 + - uid: 9400 + components: + - type: Transform + pos: -52.5,-39.5 + parent: 2 + - uid: 9401 + components: + - type: Transform + pos: -52.5,-40.5 + parent: 2 + - uid: 9403 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 2 + - uid: 9405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 2 + - uid: 9414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-37.5 + parent: 2 + - uid: 9431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-46.5 + parent: 2 + - uid: 12257 + components: + - type: Transform + pos: -29.5,-31.5 + parent: 2 + - uid: 14505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-13.5 + parent: 2 +- proto: TargetDarts + entities: + - uid: 8005 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 2 +- proto: TargetStrange + entities: + - uid: 16204 + components: + - type: Transform + pos: -55.5,-57.5 + parent: 2 +- proto: TearGasGrenade + entities: + - uid: 15723 + components: + - type: Transform + parent: 15737 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15724 + components: + - type: Transform + parent: 15737 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15727 + components: + - type: Transform + parent: 15737 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15728 + components: + - type: Transform + parent: 15737 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: TelecomServer + entities: + - uid: 11230 + components: + - type: Transform + pos: -61.5,-32.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 11231 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 11232 + components: + - type: Transform + pos: -61.5,-31.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 11233 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 11234 + components: + - type: Transform + pos: -63.5,-31.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 11235 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 11236 + components: + - type: Transform + pos: -63.5,-32.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 11237 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 11238 + components: + - type: Transform + pos: -61.5,-36.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 11239 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 11240 + components: + - type: Transform + pos: -61.5,-37.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 11241 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 11242 + components: + - type: Transform + pos: -63.5,-36.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 11243 + - 11244 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 11245 + components: + - type: Transform + pos: -63.5,-37.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 11246 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] +- proto: TeslaCoil + entities: + - uid: 14830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,34.5 + parent: 2 + - uid: 16010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,32.5 + parent: 2 + - uid: 16019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,34.5 + parent: 2 + - uid: 16021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,32.5 + parent: 2 +- proto: ThermomachineFreezerMachineCircuitBoard + entities: + - uid: 14443 + components: + - type: Transform + pos: -54.5725,2.7842216 + parent: 2 +- proto: ThermomachineHeaterMachineCircuitBoard + entities: + - uid: 5827 + components: + - type: Transform + pos: -54.463337,2.5814915 + parent: 2 +- proto: TimpaniInstrument + entities: + - uid: 605 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 +- proto: TintedWindow + entities: + - uid: 814 + components: + - type: Transform + pos: -37.5,-41.5 + parent: 2 + - uid: 3703 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 3720 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 2 +- proto: ToiletEmpty + entities: + - uid: 5500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,6.5 + parent: 2 + - uid: 8708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-31.5 + parent: 2 + - uid: 8709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-29.5 + parent: 2 + - uid: 8710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-29.5 + parent: 2 + - uid: 8711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-31.5 + parent: 2 + - uid: 11615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,42.5 + parent: 2 + - uid: 13151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,42.5 + parent: 2 +- proto: ToolboxElectrical + entities: + - uid: 6325 + components: + - type: Transform + pos: -34.54326,5.663938 + parent: 2 +- proto: ToolboxElectricalFilled + entities: + - uid: 545 + components: + - type: Transform + pos: -21.49773,-46.40953 + parent: 2 + - uid: 2817 + components: + - type: Transform + pos: -41.539627,13.686526 + parent: 2 + - uid: 5704 + components: + - type: Transform + pos: -33.508415,15.678548 + parent: 2 + - uid: 8109 + components: + - type: Transform + pos: -23.511099,19.481506 + parent: 2 + - uid: 14456 + components: + - type: Transform + pos: -52.576244,4.7702255 + parent: 2 + - uid: 14782 + components: + - type: Transform + pos: 1.4787297,11.462845 + parent: 2 +- proto: ToolboxGoldFilled + entities: + - uid: 11308 + components: + - type: Transform + pos: -26.444412,13.533198 + parent: 2 +- proto: ToolboxMechanicalFilled + entities: + - uid: 2898 + components: + - type: Transform + pos: -41.559246,13.363726 + parent: 2 + - uid: 5467 + components: + - type: Transform + pos: -7.5830994,19.590048 + parent: 2 + - uid: 5469 + components: + - type: Transform + pos: 1.4826856,11.7367525 + parent: 2 + - uid: 5895 + components: + - type: Transform + pos: 9.478167,12.737969 + parent: 2 + - uid: 7233 + components: + - type: Transform + pos: -11.520595,-46.26447 + parent: 2 + - uid: 8108 + components: + - type: Transform + pos: -23.522346,19.809673 + parent: 2 +- proto: ToyAi + entities: + - uid: 11433 + components: + - type: Transform + pos: -91.54421,-34.358906 + parent: 2 +- proto: ToyFigurineAtmosTech + entities: + - uid: 5436 + components: + - type: Transform + pos: -37.232594,34.437492 + parent: 2 +- proto: ToyFigurineBoxer + entities: + - uid: 8915 + components: + - type: Transform + pos: -16.07617,-28.356228 + parent: 2 +- proto: ToyFigurineClown + entities: + - uid: 1458 + components: + - type: Transform + parent: 1021 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ToyFigurineEngineer + entities: + - uid: 6574 + components: + - type: Transform + pos: -35.78739,34.49704 + parent: 2 +- proto: ToyFigurineMime + entities: + - uid: 1710 + components: + - type: Transform + parent: 1541 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ToyFigurineSalvage + entities: + - uid: 13154 + components: + - type: Transform + pos: -18.679165,-52.48223 + parent: 2 +- proto: ToyFigurineScientist + entities: + - uid: 7072 + components: + - type: Transform + pos: -18.594364,-44.321526 + parent: 2 + - uid: 13153 + components: + - type: Transform + pos: -18.283615,-52.46425 + parent: 2 +- proto: ToySpawner + entities: + - uid: 9593 + components: + - type: Transform + pos: -52.5,-10.5 + parent: 2 +- proto: TrashBag + entities: + - uid: 14237 + components: + - type: Transform + pos: -55.977184,-14.449522 + parent: 2 + - uid: 14238 + components: + - type: Transform + pos: -55.977184,-14.294293 + parent: 2 +- proto: TrashBananaPeel + entities: + - uid: 6139 + components: + - type: Transform + pos: -76.49574,-5.5347757 + parent: 2 + - uid: 8984 + components: + - type: Transform + pos: 8.023753,-19.134853 + parent: 2 + - uid: 8985 + components: + - type: Transform + pos: 7.9773235,-19.390747 + parent: 2 +- proto: TwoWayLever + entities: + - uid: 6498 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6488: + - Left: Forward + - Right: Reverse + - Middle: Off + 6489: + - Left: Forward + - Right: Reverse + - Middle: Off + 6490: + - Left: Forward + - Right: Reverse + - Middle: Off + 6491: + - Left: Forward + - Right: Reverse + - Middle: Off + 6492: + - Left: Forward + - Right: Reverse + - Middle: Off + 6497: + - Left: Reverse + - Right: Forward + - Middle: Off + 6495: + - Left: Reverse + - Right: Forward + - Middle: Off + 6496: + - Left: Reverse + - Right: Forward + - Middle: Off + 6494: + - Left: Reverse + - Right: Forward + - Middle: Off + 6493: + - Left: Reverse + - Right: Forward + - Middle: Off + - uid: 12117 + components: + - type: Transform + pos: -61.5,-21.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1394: + - Left: Forward + - Right: Reverse + - Middle: Off + 12121: + - Left: Forward + - Right: Reverse + - Middle: Off + 1810: + - Left: Forward + - Right: Reverse + - Middle: Off + 1393: + - Left: Forward + - Right: Reverse + - Middle: Off + 1669: + - Left: Forward + - Right: Reverse + - Middle: Off + 1387: + - Left: Forward + - Right: Reverse + - Middle: Off + 2283: + - Left: Forward + - Right: Reverse + - Middle: Off + 11918: + - Left: Forward + - Right: Reverse + - Middle: Off + 2456: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: UniformPrinter + entities: + - uid: 5507 + components: + - type: Transform + pos: -9.5,5.5 + parent: 2 +- proto: UniformScrubsColorBlue + entities: + - uid: 6964 + components: + - type: Transform + pos: -37.77945,-6.869717 + parent: 2 +- proto: UniformShortsRed + entities: + - uid: 13418 + components: + - type: Transform + parent: 8906 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13419 + components: + - type: Transform + parent: 8908 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: UniformShortsRedWithTop + entities: + - uid: 13378 + components: + - type: Transform + parent: 8906 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13420 + components: + - type: Transform + parent: 8908 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: UnstableMutagenChemistryBottle + entities: + - uid: 16086 + components: + - type: Transform + pos: 14.700569,28.704048 + parent: 2 + - uid: 16101 + components: + - type: Transform + pos: 14.453546,28.53603 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 16262 + components: + - type: Transform + pos: -55.644867,-54.275955 + parent: 2 +- proto: UprightPianoInstrument + entities: + - uid: 7990 + components: + - type: Transform + pos: -54.5,-44.5 + parent: 2 +- proto: UraniumOre1 + entities: + - uid: 14789 + components: + - type: Transform + pos: 19.3615,9.987547 + parent: 2 +- proto: Vaccinator + entities: + - uid: 1952 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 2 +- proto: VendingBarDrobe + entities: + - uid: 1127 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 2 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 14580 + components: + - type: Transform + pos: -43.5,19.5 + parent: 2 +- proto: VendingMachineBooze + entities: + - uid: 1742 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 + - uid: 6545 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 2 +- proto: VendingMachineBoxingDrobe + entities: + - uid: 6203 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 2 +- proto: VendingMachineCargoDrobe + entities: + - uid: 3332 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 2 +- proto: VendingMachineCart + entities: + - uid: 3464 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 +- proto: VendingMachineChang + entities: + - uid: 10380 + components: + - type: Transform + pos: -75.5,-2.5 + parent: 2 +- proto: VendingMachineChapel + entities: + - uid: 8640 + components: + - type: Transform + pos: -35.5,-37.5 + parent: 2 +- proto: VendingMachineChefDrobe + entities: + - uid: 6707 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 2 +- proto: VendingMachineChefvend + entities: + - uid: 16006 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 2 +- proto: VendingMachineChemDrobe + entities: + - uid: 6781 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 2 +- proto: VendingMachineChemicals + entities: + - uid: 8786 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 2 +- proto: VendingMachineCigs + entities: + - uid: 8018 + components: + - type: Transform + pos: -17.5,1.5 + parent: 2 + - uid: 8062 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - uid: 14384 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 2 +- proto: VendingMachineClothing + entities: + - uid: 3100 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 2 + - uid: 8451 + components: + - type: Transform + pos: -58.5,-8.5 + parent: 2 + - uid: 15807 + components: + - type: Transform + pos: 3.5,39.5 + parent: 2 +- proto: VendingMachineCoffee + entities: + - uid: 8066 + components: + - type: Transform + pos: -49.5,1.5 + parent: 2 + - uid: 10459 + components: + - type: Transform + pos: -76.5,-2.5 + parent: 2 +- proto: VendingMachineCourierDrobe + entities: + - uid: 5570 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 2 +- proto: VendingMachineCuraDrobe + entities: + - uid: 1102 + components: + - type: Transform + pos: -34.5,-27.5 + parent: 2 +- proto: VendingMachineDetDrobe + entities: + - uid: 8331 + components: + - type: Transform + pos: -56.5,-41.5 + parent: 2 +- proto: VendingMachineDinnerware + entities: + - uid: 6706 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 2 +- proto: VendingMachineEngiDrobe + entities: + - uid: 6393 + components: + - type: Transform + pos: -47.5,2.5 + parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 6265 + components: + - type: Transform + pos: -41.5,4.5 + parent: 2 +- proto: VendingMachineGames + entities: + - uid: 1103 + components: + - type: Transform + pos: -31.5,-29.5 + parent: 2 + - uid: 6527 + components: + - type: Transform + pos: 4.5,40.5 + parent: 2 + - uid: 8091 + components: + - type: Transform + pos: -5.5,17.5 + parent: 2 + - uid: 8375 + components: + - type: Transform + pos: -63.5,-4.5 + parent: 2 +- proto: VendingMachineHappyHonk + entities: + - uid: 6691 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 2 +- proto: VendingMachineJaniDrobe + entities: + - uid: 8260 + components: + - type: Transform + pos: 17.5,16.5 + parent: 2 +- proto: VendingMachineLawDrobe + entities: + - uid: 8394 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 +- proto: VendingMachineMagivend + entities: + - uid: 13147 + components: + - type: Transform + pos: -45.5,-23.5 + parent: 2 +- proto: VendingMachineMedical + entities: + - uid: 3732 + components: + - type: Transform + pos: -48.5,-9.5 + parent: 2 + - uid: 9506 + components: + - type: Transform + pos: -31.5,-18.5 + parent: 2 +- proto: VendingMachineMediDrobe + entities: + - uid: 6900 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 2 +- proto: VendingMachineNutri + entities: + - uid: 6735 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 2 +- proto: VendingMachineRestockMedical + entities: + - uid: 6915 + components: + - type: Transform + pos: -29.524712,-14.356471 + parent: 2 +- proto: VendingMachineRestockTankDispenser + entities: + - uid: 14610 + components: + - type: Transform + pos: -39.429047,4.556359 + parent: 2 +- proto: VendingMachineRoboDrobe + entities: + - uid: 3376 + components: + - type: Transform + pos: -23.5,-41.5 + parent: 2 +- proto: VendingMachineSalvage + entities: + - uid: 4224 + components: + - type: Transform + pos: -6.5,-39.5 + parent: 2 +- proto: VendingMachineSec + entities: + - uid: 5680 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 +- proto: VendingMachineSecDrobe + entities: + - uid: 5684 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 +- proto: VendingMachineSeeds + entities: + - uid: 6734 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 11623 + components: + - type: Transform + pos: 11.5,39.5 + parent: 2 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 6316 + components: + - type: Transform + pos: -34.5,3.5 + parent: 2 + - uid: 14834 + components: + - type: Transform + pos: -46.5,22.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 1938 + components: + - type: Transform + pos: -6.5,-40.5 + parent: 2 + - uid: 8143 + components: + - type: Transform + pos: -56.5,-6.5 + parent: 2 + - uid: 11287 + components: + - type: Transform + pos: -33.5,3.5 + parent: 2 + - uid: 14833 + components: + - type: Transform + pos: -45.5,22.5 + parent: 2 + - uid: 15031 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 +- proto: VendingMachineTheater + entities: + - uid: 625 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: -63.5,-3.5 + parent: 2 +- proto: VendingMachineVendomat + entities: + - uid: 8107 + components: + - type: Transform + pos: -25.5,19.5 + parent: 2 + - uid: 14455 + components: + - type: Transform + pos: -54.5,4.5 + parent: 2 + - uid: 14607 + components: + - type: Transform + pos: -39.5,5.5 + parent: 2 +- proto: VendingMachineViroDrobe + entities: + - uid: 6819 + components: + - type: Transform + pos: -43.5,-14.5 + parent: 2 +- proto: VendingMachineWallMedical + entities: + - uid: 5718 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 +- proto: VendingMachineWinter + entities: + - uid: 8411 + components: + - type: Transform + pos: -58.5,-7.5 + parent: 2 +- proto: VendingMachineYouTool + entities: + - uid: 6269 + components: + - type: Transform + pos: -43.5,4.5 + parent: 2 + - uid: 8098 + components: + - type: Transform + pos: -24.5,19.5 + parent: 2 +- proto: WallmountTelescreen + entities: + - uid: 5792 + components: + - type: Transform + pos: 9.5,43.5 + parent: 2 + - uid: 8325 + components: + - type: Transform + pos: -59.5,-38.5 + parent: 2 + - uid: 8743 + components: + - type: Transform + pos: 2.5,43.5 + parent: 2 + - uid: 10390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,-5.5 + parent: 2 + - uid: 12691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,8.5 + parent: 2 +- proto: WallmountTelevision + entities: + - uid: 2105 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 12409 + components: + - type: Transform + pos: -19.5,2.5 + parent: 2 + - uid: 12411 + components: + - type: Transform + pos: 14.5,2.5 + parent: 2 + - uid: 12413 + components: + - type: Transform + pos: -8.5,-32.5 + parent: 2 + - uid: 15973 + components: + - type: Transform + pos: 6.5,43.5 + parent: 2 + - uid: 16440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 8 + components: + - type: Transform + pos: -21.5,13.5 + parent: 2 + - uid: 11 + components: + - type: Transform + pos: -20.5,11.5 + parent: 2 + - uid: 14 + components: + - type: Transform + pos: -19.5,16.5 + parent: 2 + - uid: 17 + components: + - type: Transform + pos: -22.5,13.5 + parent: 2 + - uid: 20 + components: + - type: Transform + pos: -7.5,12.5 + parent: 2 + - uid: 29 + components: + - type: Transform + pos: -77.5,-3.5 + parent: 2 + - uid: 35 + components: + - type: Transform + pos: 23.5,5.5 + parent: 2 + - uid: 38 + components: + - type: Transform + pos: 23.5,12.5 + parent: 2 + - uid: 41 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 + - uid: 44 + components: + - type: Transform + pos: 23.5,7.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: -76.5,-3.5 + parent: 2 + - uid: 55 + components: + - type: Transform + pos: -8.5,6.5 + parent: 2 + - uid: 70 + components: + - type: Transform + pos: -40.5,33.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 + - uid: 89 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,-8.5 + parent: 2 + - uid: 90 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 92 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - uid: 98 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: 12.5,16.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 + - uid: 113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,7.5 + parent: 2 + - uid: 114 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,1.5 + parent: 2 + - uid: 126 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 128 + components: + - type: Transform + pos: -52.5,-2.5 + parent: 2 + - uid: 129 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 2 + - uid: 135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 2 + - uid: 165 + components: + - type: Transform + pos: -4.5,7.5 + parent: 2 + - uid: 167 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 168 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 + - uid: 170 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 171 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - uid: 172 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 176 + components: + - type: Transform + pos: -38.5,-2.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: -40.5,-2.5 + parent: 2 + - uid: 181 + components: + - type: Transform + pos: -44.5,-2.5 + parent: 2 + - uid: 182 + components: + - type: Transform + pos: -36.5,-2.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: -4.5,16.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: -1.5,6.5 + parent: 2 + - uid: 195 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 + - uid: 199 + components: + - type: Transform + pos: -32.5,3.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: -34.5,2.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: -39.5,2.5 + parent: 2 + - uid: 209 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 211 + components: + - type: Transform + pos: -33.5,2.5 + parent: 2 + - uid: 212 + components: + - type: Transform + pos: -8.5,1.5 + parent: 2 + - uid: 217 + components: + - type: Transform + pos: -4.5,4.5 + parent: 2 + - uid: 219 + components: + - type: Transform + pos: -38.5,2.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 223 + components: + - type: Transform + pos: -31.5,3.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: -30.5,1.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: -56.5,1.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: -30.5,3.5 + parent: 2 + - uid: 233 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 + - uid: 235 + components: + - type: Transform + pos: 23.5,4.5 + parent: 2 + - uid: 236 + components: + - type: Transform + pos: -53.5,-2.5 + parent: 2 + - uid: 237 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 238 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: 23.5,16.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: 36.5,7.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 249 + components: + - type: Transform + pos: -13.5,12.5 + parent: 2 + - uid: 251 + components: + - type: Transform + pos: 39.5,7.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: 39.5,2.5 + parent: 2 + - uid: 255 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 + - uid: 258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,16.5 + parent: 2 + - uid: 261 + components: + - type: Transform + pos: -9.5,6.5 + parent: 2 + - uid: 262 + components: + - type: Transform + pos: 29.5,1.5 + parent: 2 + - uid: 263 + components: + - type: Transform + pos: 27.5,1.5 + parent: 2 + - uid: 265 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - uid: 266 + components: + - type: Transform + pos: 28.5,1.5 + parent: 2 + - uid: 267 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - uid: 269 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - uid: 270 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - uid: 271 + components: + - type: Transform + pos: -13.5,9.5 + parent: 2 + - uid: 272 + components: + - type: Transform + pos: -18.5,11.5 + parent: 2 + - uid: 273 + components: + - type: Transform + pos: -19.5,13.5 + parent: 2 + - uid: 274 + components: + - type: Transform + pos: -13.5,6.5 + parent: 2 + - uid: 275 + components: + - type: Transform + pos: -13.5,10.5 + parent: 2 + - uid: 276 + components: + - type: Transform + pos: -15.5,7.5 + parent: 2 + - uid: 277 + components: + - type: Transform + pos: -11.5,6.5 + parent: 2 + - uid: 278 + components: + - type: Transform + pos: -13.5,7.5 + parent: 2 + - uid: 279 + components: + - type: Transform + pos: -18.5,13.5 + parent: 2 + - uid: 280 + components: + - type: Transform + pos: -15.5,6.5 + parent: 2 + - uid: 281 + components: + - type: Transform + pos: -7.5,7.5 + parent: 2 + - uid: 282 + components: + - type: Transform + pos: -7.5,6.5 + parent: 2 + - uid: 283 + components: + - type: Transform + pos: -17.5,13.5 + parent: 2 + - uid: 284 + components: + - type: Transform + pos: -18.5,12.5 + parent: 2 + - uid: 291 + components: + - type: Transform + pos: -13.5,4.5 + parent: 2 + - uid: 295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,11.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: -13.5,2.5 + parent: 2 + - uid: 306 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - uid: 309 + components: + - type: Transform + pos: -5.5,20.5 + parent: 2 + - uid: 310 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 313 + components: + - type: Transform + pos: -20.5,17.5 + parent: 2 + - uid: 314 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 317 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - uid: 318 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: -6.5,17.5 + parent: 2 + - uid: 321 + components: + - type: Transform + pos: -20.5,19.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 324 + components: + - type: Transform + pos: -6.5,18.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 + - uid: 326 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: -21.5,20.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: -7.5,2.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: -6.5,20.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: -27.5,20.5 + parent: 2 + - uid: 337 + components: + - type: Transform + pos: -19.5,5.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: -19.5,6.5 + parent: 2 + - uid: 346 + components: + - type: Transform + pos: -18.5,22.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: -13.5,22.5 + parent: 2 + - uid: 354 + components: + - type: Transform + pos: -8.5,22.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 365 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 366 + components: + - type: Transform + pos: -1.5,8.5 + parent: 2 + - uid: 367 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 + - uid: 368 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 369 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 370 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - uid: 371 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - uid: 374 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 380 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - uid: 381 + components: + - type: Transform + pos: 7.5,14.5 + parent: 2 + - uid: 382 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 383 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 + - uid: 386 + components: + - type: Transform + pos: 7.5,15.5 + parent: 2 + - uid: 387 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - uid: 388 + components: + - type: Transform + pos: 9.5,22.5 + parent: 2 + - uid: 390 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 391 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 + - uid: 393 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 + - uid: 394 + components: + - type: Transform + pos: 12.5,14.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - uid: 398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,7.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - uid: 403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: -6.5,-60.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: 12.5,20.5 + parent: 2 + - uid: 421 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 + - uid: 430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,21.5 + parent: 2 + - uid: 431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,21.5 + parent: 2 + - uid: 434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,22.5 + parent: 2 + - uid: 459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,24.5 + parent: 2 + - uid: 473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,24.5 + parent: 2 + - uid: 477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,24.5 + parent: 2 + - uid: 478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,24.5 + parent: 2 + - uid: 482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,24.5 + parent: 2 + - uid: 483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,24.5 + parent: 2 + - uid: 487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,24.5 + parent: 2 + - uid: 488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,23.5 + parent: 2 + - uid: 491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,21.5 + parent: 2 + - uid: 492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,21.5 + parent: 2 + - uid: 493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,23.5 + parent: 2 + - uid: 498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,22.5 + parent: 2 + - uid: 504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,24.5 + parent: 2 + - uid: 509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,23.5 + parent: 2 + - uid: 513 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 525 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 + - uid: 530 + components: + - type: Transform + pos: 0.5,21.5 + parent: 2 + - uid: 532 + components: + - type: Transform + pos: 10.5,22.5 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 534 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,22.5 + parent: 2 + - uid: 554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,7.5 + parent: 2 + - uid: 561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,4.5 + parent: 2 + - uid: 563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,31.5 + parent: 2 + - uid: 566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,31.5 + parent: 2 + - uid: 567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,15.5 + parent: 2 + - uid: 569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,33.5 + parent: 2 + - uid: 570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,32.5 + parent: 2 + - uid: 571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,4.5 + parent: 2 + - uid: 572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,31.5 + parent: 2 + - uid: 582 + components: + - type: Transform + pos: 6.5,13.5 + parent: 2 + - uid: 583 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - uid: 584 + components: + - type: Transform + pos: 11.5,2.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: 9.5,9.5 + parent: 2 + - uid: 587 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - uid: 592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 2 + - uid: 593 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - uid: 602 + components: + - type: Transform + pos: 0.5,19.5 + parent: 2 + - uid: 607 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 612 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: -18.5,5.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: -20.5,8.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: -20.5,9.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: -19.5,7.5 + parent: 2 + - uid: 630 + components: + - type: Transform + pos: -19.5,8.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: -28.5,20.5 + parent: 2 + - uid: 641 + components: + - type: Transform + pos: -28.5,19.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: -28.5,16.5 + parent: 2 + - uid: 654 + components: + - type: Transform + pos: -27.5,16.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: -26.5,16.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: -25.5,16.5 + parent: 2 + - uid: 692 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 + - uid: 696 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 701 + components: + - type: Transform + pos: -18.5,9.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: -14.5,9.5 + parent: 2 + - uid: 703 + components: + - type: Transform + pos: -15.5,16.5 + parent: 2 + - uid: 704 + components: + - type: Transform + pos: -6.5,16.5 + parent: 2 + - uid: 705 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 + - uid: 706 + components: + - type: Transform + pos: -18.5,8.5 + parent: 2 + - uid: 707 + components: + - type: Transform + pos: -15.5,9.5 + parent: 2 + - uid: 708 + components: + - type: Transform + pos: -11.5,16.5 + parent: 2 + - uid: 709 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: -17.5,8.5 + parent: 2 + - uid: 712 + components: + - type: Transform + pos: -15.5,8.5 + parent: 2 + - uid: 713 + components: + - type: Transform + pos: -7.5,16.5 + parent: 2 + - uid: 714 + components: + - type: Transform + pos: -7.5,13.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: -12.5,13.5 + parent: 2 + - uid: 716 + components: + - type: Transform + pos: -15.5,13.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: -22.5,16.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: -20.5,16.5 + parent: 2 + - uid: 723 + components: + - type: Transform + pos: -21.5,16.5 + parent: 2 + - uid: 727 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 + - uid: 728 + components: + - type: Transform + pos: -42.5,-2.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: 39.5,16.5 + parent: 2 + - uid: 735 + components: + - type: Transform + pos: 33.5,2.5 + parent: 2 + - uid: 737 + components: + - type: Transform + pos: 36.5,11.5 + parent: 2 + - uid: 738 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 739 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 740 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 742 + components: + - type: Transform + pos: -14.5,13.5 + parent: 2 + - uid: 743 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 745 + components: + - type: Transform + pos: 33.5,4.5 + parent: 2 + - uid: 748 + components: + - type: Transform + pos: 39.5,11.5 + parent: 2 + - uid: 750 + components: + - type: Transform + pos: 33.5,7.5 + parent: 2 + - uid: 751 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 + - uid: 753 + components: + - type: Transform + pos: 33.5,17.5 + parent: 2 + - uid: 754 + components: + - type: Transform + pos: 33.5,12.5 + parent: 2 + - uid: 755 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 + - uid: 756 + components: + - type: Transform + pos: 33.5,1.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: -13.5,13.5 + parent: 2 + - uid: 758 + components: + - type: Transform + pos: 33.5,5.5 + parent: 2 + - uid: 759 + components: + - type: Transform + pos: 33.5,14.5 + parent: 2 + - uid: 760 + components: + - type: Transform + pos: 35.5,21.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: -48.5,1.5 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: -58.5,-36.5 + parent: 2 + - uid: 767 + components: + - type: Transform + pos: -40.5,2.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: -46.5,1.5 + parent: 2 + - uid: 777 + components: + - type: Transform + pos: -44.5,1.5 + parent: 2 + - uid: 778 + components: + - type: Transform + pos: -74.5,3.5 + parent: 2 + - uid: 779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-47.5 + parent: 2 + - uid: 780 + components: + - type: Transform + pos: -60.5,1.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: -74.5,2.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: -64.5,1.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: -72.5,1.5 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: -51.5,1.5 + parent: 2 + - uid: 803 + components: + - type: Transform + pos: -29.5,3.5 + parent: 2 + - uid: 804 + components: + - type: Transform + pos: 23.5,14.5 + parent: 2 + - uid: 805 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 + - uid: 807 + components: + - type: Transform + pos: -40.5,1.5 + parent: 2 + - uid: 808 + components: + - type: Transform + pos: -52.5,1.5 + parent: 2 + - uid: 823 + components: + - type: Transform + pos: -1.5,20.5 + parent: 2 + - uid: 825 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 + - uid: 828 + components: + - type: Transform + pos: -1.5,16.5 + parent: 2 + - uid: 830 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - uid: 833 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 + - uid: 835 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - uid: 840 + components: + - type: Transform + pos: -31.5,1.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: -0.5,16.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-37.5 + parent: 2 + - uid: 858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-16.5 + parent: 2 + - uid: 859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-16.5 + parent: 2 + - uid: 860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-16.5 + parent: 2 + - uid: 861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-16.5 + parent: 2 + - uid: 864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-16.5 + parent: 2 + - uid: 866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-16.5 + parent: 2 + - uid: 869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-16.5 + parent: 2 + - uid: 871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-16.5 + parent: 2 + - uid: 874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-16.5 + parent: 2 + - uid: 916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-16.5 + parent: 2 + - uid: 921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-16.5 + parent: 2 + - uid: 923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-18.5 + parent: 2 + - uid: 924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,31.5 + parent: 2 + - uid: 925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-18.5 + parent: 2 + - uid: 926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-18.5 + parent: 2 + - uid: 927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-17.5 + parent: 2 + - uid: 928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-19.5 + parent: 2 + - uid: 929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-18.5 + parent: 2 + - uid: 930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-19.5 + parent: 2 + - uid: 931 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 2 + - uid: 935 + components: + - type: Transform + pos: -74.5,27.5 + parent: 2 + - uid: 938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,23.5 + parent: 2 + - uid: 940 + components: + - type: Transform + pos: -58.5,19.5 + parent: 2 + - uid: 941 + components: + - type: Transform + pos: -63.5,23.5 + parent: 2 + - uid: 946 + components: + - type: Transform + pos: -61.5,19.5 + parent: 2 + - uid: 964 + components: + - type: Transform + pos: 9.5,24.5 + parent: 2 + - uid: 969 + components: + - type: Transform + pos: 3.5,28.5 + parent: 2 + - uid: 977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,28.5 + parent: 2 + - uid: 982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,28.5 + parent: 2 + - uid: 987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,28.5 + parent: 2 + - uid: 988 + components: + - type: Transform + pos: -59.5,19.5 + parent: 2 + - uid: 1002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,35.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-18.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-18.5 + parent: 2 + - uid: 1025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-19.5 + parent: 2 + - uid: 1026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-19.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-19.5 + parent: 2 + - uid: 1028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-19.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-17.5 + parent: 2 + - uid: 1030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-18.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-28.5 + parent: 2 + - uid: 1037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-29.5 + parent: 2 + - uid: 1038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-30.5 + parent: 2 + - uid: 1039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-31.5 + parent: 2 + - uid: 1040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-32.5 + parent: 2 + - uid: 1060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-22.5 + parent: 2 + - uid: 1061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-25.5 + parent: 2 + - uid: 1062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-28.5 + parent: 2 + - uid: 1063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-28.5 + parent: 2 + - uid: 1064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-28.5 + parent: 2 + - uid: 1065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-29.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-29.5 + parent: 2 + - uid: 1067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-29.5 + parent: 2 + - uid: 1068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-29.5 + parent: 2 + - uid: 1069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-29.5 + parent: 2 + - uid: 1070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-29.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-28.5 + parent: 2 + - uid: 1072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-28.5 + parent: 2 + - uid: 1073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-29.5 + parent: 2 + - uid: 1074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-30.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-31.5 + parent: 2 + - uid: 1076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-32.5 + parent: 2 + - uid: 1077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-32.5 + parent: 2 + - uid: 1078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-32.5 + parent: 2 + - uid: 1079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-32.5 + parent: 2 + - uid: 1080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-32.5 + parent: 2 + - uid: 1081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-32.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-32.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-32.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-32.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-32.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,33.5 + parent: 2 + - uid: 1107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,4.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,7.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,8.5 + parent: 2 + - uid: 1121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,12.5 + parent: 2 + - uid: 1122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,15.5 + parent: 2 + - uid: 1123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,12.5 + parent: 2 + - uid: 1124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,13.5 + parent: 2 + - uid: 1125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,13.5 + parent: 2 + - uid: 1126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,8.5 + parent: 2 + - uid: 1128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,8.5 + parent: 2 + - uid: 1129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,7.5 + parent: 2 + - uid: 1130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,6.5 + parent: 2 + - uid: 1131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,4.5 + parent: 2 + - uid: 1136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,6.5 + parent: 2 + - uid: 1137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,6.5 + parent: 2 + - uid: 1138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,5.5 + parent: 2 + - uid: 1140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,5.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,5.5 + parent: 2 + - uid: 1142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,5.5 + parent: 2 + - uid: 1143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,5.5 + parent: 2 + - uid: 1144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,4.5 + parent: 2 + - uid: 1145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,2.5 + parent: 2 + - uid: 1146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,2.5 + parent: 2 + - uid: 1147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,3.5 + parent: 2 + - uid: 1148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,4.5 + parent: 2 + - uid: 1149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,5.5 + parent: 2 + - uid: 1150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,6.5 + parent: 2 + - uid: 1151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,7.5 + parent: 2 + - uid: 1153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,10.5 + parent: 2 + - uid: 1154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,11.5 + parent: 2 + - uid: 1155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,12.5 + parent: 2 + - uid: 1156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,13.5 + parent: 2 + - uid: 1157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,14.5 + parent: 2 + - uid: 1158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,15.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,16.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,16.5 + parent: 2 + - uid: 1161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,16.5 + parent: 2 + - uid: 1162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,16.5 + parent: 2 + - uid: 1163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,16.5 + parent: 2 + - uid: 1164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,16.5 + parent: 2 + - uid: 1165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,16.5 + parent: 2 + - uid: 1166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,16.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,16.5 + parent: 2 + - uid: 1168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,16.5 + parent: 2 + - uid: 1169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,15.5 + parent: 2 + - uid: 1170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,14.5 + parent: 2 + - uid: 1171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,13.5 + parent: 2 + - uid: 1172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,12.5 + parent: 2 + - uid: 1173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,11.5 + parent: 2 + - uid: 1174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,11.5 + parent: 2 + - uid: 1175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,8.5 + parent: 2 + - uid: 1176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,7.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,11.5 + parent: 2 + - uid: 1178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,11.5 + parent: 2 + - uid: 1179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,11.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,16.5 + parent: 2 + - uid: 1181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,16.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,16.5 + parent: 2 + - uid: 1184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,16.5 + parent: 2 + - uid: 1185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,16.5 + parent: 2 + - uid: 1186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,15.5 + parent: 2 + - uid: 1187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,14.5 + parent: 2 + - uid: 1188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,13.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,12.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + pos: -22.5,-36.5 + parent: 2 + - uid: 1193 + components: + - type: Transform + pos: -23.5,-36.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: -24.5,-36.5 + parent: 2 + - uid: 1195 + components: + - type: Transform + pos: -22.5,-37.5 + parent: 2 + - uid: 1196 + components: + - type: Transform + pos: -22.5,-38.5 + parent: 2 + - uid: 1197 + components: + - type: Transform + pos: -22.5,-39.5 + parent: 2 + - uid: 1204 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 2 + - uid: 1205 + components: + - type: Transform + pos: -15.5,-36.5 + parent: 2 + - uid: 1206 + components: + - type: Transform + pos: -15.5,-37.5 + parent: 2 + - uid: 1207 + components: + - type: Transform + pos: -15.5,-38.5 + parent: 2 + - uid: 1208 + components: + - type: Transform + pos: -15.5,-39.5 + parent: 2 + - uid: 1209 + components: + - type: Transform + pos: -14.5,-39.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 2 + - uid: 1211 + components: + - type: Transform + pos: -14.5,-41.5 + parent: 2 + - uid: 1212 + components: + - type: Transform + pos: -14.5,-42.5 + parent: 2 + - uid: 1213 + components: + - type: Transform + pos: -14.5,-43.5 + parent: 2 + - uid: 1218 + components: + - type: Transform + pos: -17.5,-47.5 + parent: 2 + - uid: 1219 + components: + - type: Transform + pos: -21.5,-47.5 + parent: 2 + - uid: 1221 + components: + - type: Transform + pos: -13.5,-47.5 + parent: 2 + - uid: 1222 + components: + - type: Transform + pos: -22.5,-47.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: -12.5,-47.5 + parent: 2 + - uid: 1225 + components: + - type: Transform + pos: -19.5,-47.5 + parent: 2 + - uid: 1226 + components: + - type: Transform + pos: -18.5,-47.5 + parent: 2 + - uid: 1227 + components: + - type: Transform + pos: -20.5,-47.5 + parent: 2 + - uid: 1228 + components: + - type: Transform + pos: -12.5,-42.5 + parent: 2 + - uid: 1229 + components: + - type: Transform + pos: -12.5,-41.5 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: -12.5,-40.5 + parent: 2 + - uid: 1231 + components: + - type: Transform + pos: -12.5,-39.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + pos: -9.5,-43.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: -9.5,-42.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + pos: -9.5,-41.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + pos: -9.5,-40.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + pos: -9.5,-39.5 + parent: 2 + - uid: 1237 + components: + - type: Transform + pos: -10.5,-39.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: -11.5,-43.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + pos: -12.5,-43.5 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: -11.5,-39.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: -11.5,-47.5 + parent: 2 + - uid: 1244 + components: + - type: Transform + pos: -10.5,-47.5 + parent: 2 + - uid: 1245 + components: + - type: Transform + pos: -9.5,-47.5 + parent: 2 + - uid: 1246 + components: + - type: Transform + pos: -9.5,-46.5 + parent: 2 + - uid: 1247 + components: + - type: Transform + pos: -9.5,-44.5 + parent: 2 + - uid: 1272 + components: + - type: Transform + pos: -55.5,19.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + pos: -27.5,-36.5 + parent: 2 + - uid: 1277 + components: + - type: Transform + pos: -27.5,-37.5 + parent: 2 + - uid: 1278 + components: + - type: Transform + pos: -27.5,-38.5 + parent: 2 + - uid: 1279 + components: + - type: Transform + pos: -27.5,-39.5 + parent: 2 + - uid: 1280 + components: + - type: Transform + pos: -27.5,-40.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + pos: -27.5,-41.5 + parent: 2 + - uid: 1282 + components: + - type: Transform + pos: -27.5,-42.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: -27.5,-44.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + pos: -26.5,-44.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + pos: -25.5,-44.5 + parent: 2 + - uid: 1287 + components: + - type: Transform + pos: -24.5,-44.5 + parent: 2 + - uid: 1288 + components: + - type: Transform + pos: -23.5,-44.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + pos: -17.5,-50.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + pos: -12.5,-50.5 + parent: 2 + - uid: 1295 + components: + - type: Transform + pos: -13.5,-50.5 + parent: 2 + - uid: 1313 + components: + - type: Transform + pos: -12.5,-54.5 + parent: 2 + - uid: 1314 + components: + - type: Transform + pos: -13.5,-54.5 + parent: 2 + - uid: 1315 + components: + - type: Transform + pos: -17.5,-54.5 + parent: 2 + - uid: 1316 + components: + - type: Transform + pos: -16.5,-54.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + pos: -13.5,-58.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + pos: -12.5,-58.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + pos: -16.5,-58.5 + parent: 2 + - uid: 1328 + components: + - type: Transform + pos: -17.5,-58.5 + parent: 2 + - uid: 1333 + components: + - type: Transform + pos: -13.5,-61.5 + parent: 2 + - uid: 1334 + components: + - type: Transform + pos: -12.5,-61.5 + parent: 2 + - uid: 1335 + components: + - type: Transform + pos: -12.5,-60.5 + parent: 2 + - uid: 1336 + components: + - type: Transform + pos: -12.5,-59.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: -17.5,-61.5 + parent: 2 + - uid: 1340 + components: + - type: Transform + pos: -16.5,-61.5 + parent: 2 + - uid: 1343 + components: + - type: Transform + pos: -17.5,-63.5 + parent: 2 + - uid: 1344 + components: + - type: Transform + pos: -17.5,-62.5 + parent: 2 + - uid: 1346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,17.5 + parent: 2 + - uid: 1348 + components: + - type: Transform + pos: -17.5,-66.5 + parent: 2 + - uid: 1349 + components: + - type: Transform + pos: -17.5,-67.5 + parent: 2 + - uid: 1358 + components: + - type: Transform + pos: -21.5,-63.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + pos: -21.5,-62.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + pos: -21.5,-61.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + pos: -21.5,-66.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + pos: -21.5,-67.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + pos: -9.5,-58.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + pos: -6.5,-58.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-60.5 + parent: 2 + - uid: 1395 + components: + - type: Transform + pos: -9.5,-64.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: -8.5,-64.5 + parent: 2 + - uid: 1397 + components: + - type: Transform + pos: -7.5,-64.5 + parent: 2 + - uid: 1398 + components: + - type: Transform + pos: -6.5,-64.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: -6.5,-68.5 + parent: 2 + - uid: 1400 + components: + - type: Transform + pos: -6.5,-69.5 + parent: 2 + - uid: 1407 + components: + - type: Transform + pos: -17.5,-68.5 + parent: 2 + - uid: 1408 + components: + - type: Transform + pos: -17.5,-69.5 + parent: 2 + - uid: 1409 + components: + - type: Transform + pos: -9.5,-68.5 + parent: 2 + - uid: 1410 + components: + - type: Transform + pos: -9.5,-69.5 + parent: 2 + - uid: 1414 + components: + - type: Transform + pos: -9.5,-72.5 + parent: 2 + - uid: 1415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,21.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + pos: -6.5,-72.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + pos: -13.5,-72.5 + parent: 2 + - uid: 1421 + components: + - type: Transform + pos: -17.5,-72.5 + parent: 2 + - uid: 1454 + components: + - type: Transform + pos: -1.5,-35.5 + parent: 2 + - uid: 1455 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 2 + - uid: 1456 + components: + - type: Transform + pos: -2.5,-36.5 + parent: 2 + - uid: 1462 + components: + - type: Transform + pos: -7.5,-39.5 + parent: 2 + - uid: 1463 + components: + - type: Transform + pos: -7.5,-40.5 + parent: 2 + - uid: 1464 + components: + - type: Transform + pos: -7.5,-41.5 + parent: 2 + - uid: 1465 + components: + - type: Transform + pos: -7.5,-42.5 + parent: 2 + - uid: 1466 + components: + - type: Transform + pos: -7.5,-43.5 + parent: 2 + - uid: 1467 + components: + - type: Transform + pos: -7.5,-44.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + pos: -1.5,-42.5 + parent: 2 + - uid: 1480 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 2 + - uid: 1481 + components: + - type: Transform + pos: -1.5,-39.5 + parent: 2 + - uid: 1486 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 2 + - uid: 1491 + components: + - type: Transform + pos: -1.5,-45.5 + parent: 2 + - uid: 1492 + components: + - type: Transform + pos: -7.5,-45.5 + parent: 2 + - uid: 1493 + components: + - type: Transform + pos: -7.5,-46.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: -4.5,-45.5 + parent: 2 + - uid: 1501 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 2 + - uid: 1503 + components: + - type: Transform + pos: 2.5,-39.5 + parent: 2 + - uid: 1504 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 2 + - uid: 1505 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + pos: -45.5,-16.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + pos: -1.5,-31.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: -0.5,-31.5 + parent: 2 + - uid: 1511 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 2 + - uid: 1512 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 2 + - uid: 1528 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 2 + - uid: 1529 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + pos: 11.5,-35.5 + parent: 2 + - uid: 1531 + components: + - type: Transform + pos: 11.5,-36.5 + parent: 2 + - uid: 1532 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 2 + - uid: 1533 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 2 + - uid: 1538 + components: + - type: Transform + pos: 11.5,-34.5 + parent: 2 + - uid: 1539 + components: + - type: Transform + pos: 11.5,-33.5 + parent: 2 + - uid: 1544 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 2 + - uid: 1545 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 2 + - uid: 1546 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 2 + - uid: 1547 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 2 + - uid: 1577 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 2 + - uid: 1578 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 2 + - uid: 1580 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 2 + - uid: 1588 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 2 + - uid: 1589 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 2 + - uid: 1594 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 2 + - uid: 1595 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 2 + - uid: 1596 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 2 + - uid: 1598 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 2 + - uid: 1599 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 + - uid: 1600 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 2 + - uid: 1601 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 1602 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 2 + - uid: 1603 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 2 + - uid: 1604 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 1605 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 2 + - uid: 1606 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 2 + - uid: 1607 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 1608 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 2 + - uid: 1609 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - uid: 1610 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 1612 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - uid: 1614 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 2 + - uid: 1615 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 + - uid: 1628 + components: + - type: Transform + pos: -50.5,18.5 + parent: 2 + - uid: 1631 + components: + - type: Transform + pos: -62.5,24.5 + parent: 2 + - uid: 1632 + components: + - type: Transform + pos: -52.5,19.5 + parent: 2 + - uid: 1635 + components: + - type: Transform + pos: -51.5,19.5 + parent: 2 + - uid: 1636 + components: + - type: Transform + pos: -54.5,23.5 + parent: 2 + - uid: 1641 + components: + - type: Transform + pos: -42.5,12.5 + parent: 2 + - uid: 1642 + components: + - type: Transform + pos: -42.5,11.5 + parent: 2 + - uid: 1643 + components: + - type: Transform + pos: -42.5,10.5 + parent: 2 + - uid: 1644 + components: + - type: Transform + pos: -41.5,19.5 + parent: 2 + - uid: 1645 + components: + - type: Transform + pos: -39.5,19.5 + parent: 2 + - uid: 1646 + components: + - type: Transform + pos: -38.5,19.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + pos: -38.5,18.5 + parent: 2 + - uid: 1648 + components: + - type: Transform + pos: -42.5,19.5 + parent: 2 + - uid: 1649 + components: + - type: Transform + pos: -42.5,18.5 + parent: 2 + - uid: 1650 + components: + - type: Transform + pos: -43.5,18.5 + parent: 2 + - uid: 1651 + components: + - type: Transform + pos: -44.5,18.5 + parent: 2 + - uid: 1652 + components: + - type: Transform + pos: -45.5,18.5 + parent: 2 + - uid: 1653 + components: + - type: Transform + pos: -46.5,18.5 + parent: 2 + - uid: 1654 + components: + - type: Transform + pos: -47.5,18.5 + parent: 2 + - uid: 1655 + components: + - type: Transform + pos: -48.5,18.5 + parent: 2 + - uid: 1656 + components: + - type: Transform + pos: -49.5,18.5 + parent: 2 + - uid: 1658 + components: + - type: Transform + pos: -51.5,18.5 + parent: 2 + - uid: 1660 + components: + - type: Transform + pos: -51.5,2.5 + parent: 2 + - uid: 1661 + components: + - type: Transform + pos: -51.5,3.5 + parent: 2 + - uid: 1662 + components: + - type: Transform + pos: -51.5,4.5 + parent: 2 + - uid: 1663 + components: + - type: Transform + pos: -51.5,6.5 + parent: 2 + - uid: 1665 + components: + - type: Transform + pos: -51.5,8.5 + parent: 2 + - uid: 1666 + components: + - type: Transform + pos: -51.5,9.5 + parent: 2 + - uid: 1667 + components: + - type: Transform + pos: -51.5,10.5 + parent: 2 + - uid: 1668 + components: + - type: Transform + pos: -51.5,11.5 + parent: 2 + - uid: 1671 + components: + - type: Transform + pos: -51.5,14.5 + parent: 2 + - uid: 1672 + components: + - type: Transform + pos: -51.5,15.5 + parent: 2 + - uid: 1673 + components: + - type: Transform + pos: -51.5,16.5 + parent: 2 + - uid: 1681 + components: + - type: Transform + pos: -29.5,16.5 + parent: 2 + - uid: 1682 + components: + - type: Transform + pos: -30.5,16.5 + parent: 2 + - uid: 1683 + components: + - type: Transform + pos: -31.5,16.5 + parent: 2 + - uid: 1684 + components: + - type: Transform + pos: -37.5,18.5 + parent: 2 + - uid: 1685 + components: + - type: Transform + pos: -36.5,18.5 + parent: 2 + - uid: 1686 + components: + - type: Transform + pos: -35.5,18.5 + parent: 2 + - uid: 1687 + components: + - type: Transform + pos: -35.5,19.5 + parent: 2 + - uid: 1688 + components: + - type: Transform + pos: -34.5,19.5 + parent: 2 + - uid: 1689 + components: + - type: Transform + pos: -30.5,19.5 + parent: 2 + - uid: 1690 + components: + - type: Transform + pos: -29.5,19.5 + parent: 2 + - uid: 1691 + components: + - type: Transform + pos: -47.5,23.5 + parent: 2 + - uid: 1692 + components: + - type: Transform + pos: -51.5,23.5 + parent: 2 + - uid: 1698 + components: + - type: Transform + pos: -38.5,20.5 + parent: 2 + - uid: 1702 + components: + - type: Transform + pos: -38.5,21.5 + parent: 2 + - uid: 1703 + components: + - type: Transform + pos: -38.5,25.5 + parent: 2 + - uid: 1704 + components: + - type: Transform + pos: -38.5,26.5 + parent: 2 + - uid: 1705 + components: + - type: Transform + pos: -38.5,30.5 + parent: 2 + - uid: 1706 + components: + - type: Transform + pos: -38.5,31.5 + parent: 2 + - uid: 1707 + components: + - type: Transform + pos: -38.5,32.5 + parent: 2 + - uid: 1708 + components: + - type: Transform + pos: -38.5,33.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + pos: -54.5,27.5 + parent: 2 + - uid: 1717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,27.5 + parent: 2 + - uid: 1718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,27.5 + parent: 2 + - uid: 1719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,29.5 + parent: 2 + - uid: 1720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,27.5 + parent: 2 + - uid: 1745 + components: + - type: Transform + pos: -45.5,-44.5 + parent: 2 + - uid: 1773 + components: + - type: Transform + pos: -65.5,23.5 + parent: 2 + - uid: 1791 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 2 + - uid: 1792 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 2 + - uid: 1793 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 2 + - uid: 1794 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 2 + - uid: 1795 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 2 + - uid: 1796 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 2 + - uid: 1797 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 2 + - uid: 1798 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 2 + - uid: 1799 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 2 + - uid: 1800 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 2 + - uid: 1801 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 + - uid: 1806 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 2 + - uid: 1807 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 + - uid: 1808 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 2 + - uid: 1809 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 2 + - uid: 1817 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 2 + - uid: 1818 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 1882 + components: + - type: Transform + pos: -1.5,7.5 + parent: 2 + - uid: 1883 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 1891 + components: + - type: Transform + pos: -11.5,-50.5 + parent: 2 + - uid: 1892 + components: + - type: Transform + pos: -10.5,-50.5 + parent: 2 + - uid: 1893 + components: + - type: Transform + pos: -9.5,-50.5 + parent: 2 + - uid: 1894 + components: + - type: Transform + pos: -8.5,-50.5 + parent: 2 + - uid: 1895 + components: + - type: Transform + pos: -7.5,-50.5 + parent: 2 + - uid: 1896 + components: + - type: Transform + pos: -7.5,-49.5 + parent: 2 + - uid: 1897 + components: + - type: Transform + pos: -7.5,-48.5 + parent: 2 + - uid: 1898 + components: + - type: Transform + pos: -7.5,-47.5 + parent: 2 + - uid: 1901 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 2 + - uid: 1907 + components: + - type: Transform + pos: -27.5,-13.5 + parent: 2 + - uid: 1908 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - uid: 1909 + components: + - type: Transform + pos: -31.5,-13.5 + parent: 2 + - uid: 1910 + components: + - type: Transform + pos: -31.5,-12.5 + parent: 2 + - uid: 1911 + components: + - type: Transform + pos: -32.5,-12.5 + parent: 2 + - uid: 1917 + components: + - type: Transform + pos: -29.5,-6.5 + parent: 2 + - uid: 1918 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 2 + - uid: 1923 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 2 + - uid: 1924 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 1925 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 1926 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 2 + - uid: 1927 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 2 + - uid: 1928 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 2 + - uid: 1929 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 2 + - uid: 1930 + components: + - type: Transform + pos: -36.5,-6.5 + parent: 2 + - uid: 1931 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 2 + - uid: 1932 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 2 + - uid: 1943 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - uid: 1945 + components: + - type: Transform + pos: -44.5,-3.5 + parent: 2 + - uid: 1946 + components: + - type: Transform + pos: -44.5,-4.5 + parent: 2 + - uid: 1947 + components: + - type: Transform + pos: -44.5,-5.5 + parent: 2 + - uid: 1948 + components: + - type: Transform + pos: -44.5,-6.5 + parent: 2 + - uid: 1949 + components: + - type: Transform + pos: -44.5,-7.5 + parent: 2 + - uid: 1950 + components: + - type: Transform + pos: -44.5,-8.5 + parent: 2 + - uid: 1951 + components: + - type: Transform + pos: -48.5,-16.5 + parent: 2 + - uid: 1958 + components: + - type: Transform + pos: -35.5,-12.5 + parent: 2 + - uid: 1960 + components: + - type: Transform + pos: -36.5,-12.5 + parent: 2 + - uid: 1961 + components: + - type: Transform + pos: -36.5,-13.5 + parent: 2 + - uid: 1962 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 2 + - uid: 1968 + components: + - type: Transform + pos: -49.5,-5.5 + parent: 2 + - uid: 1969 + components: + - type: Transform + pos: -49.5,-6.5 + parent: 2 + - uid: 1970 + components: + - type: Transform + pos: -49.5,-7.5 + parent: 2 + - uid: 1971 + components: + - type: Transform + pos: -49.5,-8.5 + parent: 2 + - uid: 1972 + components: + - type: Transform + pos: -48.5,-8.5 + parent: 2 + - uid: 1978 + components: + - type: Transform + pos: -48.5,-5.5 + parent: 2 + - uid: 1979 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 2 + - uid: 1980 + components: + - type: Transform + pos: -46.5,-5.5 + parent: 2 + - uid: 1981 + components: + - type: Transform + pos: -45.5,-5.5 + parent: 2 + - uid: 1982 + components: + - type: Transform + pos: -49.5,-9.5 + parent: 2 + - uid: 1984 + components: + - type: Transform + pos: -49.5,-12.5 + parent: 2 + - uid: 1987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-8.5 + parent: 2 + - uid: 1989 + components: + - type: Transform + pos: -44.5,-12.5 + parent: 2 + - uid: 1990 + components: + - type: Transform + pos: -43.5,-12.5 + parent: 2 + - uid: 1991 + components: + - type: Transform + pos: -48.5,-14.5 + parent: 2 + - uid: 1992 + components: + - type: Transform + pos: -41.5,-12.5 + parent: 2 + - uid: 1993 + components: + - type: Transform + pos: -40.5,-12.5 + parent: 2 + - uid: 1999 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 2 + - uid: 2000 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 2 + - uid: 2001 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 2 + - uid: 2002 + components: + - type: Transform + pos: -36.5,-17.5 + parent: 2 + - uid: 2003 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 2 + - uid: 2004 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 2 + - uid: 2005 + components: + - type: Transform + pos: 33.5,22.5 + parent: 2 + - uid: 2008 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 2 + - uid: 2009 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 2 + - uid: 2010 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 2 + - uid: 2011 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 2 + - uid: 2012 + components: + - type: Transform + pos: -28.5,-17.5 + parent: 2 + - uid: 2013 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 2 + - uid: 2014 + components: + - type: Transform + pos: -30.5,-17.5 + parent: 2 + - uid: 2015 + components: + - type: Transform + pos: -31.5,-17.5 + parent: 2 + - uid: 2016 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 2017 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 2 + - uid: 2018 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 2 + - uid: 2021 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 2 + - uid: 2022 + components: + - type: Transform + pos: 33.5,20.5 + parent: 2 + - uid: 2023 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 2 + - uid: 2024 + components: + - type: Transform + pos: -25.5,-23.5 + parent: 2 + - uid: 2035 + components: + - type: Transform + pos: -25.5,-25.5 + parent: 2 + - uid: 2036 + components: + - type: Transform + pos: -36.5,-18.5 + parent: 2 + - uid: 2037 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 2 + - uid: 2038 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 2 + - uid: 2039 + components: + - type: Transform + pos: -36.5,-21.5 + parent: 2 + - uid: 2040 + components: + - type: Transform + pos: -36.5,-22.5 + parent: 2 + - uid: 2041 + components: + - type: Transform + pos: -36.5,-23.5 + parent: 2 + - uid: 2042 + components: + - type: Transform + pos: -35.5,-23.5 + parent: 2 + - uid: 2043 + components: + - type: Transform + pos: -34.5,-23.5 + parent: 2 + - uid: 2044 + components: + - type: Transform + pos: -33.5,-23.5 + parent: 2 + - uid: 2046 + components: + - type: Transform + pos: -31.5,-23.5 + parent: 2 + - uid: 2047 + components: + - type: Transform + pos: -30.5,-23.5 + parent: 2 + - uid: 2048 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 2 + - uid: 2049 + components: + - type: Transform + pos: 35.5,20.5 + parent: 2 + - uid: 2054 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 2 + - uid: 2055 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 2 + - uid: 2057 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - uid: 2058 + components: + - type: Transform + pos: -28.5,-22.5 + parent: 2 + - uid: 2059 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 2 + - uid: 2060 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 2 + - uid: 2084 + components: + - type: Transform + pos: -45.5,-50.5 + parent: 2 + - uid: 2091 + components: + - type: Transform + pos: -39.5,-19.5 + parent: 2 + - uid: 2092 + components: + - type: Transform + pos: -39.5,-20.5 + parent: 2 + - uid: 2093 + components: + - type: Transform + pos: -39.5,-21.5 + parent: 2 + - uid: 2094 + components: + - type: Transform + pos: -39.5,-22.5 + parent: 2 + - uid: 2098 + components: + - type: Transform + pos: -38.5,-22.5 + parent: 2 + - uid: 2101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-1.5 + parent: 2 + - uid: 2103 + components: + - type: Transform + pos: -31.5,8.5 + parent: 2 + - uid: 2108 + components: + - type: Transform + pos: -41.5,-19.5 + parent: 2 + - uid: 2109 + components: + - type: Transform + pos: -42.5,-19.5 + parent: 2 + - uid: 2110 + components: + - type: Transform + pos: -42.5,-20.5 + parent: 2 + - uid: 2111 + components: + - type: Transform + pos: -42.5,-21.5 + parent: 2 + - uid: 2112 + components: + - type: Transform + pos: -41.5,-22.5 + parent: 2 + - uid: 2113 + components: + - type: Transform + pos: -42.5,-22.5 + parent: 2 + - uid: 2114 + components: + - type: Transform + pos: -40.5,-22.5 + parent: 2 + - uid: 2124 + components: + - type: Transform + pos: -57.5,-2.5 + parent: 2 + - uid: 2159 + components: + - type: Transform + pos: -14.5,1.5 + parent: 2 + - uid: 2175 + components: + - type: Transform + pos: -52.5,-3.5 + parent: 2 + - uid: 2177 + components: + - type: Transform + pos: -52.5,-4.5 + parent: 2 + - uid: 2178 + components: + - type: Transform + pos: -52.5,-5.5 + parent: 2 + - uid: 2179 + components: + - type: Transform + pos: -52.5,-6.5 + parent: 2 + - uid: 2180 + components: + - type: Transform + pos: -52.5,-7.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + pos: -53.5,-7.5 + parent: 2 + - uid: 2182 + components: + - type: Transform + pos: -54.5,-7.5 + parent: 2 + - uid: 2183 + components: + - type: Transform + pos: -55.5,-7.5 + parent: 2 + - uid: 2184 + components: + - type: Transform + pos: -56.5,-7.5 + parent: 2 + - uid: 2185 + components: + - type: Transform + pos: -57.5,-7.5 + parent: 2 + - uid: 2186 + components: + - type: Transform + pos: -57.5,-3.5 + parent: 2 + - uid: 2187 + components: + - type: Transform + pos: -57.5,-4.5 + parent: 2 + - uid: 2188 + components: + - type: Transform + pos: -57.5,-5.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: -57.5,-6.5 + parent: 2 + - uid: 2190 + components: + - type: Transform + pos: -29.5,1.5 + parent: 2 + - uid: 2197 + components: + - type: Transform + pos: -56.5,-2.5 + parent: 2 + - uid: 2205 + components: + - type: Transform + pos: -14.5,2.5 + parent: 2 + - uid: 2240 + components: + - type: Transform + pos: -48.5,-15.5 + parent: 2 + - uid: 2241 + components: + - type: Transform + pos: -41.5,-17.5 + parent: 2 + - uid: 2242 + components: + - type: Transform + pos: -43.5,-17.5 + parent: 2 + - uid: 2243 + components: + - type: Transform + pos: -42.5,-17.5 + parent: 2 + - uid: 2262 + components: + - type: Transform + pos: -62.5,-12.5 + parent: 2 + - uid: 2263 + components: + - type: Transform + pos: -63.5,-12.5 + parent: 2 + - uid: 2264 + components: + - type: Transform + pos: -62.5,-13.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: -59.5,-11.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + pos: -59.5,-12.5 + parent: 2 + - uid: 2267 + components: + - type: Transform + pos: -59.5,-13.5 + parent: 2 + - uid: 2268 + components: + - type: Transform + pos: -59.5,-14.5 + parent: 2 + - uid: 2269 + components: + - type: Transform + pos: -59.5,-15.5 + parent: 2 + - uid: 2270 + components: + - type: Transform + pos: -58.5,-15.5 + parent: 2 + - uid: 2271 + components: + - type: Transform + pos: -57.5,-15.5 + parent: 2 + - uid: 2272 + components: + - type: Transform + pos: -56.5,-15.5 + parent: 2 + - uid: 2273 + components: + - type: Transform + pos: -55.5,-15.5 + parent: 2 + - uid: 2274 + components: + - type: Transform + pos: -54.5,-15.5 + parent: 2 + - uid: 2275 + components: + - type: Transform + pos: -54.5,-14.5 + parent: 2 + - uid: 2276 + components: + - type: Transform + pos: -54.5,-13.5 + parent: 2 + - uid: 2277 + components: + - type: Transform + pos: -54.5,-12.5 + parent: 2 + - uid: 2278 + components: + - type: Transform + pos: -54.5,-11.5 + parent: 2 + - uid: 2279 + components: + - type: Transform + pos: -55.5,-11.5 + parent: 2 + - uid: 2280 + components: + - type: Transform + pos: -58.5,-11.5 + parent: 2 + - uid: 2281 + components: + - type: Transform + pos: -57.5,-11.5 + parent: 2 + - uid: 2282 + components: + - type: Transform + pos: -53.5,-11.5 + parent: 2 + - uid: 2284 + components: + - type: Transform + pos: -51.5,-11.5 + parent: 2 + - uid: 2287 + components: + - type: Transform + pos: -60.5,-32.5 + parent: 2 + - uid: 2288 + components: + - type: Transform + pos: -60.5,-31.5 + parent: 2 + - uid: 2289 + components: + - type: Transform + pos: -60.5,-30.5 + parent: 2 + - uid: 2290 + components: + - type: Transform + pos: -59.5,-30.5 + parent: 2 + - uid: 2291 + components: + - type: Transform + pos: -59.5,-29.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + pos: -59.5,-28.5 + parent: 2 + - uid: 2293 + components: + - type: Transform + pos: -59.5,-27.5 + parent: 2 + - uid: 2294 + components: + - type: Transform + pos: -59.5,-26.5 + parent: 2 + - uid: 2295 + components: + - type: Transform + pos: -59.5,-25.5 + parent: 2 + - uid: 2296 + components: + - type: Transform + pos: -60.5,-25.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + pos: -61.5,-25.5 + parent: 2 + - uid: 2298 + components: + - type: Transform + pos: -62.5,-25.5 + parent: 2 + - uid: 2299 + components: + - type: Transform + pos: -63.5,-25.5 + parent: 2 + - uid: 2300 + components: + - type: Transform + pos: -63.5,-19.5 + parent: 2 + - uid: 2301 + components: + - type: Transform + pos: -62.5,-19.5 + parent: 2 + - uid: 2302 + components: + - type: Transform + pos: -61.5,-19.5 + parent: 2 + - uid: 2303 + components: + - type: Transform + pos: -61.5,-18.5 + parent: 2 + - uid: 2304 + components: + - type: Transform + pos: -60.5,-18.5 + parent: 2 + - uid: 2305 + components: + - type: Transform + pos: -59.5,-18.5 + parent: 2 + - uid: 2307 + components: + - type: Transform + pos: -61.5,-17.5 + parent: 2 + - uid: 2308 + components: + - type: Transform + pos: -61.5,-16.5 + parent: 2 + - uid: 2309 + components: + - type: Transform + pos: -62.5,-16.5 + parent: 2 + - uid: 2324 + components: + - type: Transform + pos: -59.5,-22.5 + parent: 2 + - uid: 2327 + components: + - type: Transform + pos: -66.5,-12.5 + parent: 2 + - uid: 2328 + components: + - type: Transform + pos: -67.5,-12.5 + parent: 2 + - uid: 2329 + components: + - type: Transform + pos: -67.5,-11.5 + parent: 2 + - uid: 2330 + components: + - type: Transform + pos: -67.5,-10.5 + parent: 2 + - uid: 2331 + components: + - type: Transform + pos: -67.5,-9.5 + parent: 2 + - uid: 2333 + components: + - type: Transform + pos: -67.5,-7.5 + parent: 2 + - uid: 2334 + components: + - type: Transform + pos: -67.5,-6.5 + parent: 2 + - uid: 2335 + components: + - type: Transform + pos: -68.5,-10.5 + parent: 2 + - uid: 2336 + components: + - type: Transform + pos: -71.5,-10.5 + parent: 2 + - uid: 2337 + components: + - type: Transform + pos: -72.5,-10.5 + parent: 2 + - uid: 2340 + components: + - type: Transform + pos: -72.5,-7.5 + parent: 2 + - uid: 2341 + components: + - type: Transform + pos: -72.5,-6.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: -71.5,-6.5 + parent: 2 + - uid: 2343 + components: + - type: Transform + pos: -68.5,-6.5 + parent: 2 + - uid: 2358 + components: + - type: Transform + pos: -73.5,-7.5 + parent: 2 + - uid: 2359 + components: + - type: Transform + pos: -74.5,-7.5 + parent: 2 + - uid: 2360 + components: + - type: Transform + pos: -75.5,-7.5 + parent: 2 + - uid: 2361 + components: + - type: Transform + pos: -76.5,-7.5 + parent: 2 + - uid: 2362 + components: + - type: Transform + pos: -55.5,-38.5 + parent: 2 + - uid: 2363 + components: + - type: Transform + pos: -76.5,-4.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - uid: 2365 + components: + - type: Transform + pos: -76.5,-6.5 + parent: 2 + - uid: 2369 + components: + - type: Transform + pos: -64.5,-30.5 + parent: 2 + - uid: 2370 + components: + - type: Transform + pos: -65.5,-30.5 + parent: 2 + - uid: 2371 + components: + - type: Transform + pos: -66.5,-30.5 + parent: 2 + - uid: 2372 + components: + - type: Transform + pos: -66.5,-31.5 + parent: 2 + - uid: 2373 + components: + - type: Transform + pos: -66.5,-32.5 + parent: 2 + - uid: 2377 + components: + - type: Transform + pos: -66.5,-36.5 + parent: 2 + - uid: 2378 + components: + - type: Transform + pos: -66.5,-37.5 + parent: 2 + - uid: 2379 + components: + - type: Transform + pos: -66.5,-38.5 + parent: 2 + - uid: 2380 + components: + - type: Transform + pos: -65.5,-38.5 + parent: 2 + - uid: 2381 + components: + - type: Transform + pos: -64.5,-38.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + pos: -60.5,-38.5 + parent: 2 + - uid: 2386 + components: + - type: Transform + pos: -60.5,-37.5 + parent: 2 + - uid: 2387 + components: + - type: Transform + pos: -60.5,-36.5 + parent: 2 + - uid: 2391 + components: + - type: Transform + pos: -55.5,-36.5 + parent: 2 + - uid: 2394 + components: + - type: Transform + pos: -55.5,-39.5 + parent: 2 + - uid: 2396 + components: + - type: Transform + pos: -55.5,-41.5 + parent: 2 + - uid: 2397 + components: + - type: Transform + pos: -55.5,-42.5 + parent: 2 + - uid: 2398 + components: + - type: Transform + pos: -56.5,-42.5 + parent: 2 + - uid: 2399 + components: + - type: Transform + pos: -60.5,-42.5 + parent: 2 + - uid: 2406 + components: + - type: Transform + pos: -55.5,-43.5 + parent: 2 + - uid: 2407 + components: + - type: Transform + pos: -55.5,-44.5 + parent: 2 + - uid: 2408 + components: + - type: Transform + pos: -55.5,-45.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + pos: -54.5,-45.5 + parent: 2 + - uid: 2410 + components: + - type: Transform + pos: -53.5,-45.5 + parent: 2 + - uid: 2411 + components: + - type: Transform + pos: -52.5,-45.5 + parent: 2 + - uid: 2444 + components: + - type: Transform + pos: -45.5,-45.5 + parent: 2 + - uid: 2445 + components: + - type: Transform + pos: -45.5,-46.5 + parent: 2 + - uid: 2447 + components: + - type: Transform + pos: -46.5,-47.5 + parent: 2 + - uid: 2448 + components: + - type: Transform + pos: -47.5,-47.5 + parent: 2 + - uid: 2449 + components: + - type: Transform + pos: -47.5,-46.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: -47.5,-45.5 + parent: 2 + - uid: 2451 + components: + - type: Transform + pos: -47.5,-44.5 + parent: 2 + - uid: 2453 + components: + - type: Transform + pos: -52.5,-46.5 + parent: 2 + - uid: 2454 + components: + - type: Transform + pos: -52.5,-47.5 + parent: 2 + - uid: 2455 + components: + - type: Transform + pos: -52.5,-48.5 + parent: 2 + - uid: 2461 + components: + - type: Transform + pos: -48.5,-50.5 + parent: 2 + - uid: 2466 + components: + - type: Transform + pos: -44.5,-51.5 + parent: 2 + - uid: 2467 + components: + - type: Transform + pos: -44.5,-52.5 + parent: 2 + - uid: 2468 + components: + - type: Transform + pos: -44.5,-53.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + pos: -43.5,-53.5 + parent: 2 + - uid: 2473 + components: + - type: Transform + pos: -39.5,-53.5 + parent: 2 + - uid: 2474 + components: + - type: Transform + pos: -39.5,-52.5 + parent: 2 + - uid: 2475 + components: + - type: Transform + pos: -38.5,-52.5 + parent: 2 + - uid: 2479 + components: + - type: Transform + pos: -34.5,-52.5 + parent: 2 + - uid: 2480 + components: + - type: Transform + pos: -34.5,-51.5 + parent: 2 + - uid: 2481 + components: + - type: Transform + pos: -34.5,-50.5 + parent: 2 + - uid: 2482 + components: + - type: Transform + pos: -35.5,-50.5 + parent: 2 + - uid: 2483 + components: + - type: Transform + pos: -36.5,-50.5 + parent: 2 + - uid: 2484 + components: + - type: Transform + pos: -37.5,-50.5 + parent: 2 + - uid: 2485 + components: + - type: Transform + pos: -38.5,-50.5 + parent: 2 + - uid: 2493 + components: + - type: Transform + pos: -19.5,-50.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + pos: -18.5,-50.5 + parent: 2 + - uid: 2495 + components: + - type: Transform + pos: -33.5,-50.5 + parent: 2 + - uid: 2497 + components: + - type: Transform + pos: -31.5,-50.5 + parent: 2 + - uid: 2498 + components: + - type: Transform + pos: -30.5,-50.5 + parent: 2 + - uid: 2499 + components: + - type: Transform + pos: -29.5,-50.5 + parent: 2 + - uid: 2500 + components: + - type: Transform + pos: -28.5,-50.5 + parent: 2 + - uid: 2501 + components: + - type: Transform + pos: -27.5,-50.5 + parent: 2 + - uid: 2502 + components: + - type: Transform + pos: -26.5,-50.5 + parent: 2 + - uid: 2503 + components: + - type: Transform + pos: -25.5,-50.5 + parent: 2 + - uid: 2504 + components: + - type: Transform + pos: -24.5,-50.5 + parent: 2 + - uid: 2505 + components: + - type: Transform + pos: -23.5,-50.5 + parent: 2 + - uid: 2506 + components: + - type: Transform + pos: -24.5,-49.5 + parent: 2 + - uid: 2507 + components: + - type: Transform + pos: -24.5,-48.5 + parent: 2 + - uid: 2508 + components: + - type: Transform + pos: -24.5,-47.5 + parent: 2 + - uid: 2509 + components: + - type: Transform + pos: -26.5,-47.5 + parent: 2 + - uid: 2510 + components: + - type: Transform + pos: -27.5,-47.5 + parent: 2 + - uid: 2511 + components: + - type: Transform + pos: -27.5,-48.5 + parent: 2 + - uid: 2512 + components: + - type: Transform + pos: -27.5,-49.5 + parent: 2 + - uid: 2514 + components: + - type: Transform + pos: -39.5,-36.5 + parent: 2 + - uid: 2515 + components: + - type: Transform + pos: -38.5,-36.5 + parent: 2 + - uid: 2516 + components: + - type: Transform + pos: -37.5,-36.5 + parent: 2 + - uid: 2517 + components: + - type: Transform + pos: -36.5,-36.5 + parent: 2 + - uid: 2518 + components: + - type: Transform + pos: -35.5,-36.5 + parent: 2 + - uid: 2519 + components: + - type: Transform + pos: -34.5,-36.5 + parent: 2 + - uid: 2520 + components: + - type: Transform + pos: -34.5,-37.5 + parent: 2 + - uid: 2521 + components: + - type: Transform + pos: -34.5,-38.5 + parent: 2 + - uid: 2522 + components: + - type: Transform + pos: -32.5,-37.5 + parent: 2 + - uid: 2523 + components: + - type: Transform + pos: -31.5,-37.5 + parent: 2 + - uid: 2524 + components: + - type: Transform + pos: -30.5,-37.5 + parent: 2 + - uid: 2525 + components: + - type: Transform + pos: -29.5,-37.5 + parent: 2 + - uid: 2526 + components: + - type: Transform + pos: -28.5,-37.5 + parent: 2 + - uid: 2530 + components: + - type: Transform + pos: -29.5,2.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,33.5 + parent: 2 + - uid: 2534 + components: + - type: Transform + pos: -35.5,-47.5 + parent: 2 + - uid: 2535 + components: + - type: Transform + pos: -36.5,-47.5 + parent: 2 + - uid: 2536 + components: + - type: Transform + pos: -37.5,-47.5 + parent: 2 + - uid: 2537 + components: + - type: Transform + pos: -38.5,-47.5 + parent: 2 + - uid: 2549 + components: + - type: Transform + pos: -39.5,-39.5 + parent: 2 + - uid: 2550 + components: + - type: Transform + pos: -38.5,-39.5 + parent: 2 + - uid: 2553 + components: + - type: Transform + pos: -38.5,-43.5 + parent: 2 + - uid: 2554 + components: + - type: Transform + pos: -37.5,-43.5 + parent: 2 + - uid: 2555 + components: + - type: Transform + pos: -36.5,-43.5 + parent: 2 + - uid: 2559 + components: + - type: Transform + pos: -36.5,-39.5 + parent: 2 + - uid: 2562 + components: + - type: Transform + pos: -35.5,-39.5 + parent: 2 + - uid: 2563 + components: + - type: Transform + pos: -34.5,-39.5 + parent: 2 + - uid: 2584 + components: + - type: Transform + pos: -35.5,-43.5 + parent: 2 + - uid: 2588 + components: + - type: Transform + pos: -35.5,-44.5 + parent: 2 + - uid: 2590 + components: + - type: Transform + pos: -35.5,-46.5 + parent: 2 + - uid: 2603 + components: + - type: Transform + pos: -30.5,-51.5 + parent: 2 + - uid: 2604 + components: + - type: Transform + pos: -30.5,-52.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + pos: -30.5,-53.5 + parent: 2 + - uid: 2606 + components: + - type: Transform + pos: -30.5,-54.5 + parent: 2 + - uid: 2607 + components: + - type: Transform + pos: -31.5,-54.5 + parent: 2 + - uid: 2608 + components: + - type: Transform + pos: -34.5,-53.5 + parent: 2 + - uid: 2609 + components: + - type: Transform + pos: -34.5,-54.5 + parent: 2 + - uid: 2610 + components: + - type: Transform + pos: -33.5,-54.5 + parent: 2 + - uid: 2699 + components: + - type: Transform + pos: -34.5,6.5 + parent: 2 + - uid: 2700 + components: + - type: Transform + pos: -35.5,6.5 + parent: 2 + - uid: 2839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 2 + - uid: 2927 + components: + - type: Transform + pos: -35.5,2.5 + parent: 2 + - uid: 2973 + components: + - type: Transform + pos: -48.5,-13.5 + parent: 2 + - uid: 3216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-50.5 + parent: 2 + - uid: 3519 + components: + - type: Transform + pos: 10.5,9.5 + parent: 2 + - uid: 3552 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 2 + - uid: 3896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,5.5 + parent: 2 + - uid: 3996 + components: + - type: Transform + pos: -44.5,-17.5 + parent: 2 + - uid: 4031 + components: + - type: Transform + pos: -44.5,-16.5 + parent: 2 + - uid: 4197 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 + - uid: 4198 + components: + - type: Transform + pos: 14.5,6.5 + parent: 2 + - uid: 4445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,35.5 + parent: 2 + - uid: 4449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,40.5 + parent: 2 + - uid: 4452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,35.5 + parent: 2 + - uid: 4469 + components: + - type: Transform + pos: 8.5,22.5 + parent: 2 + - uid: 4541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 2 + - uid: 4708 + components: + - type: Transform + pos: -36.5,6.5 + parent: 2 + - uid: 4775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,12.5 + parent: 2 + - uid: 4777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,12.5 + parent: 2 + - uid: 4789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,34.5 + parent: 2 + - uid: 4791 + components: + - type: Transform + pos: -30.5,20.5 + parent: 2 + - uid: 4802 + components: + - type: Transform + pos: -42.5,27.5 + parent: 2 + - uid: 4803 + components: + - type: Transform + pos: -42.5,29.5 + parent: 2 + - uid: 4804 + components: + - type: Transform + pos: -42.5,25.5 + parent: 2 + - uid: 4808 + components: + - type: Transform + pos: -42.5,31.5 + parent: 2 + - uid: 4809 + components: + - type: Transform + pos: -42.5,33.5 + parent: 2 + - uid: 4817 + components: + - type: Transform + pos: -44.5,19.5 + parent: 2 + - uid: 4834 + components: + - type: Transform + pos: -44.5,29.5 + parent: 2 + - uid: 4835 + components: + - type: Transform + pos: -44.5,23.5 + parent: 2 + - uid: 4837 + components: + - type: Transform + pos: -43.5,23.5 + parent: 2 + - uid: 4852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,9.5 + parent: 2 + - uid: 4854 + components: + - type: Transform + pos: -39.5,6.5 + parent: 2 + - uid: 4904 + components: + - type: Transform + pos: -54.5,13.5 + parent: 2 + - uid: 4914 + components: + - type: Transform + pos: -37.5,-52.5 + parent: 2 + - uid: 5349 + components: + - type: Transform + pos: -52.5,12.5 + parent: 2 + - uid: 5351 + components: + - type: Transform + pos: -54.5,12.5 + parent: 2 + - uid: 5495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,16.5 + parent: 2 + - uid: 5518 + components: + - type: Transform + pos: -57.5,19.5 + parent: 2 + - uid: 5519 + components: + - type: Transform + pos: -60.5,19.5 + parent: 2 + - uid: 5562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-20.5 + parent: 2 + - uid: 5606 + components: + - type: Transform + pos: 36.5,0.5 + parent: 2 + - uid: 5614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,16.5 + parent: 2 + - uid: 5617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,43.5 + parent: 2 + - uid: 5690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,34.5 + parent: 2 + - uid: 5816 + components: + - type: Transform + pos: -46.5,-22.5 + parent: 2 + - uid: 5834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,35.5 + parent: 2 + - uid: 5837 + components: + - type: Transform + pos: -46.5,-21.5 + parent: 2 + - uid: 5838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,43.5 + parent: 2 + - uid: 5839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,43.5 + parent: 2 + - uid: 5849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,41.5 + parent: 2 + - uid: 5850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,43.5 + parent: 2 + - uid: 5861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,40.5 + parent: 2 + - uid: 5862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,42.5 + parent: 2 + - uid: 5871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,41.5 + parent: 2 + - uid: 5901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,43.5 + parent: 2 + - uid: 5903 + components: + - type: Transform + pos: -35.5,-53.5 + parent: 2 + - uid: 5913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,43.5 + parent: 2 + - uid: 5916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,29.5 + parent: 2 + - uid: 5931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,40.5 + parent: 2 + - uid: 5940 + components: + - type: Transform + pos: -69.5,23.5 + parent: 2 + - uid: 5941 + components: + - type: Transform + pos: -62.5,19.5 + parent: 2 + - uid: 5950 + components: + - type: Transform + pos: -44.5,33.5 + parent: 2 + - uid: 5953 + components: + - type: Transform + pos: -46.5,-20.5 + parent: 2 + - uid: 5959 + components: + - type: Transform + pos: -46.5,-19.5 + parent: 2 + - uid: 5960 + components: + - type: Transform + pos: -68.5,23.5 + parent: 2 + - uid: 5962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,29.5 + parent: 2 + - uid: 5990 + components: + - type: Transform + pos: -41.5,23.5 + parent: 2 + - uid: 6022 + components: + - type: Transform + pos: -50.5,-22.5 + parent: 2 + - uid: 6028 + components: + - type: Transform + pos: -49.5,-22.5 + parent: 2 + - uid: 6037 + components: + - type: Transform + pos: -48.5,-22.5 + parent: 2 + - uid: 6049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,31.5 + parent: 2 + - uid: 6051 + components: + - type: Transform + pos: -47.5,-22.5 + parent: 2 + - uid: 6064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,29.5 + parent: 2 + - uid: 6067 + components: + - type: Transform + pos: -50.5,-18.5 + parent: 2 + - uid: 6068 + components: + - type: Transform + pos: -49.5,-18.5 + parent: 2 + - uid: 6069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,31.5 + parent: 2 + - uid: 6073 + components: + - type: Transform + pos: -48.5,-18.5 + parent: 2 + - uid: 6074 + components: + - type: Transform + pos: -62.5,20.5 + parent: 2 + - uid: 6076 + components: + - type: Transform + pos: -41.5,33.5 + parent: 2 + - uid: 6098 + components: + - type: Transform + pos: -47.5,-18.5 + parent: 2 + - uid: 6101 + components: + - type: Transform + pos: -46.5,-18.5 + parent: 2 + - uid: 6103 + components: + - type: Transform + pos: -50.5,-19.5 + parent: 2 + - uid: 6106 + components: + - type: Transform + pos: -66.5,23.5 + parent: 2 + - uid: 6108 + components: + - type: Transform + pos: -38.5,22.5 + parent: 2 + - uid: 6109 + components: + - type: Transform + pos: -38.5,23.5 + parent: 2 + - uid: 6110 + components: + - type: Transform + pos: -38.5,24.5 + parent: 2 + - uid: 6114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,15.5 + parent: 2 + - uid: 6115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,10.5 + parent: 2 + - uid: 6116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,10.5 + parent: 2 + - uid: 6117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-3.5 + parent: 2 + - uid: 6118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,-3.5 + parent: 2 + - uid: 6119 + components: + - type: Transform + pos: -67.5,23.5 + parent: 2 + - uid: 6127 + components: + - type: Transform + pos: -33.5,21.5 + parent: 2 + - uid: 6128 + components: + - type: Transform + pos: -34.5,21.5 + parent: 2 + - uid: 6130 + components: + - type: Transform + pos: -32.5,21.5 + parent: 2 + - uid: 6131 + components: + - type: Transform + pos: -31.5,21.5 + parent: 2 + - uid: 6132 + components: + - type: Transform + pos: -30.5,21.5 + parent: 2 + - uid: 6135 + components: + - type: Transform + pos: -48.5,41.5 + parent: 2 + - uid: 6137 + components: + - type: Transform + pos: -53.5,38.5 + parent: 2 + - uid: 6138 + components: + - type: Transform + pos: -53.5,41.5 + parent: 2 + - uid: 6143 + components: + - type: Transform + pos: -31.5,19.5 + parent: 2 + - uid: 6148 + components: + - type: Transform + pos: -44.5,34.5 + parent: 2 + - uid: 6151 + components: + - type: Transform + pos: -57.5,34.5 + parent: 2 + - uid: 6161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-7.5 + parent: 2 + - uid: 6165 + components: + - type: Transform + pos: -44.5,35.5 + parent: 2 + - uid: 6167 + components: + - type: Transform + pos: -33.5,19.5 + parent: 2 + - uid: 6170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-6.5 + parent: 2 + - uid: 6171 + components: + - type: Transform + pos: -57.5,35.5 + parent: 2 + - uid: 6172 + components: + - type: Transform + pos: -57.5,36.5 + parent: 2 + - uid: 6173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-4.5 + parent: 2 + - uid: 6181 + components: + - type: Transform + pos: -46.5,35.5 + parent: 2 + - uid: 6182 + components: + - type: Transform + pos: -57.5,28.5 + parent: 2 + - uid: 6185 + components: + - type: Transform + pos: -57.5,29.5 + parent: 2 + - uid: 6195 + components: + - type: Transform + pos: -46.5,36.5 + parent: 2 + - uid: 6200 + components: + - type: Transform + pos: -57.5,30.5 + parent: 2 + - uid: 6201 + components: + - type: Transform + pos: -57.5,31.5 + parent: 2 + - uid: 6204 + components: + - type: Transform + pos: -57.5,23.5 + parent: 2 + - uid: 6205 + components: + - type: Transform + pos: -57.5,33.5 + parent: 2 + - uid: 6218 + components: + - type: Transform + pos: -55.5,27.5 + parent: 2 + - uid: 6223 + components: + - type: Transform + pos: -58.5,24.5 + parent: 2 + - uid: 6224 + components: + - type: Transform + pos: -57.5,32.5 + parent: 2 + - uid: 6225 + components: + - type: Transform + pos: -56.5,27.5 + parent: 2 + - uid: 6226 + components: + - type: Transform + pos: -58.5,23.5 + parent: 2 + - uid: 6235 + components: + - type: Transform + pos: -55.5,23.5 + parent: 2 + - uid: 6237 + components: + - type: Transform + pos: -56.5,23.5 + parent: 2 + - uid: 6238 + components: + - type: Transform + pos: -58.5,26.5 + parent: 2 + - uid: 6266 + components: + - type: Transform + pos: -58.5,27.5 + parent: 2 + - uid: 6292 + components: + - type: Transform + pos: -56.5,36.5 + parent: 2 + - uid: 6302 + components: + - type: Transform + pos: -47.5,36.5 + parent: 2 + - uid: 6303 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 2 + - uid: 6304 + components: + - type: Transform + pos: -53.5,36.5 + parent: 2 + - uid: 6317 + components: + - type: Transform + pos: -40.5,-4.5 + parent: 2 + - uid: 6326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,-7.5 + parent: 2 + - uid: 6327 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 2 + - uid: 6343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,31.5 + parent: 2 + - uid: 6353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-5.5 + parent: 2 + - uid: 6360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,25.5 + parent: 2 + - uid: 6392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,25.5 + parent: 2 + - uid: 6417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-42.5 + parent: 2 + - uid: 6439 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 2 + - uid: 6440 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 2 + - uid: 6446 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - uid: 6454 + components: + - type: Transform + pos: -40.5,-16.5 + parent: 2 + - uid: 6463 + components: + - type: Transform + pos: 36.5,2.5 + parent: 2 + - uid: 6474 + components: + - type: Transform + pos: -16.5,-47.5 + parent: 2 + - uid: 6510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,15.5 + parent: 2 + - uid: 6526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-65.5 + parent: 2 + - uid: 6528 + components: + - type: Transform + pos: -67.5,-8.5 + parent: 2 + - uid: 6580 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 6583 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 6584 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 + - uid: 6622 + components: + - type: Transform + pos: -55.5,1.5 + parent: 2 + - uid: 6649 + components: + - type: Transform + pos: -55.5,5.5 + parent: 2 + - uid: 6650 + components: + - type: Transform + pos: -55.5,3.5 + parent: 2 + - uid: 6651 + components: + - type: Transform + pos: -55.5,6.5 + parent: 2 + - uid: 6652 + components: + - type: Transform + pos: -55.5,7.5 + parent: 2 + - uid: 6653 + components: + - type: Transform + pos: -55.5,4.5 + parent: 2 + - uid: 6654 + components: + - type: Transform + pos: -54.5,7.5 + parent: 2 + - uid: 6655 + components: + - type: Transform + pos: -52.5,7.5 + parent: 2 + - uid: 6656 + components: + - type: Transform + pos: -53.5,7.5 + parent: 2 + - uid: 6657 + components: + - type: Transform + pos: -52.5,5.5 + parent: 2 + - uid: 6659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,31.5 + parent: 2 + - uid: 6719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,35.5 + parent: 2 + - uid: 6766 + components: + - type: Transform + pos: -64.5,23.5 + parent: 2 + - uid: 6798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,16.5 + parent: 2 + - uid: 6917 + components: + - type: Transform + pos: -42.5,-36.5 + parent: 2 + - uid: 6920 + components: + - type: Transform + pos: -37.5,-12.5 + parent: 2 + - uid: 6923 + components: + - type: Transform + pos: -70.5,23.5 + parent: 2 + - uid: 6935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,37.5 + parent: 2 + - uid: 6980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,12.5 + parent: 2 + - uid: 7001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,13.5 + parent: 2 + - uid: 7087 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 2 + - uid: 7181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-48.5 + parent: 2 + - uid: 7182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-49.5 + parent: 2 + - uid: 7183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-51.5 + parent: 2 + - uid: 7184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-50.5 + parent: 2 + - uid: 7208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-50.5 + parent: 2 + - uid: 7279 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 2 + - uid: 7280 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 2 + - uid: 7364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-37.5 + parent: 2 + - uid: 7703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-40.5 + parent: 2 + - uid: 7747 + components: + - type: Transform + pos: 35.5,22.5 + parent: 2 + - uid: 7788 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 2 + - uid: 7951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,6.5 + parent: 2 + - uid: 7952 + components: + - type: Transform + pos: -83.5,-8.5 + parent: 2 + - uid: 7988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-69.5 + parent: 2 + - uid: 7991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-10.5 + parent: 2 + - uid: 8039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,1.5 + parent: 2 + - uid: 8040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,2.5 + parent: 2 + - uid: 8093 + components: + - type: Transform + pos: -6.5,19.5 + parent: 2 + - uid: 8273 + components: + - type: Transform + pos: -59.5,-36.5 + parent: 2 + - uid: 8349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,2.5 + parent: 2 + - uid: 8388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-39.5 + parent: 2 + - uid: 8403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-44.5 + parent: 2 + - uid: 8406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-43.5 + parent: 2 + - uid: 8413 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 8585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-46.5 + parent: 2 + - uid: 8679 + components: + - type: Transform + pos: -39.5,-38.5 + parent: 2 + - uid: 8721 + components: + - type: Transform + pos: -46.5,-16.5 + parent: 2 + - uid: 8814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-40.5 + parent: 2 + - uid: 8816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-45.5 + parent: 2 + - uid: 8992 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 2 + - uid: 8993 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 + - uid: 8994 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 2 + - uid: 8995 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 + - uid: 8996 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - uid: 8997 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 2 + - uid: 8998 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 + - uid: 9034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-54.5 + parent: 2 + - uid: 9225 + components: + - type: Transform + pos: -39.5,-12.5 + parent: 2 + - uid: 9341 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 9342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,12.5 + parent: 2 + - uid: 9343 + components: + - type: Transform + pos: 10.5,11.5 + parent: 2 + - uid: 9508 + components: + - type: Transform + pos: -48.5,-12.5 + parent: 2 + - uid: 9563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,18.5 + parent: 2 + - uid: 9564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,17.5 + parent: 2 + - uid: 9589 + components: + - type: Transform + pos: -55.5,2.5 + parent: 2 + - uid: 9642 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 2 + - uid: 9643 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 2 + - uid: 9644 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 2 + - uid: 9645 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 9902 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - uid: 10150 + components: + - type: Transform + pos: -51.5,7.5 + parent: 2 + - uid: 10310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-8.5 + parent: 2 + - uid: 10313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,2.5 + parent: 2 + - uid: 10358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,6.5 + parent: 2 + - uid: 10359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,4.5 + parent: 2 + - uid: 10361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,6.5 + parent: 2 + - uid: 10364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,-7.5 + parent: 2 + - uid: 10365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,-6.5 + parent: 2 + - uid: 10367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,-1.5 + parent: 2 + - uid: 10368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,-3.5 + parent: 2 + - uid: 10372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,6.5 + parent: 2 + - uid: 10373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,5.5 + parent: 2 + - uid: 10374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,4.5 + parent: 2 + - uid: 10386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,2.5 + parent: 2 + - uid: 10387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,-1.5 + parent: 2 + - uid: 10389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,3.5 + parent: 2 + - uid: 10391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,3.5 + parent: 2 + - uid: 10446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,-5.5 + parent: 2 + - uid: 10450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,-5.5 + parent: 2 + - uid: 10452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-7.5 + parent: 2 + - uid: 10458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,3.5 + parent: 2 + - uid: 10471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,3.5 + parent: 2 + - uid: 10478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,4.5 + parent: 2 + - uid: 10481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,-3.5 + parent: 2 + - uid: 10484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,1.5 + parent: 2 + - uid: 10660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-12.5 + parent: 2 + - uid: 10661 + components: + - type: Transform + pos: -47.5,-16.5 + parent: 2 + - uid: 10752 + components: + - type: Transform + pos: -36.5,30.5 + parent: 2 + - uid: 10753 + components: + - type: Transform + pos: -35.5,30.5 + parent: 2 + - uid: 10754 + components: + - type: Transform + pos: -33.5,30.5 + parent: 2 + - uid: 10755 + components: + - type: Transform + pos: -32.5,30.5 + parent: 2 + - uid: 10756 + components: + - type: Transform + pos: -32.5,29.5 + parent: 2 + - uid: 10757 + components: + - type: Transform + pos: -32.5,28.5 + parent: 2 + - uid: 10758 + components: + - type: Transform + pos: -32.5,27.5 + parent: 2 + - uid: 10759 + components: + - type: Transform + pos: -32.5,26.5 + parent: 2 + - uid: 10760 + components: + - type: Transform + pos: -33.5,26.5 + parent: 2 + - uid: 10761 + components: + - type: Transform + pos: -35.5,26.5 + parent: 2 + - uid: 10762 + components: + - type: Transform + pos: -36.5,26.5 + parent: 2 + - uid: 11278 + components: + - type: Transform + pos: -60.5,-34.5 + parent: 2 + - uid: 11289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-71.5 + parent: 2 + - uid: 11290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-70.5 + parent: 2 + - uid: 11320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-39.5 + parent: 2 + - uid: 11321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,-39.5 + parent: 2 + - uid: 11322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,-39.5 + parent: 2 + - uid: 11323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,-39.5 + parent: 2 + - uid: 11324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,-39.5 + parent: 2 + - uid: 11325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,-39.5 + parent: 2 + - uid: 11326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,-39.5 + parent: 2 + - uid: 11327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-38.5 + parent: 2 + - uid: 11328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,-38.5 + parent: 2 + - uid: 11329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,-38.5 + parent: 2 + - uid: 11330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,-38.5 + parent: 2 + - uid: 11331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,-38.5 + parent: 2 + - uid: 11332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,-38.5 + parent: 2 + - uid: 11334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,-38.5 + parent: 2 + - uid: 11335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,-37.5 + parent: 2 + - uid: 11336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,-37.5 + parent: 2 + - uid: 11337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,-36.5 + parent: 2 + - uid: 11338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,-36.5 + parent: 2 + - uid: 11339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,-35.5 + parent: 2 + - uid: 11340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,-34.5 + parent: 2 + - uid: 11341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,-33.5 + parent: 2 + - uid: 11342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,-32.5 + parent: 2 + - uid: 11343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,-35.5 + parent: 2 + - uid: 11344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,-34.5 + parent: 2 + - uid: 11345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,-33.5 + parent: 2 + - uid: 11346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,-32.5 + parent: 2 + - uid: 11347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,-36.5 + parent: 2 + - uid: 11348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,-37.5 + parent: 2 + - uid: 11349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,-31.5 + parent: 2 + - uid: 11350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,-30.5 + parent: 2 + - uid: 11351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,-31.5 + parent: 2 + - uid: 11352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,-30.5 + parent: 2 + - uid: 11353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,-29.5 + parent: 2 + - uid: 11354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,-29.5 + parent: 2 + - uid: 11355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,-30.5 + parent: 2 + - uid: 11356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-30.5 + parent: 2 + - uid: 11357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-29.5 + parent: 2 + - uid: 11358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,-30.5 + parent: 2 + - uid: 11359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,-29.5 + parent: 2 + - uid: 11360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,-30.5 + parent: 2 + - uid: 11361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,-29.5 + parent: 2 + - uid: 11362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,-30.5 + parent: 2 + - uid: 11363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,-29.5 + parent: 2 + - uid: 11364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,-30.5 + parent: 2 + - uid: 11365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,-29.5 + parent: 2 + - uid: 11366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,-31.5 + parent: 2 + - uid: 11367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,-32.5 + parent: 2 + - uid: 11368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,-38.5 + parent: 2 + - uid: 11370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,-38.5 + parent: 2 + - uid: 11371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,-35.5 + parent: 2 + - uid: 11372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-37.5 + parent: 2 + - uid: 11373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,-31.5 + parent: 2 + - uid: 11374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,-30.5 + parent: 2 + - uid: 11376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,-30.5 + parent: 2 + - uid: 11377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-31.5 + parent: 2 + - uid: 11378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,-31.5 + parent: 2 + - uid: 11380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,-37.5 + parent: 2 + - uid: 11381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,-37.5 + parent: 2 + - uid: 11383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-32.5 + parent: 2 + - uid: 11384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-36.5 + parent: 2 + - uid: 11385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-34.5 + parent: 2 + - uid: 11388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,-33.5 + parent: 2 + - uid: 11394 + components: + - type: Transform + pos: -91.5,-35.5 + parent: 2 + - uid: 11395 + components: + - type: Transform + pos: -92.5,-35.5 + parent: 2 + - uid: 11396 + components: + - type: Transform + pos: -92.5,-33.5 + parent: 2 + - uid: 11397 + components: + - type: Transform + pos: -91.5,-33.5 + parent: 2 + - uid: 11398 + components: + - type: Transform + pos: -92.5,-34.5 + parent: 2 + - uid: 11446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,12.5 + parent: 2 + - uid: 11447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,12.5 + parent: 2 + - uid: 11528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,38.5 + parent: 2 + - uid: 11560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,39.5 + parent: 2 + - uid: 11563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,31.5 + parent: 2 + - uid: 11564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,32.5 + parent: 2 + - uid: 11576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,31.5 + parent: 2 + - uid: 11577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,31.5 + parent: 2 + - uid: 11583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,35.5 + parent: 2 + - uid: 11584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,35.5 + parent: 2 + - uid: 11586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,43.5 + parent: 2 + - uid: 11588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,36.5 + parent: 2 + - uid: 11589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,33.5 + parent: 2 + - uid: 11598 + components: + - type: Transform + pos: -53.5,-18.5 + parent: 2 + - uid: 11601 + components: + - type: Transform + pos: -54.5,-18.5 + parent: 2 + - uid: 11604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,43.5 + parent: 2 + - uid: 11605 + components: + - type: Transform + pos: -55.5,-18.5 + parent: 2 + - uid: 11610 + components: + - type: Transform + pos: -56.5,-18.5 + parent: 2 + - uid: 11618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,37.5 + parent: 2 + - uid: 11622 + components: + - type: Transform + pos: -55.5,-22.5 + parent: 2 + - uid: 11624 + components: + - type: Transform + pos: -54.5,-22.5 + parent: 2 + - uid: 11629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,31.5 + parent: 2 + - uid: 11630 + components: + - type: Transform + pos: -53.5,-22.5 + parent: 2 + - uid: 11634 + components: + - type: Transform + pos: -56.5,-22.5 + parent: 2 + - uid: 11642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,36.5 + parent: 2 + - uid: 11669 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 11681 + components: + - type: Transform + pos: -70.5,31.5 + parent: 2 + - uid: 11688 + components: + - type: Transform + pos: -54.5,5.5 + parent: 2 + - uid: 11689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,26.5 + parent: 2 + - uid: 11690 + components: + - type: Transform + pos: -54.5,19.5 + parent: 2 + - uid: 11691 + components: + - type: Transform + pos: -38.5,28.5 + parent: 2 + - uid: 11692 + components: + - type: Transform + pos: -38.5,27.5 + parent: 2 + - uid: 11733 + components: + - type: Transform + pos: -57.5,-22.5 + parent: 2 + - uid: 11737 + components: + - type: Transform + pos: -57.5,-21.5 + parent: 2 + - uid: 11739 + components: + - type: Transform + pos: -57.5,-20.5 + parent: 2 + - uid: 11741 + components: + - type: Transform + pos: -57.5,-19.5 + parent: 2 + - uid: 11744 + components: + - type: Transform + pos: -57.5,-18.5 + parent: 2 + - uid: 11746 + components: + - type: Transform + pos: -44.5,-14.5 + parent: 2 + - uid: 11787 + components: + - type: Transform + pos: -38.5,29.5 + parent: 2 + - uid: 11789 + components: + - type: Transform + pos: -39.5,23.5 + parent: 2 + - uid: 11795 + components: + - type: Transform + pos: -40.5,23.5 + parent: 2 + - uid: 11800 + components: + - type: Transform + pos: -46.5,34.5 + parent: 2 + - uid: 11826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,16.5 + parent: 2 + - uid: 11827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,16.5 + parent: 2 + - uid: 11879 + components: + - type: Transform + pos: -53.5,19.5 + parent: 2 + - uid: 11881 + components: + - type: Transform + pos: -39.5,33.5 + parent: 2 + - uid: 11883 + components: + - type: Transform + pos: -74.5,24.5 + parent: 2 + - uid: 11887 + components: + - type: Transform + pos: -71.5,23.5 + parent: 2 + - uid: 11891 + components: + - type: Transform + pos: -62.5,22.5 + parent: 2 + - uid: 11892 + components: + - type: Transform + pos: -62.5,21.5 + parent: 2 + - uid: 11893 + components: + - type: Transform + pos: -72.5,23.5 + parent: 2 + - uid: 11898 + components: + - type: Transform + pos: -73.5,23.5 + parent: 2 + - uid: 11908 + components: + - type: Transform + pos: -55.5,15.5 + parent: 2 + - uid: 11911 + components: + - type: Transform + pos: -55.5,14.5 + parent: 2 + - uid: 12002 + components: + - type: Transform + pos: -45.5,-47.5 + parent: 2 + - uid: 12107 + components: + - type: Transform + pos: -56.5,-56.5 + parent: 2 + - uid: 12192 + components: + - type: Transform + pos: 18.5,24.5 + parent: 2 + - uid: 12197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,34.5 + parent: 2 + - uid: 12204 + components: + - type: Transform + pos: 13.5,33.5 + parent: 2 + - uid: 12217 + components: + - type: Transform + pos: -44.5,-13.5 + parent: 2 + - uid: 12246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-44.5 + parent: 2 + - uid: 12260 + components: + - type: Transform + pos: -43.5,-5.5 + parent: 2 + - uid: 12271 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - uid: 12307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,11.5 + parent: 2 + - uid: 12323 + components: + - type: Transform + pos: 2.5,16.5 + parent: 2 + - uid: 12449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,38.5 + parent: 2 + - uid: 12511 + components: + - type: Transform + pos: -62.5,23.5 + parent: 2 + - uid: 12553 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 12556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,43.5 + parent: 2 + - uid: 12563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,39.5 + parent: 2 + - uid: 12564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,40.5 + parent: 2 + - uid: 12599 + components: + - type: Transform + pos: -37.5,-53.5 + parent: 2 + - uid: 12602 + components: + - type: Transform + pos: -38.5,-51.5 + parent: 2 + - uid: 12783 + components: + - type: Transform + pos: -34.5,20.5 + parent: 2 + - uid: 12785 + components: + - type: Transform + pos: -44.5,36.5 + parent: 2 + - uid: 12786 + components: + - type: Transform + pos: -71.5,31.5 + parent: 2 + - uid: 12793 + components: + - type: Transform + pos: -57.5,27.5 + parent: 2 + - uid: 12797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 2 + - uid: 12863 + components: + - type: Transform + pos: -51.5,12.5 + parent: 2 + - uid: 12868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-55.5 + parent: 2 + - uid: 13056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,43.5 + parent: 2 + - uid: 13070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,43.5 + parent: 2 + - uid: 13097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-11.5 + parent: 2 + - uid: 13107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-56.5 + parent: 2 + - uid: 13108 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 + - uid: 13152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,43.5 + parent: 2 + - uid: 13171 + components: + - type: Transform + pos: -44.5,-15.5 + parent: 2 + - uid: 13185 + components: + - type: Transform + pos: -36.5,-53.5 + parent: 2 + - uid: 13197 + components: + - type: Transform + pos: -22.5,-44.5 + parent: 2 + - uid: 13198 + components: + - type: Transform + pos: -22.5,-45.5 + parent: 2 + - uid: 13358 + components: + - type: Transform + pos: -22.5,-46.5 + parent: 2 + - uid: 13367 + components: + - type: Transform + pos: -58.5,25.5 + parent: 2 + - uid: 13369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,11.5 + parent: 2 + - uid: 13370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,-7.5 + parent: 2 + - uid: 13536 + components: + - type: Transform + pos: 2.5,-33.5 + parent: 2 + - uid: 13537 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 2 + - uid: 13538 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 2 + - uid: 13539 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 2 + - uid: 13540 + components: + - type: Transform + pos: 7.5,-34.5 + parent: 2 + - uid: 13541 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 2 + - uid: 13542 + components: + - type: Transform + pos: 6.5,-33.5 + parent: 2 + - uid: 13633 + components: + - type: Transform + pos: -42.5,23.5 + parent: 2 + - uid: 14074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,43.5 + parent: 2 + - uid: 14075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,43.5 + parent: 2 + - uid: 14076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,42.5 + parent: 2 + - uid: 14194 + components: + - type: Transform + pos: -1.5,9.5 + parent: 2 + - uid: 14217 + components: + - type: Transform + pos: -48.5,38.5 + parent: 2 + - uid: 14294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,30.5 + parent: 2 + - uid: 14312 + components: + - type: Transform + pos: -49.5,-52.5 + parent: 2 + - uid: 14313 + components: + - type: Transform + pos: -48.5,-52.5 + parent: 2 + - uid: 14545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,25.5 + parent: 2 + - uid: 14585 + components: + - type: Transform + pos: -40.5,4.5 + parent: 2 + - uid: 14689 + components: + - type: Transform + pos: -55.5,16.5 + parent: 2 + - uid: 14703 + components: + - type: Transform + pos: -53.5,12.5 + parent: 2 + - uid: 14704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,16.5 + parent: 2 + - uid: 14705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-52.5 + parent: 2 + - uid: 14708 + components: + - type: Transform + pos: -55.5,13.5 + parent: 2 + - uid: 14764 + components: + - type: Transform + pos: -48.5,-53.5 + parent: 2 + - uid: 14767 + components: + - type: Transform + pos: -48.5,-54.5 + parent: 2 + - uid: 14824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,26.5 + parent: 2 + - uid: 14826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,34.5 + parent: 2 + - uid: 14827 + components: + - type: Transform + pos: -79.5,30.5 + parent: 2 + - uid: 14837 + components: + - type: Transform + pos: -70.5,27.5 + parent: 2 + - uid: 14838 + components: + - type: Transform + pos: -69.5,27.5 + parent: 2 + - uid: 14839 + components: + - type: Transform + pos: -68.5,27.5 + parent: 2 + - uid: 14840 + components: + - type: Transform + pos: -67.5,27.5 + parent: 2 + - uid: 14841 + components: + - type: Transform + pos: -66.5,27.5 + parent: 2 + - uid: 14842 + components: + - type: Transform + pos: -65.5,27.5 + parent: 2 + - uid: 14843 + components: + - type: Transform + pos: -64.5,27.5 + parent: 2 + - uid: 14844 + components: + - type: Transform + pos: -63.5,27.5 + parent: 2 + - uid: 14845 + components: + - type: Transform + pos: -62.5,27.5 + parent: 2 + - uid: 14846 + components: + - type: Transform + pos: -61.5,27.5 + parent: 2 + - uid: 14847 + components: + - type: Transform + pos: -60.5,27.5 + parent: 2 + - uid: 14848 + components: + - type: Transform + pos: -59.5,27.5 + parent: 2 + - uid: 14849 + components: + - type: Transform + pos: -66.5,35.5 + parent: 2 + - uid: 14852 + components: + - type: Transform + pos: -74.5,26.5 + parent: 2 + - uid: 14853 + components: + - type: Transform + pos: -73.5,31.5 + parent: 2 + - uid: 14854 + components: + - type: Transform + pos: -69.5,31.5 + parent: 2 + - uid: 14856 + components: + - type: Transform + pos: -70.5,35.5 + parent: 2 + - uid: 14857 + components: + - type: Transform + pos: -69.5,35.5 + parent: 2 + - uid: 14858 + components: + - type: Transform + pos: -71.5,35.5 + parent: 2 + - uid: 14859 + components: + - type: Transform + pos: -74.5,35.5 + parent: 2 + - uid: 14861 + components: + - type: Transform + pos: -73.5,35.5 + parent: 2 + - uid: 14866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,15.5 + parent: 2 + - uid: 14888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,37.5 + parent: 2 + - uid: 14892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,28.5 + parent: 2 + - uid: 14904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,37.5 + parent: 2 + - uid: 14905 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - uid: 14920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,29.5 + parent: 2 + - uid: 14922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,30.5 + parent: 2 + - uid: 14923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,31.5 + parent: 2 + - uid: 14924 + components: + - type: Transform + pos: -78.5,34.5 + parent: 2 + - uid: 14927 + components: + - type: Transform + pos: -77.5,37.5 + parent: 2 + - uid: 14928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,36.5 + parent: 2 + - uid: 14929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,36.5 + parent: 2 + - uid: 14930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,35.5 + parent: 2 + - uid: 14932 + components: + - type: Transform + pos: -66.5,32.5 + parent: 2 + - uid: 14934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,31.5 + parent: 2 + - uid: 14935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,30.5 + parent: 2 + - uid: 14936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,29.5 + parent: 2 + - uid: 14937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,28.5 + parent: 2 + - uid: 14938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,23.5 + parent: 2 + - uid: 14939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,24.5 + parent: 2 + - uid: 14940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,23.5 + parent: 2 + - uid: 14941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,25.5 + parent: 2 + - uid: 14942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,25.5 + parent: 2 + - uid: 14943 + components: + - type: Transform + pos: -74.5,38.5 + parent: 2 + - uid: 14944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,37.5 + parent: 2 + - uid: 14945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,27.5 + parent: 2 + - uid: 14946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,23.5 + parent: 2 + - uid: 14947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,23.5 + parent: 2 + - uid: 14949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,37.5 + parent: 2 + - uid: 14950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,37.5 + parent: 2 + - uid: 14951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,37.5 + parent: 2 + - uid: 14952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,37.5 + parent: 2 + - uid: 14953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,38.5 + parent: 2 + - uid: 14954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,38.5 + parent: 2 + - uid: 14955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,16.5 + parent: 2 + - uid: 14959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,38.5 + parent: 2 + - uid: 15019 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 15020 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 15030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,21.5 + parent: 2 + - uid: 15038 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - uid: 15044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,16.5 + parent: 2 + - uid: 15046 + components: + - type: Transform + pos: 8.5,20.5 + parent: 2 + - uid: 15047 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - uid: 15058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,18.5 + parent: 2 + - uid: 15149 + components: + - type: Transform + pos: -69.5,24.5 + parent: 2 + - uid: 15150 + components: + - type: Transform + pos: -69.5,26.5 + parent: 2 + - uid: 15241 + components: + - type: Transform + pos: -66.5,40.5 + parent: 2 + - uid: 15257 + components: + - type: Transform + pos: -80.5,29.5 + parent: 2 + - uid: 15258 + components: + - type: Transform + pos: -80.5,34.5 + parent: 2 + - uid: 15263 + components: + - type: Transform + pos: -80.5,31.5 + parent: 2 + - uid: 15264 + components: + - type: Transform + pos: -80.5,30.5 + parent: 2 + - uid: 15269 + components: + - type: Transform + pos: -80.5,33.5 + parent: 2 + - uid: 15311 + components: + - type: Transform + pos: -72.5,38.5 + parent: 2 + - uid: 15312 + components: + - type: Transform + pos: -78.5,32.5 + parent: 2 + - uid: 15313 + components: + - type: Transform + pos: -78.5,33.5 + parent: 2 + - uid: 15316 + components: + - type: Transform + pos: -66.5,34.5 + parent: 2 + - uid: 15317 + components: + - type: Transform + pos: -66.5,33.5 + parent: 2 + - uid: 15320 + components: + - type: Transform + pos: -80.5,35.5 + parent: 2 + - uid: 15335 + components: + - type: Transform + pos: -80.5,32.5 + parent: 2 + - uid: 15338 + components: + - type: Transform + pos: -80.5,36.5 + parent: 2 + - uid: 15339 + components: + - type: Transform + pos: -80.5,37.5 + parent: 2 + - uid: 15340 + components: + - type: Transform + pos: -77.5,39.5 + parent: 2 + - uid: 15341 + components: + - type: Transform + pos: -67.5,40.5 + parent: 2 + - uid: 15344 + components: + - type: Transform + pos: -76.5,40.5 + parent: 2 + - uid: 15345 + components: + - type: Transform + pos: -75.5,40.5 + parent: 2 + - uid: 15346 + components: + - type: Transform + pos: -74.5,40.5 + parent: 2 + - uid: 15347 + components: + - type: Transform + pos: -73.5,40.5 + parent: 2 + - uid: 15348 + components: + - type: Transform + pos: -72.5,40.5 + parent: 2 + - uid: 15349 + components: + - type: Transform + pos: -71.5,40.5 + parent: 2 + - uid: 15350 + components: + - type: Transform + pos: -70.5,40.5 + parent: 2 + - uid: 15351 + components: + - type: Transform + pos: -69.5,40.5 + parent: 2 + - uid: 15352 + components: + - type: Transform + pos: -68.5,40.5 + parent: 2 + - uid: 15353 + components: + - type: Transform + pos: -77.5,40.5 + parent: 2 + - uid: 15354 + components: + - type: Transform + pos: -79.5,36.5 + parent: 2 + - uid: 15355 + components: + - type: Transform + pos: -78.5,40.5 + parent: 2 + - uid: 15356 + components: + - type: Transform + pos: -67.5,39.5 + parent: 2 + - uid: 15357 + components: + - type: Transform + pos: -67.5,38.5 + parent: 2 + - uid: 15358 + components: + - type: Transform + pos: -65.5,36.5 + parent: 2 + - uid: 15359 + components: + - type: Transform + pos: -64.5,36.5 + parent: 2 + - uid: 15360 + components: + - type: Transform + pos: -65.5,30.5 + parent: 2 + - uid: 15361 + components: + - type: Transform + pos: -64.5,29.5 + parent: 2 + - uid: 15362 + components: + - type: Transform + pos: -64.5,30.5 + parent: 2 + - uid: 15363 + components: + - type: Transform + pos: -64.5,31.5 + parent: 2 + - uid: 15364 + components: + - type: Transform + pos: -64.5,32.5 + parent: 2 + - uid: 15365 + components: + - type: Transform + pos: -64.5,33.5 + parent: 2 + - uid: 15366 + components: + - type: Transform + pos: -64.5,34.5 + parent: 2 + - uid: 15367 + components: + - type: Transform + pos: -64.5,35.5 + parent: 2 + - uid: 15368 + components: + - type: Transform + pos: -64.5,37.5 + parent: 2 + - uid: 15411 + components: + - type: Transform + pos: -94.5,-38.5 + parent: 2 + - uid: 15438 + components: + - type: Transform + pos: -68.5,38.5 + parent: 2 + - uid: 15529 + components: + - type: Transform + pos: -49.5,-54.5 + parent: 2 + - uid: 15611 + components: + - type: Transform + pos: -77.5,38.5 + parent: 2 + - uid: 15612 + components: + - type: Transform + pos: -76.5,38.5 + parent: 2 + - uid: 15622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,31.5 + parent: 2 + - uid: 15818 + components: + - type: Transform + pos: -72.5,-8.5 + parent: 2 + - uid: 15819 + components: + - type: Transform + pos: -72.5,-9.5 + parent: 2 + - uid: 15935 + components: + - type: Transform + pos: -1.5,10.5 + parent: 2 + - uid: 15937 + components: + - type: Transform + pos: 16.5,24.5 + parent: 2 + - uid: 15940 + components: + - type: Transform + pos: -1.5,11.5 + parent: 2 + - uid: 15941 + components: + - type: Transform + pos: 2.5,15.5 + parent: 2 + - uid: 15942 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 15956 + components: + - type: Transform + pos: 18.5,27.5 + parent: 2 + - uid: 16022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,28.5 + parent: 2 + - uid: 16023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,29.5 + parent: 2 + - uid: 16024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,31.5 + parent: 2 + - uid: 16025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,30.5 + parent: 2 + - uid: 16029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,32.5 + parent: 2 + - uid: 16041 + components: + - type: Transform + pos: 18.5,28.5 + parent: 2 + - uid: 16042 + components: + - type: Transform + pos: 19.5,28.5 + parent: 2 + - uid: 16053 + components: + - type: Transform + pos: 20.5,28.5 + parent: 2 + - uid: 16063 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 + - uid: 16064 + components: + - type: Transform + pos: 21.5,29.5 + parent: 2 + - uid: 16066 + components: + - type: Transform + pos: 21.5,31.5 + parent: 2 + - uid: 16067 + components: + - type: Transform + pos: 21.5,32.5 + parent: 2 + - uid: 16068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,35.5 + parent: 2 + - uid: 16069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,33.5 + parent: 2 + - uid: 16070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,34.5 + parent: 2 + - uid: 16072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,35.5 + parent: 2 + - uid: 16073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,35.5 + parent: 2 + - uid: 16074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,34.5 + parent: 2 + - uid: 16075 + components: + - type: Transform + pos: 16.5,35.5 + parent: 2 + - uid: 16082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,33.5 + parent: 2 + - uid: 16103 + components: + - type: Transform + pos: 15.5,35.5 + parent: 2 + - uid: 16138 + components: + - type: Transform + pos: 18.5,32.5 + parent: 2 + - uid: 16139 + components: + - type: Transform + pos: 19.5,32.5 + parent: 2 + - uid: 16140 + components: + - type: Transform + pos: 20.5,32.5 + parent: 2 + - uid: 16180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-58.5 + parent: 2 + - uid: 16181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-57.5 + parent: 2 + - uid: 16182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-56.5 + parent: 2 + - uid: 16183 + components: + - type: Transform + pos: -54.5,-59.5 + parent: 2 + - uid: 16184 + components: + - type: Transform + pos: -53.5,-59.5 + parent: 2 + - uid: 16185 + components: + - type: Transform + pos: -55.5,-59.5 + parent: 2 + - uid: 16189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-55.5 + parent: 2 + - uid: 16190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-54.5 + parent: 2 + - uid: 16191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-53.5 + parent: 2 + - uid: 16192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-52.5 + parent: 2 + - uid: 16193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-51.5 + parent: 2 + - uid: 16194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-50.5 + parent: 2 + - uid: 16195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-49.5 + parent: 2 + - uid: 16196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-49.5 + parent: 2 + - uid: 16197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-49.5 + parent: 2 + - uid: 16205 + components: + - type: Transform + pos: -51.5,-59.5 + parent: 2 + - uid: 16207 + components: + - type: Transform + pos: -52.5,-59.5 + parent: 2 + - uid: 16209 + components: + - type: Transform + pos: -56.5,-57.5 + parent: 2 + - uid: 16210 + components: + - type: Transform + pos: -56.5,-58.5 + parent: 2 + - uid: 16230 + components: + - type: Transform + pos: -56.5,-59.5 + parent: 2 + - uid: 16318 + components: + - type: Transform + pos: -44.5,-50.5 + parent: 2 +- proto: WallRock + entities: + - uid: 836 + components: + - type: Transform + pos: -30.5,30.5 + parent: 2 + - uid: 2339 + components: + - type: Transform + pos: -75.5,-9.5 + parent: 2 + - uid: 6537 + components: + - type: Transform + pos: 11.5,46.5 + parent: 2 + - uid: 6544 + components: + - type: Transform + pos: 12.5,47.5 + parent: 2 + - uid: 6625 + components: + - type: Transform + pos: 11.5,47.5 + parent: 2 + - uid: 6643 + components: + - type: Transform + pos: 14.5,46.5 + parent: 2 + - uid: 6669 + components: + - type: Transform + pos: 14.5,45.5 + parent: 2 + - uid: 6680 + components: + - type: Transform + pos: 14.5,44.5 + parent: 2 + - uid: 6768 + components: + - type: Transform + pos: -56.5,12.5 + parent: 2 + - uid: 6776 + components: + - type: Transform + pos: -57.5,13.5 + parent: 2 + - uid: 6782 + components: + - type: Transform + pos: -57.5,14.5 + parent: 2 + - uid: 6794 + components: + - type: Transform + pos: -57.5,12.5 + parent: 2 + - uid: 6797 + components: + - type: Transform + pos: -57.5,15.5 + parent: 2 + - uid: 6910 + components: + - type: Transform + pos: -58.5,12.5 + parent: 2 + - uid: 7082 + components: + - type: Transform + pos: -56.5,13.5 + parent: 2 + - uid: 7083 + components: + - type: Transform + pos: -58.5,14.5 + parent: 2 + - uid: 7161 + components: + - type: Transform + pos: -58.5,13.5 + parent: 2 + - uid: 7195 + components: + - type: Transform + pos: -60.5,16.5 + parent: 2 + - uid: 7927 + components: + - type: Transform + pos: -58.5,15.5 + parent: 2 + - uid: 7947 + components: + - type: Transform + pos: -59.5,15.5 + parent: 2 + - uid: 8004 + components: + - type: Transform + pos: 14.5,43.5 + parent: 2 + - uid: 8006 + components: + - type: Transform + pos: -63.5,18.5 + parent: 2 + - uid: 8019 + components: + - type: Transform + pos: -58.5,16.5 + parent: 2 + - uid: 8020 + components: + - type: Transform + pos: -61.5,17.5 + parent: 2 + - uid: 8037 + components: + - type: Transform + pos: -59.5,16.5 + parent: 2 + - uid: 8038 + components: + - type: Transform + pos: -60.5,17.5 + parent: 2 + - uid: 8044 + components: + - type: Transform + pos: -54.5,9.5 + parent: 2 + - uid: 8045 + components: + - type: Transform + pos: -59.5,18.5 + parent: 2 + - uid: 8047 + components: + - type: Transform + pos: -59.5,17.5 + parent: 2 + - uid: 8048 + components: + - type: Transform + pos: -58.5,17.5 + parent: 2 + - uid: 8067 + components: + - type: Transform + pos: -60.5,18.5 + parent: 2 + - uid: 8094 + components: + - type: Transform + pos: -62.5,18.5 + parent: 2 + - uid: 8096 + components: + - type: Transform + pos: -62.5,17.5 + parent: 2 + - uid: 8097 + components: + - type: Transform + pos: 13.5,44.5 + parent: 2 + - uid: 8138 + components: + - type: Transform + pos: -64.5,19.5 + parent: 2 + - uid: 8147 + components: + - type: Transform + pos: -65.5,20.5 + parent: 2 + - uid: 8153 + components: + - type: Transform + pos: -63.5,20.5 + parent: 2 + - uid: 8159 + components: + - type: Transform + pos: -63.5,19.5 + parent: 2 + - uid: 8216 + components: + - type: Transform + pos: -63.5,21.5 + parent: 2 + - uid: 8239 + components: + - type: Transform + pos: -64.5,22.5 + parent: 2 + - uid: 8258 + components: + - type: Transform + pos: -68.5,21.5 + parent: 2 + - uid: 8283 + components: + - type: Transform + pos: -66.5,22.5 + parent: 2 + - uid: 8299 + components: + - type: Transform + pos: -65.5,21.5 + parent: 2 + - uid: 8326 + components: + - type: Transform + pos: -66.5,21.5 + parent: 2 + - uid: 8350 + components: + - type: Transform + pos: -68.5,22.5 + parent: 2 + - uid: 8351 + components: + - type: Transform + pos: -67.5,22.5 + parent: 2 + - uid: 8398 + components: + - type: Transform + pos: -63.5,22.5 + parent: 2 + - uid: 8400 + components: + - type: Transform + pos: 15.5,44.5 + parent: 2 + - uid: 8612 + components: + - type: Transform + pos: -70.5,22.5 + parent: 2 + - uid: 8624 + components: + - type: Transform + pos: -69.5,22.5 + parent: 2 + - uid: 8625 + components: + - type: Transform + pos: -74.5,20.5 + parent: 2 + - uid: 8626 + components: + - type: Transform + pos: -75.5,20.5 + parent: 2 + - uid: 8780 + components: + - type: Transform + pos: -73.5,20.5 + parent: 2 + - uid: 8782 + components: + - type: Transform + pos: -71.5,22.5 + parent: 2 + - uid: 8783 + components: + - type: Transform + pos: -72.5,20.5 + parent: 2 + - uid: 8784 + components: + - type: Transform + pos: -74.5,21.5 + parent: 2 + - uid: 8810 + components: + - type: Transform + pos: -72.5,21.5 + parent: 2 + - uid: 8811 + components: + - type: Transform + pos: -73.5,21.5 + parent: 2 + - uid: 8820 + components: + - type: Transform + pos: -74.5,22.5 + parent: 2 + - uid: 8821 + components: + - type: Transform + pos: -75.5,22.5 + parent: 2 + - uid: 8822 + components: + - type: Transform + pos: -73.5,22.5 + parent: 2 + - uid: 8846 + components: + - type: Transform + pos: 14.5,42.5 + parent: 2 + - uid: 8983 + components: + - type: Transform + pos: -78.5,21.5 + parent: 2 + - uid: 9064 + components: + - type: Transform + pos: -55.5,8.5 + parent: 2 + - uid: 9067 + components: + - type: Transform + pos: -80.5,23.5 + parent: 2 + - uid: 9068 + components: + - type: Transform + pos: -77.5,22.5 + parent: 2 + - uid: 9069 + components: + - type: Transform + pos: -77.5,21.5 + parent: 2 + - uid: 9070 + components: + - type: Transform + pos: -78.5,22.5 + parent: 2 + - uid: 9071 + components: + - type: Transform + pos: -79.5,25.5 + parent: 2 + - uid: 9072 + components: + - type: Transform + pos: -79.5,22.5 + parent: 2 + - uid: 9325 + components: + - type: Transform + pos: -79.5,23.5 + parent: 2 + - uid: 9433 + components: + - type: Transform + pos: -79.5,24.5 + parent: 2 + - uid: 9435 + components: + - type: Transform + pos: -81.5,22.5 + parent: 2 + - uid: 9482 + components: + - type: Transform + pos: -81.5,23.5 + parent: 2 + - uid: 9488 + components: + - type: Transform + pos: -81.5,24.5 + parent: 2 + - uid: 9514 + components: + - type: Transform + pos: 14.5,41.5 + parent: 2 + - uid: 9532 + components: + - type: Transform + pos: -82.5,33.5 + parent: 2 + - uid: 9550 + components: + - type: Transform + pos: -82.5,35.5 + parent: 2 + - uid: 9577 + components: + - type: Transform + pos: -82.5,31.5 + parent: 2 + - uid: 9579 + components: + - type: Transform + pos: -82.5,34.5 + parent: 2 + - uid: 9611 + components: + - type: Transform + pos: -82.5,26.5 + parent: 2 + - uid: 9612 + components: + - type: Transform + pos: -82.5,32.5 + parent: 2 + - uid: 9617 + components: + - type: Transform + pos: -83.5,29.5 + parent: 2 + - uid: 10470 + components: + - type: Transform + pos: -82.5,27.5 + parent: 2 + - uid: 10485 + components: + - type: Transform + pos: -82.5,25.5 + parent: 2 + - uid: 10540 + components: + - type: Transform + pos: -82.5,28.5 + parent: 2 + - uid: 10569 + components: + - type: Transform + pos: -83.5,30.5 + parent: 2 + - uid: 10570 + components: + - type: Transform + pos: -81.5,26.5 + parent: 2 + - uid: 10571 + components: + - type: Transform + pos: -81.5,25.5 + parent: 2 + - uid: 10664 + components: + - type: Transform + pos: 14.5,40.5 + parent: 2 + - uid: 10678 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - uid: 10745 + components: + - type: Transform + pos: -80.5,27.5 + parent: 2 + - uid: 11293 + components: + - type: Transform + pos: -80.5,25.5 + parent: 2 + - uid: 11310 + components: + - type: Transform + pos: -79.5,28.5 + parent: 2 + - uid: 11312 + components: + - type: Transform + pos: -80.5,26.5 + parent: 2 + - uid: 11313 + components: + - type: Transform + pos: -80.5,28.5 + parent: 2 + - uid: 11412 + components: + - type: Transform + pos: -79.5,27.5 + parent: 2 + - uid: 11448 + components: + - type: Transform + pos: -81.5,28.5 + parent: 2 + - uid: 11451 + components: + - type: Transform + pos: -81.5,30.5 + parent: 2 + - uid: 11452 + components: + - type: Transform + pos: -81.5,31.5 + parent: 2 + - uid: 11520 + components: + - type: Transform + pos: -56.5,11.5 + parent: 2 + - uid: 11524 + components: + - type: Transform + pos: -81.5,29.5 + parent: 2 + - uid: 11562 + components: + - type: Transform + pos: -81.5,32.5 + parent: 2 + - uid: 11566 + components: + - type: Transform + pos: -81.5,33.5 + parent: 2 + - uid: 11567 + components: + - type: Transform + pos: -81.5,34.5 + parent: 2 + - uid: 11568 + components: + - type: Transform + pos: -81.5,35.5 + parent: 2 + - uid: 11569 + components: + - type: Transform + pos: -81.5,36.5 + parent: 2 + - uid: 11570 + components: + - type: Transform + pos: -81.5,37.5 + parent: 2 + - uid: 11571 + components: + - type: Transform + pos: -80.5,38.5 + parent: 2 + - uid: 11573 + components: + - type: Transform + pos: -81.5,38.5 + parent: 2 + - uid: 11579 + components: + - type: Transform + pos: -79.5,37.5 + parent: 2 + - uid: 11619 + components: + - type: Transform + pos: 15.5,39.5 + parent: 2 + - uid: 11636 + components: + - type: Transform + pos: -78.5,39.5 + parent: 2 + - uid: 11641 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 + - uid: 11643 + components: + - type: Transform + pos: -75.5,41.5 + parent: 2 + - uid: 11644 + components: + - type: Transform + pos: 15.5,41.5 + parent: 2 + - uid: 11646 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 + - uid: 11647 + components: + - type: Transform + pos: 13.5,41.5 + parent: 2 + - uid: 11648 + components: + - type: Transform + pos: 15.5,37.5 + parent: 2 + - uid: 11649 + components: + - type: Transform + pos: -79.5,41.5 + parent: 2 + - uid: 11652 + components: + - type: Transform + pos: -79.5,39.5 + parent: 2 + - uid: 11653 + components: + - type: Transform + pos: -79.5,40.5 + parent: 2 + - uid: 11655 + components: + - type: Transform + pos: -77.5,42.5 + parent: 2 + - uid: 11656 + components: + - type: Transform + pos: -77.5,41.5 + parent: 2 + - uid: 11658 + components: + - type: Transform + pos: -79.5,38.5 + parent: 2 + - uid: 11659 + components: + - type: Transform + pos: -76.5,41.5 + parent: 2 + - uid: 11661 + components: + - type: Transform + pos: -76.5,42.5 + parent: 2 + - uid: 11662 + components: + - type: Transform + pos: -74.5,42.5 + parent: 2 + - uid: 11665 + components: + - type: Transform + pos: -74.5,43.5 + parent: 2 + - uid: 11668 + components: + - type: Transform + pos: -75.5,43.5 + parent: 2 + - uid: 11670 + components: + - type: Transform + pos: -73.5,41.5 + parent: 2 + - uid: 11671 + components: + - type: Transform + pos: -74.5,41.5 + parent: 2 + - uid: 11673 + components: + - type: Transform + pos: -72.5,42.5 + parent: 2 + - uid: 11693 + components: + - type: Transform + pos: -73.5,43.5 + parent: 2 + - uid: 11696 + components: + - type: Transform + pos: -73.5,42.5 + parent: 2 + - uid: 11697 + components: + - type: Transform + pos: -55.5,10.5 + parent: 2 + - uid: 11699 + components: + - type: Transform + pos: -69.5,41.5 + parent: 2 + - uid: 11700 + components: + - type: Transform + pos: -68.5,43.5 + parent: 2 + - uid: 11701 + components: + - type: Transform + pos: -70.5,43.5 + parent: 2 + - uid: 11703 + components: + - type: Transform + pos: -69.5,43.5 + parent: 2 + - uid: 11704 + components: + - type: Transform + pos: -70.5,41.5 + parent: 2 + - uid: 11706 + components: + - type: Transform + pos: -68.5,42.5 + parent: 2 + - uid: 11707 + components: + - type: Transform + pos: -67.5,42.5 + parent: 2 + - uid: 11708 + components: + - type: Transform + pos: -67.5,43.5 + parent: 2 + - uid: 11710 + components: + - type: Transform + pos: -68.5,41.5 + parent: 2 + - uid: 11713 + components: + - type: Transform + pos: -66.5,42.5 + parent: 2 + - uid: 11714 + components: + - type: Transform + pos: -67.5,41.5 + parent: 2 + - uid: 11715 + components: + - type: Transform + pos: -66.5,41.5 + parent: 2 + - uid: 11716 + components: + - type: Transform + pos: -65.5,41.5 + parent: 2 + - uid: 11717 + components: + - type: Transform + pos: 12.5,34.5 + parent: 2 + - uid: 11718 + components: + - type: Transform + pos: -65.5,42.5 + parent: 2 + - uid: 11720 + components: + - type: Transform + pos: -65.5,43.5 + parent: 2 + - uid: 11721 + components: + - type: Transform + pos: -64.5,41.5 + parent: 2 + - uid: 11722 + components: + - type: Transform + pos: -65.5,39.5 + parent: 2 + - uid: 11724 + components: + - type: Transform + pos: -64.5,42.5 + parent: 2 + - uid: 11726 + components: + - type: Transform + pos: -64.5,39.5 + parent: 2 + - uid: 11728 + components: + - type: Transform + pos: -63.5,40.5 + parent: 2 + - uid: 11729 + components: + - type: Transform + pos: -65.5,40.5 + parent: 2 + - uid: 11730 + components: + - type: Transform + pos: -66.5,38.5 + parent: 2 + - uid: 11731 + components: + - type: Transform + pos: -66.5,39.5 + parent: 2 + - uid: 11734 + components: + - type: Transform + pos: -62.5,40.5 + parent: 2 + - uid: 11735 + components: + - type: Transform + pos: -65.5,37.5 + parent: 2 + - uid: 11736 + components: + - type: Transform + pos: -64.5,38.5 + parent: 2 + - uid: 11738 + components: + - type: Transform + pos: -65.5,38.5 + parent: 2 + - uid: 11740 + components: + - type: Transform + pos: -63.5,36.5 + parent: 2 + - uid: 11743 + components: + - type: Transform + pos: -62.5,37.5 + parent: 2 + - uid: 11745 + components: + - type: Transform + pos: -63.5,37.5 + parent: 2 + - uid: 11748 + components: + - type: Transform + pos: 4.5,47.5 + parent: 2 + - uid: 11749 + components: + - type: Transform + pos: 4.5,45.5 + parent: 2 + - uid: 11750 + components: + - type: Transform + pos: -61.5,38.5 + parent: 2 + - uid: 11751 + components: + - type: Transform + pos: -7.5,22.5 + parent: 2 + - uid: 11752 + components: + - type: Transform + pos: -2.5,22.5 + parent: 2 + - uid: 11753 + components: + - type: Transform + pos: -62.5,38.5 + parent: 2 + - uid: 11755 + components: + - type: Transform + pos: -63.5,38.5 + parent: 2 + - uid: 11756 + components: + - type: Transform + pos: -2.5,23.5 + parent: 2 + - uid: 11758 + components: + - type: Transform + pos: -61.5,36.5 + parent: 2 + - uid: 11759 + components: + - type: Transform + pos: -61.5,37.5 + parent: 2 + - uid: 11760 + components: + - type: Transform + pos: -3.5,22.5 + parent: 2 + - uid: 11761 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - uid: 11764 + components: + - type: Transform + pos: -5.5,21.5 + parent: 2 + - uid: 11765 + components: + - type: Transform + pos: -4.5,23.5 + parent: 2 + - uid: 11766 + components: + - type: Transform + pos: -29.5,30.5 + parent: 2 + - uid: 11768 + components: + - type: Transform + pos: -20.5,21.5 + parent: 2 + - uid: 11769 + components: + - type: Transform + pos: -21.5,21.5 + parent: 2 + - uid: 11770 + components: + - type: Transform + pos: -27.5,21.5 + parent: 2 + - uid: 11771 + components: + - type: Transform + pos: -28.5,21.5 + parent: 2 + - uid: 11772 + components: + - type: Transform + pos: -36.5,31.5 + parent: 2 + - uid: 11773 + components: + - type: Transform + pos: -58.5,7.5 + parent: 2 + - uid: 11774 + components: + - type: Transform + pos: -58.5,4.5 + parent: 2 + - uid: 11775 + components: + - type: Transform + pos: -35.5,31.5 + parent: 2 + - uid: 11776 + components: + - type: Transform + pos: -56.5,3.5 + parent: 2 + - uid: 11778 + components: + - type: Transform + pos: -60.5,37.5 + parent: 2 + - uid: 11780 + components: + - type: Transform + pos: -56.5,15.5 + parent: 2 + - uid: 11781 + components: + - type: Transform + pos: -61.5,4.5 + parent: 2 + - uid: 11782 + components: + - type: Transform + pos: -59.5,38.5 + parent: 2 + - uid: 11783 + components: + - type: Transform + pos: -60.5,36.5 + parent: 2 + - uid: 11785 + components: + - type: Transform + pos: -62.5,4.5 + parent: 2 + - uid: 11786 + components: + - type: Transform + pos: -60.5,4.5 + parent: 2 + - uid: 11788 + components: + - type: Transform + pos: -57.5,3.5 + parent: 2 + - uid: 11790 + components: + - type: Transform + pos: -35.5,32.5 + parent: 2 + - uid: 11791 + components: + - type: Transform + pos: -63.5,4.5 + parent: 2 + - uid: 11793 + components: + - type: Transform + pos: -36.5,32.5 + parent: 2 + - uid: 11794 + components: + - type: Transform + pos: -68.5,4.5 + parent: 2 + - uid: 11823 + components: + - type: Transform + pos: -59.5,36.5 + parent: 2 + - uid: 11824 + components: + - type: Transform + pos: -69.5,4.5 + parent: 2 + - uid: 11825 + components: + - type: Transform + pos: -59.5,37.5 + parent: 2 + - uid: 11828 + components: + - type: Transform + pos: -37.5,33.5 + parent: 2 + - uid: 11829 + components: + - type: Transform + pos: -59.5,40.5 + parent: 2 + - uid: 11830 + components: + - type: Transform + pos: -72.5,2.5 + parent: 2 + - uid: 11831 + components: + - type: Transform + pos: -58.5,42.5 + parent: 2 + - uid: 11832 + components: + - type: Transform + pos: -38.5,34.5 + parent: 2 + - uid: 11860 + components: + - type: Transform + pos: -58.5,37.5 + parent: 2 + - uid: 11864 + components: + - type: Transform + pos: -72.5,3.5 + parent: 2 + - uid: 11889 + components: + - type: Transform + pos: -58.5,38.5 + parent: 2 + - uid: 11895 + components: + - type: Transform + pos: -40.5,34.5 + parent: 2 + - uid: 11899 + components: + - type: Transform + pos: -58.5,40.5 + parent: 2 + - uid: 11903 + components: + - type: Transform + pos: -39.5,34.5 + parent: 2 + - uid: 11916 + components: + - type: Transform + pos: -58.5,39.5 + parent: 2 + - uid: 11919 + components: + - type: Transform + pos: -73.5,2.5 + parent: 2 + - uid: 11920 + components: + - type: Transform + pos: -73.5,3.5 + parent: 2 + - uid: 11921 + components: + - type: Transform + pos: -58.5,36.5 + parent: 2 + - uid: 11923 + components: + - type: Transform + pos: -41.5,34.5 + parent: 2 + - uid: 11924 + components: + - type: Transform + pos: -58.5,35.5 + parent: 2 + - uid: 11925 + components: + - type: Transform + pos: -72.5,4.5 + parent: 2 + - uid: 11931 + components: + - type: Transform + pos: -58.5,41.5 + parent: 2 + - uid: 11932 + components: + - type: Transform + pos: -71.5,4.5 + parent: 2 + - uid: 11936 + components: + - type: Transform + pos: -58.5,34.5 + parent: 2 + - uid: 11937 + components: + - type: Transform + pos: -29.5,20.5 + parent: 2 + - uid: 11939 + components: + - type: Transform + pos: -58.5,33.5 + parent: 2 + - uid: 11945 + components: + - type: Transform + pos: -62.5,3.5 + parent: 2 + - uid: 11946 + components: + - type: Transform + pos: -58.5,31.5 + parent: 2 + - uid: 11947 + components: + - type: Transform + pos: -27.5,22.5 + parent: 2 + - uid: 11948 + components: + - type: Transform + pos: -62.5,35.5 + parent: 2 + - uid: 11950 + components: + - type: Transform + pos: -64.5,4.5 + parent: 2 + - uid: 11971 + components: + - type: Transform + pos: -58.5,32.5 + parent: 2 + - uid: 11975 + components: + - type: Transform + pos: -28.5,22.5 + parent: 2 + - uid: 11977 + components: + - type: Transform + pos: -62.5,32.5 + parent: 2 + - uid: 11980 + components: + - type: Transform + pos: -77.5,7.5 + parent: 2 + - uid: 11981 + components: + - type: Transform + pos: -63.5,34.5 + parent: 2 + - uid: 11982 + components: + - type: Transform + pos: -29.5,22.5 + parent: 2 + - uid: 11983 + components: + - type: Transform + pos: -63.5,33.5 + parent: 2 + - uid: 11984 + components: + - type: Transform + pos: -58.5,6.5 + parent: 2 + - uid: 11985 + components: + - type: Transform + pos: -62.5,31.5 + parent: 2 + - uid: 11986 + components: + - type: Transform + pos: -30.5,22.5 + parent: 2 + - uid: 11987 + components: + - type: Transform + pos: -63.5,32.5 + parent: 2 + - uid: 11989 + components: + - type: Transform + pos: -31.5,22.5 + parent: 2 + - uid: 11990 + components: + - type: Transform + pos: -65.5,28.5 + parent: 2 + - uid: 11991 + components: + - type: Transform + pos: -32.5,22.5 + parent: 2 + - uid: 11992 + components: + - type: Transform + pos: -65.5,29.5 + parent: 2 + - uid: 11993 + components: + - type: Transform + pos: -33.5,22.5 + parent: 2 + - uid: 11995 + components: + - type: Transform + pos: -63.5,31.5 + parent: 2 + - uid: 11996 + components: + - type: Transform + pos: -35.5,20.5 + parent: 2 + - uid: 11997 + components: + - type: Transform + pos: -56.5,14.5 + parent: 2 + - uid: 12001 + components: + - type: Transform + pos: -35.5,21.5 + parent: 2 + - uid: 12004 + components: + - type: Transform + pos: -59.5,30.5 + parent: 2 + - uid: 12006 + components: + - type: Transform + pos: -63.5,30.5 + parent: 2 + - uid: 12007 + components: + - type: Transform + pos: -35.5,22.5 + parent: 2 + - uid: 12008 + components: + - type: Transform + pos: -63.5,29.5 + parent: 2 + - uid: 12009 + components: + - type: Transform + pos: -36.5,20.5 + parent: 2 + - uid: 12011 + components: + - type: Transform + pos: -61.5,30.5 + parent: 2 + - uid: 12014 + components: + - type: Transform + pos: -58.5,30.5 + parent: 2 + - uid: 12016 + components: + - type: Transform + pos: -63.5,28.5 + parent: 2 + - uid: 12017 + components: + - type: Transform + pos: -68.5,3.5 + parent: 2 + - uid: 12018 + components: + - type: Transform + pos: -64.5,28.5 + parent: 2 + - uid: 12019 + components: + - type: Transform + pos: -62.5,29.5 + parent: 2 + - uid: 12020 + components: + - type: Transform + pos: -59.5,28.5 + parent: 2 + - uid: 12021 + components: + - type: Transform + pos: -61.5,28.5 + parent: 2 + - uid: 12022 + components: + - type: Transform + pos: -59.5,4.5 + parent: 2 + - uid: 12024 + components: + - type: Transform + pos: -58.5,29.5 + parent: 2 + - uid: 12026 + components: + - type: Transform + pos: -60.5,30.5 + parent: 2 + - uid: 12027 + components: + - type: Transform + pos: -37.5,21.5 + parent: 2 + - uid: 12028 + components: + - type: Transform + pos: -60.5,29.5 + parent: 2 + - uid: 12029 + components: + - type: Transform + pos: -63.5,3.5 + parent: 2 + - uid: 12030 + components: + - type: Transform + pos: -59.5,29.5 + parent: 2 + - uid: 12031 + components: + - type: Transform + pos: -36.5,22.5 + parent: 2 + - uid: 12032 + components: + - type: Transform + pos: -84.5,-9.5 + parent: 2 + - uid: 12035 + components: + - type: Transform + pos: -37.5,22.5 + parent: 2 + - uid: 12036 + components: + - type: Transform + pos: -36.5,24.5 + parent: 2 + - uid: 12037 + components: + - type: Transform + pos: -58.5,18.5 + parent: 2 + - uid: 12038 + components: + - type: Transform + pos: -36.5,23.5 + parent: 2 + - uid: 12039 + components: + - type: Transform + pos: -41.5,37.5 + parent: 2 + - uid: 12041 + components: + - type: Transform + pos: -79.5,-8.5 + parent: 2 + - uid: 12042 + components: + - type: Transform + pos: -41.5,36.5 + parent: 2 + - uid: 12044 + components: + - type: Transform + pos: -36.5,25.5 + parent: 2 + - uid: 12045 + components: + - type: Transform + pos: -38.5,39.5 + parent: 2 + - uid: 12047 + components: + - type: Transform + pos: -35.5,25.5 + parent: 2 + - uid: 12048 + components: + - type: Transform + pos: -38.5,40.5 + parent: 2 + - uid: 12049 + components: + - type: Transform + pos: -79.5,29.5 + parent: 2 + - uid: 12050 + components: + - type: Transform + pos: 7.5,48.5 + parent: 2 + - uid: 12051 + components: + - type: Transform + pos: 6.5,47.5 + parent: 2 + - uid: 12052 + components: + - type: Transform + pos: 6.5,46.5 + parent: 2 + - uid: 12053 + components: + - type: Transform + pos: 11.5,44.5 + parent: 2 + - uid: 12055 + components: + - type: Transform + pos: 8.5,49.5 + parent: 2 + - uid: 12056 + components: + - type: Transform + pos: 7.5,50.5 + parent: 2 + - uid: 12057 + components: + - type: Transform + pos: 7.5,49.5 + parent: 2 + - uid: 12058 + components: + - type: Transform + pos: 9.5,48.5 + parent: 2 + - uid: 12059 + components: + - type: Transform + pos: 10.5,48.5 + parent: 2 + - uid: 12060 + components: + - type: Transform + pos: 9.5,51.5 + parent: 2 + - uid: 12061 + components: + - type: Transform + pos: 9.5,50.5 + parent: 2 + - uid: 12062 + components: + - type: Transform + pos: 9.5,49.5 + parent: 2 + - uid: 12064 + components: + - type: Transform + pos: 10.5,51.5 + parent: 2 + - uid: 12066 + components: + - type: Transform + pos: 10.5,50.5 + parent: 2 + - uid: 12067 + components: + - type: Transform + pos: 10.5,49.5 + parent: 2 + - uid: 12069 + components: + - type: Transform + pos: 10.5,46.5 + parent: 2 + - uid: 12071 + components: + - type: Transform + pos: 10.5,45.5 + parent: 2 + - uid: 12072 + components: + - type: Transform + pos: 10.5,44.5 + parent: 2 + - uid: 12073 + components: + - type: Transform + pos: 8.5,44.5 + parent: 2 + - uid: 12074 + components: + - type: Transform + pos: 9.5,47.5 + parent: 2 + - uid: 12075 + components: + - type: Transform + pos: 7.5,47.5 + parent: 2 + - uid: 12076 + components: + - type: Transform + pos: 8.5,47.5 + parent: 2 + - uid: 12077 + components: + - type: Transform + pos: 7.5,46.5 + parent: 2 + - uid: 12078 + components: + - type: Transform + pos: 9.5,46.5 + parent: 2 + - uid: 12080 + components: + - type: Transform + pos: 9.5,44.5 + parent: 2 + - uid: 12081 + components: + - type: Transform + pos: 5.5,45.5 + parent: 2 + - uid: 12082 + components: + - type: Transform + pos: 6.5,44.5 + parent: 2 + - uid: 12083 + components: + - type: Transform + pos: 5.5,44.5 + parent: 2 + - uid: 12084 + components: + - type: Transform + pos: 7.5,44.5 + parent: 2 + - uid: 12087 + components: + - type: Transform + pos: 8.5,45.5 + parent: 2 + - uid: 12088 + components: + - type: Transform + pos: 8.5,46.5 + parent: 2 + - uid: 12089 + components: + - type: Transform + pos: -37.5,31.5 + parent: 2 + - uid: 12090 + components: + - type: Transform + pos: -76.5,4.5 + parent: 2 + - uid: 12091 + components: + - type: Transform + pos: -77.5,5.5 + parent: 2 + - uid: 12092 + components: + - type: Transform + pos: 6.5,45.5 + parent: 2 + - uid: 12093 + components: + - type: Transform + pos: -76.5,5.5 + parent: 2 + - uid: 12094 + components: + - type: Transform + pos: -37.5,24.5 + parent: 2 + - uid: 12095 + components: + - type: Transform + pos: -76.5,7.5 + parent: 2 + - uid: 12096 + components: + - type: Transform + pos: -78.5,7.5 + parent: 2 + - uid: 12098 + components: + - type: Transform + pos: -77.5,6.5 + parent: 2 + - uid: 12099 + components: + - type: Transform + pos: 12.5,45.5 + parent: 2 + - uid: 12100 + components: + - type: Transform + pos: -49.5,-57.5 + parent: 2 + - uid: 12101 + components: + - type: Transform + pos: 9.5,45.5 + parent: 2 + - uid: 12103 + components: + - type: Transform + pos: -72.5,5.5 + parent: 2 + - uid: 12104 + components: + - type: Transform + pos: -73.5,5.5 + parent: 2 + - uid: 12105 + components: + - type: Transform + pos: -74.5,4.5 + parent: 2 + - uid: 12108 + components: + - type: Transform + pos: -75.5,4.5 + parent: 2 + - uid: 12110 + components: + - type: Transform + pos: -56.5,8.5 + parent: 2 + - uid: 12111 + components: + - type: Transform + pos: 4.5,46.5 + parent: 2 + - uid: 12112 + components: + - type: Transform + pos: 5.5,46.5 + parent: 2 + - uid: 12114 + components: + - type: Transform + pos: -56.5,5.5 + parent: 2 + - uid: 12115 + components: + - type: Transform + pos: -57.5,4.5 + parent: 2 + - uid: 12124 + components: + - type: Transform + pos: -57.5,5.5 + parent: 2 + - uid: 12125 + components: + - type: Transform + pos: -58.5,5.5 + parent: 2 + - uid: 12127 + components: + - type: Transform + pos: -57.5,7.5 + parent: 2 + - uid: 12128 + components: + - type: Transform + pos: -57.5,6.5 + parent: 2 + - uid: 12131 + components: + - type: Transform + pos: 12.5,46.5 + parent: 2 + - uid: 12132 + components: + - type: Transform + pos: -78.5,-8.5 + parent: 2 + - uid: 12133 + components: + - type: Transform + pos: -77.5,4.5 + parent: 2 + - uid: 12135 + components: + - type: Transform + pos: -56.5,7.5 + parent: 2 + - uid: 12136 + components: + - type: Transform + pos: 3.5,48.5 + parent: 2 + - uid: 12138 + components: + - type: Transform + pos: -39.5,40.5 + parent: 2 + - uid: 12139 + components: + - type: Transform + pos: -53.5,11.5 + parent: 2 + - uid: 12140 + components: + - type: Transform + pos: 12.5,44.5 + parent: 2 + - uid: 12141 + components: + - type: Transform + pos: -80.5,-9.5 + parent: 2 + - uid: 12142 + components: + - type: Transform + pos: 3.5,47.5 + parent: 2 + - uid: 12143 + components: + - type: Transform + pos: 2.5,50.5 + parent: 2 + - uid: 12144 + components: + - type: Transform + pos: 2.5,49.5 + parent: 2 + - uid: 12145 + components: + - type: Transform + pos: -83.5,-9.5 + parent: 2 + - uid: 12146 + components: + - type: Transform + pos: -31.5,29.5 + parent: 2 + - uid: 12148 + components: + - type: Transform + pos: -79.5,-9.5 + parent: 2 + - uid: 12149 + components: + - type: Transform + pos: 4.5,44.5 + parent: 2 + - uid: 12150 + components: + - type: Transform + pos: -38.5,38.5 + parent: 2 + - uid: 12152 + components: + - type: Transform + pos: -58.5,-50.5 + parent: 2 + - uid: 12153 + components: + - type: Transform + pos: -54.5,-48.5 + parent: 2 + - uid: 12154 + components: + - type: Transform + pos: -55.5,-48.5 + parent: 2 + - uid: 12155 + components: + - type: Transform + pos: -57.5,-56.5 + parent: 2 + - uid: 12157 + components: + - type: Transform + pos: -55.5,-47.5 + parent: 2 + - uid: 12158 + components: + - type: Transform + pos: -55.5,-46.5 + parent: 2 + - uid: 12159 + components: + - type: Transform + pos: -56.5,-47.5 + parent: 2 + - uid: 12160 + components: + - type: Transform + pos: -57.5,-55.5 + parent: 2 + - uid: 12161 + components: + - type: Transform + pos: -53.5,-47.5 + parent: 2 + - uid: 12162 + components: + - type: Transform + pos: -54.5,-46.5 + parent: 2 + - uid: 12163 + components: + - type: Transform + pos: -58.5,-56.5 + parent: 2 + - uid: 12164 + components: + - type: Transform + pos: -57.5,-58.5 + parent: 2 + - uid: 12165 + components: + - type: Transform + pos: -57.5,-57.5 + parent: 2 + - uid: 12166 + components: + - type: Transform + pos: -58.5,-58.5 + parent: 2 + - uid: 12167 + components: + - type: Transform + pos: -58.5,-57.5 + parent: 2 + - uid: 12169 + components: + - type: Transform + pos: -33.5,33.5 + parent: 2 + - uid: 12170 + components: + - type: Transform + pos: -58.5,-55.5 + parent: 2 + - uid: 12171 + components: + - type: Transform + pos: -58.5,-54.5 + parent: 2 + - uid: 12173 + components: + - type: Transform + pos: -57.5,-59.5 + parent: 2 + - uid: 12174 + components: + - type: Transform + pos: -56.5,-60.5 + parent: 2 + - uid: 12175 + components: + - type: Transform + pos: -55.5,-60.5 + parent: 2 + - uid: 12176 + components: + - type: Transform + pos: -54.5,-61.5 + parent: 2 + - uid: 12179 + components: + - type: Transform + pos: -53.5,-61.5 + parent: 2 + - uid: 12180 + components: + - type: Transform + pos: -52.5,-60.5 + parent: 2 + - uid: 12181 + components: + - type: Transform + pos: -53.5,-60.5 + parent: 2 + - uid: 12183 + components: + - type: Transform + pos: -50.5,-58.5 + parent: 2 + - uid: 12184 + components: + - type: Transform + pos: -50.5,-59.5 + parent: 2 + - uid: 12185 + components: + - type: Transform + pos: -49.5,-56.5 + parent: 2 + - uid: 12186 + components: + - type: Transform + pos: -50.5,-57.5 + parent: 2 + - uid: 12188 + components: + - type: Transform + pos: -48.5,-55.5 + parent: 2 + - uid: 12190 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 2 + - uid: 12195 + components: + - type: Transform + pos: -48.5,-51.5 + parent: 2 + - uid: 12206 + components: + - type: Transform + pos: -33.5,32.5 + parent: 2 + - uid: 12207 + components: + - type: Transform + pos: -45.5,-51.5 + parent: 2 + - uid: 12209 + components: + - type: Transform + pos: -47.5,-53.5 + parent: 2 + - uid: 12210 + components: + - type: Transform + pos: -38.5,-53.5 + parent: 2 + - uid: 12211 + components: + - type: Transform + pos: -29.5,-53.5 + parent: 2 + - uid: 12212 + components: + - type: Transform + pos: -38.5,-54.5 + parent: 2 + - uid: 12214 + components: + - type: Transform + pos: -35.5,-54.5 + parent: 2 + - uid: 12216 + components: + - type: Transform + pos: -36.5,-54.5 + parent: 2 + - uid: 12221 + components: + - type: Transform + pos: -45.5,-52.5 + parent: 2 + - uid: 12222 + components: + - type: Transform + pos: -20.5,-70.5 + parent: 2 + - uid: 12223 + components: + - type: Transform + pos: -29.5,-54.5 + parent: 2 + - uid: 12225 + components: + - type: Transform + pos: -29.5,-51.5 + parent: 2 + - uid: 12226 + components: + - type: Transform + pos: -29.5,-52.5 + parent: 2 + - uid: 12229 + components: + - type: Transform + pos: -32.5,33.5 + parent: 2 + - uid: 12230 + components: + - type: Transform + pos: -28.5,-52.5 + parent: 2 + - uid: 12231 + components: + - type: Transform + pos: -28.5,-53.5 + parent: 2 + - uid: 12232 + components: + - type: Transform + pos: -28.5,-54.5 + parent: 2 + - uid: 12233 + components: + - type: Transform + pos: -28.5,-51.5 + parent: 2 + - uid: 12235 + components: + - type: Transform + pos: -26.5,-51.5 + parent: 2 + - uid: 12236 + components: + - type: Transform + pos: -27.5,-51.5 + parent: 2 + - uid: 12239 + components: + - type: Transform + pos: -24.5,-51.5 + parent: 2 + - uid: 12245 + components: + - type: Transform + pos: -25.5,-51.5 + parent: 2 + - uid: 12250 + components: + - type: Transform + pos: -27.5,-53.5 + parent: 2 + - uid: 12253 + components: + - type: Transform + pos: -26.5,-53.5 + parent: 2 + - uid: 12255 + components: + - type: Transform + pos: -26.5,-52.5 + parent: 2 + - uid: 12256 + components: + - type: Transform + pos: -25.5,-52.5 + parent: 2 + - uid: 12261 + components: + - type: Transform + pos: -24.5,-52.5 + parent: 2 + - uid: 12262 + components: + - type: Transform + pos: -19.5,-52.5 + parent: 2 + - uid: 12264 + components: + - type: Transform + pos: -23.5,-52.5 + parent: 2 + - uid: 12265 + components: + - type: Transform + pos: -22.5,-52.5 + parent: 2 + - uid: 12266 + components: + - type: Transform + pos: -24.5,-53.5 + parent: 2 + - uid: 12267 + components: + - type: Transform + pos: -19.5,-51.5 + parent: 2 + - uid: 12269 + components: + - type: Transform + pos: -23.5,-51.5 + parent: 2 + - uid: 12270 + components: + - type: Transform + pos: -22.5,-51.5 + parent: 2 + - uid: 12272 + components: + - type: Transform + pos: -20.5,-51.5 + parent: 2 + - uid: 12273 + components: + - type: Transform + pos: -19.5,-53.5 + parent: 2 + - uid: 12275 + components: + - type: Transform + pos: -20.5,-52.5 + parent: 2 + - uid: 12277 + components: + - type: Transform + pos: -21.5,-53.5 + parent: 2 + - uid: 12278 + components: + - type: Transform + pos: -22.5,-53.5 + parent: 2 + - uid: 12279 + components: + - type: Transform + pos: -21.5,-52.5 + parent: 2 + - uid: 12280 + components: + - type: Transform + pos: -18.5,-60.5 + parent: 2 + - uid: 12281 + components: + - type: Transform + pos: -19.5,-54.5 + parent: 2 + - uid: 12282 + components: + - type: Transform + pos: -18.5,-55.5 + parent: 2 + - uid: 12283 + components: + - type: Transform + pos: -18.5,-54.5 + parent: 2 + - uid: 12284 + components: + - type: Transform + pos: -20.5,-60.5 + parent: 2 + - uid: 12285 + components: + - type: Transform + pos: -21.5,-60.5 + parent: 2 + - uid: 12286 + components: + - type: Transform + pos: -23.5,-63.5 + parent: 2 + - uid: 12287 + components: + - type: Transform + pos: -22.5,-63.5 + parent: 2 + - uid: 12289 + components: + - type: Transform + pos: -22.5,-62.5 + parent: 2 + - uid: 12290 + components: + - type: Transform + pos: -24.5,-63.5 + parent: 2 + - uid: 12291 + components: + - type: Transform + pos: -24.5,-62.5 + parent: 2 + - uid: 12292 + components: + - type: Transform + pos: -32.5,32.5 + parent: 2 + - uid: 12293 + components: + - type: Transform + pos: -23.5,-65.5 + parent: 2 + - uid: 12294 + components: + - type: Transform + pos: -24.5,-65.5 + parent: 2 + - uid: 12296 + components: + - type: Transform + pos: -24.5,-64.5 + parent: 2 + - uid: 12297 + components: + - type: Transform + pos: -62.5,28.5 + parent: 2 + - uid: 12298 + components: + - type: Transform + pos: -23.5,-68.5 + parent: 2 + - uid: 12300 + components: + - type: Transform + pos: -23.5,-67.5 + parent: 2 + - uid: 12301 + components: + - type: Transform + pos: -22.5,-68.5 + parent: 2 + - uid: 12304 + components: + - type: Transform + pos: -22.5,-69.5 + parent: 2 + - uid: 12308 + components: + - type: Transform + pos: -23.5,-66.5 + parent: 2 + - uid: 12309 + components: + - type: Transform + pos: -22.5,-67.5 + parent: 2 + - uid: 12395 + components: + - type: Transform + pos: -22.5,-66.5 + parent: 2 + - uid: 12419 + components: + - type: Transform + pos: -23.5,-69.5 + parent: 2 + - uid: 12489 + components: + - type: Transform + pos: -20.5,-71.5 + parent: 2 + - uid: 12510 + components: + - type: Transform + pos: -24.5,-67.5 + parent: 2 + - uid: 12554 + components: + - type: Transform + pos: -20.5,-68.5 + parent: 2 + - uid: 12706 + components: + - type: Transform + pos: -18.5,-73.5 + parent: 2 + - uid: 12723 + components: + - type: Transform + pos: -21.5,-70.5 + parent: 2 + - uid: 12726 + components: + - type: Transform + pos: -21.5,-69.5 + parent: 2 + - uid: 12727 + components: + - type: Transform + pos: -21.5,-68.5 + parent: 2 + - uid: 12794 + components: + - type: Transform + pos: -18.5,-72.5 + parent: 2 + - uid: 12825 + components: + - type: Transform + pos: -19.5,-70.5 + parent: 2 + - uid: 12826 + components: + - type: Transform + pos: -18.5,-71.5 + parent: 2 + - uid: 12827 + components: + - type: Transform + pos: -56.5,6.5 + parent: 2 + - uid: 12828 + components: + - type: Transform + pos: -19.5,-72.5 + parent: 2 + - uid: 12829 + components: + - type: Transform + pos: -11.5,-54.5 + parent: 2 + - uid: 12830 + components: + - type: Transform + pos: -11.5,-52.5 + parent: 2 + - uid: 13022 + components: + - type: Transform + pos: -11.5,-53.5 + parent: 2 + - uid: 13024 + components: + - type: Transform + pos: -10.5,-52.5 + parent: 2 + - uid: 13025 + components: + - type: Transform + pos: -11.5,-51.5 + parent: 2 + - uid: 13026 + components: + - type: Transform + pos: -9.5,-51.5 + parent: 2 + - uid: 13027 + components: + - type: Transform + pos: -10.5,-53.5 + parent: 2 + - uid: 13041 + components: + - type: Transform + pos: -9.5,-53.5 + parent: 2 + - uid: 13051 + components: + - type: Transform + pos: -9.5,-52.5 + parent: 2 + - uid: 13060 + components: + - type: Transform + pos: -0.5,-43.5 + parent: 2 + - uid: 13099 + components: + - type: Transform + pos: -8.5,-51.5 + parent: 2 + - uid: 13100 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 2 + - uid: 13156 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 2 + - uid: 13168 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 2 + - uid: 13174 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 2 + - uid: 13179 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - uid: 13180 + components: + - type: Transform + pos: -31.5,33.5 + parent: 2 + - uid: 13181 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 2 + - uid: 13188 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 2 + - uid: 13189 + components: + - type: Transform + pos: 1.5,-40.5 + parent: 2 + - uid: 13195 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 2 + - uid: 13559 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 2 + - uid: 13576 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 2 + - uid: 13579 + components: + - type: Transform + pos: 2.5,-41.5 + parent: 2 + - uid: 13610 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 2 + - uid: 14081 + components: + - type: Transform + pos: 3.5,-42.5 + parent: 2 + - uid: 14091 + components: + - type: Transform + pos: 2.5,-42.5 + parent: 2 + - uid: 14165 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 2 + - uid: 14255 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 2 + - uid: 14256 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 2 + - uid: 14257 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 2 + - uid: 14258 + components: + - type: Transform + pos: 5.5,-40.5 + parent: 2 + - uid: 14259 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 2 + - uid: 14260 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 2 + - uid: 14261 + components: + - type: Transform + pos: 7.5,-41.5 + parent: 2 + - uid: 14262 + components: + - type: Transform + pos: 3.5,-39.5 + parent: 2 + - uid: 14263 + components: + - type: Transform + pos: 12.5,-40.5 + parent: 2 + - uid: 14264 + components: + - type: Transform + pos: 9.5,-40.5 + parent: 2 + - uid: 14265 + components: + - type: Transform + pos: 8.5,-40.5 + parent: 2 + - uid: 14266 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 2 + - uid: 14267 + components: + - type: Transform + pos: 11.5,-39.5 + parent: 2 + - uid: 14268 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 2 + - uid: 14269 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 2 + - uid: 14270 + components: + - type: Transform + pos: 13.5,-37.5 + parent: 2 + - uid: 14271 + components: + - type: Transform + pos: 12.5,-39.5 + parent: 2 + - uid: 14272 + components: + - type: Transform + pos: 13.5,-36.5 + parent: 2 + - uid: 14273 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 2 + - uid: 14274 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 2 + - uid: 14275 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 2 + - uid: 14276 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 2 + - uid: 14277 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 2 + - uid: 14278 + components: + - type: Transform + pos: 12.5,-36.5 + parent: 2 + - uid: 14279 + components: + - type: Transform + pos: 14.5,-32.5 + parent: 2 + - uid: 14280 + components: + - type: Transform + pos: 14.5,-31.5 + parent: 2 + - uid: 14281 + components: + - type: Transform + pos: 12.5,-34.5 + parent: 2 + - uid: 14282 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 2 + - uid: 14283 + components: + - type: Transform + pos: -31.5,32.5 + parent: 2 + - uid: 14284 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 2 + - uid: 14310 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 2 + - uid: 14339 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 2 + - uid: 14340 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 2 + - uid: 14341 + components: + - type: Transform + pos: 16.5,23.5 + parent: 2 + - uid: 14342 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 + - uid: 14347 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 2 + - uid: 14427 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 2 + - uid: 14429 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 2 + - uid: 14431 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 2 + - uid: 14470 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 + - uid: 14532 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - uid: 14577 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 2 + - uid: 14628 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 14639 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 + - uid: 14641 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 14683 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 + - uid: 14684 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 + - uid: 14685 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 2 + - uid: 14686 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 2 + - uid: 14687 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 2 + - uid: 14760 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 + - uid: 14761 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 14762 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 14763 + components: + - type: Transform + pos: -2.5,34.5 + parent: 2 + - uid: 14765 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 14766 + components: + - type: Transform + pos: 19.5,23.5 + parent: 2 + - uid: 14769 + components: + - type: Transform + pos: -31.5,31.5 + parent: 2 + - uid: 14770 + components: + - type: Transform + pos: -2.5,35.5 + parent: 2 + - uid: 14771 + components: + - type: Transform + pos: -2.5,36.5 + parent: 2 + - uid: 14772 + components: + - type: Transform + pos: -2.5,37.5 + parent: 2 + - uid: 14774 + components: + - type: Transform + pos: -2.5,38.5 + parent: 2 + - uid: 14775 + components: + - type: Transform + pos: -1.5,34.5 + parent: 2 + - uid: 14780 + components: + - type: Transform + pos: -2.5,39.5 + parent: 2 + - uid: 14875 + components: + - type: Transform + pos: -3.5,39.5 + parent: 2 + - uid: 14876 + components: + - type: Transform + pos: -3.5,37.5 + parent: 2 + - uid: 14916 + components: + - type: Transform + pos: -32.5,31.5 + parent: 2 + - uid: 14917 + components: + - type: Transform + pos: -3.5,40.5 + parent: 2 + - uid: 14918 + components: + - type: Transform + pos: -3.5,41.5 + parent: 2 + - uid: 14919 + components: + - type: Transform + pos: -2.5,41.5 + parent: 2 + - uid: 14931 + components: + - type: Transform + pos: -2.5,42.5 + parent: 2 + - uid: 14933 + components: + - type: Transform + pos: -2.5,43.5 + parent: 2 + - uid: 15048 + components: + - type: Transform + pos: -1.5,41.5 + parent: 2 + - uid: 15051 + components: + - type: Transform + pos: -1.5,43.5 + parent: 2 + - uid: 15137 + components: + - type: Transform + pos: -1.5,42.5 + parent: 2 + - uid: 15158 + components: + - type: Transform + pos: -1.5,44.5 + parent: 2 + - uid: 15159 + components: + - type: Transform + pos: -3.5,43.5 + parent: 2 + - uid: 15160 + components: + - type: Transform + pos: -31.5,30.5 + parent: 2 + - uid: 15161 + components: + - type: Transform + pos: 0.5,46.5 + parent: 2 + - uid: 15162 + components: + - type: Transform + pos: -0.5,46.5 + parent: 2 + - uid: 15163 + components: + - type: Transform + pos: 0.5,45.5 + parent: 2 + - uid: 15164 + components: + - type: Transform + pos: -0.5,44.5 + parent: 2 + - uid: 15171 + components: + - type: Transform + pos: -1.5,45.5 + parent: 2 + - uid: 15183 + components: + - type: Transform + pos: 0.5,44.5 + parent: 2 + - uid: 15228 + components: + - type: Transform + pos: -0.5,45.5 + parent: 2 + - uid: 15240 + components: + - type: Transform + pos: 1.5,45.5 + parent: 2 + - uid: 15242 + components: + - type: Transform + pos: 1.5,44.5 + parent: 2 + - uid: 15243 + components: + - type: Transform + pos: 2.5,45.5 + parent: 2 + - uid: 15244 + components: + - type: Transform + pos: 2.5,44.5 + parent: 2 + - uid: 15245 + components: + - type: Transform + pos: 3.5,45.5 + parent: 2 + - uid: 15261 + components: + - type: Transform + pos: 3.5,44.5 + parent: 2 + - uid: 15262 + components: + - type: Transform + pos: 2.5,47.5 + parent: 2 + - uid: 15272 + components: + - type: Transform + pos: 2.5,46.5 + parent: 2 + - uid: 15275 + components: + - type: Transform + pos: 2.5,48.5 + parent: 2 + - uid: 15276 + components: + - type: Transform + pos: 5.5,47.5 + parent: 2 + - uid: 15277 + components: + - type: Transform + pos: -57.5,-50.5 + parent: 2 + - uid: 15289 + components: + - type: Transform + pos: -76.5,-8.5 + parent: 2 + - uid: 15290 + components: + - type: Transform + pos: -77.5,-8.5 + parent: 2 + - uid: 15292 + components: + - type: Transform + pos: -74.5,-8.5 + parent: 2 + - uid: 15299 + components: + - type: Transform + pos: -75.5,-8.5 + parent: 2 + - uid: 15301 + components: + - type: Transform + pos: -73.5,-8.5 + parent: 2 + - uid: 15305 + components: + - type: Transform + pos: -75.5,-10.5 + parent: 2 + - uid: 15307 + components: + - type: Transform + pos: -73.5,-9.5 + parent: 2 + - uid: 15308 + components: + - type: Transform + pos: -74.5,-11.5 + parent: 2 + - uid: 15309 + components: + - type: Transform + pos: -73.5,-10.5 + parent: 2 + - uid: 15314 + components: + - type: Transform + pos: -75.5,-11.5 + parent: 2 + - uid: 15319 + components: + - type: Transform + pos: -74.5,-12.5 + parent: 2 + - uid: 15321 + components: + - type: Transform + pos: -78.5,-9.5 + parent: 2 + - uid: 15323 + components: + - type: Transform + pos: -77.5,-9.5 + parent: 2 + - uid: 15326 + components: + - type: Transform + pos: -78.5,-10.5 + parent: 2 + - uid: 15328 + components: + - type: Transform + pos: -78.5,-11.5 + parent: 2 + - uid: 15331 + components: + - type: Transform + pos: -79.5,-10.5 + parent: 2 + - uid: 15332 + components: + - type: Transform + pos: -77.5,-10.5 + parent: 2 + - uid: 15334 + components: + - type: Transform + pos: -67.5,-13.5 + parent: 2 + - uid: 15337 + components: + - type: Transform + pos: -39.5,39.5 + parent: 2 + - uid: 15383 + components: + - type: Transform + pos: -65.5,-13.5 + parent: 2 + - uid: 15384 + components: + - type: Transform + pos: -66.5,-13.5 + parent: 2 + - uid: 15385 + components: + - type: Transform + pos: -64.5,-14.5 + parent: 2 + - uid: 15386 + components: + - type: Transform + pos: -64.5,-13.5 + parent: 2 + - uid: 15387 + components: + - type: Transform + pos: -63.5,-15.5 + parent: 2 + - uid: 15388 + components: + - type: Transform + pos: -63.5,-14.5 + parent: 2 + - uid: 15389 + components: + - type: Transform + pos: -65.5,-15.5 + parent: 2 + - uid: 15390 + components: + - type: Transform + pos: -63.5,-16.5 + parent: 2 + - uid: 15391 + components: + - type: Transform + pos: -65.5,-16.5 + parent: 2 + - uid: 15392 + components: + - type: Transform + pos: -66.5,-15.5 + parent: 2 + - uid: 15393 + components: + - type: Transform + pos: -64.5,-16.5 + parent: 2 + - uid: 15395 + components: + - type: Transform + pos: -64.5,-17.5 + parent: 2 + - uid: 15396 + components: + - type: Transform + pos: -39.5,38.5 + parent: 2 + - uid: 15397 + components: + - type: Transform + pos: -62.5,-18.5 + parent: 2 + - uid: 15398 + components: + - type: Transform + pos: -62.5,-17.5 + parent: 2 + - uid: 15399 + components: + - type: Transform + pos: -60.5,-26.5 + parent: 2 + - uid: 15400 + components: + - type: Transform + pos: -63.5,-18.5 + parent: 2 + - uid: 15401 + components: + - type: Transform + pos: -62.5,-26.5 + parent: 2 + - uid: 15403 + components: + - type: Transform + pos: -61.5,-26.5 + parent: 2 + - uid: 15404 + components: + - type: Transform + pos: -62.5,-27.5 + parent: 2 + - uid: 15405 + components: + - type: Transform + pos: -63.5,-26.5 + parent: 2 + - uid: 15406 + components: + - type: Transform + pos: -62.5,-28.5 + parent: 2 + - uid: 15407 + components: + - type: Transform + pos: -61.5,-27.5 + parent: 2 + - uid: 15408 + components: + - type: Transform + pos: -60.5,-28.5 + parent: 2 + - uid: 15412 + components: + - type: Transform + pos: -64.5,-28.5 + parent: 2 + - uid: 15413 + components: + - type: Transform + pos: -39.5,37.5 + parent: 2 + - uid: 15414 + components: + - type: Transform + pos: -65.5,-28.5 + parent: 2 + - uid: 15415 + components: + - type: Transform + pos: -64.5,-27.5 + parent: 2 + - uid: 15416 + components: + - type: Transform + pos: -66.5,-28.5 + parent: 2 + - uid: 15417 + components: + - type: Transform + pos: -66.5,-29.5 + parent: 2 + - uid: 15418 + components: + - type: Transform + pos: -67.5,-31.5 + parent: 2 + - uid: 15419 + components: + - type: Transform + pos: -67.5,-29.5 + parent: 2 + - uid: 15420 + components: + - type: Transform + pos: -67.5,-33.5 + parent: 2 + - uid: 15421 + components: + - type: Transform + pos: -67.5,-32.5 + parent: 2 + - uid: 15423 + components: + - type: Transform + pos: -67.5,-35.5 + parent: 2 + - uid: 15424 + components: + - type: Transform + pos: -67.5,-34.5 + parent: 2 + - uid: 15425 + components: + - type: Transform + pos: -67.5,-36.5 + parent: 2 + - uid: 15426 + components: + - type: Transform + pos: -67.5,-37.5 + parent: 2 + - uid: 15427 + components: + - type: Transform + pos: -37.5,38.5 + parent: 2 + - uid: 15428 + components: + - type: Transform + pos: -68.5,-34.5 + parent: 2 + - uid: 15429 + components: + - type: Transform + pos: -68.5,-35.5 + parent: 2 + - uid: 15430 + components: + - type: Transform + pos: -69.5,-33.5 + parent: 2 + - uid: 15431 + components: + - type: Transform + pos: -69.5,-34.5 + parent: 2 + - uid: 15432 + components: + - type: Transform + pos: -68.5,-31.5 + parent: 2 + - uid: 15433 + components: + - type: Transform + pos: -68.5,-32.5 + parent: 2 + - uid: 15435 + components: + - type: Transform + pos: -69.5,-37.5 + parent: 2 + - uid: 15437 + components: + - type: Transform + pos: -69.5,-32.5 + parent: 2 + - uid: 15439 + components: + - type: Transform + pos: -69.5,-39.5 + parent: 2 + - uid: 15440 + components: + - type: Transform + pos: -69.5,-38.5 + parent: 2 + - uid: 15441 + components: + - type: Transform + pos: -68.5,-37.5 + parent: 2 + - uid: 15442 + components: + - type: Transform + pos: -68.5,-38.5 + parent: 2 + - uid: 15443 + components: + - type: Transform + pos: -37.5,39.5 + parent: 2 + - uid: 15445 + components: + - type: Transform + pos: -67.5,-38.5 + parent: 2 + - uid: 15446 + components: + - type: Transform + pos: -68.5,-39.5 + parent: 2 + - uid: 15448 + components: + - type: Transform + pos: -69.5,-36.5 + parent: 2 + - uid: 15449 + components: + - type: Transform + pos: -67.5,-39.5 + parent: 2 + - uid: 15451 + components: + - type: Transform + pos: -65.5,-39.5 + parent: 2 + - uid: 15452 + components: + - type: Transform + pos: -66.5,-39.5 + parent: 2 + - uid: 15453 + components: + - type: Transform + pos: -63.5,-39.5 + parent: 2 + - uid: 15454 + components: + - type: Transform + pos: -64.5,-39.5 + parent: 2 + - uid: 15455 + components: + - type: Transform + pos: -65.5,-41.5 + parent: 2 + - uid: 15456 + components: + - type: Transform + pos: -66.5,-41.5 + parent: 2 + - uid: 15458 + components: + - type: Transform + pos: -64.5,-41.5 + parent: 2 + - uid: 15459 + components: + - type: Transform + pos: -65.5,-40.5 + parent: 2 + - uid: 15460 + components: + - type: Transform + pos: -37.5,40.5 + parent: 2 + - uid: 15461 + components: + - type: Transform + pos: -63.5,-41.5 + parent: 2 + - uid: 15463 + components: + - type: Transform + pos: -63.5,-40.5 + parent: 2 + - uid: 15465 + components: + - type: Transform + pos: -63.5,-43.5 + parent: 2 + - uid: 15466 + components: + - type: Transform + pos: -63.5,-42.5 + parent: 2 + - uid: 15467 + components: + - type: Transform + pos: -64.5,-43.5 + parent: 2 + - uid: 15468 + components: + - type: Transform + pos: -64.5,-42.5 + parent: 2 + - uid: 15470 + components: + - type: Transform + pos: -64.5,-44.5 + parent: 2 + - uid: 15471 + components: + - type: Transform + pos: -65.5,-42.5 + parent: 2 + - uid: 15472 + components: + - type: Transform + pos: -64.5,-46.5 + parent: 2 + - uid: 15473 + components: + - type: Transform + pos: -64.5,-45.5 + parent: 2 + - uid: 15474 + components: + - type: Transform + pos: -63.5,-45.5 + parent: 2 + - uid: 15475 + components: + - type: Transform + pos: -63.5,-46.5 + parent: 2 + - uid: 15476 + components: + - type: Transform + pos: -36.5,40.5 + parent: 2 + - uid: 15477 + components: + - type: Transform + pos: -62.5,-45.5 + parent: 2 + - uid: 15478 + components: + - type: Transform + pos: -62.5,-46.5 + parent: 2 + - uid: 15480 + components: + - type: Transform + pos: -62.5,-43.5 + parent: 2 + - uid: 15481 + components: + - type: Transform + pos: -62.5,-42.5 + parent: 2 + - uid: 15482 + components: + - type: Transform + pos: -61.5,-42.5 + parent: 2 + - uid: 15484 + components: + - type: Transform + pos: -62.5,-44.5 + parent: 2 + - uid: 15485 + components: + - type: Transform + pos: -57.5,-46.5 + parent: 2 + - uid: 15486 + components: + - type: Transform + pos: -56.5,-46.5 + parent: 2 + - uid: 15487 + components: + - type: Transform + pos: -57.5,-45.5 + parent: 2 + - uid: 15488 + components: + - type: Transform + pos: -58.5,-46.5 + parent: 2 + - uid: 15490 + components: + - type: Transform + pos: -58.5,-45.5 + parent: 2 + - uid: 15491 + components: + - type: Transform + pos: -59.5,-45.5 + parent: 2 + - uid: 15493 + components: + - type: Transform + pos: -35.5,40.5 + parent: 2 + - uid: 15494 + components: + - type: Transform + pos: -34.5,40.5 + parent: 2 + - uid: 15495 + components: + - type: Transform + pos: -60.5,-45.5 + parent: 2 + - uid: 15496 + components: + - type: Transform + pos: -59.5,-46.5 + parent: 2 + - uid: 15497 + components: + - type: Transform + pos: -34.5,41.5 + parent: 2 + - uid: 15498 + components: + - type: Transform + pos: -56.5,-45.5 + parent: 2 + - uid: 15499 + components: + - type: Transform + pos: -61.5,-46.5 + parent: 2 + - uid: 15500 + components: + - type: Transform + pos: -36.5,41.5 + parent: 2 + - uid: 15501 + components: + - type: Transform + pos: -61.5,-47.5 + parent: 2 + - uid: 15502 + components: + - type: Transform + pos: -60.5,-47.5 + parent: 2 + - uid: 15503 + components: + - type: Transform + pos: -35.5,41.5 + parent: 2 + - uid: 15504 + components: + - type: Transform + pos: -59.5,-47.5 + parent: 2 + - uid: 15505 + components: + - type: Transform + pos: -58.5,-47.5 + parent: 2 + - uid: 15506 + components: + - type: Transform + pos: -35.5,39.5 + parent: 2 + - uid: 15507 + components: + - type: Transform + pos: -59.5,-48.5 + parent: 2 + - uid: 15509 + components: + - type: Transform + pos: -58.5,-48.5 + parent: 2 + - uid: 15510 + components: + - type: Transform + pos: -35.5,38.5 + parent: 2 + - uid: 15511 + components: + - type: Transform + pos: -57.5,-48.5 + parent: 2 + - uid: 15513 + components: + - type: Transform + pos: -58.5,-49.5 + parent: 2 + - uid: 15515 + components: + - type: Transform + pos: -35.5,37.5 + parent: 2 + - uid: 15516 + components: + - type: Transform + pos: -57.5,-49.5 + parent: 2 + - uid: 15517 + components: + - type: Transform + pos: -57.5,-53.5 + parent: 2 + - uid: 15519 + components: + - type: Transform + pos: -34.5,38.5 + parent: 2 + - uid: 15520 + components: + - type: Transform + pos: -57.5,-52.5 + parent: 2 + - uid: 15521 + components: + - type: Transform + pos: -57.5,-51.5 + parent: 2 + - uid: 15523 + components: + - type: Transform + pos: -33.5,38.5 + parent: 2 + - uid: 15524 + components: + - type: Transform + pos: -58.5,-51.5 + parent: 2 + - uid: 15525 + components: + - type: Transform + pos: -58.5,-52.5 + parent: 2 + - uid: 15526 + components: + - type: Transform + pos: -32.5,38.5 + parent: 2 + - uid: 15527 + components: + - type: Transform + pos: -33.5,39.5 + parent: 2 + - uid: 15528 + components: + - type: Transform + pos: -33.5,40.5 + parent: 2 + - uid: 15534 + components: + - type: Transform + pos: -32.5,39.5 + parent: 2 + - uid: 15535 + components: + - type: Transform + pos: -31.5,39.5 + parent: 2 + - uid: 15537 + components: + - type: Transform + pos: -30.5,38.5 + parent: 2 + - uid: 15539 + components: + - type: Transform + pos: -30.5,37.5 + parent: 2 + - uid: 15540 + components: + - type: Transform + pos: -30.5,36.5 + parent: 2 + - uid: 15544 + components: + - type: Transform + pos: -31.5,37.5 + parent: 2 + - uid: 15610 + components: + - type: Transform + pos: -32.5,37.5 + parent: 2 + - uid: 15629 + components: + - type: Transform + pos: -33.5,37.5 + parent: 2 + - uid: 15651 + components: + - type: Transform + pos: -33.5,36.5 + parent: 2 + - uid: 15652 + components: + - type: Transform + pos: -33.5,35.5 + parent: 2 + - uid: 15659 + components: + - type: Transform + pos: -33.5,34.5 + parent: 2 + - uid: 15817 + components: + - type: Transform + pos: -74.5,-10.5 + parent: 2 + - uid: 15823 + components: + - type: Transform + pos: -20.5,-53.5 + parent: 2 + - uid: 15828 + components: + - type: Transform + pos: -30.5,29.5 + parent: 2 + - uid: 15829 + components: + - type: Transform + pos: -29.5,31.5 + parent: 2 + - uid: 15830 + components: + - type: Transform + pos: -28.5,31.5 + parent: 2 + - uid: 15831 + components: + - type: Transform + pos: -29.5,32.5 + parent: 2 + - uid: 15833 + components: + - type: Transform + pos: -30.5,32.5 + parent: 2 + - uid: 15834 + components: + - type: Transform + pos: -30.5,33.5 + parent: 2 + - uid: 15835 + components: + - type: Transform + pos: -29.5,34.5 + parent: 2 + - uid: 15836 + components: + - type: Transform + pos: -29.5,35.5 + parent: 2 + - uid: 15837 + components: + - type: Transform + pos: -40.5,39.5 + parent: 2 + - uid: 15838 + components: + - type: Transform + pos: -30.5,34.5 + parent: 2 + - uid: 15839 + components: + - type: Transform + pos: -40.5,40.5 + parent: 2 + - uid: 15840 + components: + - type: Transform + pos: -40.5,41.5 + parent: 2 + - uid: 15842 + components: + - type: Transform + pos: -40.5,42.5 + parent: 2 + - uid: 15843 + components: + - type: Transform + pos: -41.5,42.5 + parent: 2 + - uid: 15844 + components: + - type: Transform + pos: -39.5,42.5 + parent: 2 + - uid: 15845 + components: + - type: Transform + pos: -39.5,41.5 + parent: 2 + - uid: 15846 + components: + - type: Transform + pos: -41.5,43.5 + parent: 2 + - uid: 15847 + components: + - type: Transform + pos: -42.5,42.5 + parent: 2 + - uid: 15848 + components: + - type: Transform + pos: -43.5,42.5 + parent: 2 + - uid: 15849 + components: + - type: Transform + pos: -44.5,42.5 + parent: 2 + - uid: 15850 + components: + - type: Transform + pos: -43.5,43.5 + parent: 2 + - uid: 15851 + components: + - type: Transform + pos: -43.5,44.5 + parent: 2 + - uid: 15852 + components: + - type: Transform + pos: -44.5,43.5 + parent: 2 + - uid: 15853 + components: + - type: Transform + pos: -44.5,44.5 + parent: 2 + - uid: 15854 + components: + - type: Transform + pos: -45.5,43.5 + parent: 2 + - uid: 15856 + components: + - type: Transform + pos: -45.5,44.5 + parent: 2 + - uid: 15857 + components: + - type: Transform + pos: -45.5,42.5 + parent: 2 + - uid: 15858 + components: + - type: Transform + pos: -42.5,41.5 + parent: 2 + - uid: 15859 + components: + - type: Transform + pos: -42.5,40.5 + parent: 2 + - uid: 15860 + components: + - type: Transform + pos: -41.5,40.5 + parent: 2 + - uid: 15861 + components: + - type: Transform + pos: -45.5,40.5 + parent: 2 + - uid: 15862 + components: + - type: Transform + pos: -45.5,41.5 + parent: 2 + - uid: 15863 + components: + - type: Transform + pos: -46.5,40.5 + parent: 2 + - uid: 15865 + components: + - type: Transform + pos: -46.5,41.5 + parent: 2 + - uid: 15866 + components: + - type: Transform + pos: -46.5,42.5 + parent: 2 + - uid: 15867 + components: + - type: Transform + pos: -46.5,44.5 + parent: 2 + - uid: 15868 + components: + - type: Transform + pos: -47.5,44.5 + parent: 2 + - uid: 15869 + components: + - type: Transform + pos: -48.5,44.5 + parent: 2 + - uid: 15871 + components: + - type: Transform + pos: -49.5,44.5 + parent: 2 + - uid: 15872 + components: + - type: Transform + pos: -50.5,44.5 + parent: 2 + - uid: 15873 + components: + - type: Transform + pos: -48.5,45.5 + parent: 2 + - uid: 15874 + components: + - type: Transform + pos: -49.5,45.5 + parent: 2 + - uid: 15875 + components: + - type: Transform + pos: -50.5,45.5 + parent: 2 + - uid: 15876 + components: + - type: Transform + pos: -51.5,45.5 + parent: 2 + - uid: 15877 + components: + - type: Transform + pos: -52.5,45.5 + parent: 2 + - uid: 15878 + components: + - type: Transform + pos: -53.5,45.5 + parent: 2 + - uid: 15879 + components: + - type: Transform + pos: -52.5,44.5 + parent: 2 + - uid: 15880 + components: + - type: Transform + pos: -53.5,44.5 + parent: 2 + - uid: 15881 + components: + - type: Transform + pos: -54.5,44.5 + parent: 2 + - uid: 15882 + components: + - type: Transform + pos: -54.5,43.5 + parent: 2 + - uid: 15884 + components: + - type: Transform + pos: -53.5,43.5 + parent: 2 + - uid: 15885 + components: + - type: Transform + pos: -52.5,43.5 + parent: 2 + - uid: 15888 + components: + - type: Transform + pos: -51.5,43.5 + parent: 2 + - uid: 15889 + components: + - type: Transform + pos: -50.5,43.5 + parent: 2 + - uid: 15890 + components: + - type: Transform + pos: -49.5,43.5 + parent: 2 + - uid: 15891 + components: + - type: Transform + pos: -48.5,43.5 + parent: 2 + - uid: 15892 + components: + - type: Transform + pos: -47.5,43.5 + parent: 2 + - uid: 15893 + components: + - type: Transform + pos: -55.5,44.5 + parent: 2 + - uid: 15894 + components: + - type: Transform + pos: -55.5,43.5 + parent: 2 + - uid: 15895 + components: + - type: Transform + pos: -56.5,43.5 + parent: 2 + - uid: 15896 + components: + - type: Transform + pos: -57.5,43.5 + parent: 2 + - uid: 15897 + components: + - type: Transform + pos: -57.5,42.5 + parent: 2 + - uid: 15898 + components: + - type: Transform + pos: -56.5,42.5 + parent: 2 + - uid: 15900 + components: + - type: Transform + pos: -55.5,42.5 + parent: 2 + - uid: 15901 + components: + - type: Transform + pos: -57.5,40.5 + parent: 2 + - uid: 15902 + components: + - type: Transform + pos: -57.5,41.5 + parent: 2 + - uid: 15904 + components: + - type: Transform + pos: -56.5,40.5 + parent: 2 + - uid: 15906 + components: + - type: Transform + pos: -55.5,41.5 + parent: 2 + - uid: 15907 + components: + - type: Transform + pos: -55.5,39.5 + parent: 2 + - uid: 15908 + components: + - type: Transform + pos: -57.5,37.5 + parent: 2 + - uid: 15909 + components: + - type: Transform + pos: -57.5,38.5 + parent: 2 + - uid: 15911 + components: + - type: Transform + pos: -56.5,39.5 + parent: 2 + - uid: 15912 + components: + - type: Transform + pos: -55.5,40.5 + parent: 2 +- proto: WallRockCoal + entities: + - uid: 552 + components: + - type: Transform + pos: -36.5,21.5 + parent: 2 + - uid: 553 + components: + - type: Transform + pos: -22.5,-61.5 + parent: 2 + - uid: 598 + components: + - type: Transform + pos: -73.5,4.5 + parent: 2 + - uid: 801 + components: + - type: Transform + pos: -21.5,22.5 + parent: 2 + - uid: 824 + components: + - type: Transform + pos: -31.5,26.5 + parent: 2 + - uid: 829 + components: + - type: Transform + pos: -29.5,21.5 + parent: 2 + - uid: 839 + components: + - type: Transform + pos: -30.5,31.5 + parent: 2 + - uid: 865 + components: + - type: Transform + pos: -37.5,32.5 + parent: 2 + - uid: 876 + components: + - type: Transform + pos: -31.5,38.5 + parent: 2 + - uid: 908 + components: + - type: Transform + pos: -41.5,41.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: -55.5,9.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: -61.5,3.5 + parent: 2 + - uid: 1112 + components: + - type: Transform + pos: -59.5,3.5 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: -70.5,4.5 + parent: 2 + - uid: 1273 + components: + - type: Transform + pos: -74.5,-9.5 + parent: 2 + - uid: 1526 + components: + - type: Transform + pos: -66.5,-14.5 + parent: 2 + - uid: 1568 + components: + - type: Transform + pos: -63.5,-27.5 + parent: 2 + - uid: 1569 + components: + - type: Transform + pos: -68.5,-33.5 + parent: 2 + - uid: 1591 + components: + - type: Transform + pos: -63.5,-44.5 + parent: 2 + - uid: 1675 + components: + - type: Transform + pos: -56.5,-44.5 + parent: 2 + - uid: 1677 + components: + - type: Transform + pos: -56.5,-48.5 + parent: 2 + - uid: 1828 + components: + - type: Transform + pos: -47.5,-52.5 + parent: 2 + - uid: 1831 + components: + - type: Transform + pos: -37.5,-54.5 + parent: 2 + - uid: 1839 + components: + - type: Transform + pos: -24.5,-66.5 + parent: 2 + - uid: 1840 + components: + - type: Transform + pos: -23.5,-64.5 + parent: 2 + - uid: 1841 + components: + - type: Transform + pos: -20.5,-69.5 + parent: 2 + - uid: 1844 + components: + - type: Transform + pos: -19.5,-71.5 + parent: 2 + - uid: 1845 + components: + - type: Transform + pos: -10.5,-54.5 + parent: 2 + - uid: 1847 + components: + - type: Transform + pos: -8.5,-52.5 + parent: 2 + - uid: 1858 + components: + - type: Transform + pos: 11.5,-40.5 + parent: 2 + - uid: 1861 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 2 + - uid: 1863 + components: + - type: Transform + pos: 13.5,-20.5 + parent: 2 + - uid: 1864 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 2 + - uid: 1868 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 + - uid: 10562 + components: + - type: Transform + pos: -74.5,5.5 + parent: 2 + - uid: 11838 + components: + - type: Transform + pos: -56.5,38.5 + parent: 2 + - uid: 12724 + components: + - type: Transform + pos: -57.5,39.5 + parent: 2 + - uid: 15259 + components: + - type: Transform + pos: -67.5,21.5 + parent: 2 + - uid: 15306 + components: + - type: Transform + pos: -66.5,20.5 + parent: 2 + - uid: 15422 + components: + - type: Transform + pos: -82.5,36.5 + parent: 2 + - uid: 15434 + components: + - type: Transform + pos: -82.5,30.5 + parent: 2 + - uid: 15436 + components: + - type: Transform + pos: -83.5,32.5 + parent: 2 + - uid: 15444 + components: + - type: Transform + pos: -80.5,39.5 + parent: 2 + - uid: 15796 + components: + - type: Transform + pos: -1.5,33.5 + parent: 2 + - uid: 15805 + components: + - type: Transform + pos: -3.5,38.5 + parent: 2 + - uid: 15832 + components: + - type: Transform + pos: 11.5,45.5 + parent: 2 + - uid: 15870 + components: + - type: Transform + pos: 1.5,46.5 + parent: 2 + - uid: 15886 + components: + - type: Transform + pos: 5.5,48.5 + parent: 2 + - uid: 15905 + components: + - type: Transform + pos: 15.5,38.5 + parent: 2 + - uid: 15910 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - uid: 16213 + components: + - type: Transform + pos: -57.5,-54.5 + parent: 2 + - uid: 16240 + components: + - type: Transform + pos: -58.5,-53.5 + parent: 2 +- proto: WallRockPlasma + entities: + - uid: 687 + components: + - type: Transform + pos: -3.5,23.5 + parent: 2 + - uid: 884 + components: + - type: Transform + pos: -34.5,37.5 + parent: 2 + - uid: 889 + components: + - type: Transform + pos: -34.5,39.5 + parent: 2 + - uid: 898 + components: + - type: Transform + pos: -36.5,38.5 + parent: 2 + - uid: 900 + components: + - type: Transform + pos: -36.5,39.5 + parent: 2 + - uid: 933 + components: + - type: Transform + pos: -60.5,28.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + pos: -65.5,-29.5 + parent: 2 + - uid: 1571 + components: + - type: Transform + pos: -69.5,-35.5 + parent: 2 + - uid: 1617 + components: + - type: Transform + pos: -57.5,-47.5 + parent: 2 + - uid: 1778 + components: + - type: Transform + pos: -59.5,31.5 + parent: 2 + - uid: 1836 + components: + - type: Transform + pos: -25.5,-53.5 + parent: 2 + - uid: 1859 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 2 + - uid: 14926 + components: + - type: Transform + pos: -65.5,22.5 + parent: 2 + - uid: 15303 + components: + - type: Transform + pos: -64.5,20.5 + parent: 2 + - uid: 15450 + components: + - type: Transform + pos: -78.5,41.5 + parent: 2 + - uid: 15483 + components: + - type: Transform + pos: -72.5,43.5 + parent: 2 + - uid: 15492 + components: + - type: Transform + pos: -64.5,40.5 + parent: 2 + - uid: 15518 + components: + - type: Transform + pos: -63.5,39.5 + parent: 2 + - uid: 16142 + components: + - type: Transform + pos: -59.5,14.5 + parent: 2 + - uid: 16153 + components: + - type: Transform + pos: -57.5,11.5 + parent: 2 +- proto: WallRockQuartz + entities: + - uid: 293 + components: + - type: Transform + pos: -56.5,4.5 + parent: 2 + - uid: 543 + components: + - type: Transform + pos: -37.5,23.5 + parent: 2 + - uid: 550 + components: + - type: Transform + pos: -37.5,20.5 + parent: 2 + - uid: 768 + components: + - type: Transform + pos: -5.5,22.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: -6.5,23.5 + parent: 2 + - uid: 834 + components: + - type: Transform + pos: -31.5,28.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: -31.5,34.5 + parent: 2 + - uid: 846 + components: + - type: Transform + pos: -30.5,35.5 + parent: 2 + - uid: 848 + components: + - type: Transform + pos: -29.5,33.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: -32.5,34.5 + parent: 2 + - uid: 856 + components: + - type: Transform + pos: -31.5,36.5 + parent: 2 + - uid: 875 + components: + - type: Transform + pos: -31.5,35.5 + parent: 2 + - uid: 880 + components: + - type: Transform + pos: -32.5,36.5 + parent: 2 + - uid: 901 + components: + - type: Transform + pos: -42.5,43.5 + parent: 2 + - uid: 1009 + components: + - type: Transform + pos: -58.5,28.5 + parent: 2 + - uid: 1420 + components: + - type: Transform + pos: -76.5,-9.5 + parent: 2 + - uid: 1457 + components: + - type: Transform + pos: -63.5,-13.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + pos: -64.5,-15.5 + parent: 2 + - uid: 1525 + components: + - type: Transform + pos: -65.5,-14.5 + parent: 2 + - uid: 1535 + components: + - type: Transform + pos: -60.5,-29.5 + parent: 2 + - uid: 1576 + components: + - type: Transform + pos: -66.5,-40.5 + parent: 2 + - uid: 1590 + components: + - type: Transform + pos: -62.5,-41.5 + parent: 2 + - uid: 1593 + components: + - type: Transform + pos: -61.5,-45.5 + parent: 2 + - uid: 1676 + components: + - type: Transform + pos: -54.5,-47.5 + parent: 2 + - uid: 1709 + components: + - type: Transform + pos: -56.5,41.5 + parent: 2 + - uid: 1827 + components: + - type: Transform + pos: -49.5,-51.5 + parent: 2 + - uid: 1834 + components: + - type: Transform + pos: -23.5,-53.5 + parent: 2 + - uid: 1835 + components: + - type: Transform + pos: -27.5,-52.5 + parent: 2 + - uid: 1838 + components: + - type: Transform + pos: -23.5,-62.5 + parent: 2 + - uid: 1842 + components: + - type: Transform + pos: -18.5,-70.5 + parent: 2 + - uid: 1848 + components: + - type: Transform + pos: -7.5,-51.5 + parent: 2 + - uid: 1856 + components: + - type: Transform + pos: 9.5,-41.5 + parent: 2 + - uid: 1860 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 2 + - uid: 10541 + components: + - type: Transform + pos: -75.5,5.5 + parent: 2 + - uid: 10542 + components: + - type: Transform + pos: -76.5,6.5 + parent: 2 + - uid: 11685 + components: + - type: Transform + pos: -56.5,9.5 + parent: 2 + - uid: 11839 + components: + - type: Transform + pos: -59.5,35.5 + parent: 2 + - uid: 15278 + components: + - type: Transform + pos: -61.5,18.5 + parent: 2 + - uid: 15315 + components: + - type: Transform + pos: -71.5,21.5 + parent: 2 + - uid: 15329 + components: + - type: Transform + pos: -72.5,22.5 + parent: 2 + - uid: 15457 + components: + - type: Transform + pos: -75.5,42.5 + parent: 2 + - uid: 15479 + components: + - type: Transform + pos: -76.5,43.5 + parent: 2 + - uid: 15489 + components: + - type: Transform + pos: -66.5,43.5 + parent: 2 + - uid: 15514 + components: + - type: Transform + pos: -62.5,30.5 + parent: 2 + - uid: 15803 + components: + - type: Transform + pos: -2.5,40.5 + parent: 2 + - uid: 15809 + components: + - type: Transform + pos: -3.5,42.5 + parent: 2 + - uid: 15864 + components: + - type: Transform + pos: 10.5,47.5 + parent: 2 + - uid: 15883 + components: + - type: Transform + pos: 8.5,48.5 + parent: 2 + - uid: 15887 + components: + - type: Transform + pos: 11.5,48.5 + parent: 2 + - uid: 15899 + components: + - type: Transform + pos: 13.5,43.5 + parent: 2 + - uid: 15903 + components: + - type: Transform + pos: 15.5,40.5 + parent: 2 + - uid: 16152 + components: + - type: Transform + pos: -57.5,8.5 + parent: 2 +- proto: WallRockSalt + entities: + - uid: 913 + components: + - type: Transform + pos: -46.5,43.5 + parent: 2 + - uid: 11905 + components: + - type: Transform + pos: -61.5,29.5 + parent: 2 + - uid: 11978 + components: + - type: Transform + pos: -51.5,44.5 + parent: 2 + - uid: 15469 + components: + - type: Transform + pos: -69.5,42.5 + parent: 2 +- proto: WallRockSilver + entities: + - uid: 11199 + components: + - type: Transform + pos: -46.5,-53.5 + parent: 2 + - uid: 16211 + components: + - type: Transform + pos: -54.5,-60.5 + parent: 2 + - uid: 16288 + components: + - type: Transform + pos: -55.5,-61.5 + parent: 2 +- proto: WallRockTin + entities: + - uid: 775 + components: + - type: Transform + pos: -6.5,21.5 + parent: 2 + - uid: 810 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 879 + components: + - type: Transform + pos: -32.5,35.5 + parent: 2 + - uid: 903 + components: + - type: Transform + pos: -37.5,41.5 + parent: 2 + - uid: 905 + components: + - type: Transform + pos: -38.5,41.5 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: -60.5,3.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + pos: -63.5,-17.5 + parent: 2 + - uid: 1527 + components: + - type: Transform + pos: -68.5,-14.5 + parent: 2 + - uid: 1536 + components: + - type: Transform + pos: -60.5,-27.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + pos: -68.5,-36.5 + parent: 2 + - uid: 1572 + components: + - type: Transform + pos: -67.5,-30.5 + parent: 2 + - uid: 1575 + components: + - type: Transform + pos: -64.5,-40.5 + parent: 2 + - uid: 1616 + components: + - type: Transform + pos: -60.5,-46.5 + parent: 2 + - uid: 1694 + components: + - type: Transform + pos: -53.5,-46.5 + parent: 2 + - uid: 1829 + components: + - type: Transform + pos: -45.5,-53.5 + parent: 2 + - uid: 1846 + components: + - type: Transform + pos: -10.5,-51.5 + parent: 2 + - uid: 1862 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 2 + - uid: 1865 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 2 + - uid: 1866 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - uid: 1867 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - uid: 11904 + components: + - type: Transform + pos: -41.5,35.5 + parent: 2 + - uid: 14825 + components: + - type: Transform + pos: -75.5,21.5 + parent: 2 + - uid: 15304 + components: + - type: Transform + pos: -64.5,21.5 + parent: 2 + - uid: 15322 + components: + - type: Transform + pos: -76.5,22.5 + parent: 2 + - uid: 15394 + components: + - type: Transform + pos: -79.5,26.5 + parent: 2 + - uid: 15402 + components: + - type: Transform + pos: -80.5,24.5 + parent: 2 + - uid: 15410 + components: + - type: Transform + pos: -81.5,27.5 + parent: 2 + - uid: 15447 + components: + - type: Transform + pos: -78.5,38.5 + parent: 2 + - uid: 15462 + components: + - type: Transform + pos: -72.5,41.5 + parent: 2 + - uid: 15464 + components: + - type: Transform + pos: -71.5,41.5 + parent: 2 + - uid: 15508 + components: + - type: Transform + pos: -62.5,36.5 + parent: 2 + - uid: 15522 + components: + - type: Transform + pos: -63.5,35.5 + parent: 2 + - uid: 16201 + components: + - type: Transform + pos: -49.5,-55.5 + parent: 2 + - uid: 16236 + components: + - type: Transform + pos: -48.5,-56.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 132 + components: + - type: Transform + pos: -50.5,10.5 + parent: 2 + - uid: 515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,2.5 + parent: 2 + - uid: 521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,6.5 + parent: 2 + - uid: 537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 2 + - uid: 788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-3.5 + parent: 2 + - uid: 800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-3.5 + parent: 2 + - uid: 809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-2.5 + parent: 2 + - uid: 812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-11.5 + parent: 2 + - uid: 1250 + components: + - type: Transform + pos: -13.5,-36.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: -13.5,-37.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: -12.5,-37.5 + parent: 2 + - uid: 1253 + components: + - type: Transform + pos: -11.5,-37.5 + parent: 2 + - uid: 1254 + components: + - type: Transform + pos: -10.5,-37.5 + parent: 2 + - uid: 1255 + components: + - type: Transform + pos: -9.5,-37.5 + parent: 2 + - uid: 1256 + components: + - type: Transform + pos: -8.5,-37.5 + parent: 2 + - uid: 1257 + components: + - type: Transform + pos: -7.5,-37.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 2 + - uid: 1269 + components: + - type: Transform + pos: -22.5,-40.5 + parent: 2 + - uid: 1270 + components: + - type: Transform + pos: -22.5,-41.5 + parent: 2 + - uid: 1297 + components: + - type: Transform + pos: -17.5,-49.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + pos: -12.5,-49.5 + parent: 2 + - uid: 1540 + components: + - type: Transform + pos: 10.5,-34.5 + parent: 2 + - uid: 1548 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 2 + - uid: 1549 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 2 + - uid: 1550 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 2 + - uid: 1552 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 2 + - uid: 1555 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 2 + - uid: 1557 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 2 + - uid: 1558 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 2 + - uid: 1900 + components: + - type: Transform + pos: 20.5,5.5 + parent: 2 + - uid: 2125 + components: + - type: Transform + pos: -22.5,2.5 + parent: 2 + - uid: 2126 + components: + - type: Transform + pos: -22.5,5.5 + parent: 2 + - uid: 2127 + components: + - type: Transform + pos: -22.5,7.5 + parent: 2 + - uid: 2128 + components: + - type: Transform + pos: -22.5,6.5 + parent: 2 + - uid: 2129 + components: + - type: Transform + pos: -22.5,4.5 + parent: 2 + - uid: 2130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 2 + - uid: 2131 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 2 + - uid: 2132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-4.5 + parent: 2 + - uid: 2133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-6.5 + parent: 2 + - uid: 2135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-9.5 + parent: 2 + - uid: 2136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 2 + - uid: 2137 + components: + - type: Transform + pos: -22.5,3.5 + parent: 2 + - uid: 2138 + components: + - type: Transform + pos: -22.5,9.5 + parent: 2 + - uid: 2139 + components: + - type: Transform + pos: -22.5,11.5 + parent: 2 + - uid: 2140 + components: + - type: Transform + pos: -22.5,10.5 + parent: 2 + - uid: 2141 + components: + - type: Transform + pos: -22.5,8.5 + parent: 2 + - uid: 2142 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 + - uid: 2143 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 2144 + components: + - type: Transform + pos: 15.5,12.5 + parent: 2 + - uid: 2145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 2 + - uid: 2146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-5.5 + parent: 2 + - uid: 2147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-7.5 + parent: 2 + - uid: 2148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-10.5 + parent: 2 + - uid: 2149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-8.5 + parent: 2 + - uid: 2150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-11.5 + parent: 2 + - uid: 2151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-12.5 + parent: 2 + - uid: 2155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-6.5 + parent: 2 + - uid: 2156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-7.5 + parent: 2 + - uid: 2157 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 2 + - uid: 2160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 2 + - uid: 2161 + components: + - type: Transform + pos: -49.5,-2.5 + parent: 2 + - uid: 2162 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 2163 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 + - uid: 2164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 2 + - uid: 2165 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - uid: 2166 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 + - uid: 2167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 2 + - uid: 2168 + components: + - type: Transform + pos: -27.5,1.5 + parent: 2 + - uid: 2169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 2 + - uid: 2170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 2 + - uid: 2171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 2 + - uid: 2172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 2 + - uid: 2173 + components: + - type: Transform + pos: -40.5,-30.5 + parent: 2 + - uid: 2174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 2 + - uid: 2191 + components: + - type: Transform + pos: -58.5,-2.5 + parent: 2 + - uid: 2192 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - uid: 2195 + components: + - type: Transform + pos: 20.5,1.5 + parent: 2 + - uid: 2196 + components: + - type: Transform + pos: -63.5,-2.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + pos: -64.5,-2.5 + parent: 2 + - uid: 2199 + components: + - type: Transform + pos: -21.5,2.5 + parent: 2 + - uid: 2200 + components: + - type: Transform + pos: -16.5,2.5 + parent: 2 + - uid: 2201 + components: + - type: Transform + pos: -20.5,2.5 + parent: 2 + - uid: 2202 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + pos: -19.5,2.5 + parent: 2 + - uid: 2206 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: -17.5,2.5 + parent: 2 + - uid: 2209 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 2210 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 2211 + components: + - type: Transform + pos: 14.5,2.5 + parent: 2 + - uid: 2212 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - uid: 2213 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2 + - uid: 2214 + components: + - type: Transform + pos: 16.5,4.5 + parent: 2 + - uid: 2215 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - uid: 2216 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 2219 + components: + - type: Transform + pos: 16.5,6.5 + parent: 2 + - uid: 2220 + components: + - type: Transform + pos: 16.5,7.5 + parent: 2 + - uid: 2221 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 + - uid: 2222 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 2226 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 2227 + components: + - type: Transform + pos: 16.5,19.5 + parent: 2 + - uid: 2229 + components: + - type: Transform + pos: 15.5,16.5 + parent: 2 + - uid: 2230 + components: + - type: Transform + pos: 19.5,20.5 + parent: 2 + - uid: 2231 + components: + - type: Transform + pos: 19.5,18.5 + parent: 2 + - uid: 2232 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 2233 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 + - uid: 2235 + components: + - type: Transform + pos: 20.5,17.5 + parent: 2 + - uid: 2237 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - uid: 2246 + components: + - type: Transform + pos: 15.5,19.5 + parent: 2 + - uid: 2247 + components: + - type: Transform + pos: 16.5,8.5 + parent: 2 + - uid: 2248 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 2249 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 2250 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 2253 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 + - uid: 2254 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 + - uid: 2255 + components: + - type: Transform + pos: 19.5,7.5 + parent: 2 + - uid: 2256 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 2257 + components: + - type: Transform + pos: 15.5,2.5 + parent: 2 + - uid: 2258 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - uid: 2259 + components: + - type: Transform + pos: 20.5,3.5 + parent: 2 + - uid: 2261 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - uid: 2286 + components: + - type: Transform + pos: 20.5,9.5 + parent: 2 + - uid: 2306 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 + - uid: 2322 + components: + - type: Transform + pos: 20.5,8.5 + parent: 2 + - uid: 2323 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 2348 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + pos: 20.5,11.5 + parent: 2 + - uid: 2350 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 + - uid: 2351 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - uid: 2354 + components: + - type: Transform + pos: -28.5,17.5 + parent: 2 + - uid: 2355 + components: + - type: Transform + pos: -39.5,-30.5 + parent: 2 + - uid: 2356 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - uid: 2412 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 2413 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 2 + - uid: 2415 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 2416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 2 + - uid: 2419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-2.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 2 + - uid: 2421 + components: + - type: Transform + pos: -28.5,1.5 + parent: 2 + - uid: 2423 + components: + - type: Transform + pos: -16.5,1.5 + parent: 2 + - uid: 2425 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 + - uid: 2428 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 2431 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-15.5 + parent: 2 + - uid: 2433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-13.5 + parent: 2 + - uid: 2437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-15.5 + parent: 2 + - uid: 2438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 2 + - uid: 2439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 2 + - uid: 2440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-11.5 + parent: 2 + - uid: 2441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 2 + - uid: 2443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-11.5 + parent: 2 + - uid: 2446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-6.5 + parent: 2 + - uid: 2462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-10.5 + parent: 2 + - uid: 2463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-9.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-20.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-7.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-8.5 + parent: 2 + - uid: 2472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-8.5 + parent: 2 + - uid: 2486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 2 + - uid: 2487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 2 + - uid: 2488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-8.5 + parent: 2 + - uid: 2489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-3.5 + parent: 2 + - uid: 2528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-3.5 + parent: 2 + - uid: 2529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-5.5 + parent: 2 + - uid: 2543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 2 + - uid: 2544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 2 + - uid: 2545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-21.5 + parent: 2 + - uid: 2546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-22.5 + parent: 2 + - uid: 2552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-25.5 + parent: 2 + - uid: 2556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-26.5 + parent: 2 + - uid: 2557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-27.5 + parent: 2 + - uid: 2558 + components: + - type: Transform + pos: -35.5,-27.5 + parent: 2 + - uid: 2564 + components: + - type: Transform + pos: -28.5,8.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + pos: -27.5,8.5 + parent: 2 + - uid: 2566 + components: + - type: Transform + pos: -26.5,8.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 2568 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 2 + - uid: 2569 + components: + - type: Transform + pos: -17.5,-41.5 + parent: 2 + - uid: 2570 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 2 + - uid: 2571 + components: + - type: Transform + pos: -15.5,-43.5 + parent: 2 + - uid: 2572 + components: + - type: Transform + pos: -17.5,-43.5 + parent: 2 + - uid: 2573 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 2574 + components: + - type: Transform + pos: -49.5,16.5 + parent: 2 + - uid: 2575 + components: + - type: Transform + pos: -49.5,7.5 + parent: 2 + - uid: 2576 + components: + - type: Transform + pos: -49.5,2.5 + parent: 2 + - uid: 2577 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 2 + - uid: 2578 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 2579 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 2 + - uid: 2580 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 + - uid: 2581 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - uid: 2582 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - uid: 2583 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - uid: 2591 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 2770 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - uid: 3279 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 3800 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 3877 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - uid: 3897 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 3987 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 4028 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - uid: 4103 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 + - uid: 4903 + components: + - type: Transform + pos: -34.5,-30.5 + parent: 2 + - uid: 5122 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 2 + - uid: 5182 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 2 + - uid: 5468 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 + - uid: 5579 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 2 + - uid: 5685 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 + - uid: 5717 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 2 + - uid: 5719 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - uid: 5720 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 2 + - uid: 5727 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 + - uid: 5728 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 2 + - uid: 5729 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 2 + - uid: 5730 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 + - uid: 5731 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 2 + - uid: 5732 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 5735 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - uid: 5736 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 + - uid: 5745 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 5746 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 5747 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 2 + - uid: 5751 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 2 + - uid: 5752 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 2 + - uid: 5754 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - uid: 5755 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 + - uid: 5756 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 5757 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - uid: 5758 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 2 + - uid: 5759 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 2 + - uid: 5769 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 2 + - uid: 5770 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 2 + - uid: 5771 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 2 + - uid: 5772 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 + - uid: 5773 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - uid: 5774 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 2 + - uid: 5775 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 2 + - uid: 5776 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 5777 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 5779 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 + - uid: 5780 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - uid: 5782 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 5783 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 2 + - uid: 5784 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 2 + - uid: 5824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 + - uid: 5938 + components: + - type: Transform + pos: -40.5,-6.5 + parent: 2 + - uid: 6361 + components: + - type: Transform + pos: -49.5,-3.5 + parent: 2 + - uid: 6364 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 2 + - uid: 6379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 2 + - uid: 6384 + components: + - type: Transform + pos: -49.5,-4.5 + parent: 2 + - uid: 6455 + components: + - type: Transform + pos: -25.5,-32.5 + parent: 2 + - uid: 6456 + components: + - type: Transform + pos: -25.5,-31.5 + parent: 2 + - uid: 6457 + components: + - type: Transform + pos: -26.5,-32.5 + parent: 2 + - uid: 6459 + components: + - type: Transform + pos: -25.5,-26.5 + parent: 2 + - uid: 6460 + components: + - type: Transform + pos: -29.5,-32.5 + parent: 2 + - uid: 6461 + components: + - type: Transform + pos: -31.5,-32.5 + parent: 2 + - uid: 6462 + components: + - type: Transform + pos: -32.5,-32.5 + parent: 2 + - uid: 6552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-14.5 + parent: 2 + - uid: 6589 + components: + - type: Transform + pos: -31.5,-31.5 + parent: 2 + - uid: 6600 + components: + - type: Transform + pos: -31.5,-30.5 + parent: 2 + - uid: 6601 + components: + - type: Transform + pos: -32.5,-30.5 + parent: 2 + - uid: 6602 + components: + - type: Transform + pos: -32.5,-29.5 + parent: 2 + - uid: 6605 + components: + - type: Transform + pos: -34.5,-26.5 + parent: 2 + - uid: 6606 + components: + - type: Transform + pos: -33.5,-26.5 + parent: 2 + - uid: 6607 + components: + - type: Transform + pos: -32.5,-26.5 + parent: 2 + - uid: 6608 + components: + - type: Transform + pos: -31.5,-26.5 + parent: 2 + - uid: 6609 + components: + - type: Transform + pos: -26.5,-26.5 + parent: 2 + - uid: 6610 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 2 + - uid: 6611 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - uid: 6612 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 2 + - uid: 6613 + components: + - type: Transform + pos: -35.5,-26.5 + parent: 2 + - uid: 6614 + components: + - type: Transform + pos: -35.5,-28.5 + parent: 2 + - uid: 6615 + components: + - type: Transform + pos: -35.5,-29.5 + parent: 2 + - uid: 6621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 2 + - uid: 6729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 2 + - uid: 6869 + components: + - type: Transform + pos: -35.5,-30.5 + parent: 2 + - uid: 6922 + components: + - type: Transform + pos: -33.5,-30.5 + parent: 2 + - uid: 6932 + components: + - type: Transform + pos: -36.5,-26.5 + parent: 2 + - uid: 6966 + components: + - type: Transform + pos: -37.5,-26.5 + parent: 2 + - uid: 7014 + components: + - type: Transform + pos: -38.5,-26.5 + parent: 2 + - uid: 7393 + components: + - type: Transform + pos: -39.5,-26.5 + parent: 2 + - uid: 7706 + components: + - type: Transform + pos: -39.5,-23.5 + parent: 2 + - uid: 7707 + components: + - type: Transform + pos: -39.5,-24.5 + parent: 2 + - uid: 7717 + components: + - type: Transform + pos: -39.5,-25.5 + parent: 2 + - uid: 7718 + components: + - type: Transform + pos: -34.5,-32.5 + parent: 2 + - uid: 7900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-3.5 + parent: 2 + - uid: 7914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-2.5 + parent: 2 + - uid: 7945 + components: + - type: Transform + pos: -35.5,-32.5 + parent: 2 + - uid: 7949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-2.5 + parent: 2 + - uid: 7953 + components: + - type: Transform + pos: -74.5,-2.5 + parent: 2 + - uid: 8017 + components: + - type: Transform + pos: -36.5,-32.5 + parent: 2 + - uid: 8027 + components: + - type: Transform + pos: -37.5,-32.5 + parent: 2 + - uid: 8031 + components: + - type: Transform + pos: -38.5,-32.5 + parent: 2 + - uid: 8033 + components: + - type: Transform + pos: -39.5,-32.5 + parent: 2 + - uid: 8034 + components: + - type: Transform + pos: -40.5,-32.5 + parent: 2 + - uid: 8068 + components: + - type: Transform + pos: -73.5,-2.5 + parent: 2 + - uid: 8145 + components: + - type: Transform + pos: -41.5,-32.5 + parent: 2 + - uid: 8230 + components: + - type: Transform + pos: -57.5,-8.5 + parent: 2 + - uid: 8279 + components: + - type: Transform + pos: -38.5,-31.5 + parent: 2 + - uid: 8320 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 2 + - uid: 8336 + components: + - type: Transform + pos: -38.5,-30.5 + parent: 2 + - uid: 8382 + components: + - type: Transform + pos: -38.5,-29.5 + parent: 2 + - uid: 8384 + components: + - type: Transform + pos: -38.5,-28.5 + parent: 2 + - uid: 8405 + components: + - type: Transform + pos: -39.5,-28.5 + parent: 2 + - uid: 8412 + components: + - type: Transform + pos: -40.5,-28.5 + parent: 2 + - uid: 8448 + components: + - type: Transform + pos: -41.5,-28.5 + parent: 2 + - uid: 8604 + components: + - type: Transform + pos: -43.5,-28.5 + parent: 2 + - uid: 8702 + components: + - type: Transform + pos: -44.5,-28.5 + parent: 2 + - uid: 8703 + components: + - type: Transform + pos: -45.5,-28.5 + parent: 2 + - uid: 8806 + components: + - type: Transform + pos: -46.5,-28.5 + parent: 2 + - uid: 8818 + components: + - type: Transform + pos: -46.5,-29.5 + parent: 2 + - uid: 8825 + components: + - type: Transform + pos: -46.5,-30.5 + parent: 2 + - uid: 8826 + components: + - type: Transform + pos: -46.5,-31.5 + parent: 2 + - uid: 8829 + components: + - type: Transform + pos: -46.5,-32.5 + parent: 2 + - uid: 8830 + components: + - type: Transform + pos: -45.5,-32.5 + parent: 2 + - uid: 8832 + components: + - type: Transform + pos: -44.5,-32.5 + parent: 2 + - uid: 9021 + components: + - type: Transform + pos: -43.5,-32.5 + parent: 2 + - uid: 9029 + components: + - type: Transform + pos: -46.5,-27.5 + parent: 2 + - uid: 9044 + components: + - type: Transform + pos: -46.5,-26.5 + parent: 2 + - uid: 9063 + components: + - type: Transform + pos: -46.5,-25.5 + parent: 2 + - uid: 9065 + components: + - type: Transform + pos: -46.5,-24.5 + parent: 2 + - uid: 9066 + components: + - type: Transform + pos: -46.5,-23.5 + parent: 2 + - uid: 9073 + components: + - type: Transform + pos: -40.5,-26.5 + parent: 2 + - uid: 9076 + components: + - type: Transform + pos: -41.5,-26.5 + parent: 2 + - uid: 9077 + components: + - type: Transform + pos: -42.5,-23.5 + parent: 2 + - uid: 9078 + components: + - type: Transform + pos: -47.5,-32.5 + parent: 2 + - uid: 9079 + components: + - type: Transform + pos: -48.5,-32.5 + parent: 2 + - uid: 9080 + components: + - type: Transform + pos: -49.5,-32.5 + parent: 2 + - uid: 9081 + components: + - type: Transform + pos: -50.5,-32.5 + parent: 2 + - uid: 9083 + components: + - type: Transform + pos: -50.5,-31.5 + parent: 2 + - uid: 9084 + components: + - type: Transform + pos: -49.5,-27.5 + parent: 2 + - uid: 9085 + components: + - type: Transform + pos: -48.5,-27.5 + parent: 2 + - uid: 9086 + components: + - type: Transform + pos: -48.5,-26.5 + parent: 2 + - uid: 9087 + components: + - type: Transform + pos: -47.5,-26.5 + parent: 2 + - uid: 9483 + components: + - type: Transform + pos: -50.5,-23.5 + parent: 2 + - uid: 10152 + components: + - type: Transform + pos: -50.5,-27.5 + parent: 2 + - uid: 10153 + components: + - type: Transform + pos: -50.5,-28.5 + parent: 2 + - uid: 10472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-3.5 + parent: 2 + - uid: 10473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-3.5 + parent: 2 + - uid: 10572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-2.5 + parent: 2 + - uid: 10573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-2.5 + parent: 2 + - uid: 11198 + components: + - type: Transform + pos: -51.5,-18.5 + parent: 2 + - uid: 11333 + components: + - type: Transform + pos: -50.5,-26.5 + parent: 2 + - uid: 11578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,40.5 + parent: 2 + - uid: 11593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-3.5 + parent: 2 + - uid: 11594 + components: + - type: Transform + pos: -51.5,-7.5 + parent: 2 + - uid: 11595 + components: + - type: Transform + pos: -51.5,-8.5 + parent: 2 + - uid: 11611 + components: + - type: Transform + pos: 8.5,40.5 + parent: 2 + - uid: 11612 + components: + - type: Transform + pos: -56.5,-28.5 + parent: 2 + - uid: 11613 + components: + - type: Transform + pos: -53.5,-32.5 + parent: 2 + - uid: 11614 + components: + - type: Transform + pos: -55.5,-28.5 + parent: 2 + - uid: 11617 + components: + - type: Transform + pos: -54.5,-32.5 + parent: 2 + - uid: 11631 + components: + - type: Transform + pos: -56.5,-32.5 + parent: 2 + - uid: 11637 + components: + - type: Transform + pos: -55.5,-32.5 + parent: 2 + - uid: 11638 + components: + - type: Transform + pos: -57.5,-32.5 + parent: 2 + - uid: 11639 + components: + - type: Transform + pos: -53.5,-23.5 + parent: 2 + - uid: 11640 + components: + - type: Transform + pos: -53.5,-27.5 + parent: 2 + - uid: 11645 + components: + - type: Transform + pos: -54.5,-27.5 + parent: 2 + - uid: 11650 + components: + - type: Transform + pos: -50.5,-15.5 + parent: 2 + - uid: 11651 + components: + - type: Transform + pos: -55.5,-27.5 + parent: 2 + - uid: 11654 + components: + - type: Transform + pos: -53.5,-28.5 + parent: 2 + - uid: 11660 + components: + - type: Transform + pos: -53.5,-31.5 + parent: 2 + - uid: 11667 + components: + - type: Transform + pos: -51.5,-14.5 + parent: 2 + - uid: 11674 + components: + - type: Transform + pos: -51.5,-15.5 + parent: 2 + - uid: 11675 + components: + - type: Transform + pos: -51.5,-16.5 + parent: 2 + - uid: 11676 + components: + - type: Transform + pos: -51.5,-17.5 + parent: 2 + - uid: 11694 + components: + - type: Transform + pos: -57.5,-31.5 + parent: 2 + - uid: 11695 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 + - uid: 11698 + components: + - type: Transform + pos: -57.5,-30.5 + parent: 2 + - uid: 11705 + components: + - type: Transform + pos: -57.5,-29.5 + parent: 2 + - uid: 11711 + components: + - type: Transform + pos: -57.5,-28.5 + parent: 2 + - uid: 11712 + components: + - type: Transform + pos: -57.5,-27.5 + parent: 2 + - uid: 11719 + components: + - type: Transform + pos: -57.5,-26.5 + parent: 2 + - uid: 11723 + components: + - type: Transform + pos: -57.5,-24.5 + parent: 2 + - uid: 11727 + components: + - type: Transform + pos: -57.5,-23.5 + parent: 2 + - uid: 11732 + components: + - type: Transform + pos: 15.5,24.5 + parent: 2 + - uid: 11747 + components: + - type: Transform + pos: -57.5,-9.5 + parent: 2 + - uid: 11754 + components: + - type: Transform + pos: -58.5,-9.5 + parent: 2 + - uid: 11757 + components: + - type: Transform + pos: -59.5,-9.5 + parent: 2 + - uid: 11762 + components: + - type: Transform + pos: -60.5,-9.5 + parent: 2 + - uid: 11763 + components: + - type: Transform + pos: -61.5,-9.5 + parent: 2 + - uid: 11767 + components: + - type: Transform + pos: -63.5,-9.5 + parent: 2 + - uid: 11777 + components: + - type: Transform + pos: -64.5,-9.5 + parent: 2 + - uid: 11779 + components: + - type: Transform + pos: -64.5,-8.5 + parent: 2 + - uid: 11784 + components: + - type: Transform + pos: -64.5,-7.5 + parent: 2 + - uid: 11792 + components: + - type: Transform + pos: -64.5,-6.5 + parent: 2 + - uid: 11803 + components: + - type: Transform + pos: -64.5,-5.5 + parent: 2 + - uid: 11805 + components: + - type: Transform + pos: -64.5,-4.5 + parent: 2 + - uid: 11816 + components: + - type: Transform + pos: -64.5,-3.5 + parent: 2 + - uid: 11819 + components: + - type: Transform + pos: -61.5,-11.5 + parent: 2 + - uid: 11837 + components: + - type: Transform + pos: -61.5,-12.5 + parent: 2 + - uid: 11840 + components: + - type: Transform + pos: -51.5,-10.5 + parent: 2 + - uid: 11841 + components: + - type: Transform + pos: -59.5,-32.5 + parent: 2 + - uid: 11853 + components: + - type: Transform + pos: -59.5,-17.5 + parent: 2 + - uid: 11859 + components: + - type: Transform + pos: -74.5,-4.5 + parent: 2 + - uid: 11894 + components: + - type: Transform + pos: -50.5,-53.5 + parent: 2 + - uid: 11902 + components: + - type: Transform + pos: -51.5,-45.5 + parent: 2 + - uid: 11907 + components: + - type: Transform + pos: -50.5,-45.5 + parent: 2 + - uid: 11909 + components: + - type: Transform + pos: -49.5,-45.5 + parent: 2 + - uid: 11912 + components: + - type: Transform + pos: -49.5,-44.5 + parent: 2 + - uid: 11914 + components: + - type: Transform + pos: -49.5,-43.5 + parent: 2 + - uid: 11917 + components: + - type: Transform + pos: -49.5,-42.5 + parent: 2 + - uid: 11922 + components: + - type: Transform + pos: -48.5,-42.5 + parent: 2 + - uid: 11930 + components: + - type: Transform + pos: -48.5,-40.5 + parent: 2 + - uid: 11941 + components: + - type: Transform + pos: -48.5,-39.5 + parent: 2 + - uid: 11943 + components: + - type: Transform + pos: -48.5,-38.5 + parent: 2 + - uid: 11944 + components: + - type: Transform + pos: -49.5,-38.5 + parent: 2 + - uid: 11949 + components: + - type: Transform + pos: -44.5,-23.5 + parent: 2 + - uid: 11952 + components: + - type: Transform + pos: -48.5,-36.5 + parent: 2 + - uid: 11954 + components: + - type: Transform + pos: -47.5,-36.5 + parent: 2 + - uid: 11958 + components: + - type: Transform + pos: -46.5,-36.5 + parent: 2 + - uid: 11960 + components: + - type: Transform + pos: -45.5,-36.5 + parent: 2 + - uid: 11963 + components: + - type: Transform + pos: -50.5,-36.5 + parent: 2 + - uid: 11967 + components: + - type: Transform + pos: -51.5,-36.5 + parent: 2 + - uid: 11970 + components: + - type: Transform + pos: -45.5,-37.5 + parent: 2 + - uid: 11979 + components: + - type: Transform + pos: -45.5,-38.5 + parent: 2 + - uid: 11988 + components: + - type: Transform + pos: -45.5,-39.5 + parent: 2 + - uid: 11994 + components: + - type: Transform + pos: -45.5,-40.5 + parent: 2 + - uid: 11998 + components: + - type: Transform + pos: -45.5,-41.5 + parent: 2 + - uid: 11999 + components: + - type: Transform + pos: -45.5,-42.5 + parent: 2 + - uid: 12000 + components: + - type: Transform + pos: -45.5,-43.5 + parent: 2 + - uid: 12005 + components: + - type: Transform + pos: -39.5,-50.5 + parent: 2 + - uid: 12010 + components: + - type: Transform + pos: -43.5,-50.5 + parent: 2 + - uid: 12012 + components: + - type: Transform + pos: -42.5,-50.5 + parent: 2 + - uid: 12013 + components: + - type: Transform + pos: -41.5,-50.5 + parent: 2 + - uid: 12015 + components: + - type: Transform + pos: -29.5,-47.5 + parent: 2 + - uid: 12023 + components: + - type: Transform + pos: -30.5,-47.5 + parent: 2 + - uid: 12025 + components: + - type: Transform + pos: -31.5,-47.5 + parent: 2 + - uid: 12033 + components: + - type: Transform + pos: -32.5,-47.5 + parent: 2 + - uid: 12034 + components: + - type: Transform + pos: -33.5,-47.5 + parent: 2 + - uid: 12043 + components: + - type: Transform + pos: -43.5,-47.5 + parent: 2 + - uid: 12046 + components: + - type: Transform + pos: -44.5,-47.5 + parent: 2 + - uid: 12054 + components: + - type: Transform + pos: -31.5,-48.5 + parent: 2 + - uid: 12063 + components: + - type: Transform + pos: -36.5,-48.5 + parent: 2 + - uid: 12065 + components: + - type: Transform + pos: -45.5,-48.5 + parent: 2 + - uid: 12068 + components: + - type: Transform + pos: -38.5,-41.5 + parent: 2 + - uid: 12079 + components: + - type: Transform + pos: -36.5,-42.5 + parent: 2 + - uid: 12085 + components: + - type: Transform + pos: -36.5,-41.5 + parent: 2 + - uid: 12086 + components: + - type: Transform + pos: -36.5,-40.5 + parent: 2 + - uid: 12097 + components: + - type: Transform + pos: -33.5,-39.5 + parent: 2 + - uid: 12102 + components: + - type: Transform + pos: -32.5,-39.5 + parent: 2 + - uid: 12106 + components: + - type: Transform + pos: -31.5,-39.5 + parent: 2 + - uid: 12109 + components: + - type: Transform + pos: -30.5,-39.5 + parent: 2 + - uid: 12113 + components: + - type: Transform + pos: -29.5,-39.5 + parent: 2 + - uid: 12119 + components: + - type: Transform + pos: -29.5,-40.5 + parent: 2 + - uid: 12123 + components: + - type: Transform + pos: -29.5,-41.5 + parent: 2 + - uid: 12126 + components: + - type: Transform + pos: -29.5,-42.5 + parent: 2 + - uid: 12129 + components: + - type: Transform + pos: -29.5,-43.5 + parent: 2 + - uid: 12134 + components: + - type: Transform + pos: -29.5,-44.5 + parent: 2 + - uid: 12147 + components: + - type: Transform + pos: -31.5,-42.5 + parent: 2 + - uid: 12151 + components: + - type: Transform + pos: -29.5,-46.5 + parent: 2 + - uid: 12156 + components: + - type: Transform + pos: -31.5,-41.5 + parent: 2 + - uid: 12168 + components: + - type: Transform + pos: -33.5,-41.5 + parent: 2 + - uid: 12172 + components: + - type: Transform + pos: -33.5,-42.5 + parent: 2 + - uid: 12177 + components: + - type: Transform + pos: -33.5,-43.5 + parent: 2 + - uid: 12178 + components: + - type: Transform + pos: -33.5,-44.5 + parent: 2 + - uid: 12189 + components: + - type: Transform + pos: -33.5,-45.5 + parent: 2 + - uid: 12191 + components: + - type: Transform + pos: -32.5,-42.5 + parent: 2 + - uid: 12194 + components: + - type: Transform + pos: -34.5,-43.5 + parent: 2 + - uid: 12205 + components: + - type: Transform + pos: -44.5,-22.5 + parent: 2 + - uid: 12208 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 12213 + components: + - type: Transform + pos: -45.5,-22.5 + parent: 2 + - uid: 12224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 2 + - uid: 12234 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - uid: 12249 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 12252 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 12258 + components: + - type: Transform + pos: -26.5,1.5 + parent: 2 + - uid: 12259 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - uid: 12263 + components: + - type: Transform + pos: 17.5,1.5 + parent: 2 + - uid: 12274 + components: + - type: Transform + pos: -53.5,-26.5 + parent: 2 + - uid: 12276 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 + - uid: 12288 + components: + - type: Transform + pos: -22.5,1.5 + parent: 2 + - uid: 12295 + components: + - type: Transform + pos: -25.5,1.5 + parent: 2 + - uid: 12299 + components: + - type: Transform + pos: -50.5,-38.5 + parent: 2 + - uid: 12302 + components: + - type: Transform + pos: -53.5,-36.5 + parent: 2 + - uid: 12303 + components: + - type: Transform + pos: -40.5,-47.5 + parent: 2 + - uid: 12305 + components: + - type: Transform + pos: -41.5,-47.5 + parent: 2 + - uid: 12377 + components: + - type: Transform + pos: -54.5,-36.5 + parent: 2 + - uid: 12392 + components: + - type: Transform + pos: -52.5,-36.5 + parent: 2 + - uid: 12410 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - uid: 12704 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 12705 + components: + - type: Transform + pos: 2.5,15.5 + parent: 2 + - uid: 12739 + components: + - type: Transform + pos: -57.5,-25.5 + parent: 2 + - uid: 12747 + components: + - type: Transform + pos: -39.5,-41.5 + parent: 2 + - uid: 12752 + components: + - type: Transform + pos: -44.5,-30.5 + parent: 2 + - uid: 12753 + components: + - type: Transform + pos: -45.5,-30.5 + parent: 2 + - uid: 12779 + components: + - type: Transform + pos: -32.5,-27.5 + parent: 2 + - uid: 12865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-48.5 + parent: 2 + - uid: 12866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-48.5 + parent: 2 + - uid: 12867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-48.5 + parent: 2 + - uid: 13023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-19.5 + parent: 2 + - uid: 13042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-21.5 + parent: 2 + - uid: 13043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-22.5 + parent: 2 + - uid: 13047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-25.5 + parent: 2 + - uid: 13048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-26.5 + parent: 2 + - uid: 13049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-28.5 + parent: 2 + - uid: 13101 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 13119 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - uid: 13148 + components: + - type: Transform + pos: -50.5,-39.5 + parent: 2 + - uid: 13157 + components: + - type: Transform + pos: -44.5,-25.5 + parent: 2 + - uid: 13172 + components: + - type: Transform + pos: -30.5,-32.5 + parent: 2 + - uid: 13190 + components: + - type: Transform + pos: -44.5,-26.5 + parent: 2 + - uid: 13192 + components: + - type: Transform + pos: -45.5,-26.5 + parent: 2 + - uid: 13196 + components: + - type: Transform + pos: -17.5,-44.5 + parent: 2 + - uid: 14355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-26.5 + parent: 2 + - uid: 14357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-25.5 + parent: 2 + - uid: 14489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 2 + - uid: 15032 + components: + - type: Transform + pos: 15.5,18.5 + parent: 2 + - uid: 15946 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 + - uid: 15954 + components: + - type: Transform + pos: 2.5,15.5 + parent: 2 + - uid: 16032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,27.5 + parent: 2 + - uid: 16040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,27.5 + parent: 2 + - uid: 16077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,28.5 + parent: 2 + - uid: 16079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,29.5 + parent: 2 + - uid: 16080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,30.5 + parent: 2 + - uid: 16120 + components: + - type: Transform + pos: -71.5,-4.5 + parent: 2 + - uid: 16121 + components: + - type: Transform + pos: -70.5,-4.5 + parent: 2 + - uid: 16122 + components: + - type: Transform + pos: -69.5,-4.5 + parent: 2 + - uid: 16123 + components: + - type: Transform + pos: -71.5,-3.5 + parent: 2 + - uid: 16188 + components: + - type: Transform + pos: -55.5,-55.5 + parent: 2 + - uid: 16246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-54.5 + parent: 2 + - uid: 16247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-55.5 + parent: 2 + - uid: 16248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-55.5 + parent: 2 + - uid: 16249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-54.5 + parent: 2 + - uid: 16250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-50.5 + parent: 2 + - uid: 16251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-53.5 + parent: 2 + - uid: 16252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-51.5 + parent: 2 + - uid: 16253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-51.5 + parent: 2 +- proto: WallSolidRust + entities: + - uid: 14790 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 8157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-7.5 + parent: 2 + - uid: 12766 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 12848 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 +- proto: WallWood + entities: + - uid: 11842 + components: + - type: Transform + pos: -59.5,34.5 + parent: 2 + - uid: 11845 + components: + - type: Transform + pos: -61.5,31.5 + parent: 2 + - uid: 11910 + components: + - type: Transform + pos: -59.5,32.5 + parent: 2 + - uid: 14958 + components: + - type: Transform + pos: -62.5,33.5 + parent: 2 + - uid: 15512 + components: + - type: Transform + pos: -59.5,33.5 + parent: 2 + - uid: 15532 + components: + - type: Transform + pos: -60.5,31.5 + parent: 2 + - uid: 15533 + components: + - type: Transform + pos: -61.5,35.5 + parent: 2 + - uid: 15538 + components: + - type: Transform + pos: -60.5,35.5 + parent: 2 +- proto: WardrobeBlack + entities: + - uid: 8906 + components: + - type: Transform + pos: -18.5,-28.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 13378 + - 13418 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8908 + components: + - type: Transform + pos: -17.5,-28.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 13420 + - 13419 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 9037 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9041 + - 9040 + - 9038 + - 9039 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WardrobeBlackFilled + entities: + - uid: 15233 + components: + - type: Transform + pos: -63.5,-8.5 + parent: 2 +- proto: WardrobeBlueFilled + entities: + - uid: 15070 + components: + - type: Transform + pos: -63.5,-7.5 + parent: 2 +- proto: WardrobeCargoFilled + entities: + - uid: 6513 + components: + - type: Transform + pos: 5.5,-32.5 + parent: 2 + - uid: 6514 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 2 +- proto: WardrobeGrey + entities: + - uid: 7695 + components: + - type: Transform + pos: -7.5,-20.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8942 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 7697 + components: + - type: Transform + pos: -6.5,-27.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8944 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8725 + components: + - type: Transform + pos: -7.5,-27.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8943 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8728 + components: + - type: Transform + pos: -6.5,-20.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8845 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WardrobeGreyFilled + entities: + - uid: 15067 + components: + - type: Transform + pos: -63.5,-6.5 + parent: 2 +- proto: WardrobeMixedFilled + entities: + - uid: 15071 + components: + - type: Transform + pos: -58.5,-5.5 + parent: 2 +- proto: WardrobePinkFilled + entities: + - uid: 15069 + components: + - type: Transform + pos: -58.5,-4.5 + parent: 2 +- proto: WardrobePrison + entities: + - uid: 15630 + components: + - type: Transform + pos: 2.5,39.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1837 + - 1921 + - 5739 + - 5737 + - 5734 + - 15638 + - 15637 + - 5733 + - 5709 + - 5705 + - 5691 + - 5677 + - 3853 + - 2496 + - 2452 + - 2194 + - 2106 + - 15639 + - 2071 + - 1995 + - 15636 + - 15635 + - 15634 + - 15633 + - 15632 + - 1903 + - 1120 + - 1119 + - 15631 + - 1118 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WarpPoint + entities: + - uid: 12327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,28.5 + parent: 2 + - type: WarpPoint + location: Суперматерия + - uid: 16012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,31.5 + parent: 2 + - type: WarpPoint + location: Атмосия + - uid: 16013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-41.5 + parent: 2 + - type: WarpPoint + location: Старый бар +- proto: WarpPointBombing + entities: + - uid: 2634 + components: + - type: Transform + pos: -15.5,-44.5 + parent: 2 + - type: WarpPoint + location: РНД + - uid: 13137 + components: + - type: Transform + pos: -37.5,-10.5 + parent: 2 + - type: WarpPoint + location: Медицинский + - uid: 14249 + components: + - type: Transform + pos: -38.5,8.5 + parent: 2 + - type: WarpPoint + location: Инженерный + - uid: 14250 + components: + - type: Transform + pos: -13.5,15.5 + parent: 2 + - type: WarpPoint + location: Мостик + - uid: 14289 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - type: WarpPoint + location: Бриг + - uid: 14293 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 2 + - type: WarpPoint + location: Снабжение +- proto: WaterCooler + entities: + - uid: 5801 + components: + - type: Transform + pos: 2.5,11.5 + parent: 2 + - uid: 7064 + components: + - type: Transform + pos: -14.5,-44.5 + parent: 2 + - uid: 8121 + components: + - type: Transform + pos: 17.5,2.5 + parent: 2 + - uid: 8923 + components: + - type: Transform + pos: -14.5,-28.5 + parent: 2 + - uid: 12835 + components: + - type: Transform + pos: -28.5,11.5 + parent: 2 + - uid: 12913 + components: + - type: Transform + pos: -41.5,-9.5 + parent: 2 +- proto: WaterTankFull + entities: + - uid: 6299 + components: + - type: Transform + pos: -47.5,6.5 + parent: 2 + - uid: 8132 + components: + - type: Transform + pos: -27.5,17.5 + parent: 2 + - uid: 13055 + components: + - type: Transform + pos: -65.5,-7.5 + parent: 2 +- proto: WaterTankHighCapacity + entities: + - uid: 6747 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 2 + - uid: 8164 + components: + - type: Transform + pos: 18.5,13.5 + parent: 2 +- proto: WeaponCapacitorRecharger + entities: + - uid: 619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,34.5 + parent: 2 + - uid: 5465 + components: + - type: Transform + pos: -18.5,19.5 + parent: 2 + - uid: 6985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-18.5 + parent: 2 + - uid: 7169 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 16227 + components: + - type: Transform + pos: 4.5,27.5 + parent: 2 +- proto: WeaponDisablerPractice + entities: + - uid: 16285 + components: + - type: Transform + pos: -52.54402,-58.367523 + parent: 2 +- proto: WeaponDisablerSMG + entities: + - uid: 16027 + components: + - type: Transform + pos: 4.413334,27.716482 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 16028 + components: + - type: Transform + pos: 4.3869095,27.496864 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: WeaponEnergyGun + entities: + - uid: 3884 + components: + - type: Transform + pos: 9.499064,14.512292 + parent: 2 + - uid: 4073 + components: + - type: Transform + pos: 9.547921,14.829312 + parent: 2 + - uid: 4444 + components: + - type: Transform + pos: 9.527312,14.66743 + parent: 2 +- proto: WeaponEnergyGunMini + entities: + - uid: 3906 + components: + - type: Transform + pos: 8.419582,4.793628 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 3966 + components: + - type: Transform + pos: 8.550114,4.5684986 + parent: 2 + - type: EnergyGun + currentFireMode: + state: disabler + name: disable + fireCost: 50 + proto: BulletDisabler + - type: Item + heldPrefix: disabler + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: WeaponLaserCarbine + entities: + - uid: 5659 + components: + - type: Transform + parent: 13255 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 5660 + components: + - type: Transform + parent: 13255 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: WeaponLaserCarbinePractice + entities: + - uid: 16287 + components: + - type: Transform + pos: -52.472626,-58.55813 + parent: 2 +- proto: WeaponLaserGun + entities: + - uid: 11848 + components: + - type: Transform + pos: -60.47788,32.57927 + parent: 2 +- proto: WeaponRifleLecter + entities: + - uid: 15040 + components: + - type: Transform + parent: 6305 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15041 + components: + - type: Transform + parent: 6305 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: WeaponShotgunDoubleBarreledRubber + entities: + - uid: 15735 + components: + - type: Transform + parent: 15660 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: WeaponShotgunHandmade + entities: + - uid: 12244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.52131,-40.610535 + parent: 2 +- proto: WeaponShotgunKammerer + entities: + - uid: 13411 + components: + - type: Transform + parent: 13256 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13717 + components: + - type: Transform + parent: 13256 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14556 + components: + - type: Transform + parent: 13256 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: WeaponShotgunSawnEmpty + entities: + - uid: 6645 + components: + - type: Transform + pos: -11.577532,-3.1936564 + parent: 2 +- proto: WeaponSubMachineGunDrozd + entities: + - uid: 9582 + components: + - type: Transform + parent: 9464 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12407 + components: + - type: Transform + parent: 9464 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Welder + entities: + - uid: 16095 + components: + - type: Transform + pos: 13.404464,32.675323 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: WelderIndustrial + entities: + - uid: 14574 + components: + - type: Transform + parent: 14573 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14637 + components: + - type: Transform + parent: 14634 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: WelderIndustrialAdvanced + entities: + - uid: 2896 + components: + - type: Transform + pos: -45.670647,2.4567242 + parent: 2 + - uid: 14662 + components: + - type: Transform + pos: -47.447224,35.531094 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: WeldingFuelTankFull + entities: + - uid: 1508 + components: + - type: Transform + pos: -27.5,19.5 + parent: 2 + - uid: 14215 + components: + - type: Transform + pos: -47.5,7.5 + parent: 2 +- proto: Windoor + entities: + - uid: 5701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-30.5 + parent: 2 + - uid: 6104 + components: + - type: Transform + pos: -6.5,-20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8845 + - uid: 6771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-12.5 + parent: 2 + - uid: 7696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8944 + - uid: 8726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8943 + - uid: 8844 + components: + - type: Transform + pos: -7.5,-20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8942 +- proto: WindoorAssembly + entities: + - uid: 14453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-39.5 + parent: 2 +- proto: WindoorBarKitchenLocked + entities: + - uid: 6770 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 2 +- proto: WindoorBarLocked + entities: + - uid: 6636 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 2 + - uid: 6647 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 2 +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 6731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-3.5 + parent: 2 + - uid: 6732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-4.5 + parent: 2 +- proto: WindoorSecure + entities: + - uid: 5552 + components: + - type: Transform + pos: -9.5,2.5 + parent: 2 + - uid: 5830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,31.5 + parent: 2 + - uid: 6594 + components: + - type: Transform + pos: -37.5,2.5 + parent: 2 + - uid: 6595 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 6596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-36.5 + parent: 2 + - uid: 6597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-26.5 + parent: 2 + - uid: 6598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-25.5 + parent: 2 + - uid: 6759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 2 + - uid: 6998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-4.5 + parent: 2 + - uid: 6999 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 + - uid: 7230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-39.5 + parent: 2 + - uid: 7896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-13.5 + parent: 2 + - uid: 8084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 2 + - uid: 8218 + components: + - type: Transform + pos: -45.5,-2.5 + parent: 2 + - uid: 8219 + components: + - type: Transform + pos: -46.5,-2.5 + parent: 2 + - uid: 12561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-13.5 + parent: 2 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 5821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,10.5 + parent: 2 +- proto: WindoorSecureCargoLocked + entities: + - uid: 1468 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 2 + - uid: 6519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-26.5 + parent: 2 + - uid: 6520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-25.5 + parent: 2 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-7.5 + parent: 2 + - uid: 731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-4.5 + parent: 2 +- proto: WindoorSecureCommandLocked + entities: + - uid: 11559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,-34.5 + parent: 2 + - uid: 13334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,7.5 + parent: 2 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 6293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,2.5 + parent: 2 + - uid: 6294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,2.5 + parent: 2 + - uid: 14132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,5.5 + parent: 2 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 5551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 2 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 5022 + components: + - type: Transform + pos: -42.5,-14.5 + parent: 2 + - uid: 12923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-12.5 + parent: 2 + - uid: 13407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-10.5 + parent: 2 +- proto: WindoorSecureScienceLocked + entities: + - uid: 7229 + components: + - type: Transform + pos: -20.5,-39.5 + parent: 2 +- proto: WindoorSecureSecurityLawyerLocked + entities: + - uid: 5820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 2 + - uid: 6988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-19.5 + parent: 2 + - uid: 6989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-18.5 + parent: 2 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,-6.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,34.5 + parent: 2 + - uid: 4443 + components: + - type: Transform + pos: 6.5,31.5 + parent: 2 + - uid: 5703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,27.5 + parent: 2 + - uid: 5920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,26.5 + parent: 2 + - uid: 8261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 2 + - uid: 16100 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 +- proto: Window + entities: + - uid: 1267 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 + - uid: 1268 + components: + - type: Transform + pos: -18.5,-36.5 + parent: 2 + - uid: 1885 + components: + - type: Transform + pos: -61.5,-2.5 + parent: 2 + - uid: 1890 + components: + - type: Transform + pos: -60.5,-2.5 + parent: 2 + - uid: 1899 + components: + - type: Transform + pos: 20.5,2.5 + parent: 2 + - uid: 1902 + components: + - type: Transform + pos: 20.5,4.5 + parent: 2 + - uid: 1914 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - uid: 1916 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 2 + - uid: 1966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 2 + - uid: 1967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 2 + - uid: 2066 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 2 + - uid: 2067 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - uid: 2068 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 2 + - uid: 2072 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 2 + - uid: 2073 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 2 + - uid: 2074 + components: + - type: Transform + pos: -25.5,-29.5 + parent: 2 + - uid: 2075 + components: + - type: Transform + pos: -25.5,-30.5 + parent: 2 + - uid: 2076 + components: + - type: Transform + pos: -27.5,-32.5 + parent: 2 + - uid: 2078 + components: + - type: Transform + pos: -50.5,-25.5 + parent: 2 + - uid: 2079 + components: + - type: Transform + pos: -50.5,-29.5 + parent: 2 + - uid: 2080 + components: + - type: Transform + pos: -53.5,-24.5 + parent: 2 + - uid: 2082 + components: + - type: Transform + pos: -53.5,-30.5 + parent: 2 + - uid: 2097 + components: + - type: Transform + pos: -25.5,11.5 + parent: 2 + - uid: 2099 + components: + - type: Transform + pos: -25.5,9.5 + parent: 2 + - uid: 2102 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 2 + - uid: 2260 + components: + - type: Transform + pos: 19.5,1.5 + parent: 2 + - uid: 2538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-36.5 + parent: 2 + - uid: 4451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,40.5 + parent: 2 + - uid: 5848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,42.5 + parent: 2 + - uid: 5851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,42.5 + parent: 2 + - uid: 5914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,40.5 + parent: 2 + - uid: 5919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,41.5 + parent: 2 + - uid: 6330 + components: + - type: Transform + pos: -17.5,-46.5 + parent: 2 + - uid: 6620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 2 + - uid: 6665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,40.5 + parent: 2 + - uid: 6746 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 2 + - uid: 8025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,5.5 + parent: 2 + - uid: 8026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,4.5 + parent: 2 + - uid: 8028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,3.5 + parent: 2 + - uid: 8285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-36.5 + parent: 2 + - uid: 8827 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 2 + - uid: 8828 + components: + - type: Transform + pos: -13.5,-24.5 + parent: 2 + - uid: 11620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,40.5 + parent: 2 + - uid: 11626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,41.5 + parent: 2 +- proto: WindowDirectional + entities: + - uid: 1057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-20.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-27.5 + parent: 2 + - uid: 6769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 2 + - uid: 6941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-10.5 + parent: 2 + - uid: 7171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,27.5 + parent: 2 + - uid: 7906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-0.5 + parent: 2 + - uid: 7907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,1.5 + parent: 2 + - uid: 7908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,1.5 + parent: 2 + - uid: 7909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,0.5 + parent: 2 + - uid: 7960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,-0.5 + parent: 2 + - uid: 7961 + components: + - type: Transform + pos: -79.5,-0.5 + parent: 2 + - uid: 7962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,1.5 + parent: 2 + - uid: 8070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,0.5 + parent: 2 + - uid: 8797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-30.5 + parent: 2 + - uid: 9500 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 2 + - uid: 12730 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - uid: 12738 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 2 + - uid: 12924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-10.5 + parent: 2 + - uid: 13534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-10.5 + parent: 2 + - uid: 14208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-11.5 + parent: 2 + - uid: 15049 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 16144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,29.5 + parent: 2 + - uid: 16148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,29.5 + parent: 2 + - uid: 16202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,29.5 + parent: 2 + - uid: 16203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,31.5 + parent: 2 +- proto: WindowFrostedDirectional + entities: + - uid: 9035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 2 + - uid: 13317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,6.5 + parent: 2 +- proto: WindowReinforcedDirectional + entities: + - uid: 340 + components: + - type: Transform + pos: -14.5,23.5 + parent: 2 + - uid: 341 + components: + - type: Transform + pos: -10.5,1.5 + parent: 2 + - uid: 344 + components: + - type: Transform + pos: -15.5,23.5 + parent: 2 + - uid: 345 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - uid: 348 + components: + - type: Transform + pos: -16.5,23.5 + parent: 2 + - uid: 349 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 352 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - uid: 356 + components: + - type: Transform + pos: -11.5,23.5 + parent: 2 + - uid: 358 + components: + - type: Transform + pos: -9.5,23.5 + parent: 2 + - uid: 360 + components: + - type: Transform + pos: -12.5,23.5 + parent: 2 + - uid: 362 + components: + - type: Transform + pos: -10.5,23.5 + parent: 2 + - uid: 790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,-7.5 + parent: 2 + - uid: 2332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,35.5 + parent: 2 + - uid: 2532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,32.5 + parent: 2 + - uid: 2940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-5.5 + parent: 2 + - uid: 5852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,33.5 + parent: 2 + - uid: 5854 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 + - uid: 5867 + components: + - type: Transform + pos: 0.5,36.5 + parent: 2 + - uid: 6648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 2 + - uid: 8359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 2 + - uid: 8456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 2 + - uid: 11264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-37.5 + parent: 2 + - uid: 11265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-36.5 + parent: 2 + - uid: 11266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-32.5 + parent: 2 + - uid: 11267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-31.5 + parent: 2 + - uid: 11417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,5.5 + parent: 2 + - uid: 12707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,9.5 + parent: 2 + - uid: 13931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,5.5 + parent: 2 + - uid: 14212 + components: + - type: Transform + pos: 4.5,37.5 + parent: 2 + - uid: 15808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,33.5 + parent: 2 + - uid: 15811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,34.5 + parent: 2 + - uid: 15820 + components: + - type: Transform + pos: 1.5,36.5 + parent: 2 + - uid: 15821 + components: + - type: Transform + pos: 2.5,36.5 + parent: 2 + - uid: 15949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,11.5 + parent: 2 + - uid: 16099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,32.5 + parent: 2 + - uid: 16220 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 +- proto: Wirecutter + entities: + - uid: 3233 + components: + - type: Transform + pos: -31.417683,-51.298077 + parent: 2 + - uid: 16096 + components: + - type: Transform + pos: 13.465051,32.742405 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: WoodDoor + entities: + - uid: 2539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-42.5 + parent: 2 + - uid: 8609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-40.5 + parent: 2 +- proto: WoodenSupportWall + entities: + - uid: 15536 + components: + - type: Transform + pos: -62.5,34.5 + parent: 2 +- proto: Wrench + entities: + - uid: 14615 + components: + - type: Transform + pos: -47.599834,13.563812 + parent: 2 +- proto: ZiptiesBroken + entities: + - uid: 13615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.37337,-27.754776 + parent: 2 + - uid: 14413 + components: + - type: Transform + pos: -40.673763,-23.413513 + parent: 2 +... diff --git a/Resources/Maps/Ruins/DeltaV/biodome_satellite.yml b/Resources/Maps/Ruins/DeltaV/biodome_satellite.yml index 02d55a3cf0..4631b1aad8 100644 --- a/Resources/Maps/Ruins/DeltaV/biodome_satellite.yml +++ b/Resources/Maps/Ruins/DeltaV/biodome_satellite.yml @@ -73,6 +73,10 @@ entities: - type: Gravity gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg + - type: DeviceNetwork + configurators: [] + deviceLists: [] + transmitFrequencyId: ShuttleTimer - type: DecalGrid chunkCollection: version: 2 diff --git a/Resources/Maps/Ruins/DeltaV/old_ai_sat.yml b/Resources/Maps/Ruins/DeltaV/old_ai_sat.yml index 2b4110b781..3d0ef0b73b 100644 --- a/Resources/Maps/Ruins/DeltaV/old_ai_sat.yml +++ b/Resources/Maps/Ruins/DeltaV/old_ai_sat.yml @@ -81,6 +81,10 @@ entities: - type: Gravity gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg + - type: DeviceNetwork + configurators: [] + deviceLists: [] + transmitFrequencyId: ShuttleTimer - type: DecalGrid chunkCollection: version: 2 diff --git a/Resources/Maps/Salvage/DeltaV/DV-atlas-conference-room.yml b/Resources/Maps/Salvage/DeltaV/DV-atlas-conference-room.yml index c01a214ca5..4664f07f40 100644 --- a/Resources/Maps/Salvage/DeltaV/DV-atlas-conference-room.yml +++ b/Resources/Maps/Salvage/DeltaV/DV-atlas-conference-room.yml @@ -55,6 +55,10 @@ entities: - type: Gravity gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg + - type: DeviceNetwork + configurators: [] + deviceLists: [] + transmitFrequencyId: ShuttleTimer - type: DecalGrid chunkCollection: version: 2 diff --git a/Resources/Maps/Salvage/small-3.yml b/Resources/Maps/Salvage/small-3.yml index 7a29b665ff..cc015fe27b 100644 --- a/Resources/Maps/Salvage/small-3.yml +++ b/Resources/Maps/Salvage/small-3.yml @@ -926,176 +926,132 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-10.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 4 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 6 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 7 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,8.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 14 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 17 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 24 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 25 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 26 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 29 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 30 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 31 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 37 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 38 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 44 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 48 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 49 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 50 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 51 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,4.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 52 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 53 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,4.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 66 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 75 components: - type: Transform @@ -1108,8 +1064,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 78 components: - type: Transform @@ -1122,144 +1076,108 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 80 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 97 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 101 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 105 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 106 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 107 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 108 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,8.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 110 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 112 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 115 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,8.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 116 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 117 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 118 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 119 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 120 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 121 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 122 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 123 components: - type: Transform @@ -1278,48 +1196,36 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 126 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 127 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 128 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 129 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 130 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 131 components: - type: Transform @@ -1332,88 +1238,66 @@ entities: rot: 3.141592653589793 rad pos: -1.5,3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 133 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 134 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 135 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 136 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 137 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 138 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 139 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 140 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 141 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 142 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 143 components: - type: Transform @@ -1444,40 +1328,30 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 148 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 149 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 150 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 151 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 152 components: - type: Transform @@ -1490,112 +1364,84 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 154 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 155 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 156 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 157 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 158 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 159 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 160 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,8.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 161 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 162 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 163 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 164 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 165 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 166 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 167 components: - type: Transform @@ -1614,56 +1460,42 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 170 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 171 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 172 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 173 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 174 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 175 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 176 components: - type: Transform @@ -1676,8 +1508,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 178 components: - type: Transform @@ -1690,1104 +1520,828 @@ entities: rot: 3.141592653589793 rad pos: 9.5,3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 180 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 181 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 182 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 183 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 184 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 185 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 186 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 187 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 188 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 189 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 190 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 191 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 192 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 193 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 194 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 195 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 196 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 197 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 198 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 199 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 200 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 201 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 202 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 203 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 204 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 205 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 206 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 207 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 208 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 209 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 210 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 211 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 212 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 213 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 214 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 215 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 216 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 217 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 218 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 219 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 220 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 221 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 222 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 223 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 224 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 225 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 226 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 227 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 228 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 229 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 230 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 231 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 232 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 233 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 234 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 235 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 236 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 237 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 238 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 239 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 240 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 241 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 242 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 243 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 244 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 245 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 246 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 247 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 248 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 249 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 250 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 251 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 252 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 253 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 254 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 255 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 256 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 257 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 258 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 259 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 260 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 261 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 262 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 263 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 264 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 265 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 266 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 267 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 268 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 269 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 270 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 271 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 272 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 273 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 274 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 275 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 276 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 277 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 278 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 279 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 280 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 281 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 282 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 283 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 284 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 285 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 286 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 287 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 288 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 289 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 290 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 291 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 292 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 293 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 294 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 295 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 296 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 297 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 298 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 299 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 300 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 301 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 302 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 303 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-4.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 304 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-4.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 305 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-4.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 306 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 307 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 308 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-1.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 309 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-0.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 310 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 311 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 312 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 313 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 314 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-4.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 315 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 316 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-2.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 317 components: - type: Transform @@ -2800,982 +2354,736 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 319 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 320 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-4.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 321 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-4.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 322 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-4.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 323 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-4.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 324 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-4.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 325 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 326 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-4.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 327 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 328 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 329 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 330 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 331 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 332 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-8.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 333 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 334 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 335 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 336 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-8.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 337 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-9.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 338 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-9.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 339 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-9.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 340 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-10.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 341 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-10.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 342 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-10.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 343 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-9.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 344 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-9.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 345 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-9.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 346 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-10.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 347 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-10.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 348 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-10.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 349 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-10.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 350 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-10.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 351 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-9.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 352 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-9.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 353 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-9.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 354 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-9.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 355 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-8.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 356 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-8.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 357 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-8.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 358 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 359 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 360 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 361 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 362 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 363 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 364 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 365 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 366 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 367 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-8.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 368 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-8.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 369 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 370 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 371 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 372 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 373 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 374 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 375 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 376 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 377 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 378 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 379 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 380 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 381 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 382 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-8.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 383 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-9.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 384 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-10.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 385 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-10.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 386 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-8.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 387 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-9.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 388 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-9.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 389 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-10.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 390 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-9.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 391 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-8.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 392 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 393 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 394 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 395 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 396 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 397 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-8.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 398 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-10.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 399 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-10.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 400 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-10.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 401 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-9.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 402 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 403 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 404 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 405 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 406 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 407 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 408 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-4.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 409 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-4.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 410 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-4.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 411 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 412 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 413 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 414 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 415 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 416 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 417 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 418 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 419 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 420 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 421 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-6.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 422 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 423 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-8.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 424 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-8.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 425 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-7.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 426 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-3.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 427 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-4.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 428 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-4.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 429 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-4.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 430 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-4.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 431 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-5.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 432 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-9.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 433 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-8.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 434 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-8.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 435 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-8.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 436 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-8.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 437 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-10.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 438 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-9.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 439 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-9.5 parent: 10 - - type: Godmode - oldDamage: {} - uid: 440 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-9.5 parent: 10 - - type: Godmode - oldDamage: {} ... diff --git a/Resources/Maps/Salvage/vegan-meatball.yml b/Resources/Maps/Salvage/vegan-meatball.yml index 824e3d0b7e..ab67aabadb 100644 --- a/Resources/Maps/Salvage/vegan-meatball.yml +++ b/Resources/Maps/Salvage/vegan-meatball.yml @@ -505,7 +505,7 @@ entities: chemicals: THC: Inherent: True - PotencyDivisor: 10 + potencyDivisor: 10 Max: 10 Min: 1 productPrototypes: @@ -578,7 +578,7 @@ entities: chemicals: Stellibinin: Inherent: True - PotencyDivisor: 4 + potencyDivisor: 4 Max: 25 Min: 1 productPrototypes: diff --git a/Resources/Maps/Shuttles/DeltaV/NTES_Box.yml b/Resources/Maps/Shuttles/DeltaV/NTES_Box.yml index 61831cd089..30e9979650 100644 --- a/Resources/Maps/Shuttles/DeltaV/NTES_Box.yml +++ b/Resources/Maps/Shuttles/DeltaV/NTES_Box.yml @@ -61,6 +61,10 @@ entities: - type: Gravity gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg + - type: DeviceNetwork + configurators: [] + deviceLists: [] + transmitFrequencyId: ShuttleTimer - type: DecalGrid chunkCollection: version: 2 diff --git a/Resources/Maps/Shuttles/DeltaV/NTES_Delta.yml b/Resources/Maps/Shuttles/DeltaV/NTES_Delta.yml index ea42d89ddd..764a81b452 100644 --- a/Resources/Maps/Shuttles/DeltaV/NTES_Delta.yml +++ b/Resources/Maps/Shuttles/DeltaV/NTES_Delta.yml @@ -68,6 +68,10 @@ entities: - type: Gravity gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg + - type: DeviceNetwork + configurators: [] + deviceLists: [] + transmitFrequencyId: ShuttleTimer - type: DecalGrid chunkCollection: version: 2 diff --git a/Resources/Maps/Shuttles/DeltaV/NTES_Kaeri.yml b/Resources/Maps/Shuttles/DeltaV/NTES_Kaeri.yml index 0a9fc598df..35a8eb637a 100644 --- a/Resources/Maps/Shuttles/DeltaV/NTES_Kaeri.yml +++ b/Resources/Maps/Shuttles/DeltaV/NTES_Kaeri.yml @@ -61,6 +61,10 @@ entities: - type: Gravity gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg + - type: DeviceNetwork + configurators: [] + deviceLists: [] + transmitFrequencyId: ShuttleTimer - type: DecalGrid chunkCollection: version: 2 diff --git a/Resources/Maps/Shuttles/DeltaV/NTES_Lox.yml b/Resources/Maps/Shuttles/DeltaV/NTES_Lox.yml index 9522cd74d3..e04c801d28 100644 --- a/Resources/Maps/Shuttles/DeltaV/NTES_Lox.yml +++ b/Resources/Maps/Shuttles/DeltaV/NTES_Lox.yml @@ -66,6 +66,10 @@ entities: - type: Gravity gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg + - type: DeviceNetwork + configurators: [] + deviceLists: [] + transmitFrequencyId: ShuttleTimer - type: DecalGrid chunkCollection: version: 2 diff --git a/Resources/Maps/Shuttles/DeltaV/NTES_Propeller.yml b/Resources/Maps/Shuttles/DeltaV/NTES_Propeller.yml index 929103c42a..c814fb0b34 100644 --- a/Resources/Maps/Shuttles/DeltaV/NTES_Propeller.yml +++ b/Resources/Maps/Shuttles/DeltaV/NTES_Propeller.yml @@ -90,6 +90,10 @@ entities: - type: Gravity gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg + - type: DeviceNetwork + configurators: [] + deviceLists: [] + transmitFrequencyId: ShuttleTimer - type: DecalGrid chunkCollection: version: 2 diff --git a/Resources/Maps/Shuttles/ShuttleEvent/disaster_evacpod.yml b/Resources/Maps/Shuttles/ShuttleEvent/disaster_evacpod.yml new file mode 100644 index 0000000000..be1ca4ffde --- /dev/null +++ b/Resources/Maps/Shuttles/ShuttleEvent/disaster_evacpod.yml @@ -0,0 +1,350 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 82: FloorShuttleOrange + 85: FloorShuttleWhite + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Evacuation pod + - type: Transform + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: eQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,-1: + 0: 4368 + 1: 32 + 0,0: + 1: 2 + -1,0: + 1: 8 + -1,-1: + 1: 128 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: NavMap +- proto: AirlockShuttle + entities: + - uid: 2 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 4 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 +- proto: BoxMRE + entities: + - uid: 6 + components: + - type: Transform + parent: 5 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableApcExtension + entities: + - uid: 10 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 +- proto: CableHV + entities: + - uid: 13 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: CableMV + entities: + - uid: 15 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - 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: + - 8 + - 9 + - 6 + - 7 +- proto: ClothingOuterSuitEmergency + entities: + - uid: 7 + components: + - type: Transform + parent: 5 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComputerShuttle + entities: + - uid: 19 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 +- proto: DisasterVictimSpawner + entities: + - uid: 20 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 +- proto: GeneratorWallmountAPU + entities: + - uid: 21 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 32 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 +- proto: HandheldGPSBasic + entities: + - uid: 8 + components: + - type: Transform + parent: 5 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Poweredlight + entities: + - uid: 22 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 23 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 24 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 +- proto: Thruster + entities: + - uid: 25 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 26 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 27 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 28 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 30 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 +- proto: WeaponLaserSvalinn + entities: + - uid: 9 + components: + - type: Transform + parent: 5 + - type: Physics + canCollide: False + - type: InsideEntityStorage +... diff --git a/Resources/Maps/Shuttles/ShuttleEvent/honki.yml b/Resources/Maps/Shuttles/ShuttleEvent/honki.yml new file mode 100644 index 0000000000..0fca6a8ba9 --- /dev/null +++ b/Resources/Maps/Shuttles/ShuttleEvent/honki.yml @@ -0,0 +1,2666 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 20: FloorCarpetClown + 25: FloorClown + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Honkomother + - type: Transform + pos: 1.212189,-1.7551664 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: GQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAAAGQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAGQAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerNe + decals: + 21: 5,-5 + 39: -4,-1 + 40: 6,-1 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerNw + decals: + 20: -5,-5 + 41: -6,-1 + 42: 4,-1 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerSe + decals: + 0: 2,-3 + 23: 5,-7 + 35: -4,-3 + 36: 6,-3 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerSw + decals: + 1: -2,-3 + 33: -5,-7 + 37: -6,-3 + 38: 4,-3 + - node: + color: '#EFB34196' + id: MiniTileWhiteInnerNe + decals: + 57: -2,0 + - node: + color: '#EFB34196' + id: MiniTileWhiteInnerNw + decals: + 56: 2,0 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineE + decals: + 2: 2,-2 + 3: 2,-1 + 4: 2,0 + 5: 2,1 + 22: 5,-6 + 47: -4,-2 + 48: 6,-2 + 55: -2,1 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineN + decals: + 13: 0,-5 + 14: 4,-5 + 15: -1,-5 + 16: 1,-5 + 17: 3,-5 + 18: -3,-5 + 19: -4,-5 + 49: -5,-1 + 50: 5,-1 + 51: -1,0 + 52: 0,0 + 53: 1,0 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineS + decals: + 10: -1,-3 + 11: 0,-3 + 12: 1,-3 + 24: 4,-7 + 25: 3,-7 + 26: 2,-7 + 27: 1,-7 + 28: 0,-7 + 29: -1,-7 + 30: -2,-7 + 31: -3,-7 + 32: -4,-7 + 43: -5,-3 + 44: 5,-3 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineW + decals: + 6: -2,-2 + 7: -2,-1 + 8: -2,0 + 9: -2,1 + 34: -5,-6 + 45: 4,-2 + 46: -6,-2 + 54: 2,1 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 887 + 1: 18432 + 0,-1: + 0: 30576 + -1,0: + 0: 2252 + 1: 16912 + 1,0: + 1: 56 + 1,-1: + 0: 30576 + 0,-2: + 0: 48051 + -1,-2: + 0: 48056 + -1,-1: + 0: 56784 + 0,-3: + 1: 32768 + 1,-3: + 1: 12288 + 1,-2: + 0: 13104 + 1: 34820 + -2,0: + 1: 130 + -2,-1: + 0: 52928 + -2,-2: + 1: 8708 + 0: 34944 + -2,-3: + 1: 32768 + -1,-3: + 1: 12288 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirCanister + entities: + - uid: 2 + components: + - type: Transform + anchored: True + pos: -1.5,-2.5 + parent: 1 + - type: Physics + bodyType: Static + - uid: 3 + components: + - type: Transform + anchored: True + pos: 2.5,-2.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockShuttle + entities: + - uid: 4 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 +- proto: AltarBananium + entities: + - uid: 374 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 5 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 +- proto: BananaPhoneInstrument + entities: + - uid: 7 + components: + - type: Transform + pos: -1.4946816,-0.2775966 + parent: 1 +- proto: BananiumDoor + entities: + - uid: 8 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 12 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 +- proto: BarricadeBlock + entities: + - uid: 372 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 +- proto: Bed + entities: + - uid: 13 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 +- proto: BedsheetSpawner + entities: + - uid: 17 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 +- proto: BikeHornImplanter + entities: + - uid: 22 + components: + - type: Transform + parent: 21 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27 + components: + - type: Transform + parent: 26 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableApcExtension + entities: + - uid: 31 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 +- proto: CableHV + entities: + - uid: 82 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 +- proto: CableMV + entities: + - uid: 86 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 92 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 +- proto: CigaretteBanana + entities: + - uid: 94 + components: + - type: Transform + parent: 93 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 95 + components: + - type: Transform + parent: 93 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 96 + components: + - type: Transform + parent: 93 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitClown + entities: + - uid: 97 + components: + - type: Transform + parent: 93 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 100 + components: + - type: Transform + parent: 99 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 104 + components: + - type: Transform + parent: 103 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterClown + entities: + - uid: 105 + components: + - type: Transform + parent: 103 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClownRecorder + entities: + - uid: 107 + components: + - type: Transform + pos: 2.6453638,0.42502415 + parent: 1 +- proto: ClownTroupeSpawner + entities: + - uid: 108 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 +- proto: CluwneHorn + entities: + - uid: 23 + components: + - type: Transform + parent: 21 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28 + components: + - type: Transform + parent: 26 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComfyChair + entities: + - uid: 111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 113 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: CrateCargoGambling + entities: + - uid: 114 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 +- proto: CratePirate + entities: + - uid: 21 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - 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: + - 25 + - 23 + - 22 + - 24 + - 261 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 26 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - 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: + - 29 + - 315 + - 27 + - 28 + - 30 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 115 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 125 + - 124 + - 123 + - 122 + - 121 + - 126 + - 120 + - 119 + - 118 + - 117 + - 116 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 127 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 128 + - 129 + - 130 + - 131 + - 132 + - 133 + - 134 + - 135 + - 138 + - 136 + - 137 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: DehydratedSpaceCarp + entities: + - uid: 24 + components: + - type: Transform + parent: 21 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 29 + components: + - type: Transform + parent: 26 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DeviceQuantumSpinInverter + entities: + - uid: 25 + components: + - type: Transform + parent: 21 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 30 + components: + - type: Transform + parent: 26 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: EmergencyFunnyOxygenTankFilled + entities: + - uid: 98 + components: + - type: Transform + parent: 93 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 101 + components: + - type: Transform + parent: 99 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 106 + components: + - type: Transform + parent: 103 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FloorBananiumEntity + entities: + - uid: 139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 +- proto: FoodBanana + entities: + - uid: 116 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 117 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 118 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 119 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 128 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 129 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 130 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 131 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBurgerClown + entities: + - uid: 144 + components: + - type: Transform + pos: -1.5971907,0.54355335 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: -1.405974,0.27368832 + parent: 1 +- proto: FoodCakeClown + entities: + - uid: 146 + components: + - type: Transform + pos: 2.4229474,-0.24963892 + parent: 1 +- proto: FoodMeatClown + entities: + - uid: 147 + components: + - type: Transform + pos: 3.4782665,-4.592343 + parent: 1 +- proto: FoodPieBananaCream + entities: + - uid: 120 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 121 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 122 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 123 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 124 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 125 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 132 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 133 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 134 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 135 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 136 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 137 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GasPassiveVent + entities: + - uid: 148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 +- proto: GasPipeBend + entities: + - uid: 150 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 +- proto: GasPipeFourway + entities: + - uid: 154 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: GasPipeStraight + entities: + - uid: 161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - uid: 171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + - uid: 190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - uid: 192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - uid: 193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + - uid: 198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + - uid: 199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 +- proto: GasPipeTJunction + entities: + - uid: 201 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 +- proto: GasPort + entities: + - uid: 203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 +- proto: GasVentPump + entities: + - uid: 205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 +- proto: GasVentScrubber + entities: + - uid: 211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + - uid: 212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + - uid: 214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + - uid: 215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 +- proto: GeneratorWallmountAPU + entities: + - uid: 219 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 +- proto: GoldenBikeHorn + entities: + - uid: 222 + components: + - type: Transform + pos: 6.4591703,-1.2964956 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 223 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 +- proto: Grille + entities: + - uid: 224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + - uid: 225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 + - uid: 229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + - uid: 230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + - uid: 231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 1 + - uid: 232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + - uid: 233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 1 + - uid: 234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + - uid: 235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 1 + - uid: 236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + - uid: 237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-6.5 + parent: 1 + - uid: 238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1 + - uid: 239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + - uid: 240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 243 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + - uid: 248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - uid: 251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + - uid: 254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-4.5 + parent: 1 + - uid: 256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 1 + - uid: 257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 1 + - uid: 258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 259 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 +- proto: LampBanana + entities: + - uid: 260 + components: + - type: Transform + pos: 2.532099,1.060484 + parent: 1 +- proto: LauncherCreamPie + entities: + - uid: 126 + components: + - type: Transform + parent: 115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 138 + components: + - type: Transform + parent: 127 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PlasmaWindow + entities: + - uid: 262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - uid: 263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - uid: 264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 1 + - uid: 269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + - uid: 270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + - uid: 271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + - uid: 272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 1 + - uid: 273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 1 + - uid: 274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + - uid: 275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-6.5 + parent: 1 + - uid: 276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + - uid: 277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + - uid: 278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 +- proto: PlasmaWindowDiagonal + entities: + - uid: 281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + - uid: 286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - uid: 287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - uid: 288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 1 + - uid: 292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-4.5 + parent: 1 + - uid: 293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 1 + - uid: 294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 +- proto: PoweredlightLED + entities: + - uid: 297 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 +- proto: PoweredlightOrange + entities: + - uid: 301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 +- proto: PoweredlightPink + entities: + - uid: 302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 1 + - uid: 303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 1 + - uid: 304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - uid: 307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 1 +- proto: RailingCorner + entities: + - uid: 308 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 +- proto: RailingCornerSmall + entities: + - uid: 310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + - uid: 311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 +- proto: RubberStampClown + entities: + - uid: 102 + components: + - type: Transform + parent: 99 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpawnClownSpider + entities: + - uid: 312 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 +- proto: SpiderWebClown + entities: + - uid: 376 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 +- proto: StatueBananiumClown + entities: + - uid: 375 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 316 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 +- proto: SuitStorageBase + entities: + - uid: 93 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - type: Lock + locked: False + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 96 + - 95 + - 97 + - 94 + - 98 + - uid: 99 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - type: Lock + locked: False + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 101 + - 100 + - 102 + - uid: 103 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - type: Lock + locked: False + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 104 + - 105 + - 106 +- proto: TablePlasmaGlass + entities: + - uid: 317 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: Thruster + entities: + - uid: 321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 1 + - uid: 322 + components: + - type: Transform + rot: -3.141592653589793 rad + pos: -2.5,-8.5 + parent: 1 + - uid: 323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 1 + - uid: 324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 1 + - uid: 325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-8.5 + parent: 1 + - uid: 326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 +- proto: ToolboxMechanicalFilled + entities: + - uid: 261 + components: + - type: Transform + parent: 21 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 315 + components: + - type: Transform + parent: 26 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 329 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 +- proto: WallClown + entities: + - uid: 330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 1 + - uid: 331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - uid: 332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 + - uid: 333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + - uid: 334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + - uid: 335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + - uid: 336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + - uid: 337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 1 + - uid: 338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 1 + - uid: 339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 1 + - uid: 340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + - uid: 341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + - uid: 342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 1 + - uid: 343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 + - uid: 344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - uid: 345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - uid: 353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + - uid: 354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 + - uid: 357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + - uid: 358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - uid: 360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - uid: 361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + - uid: 370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 +... diff --git a/Resources/Maps/Shuttles/ShuttleEvent/lost_cargo.yml b/Resources/Maps/Shuttles/ShuttleEvent/lost_cargo.yml new file mode 100644 index 0000000000..148577363f --- /dev/null +++ b/Resources/Maps/Shuttles/ShuttleEvent/lost_cargo.yml @@ -0,0 +1,1411 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 54: FloorGreenCircuit + 85: FloorShuttleWhite + 89: FloorSteel + 104: FloorTechMaint + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Cargo shuttle + - type: Transform + pos: 2.2710133,-2.4148211 + parent: invalid + - type: MapGrid + chunks: + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAVQAAAAAANgAAAAAAVQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: WQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: CargoShuttle + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 0: -5,5 + 1: -4,5 + 2: -1,5 + 3: -1,-1 + 4: -2,-1 + 5: -4,-1 + 6: -1,2 + 7: -4,2 + 8: -5,2 + - node: + color: '#9FED5896' + id: CheckerNESW + decals: + 9: -3,-1 + 10: -3,0 + 11: -3,1 + 12: -3,2 + 13: -3,3 + 14: -3,4 + 15: -3,5 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerNe + decals: + 29: -1,5 + 30: -2,6 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerNw + decals: + 19: -5,5 + 20: -4,6 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerSe + decals: + 21: -1,-1 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerSw + decals: + 22: -5,-1 + - node: + color: '#9FED5896' + id: MiniTileWhiteInnerNe + decals: + 33: -2,5 + - node: + color: '#9FED5896' + id: MiniTileWhiteInnerNw + decals: + 32: -4,5 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineE + decals: + 26: -1,0 + 27: -1,2 + 28: -1,4 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineN + decals: + 31: -3,6 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineS + decals: + 23: -4,-1 + 24: -3,-1 + 25: -2,-1 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineW + decals: + 16: -5,0 + 17: -5,2 + 18: -5,4 + - node: + color: '#9FED5896' + id: WarnLineE + decals: + 36: -1,1 + 37: -1,3 + - node: + color: '#9FED5896' + id: WarnLineS + decals: + 34: -5,1 + 35: -5,3 + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,0: + 0: 51400 + -2,1: + 0: 16520 + -2,-1: + 0: 32832 + -1,0: + 0: 65535 + -1,1: + 0: 30719 + -2,2: + 0: 128 + -1,-1: + 0: 63346 + -1,2: + 0: 130 + 0,0: + 0: 4112 + 0,1: + 0: 4096 + -2,-2: + 0: 32768 + -1,-2: + 0: 32768 + 0,-1: + 0: 16 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay +- proto: AirCanister + entities: + - uid: 2 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - uid: 4 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 +- proto: APCHyperCapacity + entities: + - uid: 7 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 8 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 +- proto: BlastDoor + entities: + - uid: 12 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 135 + - uid: 13 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 134 + - uid: 14 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 136 + - uid: 15 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 133 +- proto: BoxMRE + entities: + - uid: 93 + components: + - type: Transform + pos: -1.3692467,7.6214685 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 16 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 +- proto: CableHV + entities: + - uid: 50 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 +- proto: CableMV + entities: + - uid: 53 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 66 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 67 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 70 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 80 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 +- proto: ConveyorBelt + entities: + - uid: 81 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 151 + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 151 + - uid: 83 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 151 + - uid: 84 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 149 + - uid: 85 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 149 + - uid: 86 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 149 + - uid: 87 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 150 + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 152 + - uid: 89 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 152 + - uid: 90 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 152 + - uid: 91 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 150 + - uid: 92 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 150 +- proto: CrateFilledSpawner + entities: + - uid: 95 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 +- proto: DrinkBeerBottleFull + entities: + - uid: 99 + components: + - type: Transform + pos: -3.2915764,7.812316 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: -3.4715438,7.654894 + parent: 1 +- proto: GasPipeBend + entities: + - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 +- proto: GasPipeStraight + entities: + - uid: 102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + - uid: 104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 +- proto: GasPort + entities: + - uid: 105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 +- proto: GasVentPump + entities: + - uid: 106 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 +- proto: GeneratorBasic15kW + entities: + - uid: 107 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 108 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 +- proto: Grille + entities: + - uid: 109 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 114 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 +- proto: LostCargoTechnicianSpawner + entities: + - uid: 69 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 116 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: RandomPosterAny + entities: + - uid: 124 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 +- proto: RandomSpawner100 + entities: + - uid: 188 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 +- proto: SalvageLootSpawner + entities: + - uid: 115 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 94 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 128 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 +- proto: SignalButton + entities: + - uid: 133 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 15: + - Pressed: Toggle + - uid: 134 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 13: + - Pressed: Toggle + - uid: 135 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 12: + - Pressed: Toggle + - uid: 136 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 14: + - Pressed: Toggle +- proto: SMESBasic + entities: + - uid: 137 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 138 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 +- proto: Thruster + entities: + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 1 +- proto: TwoWayLever + entities: + - uid: 149 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 86: + - Left: Forward + - Right: Reverse + - Middle: Off + 85: + - Left: Forward + - Right: Reverse + - Middle: Off + 84: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 150 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 91: + - Left: Forward + - Right: Reverse + - Middle: Off + 87: + - Left: Forward + - Right: Reverse + - Middle: Off + 92: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 151 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 81: + - Left: Forward + - Right: Reverse + - Middle: Off + 82: + - Left: Forward + - Right: Reverse + - Middle: Off + 83: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 152 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 90: + - Left: Forward + - Right: Reverse + - Middle: Off + 89: + - Left: Forward + - Right: Reverse + - Middle: Off + 88: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: WallShuttle + entities: + - uid: 153 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 +- proto: WindoorCargoLocked + entities: + - uid: 184 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 185 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 +... diff --git a/Resources/Maps/Shuttles/striker.yml b/Resources/Maps/Shuttles/ShuttleEvent/striker.yml similarity index 100% rename from Resources/Maps/Shuttles/striker.yml rename to Resources/Maps/Shuttles/ShuttleEvent/striker.yml diff --git a/Resources/Maps/Shuttles/ShuttleEvent/syndie_evacpod.yml b/Resources/Maps/Shuttles/ShuttleEvent/syndie_evacpod.yml new file mode 100644 index 0000000000..d90fadba23 --- /dev/null +++ b/Resources/Maps/Shuttles/ShuttleEvent/syndie_evacpod.yml @@ -0,0 +1,1188 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 29: FloorDark + 84: FloorShuttleRed + 101: FloorSteelOffset + 104: FloorTechMaint + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + desc: Evacuation pod + name: Evacuation pod + - type: Transform + parent: invalid + - type: MapGrid + chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZQAAAAAAZQAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAZQAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: ZQAAAAAAZQAAAAAAZQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAZQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#A91409FF' + id: StandClearGreyscale + decals: + 18: 0,-1 + - node: + color: '#A91409FF' + id: WarnCornerSmallGreyscaleNE + decals: + 15: -2,0 + - node: + color: '#A91409FF' + id: WarnCornerSmallGreyscaleNW + decals: + 14: 2,0 + - node: + color: '#A91409FF' + id: WarnEndGreyscaleN + decals: + 9: -2,1 + 10: 2,1 + - node: + color: '#A91409FF' + id: WarnLineGreyscaleE + decals: + 0: 2,0 + 8: 2,-1 + 17: 5,0 + - node: + color: '#A91409FF' + id: WarnLineGreyscaleN + decals: + 11: -1,0 + 12: 0,0 + 13: 1,0 + - node: + color: '#A91409FF' + id: WarnLineGreyscaleS + decals: + 1: 1,-1 + 2: 0,-1 + 3: -1,-1 + 4: -2,-1 + 5: 2,-1 + - node: + color: '#A91409FF' + id: WarnLineGreyscaleW + decals: + 6: -2,-1 + 7: -2,0 + 16: -5,0 + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,-1: + 0: 18432 + -2,0: + 1: 12 + 0: 64 + -1,-1: + 0: 601 + 1: 51200 + -1,0: + 1: 2255 + 0: 16896 + 0,-1: + 0: 2115 + 1: 29440 + -2,1: + 0: 8 + -1,1: + 0: 4096 + 0,0: + 1: 895 + 0: 18432 + 1,-1: + 0: 16913 + 1,0: + 1: 7 + 0: 64 + 1,1: + 0: 4098 + uniqueMixes: + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: NavMap + - type: RadiationGridResistance +- proto: AirlockShuttleSyndicate + entities: + - uid: 2 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 +- proto: AirlockSyndicate + entities: + - uid: 4 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 7 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 1 +- proto: BannerSyndicate + entities: + - uid: 9 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 10 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 +- proto: CableHV + entities: + - uid: 33 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 +- proto: CableMV + entities: + - uid: 43 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 50 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 53 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 +- proto: ClothingHeadPyjamaSyndicateRed + entities: + - uid: 98 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckScarfStripedSyndieRed + entities: + - uid: 101 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 102 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComputerShuttleSyndie + entities: + - uid: 55 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: CrateSyndicate + entities: + - uid: 92 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - 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: + - 102 + - 101 + - 100 + - 99 + - 98 + - 97 + - 96 + - 95 + - 94 + - 93 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CyberPen + entities: + - uid: 93 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FaxMachineSyndie + entities: + - uid: 162 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 +- proto: GeneratorWallmountAPU + entities: + - uid: 56 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 +- proto: GeneratorWallmountBasic + entities: + - uid: 57 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 +- proto: Grille + entities: + - uid: 58 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 63 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 66 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 69 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 +- proto: Paper + entities: + - uid: 95 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 97 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 99 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 100 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PlasmaWindowDiagonal + entities: + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - uid: 73 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 77 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 80 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 +- proto: RandomPosterContraband + entities: + - uid: 81 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 83 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 86 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 +- proto: RubberStampSyndicate + entities: + - uid: 94 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SubstationWallBasic + entities: + - uid: 88 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 +- proto: SyndieDisasterVictimSpawner + entities: + - uid: 89 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 +- proto: TableGlass + entities: + - uid: 163 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 +- proto: Thruster + entities: + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - uid: 106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 +- proto: ToolboxSyndicateFilled + entities: + - uid: 96 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 108 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: WallPlastitanium + entities: + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - uid: 111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + - uid: 113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + - uid: 114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - uid: 122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + - uid: 125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - uid: 127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + - uid: 131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 +... diff --git a/Resources/Maps/Shuttles/ShuttleEvent/traveling_china_cuisine.yml b/Resources/Maps/Shuttles/ShuttleEvent/traveling_china_cuisine.yml new file mode 100644 index 0000000000..4b3bf617e2 --- /dev/null +++ b/Resources/Maps/Shuttles/ShuttleEvent/traveling_china_cuisine.yml @@ -0,0 +1,1872 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 14: FloorBar + 40: FloorDirt + 44: FloorFreezer + 50: FloorGrassLight + 76: FloorRGlass + 85: FloorShuttleWhite + 96: FloorSteelDirty + 98: FloorSteelLime + 106: FloorTechMaint3 + 112: FloorWhiteMini + 117: FloorWhitePlastic + 119: FloorWoodTile + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: SRV "Salami-Salami" + - type: Transform + pos: -0.5104167,-0.5 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: YgAAAAAAYgAAAAAAYgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAMgAAAAAAMgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAATAAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAdwAAAAAAdwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAATAAAAAAALAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAATAAAAAAALAAAAAAAcAAAAAAAagAAAAAAKAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAATAAAAAAALAAAAAAAcAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAATAAAAAAALAAAAAAAcAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAAAdQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 3: -2,-7 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 2: -3,-7 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 0: -2,-7 + 1: -3,-7 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 7 + 1: 128 + 0,-1: + 0: 29303 + -1,0: + 1: 129 + -1,-1: + 0: 28686 + 1: 272 + -1,-2: + 1: 28 + 0: 65024 + -1,-3: + 1: 49152 + 0,-3: + 1: 61440 + 0,-2: + 0: 32624 + 1: 8 + 1,-3: + 1: 4096 + 1,-2: + 1: 65 + 0: 13056 + 1,-1: + 0: 3 + 1: 320 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: NavMap +- proto: AirlockShuttle + entities: + - uid: 2 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 4 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 5 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 +- proto: BarSignMaidCafe + entities: + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 +- proto: BlastDoor + entities: + - uid: 8 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 161 +- proto: Bucket + entities: + - uid: 9 + components: + - type: Transform + pos: 0.32937366,-3.3336349 + parent: 1 +- proto: ButchCleaver + entities: + - uid: 11 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableApcExtension + entities: + - uid: 41 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 +- proto: CableHV + entities: + - uid: 65 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 +- proto: CableMV + entities: + - uid: 67 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 +- proto: ClosetMaintenance + entities: + - uid: 71 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14786 + 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: + - 80 + - 76 + - 73 + - 74 + - 78 + - 81 + - 77 + - 72 + - 75 + - 79 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClothingHeadHatCasa + entities: + - uid: 72 + components: + - type: Transform + parent: 71 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHelmetHardsuitBasic + entities: + - uid: 82 + components: + - type: Transform + pos: 0.30235916,-0.6487955 + parent: 1 +- proto: ClothingOuterDameDane + entities: + - uid: 79 + components: + - type: Transform + parent: 71 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterDogi + entities: + - uid: 73 + components: + - type: Transform + parent: 71 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitAncientEVA + entities: + - uid: 74 + components: + - type: Transform + parent: 71 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesDameDane + entities: + - uid: 75 + components: + - type: Transform + parent: 71 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitDameDane + entities: + - uid: 76 + components: + - type: Transform + parent: 71 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitFamilyGuy + entities: + - uid: 83 + components: + - type: Transform + pos: 4.1954827,-4.679846 + parent: 1 +- proto: ClothingUniformJumpsuitKimono + entities: + - uid: 77 + components: + - type: Transform + parent: 71 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComputerShuttle + entities: + - uid: 84 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 +- proto: CrateFreezer + entities: + - uid: 10 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14783 + 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: + - 11 + - 29 + - 24 + - 13 + - 25 + - 37 + - 33 + - 32 + - 38 + - 16 + - 15 + - 19 + - 17 + - 18 + - 20 + - 40 + - 14 + - 22 + - 30 + - 21 + - 34 + - 23 + - 35 + - 28 + - 36 + - 27 + - 39 + - 31 + - 26 + - 12 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: DrinkCanPack + entities: + - uid: 85 + components: + - type: Transform + pos: 2.4942255,-4.6459746 + parent: 1 +- proto: DrinkGlass + entities: + - uid: 86 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.9675496,-6.258177 + parent: 1 + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.9050496,-6.383177 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.8425496,-6.086302 + parent: 1 +- proto: EggySeeds + entities: + - uid: 89 + components: + - type: Transform + pos: 4.8663497,-4.2508607 + parent: 1 +- proto: ExtendedEmergencyOxygenTankFilled + entities: + - uid: 78 + components: + - type: Transform + parent: 71 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FolderSpawner + entities: + - uid: 90 + components: + - type: Transform + pos: 2.6497245,-0.5822141 + parent: 1 +- proto: FoodBowlBig + entities: + - uid: 12 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBreadMoldySlice + entities: + - uid: 91 + components: + - type: Transform + pos: 4.5392327,-5.695471 + parent: 1 +- proto: FoodBreadTofu + entities: + - uid: 92 + components: + - type: Transform + pos: -0.56204444,-5.412466 + parent: 1 +- proto: FoodButter + entities: + - uid: 14 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodEgg + entities: + - uid: 15 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 20 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMealSashimi + entities: + - uid: 93 + components: + - type: Transform + pos: 2.532601,-3.619526 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 2.5117679,-3.192443 + parent: 1 +- proto: FoodMeat + entities: + - uid: 21 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatBear + entities: + - uid: 23 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatBearCooked + entities: + - uid: 25 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatClown + entities: + - uid: 26 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatCorgi + entities: + - uid: 27 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatDragon + entities: + - uid: 96 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 97 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 98 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatFish + entities: + - uid: 112 + components: + - type: Transform + pos: 2.3519397,-4.0480876 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 2.5602732,-4.4543376 + parent: 1 +- proto: FoodMeatGoliath + entities: + - uid: 28 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 29 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatHuman + entities: + - uid: 30 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatLizard + entities: + - uid: 31 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatPlant + entities: + - uid: 32 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatRat + entities: + - uid: 33 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatRouny + entities: + - uid: 34 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 35 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatSnake + entities: + - uid: 36 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 37 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatSpider + entities: + - uid: 38 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodNoodlesButter + entities: + - uid: 99 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 100 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodNoodlesChowmein + entities: + - uid: 101 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodNoodlesMeatball + entities: + - uid: 102 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodRiceBoiled + entities: + - uid: 103 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 104 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 105 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 114 + components: + - type: Transform + pos: 4.2319775,-4.0944357 + parent: 1 +- proto: FoodRiceEgg + entities: + - uid: 106 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 107 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodRiceGumbo + entities: + - uid: 108 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodRicePork + entities: + - uid: 109 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 110 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodRicePudding + entities: + - uid: 111 + components: + - type: Transform + parent: 95 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodTofu + entities: + - uid: 115 + components: + - type: Transform + pos: -2.4682944,-0.4437158 + parent: 1 +- proto: GeneratorWallmountAPU + entities: + - uid: 116 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - type: PowerSupplier + supplyRampRate: 1000 + supplyRampTolerance: 1000 + supplyRate: 16000 +- proto: GravityGeneratorMini + entities: + - uid: 117 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 +- proto: Grille + entities: + - uid: 118 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 +- proto: HospitalCurtains + entities: + - uid: 124 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 +- proto: HospitalCurtainsOpen + entities: + - uid: 125 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: hydroponicsSoil + entities: + - uid: 126 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 +- proto: HydroponicsToolClippers + entities: + - uid: 127 + components: + - type: Transform + pos: 4.6706424,-4.7269287 + parent: 1 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.0306153,-4.877862 + parent: 1 +- proto: KitchenElectricGrill + entities: + - uid: 129 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 +- proto: KitchenKnife + entities: + - uid: 80 + components: + - type: Transform + parent: 71 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: KitchenMicrowave + entities: + - uid: 130 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 +- proto: KitchenReagentGrinder + entities: + - uid: 131 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 +- proto: LockerFreezerBase + entities: + - uid: 95 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14798 + 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: + - 110 + - 109 + - 103 + - 104 + - 105 + - 96 + - 98 + - 97 + - 99 + - 101 + - 100 + - 106 + - 102 + - 108 + - 107 + - 111 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: MaterialSheetMeat + entities: + - uid: 39 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Mattress + entities: + - uid: 132 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 +- proto: NitrogenTankFilled + entities: + - uid: 81 + components: + - type: Transform + parent: 71 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: NoticeBoard + entities: + - uid: 133 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 +- proto: Pen + entities: + - uid: 232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.27949,-0.47790605 + parent: 1 +- proto: PlushieVox + entities: + - uid: 134 + components: + - type: Transform + pos: -0.5571752,-4.2839594 + parent: 1 +- proto: PosterLegitFruitBowl + entities: + - uid: 135 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: PottedPlantRandom + entities: + - uid: 136 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 +- proto: RagItem + entities: + - uid: 144 + components: + - type: Transform + pos: -0.47175223,-3.4022202 + parent: 1 +- proto: RandomSpawner100 + entities: + - uid: 145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 +- proto: ReagentContainerFlour + entities: + - uid: 40 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RiceSeeds + entities: + - uid: 146 + components: + - type: Transform + pos: 4.716352,-4.1569357 + parent: 1 +- proto: RubberStampTrader + entities: + - uid: 147 + components: + - type: Transform + pos: 2.6184745,-0.09783912 + parent: 1 +- proto: Shovel + entities: + - uid: 148 + components: + - type: Transform + pos: 5.0644813,-4.460167 + parent: 1 +- proto: ShuttersWindowOpen + entities: + - uid: 149 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 160 + - uid: 150 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 160 + - uid: 151 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 160 + - uid: 152 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 160 +- proto: ShuttleWindow + entities: + - uid: 153 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 +- proto: SignalButton + entities: + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 150: + - Pressed: Toggle + 149: + - Pressed: Toggle + 151: + - Pressed: Toggle + 152: + - Pressed: Toggle + - uid: 161 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 8: + - Pressed: Toggle +- proto: SignDoors + entities: + - uid: 162 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 +- proto: SinkStemlessWater + entities: + - uid: 163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 +- proto: soda_dispenser + entities: + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1 +- proto: StoolBar + entities: + - uid: 165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 168 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 +- proto: Table + entities: + - uid: 169 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 + - uid: 171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 +- proto: TableGlass + entities: + - uid: 172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 +- proto: TableStone + entities: + - uid: 175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 +- proto: TableWood + entities: + - uid: 178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 +- proto: Thruster + entities: + - uid: 179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 1 + - uid: 183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 1 + - uid: 184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 +- proto: ToolboxMechanicalFilled + entities: + - uid: 185 + components: + - type: Transform + pos: 0.5731925,-0.16962886 + parent: 1 +- proto: TravelingChefSpawner + entities: + - uid: 186 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 +- proto: VendingMachineChang + entities: + - uid: 188 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 189 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + - uid: 198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - uid: 199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 1 + - uid: 201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 + - uid: 215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 1 + - uid: 221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 + - uid: 231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 1 +... diff --git a/Resources/Maps/Shuttles/emergency_neol.yml b/Resources/Maps/Shuttles/emergency_neol.yml new file mode 100644 index 0000000000..e5c359a4f5 --- /dev/null +++ b/Resources/Maps/Shuttles/emergency_neol.yml @@ -0,0 +1,6758 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 31: FloorDarkMini + 34: FloorDarkPavement + 48: FloorGrassLight + 72: FloorReinforced + 84: FloorSteel + 89: FloorSteelDirty + 91: FloorSteelMini + 96: FloorTechMaint + 97: FloorTechMaint2 + 104: FloorWhiteMini + 110: FloorWood + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: NT-LMEST-T14 "Neol" + type: MetaData + - pos: -0.5124855,0.9164498 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: HwAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAHwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAIgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHwAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAIgAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAWwAAAAAAcQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAcQAAAAAAaAAAAAAAaAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAHwAAAAAAcQAAAAAAaAAAAAAAaAAAAAAAcQAAAAAAHwAAAAAAHwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAcQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAHwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWwAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAAWwAAAAAAHwAAAAAAMAAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAAWwAAAAAAHwAAAAAAMAAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAAWwAAAAAAHwAAAAAAMAAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAAWwAAAAAAHwAAAAAAMAAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAHwAAAAAAHwAAAAAAcQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHwAAAAAAcQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcQAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAMAAAAAAAHwAAAAAAWwAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAMAAAAAAAHwAAAAAAWwAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAMAAAAAAAHwAAAAAAWwAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHwAAAAAAWwAAAAAAHwAAAAAAMAAAAAAAHwAAAAAAWwAAAAAAMAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 180: -7,2 + 181: -7,0 + 182: -7,-6 + 183: -7,-8 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 174: 7,-6 + 176: 7,-8 + 177: 7,0 + 178: 7,2 + - node: + angle: 1.5707963267948966 rad + color: '#FF0000FF' + id: ArrowsGreyscale + decals: + 185: 7,-6 + 186: 7,-8 + 187: 7,0 + 188: 7,2 + - node: + angle: 4.71238898038469 rad + color: '#FF0000FF' + id: ArrowsGreyscale + decals: + 184: -7,-6 + 189: -7,0 + 190: -7,2 + 191: -7,-8 + - node: + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 179: -4,1 + 202: 4,1 + 203: 4,-5 + 204: -4,-5 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 200: -4,0 + 201: 4,0 + 205: -4,-6 + 206: 4,-6 + - node: + color: '#FFFFFFFF' + id: Basalt4 + decals: + 23: -1,-1 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 24: 4,-3 + - node: + color: '#FFFFFFFF' + id: Basalt7 + decals: + 20: -4,-4 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 21: -4,-1 + 22: -1,-3 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 134: -7,-1 + 135: -7,-2 + 136: -7,-3 + 137: -7,-4 + - node: + color: '#FFFFFFFF' + id: BotLeftGreyscale + decals: + 142: -7,-4 + 143: -7,-4 + 144: -7,-4 + 145: -7,-4 + 146: -7,-3 + 147: -7,-3 + 148: -7,-3 + 149: -7,-2 + 150: -7,-2 + 151: -7,-2 + 152: -7,-1 + 153: -7,-1 + 154: -7,-1 + 159: -3,-1 + 160: -3,-2 + 161: -3,-3 + 162: -3,-4 + 167: 5,-1 + 168: 5,-2 + 169: 5,-3 + 170: 5,-4 + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 138: 7,-1 + 139: 7,-2 + 140: 7,-3 + 141: 7,-4 + - node: + color: '#FFFFFFFF' + id: BotRightGreyscale + decals: + 155: -5,-4 + 156: -5,-3 + 157: -5,-2 + 158: -5,-1 + 163: 3,-4 + 164: 3,-3 + 165: 3,-2 + 166: 3,-1 + 171: 7,-4 + 172: 7,-3 + 173: 7,-2 + 175: 7,-1 + - node: + color: '#334E6DFF' + id: BoxGreyscale + decals: + 313: 4,-9 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 240: 1,11 + 241: 1,12 + 242: 1,13 + 249: 0,11 + 250: 0,12 + 251: 0,13 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 243: -1,11 + 244: -1,12 + 245: -1,13 + 246: 0,11 + 247: 0,12 + 248: 0,13 + - node: + color: '#FFFFFFFF' + id: Bushf1 + decals: + 0: -1,-4 + 1: 1,-3 + 2: -1,-3 + 3: 0,-1 + 4: 4,-1 + - node: + color: '#FFFFFFFF' + id: Bushf2 + decals: + 5: 1,-4 + 6: -1,-2 + 7: 0,-1 + 8: -4,-4 + 9: -4,-3 + 10: -4,-1 + - node: + color: '#FFFFFFFF' + id: Bushf3 + decals: + 11: -4,-2 + 12: -4,-3 + 13: 0,-4 + 14: -1,-3 + 15: 1,-3 + 16: 0,-1 + 17: 4,-2 + 18: 4,-4 + 19: 4,-3 + - node: + color: '#EFB3413E' + id: CheckerNWSE + decals: + 291: -1,-12 + 292: -1,-13 + 293: -1,-14 + 294: -1,-15 + 295: 0,-15 + 296: 0,-14 + 297: 0,-13 + 298: 1,-13 + 299: 1,-14 + 300: 1,-15 + 301: 2,-15 + 302: 2,-14 + 303: 1,-12 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 207: -1,-7 + 208: 0,-7 + 209: 1,-7 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 258: -6,-11 + 259: -5,-12 + 260: -5,-13 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 252: -5,-12 + 253: -6,-12 + 254: -6,-12 + 255: -6,-11 + 256: -5,-13 + 257: -5,-11 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 25: 1,-4 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 26: -1,-3 + 29: -4,-3 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 30: -1,-4 + 31: 4,-4 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 27: 1,-1 + 28: 4,-2 + - node: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + decals: + 261: -3,-11 + 262: -3,-10 + 263: -3,-9 + 264: -3,-8 + 265: -2,-8 + 266: -4,-9 + 267: -4,-8 + 268: -5,-8 + 269: -5,-9 + 270: -6,-9 + 271: -6,-8 + 272: -7,-8 + 273: -7,-9 + 274: -8,-8 + 275: -4,-11 + - node: + color: '#52B4E996' + id: MiniTileCheckerBOverlay + decals: + 276: 2,-8 + 277: 3,-8 + 278: 4,-8 + 279: 4,-9 + 280: 3,-9 + 281: 3,-10 + 282: 4,-10 + 283: 4,-11 + 284: 3,-11 + 285: 3,-12 + 286: 4,-12 + - node: + color: '#9FED5896' + id: MiniTileCheckerBOverlay + decals: + 287: 6,-11 + 288: 5,-11 + 289: 5,-12 + 290: 6,-12 + - node: + color: '#919191FF' + id: MiniTileWhiteCornerNe + decals: + 41: -7,-1 + 64: -1,-6 + 82: 5,-6 + 89: 5,0 + 90: 5,2 + 97: -3,0 + 100: 1,0 + - node: + color: '#919191FF' + id: MiniTileWhiteCornerNw + decals: + 55: -5,2 + 57: -5,0 + 62: -5,-6 + 65: 1,-6 + 98: 3,0 + 99: -1,0 + 121: 7,-1 + - node: + color: '#919191FF' + id: MiniTileWhiteCornerSe + decals: + 45: -7,-5 + 47: -6,3 + 83: 5,-5 + 88: 5,1 + 109: -3,-5 + 110: 1,-5 + 112: -1,-7 + - node: + color: '#919191FF' + id: MiniTileWhiteCornerSw + decals: + 56: -5,1 + 63: -5,-5 + 107: 3,-5 + 108: -1,-5 + 113: 1,-7 + 122: 7,-5 + 126: 6,3 + - node: + color: '#919191FF' + id: MiniTileWhiteEndE + decals: + 46: -7,1 + 114: -1,-9 + - node: + color: '#919191FF' + id: MiniTileWhiteEndN + decals: + 116: 0,-11 + - node: + color: '#919191FF' + id: MiniTileWhiteEndW + decals: + 86: 7,-7 + 87: 7,1 + 115: 1,-9 + - node: + color: '#919191FF' + id: MiniTileWhiteLineE + decals: + 42: -7,-2 + 43: -7,-3 + 44: -7,-4 + 48: -6,4 + 49: -6,5 + 50: -6,6 + 66: -3,-1 + 67: -3,-2 + 68: -3,-3 + 69: -3,-4 + 117: 5,-4 + 118: 5,-3 + 119: 5,-2 + 120: 5,-1 + 130: 4,6 + 131: 4,5 + 132: 4,4 + 133: 4,3 + - node: + color: '#919191FF' + id: MiniTileWhiteLineN + decals: + 74: -4,-6 + 75: -3,-6 + 76: -2,-6 + 79: 4,-6 + 80: 3,-6 + 81: 2,-6 + 84: 7,-9 + 85: 6,-9 + 91: 4,0 + 92: -4,0 + 101: 0,0 + - node: + color: '#919191FF' + id: MiniTileWhiteLineS + decals: + 77: -4,-5 + 78: 4,-5 + 93: -4,1 + 94: -3,1 + 95: 4,1 + 96: 3,1 + 102: -2,1 + 103: -1,1 + 104: 0,1 + 105: 1,1 + 106: 2,1 + 111: 0,-5 + - node: + color: '#919191FF' + id: MiniTileWhiteLineW + decals: + 51: -4,6 + 52: -4,5 + 53: -4,4 + 54: -4,3 + 58: -5,-1 + 59: -5,-2 + 60: -5,-3 + 61: -5,-4 + 70: 3,-1 + 71: 3,-2 + 72: 3,-3 + 73: 3,-4 + 123: 7,-4 + 124: 7,-3 + 125: 7,-2 + 127: 6,4 + 128: 6,5 + 129: 6,6 + - node: + color: '#334E6DC8' + id: PavementCheckerBOverlay + decals: + 210: -4,8 + 211: -5,8 + 212: -5,9 + 213: -4,9 + 214: 5,8 + 215: 4,8 + 216: 4,9 + 217: 5,9 + 218: -3,8 + 219: -3,9 + 220: 3,8 + 221: 3,9 + - node: + color: '#334E6DC8' + id: PavementOverlay + decals: + 222: -4,10 + 223: -4,11 + 224: -4,12 + 225: -3,12 + 226: -3,11 + 227: -2,11 + 228: -2,12 + 229: -2,13 + 230: -3,13 + 231: 2,11 + 232: 2,12 + 233: 2,13 + 234: 3,13 + 235: 3,12 + 236: 3,11 + 237: 4,11 + 238: 4,12 + 239: 4,10 + - node: + color: '#D4D4D4FF' + id: WarnLineE + decals: + 311: 2,-14 + 312: 2,-15 + - node: + color: '#52B4E9FF' + id: WarnLineGreyscaleE + decals: + 305: 1,-8 + - node: + color: '#334E6DFF' + id: WarnLineGreyscaleN + decals: + 308: 4,6 + 309: -4,6 + - node: + color: '#D4D4D4DE' + id: WarnLineGreyscaleN + decals: + 310: 2,1 + - node: + color: '#EFB341FF' + id: WarnLineGreyscaleS + decals: + 306: -1,-11 + 307: 1,-11 + - node: + color: '#DE3A3AFF' + id: WarnLineGreyscaleW + decals: + 304: -1,-8 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 196: -4,-6 + 197: 4,-6 + 198: 4,0 + 199: -4,0 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 192: -4,-5 + 193: 4,-5 + 194: 4,1 + 195: -4,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 33: -2,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 32: 2,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 35: -2,9 + 40: -3,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 34: 2,9 + 39: 3,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 36: -1,9 + 37: 0,9 + 38: 1,9 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + -2,0: + 0: 65535 + -1,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 4095 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 30583 + 1,3: + 0: 311 + 2,0: + 0: 4369 + 2,1: + 0: 17 + -2,1: + 0: 61183 + -2,2: + 0: 52428 + -2,3: + 0: 140 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 4095 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-4: + 0: 65395 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 0: 4096 + 2,-3: + 0: 4369 + 2,-2: + 0: 4369 + 2,-1: + 0: 4369 + -2,-4: + 0: 65224 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-4: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + -1,-5: + 0: 28672 + 0,-5: + 0: 53248 + 1,-5: + 0: 4096 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirCanister + entities: + - uid: 2 + components: + - pos: 2.5,-14.5 + parent: 1 + type: Transform +- proto: AirlockBarGlassLocked + entities: + - uid: 3 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform +- proto: AirlockBarLocked + entities: + - uid: 4 + components: + - rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 1 + type: Transform +- proto: AirlockBrigGlassLocked + entities: + - uid: 5 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 1 + type: Transform +- proto: AirlockCommandGlassLocked + entities: + - uid: 6 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - links: + - 778 + type: DeviceLinkSink + - uid: 7 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - links: + - 778 + type: DeviceLinkSink + - uid: 8 + components: + - rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 1 + type: Transform + - links: + - 780 + type: DeviceLinkSink + - uid: 9 + components: + - rot: 3.141592653589793 rad + pos: 4.5,10.5 + parent: 1 + type: Transform + - links: + - 780 + type: DeviceLinkSink +- proto: AirlockEngineeringLocked + entities: + - uid: 10 + components: + - pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 11 + components: + - pos: -0.5,-11.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 12 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 13 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 14 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 15 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 16 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 1 + type: Transform + - uid: 17 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 18 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 19 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 1 + type: Transform +- proto: AirlockMedicalGlassLocked + entities: + - uid: 20 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform +- proto: AirlockSecurityGlassLocked + entities: + - uid: 21 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform +- proto: APCHyperCapacity + entities: + - uid: 22 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 23 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 24 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 25 + components: + - pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 26 + components: + - pos: -3.5,-13.5 + parent: 1 + type: Transform + - uid: 27 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 28 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 1 + type: Transform + - uid: 29 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 30 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 31 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 32 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 33 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 34 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 35 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 1 + type: Transform +- proto: Bed + entities: + - uid: 36 + components: + - pos: 6.5,-11.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: -5.5,-11.5 + parent: 1 + type: Transform + - uid: 38 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 39 + components: + - pos: 4.5,-9.5 + parent: 1 + type: Transform +- proto: BedsheetBrown + entities: + - uid: 40 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-11.5 + parent: 1 + type: Transform +- proto: BedsheetGreen + entities: + - uid: 41 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 1 + type: Transform +- proto: BedsheetMedical + entities: + - uid: 42 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 43 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 1 + type: Transform +- proto: BlastDoorOpen + entities: + - uid: 44 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,10.5 + parent: 1 + type: Transform + - links: + - 780 + type: DeviceLinkSink + - uid: 45 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + type: Transform + - links: + - 780 + type: DeviceLinkSink + - uid: 46 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,10.5 + parent: 1 + type: Transform + - links: + - 780 + type: DeviceLinkSink +- proto: BoozeDispenser + entities: + - uid: 47 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 48 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 49 + components: + - pos: -3.5,-13.5 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: -1.5,-13.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: -0.5,-13.5 + parent: 1 + type: Transform + - uid: 53 + components: + - pos: 0.5,-13.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: 1.5,-13.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: 2.5,-13.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 57 + components: + - pos: 4.5,-13.5 + parent: 1 + type: Transform + - uid: 58 + components: + - pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 59 + components: + - pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 60 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 61 + components: + - pos: 1.5,-15.5 + parent: 1 + type: Transform + - uid: 62 + components: + - pos: 1.5,-14.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 64 + components: + - pos: -2.5,-14.5 + parent: 1 + type: Transform + - uid: 65 + components: + - pos: -4.5,-12.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: -4.5,-11.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: -5.5,-9.5 + parent: 1 + type: Transform + - uid: 68 + components: + - pos: -5.5,-10.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: -5.5,-11.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 71 + components: + - pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 72 + components: + - pos: -6.5,-7.5 + parent: 1 + type: Transform + - uid: 73 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 74 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 75 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 77 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 78 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 81 + components: + - pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 82 + components: + - pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: 4.5,-11.5 + parent: 1 + type: Transform + - uid: 84 + components: + - pos: 5.5,-11.5 + parent: 1 + type: Transform + - uid: 85 + components: + - pos: 6.5,-11.5 + parent: 1 + type: Transform + - uid: 86 + components: + - pos: 6.5,-10.5 + parent: 1 + type: Transform + - uid: 87 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 89 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 92 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 94 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 96 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 98 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 101 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 103 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 104 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 106 + components: + - pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 111 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 112 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 115 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 116 + components: + - pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 117 + components: + - pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 118 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 119 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 120 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 121 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 122 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 123 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 126 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 127 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 129 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 130 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 131 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 132 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 133 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 134 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 135 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 136 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 137 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 140 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 143 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 146 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 147 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 148 + components: + - pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 149 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 151 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 153 + components: + - pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 154 + components: + - pos: 7.5,-7.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 156 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 159 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 161 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform + - uid: 162 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 163 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 164 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 165 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 166 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 167 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 170 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 171 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 173 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 174 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 175 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 177 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 178 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 179 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 181 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 182 + components: + - pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 183 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 184 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 185 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 186 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 187 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 188 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 189 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 190 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform + - uid: 191 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 192 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 193 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 195 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 196 + components: + - pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 197 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 199 + components: + - pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 200 + components: + - pos: 1.5,12.5 + parent: 1 + type: Transform + - uid: 201 + components: + - pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 203 + components: + - pos: 3.5,11.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 204 + components: + - pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 205 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: -0.5,-11.5 + parent: 1 + type: Transform + - uid: 207 + components: + - pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 208 + components: + - pos: 2.5,-13.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: 2.5,-14.5 + parent: 1 + type: Transform + - uid: 210 + components: + - pos: 2.5,-15.5 + parent: 1 + type: Transform + - uid: 211 + components: + - pos: -2.5,-14.5 + parent: 1 + type: Transform + - uid: 212 + components: + - pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 213 + components: + - pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform + - uid: 215 + components: + - pos: -0.5,-12.5 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: -1.5,-11.5 + parent: 1 + type: Transform + - uid: 217 + components: + - pos: -1.5,-12.5 + parent: 1 + type: Transform + - uid: 218 + components: + - pos: -1.5,-13.5 + parent: 1 + type: Transform + - uid: 219 + components: + - pos: -0.5,-10.5 + parent: 1 + type: Transform + - uid: 220 + components: + - pos: -0.5,-9.5 + parent: 1 + type: Transform + - uid: 221 + components: + - pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 222 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 223 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 224 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 225 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 226 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 227 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 228 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 229 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 230 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 231 + components: + - pos: -4.5,5.5 + parent: 1 + type: Transform + - uid: 232 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 233 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 234 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 235 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 236 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 237 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 238 + components: + - pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 239 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 240 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 241 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 242 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 243 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 244 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 245 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 246 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 247 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 248 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 249 + components: + - pos: -4.5,12.5 + parent: 1 + type: Transform + - uid: 250 + components: + - pos: -4.5,13.5 + parent: 1 + type: Transform + - uid: 251 + components: + - pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 252 + components: + - pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 253 + components: + - pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 254 + components: + - pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 255 + components: + - pos: -0.5,14.5 + parent: 1 + type: Transform + - uid: 256 + components: + - pos: 0.5,14.5 + parent: 1 + type: Transform + - uid: 257 + components: + - pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 258 + components: + - pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 259 + components: + - pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 260 + components: + - pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 261 + components: + - pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 262 + components: + - pos: 5.5,13.5 + parent: 1 + type: Transform + - uid: 263 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 264 + components: + - pos: 4.5,12.5 + parent: 1 + type: Transform + - uid: 265 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 266 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 267 + components: + - pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 268 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 269 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 270 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 271 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 272 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 273 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 274 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 275 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 276 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 277 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 278 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform + - uid: 279 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 280 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 281 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 282 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 283 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 286 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 287 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 288 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 290 + components: + - pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: 2.5,-13.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: 1.5,-13.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: 0.5,-13.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: -0.5,-13.5 + parent: 1 + type: Transform + - uid: 295 + components: + - pos: -1.5,-13.5 + parent: 1 + type: Transform + - uid: 296 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: -3.5,-13.5 + parent: 1 + type: Transform + - uid: 298 + components: + - pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 299 + components: + - pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 300 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 301 + components: + - pos: 1.5,-15.5 + parent: 1 + type: Transform + - uid: 302 + components: + - pos: 1.5,-14.5 + parent: 1 + type: Transform + - uid: 303 + components: + - pos: -0.5,-12.5 + parent: 1 + type: Transform + - uid: 304 + components: + - pos: -0.5,-11.5 + parent: 1 + type: Transform + - uid: 305 + components: + - pos: -0.5,-9.5 + parent: 1 + type: Transform + - uid: 306 + components: + - pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 307 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 308 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 309 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 310 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 311 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 312 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 313 + components: + - pos: -0.5,-10.5 + parent: 1 + type: Transform + - uid: 314 + components: + - pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 315 + components: + - pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 316 + components: + - pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 317 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 318 + components: + - pos: 1.5,-8.5 + parent: 1 + type: Transform + - uid: 319 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 320 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 321 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 322 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 323 + components: + - pos: 1.5,-9.5 + parent: 1 + type: Transform + - uid: 324 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 325 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 326 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 327 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 328 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 329 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 330 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 331 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 332 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 333 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 334 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 335 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 336 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 337 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 338 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 339 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 340 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 341 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 342 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 343 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 344 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 345 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 346 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 347 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 348 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 349 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 350 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 351 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 352 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 353 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 354 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 355 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 356 + components: + - pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 357 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 358 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 359 + components: + - pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 360 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 361 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 362 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 363 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 364 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 365 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 366 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 367 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 368 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-13.5 + parent: 1 + type: Transform +- proto: CandleBlueInfinite + entities: + - uid: 369 + components: + - pos: 0.40085018,8.408222 + parent: 1 + type: Transform +- proto: CandleGreenInfinite + entities: + - uid: 370 + components: + - pos: 0.57516325,8.27147 + parent: 1 + type: Transform +- proto: CandlePurpleInfinite + entities: + - uid: 371 + components: + - pos: 0.45705903,8.178229 + parent: 1 + type: Transform +- proto: CarpetBlue + entities: + - uid: 372 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 373 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 374 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 375 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + type: Transform +- proto: Catwalk + entities: + - uid: 376 + components: + - pos: -1.5,-13.5 + parent: 1 + type: Transform + - uid: 377 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform +- proto: Chair + entities: + - uid: 378 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 379 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-11.5 + parent: 1 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 380 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 1 + type: Transform + - uid: 381 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 382 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 383 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 384 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 385 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 386 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-14.5 + parent: 1 + type: Transform + - uid: 387 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 388 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 389 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 390 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 391 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 392 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 393 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 394 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 395 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 396 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 397 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 398 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 399 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 400 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 401 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 402 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 403 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 404 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 405 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 406 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 407 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 408 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 409 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 410 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 411 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 412 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 413 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 414 + components: + - rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 415 + components: + - rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 416 + components: + - rot: 3.141592653589793 rad + pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 417 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,12.5 + parent: 1 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 418 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 419 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform +- proto: ClosetFireFilled + entities: + - uid: 420 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 421 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform +- proto: ClosetL3VirologyFilled + entities: + - uid: 422 + components: + - pos: 5.5,-11.5 + parent: 1 + type: Transform +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 423 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-9.5 + parent: 1 + type: Transform + - uid: 424 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform +- proto: ClosetWallFireFilledRandom + entities: + - uid: 425 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 1 + type: Transform + - uid: 426 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform +- proto: ComfyChair + entities: + - uid: 428 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 429 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 430 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 431 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + type: Transform +- proto: ComputerComms + entities: + - uid: 432 + components: + - pos: -0.5,13.5 + parent: 1 + type: Transform +- proto: ComputerCrewMonitoring + entities: + - uid: 433 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,12.5 + parent: 1 + type: Transform +- proto: ComputerCriminalRecords + entities: + - uid: 434 + components: + - pos: 2.5,13.5 + parent: 1 + type: Transform +- proto: ComputerEmergencyShuttle + entities: + - uid: 435 + components: + - pos: 0.5,13.5 + parent: 1 + type: Transform +- proto: ComputerId + entities: + - uid: 436 + components: + - pos: 1.5,13.5 + parent: 1 + type: Transform +- proto: ComputerPowerMonitoring + entities: + - uid: 437 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,12.5 + parent: 1 + type: Transform +- proto: ComputerResearchAndDevelopment + entities: + - uid: 438 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform +- proto: DefibrillatorCabinetFilled + entities: + - uid: 439 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform +- proto: DogBed + entities: + - uid: 440 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform +- proto: EmergencyLight + entities: + - uid: 441 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 442 + components: + - rot: 3.141592653589793 rad + pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 443 + components: + - pos: 2.5,-13.5 + parent: 1 + type: Transform + - uid: 444 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + type: Transform +- proto: Firelock + entities: + - uid: 445 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 1 + type: Transform + - uid: 446 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 1 + type: Transform +- proto: FirelockEdge + entities: + - uid: 447 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 448 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 449 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 450 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 451 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 452 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 + type: Transform +- proto: FirelockGlass + entities: + - uid: 453 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 454 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 455 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 456 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 457 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 458 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 459 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 460 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 461 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 462 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 463 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 464 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 465 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 466 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 467 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 468 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 469 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 470 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 471 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 472 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1 + type: Transform +- proto: FloraTreeLarge06 + entities: + - uid: 473 + components: + - pos: 0.5138967,-2.4482055 + parent: 1 + type: Transform +- proto: FoodCakeBirthday + entities: + - uid: 427 + components: + - pos: 0.49291778,7.754779 + parent: 1 + type: Transform +- proto: GasOutletInjector + entities: + - uid: 474 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 1 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 475 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 1 + type: Transform + - color: '#FC6100FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 476 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 1 + type: Transform + - color: '#FC6100FF' + type: AtmosPipeColor + - uid: 477 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 478 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 479 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-10.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 480 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 481 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 482 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 483 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 484 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 485 + components: + - rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 486 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 487 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 488 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 489 + components: + - rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 490 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 491 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 492 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 493 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,11.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 494 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 495 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 496 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 497 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 1 + type: Transform + - color: '#FC6100FF' + type: AtmosPipeColor + - uid: 498 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 1 + type: Transform + - color: '#FC6100FF' + type: AtmosPipeColor + - uid: 499 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 500 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 501 + components: + - pos: 1.5,-8.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 502 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 503 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 504 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 505 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 506 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 507 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 508 + components: + - pos: -4.5,-11.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 509 + components: + - pos: -2.5,-9.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 510 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 511 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 512 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 513 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 514 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 515 + components: + - pos: 3.5,-9.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 516 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 517 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 518 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 519 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 520 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 521 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 522 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 523 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 524 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 525 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 526 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 527 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 528 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 529 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 530 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 531 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 532 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 533 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 534 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 535 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 536 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 537 + components: + - pos: -5.5,0.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 538 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 539 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 540 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 541 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 542 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 543 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 544 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 545 + components: + - rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 546 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 547 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 548 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 549 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 550 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 551 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 552 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 553 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 554 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 555 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 556 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 557 + components: + - rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 558 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 559 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 560 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 561 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,9.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 562 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 563 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 564 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 565 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 566 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 567 + components: + - rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 568 + components: + - rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 569 + components: + - rot: 3.141592653589793 rad + pos: -3.5,7.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 570 + components: + - rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 571 + components: + - rot: 3.141592653589793 rad + pos: 4.5,10.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 572 + components: + - rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 573 + components: + - rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 574 + components: + - rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 575 + components: + - rot: 3.141592653589793 rad + pos: 3.5,12.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 576 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 577 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,11.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 578 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 579 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 580 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,11.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 581 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-13.5 + parent: 1 + type: Transform + - color: '#FC6100FF' + type: AtmosPipeColor + - uid: 582 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 583 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 584 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 585 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 586 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 587 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 588 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 589 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 590 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 591 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 592 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 593 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 594 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 595 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 596 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 597 + components: + - rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 598 + components: + - rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 599 + components: + - rot: 3.141592653589793 rad + pos: 3.5,11.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 600 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-14.5 + parent: 1 + type: Transform +- proto: GasPressurePump + entities: + - uid: 601 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 1 + type: Transform + - color: '#FC6100FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 602 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform + - color: '#FC6100FF' + type: AtmosPipeColor + - uid: 603 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 604 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-12.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 605 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 606 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 607 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 608 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 609 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 610 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 611 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 612 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 613 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 614 + components: + - rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 615 + components: + - pos: 0.5,13.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 616 + components: + - pos: 3.5,13.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 617 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 618 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 619 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - color: '#020F73FF' + type: AtmosPipeColor + - uid: 620 + components: + - rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + type: Transform +- proto: GeneratorBasic15kW + entities: + - uid: 621 + components: + - pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 622 + components: + - pos: -2.5,-14.5 + parent: 1 + type: Transform +- proto: GeneratorWallmountAPU + entities: + - uid: 623 + components: + - pos: 2.5,-15.5 + parent: 1 + type: Transform + - uid: 624 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 625 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform +- proto: GravityGeneratorMini + entities: + - uid: 626 + components: + - pos: -1.5,-14.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 627 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 628 + components: + - pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 629 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,13.5 + parent: 1 + type: Transform + - uid: 630 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 631 + components: + - pos: -5.5,-9.5 + parent: 1 + type: Transform + - uid: 632 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 633 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 634 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 635 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 636 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 637 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 638 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 639 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 640 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 641 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 642 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 643 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 644 + components: + - pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 645 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 646 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,12.5 + parent: 1 + type: Transform + - uid: 647 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 648 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 649 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,14.5 + parent: 1 + type: Transform + - uid: 650 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 1 + type: Transform + - uid: 651 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 652 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 653 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 654 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 655 + components: + - pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 656 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 657 + components: + - pos: 1.5,-15.5 + parent: 1 + type: Transform + - uid: 658 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 659 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 660 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 661 + components: + - pos: 2.5,-10.5 + parent: 1 + type: Transform + - uid: 662 + components: + - pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 663 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 664 + components: + - pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 665 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 666 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 667 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 668 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 669 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,13.5 + parent: 1 + type: Transform + - uid: 670 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 671 + components: + - rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 672 + components: + - rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 673 + components: + - rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 1 + type: Transform +- proto: Gyroscope + entities: + - uid: 674 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 1 + type: Transform + - uid: 675 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 1 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 676 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 1 + type: Transform + - uid: 677 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 678 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 1 + type: Transform +- proto: LockerBoozeFilled + entities: + - uid: 679 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 680 + components: + - pos: 2.5,-13.5 + parent: 1 + type: Transform +- proto: LockerEvidence + entities: + - uid: 681 + components: + - pos: -3.5,-8.5 + parent: 1 + type: Transform +- proto: LockerMedicineFilled + entities: + - uid: 682 + components: + - pos: 3.5,-11.5 + parent: 1 + type: Transform +- proto: MedkitCombatFilled + entities: + - uid: 683 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform +- proto: PetCarrier + entities: + - uid: 684 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 685 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 686 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 1 + type: Transform +- proto: PlasmaWindowDirectional + entities: + - uid: 687 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 1 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 688 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 689 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 690 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 691 + components: + - pos: 1.5,12.5 + parent: 1 + type: Transform + - uid: 692 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 693 + components: + - pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 694 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform + - uid: 695 + components: + - pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 696 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 697 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 698 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 699 + components: + - rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 700 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 701 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 702 + components: + - rot: 3.141592653589793 rad + pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 703 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 704 + components: + - rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 705 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 706 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 707 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 708 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 709 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 710 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 711 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 712 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 713 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 714 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 715 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 1 + type: Transform + - uid: 716 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 1 + type: Transform + - uid: 717 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform +- proto: PoweredLightPostSmall + entities: + - uid: 718 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 719 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 1 + type: Transform + - uid: 720 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 721 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform + - uid: 722 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 723 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 1 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 724 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform +- proto: RandomDrinkGlass + entities: + - uid: 725 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform +- proto: RandomFoodMeal + entities: + - uid: 726 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 727 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform +- proto: ShuttersNormalOpen + entities: + - uid: 728 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - links: + - 779 + type: DeviceLinkSink + - uid: 729 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - links: + - 779 + type: DeviceLinkSink + - uid: 730 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - links: + - 779 + type: DeviceLinkSink +- proto: ShuttleWindow + entities: + - uid: 731 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 732 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 733 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 734 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 735 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 736 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 737 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 738 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 739 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 740 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 741 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 742 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 1 + type: Transform + - uid: 743 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 744 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 745 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 746 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 747 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 748 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,14.5 + parent: 1 + type: Transform + - uid: 749 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,14.5 + parent: 1 + type: Transform + - uid: 750 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 751 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 752 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 753 + components: + - pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 754 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 755 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 756 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 757 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 758 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 759 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 760 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 761 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,13.5 + parent: 1 + type: Transform + - uid: 762 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 763 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,12.5 + parent: 1 + type: Transform + - uid: 764 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,13.5 + parent: 1 + type: Transform + - uid: 765 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 766 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 767 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 1 + type: Transform + - uid: 768 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 769 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 770 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 771 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + type: Transform + - uid: 772 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 773 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 774 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 775 + components: + - rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 776 + components: + - rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 777 + components: + - rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 1 + type: Transform +- proto: SignalButtonDirectional + entities: + - uid: 778 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - linkedPorts: + 6: + - Pressed: DoorBolt + 7: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 779 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - linkedPorts: + 728: + - Pressed: Toggle + 729: + - Pressed: Toggle + 730: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 780 + components: + - rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1 + type: Transform + - linkedPorts: + 44: + - Pressed: Toggle + 45: + - Pressed: Toggle + 46: + - Pressed: Toggle + 8: + - Pressed: DoorBolt + 9: + - Pressed: DoorBolt + type: DeviceLinkSource +- proto: SignBio + entities: + - uid: 781 + components: + - pos: 7.5,-10.5 + parent: 1 + type: Transform +- proto: SignEngineering + entities: + - uid: 782 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 1 + type: Transform +- proto: SignMedical + entities: + - uid: 783 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform +- proto: SignPrison + entities: + - uid: 784 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1 + type: Transform +- proto: SignShield + entities: + - uid: 785 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform +- proto: SinkWide + entities: + - uid: 786 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 787 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 788 + components: + - pos: -1.5,-12.5 + parent: 1 + type: Transform +- proto: soda_dispenser + entities: + - uid: 789 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform +- proto: StasisBed + entities: + - uid: 790 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform +- proto: StoolBar + entities: + - uid: 791 + components: + - rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 792 + components: + - rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 793 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 794 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 795 + components: + - pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 796 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + type: Transform +- proto: Table + entities: + - uid: 797 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 1 + type: Transform + - uid: 798 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 799 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + type: Transform +- proto: TableCounterWood + entities: + - uid: 800 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 801 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 802 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform +- proto: TableReinforced + entities: + - uid: 803 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 804 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,13.5 + parent: 1 + type: Transform +- proto: TableWood + entities: + - uid: 805 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 806 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 807 + components: + - rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 808 + components: + - rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 1 + type: Transform +- proto: Thruster + entities: + - uid: 809 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 1 + type: Transform + - uid: 810 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 1 + type: Transform + - uid: 811 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-12.5 + parent: 1 + type: Transform + - uid: 812 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-14.5 + parent: 1 + type: Transform + - uid: 813 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-15.5 + parent: 1 + type: Transform + - uid: 814 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-16.5 + parent: 1 + type: Transform + - uid: 815 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-16.5 + parent: 1 + type: Transform + - uid: 816 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-16.5 + parent: 1 + type: Transform + - uid: 817 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-16.5 + parent: 1 + type: Transform + - uid: 818 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-15.5 + parent: 1 + type: Transform + - uid: 819 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-14.5 + parent: 1 + type: Transform + - uid: 820 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-12.5 + parent: 1 + type: Transform + - uid: 821 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 1 + type: Transform + - uid: 822 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 1 + type: Transform + - uid: 823 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 824 + components: + - pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 825 + components: + - pos: -7.5,5.5 + parent: 1 + type: Transform + - uid: 826 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 827 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 828 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 829 + components: + - pos: 6.5,12.5 + parent: 1 + type: Transform + - uid: 830 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 1 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 831 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 1 + type: Transform +- proto: ToyFigurineClown + entities: + - uid: 832 + components: + - pos: 0.18010247,-3.0342817 + parent: 1 + type: Transform +- proto: ToyFigurineGreytider + entities: + - uid: 833 + components: + - pos: 7.5,-13.5 + parent: 1 + type: Transform +- proto: ToyFigurineMime + entities: + - uid: 834 + components: + - pos: 0.7675153,-2.929387 + parent: 1 + type: Transform +- proto: ToyFigurineNukieCommander + entities: + - uid: 835 + components: + - pos: -6.5,-13.5 + parent: 1 + type: Transform +- proto: ToyRubberDuck + entities: + - uid: 836 + components: + - pos: -4.5,-12.5 + parent: 1 + type: Transform +- proto: ToySpawner + entities: + - uid: 837 + components: + - pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 838 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 839 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform +- proto: VendingMachineCigs + entities: + - uid: 841 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform +- proto: VendingMachineDiscount + entities: + - uid: 842 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform +- proto: VendingMachineSec + entities: + - uid: 843 + components: + - pos: -6.5,-8.5 + parent: 1 + type: Transform +- proto: VendingMachineWallMedical + entities: + - uid: 844 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 845 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform +- proto: VendingMachineWinter + entities: + - uid: 846 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform +- proto: WallShuttle + entities: + - uid: 847 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 848 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 1 + type: Transform + - uid: 849 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 850 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 1 + type: Transform + - uid: 851 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 852 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 1 + type: Transform + - uid: 853 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 1 + type: Transform + - uid: 854 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 1 + type: Transform + - uid: 855 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-13.5 + parent: 1 + type: Transform + - uid: 856 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-13.5 + parent: 1 + type: Transform + - uid: 857 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 1 + type: Transform + - uid: 858 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 1 + type: Transform + - uid: 859 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 1 + type: Transform + - uid: 860 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 861 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 1 + type: Transform + - uid: 862 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 1 + type: Transform + - uid: 863 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 1 + type: Transform + - uid: 864 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-15.5 + parent: 1 + type: Transform + - uid: 865 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 1 + type: Transform + - uid: 866 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 1 + type: Transform + - uid: 867 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 1 + type: Transform + - uid: 868 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 1 + type: Transform + - uid: 869 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 1 + type: Transform + - uid: 870 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 1 + type: Transform + - uid: 871 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 1 + type: Transform + - uid: 872 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 1 + type: Transform + - uid: 873 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 1 + type: Transform + - uid: 874 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 875 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 876 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 877 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 878 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 879 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 880 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 881 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 882 + components: + - rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 883 + components: + - rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 1 + type: Transform + - uid: 884 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 885 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 886 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 1 + type: Transform + - uid: 887 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 888 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 889 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 890 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 891 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 892 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 893 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 894 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 895 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 896 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 897 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 898 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 899 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 1 + type: Transform + - uid: 900 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 1 + type: Transform + - uid: 901 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 902 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 903 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 904 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 1 + type: Transform + - uid: 905 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 906 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 1 + type: Transform + - uid: 907 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 1 + type: Transform + - uid: 908 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 1 + type: Transform + - uid: 909 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 910 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 1 + type: Transform + - uid: 911 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-12.5 + parent: 1 + type: Transform + - uid: 912 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-12.5 + parent: 1 + type: Transform + - uid: 913 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 914 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 915 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 916 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 917 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 918 + components: + - rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 919 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 920 + components: + - rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 921 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 922 + components: + - rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 923 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 924 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 925 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 926 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 927 + components: + - rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 928 + components: + - rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 929 + components: + - rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 930 + components: + - rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 931 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 932 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 933 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 934 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 935 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 936 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 937 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 938 + components: + - pos: 0.5,-11.5 + parent: 1 + type: Transform + - uid: 939 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 940 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 941 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 942 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 943 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 944 + components: + - rot: 3.141592653589793 rad + pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 945 + components: + - rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 946 + components: + - pos: 8.5,-6.5 + parent: 1 + type: Transform +- proto: WallShuttleDiagonal + entities: + - uid: 947 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 948 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 949 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 1 + type: Transform + - uid: 950 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-9.5 + parent: 1 + type: Transform + - uid: 951 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 952 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,7.5 + parent: 1 + type: Transform +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 953 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 954 + components: + - pos: -5.5,-6.5 + parent: 1 + type: Transform +- proto: WardrobePrisonFilled + entities: + - uid: 955 + components: + - pos: -5.5,-10.5 + parent: 1 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 956 + components: + - pos: 3.5,13.5 + parent: 1 + type: Transform +- proto: Windoor + entities: + - uid: 957 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 958 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 959 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 960 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform +- proto: WindoorSecureCommandLocked + entities: + - uid: 961 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 962 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 + type: Transform +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 963 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 1 + type: Transform +- proto: WindoorSecureMedicalLocked + entities: + - uid: 964 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 1 + type: Transform +- proto: WindowDirectional + entities: + - uid: 965 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 966 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 967 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 968 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 969 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 970 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 971 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 972 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 973 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 974 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 975 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 976 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 977 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 978 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 979 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 980 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 981 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 982 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 983 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 984 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 985 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 986 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 987 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 988 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 989 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 990 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 991 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 1 + type: Transform + - uid: 992 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 1 + type: Transform + - uid: 993 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 994 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 995 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/Shuttles/pathfinder.yml b/Resources/Maps/Shuttles/pathfinder.yml new file mode 100644 index 0000000000..cc43ba831c --- /dev/null +++ b/Resources/Maps/Shuttles/pathfinder.yml @@ -0,0 +1,3184 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 30: FloorDark + 35: FloorDarkMono + 1: FloorGlass + 65: FloorMetalDiamond + 92: FloorSteel + 99: FloorSteelDirty + 108: FloorTechMaint2 + 124: Lattice + 125: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Pathfinder + - type: Transform + pos: -0.515625,-0.515625 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: fQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAfQAAAAAAfQAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAfQAAAAAAYwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAYwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAfQAAAAAAHgAAAAABHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABfQAAAAAAHgAAAAAAHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADfQAAAAAAfQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAYwAAAAAAfQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAXAAAAAABXAAAAAAAXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAfQAAAAAAfQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAXAAAAAADXAAAAAACXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAXAAAAAABXAAAAAABXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABfQAAAAAAfQAAAAAAYwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABfQAAAAAAfQAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAAB + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: SalvageShuttle + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 0: -5,-3 + 1: -6,-3 + 2: -7,-3 + 3: -8,-3 + 4: -8,-4 + 5: -7,-4 + 6: -6,-4 + 7: -5,-4 + 8: -5,-5 + 9: -6,-5 + 10: -7,-5 + 11: 2,-5 + 12: 2,-6 + 13: 5,-6 + 14: 5,-5 + 17: 3,-5 + 18: 4,-5 + 19: 4,-6 + 20: 3,-6 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 15: -3,-9 + 16: 3,-9 + 131: -4,-1 + 132: -2,-3 + 133: -2,-5 + 134: -4,0 + - node: + color: '#3AB3DAFF' + id: DeliveryGreyscale + decals: + 136: 1,2 + - node: + color: '#F9801DFF' + id: DeliveryGreyscale + decals: + 135: 2,2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 111: 8,-7 + 112: 8,-7 + 113: 8,-5 + 114: 9,-5 + 115: 9,-7 + 116: 10,-7 + 117: 10,-6 + 118: 8,-6 + 119: 6,-3 + 120: 6,-3 + 121: 6,-4 + 122: 6,-3 + 123: 7,-3 + 124: 6,-3 + 125: 8,-3 + 126: 8,-3 + 127: 8,-3 + 128: 8,-3 + 129: 7,-3 + 130: 7,-3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 21: -4,-6 + 22: -7,-6 + 23: -7,-6 + 24: -8,-5 + 25: -9,-5 + 26: -6,-8 + 27: -4,-8 + 28: -3,-8 + 29: -6,-7 + 30: -6,-8 + 31: 2,-8 + 32: 4,-7 + 33: 1,-6 + 34: -1,-7 + 35: 3,-7 + 36: 3,-5 + 37: 0,-6 + 38: -1,-7 + 39: -3,-7 + 40: -3,-8 + 41: 4,-8 + 42: 4,-9 + 43: 6,-7 + 44: 6,-5 + 45: 6,-7 + 46: 4,-7 + 47: 4,-7 + 48: 1,-7 + 49: -4,-8 + 50: -3,-8 + 51: 0,-8 + 52: -5,-7 + 53: -7,-5 + 54: -6,-5 + 55: -5,-4 + 56: -6,-4 + 57: -8,-5 + 58: -8,-7 + 59: -9,-7 + 60: -8,-7 + 61: -6,-6 + 62: -6,-8 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 63: -7,-6 + 64: -7,-6 + 65: -5,-7 + 66: -9,-7 + 67: -9,-5 + 68: -9,-7 + 69: -8,-6 + 70: -8,-6 + 71: -6,-4 + 72: -5,-5 + 73: -6,-5 + 74: -8,-4 + 75: -7,-4 + 76: -5,-6 + 77: -4,-7 + 78: -5,-8 + 79: -2,-8 + 80: -2,-8 + 81: 0,-8 + 82: 1,-8 + 83: 3,-6 + 84: 1,-5 + 85: 2,-6 + 86: 2,-5 + 87: 2,-5 + 88: 5,-6 + 89: 6,-7 + 90: 6,-8 + 91: 6,-6 + 92: 4,-8 + 93: 2,-8 + 94: -1,-7 + 95: -4,-8 + 96: -1,-5 + 97: -2,-4 + 98: -1,-4 + 99: -2,-3 + 100: -3,-1 + 101: -1,0 + 102: -1,-1 + 103: -3,-1 + 104: -3,1 + 105: -2,1 + 106: -2,0 + 107: -1,2 + 108: -3,0 + 109: -4,-1 + 110: -4,0 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 1774 + 1: 32768 + -1,0: + 0: 3311 + 1: 8448 + 0,-1: + 0: 61154 + 1,0: + 0: 1 + 1: 288 + 2: 4 + 1,-1: + 0: 4564 + 1: 32768 + 0,-3: + 0: 45872 + -1,-3: + 0: 43136 + 1: 256 + 0,-2: + 0: 61183 + -1,-2: + 0: 59647 + -1,-1: + 0: 63726 + 1,-3: + 1: 256 + 1,-2: + 0: 30711 + 2,-3: + 2: 12288 + 1: 32768 + 2,-2: + 0: 30576 + 2,-1: + 0: 16 + 1: 520 + 2: 64 + -2,0: + 2: 4 + 1: 128 + -3,-3: + 1: 8192 + 2: 49152 + -3,-2: + 0: 52416 + -3,-1: + 1: 2050 + 2: 64 + -2,-3: + 2: 4096 + -2,-2: + 0: 65532 + -2,-1: + 0: 1279 + 1: 8192 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: BecomesStation + id: Pathfinder +- proto: AirAlarm + entities: + - uid: 3 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - type: DeviceList + devices: + - 153 + - 126 + - 118 + - 140 + - 104 + - 150 + - 276 + - 278 + - 273 + - 173 + - 174 + - 513 + - 512 + - 511 + - 510 + - 263 + - 21 + - 19 + - 17 +- proto: AirlockGlassShuttle + entities: + - uid: 8 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 +- proto: AirlockSalvageGlassLocked + entities: + - uid: 6 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 +- proto: AirlockSalvageLocked + entities: + - uid: 5 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 +- proto: AmeController + entities: + - uid: 70 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - type: AmeController + injecting: True + - type: ContainerContainer + containers: + fuelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 72 +- proto: AmeJar + entities: + - uid: 72 + components: + - type: Transform + parent: 70 + - type: Physics + canCollide: False + - uid: 117 + components: + - type: Transform + pos: 2.9327545,-2.3777018 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: 2.7608795,-2.3620768 + parent: 1 +- proto: AmeShielding + entities: + - uid: 14 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - type: PointLight + radius: 2 + enabled: True + - uid: 103 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 96 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 9 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 1 + - uid: 26 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 1 + - uid: 27 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 23 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 +- proto: Bed + entities: + - uid: 30 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: BedsheetSpawner + entities: + - uid: 32 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: BlastDoor + entities: + - uid: 34 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 225 + - uid: 35 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 225 + - uid: 36 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 1 + - type: DeviceLinkSink + links: + - 225 +- proto: ButtonFrameGrey + entities: + - uid: 157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 20 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 +- proto: CableHV + entities: + - uid: 13 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 +- proto: CableMV + entities: + - uid: 16 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 98 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 +- proto: CargoPallet + entities: + - uid: 158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 +- proto: CarpetBlack + entities: + - uid: 154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - uid: 259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + - uid: 503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 +- proto: Chair + entities: + - uid: 162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 1 + - uid: 163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 160 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 92 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 +- proto: ComputerBroken + entities: + - uid: 41 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 1 + - uid: 336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 1 +- proto: ComputerRadar + entities: + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 +- proto: ComputerSalvageExpedition + entities: + - uid: 257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 +- proto: ComputerShuttleSalvage + entities: + - uid: 258 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 283 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 +- proto: DisposalBend + entities: + - uid: 184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 +- proto: DisposalPipe + entities: + - uid: 185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 +- proto: DisposalPipeBroken + entities: + - uid: 186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1 +- proto: DisposalTrunk + entities: + - uid: 188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 +- proto: DrinkMugMetal + entities: + - uid: 195 + components: + - type: Transform + pos: 9.636227,-6.42377 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 10.542477,-6.408145 + parent: 1 +- proto: EmergencyLight + entities: + - uid: 183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + - uid: 262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - uid: 275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 84 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 +- proto: FirelockEdge + entities: + - uid: 173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - uid: 174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - uid: 510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - uid: 511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - uid: 512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - uid: 513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 +- proto: FirelockGlass + entities: + - uid: 17 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - uid: 19 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - uid: 21 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - uid: 263 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 +- proto: FloorDrain + entities: + - uid: 198 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: Fulton + entities: + - uid: 197 + components: + - type: Transform + pos: 3.7384453,-4.482957 + parent: 1 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 260 + components: + - type: Transform + pos: 4.4102926,-4.1582947 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 4.722792,-4.2364197 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: 3.5509453,-4.186082 + parent: 1 +- proto: GasMixerFlipped + entities: + - uid: 182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 1 + - type: GasMixer + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPassiveVent + entities: + - uid: 37 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 124 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 222 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourway + entities: + - uid: 204 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 99 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 194 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 201 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 213 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 231 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 249 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 250 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunction + entities: + - uid: 120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 268 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 269 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 60 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 104 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 118 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 126 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 150 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 153 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 276 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GravityGeneratorMini + entities: + - uid: 333 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 +- proto: Grille + entities: + - uid: 10 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 1 + - uid: 396 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 1 + - uid: 465 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 294 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 143 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 +- proto: HospitalCurtainsOpen + entities: + - uid: 284 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 +- proto: LockerFreezer + entities: + - uid: 288 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 69 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 +- proto: NitrogenCanister + entities: + - uid: 11 + components: + - type: Transform + anchored: True + pos: 2.5,2.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: OreProcessor + entities: + - uid: 365 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 +- proto: OxygenCanister + entities: + - uid: 12 + components: + - type: Transform + anchored: True + pos: 1.5,2.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: PaperBin5 + entities: + - uid: 291 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 18 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + - uid: 81 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 1 + - uid: 264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 1 + - uid: 266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 1 + - uid: 270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + - uid: 293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + - uid: 303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 1 +- proto: Rack + entities: + - uid: 2 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 +- proto: RandomPosterAny + entities: + - uid: 4 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 83 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 1 + - uid: 421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 468 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 +- proto: ReinforcedWindowDiagonal + entities: + - uid: 287 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 +- proto: SalvageMagnet + entities: + - uid: 169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 +- proto: ShuttersNormalOpen + entities: + - uid: 520 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 156 +- proto: SignalButtonDirectional + entities: + - uid: 156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 520: + - Pressed: Toggle + - uid: 225 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 34: + - Pressed: Toggle + 35: + - Pressed: Toggle + 36: + - Pressed: Toggle +- proto: SignBridge + entities: + - uid: 354 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 +- proto: SinkEmpty + entities: + - uid: 192 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 59 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 +- proto: SpawnPointLatejoin + entities: + - uid: 357 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 52 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 +- proto: SuitStorageEVAAlternate + entities: + - uid: 200 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 +- proto: SuitStorageSalv + entities: + - uid: 40 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 +- proto: Table + entities: + - uid: 364 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 1 + - uid: 521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 367 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 +- proto: Thruster + entities: + - uid: 349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + - uid: 351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1 + - uid: 368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-8.5 + parent: 1 + - uid: 369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-8.5 + parent: 1 + - uid: 370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 1 + - uid: 371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-8.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 +- proto: ToiletEmpty + entities: + - uid: 337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 335 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1 +- proto: WallReinforced + entities: + - uid: 190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-7.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 1 + - uid: 386 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 1 + - uid: 387 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 1 + - uid: 389 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - uid: 417 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-8.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 423 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 1 + - uid: 426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-8.5 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 1 + - uid: 428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - uid: 429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - uid: 467 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 473 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 1 +- proto: WallReinforcedDiagonal + entities: + - uid: 298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-8.5 + parent: 1 + - uid: 308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - uid: 310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-8.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1 + - uid: 317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 1 + - uid: 343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 1 + - uid: 344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1 + - uid: 353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 +- proto: WallSolid + entities: + - uid: 15 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + - uid: 434 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 436 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 438 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 439 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 441 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 444 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 1 + - uid: 447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 450 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 456 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 457 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 458 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 459 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 161 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 +- proto: Windoor + entities: + - uid: 487 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 +- proto: Window + entities: + - uid: 282 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1 +... diff --git a/Resources/Maps/Test/dev_map.yml b/Resources/Maps/Test/dev_map.yml index f00d7049a5..910a059ee7 100644 --- a/Resources/Maps/Test/dev_map.yml +++ b/Resources/Maps/Test/dev_map.yml @@ -4358,7 +4358,6 @@ entities: solutions: absorbed: temperature: 293.15 - canMix: False canReact: True maxVol: 50 name: null diff --git a/Resources/Maps/WhiteBox.yml b/Resources/Maps/WhiteBox.yml new file mode 100644 index 0000000000..c020bbab18 --- /dev/null +++ b/Resources/Maps/WhiteBox.yml @@ -0,0 +1,187862 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 10: FloorAsteroidSandDug + 13: FloorAsteroidTile + 22: FloorAstroGrassAutumnOrange + 23: FloorAstroGrassAutumnRed + 18: FloorAstroGrassAutumnYellow + 16: FloorBar + 19: FloorBlueCircuit + 20: FloorBoxing + 21: FloorBrokenWood + 27: FloorClown + 31: FloorDark + 5: FloorDarkMini + 37: FloorDarkMono + 44: FloorDesert + 46: FloorEighties + 49: FloorFreezer + 25: FloorGold + 52: FloorGrass + 6: FloorGrayConcrete + 63: FloorHydro + 65: FloorKitchen + 66: FloorLaundry + 67: FloorLino + 68: FloorLowDesert + 69: FloorMetalDiamond + 70: FloorMime + 74: FloorMono + 79: FloorPlanetGrass + 24: FloorPlanetGrassAutumnYellow + 81: FloorRGlass + 82: FloorReinforced + 4: FloorReinforcedHardened + 9: FloorShielding + 87: FloorShuttleOrange + 94: FloorSteel + 8: FloorSteelBurnt + 7: FloorSteelDamaged + 101: FloorSteelDirty + 3: FloorSteelMini + 106: FloorSteelMono + 14: FloorSterile + 11: FloorSterileDark + 112: FloorTechMaint + 113: FloorTechMaint2 + 116: FloorWhite + 2: FloorWhiteMini + 12: FloorWhitePlastic + 129: FloorWood + 1: FloorWoodLarge + 130: FloorWoodTile + 131: Lattice + 132: Plating + 15: PlatingBurnt + 17: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: WhiteBox + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 2 + components: + - type: MetaData + - type: Transform + pos: 0.50032806,0.50115013 + parent: 1 + - type: MapGrid + chunks: + -1,-1: + ind: -1,-1 + tiles: XgAAAAAChAAAAAAAXgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAXgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAADhAAAAAAAJQAAAAABCQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAXgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAChAAAAAAACQAAAAAACQAAAAAAhAAAAAAABAAAAAAABAAAAAAAXgAAAAAChAAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAAChAAAAAAACQAAAAAACQAAAAAAhAAAAAAABAAAAAAABAAAAAAAXgAAAAAAhAAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAADXgAAAAABhAAAAAAACQAAAAAACQAAAAAAhAAAAAAABAAAAAAABAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAABJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAACXgAAAAAAAwAAAAADAwAAAAADXgAAAAACJQAAAAAAhAAAAAAAJQAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAADXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADBQAAAAACHwAAAAADXgAAAAADXgAAAAACAwAAAAAAAwAAAAADAwAAAAABXgAAAAADXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADHwAAAAABHwAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABBQAAAAACHwAAAAAAHwAAAAABBQAAAAAABQAAAAABXgAAAAAChAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAACXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAJQAAAAADXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAADJQAAAAAAXgAAAAADAwAAAAABAwAAAAAAAwAAAAAAXgAAAAABAwAAAAADAwAAAAACAwAAAAACXgAAAAACXgAAAAADagAAAAAAagAAAAADagAAAAADagAAAAAAXgAAAAACJQAAAAADXgAAAAABXgAAAAADXgAAAAACXgAAAAABXgAAAAACXgAAAAADXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAADXgAAAAAAXgAAAAAC + version: 6 + 0,0: + ind: 0,0 + tiles: XgAAAAAAXgAAAAADXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAACXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAACXgAAAAAChAAAAAAAdAAAAAADdAAAAAABdAAAAAABdAAAAAABdAAAAAADJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAdAAAAAADdAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADdAAAAAADdAAAAAABdAAAAAADhAAAAAAAdAAAAAADhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAACdAAAAAABdAAAAAACdAAAAAAChAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAXgAAAAACXgAAAAADdAAAAAACdAAAAAACdAAAAAABdAAAAAADdAAAAAABJQAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAXgAAAAADXgAAAAABhAAAAAAAdAAAAAACdAAAAAACdAAAAAADdAAAAAADhAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAADhAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAADXgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAXgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAAwAAAAACAwAAAAADXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAXgAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAABhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAADXgAAAAAAXgAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAgQAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAXgAAAAADXgAAAAADhAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAgQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADJQAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAACJQAAAAAAhAAAAAAAXgAAAAACAwAAAAABhAAAAAAAhAAAAAAACQAAAAAAJQAAAAADhAAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAAChAAAAAAAXgAAAAABXgAAAAADBAAAAAAAhAAAAAAACQAAAAAACQAAAAAAhAAAAAAAXgAAAAABAwAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAACXgAAAAABhAAAAAAAXgAAAAAAAwAAAAADBAAAAAAAhAAAAAAACQAAAAAACQAAAAAAhAAAAAAAXgAAAAADAwAAAAAAXgAAAAABdAAAAAACdAAAAAAAdAAAAAACdAAAAAABdAAAAAADhAAAAAAAXgAAAAADAwAAAAAABAAAAAAAhAAAAAAACQAAAAAACQAAAAAAhAAAAAAAXgAAAAAAXgAAAAABXgAAAAACdAAAAAACdAAAAAADdAAAAAABdAAAAAAAdAAAAAADhAAAAAAAXgAAAAACXgAAAAAChAAAAAAAhAAAAAAAJQAAAAAAXgAAAAAChAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACJQAAAAAAhAAAAAAAJQAAAAAAXgAAAAADAwAAAAAAAwAAAAACXgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABXgAAAAAAXgAAAAABHwAAAAAABQAAAAAAHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAADAwAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAADXgAAAAABHwAAAAADHwAAAAACHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACAwAAAAADBQAAAAABHwAAAAABHwAAAAAABQAAAAADHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAABXgAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAABhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAADAwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAAwAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAADXgAAAAAAXgAAAAACXgAAAAACJQAAAAAAXgAAAAADAwAAAAAAagAAAAABagAAAAACagAAAAADXgAAAAACXgAAAAABAwAAAAADAwAAAAAAAwAAAAADXgAAAAACAwAAAAADAwAAAAADAwAAAAADXgAAAAACJQAAAAAAXgAAAAAAAwAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAADJQAAAAAAXgAAAAAAXgAAAAAD + version: 6 + -1,0: + ind: -1,0 + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAAChAAAAAAAJQAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAABwAAAAABhAAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAADhAAAAAAAJQAAAAAAhAAAAAAAXgAAAAAAAwAAAAAAXgAAAAAAhAAAAAAAJQAAAAAAhAAAAAAABwAAAAAChAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAJQAAAAADJQAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAXgAAAAAAAwAAAAAAXgAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAXgAAAAABXgAAAAAChAAAAAAAJQAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAJQAAAAAAhAAAAAAABwAAAAAFXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAAwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABAwAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAABhAAAAAAAhAAAAAAAXgAAAAACAwAAAAABhAAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAABwAAAAAAhAAAAAAABwAAAAABhAAAAAAAhAAAAAAAXgAAAAACXgAAAAADhAAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACAwAAAAAChAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAABwAAAAADhAAAAAAABwAAAAAChAAAAAAAXgAAAAACAwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABAwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACAwAAAAAChAAAAAAAgQAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAdAAAAAADdAAAAAABJQAAAAABXgAAAAAAXgAAAAADXgAAAAABhAAAAAAAXgAAAAACAwAAAAADhAAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACAwAAAAACXgAAAAAChAAAAAAAXgAAAAAAAwAAAAABhAAAAAAAJQAAAAAChAAAAAAAXgAAAAADXgAAAAADXgAAAAAChAAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAXgAAAAABAwAAAAADXgAAAAAChAAAAAAAXgAAAAABXgAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: XgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAXgAAAAADAwAAAAAAAwAAAAAAXgAAAAABAwAAAAAAAwAAAAAAXgAAAAABAwAAAAAAAwAAAAAAXgAAAAADAwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABhAAAAAAAJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAAAAwAAAAADXgAAAAABXgAAAAAAAwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABhAAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAADAwAAAAADXgAAAAACXgAAAAAAAwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAABhAAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAXgAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACAwAAAAACXgAAAAAAXgAAAAAAAwAAAAAAXgAAAAAAXgAAAAAAEAAAAAAAAwAAAAADEAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABAwAAAAADXgAAAAADXgAAAAAAAwAAAAAAXgAAAAAAXgAAAAAAEAAAAAAAAwAAAAAAEAAAAAAAXgAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAEAAAAAAAAwAAAAAAEAAAAAAAXgAAAAABhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAXgAAAAAAhAAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAgQAAAAADhAAAAAAAXgAAAAAChAAAAAAAXgAAAAAAgQAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAADgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAACAQAAAAACAQAAAAADAQAAAAACXgAAAAAAhAAAAAAAXgAAAAAAgQAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAAQAAAAADAQAAAAABAQAAAAAC + version: 6 + -2,-1: + ind: -2,-1 + tiles: XgAAAAAAXgAAAAACXgAAAAAChAAAAAAAXgAAAAAAXgAAAAAAXgAAAAABhAAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAhAAAAAAAXgAAAAADAwAAAAAAXgAAAAAAXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAcQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABAwAAAAAAXgAAAAADXgAAAAABXgAAAAAChAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAAAXgAAAAADhAAAAAAAXgAAAAACXgAAAAACAwAAAAADXgAAAAACXgAAAAADXgAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADAwAAAAACAwAAAAACAwAAAAADXgAAAAADJQAAAAACXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAAAXgAAAAACJQAAAAADXgAAAAAAXgAAAAACAwAAAAAAXgAAAAACXgAAAAACXgAAAAAChAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABAwAAAAAAAwAAAAABAwAAAAAAXgAAAAACXgAAAAABhAAAAAAAXgAAAAABAwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADhAAAAAAAXgAAAAABAwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAAChAAAAAAAXgAAAAADAwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACAwAAAAACAwAAAAABAwAAAAADXgAAAAADhAAAAAAAXgAAAAACAwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAAChAAAAAAAXgAAAAAAAwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAACCAAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAADXgAAAAADhAAAAAAAhAAAAAAAXgAAAAACAwAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAAAJQAAAAACXgAAAAADAwAAAAADAwAAAAABXgAAAAAAAwAAAAAAAwAAAAACAwAAAAADXgAAAAACAwAAAAAAAwAAAAADAwAAAAACXgAAAAAAAwAAAAADAwAAAAACXgAAAAABJQAAAAAAXgAAAAAAAwAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABJQAAAAAAXgAAAAADXgAAAAAD + version: 6 + -2,-2: + ind: -2,-2 + tiles: XgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAAwAAAAAAXgAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAABXgAAAAACAwAAAAAAXgAAAAAAJQAAAAAAXgAAAAACXgAAAAADXgAAAAABAwAAAAAAXgAAAAADhAAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAJQAAAAAAXgAAAAADAwAAAAAAJQAAAAAAJQAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAhAAAAAAAJQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAACXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAJQAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADAwAAAAACXgAAAAABXgAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAADhAAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAADhAAAAAAAXgAAAAACAwAAAAADAwAAAAAAXgAAAAAAhAAAAAAAXgAAAAADAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAABJQAAAAAAXgAAAAACAwAAAAAAAwAAAAAAXgAAAAAChAAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAhAAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAADAwAAAAAAAwAAAAAAXgAAAAADhAAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAADJQAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAAAJQAAAAABXgAAAAADAwAAAAABAwAAAAAAXgAAAAAAhAAAAAAAXgAAAAADAwAAAAAAAwAAAAAAXgAAAAAAJQAAAAAAhAAAAAAAXgAAAAADAwAAAAAAAwAAAAAAXgAAAAAAhAAAAAAAXgAAAAAAAwAAAAACAwAAAAAAXgAAAAABhAAAAAAAXgAAAAABAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAACAwAAAAAAAwAAAAAAXgAAAAAChAAAAAAAXgAAAAABAwAAAAACAwAAAAAAXgAAAAABJQAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAACXgAAAAAChAAAAAAAJQAAAAAAXgAAAAAAXgAAAAADXgAAAAADhAAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAABhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABJQAAAAAAAwAAAAAAXgAAAAAAhAAAAAAAXgAAAAADXgAAAAACXgAAAAAAJQAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAAAhAAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXgAAAAADXgAAAAAAXgAAAAABAwAAAAACXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAABhAAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAADhAAAAAAAXgAAAAADAwAAAAADXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAJQAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXgAAAAABhAAAAAAAXgAAAAACXgAAAAAD + version: 6 + 1,-2: + ind: 1,-2 + tiles: XgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABJQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAhAAAAAAAdAAAAAABdAAAAAACdAAAAAABCwAAAAAAhAAAAAAAdAAAAAABdAAAAAADdAAAAAAAXgAAAAADhAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAhAAAAAAACwAAAAAAdAAAAAAAdAAAAAABdAAAAAABCwAAAAAAdAAAAAACdAAAAAABdAAAAAABXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAdAAAAAABdAAAAAABdAAAAAABCwAAAAAAAgAAAAAAAgAAAAAAdAAAAAAAXgAAAAAAdAAAAAADdAAAAAADdAAAAAADdAAAAAAAdAAAAAADdAAAAAAChAAAAAAACwAAAAAAdAAAAAADdAAAAAABdAAAAAADhAAAAAAAdAAAAAAAdAAAAAACdAAAAAADXgAAAAABhAAAAAAAdAAAAAADdAAAAAACdAAAAAAAdAAAAAACdAAAAAADhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAdAAAAAADdAAAAAADdAAAAAABdAAAAAADdAAAAAAACwAAAAAAdAAAAAADdAAAAAACdAAAAAAAdAAAAAABdAAAAAADdAAAAAABdAAAAAABdAAAAAABXgAAAAAChAAAAAAAJQAAAAADdAAAAAACdAAAAAAAdAAAAAACdAAAAAABCwAAAAAAdAAAAAACdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAABdAAAAAAAdAAAAAABdAAAAAADJQAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAhAAAAAAAdAAAAAAAhAAAAAAAhAAAAAAAdAAAAAACdAAAAAACdAAAAAAAdAAAAAADdAAAAAAAdAAAAAACdAAAAAAAdAAAAAAAXgAAAAADhAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAJQAAAAADdAAAAAAAdAAAAAAChAAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAhAAAAAAAXgAAAAABhAAAAAAACwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAdAAAAAABdAAAAAACdAAAAAABXgAAAAADhAAAAAAACwAAAAAADgAAAAAADgAAAAAACwAAAAAACwAAAAAAhAAAAAAAdAAAAAADdAAAAAABdAAAAAACdAAAAAABdAAAAAADdAAAAAADdAAAAAABdAAAAAADXgAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAdAAAAAADdAAAAAADdAAAAAADdAAAAAACdAAAAAABdAAAAAABdAAAAAABdAAAAAAAdAAAAAACXgAAAAADhAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAdAAAAAABdAAAAAADAgAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAABdAAAAAAAXgAAAAADhAAAAAAACwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAdAAAAAACdAAAAAADdAAAAAAAAgAAAAAAdAAAAAADdAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAXgAAAAAChAAAAAAACwAAAAAADgAAAAAADgAAAAAACwAAAAAACwAAAAAAhAAAAAAAdAAAAAAAdAAAAAAAdAAAAAACdAAAAAADdAAAAAACdAAAAAABdAAAAAAAdAAAAAAD + version: 6 + 0,-2: + ind: 0,-2 + tiles: XgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAJQAAAAACXgAAAAACXgAAAAABXgAAAAACXgAAAAABXgAAAAADXgAAAAACXgAAAAADAwAAAAABAwAAAAADAwAAAAABXgAAAAACAwAAAAABAwAAAAABAwAAAAADXgAAAAAAJQAAAAAAXgAAAAABAwAAAAAAAwAAAAADAwAAAAABXgAAAAAAAwAAAAACAwAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAABJQAAAAADXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAAAXgAAAAACXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABAwAAAAABXgAAAAADhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADAwAAAAAAXgAAAAAChAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAACAwAAAAABAwAAAAADXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADAwAAAAACXgAAAAADhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAABAwAAAAACAwAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACJQAAAAADXgAAAAAAAwAAAAACXgAAAAAChAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAABhAAAAAAAXgAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAJQAAAAAAJQAAAAAACQAAAAAACQAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAJQAAAAAAAQAAAAABAQAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAAABAAAAAAACQAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAJQAAAAADAQAAAAAAAQAAAAABhAAAAAAAdAAAAAABhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADAwAAAAADBAAAAAAACQAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAAQAAAAABAQAAAAAAAQAAAAABJQAAAAADdAAAAAABhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADAwAAAAAABAAAAAAACQAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAXgAAAAACAwAAAAADCQAAAAAACQAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAXgAAAAADXgAAAAADXgAAAAABJQAAAAAAJQAAAAABXgAAAAACXgAAAAACXgAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABAwAAAAADAwAAAAAAAwAAAAADXgAAAAAAhAAAAAAAXgAAAAACXgAAAAAAhAAAAAAAXgAAAAADAwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAABXgAAAAADhAAAAAAAXgAAAAADAwAAAAAD + version: 6 + -1,-2: + ind: -1,-2 + tiles: XgAAAAADXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAJQAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAAAAwAAAAADAwAAAAABXgAAAAADAwAAAAABAwAAAAABXgAAAAACJQAAAAAAXgAAAAADAwAAAAAAAwAAAAABAwAAAAADXgAAAAACAwAAAAAAAwAAAAACAwAAAAADXgAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAADJQAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAACXgAAAAABagAAAAADagAAAAADhAAAAAAAJQAAAAABXgAAAAABXgAAAAABhAAAAAAAXgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAACEgAAAAAAagAAAAABXgAAAAAAXgAAAAAAAwAAAAADXgAAAAAAXgAAAAABXgAAAAABhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAHwAAAAAAXgAAAAACAwAAAAAAXgAAAAADFgAAAAAAagAAAAAAhAAAAAAAXgAAAAACAwAAAAACXgAAAAAAXgAAAAADXgAAAAABhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAACXgAAAAAAAwAAAAAAXgAAAAACFwAAAAAAagAAAAABhAAAAAAAXgAAAAADXgAAAAABXgAAAAAChAAAAAAAXgAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAABFwAAAAAAagAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAJQAAAAABhAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADXgAAAAAAagAAAAADagAAAAAChAAAAAAAAQAAAAABAQAAAAAAAQAAAAABXgAAAAAAXgAAAAAAXgAAAAAChAAAAAAAAAAAAAAAhAAAAAAACQAAAAAACQAAAAAACQAAAAAAXgAAAAAAhAAAAAAAXgAAAAADhAAAAAAAAQAAAAACAQAAAAABJQAAAAAAXgAAAAAAXgAAAAABXgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAACQAAAAAABAAAAAAABAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAACQAAAAAABAAAAAAABAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAABXgAAAAABhAAAAAAAgwAAAAAAhAAAAAAACQAAAAAABAAAAAAABAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAAAXgAAAAAChAAAAAAAgwAAAAAAhAAAAAAACQAAAAAACQAAAAAACQAAAAAAXgAAAAAAhAAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAAChAAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAACXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: JQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAJQAAAAACXgAAAAABXgAAAAADXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAAAXgAAAAADhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAABAAAAAAABAAAAAAAXgAAAAADhAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAABAAAAAAABAAAAAAAXgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADBAAAAAAABAAAAAAABAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAABAAAAAAABAAAAAAAXgAAAAABhAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABBAAAAAAABAAAAAAABAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADBAAAAAAABAAAAAAABAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAARQAAAAAAhAAAAAAARQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAARQAAAAAARQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA + version: 6 + -2,-3: + ind: -2,-3 + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAADXgAAAAABhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAJQAAAAADhAAAAAAAhAAAAAAAJQAAAAADXgAAAAADXgAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAACJQAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAAwAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAAwAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA + version: 6 + -1,-3: + ind: -1,-3 + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACAwAAAAACcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADAwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAABAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAXgAAAAAAAwAAAAACAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAACAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAABXgAAAAAChAAAAAAAXgAAAAABAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAAChAAAAAAAXgAAAAABXgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABAwAAAAADAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAChAAAAAAAXgAAAAADAwAAAAABgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAXgAAAAAAAwAAAAADAAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAJQAAAAABJQAAAAAAJQAAAAACJQAAAAABhAAAAAAAXgAAAAAChAAAAAAAXgAAAAACXgAAAAADgwAAAAAAhAAAAAAAJQAAAAABhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAXgAAAAAAAwAAAAAAAAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAJQAAAAADJQAAAAADJQAAAAADJQAAAAABhAAAAAAAXgAAAAABhAAAAAAAXgAAAAABAwAAAAACgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAXgAAAAACAwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAChAAAAAAAXgAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADJQAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: XgAAAAACXgAAAAADhAAAAAAAJQAAAAADhAAAAAAAXgAAAAADXgAAAAAAXgAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAADhAAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAAChAAAAAAAJQAAAAACJQAAAAABJQAAAAAAJQAAAAACJQAAAAABJQAAAAADhAAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAADAwAAAAAAAwAAAAABAwAAAAADXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAACXgAAAAAChAAAAAAAXgAAAAADXgAAAAAChAAAAAAAXgAAAAACAwAAAAACAwAAAAABAwAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADAwAAAAABXgAAAAAChAAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAAAXgAAAAACXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACAwAAAAACXgAAAAADhAAAAAAAXgAAAAADXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACAwAAAAABXgAAAAABhAAAAAAAXgAAAAACXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAACXgAAAAABhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAADhAAAAAAAdAAAAAACdAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAACAwAAAAACAwAAAAABXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAADhAAAAAAAdAAAAAABdAAAAAAAcQAAAAAAhAAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAACXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAABdAAAAAABdAAAAAAAdAAAAAAAdAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAAChAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAACgQAAAAABdAAAAAADhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAABhAAAAAAAgQAAAAABgQAAAAADgQAAAAAAdAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAD + version: 6 + 1,-3: + ind: 1,-3 + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAACwAAAAAAhAAAAAAACwAAAAAACwAAAAAAhAAAAAAAdAAAAAACdAAAAAADCwAAAAAAhAAAAAAAdAAAAAACdAAAAAABdAAAAAABdAAAAAABhAAAAAAAhAAAAAAADgAAAAAADgAAAAAAhAAAAAAADgAAAAAADgAAAAAAhAAAAAAAdAAAAAADdAAAAAABCwAAAAAAhAAAAAAAdAAAAAADdAAAAAADdAAAAAAAdAAAAAAAhAAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAdAAAAAAAdAAAAAACdAAAAAAAdAAAAAABhAAAAAAAdAAAAAADCwAAAAAACwAAAAAACwAAAAAAcQAAAAAAhAAAAAAACwAAAAAADgAAAAAADgAAAAAADgAAAAAACwAAAAAAhAAAAAAAdAAAAAABdAAAAAADdAAAAAADdAAAAAAAdAAAAAAACwAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAhAAAAAAAdAAAAAADdAAAAAADdAAAAAAAhAAAAAAAJQAAAAABCwAAAAAACwAAAAAACwAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: hAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAhAAAAAAAAQAAAAADAQAAAAABAQAAAAABdAAAAAAAdAAAAAACdAAAAAABhAAAAAAAhAAAAAAAGwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAAQAAAAADAQAAAAABAQAAAAAAJQAAAAAChAAAAAAAJQAAAAADhAAAAAAAdAAAAAABdAAAAAAAdAAAAAAChAAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAhAAAAAAAdAAAAAAChAAAAAAAdAAAAAADdAAAAAABdAAAAAABhAAAAAAAXgAAAAACAwAAAAABXgAAAAABXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAABJQAAAAADXgAAAAAAAwAAAAABXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAACdAAAAAAAdAAAAAAChAAAAAAAdAAAAAABdAAAAAACdAAAAAABhAAAAAAAXgAAAAADAwAAAAACXgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABdAAAAAADJQAAAAAAhAAAAAAAdAAAAAAAdAAAAAACdAAAAAABhAAAAAAAXgAAAAABXgAAAAADXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAACdAAAAAABJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAAQAAAAAAAQAAAAACLAAAAAAEhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAACJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAALAAAAAABXgAAAAABXgAAAAAChAAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAADXgAAAAAAAwAAAAADXgAAAAABhAAAAAAALAAAAAABLAAAAAAALAAAAAAEAwAAAAABXgAAAAABhAAAAAAAXgAAAAABXgAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAXgAAAAADAwAAAAADXgAAAAADJQAAAAACLAAAAAAFLAAAAAAFLAAAAAAEXgAAAAACXgAAAAACJQAAAAADXgAAAAAAXgAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAAAXgAAAAACAwAAAAACXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAABhAAAAAAAXgAAAAAAXgAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAXgAAAAACXgAAAAABXgAAAAADJQAAAAACBgAAAAACBgAAAAACFgAAAAAAJQAAAAADhAAAAAAAhAAAAAAAXgAAAAABXgAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAADXgAAAAAAAwAAAAAAXgAAAAABXgAAAAACFgAAAAAABgAAAAACEgAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAADXgAAAAAAAwAAAAAAXgAAAAABhAAAAAAAEgAAAAAABgAAAAACBgAAAAACgQAAAAAAgQAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAADXgAAAAADXgAAAAABhAAAAAAAFgAAAAAAFgAAAAAAFwAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: XgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAADhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAwAAAAACAwAAAAADXgAAAAACAwAAAAADAwAAAAADAwAAAAABXgAAAAABAwAAAAADAwAAAAABAwAAAAABXgAAAAADJQAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAADhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAHwAAAAAAXgAAAAACXgAAAAACXgAAAAAAhAAAAAAAXgAAAAADXgAAAAAAXgAAAAABhAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABJQAAAAABHwAAAAAAXgAAAAABXgAAAAADXgAAAAAAhAAAAAAAXgAAAAABXgAAAAADXgAAAAADhAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAJQAAAAADHwAAAAABJQAAAAABhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAhAAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAAChAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAwAAAAACAwAAAAACXgAAAAACAwAAAAABAwAAAAABAwAAAAACXgAAAAABAwAAAAACAwAAAAADAwAAAAADXgAAAAAChAAAAAAAdAAAAAAAJQAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAhAAAAAAAdAAAAAAAJQAAAAAAhAAAAAAAXgAAAAAAXgAAAAACXgAAAAAAHwAAAAADXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAJQAAAAACXgAAAAABJQAAAAACXgAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAJQAAAAADXgAAAAADAwAAAAACAwAAAAAAAwAAAAAAXgAAAAAAAwAAAAACAwAAAAAAAwAAAAABXgAAAAADAwAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: hAAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAADhAAAAAAAgQAAAAAAgQAAAAAAJQAAAAACXgAAAAABAwAAAAABXgAAAAADhAAAAAAAXgAAAAAAAwAAAAADhAAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAACXgAAAAAChAAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAXgAAAAACXgAAAAAAJQAAAAAChAAAAAAAXgAAAAAAAwAAAAAChAAAAAAAhAAAAAAAJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABhAAAAAAAhAAAAAAAXgAAAAACAwAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAJQAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAAAXgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABXgAAAAACAwAAAAADAwAAAAAAAwAAAAACXgAAAAACAwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAADhAAAAAAAXgAAAAABXgAAAAABXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAACXgAAAAABXgAAAAACXgAAAAABhAAAAAAAXgAAAAAAXgAAAAACXgAAAAABHwAAAAACXgAAAAADXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAACXgAAAAAAXgAAAAABhAAAAAAAXgAAAAABXgAAAAACXgAAAAAAhAAAAAAAXgAAAAACXgAAAAADXgAAAAACHwAAAAACXgAAAAADXgAAAAAAXgAAAAADhAAAAAAAXgAAAAABXgAAAAABXgAAAAAAhAAAAAAAhAAAAAAAJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABhAAAAAAAhAAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAADhAAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAADAwAAAAADAwAAAAADAwAAAAAAXgAAAAABAwAAAAAChAAAAAAAhAAAAAAAJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAABXgAAAAADXgAAAAABhAAAAAAAJQAAAAADXgAAAAAChAAAAAAAgQAAAAAAJQAAAAADdAAAAAAAdAAAAAAAdAAAAAADhAAAAAAAXgAAAAABXgAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADhAAAAAAAXgAAAAACXgAAAAAChAAAAAAAgQAAAAAAhAAAAAAAdAAAAAAAAgAAAAAAdAAAAAADhAAAAAAAXgAAAAADXgAAAAABhAAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAdAAAAAABAgAAAAAAdAAAAAADhAAAAAAAXgAAAAABXgAAAAAChAAAAAAAgQAAAAAAgQAAAAAAXgAAAAAD + version: 6 + 1,1: + ind: 1,1 + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAwAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAwAAAAAAXgAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAXgAAAAAAAwAAAAAAXgAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAXgAAAAAAAwAAAAAAXgAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAABhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAwAAAAACXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: JQAAAAABXgAAAAAAXgAAAAADhAAAAAAAJQAAAAAAdAAAAAACdAAAAAAAdAAAAAADdAAAAAABhAAAAAAAXgAAAAADXgAAAAADXgAAAAACgQAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADJQAAAAAAhAAAAAAAJQAAAAAAJQAAAAABhAAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAAAXgAAAAABhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACAwAAAAAAAwAAAAAAAwAAAAACXgAAAAADAwAAAAACAwAAAAADAwAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAAChAAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAABAwAAAAAAAwAAAAAAXgAAAAADhAAAAAAAXgAAAAABAwAAAAADXgAAAAADhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAAChAAAAAAAXgAAAAABAwAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABhAAAAAAAhAAAAAAAXgAAAAAAAwAAAAABXgAAAAADJQAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAAAAwAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAABhAAAAAAAXgAAAAAAXgAAAAACXgAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAACXgAAAAADXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAAChAAAAAAAJQAAAAAAhAAAAAAAJQAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: XgAAAAABAwAAAAABAwAAAAADAwAAAAADXgAAAAAChAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAXgAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABhAAAAAAAJQAAAAABJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAAAhAAAAAAAXgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABhAAAAAAAXgAAAAAAXgAAAAAAJQAAAAAAJQAAAAAAhAAAAAAAXgAAAAACAwAAAAABAwAAAAABXgAAAAADhAAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAAAXgAAAAADJQAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAJQAAAAAAXgAAAAABAwAAAAAAAwAAAAACXgAAAAAAhAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAABAwAAAAADAwAAAAADXgAAAAACJQAAAAAAhAAAAAAAXgAAAAACXgAAAAABXgAAAAABhAAAAAAAhAAAAAAAJQAAAAADXgAAAAACJQAAAAABJQAAAAADhAAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAJQAAAAAAhAAAAAAAXgAAAAABAwAAAAACXgAAAAADJQAAAAABhAAAAAAAJQAAAAAAXgAAAAABJQAAAAACJQAAAAAAhAAAAAAAXgAAAAACAwAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACAwAAAAACXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAAwAAAAADXgAAAAABhAAAAAAAgwAAAAAAhAAAAAAAXgAAAAAAAwAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAACXgAAAAAChAAAAAAAgwAAAAAAhAAAAAAAJQAAAAADXgAAAAADXgAAAAABJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: XgAAAAACXgAAAAADXgAAAAAAXgAAAAAChAAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAABXgAAAAADhAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAXgAAAAABAwAAAAACAwAAAAADXgAAAAADJQAAAAAAXgAAAAACAwAAAAABAwAAAAADAwAAAAACXgAAAAAChAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAABhAAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAADhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACJQAAAAAAJQAAAAAAJQAAAAAAhAAAAAAAXgAAAAACAwAAAAACAwAAAAAAAwAAAAACXgAAAAADhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABHwAAAAAChAAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAAChAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgQAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAJQAAAAABJQAAAAADXgAAAAABhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAABhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAXgAAAAACAwAAAAAAXgAAAAAChAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAXgAAAAABAwAAAAAAXgAAAAABhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAADhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAXgAAAAAAAwAAAAABXgAAAAABhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAXgAAAAABXgAAAAACXgAAAAADhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: AQAAAAAAAQAAAAAChAAAAAAACwAAAAAAMQAAAAAAMQAAAAAAMQAAAAABCwAAAAAACwAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAQAAAAACAQAAAAAAhAAAAAAAhAAAAAAAHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAALAAAAAACRAAAAAAERAAAAAAAFAAAAAABFAAAAAABFAAAAAADhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAALAAAAAABLAAAAAACFAAAAAAAFAAAAAADFAAAAAABFAAAAAAChAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAALAAAAAAALAAAAAAFRAAAAAADFAAAAAADFAAAAAADFAAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAALAAAAAACRAAAAAAFFAAAAAABFAAAAAABFAAAAAABFAAAAAADhAAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAFwAAAAAAFwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFwAAAAAAhAAAAAAAJQAAAAADXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAFgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAABgAAAAAABgAAAAADXgAAAAADXgAAAAABXgAAAAADhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAABgAAAAAABgAAAAABBgAAAAADBgAAAAAABgAAAAADEgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAFwAAAAAAFwAAAAAAEgAAAAAAEgAAAAAAFgAAAAAAEgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: hAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAFQAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAAChAAAAAAAXgAAAAAAhAAAAAAAgQAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAJQAAAAAAXgAAAAAAXgAAAAACXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAJQAAAAAAXgAAAAAChAAAAAAAXgAAAAADgQAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAXgAAAAAAXgAAAAAChAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAADXgAAAAABhAAAAAAAXgAAAAADAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAJQAAAAABXgAAAAAAhAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAJQAAAAAAXgAAAAADXgAAAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAXgAAAAAAXgAAAAADXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAXgAAAAAAAwAAAAACXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAXgAAAAACAwAAAAACXgAAAAAC + version: 6 + -2,2: + ind: -2,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAXgAAAAAAXgAAAAACXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAAAJQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAdAAAAAAAdAAAAAAAhAAAAAAAgQAAAAAAFQAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAJQAAAAAAdAAAAAAAhAAAAAAAgQAAAAAAFQAAAAAAhAAAAAAAgQAAAAAAFQAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAJQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAFQAAAAAAgQAAAAAAhAAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: hAAAAAAAJQAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAAAXgAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAXgAAAAABAwAAAAAAAwAAAAAAXgAAAAABhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAADhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,0: + ind: -3,0 + tiles: hAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAABhAAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAADhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAAAXgAAAAACAwAAAAACAwAAAAACAwAAAAABXgAAAAADhAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAABXgAAAAABAwAAAAAAAwAAAAADAwAAAAADXgAAAAADhAAAAAAAgwAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAAChAAAAAAAAAAAAAAAhAAAAAAAXgAAAAACBAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAADCAAAAAAHhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAXgAAAAAABAAAAAAAhAAAAAAAhAAAAAAAcQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAXgAAAAACBAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAA + version: 6 + -3,1: + ind: -3,1 + tiles: cAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgQAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAFQAAAAAAhAAAAAAAgQAAAAAAFQAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAgQAAAAAAhAAAAAAAgQAAAAAAhAAAAAAAFQAAAAAAhAAAAAAAFQAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAFQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAADhAAAAAAAgQAAAAAAhAAAAAAAgQAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAFQAAAAAAhAAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAFQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAgQAAAAAAhAAAAAAAgQAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAFQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,1: + ind: -4,1 + tiles: gwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAA + version: 6 + -4,0: + ind: -4,0 + tiles: XgAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABXgAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAcQAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAACagAAAAAAagAAAAACagAAAAAAagAAAAADXgAAAAACXgAAAAAAXgAAAAAChAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAXgAAAAAChAAAAAAAXgAAAAABXgAAAAABJQAAAAADXgAAAAAAJQAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAXgAAAAABhAAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAADXgAAAAAAXgAAAAAChAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAXgAAAAADhAAAAAAAXgAAAAACXgAAAAAChAAAAAAAXgAAAAABXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcQAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAA + version: 6 + -5,0: + ind: -5,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAADXgAAAAABJQAAAAADXgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADXgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACXgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABhAAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAAChAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAXgAAAAADXgAAAAAAXgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAABXgAAAAADXgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAA + version: 6 + -5,1: + ind: -5,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAACXgAAAAABXgAAAAAChAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAADXgAAAAADXgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -6,0: + ind: -6,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAChAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,-1: + ind: -5,-1 + tiles: hAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAADXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAADJQAAAAAAhAAAAAAAJQAAAAADXgAAAAADAwAAAAACAwAAAAABAwAAAAABXgAAAAAAAwAAAAADAwAAAAACAwAAAAADXgAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAADXgAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAADXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAADAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAACAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAADAwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAABXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAAAJQAAAAACXgAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAACXgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAXgAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAABhAAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAABhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAAD + version: 6 + -4,-1: + ind: -4,-1 + tiles: XgAAAAADhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAABXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAdAAAAAADXgAAAAABhAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAXgAAAAAChAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAJQAAAAAAdAAAAAACdAAAAAACdAAAAAAChAAAAAAAXgAAAAABhAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAJQAAAAACdAAAAAADAgAAAAADdAAAAAABhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAACAgAAAAABdAAAAAAAhAAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAADXgAAAAADXgAAAAABXgAAAAAAhAAAAAAAdAAAAAADAgAAAAABdAAAAAABhAAAAAAAXgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABXgAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACXgAAAAABhAAAAAAAdAAAAAAAdAAAAAABdAAAAAADhAAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAACXgAAAAADXgAAAAABhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAXgAAAAAAGAAAAAAAAwAAAAAAAwAAAAACFgAAAAAAAwAAAAADAwAAAAACFwAAAAAAXgAAAAAAAwAAAAADXgAAAAABJQAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAFwAAAAAAAwAAAAAAAwAAAAABGAAAAAAAAwAAAAADAwAAAAADFgAAAAAAXgAAAAADAwAAAAABXgAAAAADJQAAAAAAXgAAAAABAwAAAAADAwAAAAACAwAAAAADXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAAAJQAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: hAAAAAAADAAAAAAADAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADJQAAAAACDAAAAAAADAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAADAAAAAAADAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAJQAAAAADDAAAAAAADAAAAAAAhAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAADAAAAAAADAAAAAAAhAAAAAAAQgAAAAAAAwAAAAAAQgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAJQAAAAABDAAAAAAADAAAAAAAJQAAAAAAQgAAAAAAAwAAAAAAQgAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADDAAAAAAADAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADXgAAAAABhAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADDAAAAAAADAAAAAAAhAAAAAAAXgAAAAAAAwAAAAACXgAAAAADhAAAAAAAQgAAAAAAAwAAAAAAQgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAADAAAAAAADAAAAAAADAAAAAAAhAAAAAAAXgAAAAACAwAAAAACXgAAAAABhAAAAAAAQgAAAAAAAwAAAAAAQgAAAAAAhAAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAJQAAAAABDAAAAAAADAAAAAAAJQAAAAABXgAAAAAAAwAAAAADXgAAAAAAJQAAAAAAQgAAAAAAAwAAAAAAQgAAAAAAhAAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAAAJQAAAAACDAAAAAAADAAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAAAhAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAhAAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACJQAAAAADhAAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAJQAAAAABXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAAwAAAAABAwAAAAABAwAAAAADXgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADCAAAAAABAwAAAAACAwAAAAABXgAAAAABJQAAAAABXgAAAAABAwAAAAABAwAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAACJQAAAAAAXgAAAAACXgAAAAADXgAAAAAB + version: 6 + 3,0: + ind: 3,0 + tiles: XgAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAABgQAAAAABgQAAAAABgQAAAAACgQAAAAAAgQAAAAAChAAAAAAAHwAAAAACHwAAAAADHwAAAAAAQwAAAAAAXgAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAACgQAAAAADgQAAAAAAgQAAAAADgQAAAAACgQAAAAADhAAAAAAAHwAAAAABHwAAAAABhAAAAAAAQwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAACgQAAAAACgQAAAAACgQAAAAACgQAAAAACgQAAAAADhAAAAAAAHwAAAAADHwAAAAAAhAAAAAAAQwAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAACgQAAAAABgQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAQwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAGQAAAAAAGQAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAGQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADdAAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAdAAAAAACXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: hAAAAAAAJQAAAAAAhAAAAAAAJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAACJQAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAACAwAAAAAAXgAAAAACAwAAAAAAAwAAAAAAXgAAAAADAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAABJQAAAAACXgAAAAABXgAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAAwAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAACJQAAAAACXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAABhAAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAQQAAAAADQQAAAAACQQAAAAABQQAAAAAChAAAAAAAhAAAAAAAhAAAAAAACwAAAAAACwAAAAAACwAAAAAAhAAAAAAACwAAAAAACwAAAAAAJQAAAAADQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAJQAAAAACJQAAAAADhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAPwAAAAAAXgAAAAAAXgAAAAAAPwAAAAAAgQAAAAADQQAAAAAAQQAAAAAAdAAAAAABdAAAAAABdAAAAAAAdAAAAAACQQAAAAAAQQAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAPwAAAAAAXgAAAAAAXgAAAAAAPwAAAAAAhAAAAAAAQQAAAAAAQQAAAAAAdAAAAAABdAAAAAABdAAAAAACdAAAAAAAQQAAAAAAQQAAAAAAHwAAAAABXgAAAAAAXgAAAAAAPwAAAAAAXgAAAAAAXgAAAAAAPwAAAAAAJQAAAAADQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAHwAAAAAAXgAAAAAAXgAAAAAAPwAAAAAAXgAAAAAAXgAAAAAAPwAAAAAAhAAAAAAAdAAAAAABXgAAAAABQQAAAAAAQQAAAAAAJQAAAAADJQAAAAABJQAAAAABJQAAAAAChAAAAAAAXgAAAAAAXgAAAAAAPwAAAAAAXgAAAAAAXgAAAAAAPwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAMQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAPwAAAAAAXgAAAAAAXgAAAAAAPwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAACwAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAQAAAAAAAQAAAAAAhAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAALgAAAAAAhAAAAAAALgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAALgAAAAAALgAAAAAALgAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAALgAAAAAALgAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAALgAAAAAALgAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,1: + ind: 4,1 + tiles: HwAAAAADhAAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADhAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABQwAAAAAAhAAAAAAAQwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAHwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAHwAAAAAChAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAHwAAAAADhAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,0: + ind: 4,0 + tiles: QwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAADCgAAAAAACgAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAABCgAAAAAACgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAABCgAAAAAACgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAADCgAAAAAACgAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAZQAAAAAAhAAAAAAAZQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA + version: 6 + 5,0: + ind: 5,0 + tiles: gwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-1: + ind: 3,-1 + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADHwAAAAABHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAABJQAAAAADXgAAAAACXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAABAwAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAXgAAAAADAwAAAAAAAwAAAAAAJQAAAAAAXgAAAAABAwAAAAAAAwAAAAAAXgAAAAADAwAAAAAAAwAAAAAAXgAAAAAAAwAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAACXgAAAAAAXgAAAAADXgAAAAADJQAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAACwAAAAAAhAAAAAAAXgAAAAADXgAAAAACXgAAAAABhAAAAAAAgQAAAAAAgQAAAAAAgQAAAAACgQAAAAABgQAAAAACgQAAAAACgQAAAAABgQAAAAABgQAAAAADXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAADXgAAAAADXgAAAAAAgQAAAAABgQAAAAADgQAAAAABgQAAAAACgQAAAAADgQAAAAAAgQAAAAADgQAAAAAAgQAAAAACgQAAAAABXgAAAAAAPwAAAAAAhAAAAAAAXgAAAAAAXgAAAAADXgAAAAADhAAAAAAAgQAAAAADgQAAAAAAgQAAAAACgQAAAAACgQAAAAACgQAAAAAAgQAAAAADgQAAAAADgQAAAAAAXgAAAAAAPwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAACgQAAAAAAgQAAAAAAgQAAAAACgQAAAAABgQAAAAADgQAAAAADgQAAAAADgQAAAAADXgAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAADgQAAAAABgQAAAAACgQAAAAAAgQAAAAADgQAAAAABgQAAAAADgQAAAAAAgQAAAAABgQAAAAAAXgAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAADgQAAAAADgQAAAAADgQAAAAADgQAAAAABgQAAAAAAgQAAAAABgQAAAAACgQAAAAAAgQAAAAACgQAAAAADXgAAAAAAPwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAADgQAAAAABgQAAAAADgQAAAAABgQAAAAADgQAAAAADhAAAAAAAhAAAAAAAgQAAAAAAhAAAAAAAXgAAAAAAPwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAABgQAAAAADgQAAAAACgQAAAAACgQAAAAABgQAAAAAAhAAAAAAAgQAAAAACgQAAAAADgQAAAAABXgAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAACgQAAAAACgQAAAAABgQAAAAACgQAAAAACgQAAAAAAgQAAAAAChAAAAAAAgQAAAAAAgQAAAAAAgQAAAAABPwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAADgQAAAAACgQAAAAAAgQAAAAAAgQAAAAADgQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAACgQAAAAACgQAAAAABgQAAAAAAgQAAAAACgQAAAAAAhAAAAAAAHwAAAAABHwAAAAAChAAAAAAAQwAAAAAA + version: 6 + -5,-2: + ind: -5,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAJQAAAAABhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABhAAAAAAACAAAAAAAXgAAAAADXgAAAAABXgAAAAADhAAAAAAAJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA + version: 6 + -4,-2: + ind: -4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAdAAAAAAA + version: 6 + -3,-2: + ind: -3,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAAChAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAhAAAAAAAJQAAAAAAXgAAAAACXgAAAAABXgAAAAAAAwAAAAAAXgAAAAAAXgAAAAABhAAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAAAXgAAAAAAAwAAAAAAXgAAAAAAXgAAAAABhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAhAAAAAAAJQAAAAAAXgAAAAABXgAAAAABXgAAAAAAAwAAAAAAXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAXgAAAAAAAwAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAXgAAAAAAAwAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAXgAAAAAAAwAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAXgAAAAAAAwAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABAwAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAAwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABDAAAAAAADAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAA + version: 6 + -3,-3: + ind: -3,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAQAAAAABAQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAAQAAAAABAQAAAAAAAQAAAAABhAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAQAAAAADAQAAAAACAQAAAAABAQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAFQAAAAAEAQAAAAAChAAAAAAAhAAAAAAAAQAAAAABhAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAhAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAA + version: 6 + -2,-4: + ind: -2,-4 + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAACXgAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAABXgAAAAAChAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAADhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAARQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAABXgAAAAADhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAADhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA + version: 6 + -1,-4: + ind: -1,-4 + tiles: hAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAJQAAAAABXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAADXgAAAAABAwAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAJQAAAAABXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADXgAAAAABAwAAAAADXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAAChAAAAAAAXgAAAAACXgAAAAABXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADAwAAAAABAwAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAADhAAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAAChAAAAAAAXgAAAAADAwAAAAACAwAAAAAAXgAAAAADJQAAAAABJQAAAAAAhAAAAAAAJQAAAAACJQAAAAAAXgAAAAAAhAAAAAAAXgAAAAADAwAAAAACAwAAAAADXgAAAAADJQAAAAABXgAAAAADAwAAAAADAwAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAXgAAAAACXgAAAAABAwAAAAACXgAAAAAAhAAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAABJQAAAAABJQAAAAABhAAAAAAAJQAAAAABJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACAwAAAAABXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAAwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAJQAAAAABXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACAwAAAAADJQAAAAADJQAAAAADhAAAAAAAJQAAAAADJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAABwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADJQAAAAAAJQAAAAADJQAAAAAAhAAAAAAAJQAAAAAAJQAAAAACXgAAAAAChAAAAAAAhAAAAAAABwAAAAAAhAAAAAAACAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAACXgAAAAADXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACAwAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABAwAAAAAA + version: 6 + 0,-4: + ind: 0,-4 + tiles: hAAAAAAAAQAAAAADhAAAAAAAJQAAAAABJQAAAAAAXgAAAAAChAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAQAAAAABJQAAAAADXgAAAAAAAwAAAAAAXgAAAAAAhAAAAAAAXgAAAAABXgAAAAADXgAAAAABhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAAQAAAAADhAAAAAAAXgAAAAADAwAAAAACXgAAAAABhAAAAAAAXgAAAAABXgAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACAwAAAAADXgAAAAAAhAAAAAAAXgAAAAABXgAAAAACXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAADJQAAAAACXgAAAAABXgAAAAAAJQAAAAADhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAABhAAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADJQAAAAAAXgAAAAACXgAAAAAAXgAAAAADAwAAAAADAwAAAAAAAwAAAAABXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAABAwAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAXgAAAAADAwAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAXgAAAAACAwAAAAAAXgAAAAAAhAAAAAAAXgAAAAACXgAAAAAAXgAAAAAChAAAAAAAJQAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAXgAAAAADAwAAAAABXgAAAAADJQAAAAACXgAAAAAAXgAAAAACXgAAAAAChAAAAAAAXgAAAAABXgAAAAACXgAAAAAAhAAAAAAAhAAAAAAAJQAAAAACXgAAAAAChAAAAAAAXgAAAAABXgAAAAAAXgAAAAABhAAAAAAAAQAAAAAAAQAAAAADXgAAAAABJQAAAAAAXgAAAAADXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAhAAAAAAAAQAAAAABAQAAAAACXgAAAAAAhAAAAAAAXgAAAAABXgAAAAACXgAAAAADhAAAAAAAhAAAAAAAXgAAAAACXgAAAAAAhAAAAAAAJQAAAAAChAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAXgAAAAAAXgAAAAACXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA + version: 6 + 2,-3: + ind: 2,-3 + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAABAgAAAAAAdAAAAAABhAAAAAAAJQAAAAAAdAAAAAAAAQAAAAADAQAAAAADAQAAAAABhAAAAAAAhAAAAAAAdAAAAAACdAAAAAADdAAAAAAAdAAAAAADdAAAAAAAdAAAAAADdAAAAAADdAAAAAACdAAAAAABdAAAAAADdAAAAAAAAQAAAAABAQAAAAADAQAAAAADhAAAAAAAhAAAAAAAdAAAAAAAdAAAAAACCwAAAAAACwAAAAAAhAAAAAAAdAAAAAABAgAAAAAAdAAAAAAChAAAAAAAdAAAAAADdAAAAAABdAAAAAACdAAAAAAAdAAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAADAgAAAAAAdAAAAAADhAAAAAAAhAAAAAAAdAAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAhAAAAAAAhAAAAAAAdAAAAAABdAAAAAADCwAAAAAACwAAAAAAhAAAAAAAdAAAAAADAgAAAAAAdAAAAAADhAAAAAAACwAAAAAAAQAAAAABAQAAAAABhAAAAAAAdAAAAAADhAAAAAAAhAAAAAAAdAAAAAACdAAAAAAAdAAAAAAAdAAAAAABhAAAAAAAdAAAAAABdAAAAAACdAAAAAADhAAAAAAACwAAAAAAAQAAAAADAQAAAAADhAAAAAAAdAAAAAADhAAAAAAAhAAAAAAAdAAAAAADdAAAAAAAdAAAAAADCwAAAAAAhAAAAAAAdAAAAAAAAgAAAAAAdAAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAACdAAAAAAAdAAAAAAAdAAAAAABhAAAAAAAdAAAAAAAAgAAAAAAdAAAAAABhAAAAAAAdAAAAAADdAAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAADdAAAAAAAdAAAAAACdAAAAAACdAAAAAADdAAAAAAAAgAAAAAAdAAAAAADdAAAAAAAdAAAAAACdAAAAAADdAAAAAACdAAAAAABdAAAAAADhAAAAAAAhAAAAAAACwAAAAAACwAAAAAACwAAAAAAdAAAAAAAhAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAhAAAAAAAdAAAAAADdAAAAAADCwAAAAAACwAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAACwAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAADdAAAAAADdAAAAAACdAAAAAADdAAAAAACdAAAAAAChAAAAAAAdAAAAAACdAAAAAADdAAAAAABdAAAAAABhAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAdAAAAAABdAAAAAABdAAAAAAAdAAAAAADdAAAAAACdAAAAAADhAAAAAAAdAAAAAACAgAAAAAAdAAAAAADdAAAAAADdAAAAAACdAAAAAAAdAAAAAADdAAAAAADdAAAAAAACwAAAAAACwAAAAAAdAAAAAABdAAAAAABdAAAAAABdAAAAAAChAAAAAAAdAAAAAAAAgAAAAAAdAAAAAACdAAAAAAAhAAAAAAAdAAAAAACdAAAAAACdAAAAAADdAAAAAAChAAAAAAACwAAAAAAhAAAAAAAhAAAAAAAdAAAAAABhAAAAAAAhAAAAAAAdAAAAAADAgAAAAAAdAAAAAADdAAAAAAChAAAAAAAdAAAAAABhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAACwAAAAAAhAAAAAAAdAAAAAABdAAAAAADdAAAAAAAdAAAAAADdAAAAAACdAAAAAAAdAAAAAABdAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: hAAAAAAAhAAAAAAAhAAAAAAAdAAAAAADdAAAAAADdAAAAAACdAAAAAACdAAAAAACdAAAAAABCwAAAAAAdAAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAACdAAAAAABhAAAAAAAdAAAAAABdAAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAgAAAAAAAgAAAAAACwAAAAAAdAAAAAABdAAAAAAChAAAAAAAdAAAAAADCwAAAAAACwAAAAAACwAAAAAAhAAAAAAAJQAAAAAAdAAAAAADCwAAAAAACwAAAAAAhAAAAAAAdAAAAAABdAAAAAACCwAAAAAAdAAAAAACdAAAAAAAhAAAAAAAdAAAAAAAdAAAAAADdAAAAAACdAAAAAABHwAAAAAAdAAAAAACdAAAAAAAdAAAAAAAdAAAAAAChAAAAAAAdAAAAAAAdAAAAAADhAAAAAAAdAAAAAAAdAAAAAAAhAAAAAAAdAAAAAACdAAAAAAAdAAAAAACdAAAAAAAHwAAAAADJQAAAAACdAAAAAAAdAAAAAACdAAAAAABdAAAAAADhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAhAAAAAAAdAAAAAABdAAAAAACdAAAAAABdAAAAAADhAAAAAAAJQAAAAAAdAAAAAABdAAAAAADdAAAAAAAhAAAAAAAdAAAAAAACwAAAAAAdAAAAAAAdAAAAAAAdAAAAAADhAAAAAAAhAAAAAAAHwAAAAADHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAdAAAAAACdAAAAAABhAAAAAAAdAAAAAACdAAAAAABdAAAAAAAdAAAAAADdAAAAAAAdAAAAAABdAAAAAABdAAAAAABdAAAAAADdAAAAAACdAAAAAAChAAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAACdAAAAAACdAAAAAACdAAAAAADdAAAAAADdAAAAAABdAAAAAABdAAAAAABdAAAAAADdAAAAAADdAAAAAAAdAAAAAABhAAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAADhAAAAAAAhAAAAAAAdAAAAAADdAAAAAAAdAAAAAACdAAAAAACdAAAAAABdAAAAAADdAAAAAADdAAAAAABdAAAAAAAhAAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABdAAAAAADhAAAAAAAhAAAAAAAdAAAAAAChAAAAAAAdAAAAAAAdAAAAAABdAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAABdAAAAAAAdAAAAAACdAAAAAAAhAAAAAAAhAAAAAAAdAAAAAADhAAAAAAAhAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAHwAAAAADdAAAAAADdAAAAAADdAAAAAABdAAAAAABhAAAAAAAdAAAAAACdAAAAAACdAAAAAADdAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAhAAAAAAAdAAAAAADdAAAAAADAgAAAAAAdAAAAAADhAAAAAAAdAAAAAAAdAAAAAABdAAAAAAAhAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAdAAAAAAAdAAAAAAAAgAAAAAAdAAAAAAAhAAAAAAACwAAAAAAdAAAAAACdAAAAAADhAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAdAAAAAAAdAAAAAABdAAAAAABdAAAAAABhAAAAAAACwAAAAAAdAAAAAABCwAAAAAAhAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA + version: 6 + 2,-4: + ind: 2,-4 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAADgQAAAAACgQAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAgQAAAAADgQAAAAABgQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAACwAAAAAADgAAAAAACwAAAAAACwAAAAAAhAAAAAAADgAAAAAADgAAAAAAhAAAAAAADgAAAAAADgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAADgAAAAAADgAAAAAACwAAAAAAhAAAAAAADgAAAAAADgAAAAAAhAAAAAAADgAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAADgAAAAAADgAAAAAACwAAAAAAhAAAAAAADgAAAAAADgAAAAAAhAAAAAAADgAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAADgAAAAAADgAAAAAACwAAAAAAhAAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAAdAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACwAAAAAAhAAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAACwAAAAAAhAAAAAAADgAAAAAADgAAAAAACwAAAAAAhAAAAAAAXgAAAAABXgAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAACwAAAAAAhAAAAAAADgAAAAAADgAAAAAACwAAAAAAhAAAAAAAFgAAAAAAEgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAACwAAAAAAhAAAAAAADgAAAAAADgAAAAAACwAAAAAAhAAAAAAAFwAAAAAAFgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAACdAAAAAABdAAAAAACdAAAAAACdAAAAAACdAAAAAAAdAAAAAACdAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAdAAAAAAACwAAAAAACwAAAAAAhAAAAAAAdAAAAAADAgAAAAAAdAAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA + version: 6 + 3,-2: + ind: 3,-2 + tiles: hAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAEwAAAAAAEwAAAAAAhAAAAAAACwAAAAAACwAAAAAACwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAdAAAAAAACwAAAAAACwAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAhAAAAAAAJQAAAAADUgAAAAAAdAAAAAADdAAAAAACdAAAAAACcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAEwAAAAAAEwAAAAAAhAAAAAAACwAAAAAACwAAAAAACwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAdAAAAAAAdAAAAAABdAAAAAACdAAAAAADdAAAAAAAdAAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAAChAAAAAAAhAAAAAAAdAAAAAACdAAAAAACdAAAAAADXgAAAAADJQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAdAAAAAABdAAAAAAAdAAAAAAAhAAAAAAAJQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACwAAAAAACwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAADgAAAAAADgAAAAAADgAAAAAACwAAAAAADgAAAAAADgAAAAAADgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAADgAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAAcAAAAAAAhAAAAAAAhAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAhAAAAAAACwAAAAAADgAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAAXgAAAAACDgAAAAAADgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAAXgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAAXgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAACwAAAAAADgAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAhAAAAAAACwAAAAAACwAAAAAACwAAAAAAhAAAAAAAhAAAAAAAdAAAAAAAhAAAAAAA + version: 6 + 4,-2: + ind: 4,-2 + tiles: hAAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAXgAAAAACXgAAAAAAdAAAAAABdAAAAAABXgAAAAADXgAAAAAChAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAXgAAAAACXgAAAAACdAAAAAADdAAAAAABXgAAAAAACwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAXgAAAAACXgAAAAACdAAAAAAAdAAAAAADXgAAAAADCwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAACwAAAAAAXgAAAAABdAAAAAABdAAAAAAAXgAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAACwAAAAAAhAAAAAAAJQAAAAABHwAAAAAChAAAAAAAJQAAAAADhAAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAhAAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAChAAAAAAADgAAAAAADgAAAAAADgAAAAAAJQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAdAAAAAABdAAAAAADdAAAAAADdAAAAAABXgAAAAAADgAAAAAADgAAAAAADgAAAAAAJQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAdAAAAAADdAAAAAADdAAAAAAAdAAAAAAAdAAAAAAChAAAAAAADgAAAAAADgAAAAAADgAAAAAAJQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADJQAAAAADJQAAAAAChAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAdAAAAAAAdAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAHwAAAAADhAAAAAAAJQAAAAAChAAAAAAAJQAAAAADDgAAAAAADgAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAHwAAAAADHwAAAAADhAAAAAAAJQAAAAAChAAAAAAAJQAAAAACDgAAAAAADgAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAACHwAAAAACHwAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAACHwAAAAADHwAAAAABhAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAHwAAAAAChAAAAAAAHwAAAAABhAAAAAAAhAAAAAAAdAAAAAADhAAAAAAAhAAAAAAADgAAAAAADgAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA + version: 6 + 5,-2: + ind: 5,-2 + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAABhAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAChAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADhAAAAAAAHwAAAAADhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAABHwAAAAABhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAdAAAAAADdAAAAAACdAAAAAAChAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAADdAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-3: + ind: 4,-3 + tiles: XgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAADgAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAADgAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAdAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAADgAAAAAACwAAAAAACwAAAAAADgAAAAAADgAAAAAACwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAACwAAAAAACwAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAACwAAAAAACwAAAAAAhAAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAgwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAUgAAAAAAhAAAAAAADgAAAAAADgAAAAAACwAAAAAAhAAAAAAAHwAAAAADDgAAAAAADgAAAAAADgAAAAAAhAAAAAAAgwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAADgAAAAAADgAAAAAACwAAAAAAhAAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAgwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAUgAAAAAAhAAAAAAADgAAAAAADgAAAAAACwAAAAAAhAAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAACwAAAAAACwAAAAAAhAAAAAAAhAAAAAAACwAAAAAACwAAAAAACwAAAAAAhAAAAAAAJQAAAAADJQAAAAAADgAAAAAAhAAAAAAAJQAAAAADJQAAAAADhAAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAAdAAAAAACDgAAAAAADgAAAAAADgAAAAAAgQAAAAABAQAAAAADAQAAAAADhAAAAAAADgAAAAAADgAAAAAADgAAAAAAXgAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAAQAAAAABAQAAAAABDgAAAAAAhAAAAAAAAQAAAAAAAQAAAAAChAAAAAAACwAAAAAACwAAAAAADgAAAAAAhAAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAAQAAAAACAQAAAAADDgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAACwAAAAAADgAAAAAAhAAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAAQAAAAAAAQAAAAABDgAAAAAACwAAAAAADgAAAAAADgAAAAAAhAAAAAAACwAAAAAACwAAAAAADgAAAAAAhAAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAACwAAAAAADgAAAAAAhAAAAAAA + version: 6 + 3,-3: + ind: 3,-3 + tiles: cAAAAAAAhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAhAAAAAAACwAAAAAAEQAAAAAAhAAAAAAADgAAAAAAHwAAAAAChAAAAAAADgAAAAAADgAAAAAAXgAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEQAAAAAAEQAAAAAAhAAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAEQAAAAAAhAAAAAAAhAAAAAAADgAAAAAAhAAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAACwAAAAAACwAAAAAAhAAAAAAAhAAAAAAADgAAAAAAhAAAAAAAgQAAAAAAggAAAAAAggAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAhAAAAAAACwAAAAAAEQAAAAAAEQAAAAAADgAAAAAAhAAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAdAAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAADgAAAAAAJQAAAAAADwAAAAAADwAAAAAAhAAAAAAADwAAAAAADwAAAAAADgAAAAAADgAAAAAADgAAAAAACwAAAAAAhAAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADDgAAAAAADwAAAAAADwAAAAAAdAAAAAABEQAAAAAADwAAAAAAhAAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAACwAAAAAAhAAAAAAAEQAAAAAAhAAAAAAAhAAAAAAACwAAAAAACwAAAAAACwAAAAAAhAAAAAAACwAAAAAAhAAAAAAAcAAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAACwAAAAAAhAAAAAAACwAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAdAAAAAABhAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAACwAAAAAACwAAAAAAhAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAADgAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAXgAAAAAChAAAAAAAUgAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAXgAAAAADhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA + version: 6 + 4,-4: + ind: 4,-4 + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAXgAAAAADXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABXgAAAAADXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAADXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADXgAAAAABXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAABhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAADXgAAAAADXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABCwAAAAAACwAAAAAACwAAAAAAXgAAAAACXgAAAAADhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAXgAAAAABXgAAAAAACwAAAAAACwAAAAAACwAAAAAAXgAAAAADXgAAAAADhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADgAAAAAACwAAAAAACwAAAAAACwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA + version: 6 + 5,-3: + ind: 5,-3 + tiles: DgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAACgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAADgAAAAAADgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAAChAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAAhAAAAAAAJQAAAAACXgAAAAACXgAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAACwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + version: 6 + 5,-4: + ind: 5,-4 + tiles: hAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-4: + ind: 3,-4 + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAACwAAAAAAhAAAAAAADgAAAAAADgAAAAAACwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAACwAAAAAACwAAAAAAJQAAAAABDgAAAAAADgAAAAAADgAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAACwAAAAAAhAAAAAAADgAAAAAADgAAAAAACwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAACwAAAAAADgAAAAAAhAAAAAAAhAAAAAAACwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAACwAAAAAACwAAAAAAhAAAAAAAhAAAAAAADwAAAAAACwAAAAAAJQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAhAAAAAAACwAAAAAAhAAAAAAAhAAAAAAADwAAAAAACwAAAAAAhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAADgAAAAAADwAAAAAADwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAACwAAAAAADgAAAAAADwAAAAAADgAAAAAAHwAAAAAAhAAAAAAAXgAAAAAAXgAAAAAADgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAACwAAAAAACwAAAAAADgAAAAAADgAAAAAADgAAAAAAHwAAAAAAJQAAAAADDgAAAAAAXgAAAAAAXgAAAAAA + version: 6 + 4,-1: + ind: 4,-1 + tiles: XgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAADXgAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAADXgAAAAABJQAAAAABXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAADXgAAAAADAwAAAAAAXgAAAAADAwAAAAAAAwAAAAAAXgAAAAACAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAAAJQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAABXgAAAAADJQAAAAADXgAAAAABXgAAAAACXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAAChAAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAADhAAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAABhAAAAAAAhAAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAABhAAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAADhAAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAAChAAAAAAAhAAAAAAAHwAAAAACXgAAAAABXgAAAAADHwAAAAACHwAAAAADHwAAAAACXgAAAAAAXgAAAAAAHwAAAAADhAAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAAAhAAAAAAAhAAAAAAAHwAAAAADXgAAAAAAXgAAAAADHwAAAAACHwAAAAAAHwAAAAAAXgAAAAABXgAAAAAAHwAAAAAAhAAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAhAAAAAAAHwAAAAAAXgAAAAADXgAAAAADHwAAAAACHwAAAAABHwAAAAAAXgAAAAABXgAAAAACHwAAAAAChAAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAAChAAAAAAAHwAAAAABXgAAAAAAXgAAAAADHwAAAAAAHwAAAAADHwAAAAAAXgAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAACagAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAXgAAAAADXgAAAAAAHwAAAAADHwAAAAABHwAAAAAAXgAAAAADXgAAAAAAHwAAAAADHwAAAAADhAAAAAAAggAAAAACgQAAAAABgQAAAAAAhAAAAAAAhAAAAAAAHwAAAAADXgAAAAABXgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABXgAAAAABXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAggAAAAABgQAAAAAAgQAAAAAAagAAAAAAhAAAAAAAhAAAAAAAHwAAAAADhAAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAAChAAAAAAAggAAAAAAggAAAAABgQAAAAAChAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAhAAAAAAAHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA + version: 6 + 5,-1: + ind: 5,-1 + tiles: hAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAADXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAACXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAADXgAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAAAXgAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABXgAAAAACXgAAAAADhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAACXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAABXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAADXgAAAAADXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAACXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABXgAAAAADXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-5: + ind: 4,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAA + version: 6 + 5,-5: + ind: 5,-5 + tiles: AAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-5: + ind: 3,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAA + version: 6 + 2,-5: + ind: 2,-5 + tiles: AAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAQwAAAAAAhAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAhAAAAAAAQwAAAAAAhAAAAAAAQwAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA + version: 6 + 1,-5: + ind: 1,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAA + version: 6 + 1,-4: + ind: 1,-4 + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAgwAAAAAAhAAAAAAA + version: 6 + -1,-5: + ind: -1,-5 + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAJQAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAADagAAAAABagAAAAABgwAAAAAAJQAAAAAChAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAXgAAAAACJQAAAAACXgAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAACagAAAAADagAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAADhAAAAAAAXgAAAAAAXgAAAAADXgAAAAADJQAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAagAAAAACagAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAChAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAABXgAAAAABJQAAAAAChAAAAAAAJQAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAABXgAAAAAAJQAAAAADhAAAAAAAJQAAAAAChAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAAChAAAAAAAXgAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAADJQAAAAADXgAAAAADXgAAAAACXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAACXgAAAAAAXgAAAAAB + version: 6 + -2,-5: + ind: -2,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAADEAAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAADhAAAAAAAEAAAAAABhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAABhAAAAAAAhAAAAAAAJQAAAAAAhAAAAAAAXgAAAAAAXgAAAAABhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAAAAwAAAAACAwAAAAABAwAAAAABXgAAAAABhAAAAAAAXgAAAAACXgAAAAAAhAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABJQAAAAABXgAAAAADXgAAAAABJQAAAAACXgAAAAABXgAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAJQAAAAABhAAAAAAAXgAAAAADhAAAAAAAXgAAAAACXgAAAAAChAAAAAAAXgAAAAAAXgAAAAABhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAJQAAAAABhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAJQAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAACXgAAAAADhAAAAAAAAAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAA + version: 6 + -3,-4: + ind: -3,-4 + tiles: AAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAARQAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAARQAAAAAARQAAAAAARQAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAA + version: 6 + -3,-5: + ind: -3,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAEAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAEAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAA + version: 6 + 0,-5: + ind: 0,-5 + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAagAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAAAJQAAAAADXgAAAAABhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAagAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAABJQAAAAAAXgAAAAADXgAAAAAAXgAAAAABJQAAAAADhAAAAAAAhAAAAAAAJQAAAAACgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAABXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAagAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAABXgAAAAADXgAAAAADXgAAAAAChAAAAAAAXgAAAAABXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADhAAAAAAAXgAAAAABXgAAAAAAXgAAAAABhAAAAAAAhAAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAADJQAAAAACXgAAAAADAwAAAAACXgAAAAABhAAAAAAAhAAAAAAAXgAAAAAChAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAABhAAAAAAAXgAAAAAAAwAAAAACXgAAAAADhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAhAAAAAAAXgAAAAADXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAADXgAAAAACXgAAAAADhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAABhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAhAAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAADhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAXgAAAAADXgAAAAABXgAAAAABhAAAAAAAhAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAhAAAAAAA + version: 6 + 0,-6: + ind: 0,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-6: + ind: -1,-6 + tiles: AAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA + version: 6 + 1,-6: + ind: 1,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAHwAAAAADhAAAAAAAEwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADHwAAAAACHwAAAAAChAAAAAAAHwAAAAAAHwAAAAABHwAAAAAChAAAAAAAHwAAAAADgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADHwAAAAAAHwAAAAAChAAAAAAAHwAAAAAAHwAAAAADHwAAAAAChAAAAAAAHwAAAAADgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAADAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAHwAAAAABHwAAAAAAHwAAAAAAhAAAAAAAHwAAAAADHwAAAAAAHwAAAAADhAAAAAAAHwAAAAABAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADHwAAAAABHwAAAAAChAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAAChAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAHwAAAAABQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAAChAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAHwAAAAACQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAHwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAHwAAAAACHwAAAAABHwAAAAABhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAcAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAA + version: 6 + 2,-6: + ind: 2,-6 + tiles: hAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAAChAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAAChAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAADhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAChAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-7: + ind: 2,-7 + tiles: hAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-8: + ind: 2,-8 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-7: + ind: 1,-7 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAHwAAAAADhAAAAAAAEwAAAAAAhAAAAAAAHwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAHwAAAAABEwAAAAAAEwAAAAAAEwAAAAAAHwAAAAACEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAACEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAEwAAAAAAHwAAAAACHwAAAAAAHwAAAAABEwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAAChAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAABhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAHwAAAAABhAAAAAAAEwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAHwAAAAAChAAAAAAAEwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAHwAAAAABhAAAAAAAEwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAHwAAAAAChAAAAAAAEwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAHwAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAHwAAAAADhAAAAAAAEwAAAAAAhAAAAAAA + version: 6 + 1,-8: + ind: 1,-8 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAHwAAAAACEwAAAAAAEwAAAAAAEwAAAAAAHwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAHwAAAAAAhAAAAAAAEwAAAAAAhAAAAAAAHwAAAAABEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAEwAAAAAAHwAAAAADHwAAAAAChAAAAAAAhAAAAAAAhAAAAAAAHwAAAAADHwAAAAAD + version: 6 + -2,-6: + ind: -2,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,-4: + ind: -4,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,-5: + ind: -4,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAhAAAAAAA + version: 6 + -4,-3: + ind: -4,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,2: + ind: -4,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,2: + ind: -3,2 + tiles: hAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: XgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAJQAAAAABXgAAAAADAwAAAAAAAwAAAAAAXgAAAAACXgAAAAACXgAAAAADhAAAAAAAJQAAAAAAhAAAAAAAJQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAXgAAAAADXgAAAAABXgAAAAADhAAAAAAAXgAAAAACXgAAAAABXgAAAAAAFQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAAAXgAAAAABJQAAAAAAXgAAAAADAwAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAdAAAAAAAdAAAAAAAhAAAAAAAXgAAAAADXgAAAAAAXgAAAAADhAAAAAAAXgAAAAAAXgAAAAACXgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAdAAAAAAAdAAAAAAAhAAAAAAAXgAAAAACXgAAAAACXgAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAXgAAAAAAXgAAAAAAhAAAAAAAdAAAAAAAdAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: gwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: AAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,3: + ind: -2,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,-6: + ind: 5,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-6: + ind: 4,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-7: + ind: -1,-7 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAA + version: 6 + 0,-7: + ind: 0,-7 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -6,-1: + ind: -6,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAADhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 6,-3: + ind: 6,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 7,-3: + ind: 7,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAJQAAAAABhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAUgAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAJQAAAAAChAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAJQAAAAADhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -6,-2: + ind: -6,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAgwAAAAAAgwAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: BecomesStation + id: WhiteBoxStation + - type: MaterialStorage + storage: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#334E6D99' + id: Bot + decals: + 7228: 9,-19 + 7229: 8,-19 + 9674: -16,-51 + 9675: -15,-51 + - node: + color: '#334E6D9B' + id: Bot + decals: + 7129: -12,-28 + - node: + color: '#3EB3889B' + id: Bot + decals: + 9421: 7,-44 + - node: + color: '#52B4E996' + id: Bot + decals: + 9676: -16,-53 + 9677: -15,-53 + - node: + color: '#8C347F9B' + id: Bot + decals: + 3467: -53,-8 + 3468: -53,-9 + - node: + color: '#9FED5896' + id: Bot + decals: + 9678: -16,-55 + 9679: -15,-55 + - node: + color: '#9FED5899' + id: Bot + decals: + 3249: -48,-6 + 3250: -48,-5 + 3251: -48,-8 + 3252: -48,-9 + - node: + color: '#A4610699' + id: Bot + decals: + 10170: -25,-24 + 10216: -23,-22 + - node: + color: '#A461069B' + id: Bot + decals: + 9997: -31,-30 + 9998: -32,-30 + 10569: -24,-37 + 10570: -24,-38 + - node: + color: '#A46106B4' + id: Bot + decals: + 9686: -12,-55 + 9687: -13,-55 + - node: + color: '#D381C996' + id: Bot + decals: + 9684: -12,-53 + 9685: -13,-53 + - node: + color: '#D4D4D496' + id: Bot + decals: + 9688: -12,-57 + 9689: -13,-57 + - node: + color: '#DE3A3A96' + id: Bot + decals: + 9682: -12,-51 + 9683: -13,-51 + - node: + color: '#DE3A3A99' + id: Bot + decals: + 2880: -60,3 + 2881: -58,3 + 5571: -15,29 + 5647: -12,32 + 5648: 3,30 + 5694: 4,35 + 5695: 3,35 + 5696: 1,37 + 5697: 1,30 + 5698: 0,30 + 6545: -4,17 + - node: + color: '#DE3A3A9B' + id: Bot + decals: + 5506: 2,24 + 5747: 10,37 + 5748: 10,38 + 10471: -23,-30 + 10607: -16,39 + - node: + color: '#EFB34196' + id: Bot + decals: + 9680: -16,-57 + 9681: -15,-57 + - node: + color: '#EFB34199' + id: Bot + decals: + 8712: 4,-64 + 8713: 3,-64 + - node: + color: '#EFB3419B' + id: Bot + decals: + 9720: -6,-38 + 9721: -7,-38 + 9722: -8,-38 + 9723: -9,-38 + 9724: -6,-36 + 9725: -7,-36 + 9726: -8,-36 + 9727: -9,-36 + 9728: -14,-38 + 9729: -14,-37 + 9730: -14,-36 + - node: + color: '#EFB341B3' + id: Bot + decals: + 503: 39,11 + 504: 39,12 + - node: + color: '#F9FFFE99' + id: Bot + decals: + 7404: 13,27 + 7405: 13,28 + - node: + color: '#F9FFFE9B' + id: Bot + decals: + 8266: 16,6 + 8267: 18,6 + 10835: -25,41 + - node: + color: '#FA7500B2' + id: Bot + decals: + 2066: 22,-17 + 2067: 21,-17 + 2068: 22,-21 + 2069: 21,-21 + 2070: 18,-18 + 2071: 18,-17 + - node: + color: '#FA7500B3' + id: Bot + decals: + 2095: 18,-21 + 2096: 18,-22 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 1084: 69,-20 + 1085: 69,-21 + 1086: 71,-20 + 1087: 71,-21 + - node: + color: '#52B4E999' + id: BotGreyscale + decals: + 184: 41,-32 + - node: + color: '#52B4E9B2' + id: BotGreyscale + decals: + 92: 37,-44 + 93: 36,-44 + 224: 28,-33 + 293: 24,-23 + 294: 18,-25 + 300: 18,-25 + 909: 37,-42 + 1708: 43,-27 + 1709: 43,-28 + 1710: 46,-30 + 1711: 45,-30 + 1712: 43,-30 + 1755: 41,-17 + 1756: 41,-18 + 1757: 41,-19 + 1758: 43,-17 + 1759: 43,-18 + 1760: 43,-19 + 1761: 45,-17 + 1762: 45,-18 + 1763: 45,-19 + 1764: 47,-19 + 1765: 47,-18 + 1766: 47,-17 + 1767: 43,-21 + 1768: 42,-21 + 1769: 41,-21 + 1809: 37,-17 + 1973: 46,-39 + 1986: 18,-33 + 1987: 19,-37 + 1988: 18,-37 + 1989: 21,-37 + 1990: 22,-37 + - node: + color: '#52B4E9B3' + id: BotGreyscale + decals: + 211: 33,-33 + 247: 27,-31 + 248: 24,-30 + 249: 24,-28 + 341: 28,-22 + 1692: 39,-30 + 1693: 41,-30 + 1694: 40,-30 + 1800: 39,-17 + 2002: 43,-48 + - node: + color: '#D381C9B2' + id: BotGreyscale + decals: + 977: 60,-37 + 978: 61,-37 + 979: 61,-38 + 980: 60,-38 + 985: 63,-34 + 1030: 69,-28 + 1169: 59,-17 + 1170: 58,-17 + 1171: 57,-17 + 1179: 61,-18 + 1180: 63,-18 + 1188: 57,-21 + 1189: 57,-22 + 1204: 55,-25 + 1205: 51,-23 + 1206: 51,-24 + 1354: 76,-27 + 1355: 79,-27 + 1362: 81,-24 + 1363: 80,-24 + 1435: 71,-44 + 1443: 76,-34 + 1444: 76,-35 + 1445: 77,-35 + 1446: 77,-34 + 1519: 54,-39 + 1520: 51,-41 + 1521: 52,-42 + 1541: 61,-42 + 1578: 72,-44 + 1593: 84,-36 + 1661: 72,-50 + 1662: 72,-51 + 1675: 65,-52 + 1676: 65,-51 + - node: + color: '#D381C9B3' + id: BotGreyscale + decals: + 955: 70,-38 + 956: 69,-38 + - node: + color: '#D381C9CC' + id: BotGreyscale + decals: + 1178: 56,-25 + - node: + angle: 4.71238898038469 rad + color: '#D69949B2' + id: BotGreyscale + decals: + 12630: 82,-6 + 12631: 82,-4 + 12632: 82,-12 + 12633: 82,-14 + - node: + color: '#DE3A3A99' + id: BotGreyscale + decals: + 6189: 17,35 + 6190: 18,35 + 6191: 19,35 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 776: 40,0 + 777: 39,0 + 778: 40,-2 + 779: 40,-3 + 820: 10,-23 + 1882: 38,-5 + 1883: 37,-5 + - node: + color: '#334E6D99' + id: BotLeft + decals: + 3907: -9,2 + - node: + color: '#DE3A3A99' + id: BotLeft + decals: + 5692: 3,38 + 5693: 4,39 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 54: 55,-32 + - node: + color: '#D381C9B2' + id: BotLeftGreyscale + decals: + 981: 62,-37 + 982: 59,-38 + 1439: 77,-33 + 1440: 76,-36 + 1657: 73,-50 + 1658: 71,-51 + - node: + color: '#DE3A3A99' + id: BotRight + decals: + 5690: 3,39 + 5691: 4,38 + - node: + angle: 1.5707963267948966 rad + color: '#DE3A3AB3' + id: BotRight + decals: + 1958: 4,39 + - node: + color: '#D381C9B2' + id: BotRightGreyscale + decals: + 983: 59,-37 + 984: 62,-38 + 1441: 77,-36 + 1442: 76,-33 + 1659: 73,-51 + 1660: 71,-50 + - node: + color: '#334E6D99' + id: Box + decals: + 3900: -9,1 + 3901: -9,3 + 3902: -9,4 + 3903: -15,4 + 3904: -15,3 + 3905: -15,2 + 3906: -15,1 + - node: + color: '#D381C9B2' + id: Box + decals: + 1555: 52,-35 + 1556: 61,-52 + 1557: 53,-48 + 1558: 53,-44 + - node: + color: '#D381C9CC' + id: Box + decals: + 1598: 85,-39 + - node: + color: '#DE3A3A99' + id: Box + decals: + 5699: 1,39 + 5700: 1,38 + - node: + angle: 1.5707963267948966 rad + color: '#DE3A3A9B' + id: Box + decals: + 2866: -59,1 + - node: + color: '#DE3A3AB3' + id: Box + decals: + 525: -2,33 + 526: -3,33 + - node: + angle: -1.5707963267948966 rad + color: '#EFB3419B' + id: Box + decals: + 4486: -14,-27 + - node: + color: '#EFB341B2' + id: Box + decals: + 2373: -25,-67 + 2374: -25,-68 + 2375: -25,-69 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 1599: 116,-36 + 1600: 119,-39 + - node: + color: '#0E7F1BFF' + id: BoxGreyscale + decals: + 471: 23.500326,12.499834 + - node: + color: '#1861D5FF' + id: BoxGreyscale + decals: + 470: 21.500326,12.499834 + - node: + color: '#334E6D99' + id: BoxGreyscale + decals: + 6937: -4,-11 + 6938: -5,-15 + 6939: 3,-15 + 6940: 2,-11 + 7133: -10,-22 + - node: + color: '#334E6DB2' + id: BoxGreyscale + decals: + 814: 6,-22 + 815: 6,-23 + - node: + color: '#334E6DB3' + id: BoxGreyscale + decals: + 2221: -23,1 + 2222: -24,1 + - node: + color: '#52B4E999' + id: BoxGreyscale + decals: + 106: 37,-49 + 107: 36,-49 + 108: 37,-46 + 109: 36,-46 + - node: + color: '#52B4E9B2' + id: BoxGreyscale + decals: + 91: 34,-39 + 221: 35,-39 + 222: 36,-39 + 295: 33,-26 + 1808: 37,-18 + 2021: 43,-43 + 2022: 43,-44 + - node: + color: '#52B4E9B3' + id: BoxGreyscale + decals: + 389: 26,-36 + 390: 26,-37 + 432: 45,-37 + 433: 44,-37 + 1968: 45,-39 + 1969: 47,-39 + - node: + color: '#52B4E9CD' + id: BoxGreyscale + decals: + 430: 47,-37 + 431: 46,-37 + - node: + color: '#80C71F99' + id: BoxGreyscale + decals: + 11105: -3,48 + 11106: -3,47 + 11107: -1,48 + 11108: -1,47 + 11109: 1,48 + 11110: 1,47 + 11111: 3,48 + 11112: 3,47 + - node: + color: '#80C71FB2' + id: BoxGreyscale + decals: + 842: 37,-54 + 843: 37,-52 + 844: 38,-58 + 845: 41,-59 + 846: 41,-60 + 847: 41,-61 + 848: 40,-61 + 849: 47,-56 + 850: 41,-54 + 851: 41,-53 + 852: 41,-52 + - node: + color: '#951710FF' + id: BoxGreyscale + decals: + 472: 21.500326,10.515459 + - node: + color: '#D381C9B2' + id: BoxGreyscale + decals: + 928: 59,-31 + 929: 62,-32 + 930: 63,-32 + 963: 74,-38 + 964: 73,-38 + 973: 59,-34 + 974: 60,-34 + 975: 61,-34 + 976: 62,-34 + 1031: 74,-27 + 1032: 74,-28 + 1033: 74,-29 + 1034: 74,-30 + 1207: 55,-23 + 1538: 61,-40 + 1539: 60,-40 + 1540: 59,-40 + 1561: 59,-58 + 1591: 86,-35 + 1642: 72,-55 + 1643: 72,-57 + 1644: 72,-58 + - node: + color: '#D58C18FF' + id: BoxGreyscale + decals: + 473: 23.484701,10.484209 + - node: + color: '#DE3A3A99' + id: BoxGreyscale + decals: + 6437: 12,41 + - node: + color: '#DE3A3A9B' + id: BoxGreyscale + decals: + 5940: -20,27 + 5941: -20,26 + 5942: -20,23 + 5943: -20,22 + - node: + color: '#EFB34199' + id: BoxGreyscale + decals: + 6810: -6,-10 + 7658: 27,8 + 8714: 5,-60 + - node: + color: '#EFB3419B' + id: BoxGreyscale + decals: + 8823: -15,-72 + 8824: -15,-73 + 8825: -13,-72 + 8826: -13,-73 + - node: + color: '#FFFFFFFF' + id: BoxGreyscale + decals: + 780: 35,-3 + 825: 35,0 + 1878: 40,-5 + 1879: 39,-5 + 1880: 40,-10 + 1881: 39,-10 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 474: 23,-1 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 479: 20,-1 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 475: 23,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 478: 20,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 480: 21,-1 + 481: 22,-1 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 476: 22,-2 + 477: 21,-2 + - node: + color: '#FFFFFFCC' + id: BrickTileSteelCornerNe + decals: + 652: 40,-12 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 498: 40,13 + 827: -33,-5 + 1677: 45,-54 + 2688: -64,10 + 2704: -54,1 + 3231: -42,-5 + 3340: -20,-1 + 3996: 2,1 + 4029: 12,-1 + 4030: 9,1 + 4217: -16,-1 + 4402: -16,-22 + 4413: -11,-30 + 4563: 7,-30 + 4704: 16,-25 + 4757: 16,-12 + 4908: 16,-1 + 5122: 10,21 + 6612: -17,20 + 7412: 18,21 + 7434: 18,28 + 7527: 9,15 + 7556: 17,12 + 7629: 27,15 + 7815: 26,6 + 7825: 27,3 + 7929: 31,-10 + 7968: 27,-1 + 7973: 27,-5 + 7985: 21,-7 + 8310: 0,-34 + 8324: 1,-41 + 8429: 0,-53 + 10836: -12,53 + 11007: -5,52 + 11274: 31,-4 + 11445: -42,-10 + 11448: -38,-5 + - node: + color: '#FFFFFFCC' + id: BrickTileSteelCornerNw + decals: + 651: 33,-12 + 668: 51,-9 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 497: 39,13 + 1844: 33,-5 + 1894: -36,-5 + 2597: -79,-4 + 2598: -66,-8 + 2626: -77,-14 + 2675: -79,10 + 3202: -52,-1 + 3230: -44,-5 + 3982: -14,-1 + 3990: -4,1 + 4031: 7,1 + 4216: -18,-1 + 4229: -19,-12 + 4401: -18,-22 + 4550: -9,-30 + 4695: 9,-30 + 4703: 14,-25 + 4758: 14,-12 + 4907: 14,-1 + 5088: -15,20 + 5093: -11,21 + 6610: -20,20 + 7406: 12,21 + 7435: 15,28 + 7528: 8,15 + 7650: 19,15 + 7816: 24,6 + 7967: 25,-1 + 7996: 18,-7 + 8311: -2,-34 + 8427: -2,-53 + 10837: -13,53 + 10843: -16,49 + 11001: -10,50 + 11004: -7,52 + 11275: 29,-4 + 11446: -44,-10 + 11447: -40,-5 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 501: 40,10 + 829: -33,-7 + 2612: -64,-16 + 2618: -71,-17 + 2711: -54,-6 + 3235: -42,-9 + 3341: -20,-3 + 3342: -21,-4 + 4027: 12,-3 + 4238: -16,-20 + 4414: -11,-32 + 4564: 7,-33 + 4769: 16,-23 + 4918: 16,-10 + 5010: 0,3 + 5123: 10,19 + 7413: 18,20 + 7415: 16,19 + 7445: 18,23 + 7541: 9,3 + 7550: 14,8 + 7551: 17,9 + 7824: 27,2 + 7930: 31,-11 + 7947: 21,-5 + 7972: 27,-3 + 7989: 21,-11 + 8327: 1,-47 + 8332: 0,-51 + 8437: -1,-60 + 10849: -12,47 + 11013: -5,47 + 11277: 31,-8 + 11449: -42,-13 + 11453: -38,-9 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 502: 39,10 + 1857: 33,-10 + 1897: -36,-7 + 2596: -79,-6 + 2599: -66,-12 + 2619: -74,-17 + 2625: -77,-16 + 2674: -79,8 + 3227: -52,-3 + 3236: -44,-9 + 3343: -29,-4 + 4000: -14,-3 + 4230: -19,-14 + 4237: -18,-20 + 4422: -18,-32 + 4568: 2,-33 + 4569: -9,-32 + 4707: 9,-32 + 4712: 14,-33 + 4770: 14,-23 + 5009: -2,3 + 5087: -15,19 + 6607: -20,16 + 7432: 12,19 + 7438: 15,27 + 7439: 16,23 + 7540: 8,3 + 7642: 20,8 + 7643: 19,9 + 7821: 24,2 + 7936: 25,-11 + 7951: 18,-5 + 7990: 18,-11 + 8333: -2,-51 + 8440: -4,-60 + 10844: -16,47 + 11014: -10,47 + 11276: 29,-8 + 11450: -44,-13 + 11454: -40,-9 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndN + decals: + 7955: 18,-1 + - node: + color: '#FFFFFFCC' + id: BrickTileSteelInnerNe + decals: + 654: 40,-13 + 663: 39,-12 + 673: 53,-13 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNe + decals: + 2701: -64,1 + 4039: 2,-1 + 4041: 9,-1 + 4118: -5,-3 + 4265: -16,-8 + 7565: 9,12 + 7828: 26,3 + 7964: 18,-4 + 7975: 26,-5 + 7984: 27,-10 + 8433: 0,-56 + - node: + color: '#FFFFFFCC' + id: BrickTileSteelInnerNw + decals: + 653: 33,-13 + 662: 34,-12 + 664: 51,-13 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNw + decals: + 2640: -65,-14 + 2641: -65,-8 + 2793: -65,-4 + 3998: -4,-1 + 4040: 7,-1 + 4117: 3,-3 + 4706: 14,-30 + 4924: 14,-8 + 5094: -11,20 + 7969: 25,-4 + 8444: -2,-56 + 10855: -13,49 + 11006: -7,50 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSe + decals: + 2624: -71,-16 + 2721: -64,-6 + 3350: -21,-3 + 4119: -5,-1 + 5133: 0,19 + 7419: 16,20 + 7566: 9,8 + 7567: 14,9 + 7948: 21,-4 + 7976: 26,-3 + 8328: 0,-47 + 8445: -1,-58 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSw + decals: + 2623: -74,-16 + 2639: -65,-12 + 2643: -65,-6 + 2697: -65,8 + 3357: -29,-3 + 4120: 3,-1 + 4581: 2,-32 + 4713: 14,-32 + 5134: -2,19 + 7443: 16,27 + 7644: 20,9 + 7943: 25,-4 + - node: + color: '#FFFFFFCC' + id: BrickTileSteelLineE + decals: + 641: 9,2 + 670: 53,-11 + 671: 53,-12 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 499: 40,12 + 500: 40,11 + 828: -33,-6 + 1848: 40,-6 + 1849: 40,-7 + 1850: 40,-8 + 1851: 40,-9 + 2474: 22,4 + 2497: 26,-4 + 2603: -64,-7 + 2604: -64,-8 + 2605: -64,-9 + 2606: -64,-10 + 2607: -64,-11 + 2608: -64,-12 + 2609: -64,-13 + 2610: -64,-14 + 2611: -64,-15 + 2689: -64,9 + 2690: -64,8 + 2691: -64,7 + 2692: -64,6 + 2693: -64,5 + 2694: -64,4 + 2695: -64,3 + 2696: -64,2 + 2705: -54,0 + 2706: -54,-1 + 2707: -54,-2 + 2708: -54,-3 + 2709: -54,-4 + 2710: -54,-5 + 3232: -42,-6 + 3233: -42,-7 + 3234: -42,-8 + 3358: -20,-2 + 3997: 2,0 + 4028: 12,-2 + 4033: 9,0 + 4116: -5,-2 + 4240: -16,-19 + 4241: -16,-18 + 4242: -16,-18 + 4243: -16,-17 + 4244: -16,-16 + 4245: -16,-15 + 4246: -16,-15 + 4247: -16,-15 + 4248: -16,-14 + 4249: -16,-13 + 4250: -16,-13 + 4251: -16,-12 + 4252: -16,-12 + 4253: -16,-11 + 4260: -16,-7 + 4261: -16,-6 + 4262: -16,-5 + 4263: -16,-4 + 4264: -16,-3 + 4403: -16,-24 + 4404: -16,-25 + 4405: -16,-26 + 4406: -16,-27 + 4407: -16,-28 + 4408: -16,-29 + 4415: -11,-31 + 4565: 7,-32 + 4566: 7,-31 + 4715: 16,-32 + 4716: 16,-31 + 4717: 16,-30 + 4718: 16,-26 + 4759: 16,-13 + 4760: 16,-14 + 4761: 16,-15 + 4762: 16,-16 + 4763: 16,-17 + 4764: 16,-18 + 4765: 16,-19 + 4766: 16,-20 + 4767: 16,-21 + 4768: 16,-22 + 4910: 16,-2 + 4911: 16,-3 + 4912: 16,-4 + 4913: 16,-5 + 4914: 16,-6 + 4915: 16,-7 + 4916: 16,-8 + 4917: 16,-9 + 5037: 0,4 + 5038: 0,5 + 5039: 0,6 + 5040: 0,6 + 5041: 0,7 + 5042: 0,7 + 5043: 0,8 + 5044: 0,9 + 5045: 0,9 + 5046: 0,9 + 5047: 0,11 + 5048: 0,11 + 5049: 0,12 + 5050: 0,13 + 5051: 0,13 + 5052: 0,14 + 5053: 0,14 + 5054: 0,15 + 5055: 0,15 + 5056: 0,16 + 5057: 0,16 + 5058: 0,17 + 5059: 0,17 + 5060: 0,18 + 5124: 10,20 + 5377: 0,10 + 6485: -16,-2 + 7446: 18,24 + 7447: 18,25 + 7448: 18,26 + 7449: 18,27 + 7542: 9,4 + 7543: 9,5 + 7544: 9,6 + 7545: 9,7 + 7554: 17,10 + 7555: 17,11 + 7563: 9,13 + 7564: 9,14 + 7630: 27,14 + 7631: 27,13 + 7632: 27,11 + 7633: 27,10 + 7634: 27,9 + 7635: 27,12 + 7826: 26,4 + 7827: 26,5 + 7956: 18,-2 + 7957: 18,-3 + 7971: 27,-2 + 7974: 26,-4 + 7977: 27,-6 + 7978: 27,-7 + 7979: 27,-8 + 7980: 27,-9 + 7986: 21,-8 + 7987: 21,-9 + 7988: 21,-10 + 8315: 0,-35 + 8316: 0,-36 + 8317: 0,-37 + 8318: 0,-38 + 8319: 0,-38 + 8320: 0,-39 + 8321: 0,-40 + 8325: 1,-42 + 8326: 1,-43 + 8329: 0,-48 + 8330: 0,-49 + 8331: 0,-50 + 8430: 0,-54 + 8431: 0,-55 + 8436: -1,-59 + 10850: -12,48 + 10851: -12,49 + 10852: -12,50 + 10853: -12,51 + 10854: -12,52 + 11009: -5,51 + 11010: -5,50 + 11011: -5,49 + 11012: -5,48 + 11278: 31,-7 + 11279: 31,-6 + 11280: 31,-5 + 11455: -38,-8 + 11456: -38,-7 + 11457: -38,-6 + 11465: -42,-12 + 11466: -42,-11 + - node: + color: '#FFFFFFCC' + id: BrickTileSteelLineN + decals: + 640: 17,-13 + 642: 19,-13 + 643: 20,-13 + 644: 26,-13 + 645: 27,-13 + 646: 28,-13 + 647: 29,-13 + 648: 30,-13 + 649: 31,-13 + 650: 32,-13 + 655: 50,-13 + 669: 52,-9 + 672: 54,-13 + 674: 56,-13 + 675: 57,-13 + 676: 58,-13 + 677: 59,-13 + 678: 60,-13 + 679: 61,-13 + 680: 62,-13 + 681: 63,-13 + 682: 64,-13 + 683: 65,-13 + 684: 66,-13 + 685: 67,-13 + 686: 68,-13 + 687: 69,-13 + 688: 70,-13 + 689: 71,-13 + 690: 72,-13 + 691: 74,-13 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 826: -34,-5 + 1678: 44,-54 + 1679: 43,-54 + 1845: 34,-5 + 1846: 35,-5 + 1847: 36,-5 + 1895: -35,-5 + 2097: 46,-13 + 2098: 47,-13 + 2099: 48,-13 + 2100: 49,-13 + 2412: 11,12 + 2572: -77,-4 + 2573: -76,-4 + 2574: -75,-4 + 2575: -74,-4 + 2576: -73,-4 + 2577: -72,-4 + 2578: -70,-4 + 2579: -68,-4 + 2580: -67,-4 + 2581: -66,-4 + 2582: -69,-4 + 2627: -76,-14 + 2628: -75,-14 + 2629: -74,-14 + 2630: -73,-14 + 2631: -72,-14 + 2632: -71,-14 + 2633: -70,-14 + 2634: -69,-14 + 2635: -68,-14 + 2636: -67,-14 + 2637: -66,-14 + 2676: -78,10 + 2677: -77,10 + 2678: -76,10 + 2679: -75,10 + 2680: -74,10 + 2681: -73,10 + 2682: -72,10 + 2683: -71,10 + 2684: -70,10 + 2685: -69,10 + 2686: -65,10 + 2698: -63,1 + 2699: -62,1 + 2700: -61,1 + 2702: -56,1 + 2703: -55,1 + 3203: -51,-1 + 3204: -50,-1 + 3205: -49,-1 + 3206: -48,-1 + 3207: -44,-1 + 3208: -43,-1 + 3209: -42,-1 + 3210: -41,-1 + 3211: -37,-1 + 3281: -43,-5 + 3330: -35,-1 + 3331: -34,-1 + 3332: -30,-1 + 3334: -29,-1 + 3335: -28,-1 + 3336: -27,-1 + 3337: -26,-1 + 3338: -25,-1 + 3339: -24,-1 + 3983: -10,-1 + 3984: -9,-1 + 3985: -8,-1 + 3986: -7,-1 + 3987: -6,-1 + 3988: -5,-1 + 3991: -3,1 + 3992: -2,1 + 3993: -1,1 + 3994: 0,1 + 3995: 1,1 + 4034: 10,-1 + 4035: 6,-1 + 4036: 5,-1 + 4037: 5,-1 + 4038: 3,-1 + 4042: 11,-1 + 4101: -4,-3 + 4102: -3,-3 + 4103: -2,-3 + 4104: 0,-3 + 4105: -1,-3 + 4106: 1,-3 + 4107: 2,-3 + 4218: -17,-1 + 4257: -13,-8 + 4258: -14,-8 + 4259: -15,-8 + 4409: -15,-30 + 4410: -14,-30 + 4411: -13,-30 + 4412: -12,-30 + 4432: -17,-22 + 4551: -8,-30 + 4552: -7,-30 + 4553: -6,-30 + 4554: -5,-30 + 4555: -4,-30 + 4556: -3,-30 + 4557: 1,-30 + 4558: 3,-30 + 4559: 2,-30 + 4560: 5,-30 + 4561: 6,-30 + 4562: 4,-30 + 4696: 10,-30 + 4697: 11,-30 + 4698: 12,-30 + 4699: 13,-30 + 4705: 15,-25 + 4782: 15,-12 + 4898: 11,-8 + 4899: 12,-8 + 4900: 13,-8 + 4909: 15,-1 + 5089: -14,20 + 5090: -13,20 + 5091: -13,20 + 5092: -12,20 + 5095: -10,21 + 5096: -9,21 + 5097: -9,21 + 5098: -9,21 + 5099: -8,21 + 5100: -7,21 + 5101: -6,21 + 5102: -6,21 + 5103: -5,21 + 5104: -4,21 + 5105: -4,21 + 5106: -3,21 + 5107: -3,21 + 5108: -2,21 + 5109: -2,21 + 5110: -1,21 + 5111: 0,21 + 5112: 0,21 + 5113: 0,21 + 5114: 1,21 + 5115: 1,21 + 5116: 1,21 + 5117: 2,21 + 5118: 3,21 + 5119: 7,21 + 5120: 8,21 + 5121: 9,21 + 6611: -19,20 + 7407: 13,21 + 7408: 14,21 + 7409: 15,21 + 7410: 16,21 + 7411: 17,21 + 7436: 17,28 + 7437: 16,28 + 7557: 16,12 + 7558: 15,12 + 7559: 13,12 + 7560: 14,12 + 7561: 12,12 + 7562: 10,12 + 7651: 20,15 + 7652: 21,15 + 7653: 22,15 + 7654: 23,15 + 7655: 24,15 + 7656: 25,15 + 7657: 26,15 + 7817: 25,6 + 7958: 19,-4 + 7959: 20,-4 + 7960: 21,-4 + 7961: 22,-4 + 7962: 23,-4 + 7963: 24,-4 + 7970: 26,-1 + 7981: 30,-10 + 7982: 29,-10 + 7983: 28,-10 + 7997: 19,-7 + 7998: 20,-7 + 8312: -1,-34 + 8428: -1,-53 + 8432: 1,-56 + 8442: -3,-56 + 8449: -4,-56 + 10841: -14,49 + 10842: -15,49 + 11002: -9,50 + 11003: -8,50 + 11008: -6,52 + 11285: 30,-4 + 11461: -39,-5 + 11462: -43,-10 + - node: + color: '#FFFFFFCC' + id: BrickTileSteelLineS + decals: + 639: 17,-15 + 692: 74,-15 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 830: -34,-7 + 1852: 38,-10 + 1853: 37,-10 + 1854: 36,-10 + 1855: 35,-10 + 1856: 34,-10 + 1898: -35,-7 + 2114: -77,-6 + 2115: -77,-6 + 2116: -77,-6 + 2117: -76,-6 + 2118: -76,-6 + 2583: -66,-6 + 2584: -67,-6 + 2585: -68,-6 + 2586: -69,-6 + 2587: -70,-6 + 2588: -71,-6 + 2589: -72,-6 + 2590: -73,-6 + 2591: -74,-6 + 2592: -75,-6 + 2593: -76,-6 + 2594: -77,-6 + 2595: -78,-6 + 2613: -65,-16 + 2614: -66,-16 + 2615: -67,-16 + 2616: -68,-16 + 2617: -70,-16 + 2620: -75,-16 + 2621: -73,-17 + 2622: -72,-17 + 2663: -66,8 + 2664: -67,8 + 2665: -68,8 + 2666: -69,8 + 2667: -70,8 + 2668: -72,8 + 2669: -73,8 + 2670: -74,8 + 2671: -75,8 + 2672: -76,8 + 2673: -77,8 + 2712: -55,-6 + 2713: -56,-6 + 2714: -57,-6 + 2715: -58,-6 + 2716: -59,-6 + 2717: -60,-6 + 2718: -61,-6 + 2719: -62,-6 + 2720: -63,-6 + 3212: -37,-3 + 3213: -38,-3 + 3214: -39,-3 + 3215: -40,-3 + 3216: -41,-3 + 3217: -42,-3 + 3218: -43,-3 + 3219: -44,-3 + 3220: -45,-3 + 3221: -46,-3 + 3222: -47,-3 + 3223: -48,-3 + 3224: -49,-3 + 3225: -50,-3 + 3226: -51,-3 + 3237: -43,-9 + 3344: -28,-4 + 3345: -27,-4 + 3346: -26,-4 + 3347: -24,-4 + 3348: -23,-4 + 3349: -22,-4 + 3351: -30,-3 + 3352: -31,-3 + 3353: -32,-3 + 3354: -33,-3 + 3355: -34,-3 + 3356: -35,-3 + 4001: -13,-3 + 4002: -12,-3 + 4003: -12,-3 + 4004: -11,-3 + 4005: -10,-3 + 4006: -10,-3 + 4007: -9,-3 + 4008: -8,-3 + 4009: -8,-3 + 4010: -7,-3 + 4011: -7,-3 + 4012: -6,-3 + 4013: -5,-3 + 4014: 3,-3 + 4015: 3,-3 + 4016: 4,-3 + 4017: 5,-3 + 4018: 5,-3 + 4019: 6,-3 + 4020: 7,-3 + 4021: 7,-3 + 4022: 8,-3 + 4023: 9,-3 + 4024: 9,-3 + 4025: 10,-3 + 4026: 11,-3 + 4052: -4,-3 + 4053: -3,-3 + 4054: -2,-3 + 4055: -1,-3 + 4056: 0,-3 + 4057: 1,-3 + 4058: 2,-3 + 4108: 2,-1 + 4109: 1,-1 + 4110: 0,-1 + 4111: -1,-1 + 4112: -2,-1 + 4113: -3,-1 + 4114: -4,-1 + 4239: -17,-20 + 4254: -15,-10 + 4255: -14,-10 + 4256: -13,-10 + 4416: -12,-32 + 4417: -13,-32 + 4418: -14,-32 + 4419: -15,-32 + 4420: -16,-32 + 4421: -17,-32 + 4567: 6,-33 + 4571: -8,-32 + 4572: -7,-32 + 4573: -6,-32 + 4574: -5,-32 + 4575: -4,-32 + 4576: -3,-32 + 4577: -2,-32 + 4578: -1,-32 + 4579: 0,-32 + 4580: 1,-32 + 4582: 3,-33 + 4583: 4,-33 + 4584: 5,-33 + 4708: 10,-32 + 4709: 11,-32 + 4710: 12,-32 + 4711: 13,-32 + 4714: 15,-33 + 4771: 15,-23 + 4919: 15,-10 + 4920: 14,-10 + 4921: 13,-10 + 4922: 12,-10 + 4923: 11,-10 + 5011: -1,3 + 5061: -3,19 + 5062: -3,19 + 5063: -4,19 + 5064: -4,19 + 5065: -5,19 + 5066: -5,19 + 5067: -6,19 + 5068: -6,19 + 5069: -7,19 + 5070: -7,19 + 5071: -8,19 + 5072: -9,19 + 5073: -9,19 + 5074: -9,19 + 5075: -10,19 + 5076: -10,19 + 5077: -11,19 + 5078: -12,19 + 5079: -12,19 + 5080: -12,19 + 5081: -13,19 + 5082: -13,19 + 5083: -14,19 + 5084: -14,19 + 5085: -14,19 + 5086: -14,19 + 5125: 9,19 + 5126: 8,19 + 5127: 8,19 + 5128: 7,19 + 5129: 6,19 + 5130: 5,19 + 5131: 4,19 + 5132: 1,19 + 5212: 3,19 + 5213: 2,19 + 6609: -19,16 + 7414: 17,20 + 7416: 15,19 + 7417: 14,19 + 7433: 13,19 + 7444: 17,23 + 7546: 10,8 + 7547: 11,8 + 7548: 13,8 + 7549: 12,8 + 7552: 15,9 + 7553: 16,9 + 7636: 26,8 + 7637: 25,8 + 7638: 24,8 + 7639: 23,8 + 7640: 22,8 + 7641: 21,8 + 7822: 25,2 + 7823: 26,2 + 7931: 30,-11 + 7932: 29,-11 + 7933: 28,-11 + 7934: 27,-11 + 7935: 26,-11 + 7944: 24,-4 + 7945: 23,-4 + 7946: 22,-4 + 7949: 20,-5 + 7950: 19,-5 + 7991: 19,-11 + 7992: 20,-11 + 8334: -1,-51 + 8434: 1,-58 + 8435: 0,-58 + 8438: -2,-60 + 8439: -3,-60 + 10846: -15,47 + 10847: -14,47 + 10848: -13,47 + 11015: -6,47 + 11016: -7,47 + 11017: -8,47 + 11018: -9,47 + 11284: 30,-8 + 11451: -43,-13 + 11452: -39,-9 + - node: + color: '#FFFFFFCC' + id: BrickTileSteelLineW + decals: + 665: 51,-12 + 666: 51,-11 + 667: 51,-10 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 831: 33,-12 + 1858: 33,-9 + 1859: 33,-8 + 1860: 33,-7 + 1861: 33,-6 + 1896: -36,-6 + 2357: -2,-54 + 2473: 20,4 + 2600: -66,-11 + 2601: -66,-10 + 2602: -66,-9 + 2638: -65,-13 + 2642: -65,-7 + 2644: -65,-3 + 2645: -65,-2 + 2646: -65,-1 + 2647: -65,-1 + 2648: -65,0 + 2649: -65,0 + 2650: -65,1 + 2651: -65,2 + 2652: -65,2 + 2653: -65,3 + 2654: -65,3 + 2655: -65,4 + 2656: -65,4 + 2657: -65,4 + 2658: -65,5 + 2659: -65,5 + 2660: -65,6 + 2661: -65,6 + 2662: -65,7 + 3228: -52,-2 + 3238: -44,-8 + 3239: -44,-7 + 3240: -44,-6 + 3989: -4,0 + 3999: -14,-2 + 4032: 7,0 + 4115: 3,-2 + 4219: -18,-2 + 4220: -18,-3 + 4221: -18,-4 + 4222: -18,-5 + 4223: -18,-6 + 4224: -18,-8 + 4225: -18,-7 + 4226: -18,-9 + 4227: -18,-10 + 4228: -18,-11 + 4231: -19,-13 + 4232: -18,-15 + 4233: -18,-16 + 4234: -18,-17 + 4235: -18,-18 + 4236: -18,-19 + 4423: -18,-31 + 4424: -18,-30 + 4425: -18,-29 + 4426: -18,-28 + 4427: -18,-27 + 4428: -18,-26 + 4429: -18,-25 + 4430: -18,-24 + 4431: -18,-23 + 4570: -9,-31 + 4700: 14,-29 + 4701: 14,-27 + 4702: 14,-26 + 4772: 14,-22 + 4773: 14,-21 + 4774: 14,-20 + 4775: 14,-19 + 4776: 14,-18 + 4777: 14,-17 + 4778: 14,-16 + 4779: 14,-15 + 4780: 14,-14 + 4781: 14,-13 + 4836: 14,-28 + 4901: 14,-7 + 4902: 14,-6 + 4903: 14,-5 + 4904: 14,-4 + 4905: 14,-3 + 4906: 14,-2 + 5012: -2,4 + 5013: -2,5 + 5014: -2,5 + 5015: -2,6 + 5016: -2,6 + 5017: -2,7 + 5018: -2,7 + 5019: -2,8 + 5020: -2,9 + 5021: -2,9 + 5022: -2,10 + 5023: -2,10 + 5024: -2,12 + 5025: -2,12 + 5026: -2,13 + 5027: -2,13 + 5028: -2,14 + 5029: -2,14 + 5030: -2,15 + 5031: -2,15 + 5032: -2,16 + 5033: -2,16 + 5034: -2,17 + 5035: -2,17 + 5036: -2,18 + 5172: -2,11 + 6608: -20,17 + 7418: 12,20 + 7440: 16,24 + 7441: 16,25 + 7442: 16,26 + 7529: 8,14 + 7530: 8,13 + 7531: 8,11 + 7532: 8,12 + 7533: 8,10 + 7534: 8,9 + 7535: 8,8 + 7536: 8,7 + 7537: 8,6 + 7538: 8,5 + 7539: 8,4 + 7645: 19,10 + 7646: 19,11 + 7647: 19,12 + 7648: 19,13 + 7649: 19,14 + 7818: 24,5 + 7819: 24,4 + 7820: 24,3 + 7937: 25,-10 + 7938: 25,-9 + 7939: 25,-8 + 7940: 25,-7 + 7941: 25,-6 + 7942: 25,-5 + 7952: 18,-4 + 7953: 18,-3 + 7954: 18,-2 + 7965: 25,-3 + 7966: 25,-2 + 7993: 18,-10 + 7994: 18,-9 + 7995: 18,-8 + 8313: -2,-35 + 8314: -2,-39 + 8322: -2,-37 + 8323: -2,-36 + 8335: -2,-50 + 8336: -2,-49 + 8337: -2,-49 + 8338: -2,-48 + 8339: -2,-48 + 8340: -2,-47 + 8341: -2,-47 + 8342: -2,-46 + 8343: -2,-46 + 8344: -2,-45 + 8345: -2,-45 + 8346: -2,-44 + 8347: -2,-44 + 8348: -2,-43 + 8349: -2,-43 + 8350: -2,-42 + 8351: -2,-41 + 8352: -2,-41 + 8353: -2,-40 + 8354: -2,-40 + 8385: -2,-38 + 8441: -4,-59 + 8443: -2,-55 + 10838: -13,52 + 10839: -13,51 + 10840: -13,50 + 10845: -16,48 + 11005: -7,51 + 11019: -10,48 + 11020: -10,49 + 11281: 29,-7 + 11282: 29,-6 + 11283: 29,-5 + 11458: -40,-8 + 11459: -40,-7 + 11460: -40,-6 + 11463: -44,-12 + 11464: -44,-11 + 13346: 9,-31 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteBox + decals: + 2364: 1,-60 + 6475: 16,41 + 8196: 14,3 + 8197: 16,3 + 8198: 18,3 + 10025: -35,-34 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: BrickTileWhiteBox + decals: + 2136: -49,-11 + 2137: -49,-13 + 2138: -49,-15 + 2139: -49,-17 + - node: + color: '#334E6D99' + id: BrickTileWhiteCornerNe + decals: + 3640: -30,6 + 3881: -11,4 + 6936: 3,-12 + 7218: 9,-17 + 7241: 12,-17 + - node: + color: '#334E6D9B' + id: BrickTileWhiteCornerNe + decals: + 3924: -9,9 + 6748: 7,-9 + 6778: 4,-7 + 6991: -7,-12 + 7102: -7,-22 + 7116: -10,-25 + 7173: 7,-12 + 7179: 12,-14 + 7323: 12,-25 + - node: + color: '#334E6DB3' + id: BrickTileWhiteCornerNe + decals: + 2198: -20,8 + 2211: -20,3 + - node: + color: '#3EB38899' + id: BrickTileWhiteCornerNe + decals: + 9427: 14,-41 + 9439: 13,-51 + - node: + color: '#3EB3889B' + id: BrickTileWhiteCornerNe + decals: + 9397: 7,-48 + - node: + color: '#52B4E999' + id: BrickTileWhiteCornerNe + decals: + 6830: 7,-7 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteCornerNe + decals: + 395: 22,-30 + 1700: 46,-26 + 1741: 39,-22 + 1974: 22,-36 + 1977: 19,-36 + 1983: 22,-33 + 2014: 47,-46 + - node: + color: '#52B4E9B3' + id: BrickTileWhiteCornerNe + decals: + 75: 37,-39 + 152: 42,-32 + 194: 37,-35 + 238: 33,-28 + 250: 27,-28 + 266: 26,-23 + 332: 32,-21 + 381: 26,-33 + 405: 47,-35 + 1680: 42,-23 + 1689: 41,-27 + 1727: 47,-23 + 1937: 12,-34 + 1938: 13,-35 + - node: + color: '#698C5FFF' + id: BrickTileWhiteCornerNe + decals: + 11167: 49,-3 + - node: + color: '#698C64FF' + id: BrickTileWhiteCornerNe + decals: + 11271: 49,1 + - node: + color: '#80C71F99' + id: BrickTileWhiteCornerNe + decals: + 11088: 4,51 + - node: + color: '#80C71FB2' + id: BrickTileWhiteCornerNe + decals: + 903: 47,-59 + 904: 44,-59 + - node: + color: '#9FED5899' + id: BrickTileWhiteCornerNe + decals: + 3241: -46,-5 + - node: + color: '#A4610699' + id: BrickTileWhiteCornerNe + decals: + 9830: -31,-19 + 10149: -27,-20 + 10166: -25,-22 + 10199: -20,-22 + - node: + color: '#A461069B' + id: BrickTileWhiteCornerNe + decals: + 10304: -26,-16 + 10315: -20,-16 + 10501: -25,-30 + 10505: -24,-34 + - node: + color: '#D381C99B' + id: BrickTileWhiteCornerNe + decals: + 6814: 4,-5 + - node: + color: '#D381C9B2' + id: BrickTileWhiteCornerNe + decals: + 919: 63,-30 + 1010: 74,-17 + 1336: 82,-24 + 1376: 80,-44 + 1400: 78,-33 + 1447: 50,-27 + 1518: 53,-38 + 1579: 82,-36 + 1617: 75,-50 + - node: + color: '#D381C9B3' + id: BrickTileWhiteCornerNe + decals: + 939: 71,-34 + 1119: 63,-20 + 1133: 55,-17 + 1465: 68,-44 + 1484: 58,-44 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 737: 82,-2 + - node: + color: '#DE3A3A99' + id: BrickTileWhiteCornerNe + decals: + 5544: -14,32 + 5551: -17,32 + 5575: -5,37 + 5641: 4,33 + 5673: -1,39 + 6432: 14,41 + 6515: -18,36 + 6827: -7,-7 + 8268: -11,17 + - node: + color: '#DE3A3A9B' + id: BrickTileWhiteCornerNe + decals: + 2868: -61,5 + 2869: -57,5 + 5379: 6,24 + 5386: 10,24 + 5391: 10,28 + 5729: 8,41 + 5744: 9,38 + 5867: 25,36 + 5887: 24,42 + 5923: -13,24 + 5937: -17,27 + 10453: -20,-30 + 10598: -14,39 + 10635: -5,41 + 10659: -9,41 + - node: + color: '#EFB34199' + id: BrickTileWhiteCornerNe + decals: + 3687: -20,-6 + 3826: -66,18 + 6657: 0,-25 + 6676: 1,-19 + 6820: -4,-5 + 8571: 9,-56 + 8578: 5,-52 + 8732: -5,-62 + 8746: -1,-62 + 8830: -20,-69 + 8841: -23,-65 + 8887: -9,-75 + 8915: 9,-72 + - node: + color: '#EFB3419B' + id: BrickTileWhiteCornerNe + decals: + 3366: -44,5 + 3375: -38,4 + 8646: 9,-61 + 8654: 9,-65 + 8798: -13,-69 + 8817: -16,-72 + 9520: -6,-54 + 9551: -11,-56 + 9555: -11,-50 + 9696: -4,-34 + 9699: -4,-38 + - node: + color: '#F9801D99' + id: BrickTileWhiteCornerNe + decals: + 10720: -5,45 + 10746: -18,45 + - node: + color: '#F9801DB2' + id: BrickTileWhiteCornerNe + decals: + 627: -9,24 + 628: -5,24 + 629: -1,24 + - node: + color: '#FA7500B2' + id: BrickTileWhiteCornerNe + decals: + 2059: 22,-22 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 2460: 22,3 + 2468: 22,6 + 3443: -50,-5 + 5521: -8,32 + 7206: 12,-12 + 7394: 14,25 + 8168: 14,6 + 10996: -9,53 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 2135: -46,-11 + - node: + color: '#334E6D99' + id: BrickTileWhiteCornerNw + decals: + 3639: -34,6 + 3880: -13,4 + 6929: -5,-12 + 7222: 5,-17 + 7240: 11,-17 + - node: + color: '#334E6D9B' + id: BrickTileWhiteCornerNw + decals: + 3931: -15,9 + 6765: -9,-9 + 6769: -6,-7 + 7012: -14,-12 + 7103: -8,-22 + 7115: -12,-25 + 7172: 5,-12 + 7330: 6,-25 + - node: + color: '#334E6DB3' + id: BrickTileWhiteCornerNw + decals: + 2202: -24,8 + 2207: -24,3 + - node: + color: '#3EB38899' + id: BrickTileWhiteCornerNw + decals: + 9428: 12,-41 + 9440: 11,-51 + - node: + color: '#52B4E999' + id: BrickTileWhiteCornerNw + decals: + 6829: 5,-7 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteCornerNw + decals: + 399: 18,-30 + 1706: 44,-26 + 1742: 37,-22 + 1975: 21,-36 + 1976: 18,-36 + - node: + color: '#52B4E9B3' + id: BrickTileWhiteCornerNw + decals: + 94: 34,-46 + 104: 34,-49 + 234: 29,-28 + 274: 34,-23 + 337: 28,-21 + 349: 24,-17 + 382: 24,-33 + 408: 44,-35 + 1454: 48,-27 + 1684: 38,-27 + 1724: 44,-23 + 1959: 43,-39 + 2000: 43,-46 + - node: + color: '#698C5FFF' + id: BrickTileWhiteCornerNw + decals: + 11178: 42,0 + - node: + color: '#698C64FF' + id: BrickTileWhiteCornerNw + decals: + 11234: 42,-3 + 11270: 45,1 + - node: + color: '#80C71F99' + id: BrickTileWhiteCornerNw + decals: + 11087: -3,51 + - node: + color: '#80C71FB2' + id: BrickTileWhiteCornerNw + decals: + 832: 34,-52 + 890: 38,-56 + 893: 39,-52 + 899: 46,-59 + 900: 43,-59 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerNw + decals: + 586: -33,-11 + - node: + color: '#A4610699' + id: BrickTileWhiteCornerNw + decals: + 9823: -38,-19 + 9857: -42,-28 + 9864: -41,-21 + 10148: -29,-20 + - node: + color: '#A461069B' + id: BrickTileWhiteCornerNw + decals: + 9987: -35,-30 + 10303: -28,-16 + 10311: -24,-16 + 10497: -29,-30 + 10563: -26,-37 + - node: + color: '#D381C99B' + id: BrickTileWhiteCornerNw + decals: + 6817: 2,-5 + - node: + color: '#D381C9B2' + id: BrickTileWhiteCornerNw + decals: + 922: 59,-30 + 1011: 73,-17 + 1015: 69,-18 + 1017: 69,-27 + 1093: 56,-23 + 1333: 76,-24 + 1371: 70,-44 + 1513: 51,-38 + 1563: 57,-56 + 1580: 80,-36 + 1620: 69,-50 + - node: + color: '#D381C9B3' + id: BrickTileWhiteCornerNw + decals: + 1123: 59,-20 + 1134: 51,-17 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 739: 80,-2 + - node: + color: '#DE3A3A99' + id: BrickTileWhiteCornerNw + decals: + 5545: -15,32 + 5552: -19,32 + 5576: -8,37 + 5577: -16,36 + 5637: 0,33 + 5672: -3,39 + 6514: -20,36 + 6535: -6,17 + 6824: -9,-7 + 8269: -15,17 + - node: + color: '#DE3A3A9B' + id: BrickTileWhiteCornerNw + decals: + 2867: -62,5 + 2870: -59,5 + 5380: 4,24 + 5387: 8,24 + 5419: -15,27 + 5504: 1,24 + 5728: 6,41 + 5773: 6,32 + 5778: 11,35 + 5866: 21,36 + 5886: 22,42 + 5922: -15,24 + 10634: -7,41 + 10658: -12,41 + - node: + color: '#EFB34199' + id: BrickTileWhiteCornerNw + decals: + 3683: -24,-6 + 3746: -25,-10 + 3827: -68,18 + 6654: -3,-25 + 6677: -3,-19 + 6819: -6,-5 + 8696: 7,-53 + 8703: 3,-60 + 8731: -10,-62 + 8745: -3,-62 + 8831: -21,-69 + 8882: -11,-72 + 8913: 7,-75 + 8914: 8,-72 + 8946: 11,-71 + - node: + color: '#EFB3419B' + id: BrickTileWhiteCornerNw + decals: + 3365: -47,5 + 3368: -42,4 + 8647: 7,-61 + 8663: 7,-65 + 8670: 1,-66 + 8682: -10,-67 + 8683: -11,-69 + 8797: -18,-69 + 8815: -18,-72 + 9325: -27,-65 + 9521: -8,-54 + 9522: -9,-56 + 9554: -17,-50 + 9700: -11,-38 + 9702: -11,-34 + 9783: 2,-35 + - node: + color: '#F9801D99' + id: BrickTileWhiteCornerNw + decals: + 10731: -16,45 + 10753: -25,45 + - node: + color: '#F9801DB2' + id: BrickTileWhiteCornerNw + decals: + 621: -11,24 + 622: -7,24 + 623: -3,24 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 793: -47,-11 + 2462: 20,3 + 2470: 20,6 + 3444: -52,-5 + 5520: -10,32 + 7395: 12,25 + 8167: 11,6 + 10995: -10,53 + - node: + color: '#00FFFF66' + id: BrickTileWhiteCornerSe + decals: + 2040: 92,-31 + - node: + color: '#334E6D99' + id: BrickTileWhiteCornerSe + decals: + 3643: -30,3 + 3886: -11,1 + 7243: 12,-19 + - node: + color: '#334E6D9B' + id: BrickTileWhiteCornerSe + decals: + 6749: 7,-10 + 6998: -7,-20 + 7104: -7,-23 + 7109: -10,-28 + 7180: 12,-15 + - node: + color: '#334E6DB3' + id: BrickTileWhiteCornerSe + decals: + 2213: -20,1 + - node: + color: '#3EB38899' + id: BrickTileWhiteCornerSe + decals: + 9434: 14,-45 + 9444: 13,-53 + - node: + color: '#3EB3889B' + id: BrickTileWhiteCornerSe + decals: + 9388: 7,-46 + 9400: 5,-50 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteCornerSe + decals: + 306: 22,-28 + 355: 26,-21 + 365: 35,-21 + 404: 22,-31 + 1753: 46,-21 + - node: + color: '#52B4E9B3' + id: BrickTileWhiteCornerSe + decals: + 99: 37,-47 + 100: 37,-50 + 134: 41,-50 + 147: 42,-37 + 196: 37,-37 + 239: 33,-31 + 333: 32,-22 + 1681: 42,-25 + 1729: 47,-25 + 1793: 39,-20 + 1940: 13,-37 + 1961: 47,-40 + 1964: 44,-41 + - node: + color: '#698C64FF' + id: BrickTileWhiteCornerSe + decals: + 11255: 44,-11 + 11259: 49,-11 + 11272: 49,-1 + - node: + color: '#80C71F99' + id: BrickTileWhiteCornerSe + decals: + 11103: 4,49 + - node: + color: '#80C71FB2' + id: BrickTileWhiteCornerSe + decals: + 838: 36,-56 + 881: 47,-57 + 897: 44,-61 + 898: 47,-61 + - node: + color: '#9FED5899' + id: BrickTileWhiteCornerSe + decals: + 3245: -46,-9 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerSe + decals: + 573: -30,-17 + - node: + color: '#A4610699' + id: BrickTileWhiteCornerSe + decals: + 9839: -31,-28 + 9848: -37,-32 + 10158: -25,-28 + 10208: -20,-28 + - node: + color: '#A461069B' + id: BrickTileWhiteCornerSe + decals: + 9995: -31,-32 + 10306: -26,-18 + 10316: -20,-20 + 10506: -24,-35 + 10564: -24,-39 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSe + decals: + 721: 71,-16 + - node: + color: '#D381C9B2' + id: BrickTileWhiteCornerSe + decals: + 967: 63,-38 + 1002: 74,-25 + 1029: 74,-32 + 1101: 63,-25 + 1347: 77,-27 + 1349: 80,-27 + 1351: 82,-26 + 1380: 80,-48 + 1450: 50,-29 + 1585: 82,-38 + 1589: 86,-37 + 1632: 75,-54 + 1639: 74,-58 + - node: + color: '#D381C9B3' + id: BrickTileWhiteCornerSe + decals: + 943: 71,-38 + 1130: 63,-23 + 1139: 55,-21 + 1469: 68,-48 + - node: + color: '#DE3A3A99' + id: BrickTileWhiteCornerSe + decals: + 5548: -14,29 + 5556: -17,29 + 5579: -8,34 + 5580: -5,35 + 5644: 4,30 + 5678: -1,35 + 6428: 14,37 + 6517: -18,34 + 6540: -4,13 + 8277: -11,15 + - node: + color: '#DE3A3A9B' + id: BrickTileWhiteCornerSe + decals: + 2876: -57,3 + 5384: 6,23 + 5385: 10,23 + 5392: 10,26 + 5505: 2,23 + 5738: 9,34 + 5779: 19,32 + 5780: 17,30 + 5875: 25,32 + 5925: -13,22 + 5932: -17,22 + 10454: -20,-32 + 10602: -14,38 + 10637: -5,39 + 10661: -10,38 + 10662: -9,39 + - node: + color: '#DE3A3AB3' + id: BrickTileWhiteCornerSe + decals: + 1922: 27,28 + - node: + color: '#EFB34199' + id: BrickTileWhiteCornerSe + decals: + 3688: -20,-8 + 3738: -21,-14 + 3831: -66,12 + 6660: 0,-28 + 6679: 1,-23 + 8589: 9,-59 + 8694: 9,-54 + 8708: 5,-64 + 8738: -5,-65 + 8747: -1,-65 + 8833: -20,-71 + 8853: -23,-72 + 8890: -9,-78 + 8921: 9,-77 + 8933: 12,-75 + - node: + color: '#EFB3419B' + id: BrickTileWhiteCornerSe + decals: + 3377: -38,1 + 3382: -44,1 + 8652: 9,-63 + 8659: 9,-70 + 8685: -10,-70 + 8686: -9,-69 + 8799: -13,-70 + 8809: -13,-75 + 9529: -6,-58 + 9552: -11,-58 + 9556: -11,-52 + 9698: -4,-36 + 9712: -4,-40 + - node: + color: '#F9801D99' + id: BrickTileWhiteCornerSe + decals: + 10744: -5,43 + 10762: -18,43 + - node: + color: '#F9801DB2' + id: BrickTileWhiteCornerSe + decals: + 630: -9,23 + 631: -5,23 + 632: -1,23 + - node: + color: '#FA7500B2' + id: BrickTileWhiteCornerSe + decals: + 2058: 22,-23 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 800: -46,-17 + 2466: 22,2 + 2467: 22,5 + 3450: -50,-9 + 5524: -8,29 + 7399: 14,23 + 8186: 14,5 + 10833: -24,40 + 10999: -9,51 + - node: + color: '#334E6D99' + id: BrickTileWhiteCornerSw + decals: + 3647: -34,3 + 3885: -13,1 + 7224: 5,-19 + 7242: 11,-19 + - node: + color: '#334E6D9B' + id: BrickTileWhiteCornerSw + decals: + 3932: -15,6 + 6750: 4,-10 + 6764: -9,-10 + 6999: -9,-20 + 7006: -14,-18 + 7105: -8,-23 + 7187: 5,-15 + 7333: 6,-28 + - node: + color: '#3EB38899' + id: BrickTileWhiteCornerSw + decals: + 9433: 12,-45 + 9443: 11,-53 + - node: + color: '#3EB3889B' + id: BrickTileWhiteCornerSw + decals: + 9387: 3,-46 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteCornerSw + decals: + 308: 18,-28 + 353: 24,-21 + 364: 34,-21 + 400: 18,-31 + - node: + color: '#52B4E9B3' + id: BrickTileWhiteCornerSw + decals: + 80: 34,-44 + 96: 34,-47 + 103: 34,-50 + 133: 39,-50 + 164: 35,-33 + 205: 28,-37 + 243: 29,-31 + 244: 24,-31 + 386: 24,-37 + 1452: 48,-29 + 1683: 38,-30 + 1797: 37,-20 + 1941: 12,-37 + 1945: 9,-35 + 1965: 43,-41 + - node: + color: '#698C5FFF' + id: BrickTileWhiteCornerSw + decals: + 11177: 42,-1 + - node: + color: '#698C64FF' + id: BrickTileWhiteCornerSw + decals: + 11254: 42,-11 + 11258: 46,-11 + - node: + color: '#80C71F99' + id: BrickTileWhiteCornerSw + decals: + 11095: -3,49 + - node: + color: '#80C71FB2' + id: BrickTileWhiteCornerSw + decals: + 833: 34,-56 + 892: 39,-54 + 901: 43,-61 + 902: 46,-61 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerSw + decals: + 580: -33,-17 + - node: + color: '#A4610699' + id: BrickTileWhiteCornerSw + decals: + 9853: -42,-32 + 10157: -29,-28 + 10207: -23,-28 + - node: + color: '#A461069B' + id: BrickTileWhiteCornerSw + decals: + 9990: -35,-32 + 10307: -28,-18 + 10510: -29,-31 + 10514: -27,-35 + 10565: -26,-39 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSw + decals: + 722: 61,-16 + - node: + color: '#D381C9B2' + id: BrickTileWhiteCornerSw + decals: + 923: 59,-32 + 1024: 69,-32 + 1199: 51,-25 + 1516: 51,-42 + 1565: 57,-58 + 1581: 80,-38 + 1587: 84,-37 + 1625: 65,-54 + - node: + color: '#D381C9B3' + id: BrickTileWhiteCornerSw + decals: + 1126: 59,-23 + 1137: 51,-21 + 1486: 56,-54 + - node: + color: '#DE3A3A99' + id: BrickTileWhiteCornerSw + decals: + 5555: -19,29 + 5578: -16,34 + 5680: -3,35 + 5684: 1,35 + 6427: 12,37 + 6516: -20,34 + 6539: -6,13 + 8273: -15,16 + 8274: -13,15 + - node: + color: '#DE3A3A9B' + id: BrickTileWhiteCornerSw + decals: + 2872: -62,3 + 5382: 4,23 + 5388: 8,23 + 5418: -15,26 + 5503: 1,23 + 5737: 6,34 + 5781: 6,30 + 5879: 21,32 + 5885: 22,38 + 5924: -15,22 + 10469: -23,-32 + 10600: -16,38 + 10636: -7,39 + 10660: -12,38 + - node: + color: '#DE3A3AB3' + id: BrickTileWhiteCornerSw + decals: + 1926: 23,28 + - node: + color: '#EFB34199' + id: BrickTileWhiteCornerSw + decals: + 3693: -24,-8 + 3742: -25,-14 + 3830: -68,12 + 6661: -2,-28 + 6664: -3,-26 + 6678: -3,-23 + 8584: 3,-58 + 8588: 7,-59 + 8695: 7,-54 + 8737: -10,-65 + 8748: -3,-65 + 8832: -21,-71 + 8849: -27,-72 + 8932: 11,-75 + - node: + color: '#EFB3419B' + id: BrickTileWhiteCornerSw + decals: + 3381: -42,1 + 3383: -47,1 + 8650: 7,-63 + 8660: 8,-70 + 8661: 7,-69 + 8684: -11,-70 + 8800: -18,-70 + 8810: -14,-75 + 8814: -18,-74 + 9532: -9,-58 + 9553: -17,-58 + 9701: -11,-40 + 9703: -11,-36 + 9788: 2,-37 + - node: + color: '#F9801D99' + id: BrickTileWhiteCornerSw + decals: + 10732: -16,43 + 10754: -25,43 + - node: + color: '#F9801DB2' + id: BrickTileWhiteCornerSw + decals: + 633: -11,23 + 634: -7,23 + 635: -3,23 + - node: + color: '#FA7500B2' + id: BrickTileWhiteCornerSw + decals: + 2051: 18,-19 + 2056: 20,-23 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 801: -47,-17 + 2463: 20,2 + 2471: 20,5 + 3449: -52,-9 + 5525: -10,29 + 7398: 12,23 + 8169: 11,1 + 10998: -10,51 + - node: + color: '#DE3A3A9B' + id: BrickTileWhiteEndE + decals: + 10604: -14,41 + - node: + color: '#EFB34199' + id: BrickTileWhiteEndE + decals: + 3734: -20,-10 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndE + decals: + 965: 74,-34 + 6568: -8,13 + 8170: 18,1 + 8200: 18,5 + - node: + color: '#334E6DB2' + id: BrickTileWhiteEndN + decals: + 7142: -8,-25 + - node: + color: '#EFB34199' + id: BrickTileWhiteEndN + decals: + 8693: 9,-51 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndN + decals: + 821: 10,-21 + 2011: 47,-43 + 7402: 12,28 + 8199: 17,7 + 10831: -24,41 + - node: + color: '#334E6D9B' + id: BrickTileWhiteEndS + decals: + 7106: -8,-28 + - node: + color: '#EFB34199' + id: BrickTileWhiteEndS + decals: + 8920: 7,-78 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndS + decals: + 2010: 47,-44 + 7403: 12,27 + - node: + color: '#A461069B' + id: BrickTileWhiteEndW + decals: + 10320: -25,-20 + - node: + color: '#DE3A3A9B' + id: BrickTileWhiteEndW + decals: + 10603: -16,41 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndW + decals: + 966: 73,-34 + 6567: -9,13 + 8201: 16,5 + 10832: -25,40 + - node: + color: '#334E6D9B' + id: BrickTileWhiteInnerNe + decals: + 6782: 4,-9 + 7039: -14,-17 + 7119: -10,-26 + 7190: 7,-14 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteInnerNe + decals: + 1462: 48,-29 + 1745: 39,-23 + - node: + color: '#52B4E9B3' + id: BrickTileWhiteInnerNe + decals: + 170: 36,-32 + 317: 26,-24 + 1947: 12,-35 + - node: + color: '#A4610699' + id: BrickTileWhiteInnerNe + decals: + 10169: -27,-22 + - node: + color: '#A461069B' + id: BrickTileWhiteInnerNe + decals: + 10509: -25,-34 + - node: + color: '#D381C9B2' + id: BrickTileWhiteInnerNe + decals: + 1059: 70,-32 + - node: + color: '#DE3A3A9B' + id: BrickTileWhiteInnerNe + decals: + 2879: -61,4 + 5452: -5,28 + 5871: 24,36 + - node: + color: '#DE3A3A9E' + id: BrickTileWhiteInnerNe + decals: + 5727: 8,38 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerNe + decals: + 824: 1,-59 + - node: + color: '#EFB34199' + id: BrickTileWhiteInnerNe + decals: + 8620: 5,-56 + 8756: -5,-63 + - node: + color: '#EFB3419B' + id: BrickTileWhiteInnerNe + decals: + 3371: -44,3 + 8820: -16,-74 + - node: + color: '#FA7500B2' + id: BrickTileWhiteInnerNe + decals: + 2062: 20,-22 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNe + decals: + 1876: 34,-9 + 8194: 12,1 + 8206: 17,5 + - node: + color: '#334E6D9B' + id: BrickTileWhiteInnerNw + decals: + 6784: -6,-9 + 7042: -7,-17 + - node: + color: '#334E6DB2' + id: BrickTileWhiteInnerNw + decals: + 7144: -8,-26 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteInnerNw + decals: + 1744: 37,-23 + - node: + color: '#52B4E9B3' + id: BrickTileWhiteInnerNw + decals: + 318: 34,-24 + - node: + color: '#698C5FFF' + id: BrickTileWhiteInnerNw + decals: + 11190: 45,0 + - node: + color: '#A4610699' + id: BrickTileWhiteInnerNw + decals: + 9865: -41,-28 + 9869: -38,-21 + - node: + color: '#A461069B' + id: BrickTileWhiteInnerNw + decals: + 10328: -24,-20 + - node: + color: '#D381C9B2' + id: BrickTileWhiteInnerNw + decals: + 1016: 73,-18 + 1058: 73,-32 + 1318: 65,-27 + 1663: 69,-51 + - node: + color: '#D381C9B3' + id: BrickTileWhiteInnerNw + decals: + 1464: 50,-29 + - node: + color: '#DE3A3A99' + id: BrickTileWhiteInnerNw + decals: + 5602: -8,36 + - node: + color: '#DE3A3A9B' + id: BrickTileWhiteInnerNw + decals: + 2878: -59,4 + 5436: -6,27 + 5804: 11,32 + 5870: 24,36 + - node: + color: '#EFB34199' + id: BrickTileWhiteInnerNw + decals: + 8702: 9,-53 + 8755: -3,-63 + 8926: 8,-75 + - node: + color: '#EFB3419B' + id: BrickTileWhiteInnerNw + decals: + 3370: -42,3 + 8671: 1,-67 + 8688: -10,-69 + 8690: 7,-66 + 9524: -8,-56 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNw + decals: + 1875: 39,-9 + 8205: 17,5 + 10834: -24,40 + - node: + color: '#334E6D9B' + id: BrickTileWhiteInnerSe + decals: + 7040: -14,-13 + 7111: -10,-27 + - node: + color: '#3EB3889B' + id: BrickTileWhiteInnerSe + decals: + 9401: 5,-49 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSe + decals: + 765: 23,-15 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteInnerSe + decals: + 368: 26,-19 + 1463: 48,-27 + - node: + color: '#52B4E9B3' + id: BrickTileWhiteInnerSe + decals: + 319: 36,-25 + 1730: 46,-25 + 1967: 44,-40 + - node: + color: '#698C64FF' + id: BrickTileWhiteInnerSe + decals: + 11256: 44,-10 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerSe + decals: + 591: -30,-11 + - node: + color: '#A461069B' + id: BrickTileWhiteInnerSe + decals: + 9964: -37,-28 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSe + decals: + 726: 71,-15 + - node: + color: '#D381C9B2' + id: BrickTileWhiteInnerSe + decals: + 1060: 70,-27 + 1352: 80,-26 + 1353: 77,-26 + - node: + color: '#DE3A3A99' + id: BrickTileWhiteInnerSe + decals: + 5601: -8,35 + - node: + color: '#DE3A3A9B' + id: BrickTileWhiteInnerSe + decals: + 5794: 17,32 + 10663: -10,39 + - node: + color: '#EFB34199' + id: BrickTileWhiteInnerSe + decals: + 3750: -21,-10 + 8758: -5,-64 + 8923: 7,-77 + 8935: 12,-74 + - node: + color: '#EFB3419B' + id: BrickTileWhiteInnerSe + decals: + 3392: -44,2 + 8687: -10,-69 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSe + decals: + 1877: 34,-6 + 8195: 12,5 + - node: + color: '#334E6D9B' + id: BrickTileWhiteInnerSw + decals: + 6783: 4,-9 + 7019: -9,-18 + 7041: -7,-13 + 7112: -8,-27 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteInnerSw + decals: + 367: 34,-19 + - node: + color: '#52B4E9B3' + id: BrickTileWhiteInnerSw + decals: + 169: 39,-33 + 1946: 12,-35 + - node: + color: '#698C64FF' + id: BrickTileWhiteInnerSw + decals: + 11257: 46,-10 + - node: + color: '#A461069B' + id: BrickTileWhiteInnerSw + decals: + 10516: -27,-31 + - node: + color: '#CC5100CC' + id: BrickTileWhiteInnerSw + decals: + 764: 23,-15 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSw + decals: + 725: 61,-15 + - node: + color: '#D381C9B2' + id: BrickTileWhiteInnerSw + decals: + 1061: 73,-27 + 1319: 65,-28 + - node: + color: '#D381C9B3' + id: BrickTileWhiteInnerSw + decals: + 1459: 50,-27 + - node: + color: '#DE3A3A99' + id: BrickTileWhiteInnerSw + decals: + 8276: -13,16 + - node: + color: '#DE3A3A9B' + id: BrickTileWhiteInnerSw + decals: + 5897: 24,38 + - node: + color: '#EFB34199' + id: BrickTileWhiteInnerSw + decals: + 6665: -2,-26 + 8593: 7,-58 + 8757: -3,-64 + - node: + color: '#EFB3419B' + id: BrickTileWhiteInnerSw + decals: + 3393: -42,2 + 8662: 8,-69 + 8821: -14,-74 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSw + decals: + 1874: 39,-6 + - node: + color: '#00FFFF66' + id: BrickTileWhiteLineE + decals: + 2041: 92,-30 + - node: + color: '#334E6D99' + id: BrickTileWhiteLineE + decals: + 3641: -30,5 + 3642: -30,4 + 3887: -11,2 + 3888: -11,3 + 6934: 3,-14 + 6935: 3,-13 + 7227: 9,-18 + 7244: 12,-18 + - node: + color: '#334E6D9B' + id: BrickTileWhiteLineE + decals: + 3925: -9,8 + 4266: -13,-10 + 4267: -13,-9 + 4268: -13,-8 + 6779: 4,-8 + 6992: -7,-13 + 6993: -7,-14 + 6994: -7,-15 + 6995: -7,-16 + 6996: -7,-18 + 6997: -7,-19 + 7026: -7,-17 + 7036: -14,-14 + 7037: -14,-15 + 7038: -14,-16 + 7107: -8,-27 + 7174: 7,-13 + 7324: 12,-26 + - node: + color: '#334E6DB2' + id: BrickTileWhiteLineE + decals: + 7143: -8,-26 + - node: + color: '#334E6DB3' + id: BrickTileWhiteLineE + decals: + 2212: -20,2 + 2217: -20,4 + 2218: -20,5 + 2219: -20,6 + 2220: -20,7 + - node: + color: '#3EB38899' + id: BrickTileWhiteLineE + decals: + 9436: 14,-44 + 9437: 14,-43 + 9438: 14,-42 + 9446: 13,-52 + - node: + color: '#3EB3889B' + id: BrickTileWhiteLineE + decals: + 9395: 7,-45 + 9396: 7,-43 + - node: + color: '#52B4E999' + id: BrickTileWhiteLineE + decals: + 4719: 16,-29 + 4720: 16,-28 + 4721: 16,-27 + 6831: 7,-8 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteLineE + decals: + 305: 22,-27 + 329: 36,-26 + 356: 26,-20 + 1460: 48,-28 + 1701: 46,-27 + 1702: 46,-28 + 1703: 46,-29 + 1735: 35,-20 + 1736: 35,-19 + 1737: 35,-18 + 1738: 35,-17 + 1754: 46,-20 + 1984: 22,-34 + 1985: 22,-35 + - node: + color: '#52B4E9B3' + id: BrickTileWhiteLineE + decals: + 76: 37,-40 + 77: 37,-43 + 78: 37,-41 + 136: 41,-49 + 137: 41,-48 + 138: 41,-47 + 139: 41,-46 + 140: 41,-45 + 141: 41,-44 + 142: 41,-43 + 143: 41,-42 + 144: 41,-41 + 145: 41,-40 + 146: 41,-39 + 148: 42,-36 + 149: 42,-35 + 150: 42,-34 + 151: 42,-33 + 157: 36,-31 + 158: 36,-30 + 159: 36,-29 + 160: 36,-28 + 195: 37,-36 + 379: 26,-35 + 380: 26,-34 + 409: 47,-36 + 1682: 42,-24 + 1690: 41,-28 + 1691: 41,-29 + 1728: 47,-24 + 1794: 39,-19 + 1795: 39,-18 + 1939: 13,-36 + - node: + color: '#698C5FFF' + id: BrickTileWhiteLineE + decals: + 11176: 49,-10 + - node: + color: '#698C64FF' + id: BrickTileWhiteLineE + decals: + 11238: 49,-7 + 11239: 49,-6 + 11273: 49,0 + - node: + color: '#80C71F99' + id: BrickTileWhiteLineE + decals: + 11104: 4,50 + - node: + color: '#80C71FB2' + id: BrickTileWhiteLineE + decals: + 837: 36,-55 + 905: 44,-60 + 906: 47,-60 + - node: + color: '#9FED5899' + id: BrickTileWhiteLineE + decals: + 3242: -46,-6 + 3243: -46,-7 + 3244: -46,-8 + - node: + color: '#A4610696' + id: BrickTileWhiteLineE + decals: + 575: -30,-16 + 576: -30,-15 + 577: -30,-14 + 578: -30,-13 + 579: -30,-12 + - node: + color: '#A4610699' + id: BrickTileWhiteLineE + decals: + 9831: -31,-20 + 9832: -31,-21 + 9833: -31,-22 + 9834: -31,-23 + 9835: -31,-24 + 9836: -31,-25 + 9837: -31,-26 + 9838: -31,-27 + 9845: -37,-29 + 9846: -37,-30 + 9847: -37,-31 + 10162: -25,-27 + 10163: -25,-26 + 10164: -25,-25 + 10165: -25,-23 + 10167: -27,-21 + 10211: -20,-27 + 10212: -20,-26 + 10213: -20,-25 + 10214: -20,-24 + 10215: -20,-23 + - node: + color: '#A461069B' + id: BrickTileWhiteLineE + decals: + 9996: -31,-31 + 10310: -26,-17 + 10317: -20,-19 + 10318: -20,-18 + 10319: -20,-17 + 10502: -25,-31 + 10503: -25,-32 + 10504: -25,-33 + - node: + color: '#D381C99B' + id: BrickTileWhiteLineE + decals: + 6815: 4,-6 + - node: + color: '#D381C9B2' + id: BrickTileWhiteLineE + decals: + 920: 63,-31 + 968: 63,-37 + 969: 63,-36 + 970: 63,-35 + 1003: 74,-24 + 1004: 74,-23 + 1005: 74,-22 + 1006: 74,-21 + 1007: 74,-20 + 1008: 74,-19 + 1009: 74,-18 + 1035: 74,-31 + 1046: 70,-28 + 1047: 70,-29 + 1048: 70,-30 + 1049: 70,-31 + 1088: 63,-19 + 1203: 55,-24 + 1223: 67,-20 + 1224: 67,-19 + 1225: 67,-18 + 1306: 67,-37 + 1307: 67,-36 + 1308: 67,-35 + 1309: 67,-34 + 1310: 67,-33 + 1311: 67,-32 + 1312: 67,-31 + 1313: 67,-30 + 1314: 67,-29 + 1315: 67,-28 + 1316: 67,-27 + 1317: 67,-26 + 1337: 82,-25 + 1377: 80,-45 + 1378: 80,-46 + 1379: 80,-47 + 1401: 78,-34 + 1402: 78,-35 + 1403: 78,-36 + 1404: 78,-38 + 1405: 78,-37 + 1449: 50,-28 + 1505: 57,-37 + 1542: 61,-41 + 1567: 59,-57 + 1586: 82,-37 + 1590: 86,-36 + 1633: 75,-53 + 1634: 75,-52 + 1635: 75,-51 + 1636: 74,-55 + 1637: 74,-56 + 1638: 74,-57 + - node: + color: '#D381C9B3' + id: BrickTileWhiteLineE + decals: + 940: 71,-35 + 941: 71,-36 + 942: 71,-37 + 1111: 63,-24 + 1131: 63,-22 + 1132: 63,-21 + 1140: 55,-20 + 1141: 55,-19 + 1142: 55,-18 + 1238: 67,-39 + 1239: 67,-40 + 1240: 67,-41 + 1241: 67,-42 + 1466: 68,-45 + 1467: 68,-46 + 1468: 68,-47 + 1488: 58,-50 + 1489: 58,-49 + 1490: 58,-48 + 1491: 58,-47 + 1492: 58,-46 + 1493: 58,-45 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 736: 82,-3 + - node: + color: '#DE3A3A99' + id: BrickTileWhiteLineE + decals: + 2889: -57,4 + 5549: -14,30 + 5550: -14,31 + 5558: -17,30 + 5559: -17,31 + 5600: -5,36 + 5642: 4,32 + 5643: 4,31 + 5675: -1,38 + 5676: -1,37 + 5677: -1,36 + 5688: 4,37 + 5689: 4,36 + 6429: 14,38 + 6430: 14,39 + 6431: 14,40 + 6518: -18,35 + 6542: -4,14 + 6543: -4,15 + 6544: -4,16 + 6828: -7,-8 + 8279: -11,16 + - node: + color: '#DE3A3A9B' + id: BrickTileWhiteLineE + decals: + 5393: 10,27 + 5433: -5,32 + 5434: -5,30 + 5435: -5,29 + 5437: -5,31 + 5741: 9,35 + 5742: 9,36 + 5743: 9,37 + 5745: 8,39 + 5746: 8,40 + 5793: 17,31 + 5800: 19,33 + 5801: 19,34 + 5872: 25,35 + 5873: 25,34 + 5874: 25,33 + 5884: 24,37 + 5888: 24,38 + 5889: 24,39 + 5890: 24,40 + 5891: 24,41 + 5926: -13,23 + 5933: -17,23 + 5934: -17,24 + 5935: -17,25 + 5936: -17,26 + 10459: -20,-31 + 10638: -5,40 + 10668: -9,40 + - node: + color: '#EFB34199' + id: BrickTileWhiteLineE + decals: + 3408: -38,2 + 3689: -20,-7 + 3735: -21,-11 + 3736: -21,-12 + 3737: -21,-13 + 3836: -66,13 + 3837: -66,14 + 3838: -66,15 + 3839: -66,16 + 3840: -66,17 + 6658: 0,-26 + 6659: 0,-27 + 6689: 1,-20 + 6690: 1,-21 + 6691: 1,-22 + 6821: -4,-6 + 8446: 1,-58 + 8447: 1,-57 + 8448: 1,-56 + 8575: 5,-55 + 8576: 5,-54 + 8577: 5,-53 + 8591: 9,-58 + 8592: 9,-57 + 8699: 9,-52 + 8700: 9,-53 + 8705: 5,-61 + 8706: 5,-62 + 8707: 5,-63 + 8750: -1,-64 + 8751: -1,-63 + 8789: -12,-64 + 8790: -12,-63 + 8834: -20,-70 + 8836: -23,-70 + 8837: -23,-69 + 8838: -23,-68 + 8839: -23,-67 + 8840: -23,-66 + 8854: -23,-71 + 8888: -9,-76 + 8889: -9,-77 + 8916: 9,-73 + 8917: 9,-74 + 8918: 9,-75 + 8919: 9,-76 + - node: + color: '#EFB3419B' + id: BrickTileWhiteLineE + decals: + 3367: -44,4 + 3376: -38,3 + 8653: 9,-62 + 8655: 9,-66 + 8656: 9,-67 + 8657: 9,-68 + 8658: 9,-69 + 8819: -16,-73 + 8822: -13,-74 + 9526: -6,-55 + 9527: -6,-56 + 9528: -6,-57 + 9557: -11,-51 + 9573: -11,-57 + 9697: -4,-35 + 9711: -4,-39 + - node: + color: '#EFB341B2' + id: BrickTileWhiteLineE + decals: + 2376: 9,-75 + - node: + color: '#F9801D99' + id: BrickTileWhiteLineE + decals: + 10745: -5,44 + 10763: -18,44 + - node: + color: '#FA7500B2' + id: BrickTileWhiteLineE + decals: + 2061: 20,-21 + 2063: 22,-18 + 2064: 22,-19 + 2065: 22,-20 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 775: 40,-1 + 794: -46,-12 + 795: -46,-13 + 796: -46,-14 + 797: -46,-14 + 798: -46,-15 + 799: -46,-16 + 822: 10,-22 + 1872: 34,-7 + 1873: 34,-8 + 3452: -50,-8 + 3453: -50,-7 + 3454: -50,-6 + 5522: -8,31 + 5523: -8,30 + 7207: 12,-13 + 7400: 14,24 + 8183: 12,2 + 8184: 12,3 + 8185: 12,4 + 8202: 17,6 + 11000: -9,52 + - node: + color: '#334E6D99' + id: BrickTileWhiteLineN + decals: + 3493: -33,-1 + 3494: -32,-1 + 3495: -31,-1 + 3496: -23,-1 + 3497: -22,-1 + 3498: -21,-1 + 3882: -12,4 + 6834: -3,-5 + 6835: -2,-5 + 6836: -1,-5 + 6837: 0,-5 + 6838: 1,-5 + 7219: 8,-17 + 7220: 7,-17 + 7221: 6,-17 + - node: + color: '#334E6D9B' + id: BrickTileWhiteLineN + decals: + 3926: -10,9 + 3927: -11,9 + 3928: -12,9 + 3929: -13,9 + 3930: -14,9 + 4043: -13,-1 + 4044: -12,-1 + 4045: -11,-1 + 6766: -8,-9 + 6767: -7,-9 + 6770: -5,-7 + 6771: -4,-7 + 6772: -3,-7 + 6773: -2,-7 + 6774: -1,-7 + 6775: 0,-7 + 6776: 2,-7 + 6777: 3,-7 + 6780: 6,-9 + 6781: 5,-9 + 6809: 1,-7 + 7013: -13,-12 + 7014: -12,-12 + 7015: -11,-12 + 7016: -10,-12 + 7017: -9,-12 + 7018: -8,-12 + 7020: -13,-17 + 7021: -12,-17 + 7022: -11,-17 + 7023: -10,-17 + 7024: -9,-17 + 7025: -8,-17 + 7117: -11,-25 + 7118: -9,-26 + 7175: 8,-14 + 7176: 9,-14 + 7177: 10,-14 + 7178: 11,-14 + 7191: 6,-12 + 7325: 11,-25 + 7326: 10,-25 + 7327: 9,-25 + 7328: 8,-25 + 7329: 7,-25 + - node: + color: '#334E6DB3' + id: BrickTileWhiteLineN + decals: + 2199: -21,8 + 2200: -22,8 + 2201: -23,8 + 2208: -23,3 + 2209: -22,3 + 2210: -21,3 + - node: + color: '#3EB38899' + id: BrickTileWhiteLineN + decals: + 9429: 13,-41 + 9441: 12,-51 + - node: + color: '#3EB3889B' + id: BrickTileWhiteLineN + decals: + 9402: 6,-48 + 9403: 5,-48 + - node: + color: '#52B4E999' + id: BrickTileWhiteLineN + decals: + 6833: 6,-7 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteLineN + decals: + 223: 34,-35 + 277: 40,-23 + 278: 41,-23 + 301: 19,-25 + 302: 20,-25 + 303: 21,-25 + 304: 22,-25 + 396: 21,-30 + 397: 20,-30 + 398: 19,-30 + 1461: 49,-29 + 1707: 45,-26 + 1743: 38,-22 + 1747: 42,-17 + 1748: 44,-17 + 1749: 46,-17 + 1980: 19,-33 + 1981: 20,-33 + 1982: 21,-33 + 2012: 45,-46 + 2013: 46,-46 + - node: + color: '#52B4E9B3' + id: BrickTileWhiteLineN + decals: + 95: 35,-46 + 105: 35,-49 + 153: 40,-32 + 154: 38,-32 + 155: 37,-32 + 156: 39,-32 + 192: 35,-35 + 193: 36,-35 + 235: 30,-28 + 236: 31,-28 + 237: 32,-28 + 265: 25,-23 + 267: 27,-24 + 268: 28,-24 + 269: 29,-24 + 270: 30,-24 + 271: 31,-24 + 272: 32,-24 + 273: 33,-24 + 275: 35,-23 + 276: 36,-23 + 338: 29,-21 + 339: 30,-21 + 340: 31,-21 + 374: 28,-17 + 375: 29,-17 + 376: 30,-17 + 377: 31,-17 + 378: 32,-17 + 383: 25,-33 + 406: 46,-35 + 407: 45,-35 + 1687: 39,-27 + 1688: 40,-27 + 1725: 45,-23 + 1726: 46,-23 + 1796: 38,-17 + 1960: 44,-39 + 1999: 44,-46 + - node: + color: '#698C5FFF' + id: BrickTileWhiteLineN + decals: + 11168: 44,-3 + 11169: 45,-3 + 11170: 46,-3 + 11171: 47,-3 + 11172: 48,-3 + 11179: 43,0 + 11180: 44,0 + 11181: 46,1 + 11182: 47,1 + 11183: 48,1 + - node: + color: '#698C64FF' + id: BrickTileWhiteLineN + decals: + 11233: 43,-3 + - node: + color: '#80C71F99' + id: BrickTileWhiteLineN + decals: + 11089: -2,51 + 11090: -1,51 + 11091: 0,51 + 11092: 1,51 + 11093: 2,51 + 11094: 3,51 + - node: + color: '#80C71FB2' + id: BrickTileWhiteLineN + decals: + 840: 35,-52 + 841: 36,-52 + 882: 46,-56 + 883: 45,-56 + 884: 44,-56 + 885: 43,-56 + 886: 42,-56 + 887: 41,-56 + 888: 40,-56 + 889: 39,-56 + 896: 40,-52 + - node: + color: '#9FED5899' + id: BrickTileWhiteLineN + decals: + 3248: -47,-5 + - node: + color: '#A4610696' + id: BrickTileWhiteLineN + decals: + 587: -32,-11 + 588: -31,-11 + - node: + color: '#A4610699' + id: BrickTileWhiteLineN + decals: + 9824: -37,-19 + 9825: -36,-19 + 9826: -35,-19 + 9827: -34,-19 + 9828: -33,-19 + 9829: -32,-19 + 9866: -40,-21 + 9867: -39,-21 + 10150: -28,-20 + 10168: -26,-22 + 10200: -21,-22 + 10201: -22,-22 + - node: + color: '#A461069B' + id: BrickTileWhiteLineN + decals: + 9988: -34,-30 + 9989: -33,-30 + 10305: -27,-16 + 10312: -23,-16 + 10313: -22,-16 + 10314: -21,-16 + 10498: -28,-30 + 10499: -27,-30 + 10500: -26,-30 + 10567: -25,-37 + - node: + color: '#D381C99B' + id: BrickTileWhiteLineN + decals: + 6816: 3,-5 + - node: + color: '#D381C9B2' + id: BrickTileWhiteLineN + decals: + 921: 62,-30 + 924: 61,-30 + 925: 60,-30 + 1012: 72,-18 + 1013: 71,-18 + 1014: 70,-18 + 1018: 70,-27 + 1019: 71,-27 + 1020: 72,-27 + 1050: 71,-32 + 1051: 72,-32 + 1062: 73,-27 + 1089: 62,-18 + 1196: 54,-23 + 1197: 53,-23 + 1198: 52,-23 + 1334: 77,-24 + 1335: 78,-24 + 1364: 79,-24 + 1374: 73,-44 + 1375: 79,-44 + 1412: 74,-44 + 1448: 49,-27 + 1517: 52,-38 + 1530: 63,-40 + 1543: 58,-40 + 1544: 57,-40 + 1562: 58,-56 + 1582: 81,-36 + 1594: 85,-36 + 1618: 74,-50 + 1619: 70,-50 + 1621: 66,-51 + 1622: 67,-51 + 1623: 68,-51 + - node: + color: '#D381C9B3' + id: BrickTileWhiteLineN + decals: + 1120: 62,-20 + 1121: 61,-20 + 1122: 60,-20 + 1258: 53,-27 + 1259: 54,-27 + 1260: 55,-27 + 1261: 56,-27 + 1262: 59,-27 + 1263: 57,-27 + 1264: 58,-27 + 1265: 60,-27 + 1266: 61,-27 + 1267: 62,-27 + 1268: 63,-27 + 1269: 64,-27 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 738: 81,-2 + - node: + color: '#DE3A3A99' + id: BrickTileWhiteLineN + decals: + 5560: -18,32 + 5591: -15,36 + 5592: -14,36 + 5593: -13,36 + 5594: -12,36 + 5595: -11,36 + 5596: -10,36 + 5597: -9,36 + 5598: -7,37 + 5599: -6,37 + 5638: 1,33 + 5639: 2,33 + 5640: 3,33 + 5674: -2,39 + 5687: 2,39 + 6433: 13,41 + 6519: -19,36 + 6546: -5,17 + 6826: -8,-7 + 8270: -14,17 + 8271: -13,17 + 8272: -12,17 + - node: + color: '#DE3A3A9B' + id: BrickTileWhiteLineN + decals: + 2871: -58,5 + 2877: -60,4 + 5135: 4,21 + 5136: 5,21 + 5137: 6,21 + 5381: 5,24 + 5389: 9,24 + 5420: -14,27 + 5421: -13,27 + 5422: -12,27 + 5423: -11,27 + 5424: -9,27 + 5425: -10,27 + 5426: -7,27 + 5427: -8,27 + 5438: -4,28 + 5439: -3,28 + 5440: -2,28 + 5441: 0,28 + 5442: 1,28 + 5443: 2,28 + 5444: 3,28 + 5445: 4,28 + 5446: 5,28 + 5447: 6,28 + 5448: 7,28 + 5449: 8,28 + 5450: 9,28 + 5451: -1,28 + 5730: 7,41 + 5774: 7,32 + 5775: 8,32 + 5776: 10,32 + 5777: 9,32 + 5795: 12,35 + 5796: 13,35 + 5797: 14,35 + 5798: 15,35 + 5799: 16,35 + 5868: 22,36 + 5869: 23,36 + 5895: 23,42 + 5927: -14,24 + 5938: -18,27 + 5939: -19,27 + 10455: -22,-30 + 10456: -21,-30 + 10599: -15,39 + 10605: -15,41 + 10641: -6,41 + 10666: -11,41 + 10667: -10,41 + - node: + color: '#EFB34199' + id: BrickTileWhiteLineN + decals: + 3684: -23,-6 + 3685: -22,-6 + 3686: -21,-6 + 3747: -24,-10 + 3748: -23,-10 + 3749: -21,-10 + 3833: -68,10 + 3834: -67,10 + 3835: -66,10 + 3873: -22,-10 + 6655: -2,-25 + 6656: -1,-25 + 6686: -2,-19 + 6687: -1,-19 + 6688: 0,-19 + 6823: -5,-5 + 8572: 8,-56 + 8573: 7,-56 + 8574: 6,-56 + 8579: 4,-52 + 8580: 3,-52 + 8697: 8,-53 + 8704: 4,-60 + 8733: -9,-62 + 8734: -8,-62 + 8735: -7,-62 + 8736: -6,-62 + 8752: -2,-62 + 8753: -4,-63 + 8842: -24,-65 + 8891: -7,-77 + 8892: -6,-77 + 8893: -5,-77 + 8894: -4,-77 + 8895: -3,-77 + 8906: 1,-77 + 8907: 2,-77 + 8908: 3,-77 + 8909: 4,-77 + 8910: 5,-77 + 8927: 12,-71 + 8928: 13,-71 + 9321: -25,-65 + 9322: -26,-65 + - node: + color: '#EFB3419B' + id: BrickTileWhiteLineN + decals: + 3275: -47,-1 + 3276: -46,-1 + 3277: -45,-1 + 3278: -40,-1 + 3279: -39,-1 + 3280: -38,-1 + 3369: -43,3 + 3372: -41,4 + 3373: -40,4 + 3374: -39,4 + 3389: -46,5 + 3390: -45,5 + 4692: -2,-30 + 4693: -1,-30 + 4694: 0,-30 + 8648: 8,-61 + 8664: 8,-65 + 8665: 6,-66 + 8666: 5,-66 + 8667: 4,-66 + 8668: 3,-66 + 8669: 2,-66 + 8672: 0,-67 + 8673: -1,-67 + 8674: -2,-67 + 8675: -3,-67 + 8676: -4,-67 + 8677: -5,-67 + 8678: -6,-67 + 8679: -7,-67 + 8680: -8,-67 + 8681: -9,-67 + 8805: -14,-69 + 8806: -15,-69 + 8807: -16,-69 + 8808: -17,-69 + 8818: -17,-72 + 9525: -7,-54 + 9558: -12,-50 + 9559: -13,-50 + 9560: -14,-50 + 9561: -15,-50 + 9562: -16,-50 + 9705: -10,-34 + 9706: -9,-34 + 9707: -8,-34 + 9708: -7,-34 + 9709: -6,-34 + 9710: -5,-34 + 9784: 3,-35 + 9785: 4,-35 + 9786: 5,-35 + - node: + color: '#F9801D99' + id: BrickTileWhiteLineN + decals: + 10721: -6,45 + 10722: -7,45 + 10723: -8,45 + 10724: -10,45 + 10725: -11,45 + 10726: -9,45 + 10727: -12,45 + 10728: -13,45 + 10729: -14,45 + 10730: -15,45 + 10747: -19,45 + 10748: -20,45 + 10749: -21,45 + 10750: -23,45 + 10751: -22,45 + 10752: -24,45 + - node: + color: '#F9801DB2' + id: BrickTileWhiteLineN + decals: + 624: -10,24 + 625: -6,24 + 626: -2,24 + - node: + color: '#FA7500B2' + id: BrickTileWhiteLineN + decals: + 2049: 20,-17 + 2050: 19,-17 + 2060: 21,-22 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 772: 36,0 + 773: 37,0 + 774: 38,0 + 1862: 35,-9 + 1863: 36,-9 + 1864: 37,-9 + 1865: 38,-9 + 2461: 21,3 + 2469: 21,6 + 3445: -51,-5 + 5529: -9,32 + 7202: 8,-12 + 7203: 9,-12 + 7204: 10,-12 + 7205: 11,-12 + 7396: 13,25 + 8177: 17,1 + 8178: 16,1 + 8179: 15,1 + 8180: 15,1 + 8181: 14,1 + 8182: 13,1 + 8188: 13,6 + 8189: 12,6 + - node: + color: '#00FFFF66' + id: BrickTileWhiteLineS + decals: + 2042: 91,-31 + - node: + color: '#334E6D99' + id: BrickTileWhiteLineS + decals: + 3644: -31,3 + 3645: -32,3 + 3646: -33,3 + 3889: -12,1 + 6932: -4,-15 + 6933: 2,-15 + 7225: 6,-19 + 7226: 7,-19 + - node: + color: '#334E6D9B' + id: BrickTileWhiteLineS + decals: + 3933: -14,6 + 3934: -13,6 + 3935: -12,6 + 6751: 6,-10 + 6752: 5,-10 + 6753: 3,-9 + 6754: 2,-9 + 6755: 1,-9 + 6756: 0,-9 + 6757: -2,-9 + 6758: -1,-9 + 6759: -3,-9 + 6760: -4,-9 + 6761: -5,-9 + 6762: -7,-10 + 6763: -8,-10 + 7000: -8,-20 + 7002: -10,-18 + 7003: -11,-18 + 7004: -12,-18 + 7005: -13,-18 + 7030: -9,-13 + 7031: -8,-13 + 7032: -10,-13 + 7033: -11,-13 + 7034: -12,-13 + 7035: -13,-13 + 7108: -9,-27 + 7110: -11,-28 + 7181: 11,-15 + 7182: 10,-15 + 7183: 9,-15 + 7184: 8,-15 + 7185: 7,-15 + 7186: 6,-15 + 7334: 7,-28 + 7335: 8,-28 + 7336: 9,-28 + - node: + color: '#334E6DB3' + id: BrickTileWhiteLineS + decals: + 2214: -21,1 + 2215: -22,1 + - node: + color: '#3EB38899' + id: BrickTileWhiteLineS + decals: + 9435: 13,-45 + 9445: 12,-53 + - node: + color: '#3EB3889B' + id: BrickTileWhiteLineS + decals: + 9389: 6,-46 + 9390: 5,-46 + 9391: 4,-46 + 9398: 7,-49 + 9399: 6,-49 + - node: + color: '#52B4E98C' + id: BrickTileWhiteLineS + decals: + 1740: 36,-15 + 1746: 39,-15 + - node: + color: '#52B4E995' + id: BrickTileWhiteLineS + decals: + 11573: 37,-15 + 11574: 38,-15 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 696: 24,-15 + 697: 31,-15 + 698: 30,-15 + 699: 29,-15 + 700: 28,-15 + 701: 32,-15 + 702: 40,-15 + 703: 42,-15 + 704: 43,-15 + 705: 47,-15 + 706: 46,-15 + 707: 45,-15 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteLineS + decals: + 279: 41,-25 + 280: 40,-25 + 281: 39,-25 + 282: 38,-25 + 283: 37,-25 + 284: 34,-26 + 285: 32,-26 + 286: 31,-26 + 287: 30,-26 + 288: 29,-26 + 289: 28,-26 + 290: 27,-26 + 291: 24,-26 + 307: 21,-28 + 354: 25,-21 + 357: 27,-19 + 358: 28,-19 + 359: 29,-19 + 360: 30,-19 + 361: 31,-19 + 362: 33,-19 + 363: 32,-19 + 401: 19,-31 + 402: 20,-31 + 403: 21,-31 + 1704: 44,-30 + 1751: 44,-21 + 1752: 45,-21 + - node: + color: '#52B4E9B3' + id: BrickTileWhiteLineS + decals: + 79: 35,-44 + 97: 35,-47 + 98: 36,-47 + 101: 36,-50 + 102: 35,-50 + 135: 40,-50 + 165: 36,-33 + 166: 37,-33 + 167: 38,-33 + 197: 36,-37 + 198: 35,-37 + 199: 33,-37 + 200: 31,-37 + 201: 30,-37 + 202: 32,-37 + 203: 34,-37 + 204: 29,-37 + 240: 32,-31 + 241: 31,-31 + 242: 30,-31 + 245: 25,-31 + 246: 26,-31 + 334: 31,-22 + 335: 30,-22 + 336: 29,-22 + 387: 25,-37 + 1451: 49,-29 + 1798: 38,-20 + 1943: 11,-35 + 1944: 10,-35 + 1962: 46,-40 + 1963: 45,-40 + 2001: 44,-48 + 2262: 20,-28 + 2263: 19,-28 + - node: + color: '#698C5FFF' + id: BrickTileWhiteLineS + decals: + 11166: 43,-11 + 11173: 45,-10 + 11174: 47,-11 + 11175: 48,-11 + 11184: 43,-1 + 11185: 44,-1 + 11186: 45,-1 + 11187: 46,-1 + 11188: 47,-1 + 11189: 48,-1 + - node: + color: '#80C71F99' + id: BrickTileWhiteLineS + decals: + 11097: -2,49 + 11098: -1,49 + 11099: 0,49 + 11100: 1,49 + 11101: 2,49 + 11102: 3,49 + - node: + color: '#80C71FB2' + id: BrickTileWhiteLineS + decals: + 839: 35,-56 + 875: 39,-61 + 876: 42,-57 + 877: 43,-57 + 878: 44,-57 + 879: 45,-57 + 880: 46,-57 + 895: 40,-54 + - node: + color: '#9FED5899' + id: BrickTileWhiteLineS + decals: + 3246: -47,-9 + - node: + color: '#A4610696' + id: BrickTileWhiteLineS + decals: + 574: -31,-17 + - node: + color: '#A4610699' + id: BrickTileWhiteLineS + decals: + 9840: -32,-28 + 9841: -35,-28 + 9842: -36,-28 + 9843: -34,-28 + 9844: -33,-28 + 9849: -38,-32 + 9850: -39,-32 + 9851: -40,-32 + 9852: -41,-32 + 10159: -26,-28 + 10160: -28,-28 + 10161: -27,-28 + 10209: -21,-28 + 10210: -22,-28 + - node: + color: '#A461069B' + id: BrickTileWhiteLineS + decals: + 9992: -34,-32 + 9993: -33,-32 + 9994: -32,-32 + 10308: -27,-18 + 10321: -21,-20 + 10322: -22,-20 + 10323: -23,-20 + 10324: -24,-20 + 10507: -25,-35 + 10508: -26,-35 + 10511: -28,-31 + 10568: -25,-39 + - node: + color: '#B02E26FF' + id: BrickTileWhiteLineS + decals: + 755: 76.4991,-15.995751 + 757: 77.48414,-15.995751 + 759: 78.487724,-16.014557 + 761: 79.49758,-16.002022 + - node: + color: '#CC5100B2' + id: BrickTileWhiteLineS + decals: + 693: 19,-15 + 694: 20,-15 + 695: 21,-15 + - node: + color: '#CC5100CC' + id: BrickTileWhiteLineS + decals: + 763: 22,-15 + - node: + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 715: 62,-16 + 716: 63,-16 + 717: 64,-16 + 718: 68,-16 + 719: 69,-16 + 720: 70,-16 + 723: 51,-15 + 724: 60,-15 + 727: 72,-15 + - node: + color: '#D381C9B2' + id: BrickTileWhiteLineS + decals: + 926: 61,-32 + 927: 60,-32 + 998: 70,-25 + 999: 71,-25 + 1000: 72,-25 + 1001: 73,-25 + 1025: 70,-32 + 1026: 71,-32 + 1027: 72,-32 + 1028: 73,-32 + 1056: 72,-27 + 1057: 71,-27 + 1095: 57,-25 + 1096: 58,-25 + 1097: 59,-25 + 1098: 60,-25 + 1099: 61,-25 + 1100: 62,-25 + 1163: 52,-21 + 1164: 54,-21 + 1165: 59,-15 + 1166: 58,-15 + 1167: 57,-15 + 1168: 56,-15 + 1200: 52,-25 + 1201: 53,-25 + 1202: 54,-25 + 1219: 66,-16 + 1326: 69,-25 + 1348: 78,-26 + 1350: 81,-26 + 1381: 79,-48 + 1531: 63,-42 + 1545: 58,-42 + 1546: 59,-42 + 1547: 60,-42 + 1566: 58,-58 + 1584: 81,-38 + 1588: 85,-37 + 1626: 66,-54 + 1627: 67,-54 + 1628: 68,-54 + 1629: 69,-54 + 1630: 70,-54 + 1631: 71,-54 + 1640: 73,-58 + - node: + color: '#D381C9B3' + id: BrickTileWhiteLineS + decals: + 1127: 60,-23 + 1128: 61,-23 + 1129: 62,-23 + 1138: 53,-21 + 1246: 64,-28 + 1247: 63,-28 + 1248: 62,-28 + 1249: 61,-28 + 1250: 60,-28 + 1251: 59,-28 + 1252: 58,-28 + 1253: 57,-28 + 1254: 56,-28 + 1255: 55,-28 + 1256: 54,-28 + 1257: 53,-28 + 1457: 49,-27 + 1487: 57,-54 + - node: + color: '#DE3A3A99' + id: BrickTileWhiteLineS + decals: + 5557: -18,29 + 5581: -6,35 + 5582: -7,35 + 5583: -9,34 + 5584: -10,34 + 5585: -11,34 + 5586: -12,34 + 5587: -14,34 + 5588: -13,34 + 5589: -15,34 + 5645: 2,30 + 5679: -2,35 + 5685: 2,35 + 6521: -19,34 + 6541: -5,13 + 8275: -14,16 + 8278: -12,15 + - node: + color: '#DE3A3A9B' + id: BrickTileWhiteLineS + decals: + 2873: -61,3 + 2875: -59,3 + 5383: 5,23 + 5390: 9,23 + 5394: 9,26 + 5395: 5,26 + 5396: 8,26 + 5397: 7,26 + 5398: 6,26 + 5399: 3,26 + 5400: 4,26 + 5401: 2,26 + 5402: 1,26 + 5403: 0,26 + 5404: -1,26 + 5405: -2,26 + 5406: -3,26 + 5407: -4,26 + 5408: -5,26 + 5409: -6,26 + 5410: -7,26 + 5411: -8,26 + 5412: -9,26 + 5413: -10,26 + 5414: -11,26 + 5415: -12,26 + 5416: -13,26 + 5417: -14,26 + 5739: 8,34 + 5740: 7,34 + 5783: 8,30 + 5784: 9,30 + 5785: 10,30 + 5786: 11,30 + 5787: 12,30 + 5788: 13,30 + 5789: 14,30 + 5790: 15,30 + 5791: 16,30 + 5792: 18,32 + 5805: 7,30 + 5876: 24,32 + 5877: 23,32 + 5878: 22,32 + 5896: 23,38 + 5929: -14,22 + 5930: -18,22 + 5931: -19,22 + 10458: -21,-32 + 10470: -22,-32 + 10601: -15,38 + 10606: -15,41 + 10639: -6,39 + 10669: -11,38 + - node: + color: '#DE3A3AB3' + id: BrickTileWhiteLineS + decals: + 1923: 26,28 + 1924: 25,28 + 1925: 24,28 + - node: + color: '#EFB34199' + id: BrickTileWhiteLineS + decals: + 3690: -21,-8 + 3691: -22,-8 + 3692: -23,-8 + 3739: -22,-14 + 3740: -24,-14 + 3741: -23,-14 + 3832: -67,12 + 6662: -1,-28 + 6680: 0,-23 + 6681: -1,-23 + 6682: -2,-23 + 8585: 4,-58 + 8586: 5,-58 + 8587: 6,-58 + 8590: 8,-59 + 8701: 8,-54 + 8739: -9,-65 + 8740: -8,-65 + 8741: -7,-65 + 8742: -6,-65 + 8749: -2,-65 + 8754: -4,-64 + 8850: -26,-72 + 8851: -25,-72 + 8852: -24,-72 + 8896: -3,-78 + 8897: -4,-78 + 8898: -5,-78 + 8899: -7,-78 + 8900: -6,-78 + 8901: 1,-78 + 8902: 2,-78 + 8903: 3,-78 + 8904: 4,-78 + 8905: 5,-78 + 8922: 8,-77 + 8934: 13,-74 + - node: + color: '#EFB3419B' + id: BrickTileWhiteLineS + decals: + 3378: -39,1 + 3379: -40,1 + 3380: -41,1 + 3384: -46,1 + 3385: -45,1 + 3391: -43,2 + 8651: 8,-63 + 8801: -17,-70 + 8802: -16,-70 + 8803: -14,-70 + 8804: -15,-70 + 8811: -15,-74 + 8812: -16,-74 + 8813: -17,-74 + 9530: -7,-58 + 9531: -8,-58 + 9568: -16,-58 + 9569: -15,-58 + 9570: -14,-58 + 9571: -13,-58 + 9572: -12,-58 + 9713: -5,-40 + 9714: -6,-40 + 9715: -7,-40 + 9716: -8,-40 + 9717: -9,-40 + 9718: -10,-40 + 9789: 3,-37 + 9790: 4,-37 + 9791: 5,-37 + - node: + color: '#F9801D99' + id: BrickTileWhiteLineS + decals: + 10734: -15,43 + 10735: -14,43 + 10736: -13,43 + 10737: -11,43 + 10738: -12,43 + 10739: -9,43 + 10740: -10,43 + 10741: -8,43 + 10742: -7,43 + 10743: -6,43 + 10756: -24,43 + 10757: -23,43 + 10758: -22,43 + 10759: -21,43 + 10760: -19,43 + 10761: -20,43 + - node: + color: '#F9801DB2' + id: BrickTileWhiteLineS + decals: + 636: -10,23 + 637: -6,23 + 638: -2,23 + - node: + color: '#F9FFFEFF' + id: BrickTileWhiteLineS + decals: + 754: 76,-16 + 756: 77.00089,-15.995751 + 758: 77.98593,-15.995751 + 760: 79.00206,-16.002022 + - node: + color: '#FA7500B2' + id: BrickTileWhiteLineS + decals: + 2052: 19,-19 + 2057: 21,-23 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 766: 39,-3 + 767: 38,-3 + 768: 37,-3 + 769: 36,-3 + 1868: 38,-6 + 1869: 37,-6 + 1870: 36,-6 + 1871: 35,-6 + 2464: 21,2 + 2465: 22,2 + 2472: 21,5 + 3451: -51,-9 + 5526: -9,29 + 7401: 13,23 + 8171: 12,1 + 8172: 13,1 + 8173: 14,1 + 8174: 15,1 + 8175: 16,1 + 8176: 17,1 + 8187: 13,5 + 8204: 17,5 + - node: + color: '#334E6D99' + id: BrickTileWhiteLineW + decals: + 3648: -34,4 + 3649: -34,5 + 3883: -13,3 + 3884: -13,2 + 6930: -5,-13 + 6931: -5,-14 + 7223: 5,-18 + 7245: 11,-18 + - node: + color: '#334E6D9B' + id: BrickTileWhiteLineW + decals: + 3936: -15,7 + 3937: -15,8 + 4960: 11,-10 + 4961: 11,-8 + 6768: -6,-8 + 7001: -9,-19 + 7007: -14,-17 + 7008: -14,-16 + 7009: -14,-14 + 7010: -14,-13 + 7011: -14,-15 + 7027: -7,-16 + 7028: -7,-15 + 7029: -7,-14 + 7113: -12,-27 + 7114: -12,-26 + 7188: 5,-14 + 7189: 5,-13 + 7331: 6,-26 + 7332: 6,-27 + - node: + color: '#334E6DB2' + id: BrickTileWhiteLineW + decals: + 2351: -3,-6 + - node: + color: '#334E6DB3' + id: BrickTileWhiteLineW + decals: + 2203: -24,7 + 2204: -24,6 + 2205: -24,5 + 2206: -24,4 + 2216: -24,2 + - node: + color: '#3EB38899' + id: BrickTileWhiteLineW + decals: + 9430: 12,-42 + 9431: 12,-43 + 9432: 12,-44 + 9442: 11,-52 + - node: + color: '#3EB3889B' + id: BrickTileWhiteLineW + decals: + 9392: 3,-45 + 9393: 3,-44 + 9394: 3,-43 + - node: + color: '#52B4E999' + id: BrickTileWhiteLineW + decals: + 6832: 5,-8 + - node: + color: '#52B4E9B2' + id: BrickTileWhiteLineW + decals: + 220: 39,-35 + 292: 24,-24 + 309: 18,-27 + 310: 18,-26 + 366: 34,-20 + 1705: 43,-29 + 1750: 41,-20 + 1978: 18,-35 + 1979: 18,-34 + - node: + color: '#52B4E9B3' + id: BrickTileWhiteLineW + decals: + 81: 34,-43 + 82: 34,-42 + 83: 34,-40 + 121: 34,-41 + 122: 39,-39 + 123: 39,-40 + 124: 39,-41 + 125: 39,-42 + 126: 39,-43 + 127: 39,-44 + 128: 39,-45 + 129: 39,-46 + 130: 39,-47 + 131: 39,-48 + 132: 39,-49 + 161: 35,-28 + 162: 35,-31 + 163: 35,-32 + 168: 39,-37 + 190: 39,-34 + 191: 39,-36 + 206: 28,-36 + 207: 28,-35 + 208: 28,-34 + 253: 24,-29 + 384: 24,-34 + 385: 24,-35 + 388: 24,-36 + 410: 44,-36 + 1453: 48,-28 + 1685: 38,-28 + 1686: 38,-29 + 1731: 44,-25 + 1732: 44,-24 + 1799: 37,-19 + 1942: 12,-36 + 1966: 43,-40 + 1998: 43,-47 + - node: + color: '#698C5FFF' + id: BrickTileWhiteLineW + decals: + 11165: 42,-6 + - node: + color: '#698C64FF' + id: BrickTileWhiteLineW + decals: + 11228: 42,-8 + 11229: 42,-9 + 11230: 42,-7 + 11231: 42,-4 + 11232: 42,-5 + 11260: 42,-10 + - node: + color: '#80C71F99' + id: BrickTileWhiteLineW + decals: + 11096: -3,50 + - node: + color: '#80C71FB2' + id: BrickTileWhiteLineW + decals: + 834: 34,-55 + 835: 34,-54 + 836: 34,-53 + 891: 38,-57 + 894: 39,-53 + 907: 43,-60 + 908: 46,-60 + - node: + color: '#9FED5899' + id: BrickTileWhiteLineW + decals: + 3247: -48,-7 + - node: + color: '#A4610696' + id: BrickTileWhiteLineW + decals: + 581: -33,-16 + 582: -33,-15 + 583: -33,-14 + 584: -33,-13 + 585: -33,-12 + - node: + color: '#A4610699' + id: BrickTileWhiteLineW + decals: + 9854: -42,-31 + 9855: -42,-30 + 9856: -42,-29 + 9858: -41,-27 + 9859: -41,-26 + 9860: -41,-25 + 9861: -41,-24 + 9862: -41,-23 + 9863: -41,-22 + 9868: -38,-20 + 10151: -29,-21 + 10152: -29,-22 + 10153: -29,-23 + 10154: -29,-25 + 10155: -29,-26 + 10156: -29,-27 + 10202: -23,-23 + 10203: -23,-24 + 10204: -23,-25 + 10205: -23,-27 + 10206: -23,-26 + 10593: -29,-24 + - node: + color: '#A461069B' + id: BrickTileWhiteLineW + decals: + 9991: -35,-31 + 10309: -28,-17 + 10325: -24,-19 + 10326: -24,-18 + 10327: -24,-17 + 10512: -27,-32 + 10513: -27,-33 + 10515: -27,-34 + 10566: -26,-38 + - node: + color: '#B02E26FF' + id: BrickTileWhiteLineW + decals: + 740: 75,-12 + 742: 75.00178,-11.00123 + 744: 74.99999,-9.99389 + 746: 74.99999,-8.997181 + 748: 74.99999,-8.000348 + 750: 74.99999,-6.99783 + 752: 74.99999,-5.9948525 + - node: + color: '#CC5100B2' + id: BrickTileWhiteLineW + decals: + 350: 24,-18 + 351: 24,-19 + 352: 24,-20 + - node: + color: '#D381C99B' + id: BrickTileWhiteLineW + decals: + 6818: 2,-6 + - node: + color: '#D381C9B2' + id: BrickTileWhiteLineW + decals: + 971: 59,-35 + 972: 59,-36 + 1021: 69,-29 + 1022: 69,-30 + 1023: 69,-31 + 1052: 73,-31 + 1053: 73,-30 + 1054: 73,-29 + 1055: 73,-28 + 1072: 69,-19 + 1073: 69,-22 + 1090: 57,-18 + 1091: 57,-19 + 1092: 57,-20 + 1094: 56,-24 + 1162: 51,-18 + 1220: 65,-20 + 1221: 65,-19 + 1222: 65,-18 + 1290: 68,-36 + 1293: 65,-26 + 1294: 65,-25 + 1295: 65,-24 + 1296: 65,-23 + 1297: 65,-29 + 1298: 65,-30 + 1299: 65,-31 + 1300: 65,-32 + 1301: 65,-33 + 1302: 65,-34 + 1303: 65,-35 + 1304: 65,-36 + 1305: 65,-37 + 1338: 76,-25 + 1346: 76,-26 + 1372: 70,-45 + 1373: 70,-46 + 1395: 76,-42 + 1396: 76,-41 + 1397: 76,-40 + 1398: 76,-38 + 1399: 76,-37 + 1506: 55,-37 + 1514: 51,-39 + 1515: 51,-40 + 1564: 57,-57 + 1583: 80,-37 + 1624: 65,-53 + 1641: 72,-56 + - node: + color: '#D381C9B3' + id: BrickTileWhiteLineW + decals: + 944: 69,-37 + 1124: 59,-21 + 1125: 59,-22 + 1135: 51,-19 + 1136: 51,-20 + 1242: 65,-42 + 1243: 65,-41 + 1244: 65,-40 + 1245: 65,-39 + 1458: 50,-28 + 1470: 65,-48 + 1471: 65,-47 + 1472: 65,-46 + 1473: 65,-45 + 1474: 65,-44 + 1485: 56,-49 + - node: + color: '#DE3A3A99' + id: BrickTileWhiteLineW + decals: + 5546: -15,31 + 5547: -15,30 + 5553: -19,31 + 5554: -19,30 + 5590: -16,35 + 5646: 0,32 + 5681: -3,36 + 5682: -3,37 + 5683: -3,38 + 5686: 1,36 + 6434: 12,38 + 6435: 12,39 + 6436: 12,40 + 6520: -20,35 + 6536: -6,16 + 6537: -6,15 + 6538: -6,14 + 6825: -9,-8 + - node: + color: '#DE3A3A9B' + id: BrickTileWhiteLineW + decals: + 2874: -62,4 + 5428: -6,28 + 5429: -6,29 + 5430: -6,30 + 5431: -6,32 + 5432: -6,31 + 5668: 0,31 + 5731: 6,40 + 5732: 6,39 + 5733: 6,38 + 5734: 6,37 + 5735: 6,36 + 5736: 6,35 + 5782: 6,31 + 5802: 11,34 + 5803: 11,33 + 5880: 21,33 + 5881: 21,34 + 5882: 21,35 + 5883: 24,37 + 5892: 22,39 + 5893: 22,40 + 5894: 22,41 + 5928: -15,23 + 10457: -23,-31 + 10640: -7,40 + 10664: -12,40 + 10665: -12,39 + - node: + color: '#EFB34199' + id: BrickTileWhiteLineW + decals: + 3694: -24,-7 + 3743: -25,-13 + 3744: -25,-12 + 3745: -25,-11 + 3828: -68,17 + 3829: -68,13 + 6663: -2,-27 + 6683: -3,-22 + 6684: -3,-21 + 6685: -3,-20 + 6822: -6,-6 + 8450: -4,-56 + 8451: -4,-58 + 8452: -4,-57 + 8581: 3,-55 + 8582: 3,-56 + 8583: 3,-57 + 8698: 9,-52 + 8709: 3,-63 + 8710: 3,-62 + 8711: 3,-61 + 8743: -10,-64 + 8744: -10,-63 + 8787: -14,-64 + 8788: -14,-63 + 8835: -21,-70 + 8843: -27,-66 + 8844: -27,-67 + 8845: -27,-68 + 8846: -27,-70 + 8847: -27,-69 + 8848: -27,-71 + 8883: -11,-73 + 8884: -11,-74 + 8885: -11,-75 + 8886: -11,-76 + 8911: 7,-77 + 8912: 7,-76 + 8924: 8,-74 + 8925: 8,-73 + 8929: 11,-72 + 8930: 11,-73 + 8931: 11,-74 + - node: + color: '#EFB3419B' + id: BrickTileWhiteLineW + decals: + 3386: -47,2 + 3387: -47,3 + 3388: -47,4 + 8649: 7,-62 + 8689: -10,-68 + 8816: -18,-73 + 9523: -8,-55 + 9533: -9,-57 + 9563: -17,-51 + 9564: -17,-52 + 9565: -17,-54 + 9566: -17,-57 + 9567: -17,-53 + 9635: -17,-55 + 9636: -17,-56 + 9704: -11,-35 + 9719: -11,-39 + 9787: 2,-36 + - node: + color: '#F9801D99' + id: BrickTileWhiteLineW + decals: + 10733: -16,44 + 10755: -25,44 + - node: + color: '#F9FFFEFF' + id: BrickTileWhiteLineW + decals: + 741: 75.001724,-11.502719 + 743: 75.00178,-10.499742 + 745: 74.99999,-9.49867 + 747: 74.99999,-8.501837 + 749: 74.99999,-7.4988594 + 751: 74.99999,-6.5026097 + 753: 74.99999,-5.487095 + - node: + color: '#FA7500B2' + id: BrickTileWhiteLineW + decals: + 2053: 20,-20 + 2054: 20,-21 + 2055: 20,-22 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 770: 35,-2 + 771: 35,-1 + 802: -47,-16 + 803: -47,-15 + 804: -47,-14 + 805: -47,-13 + 806: -47,-13 + 807: -47,-12 + 823: 10,-22 + 1866: 39,-8 + 1867: 39,-7 + 3446: -52,-6 + 3447: -52,-7 + 3448: -52,-8 + 5527: -10,30 + 5528: -10,31 + 7397: 12,24 + 8190: 11,5 + 8191: 11,4 + 8192: 11,3 + 8193: 11,2 + 8203: 17,6 + 10997: -10,52 + - node: + color: '#FF7C41FF' + id: BushATwo + decals: + 13402: 33.51244,12.912753 + - node: + color: '#FF7C41FF' + id: BushCTwo + decals: + 13403: 34.792698,15.067568 + - node: + color: '#FF7C41FF' + id: Bushg4 + decals: + 13406: 36.915653,12.2808895 + - node: + color: '#FF7C41FF' + id: Bushi1 + decals: + 13404: 31.01675,11.875849 + - node: + color: '#FF7C41FF' + id: Bushk2 + decals: + 13405: 29.169289,12.97756 + - node: + angle: 1.5707963267948966 rad + color: '#EFB341B2' + id: Caution + decals: + 8966: 1.0022542,-77.47222 + 8969: 0.9722494,-74.97533 + - node: + angle: 4.71238898038469 rad + color: '#EFB341B2' + id: Caution + decals: + 8967: -2.9788451,-77.50657 + 8968: -2.9859078,-75.00137 + - node: + color: '#1D1D217F' + id: CheckerNESW + decals: + 1810: 34,-8 + 1811: 33,-8 + 1812: 33,-9 + 1813: 34,-9 + 1814: 35,-9 + 1815: 35,-10 + 1816: 34,-10 + 1817: 33,-10 + 1818: 37,-10 + 1819: 36,-9 + 1820: 36,-10 + 1821: 37,-9 + 1822: 38,-9 + 1823: 38,-10 + 1824: 39,-9 + 1825: 40,-9 + 1826: 40,-8 + 1827: 39,-8 + 1828: 39,-7 + 1829: 40,-7 + 1830: 40,-6 + 1831: 39,-6 + 1832: 38,-6 + 1833: 37,-6 + 1834: 36,-6 + 1835: 35,-6 + 1836: 34,-6 + 1837: 34,-7 + 1838: 33,-7 + 1839: 33,-6 + 1840: 35,-5 + 1841: 36,-5 + 1842: 34,-5 + 1843: 33,-5 + 2442: 20,5 + 2443: 21,5 + 2444: 22,5 + 2445: 22,6 + 2446: 21,6 + 2447: 20,6 + - node: + color: '#52B4E966' + id: CheckerNESW + decals: + 9694: 1,-48 + - node: + color: '#79150066' + id: CheckerNESW + decals: + 9692: 1,-50 + 9693: 1,-49 + - node: + color: '#8C347F66' + id: CheckerNESW + decals: + 3431: -50,-5 + 3432: -51,-5 + 3433: -52,-5 + 3434: -52,-6 + 3435: -52,-7 + 3436: -52,-8 + 3437: -52,-9 + 3438: -51,-9 + 3439: -50,-9 + 3440: -50,-8 + 3441: -50,-7 + 3442: -50,-6 + - node: + color: '#D381C996' + id: CheckerNESW + decals: + 35: 68,-37 + - node: + color: '#D381C9B2' + id: CheckerNESW + decals: + 1064: 71,-28 + 1065: 72,-28 + 1066: 72,-29 + 1067: 71,-29 + 1068: 71,-30 + 1069: 72,-30 + 1070: 72,-31 + 1071: 71,-31 + 1330: 60.000946,-35.520203 + 1331: 61.000946,-35.488953 + 1332: 62.000946,-35.504578 + - node: + color: '#D381C9B3' + id: CheckerNESW + decals: + 1234: 70,-26 + 1235: 71,-26 + 1236: 72,-26 + 1237: 73,-26 + 1456: 49,-28 + - node: + color: '#F38BAA7F' + id: CheckerNESW + decals: + 2448: 20,3 + 2449: 21,3 + 2450: 22,3 + 2451: 22,2 + 2452: 21,2 + 2453: 20,2 + - node: + color: '#FA75007F' + id: CheckerNESW + decals: + 2083: 18,-20 + 2084: 19,-20 + 2085: 19,-21 + 2086: 19,-22 + 2087: 19,-23 + 2088: 18,-23 + - node: + color: '#169C9C66' + id: CheckerNWSE + decals: + 9695: 1,-48 + - node: + color: '#334E6D66' + id: CheckerNWSE + decals: + 7192: 8,-12 + 7193: 8,-13 + 7194: 9,-13 + 7195: 9,-12 + 7196: 10,-12 + 7197: 10,-13 + 7198: 12,-13 + 7199: 11,-12 + 7200: 12,-12 + 7201: 11,-13 + - node: + color: '#3AB3DA66' + id: CheckerNWSE + decals: + 7386: 12,23 + 7387: 12,24 + 7388: 12,25 + 7389: 13,25 + 7390: 13,23 + 7391: 14,23 + 7392: 14,24 + 7393: 14,25 + 10989: -10,53 + 10990: -9,53 + 10991: -9,51 + 10992: -10,52 + 10993: -10,51 + 10994: -9,52 + - node: + color: '#3AB3DA7F' + id: CheckerNWSE + decals: + 2454: 20,3 + 2455: 21,3 + 2456: 22,3 + 2457: 22,2 + 2458: 21,2 + 2459: 20,2 + - node: + color: '#52B4E97F' + id: CheckerNWSE + decals: + 2089: 18,-20 + 2090: 19,-20 + 2091: 19,-21 + 2092: 19,-22 + 2093: 19,-23 + 2094: 18,-23 + - node: + color: '#52B4E996' + id: CheckerNWSE + decals: + 46: 49,-38 + 47: 49,-37 + 48: 49,-36 + 49: 49,-35 + 50: 49,-34 + - node: + color: '#52B4E9B3' + id: CheckerNWSE + decals: + 1455: 49,-28 + - node: + color: '#B02E2666' + id: CheckerNWSE + decals: + 7865: 25,-10 + 7866: 25,-11 + 7867: 26,-11 + 7868: 27,-10 + 7869: 27,-11 + 7870: 28,-11 + 7871: 28,-10 + 7872: 29,-10 + 7873: 29,-11 + 7874: 30,-11 + 7875: 30,-10 + 7876: 31,-10 + 7877: 31,-11 + 7878: 25,-9 + 7879: 25,-8 + 7880: 26,-8 + 7881: 27,-8 + 7882: 27,-7 + 7883: 27,-9 + 7884: 25,-7 + 7885: 25,-6 + 7886: 27,-6 + 7887: 27,-5 + 7888: 26,-5 + 7889: 25,-5 + 7890: 25,-4 + 7891: 26,-4 + 7892: 27,-3 + 7893: 26,-3 + 7894: 25,-3 + 7895: 25,-2 + 7896: 26,-2 + 7897: 27,-2 + 7898: 27,-1 + 7899: 26,-1 + 7900: 25,-1 + 7901: 21,-11 + 7902: 21,-10 + 7903: 21,-9 + 7904: 21,-8 + 7905: 21,-7 + 7906: 20,-7 + 7907: 19,-7 + 7908: 18,-7 + 7909: 18,-8 + 7910: 18,-9 + 7911: 18,-10 + 7912: 18,-11 + 7913: 19,-11 + 7914: 20,-11 + 7915: 21,-5 + 7916: 21,-4 + 7917: 22,-4 + 7918: 23,-4 + 7919: 24,-4 + 7920: 20,-5 + 7921: 20,-4 + 7922: 19,-4 + 7923: 19,-5 + 7924: 18,-5 + 7925: 18,-4 + 7926: 18,-3 + 7927: 18,-2 + 7928: 18,-1 + 9690: 1,-49 + 9691: 1,-50 + - node: + color: '#DE3A3A66' + id: CheckerNWSE + decals: + 5510: -10,32 + 5511: -9,32 + 5512: -8,32 + 5513: -8,31 + 5514: -8,30 + 5515: -8,29 + 5516: -9,29 + 5517: -10,29 + 5518: -10,30 + 5519: -10,31 + 5540: -11,32 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimCornerNe + decals: + 13361: 36,14 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimCornerNw + decals: + 13360: 30,14 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimCornerSe + decals: + 13364: 30,12 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimCornerSw + decals: + 13362: 36,13 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimInnerNe + decals: + 13381: 36,13 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimInnerNw + decals: + 13382: 30,12 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimInnerSe + decals: + 13379: 30,14 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimInnerSw + decals: + 13380: 36,14 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimLineE + decals: + 13378: 30,13 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimLineN + decals: + 13365: 29,12 + 13366: 31,14 + 13367: 32,14 + 13368: 33,14 + 13369: 34,14 + 13370: 35,14 + 13371: 37,13 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimLineS + decals: + 13363: 29,12 + 13372: 37,13 + 13373: 35,14 + 13374: 34,14 + 13375: 33,14 + 13376: 32,14 + 13377: 31,14 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimLineW + decals: + 13359: 30,13 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 1733: 87,-42 + 1734: 83,-42 + 1921: 116,-43 + 2369: -12,-77 + 2370: -15,-77 + 2371: 13,-77 + 2372: 10,-77 + 2406: 1,-28 + 2435: 24,16 + 2508: 32,-6 + 2509: 32,-10 + - node: + color: '#52B4E999' + id: DeliveryGreyscale + decals: + 118: 39,-38 + 119: 40,-38 + 120: 41,-38 + 182: 34,-30 + 183: 35,-27 + - node: + color: '#52B4E9B3' + id: DeliveryGreyscale + decals: + 209: 30,-33 + 210: 32,-33 + 232: 28,-29 + 233: 34,-29 + - node: + color: '#52B4E9CC' + id: DeliveryGreyscale + decals: + 263: 28,-30 + 298: 23,-25 + 299: 23,-26 + 345: 25,-16 + 346: 27,-16 + 347: 33,-16 + 348: 35,-16 + - node: + color: '#A46106B2' + id: DeliveryGreyscale + decals: + 10302: -29,-12 + - node: + color: '#D381C9CC' + id: DeliveryGreyscale + decals: + 1270: 67,-38 + 1271: 66,-38 + 1272: 65,-38 + 1273: 65,-43 + 1274: 66,-43 + 1275: 67,-43 + 1276: 68,-24 + 1277: 67,-22 + 1278: 66,-22 + 1279: 65,-22 + 1288: 52,-28 + 1289: 52,-27 + 1292: 68,-23 + 1325: 68,-25 + 1406: 78,-43 + 1407: 77,-43 + 1408: 76,-43 + 1409: 78,-39 + 1410: 77,-39 + 1411: 76,-39 + 1475: 66,-49 + 1476: 67,-49 + 1477: 65,-49 + 1494: 54,-49 + 1495: 54,-53 + 1496: 60,-53 + 1503: 56,-38 + 1504: 56,-36 + 1559: 56,-57 + 1560: 54,-57 + 1574: 52,-59 + - node: + color: '#D69949B4' + id: DeliveryGreyscale + decals: + 12590: 41,-15 + 12591: 41,-14 + 12592: 41,-13 + 12593: 55,-15 + 12594: 55,-14 + 12595: 55,-13 + 12596: 73,-15 + 12597: 73,-14 + 12598: 73,-13 + 12599: 18,-13 + 12600: 18,-14 + 12601: 18,-15 + - node: + color: '#DE3A3A99' + id: DeliveryGreyscale + decals: + 6511: 5,36 + 6512: -6,33 + 6513: -5,33 + - node: + color: '#DE3A3A9B' + id: DeliveryGreyscale + decals: + 5453: -10,25 + 5454: -6,25 + 5455: -2,25 + - node: + color: '#EFB34196' + id: DeliveryGreyscale + decals: + 13339: -1,2 + 13340: -1,-33 + 13341: -1,-52 + 13342: 15,-11 + 13343: 15,-24 + 13344: 8,-31 + 13347: -17,-21 + 13348: -16,-21 + 13349: -18,-21 + 13350: -10,-30 + 13351: -10,-32 + 13352: -10,-31 + 13353: 13,-2 + 13354: -15,-2 + 13355: -19,-2 + 13356: -53,-2 + - node: + color: '#EFB34199' + id: DeliveryGreyscale + decals: + 2895: -53,-3 + 2896: -53,-1 + 2897: -76,-17 + 2898: -76,-19 + 2899: -69,-19 + 2900: -69,-17 + 2901: -78,-15 + 2902: -80,-15 + 2903: -80,-5 + 2904: -82,-5 + 2905: -78,-3 + 2906: -71,-3 + 2907: -71,7 + 2908: -80,9 + 2909: -82,9 + 2910: -67,11 + 2911: -67,19 + 2912: -67,21 + 2913: -61,2 + 6605: 1,25 + 6606: -6,38 + 6637: -16,20 + 6638: -14,18 + 6639: -15,15 + 6640: -12,14 + 6641: -7,16 + 6642: -7,13 + 6643: -5,18 + 6644: 13,-26 + 6645: 14,-24 + 6646: 16,-24 + 6647: 8,-32 + 6648: 8,-30 + 6649: 4,-34 + 6650: 0,-33 + 6651: -2,-33 + 6652: -1,-29 + 6653: -1,-24 + 8260: 18,2 + 8261: 16,2 + 8262: 14,2 + 8263: 18,0 + 8264: 15,5 + 8265: 12,7 + 8304: 7,5 + 8305: 7,8 + 8306: 7,11 + 8307: 7,14 + 8308: 12,13 + 8309: 16,13 + 8456: 0,-52 + 8457: -2,-52 + 8458: -3,-37 + 8459: 8,-60 + 8460: 6,-53 + 8461: 4,-51 + 8462: 10,-52 + 8785: -11,-64 + 8786: -11,-63 + 8951: -2,-78 + 8952: -2,-77 + 8953: -1,-77 + 8954: -1,-78 + 8955: 0,-78 + 8956: 0,-77 + 8957: 0,-75 + 8958: -1,-75 + 8959: -2,-75 + 10013: -30,-31 + 10014: -33,-29 + 10015: -32,-33 + 10016: -35,-33 + 10017: -25,-36 + 10018: -26,-29 + 10019: -24,-27 + 10020: -24,-25 + 10021: -19,-25 + 10022: -22,-21 + 10023: -26,-20 + 10024: -30,-22 + - node: + angle: -1.5707963267948966 rad + color: '#EFB3419B' + id: DeliveryGreyscale + decals: + 4487: -8,-21 + 4488: -8,-24 + 4489: -11,-24 + 4490: -8,-29 + - node: + color: '#EFB3419B' + id: DeliveryGreyscale + decals: + 3261: -41,-6 + 3262: -43,-4 + 3263: -45,-6 + 3264: -45,-11 + 3265: -48,-11 + 3266: -48,-13 + 3267: -48,-15 + 3268: -48,-17 + 3269: -46,0 + 3270: -51,-4 + 3271: -39,0 + 3272: -36,-1 + 3273: -36,-2 + 3274: -36,-3 + 3359: -32,0 + 3360: -32,2 + 3361: -34,-4 + 3362: -22,0 + 3363: -19,-3 + 3364: -22,-5 + 3922: -12,0 + 3923: -12,5 + 6480: 6,25 + 6481: 4,25 + 6482: -19,-1 + 6483: -15,-3 + 6484: -15,-1 + 6489: 9,25 + 6490: 7,29 + 6491: 6,22 + 6492: 4,22 + 6493: 5,31 + 6494: 8,33 + 6495: 12,36 + 6496: 15,38 + 6497: 15,41 + 6498: 20,33 + 6499: -9,28 + 6500: -11,29 + 6501: -14,28 + 6502: -14,25 + 6503: -16,23 + 6504: -16,32 + 6505: -14,33 + 6506: -17,35 + 6507: -11,37 + 6508: -6,34 + 6509: 2,34 + 6510: 0,36 + 6740: 13,-1 + 6741: 13,-3 + 6742: 0,2 + 6743: -2,2 + 6744: 16,-11 + 6745: 14,-11 + 6746: -10,-9 + 6747: -12,-9 + 7806: -1,-10 + 7807: 6,-11 + 7808: 8,-9 + 7809: 10,-9 + 7810: -8,-11 + 7811: 17,22 + 7812: 13,22 + 7813: 12,26 + 7814: 11,20 + 8624: 2,-57 + 8625: 8,-64 + 8626: 5,-65 + 8627: 8,-71 + 8628: 10,-73 + 8629: 6,-75 + 8630: 6,-77 + 8631: 6,-78 + 8632: -8,-77 + 8633: -8,-78 + 8634: -8,-75 + 8635: -10,-71 + 8636: -12,-69 + 8637: -7,-66 + 8638: 2,-63 + 8639: 2,-60 + 8640: -19,-70 + 8641: -20,-72 + 8642: -22,-70 + 8643: -17,-71 + 8644: 0,-69 + 8645: -2,-69 + 9375: 6,-47 + 9376: 8,-48 + 9377: 12,-50 + 9378: 11,-50 + 9379: 12,-54 + 9380: 11,-54 + 9381: 14,-46 + 9382: 13,-46 + 9383: 12,-46 + 9384: 11,-46 + 9385: 10,-46 + 9386: 9,-46 + 9534: -5,-57 + 9535: -9,-54 + 9536: -11,-54 + 9731: -12,-37 + 10354: -25,-17 + 10496: -19,-31 + 10611: -15,37 + 10612: -15,40 + 10613: -15,42 + 10820: -22,42 + 10821: -19,42 + 10822: -18,46 + 10823: -21,46 + 10824: -24,42 + 10825: -17,45 + 10826: -17,43 + 10827: -11,42 + 10828: -14,46 + 10829: -11,48 + 10830: -8,46 + 11086: -4,50 + - node: + color: '#EFB341B2' + id: DeliveryGreyscale + decals: + 7319: 7,-20 + 7320: 9,-21 + 7321: 6,-16 + 7322: 12,-16 + 10587: -43,-29 + 10588: -43,-31 + 10589: -45,-31 + 10590: -45,-29 + 10591: -30,-38 + 10592: -27,-38 + - node: + color: '#EFB341B4' + id: DeliveryGreyscale + decals: + 7799: 18,11 + 7800: 24,7 + 7801: 26,7 + 7802: 26,1 + 7803: 28,10 + 7804: 28,12 + 7805: 23,4 + - node: + color: '#1D1D21FF' + id: Dirt + decals: + 592: -33,-15 + 593: -33,-14 + 594: -33,-13 + 595: -33,-12 + 596: -33,-11 + 597: -32,-11 + 598: -31,-11 + 599: -30,-11 + 600: -30,-12 + 601: -30,-13 + 602: -30,-14 + 603: -30,-16 + 604: -30,-16 + 605: -31,-17 + 606: -30,-17 + 607: -32,-17 + 608: -33,-17 + 609: -33,-15 + 610: -33,-16 + 611: -33,-14 + 612: -31,-11 + 613: -30,-12 + 614: -30,-11 + - node: + cleanable: True + color: '#474F52FF' + id: Dirt + decals: + 13: -31,-12 + 14: -32,-12 + 15: -32,-13 + 16: -31,-13 + 17: -31,-14 + 18: -32,-14 + 19: -32,-15 + 20: -31,-15 + 21: -31,-16 + 22: -32,-16 + 34: -6,-46 + 36: 64,-36 + - node: + cleanable: True + zIndex: 1 + color: '#474F52FF' + id: Dirt + decals: + 29: -32,-18 + - node: + cleanable: True + color: '#FFFFFF5D' + id: Dirt + decals: + 11387: 43,-10 + 11388: 46,-8 + 11389: 43,-8 + 11390: 42,-7 + 11391: 45,-5 + 11392: 44,-4 + 11393: 46,-6 + 11394: 47,-8 + 11395: 48,-4 + 11396: 46,-3 + 11397: 48,-7 + 11398: 44,-7 + 11399: 47,-6 + 11400: 47,-7 + 11401: 48,-7 + 11402: 48,-7 + 11403: 47,-9 + 11404: 48,-10 + 11405: 46,-10 + 11406: 49,-10 + 11407: 47,-9 + 11408: 46,-10 + 11409: 47,-8 + 11410: 46,-7 + 11411: 43,-5 + 11412: 45,-4 + 11413: 43,-3 + 11414: 42,-4 + 11415: 44,-7 + 11416: 47,-4 + 11417: 47,-6 + 11418: 48,-6 + 11419: 47,-6 + 11420: 49,-6 + 11421: 48,-6 + 11422: 47,-8 + 11423: 48,-8 + 11424: 48,0 + 11425: 45,0 + 11426: 45,-1 + 11427: 48,1 + 11428: 46,-1 + 11429: 29,-7 + 11430: 29,-4 + 11431: 30,-4 + 11432: 31,-5 + 11433: 31,-7 + 11434: 31,-8 + 11435: 29,-8 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 4528: -18,-30 + 4529: -13,-31 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 1936: 26,28 + 2028: 44,-47 + 2047: 91,-30 + 2048: 85,-26 + 2246: -21,4 + 2247: -20,8 + 2248: -23,8 + 2249: -24,6 + 2250: -24,2 + 2251: -22,3 + 2252: -20,1 + 2253: -22,2 + 2255: -24,4 + 2256: -20,6 + 2260: -22,8 + 10446: -22,-22 + 10447: -20,-24 + 10448: -23,-26 + 10449: -20,-28 + 10450: -21,-25 + 10451: -23,-24 + 10452: -20,-22 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 2033: 40,-46 + 2038: 36,-29 + 2101: -2,24 + 2102: -5,23 + 2103: -11,24 + 2104: -10,23 + 2105: -9,24 + 2123: -74,7 + 2124: -66,5 + 2193: -34,-5 + 2194: -36,-6 + 2195: -33,-7 + 2196: -33,-6 + 2197: -35,-6 + 2279: 9,-35 + 2280: 11,-35 + 2281: 13,-36 + 2330: -5,7 + 2331: -5,6 + 2332: -6,9 + 2333: -4,9 + 2334: -7,4 + 2335: -5,1 + 2336: -6,1 + 2337: -7,2 + 2338: -6,4 + 2339: -5,6 + 2340: -6,6 + 2341: -6,8 + 2342: -5,8 + 2343: -7,6 + 2344: -6,3 + 2345: -6,2 + 2346: -7,8 + 2350: -4,3 + 2368: 1,-60 + 2378: 8,-76 + 2397: -8,-51 + 2398: -6,-52 + 2419: 24,19 + 2434: 24,17 + 2491: 20,3 + 2492: 22,2 + 2493: 21,5 + 2494: 20,6 + 2495: 22,6 + 2496: 22,4 + 3007: -54,-4 + 3008: -56,-4 + 3009: -57,-5 + 3010: -59,-4 + 3011: -60,-5 + 3012: -63,-1 + 3013: -64,0 + 3014: -65,-2 + 3015: -57,-1 + 3016: -56,1 + 3017: -54,-1 + 3018: -56,-2 + 3019: -56,-3 + 3020: -65,3 + 3021: -64,4 + 3022: -65,7 + 3023: -64,8 + 3024: -64,10 + 3025: -67,8 + 3026: -68,9 + 3027: -70,10 + 3028: -71,8 + 3029: -73,8 + 3030: -75,8 + 3031: -74,9 + 3032: -77,9 + 3033: -77,8 + 3034: -79,8 + 3035: -78,10 + 3036: -67,-4 + 3037: -66,-6 + 3038: -69,-5 + 3039: -71,-4 + 3040: -70,-6 + 3041: -74,-6 + 3042: -74,-5 + 3043: -76,-4 + 3044: -78,-5 + 3045: -79,-6 + 3046: -64,-9 + 3047: -65,-12 + 3048: -64,-15 + 3049: -65,-16 + 3050: -69,-16 + 3051: -71,-17 + 3052: -75,-16 + 3053: -77,-15 + 3054: -73,-14 + 3055: -73,-15 + 3056: -65,-11 + 3087: -79,-4 + 3088: -65,1 + 3103: -61,3 + 3104: -57,5 + 3105: -59,4 + 3106: -62,5 + 3109: -58,1 + 3319: -42,-5 + 3320: -44,-7 + 3321: -42,-9 + 3322: -46,-6 + 3323: -47,-9 + 3324: -47,-5 + 3325: -48,-7 + 3326: -42,-9 + 3327: -44,-7 + 3328: -42,-5 + 3329: -44,-5 + 3487: -51,-5 + 3488: -52,-7 + 3489: -51,-9 + 3490: -50,-7 + 3491: -51,-6 + 3492: -52,-9 + 3566: -44,-3 + 3567: -48,-2 + 3568: -47,-3 + 3569: -50,-2 + 3570: -46,-1 + 3571: -48,-3 + 3572: -51,-1 + 3573: -52,-3 + 3574: -41,-1 + 3575: -37,-2 + 3576: -37,-3 + 3577: -40,-2 + 3578: -40,-3 + 3579: -31,-1 + 3580: -34,-2 + 3581: -32,-3 + 3582: -29,-1 + 3583: -26,-2 + 3584: -27,-4 + 3585: -29,-3 + 3586: -24,-1 + 3587: -20,-1 + 3588: -20,-3 + 3589: -24,-3 + 3590: -21,-4 + 3591: -25,-2 + 3592: -25,-3 + 3627: -47,3 + 3628: -44,5 + 3629: -43,3 + 3630: -42,2 + 3631: -39,4 + 3632: -39,1 + 3633: -40,2 + 3634: -44,4 + 3635: -45,1 + 3636: -47,4 + 3637: -46,5 + 3638: -42,3 + 3676: -33,3 + 3677: -34,5 + 3678: -30,6 + 3679: -30,3 + 3719: -20,-7 + 3720: -21,-7 + 3721: -24,-6 + 3722: -23,-8 + 3723: -22,-7 + 3729: -21,-6 + 3730: -21,-8 + 3731: -23,-8 + 3732: -24,-6 + 3733: -20,-7 + 3800: -21,-10 + 3801: -21,-13 + 3802: -23,-12 + 3803: -25,-10 + 3804: -24,-12 + 3805: -25,-13 + 3806: -20,-10 + 3824: -21,6 + 3825: -23,5 + 3864: -68,12 + 3865: -66,15 + 3866: -68,17 + 3867: -66,18 + 3872: -66,13 + 3919: -12,4 + 3920: -11,1 + 3921: -13,2 + 3976: -13,6 + 3977: -15,7 + 3978: -11,9 + 3979: -9,8 + 3980: -12,7 + 3981: -14,9 + 4198: -6,-2 + 4199: -8,-3 + 4200: -10,-2 + 4201: -13,-1 + 4202: -3,-1 + 4203: -4,1 + 4204: 1,1 + 4205: 2,-1 + 4206: 0,-1 + 4207: -1,1 + 4208: 5,-2 + 4209: 3,-3 + 4210: 9,-1 + 4211: 12,-3 + 4212: 7,-3 + 4213: 9,0 + 4214: 8,1 + 4215: -1,-3 + 4387: -14,-10 + 4388: -16,-8 + 4389: -18,-11 + 4390: -16,-6 + 4391: -18,-4 + 4392: -16,-13 + 4393: -18,-17 + 4394: -16,-20 + 4395: -18,-20 + 4396: -19,-13 + 4397: -17,-12 + 4530: -11,-32 + 4531: -14,-30 + 4532: -17,-32 + 4533: -18,-27 + 4534: -16,-24 + 4535: -17,-22 + 4536: -18,-24 + 4537: -14,-26 + 4673: 0,-32 + 4674: 1,-30 + 4675: 7,-31 + 4676: 7,-33 + 4677: 4,-32 + 4678: -2,-30 + 4679: -1,-32 + 4680: -5,-32 + 4681: -5,-30 + 4682: -8,-30 + 4683: -9,-32 + 4691: 3,-33 + 4747: 13,-30 + 4748: 10,-32 + 4749: 15,-30 + 4750: 16,-28 + 4751: 14,-27 + 4752: 16,-25 + 4753: 16,-31 + 4754: 15,-32 + 4755: 16,-33 + 4756: 11,-30 + 4888: 16,-13 + 4889: 14,-15 + 4890: 16,-17 + 4891: 16,-20 + 4892: 16,-23 + 4893: 14,-21 + 4894: 15,-18 + 4895: 14,-18 + 4896: 14,-13 + 4897: 15,-12 + 4997: 16,-10 + 4998: 13,-8 + 4999: 11,-10 + 5000: 15,-8 + 5001: 16,-8 + 5002: 14,-5 + 5003: 16,-2 + 5004: 15,-1 + 5005: 14,-3 + 5006: 14,-7 + 5007: 18,-20 + 5008: 18,-20 + 5337: 8,19 + 5338: 0,21 + 5339: 2,19 + 5340: 5,21 + 5341: -2,20 + 5342: -6,21 + 5343: -1,18 + 5344: -10,21 + 5345: -7,19 + 5346: -13,19 + 5347: -14,20 + 5348: -10,19 + 5349: 0,17 + 5350: -2,14 + 5351: 0,13 + 5352: 0,7 + 5353: 0,3 + 5354: -3,4 + 5355: -1,7 + 5356: 0,5 + 5357: -2,10 + 5358: -1,13 + 5359: 0,11 + 5360: -2,6 + 5361: -2,15 + 5362: 0,19 + 6005: 0,28 + 6006: 3,27 + 6007: 3,26 + 6008: 8,28 + 6009: 9,26 + 6010: -2,26 + 6011: -1,28 + 6012: -6,28 + 6013: -5,31 + 6014: -6,32 + 6015: -8,26 + 6016: -10,27 + 6017: -14,26 + 6036: 4,24 + 6037: 6,23 + 6038: 9,24 + 6039: 10,23 + 6053: 1,23 + 6066: -9,29 + 6067: -10,32 + 6068: -8,31 + 6069: -9,31 + 6070: -12,32 + 6071: -11,32 + 6080: -15,32 + 6081: -14,30 + 6094: -19,31 + 6095: -17,32 + 6096: -17,29 + 6113: 0,32 + 6114: 4,31 + 6115: 2,30 + 6178: 7,32 + 6179: 12,30 + 6180: 8,30 + 6181: 14,32 + 6182: 11,35 + 6183: 14,35 + 6184: 19,33 + 6185: 17,31 + 6186: 14,33 + 6187: 19,34 + 6188: 16,30 + 6230: 9,38 + 6231: 6,36 + 6232: 8,34 + 6233: 7,38 + 6234: 6,39 + 6235: 7,41 + 6236: 8,40 + 6289: 22,38 + 6290: 24,42 + 6291: 24,39 + 6292: 22,41 + 6293: 24,36 + 6294: 25,32 + 6295: 23,32 + 6296: 21,33 + 6297: 22,36 + 6298: 24,34 + 6333: -1,36 + 6334: -2,35 + 6335: -3,36 + 6336: -2,39 + 6337: 1,36 + 6338: 2,35 + 6339: 4,37 + 6340: 2,38 + 6381: -15,35 + 6382: -13,34 + 6383: -13,36 + 6384: -9,36 + 6385: -9,34 + 6386: -5,35 + 6387: -7,37 + 6388: -5,37 + 6389: -7,36 + 6390: -10,35 + 6403: -14,24 + 6404: -15,23 + 6422: -17,26 + 6423: -17,23 + 6424: -18,22 + 6425: -19,27 + 6471: 14,38 + 6472: 12,38 + 6473: 13,37 + 6474: 14,41 + 6531: -18,36 + 6532: -20,34 + 6533: -19,35 + 6534: -18,34 + 6590: -4,16 + 6591: -6,13 + 6592: -4,14 + 6593: -6,17 + 6594: -8,13 + 6595: -9,13 + 6884: -8,-10 + 6885: -5,-7 + 6886: -3,-9 + 6887: 0,-7 + 6888: 3,-7 + 6889: 5,-9 + 6890: 7,-9 + 6891: 7,-10 + 6892: 2,-9 + 6894: -6,-9 + 6987: -4,-12 + 6988: -5,-14 + 6989: 3,-14 + 6990: 2,-12 + 7091: -11,-13 + 7092: -7,-14 + 7093: -7,-19 + 7094: -8,-17 + 7095: -11,-18 + 7096: -14,-17 + 7097: -14,-14 + 7165: -8,-25 + 7166: -9,-27 + 7167: -11,-25 + 7168: -12,-27 + 7169: -11,-28 + 7170: -8,-28 + 7306: 12,-14 + 7307: 9,-15 + 7308: 5,-15 + 7309: 7,-12 + 7310: 6,-14 + 7311: 12,-17 + 7312: 11,-19 + 7313: 9,-18 + 7314: 7,-17 + 7315: 5,-18 + 7316: 12,-13 + 7317: 9,-12 + 7318: 8,-13 + 7382: 9,-27 + 7383: 6,-26 + 7384: 10,-25 + 7385: 12,-26 + 7512: 18,21 + 7513: 14,20 + 7514: 13,19 + 7515: 18,20 + 7516: 13,21 + 7517: 18,23 + 7518: 15,25 + 7519: 16,25 + 7520: 18,27 + 7521: 17,24 + 7522: 16,28 + 7523: 13,25 + 7524: 14,23 + 7525: 12,23 + 7526: 12,27 + 7709: 25,8 + 7710: 27,13 + 7711: 27,9 + 7712: 25,14 + 7713: 22,15 + 7714: 19,13 + 7715: 20,11 + 7716: 20,7 + 7717: 23,9 + 7718: 20,8 + 7782: 9,14 + 7783: 8,12 + 7784: 9,9 + 7785: 9,6 + 7786: 8,6 + 7787: 9,3 + 7788: 10,11 + 7789: 13,12 + 7790: 15,10 + 7791: 17,9 + 7792: 17,11 + 7793: 16,12 + 7794: 14,9 + 7795: 14,7 + 7796: 11,10 + 7797: 9,12 + 7798: 11,8 + 7860: 26,6 + 7861: 24,4 + 7862: 25,2 + 7863: 27,3 + 7864: 26,4 + 8142: 24,-5 + 8143: 22,-6 + 8144: 22,-8 + 8145: 22,-11 + 8146: 24,-9 + 8147: 27,-8 + 8148: 25,-11 + 8149: 28,-10 + 8150: 30,-11 + 8151: 27,-5 + 8152: 25,-4 + 8153: 27,-2 + 8154: 25,-1 + 8155: 20,-4 + 8156: 18,-5 + 8157: 18,-2 + 8158: 18,-6 + 8159: 18,-7 + 8160: 21,-9 + 8161: 18,-10 + 8162: 21,-11 + 8163: 19,-9 + 8164: 22,-9 + 8165: 23,-6 + 8166: 27,-11 + 8249: 12,4 + 8250: 11,2 + 8251: 11,1 + 8252: 16,1 + 8253: 18,1 + 8254: 14,1 + 8255: 13,5 + 8256: 11,6 + 8257: 16,5 + 8258: 17,7 + 8259: 18,5 + 8301: -14,17 + 8302: -11,16 + 8303: -13,15 + 8549: -1,-47 + 8550: -2,-49 + 8551: -2,-51 + 8552: 0,-51 + 8553: 1,-44 + 8554: -1,-42 + 8555: -2,-40 + 8556: 1,-46 + 8557: -1,-45 + 8558: 0,-41 + 8559: 0,-37 + 8560: -2,-34 + 8561: -1,-36 + 8562: 1,-42 + 8563: 0,-53 + 8564: 1,-58 + 8565: -1,-58 + 8566: -1,-60 + 8567: -4,-59 + 8568: -4,-56 + 8569: -2,-55 + 8570: 0,-56 + 9005: 5,-58 + 9006: 6,-56 + 9007: 9,-57 + 9008: 8,-59 + 9009: 3,-56 + 9010: 5,-53 + 9011: 4,-52 + 9012: 3,-54 + 9013: 4,-57 + 9014: 7,-56 + 9015: 7,-59 + 9026: 8,-61 + 9027: 7,-62 + 9028: 9,-63 + 9070: 7,-65 + 9071: 9,-68 + 9072: 7,-69 + 9073: 9,-70 + 9074: 5,-67 + 9075: 3,-66 + 9076: 2,-67 + 9077: -3,-67 + 9078: -6,-67 + 9079: -8,-67 + 9080: -10,-69 + 9081: -9,-69 + 9082: -11,-70 + 9096: 8,-74 + 9097: 9,-72 + 9098: 9,-76 + 9099: 7,-78 + 9100: 7,-75 + 9114: 13,-74 + 9115: 11,-72 + 9116: 13,-71 + 9117: 11,-74 + 9159: 5,-78 + 9160: 2,-77 + 9161: 1,-78 + 9162: 5,-77 + 9163: 0,-77 + 9164: -2,-78 + 9165: -4,-77 + 9166: -4,-78 + 9167: -6,-78 + 9168: -9,-78 + 9169: -9,-76 + 9170: -11,-76 + 9171: -11,-74 + 9172: -11,-74 + 9173: -11,-72 + 9188: -2,-73 + 9189: 0,-71 + 9190: 0,-73 + 9207: 5,-64 + 9208: 5,-62 + 9209: 4,-63 + 9210: 3,-61 + 9246: -1,-63 + 9247: -3,-64 + 9248: -5,-63 + 9249: -5,-65 + 9250: -9,-65 + 9251: -10,-63 + 9252: -7,-62 + 9253: -5,-62 + 9254: -3,-63 + 9262: -12,-63 + 9263: -14,-64 + 9293: -18,-69 + 9294: -16,-70 + 9295: -13,-69 + 9296: -17,-72 + 9297: -18,-73 + 9298: -16,-74 + 9299: -14,-75 + 9300: -13,-74 + 9310: -20,-70 + 9311: -21,-71 + 9352: -23,-72 + 9353: -26,-70 + 9354: -26,-72 + 9355: -23,-70 + 9356: -23,-69 + 9357: -27,-66 + 9358: -27,-68 + 9359: -26,-65 + 9360: -23,-67 + 9372: 9,-53 + 9373: 7,-53 + 9374: 9,-51 + 9456: 7,-48 + 9457: 5,-49 + 9478: 6,-45 + 9479: 3,-46 + 9480: 7,-46 + 9481: 3,-45 + 9482: 4,-43 + 9483: 7,-43 + 9493: 13,-51 + 9494: 11,-53 + 9495: 13,-53 + 9496: 12,-52 + 9515: 14,-42 + 9516: 13,-43 + 9517: 12,-44 + 9518: 14,-45 + 9519: 12,-41 + 9632: -11,-57 + 9633: -12,-58 + 9634: -17,-58 + 9642: -17,-54 + 9643: -17,-50 + 9644: -13,-50 + 9645: -11,-52 + 9646: -11,-50 + 9669: -8,-55 + 9670: -6,-56 + 9671: -7,-58 + 9672: -8,-56 + 9673: -6,-54 + 9773: -11,-38 + 9774: -8,-40 + 9775: -5,-40 + 9776: -4,-38 + 9777: -4,-36 + 9778: -5,-34 + 9779: -8,-34 + 9780: -10,-34 + 9781: -11,-35 + 9782: -7,-36 + 9819: 5,-35 + 9820: 3,-36 + 9821: 5,-37 + 9822: 2,-35 + 10109: -39,-32 + 10110: -41,-30 + 10111: -39,-28 + 10112: -37,-27 + 10113: -37,-30 + 10114: -35,-27 + 10115: -33,-26 + 10116: -31,-28 + 10117: -33,-24 + 10118: -31,-24 + 10119: -32,-20 + 10120: -31,-19 + 10121: -34,-21 + 10122: -36,-19 + 10123: -38,-20 + 10124: -38,-21 + 10125: -40,-22 + 10126: -41,-23 + 10127: -40,-26 + 10128: -39,-25 + 10129: -41,-27 + 10130: -42,-28 + 10131: -42,-31 + 10132: -37,-26 + 10146: -35,-26 + 10147: -33,-25 + 10260: -27,-21 + 10261: -29,-22 + 10262: -27,-24 + 10263: -25,-26 + 10264: -25,-27 + 10265: -28,-28 + 10266: -26,-26 + 10267: -29,-26 + 10268: -26,-25 + 10269: -29,-23 + 10270: -28,-20 + 10297: -31,-31 + 10298: -33,-30 + 10299: -35,-31 + 10300: -35,-32 + 10301: -33,-31 + 10391: -24,-16 + 10392: -22,-17 + 10393: -24,-20 + 10394: -21,-20 + 10395: -19,-18 + 10396: -20,-18 + 10397: -21,-16 + 10398: -26,-18 + 10399: -28,-17 + 10400: -27,-16 + 10401: -24,-18 + 10492: -20,-30 + 10493: -23,-31 + 10494: -21,-32 + 10495: -20,-31 + 10556: -26,-30 + 10557: -27,-31 + 10558: -29,-30 + 10559: -25,-33 + 10560: -27,-34 + 10561: -25,-35 + 10562: -24,-34 + 10584: -26,-38 + 10585: -24,-39 + 10628: -14,39 + 10629: -16,38 + 10630: -15,38 + 10631: -14,41 + 10632: -16,41 + 10633: -11,46 + 10653: -5,39 + 10654: -5,41 + 10655: -7,39 + 10700: -9,40 + 10701: -11,41 + 10702: -12,39 + 10703: -10,38 + 10904: -12,51 + 10905: -13,49 + 10906: -12,47 + 10907: -14,49 + 10908: -16,47 + 10972: -5,45 + 10973: -8,44 + 10974: -7,43 + 10975: -12,45 + 10976: -16,44 + 10977: -11,43 + 10978: -18,45 + 10979: -21,43 + 10980: -23,45 + 10981: -25,44 + 10982: -18,43 + 10988: -24,40 + 11074: -5,51 + 11075: -7,49 + 11076: -5,47 + 11077: -6,47 + 11078: -8,50 + 11079: -10,48 + 11080: -8,47 + 11081: -9,51 + 11082: -10,52 + 11083: -9,53 + 11084: -6,49 + 11085: -7,51 + 11159: -2,49 + 11160: -1,51 + 11161: 4,50 + 11162: 1,49 + 11163: 4,51 + 11697: 24,-13 + 11698: 31,-14 + 11699: 36,-12 + 11700: 50,-14 + 11701: 54,-15 + 11702: 58,-13 + 11703: 61,-15 + 11704: 65,-14 + 11705: 68,-14 + 11706: 71,-14 + 11971: 34,-21 + 11972: 35,-18 + 11973: 28,-19 + 11974: 25,-21 + 11975: 30,-18 + 11976: 32,-21 + 11977: 29,-22 + 11978: 36,-24 + 11979: 32,-25 + 11980: 26,-24 + 11981: 24,-25 + 11982: 21,-26 + 11983: 20,-27 + 11984: 22,-24 + 11985: 39,-23 + 11986: 40,-24 + 11987: 35,-25 + 11988: 34,-26 + 12032: 21,-17 + 12033: 17,-18 + 12034: 21,-21 + 12035: 21,-22 + 12036: 19,-22 + 12037: 21,-19 + 12121: 39,-33 + 12122: 42,-35 + 12123: 40,-37 + 12124: 40,-39 + 12125: 38,-44 + 12126: 41,-48 + 12127: 40,-46 + 12128: 41,-40 + 12129: 41,-34 + 12130: 35,-29 + 12131: 36,-31 + 12132: 31,-29 + 12133: 31,-28 + 12134: 29,-30 + 12135: 27,-28 + 12136: 24,-31 + 12168: 18,-34 + 12169: 21,-35 + 12170: 22,-36 + 12171: 24,-37 + 12172: 26,-35 + 12173: 25,-33 + 12174: 24,-35 + 12212: 29,-33 + 12213: 32,-36 + 12214: 35,-35 + 12215: 36,-36 + 12216: 30,-36 + 12217: 29,-36 + 12256: 44,-36 + 12257: 46,-37 + 12258: 47,-36 + 12277: 44,-40 + 12278: 46,-40 + 12279: 47,-39 + 12280: 44,-41 + 12308: 43,-48 + 12309: 44,-46 + 12310: 46,-46 + 12343: 37,-47 + 12344: 35,-46 + 12345: 34,-50 + 12346: 35,-49 + 12347: 36,-50 + 12348: 35,-52 + 12349: 36,-55 + 12350: 38,-56 + 12351: 39,-59 + 12352: 45,-56 + 12353: 39,-61 + 12354: 44,-59 + 12355: 46,-61 + 12513: 38,-29 + 12514: 40,-28 + 12515: 45,-29 + 12516: 44,-29 + 12517: 45,-27 + 12518: 46,-25 + 12519: 44,-23 + 12798: 76,-15 + 12799: 77,-7 + 12800: 82,-7 + 12801: 83,-12 + 12802: 76,-8 + 12803: 77,-13 + 12804: 82,-13 + 12938: 52,-28 + 12939: 54,-27 + 12940: 57,-28 + 12941: 64,-27 + 12942: 67,-29 + 12943: 67,-30 + 12944: 66,-31 + 12945: 67,-35 + 12946: 65,-40 + 12947: 67,-44 + 12948: 60,-39 + 12949: 65,-42 + 12950: 66,-47 + 12951: 67,-44 + 12952: 65,-47 + 12953: 64,-50 + 12954: 62,-49 + 12955: 68,-52 + 12956: 71,-53 + 12957: 72,-52 + 12958: 75,-53 + 12959: 73,-45 + 12960: 76,-45 + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFFFF' + id: Dirt + decals: + 2154: -46,-17 + 2155: -47,-13 + 2156: -46,-11 + 2157: -47,-15 + 2158: -46,-14 + 2164: -49,-11 + 2165: -49,-15 + 2166: -49,-17 + 2167: -49,-17 + - node: + zIndex: 100 + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 2131: -61,-2 + 2132: -58,-3 + 2133: -62,-3 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 4508: -17,-22 + 4509: -16,-26 + 4510: -16,-28 + 4511: -18,-30 + 4512: -16,-30 + 4513: -15,-32 + 4514: -12,-31 + 4515: -12,-32 + 4516: -14,-28 + 4517: -14,-24 + 4518: -16,-24 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 535: -40,-29 + 536: -33,-26 + 537: -33,-24 + 538: -34,-22 + 539: -41,-25 + 2239: -22,1 + 2240: -24,3 + 2241: -24,5 + 2242: -24,7 + 2243: -20,5 + 2244: -23,4 + 2245: -21,4 + 2257: -20,7 + 10436: -23,-25 + 10437: -20,-24 + 10438: -22,-23 + 10439: -20,-22 + 10440: -20,-28 + 10441: -22,-28 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 2031: 41,-49 + 2032: 40,-42 + 2034: 39,-35 + 2035: 35,-31 + 2111: -10,23 + 2112: -1,23 + 2113: -6,24 + 2120: -66,7 + 2121: -81,10 + 2174: -33,-5 + 2175: -36,-5 + 2176: -35,-7 + 2177: -33,-7 + 2178: -34,-6 + 2189: -33,-5 + 2190: -35,-6 + 2191: -34,-7 + 2192: -36,-5 + 2261: -25,-8 + 2271: 15,0 + 2277: 12,-36 + 2278: 12,-34 + 2300: -6,4 + 2301: -7,1 + 2302: -7,7 + 2303: -5,6 + 2304: -6,9 + 2305: -4,9 + 2306: -6,9 + 2307: -7,9 + 2308: -4,6 + 2309: -5,7 + 2310: -6,8 + 2349: -4,3 + 2366: 1,-60 + 2382: -1,-74 + 2387: -6,-51 + 2388: -8,-51 + 2403: -8,-52 + 2404: -6,-52 + 2405: -9,-51 + 2410: 15,31 + 2417: 23,19 + 2418: 24,17 + 2421: 25,18 + 2422: 25,18 + 2433: 25,19 + 2439: 21.475939,11.507209 + 2484: 21,3 + 2485: 20,5 + 2486: 21,6 + 2487: 21,4 + 2488: 22,4 + 2498: 23,-1 + 2499: 20,-2 + 2507: 30,-5 + 2948: -58,-4 + 2949: -56,-6 + 2950: -61,-1 + 2951: -54,1 + 2952: -54,-3 + 2953: -64,1 + 2954: -64,-2 + 2955: -62,0 + 2956: -62,-5 + 2957: -67,-6 + 2958: -70,-5 + 2959: -73,-4 + 2960: -75,-6 + 2961: -79,-5 + 2962: -64,-10 + 2963: -66,-11 + 2964: -64,-16 + 2965: -68,-15 + 2966: -73,-16 + 2967: -77,-14 + 2968: -68,-14 + 2969: -64,-13 + 2970: -64,-6 + 2983: -76,9 + 2984: -70,9 + 2985: -68,10 + 2986: -64,5 + 2987: -65,2 + 2988: -65,-3 + 3098: -58,4 + 3099: -60,4 + 3107: -60,1 + 3108: -57,1 + 3312: -47,-7 + 3313: -47,-6 + 3314: -46,-9 + 3317: -43,-6 + 3318: -44,-5 + 3480: -50,-9 + 3481: -51,-6 + 3482: -52,-5 + 3483: -52,-7 + 3542: -31,-3 + 3543: -33,-1 + 3544: -34,-3 + 3545: -28,-2 + 3546: -29,-4 + 3547: -24,-1 + 3548: -22,-3 + 3549: -26,-3 + 3550: -39,-3 + 3551: -38,-1 + 3552: -46,-2 + 3553: -46,-3 + 3554: -51,-3 + 3555: -51,-1 + 3556: -42,-1 + 3557: -43,-2 + 3615: -45,5 + 3616: -43,2 + 3617: -47,1 + 3618: -40,2 + 3619: -41,4 + 3620: -40,1 + 3670: -32,4 + 3671: -33,6 + 3672: -34,5 + 3673: -30,5 + 3674: -30,3 + 3675: -31,4 + 3716: -23,-7 + 3717: -20,-8 + 3718: -21,-6 + 3774: -22,-8 + 3775: -24,-7 + 3789: -23,-14 + 3790: -24,-13 + 3791: -23,-10 + 3792: -21,-11 + 3793: -23,-12 + 3794: -21,-13 + 3821: -22,6 + 3822: -22,5 + 3861: -67,17 + 3862: -68,13 + 3863: -67,12 + 3914: -13,2 + 3915: -12,1 + 3968: -13,8 + 3969: -15,7 + 3970: -12,9 + 3971: -12,6 + 4164: 8,-3 + 4165: 9,-2 + 4166: 8,0 + 4167: 3,-3 + 4168: 4,-1 + 4169: 1,-1 + 4170: -1,0 + 4171: -2,1 + 4172: -2,-1 + 4173: -4,0 + 4174: -5,-3 + 4175: -7,-1 + 4176: -8,-2 + 4177: -10,-3 + 4178: -12,-3 + 4179: -14,-1 + 4180: -12,-1 + 4190: 8,-2 + 4364: -17,-20 + 4365: -17,-17 + 4366: -17,-14 + 4367: -17,-12 + 4368: -16,-9 + 4369: -16,-5 + 4370: -18,-1 + 4371: -14,-8 + 4372: -18,-11 + 4373: -16,-10 + 4374: -16,-16 + 4375: -16,-20 + 4376: -16,-17 + 4377: -14,-10 + 4378: -16,-6 + 4379: -18,-7 + 4380: -18,-8 + 4381: -17,-3 + 4658: -9,-31 + 4659: -3,-30 + 4660: -5,-32 + 4661: 2,-31 + 4662: -1,-30 + 4663: 6,-31 + 4664: 5,-33 + 4665: -7,-32 + 4737: 15,-26 + 4738: 16,-31 + 4739: 15,-33 + 4740: 14,-30 + 4741: 11,-31 + 4742: 10,-30 + 4874: 14,-21 + 4875: 15,-23 + 4876: 14,-18 + 4877: 16,-16 + 4878: 14,-16 + 4879: 14,-14 + 4880: 14,-12 + 4983: 14,-10 + 4984: 16,-9 + 4985: 14,-6 + 4986: 16,-4 + 4987: 14,-1 + 4988: 15,-3 + 4989: 15,-7 + 4990: 13,-8 + 5309: -1,18 + 5310: -1,19 + 5311: -3,19 + 5312: -6,21 + 5313: -6,19 + 5314: -11,20 + 5315: -14,20 + 5316: -5,21 + 5317: 2,20 + 5318: 7,21 + 5319: 7,19 + 5320: 4,19 + 5321: 10,19 + 5322: 0,15 + 5323: 0,12 + 5324: -1,7 + 5325: -1,3 + 5326: -2,9 + 5335: 5,19 + 5336: 10,19 + 5366: -9,19 + 5367: -11,19 + 5368: 3,19 + 5369: 9,19 + 5370: 0,18 + 5371: -2,10 + 5372: -2,5 + 5373: -1,10 + 5374: -2,17 + 5375: -2,19 + 5376: 4,21 + 5983: -13,27 + 5984: -7,27 + 5985: -8,26 + 5986: -2,27 + 5987: 3,27 + 5988: 9,27 + 5989: 8,26 + 5990: 5,26 + 5991: 7,28 + 5992: 4,28 + 5993: 1,26 + 5994: -1,26 + 5998: -6,31 + 5999: -6,27 + 6000: -8,27 + 6022: 4,27 + 6025: -11,27 + 6026: 2,27 + 6027: 7,27 + 6028: -5,32 + 6029: -6,29 + 6030: 6,24 + 6031: 4,23 + 6060: -10,32 + 6061: -10,29 + 6062: -9,30 + 6089: -18,29 + 6090: -17,32 + 6091: -18,30 + 6105: 0,32 + 6106: 3,33 + 6107: 4,32 + 6108: 2,31 + 6150: 7,32 + 6151: 10,31 + 6152: 9,31 + 6153: 13,31 + 6154: 16,31 + 6155: 14,32 + 6156: 15,35 + 6157: 17,34 + 6158: 18,33 + 6159: 13,33 + 6160: 11,33 + 6161: 11,32 + 6162: 8,32 + 6163: 18,34 + 6164: 16,34 + 6216: 8,38 + 6217: 8,37 + 6218: 8,35 + 6219: 6,34 + 6220: 7,40 + 6221: 6,39 + 6222: 9,37 + 6266: 23,33 + 6267: 25,33 + 6268: 22,33 + 6269: 22,34 + 6270: 24,36 + 6271: 25,34 + 6272: 23,34 + 6317: -2,36 + 6318: 2,37 + 6319: 1,36 + 6320: 4,37 + 6321: 2,39 + 6322: -2,38 + 6323: -3,38 + 6324: -1,39 + 6363: -7,36 + 6364: -9,36 + 6365: -8,35 + 6366: -12,35 + 6367: -12,34 + 6368: -15,34 + 6369: -14,35 + 6370: -11,36 + 6371: -12,36 + 6372: -6,37 + 6373: -7,37 + 6374: -8,36 + 6375: -10,36 + 6376: -11,35 + 6377: -15,35 + 6378: -15,36 + 6379: -16,34 + 6380: -16,36 + 6400: -15,24 + 6401: -14,23 + 6414: -19,23 + 6415: -17,23 + 6416: -18,22 + 6417: -17,22 + 6464: 14,40 + 6465: 14,39 + 6466: 13,38 + 6479: 16,41 + 6526: -19,34 + 6527: -18,35 + 6580: -6,14 + 6581: -6,17 + 6582: -5,16 + 6583: -5,14 + 6630: -19,20 + 6631: -17,20 + 6632: -20,17 + 6633: -20,16 + 6634: -20,20 + 6635: -19,17 + 6636: -18,20 + 6722: -2,-23 + 6723: -3,-19 + 6724: -1,-19 + 6732: -2,-20 + 6733: 0,-22 + 6867: 6,-10 + 6868: 4,-8 + 6869: 3,-9 + 6870: 0,-8 + 6871: 1,-7 + 6872: -3,-8 + 6873: -2,-7 + 6874: -2,-9 + 6875: -5,-9 + 6876: -8,-9 + 6893: -7,-9 + 6928: -6,-6 + 6976: -4,-14 + 6977: 0,-12 + 6978: -1,-13 + 6979: -2,-14 + 6980: 2,-15 + 6981: 3,-14 + 7073: -7,-15 + 7074: -10,-18 + 7075: -14,-17 + 7076: -14,-18 + 7077: -10,-17 + 7078: -14,-15 + 7079: -12,-13 + 7080: -14,-13 + 7081: -8,-12 + 7082: -9,-13 + 7083: -8,-13 + 7084: -11,-13 + 7085: -11,-18 + 7086: -8,-18 + 7087: -12,-18 + 7088: -9,-20 + 7089: -7,-20 + 7090: -8,-20 + 7098: -9,-12 + 7159: -8,-27 + 7160: -9,-26 + 7161: -10,-28 + 7162: -12,-26 + 7163: -11,-26 + 7280: 6,-18 + 7281: 8,-17 + 7282: 9,-17 + 7283: 8,-14 + 7284: 8,-15 + 7285: 11,-14 + 7286: 7,-14 + 7288: 6,-13 + 7290: 6,-15 + 7291: 11,-13 + 7371: 8,-27 + 7372: 11,-25 + 7373: 10,-26 + 7374: 6,-27 + 7375: 7,-25 + 7376: 8,-28 + 7492: 17,24 + 7493: 16,23 + 7494: 15,27 + 7495: 17,28 + 7496: 17,27 + 7497: 16,20 + 7498: 14,21 + 7499: 14,20 + 7500: 12,19 + 7501: 13,23 + 7502: 12,23 + 7503: 14,24 + 7690: 21,14 + 7691: 24,15 + 7692: 24,14 + 7693: 27,14 + 7694: 26,12 + 7695: 26,9 + 7696: 25,8 + 7697: 22,8 + 7698: 23,9 + 7699: 20,9 + 7700: 19,11 + 7701: 25,10 + 7758: 9,13 + 7759: 8,14 + 7760: 8,11 + 7761: 9,8 + 7762: 9,6 + 7763: 8,4 + 7764: 10,8 + 7765: 8,9 + 7766: 13,10 + 7767: 13,8 + 7768: 11,12 + 7769: 17,9 + 7770: 12,8 + 7771: 14,10 + 7772: 16,10 + 7773: 16,11 + 7852: 26,3 + 7853: 26,2 + 7854: 24,6 + 7855: 26,4 + 7856: 25,2 + 7857: 25,6 + 7859: 26,6 + 8112: 21,-10 + 8113: 19,-11 + 8114: 22,-10 + 8115: 23,-11 + 8116: 26,-9 + 8117: 26,-5 + 8118: 26,-6 + 8119: 30,-11 + 8120: 29,-11 + 8121: 28,-10 + 8122: 20,-5 + 8123: 18,-4 + 8124: 26,-2 + 8125: 25,-1 + 8126: 26,0 + 8127: 26,-7 + 8231: 11,4 + 8232: 12,1 + 8233: 16,1 + 8234: 12,6 + 8235: 14,6 + 8236: 13,5 + 8237: 12,5 + 8245: 17,6 + 8246: 18,5 + 8247: 14,5 + 8248: 11,1 + 8294: -14,16 + 8295: -15,17 + 8296: -12,17 + 8297: -12,16 + 8519: -1,-60 + 8520: -3,-58 + 8521: -4,-59 + 8522: -1,-56 + 8523: 0,-57 + 8524: 0,-53 + 8531: -4,-57 + 8532: 0,-51 + 8533: 0,-49 + 8534: -2,-49 + 8535: 0,-47 + 8536: -1,-46 + 8537: 1,-42 + 8538: -1,-42 + 8539: 0,-43 + 8540: -2,-41 + 8541: -1,-39 + 8542: -1,-35 + 8543: -2,-34 + 8991: 6,-58 + 8992: 5,-57 + 8993: 4,-56 + 8994: 3,-54 + 8995: 3,-57 + 8996: 3,-58 + 8997: 6,-56 + 8998: 8,-58 + 9004: 5,-58 + 9016: 7,-57 + 9017: 9,-61 + 9018: 7,-63 + 9054: -10,-70 + 9055: -8,-67 + 9056: -5,-67 + 9057: -3,-67 + 9058: 3,-66 + 9059: 6,-66 + 9060: 7,-69 + 9061: 9,-66 + 9062: 8,-65 + 9063: 7,-67 + 9064: 6,-67 + 9090: 9,-73 + 9091: 8,-75 + 9092: 9,-76 + 9110: 13,-73 + 9111: 13,-72 + 9112: 12,-75 + 9113: 12,-74 + 9150: -11,-73 + 9151: -6,-78 + 9152: -9,-77 + 9153: -11,-76 + 9154: -2,-77 + 9155: -3,-78 + 9156: 1,-78 + 9157: 1,-77 + 9158: 3,-78 + 9174: -11,-75 + 9175: -2,-74 + 9176: 0,-72 + 9177: -2,-71 + 9199: 5,-63 + 9200: 3,-62 + 9201: 3,-60 + 9202: 4,-60 + 9232: -5,-64 + 9233: -8,-65 + 9234: -10,-65 + 9235: -10,-62 + 9236: -2,-63 + 9237: -3,-62 + 9238: -4,-63 + 9259: -13,-63 + 9260: -14,-64 + 9279: -15,-69 + 9280: -18,-70 + 9281: -14,-69 + 9282: -17,-73 + 9283: -18,-73 + 9284: -15,-74 + 9285: -14,-74 + 9306: -21,-70 + 9307: -20,-69 + 9308: -21,-69 + 9309: -20,-71 + 9336: -25,-71 + 9337: -27,-72 + 9338: -27,-65 + 9339: -23,-67 + 9340: -27,-69 + 9341: -23,-72 + 9367: 9,-54 + 9368: 9,-51 + 9369: 7,-53 + 9453: 6,-48 + 9454: 5,-49 + 9468: 3,-43 + 9469: 5,-43 + 9470: 4,-45 + 9471: 3,-45 + 9472: 3,-46 + 9473: 6,-44 + 9474: 7,-45 + 9489: 12,-51 + 9490: 11,-53 + 9508: 14,-41 + 9509: 13,-44 + 9510: 12,-43 + 9511: 14,-43 + 9619: -14,-58 + 9620: -17,-57 + 9621: -17,-51 + 9622: -16,-50 + 9623: -10,-52 + 9624: -12,-50 + 9625: -11,-52 + 9641: -17,-56 + 9659: -7,-57 + 9660: -7,-55 + 9661: -9,-58 + 9662: -8,-57 + 9663: -8,-55 + 9664: -6,-57 + 9755: -9,-34 + 9756: -6,-34 + 9757: -4,-35 + 9758: -4,-38 + 9759: -4,-39 + 9760: -8,-40 + 9761: -11,-39 + 9762: -11,-38 + 9763: -10,-40 + 9813: 3,-35 + 9814: 2,-36 + 9815: 5,-36 + 10077: -34,-20 + 10078: -31,-20 + 10079: -32,-22 + 10080: -32,-25 + 10081: -31,-27 + 10082: -33,-28 + 10083: -37,-28 + 10084: -38,-28 + 10085: -38,-31 + 10086: -37,-32 + 10087: -40,-32 + 10088: -40,-31 + 10089: -41,-28 + 10090: -42,-29 + 10091: -39,-26 + 10092: -41,-26 + 10093: -39,-21 + 10138: -35,-28 + 10139: -33,-27 + 10240: -28,-25 + 10241: -28,-26 + 10242: -26,-28 + 10243: -28,-27 + 10244: -29,-28 + 10245: -26,-24 + 10246: -26,-23 + 10247: -27,-22 + 10248: -28,-22 + 10249: -29,-21 + 10288: -32,-31 + 10289: -34,-30 + 10290: -35,-30 + 10291: -35,-31 + 10376: -23,-18 + 10377: -23,-20 + 10378: -20,-19 + 10379: -27,-17 + 10380: -26,-16 + 10381: -28,-16 + 10382: -25,-20 + 10383: -22,-18 + 10384: -21,-18 + 10385: -21,-16 + 10386: -22,-20 + 10387: -23,-19 + 10388: -22,-19 + 10389: -26,-16 + 10390: -26,-17 + 10483: -21,-30 + 10484: -23,-32 + 10485: -20,-32 + 10544: -25,-34 + 10545: -25,-33 + 10546: -27,-31 + 10547: -26,-31 + 10548: -26,-34 + 10549: -27,-30 + 10582: -25,-39 + 10583: -25,-37 + 10596: -29,-24 + 10597: -29,-25 + 10623: -16,41 + 10624: -16,38 + 10625: -15,39 + 10626: -14,38 + 10627: -14,39 + 10648: -7,40 + 10691: -12,38 + 10692: -11,39 + 10693: -9,40 + 10892: -12,51 + 10893: -13,52 + 10894: -15,48 + 10895: -16,49 + 10896: -12,48 + 10939: -25,44 + 10940: -21,44 + 10941: -23,43 + 10942: -18,43 + 10943: -18,44 + 10944: -19,45 + 10945: -13,44 + 10946: -13,43 + 10947: -15,44 + 10948: -16,45 + 10949: -10,45 + 10950: -11,44 + 10951: -7,43 + 10952: -6,45 + 10953: -5,44 + 10954: -12,44 + 10986: -24,41 + 10987: -25,40 + 11055: -6,52 + 11056: -7,49 + 11057: -6,47 + 11058: -5,49 + 11059: -8,47 + 11060: -8,49 + 11061: -10,50 + 11062: -9,52 + 11063: -10,53 + 11064: -10,51 + 11065: -6,51 + 11066: -8,50 + 11153: 0,50 + 11154: 4,49 + 11155: 2,50 + 11156: 1,50 + 11157: -1,51 + 11158: 2,51 + 11367: 45,-4 + 11368: 46,-3 + 11369: 42,-3 + 11370: 45,-5 + 11371: 45,-5 + 11372: 47,-6 + 11373: 43,-9 + 11374: 45,-10 + 11375: 43,-11 + 11376: 42,-11 + 11377: 43,-10 + 11378: 48,-10 + 11379: 48,-10 + 11380: 46,-8 + 11381: 42,-7 + 11382: 45,-6 + 11383: 46,-7 + 11384: 45,-7 + 11385: 47,-1 + 11386: 46,0 + 11634: 23,-13 + 11635: 22,-13 + 11636: 23,-13 + 11637: 26,-14 + 11638: 27,-13 + 11639: 29,-13 + 11640: 33,-13 + 11641: 35,-14 + 11642: 37,-14 + 11643: 39,-13 + 11644: 35,-13 + 11645: 39,-14 + 11646: 34,-14 + 11647: 36,-15 + 11648: 45,-14 + 11649: 47,-15 + 11650: 49,-14 + 11651: 53,-14 + 11652: 56,-15 + 11653: 51,-13 + 11654: 56,-14 + 11655: 60,-15 + 11656: 56,-14 + 11657: 52,-12 + 11658: 51,-10 + 11659: 52,-10 + 11660: 52,-11 + 11661: 58,-15 + 11662: 63,-14 + 11663: 62,-15 + 11664: 64,-15 + 11665: 63,-15 + 11666: 66,-15 + 11667: 67,-15 + 11668: 64,-16 + 11669: 63,-16 + 11738: 20,-15 + 11739: 22,-15 + 11740: 25,-15 + 11741: 29,-15 + 11742: 30,-15 + 11743: 33,-15 + 11744: 37,-15 + 11861: 35,-23 + 11862: 36,-24 + 11863: 31,-25 + 11864: 27,-26 + 11865: 24,-26 + 11888: 30,-24 + 11889: 25,-24 + 11890: 27,-25 + 11891: 25,-23 + 11892: 25,-25 + 11893: 24,-26 + 11894: 31,-24 + 11895: 32,-24 + 11896: 34,-23 + 11897: 34,-25 + 11898: 31,-24 + 11899: 29,-26 + 11900: 34,-24 + 11901: 35,-24 + 11902: 36,-25 + 11903: 32,-25 + 11904: 37,-23 + 11905: 38,-24 + 11962: 24,-17 + 11963: 24,-17 + 11964: 25,-17 + 11965: 25,-20 + 11966: 29,-19 + 11967: 32,-18 + 11968: 34,-19 + 11969: 34,-20 + 11970: 35,-20 + 11989: 19,-24 + 11990: 19,-24 + 11991: 22,-18 + 11992: 21,-18 + 11993: 19,-22 + 11994: 22,-23 + 11995: 21,-23 + 11996: 21,-16 + 12038: 25,-28 + 12039: 25,-29 + 12040: 26,-30 + 12041: 25,-31 + 12042: 27,-28 + 12043: 31,-29 + 12044: 33,-29 + 12045: 33,-29 + 12046: 30,-30 + 12047: 31,-31 + 12048: 34,-28 + 12049: 37,-30 + 12050: 36,-32 + 12051: 37,-32 + 12052: 39,-32 + 12053: 40,-34 + 12054: 40,-37 + 12055: 42,-36 + 12056: 40,-36 + 12057: 40,-39 + 12058: 41,-40 + 12059: 39,-44 + 12060: 40,-47 + 12061: 39,-49 + 12062: 40,-50 + 12063: 40,-46 + 12064: 41,-43 + 12065: 40,-38 + 12066: 41,-36 + 12067: 41,-34 + 12068: 36,-36 + 12137: 19,-33 + 12138: 18,-35 + 12139: 21,-34 + 12140: 22,-34 + 12141: 21,-36 + 12142: 19,-36 + 12143: 18,-36 + 12144: 23,-34 + 12145: 22,-36 + 12146: 22,-37 + 12147: 21,-32 + 12148: 21,-32 + 12149: 18,-34 + 12150: 22,-34 + 12151: 19,-35 + 12152: 19,-36 + 12175: 24,-33 + 12176: 25,-33 + 12177: 25,-35 + 12178: 25,-36 + 12179: 26,-37 + 12180: 24,-37 + 12181: 25,-36 + 12182: 25,-33 + 12183: 26,-34 + 12267: 46,-35 + 12268: 44,-36 + 12269: 45,-37 + 12270: 43,-40 + 12271: 43,-41 + 12272: 44,-41 + 12273: 45,-40 + 12274: 46,-40 + 12275: 47,-40 + 12276: 47,-39 + 12333: 34,-50 + 12334: 35,-49 + 12335: 37,-49 + 12336: 37,-50 + 12337: 36,-46 + 12338: 35,-47 + 12339: 34,-46 + 12340: 36,-47 + 12341: 36,-46 + 12342: 37,-47 + 12356: 39,-56 + 12357: 42,-57 + 12358: 45,-56 + 12359: 46,-56 + 12360: 46,-56 + 12361: 47,-57 + 12362: 42,-57 + 12363: 40,-58 + 12364: 39,-60 + 12365: 43,-59 + 12366: 44,-60 + 12367: 47,-59 + 12368: 47,-61 + 12369: 46,-61 + 12370: 35,-53 + 12371: 36,-53 + 12372: 36,-52 + 12373: 34,-54 + 12374: 35,-55 + 12375: 36,-56 + 12468: 47,-71 + 12469: 47,-71 + 12470: 46,-71 + 12471: 45,-73 + 12472: 44,-74 + 12473: 42,-74 + 12474: 41,-74 + 12475: 41,-73 + 12476: 45,-72 + 12477: 43,-73 + 12478: 44,-72 + 12479: 43,-71 + 12480: 42,-72 + 12481: 42,-72 + 12482: 38,-28 + 12483: 38,-30 + 12484: 40,-27 + 12485: 40,-27 + 12486: 38,-28 + 12487: 40,-28 + 12488: 40,-28 + 12489: 44,-28 + 12490: 46,-28 + 12491: 45,-30 + 12492: 44,-29 + 12493: 45,-28 + 12494: 46,-24 + 12495: 44,-24 + 12496: 47,-23 + 12497: 46,-24 + 12498: 45,-25 + 12499: 45,-25 + 12537: 48,-28 + 12538: 48,-29 + 12539: 49,-28 + 12540: 46,-27 + 12541: 44,-28 + 12542: 44,-29 + 12543: 38,-17 + 12544: 37,-19 + 12545: 38,-20 + 12546: 38,-18 + 12547: 39,-18 + 12548: 39,-19 + 12549: 42,-17 + 12550: 43,-18 + 12551: 43,-19 + 12552: 41,-20 + 12553: 45,-18 + 12554: 45,-17 + 12555: 46,-18 + 12556: 47,-18 + 12557: 45,-20 + 12558: 45,-21 + 12559: 46,-21 + 12560: 42,-20 + 12561: 42,-21 + 12562: 42,-19 + 12670: 77,-3 + 12671: 76,-4 + 12672: 77,-3 + 12673: 77,-3 + 12674: 78,-3 + 12675: 81,-3 + 12676: 82,-4 + 12677: 80,-3 + 12678: 81,-4 + 12679: 81,-8 + 12680: 81,-9 + 12681: 82,-10 + 12682: 80,-12 + 12683: 81,-13 + 12684: 78,-14 + 12685: 77,-14 + 12686: 78,-15 + 12687: 77,-13 + 12688: 77,-15 + 12689: 81,-14 + 12690: 81,-12 + 12691: 81,-8 + 12692: 80,-6 + 12693: 76,-7 + 12694: 76,-9 + 12695: 78,-12 + 12696: 77,-14 + 12697: 77,-15 + 12805: 77,-14 + 12806: 77,-13 + 12807: 78,-15 + 12808: 75,-14 + 12809: 75,-14 + 12810: 74,-13 + 12811: 76,-13 + 12812: 77,-13 + 12813: 76,-13 + 12814: 76,-13 + 12815: 75,-13 + 12816: 75,-13 + 12817: 75,-10 + 12818: 76,-7 + 12819: 79,-6 + 12820: 81,-6 + 12821: 82,-8 + 12822: 82,-12 + 12823: 80,-12 + 12824: 82,-3 + 12825: 81,-2 + 12826: 78,-3 + 12827: 77,-3 + 12828: 76,-4 + 12829: 65,-7 + 12830: 65,-7 + 12831: 65,-8 + 12832: 66,-12 + 12833: 65,-11 + 12834: 72,-5 + 12835: 71,-4 + 12836: 71,-3 + 12837: 70,-3 + 12838: 69,-3 + 12839: 69,-2 + 12840: 71,-2 + 12841: 72,-2 + 12842: 73,-7 + 12843: 73,-7 + 12844: 73,-11 + 12845: 72,-11 + 12846: 72,-11 + 12847: 66,-25 + 12848: 66,-25 + 12849: 67,-26 + 12850: 66,-27 + 12851: 66,-30 + 12852: 67,-34 + 12853: 66,-36 + 12854: 66,-40 + 12855: 66,-43 + 12856: 66,-46 + 12857: 65,-49 + 12858: 66,-48 + 12859: 67,-49 + 12860: 66,-52 + 12861: 67,-52 + 12862: 67,-53 + 12863: 70,-53 + 12864: 72,-51 + 12865: 73,-52 + 12866: 74,-53 + 12867: 73,-55 + 12868: 73,-57 + 12869: 73,-57 + 12870: 72,-57 + 12871: 73,-58 + 12872: 74,-58 + 12873: 74,-56 + 12874: 72,-53 + 12875: 69,-52 + 12876: 70,-51 + 12877: 70,-50 + 12878: 70,-51 + 12879: 71,-46 + 12880: 71,-46 + 12881: 72,-44 + 12882: 72,-47 + 12883: 70,-47 + 12884: 72,-48 + 12885: 74,-48 + 12886: 75,-46 + 12887: 73,-45 + 12888: 74,-46 + 12889: 78,-46 + 12890: 79,-45 + 12891: 79,-47 + 12892: 79,-48 + 12893: 75,-47 + 12894: 75,-45 + 12895: 77,-42 + 12896: 77,-41 + 12897: 76,-42 + 12898: 74,-41 + 12899: 74,-42 + 12900: 77,-41 + 12901: 77,-38 + 12902: 78,-37 + 12903: 77,-36 + 12904: 77,-35 + 12905: 77,-34 + 12906: 77,-33 + 12907: 77,-38 + 12908: 81,-38 + 12909: 81,-37 + 12910: 82,-37 + 12911: 80,-37 + 12912: 80,-38 + 12913: 84,-37 + 12914: 86,-37 + 12915: 85,-36 + 12916: 86,-35 + 12917: 86,-37 + 12918: 70,-37 + 12919: 69,-37 + 12920: 69,-37 + 12921: 71,-36 + 12922: 71,-34 + 12923: 66,-36 + 12924: 66,-36 + 12925: 66,-34 + 12926: 66,-31 + 12927: 67,-28 + 12928: 66,-26 + 12929: 65,-27 + 12930: 63,-27 + 12931: 59,-27 + 12932: 56,-27 + 12933: 55,-28 + 12934: 55,-27 + 12935: 54,-28 + 12936: 53,-27 + 12937: 54,-28 + 13019: 52,-18 + 13020: 53,-18 + 13021: 51,-17 + 13022: 54,-18 + 13023: 53,-23 + 13024: 53,-24 + 13025: 53,-24 + 13026: 52,-25 + 13027: 53,-24 + 13028: 51,-23 + 13029: 52,-28 + 13030: 54,-28 + 13031: 56,-27 + 13032: 58,-28 + 13033: 56,-30 + 13034: 56,-31 + 13035: 57,-31 + 13036: 56,-31 + 13037: 55,-31 + 13038: 55,-33 + 13039: 52,-31 + 13040: 53,-31 + 13041: 52,-31 + 13042: 53,-32 + 13043: 53,-32 + 13044: 56,-37 + 13045: 56,-37 + 13046: 57,-37 + 13047: 59,-41 + 13048: 60,-40 + 13049: 60,-41 + 13050: 61,-42 + 13051: 60,-42 + 13052: 58,-42 + 13053: 57,-45 + 13054: 58,-46 + 13055: 58,-46 + 13056: 58,-47 + 13057: 57,-49 + 13058: 57,-49 + 13059: 56,-50 + 13060: 56,-51 + 13061: 56,-51 + 13062: 56,-55 + 13063: 56,-55 + 13064: 57,-56 + 13065: 59,-57 + 13066: 57,-57 + 13067: 57,-58 + 13068: 57,-58 + 13069: 55,-57 + 13070: 55,-57 + 13071: 55,-58 + 13072: 55,-58 + 13073: 62,-50 + 13074: 61,-50 + 13075: 61,-48 + 13076: 61,-49 + 13077: 61,-50 + 13078: 63,-49 + 13079: 64,-48 + 13080: 66,-47 + 13081: 67,-47 + 13082: 66,-47 + 13083: 67,-49 + 13084: 66,-51 + 13085: 66,-53 + 13086: 65,-53 + 13087: 66,-51 + 13088: 65,-55 + 13089: 66,-54 + 13090: 66,-53 + 13091: 66,-53 + 13092: 65,-54 + 13093: 69,-54 + 13094: 69,-52 + 13095: 68,-53 + 13096: 67,-54 + 13097: 71,-52 + 13098: 71,-52 + 13099: 68,-52 + 13100: 74,-54 + 13101: 74,-54 + 13102: 73,-55 + 13103: 73,-56 + 13104: 74,-57 + 13105: 73,-58 + 13106: 73,-58 + 13107: 76,-52 + 13108: 74,-49 + 13109: 74,-50 + 13110: 74,-51 + 13111: 71,-50 + 13112: 72,-50 + 13113: 73,-51 + 13114: 72,-44 + 13115: 71,-45 + 13116: 70,-45 + 13117: 71,-44 + 13118: 74,-45 + 13119: 76,-44 + 13120: 78,-45 + 13121: 80,-46 + 13122: 78,-47 + 13123: 79,-47 + 13124: 79,-48 + 13125: 76,-47 + 13126: 79,-46 + 13127: 79,-45 + 13128: 77,-41 + 13129: 78,-39 + 13130: 77,-36 + 13131: 74,-41 + 13132: 74,-41 + 13133: 74,-39 + 13134: 73,-36 + 13135: 72,-36 + 13136: 70,-37 + 13137: 73,-34 + 13138: 75,-34 + 13139: 74,-34 + 13140: 74,-30 + 13141: 72,-29 + 13142: 73,-31 + 13143: 75,-31 + 13144: 72,-32 + 13145: 71,-30 + 13146: 73,-28 + 13147: 74,-25 + 13148: 73,-24 + 13149: 78,-26 + 13150: 76,-24 + 13151: 78,-24 + 13152: 77,-25 + 13153: 79,-25 + 13154: 78,-25 + 13155: 77,-25 + 13156: 78,-25 + 13157: 81,-25 + 13246: 61,-35 + 13247: 60,-35 + 13248: 60,-35 + 13249: 59,-36 + 13250: 60,-38 + 13251: 61,-37 + 13252: 62,-35 + 13253: 63,-36 + 13254: 63,-37 + 13255: 62,-38 + 13256: 61,-38 + 13257: 62,-37 + 13258: 62,-36 + 13259: 62,-35 + 13260: 61,-34 + 13261: 60,-34 + 13262: 59,-34 + 13263: 59,-34 + 13264: 62,-35 + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 2152: -47,-16 + 2153: -47,-12 + - node: + zIndex: 100 + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 2128: -61,-3 + 2134: -61,-3 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 4498: -18,-32 + 4499: -15,-31 + 4500: -14,-32 + 4501: -11,-30 + 4502: -11,-31 + 4503: -18,-26 + 4504: -17,-28 + 4505: -17,-24 + 4506: -16,-22 + 4507: -18,-23 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 1934: 25,28 + 1935: 24,28 + 2027: 47,-44 + 2046: 92,-31 + 2233: -23,2 + 2234: -23,4 + 2235: -23,8 + 2236: -20,5 + 2237: -21,2 + 2238: -22,3 + 2266: 2,-23 + 6487: -16,-2 + 10430: -23,-23 + 10431: -21,-24 + 10432: -21,-27 + 10433: -22,-26 + 10434: -23,-26 + 10435: -21,-22 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 2109: -3,23 + 2110: -11,23 + 2186: -33,-6 + 2187: -34,-5 + 2188: -36,-6 + 2285: -11,5 + 2311: -6,8 + 2312: -5,6 + 2313: -6,6 + 2377: 9,-75 + 2389: -9,-52 + 2390: -6,-52 + 2415: 24,19 + 2416: 24,17 + 2420: 25,18 + 2431: 24,18 + 2432: 23,18 + 2440: 22.491566,10.538459 + 2479: 20,4 + 2480: 21,5 + 2481: 20,6 + 2482: 20,2 + 2483: 22,3 + 2505: 22,-1 + 2506: 30,-6 + 3059: -69,10 + 3060: -75,9 + 3061: -65,5 + 3062: -65,-7 + 3063: -65,-14 + 3064: -76,-16 + 3065: -74,-6 + 3066: -57,-4 + 3067: -63,1 + 3068: -62,-1 + 3069: -72,-16 + 3070: -67,-15 + 3075: -69,9 + 3076: -78,9 + 3077: -67,10 + 3079: -62,-4 + 3080: -61,-4 + 3085: -72,-4 + 3086: -66,-5 + 3094: -62,4 + 3095: -61,5 + 3096: -61,3 + 3097: -57,4 + 3111: -59,1 + 3112: -57,1 + 3304: -47,-8 + 3305: -47,-6 + 3306: -46,-5 + 3307: -42,-9 + 3308: -43,-8 + 3309: -44,-7 + 3310: -43,-5 + 3311: -42,-7 + 3474: -50,-6 + 3475: -51,-7 + 3476: -52,-5 + 3477: -50,-5 + 3478: -52,-9 + 3479: -51,-8 + 3520: -48,-3 + 3521: -49,-1 + 3522: -50,-3 + 3523: -52,-1 + 3524: -39,-2 + 3525: -42,-3 + 3526: -40,-1 + 3527: -37,-2 + 3528: -33,-3 + 3529: -35,-1 + 3530: -28,-1 + 3531: -30,-3 + 3532: -30,-2 + 3533: -24,-2 + 3534: -27,-4 + 3535: -23,-3 + 3536: -21,-4 + 3537: -25,-4 + 3538: -21,-2 + 3539: -23,-1 + 3540: -20,-2 + 3541: -31,-2 + 3594: -23,-2 + 3607: -47,2 + 3608: -42,3 + 3609: -41,2 + 3610: -38,4 + 3611: -39,2 + 3612: -45,1 + 3613: -47,4 + 3614: -44,5 + 3664: -33,5 + 3665: -31,6 + 3666: -34,5 + 3667: -34,3 + 3668: -31,3 + 3669: -33,3 + 3712: -21,-8 + 3713: -21,-7 + 3714: -24,-8 + 3715: -22,-7 + 3726: -23,-8 + 3727: -21,-7 + 3728: -24,-6 + 3776: -22,-6 + 3784: -25,-12 + 3785: -21,-12 + 3786: -23,-12 + 3787: -23,-13 + 3788: -24,-14 + 3818: -21,5 + 3819: -23,6 + 3820: -22,7 + 3857: -67,13 + 3858: -66,15 + 3859: -66,13 + 3860: -68,17 + 3869: -66,17 + 3870: -66,15 + 3871: -66,12 + 3875: -22,-10 + 3911: -12,4 + 3912: -11,1 + 3913: -12,2 + 3962: -10,8 + 3963: -13,6 + 3964: -12,8 + 3965: -14,9 + 3966: -9,9 + 3967: -14,7 + 4145: -2,-3 + 4146: 0,-1 + 4147: -2,0 + 4148: 2,1 + 4149: -4,1 + 4150: -6,-3 + 4151: -7,-2 + 4152: -11,-1 + 4153: -13,-3 + 4154: -14,-2 + 4155: -8,-1 + 4156: 4,-3 + 4157: 6,-2 + 4158: 7,-1 + 4159: 9,0 + 4160: 10,-1 + 4161: 10,-3 + 4162: 11,-2 + 4163: 12,-2 + 4193: -1,-3 + 4348: -16,-4 + 4349: -17,-6 + 4350: -18,-3 + 4351: -17,-1 + 4352: -17,-5 + 4353: -14,-9 + 4354: -17,-11 + 4355: -13,-10 + 4356: -15,-8 + 4357: -16,-14 + 4358: -16,-19 + 4359: -18,-19 + 4360: -17,-13 + 4361: -18,-13 + 4362: -19,-12 + 4363: -18,-20 + 4398: -17,-9 + 4538: -14,-25 + 4539: -14,-28 + 4645: -8,-32 + 4646: -3,-31 + 4647: 0,-31 + 4648: 1,-32 + 4649: 4,-30 + 4650: 4,-32 + 4651: 6,-33 + 4652: 3,-33 + 4653: 7,-31 + 4654: 5,-31 + 4655: -2,-31 + 4656: -7,-31 + 4657: -9,-30 + 4685: 3,-32 + 4686: -2,-32 + 4729: 16,-27 + 4730: 15,-29 + 4731: 14,-32 + 4732: 12,-30 + 4733: 9,-32 + 4734: 14,-31 + 4735: 15,-28 + 4736: 14,-25 + 4863: 14,-19 + 4864: 16,-18 + 4865: 15,-19 + 4866: 16,-22 + 4867: 15,-23 + 4868: 15,-21 + 4869: 16,-14 + 4870: 15,-12 + 4871: 14,-17 + 4872: 15,-16 + 4873: 14,-23 + 4971: 12,-9 + 4972: 13,-10 + 4973: 16,-8 + 4974: 14,-8 + 4975: 16,-5 + 4976: 14,-5 + 4977: 16,-2 + 4978: 14,-2 + 4979: 16,-1 + 4980: 15,-4 + 4981: 15,-8 + 4982: 13,-9 + 5280: 9,19 + 5281: 6,21 + 5282: 6,19 + 5283: 6,20 + 5284: 1,21 + 5285: 1,19 + 5286: -2,20 + 5287: -2,21 + 5288: -3,20 + 5289: -8,21 + 5290: -5,19 + 5291: -7,19 + 5292: -9,20 + 5293: -9,19 + 5294: -13,20 + 5295: -14,19 + 5296: -9,21 + 5297: 0,16 + 5298: -1,14 + 5299: -1,12 + 5300: -1,8 + 5301: 0,7 + 5302: 0,3 + 5303: -2,4 + 5304: -2,8 + 5305: -1,7 + 5306: -2,12 + 5307: -2,16 + 5308: -1,17 + 5363: -15,19 + 5965: 6,28 + 5966: 8,27 + 5967: 10,27 + 5968: 7,26 + 5969: 2,27 + 5970: 3,26 + 5971: 2,28 + 5972: -2,26 + 5973: -1,27 + 5974: 0,26 + 5975: -6,28 + 5976: -5,32 + 5977: -6,30 + 5978: -6,26 + 5979: -10,27 + 5980: -10,26 + 5981: -14,27 + 5982: -13,26 + 6003: -12,26 + 6004: 1,28 + 6018: -3,27 + 6023: 5,28 + 6024: -5,26 + 6033: 5,23 + 6035: 5,24 + 6042: 9,23 + 6043: 8,24 + 6052: 1,23 + 6057: -10,31 + 6058: -9,29 + 6059: -8,32 + 6073: -11,32 + 6074: -14,29 + 6075: -15,32 + 6078: -14,30 + 6079: -14,32 + 6086: -17,31 + 6087: -19,32 + 6088: -19,29 + 6101: 2,30 + 6102: 3,32 + 6103: 1,32 + 6104: 1,33 + 6131: 14,34 + 6132: 13,32 + 6133: 13,35 + 6134: 11,35 + 6135: 16,34 + 6136: 19,34 + 6137: 17,33 + 6138: 17,32 + 6139: 16,30 + 6140: 10,30 + 6141: 11,31 + 6142: 10,31 + 6143: 8,31 + 6144: 6,32 + 6145: 7,30 + 6146: 10,32 + 6147: 13,33 + 6148: 12,35 + 6149: 11,32 + 6207: 8,38 + 6208: 7,37 + 6209: 8,35 + 6210: 7,35 + 6211: 7,34 + 6212: 6,37 + 6213: 7,41 + 6214: 6,40 + 6215: 8,39 + 6237: 7,36 + 6238: 8,36 + 6251: 22,34 + 6252: 24,32 + 6253: 22,32 + 6254: 23,34 + 6255: 23,35 + 6256: 23,36 + 6257: 24,38 + 6258: 22,39 + 6259: 23,41 + 6260: 24,40 + 6261: 23,42 + 6262: 22,40 + 6263: 22,36 + 6264: 21,35 + 6265: 21,32 + 6286: 23,41 + 6287: 23,40 + 6309: 3,37 + 6310: 2,36 + 6311: 4,36 + 6312: 2,38 + 6313: -2,36 + 6314: -2,38 + 6315: -3,38 + 6316: -3,35 + 6351: -15,34 + 6352: -13,35 + 6353: -11,35 + 6354: -11,34 + 6355: -14,36 + 6356: -8,36 + 6357: -7,35 + 6358: -7,37 + 6359: -5,36 + 6360: -6,35 + 6361: -10,35 + 6362: -6,36 + 6396: -15,23 + 6397: -14,23 + 6398: -13,23 + 6399: -15,22 + 6409: -19,27 + 6410: -17,25 + 6411: -17,23 + 6412: -19,23 + 6413: -19,26 + 6426: -19,22 + 6458: 14,37 + 6459: 12,38 + 6460: 13,38 + 6461: 13,40 + 6462: 12,40 + 6463: 14,40 + 6477: 16,41 + 6478: 16,41 + 6524: -19,35 + 6525: -18,34 + 6530: -19,36 + 6576: -5,16 + 6577: -5,14 + 6578: -6,13 + 6579: -4,14 + 6598: -8,13 + 6599: -9,13 + 6620: -20,20 + 6621: -17,20 + 6622: -20,16 + 6623: -19,16 + 6624: -20,18 + 6625: -19,17 + 6626: -19,19 + 6627: -20,19 + 6628: -18,19 + 6629: -18,20 + 6709: -2,-19 + 6710: -3,-20 + 6711: 1,-21 + 6712: -1,-23 + 6713: -2,-26 + 6714: 0,-27 + 6715: -2,-28 + 6716: -1,-25 + 6717: -3,-25 + 6725: 1,-19 + 6726: 1,-22 + 6729: -1,-23 + 6734: -2,-22 + 6735: 0,-20 + 6852: -8,-10 + 6853: -5,-8 + 6854: -4,-9 + 6855: -2,-8 + 6856: 0,-8 + 6857: 2,-8 + 6858: -1,-9 + 6859: -1,-7 + 6860: -5,-7 + 6861: 4,-9 + 6862: 3,-8 + 6863: 4,-7 + 6864: 6,-9 + 6865: 5,-10 + 6866: 7,-10 + 6909: -8,-8 + 6910: -5,-6 + 6911: -4,-6 + 6912: -5,-5 + 6913: -2,-6 + 6914: 1,-5 + 6915: 1,-6 + 6916: 2,-6 + 6917: 4,-5 + 6918: 5,-8 + 6919: 7,-8 + 6967: -4,-13 + 6968: -5,-14 + 6969: -5,-12 + 6970: 2,-13 + 6971: 3,-12 + 6972: 2,-15 + 6973: 3,-13 + 6974: 0,-14 + 6975: -1,-12 + 7061: -10,-13 + 7062: -11,-12 + 7063: -13,-13 + 7064: -14,-16 + 7065: -13,-18 + 7066: -12,-17 + 7067: -9,-17 + 7068: -9,-18 + 7069: -7,-18 + 7070: -8,-19 + 7071: -7,-16 + 7072: -7,-14 + 7099: -7,-17 + 7153: -8,-26 + 7154: -9,-27 + 7155: -10,-26 + 7156: -10,-25 + 7157: -11,-27 + 7158: -8,-22 + 7261: 9,-15 + 7262: 10,-14 + 7263: 11,-15 + 7264: 7,-14 + 7265: 6,-15 + 7266: 5,-14 + 7267: 6,-12 + 7268: 8,-12 + 7269: 9,-13 + 7270: 12,-13 + 7271: 12,-12 + 7274: 12,-17 + 7275: 11,-18 + 7276: 12,-18 + 7277: 7,-19 + 7278: 5,-18 + 7279: 6,-17 + 7302: 12,-14 + 7362: 6,-27 + 7363: 7,-26 + 7364: 7,-27 + 7365: 11,-26 + 7366: 10,-25 + 7367: 12,-26 + 7368: 8,-25 + 7369: 9,-26 + 7370: 8,-28 + 7478: 14,25 + 7479: 12,23 + 7480: 13,25 + 7481: 17,21 + 7482: 15,20 + 7483: 14,19 + 7484: 12,20 + 7485: 18,20 + 7486: 15,21 + 7487: 17,23 + 7488: 17,25 + 7489: 16,27 + 7490: 18,28 + 7491: 18,25 + 7675: 21,8 + 7676: 19,10 + 7677: 20,12 + 7678: 19,14 + 7679: 22,15 + 7680: 22,14 + 7681: 25,14 + 7682: 26,15 + 7683: 27,13 + 7684: 26,11 + 7685: 27,10 + 7686: 26,8 + 7687: 22,9 + 7688: 26,13 + 7689: 20,14 + 7735: 9,12 + 7736: 8,10 + 7737: 9,8 + 7738: 8,6 + 7739: 9,5 + 7740: 8,3 + 7741: 9,3 + 7742: 10,8 + 7743: 9,9 + 7744: 12,11 + 7745: 13,9 + 7746: 14,8 + 7747: 12,8 + 7748: 13,11 + 7749: 12,12 + 7750: 10,12 + 7751: 16,12 + 7752: 15,9 + 7753: 17,10 + 7754: 14,11 + 7755: 15,12 + 7756: 13,12 + 7757: 11,11 + 7846: 26,5 + 7847: 25,2 + 7848: 27,2 + 7849: 24,5 + 7850: 25,6 + 7851: 25,4 + 8082: 22,-8 + 8083: 24,-7 + 8084: 24,-10 + 8085: 22,-11 + 8086: 23,-7 + 8087: 27,-8 + 8088: 26,-10 + 8089: 25,-11 + 8090: 28,-11 + 8091: 29,-10 + 8092: 30,-11 + 8093: 27,-7 + 8094: 25,-6 + 8095: 25,-8 + 8096: 25,-4 + 8097: 27,-3 + 8098: 26,-3 + 8099: 26,-1 + 8100: 27,-1 + 8101: 20,-5 + 8102: 21,-4 + 8103: 18,-5 + 8104: 18,-2 + 8105: 23,-4 + 8106: 20,-9 + 8107: 19,-10 + 8108: 19,-8 + 8109: 18,-7 + 8110: 18,-9 + 8111: 21,-9 + 8219: 13,5 + 8220: 11,5 + 8221: 11,3 + 8222: 12,3 + 8223: 11,1 + 8224: 14,1 + 8225: 17,1 + 8226: 16,3 + 8227: 14,3 + 8228: 12,4 + 8229: 16,5 + 8230: 17,6 + 8290: -11,16 + 8291: -13,15 + 8292: -14,17 + 8293: -13,16 + 8488: -2,-36 + 8489: -1,-34 + 8490: 0,-36 + 8491: -1,-37 + 8492: 0,-41 + 8493: -1,-41 + 8494: 1,-44 + 8495: -1,-44 + 8496: 0,-42 + 8497: 1,-46 + 8498: -1,-46 + 8499: -2,-45 + 8500: -1,-43 + 8501: -1,-48 + 8502: -2,-47 + 8503: 0,-48 + 8504: 0,-51 + 8505: -2,-50 + 8506: -1,-50 + 8507: -2,-53 + 8508: 1,-56 + 8509: 0,-58 + 8510: -1,-57 + 8511: -3,-59 + 8512: -4,-58 + 8513: -4,-56 + 8514: 1,-58 + 8515: -2,-56 + 8516: -1,-54 + 8517: -1,-53 + 8518: -1,-59 + 8692: -2,-57 + 8981: 4,-57 + 8982: 8,-59 + 8983: 8,-57 + 8984: 5,-56 + 8985: 3,-53 + 8986: 4,-54 + 8987: 4,-52 + 8988: 7,-56 + 8989: 9,-57 + 8990: 7,-58 + 9021: 7,-62 + 9022: 9,-63 + 9042: 5,-67 + 9043: 8,-66 + 9044: 9,-69 + 9045: 8,-70 + 9046: 8,-67 + 9047: 9,-65 + 9048: 3,-67 + 9049: 1,-66 + 9050: -1,-67 + 9051: -6,-67 + 9052: -9,-69 + 9053: -11,-69 + 9086: 7,-78 + 9087: 7,-76 + 9088: 9,-74 + 9089: 8,-73 + 9104: 13,-74 + 9105: 12,-73 + 9106: 11,-71 + 9131: -6,-77 + 9132: -6,-78 + 9133: -3,-77 + 9134: -1,-78 + 9135: -2,-77 + 9136: 3,-78 + 9137: 2,-77 + 9138: 5,-77 + 9178: -2,-73 + 9179: 0,-71 + 9195: 4,-60 + 9196: 3,-61 + 9197: 5,-62 + 9198: 4,-63 + 9211: 3,-60 + 9224: -1,-63 + 9225: -3,-64 + 9226: -2,-64 + 9227: -5,-63 + 9228: -6,-65 + 9229: -9,-65 + 9230: -10,-63 + 9231: -6,-62 + 9257: -13,-64 + 9258: -12,-63 + 9272: -18,-74 + 9273: -16,-73 + 9274: -14,-74 + 9275: -17,-72 + 9276: -16,-70 + 9277: -17,-69 + 9278: -14,-70 + 9304: -20,-70 + 9305: -21,-69 + 9320: -27,-66 + 9329: -26,-70 + 9330: -27,-71 + 9331: -25,-72 + 9332: -23,-70 + 9333: -24,-71 + 9334: -23,-68 + 9335: -26,-71 + 9364: 8,-53 + 9365: 7,-54 + 9366: 9,-51 + 9450: 5,-50 + 9451: 5,-48 + 9452: 7,-49 + 9463: 6,-43 + 9464: 4,-44 + 9465: 5,-45 + 9466: 5,-46 + 9467: 7,-46 + 9487: 13,-53 + 9488: 12,-52 + 9502: 12,-45 + 9503: 13,-44 + 9504: 14,-45 + 9505: 14,-43 + 9506: 13,-41 + 9507: 13,-42 + 9609: -11,-52 + 9610: -11,-50 + 9611: -14,-50 + 9612: -17,-51 + 9613: -17,-53 + 9614: -17,-58 + 9615: -16,-58 + 9616: -13,-58 + 9617: -11,-58 + 9618: -11,-56 + 9640: -17,-56 + 9653: -6,-56 + 9654: -8,-55 + 9655: -8,-57 + 9656: -7,-54 + 9657: -7,-58 + 9658: -7,-56 + 9743: -11,-39 + 9744: -8,-40 + 9745: -10,-40 + 9746: -6,-40 + 9747: -4,-39 + 9748: -4,-35 + 9749: -4,-34 + 9750: -6,-34 + 9751: -8,-34 + 9752: -11,-34 + 9753: -11,-36 + 9754: -11,-35 + 9809: 4,-36 + 9810: 2,-37 + 9811: 5,-37 + 9812: 4,-35 + 10049: -32,-21 + 10050: -31,-23 + 10051: -32,-24 + 10052: -32,-26 + 10053: -32,-27 + 10054: -31,-28 + 10055: -32,-28 + 10056: -35,-28 + 10057: -36,-27 + 10058: -37,-27 + 10059: -37,-30 + 10060: -38,-32 + 10061: -38,-32 + 10062: -38,-29 + 10063: -41,-30 + 10064: -42,-32 + 10065: -42,-28 + 10066: -40,-28 + 10067: -39,-27 + 10068: -39,-28 + 10069: -39,-25 + 10070: -39,-23 + 10071: -41,-22 + 10072: -39,-21 + 10073: -38,-21 + 10074: -37,-20 + 10075: -33,-19 + 10076: -34,-19 + 10135: -36,-26 + 10136: -38,-26 + 10137: -35,-28 + 10230: -28,-21 + 10231: -28,-23 + 10232: -26,-25 + 10233: -26,-27 + 10234: -27,-28 + 10235: -29,-27 + 10236: -27,-26 + 10237: -27,-23 + 10238: -29,-22 + 10239: -28,-24 + 10272: -27,-22 + 10273: -26,-22 + 10274: -25,-25 + 10275: -27,-25 + 10283: -34,-32 + 10284: -34,-31 + 10285: -34,-30 + 10286: -32,-32 + 10287: -33,-31 + 10364: -27,-16 + 10365: -22,-18 + 10366: -23,-17 + 10367: -24,-20 + 10368: -21,-19 + 10369: -22,-20 + 10370: -20,-18 + 10371: -21,-16 + 10372: -21,-17 + 10373: -20,-17 + 10374: -24,-17 + 10375: -23,-17 + 10480: -21,-31 + 10481: -22,-32 + 10482: -20,-30 + 10537: -28,-31 + 10538: -26,-30 + 10539: -25,-31 + 10540: -26,-32 + 10541: -27,-33 + 10542: -26,-35 + 10543: -25,-35 + 10579: -25,-38 + 10580: -26,-39 + 10581: -26,-37 + 10595: -29,-24 + 10618: -15,41 + 10619: -14,38 + 10620: -15,39 + 10645: -5,40 + 10646: -6,39 + 10647: -7,41 + 10656: -6,39 + 10686: -11,40 + 10687: -9,39 + 10688: -11,38 + 10689: -11,41 + 10690: -12,40 + 10884: -15,47 + 10885: -13,49 + 10886: -13,47 + 10887: -15,49 + 10888: -16,47 + 10889: -12,50 + 10890: -13,53 + 10891: -13,51 + 10922: -21,43 + 10923: -15,43 + 10924: -14,44 + 10925: -10,44 + 10926: -11,43 + 10927: -8,45 + 10928: -6,44 + 10929: -8,43 + 10930: -9,44 + 10931: -12,45 + 10932: -16,44 + 10933: -19,44 + 10934: -18,43 + 10935: -23,44 + 10936: -22,43 + 10937: -25,45 + 10938: -22,45 + 10985: -24,40 + 11043: -9,52 + 11044: -10,49 + 11045: -10,47 + 11046: -9,48 + 11047: -8,49 + 11048: -6,49 + 11049: -7,47 + 11050: -5,48 + 11051: -6,50 + 11052: -7,51 + 11053: -5,52 + 11054: -5,50 + 11141: -3,50 + 11142: 1,51 + 11143: -1,49 + 11144: 3,51 + 11145: 4,50 + 11146: 2,49 + 11147: 0,49 + 11343: 42,-9 + 11344: 42,-10 + 11345: 46,-8 + 11346: 42,-8 + 11347: 43,-6 + 11348: 45,-3 + 11349: 43,-3 + 11350: 47,-4 + 11351: 46,-6 + 11352: 46,-8 + 11353: 43,-8 + 11354: 43,-11 + 11355: 46,-9 + 11356: 47,-10 + 11357: 48,-10 + 11358: 46,-7 + 11359: 50,-6 + 11360: 47,-4 + 11361: 46,-5 + 11362: 44,-1 + 11363: 42,0 + 11364: 45,0 + 11365: 49,1 + 11366: 47,1 + 11670: 71,-13 + 11671: 72,-13 + 11672: 69,-16 + 11673: 72,-15 + 11674: 69,-15 + 11675: 68,-15 + 11676: 65,-14 + 11677: 64,-14 + 11678: 61,-14 + 11679: 57,-14 + 11680: 52,-14 + 11681: 51,-13 + 11682: 49,-14 + 11683: 50,-14 + 11684: 47,-14 + 11685: 40,-14 + 11686: 38,-13 + 11687: 35,-13 + 11688: 32,-14 + 11689: 31,-14 + 11690: 28,-14 + 11691: 26,-14 + 11692: 23,-14 + 11693: 22,-13 + 11694: 20,-13 + 11695: 18,-15 + 11696: 17,-15 + 11745: 43,-15 + 11746: 51,-15 + 11747: 51,-15 + 11748: 40,-15 + 11749: 37,-15 + 11750: 33,-15 + 11751: 30,-15 + 11828: 38,-22 + 11829: 40,-23 + 11830: 39,-24 + 11831: 37,-24 + 11832: 35,-24 + 11833: 33,-25 + 11834: 31,-25 + 11835: 28,-25 + 11836: 26,-26 + 11906: 35,-21 + 11907: 33,-21 + 11908: 35,-19 + 11909: 34,-17 + 11910: 31,-19 + 11911: 29,-19 + 11912: 27,-18 + 11913: 27,-20 + 11914: 30,-21 + 11915: 29,-21 + 11916: 31,-21 + 11917: 32,-21 + 11918: 29,-22 + 11919: 28,-22 + 11920: 26,-18 + 11921: 24,-20 + 11922: 26,-20 + 11923: 25,-19 + 11924: 25,-17 + 11925: 28,-18 + 11926: 31,-18 + 11946: 39,-18 + 11947: 33,-17 + 11948: 31,-18 + 11949: 27,-18 + 11950: 25,-19 + 11951: 25,-20 + 11952: 24,-18 + 11953: 26,-18 + 11954: 34,-18 + 11955: 36,-18 + 11956: 35,-20 + 11957: 31,-20 + 11958: 26,-16 + 11959: 25,-18 + 11960: 25,-17 + 11961: 24,-17 + 11997: 22,-17 + 11998: 20,-17 + 11999: 18,-18 + 12000: 19,-20 + 12001: 21,-22 + 12002: 21,-23 + 12003: 19,-23 + 12004: 18,-22 + 12005: 20,-20 + 12006: 21,-22 + 12007: 22,-23 + 12008: 19,-17 + 12009: 19,-20 + 12010: 18,-21 + 12069: 38,-32 + 12070: 40,-33 + 12071: 41,-34 + 12072: 38,-38 + 12073: 41,-42 + 12074: 40,-46 + 12075: 41,-50 + 12076: 40,-51 + 12077: 39,-49 + 12078: 41,-45 + 12079: 41,-41 + 12080: 39,-39 + 12081: 41,-34 + 12082: 40,-32 + 12083: 43,-33 + 12084: 42,-35 + 12085: 42,-36 + 12086: 41,-36 + 12087: 38,-32 + 12088: 36,-32 + 12089: 35,-30 + 12090: 35,-29 + 12091: 31,-30 + 12092: 28,-30 + 12093: 34,-30 + 12094: 30,-29 + 12095: 28,-31 + 12096: 25,-29 + 12097: 25,-31 + 12098: 28,-28 + 12099: 24,-31 + 12153: 21,-33 + 12154: 18,-34 + 12155: 19,-35 + 12156: 18,-36 + 12157: 19,-36 + 12158: 20,-33 + 12159: 22,-35 + 12160: 22,-36 + 12161: 21,-36 + 12184: 24,-33 + 12185: 26,-33 + 12186: 26,-35 + 12187: 25,-36 + 12188: 24,-37 + 12218: 30,-34 + 12219: 29,-35 + 12220: 29,-36 + 12221: 28,-37 + 12222: 32,-34 + 12223: 34,-35 + 12224: 36,-36 + 12225: 34,-37 + 12226: 32,-37 + 12227: 32,-33 + 12228: 29,-34 + 12229: 29,-34 + 12230: 33,-35 + 12231: 28,-35 + 12232: 30,-33 + 12233: 29,-34 + 12234: 35,-33 + 12235: 37,-33 + 12236: 35,-32 + 12240: 44,-36 + 12241: 45,-36 + 12242: 47,-36 + 12243: 47,-37 + 12244: 45,-37 + 12311: 42,-47 + 12312: 44,-48 + 12313: 45,-46 + 12314: 47,-46 + 12315: 46,-47 + 12316: 44,-48 + 12317: 44,-46 + 12318: 46,-44 + 12319: 44,-44 + 12320: 45,-48 + 12321: 36,-47 + 12322: 37,-46 + 12323: 34,-46 + 12324: 35,-47 + 12325: 36,-47 + 12326: 36,-46 + 12327: 34,-50 + 12328: 35,-49 + 12329: 36,-49 + 12330: 37,-49 + 12331: 35,-50 + 12332: 35,-49 + 12376: 35,-56 + 12377: 36,-54 + 12378: 35,-52 + 12379: 38,-53 + 12380: 37,-53 + 12381: 37,-53 + 12382: 35,-54 + 12383: 39,-52 + 12384: 40,-52 + 12385: 40,-53 + 12386: 39,-54 + 12387: 41,-53 + 12388: 41,-54 + 12389: 45,-57 + 12390: 47,-57 + 12391: 42,-57 + 12392: 41,-57 + 12393: 40,-60 + 12394: 38,-60 + 12395: 39,-56 + 12396: 43,-58 + 12397: 44,-60 + 12398: 46,-59 + 12399: 47,-61 + 12400: 47,-60 + 12401: 43,-54 + 12402: 45,-54 + 12403: 45,-54 + 12404: 44,-55 + 12405: 42,-57 + 12406: 38,-58 + 12407: 39,-60 + 12500: 43,-28 + 12501: 46,-27 + 12502: 45,-27 + 12503: 45,-28 + 12504: 45,-30 + 12505: 45,-30 + 12506: 42,-28 + 12507: 40,-29 + 12508: 39,-28 + 12509: 39,-29 + 12510: 38,-29 + 12511: 38,-30 + 12512: 39,-29 + 12520: 48,-23 + 12521: 45,-24 + 12522: 46,-24 + 12523: 46,-24 + 12524: 44,-25 + 12525: 45,-27 + 12526: 46,-28 + 12527: 44,-29 + 12528: 41,-29 + 12529: 39,-28 + 12530: 39,-29 + 12531: 48,-27 + 12532: 50,-29 + 12533: 50,-28 + 12534: 49,-28 + 12535: 49,-29 + 12536: 48,-29 + 12563: 46,-17 + 12564: 46,-17 + 12565: 45,-19 + 12566: 44,-20 + 12567: 46,-21 + 12568: 43,-21 + 12569: 41,-20 + 12570: 41,-18 + 12571: 43,-17 + 12572: 46,-18 + 12573: 44,-20 + 12574: 51,-20 + 12650: 77,-6 + 12651: 78,-7 + 12652: 77,-7 + 12653: 80,-6 + 12654: 80,-10 + 12655: 80,-13 + 12656: 77,-14 + 12657: 79,-15 + 12658: 80,-12 + 12659: 78,-15 + 12660: 77,-2 + 12661: 79,-3 + 12662: 77,-3 + 12663: 77,-4 + 12664: 78,-3 + 12665: 80,-4 + 12666: 81,-3 + 12667: 82,-3 + 12668: 82,-4 + 12669: 81,-4 + 12984: 66,-23 + 12985: 70,-21 + 12986: 67,-22 + 12987: 68,-24 + 12988: 67,-25 + 12989: 71,-23 + 12990: 69,-22 + 12991: 71,-23 + 12992: 72,-21 + 12993: 75,-19 + 12994: 70,-18 + 12995: 73,-19 + 12996: 73,-24 + 12997: 70,-25 + 12998: 70,-26 + 12999: 72,-27 + 13000: 60,-21 + 13001: 61,-20 + 13002: 58,-22 + 13003: 61,-21 + 13004: 59,-19 + 13005: 63,-19 + 13006: 60,-20 + 13007: 58,-23 + 13008: 57,-23 + 13009: 56,-24 + 13010: 55,-24 + 13011: 54,-24 + 13012: 54,-19 + 13013: 53,-18 + 13014: 54,-21 + 13015: 52,-21 + 13016: 53,-19 + 13017: 52,-18 + 13018: 54,-18 + 13265: 59,-35 + 13266: 60,-36 + 13267: 62,-35 + 13268: 63,-35 + 13269: 66,-36 + 13270: 66,-36 + 13271: 66,-36 + 13272: 66,-33 + 13273: 66,-31 + 13274: 66,-27 + 13275: 61,-26 + 13276: 63,-29 + 13277: 62,-30 + 13278: 61,-30 + 13279: 62,-31 + 13280: 60,-32 + 13281: 60,-31 + 13282: 62,-31 + 13283: 63,-32 + 13284: 63,-30 + 13285: 61,-30 + 13286: 59,-26 + 13287: 57,-27 + 13288: 55,-28 + 13289: 53,-27 + 13290: 54,-27 + 13291: 55,-24 + 13292: 54,-24 + 13293: 52,-24 + 13294: 54,-23 + 13295: 55,-21 + 13296: 55,-20 + 13297: 54,-19 + 13298: 54,-18 + 13299: 54,-18 + 13300: 52,-18 + 13301: 51,-19 + 13302: 51,-20 + 13303: 52,-20 + 13304: 60,-19 + 13305: 58,-18 + 13306: 59,-18 + 13307: 62,-19 + 13308: 62,-21 + 13309: 71,-21 + 13310: 68,-22 + 13311: 66,-19 + 13312: 66,-19 + 13313: 67,-19 + 13314: 65,-20 + 13315: 65,-20 + 13316: 65,-20 + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 2147: -47,-14 + 2148: -46,-12 + 2149: -46,-17 + 2150: -49,-15 + 2151: -49,-11 + 2159: -46,-14 + 2168: -49,-17 + 2169: -49,-15 + - node: + zIndex: 100 + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 2129: -59,-2 + - node: + color: '#1D1D21FF' + id: DirtLight + decals: + 615: -33,-13 + 616: -30,-16 + 617: -32,-17 + 618: -33,-17 + - node: + cleanable: True + zIndex: 1 + color: '#474F52FF' + id: DirtLight + decals: + 30: -32,-16 + 31: -32,-15 + 32: -32,-13 + 33: -30,-10 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 4491: -16,-23 + 4492: -18,-27 + 4493: -17,-29 + 4494: -17,-32 + 4495: -14,-30 + 4496: -11,-32 + 4497: -17,-30 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 556: -39,-30 + 557: -41,-29 + 558: -40,-25 + 559: -40,-24 + 560: -36,-21 + 561: -34,-24 + 562: -33,-22 + 563: -33,-21 + 564: -36,-25 + 565: -36,-24 + 566: -26,-26 + 567: -39,-31 + 568: -32.47032,-22.52981 + 569: -33.514362,-24.504421 + 570: -33.486137,-25.537561 + 571: -41.52067,-25.539545 + 572: -40.97497,-29.539015 + 619: -25.363018,-32.017883 + 620: -26.421486,-36.03763 + 1932: 27,28 + 1933: 23,28 + 1954: 12,-35 + 2025: 46,-46 + 2026: 43,-47 + 2125: -78,-14 + 2227: -21,1 + 2228: -24,5 + 2229: -21,3 + 2230: -21,8 + 2231: -20,4 + 2232: -24,2 + 2407: 5,34 + 6488: -16,-1 + 10425: -20,-25 + 10426: -23,-27 + 10427: -20,-28 + 10428: -20,-23 + 10429: -22,-22 + 10475: -20.19099,-31.161016 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 38: 44,-15 + 39: 49,-14 + 40: 71,-14 + 41: -9,49 + 42: -8,48 + 43: 1,48 + 44: -12,49 + 45: -10,52 + 2029: 39,-44 + 2030: 41,-36 + 2036: 37,-33 + 2037: 36,-29 + 2106: -10,24 + 2107: -6,23 + 2108: -2,24 + 2119: -66,-7 + 2179: -36,-7 + 2180: -35,-6 + 2181: -34,-5 + 2182: -33,-6 + 2183: -34,-7 + 2184: -35,-5 + 2185: -36,-6 + 2264: -26,-12 + 2265: -24,-15 + 2268: 13,-15 + 2269: 17,-4 + 2270: 15,0 + 2272: 1,0 + 2273: 1,0 + 2274: -5,0 + 2275: 13,-36 + 2276: 10,-34 + 2284: 9,-34 + 2286: -4,9 + 2287: -6,9 + 2288: -7,8 + 2289: -5,6 + 2290: -4,6 + 2291: -4,5 + 2292: -6,6 + 2293: -8,5 + 2294: -7,4 + 2295: -6,4 + 2296: -6,4 + 2297: -6,1 + 2298: -7,2 + 2299: -7,3 + 2347: -4,3 + 2348: -4,3 + 2356: -15,-14 + 2359: 4,-59 + 2365: 1,-63 + 2367: 1,-60 + 2381: -1,-74 + 2383: -6,-51 + 2384: -6,-52 + 2385: -8,-51 + 2386: -9,-52 + 2395: -7,-51 + 2396: -8,-52 + 2399: -7,-52 + 2408: 16,33 + 2409: 10,33 + 2411: 11,39 + 2413: 24,17 + 2414: 23,19 + 2436: 23.507189,11.53846 + 2437: 22.491564,12.460334 + 2438: 21.491566,10.538459 + 2475: 22,6 + 2476: 20,3 + 2477: 22,2 + 2478: 21,4 + 2500: 22,-2 + 2501: 20,-1 + 2504: 21,-2 + 2914: -54,-2 + 2915: -55,-5 + 2916: -56,-1 + 2917: -63,-1 + 2918: -62,1 + 2919: -65,0 + 2920: -62,-6 + 2921: -63,-4 + 2922: -64,-8 + 2923: -68,-6 + 2924: -69,-4 + 2925: -76,-6 + 2926: -74,-4 + 2927: -79,-4 + 2928: -73,-5 + 2929: -64,-15 + 2930: -64,-11 + 2931: -65,-9 + 2932: -67,-14 + 2933: -67,-16 + 2934: -72,-15 + 2935: -73,-14 + 2936: -76,-15 + 2937: -73,-17 + 2938: -71,-16 + 2939: -64,2 + 2940: -65,6 + 2941: -64,9 + 2942: -66,9 + 2943: -71,10 + 2944: -74,9 + 2945: -72,8 + 2946: -75,10 + 2947: -79,10 + 3058: -65,-4 + 3083: -77,-15 + 3084: -77,-5 + 3089: -62,3 + 3090: -59,4 + 3091: -57,5 + 3092: -57,3 + 3093: -61,4 + 3110: -59,1 + 3294: -42,-8 + 3295: -44,-6 + 3296: -42,-5 + 3297: -43,-7 + 3298: -44,-9 + 3299: -47,-9 + 3300: -46,-6 + 3301: -47,-5 + 3302: -48,-7 + 3303: -46,-8 + 3469: -51,-5 + 3470: -52,-7 + 3471: -51,-9 + 3472: -50,-7 + 3473: -52,-8 + 3499: -20,-1 + 3500: -20,-3 + 3501: -23,-4 + 3502: -27,-3 + 3503: -25,0 + 3504: -25,-1 + 3505: -29,-4 + 3506: -30,-1 + 3507: -35,-3 + 3508: -33,-2 + 3509: -25,-2 + 3510: -37,-1 + 3511: -41,-3 + 3512: -38,-3 + 3513: -42,-2 + 3514: -46,-1 + 3515: -52,-2 + 3516: -49,-3 + 3517: -50,-1 + 3518: -45,-3 + 3519: -45,-2 + 3595: -21,-1 + 3598: -39,4 + 3599: -39,1 + 3600: -42,2 + 3601: -40,3 + 3602: -38,2 + 3603: -44,2 + 3604: -44,4 + 3605: -47,5 + 3606: -46,1 + 3658: -34,6 + 3659: -30,6 + 3660: -31,3 + 3661: -33,5 + 3662: -32,6 + 3663: -33,3 + 3707: -21,-6 + 3708: -23,-7 + 3709: -23,-8 + 3710: -24,-6 + 3711: -20,-7 + 3725: -24,-8 + 3777: -22,-6 + 3778: -20,-10 + 3779: -24,-12 + 3780: -21,-14 + 3781: -23,-11 + 3782: -25,-10 + 3783: -25,-14 + 3815: -21,7 + 3816: -23,5 + 3817: -21,6 + 3851: -66,17 + 3852: -68,18 + 3853: -66,14 + 3854: -66,12 + 3855: -68,13 + 3856: -67,12 + 3876: -22,-10 + 3877: -22,-11 + 3908: -11,3 + 3909: -13,1 + 3910: -13,4 + 3957: -9,8 + 3958: -11,9 + 3959: -15,6 + 3960: -13,7 + 3961: -15,8 + 4128: -14,-2 + 4129: -10,-1 + 4130: -4,-3 + 4131: -9,-2 + 4132: -11,-3 + 4133: -3,-1 + 4134: 0,1 + 4135: 2,-1 + 4136: 1,-3 + 4137: 4,-2 + 4138: 9,-1 + 4139: 8,1 + 4140: 12,-3 + 4141: 11,-1 + 4142: 7,-3 + 4143: 7,-2 + 4144: 0,-2 + 4191: 7,-1 + 4192: 8,-1 + 4194: 0,-3 + 4195: -2,-3 + 4196: -3,-3 + 4336: -17,-2 + 4337: -18,-5 + 4338: -16,-7 + 4339: -16,-12 + 4340: -18,-12 + 4341: -15,-9 + 4342: -18,-15 + 4343: -16,-14 + 4344: -16,-20 + 4345: -17,-18 + 4346: -19,-13 + 4347: -18,-9 + 4540: -14,-27 + 4546: -18,-31 + 4547: -17,-23 + 4548: -16,-22 + 4633: 7,-33 + 4634: 6,-32 + 4635: 2,-33 + 4636: 3,-30 + 4637: 7,-30 + 4638: -1,-32 + 4639: -5,-30 + 4640: -3,-32 + 4641: -9,-32 + 4642: -7,-30 + 4643: -6,-31 + 4644: 0,-30 + 4687: -6,-32 + 4690: 4,-33 + 4722: 16,-33 + 4723: 13,-31 + 4724: 11,-32 + 4725: 9,-30 + 4726: 16,-29 + 4727: 14,-27 + 4728: 16,-25 + 4853: 16,-15 + 4854: 14,-17 + 4855: 16,-20 + 4856: 16,-23 + 4857: 14,-22 + 4858: 15,-15 + 4859: 16,-12 + 4860: 14,-13 + 4861: 14,-20 + 4862: 15,-17 + 4962: 16,-3 + 4963: 14,-3 + 4964: 15,-1 + 4965: 16,-6 + 4966: 14,-7 + 4967: 16,-10 + 4968: 11,-10 + 4969: 15,-9 + 4970: 12,-8 + 5251: 0,6 + 5252: -2,3 + 5253: 0,9 + 5254: -2,11 + 5255: -2,6 + 5256: 0,13 + 5257: -2,18 + 5258: 0,19 + 5259: -2,14 + 5260: 8,19 + 5261: 2,22 + 5262: 3,21 + 5263: 2,19 + 5264: 10,21 + 5265: 10,20 + 5266: -1,21 + 5267: -8,20 + 5268: -4,19 + 5269: 1,20 + 5270: 4,20 + 5271: -10,21 + 5272: -8,19 + 5273: -15,20 + 5274: -12,19 + 5275: -4,21 + 5276: -5,20 + 5277: -1,13 + 5278: -1,9 + 5279: 0,4 + 5364: -14,19 + 5365: -12,20 + 5948: 9,28 + 5949: 10,25 + 5950: 4,26 + 5951: 3,28 + 5952: 10,26 + 5953: -1,28 + 5954: 2,26 + 5955: 0,27 + 5956: -7,26 + 5957: -5,28 + 5958: -6,32 + 5959: -5,30 + 5960: -12,27 + 5961: -9,26 + 5962: -14,26 + 5963: -5,27 + 5964: 6,27 + 6019: -4,27 + 6032: 6,23 + 6040: 8,23 + 6041: 10,24 + 6051: 1,23 + 6054: -9,32 + 6055: -10,30 + 6056: -8,30 + 6072: -11,32 + 6082: -15,32 + 6083: -18,32 + 6084: -17,29 + 6085: -19,30 + 6097: 0,31 + 6098: 2,33 + 6099: 4,31 + 6100: 4,30 + 6116: 8,30 + 6117: 6,31 + 6118: 9,32 + 6119: 12,31 + 6120: 12,30 + 6121: 15,32 + 6122: 11,33 + 6123: 14,35 + 6124: 16,35 + 6125: 19,33 + 6126: 18,34 + 6127: 17,31 + 6128: 17,30 + 6129: 14,33 + 6130: 13,34 + 6197: 7,36 + 6198: 9,38 + 6199: 8,34 + 6200: 6,36 + 6201: 8,39 + 6202: 6,40 + 6203: 7,41 + 6204: 7,39 + 6205: 9,38 + 6206: 7,38 + 6239: 25,32 + 6240: 21,33 + 6241: 24,35 + 6242: 24,36 + 6243: 22,36 + 6244: 24,39 + 6245: 22,38 + 6246: 22,42 + 6247: 24,41 + 6248: 25,36 + 6249: 24,34 + 6250: 21,34 + 6284: 23,40 + 6285: 23,39 + 6299: 4,36 + 6300: 2,35 + 6301: 1,36 + 6302: 2,39 + 6303: -1,36 + 6304: -2,35 + 6305: -4,36 + 6306: -2,39 + 6307: -1,38 + 6308: -2,37 + 6332: 3,37 + 6341: -5,37 + 6342: -5,35 + 6343: -9,35 + 6344: -8,37 + 6345: -13,36 + 6346: -10,34 + 6347: -15,36 + 6348: -16,34 + 6349: -14,34 + 6350: -16,35 + 6391: -13,24 + 6392: -13,24 + 6393: -14,22 + 6394: -13,22 + 6395: -14,24 + 6405: -19,22 + 6406: -18,27 + 6407: -17,26 + 6408: -17,24 + 6452: 12,37 + 6453: 12,39 + 6454: 14,38 + 6455: 14,42 + 6456: 14,41 + 6457: 13,40 + 6476: 16,41 + 6522: -18,36 + 6523: -20,34 + 6529: -20,36 + 6569: -4,16 + 6570: -6,14 + 6571: -5,13 + 6572: -5,17 + 6573: -8,13 + 6574: -9,13 + 6575: -6,16 + 6596: -8,13 + 6597: -8,13 + 6613: -17,20 + 6614: -19,20 + 6615: -20,17 + 6616: -19,16 + 6617: -20,18 + 6618: -17,19 + 6619: -19,19 + 6700: -2,-25 + 6701: 0,-26 + 6702: -1,-28 + 6703: -3,-26 + 6704: -3,-23 + 6705: 0,-23 + 6706: 1,-20 + 6707: 0,-19 + 6708: -3,-21 + 6727: 1,-22 + 6728: 0,-23 + 6736: -1,-22 + 6737: -1,-20 + 6739: -3,-20 + 6839: 7,-10 + 6840: 7,-9 + 6841: 4,-10 + 6842: 3,-7 + 6843: 0,-7 + 6844: 2,-9 + 6845: -3,-7 + 6846: -4,-7 + 6847: 0,-9 + 6848: -6,-9 + 6849: -6,-7 + 6850: -7,-10 + 6851: -9,-9 + 6895: -4,-6 + 6896: -6,-6 + 6897: -1,-6 + 6898: 0,-5 + 6899: 2,-6 + 6900: 3,-5 + 6901: 4,-6 + 6902: 6,-8 + 6903: 6,-7 + 6904: 7,-8 + 6905: -7,-8 + 6906: -8,-7 + 6907: -9,-8 + 6908: -8,-8 + 6957: 2,-12 + 6958: 2,-14 + 6959: -4,-15 + 6960: -5,-13 + 6961: -4,-12 + 6962: -1,-14 + 6963: -2,-12 + 6964: 0,-12 + 6965: 0,-14 + 6966: -4,-13 + 7053: -9,-17 + 7054: -7,-19 + 7055: -8,-20 + 7056: -11,-17 + 7057: -13,-18 + 7058: -14,-14 + 7059: -10,-12 + 7060: -7,-13 + 7100: -13,-17 + 7101: -10,-13 + 7145: -8,-25 + 7146: -10,-27 + 7147: -8,-28 + 7148: -11,-25 + 7149: -11,-27 + 7150: -12,-27 + 7151: -8,-23 + 7152: -7,-22 + 7171: -10,-26 + 7250: 12,-15 + 7251: 9,-14 + 7252: 7,-15 + 7253: 5,-15 + 7254: 7,-12 + 7255: 5,-17 + 7256: 9,-18 + 7257: 7,-19 + 7258: 11,-17 + 7259: 12,-19 + 7260: 11,-19 + 7272: 11,-12 + 7273: 8,-13 + 7300: 8,-18 + 7301: 12,-14 + 7355: 12,-25 + 7356: 9,-26 + 7357: 7,-25 + 7358: 6,-26 + 7359: 9,-27 + 7360: 7,-28 + 7361: 8,-26 + 7464: 18,21 + 7465: 13,21 + 7466: 13,19 + 7467: 17,20 + 7468: 18,23 + 7469: 15,25 + 7470: 16,25 + 7471: 18,27 + 7472: 16,28 + 7473: 17,26 + 7474: 13,24 + 7475: 12,25 + 7476: 13,23 + 7477: 12,27 + 7662: 25,9 + 7663: 27,12 + 7664: 26,14 + 7665: 24,8 + 7666: 21,9 + 7667: 19,9 + 7668: 19,12 + 7669: 19,13 + 7670: 23,15 + 7671: 23,14 + 7672: 19,15 + 7673: 20,13 + 7674: 20,11 + 7719: 16,9 + 7720: 17,11 + 7721: 14,12 + 7722: 13,9 + 7723: 10,11 + 7724: 7,13 + 7725: 8,13 + 7726: 9,15 + 7727: 8,8 + 7728: 9,7 + 7729: 8,5 + 7730: 9,3 + 7731: 10,9 + 7732: 9,11 + 7733: 12,11 + 7734: 14,10 + 7841: 27,3 + 7842: 24,2 + 7843: 24,4 + 7844: 26,6 + 7845: 25,3 + 8053: 27,-1 + 8054: 25,-3 + 8055: 25,-5 + 8056: 25,-9 + 8057: 27,-8 + 8058: 27,-8 + 8059: 26,-11 + 8060: 30,-10 + 8061: 31,-11 + 8062: 24,-11 + 8063: 22,-9 + 8064: 23,-9 + 8065: 23,-6 + 8066: 24,-5 + 8067: 24,-8 + 8068: 20,-9 + 8069: 18,-8 + 8070: 19,-7 + 8071: 21,-7 + 8072: 21,-11 + 8073: 18,-10 + 8074: 21,-5 + 8075: 19,-4 + 8076: 18,-3 + 8077: 18,-1 + 8078: 25,0 + 8079: 27,-3 + 8080: 22,-5 + 8081: 22,-7 + 8141: 30,-7 + 8207: 14,5 + 8208: 12,6 + 8209: 11,2 + 8210: 13,1 + 8211: 17,1 + 8212: 18,1 + 8213: 18,3 + 8214: 16,3 + 8215: 14,3 + 8216: 16,5 + 8217: 17,7 + 8218: 17,5 + 8286: -11,15 + 8287: -13,17 + 8288: -15,16 + 8289: -11,17 + 8463: 0,-35 + 8464: -2,-38 + 8465: 1,-41 + 8466: 1,-43 + 8467: -2,-44 + 8468: 0,-46 + 8469: -2,-48 + 8470: 0,-50 + 8471: -1,-47 + 8472: -2,-51 + 8473: 0,-54 + 8474: 1,-57 + 8475: -1,-58 + 8476: -3,-57 + 8477: -3,-56 + 8478: 0,-56 + 8479: -2,-59 + 8480: -1,-60 + 8481: -4,-60 + 8482: -1,-55 + 8483: 0,-40 + 8484: -2,-42 + 8485: 0,-37 + 8486: -2,-38 + 8487: -2,-37 + 8691: -2,-57 + 8974: 5,-53 + 8975: 3,-56 + 8976: 9,-59 + 8977: 6,-57 + 8978: 8,-56 + 8979: 3,-52 + 8980: 4,-58 + 9019: 8,-63 + 9020: 8,-61 + 9029: 7,-66 + 9030: 9,-67 + 9031: 8,-69 + 9032: 9,-70 + 9033: 4,-67 + 9034: 2,-66 + 9035: 0,-67 + 9036: -4,-67 + 9037: -7,-67 + 9038: -10,-67 + 9039: -10,-69 + 9040: -11,-70 + 9041: 2,-67 + 9083: 9,-72 + 9084: 7,-75 + 9085: 9,-77 + 9101: 13,-71 + 9102: 11,-73 + 9103: 12,-75 + 9118: 5,-78 + 9119: 2,-78 + 9120: 4,-77 + 9121: 0,-78 + 9122: -1,-77 + 9123: -4,-78 + 9124: -7,-78 + 9125: -5,-77 + 9126: -9,-78 + 9127: -9,-76 + 9128: -11,-75 + 9129: -11,-74 + 9130: -11,-72 + 9180: 0,-73 + 9181: -2,-73 + 9191: 5,-64 + 9192: 3,-63 + 9193: 5,-61 + 9194: 4,-61 + 9212: 3,-60 + 9216: -7,-65 + 9217: -10,-64 + 9218: -8,-62 + 9219: -5,-62 + 9220: -4,-64 + 9221: -2,-65 + 9222: -3,-63 + 9223: -1,-62 + 9255: -12,-64 + 9256: -14,-63 + 9264: -13,-69 + 9265: -17,-70 + 9266: -18,-69 + 9267: -18,-72 + 9268: -16,-74 + 9269: -13,-74 + 9270: -14,-75 + 9271: -17,-74 + 9301: -20,-69 + 9302: -21,-71 + 9303: -20,-71 + 9312: -23,-72 + 9313: -25,-70 + 9314: -27,-71 + 9315: -23,-71 + 9316: -23,-69 + 9317: -23,-66 + 9318: -27,-67 + 9319: -27,-69 + 9327: -26,-65 + 9328: -27,-70 + 9361: 9,-52 + 9362: 7,-53 + 9363: 8,-54 + 9447: 7,-48 + 9448: 5,-49 + 9449: 6,-49 + 9458: 7,-43 + 9459: 3,-45 + 9460: 5,-45 + 9461: 6,-46 + 9462: 4,-43 + 9484: 13,-51 + 9485: 11,-52 + 9486: 12,-53 + 9497: 14,-42 + 9498: 12,-44 + 9499: 13,-45 + 9500: 12,-41 + 9501: 13,-43 + 9598: -11,-57 + 9599: -12,-58 + 9600: -15,-58 + 9601: -18,-58 + 9602: -18,-58 + 9603: -17,-58 + 9604: -17,-54 + 9605: -17,-52 + 9606: -17,-50 + 9607: -15,-50 + 9608: -11,-51 + 9639: -17,-55 + 9647: -6,-58 + 9648: -8,-56 + 9649: -9,-57 + 9650: -7,-57 + 9651: -8,-54 + 9652: -6,-55 + 9732: -4,-36 + 9733: -4,-38 + 9734: -4,-40 + 9735: -7,-40 + 9736: -9,-40 + 9737: -11,-38 + 9738: -11,-36 + 9739: -11,-34 + 9740: -9,-34 + 9741: -7,-34 + 9742: -5,-34 + 9805: 5,-35 + 9806: 3,-36 + 9807: 4,-37 + 9808: 4,-36 + 10030: -33,-22 + 10031: -31,-24 + 10032: -31,-27 + 10033: -31,-28 + 10034: -34,-28 + 10035: -35,-26 + 10036: -37,-29 + 10037: -37,-31 + 10038: -41,-31 + 10039: -40,-27 + 10040: -38,-27 + 10041: -40,-24 + 10042: -39,-22 + 10043: -40,-21 + 10044: -36,-20 + 10045: -32,-19 + 10046: -33,-21 + 10047: -35,-21 + 10048: -31,-21 + 10133: -36,-26 + 10134: -38,-26 + 10140: -37,-27 + 10141: -39,-28 + 10221: -27,-21 + 10222: -29,-23 + 10223: -28,-24 + 10224: -25,-27 + 10225: -25,-28 + 10226: -28,-28 + 10227: -29,-26 + 10228: -25,-25 + 10229: -28,-20 + 10271: -26,-22 + 10276: -31,-31 + 10277: -35,-32 + 10278: -35,-31 + 10279: -33,-30 + 10280: -32,-31 + 10281: -35,-34 + 10282: -35,-34 + 10355: -20,-16 + 10356: -24,-18 + 10357: -23,-19 + 10358: -20,-20 + 10359: -20,-17 + 10360: -24,-16 + 10361: -26,-17 + 10362: -27,-18 + 10363: -28,-17 + 10476: -20,-31 + 10477: -22,-30 + 10478: -23,-31 + 10479: -21,-32 + 10531: -24,-34 + 10532: -27,-35 + 10533: -26,-33 + 10534: -25,-32 + 10535: -28,-30 + 10536: -29,-31 + 10576: -24,-39 + 10577: -26,-38 + 10578: -25,-37 + 10614: -14,39 + 10615: -16,38 + 10616: -14,41 + 10617: -16,41 + 10642: -5,41 + 10643: -7,39 + 10644: -5,39 + 10657: -6,39 + 10682: -9,41 + 10683: -12,39 + 10684: -10,38 + 10685: -10,40 + 10878: -12,52 + 10879: -13,50 + 10880: -12,47 + 10881: -14,49 + 10882: -16,48 + 10883: -14,48 + 10909: -5,45 + 10910: -8,44 + 10911: -13,45 + 10912: -15,45 + 10913: -14,43 + 10914: -9,43 + 10915: -7,44 + 10916: -9,45 + 10917: -19,43 + 10918: -21,45 + 10919: -24,45 + 10920: -24,43 + 10921: -20,44 + 10983: -24,41 + 10984: -25,40 + 11033: -5,51 + 11034: -7,50 + 11035: -6,48 + 11036: -5,47 + 11037: -9,47 + 11038: -9,50 + 11039: -10,48 + 11040: -9,51 + 11041: -10,52 + 11042: -9,53 + 11135: 4,51 + 11136: 1,50 + 11137: 3,49 + 11138: 0,51 + 11139: -3,49 + 11140: -1,50 + 11164: -2,51 + 11837: 38,-23 + 11838: 36,-24 + 11839: 40,-23 + 11840: 35,-24 + 11841: 37,-24 + 11842: 32,-25 + 11843: 28,-24 + 11844: 23,-24 + 11845: 25,-25 + 11846: 22,-25 + 11847: 20,-26 + 11848: 19,-26 + 11849: 20,-27 + 11850: 19,-28 + 11851: 21,-26 + 11852: 22,-26 + 11853: 25,-20 + 11854: 25,-20 + 11855: 26,-19 + 11856: 29,-18 + 11857: 33,-18 + 11858: 33,-18 + 11859: 35,-20 + 11860: 33,-21 + 12011: 22,-18 + 12012: 20,-17 + 12013: 17,-19 + 12014: 21,-19 + 12015: 20,-19 + 12016: 20,-18 + 12017: 20,-17 + 12018: 18,-20 + 12019: 19,-22 + 12020: 22,-22 + 12021: 21,-17 + 12022: 18,-18 + 12100: 27,-28 + 12101: 25,-29 + 12102: 25,-31 + 12103: 26,-30 + 12104: 29,-29 + 12105: 33,-30 + 12106: 31,-29 + 12107: 32,-31 + 12108: 35,-31 + 12109: 36,-33 + 12110: 40,-32 + 12111: 40,-34 + 12112: 40,-36 + 12113: 40,-37 + 12114: 40,-39 + 12115: 40,-41 + 12116: 41,-44 + 12117: 41,-48 + 12118: 41,-52 + 12119: 40,-49 + 12120: 40,-49 + 12162: 21,-33 + 12163: 20,-34 + 12164: 20,-35 + 12165: 21,-35 + 12166: 21,-35 + 12167: 21,-37 + 12189: 28,-34 + 12190: 29,-35 + 12191: 30,-35 + 12192: 33,-34 + 12193: 38,-35 + 12194: 36,-36 + 12195: 33,-36 + 12196: 32,-36 + 12197: 31,-36 + 12198: 31,-35 + 12199: 34,-34 + 12200: 36,-36 + 12245: 44,-36 + 12246: 45,-36 + 12247: 46,-36 + 12248: 46,-35 + 12249: 48,-36 + 12250: 47,-37 + 12251: 46,-37 + 12252: 45,-37 + 12253: 45,-36 + 12281: 43,-40 + 12282: 43,-40 + 12283: 45,-40 + 12284: 48,-39 + 12285: 46,-40 + 12286: 44,-41 + 12287: 43,-41 + 12408: 45,-54 + 12409: 45,-54 + 12410: 43,-54 + 12411: 42,-55 + 12412: 44,-57 + 12413: 47,-57 + 12414: 44,-57 + 12415: 41,-57 + 12416: 39,-58 + 12417: 40,-59 + 12418: 43,-60 + 12419: 43,-60 + 12420: 44,-61 + 12421: 47,-60 + 12422: 47,-60 + 12423: 46,-61 + 12424: 37,-59 + 12425: 38,-60 + 12426: 39,-61 + 12427: 40,-60 + 12428: 39,-58 + 12429: 36,-55 + 12430: 35,-54 + 12431: 36,-53 + 12432: 34,-52 + 12433: 35,-56 + 12698: 76,-6 + 12699: 76,-6 + 12700: 76,-7 + 12701: 77,-7 + 12702: 80,-6 + 12703: 82,-7 + 12704: 81,-11 + 12705: 83,-12 + 12706: 82,-12 + 12707: 84,-12 + 12708: 84,-13 + 12709: 85,-13 + 12710: 84,-14 + 12711: 83,-14 + 12712: 81,-4 + 12713: 81,-3 + 12714: 80,-3 + 12715: 81,-3 + 12716: 81,-2 + 12717: 79,-4 + 12718: 78,-4 + 12719: 77,-4 + 12720: 77,-3 + 12721: 78,-3 + 12722: 78,-10 + 12723: 77,-14 + 12724: 76,-15 + 12725: 75,-14 + 12726: 75,-15 + 12727: 75,-15 + 12728: 75,-15 + 12729: 73,-15 + 12730: 77,-15 + 12731: 78,-15 + 12732: 77,-15 + 12733: 78,-15 + 12734: 78,-16 + 13213: 55,-28 + 13214: 54,-28 + 13215: 57,-28 + 13216: 62,-26 + 13217: 66,-26 + 13218: 67,-28 + 13219: 66,-29 + 13220: 66,-29 + 13221: 66,-31 + 13222: 66,-34 + 13223: 67,-36 + 13224: 66,-40 + 13225: 65,-44 + 13226: 68,-43 + 13227: 65,-41 + 13228: 60,-42 + 13229: 62,-43 + 13230: 61,-44 + 13231: 62,-36 + 13232: 63,-36 + 13233: 60,-36 + 13234: 60,-36 + 13235: 60,-35 + 13236: 59,-36 + 13237: 60,-36 + 13238: 62,-35 + 13239: 63,-36 + 13240: 62,-38 + 13241: 60,-38 + 13242: 60,-38 + 13243: 62,-36 + 13244: 63,-35 + 13245: 63,-35 + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFFFF' + id: DirtLight + decals: + 2140: -47,-17 + 2141: -46,-15 + 2142: -46,-13 + 2143: -47,-11 + 2144: -46,-11 + 2145: -47,-15 + 2146: -46,-16 + 2170: -49,-15 + 2171: -46,-15 + 2172: -46,-15 + - node: + zIndex: 100 + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 2126: -58,-2 + 2127: -62,-3 + 2130: -62,-2 + - node: + cleanable: True + zIndex: 1 + color: '#474F52FF' + id: DirtMedium + decals: + 23: -32,-12 + 24: -31,-12 + 25: -31,-13 + 26: -31,-14 + 27: -31,-16 + 28: -32,-18 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 4519: -18,-25 + 4520: -17,-27 + 4521: -17,-31 + 4522: -13,-30 + 4523: -13,-32 + 4524: -11,-31 + 4525: -18,-22 + 4526: -18,-24 + 4527: -18,-29 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 540: -40,-30 + 541: -39,-29 + 542: -40,-25 + 543: -41,-24 + 544: -38,-24 + 545: -37,-21 + 546: -33,-23 + 547: -32,-22 + 548: -34,-23 + 549: -33,-27 + 550: -22,-24 + 551: -21,-25 + 552: -22,-25 + 553: -22,-26 + 554: -34,-26 + 555: -34,-27 + 1955: 10,-35 + 2254: -22,2 + 2258: -20,8 + 2259: -20,6 + 2267: -1,-27 + 10442: -22,-27 + 10443: -21,-28 + 10444: -21,-22 + 10445: -23,-24 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 2039: 42,-36 + 2122: -67,-8 + 2173: -31,2 + 2282: 12,-37 + 2283: 10,-34 + 2314: -4,7 + 2315: -4,9 + 2316: -7,9 + 2317: -7,7 + 2318: -6,1 + 2319: -7,2 + 2320: -6,4 + 2321: -7,4 + 2322: -5,7 + 2323: -6,7 + 2324: -6,9 + 2325: -4,9 + 2326: -4,6 + 2327: -4,5 + 2328: -7,6 + 2329: -7,5 + 2358: -2,-54 + 2379: 8,-76 + 2391: -9,-52 + 2392: -6,-51 + 2393: -9,-50 + 2394: -9,-51 + 2400: -7,-52 + 2401: -7,-51 + 2402: -7,-52 + 2423: 25,18 + 2424: 23,19 + 2425: 24,17 + 2426: 24,19 + 2427: 24,19 + 2428: 23,17 + 2429: 25,19 + 2430: 25,17 + 2441: 22.481533,11.50721 + 2489: 20,4 + 2490: 21,2 + 2502: 21,-1 + 2503: 23,-2 + 2971: -64,-4 + 2972: -65,4 + 2973: -64,7 + 2974: -64,3 + 2975: -69,8 + 2976: -66,10 + 2977: -65,9 + 2978: -74,8 + 2979: -73,9 + 2980: -74,10 + 2981: -79,9 + 2982: -76,8 + 2989: -64,-1 + 2990: -55,-1 + 2991: -58,-1 + 2992: -55,1 + 2993: -55,-6 + 2994: -59,-6 + 2995: -55,-4 + 2996: -61,-5 + 2997: -65,-15 + 2998: -66,-16 + 2999: -74,-16 + 3000: -77,-16 + 3001: -70,-15 + 3002: -76,-5 + 3003: -77,-4 + 3004: -69,-6 + 3005: -78,-6 + 3006: -65,-5 + 3057: -57,-6 + 3071: -66,-15 + 3072: -70,-16 + 3073: -65,-8 + 3074: -65,10 + 3078: -60,-4 + 3081: -61,1 + 3082: -73,-15 + 3100: -62,5 + 3101: -59,5 + 3102: -57,3 + 3315: -42,-6 + 3316: -44,-8 + 3484: -50,-7 + 3485: -51,-8 + 3486: -50,-5 + 3558: -38,-2 + 3559: -43,-3 + 3560: -49,-2 + 3561: -32,-2 + 3562: -26,-1 + 3563: -27,-2 + 3564: -28,-3 + 3565: -29,-1 + 3593: -25,-3 + 3596: -22,-1 + 3597: -28,-4 + 3621: -43,3 + 3622: -41,3 + 3623: -38,1 + 3624: -44,3 + 3625: -44,1 + 3626: -45,1 + 3680: -32,3 + 3681: -33,4 + 3682: -32,5 + 3724: -21,-8 + 3795: -25,-11 + 3796: -25,-13 + 3797: -21,-10 + 3798: -22,-12 + 3799: -24,-11 + 3823: -23,7 + 3868: -68,18 + 3878: -22,-13 + 3879: -23,-11 + 3916: -11,4 + 3917: -13,3 + 3918: -12,3 + 3972: -14,6 + 3973: -11,8 + 3974: -10,9 + 3975: -12,7 + 4181: -14,-3 + 4182: -9,-1 + 4183: -5,-2 + 4184: -1,-1 + 4185: 0,0 + 4186: 5,-3 + 4187: 6,-1 + 4188: 7,0 + 4189: 9,-3 + 4197: -7,-3 + 4382: -18,-2 + 4383: -15,-8 + 4384: -16,-13 + 4385: -18,-16 + 4386: -18,-14 + 4399: -16,-18 + 4400: -17,-19 + 4541: -15,-23 + 4542: -14,-23 + 4543: -15,-28 + 4544: -15,-30 + 4545: -16,-32 + 4549: -18,-23 + 4666: -5,-31 + 4667: -1,-31 + 4668: 5,-32 + 4669: 2,-32 + 4670: 7,-32 + 4671: 4,-31 + 4672: 2,-30 + 4684: 3,-31 + 4688: -4,-32 + 4689: 1,-31 + 4743: 13,-32 + 4744: 16,-30 + 4745: 15,-25 + 4746: 12,-32 + 4881: 15,-13 + 4882: 15,-18 + 4883: 16,-17 + 4884: 16,-19 + 4885: 16,-21 + 4886: 15,-20 + 4887: 15,-12 + 4991: 11,-8 + 4992: 15,-6 + 4993: 15,-2 + 4994: 15,-5 + 4995: 14,-4 + 4996: 15,-10 + 5327: -13,19 + 5328: -3,21 + 5329: 0,17 + 5330: -1,11 + 5331: -2,7 + 5332: 0,21 + 5333: 5,21 + 5334: 5,20 + 5995: -3,26 + 5996: -5,29 + 5997: -5,31 + 6001: -9,27 + 6002: -11,26 + 6020: 1,27 + 6021: 5,27 + 6034: 4,24 + 6044: 9,24 + 6045: 10,23 + 6046: 8,24 + 6047: 9,23 + 6048: 10,24 + 6049: 2,23 + 6050: 1,24 + 6063: -9,31 + 6064: -8,29 + 6065: -9,29 + 6076: -15,30 + 6077: -14,31 + 6092: -18,31 + 6093: -19,30 + 6109: 1,31 + 6110: 2,32 + 6111: 1,33 + 6112: 4,33 + 6165: 11,34 + 6166: 9,32 + 6167: 17,31 + 6168: 14,31 + 6169: 13,32 + 6170: 19,33 + 6171: 16,32 + 6172: 19,32 + 6173: 16,35 + 6174: 7,31 + 6175: 9,30 + 6176: 11,30 + 6177: 15,30 + 6223: 7,34 + 6224: 6,35 + 6225: 6,38 + 6226: 6,41 + 6227: 9,37 + 6228: 9,35 + 6229: 7,35 + 6273: 22,35 + 6274: 21,36 + 6275: 23,36 + 6276: 21,32 + 6277: 21,34 + 6278: 24,34 + 6279: 24,32 + 6280: 23,38 + 6281: 24,40 + 6282: 22,41 + 6283: 24,42 + 6288: 24,38 + 6325: -1,37 + 6326: -2,37 + 6327: -1,35 + 6328: -2,35 + 6329: 3,36 + 6330: 1,35 + 6331: 2,38 + 6402: -13,22 + 6418: -19,27 + 6419: -17,27 + 6420: -18,27 + 6421: -17,25 + 6467: 12,40 + 6468: 13,41 + 6469: 13,37 + 6470: 12,37 + 6528: -20,35 + 6584: -6,15 + 6585: -4,15 + 6586: -4,13 + 6587: -5,13 + 6588: -6,17 + 6589: -6,15 + 6600: -9,13 + 6601: -8,13 + 6602: -9,13 + 6603: -6,16 + 6604: -6,13 + 6718: -2,-27 + 6719: -1,-26 + 6720: -1,-28 + 6721: -1,-25 + 6730: -3,-21 + 6731: -3,-22 + 6738: -1,-21 + 6877: -9,-10 + 6878: -6,-8 + 6879: -1,-8 + 6880: 5,-9 + 6881: 1,-9 + 6882: -1,-9 + 6883: -3,-9 + 6920: -9,-8 + 6921: -5,-5 + 6922: -2,-5 + 6923: 2,-5 + 6924: 3,-6 + 6925: 5,-7 + 6926: 5,-8 + 6927: 0,-6 + 6982: 3,-12 + 6983: -4,-12 + 6984: -5,-14 + 6985: -2,-12 + 6986: 0,-14 + 7164: -7,-23 + 7287: 5,-15 + 7289: 6,-14 + 7292: 10,-15 + 7293: 9,-13 + 7294: 9,-12 + 7295: 12,-17 + 7296: 11,-19 + 7297: 12,-18 + 7298: 6,-17 + 7299: 7,-18 + 7303: 9,-15 + 7304: 10,-14 + 7305: 11,-15 + 7377: 9,-25 + 7378: 8,-25 + 7379: 12,-26 + 7380: 9,-27 + 7381: 6,-27 + 7504: 12,24 + 7505: 13,24 + 7506: 12,28 + 7507: 12,27 + 7508: 17,23 + 7509: 16,27 + 7510: 16,21 + 7511: 12,21 + 7702: 25,11 + 7703: 20,10 + 7704: 20,8 + 7705: 27,11 + 7706: 27,9 + 7707: 22,14 + 7708: 21,15 + 7774: 15,11 + 7775: 9,10 + 7776: 8,12 + 7777: 12,12 + 7778: 17,12 + 7779: 8,7 + 7780: 11,9 + 7781: 12,9 + 7858: 25,5 + 8128: 22,-6 + 8129: 23,-5 + 8130: 24,-9 + 8131: 20,-4 + 8132: 18,-5 + 8133: 18,-7 + 8134: 19,-9 + 8135: 21,-9 + 8136: 21,-11 + 8137: 18,-10 + 8138: 19,-11 + 8139: 24,-6 + 8140: 26,-3 + 8238: 12,2 + 8239: 15,1 + 8240: 14,3 + 8241: 18,3 + 8242: 16,3 + 8243: 17,5 + 8244: 17,7 + 8298: -13,15 + 8299: -12,15 + 8300: -13,17 + 8525: -2,-58 + 8526: -4,-58 + 8527: -2,-56 + 8528: -1,-53 + 8529: -2,-55 + 8530: 0,-55 + 8544: 0,-34 + 8545: 0,-38 + 8546: -2,-43 + 8547: 0,-44 + 8548: 1,-45 + 8999: 7,-59 + 9000: 4,-53 + 9001: 3,-53 + 9002: 4,-57 + 9003: 5,-56 + 9023: 8,-62 + 9024: 6,-61 + 9025: 7,-61 + 9065: 5,-66 + 9066: 1,-67 + 9067: -9,-67 + 9068: -10,-68 + 9069: 7,-66 + 9093: 8,-77 + 9094: 8,-72 + 9095: 7,-77 + 9107: 11,-74 + 9108: 11,-72 + 9109: 12,-72 + 9139: 4,-78 + 9140: 3,-77 + 9141: 0,-78 + 9142: -1,-78 + 9143: -5,-78 + 9144: -4,-77 + 9145: -7,-77 + 9146: -9,-77 + 9147: -11,-76 + 9148: -9,-75 + 9149: -11,-72 + 9182: -2,-72 + 9183: 0,-71 + 9184: 0,-74 + 9185: -1,-73 + 9186: 0,-73 + 9187: -2,-71 + 9203: 4,-63 + 9204: 4,-62 + 9205: 3,-61 + 9206: 3,-63 + 9213: 5,-61 + 9214: 5,-63 + 9215: 3,-63 + 9239: -7,-62 + 9240: -5,-65 + 9241: -9,-62 + 9242: -2,-64 + 9243: -3,-63 + 9244: -1,-65 + 9245: -2,-65 + 9261: -13,-64 + 9286: -16,-72 + 9287: -18,-74 + 9288: -17,-74 + 9289: -13,-75 + 9290: -15,-70 + 9291: -16,-69 + 9292: -13,-70 + 9342: -24,-72 + 9343: -26,-72 + 9344: -26,-70 + 9345: -27,-68 + 9346: -23,-68 + 9347: -25,-65 + 9348: -23,-66 + 9349: -27,-71 + 9350: -23,-70 + 9351: -27,-72 + 9370: 9,-53 + 9371: 7,-54 + 9455: 6,-49 + 9475: 5,-44 + 9476: 6,-43 + 9477: 5,-46 + 9491: 11,-51 + 9492: 13,-52 + 9512: 14,-45 + 9513: 13,-45 + 9514: 13,-42 + 9626: -14,-50 + 9627: -13,-58 + 9628: -15,-58 + 9629: -11,-56 + 9630: -13,-50 + 9631: -11,-50 + 9665: -6,-56 + 9666: -7,-54 + 9667: -7,-58 + 9668: -8,-57 + 9764: -11,-40 + 9765: -9,-40 + 9766: -6,-40 + 9767: -4,-40 + 9768: -5,-34 + 9769: -7,-34 + 9770: -8,-34 + 9771: -11,-35 + 9772: -4,-36 + 9816: 4,-35 + 9817: 3,-37 + 9818: 5,-37 + 10094: -41,-23 + 10095: -41,-23 + 10096: -40,-22 + 10097: -36,-21 + 10098: -37,-20 + 10099: -34,-19 + 10100: -38,-20 + 10101: -37,-19 + 10102: -34,-21 + 10103: -33,-20 + 10104: -35,-27 + 10105: -36,-28 + 10106: -41,-32 + 10107: -42,-31 + 10108: -38,-30 + 10142: -41,-27 + 10143: -39,-24 + 10144: -41,-22 + 10145: -35,-26 + 10250: -27,-20 + 10251: -25,-23 + 10252: -26,-22 + 10253: -27,-24 + 10254: -25,-27 + 10255: -25,-26 + 10256: -25,-28 + 10257: -27,-27 + 10258: -26,-26 + 10259: -28,-21 + 10292: -35,-32 + 10293: -33,-31 + 10294: -31,-32 + 10295: -32,-32 + 10296: -31,-31 + 10486: -21,-32 + 10487: -23,-31 + 10488: -20,-30 + 10489: -20,-31 + 10490: -21,-31 + 10491: -22,-31 + 10550: -29,-30 + 10551: -27,-34 + 10552: -25,-31 + 10553: -25,-35 + 10554: -26,-32 + 10555: -26,-30 + 10586: -26,-39 + 10621: -15,38 + 10622: -15,41 + 10649: -6,41 + 10650: -6,40 + 10651: -5,39 + 10652: -5,39 + 10694: -10,41 + 10695: -10,40 + 10696: -10,39 + 10697: -12,41 + 10698: -10,41 + 10699: -11,38 + 10897: -13,48 + 10898: -14,47 + 10899: -13,50 + 10900: -12,53 + 10901: -13,51 + 10902: -13,49 + 10903: -15,49 + 10955: -12,43 + 10956: -16,43 + 10957: -14,45 + 10958: -7,45 + 10959: -8,44 + 10960: -10,43 + 10961: -20,43 + 10962: -24,44 + 10963: -25,45 + 10964: -20,44 + 10965: -20,45 + 10966: -23,44 + 10967: -24,44 + 10968: -14,44 + 10969: -15,43 + 10970: -11,43 + 10971: -6,44 + 11067: -7,48 + 11068: -7,52 + 11069: -9,51 + 11070: -10,52 + 11071: -8,48 + 11072: -10,47 + 11073: -7,47 + 11148: 1,49 + 11149: -2,49 + 11150: -3,51 + 11151: 3,50 + 11152: -2,50 + 11298: 30,-8 + 11299: 29,-7 + 11300: 29,-5 + 11301: 30,-4 + 11302: 31,-4 + 11303: 31,-6 + 11304: 31,-8 + 11305: 42,-11 + 11306: 45,-10 + 11307: 43,-9 + 11308: 44,-7 + 11309: 43,-6 + 11310: 44,-6 + 11311: 43,-5 + 11312: 42,-3 + 11313: 42,-5 + 11314: 42,-7 + 11315: 45,-4 + 11316: 46,-3 + 11317: 45,-6 + 11318: 45,-8 + 11319: 48,-9 + 11320: 46,-10 + 11321: 49,-11 + 11322: 46,-8 + 11323: 45,-6 + 11324: 47,-3 + 11325: 48,-3 + 11326: 49,-3 + 11327: 48,-5 + 11328: 48,-7 + 11329: 42,-1 + 11330: 44,0 + 11331: 45,-1 + 11332: 47,1 + 11333: 46,1 + 11334: 48,-1 + 11335: 49,1 + 11336: 45,-1 + 11337: 45,0 + 11338: 47,0 + 11339: 48,-4 + 11340: 45,-6 + 11341: 49,-8 + 11342: 49,-5 + 11707: 72,-13 + 11708: 70,-15 + 11709: 66,-15 + 11710: 62,-14 + 11711: 58,-15 + 11712: 56,-14 + 11713: 53,-14 + 11714: 51,-14 + 11715: 45,-14 + 11716: 43,-15 + 11717: 40,-13 + 11718: 38,-14 + 11719: 36,-13 + 11720: 39,-12 + 11721: 35,-12 + 11722: 33,-12 + 11723: 39,-12 + 11724: 39,-12 + 11725: 38,-13 + 11726: 34,-14 + 11727: 31,-16 + 11728: 30,-13 + 11729: 29,-13 + 11730: 27,-14 + 11731: 25,-14 + 11732: 23,-13 + 11733: 20,-14 + 11734: 20,-15 + 11735: 19,-15 + 11736: 18,-15 + 11737: 18,-15 + 11866: 37,-23 + 11867: 39,-23 + 11868: 40,-24 + 11869: 38,-25 + 11870: 34,-24 + 11871: 30,-25 + 11872: 25,-25 + 11873: 22,-25 + 11874: 20,-27 + 11875: 19,-27 + 11876: 20,-26 + 11877: 20,-30 + 11878: 18,-31 + 11879: 21,-30 + 11880: 21,-30 + 11881: 20,-30 + 11882: 19,-30 + 11883: 20,-25 + 11884: 23,-26 + 11885: 26,-25 + 11886: 26,-23 + 11887: 27,-24 + 11927: 33,-19 + 11928: 33,-18 + 11929: 34,-17 + 11930: 33,-17 + 11931: 31,-19 + 11932: 32,-17 + 11933: 30,-17 + 11934: 28,-17 + 11935: 27,-17 + 11936: 25,-19 + 11937: 30,-17 + 11938: 35,-19 + 11939: 32,-19 + 11940: 29,-19 + 11941: 30,-21 + 11942: 30,-22 + 11943: 29,-22 + 11944: 29,-22 + 11945: 31,-21 + 12023: 20,-18 + 12024: 21,-17 + 12025: 18,-21 + 12026: 18,-22 + 12027: 20,-23 + 12028: 22,-22 + 12029: 21,-17 + 12030: 19,-17 + 12031: 19,-18 + 12201: 37,-35 + 12202: 35,-36 + 12203: 33,-36 + 12204: 31,-35 + 12205: 30,-36 + 12206: 27,-36 + 12207: 30,-35 + 12208: 32,-34 + 12209: 32,-36 + 12210: 30,-37 + 12211: 28,-37 + 12288: 45,-41 + 12289: 45,-41 + 12290: 44,-41 + 12291: 44,-41 + 12292: 44,-40 + 12293: 46,-39 + 12294: 47,-39 + 12295: 43,-43 + 12296: 44,-44 + 12297: 45,-43 + 12298: 47,-44 + 12299: 47,-43 + 12300: 47,-45 + 12301: 46,-46 + 12302: 45,-47 + 12303: 45,-48 + 12304: 47,-47 + 12305: 46,-49 + 12306: 44,-48 + 12307: 44,-47 + 12434: 35,-53 + 12435: 36,-52 + 12436: 37,-53 + 12437: 37,-53 + 12438: 36,-54 + 12439: 35,-55 + 12440: 35,-56 + 12441: 40,-57 + 12442: 38,-59 + 12443: 39,-60 + 12444: 40,-61 + 12445: 41,-60 + 12446: 41,-58 + 12447: 42,-57 + 12448: 43,-60 + 12449: 43,-61 + 12450: 45,-59 + 12451: 47,-60 + 12452: 47,-61 + 12453: 46,-61 + 12454: 46,-59 + 12455: 40,-71 + 12456: 41,-72 + 12457: 44,-72 + 12458: 47,-73 + 12459: 44,-74 + 12460: 42,-73 + 12461: 40,-73 + 12462: 40,-73 + 12463: 44,-74 + 12464: 45,-73 + 12465: 44,-72 + 12466: 43,-72 + 12467: 46,-71 + 12575: 38,-17 + 12576: 38,-19 + 12577: 37,-19 + 12578: 37,-20 + 12579: 42,-19 + 12580: 42,-17 + 12581: 46,-18 + 12582: 47,-18 + 12583: 48,-18 + 12584: 46,-19 + 12585: 45,-20 + 12586: 43,-21 + 12587: 42,-21 + 12588: 44,-19 + 12589: 18,-31 + 12735: 78,-16 + 12736: 76,-15 + 12737: 76,-15 + 12738: 76,-16 + 12739: 77,-15 + 12740: 76,-14 + 12741: 76,-14 + 12742: 76,-12 + 12743: 76,-10 + 12744: 76,-10 + 12745: 76,-9 + 12746: 77,-9 + 12747: 76,-10 + 12748: 77,-11 + 12749: 76,-10 + 12750: 76,-10 + 12751: 77,-10 + 12752: 77,-10 + 12753: 78,-10 + 12754: 78,-12 + 12755: 80,-12 + 12756: 80,-10 + 12757: 82,-9 + 12758: 81,-11 + 12759: 81,-10 + 12760: 81,-11 + 12761: 81,-13 + 12762: 81,-14 + 12763: 81,-14 + 12764: 80,-14 + 12765: 79,-14 + 12766: 79,-15 + 12767: 79,-15 + 12768: 81,-8 + 12769: 78,-6 + 12770: 77,-7 + 12771: 76,-6 + 12772: 76,-6 + 12773: 78,-7 + 12774: 81,-7 + 12775: 81,-6 + 12776: 81,-6 + 12777: 80,-7 + 12778: 79,-7 + 12779: 78,-5 + 12780: 77,-3 + 12781: 77,-3 + 12782: 83,-4 + 12783: 81,-3 + 12784: 80,-4 + 12785: 80,-4 + 12786: 82,-4 + 12787: 84,-4 + 12788: 84,-5 + 12789: 84,-6 + 12790: 83,-6 + 12791: 82,-10 + 12792: 81,-13 + 12793: 80,-14 + 12794: 82,-13 + 12795: 82,-14 + 12796: 82,-12 + 12797: 82,-12 + 12961: 67,-47 + 12962: 66,-46 + 12963: 67,-44 + 12964: 65,-39 + 12965: 66,-35 + 12966: 67,-32 + 12967: 66,-31 + 12968: 68,-28 + 12969: 67,-24 + 12970: 67,-21 + 12971: 70,-21 + 12972: 73,-23 + 12973: 71,-19 + 12974: 73,-19 + 12975: 73,-21 + 12976: 72,-23 + 12977: 73,-23 + 12978: 70,-25 + 12979: 72,-27 + 12980: 72,-27 + 12981: 70,-28 + 12982: 72,-28 + 12983: 71,-29 + 13158: 80,-25 + 13159: 78,-24 + 13160: 77,-25 + 13161: 76,-26 + 13162: 76,-27 + 13163: 77,-27 + 13164: 77,-27 + 13165: 78,-29 + 13166: 82,-24 + 13167: 83,-24 + 13168: 83,-24 + 13169: 84,-24 + 13170: 83,-24 + 13171: 81,-25 + 13172: 82,-26 + 13173: 82,-27 + 13174: 81,-27 + 13175: 79,-25 + 13176: 78,-25 + 13177: 73,-21 + 13178: 73,-20 + 13179: 72,-19 + 13180: 70,-19 + 13181: 70,-22 + 13182: 69,-23 + 13183: 70,-19 + 13184: 70,-18 + 13185: 70,-23 + 13186: 69,-24 + 13187: 69,-24 + 13188: 65,-23 + 13189: 67,-23 + 13190: 66,-24 + 13191: 67,-22 + 13192: 66,-22 + 13193: 62,-19 + 13194: 61,-19 + 13195: 59,-19 + 13196: 58,-18 + 13197: 58,-19 + 13198: 58,-19 + 13199: 60,-23 + 13200: 59,-24 + 13201: 56,-23 + 13202: 54,-23 + 13203: 52,-25 + 13204: 52,-25 + 13205: 54,-24 + 13206: 59,-24 + 13207: 60,-24 + 13208: 59,-28 + 13209: 60,-27 + 13210: 62,-27 + 13211: 63,-27 + 13212: 63,-28 + 13317: 66,-19 + 13318: 65,-18 + 13319: 65,-18 + 13320: 65,-18 + 13321: 67,-18 + 13322: 67,-20 + 13323: 67,-20 + 13324: 66,-20 + 13325: 71,-19 + 13326: 71,-19 + 13327: 72,-18 + 13328: 69,-18 + 13329: 69,-21 + 13330: 71,-24 + 13331: 72,-25 + 13332: 71,-26 + 13333: 70,-26 + 13334: 71,-26 + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFFFF' + id: DirtMedium + decals: + 2160: -47,-14 + 2161: -46,-16 + 2162: -49,-17 + 2163: -49,-11 + - node: + color: '#FF7C41FF' + id: Flowersbr2 + decals: + 13396: 32.32942,12.054068 + 13397: 29.08826,14.646326 + 13412: 43.924442,-52.121162 + 13421: -14.942545,-25.533201 + 13433: -56.965874,-3.027073 + 13434: -59.96157,-3.1080804 + - node: + color: '#FF7C41FF' + id: Flowerspv1 + decals: + 13398: 31.130188,13.042366 + 13399: 36.737392,14.727335 + - node: + color: '#FF7C41FF' + id: Flowerspv2 + decals: + 13420: -14.983059,-24.453094 + 13431: -63.067715,-2.0414739 + 13432: -57.019947,-2.2034905 + - node: + color: '#FF7C41FF' + id: Flowersy3 + decals: + 13419: -14.942545,-26.61331 + - node: + color: '#FF7C41FF' + id: Flowersy4 + decals: + 13400: 36.153984,12.054068 + 13401: 29.00723,13.107172 + 13411: 42.965603,-53.120262 + 13429: -59.988853,-2.5815282 + 13430: -62.986687,-2.9730668 + - node: + color: '#FF7C41FF' + id: Grassa2 + decals: + 13392: 35.716427,11.973059 + 13410: 42.830555,-51.99965 + - node: + color: '#FF7C41FF' + id: Grassa4 + decals: + 13418: -15.023574,-26.734823 + 13428: -60.056377,-2.189989 + - node: + color: '#FF7C41FF' + id: Grassa5 + decals: + 13390: 32.070126,12.945156 + - node: + color: '#FF7C41FF' + id: Grassb1 + decals: + 13395: 31.827038,15.035166 + 13409: 43.816406,-52.985252 + 13417: -14.929041,-24.439592 + - node: + color: '#FF7C41FF' + id: Grassb4 + decals: + 13393: 33.949997,12.070269 + 13394: 37.029095,13.9820595 + - node: + color: '#FF7C41FF' + id: Grassb5 + decals: + 13391: 31.535336,11.973059 + - node: + color: '#FF7C41FF' + id: Grassc1 + decals: + 13386: 33.15591,12.102672 + 13387: 31.340862,15.067568 + 13408: 43.843414,-51.97265 + - node: + color: '#FF7C41FF' + id: Grassc2 + decals: + 13388: 35.651604,14.970359 + 13389: 34.88993,12.961358 + 13415: -15.050583,-26.073256 + 13416: -14.95605,-25.033651 + - node: + color: '#FF7C41FF' + id: Grasse1 + decals: + 13383: 31.195011,12.523914 + 13384: 36.753597,14.921754 + 13385: 28.991026,13.836246 + 13407: 42.99261,-52.688217 + 13422: -63.14704,-2.9730668 + 13423: -62.917458,-2.2439942 + 13424: -59.98691,-2.0144715 + 13425: -59.973408,-2.9730668 + 13426: -57.004288,-3.081078 + 13427: -56.97728,-2.2034905 + - node: + color: '#FF7C41FF' + id: Grasse3 + decals: + 13413: -14.942545,-26.856335 + 13414: -14.983059,-24.466597 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 37: -7,31 + - node: + angle: 1.5707963267948966 rad + color: '#DE3A3A9B' + id: LoadingArea + decals: + 2863: -60,1 + 2864: -58,1 + 2865: -57,1 + - node: + angle: -1.5707963267948966 rad + color: '#EFB34199' + id: LoadingArea + decals: + 4483: -14,-28 + - node: + color: '#EFB34199' + id: LoadingArea + decals: + 4479: -14,-24 + 4480: -14,-25 + 4481: -14,-26 + 4482: -14,-23 + - node: + angle: -4.71238898038469 rad + color: '#EFB3419B' + id: LoadingArea + decals: + 4484: -15,-23 + - node: + angle: -1.5707963267948966 rad + color: '#EFB3419B' + id: LoadingArea + decals: + 4485: -15,-28 + - node: + angle: 4.71238898038469 rad + color: '#D69949B2' + id: LoadingAreaGreyscale + decals: + 12622: 81,-14 + 12623: 81,-12 + 12624: 81,-4 + 12625: 81,-6 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale + decals: + 57: 27,-90 + 58: 27,-91 + 63: 31,-91 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale180 + decals: + 61: 29,-94 + 62: 29,-93 + 66: 25,-94 + 67: 25,-93 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale270 + decals: + 59: 27,-94 + 60: 27,-93 + 64: 31,-94 + 65: 31,-93 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 55: 29,-90 + 56: 29,-91 + 68: 25,-91 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale90 + decals: + 74: 9,2 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign1 + decals: + 4121: -4,-2 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign2 + decals: + 4122: -3,-2 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign3 + decals: + 4123: -2,-2 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign4 + decals: + 4124: -1,-2 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign5 + decals: + 4125: 0,-2 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign6 + decals: + 4126: 1,-2 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign7 + decals: + 4127: 2,-2 + - node: + color: '#FFFFFFFF' + id: TrimSteelInnerNe + decals: + 2520: -69,8 + 2562: -79,-6 + 2563: -74,-6 + 2564: -69,-6 + 2736: -79,8 + 2737: -74,8 + 2772: -69,-16 + 2773: -73,-16 + 2774: -77,-16 + 2792: -66,-12 + 2813: -64,-1 + 2814: -59,-1 + 2846: -64,-6 + 2847: -59,-6 + 2848: -56,-4 + 3178: -23,-3 + 3179: -27,-3 + 3180: -31,-3 + 3181: -35,-3 + 3182: -40,-3 + 3183: -44,-3 + 3184: -48,-3 + 3185: -52,-3 + 3291: -44,-9 + 4089: 8,-3 + 4090: 4,-3 + 4091: -10,-3 + 4092: -14,-3 + 4330: -18,-20 + 4331: -18,-17 + 4332: -18,-13 + 4333: -16,-10 + 4334: -18,-9 + 4335: -18,-5 + 4475: -14,-32 + 4476: -18,-32 + 4477: -18,-30 + 4478: -18,-26 + 4621: -9,-32 + 4622: -5,-32 + 4623: -1,-32 + 4624: 3,-32 + 4808: 14,-15 + 4809: 14,-19 + 4810: 14,-23 + 4844: 14,-30 + 4845: 13,-32 + 4846: 9,-32 + 4951: 11,-10 + 4952: 14,-10 + 4953: 14,-6 + 5242: -11,19 + 5243: -6,19 + 5244: -2,19 + 5245: 2,19 + 5246: 6,19 + 5247: -2,15 + 5248: -2,11 + 5249: -2,7 + 5250: -2,3 + 7428: 12,19 + 7463: 16,23 + 7605: 8,8 + 7606: 8,10 + 7607: 13,9 + 7626: 25,8 + 7627: 25,12 + 7838: 24,2 + 8010: 18,-11 + 8029: 22,-8 + 8048: 25,-8 + 8049: 25,-11 + 8052: 22,-11 + 8402: -2,-38 + 8403: -2,-42 + 8404: -2,-46 + 8405: -2,-51 + 8422: -2,-56 + 8423: -4,-60 + 10875: -16,47 + 11030: -10,47 + 11295: 29,-8 + 11575: 18,-15 + 11576: 21,-15 + 11577: 24,-15 + 11578: 27,-15 + 11579: 30,-15 + 11580: 33,-15 + 11581: 36,-15 + 11582: 43,-15 + 11583: 46,-15 + 11584: 52,-15 + 11585: 56,-15 + 11586: 59,-15 + 11587: 62,-15 + 11588: 65,-15 + 11589: 68,-15 + 12647: 49,-15 + - node: + color: '#FFFFFFFF' + id: TrimSteelInnerNw + decals: + 2519: -64,8 + 2559: -69,-6 + 2560: -64,-6 + 2561: -74,-6 + 2734: -69,8 + 2735: -74,8 + 2769: -73,-16 + 2770: -69,-16 + 2771: -64,-16 + 2791: -64,-12 + 2811: -54,-1 + 2812: -59,-1 + 2843: -59,-6 + 2844: -54,-6 + 2845: -54,-4 + 3171: -48,-3 + 3172: -44,-3 + 3173: -40,-3 + 3174: -31,-3 + 3175: -27,-3 + 3176: -23,-3 + 3177: -20,-3 + 3229: -37,-3 + 3290: -42,-9 + 4085: -10,-3 + 4086: -6,-3 + 4087: 8,-3 + 4088: 12,-3 + 4324: -16,-5 + 4325: -16,-9 + 4326: -13,-10 + 4327: -16,-13 + 4328: -16,-17 + 4329: -16,-20 + 4462: -16,-26 + 4463: -16,-30 + 4464: -14,-32 + 4465: -11,-32 + 4617: 7,-32 + 4618: 3,-32 + 4619: -1,-32 + 4620: -5,-32 + 4805: 16,-23 + 4806: 16,-19 + 4807: 16,-15 + 4841: 13,-32 + 4842: 16,-32 + 4843: 16,-30 + 4948: 16,-6 + 4949: 16,-10 + 4950: 14,-10 + 5233: 0,3 + 5234: 0,7 + 5235: 0,11 + 5236: 0,15 + 5237: 2,19 + 5238: 6,19 + 5239: 10,19 + 5240: -2,19 + 5241: -6,19 + 7430: 16,19 + 7462: 18,23 + 7597: 13,8 + 7598: 17,9 + 7599: 13,10 + 7628: 27,12 + 7837: 26,2 + 8009: 21,-11 + 8024: 24,-8 + 8042: 27,-11 + 8043: 27,-8 + 8051: 24,-11 + 8398: 0,-51 + 8399: 0,-46 + 8400: 0,-42 + 8401: 0,-38 + 8419: -1,-60 + 8420: 0,-56 + 10874: -12,47 + 11029: -7,47 + 11294: 31,-8 + 11590: 71,-15 + 11591: 68,-15 + 11592: 65,-15 + 11593: 62,-15 + 11594: 59,-15 + 11595: 52,-15 + 11596: 46,-15 + 11597: 39,-15 + 11598: 36,-15 + 11599: 33,-15 + 11600: 30,-15 + 11601: 27,-15 + 11602: 24,-15 + 11603: 21,-15 + 12646: 49,-15 + - node: + color: '#FFFFFFFF' + id: TrimSteelInnerSe + decals: + 2521: -69,10 + 2568: -79,-4 + 2569: -74,-4 + 2570: -69,-4 + 2738: -79,10 + 2739: -74,10 + 2775: -77,-14 + 2776: -73,-14 + 2777: -69,-14 + 2790: -66,-8 + 2815: -64,1 + 2852: -64,-4 + 2853: -59,-4 + 2854: -56,-1 + 3186: -52,-1 + 3187: -48,-1 + 3188: -44,-1 + 3189: -40,-1 + 3190: -35,-1 + 3191: -31,-1 + 3192: -27,-1 + 3193: -23,-1 + 3293: -44,-5 + 4093: -14,-1 + 4094: -10,-1 + 4095: 4,-1 + 4096: 8,-1 + 4318: -18,-17 + 4319: -18,-13 + 4320: -18,-9 + 4321: -16,-8 + 4322: -18,-5 + 4323: -18,-1 + 4471: -18,-22 + 4472: -18,-26 + 4473: -18,-30 + 4474: -14,-30 + 4629: -9,-30 + 4630: -5,-30 + 4631: -1,-30 + 4632: 3,-30 + 4814: 14,-12 + 4815: 14,-15 + 4816: 14,-19 + 4850: 14,-25 + 4851: 9,-30 + 4852: 13,-30 + 4954: 11,-8 + 4955: 14,-6 + 4956: 14,-1 + 5224: -11,21 + 5225: -6,21 + 5226: -2,21 + 5227: 2,21 + 5228: 6,21 + 5229: -2,19 + 5230: -2,15 + 5231: -2,11 + 5232: -2,7 + 7431: 12,21 + 7461: 16,28 + 7603: 8,10 + 7604: 8,12 + 7624: 25,15 + 7625: 25,12 + 7840: 24,6 + 8011: 18,-7 + 8027: 22,-8 + 8028: 22,-5 + 8046: 25,-8 + 8047: 25,-5 + 8390: -2,-46 + 8391: -2,-42 + 8392: -2,-38 + 8393: -2,-34 + 8426: -2,-53 + 8455: -4,-56 + 10877: -16,49 + 11032: -10,50 + 11296: 29,-4 + 11604: 18,-13 + 11605: 21,-13 + 11606: 24,-13 + 11607: 27,-13 + 11608: 30,-13 + 11609: 33,-13 + 11610: 36,-13 + 11613: 46,-13 + 11616: 49,-13 + 11617: 52,-13 + 11619: 56,-13 + 11620: 59,-13 + 11625: 68,-13 + 11626: 65,-13 + 11627: 62,-13 + 12648: 43,-13 + - node: + color: '#FFFFFFFF' + id: TrimSteelInnerSw + decals: + 2522: -64,10 + 2565: -64,-4 + 2566: -69,-4 + 2567: -74,-4 + 2740: -69,10 + 2741: -74,10 + 2778: -64,-14 + 2779: -73,-14 + 2780: -69,-14 + 2789: -64,-8 + 2816: -54,1 + 2849: -54,-1 + 2850: -54,-4 + 2851: -59,-4 + 3194: -20,-1 + 3195: -23,-1 + 3196: -27,-1 + 3197: -31,-1 + 3198: -37,-1 + 3199: -40,-1 + 3200: -44,-1 + 3201: -48,-1 + 3292: -42,-5 + 4097: 12,-1 + 4098: 8,-1 + 4099: -6,-1 + 4100: -10,-1 + 4312: -16,-1 + 4313: -16,-5 + 4314: -16,-9 + 4315: -13,-8 + 4316: -16,-13 + 4317: -16,-17 + 4467: -11,-30 + 4468: -14,-30 + 4469: -16,-26 + 4470: -16,-22 + 4625: 7,-30 + 4626: 3,-30 + 4627: -1,-30 + 4628: -5,-30 + 4811: 16,-19 + 4812: 16,-15 + 4813: 16,-12 + 4847: 13,-30 + 4848: 16,-30 + 4849: 16,-25 + 4957: 14,-8 + 4958: 16,-6 + 4959: 16,-1 + 5214: 0,15 + 5215: 0,11 + 5216: 0,7 + 5217: 0,15 + 5218: 0,19 + 5219: 2,21 + 5220: 6,21 + 5221: 10,21 + 5222: -2,21 + 5223: -6,21 + 7429: 16,21 + 7460: 18,28 + 7600: 13,12 + 7601: 17,11 + 7602: 13,10 + 7622: 27,15 + 7623: 27,12 + 7839: 26,6 + 8012: 21,-7 + 8025: 24,-5 + 8026: 24,-8 + 8044: 27,-5 + 8045: 27,-8 + 8386: 0,-38 + 8387: 0,-34 + 8388: 0,-42 + 8389: 0,-46 + 8424: -1,-56 + 8425: 0,-53 + 10876: -12,49 + 11031: -7,50 + 11297: 31,-4 + 11611: 39,-13 + 11612: 46,-13 + 11614: 49,-13 + 11615: 52,-13 + 11618: 59,-13 + 11621: 62,-13 + 11622: 65,-13 + 11623: 68,-13 + 11624: 71,-13 + 11628: 36,-13 + 11629: 33,-13 + 11630: 30,-13 + 11631: 27,-13 + 11632: 24,-13 + 11633: 21,-13 + - node: + color: '#FFFFFFFF' + id: TrimSteelLineE + decals: + 2518: -69,9 + 2556: -79,-5 + 2557: -74,-5 + 2558: -69,-5 + 2730: -79,9 + 2731: -74,9 + 2766: -69,-15 + 2767: -73,-15 + 2768: -77,-15 + 2784: -66,-11 + 2785: -66,-10 + 2786: -66,-9 + 2804: -59,0 + 2805: -64,0 + 2835: -64,-5 + 2836: -59,-5 + 2841: -56,-3 + 2842: -56,-2 + 3155: -52,-2 + 3156: -48,-2 + 3157: -44,-2 + 3158: -40,-2 + 3159: -35,-2 + 3160: -31,-2 + 3161: -27,-2 + 3162: -23,-2 + 3285: -44,-8 + 3286: -44,-7 + 3287: -44,-6 + 4081: 8,-2 + 4082: 4,-2 + 4083: -10,-2 + 4084: -14,-2 + 4282: -18,-19 + 4283: -18,-18 + 4284: -18,-16 + 4285: -18,-15 + 4286: -18,-14 + 4287: -18,-12 + 4288: -18,-11 + 4289: -18,-10 + 4290: -18,-8 + 4291: -18,-7 + 4292: -18,-6 + 4293: -18,-4 + 4294: -18,-3 + 4295: -18,-2 + 4309: -16,-9 + 4454: -14,-31 + 4455: -18,-31 + 4456: -18,-29 + 4457: -18,-28 + 4458: -18,-27 + 4459: -18,-25 + 4460: -18,-24 + 4461: -18,-23 + 4613: -9,-31 + 4614: -5,-31 + 4615: -1,-31 + 4616: 3,-31 + 4794: 14,-22 + 4795: 14,-21 + 4796: 14,-20 + 4797: 14,-18 + 4798: 14,-17 + 4799: 14,-16 + 4800: 14,-14 + 4801: 14,-13 + 4835: 14,-29 + 4837: 14,-28 + 4838: 14,-27 + 4839: 14,-26 + 4840: 13,-31 + 4941: 14,-9 + 4942: 14,-8 + 4943: 14,-7 + 4944: 14,-5 + 4945: 14,-4 + 4946: 14,-3 + 4947: 14,-2 + 5154: -11,20 + 5155: -6,20 + 5156: -2,20 + 5157: 2,20 + 5158: 6,20 + 5159: -2,18 + 5160: -2,17 + 5161: -2,16 + 5162: -2,14 + 5163: -2,13 + 5164: -2,12 + 5165: -2,10 + 5166: -2,9 + 5167: -2,8 + 5168: -2,6 + 5169: -2,5 + 5170: -2,4 + 7426: 12,20 + 7454: 16,24 + 7455: 16,25 + 7456: 16,26 + 7457: 16,27 + 7594: 8,11 + 7595: 8,9 + 7596: 13,10 + 7613: 25,13 + 7614: 25,14 + 7615: 25,11 + 7616: 25,10 + 7617: 25,9 + 7834: 24,3 + 7835: 24,4 + 7836: 24,5 + 7999: 18,-10 + 8000: 18,-9 + 8001: 18,-8 + 8017: 22,-7 + 8018: 22,-6 + 8019: 22,-10 + 8020: 22,-9 + 8034: 25,-10 + 8035: 25,-9 + 8036: 25,-7 + 8037: 25,-6 + 8371: -2,-50 + 8372: -2,-49 + 8373: -2,-48 + 8374: -2,-47 + 8375: -2,-45 + 8376: -2,-44 + 8377: -2,-43 + 8378: -2,-41 + 8379: -2,-40 + 8380: -2,-39 + 8381: -2,-37 + 8382: -2,-36 + 8383: -2,-35 + 8411: -4,-59 + 8412: -2,-54 + 8416: -2,-55 + 8453: -4,-58 + 8454: -4,-57 + 10873: -16,48 + 11025: -10,49 + 11026: -10,48 + 11290: 29,-7 + 11291: 29,-6 + 11292: 29,-5 + 11527: 68,-14 + 11528: 65,-14 + 11529: 62,-14 + 11530: 59,-14 + 11531: 56,-14 + 11532: 52,-14 + 11533: 49,-14 + 11534: 46,-14 + 11535: 43,-14 + 11536: 36,-14 + 11537: 33,-14 + 11538: 30,-14 + 11539: 27,-14 + 11540: 24,-14 + 11541: 21,-14 + 11542: 18,-14 + 13345: 9,-31 + - node: + color: '#FFFFFFFF' + id: TrimSteelLineN + decals: + 2510: -65,8 + 2511: -66,8 + 2512: -67,8 + 2513: -68,8 + 2523: -70,8 + 2524: -71,8 + 2525: -72,8 + 2526: -73,8 + 2527: -75,8 + 2528: -76,8 + 2529: -77,8 + 2530: -65,-6 + 2531: -66,-6 + 2532: -67,-6 + 2533: -68,-6 + 2534: -70,-6 + 2535: -71,-6 + 2536: -72,-6 + 2537: -73,-6 + 2538: -75,-6 + 2539: -76,-6 + 2540: -77,-6 + 2541: -78,-6 + 2742: -76,-16 + 2743: -75,-16 + 2744: -74,-16 + 2745: -72,-16 + 2746: -71,-16 + 2747: -71,-16 + 2748: -70,-16 + 2749: -68,-16 + 2750: -67,-16 + 2751: -66,-16 + 2752: -65,-16 + 2787: -65,-12 + 2794: -63,-1 + 2795: -62,-1 + 2796: -61,-1 + 2797: -60,-1 + 2798: -58,-1 + 2799: -57,-1 + 2800: -56,-1 + 2801: -55,-1 + 2817: -63,-6 + 2818: -62,-6 + 2819: -61,-6 + 2820: -60,-6 + 2821: -58,-6 + 2822: -57,-6 + 2823: -56,-6 + 2824: -55,-6 + 2825: -55,-4 + 3113: -50,-3 + 3114: -49,-3 + 3115: -47,-3 + 3116: -46,-3 + 3117: -45,-3 + 3118: -43,-3 + 3119: -42,-3 + 3120: -41,-3 + 3121: -39,-3 + 3122: -38,-3 + 3123: -34,-3 + 3124: -32,-3 + 3125: -33,-3 + 3126: -30,-3 + 3127: -29,-3 + 3128: -28,-3 + 3129: -26,-3 + 3130: -25,-3 + 3131: -24,-3 + 3132: -22,-3 + 3133: -21,-3 + 3288: -43,-9 + 4046: -13,-3 + 4047: -12,-3 + 4048: -11,-3 + 4049: -9,-3 + 4050: -8,-3 + 4051: -7,-3 + 4059: 5,-3 + 4060: 6,-3 + 4061: 7,-3 + 4062: 10,-3 + 4063: 9,-3 + 4064: 11,-3 + 4303: -17,-20 + 4304: -17,-17 + 4305: -17,-13 + 4306: -14,-10 + 4307: -15,-10 + 4310: -17,-9 + 4311: -17,-5 + 4440: -12,-32 + 4441: -13,-32 + 4442: -15,-32 + 4443: -16,-32 + 4444: -17,-32 + 4445: -17,-30 + 4446: -17,-26 + 4585: -8,-32 + 4586: -7,-32 + 4587: -6,-32 + 4588: -4,-32 + 4589: -3,-32 + 4590: -2,-32 + 4591: 0,-32 + 4592: 1,-32 + 4593: 2,-32 + 4594: 4,-32 + 4595: 5,-32 + 4596: 6,-32 + 4791: 15,-15 + 4792: 15,-19 + 4793: 15,-23 + 4817: 10,-32 + 4818: 11,-32 + 4819: 12,-32 + 4820: 14,-32 + 4821: 15,-32 + 4822: 15,-30 + 4937: 13,-10 + 4938: 12,-10 + 4939: 15,-10 + 4940: 15,-6 + 5192: -10,19 + 5193: -9,19 + 5194: -8,19 + 5195: -7,19 + 5196: -5,19 + 5197: -4,19 + 5198: -3,19 + 5199: 0,19 + 5200: -1,19 + 5201: 1,19 + 5202: 3,19 + 5203: 4,19 + 5204: 5,19 + 5205: 7,19 + 5206: 8,19 + 5207: 9,19 + 5208: -1,15 + 5209: -1,11 + 5210: -1,7 + 5211: -1,3 + 7420: 15,19 + 7421: 14,19 + 7427: 13,19 + 7458: 17,23 + 7568: 9,8 + 7569: 10,8 + 7570: 11,8 + 7571: 12,8 + 7572: 12,10 + 7573: 11,10 + 7574: 10,10 + 7575: 9,10 + 7576: 14,9 + 7577: 15,9 + 7578: 16,9 + 7618: 26,12 + 7619: 26,8 + 7829: 25,2 + 8007: 20,-11 + 8008: 19,-11 + 8021: 23,-8 + 8038: 26,-11 + 8039: 26,-8 + 8050: 23,-11 + 8394: -1,-38 + 8395: -1,-42 + 8396: -1,-46 + 8397: -1,-51 + 8417: -2,-60 + 8418: -3,-60 + 8421: -1,-56 + 10866: -13,47 + 10867: -14,47 + 10868: -15,47 + 11027: -8,47 + 11028: -9,47 + 11293: 30,-8 + 11543: 19,-15 + 11544: 20,-15 + 11545: 22,-15 + 11546: 23,-15 + 11547: 25,-15 + 11548: 26,-15 + 11549: 28,-15 + 11550: 29,-15 + 11551: 31,-15 + 11552: 32,-15 + 11553: 34,-15 + 11554: 35,-15 + 11555: 37,-15 + 11556: 38,-15 + 11557: 44,-15 + 11558: 45,-15 + 11559: 47,-15 + 11560: 51,-15 + 11561: 53,-15 + 11562: 54,-15 + 11563: 57,-15 + 11564: 58,-15 + 11565: 60,-15 + 11566: 61,-15 + 11567: 63,-15 + 11568: 64,-15 + 11569: 66,-15 + 11570: 67,-15 + 11571: 70,-15 + 11572: 69,-15 + 12644: 48,-15 + 12645: 50,-15 + 13358: -78,8 + - node: + color: '#FFFFFFFF' + id: TrimSteelLineS + decals: + 2514: -65,10 + 2515: -66,10 + 2516: -67,10 + 2542: -75,-4 + 2543: -76,-4 + 2544: -78,-4 + 2545: -73,-4 + 2546: -72,-4 + 2547: -71,-4 + 2548: -70,-4 + 2549: -68,-4 + 2550: -67,-4 + 2551: -66,-4 + 2552: -65,-4 + 2571: -77,-4 + 2687: -68,10 + 2722: -78,10 + 2723: -77,10 + 2724: -76,10 + 2725: -75,10 + 2726: -73,10 + 2727: -72,10 + 2728: -71,10 + 2729: -70,10 + 2753: -65,-14 + 2754: -66,-14 + 2755: -67,-14 + 2756: -68,-14 + 2757: -70,-14 + 2758: -71,-14 + 2759: -72,-14 + 2760: -74,-14 + 2761: -75,-14 + 2762: -76,-14 + 2788: -65,-8 + 2806: -62,1 + 2807: -61,1 + 2808: -63,1 + 2809: -55,1 + 2810: -56,1 + 2826: -55,-1 + 2827: -55,-4 + 2828: -56,-4 + 2829: -57,-4 + 2830: -58,-4 + 2831: -60,-4 + 2832: -61,-4 + 2833: -62,-4 + 2834: -63,-4 + 3134: -22,-1 + 3135: -21,-1 + 3136: -24,-1 + 3137: -25,-1 + 3138: -26,-1 + 3139: -28,-1 + 3140: -29,-1 + 3141: -30,-1 + 3142: -32,-1 + 3143: -34,-1 + 3144: -38,-1 + 3145: -39,-1 + 3146: -41,-1 + 3147: -42,-1 + 3148: -43,-1 + 3149: -45,-1 + 3150: -46,-1 + 3151: -47,-1 + 3152: -49,-1 + 3153: -50,-1 + 3154: -51,-1 + 3289: -43,-5 + 3333: -33,-1 + 4065: 11,-1 + 4066: 10,-1 + 4067: 9,-1 + 4068: 7,-1 + 4069: 6,-1 + 4070: 5,-1 + 4071: -7,-1 + 4072: -8,-1 + 4073: -9,-1 + 4074: -11,-1 + 4075: -12,-1 + 4076: -13,-1 + 4296: -17,-1 + 4297: -17,-5 + 4298: -15,-8 + 4299: -14,-8 + 4300: -17,-9 + 4301: -17,-13 + 4302: -17,-17 + 4433: -17,-22 + 4434: -17,-26 + 4435: -17,-30 + 4436: -16,-30 + 4437: -15,-30 + 4438: -13,-30 + 4439: -12,-30 + 4597: -8,-30 + 4598: -7,-30 + 4599: -6,-30 + 4600: -4,-30 + 4601: -3,-30 + 4602: -2,-30 + 4603: 0,-30 + 4604: 1,-30 + 4605: 2,-30 + 4606: 4,-30 + 4607: 5,-30 + 4608: 6,-30 + 4802: 15,-12 + 4803: 15,-15 + 4804: 15,-19 + 4823: 12,-30 + 4824: 11,-30 + 4825: 10,-30 + 4826: 14,-30 + 4827: 15,-30 + 4828: 15,-25 + 4925: 12,-8 + 4926: 13,-8 + 4927: 15,-6 + 4928: 15,-1 + 5171: -1,7 + 5173: -1,11 + 5174: -1,15 + 5175: -1,19 + 5176: 1,21 + 5177: 0,21 + 5178: -1,21 + 5179: 3,21 + 5180: 4,21 + 5181: 5,21 + 5182: 7,21 + 5183: 8,21 + 5184: 9,21 + 5185: -3,21 + 5186: -4,21 + 5187: -5,21 + 5188: -7,21 + 5189: -8,21 + 5190: -9,21 + 5191: -10,21 + 7422: 15,21 + 7423: 14,21 + 7424: 13,21 + 7459: 17,28 + 7579: 12,10 + 7580: 12,10 + 7581: 11,10 + 7582: 10,10 + 7583: 9,10 + 7584: 9,12 + 7585: 10,12 + 7586: 11,12 + 7587: 12,12 + 7588: 14,11 + 7589: 15,11 + 7590: 16,11 + 7620: 26,12 + 7621: 26,15 + 7833: 25,6 + 8002: 19,-7 + 8003: 20,-7 + 8022: 23,-8 + 8023: 23,-5 + 8040: 26,-8 + 8041: 26,-5 + 8368: -1,-34 + 8369: -1,-42 + 8370: -1,-46 + 8384: -1,-38 + 8413: -1,-53 + 8414: -2,-56 + 8415: -3,-56 + 10869: -13,49 + 10870: -14,49 + 10871: -15,49 + 11023: -8,50 + 11024: -9,50 + 11289: 30,-4 + 11482: 20,-13 + 11483: 19,-13 + 11484: 22,-13 + 11485: 23,-13 + 11486: 25,-13 + 11487: 26,-13 + 11488: 28,-13 + 11489: 29,-13 + 11490: 31,-13 + 11491: 32,-13 + 11492: 35,-13 + 11493: 34,-13 + 11494: 37,-13 + 11495: 38,-13 + 11496: 47,-13 + 11497: 48,-13 + 11498: 50,-13 + 11499: 51,-13 + 11500: 53,-13 + 11501: 54,-13 + 11502: 57,-13 + 11503: 58,-13 + 11504: 60,-13 + 11505: 61,-13 + 11506: 63,-13 + 11507: 64,-13 + 11508: 66,-13 + 11509: 67,-13 + 11510: 69,-13 + 11511: 70,-13 + 12642: 45,-13 + 12643: 44,-13 + - node: + color: '#FFFFFFFF' + id: TrimSteelLineW + decals: + 2517: -64,9 + 2553: -64,-5 + 2554: -69,-5 + 2555: -74,-5 + 2732: -69,9 + 2733: -74,9 + 2763: -73,-15 + 2764: -69,-15 + 2765: -64,-15 + 2781: -64,-11 + 2782: -64,-10 + 2783: -64,-9 + 2802: -59,0 + 2803: -54,0 + 2837: -59,-5 + 2838: -54,-5 + 2839: -54,-3 + 2840: -54,-2 + 3163: -20,-2 + 3164: -23,-2 + 3165: -27,-2 + 3166: -31,-2 + 3167: -37,-2 + 3168: -40,-2 + 3169: -44,-2 + 3170: -48,-2 + 3282: -42,-8 + 3283: -42,-7 + 3284: -42,-6 + 4077: -10,-2 + 4078: -6,-2 + 4079: 8,-2 + 4080: 12,-2 + 4269: -16,-3 + 4270: -16,-4 + 4271: -16,-6 + 4272: -16,-7 + 4273: -16,-8 + 4274: -13,-9 + 4275: -16,-11 + 4276: -16,-12 + 4277: -16,-14 + 4278: -16,-15 + 4279: -16,-16 + 4280: -16,-18 + 4281: -16,-19 + 4308: -16,-10 + 4447: -16,-23 + 4448: -16,-24 + 4449: -16,-25 + 4450: -16,-27 + 4451: -16,-28 + 4452: -16,-29 + 4453: -11,-31 + 4466: -14,-31 + 4609: 7,-31 + 4610: 3,-31 + 4611: -1,-31 + 4612: -5,-31 + 4783: 16,-22 + 4784: 16,-21 + 4785: 16,-20 + 4786: 16,-18 + 4787: 16,-17 + 4788: 16,-16 + 4789: 16,-14 + 4790: 16,-13 + 4829: 16,-29 + 4830: 16,-28 + 4831: 16,-27 + 4832: 16,-26 + 4833: 16,-31 + 4834: 13,-31 + 4929: 16,-5 + 4930: 16,-4 + 4931: 16,-3 + 4932: 16,-2 + 4933: 16,-7 + 4934: 16,-8 + 4935: 16,-9 + 4936: 14,-9 + 5138: 0,4 + 5139: 0,5 + 5140: 0,6 + 5141: 0,9 + 5142: 0,8 + 5143: 0,12 + 5144: 0,13 + 5145: 0,14 + 5146: 0,16 + 5147: 0,17 + 5148: 0,18 + 5149: 2,20 + 5150: 6,20 + 5151: 10,20 + 5152: -2,20 + 5153: -6,20 + 5378: 0,10 + 6486: -16,-2 + 7425: 16,20 + 7450: 18,24 + 7451: 18,25 + 7452: 18,26 + 7453: 18,27 + 7591: 13,11 + 7592: 13,9 + 7593: 17,10 + 7608: 27,9 + 7609: 27,10 + 7610: 27,11 + 7611: 27,13 + 7612: 27,14 + 7830: 26,3 + 7831: 26,4 + 7832: 26,5 + 8004: 21,-8 + 8005: 21,-9 + 8006: 21,-10 + 8013: 24,-10 + 8014: 24,-9 + 8015: 24,-7 + 8016: 24,-6 + 8030: 27,-7 + 8031: 27,-6 + 8032: 27,-9 + 8033: 27,-10 + 8355: 0,-50 + 8356: 0,-49 + 8357: 0,-48 + 8358: 0,-47 + 8359: 0,-45 + 8360: 0,-44 + 8361: 0,-43 + 8362: 0,-41 + 8363: 0,-40 + 8364: 0,-39 + 8365: 0,-37 + 8366: 0,-36 + 8367: 0,-35 + 8406: 0,-55 + 8407: 0,-54 + 8408: -1,-57 + 8409: -1,-58 + 8410: -1,-59 + 10872: -12,48 + 11021: -7,48 + 11022: -7,49 + 11286: 31,-7 + 11287: 31,-6 + 11288: 31,-5 + 11512: 21,-14 + 11513: 24,-14 + 11514: 27,-14 + 11515: 30,-14 + 11516: 33,-14 + 11517: 36,-14 + 11518: 39,-14 + 11519: 46,-14 + 11520: 49,-14 + 11521: 52,-14 + 11522: 59,-14 + 11523: 62,-14 + 11524: 65,-14 + 11525: 68,-14 + 11526: 71,-14 + - node: + color: '#B9E169FF' + id: TrimWarnCornerSE + decals: + 11269: 45,1 + - node: + color: '#A46106B2' + id: TrimWarnCornerSmallNE + decals: + 9963: -39,-26 + - node: + color: '#EFB341B2' + id: TrimWarnCornerSmallNE + decals: + 3423: -47,1 + 8783: -10,-65 + - node: + color: '#A46106B2' + id: TrimWarnCornerSmallNW + decals: + 9962: -33,-26 + - node: + color: '#EFB34199' + id: TrimWarnCornerSmallNW + decals: + 3848: -66,13 + - node: + color: '#EFB341B2' + id: TrimWarnCornerSmallNW + decals: + 3424: -44,1 + 8782: -5,-65 + - node: + color: '#334E6DB4' + id: TrimWarnCornerSmallSE + decals: + 3956: -12,8 + 7354: 9,-26 + - node: + color: '#EFB341B2' + id: TrimWarnCornerSmallSE + decals: + 3422: -47,5 + 8781: -10,-62 + - node: + color: '#A46106B2' + id: TrimWarnCornerSmallSW + decals: + 9961: -33,-21 + - node: + color: '#EFB34199' + id: TrimWarnCornerSmallSW + decals: + 3849: -66,17 + - node: + color: '#EFB341B2' + id: TrimWarnCornerSmallSW + decals: + 3421: -44,5 + 8784: -5,-62 + - node: + color: '#A46106B2' + id: TrimWarnGreyscaleCornerSmallSE + decals: + 9960: -39,-21 + - node: + color: '#D69949B4' + id: TrimWarnGreyscaleLineE + decals: + 12607: 40,-13 + 12608: 40,-14 + 12609: 40,-15 + 12610: 54,-13 + 12611: 54,-14 + 12612: 54,-15 + 12616: 72,-13 + 12617: 72,-14 + 12618: 72,-15 + - node: + color: '#EFB341B2' + id: TrimWarnGreyscaleLineN + decals: + 3409: -46,1 + 3410: -45,1 + - node: + color: '#D69949B4' + id: TrimWarnGreyscaleLineW + decals: + 12602: 19,-13 + 12603: 19,-14 + 12604: 19,-15 + 12605: 42,-14 + 12606: 42,-15 + 12613: 56,-13 + 12614: 56,-14 + 12615: 56,-15 + 12619: 75,-15 + 12620: 75,-14 + 12621: 75,-13 + 12649: 42,-13 + - node: + color: '#334E6DB4' + id: TrimWarnLineE + decals: + 3954: -12,6 + 3955: -12,7 + 7352: 9,-27 + 7353: 9,-28 + - node: + color: '#A46106B2' + id: TrimWarnLineE + decals: + 9956: -39,-25 + 9957: -39,-24 + 9958: -39,-23 + 9959: -39,-22 + - node: + color: '#B9E169FF' + id: TrimWarnLineE + decals: + 11242: 48,-7 + 11243: 48,-6 + - node: + color: '#EFB341B2' + id: TrimWarnLineE + decals: + 3413: -47,2 + 3414: -47,3 + 3415: -47,4 + 3425: -37,-3 + 3426: -37,-2 + 3427: -37,-1 + 8779: -10,-64 + 8780: -10,-63 + - node: + color: '#EFB341B4' + id: TrimWarnLineE + decals: + 9802: 5,-37 + 9803: 5,-36 + 9804: 5,-35 + - node: + color: '#334E6DB4' + id: TrimWarnLineN + decals: + 3951: -9,8 + 3952: -10,8 + 3953: -11,8 + 7349: 12,-26 + 7350: 11,-26 + 7351: 10,-26 + - node: + color: '#A46106B2' + id: TrimWarnLineN + decals: + 9942: -38,-21 + 9943: -37,-21 + 9944: -36,-21 + 9945: -35,-21 + 9946: -34,-21 + - node: + color: '#B9E169FF' + id: TrimWarnLineN + decals: + 11250: 44,-10 + 11251: 43,-10 + 11252: 42,-10 + - node: + color: '#EFB34199' + id: TrimWarnLineN + decals: + 3846: -67,17 + 3847: -68,17 + - node: + color: '#EFB341B2' + id: TrimWarnLineN + decals: + 3419: -45,5 + 3420: -46,5 + 8773: -6,-62 + 8774: -7,-62 + 8775: -8,-62 + 8776: -9,-62 + - node: + color: '#A46106B2' + id: TrimWarnLineS + decals: + 9947: -33,-22 + 9948: -33,-23 + 9949: -33,-24 + 9950: -33,-25 + - node: + color: '#B9E169FF' + id: TrimWarnLineS + decals: + 11266: 49,-1 + 11267: 49,0 + 11268: 49,1 + - node: + color: '#EFB34199' + id: TrimWarnLineS + decals: + 3843: -66,14 + 3844: -66,15 + 3845: -66,16 + - node: + color: '#EFB341B2' + id: TrimWarnLineS + decals: + 3416: -44,2 + 3417: -44,3 + 3418: -44,4 + 3428: -35,-3 + 3429: -35,-2 + 3430: -35,-1 + 8777: -5,-64 + 8778: -5,-63 + - node: + color: '#3EB388B2' + id: TrimWarnLineW + decals: + 9404: 3,-43 + 9405: 4,-43 + 9406: 5,-43 + 9407: 6,-43 + 9408: 7,-43 + - node: + color: '#A46106B2' + id: TrimWarnLineW + decals: + 9951: -34,-26 + 9952: -35,-26 + 9953: -36,-26 + 9954: -38,-26 + 9955: -37,-26 + - node: + color: '#B9E169FF' + id: TrimWarnLineW + decals: + 11244: 46,-11 + 11245: 47,-11 + 11246: 48,-11 + 11247: 49,-11 + 11248: 44,-11 + 11249: 42,-11 + 11253: 43,-11 + - node: + color: '#EFB34199' + id: TrimWarnLineW + decals: + 3841: -68,13 + 3842: -67,13 + - node: + color: '#EFB341B2' + id: TrimWarnLineW + decals: + 3411: -46,1 + 3412: -45,1 + 8769: -9,-65 + 8770: -8,-65 + 8771: -7,-65 + 8772: -6,-65 + - node: + color: '#DE3A3A9B' + id: TrimWhiteCornerNw + decals: + 10670: -10,39 + - node: + color: '#EFB3419B' + id: TrimWhiteCornerSe + decals: + 9543: -8,-56 + - node: + color: '#334E6D99' + id: TrimWhiteInnerNe + decals: + 3899: -13,1 + 7214: 5,-15 + 7239: 5,-19 + - node: + color: '#334E6D9B' + id: TrimWhiteInnerNe + decals: + 3947: -15,6 + 6807: -5,-9 + 6808: -1,-9 + 7348: 6,-28 + - node: + color: '#729953FF' + id: TrimWhiteInnerNe + decals: + 11221: 48,-10 + 11226: 43,-10 + 11262: 48,-6 + 11263: 46,-10 + - node: + color: '#80C71F99' + id: TrimWhiteInnerNe + decals: + 11129: -3,49 + 11130: 1,49 + - node: + color: '#96DAFFB4' + id: TrimWhiteInnerNe + decals: + 11782: 39,-37 + 11783: 39,-43 + 11784: 39,-47 + 11785: 39,-50 + 11823: 28,-19 + 11827: 25,-20 + - node: + color: '#A4610699' + id: TrimWhiteInnerNe + decals: + 9924: -41,-26 + 9925: -41,-28 + 9926: -37,-28 + 9927: -33,-28 + 9928: -33,-25 + 9929: -40,-32 + 10193: -29,-28 + 10194: -29,-25 + - node: + color: '#A461069B' + id: TrimWhiteInnerNe + decals: + 9981: -38,-21 + 9982: -34,-21 + 10007: -35,-32 + 10347: -24,-20 + 10348: -24,-18 + 10420: -23,-25 + 10421: -23,-28 + 10528: -27,-35 + - node: + color: '#DE3A3A96' + id: TrimWhiteInnerNe + decals: + 11467: -2,26 + - node: + color: '#DE3A3A99' + id: TrimWhiteInnerNe + decals: + 5568: -19,29 + 5634: -16,34 + 5635: -12,34 + 5636: -8,35 + 5710: -3,35 + 6448: 12,37 + - node: + color: '#DE3A3A9B' + id: TrimWhiteInnerNe + decals: + 5492: 6,26 + 5493: 2,26 + 5494: -6,26 + 5665: 0,31 + 5765: 6,34 + 5766: 6,38 + 5846: 6,30 + 5847: 10,30 + 5848: 14,30 + 5849: 11,32 + 5850: 16,32 + 5916: 21,32 + 5917: 21,34 + 6566: -6,13 + 10468: -23,-32 + 10681: -12,38 + - node: + color: '#EFB34199' + id: TrimWhiteInnerNe + decals: + 3407: -42,1 + 3705: -24,-8 + 3766: -25,-12 + 3767: -25,-14 + 6675: -2,-28 + 8602: 5,-58 + 8619: 3,-57 + 8767: -3,-65 + 8866: -27,-72 + 8943: 11,-74 + - node: + color: '#EFB3419B' + id: TrimWhiteInnerNe + decals: + 9547: -9,-58 + 9799: 2,-37 + - node: + color: '#F9801D99' + id: TrimWhiteInnerNe + decals: + 10804: -25,43 + 10805: -21,43 + 10806: -16,43 + 10807: -12,43 + 10808: -8,43 + - node: + color: '#FFFFFFFF' + id: TrimWhiteInnerNe + decals: + 3464: -52,-9 + 5537: -10,29 + - node: + color: '#334E6D99' + id: TrimWhiteInnerNw + decals: + 3898: -11,1 + 7215: 7,-15 + - node: + color: '#334E6D9B' + id: TrimWhiteInnerNw + decals: + 3946: -12,6 + 6805: -1,-9 + 6806: 3,-9 + 7126: -10,-28 + 7347: 9,-28 + - node: + color: '#3EB3889B' + id: TrimWhiteInnerNw + decals: + 9420: 7,-46 + - node: + color: '#729953FF' + id: TrimWhiteInnerNw + decals: + 11222: 48,-10 + 11223: 45,-10 + - node: + color: '#80C71F99' + id: TrimWhiteInnerNw + decals: + 11127: 4,49 + 11128: 1,49 + - node: + color: '#96DAFFB4' + id: TrimWhiteInnerNw + decals: + 11786: 41,-50 + 11787: 41,-47 + 11788: 41,-43 + 11789: 41,-37 + 11822: 32,-19 + 11826: 35,-20 + - node: + color: '#A4610699' + id: TrimWhiteInnerNw + decals: + 9918: -38,-32 + 9919: -37,-28 + 9920: -33,-28 + 9921: -31,-28 + 9922: -31,-25 + 9923: -39,-26 + 10191: -26,-25 + 10192: -26,-28 + - node: + color: '#A461069B' + id: TrimWhiteInnerNw + decals: + 9979: -31,-21 + 9980: -34,-21 + 10006: -31,-32 + 10345: -20,-18 + 10346: -20,-20 + 10418: -20,-28 + 10419: -20,-25 + 10527: -25,-35 + - node: + color: '#DE3A3A99' + id: TrimWhiteInnerNw + decals: + 5567: -17,29 + 5624: -5,35 + 5625: -8,34 + 5626: -12,34 + 5709: -1,35 + 6447: 14,37 + - node: + color: '#DE3A3A9B' + id: TrimWhiteInnerNw + decals: + 5488: -2,26 + 5489: 2,26 + 5490: 6,26 + 5491: 10,26 + 5664: 4,31 + 5767: 8,38 + 5768: 9,34 + 5851: 16,32 + 5852: 19,32 + 5853: 17,30 + 5854: 14,30 + 5855: 10,30 + 5914: 25,34 + 5915: 25,32 + 6565: -4,13 + 10466: -20,-32 + 10677: -10,38 + 10678: -9,39 + - node: + color: '#EFB34199' + id: TrimWhiteInnerNw + decals: + 3405: -38,1 + 3704: -20,-8 + 3772: -21,-12 + 3773: -21,-14 + 6674: 0,-28 + 8601: 9,-58 + 8618: 5,-57 + 8723: 5,-64 + 8768: -1,-65 + 8863: -23,-72 + 8942: 13,-74 + - node: + color: '#EFB3419B' + id: TrimWhiteInnerNw + decals: + 9548: -6,-58 + 9798: 5,-37 + - node: + color: '#F9801D99' + id: TrimWhiteInnerNw + decals: + 10799: -5,43 + 10800: -8,43 + 10801: -12,43 + 10802: -18,43 + 10803: -21,43 + - node: + color: '#FFFFFFFF' + id: TrimWhiteInnerNw + decals: + 3463: -50,-9 + 5536: -8,29 + - node: + color: '#334E6D99' + id: TrimWhiteInnerSe + decals: + 3897: -13,4 + 7217: 5,-12 + 7238: 5,-17 + - node: + color: '#334E6D9B' + id: TrimWhiteInnerSe + decals: + 3949: -15,9 + 3950: -6,11 + 6803: -5,-7 + 6804: -1,-7 + 7128: -12,-25 + 7346: 6,-25 + - node: + color: '#3EB3889B' + id: TrimWhiteInnerSe + decals: + 9419: 3,-43 + - node: + color: '#729953FF' + id: TrimWhiteInnerSe + decals: + 11219: 46,-3 + 11220: 48,-3 + 11237: 43,-3 + 11261: 48,-7 + - node: + color: '#80C71F99' + id: TrimWhiteInnerSe + decals: + 11133: 1,51 + 11134: -3,51 + - node: + color: '#96DAFFB4' + id: TrimWhiteInnerSe + decals: + 11790: 39,-39 + 11791: 39,-33 + 11792: 39,-43 + 11793: 39,-47 + 11816: 33,-17 + 11820: 25,-17 + 11821: 28,-17 + - node: + color: '#A4610699' + id: TrimWhiteInnerSe + decals: + 9936: -37,-26 + 9937: -41,-21 + 9938: -33,-21 + 9939: -33,-25 + 9940: -41,-26 + 9941: -40,-28 + 10197: -29,-22 + 10198: -29,-25 + - node: + color: '#A461069B' + id: TrimWhiteInnerSe + decals: + 9985: -38,-19 + 9986: -34,-19 + 10008: -35,-30 + 10349: -24,-18 + 10350: -24,-16 + 10424: -23,-25 + 10530: -27,-30 + - node: + color: '#DE3A3A99' + id: TrimWhiteInnerSe + decals: + 5570: -19,32 + 5631: -8,37 + 5632: -12,36 + 5633: -16,36 + 5712: -3,39 + - node: + color: '#DE3A3A9B' + id: TrimWhiteInnerSe + decals: + 5495: -6,28 + 5496: -2,28 + 5497: 2,28 + 5498: 6,28 + 5666: 0,33 + 5771: 6,38 + 5772: 6,41 + 5861: 11,35 + 5862: 16,34 + 5863: 14,32 + 5864: 10,32 + 5865: 6,32 + 5920: 21,36 + 5921: 21,34 + 6560: -6,17 + 10680: -12,41 + - node: + color: '#EFB34199' + id: TrimWhiteInnerSe + decals: + 3406: -42,4 + 3706: -24,-6 + 3770: -25,-12 + 3771: -25,-10 + 6673: -2,-25 + 8614: 3,-52 + 8616: 5,-56 + 8722: 3,-60 + 8766: -3,-62 + 8865: -27,-70 + 8945: 11,-71 + - node: + color: '#EFB3419B' + id: TrimWhiteInnerSe + decals: + 9549: -9,-56 + 9550: -8,-54 + 9801: 2,-35 + - node: + color: '#F9801D99' + id: TrimWhiteInnerSe + decals: + 10815: -25,45 + 10816: -21,45 + 10817: -16,45 + 10818: -12,45 + 10819: -8,45 + - node: + color: '#FFFFFFFF' + id: TrimWhiteInnerSe + decals: + 3465: -52,-5 + 5539: -10,32 + - node: + color: '#334E6D99' + id: TrimWhiteInnerSw + decals: + 3896: -11,4 + 7216: 7,-12 + 7237: 9,-17 + - node: + color: '#334E6D9B' + id: TrimWhiteInnerSw + decals: + 3948: -12,9 + 6801: 3,-7 + 6802: -1,-7 + 7127: -10,-25 + 7345: 9,-25 + - node: + color: '#3EB3889B' + id: TrimWhiteInnerSw + decals: + 9418: 7,-43 + - node: + color: '#729953FF' + id: TrimWhiteInnerSw + decals: + 11217: 45,-3 + 11218: 48,-3 + - node: + color: '#80C71F99' + id: TrimWhiteInnerSw + decals: + 11131: 1,51 + 11132: 4,51 + - node: + color: '#96DAFFB4' + id: TrimWhiteInnerSw + decals: + 11794: 41,-47 + 11795: 41,-43 + 11796: 41,-39 + 11797: 41,-33 + 11817: 35,-17 + 11818: 32,-17 + 11819: 27,-17 + - node: + color: '#A4610699' + id: TrimWhiteInnerSw + decals: + 9930: -38,-28 + 9931: -31,-25 + 9932: -31,-21 + 9933: -39,-21 + 9934: -37,-26 + 9935: -33,-26 + 10195: -26,-25 + 10196: -26,-22 + - node: + color: '#A461069B' + id: TrimWhiteInnerSw + decals: + 9983: -31,-19 + 9984: -34,-19 + 10351: -20,-16 + 10352: -20,-18 + 10353: -18,-13 + 10422: -20,-22 + 10423: -20,-25 + 10529: -25,-30 + - node: + color: '#DE3A3A99' + id: TrimWhiteInnerSw + decals: + 5569: -17,32 + 5628: -12,36 + 5629: -8,36 + 5630: -5,37 + 5711: -1,39 + 6445: 14,41 + - node: + color: '#DE3A3A9B' + id: TrimWhiteInnerSw + decals: + 5499: 6,28 + 5500: 10,28 + 5501: 2,28 + 5502: -2,28 + 5667: 4,33 + 5769: 9,38 + 5770: 8,41 + 5856: 10,32 + 5857: 14,32 + 5858: 17,32 + 5859: 19,34 + 5860: 16,35 + 5918: 25,34 + 5919: 25,36 + 10467: -20,-30 + 10679: -9,41 + - node: + color: '#EFB34199' + id: TrimWhiteInnerSw + decals: + 3404: -38,4 + 3702: -20,-6 + 3768: -21,-10 + 3769: -21,-12 + 6672: 0,-25 + 8603: 9,-56 + 8613: 5,-52 + 8765: -1,-62 + 8864: -23,-70 + 8944: 13,-71 + - node: + color: '#EFB3419B' + id: TrimWhiteInnerSw + decals: + 9546: -6,-54 + 9800: 5,-35 + - node: + color: '#F9801D99' + id: TrimWhiteInnerSw + decals: + 10810: -18,45 + 10811: -12,45 + 10812: -8,45 + 10813: -5,45 + 10814: -21,45 + - node: + color: '#FFFFFFFF' + id: TrimWhiteInnerSw + decals: + 3466: -50,-5 + 5538: -8,32 + - node: + color: '#334E6D99' + id: TrimWhiteLineE + decals: + 3890: -13,2 + 3891: -13,3 + 7209: 5,-14 + 7210: 5,-13 + 7236: 5,-18 + - node: + color: '#334E6D9B' + id: TrimWhiteLineE + decals: + 3944: -15,7 + 3945: -15,8 + 6797: -1,-8 + 6798: -5,-8 + 7120: -12,-27 + 7121: -12,-26 + 7343: 6,-27 + 7344: 6,-26 + - node: + color: '#3EB3889B' + id: TrimWhiteLineE + decals: + 9416: 3,-45 + 9417: 3,-44 + - node: + color: '#729953FF' + id: TrimWhiteLineE + decals: + 11196: 48,-9 + 11197: 48,-8 + 11198: 48,-5 + 11199: 48,-4 + 11200: 46,-4 + 11201: 46,-5 + 11202: 46,-6 + 11203: 46,-7 + 11204: 46,-8 + 11205: 46,-9 + 11206: 43,-6 + 11224: 43,-8 + 11225: 43,-9 + 11227: 43,-7 + 11235: 43,-5 + 11236: 43,-4 + - node: + color: '#80C71F99' + id: TrimWhiteLineE + decals: + 11123: 1,50 + 11124: -3,50 + - node: + color: '#96DAFFB4' + id: TrimWhiteLineE + decals: + 11752: 39,-41 + 11753: 39,-40 + 11754: 39,-42 + 11755: 39,-44 + 11756: 39,-45 + 11757: 39,-46 + 11758: 39,-48 + 11759: 39,-49 + 11760: 39,-36 + 11761: 39,-35 + 11762: 39,-34 + 11798: 25,-18 + 11799: 25,-19 + 11800: 33,-18 + 11801: 33,-19 + 11807: 28,-18 + - node: + color: '#A4610699' + id: TrimWhiteLineE + decals: + 9884: -41,-27 + 9885: -41,-25 + 9886: -41,-24 + 9887: -41,-23 + 9888: -41,-22 + 9889: -37,-27 + 9890: -33,-27 + 9891: -33,-26 + 9892: -33,-24 + 9893: -33,-23 + 9894: -33,-22 + 9895: -40,-31 + 9896: -40,-30 + 9897: -40,-29 + 10184: -29,-23 + 10185: -29,-26 + 10186: -29,-27 + 10594: -29,-24 + - node: + color: '#A461069B' + id: TrimWhiteLineE + decals: + 9970: -38,-20 + 9971: -34,-20 + 10004: -35,-31 + 10341: -24,-17 + 10342: -24,-19 + 10402: -23,-27 + 10403: -23,-26 + 10404: -23,-24 + 10405: -23,-23 + 10518: -27,-34 + 10519: -27,-33 + 10520: -27,-32 + 10521: -27,-31 + - node: + color: '#DE3A3A99' + id: TrimWhiteLineE + decals: + 5561: -19,30 + 5562: -19,31 + 5619: -16,35 + 5620: -12,35 + 5621: -8,36 + 5701: -3,36 + 5702: -3,37 + 5703: -3,38 + 6438: 12,38 + 6439: 12,39 + 6440: 12,40 + - node: + color: '#DE3A3A9B' + id: TrimWhiteLineE + decals: + 5480: -6,27 + 5481: -2,27 + 5482: 2,27 + 5483: 6,27 + 5662: 0,32 + 5663: -6,34 + 5760: 6,35 + 5761: 6,36 + 5762: 6,37 + 5763: 6,39 + 5764: 6,40 + 5834: 6,31 + 5835: 10,31 + 5836: 14,31 + 5837: 11,33 + 5838: 11,34 + 5839: 16,33 + 5912: 21,33 + 5913: 21,35 + 6556: -6,14 + 6557: -6,15 + 6558: -6,16 + 10464: -23,-31 + 10673: -12,40 + 10674: -12,39 + - node: + color: '#EFB34199' + id: TrimWhiteLineE + decals: + 3400: -42,2 + 3401: -42,3 + 3701: -24,-7 + 3764: -25,-13 + 3765: -25,-11 + 6666: -2,-27 + 6669: -2,-26 + 8604: 3,-55 + 8605: 3,-54 + 8606: 3,-53 + 8610: 3,-56 + 8615: 5,-57 + 8718: 3,-63 + 8719: 3,-62 + 8720: 3,-61 + 8760: -3,-64 + 8761: -3,-63 + 8862: -27,-71 + 8938: 11,-73 + 8939: 11,-72 + - node: + color: '#EFB3419B' + id: TrimWhiteLineE + decals: + 9542: -9,-57 + 9544: -8,-55 + 9797: 2,-36 + - node: + color: '#F9801D99' + id: TrimWhiteLineE + decals: + 10795: -25,44 + 10796: -16,44 + 10797: -12,44 + 10798: -8,44 + 10809: -21,44 + - node: + color: '#FFFFFFFF' + id: TrimWhiteLineE + decals: + 3455: -52,-8 + 3456: -52,-7 + 3457: -52,-6 + 5530: -10,30 + 5531: -10,31 + - node: + color: '#334E6D99' + id: TrimWhiteLineN + decals: + 3895: -12,1 + 7208: 6,-15 + 7230: 6,-19 + 7231: 7,-19 + - node: + color: '#334E6D9B' + id: TrimWhiteLineN + decals: + 3938: -14,6 + 3939: -13,6 + 6785: -4,-9 + 6786: -3,-9 + 6787: -2,-9 + 6788: 0,-9 + 6789: 1,-9 + 6790: 2,-9 + 7125: -11,-28 + 7337: 8,-28 + 7338: 7,-28 + - node: + color: '#3EB3889B' + id: TrimWhiteLineN + decals: + 9409: 4,-46 + 9410: 5,-46 + 9411: 6,-46 + - node: + color: '#729953FF' + id: TrimWhiteLineN + decals: + 11191: 47,-10 + 11192: 49,-10 + 11241: 49,-6 + - node: + color: '#80C71F99' + id: TrimWhiteLineN + decals: + 11118: -2,49 + 11119: -1,49 + 11120: 0,49 + 11121: 2,49 + 11122: 3,49 + - node: + color: '#96DAFFB4' + id: TrimWhiteLineN + decals: + 11774: 40,-37 + 11775: 40,-43 + 11776: 40,-47 + 11777: 40,-50 + 11809: 31,-19 + 11810: 30,-19 + 11811: 29,-19 + 11824: 26,-20 + 11825: 34,-20 + - node: + color: '#A4610699' + id: TrimWhiteLineN + decals: + 9908: -40,-26 + 9909: -40,-28 + 9910: -39,-28 + 9911: -38,-28 + 9912: -36,-28 + 9913: -35,-28 + 9914: -34,-28 + 9915: -32,-28 + 9916: -32,-25 + 9917: -39,-32 + 10176: -27,-28 + 10177: -28,-28 + 10178: -27,-25 + 10179: -28,-25 + - node: + color: '#A461069B' + id: TrimWhiteLineN + decals: + 9972: -37,-21 + 9973: -36,-21 + 9974: -35,-21 + 9975: -33,-21 + 9976: -32,-21 + 9999: -32,-32 + 10000: -33,-32 + 10001: -34,-32 + 10329: -21,-20 + 10330: -22,-20 + 10331: -23,-20 + 10337: -23,-18 + 10338: -21,-18 + 10340: -22,-18 + 10414: -21,-25 + 10415: -22,-25 + 10416: -21,-28 + 10417: -22,-28 + 10517: -26,-35 + - node: + color: '#DE3A3A99' + id: TrimWhiteLineN + decals: + 5566: -18,29 + 5603: -15,34 + 5604: -14,34 + 5605: -13,34 + 5606: -11,34 + 5607: -10,34 + 5608: -9,34 + 5609: -7,35 + 5610: -6,35 + 5708: -2,35 + 6446: 13,37 + - node: + color: '#DE3A3A9B' + id: TrimWhiteLineN + decals: + 5456: 9,26 + 5457: 8,26 + 5458: 7,26 + 5459: 5,26 + 5460: 4,26 + 5461: 3,26 + 5462: 1,26 + 5463: 0,26 + 5464: -1,26 + 5465: -3,26 + 5466: -4,26 + 5467: -5,26 + 5656: 3,31 + 5657: 2,31 + 5669: 1,31 + 5749: 8,34 + 5750: 7,34 + 5751: 7,38 + 5806: 7,30 + 5807: 8,30 + 5808: 9,30 + 5809: 11,30 + 5810: 12,30 + 5811: 13,30 + 5812: 15,30 + 5813: 16,30 + 5814: 18,32 + 5815: 17,32 + 5816: 14,32 + 5817: 13,32 + 5818: 12,32 + 5819: 15,32 + 5898: 24,32 + 5899: 23,32 + 5900: 22,32 + 5901: 22,34 + 5902: 23,34 + 5903: 24,34 + 6564: -5,13 + 10460: -21,-32 + 10461: -22,-32 + 10675: -11,38 + - node: + color: '#EFB34199' + id: TrimWhiteLineN + decals: + 3394: -41,1 + 3395: -40,1 + 3396: -39,1 + 3695: -21,-8 + 3696: -22,-8 + 3697: -23,-8 + 3751: -22,-14 + 3752: -23,-14 + 3753: -24,-14 + 3754: -22,-12 + 3755: -23,-12 + 3756: -24,-12 + 6670: -1,-28 + 8594: 8,-58 + 8595: 7,-58 + 8596: 6,-58 + 8611: 4,-57 + 8759: -2,-65 + 8859: -24,-72 + 8860: -25,-72 + 8861: -26,-72 + 8941: 12,-74 + - node: + color: '#EFB3419B' + id: TrimWhiteLineN + decals: + 9540: -7,-58 + 9541: -8,-58 + 9792: 3,-37 + 9793: 4,-37 + - node: + color: '#F9801D99' + id: TrimWhiteLineN + decals: + 10764: -6,43 + 10765: -7,43 + 10766: -9,43 + 10767: -10,43 + 10768: -11,43 + 10769: -14,43 + 10770: -13,43 + 10771: -15,43 + 10772: -19,43 + 10773: -20,43 + 10774: -22,43 + 10775: -23,43 + 10776: -24,43 + - node: + color: '#FFFFFFFF' + id: TrimWhiteLineN + decals: + 3462: -51,-9 + 5535: -9,29 + - node: + color: '#334E6D99' + id: TrimWhiteLineS + decals: + 3894: -12,4 + 7213: 6,-12 + 7232: 6,-17 + 7233: 7,-17 + 7234: 8,-17 + - node: + color: '#334E6D9B' + id: TrimWhiteLineS + decals: + 3942: -13,9 + 3943: -14,9 + 6791: -2,-7 + 6792: -3,-7 + 6793: -4,-7 + 6794: 0,-7 + 6795: 1,-7 + 6796: 2,-7 + 7124: -11,-25 + 7339: 8,-25 + 7340: 7,-25 + - node: + color: '#3EB3889B' + id: TrimWhiteLineS + decals: + 9412: 6,-43 + 9413: 5,-43 + 9414: 4,-43 + - node: + color: '#729953FF' + id: TrimWhiteLineS + decals: + 11193: 44,-3 + 11194: 47,-3 + 11195: 49,-3 + 11240: 49,-7 + - node: + color: '#80C71F99' + id: TrimWhiteLineS + decals: + 11113: -2,51 + 11114: -1,51 + 11115: 0,51 + 11116: 2,51 + 11117: 3,51 + - node: + color: '#96DAFFB4' + id: TrimWhiteLineS + decals: + 11778: 40,-47 + 11779: 40,-43 + 11780: 40,-39 + 11781: 40,-33 + 11802: 29,-17 + 11803: 30,-17 + 11804: 31,-17 + 11805: 26,-17 + 11806: 34,-17 + - node: + color: '#A4610699' + id: TrimWhiteLineS + decals: + 9898: -39,-28 + 9899: -40,-26 + 9900: -39,-26 + 9901: -38,-26 + 9902: -36,-26 + 9903: -35,-26 + 9904: -34,-26 + 9905: -32,-25 + 9906: -32,-21 + 9907: -40,-21 + 10180: -27,-25 + 10181: -28,-25 + 10182: -27,-22 + 10183: -28,-22 + - node: + color: '#A461069B' + id: TrimWhiteLineS + decals: + 9965: -32,-19 + 9966: -33,-19 + 9967: -35,-19 + 9968: -36,-19 + 9969: -37,-19 + 10002: -33,-30 + 10003: -34,-30 + 10332: -23,-16 + 10333: -22,-16 + 10334: -21,-16 + 10335: -21,-18 + 10336: -23,-18 + 10339: -22,-18 + 10410: -21,-22 + 10411: -22,-22 + 10412: -22,-25 + 10413: -21,-25 + 10526: -26,-30 + - node: + color: '#DE3A3A99' + id: TrimWhiteLineS + decals: + 5565: -18,32 + 5611: -9,36 + 5612: -10,36 + 5613: -11,36 + 5614: -7,37 + 5615: -6,37 + 5616: -13,36 + 5617: -14,36 + 5618: -15,36 + 5707: -2,39 + 6444: 13,41 + - node: + color: '#DE3A3A9B' + id: TrimWhiteLineS + decals: + 5468: 9,28 + 5469: 8,28 + 5470: 7,28 + 5471: 5,28 + 5472: 4,28 + 5473: 3,28 + 5474: 1,28 + 5475: 0,28 + 5476: -1,28 + 5477: -3,28 + 5478: -4,28 + 5479: -5,28 + 5658: 1,33 + 5659: 2,33 + 5660: 3,33 + 5752: 8,38 + 5753: 7,38 + 5754: 7,41 + 5820: 12,35 + 5821: 13,35 + 5822: 14,35 + 5823: 15,35 + 5824: 17,34 + 5825: 18,34 + 5826: 16,32 + 5827: 15,32 + 5828: 13,32 + 5829: 12,32 + 5830: 11,32 + 5831: 9,32 + 5832: 8,32 + 5833: 7,32 + 5904: 22,34 + 5905: 23,34 + 5906: 24,34 + 5907: 24,36 + 5908: 23,36 + 5909: 22,36 + 6559: -5,17 + 10462: -22,-30 + 10463: -21,-30 + 10671: -10,41 + 10672: -11,41 + - node: + color: '#EFB34199' + id: TrimWhiteLineS + decals: + 3397: -39,4 + 3398: -40,4 + 3399: -41,4 + 3698: -21,-6 + 3699: -22,-6 + 3700: -23,-6 + 3757: -22,-12 + 3758: -23,-12 + 3759: -24,-12 + 3760: -24,-10 + 3761: -23,-10 + 3874: -22,-10 + 6671: -1,-25 + 8597: 8,-56 + 8598: 7,-56 + 8599: 6,-56 + 8612: 4,-52 + 8721: 4,-60 + 8764: -2,-62 + 8855: -26,-70 + 8856: -25,-70 + 8857: -24,-70 + 8940: 12,-71 + - node: + color: '#EFB3419B' + id: TrimWhiteLineS + decals: + 9545: -7,-54 + 9794: 4,-35 + 9795: 3,-35 + - node: + color: '#F9801D99' + id: TrimWhiteLineS + decals: + 10777: -24,45 + 10778: -23,45 + 10779: -22,45 + 10780: -20,45 + 10781: -19,45 + 10782: -15,45 + 10783: -14,45 + 10784: -13,45 + 10785: -11,45 + 10786: -10,45 + 10787: -9,45 + 10788: -7,45 + 10789: -6,45 + - node: + color: '#FFFFFFFF' + id: TrimWhiteLineS + decals: + 3461: -51,-5 + 5534: -9,32 + - node: + color: '#334E6D99' + id: TrimWhiteLineW + decals: + 3892: -11,2 + 3893: -11,3 + 7211: 7,-14 + 7212: 7,-13 + 7235: 9,-18 + - node: + color: '#334E6D9B' + id: TrimWhiteLineW + decals: + 3940: -12,7 + 3941: -12,8 + 6799: -1,-8 + 6800: 3,-8 + 7122: -10,-27 + 7123: -10,-26 + 7341: 9,-27 + 7342: 9,-26 + - node: + color: '#3EB3889B' + id: TrimWhiteLineW + decals: + 9415: 7,-45 + - node: + color: '#729953FF' + id: TrimWhiteLineW + decals: + 11207: 45,-9 + 11208: 45,-8 + 11209: 45,-7 + 11210: 45,-6 + 11211: 45,-5 + 11212: 45,-4 + 11213: 48,-4 + 11214: 48,-5 + 11215: 48,-8 + 11216: 48,-9 + 11264: 48,-7 + 11265: 48,-6 + - node: + color: '#80C71F99' + id: TrimWhiteLineW + decals: + 11125: 1,50 + 11126: 4,50 + - node: + color: '#96DAFFB4' + id: TrimWhiteLineW + decals: + 11763: 41,-34 + 11764: 41,-35 + 11765: 41,-36 + 11766: 41,-40 + 11767: 41,-41 + 11768: 41,-42 + 11769: 41,-44 + 11770: 41,-45 + 11771: 41,-46 + 11772: 41,-48 + 11773: 41,-49 + 11808: 32,-18 + 11812: 27,-18 + 11813: 27,-19 + 11814: 35,-18 + 11815: 35,-19 + - node: + color: '#A4610699' + id: TrimWhiteLineW + decals: + 9870: -31,-24 + 9871: -31,-23 + 9872: -31,-22 + 9873: -31,-26 + 9874: -31,-27 + 9875: -33,-27 + 9876: -37,-27 + 9877: -39,-25 + 9878: -39,-24 + 9879: -39,-23 + 9880: -39,-22 + 9881: -38,-29 + 9882: -38,-30 + 9883: -38,-31 + 10187: -26,-27 + 10188: -26,-26 + 10189: -26,-24 + 10190: -26,-23 + - node: + color: '#A461069B' + id: TrimWhiteLineW + decals: + 9977: -34,-20 + 9978: -31,-20 + 10005: -31,-31 + 10343: -20,-19 + 10344: -20,-17 + 10406: -20,-27 + 10407: -20,-26 + 10408: -20,-24 + 10409: -20,-23 + 10522: -25,-34 + 10523: -25,-33 + 10524: -25,-32 + 10525: -25,-31 + - node: + color: '#DE3A3A99' + id: TrimWhiteLineW + decals: + 5563: -17,30 + 5564: -17,31 + 5622: -8,35 + 5623: -5,36 + 5627: -12,35 + 5704: -1,36 + 5705: -1,37 + 5706: -1,38 + 6441: 14,38 + 6442: 14,39 + 6443: 14,40 + - node: + color: '#DE3A3A9B' + id: TrimWhiteLineW + decals: + 5484: 2,27 + 5485: 6,27 + 5486: 10,27 + 5487: -2,27 + 5661: 4,32 + 5755: 8,39 + 5756: 8,40 + 5757: 9,35 + 5758: 9,36 + 5759: 9,37 + 5840: 16,33 + 5841: 16,34 + 5842: 19,33 + 5843: 17,31 + 5844: 14,31 + 5845: 10,31 + 5910: 25,35 + 5911: 25,33 + 6561: -4,16 + 6562: -4,15 + 6563: -4,14 + 10465: -20,-31 + 10676: -9,40 + - node: + color: '#EFB34199' + id: TrimWhiteLineW + decals: + 3402: -38,2 + 3403: -38,3 + 3703: -20,-7 + 3762: -21,-11 + 3763: -21,-13 + 6667: 0,-26 + 6668: 0,-27 + 8600: 9,-57 + 8607: 5,-53 + 8608: 5,-54 + 8609: 5,-55 + 8617: 5,-56 + 8715: 5,-63 + 8716: 5,-62 + 8717: 5,-61 + 8762: -1,-64 + 8763: -1,-63 + 8858: -23,-71 + 8936: 13,-73 + 8937: 13,-72 + - node: + color: '#EFB3419B' + id: TrimWhiteLineW + decals: + 9537: -6,-55 + 9538: -6,-56 + 9539: -6,-57 + 9796: 5,-36 + - node: + color: '#F9801D99' + id: TrimWhiteLineW + decals: + 10790: -8,44 + 10791: -5,44 + 10792: -12,44 + 10793: -18,44 + 10794: -21,44 + - node: + color: '#FFFFFFFF' + id: TrimWhiteLineW + decals: + 3458: -50,-8 + 3459: -50,-7 + 3460: -50,-6 + 5532: -8,30 + 5533: -8,31 + - node: + color: '#FED83DFF' + id: WarnBox + decals: + 0: 47,21 + 1: 87,-39 + 2: 87,-58 + 3: 81,-67 + 4: 62,-72 + 5: 49,-67 + 6: 26,-81 + 7: -43,-49 + 8: -43,-50 + 9: -43,-51 + 10: -62,-22 + 11: -62,15 + 12: -50,24 + - node: + angle: 4.71238898038469 rad + color: '#D69949B2' + id: WarnBoxGreyscale + decals: + 12626: 84,-6 + 12627: 84,-4 + 12628: 84,-12 + 12629: 84,-14 + - node: + color: '#D381C9CC' + id: WarnCornerGreyscaleNE + decals: + 1322: 67,-23 + 1423: 77,-40 + 1500: 55,-52 + 1526: 51,-42 + - node: + color: '#52B4E9CC' + id: WarnCornerGreyscaleNW + decals: + 251: 25,-28 + - node: + color: '#52B4E9CD' + id: WarnCornerGreyscaleNW + decals: + 219: 29,-33 + - node: + color: '#D381C9CC' + id: WarnCornerGreyscaleNW + decals: + 1413: 76,-44 + 1498: 59,-48 + 1499: 59,-52 + - node: + color: '#52B4E9CA' + id: WarnCornerGreyscaleSE + decals: + 264: 27,-30 + - node: + color: '#52B4E9CD' + id: WarnCornerGreyscaleSE + decals: + 213: 33,-35 + - node: + color: '#80C71FB2' + id: WarnCornerGreyscaleSE + decals: + 863: 40,-60 + - node: + color: '#D381C9CC' + id: WarnCornerGreyscaleSE + decals: + 1421: 77,-42 + - node: + color: '#52B4E9CD' + id: WarnCornerGreyscaleSW + decals: + 218: 29,-35 + - node: + color: '#D381C9CC' + id: WarnCornerGreyscaleSW + decals: + 1497: 59,-50 + 1524: 52,-41 + - node: + color: '#334E6DB2' + id: WarnCornerNE + decals: + 3654: -31,6 + 3809: -21,7 + 6950: 0,-12 + - node: + color: '#EFB341B2' + id: WarnCornerNE + decals: + 6697: 0,-20 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 1601: 117,-37 + 1603: 118,-38 + - node: + color: '#334E6DB2' + id: WarnCornerNW + decals: + 3653: -33,6 + 3808: -23,7 + 6949: -2,-12 + - node: + color: '#DE3A3A96' + id: WarnCornerNW + decals: + 13335: -20,25 + - node: + color: '#EFB341B2' + id: WarnCornerNW + decals: + 6696: -2,-20 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 1602: 115,-37 + 1608: 114,-38 + 2043: 91,-30 + - node: + color: '#334E6DB2' + id: WarnCornerSE + decals: + 3651: -31,4 + 3807: -21,5 + 6951: 0,-14 + - node: + color: '#EFB341B2' + id: WarnCornerSE + decals: + 6693: 0,-22 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 1604: 118,-40 + 1605: 117,-41 + - node: + color: '#334E6DB2' + id: WarnCornerSW + decals: + 3650: -33,4 + 3810: -23,5 + 6952: -2,-14 + - node: + color: '#DE3A3A96' + id: WarnCornerSW + decals: + 13336: -20,24 + - node: + color: '#EFB341B2' + id: WarnCornerSW + decals: + 6692: -2,-22 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 1606: 115,-41 + 1607: 114,-40 + - node: + color: '#52B4E9B2' + id: WarnCornerSmallGreyscaleNE + decals: + 116: 35,-50 + 117: 35,-47 + 189: 40,-33 + - node: + color: '#52B4E9CC' + id: WarnCornerSmallGreyscaleNE + decals: + 913: 36,-43 + 1792: 42,-20 + 1807: 38,-18 + - node: + color: '#80C71FB2' + id: WarnCornerSmallGreyscaleNE + decals: + 874: 46,-57 + - node: + color: '#9FED58B2' + id: WarnCornerSmallGreyscaleNE + decals: + 12641: 42,-13 + - node: + color: '#D381C9CC' + id: WarnCornerSmallGreyscaleNE + decals: + 1040: 73,-31 + 1185: 60,-19 + 1186: 62,-19 + 1217: 54,-24 + 1370: 79,-25 + 1419: 74,-45 + 1438: 70,-45 + 1529: 53,-41 + 1551: 58,-41 + 1572: 58,-57 + 1656: 70,-52 + - node: + color: '#FFFFFFCC' + id: WarnCornerSmallGreyscaleNE + decals: + 661: 34,-12 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNE + decals: + 788: 38,-1 + 1889: 36,-6 + - node: + color: '#52B4E9B2' + id: WarnCornerSmallGreyscaleNW + decals: + 188: 42,-33 + - node: + color: '#52B4E9CC' + id: WarnCornerSmallGreyscaleNW + decals: + 256: 25,-29 + 260: 25,-31 + 1722: 44,-29 + 1790: 46,-20 + 1791: 42,-20 + 1804: 38,-19 + 1997: 19,-34 + - node: + color: '#52B4E9CD' + id: WarnCornerSmallGreyscaleNW + decals: + 86: 37,-40 + - node: + color: '#52B4E9D1' + id: WarnCornerSmallGreyscaleNW + decals: + 313: 19,-26 + 316: 25,-24 + - node: + color: '#9FED58B2' + id: WarnCornerSmallGreyscaleNW + decals: + 12639: 45,-13 + - node: + color: '#D381C9CC' + id: WarnCornerSmallGreyscaleNW + decals: + 937: 60,-32 + 1045: 70,-29 + 1187: 62,-19 + 1194: 58,-23 + 1212: 52,-25 + 1369: 82,-25 + 1418: 76,-45 + 1434: 78,-37 + 1577: 73,-45 + 1597: 85,-37 + 1655: 74,-52 + 1669: 73,-56 + 1674: 66,-53 + - node: + color: '#FFFFFFCC' + id: WarnCornerSmallGreyscaleNW + decals: + 660: 39,-12 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNW + decals: + 523: 30,0 + - node: + color: '#52B4E9CC' + id: WarnCornerSmallGreyscaleSE + decals: + 262: 26,-30 + 324: 32,-25 + 914: 36,-41 + 1699: 38,-29 + 1723: 44,-29 + - node: + color: '#52B4E9CD' + id: WarnCornerSmallGreyscaleSE + decals: + 90: 35,-43 + 394: 25,-35 + - node: + color: '#80C71FB2' + id: WarnCornerSmallGreyscaleSE + decals: + 872: 39,-60 + 873: 40,-57 + - node: + color: '#D381C9CC' + id: WarnCornerSmallGreyscaleSE + decals: + 1211: 52,-25 + 1218: 54,-24 + 1291: 61,-31 + 1554: 60,-41 + 1573: 58,-57 + - node: + color: '#D69949B2' + id: WarnCornerSmallGreyscaleSE + decals: + 12637: 48,-15 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSE + decals: + 784: 39,-1 + 1893: 38,-9 + - node: + color: '#334E6DCC' + id: WarnCornerSmallGreyscaleSW + decals: + 819: 7,-21 + 2226: -22,2 + - node: + color: '#52B4E9CC' + id: WarnCornerSmallGreyscaleSW + decals: + 257: 25,-29 + 323: 34,-25 + 344: 29,-21 + 1719: 44,-29 + 1774: 44,-20 + 2005: 44,-47 + - node: + color: '#80C71FB2' + id: WarnCornerSmallGreyscaleSW + decals: + 871: 39,-57 + - node: + color: '#D381C9CC' + id: WarnCornerSmallGreyscaleSW + decals: + 938: 60,-30 + 960: 71,-37 + 997: 63,-36 + 1043: 70,-27 + 1177: 57,-24 + 1195: 58,-20 + 1360: 80,-26 + 1361: 77,-26 + 1527: 53,-41 + 1528: 52,-40 + 1670: 73,-56 + - node: + color: '#D69949B2' + id: WarnCornerSmallGreyscaleSW + decals: + 12636: 50,-15 + - node: + color: '#EFB341B4' + id: WarnCornerSmallGreyscaleSW + decals: + 9595: -11,-50 + - node: + color: '#334E6DB2' + id: WarnCornerSmallNE + decals: + 7141: -11,-23 + - node: + color: '#3EB388B2' + id: WarnCornerSmallNE + decals: + 9426: 6,-45 + - node: + color: '#A46106B2' + id: WarnCornerSmallNE + decals: + 10174: -26,-25 + - node: + color: '#A46106B4' + id: WarnCornerSmallNE + decals: + 10012: -33,-31 + 10574: -24,-39 + 10575: -25,-39 + - node: + color: '#DE3A3AB2' + id: WarnCornerSmallNE + decals: + 5509: 1,23 + 5725: 2,37 + 6196: 16,34 + - node: + color: '#DE3A3AB4' + id: WarnCornerSmallNE + decals: + 6549: -5,16 + - node: + color: '#EFB341B2' + id: WarnCornerSmallNE + decals: + 8730: 4,-61 + 8881: -27,-70 + - node: + color: '#EFB341B4' + id: WarnCornerSmallNE + decals: + 9593: -17,-58 + - node: + color: '#FA7500CC' + id: WarnCornerSmallNE + decals: + 2081: 20,-18 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 1117: 58,-24 + 1161: 51,-21 + 1611: 117,-38 + - node: + color: '#9FED58B2' + id: WarnCornerSmallNW + decals: + 3259: -47,-7 + - node: + color: '#A46106B2' + id: WarnCornerSmallNW + decals: + 10220: -22,-23 + - node: + color: '#DE3A3A96' + id: WarnCornerSmallNW + decals: + 13338: -19,25 + - node: + color: '#DE3A3AB2' + id: WarnCornerSmallNW + decals: + 5717: 2,36 + 10474: -22,-31 + - node: + color: '#DE3A3AB4' + id: WarnCornerSmallNW + decals: + 6451: 13,40 + 10610: -15,38 + - node: + color: '#EFB341B2' + id: WarnCornerSmallNW + decals: + 8880: -23,-70 + - node: + color: '#EFB341B3' + id: WarnCornerSmallNW + decals: + 510: 40,10 + - node: + color: '#EFB341B4' + id: WarnCornerSmallNW + decals: + 9594: -11,-58 + - node: + color: '#FA7500CC' + id: WarnCornerSmallNW + decals: + 2080: 19,-19 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 1083: 72,-22 + 1160: 55,-21 + 1609: 115,-38 + - node: + color: '#334E6DB2' + id: WarnCornerSmallSE + decals: + 6947: 2,-14 + 7249: 7,-18 + - node: + color: '#3EB388B2' + id: WarnCornerSmallSE + decals: + 9425: 6,-43 + - node: + color: '#A46106B2' + id: WarnCornerSmallSE + decals: + 10175: -26,-23 + - node: + color: '#CDCD73FF' + id: WarnCornerSmallSE + decals: + 11481: 22,-90 + - node: + color: '#DE3A3AB2' + id: WarnCornerSmallSE + decals: + 2893: -61,4 + 2894: -59,4 + 5655: 2,31 + 5726: 2,36 + - node: + color: '#EFB341B2' + id: WarnCornerSmallSE + decals: + 9326: -27,-65 + - node: + color: '#EFB341B4' + id: WarnCornerSmallSE + decals: + 6813: -7,-9 + 7661: 26,9 + 9597: -17,-50 + - node: + color: '#FA7500CC' + id: WarnCornerSmallSE + decals: + 2082: 20,-20 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 1118: 58,-19 + 1158: 51,-17 + 1613: 117,-40 + - node: + color: '#334E6DB2' + id: WarnCornerSmallSW + decals: + 6948: -4,-14 + 7132: -11,-27 + - node: + color: '#9FED58B2' + id: WarnCornerSmallSW + decals: + 3260: -47,-7 + - node: + color: '#CDCD73FF' + id: WarnCornerSmallSW + decals: + 11477: 34,-90 + - node: + color: '#DE3A3A96' + id: WarnCornerSmallSW + decals: + 13337: -19,24 + - node: + color: '#DE3A3AB2' + id: WarnCornerSmallSW + decals: + 2891: -57,4 + 2892: -59,4 + 5653: 4,31 + 5654: 2,31 + - node: + color: '#DE3A3AB4' + id: WarnCornerSmallSW + decals: + 5574: -14,30 + - node: + color: '#EFB341B2' + id: WarnCornerSmallSW + decals: + 8727: 5,-63 + 8876: -23,-65 + - node: + color: '#EFB341B3' + id: WarnCornerSmallSW + decals: + 508: 40,13 + - node: + color: '#EFB341B4' + id: WarnCornerSmallSW + decals: + 9596: -11,-50 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 1082: 72,-19 + 1159: 55,-17 + 1394: 79,-46 + 1614: 115,-40 + - node: + color: '#382F345E' + id: WarnFullGreyscale + decals: + 524: 75,-22 + - node: + color: '#DE3A3A96' + id: WarnFullGreyscale + decals: + 69: -1,41 + 70: 0,41 + 71: 1,41 + 72: 2,41 + 73: 3,41 + - node: + color: '#334E6DB2' + id: WarnLineE + decals: + 3655: -31,5 + 3814: -21,6 + 6945: 2,-15 + 6955: 0,-13 + 7140: -11,-22 + 7248: 7,-19 + - node: + color: '#3EB388B2' + id: WarnLineE + decals: + 9424: 6,-44 + - node: + color: '#A46106B2' + id: WarnLineE + decals: + 10173: -26,-24 + - node: + color: '#A46106B4' + id: WarnLineE + decals: + 10011: -33,-30 + 10571: -25,-37 + 10572: -25,-38 + - node: + color: '#CDCD73FF' + id: WarnLineE + decals: + 11478: 22,-93 + 11479: 22,-92 + 11480: 22,-91 + - node: + color: '#DE3A3AB2' + id: WarnLineE + decals: + 2883: -61,1 + 2887: -61,3 + 2888: -59,3 + 5508: 1,24 + 5652: 2,30 + 5720: 2,35 + 5721: 2,39 + 5722: 2,38 + 6195: 16,35 + - node: + color: '#DE3A3AB4' + id: WarnLineE + decals: + 6548: -5,17 + - node: + color: '#EFB341B2' + id: WarnLineE + decals: + 6698: 0,-21 + 8729: 4,-60 + 8872: -27,-69 + 8873: -27,-68 + 8874: -27,-67 + 8875: -27,-66 + 8947: 13,-74 + 8948: 13,-73 + 8949: 13,-72 + 8950: 13,-71 + 8960: -3,-78 + 8961: -3,-77 + 8965: -3,-75 + - node: + color: '#EFB341B4' + id: WarnLineE + decals: + 6812: -7,-10 + 7660: 26,8 + 9588: -17,-51 + 9589: -17,-52 + 9590: -17,-53 + 9591: -17,-54 + 9592: -17,-57 + 9637: -17,-56 + 9638: -17,-55 + - node: + color: '#FA7500CC' + id: WarnLineE + decals: + 2079: 20,-17 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 1107: 58,-20 + 1108: 58,-21 + 1109: 58,-22 + 1110: 58,-23 + 1155: 51,-18 + 1156: 51,-19 + 1157: 51,-20 + 1535: 63,-42 + 1536: 63,-41 + 1537: 63,-40 + 1612: 118,-39 + - node: + color: '#52B4E9B2' + id: WarnLineGreyscaleE + decals: + 114: 35,-46 + 115: 35,-49 + 187: 40,-32 + - node: + color: '#52B4E9CC' + id: WarnLineGreyscaleE + decals: + 227: 33,-30 + 228: 33,-29 + 229: 27,-29 + 261: 26,-31 + 322: 32,-26 + 325: 22,-26 + 326: 22,-25 + 912: 36,-42 + 1698: 38,-30 + 1720: 44,-30 + 1778: 42,-17 + 1779: 42,-18 + 1780: 42,-19 + 1781: 46,-17 + 1782: 46,-18 + 1783: 46,-19 + 1805: 38,-17 + - node: + color: '#52B4E9CD' + id: WarnLineGreyscaleE + decals: + 89: 35,-44 + 214: 33,-34 + 391: 25,-37 + 392: 25,-36 + - node: + color: '#80C71FB2' + id: WarnLineGreyscaleE + decals: + 853: 36,-53 + 854: 36,-52 + 855: 36,-54 + 856: 40,-52 + 857: 40,-53 + 858: 40,-54 + 859: 46,-56 + 861: 40,-58 + 862: 40,-59 + 864: 39,-61 + - node: + color: '#D381C9CC' + id: WarnLineGreyscaleE + decals: + 934: 61,-32 + 1036: 73,-28 + 1037: 73,-29 + 1038: 73,-30 + 1063: 73,-27 + 1183: 62,-18 + 1213: 54,-25 + 1214: 54,-23 + 1320: 67,-25 + 1321: 67,-24 + 1367: 79,-24 + 1417: 74,-44 + 1422: 77,-41 + 1436: 70,-44 + 1522: 53,-39 + 1523: 53,-40 + 1552: 60,-42 + 1568: 58,-56 + 1569: 58,-58 + 1653: 70,-51 + 1654: 70,-50 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleE + decals: + 781: 39,-3 + 782: 39,-2 + 787: 38,0 + 1888: 36,-5 + 1892: 38,-10 + - node: + color: '#52B4E9B2' + id: WarnLineGreyscaleN + decals: + 110: 37,-50 + 111: 36,-50 + 112: 37,-47 + 113: 36,-47 + 185: 41,-33 + - node: + color: '#52B4E9CC' + id: WarnLineGreyscaleN + decals: + 225: 28,-34 + 252: 26,-28 + 254: 24,-29 + 259: 24,-31 + 369: 34,-17 + 370: 33,-17 + 371: 25,-17 + 372: 26,-17 + 373: 27,-17 + 910: 37,-43 + 1721: 43,-29 + 1739: 35,-17 + 1787: 43,-20 + 1788: 41,-20 + 1789: 45,-20 + 1803: 37,-19 + 1806: 39,-18 + 1970: 47,-40 + 1971: 46,-40 + 1972: 45,-40 + 1996: 18,-34 + - node: + color: '#52B4E9CD' + id: WarnLineGreyscaleN + decals: + 84: 34,-40 + 171: 36,-40 + 172: 39,-39 + 173: 40,-39 + 174: 41,-39 + 180: 35,-28 + 181: 36,-28 + 212: 35,-40 + - node: + color: '#52B4E9D1' + id: WarnLineGreyscaleN + decals: + 311: 18,-26 + 314: 24,-24 + - node: + color: '#80C71FB2' + id: WarnLineGreyscaleN + decals: + 860: 47,-57 + - node: + color: '#9FED58B2' + id: WarnLineGreyscaleN + decals: + 12638: 43,-13 + 12640: 44,-13 + - node: + color: '#A4610696' + id: WarnLineGreyscaleN + decals: + 590: -30,-11 + - node: + color: '#D381C9CC' + id: WarnLineGreyscaleN + decals: + 936: 59,-32 + 986: 63,-35 + 987: 62,-35 + 988: 61,-35 + 989: 60,-35 + 990: 59,-35 + 1039: 74,-31 + 1042: 69,-29 + 1143: 54,-17 + 1144: 53,-17 + 1145: 52,-17 + 1172: 59,-18 + 1173: 58,-18 + 1174: 57,-18 + 1181: 61,-19 + 1182: 63,-19 + 1193: 57,-23 + 1210: 51,-25 + 1215: 55,-24 + 1226: 67,-18 + 1227: 66,-18 + 1228: 65,-18 + 1280: 65,-39 + 1281: 66,-39 + 1282: 67,-39 + 1323: 66,-23 + 1324: 65,-23 + 1365: 81,-25 + 1366: 80,-25 + 1414: 77,-44 + 1415: 78,-44 + 1416: 75,-45 + 1424: 76,-40 + 1428: 76,-37 + 1429: 77,-37 + 1437: 71,-45 + 1481: 67,-44 + 1482: 66,-44 + 1483: 65,-44 + 1548: 61,-41 + 1549: 60,-41 + 1550: 59,-41 + 1571: 59,-57 + 1575: 72,-45 + 1592: 86,-36 + 1596: 84,-37 + 1648: 71,-52 + 1649: 72,-52 + 1650: 73,-52 + 1667: 72,-56 + 1673: 65,-53 + - node: + color: '#FFFFFFCC' + id: WarnLineGreyscaleN + decals: + 656: 35,-12 + 657: 36,-12 + 658: 37,-12 + 659: 38,-12 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 785: 40,-1 + 786: 39,-1 + 789: 35,-1 + 1884: 40,-6 + 1885: 39,-6 + 1886: 38,-6 + 1887: 37,-6 + - node: + color: '#334E6DCC' + id: WarnLineGreyscaleS + decals: + 818: 6,-21 + 2223: -24,2 + 2224: -23,2 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleS + decals: + 708: 25,-15 + 709: 26,-15 + 710: 27,-15 + 711: 33,-15 + 712: 34,-15 + 713: 35,-15 + 714: 44,-15 + - node: + color: '#52B4E9CC' + id: WarnLineGreyscaleS + decals: + 255: 24,-29 + 321: 33,-25 + 327: 25,-26 + 328: 26,-26 + 330: 36,-26 + 331: 35,-26 + 343: 28,-21 + 911: 37,-41 + 1695: 41,-29 + 1696: 40,-29 + 1697: 39,-29 + 1715: 46,-29 + 1716: 45,-29 + 1717: 43,-29 + 1770: 41,-20 + 1771: 42,-20 + 1772: 43,-20 + 1991: 19,-36 + 1992: 18,-36 + 1993: 22,-36 + 1994: 21,-36 + 2003: 43,-47 + - node: + color: '#52B4E9CD' + id: WarnLineGreyscaleS + decals: + 87: 37,-43 + 88: 36,-43 + 175: 41,-37 + 176: 40,-37 + 177: 39,-37 + 215: 32,-35 + 216: 31,-35 + 217: 30,-35 + 393: 26,-35 + 419: 44,-36 + 420: 45,-36 + 421: 46,-36 + 422: 47,-36 + - node: + color: '#80C71FB2' + id: WarnLineGreyscaleS + decals: + 866: 41,-57 + 867: 38,-57 + - node: + color: '#A4610696' + id: WarnLineGreyscaleS + decals: + 589: -32,-17 + - node: + color: '#D381C996' + id: WarnLineGreyscaleS + decals: + 51: 54,-15 + 52: 53,-15 + 53: 52,-15 + - node: + color: '#D381C9CC' + id: WarnLineGreyscaleS + decals: + 931: 63,-31 + 932: 62,-31 + 933: 59,-30 + 957: 69,-37 + 958: 70,-37 + 961: 74,-37 + 962: 73,-37 + 991: 59,-36 + 992: 60,-36 + 993: 61,-36 + 994: 62,-36 + 1041: 69,-27 + 1175: 56,-24 + 1192: 57,-20 + 1216: 55,-24 + 1229: 66,-20 + 1230: 65,-20 + 1231: 67,-20 + 1232: 65,-16 + 1233: 67,-16 + 1283: 65,-42 + 1284: 66,-42 + 1285: 67,-42 + 1356: 76,-26 + 1357: 79,-26 + 1420: 76,-42 + 1425: 76,-38 + 1426: 77,-38 + 1427: 78,-38 + 1478: 65,-48 + 1479: 66,-48 + 1480: 67,-48 + 1525: 51,-40 + 1553: 61,-41 + 1570: 59,-57 + 1645: 72,-54 + 1646: 73,-54 + 1647: 74,-54 + 1668: 72,-56 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleS + decals: + 783: 40,-1 + 792: 35,-2 + 1890: 40,-9 + 1891: 39,-9 + - node: + color: '#334E6DCC' + id: WarnLineGreyscaleW + decals: + 816: 7,-23 + 817: 7,-22 + 2225: -22,1 + - node: + color: '#52B4E9B2' + id: WarnLineGreyscaleW + decals: + 186: 42,-32 + - node: + color: '#52B4E9CC' + id: WarnLineGreyscaleW + decals: + 226: 29,-34 + 230: 29,-30 + 231: 29,-29 + 258: 25,-30 + 296: 24,-26 + 297: 24,-25 + 320: 34,-26 + 342: 29,-22 + 1713: 44,-27 + 1714: 44,-28 + 1718: 44,-30 + 1773: 44,-21 + 1775: 42,-17 + 1776: 42,-18 + 1777: 42,-19 + 1784: 46,-17 + 1785: 46,-18 + 1786: 46,-19 + 1801: 38,-17 + 1802: 38,-18 + 1995: 19,-33 + 2004: 44,-48 + 2023: 44,-44 + 2024: 44,-43 + - node: + color: '#52B4E9CD' + id: WarnLineGreyscaleW + decals: + 85: 37,-39 + 178: 35,-30 + 179: 35,-29 + - node: + color: '#52B4E9D1' + id: WarnLineGreyscaleW + decals: + 312: 19,-25 + 315: 25,-23 + - node: + color: '#80C71FB2' + id: WarnLineGreyscaleW + decals: + 865: 39,-61 + 868: 39,-58 + 869: 39,-59 + 870: 39,-60 + - node: + color: '#D381C9CC' + id: WarnLineGreyscaleW + decals: + 935: 60,-31 + 959: 71,-38 + 995: 63,-38 + 996: 63,-37 + 1044: 70,-28 + 1176: 57,-25 + 1184: 62,-18 + 1190: 58,-22 + 1191: 58,-21 + 1208: 52,-23 + 1209: 52,-24 + 1286: 53,-27 + 1287: 53,-28 + 1327: 69,-25 + 1328: 69,-24 + 1329: 69,-23 + 1358: 77,-27 + 1359: 80,-27 + 1368: 82,-24 + 1430: 78,-36 + 1431: 78,-35 + 1432: 78,-34 + 1433: 78,-33 + 1501: 59,-49 + 1502: 59,-53 + 1576: 73,-44 + 1595: 85,-36 + 1651: 74,-51 + 1652: 74,-50 + 1664: 73,-58 + 1665: 73,-57 + 1666: 73,-55 + 1671: 66,-51 + 1672: 66,-52 + - node: + color: '#D69949B2' + id: WarnLineGreyscaleW + decals: + 12634: 53.748283,-9.505065 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleW + decals: + 762: 80,-3 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleW + decals: + 790: 36,0 + 791: 36,-3 + - node: + color: '#334E6DB2' + id: WarnLineN + decals: + 3652: -32,4 + 3811: -22,5 + 6944: -5,-14 + 6946: 3,-14 + 6953: -1,-14 + 7131: -12,-27 + 7246: 9,-18 + 7247: 8,-18 + - node: + color: '#3EB388B2' + id: WarnLineN + decals: + 9423: 7,-43 + - node: + color: '#9FED58B2' + id: WarnLineN + decals: + 3257: -48,-7 + - node: + color: '#A46106B2' + id: WarnLineN + decals: + 10172: -25,-23 + - node: + color: '#CDCD73FF' + id: WarnLineN + decals: + 11468: 23,-90 + 11469: 24,-90 + 11470: 25,-90 + 11471: 31,-90 + 11472: 32,-90 + 11473: 33,-90 + - node: + color: '#D69949B2' + id: WarnLineN + decals: + 12635: 49,-15 + - node: + color: '#DE3A3AB2' + id: WarnLineN + decals: + 2884: -60,4 + 2890: -58,4 + 5649: 3,31 + 5670: 1,31 + 5671: 0,31 + 5718: 4,36 + 5719: 3,36 + - node: + color: '#DE3A3AB4' + id: WarnLineN + decals: + 5573: -15,30 + - node: + color: '#EFB34196' + id: WarnLineN + decals: + 13357: -78,8 + - node: + color: '#EFB341B2' + id: WarnLineN + decals: + 6694: -1,-22 + 8724: 3,-63 + 8725: 4,-63 + 8794: -12,-64 + 8795: -13,-64 + 8796: -14,-64 + 8867: -24,-65 + 9323: -25,-65 + 9324: -26,-65 + - node: + color: '#EFB341B3' + id: WarnLineN + decals: + 507: 39,13 + - node: + color: '#EFB341B4' + id: WarnLineN + decals: + 6811: -6,-9 + 7659: 27,9 + 9583: -12,-50 + 9584: -13,-50 + 9585: -14,-50 + 9586: -15,-50 + 9587: -16,-50 + - node: + color: '#EFB341CC' + id: WarnLineN + decals: + 2380: -1,-74 + - node: + color: '#EFB341CD' + id: WarnLineN + decals: + 2856: -76,-16 + 2857: -69,-16 + 2858: -71,8 + - node: + color: '#FA7500CC' + id: WarnLineN + decals: + 2072: 22,-20 + 2073: 21,-20 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 1079: 71,-19 + 1080: 70,-19 + 1081: 69,-19 + 1102: 63,-19 + 1103: 62,-19 + 1104: 61,-19 + 1105: 60,-19 + 1106: 59,-19 + 1152: 54,-17 + 1153: 53,-17 + 1154: 52,-17 + 1339: 76,-25 + 1340: 78,-25 + 1341: 77,-25 + 1342: 79,-25 + 1343: 80,-25 + 1344: 81,-25 + 1345: 82,-25 + 1384: 77,-46 + 1385: 78,-46 + 1386: 77,-46 + 1387: 76,-46 + 1388: 75,-46 + 1389: 74,-46 + 1390: 73,-46 + 1391: 72,-46 + 1392: 71,-46 + 1393: 70,-46 + 1510: 57,-37 + 1511: 56,-37 + 1512: 55,-37 + 1616: 116,-41 + - node: + color: '#334E6DB2' + id: WarnLineS + decals: + 3656: -33,5 + 3812: -23,6 + 6943: -4,-15 + 6956: -2,-13 + 7130: -11,-28 + - node: + color: '#9FED58B2' + id: WarnLineS + decals: + 3253: -47,-6 + 3254: -47,-5 + 3255: -47,-8 + 3256: -47,-9 + - node: + color: '#A46106B2' + id: WarnLineS + decals: + 10219: -22,-22 + - node: + color: '#CDCD73FF' + id: WarnLineS + decals: + 11474: 34,-93 + 11475: 34,-92 + 11476: 34,-91 + - node: + color: '#DE3A3AB2' + id: WarnLineS + decals: + 2882: -56,1 + 2885: -57,3 + 2886: -59,3 + 5650: 2,30 + 5651: 4,30 + 5713: 2,37 + 5714: 2,38 + 5715: 2,39 + 10472: -22,-30 + - node: + color: '#DE3A3AB4' + id: WarnLineS + decals: + 5572: -14,29 + 5944: -19,22 + 5945: -19,23 + 5946: -19,26 + 5947: -19,27 + 6450: 13,41 + 10608: -15,39 + - node: + color: '#DE3A3ACD' + id: WarnLineS + decals: + 5541: -11,32 + - node: + color: '#EFB341B2' + id: WarnLineS + decals: + 6695: -2,-21 + 8621: 3,-54 + 8622: 3,-53 + 8623: 3,-52 + 8726: 5,-64 + 8868: -23,-69 + 8869: -23,-68 + 8870: -23,-67 + 8871: -23,-66 + 8962: 1,-78 + 8963: 1,-77 + 8964: 1,-75 + - node: + color: '#EFB341B3' + id: WarnLineS + decals: + 505: 40,11 + 506: 40,12 + - node: + color: '#EFB341B4' + id: WarnLineS + decals: + 9579: -11,-57 + 9580: -11,-56 + 9581: -11,-52 + 9582: -11,-51 + - node: + color: '#EFB341CD' + id: WarnLineS + decals: + 2855: -77,-15 + 2859: -79,9 + 2862: -79,-5 + - node: + color: '#FA7500CC' + id: WarnLineS + decals: + 2074: 19,-17 + 2075: 19,-18 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 1077: 72,-21 + 1078: 72,-20 + 1149: 55,-20 + 1150: 55,-19 + 1151: 55,-18 + 1382: 79,-48 + 1383: 79,-47 + 1532: 63,-42 + 1533: 63,-41 + 1534: 63,-40 + 1615: 114,-39 + 2045: 91,-31 + - node: + color: '#334E6DB2' + id: WarnLineW + decals: + 3657: -32,6 + 3813: -22,7 + 6941: -4,-12 + 6942: 2,-12 + 6954: -1,-12 + 7139: -10,-23 + - node: + color: '#3EB388B2' + id: WarnLineW + decals: + 9422: 7,-45 + - node: + color: '#9FED58B2' + id: WarnLineW + decals: + 3258: -48,-7 + - node: + color: '#A4610699' + id: WarnLineW + decals: + 10217: -23,-23 + - node: + color: '#A46106B2' + id: WarnLineW + decals: + 10171: -25,-25 + 10218: -23,-23 + - node: + color: '#A46106B4' + id: WarnLineW + decals: + 10009: -31,-31 + 10010: -32,-31 + 10573: -24,-39 + - node: + color: '#DE3A3AB2' + id: WarnLineW + decals: + 5507: 2,23 + 5716: 1,36 + 5723: 4,37 + 5724: 3,37 + 6192: 19,34 + 6193: 18,34 + 6194: 17,34 + 10473: -23,-31 + - node: + color: '#DE3A3AB4' + id: WarnLineW + decals: + 6449: 12,40 + 6547: -4,16 + 10609: -16,38 + - node: + color: '#DE3A3ACC' + id: WarnLineW + decals: + 533: -3,32 + 534: -2,32 + 1927: 23,28 + 1928: 24,28 + 1929: 25,28 + 1930: 26,28 + 1931: 27,28 + - node: + color: '#EFB341B2' + id: WarnLineW + decals: + 6699: -1,-20 + 8728: 5,-61 + 8791: -14,-63 + 8792: -13,-63 + 8793: -12,-63 + 8827: -15,-74 + 8828: -13,-74 + 8829: -14,-74 + 8877: -26,-70 + 8878: -25,-70 + 8879: -24,-70 + - node: + color: '#EFB341B3' + id: WarnLineW + decals: + 509: 39,10 + - node: + color: '#EFB341B4' + id: WarnLineW + decals: + 3850: -67,18 + 9574: -16,-58 + 9575: -15,-58 + 9576: -14,-58 + 9577: -13,-58 + 9578: -12,-58 + - node: + color: '#EFB341CD' + id: WarnLineW + decals: + 2860: -78,-4 + 2861: -71,-4 + - node: + color: '#FA7500CC' + id: WarnLineW + decals: + 2076: 18,-19 + 2077: 22,-18 + 2078: 21,-18 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 1074: 69,-22 + 1075: 70,-22 + 1076: 71,-22 + 1112: 59,-24 + 1113: 60,-24 + 1114: 61,-24 + 1115: 62,-24 + 1116: 63,-24 + 1146: 52,-21 + 1147: 53,-21 + 1148: 54,-21 + 1507: 55,-37 + 1508: 56,-37 + 1509: 57,-37 + 1610: 116,-37 + 2044: 92,-30 + - node: + color: '#FFFFFFFF' + id: WindowFrameEndN + decals: + 11441: -43,-11 + 11442: -39,-6 + - node: + color: '#FFFFFFFF' + id: WindowFrameEndS + decals: + 11439: -43,-12 + 11440: -39,-8 + - node: + color: '#FFFFFFFF' + id: WindowFrameLineE + decals: + 11443: -39,-7 + - node: + color: '#FFFFFFFF' + id: WindowFrameLineW + decals: + 11444: -39,-7 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 434: 6,12 + 435: 6,15 + 436: 6,9 + 437: 6,6 + 458: 13,15 + 459: 17,15 + 511: 33,1 + 730: 78,-2 + 811: 8,-21 + 915: 8,-51 + 948: 70,-34 + 952: 74,-36 + 1899: -55,-8 + 2007: 45,-43 + 2020: 47,-47 + 6553: -8,17 + 7043: -8,-14 + 10708: -18,41 + 10709: -18,48 + 10710: -21,48 + 10711: -21,41 + 10859: -14,53 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 442: 4,15 + 443: 4,12 + 444: 4,9 + 445: 4,6 + 462: 11,15 + 463: 15,15 + 512: 32,1 + 731: 76,-2 + 813: 6,-21 + 916: 7,-51 + 949: 69,-34 + 951: 73,-36 + 1906: -62,-8 + 2015: 45,-47 + 6554: -9,17 + 7044: -13,-14 + 7136: -12,-22 + 10704: -22,48 + 10705: -19,48 + 10706: -22,41 + 10707: -19,41 + 10858: -16,53 + 11436: 29,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 454: 6,11 + 455: 6,8 + 456: 6,5 + 457: 6,14 + 468: 13,14 + 469: 17,14 + 515: 33,-1 + 518: 31,-2 + 531: -2,30 + 728: 78,-4 + 809: 8,-23 + 918: 8,-52 + 945: 70,-36 + 1917: -55,-12 + 2006: 45,-44 + 2017: 47,-48 + 6551: -8,15 + 7051: -8,-16 + 7134: -10,-23 + 10712: -18,40 + 10713: -18,47 + 10714: -21,47 + 10715: -21,40 + 10856: -14,50 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 446: 4,5 + 447: 4,8 + 448: 4,14 + 453: 4,11 + 464: 11,14 + 465: 15,14 + 514: 32,-1 + 520: 29,-2 + 532: -3,30 + 733: 76,-4 + 917: 7,-52 + 946: 69,-36 + 1910: -62,-12 + 2019: 45,-48 + 6550: -9,15 + 7047: -13,-16 + 7135: -12,-23 + 10716: -19,40 + 10717: -22,40 + 10718: -22,47 + 10719: -19,47 + 10857: -16,50 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndE + decals: + 1948: 10,-37 + 1951: 11,-34 + 1956: 30,7 + 8280: -11,13 + 10026: -31,-34 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndN + decals: + 2361: 1,-62 + 5542: -12,30 + 8284: -15,14 + 8971: 16,39 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndS + decals: + 2360: 1,-64 + 5543: -12,29 + 8285: -15,13 + 8970: 16,37 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndW + decals: + 1949: 9,-37 + 1950: 9,-34 + 1957: 29,7 + 8281: -13,13 + 10027: -33,-34 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 496: 19,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 495: 24,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 517: 31,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 494: 24,0 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 488: 19,-2 + 489: 19,-1 + 516: 33,0 + 529: -2,32 + 530: -2,31 + 729: 78,-3 + 810: 8,-22 + 947: 70,-35 + 953: 74,-37 + 1918: -55,-11 + 1919: -55,-10 + 1920: -55,-9 + 2362: 1,-63 + 6552: -8,16 + 7052: -8,-15 + 8972: 16,38 + 10862: -14,51 + 10863: -14,52 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 438: 5,6 + 439: 5,9 + 440: 5,12 + 441: 5,15 + 460: 12,15 + 461: 16,15 + 484: 23,-3 + 485: 22,-3 + 486: 21,-3 + 487: 20,-3 + 522: 31,1 + 735: 77,-2 + 812: 7,-21 + 1900: -56,-8 + 1901: -57,-8 + 1902: -58,-8 + 1903: -59,-8 + 1904: -60,-8 + 1905: -61,-8 + 1952: 10,-34 + 2009: 44,-43 + 2016: 46,-47 + 2353: -11,-14 + 2354: -10,-14 + 2355: -9,-14 + 7045: -12,-14 + 7137: -11,-22 + 8283: -12,13 + 10029: -32,-34 + 10865: -15,53 + 11437: 30,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 449: 5,5 + 450: 5,8 + 451: 5,11 + 452: 5,14 + 466: 12,14 + 467: 16,14 + 490: 20,0 + 491: 21,0 + 492: 22,0 + 493: 23,0 + 519: 30,-2 + 734: 77,-4 + 808: 7,-23 + 1911: -61,-12 + 1912: -60,-12 + 1913: -59,-12 + 1914: -58,-12 + 1915: -57,-12 + 1916: -56,-12 + 1953: 10,-34 + 2008: 44,-44 + 2018: 46,-48 + 2352: -10,-16 + 7048: -12,-16 + 7049: -11,-16 + 7050: -9,-16 + 7138: -11,-23 + 8282: -12,13 + 10028: -32,-34 + 10864: -15,50 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 482: 24,-1 + 483: 24,-2 + 513: 32,0 + 521: 29,-1 + 527: -3,32 + 528: -3,31 + 732: 76,-3 + 950: 69,-35 + 954: 73,-37 + 1907: -62,-9 + 1908: -62,-10 + 1909: -62,-11 + 2363: 1,-63 + 6555: -9,16 + 7046: -13,-15 + 8973: 16,38 + 10860: -16,51 + 10861: -16,52 + 11438: 29,0 + - type: GridAtmosphere + version: 2 + data: + tiles: + -4,-4: + 0: 56797 + -4,-5: + 0: 56735 + -5,-4: + 0: 61133 + -4,-3: + 0: 65309 + -5,-3: + 1: 256 + 0: 52430 + -4,-2: + 0: 4383 + -5,-2: + 0: 52701 + -4,-1: + 0: 65009 + -5,-1: + 0: 65020 + -3,-4: + 0: 65535 + -3,-3: + 0: 64015 + -3,-1: + 0: 65520 + -3,-5: + 0: 65419 + -3,-2: + 0: 138 + -3,0: + 0: 65521 + -2,-4: + 0: 48051 + -2,-3: + 0: 63259 + -2,-2: + 0: 52479 + -2,-1: + 0: 65520 + -2,-5: + 0: 62259 + 2: 136 + -1,-4: + 0: 65520 + -1,-3: + 0: 61695 + -1,-2: + 0: 65535 + -1,-1: + 0: 65520 + -1,-5: + 0: 63726 + -1,0: + 0: 54783 + 0,-4: + 0: 65520 + 0,-3: + 0: 61567 + 0,-2: + 0: 65535 + 0,-1: + 0: 65520 + 0,0: + 0: 54647 + 0,1: + 0: 21845 + -1,1: + 0: 56797 + 0,2: + 0: 30037 + -1,2: + 0: 64733 + 0,3: + 0: 21845 + -1,3: + 0: 56796 + 0,4: + 0: 61909 + 1,0: + 0: 62392 + 1,1: + 0: 2032 + 1,2: + 0: 61567 + 1,3: + 0: 32519 + 1,-1: + 0: 65520 + 2,0: + 0: 47539 + 2,1: + 0: 15291 + 2,2: + 0: 65535 + 2,3: + 0: 47935 + 2,-1: + 0: 65520 + 2,4: + 0: 28914 + 3,0: + 0: 22000 + 3,1: + 0: 6129 + 3,2: + 0: 65527 + 3,3: + 0: 47903 + 3,-1: + 0: 65020 + 4,0: + 0: 21876 + 4,1: + 0: 30576 + 4,2: + 0: 64432 + 4,3: + 0: 48027 + 0,-5: + 0: 61491 + 2: 136 + 1,-3: + 0: 65358 + 1,-2: + 0: 4607 + 1,-5: + 0: 65256 + 1,-4: + 0: 61156 + 2,-4: + 0: 65523 + 2,-3: + 0: 64015 + 2,-5: + 0: 48048 + 2,-2: + 0: 10 + 3,-4: + 0: 56797 + 3,-3: + 0: 65357 + 3,-2: + 0: 52431 + 3,-5: + 0: 56797 + 4,-4: + 0: 65009 + 4,-3: + 0: 56785 + 4,-2: + 0: 53725 + 4,-1: + 0: 56797 + -5,0: + 0: 56792 + -4,0: + 0: 61152 + -4,1: + 0: 60942 + -5,1: + 0: 56797 + -4,2: + 0: 61679 + -5,2: + 0: 36749 + -5,3: + 0: 35771 + -4,3: + 0: 41632 + -4,4: + 0: 58606 + -3,1: + 0: 65311 + -3,2: + 0: 61695 + -3,3: + 0: 45488 + -3,4: + 0: 61627 + -2,2: + 0: 63727 + -2,3: + 0: 56560 + -2,0: + 0: 26208 + -2,1: + 0: 60974 + -2,4: + 0: 63711 + -1,4: + 0: 64733 + 4,-5: + 0: 56797 + 5,-4: + 0: 65520 + 5,-3: + 0: 65524 + 5,-2: + 0: 64767 + 5,-1: + 0: 65535 + 5,-5: + 0: 32639 + 5,0: + 0: 30479 + 6,-4: + 0: 65530 + 6,-3: + 0: 65521 + 6,-2: + 0: 65535 + 6,-1: + 0: 65527 + 6,-5: + 0: 65535 + 6,0: + 0: 65359 + 7,-4: + 0: 65520 + 7,-3: + 0: 32752 + 7,-2: + 0: 65535 + 7,-5: + 0: 65535 + 7,-1: + 0: 61006 + 7,0: + 0: 62702 + 8,-4: + 0: 65530 + 8,-3: + 0: 61326 + 8,-2: + 0: 61423 + 8,-1: + 0: 12320 + 3: 34944 + -8,-4: + 0: 30583 + -8,-5: + 0: 28731 + -9,-4: + 0: 48059 + -8,-3: + 0: 62583 + -9,-3: + 0: 62395 + -8,-2: + 0: 10914 + -9,-2: + 0: 65520 + -8,-1: + 0: 65530 + -9,-1: + 0: 65524 + -8,0: + 0: 28689 + 2: 128 + -7,-4: + 0: 64295 + -7,-3: + 0: 15291 + -7,-2: + 0: 6002 + -7,-1: + 0: 65535 + -7,-5: + 0: 63247 + -7,0: + 0: 17476 + 2: 4096 + -6,-4: + 0: 65295 + -6,-3: + 0: 4095 + -6,-2: + 0: 20479 + -6,-1: + 0: 65535 + -6,-5: + 0: 65535 + -6,0: + 0: 65524 + -5,-5: + 0: 56829 + -8,-8: + 0: 3067 + -8,-9: + 0: 39808 + 2: 3 + -9,-8: + 0: 36590 + -8,-7: + 0: 48059 + -9,-7: + 0: 65535 + -8,-6: + 0: 49083 + -9,-6: + 0: 65535 + -9,-5: + 0: 45311 + -7,-8: + 0: 53247 + -7,-7: + 0: 65535 + -7,-6: + 0: 16383 + -7,-9: + 0: 65528 + -6,-7: + 0: 65278 + -6,-6: + 0: 20222 + -6,-8: + 0: 3822 + -5,-8: + 0: 52733 + -5,-7: + 0: 64989 + -5,-6: + 0: 19933 + -5,-9: + 0: 18279 + -4,-8: + 0: 8191 + -4,-7: + 0: 21975 + -4,-6: + 0: 5493 + 4,-8: + 0: 7665 + 4,-9: + 0: 56797 + 3,-8: + 0: 53247 + 4,-7: + 0: 56799 + 3,-7: + 0: 57309 + 4,-6: + 0: 56793 + 3,-6: + 0: 56789 + 5,-8: + 0: 6000 + 5,-7: + 0: 65399 + 5,-6: + 0: 30579 + 5,-9: + 0: 30710 + 6,-8: + 0: 65522 + 6,-7: + 0: 65359 + 6,-6: + 0: 62079 + 6,-9: + 0: 32631 + 7,-8: + 0: 65504 + 7,-7: + 0: 65294 + 7,-6: + 0: 65359 + 7,-9: + 0: 65535 + 8,-8: + 0: 65464 + 8,-7: + 0: 65419 + 8,-6: + 0: 63951 + 8,-5: + 0: 65535 + 0,-8: + 0: 4095 + 0,-9: + 0: 53725 + -1,-8: + 0: 36863 + 0,-7: + 0: 13073 + 2: 32772 + -1,-7: + 0: 61132 + 2: 1 + 0,-6: + 0: 13104 + 2: 32896 + -1,-6: + 0: 61160 + 1,-8: + 0: 4095 + 1,-7: + 2: 4096 + 0: 52428 + 1,-6: + 2: 4112 + 0: 52416 + 1,-9: + 0: 61951 + 2,-8: + 0: 4079 + 2,-7: + 0: 65535 + 2,-6: + 0: 30032 + 3,-9: + 0: 53695 + -3,-8: + 0: 4031 + -3,-7: + 0: 32759 + -3,-6: + 0: 1906 + -2,-8: + 0: 8191 + -2,-7: + 0: 4369 + 2: 49152 + -2,-6: + 0: 4913 + 2: 34816 + -1,-9: + 0: 19933 + -8,1: + 0: 1911 + -9,0: + 0: 49152 + 2: 4128 + -9,1: + 0: 3276 + 2: 4112 + -8,2: + 0: 7936 + 2: 10 + -9,2: + 0: 32512 + 2: 10 + -8,3: + 0: 4369 + 2: 4 + -9,3: + 0: 4623 + 2: 9472 + -8,4: + 0: 13073 + -7,1: + 2: 4112 + 0: 17476 + -7,2: + 0: 3908 + -6,1: + 0: 65535 + -6,2: + 0: 36623 + -6,3: + 0: 19660 + -5,4: + 0: 65531 + -8,-12: + 0: 64783 + -8,-13: + 0: 7645 + -9,-12: + 0: 57116 + -8,-11: + 0: 13 + 2: 17408 + -9,-11: + 0: 13 + -8,-10: + 2: 13107 + 0: 35968 + -9,-10: + 2: 65520 + -9,-9: + 2: 8 + 0: 10752 + -7,-12: + 0: 65327 + -7,-11: + 0: 15 + 2: 17408 + -7,-10: + 0: 57296 + -6,-12: + 0: 4367 + 2: 1024 + -6,-11: + 0: 49351 + -6,-10: + 0: 53724 + -6,-9: + 0: 3868 + -5,-12: + 0: 17487 + -5,-11: + 0: 25716 + -5,-10: + 0: 26215 + -5,-13: + 0: 10922 + -4,-12: + 0: 35007 + 2: 8192 + -4,-11: + 2: 63618 + -4,-10: + 2: 4116 + 0: 52224 + -4,-9: + 2: 1040 + 0: 12 + -3,-12: + 0: 65039 + -3,-10: + 0: 65262 + -3,-11: + 0: 3822 + -3,-9: + 0: 3822 + -2,-12: + 0: 65295 + -2,-11: + 0: 4095 + -2,-10: + 0: 65535 + -2,-9: + 0: 4095 + -2,-13: + 0: 33655 + -1,-12: + 0: 56781 + -1,-11: + 0: 52703 + -1,-10: + 0: 64989 + -1,-13: + 0: 56789 + 0,-12: + 0: 64315 + 0,-11: + 0: 48059 + 0,-10: + 0: 53745 + 0,-13: + 0: 47901 + 1,-12: + 0: 65359 + 1,-11: + 0: 65535 + 1,-10: + 0: 61680 + 1,-13: + 0: 62363 + 2,-12: + 0: 61167 + 2,-10: + 0: 24816 + 2,-11: + 0: 61166 + 2,-9: + 0: 3812 + 2,-13: + 0: 59583 + 3,-12: + 0: 30719 + 3,-11: + 0: 30583 + 3,-10: + 0: 45298 + 3,-13: + 0: 61883 + 4,-12: + 0: 65535 + 4,-11: + 0: 65535 + 4,-10: + 0: 53744 + 4,-13: + 0: 65535 + 5,-12: + 0: 30583 + 5,-11: + 0: 30583 + 5,-10: + 0: 24816 + 5,-13: + 0: 30583 + 6,-12: + 2: 4369 + 4: 204 + 5: 49152 + 6,-11: + 2: 61713 + 5: 204 + 6,-10: + 0: 29424 + 6,-13: + 2: 4369 + 4: 49152 + 5: 204 + 7,-12: + 4: 17 + 5: 4096 + 2: 17476 + 7,-11: + 5: 17 + 2: 29764 + 7,-10: + 0: 61680 + 7,-13: + 4: 4096 + 2: 17476 + 5: 17 + 8,-12: + 0: 7633 + 8,-11: + 0: 56797 + 8,-10: + 0: 61663 + 8,-9: + 0: 46079 + 5,1: + 0: 1919 + 5,2: + 0: 65535 + 5,3: + 0: 65535 + 4,4: + 0: 7416 + 6,1: + 0: 22391 + 6,2: + 0: 65535 + 6,3: + 0: 65535 + 6,4: + 0: 13105 + 7,2: + 0: 4072 + 7,3: + 0: 61167 + 7,1: + 0: 57344 + 8,0: + 0: 63539 + 3: 8 + 8,1: + 0: 61440 + 8,2: + 0: 4095 + 8,3: + 0: 65535 + 0,5: + 0: 59135 + -1,5: + 0: 57599 + 0,6: + 0: 65326 + -1,6: + 0: 65358 + 0,7: + 0: 65359 + -1,7: + 0: 58895 + 0,8: + 0: 58623 + 1,4: + 0: 61680 + 1,5: + 0: 30207 + 1,6: + 0: 65367 + 1,7: + 0: 64911 + 1,8: + 0: 56349 + 2,5: + 0: 28799 + 2,6: + 0: 30503 + 2,7: + 0: 65287 + 2,8: + 0: 48031 + 3,4: + 0: 61680 + 3,5: + 0: 29439 + 3,6: + 0: 45431 + 3,7: + 0: 65291 + 3,8: + 0: 65535 + 4,5: + 0: 29311 + 4,6: + 0: 30583 + 4,7: + 0: 16135 + -4,5: + 0: 65039 + -5,5: + 0: 65295 + -4,6: + 0: 61006 + -5,6: + 0: 65279 + 6: 256 + -4,7: + 0: 26212 + -5,7: + 0: 61152 + -4,8: + 0: 65351 + -3,5: + 0: 57583 + -3,6: + 0: 65358 + -3,7: + 0: 52728 + -3,8: + 0: 65295 + -2,5: + 0: 57599 + -2,6: + 0: 65358 + -2,7: + 0: 56796 + -2,8: + 0: 62925 + -1,8: + 0: 57446 + 4,8: + 0: 65535 + 5,4: + 0: 48048 + 5,5: + 0: 48051 + 5,6: + 0: 12283 + 5,7: + 0: 3067 + 5,8: + 0: 61182 + 6,5: + 0: 56784 + 6,6: + 0: 4088 + 6,7: + 0: 4095 + 6,8: + 0: 13107 + 2: 34952 + 7,6: + 0: 1792 + 2: 34944 + 7,4: + 2: 8944 + 7,5: + 2: 34 + 7,7: + 2: 8930 + 7,8: + 2: 2 + 8,4: + 2: 50928 + 8,7: + 2: 16 + -5,8: + 0: 63246 + -4,9: + 0: 30511 + -4,10: + 0: 62066 + -4,11: + 0: 62719 + -5,10: + 0: 62054 + -5,11: + 0: 25847 + -4,12: + 0: 65535 + -3,9: + 0: 63279 + -3,10: + 0: 62207 + -3,11: + 0: 53503 + -3,12: + 0: 56799 + -2,9: + 0: 58623 + -2,10: + 0: 61678 + -2,11: + 0: 61951 + -2,12: + 0: 61439 + -1,9: + 0: 61166 + -1,10: + 2: 60928 + 0: 192 + -1,11: + 2: 46 + 0: 57344 + -1,12: + 0: 61422 + 0,9: + 0: 60655 + 6: 512 + 0,10: + 0: 240 + 2: 65280 + 0,11: + 2: 15 + 0: 61440 + 0,12: + 0: 65535 + 1,9: + 0: 56829 + 1,10: + 2: 53504 + 0: 204 + 1,11: + 2: 19549 + 0: 4096 + 1,12: + 0: 4369 + 2: 17476 + 2,9: + 0: 6003 + 2,10: + 0: 17 + 2: 62532 + 2,11: + 2: 44975 + 2,12: + 2: 8738 + 3,9: + 0: 32625 + 3,10: + 0: 247 + 2: 61440 + 3,11: + 2: 12066 + 4,9: + 0: 4368 + 2: 36032 + 4,10: + 0: 16 + 2: 4104 + 4,11: + 2: 7953 + 4,12: + 2: 17 + 5,10: + 2: 4369 + 0: 3276 + 5,11: + 2: 20295 + 5,9: + 0: 52430 + 6,9: + 0: 4371 + 2: 17416 + 6,10: + 0: 273 + 2: 17476 + 6,11: + 2: 8994 + 6,12: + 2: 2 + 7,9: + 2: 7 + 9,4: + 2: 240 + 8,5: + 2: 8 + 9,5: + 2: 50737 + 9,3: + 0: 13307 + 10,4: + 2: 248 + 9,6: + 2: 34824 + 10,6: + 2: 20273 + 9,7: + 2: 34952 + 10,7: + 2: 33249 + 0: 3598 + 9,8: + 2: 34952 + 10,3: + 2: 34944 + 0: 17 + 11,4: + 2: 16 + 0: 52364 + 11,6: + 2: 40844 + 11,7: + 0: 771 + 2: 35064 + 10,8: + 0: 3598 + 2: 33249 + 11,5: + 0: 34956 + 11,3: + 0: 52416 + 12,4: + 0: 4559 + 2: 16384 + 12,5: + 0: 1 + 2: 19524 + 12,6: + 2: 20293 + 12,7: + 2: 33008 + 0: 3598 + 11,8: + 2: 35064 + 0: 771 + 9,0: + 3: 15 + 0: 65296 + 9,1: + 0: 47232 + 9,2: + 0: 35643 + 9,-1: + 3: 65520 + 0: 1 + 10,0: + 3: 1 + 0: 65420 + 10,1: + 0: 56789 + 10,2: + 0: 64961 + 10,-1: + 3: 4368 + 0: 49356 + 11,0: + 0: 61679 + 11,2: + 0: 65382 + 11,-1: + 0: 61695 + 11,1: + 0: 26350 + 12,0: + 0: 63675 + 12,1: + 0: 45311 + 12,2: + 0: 48939 + 12,3: + 0: 65520 + -9,4: + 0: 65280 + 2: 1 + -8,5: + 0: 13107 + 2: 34816 + -9,5: + 0: 65535 + -8,6: + 0: 3 + 2: 3720 + -9,6: + 0: 15 + -7,5: + 2: 61448 + -7,4: + 2: 8 + -6,4: + 2: 1 + 0: 52928 + -6,5: + 2: 29761 + -6,6: + 2: 4 + -6,7: + 2: 34944 + -6,8: + 2: 29772 + -7,10: + 2: 12561 + 0: 32904 + -7,11: + 2: 4403 + 0: 136 + -7,12: + 2: 4369 + -7,8: + 2: 34952 + -7,9: + 2: 2184 + -6,9: + 2: 3908 + -6,10: + 0: 62941 + -6,11: + 0: 55807 + -6,12: + 0: 65309 + -5,9: + 0: 7 + 2: 1792 + -5,12: + 0: 32518 + 0,13: + 2: 8944 + -1,13: + 2: 224 + 0,14: + 2: 15 + -1,14: + 2: 15 + 1,13: + 2: 124 + 1,14: + 2: 15 + 2,13: + 2: 547 + 2,14: + 2: 1 + -12,-1: + 0: 65520 + -12,0: + 0: 61156 + -13,0: + 0: 64756 + -12,1: + 0: 62702 + -13,1: + 0: 56797 + -12,2: + 0: 15283 + -13,2: + 0: 65532 + -12,3: + 0: 47935 + -13,3: + 0: 44968 + -12,4: + 0: 13115 + -11,0: + 0: 65488 + -11,1: + 0: 64541 + -11,2: + 0: 56784 + -11,3: + 0: 4383 + 2: 19456 + -11,-1: + 0: 65522 + -11,4: + 0: 1 + 2: 3724 + -10,0: + 0: 30578 + -10,1: + 0: 30471 + -10,2: + 0: 53030 + -10,3: + 0: 15 + 2: 60416 + -10,-1: + 0: 65520 + -10,4: + 2: 3 + 0: 60936 + -13,4: + 0: 61432 + -12,5: + 0: 1646 + -13,5: + 0: 61156 + -12,6: + 2: 44868 + -12,7: + 0: 3855 + 2: 16624 + -13,7: + 2: 17652 + 0: 257 + -12,8: + 0: 3855 + 2: 16624 + -11,5: + 0: 4095 + -11,6: + 2: 18210 + -11,7: + 0: 257 + 2: 18006 + -11,8: + 2: 18006 + 0: 257 + -10,5: + 0: 61182 + -10,6: + 0: 14 + -16,4: + 2: 22289 + 0: 68 + -16,3: + 0: 20343 + -16,5: + 2: 12 + -15,4: + 0: 4095 + -15,5: + 2: 17487 + -15,3: + 0: 65535 + -15,6: + 2: 19524 + -15,7: + 2: 19524 + -15,8: + 2: 19532 + -14,4: + 0: 4095 + -14,5: + 2: 39327 + -14,6: + 2: 44953 + -14,7: + 0: 3855 + 2: 16624 + -14,3: + 0: 65535 + -14,8: + 0: 3855 + 2: 16624 + -13,6: + 2: 57600 + 0: 1092 + -13,8: + 2: 17652 + 0: 257 + -16,0: + 0: 55807 + -16,-1: + 0: 64991 + -17,0: + 0: 34952 + -16,1: + 0: 53725 + -17,1: + 0: 34952 + -16,2: + 0: 21853 + -17,2: + 0: 12287 + -15,0: + 0: 62207 + -15,1: + 0: 63727 + -15,2: + 0: 65295 + -15,-1: + 0: 63343 + -14,0: + 0: 57463 + -14,1: + 0: 65262 + -14,2: + 0: 65504 + -14,-1: + 0: 63479 + -13,-1: + 0: 65522 + -20,2: + 0: 3838 + -21,2: + 0: 2248 + 2: 12288 + -20,3: + 2: 15 + -20,1: + 0: 16384 + -19,2: + 0: 4095 + -19,3: + 2: 13 + -18,2: + 0: 4095 + -18,3: + 2: 7 + -18,1: + 0: 8192 + -17,3: + 0: 30583 + -17,4: + 0: 10103 + -17,-1: + 0: 34959 + -18,5: + 2: 12 + -17,5: + 0: 34 + 2: 8 + -21,1: + 2: 12288 + -20,-4: + 0: 2810 + -21,-4: + 2: 49152 + -20,-2: + 0: 65024 + -21,-2: + 0: 51200 + 2: 48 + -20,-1: + 0: 78 + -21,-1: + 0: 8 + 2: 48 + -19,-4: + 0: 4095 + -19,-2: + 0: 65280 + -19,-1: + 0: 15 + -19,-5: + 0: 53520 + -18,-4: + 0: 4095 + -18,-2: + 0: 65280 + -18,-1: + 0: 47 + -18,-5: + 0: 47232 + -17,-4: + 0: 36863 + -17,-2: + 0: 65420 + -17,-3: + 0: 52428 + -16,-4: + 0: 7965 + -16,-3: + 0: 56829 + -16,-2: + 0: 65309 + -16,-5: + 0: 50244 + 2: 256 + -15,-4: + 0: 20231 + -15,-3: + 0: 65535 + -15,-2: + 0: 65327 + -15,-5: + 0: 30719 + -14,-4: + 0: 35615 + -14,-3: + 0: 46011 + -14,-2: + 0: 30475 + -14,-5: + 0: 65136 + -13,-4: + 0: 46003 + -13,-3: + 0: 29363 + -13,-2: + 0: 30583 + -13,-5: + 0: 46064 + -12,-4: + 0: 30326 + -12,-3: + 0: 28918 + -12,-2: + 0: 32631 + -12,-5: + 0: 29936 + -11,-4: + 0: 28799 + -11,-3: + 0: 30583 + -11,-2: + 0: 32631 + -11,-5: + 0: 30704 + -10,-4: + 0: 30591 + -10,-3: + 0: 29303 + -10,-2: + 0: 30583 + -10,-5: + 0: 61917 + 12,-1: + 0: 47547 + 13,1: + 0: 56567 + 13,2: + 0: 16349 + 13,3: + 0: 48120 + 13,0: + 0: 20206 + 13,4: + 0: 35003 + 2: 8192 + 13,-1: + 0: 61166 + 14,0: + 0: 30583 + 14,1: + 0: 26864 + 14,2: + 0: 36614 + 14,3: + 0: 30719 + 14,-1: + 0: 30719 + 14,4: + 0: 30583 + 15,0: + 0: 43967 + 15,1: + 0: 65523 + 15,2: + 0: 54781 + 15,3: + 0: 12061 + 15,-1: + 0: 45294 + 15,4: + 0: 30583 + 16,0: + 0: 32631 + 16,1: + 0: 8176 + 16,2: + 0: 60156 + 16,3: + 0: 12074 + 9,-4: + 0: 65520 + 9,-3: + 0: 65407 + 9,-2: + 0: 65535 + 9,-5: + 0: 61166 + 10,-4: + 0: 65520 + 10,-3: + 0: 56777 + 10,-2: + 0: 65533 + 10,-5: + 0: 61167 + 11,-4: + 0: 65521 + 11,-3: + 0: 65488 + 11,-2: + 0: 65535 + 11,-5: + 0: 65527 + 12,-4: + 0: 65522 + 12,-3: + 0: 48056 + 12,-2: + 0: 48059 + 13,5: + 2: 11042 + 0: 8 + 13,6: + 2: 40866 + 13,7: + 0: 771 + 2: 36024 + 12,8: + 0: 3598 + 2: 33008 + 14,5: + 0: 3 + 2: 51200 + 14,6: + 2: 310 + 13,8: + 2: 36028 + 0: 771 + 15,5: + 2: 304 + 16,4: + 0: 65535 + 16,5: + 0: 8738 + 2: 34944 + 16,6: + 2: 6552 + 16,7: + 2: 1 + 17,4: + 0: 30583 + 17,5: + 2: 10992 + 18,4: + 2: 5888 + 16,-1: + 0: 29934 + 17,0: + 0: 65535 + 17,1: + 0: 3838 + 17,2: + 0: 63359 + 17,3: + 0: 1815 + 17,-1: + 0: 12287 + 18,0: + 0: 30583 + 18,1: + 0: 16753 + 18,2: + 0: 65327 + 18,3: + 0: 4111 + 2: 3840 + 19,0: + 2: 61455 + 19,1: + 2: 36608 + 19,2: + 2: 742 + 0: 8192 + 19,3: + 2: 226 + 0: 32768 + 20,0: + 2: 61715 + 20,1: + 2: 1792 + 20,2: + 2: 49168 + 20,3: + 2: 24576 + 21,0: + 2: 4096 + 12,-5: + 0: 44714 + 13,-4: + 0: 65520 + 13,-3: + 0: 49075 + 13,-5: + 0: 65535 + 13,-2: + 0: 61160 + 14,-4: + 0: 65520 + 14,-3: + 0: 65520 + 14,-2: + 0: 65535 + 14,-5: + 0: 61182 + 15,-4: + 0: 65534 + 15,-3: + 0: 65520 + 15,-2: + 0: 20479 + 15,-5: + 0: 20223 + 16,-4: + 0: 65535 + 16,-3: + 0: 65248 + -20,-5: + 2: 1792 + -21,-5: + 2: 49152 + -17,-5: + 2: 3660 + -17,-6: + 2: 32768 + -16,-6: + 2: 4352 + 0: 16384 + -15,-6: + 0: 61440 + -12,-8: + 0: 32896 + -11,-8: + 0: 64765 + -11,-7: + 0: 34957 + 2: 8704 + -11,-6: + 2: 8738 + 0: 34952 + -10,-8: + 0: 65535 + -10,-7: + 0: 65535 + -10,-6: + 0: 65535 + -12,-12: + 2: 3840 + -13,-12: + 2: 3840 + -11,-12: + 2: 3840 + -11,-10: + 2: 61160 + -11,-13: + 0: 19520 + 2: 1 + -10,-11: + 0: 2063 + 2: 32768 + -11,-11: + 0: 2048 + 2: 32768 + -10,-10: + 2: 65528 + -11,-9: + 2: 136 + 0: 2048 + -10,-13: + 0: 57296 + -10,-12: + 0: 61152 + -10,-9: + 2: 136 + 0: 2048 + -9,-13: + 0: 65535 + -8,-16: + 0: 61713 + -8,-17: + 0: 57105 + -9,-16: + 0: 61422 + -8,-15: + 0: 56785 + -9,-15: + 0: 65260 + -8,-14: + 0: 53244 + -9,-14: + 0: 20196 + -7,-16: + 0: 61440 + -7,-15: + 0: 65520 + -7,-14: + 0: 65535 + -7,-13: + 0: 4095 + -7,-17: + 0: 61422 + -6,-16: + 0: 61440 + -6,-15: + 0: 65520 + -6,-14: + 0: 65535 + -6,-13: + 0: 4095 + -6,-17: + 0: 13243 + -5,-16: + 0: 65192 + -5,-14: + 0: 43946 + -5,-15: + 0: 43562 + -5,-17: + 0: 61152 + -4,-16: + 0: 7645 + -4,-15: + 0: 65295 + -4,-14: + 0: 65535 + -4,-13: + 0: 4095 + -4,-17: + 0: 56785 + -3,-16: + 0: 3583 + -3,-15: + 0: 47887 + -3,-14: + 0: 7963 + -3,-13: + 0: 3003 + -3,-17: + 0: 53724 + -2,-16: + 0: 4095 + -2,-15: + 0: 63247 + -2,-14: + 0: 10103 + -2,-17: + 0: 62207 + -1,-16: + 0: 3839 + -1,-15: + 0: 65535 + -1,-14: + 0: 57295 + -1,-17: + 0: 57599 + 0,-15: + 0: 64270 + 0,-14: + 0: 56731 + 0,-16: + 0: 35562 + 1,-16: + 0: 48051 + 1,-15: + 0: 65411 + 1,-14: + 0: 64319 + 1,-17: + 0: 45055 + 2,-16: + 0: 45873 + 2: 128 + 2,-15: + 0: 48057 + 2,-14: + 0: 48011 + 2,-17: + 0: 13107 + 3,-16: + 2: 240 + 0: 61440 + 3,-15: + 0: 65535 + 3,-14: + 0: 45567 + 3,-17: + 7: 30576 + 4,-16: + 2: 240 + 0: 61440 + 4,-15: + 0: 65535 + 4,-14: + 0: 65535 + 8,-13: + 0: 56605 + 9,-12: + 0: 35832 + 9,-11: + 0: 48059 + 9,-10: + 0: 47295 + 9,-9: + 0: 63931 + 9,-13: + 0: 48907 + 9,-8: + 0: 56607 + 10,-12: + 0: 15355 + 10,-11: + 0: 46011 + 10,-10: + 0: 29631 + 10,-9: + 0: 30591 + 10,-13: + 0: 16155 + 10,-8: + 0: 64263 + 11,-12: + 0: 40959 + 11,-11: + 0: 4283 + 11,-10: + 0: 61695 + 11,-9: + 0: 58623 + 1: 4096 + 11,-8: + 1: 1 + 0: 30478 + 9,-7: + 0: 63949 + 9,-6: + 0: 20223 + 10,-7: + 0: 28859 + 10,-6: + 0: 57463 + 11,-7: + 0: 63359 + 11,-6: + 0: 61695 + 12,-8: + 0: 30566 + 12,-7: + 0: 41599 + 12,-6: + 0: 45738 + 8,-16: + 0: 53503 + 8,-17: + 0: 64443 + 8,-15: + 0: 7967 + 8,-14: + 0: 56797 + 9,-16: + 0: 53744 + 9,-15: + 0: 52701 + 9,-14: + 0: 47903 + 9,-17: + 0: 65529 + 10,-16: + 0: 45241 + 10,-15: + 0: 64443 + 10,-14: + 0: 47903 + 10,-17: + 0: 16313 + 11,-16: + 0: 53435 + 11,-15: + 0: 63709 + 11,-14: + 0: 39727 + 11,-13: + 0: 3981 + 11,-17: + 0: 40958 + 12,-16: + 0: 10993 + 12,-13: + 0: 43818 + 12,-9: + 0: 10922 + 13,-8: + 0: 35835 + 13,-7: + 0: 62207 + 13,-6: + 0: 61695 + 14,-8: + 0: 3003 + 14,-7: + 0: 61695 + 14,-6: + 0: 61183 + 15,-8: + 0: 12287 + 15,-7: + 0: 62719 + 15,-6: + 0: 65535 + 16,-7: + 0: 61183 + 16,-6: + 0: 44783 + 16,-8: + 0: 61166 + 16,-5: + 0: 44782 + 16,-9: + 0: 61167 + 17,-7: + 0: 64750 + 17,-6: + 0: 61183 + 17,-8: + 0: 61166 + 17,-5: + 0: 20206 + 17,-4: + 0: 65535 + 18,-8: + 0: 30583 + 18,-7: + 0: 29559 + 18,-6: + 0: 32639 + 18,-5: + 0: 26487 + 19,-8: + 0: 65520 + 19,-7: + 0: 65456 + 19,-6: + 0: 53007 + 19,-5: + 0: 4383 + 2: 2048 + 19,-9: + 0: 30583 + 19,-4: + 0: 65535 + 20,-8: + 0: 30576 + 20,-7: + 0: 30548 + 20,-6: + 0: 3855 + 20,-5: + 0: 3 + 2: 25216 + 20,-9: + 0: 65319 + 20,-4: + 2: 2 + 0: 32512 + 21,-8: + 0: 30503 + 21,-7: + 0: 30583 + 21,-6: + 0: 1919 + 21,-5: + 2: 563 + 21,-9: + 0: 28999 + 22,-8: + 0: 65527 + 22,-7: + 0: 65535 + 22,-6: + 0: 15 + 23,-8: + 0: 4368 + 23,-7: + 0: 273 + 23,-9: + 2: 61440 + 23,-6: + 2: 4354 + 16,-12: + 0: 61166 + 15,-12: + 0: 65038 + 16,-11: + 0: 65262 + 15,-11: + 0: 64270 + 16,-10: + 0: 61166 + 15,-10: + 0: 65291 + 15,-9: + 0: 4095 + 16,-13: + 0: 58606 + 17,-12: + 0: 57309 + 17,-11: + 0: 52237 + 2: 8704 + 17,-10: + 0: 65036 + 2: 2 + 17,-9: + 0: 3822 + 18,-12: + 0: 65535 + 18,-11: + 0: 62735 + 18,-10: + 0: 30213 + 18,-9: + 0: 1798 + 19,-12: + 0: 65535 + 19,-11: + 0: 30591 + 19,-10: + 0: 63351 + 20,-12: + 0: 23901 + 20,-11: + 0: 32581 + 20,-10: + 0: 63271 + 12,-12: + 0: 43562 + 12,-11: + 0: 43562 + 12,-10: + 0: 10922 + 13,-12: + 0: 64267 + 13,-11: + 0: 63243 + 13,-10: + 0: 33655 + 13,-9: + 0: 4083 + 13,-13: + 0: 64267 + 14,-12: + 0: 65407 + 14,-11: + 0: 65327 + 14,-10: + 0: 47423 + 14,-9: + 0: 3001 + 14,-13: + 0: 65407 + 15,-13: + 0: 65038 + 16,-16: + 0: 60338 + 15,-16: + 0: 4080 + 16,-15: + 0: 58922 + 15,-15: + 2: 60075 + 16,-14: + 0: 60998 + 15,-14: + 0: 65024 + 2: 2 + 16,-17: + 0: 28262 + 17,-16: + 0: 65521 + 17,-15: + 0: 30479 + 17,-14: + 0: 65287 + 17,-13: + 0: 3839 + 17,-17: + 0: 32624 + 18,-16: + 0: 61440 + 18,-15: + 0: 30470 + 18,-14: + 0: 65399 + 18,-13: + 0: 4095 + 18,-17: + 0: 61713 + 2: 68 + 19,-16: + 0: 62327 + 19,-15: + 0: 57304 + 19,-14: + 0: 32449 + 19,-17: + 0: 28672 + 2: 68 + 19,-13: + 0: 3822 + 20,-16: + 0: 30503 + 20,-15: + 0: 24020 + 20,-13: + 0: 17887 + 21,-12: + 0: 13063 + 2: 34816 + 21,-11: + 0: 32624 + 21,-10: + 0: 29168 + 21,-13: + 0: 28791 + 22,-12: + 2: 4096 + 22,-11: + 2: 39327 + 22,-10: + 0: 257 + 2: 7694 + 22,-9: + 2: 273 + 23,-11: + 2: 15 + 23,-10: + 0: 257 + 2: 3598 + 24,-11: + 2: 4383 + 24,-10: + 0: 257 + 2: 3598 + 24,-9: + 2: 61440 + 20,-17: + 0: 30498 + 20,-14: + 0: 58980 + 21,-15: + 0: 32631 + 21,-14: + 0: 30471 + 21,-16: + 2: 236 + 22,-16: + 2: 8818 + 22,-15: + 0: 768 + 2: 19526 + 22,-14: + 2: 61719 + 22,-13: + 2: 785 + 22,-17: + 2: 8818 + 23,-15: + 2: 3840 + 12,-17: + 0: 13090 + 12,-15: + 0: 43554 + 2: 8 + 12,-14: + 0: 43562 + 13,-16: + 0: 4080 + 13,-15: + 2: 1 + 0: 64272 + 13,-14: + 0: 64267 + 13,-17: + 2: 17476 + 14,-16: + 0: 4080 + 14,-15: + 0: 65024 + 2: 3 + 14,-14: + 0: 65326 + 15,-17: + 2: 21845 + 16,-2: + 0: 61166 + 17,-3: + 0: 65520 + 17,-2: + 0: 65535 + 18,-4: + 0: 64496 + 18,-3: + 0: 64440 + 18,-2: + 0: 7099 + 18,-1: + 0: 1301 + 19,-3: + 0: 30591 + 19,-2: + 0: 20471 + 19,-1: + 0: 2039 + 20,-3: + 0: 30591 + 20,-2: + 0: 8055 + 20,-1: + 0: 1919 + 21,-4: + 0: 768 + 21,-3: + 0: 3 + 2: 12544 + 21,-2: + 2: 1 + 0: 768 + 21,-1: + 0: 3 + 16,-19: + 0: 12288 + 2: 32768 + 16,-18: + 0: 63283 + 15,-19: + 0: 40960 + 2: 880 + 15,-18: + 0: 142 + 2: 21248 + 17,-19: + 2: 63744 + 17,-18: + 2: 153 + 0: 61440 + 17,-20: + 2: 128 + 18,-20: + 2: 9910 + 0: 2056 + 18,-19: + 2: 13990 + 0: 2056 + 18,-18: + 0: 4096 + 2: 17486 + 18,-21: + 2: 9895 + 0: 2056 + 19,-20: + 0: 3855 + 2: 8432 + 19,-19: + 0: 3855 + 2: 20720 + 19,-18: + 2: 17487 + 19,-21: + 2: 8432 + 0: 3855 + 20,-20: + 2: 8946 + 0: 2056 + 20,-19: + 2: 8946 + 0: 2056 + 20,-18: + 2: 1839 + 0: 8192 + 20,-21: + 2: 8946 + 0: 2056 + 21,-20: + 0: 3855 + 2: 8432 + 21,-19: + 0: 3855 + 2: 20720 + 21,-18: + 2: 21855 + 21,-17: + 2: 5621 + 21,-21: + 2: 8432 + 0: 3855 + 22,-20: + 2: 8995 + 22,-19: + 2: 8995 + 22,-18: + 2: 8739 + 22,-21: + 2: 8995 + 12,-19: + 2: 12000 + 11,-19: + 0: 62208 + 2: 4 + 12,-18: + 2: 1570 + 0: 8192 + 11,-18: + 0: 61695 + 13,-19: + 2: 18416 + 13,-18: + 2: 17476 + 14,-19: + 2: 240 + 8,-20: + 2: 62532 + 7,-20: + 2: 61440 + 0: 51 + 8,-19: + 2: 3840 + 7,-19: + 2: 31940 + 8,-18: + 0: 35840 + 8,-21: + 2: 17656 + 9,-20: + 2: 63624 + 9,-19: + 2: 1920 + 9,-18: + 0: 62912 + 9,-21: + 2: 34959 + 10,-20: + 2: 45056 + 0: 16384 + 10,-19: + 0: 65024 + 2: 5 + 10,-18: + 0: 63743 + 11,-20: + 2: 28672 + 4,-20: + 2: 61440 + 3,-20: + 2: 50247 + 0: 12544 + 4,-19: + 0: 30464 + 3,-19: + 0: 65296 + 4,-18: + 0: 119 + 2: 61440 + 3,-18: + 0: 255 + 2: 61440 + 4,-17: + 8: 30576 + 5,-20: + 2: 62540 + 5,-19: + 2: 65280 + 5,-18: + 2: 4369 + 5,-17: + 0: 30576 + 5,-21: + 2: 65476 + 6,-20: + 2: 61440 + 0: 136 + 6,-19: + 2: 62532 + 6,-21: + 0: 64008 + 6,-18: + 2: 17476 + 6,-17: + 2: 34956 + 6,-16: + 2: 17608 + 0: 12288 + 7,-17: + 2: 29766 + 7,-21: + 0: 13187 + 7,-16: + 2: 1 + 7,-18: + 2: 8742 + 5,-16: + 2: 240 + 0: 61440 + 5,-15: + 0: 30583 + 5,-14: + 0: 30583 + 6,-15: + 2: 4596 + 5: 49152 + 6,-14: + 2: 4369 + 5: 49356 + 7,-15: + 2: 17520 + 5: 4096 + 7,-14: + 5: 4113 + 2: 17476 + -4,-20: + 2: 4383 + 0: 60416 + -4,-19: + 2: 1 + 0: 65472 + -5,-19: + 0: 56576 + 2: 1 + -4,-18: + 0: 65295 + -5,-18: + 0: 57245 + -3,-20: + 2: 47 + 0: 63488 + -3,-18: + 0: 63046 + -3,-21: + 2: 63624 + -3,-19: + 0: 26350 + -2,-20: + 2: 15 + 0: 65280 + -2,-19: + 0: 65264 + -2,-18: + 0: 3839 + -2,-21: + 2: 63624 + -1,-20: + 2: 15 + 0: 65280 + -1,-19: + 0: 65520 + -1,-18: + 0: 20479 + -1,-21: + 2: 63624 + 0,-20: + 2: 15 + 0: 65280 + 0,-19: + 0: 65520 + 0,-18: + 0: 8191 + 0,-17: + 0: 3839 + -8,-19: + 0: 13104 + 2: 34824 + -9,-19: + 0: 34944 + 2: 8192 + -8,-18: + 0: 4369 + 2: 3072 + -9,-17: + 0: 36608 + -7,-18: + 0: 61166 + -7,-19: + 2: 1024 + -6,-18: + 0: 49075 + -6,-19: + 2: 524 + 0: 34816 + -6,-20: + 2: 17476 + 0: 32768 + -6,-21: + 2: 17476 + -5,-20: + 2: 4369 + -5,-21: + 2: 4369 + -12,-16: + 2: 20292 + 0: 10 + -13,-16: + 2: 20292 + 0: 10 + -12,-15: + 2: 17732 + 0: 43690 + -13,-15: + 0: 43690 + 2: 17732 + -12,-14: + 2: 49060 + 0: 10 + -13,-14: + 2: 65444 + 0: 10 + -12,-13: + 2: 62 + -12,-17: + 0: 43690 + 2: 17732 + -11,-16: + 2: 8994 + 0: 3072 + -11,-15: + 2: 15922 + -11,-14: + 2: 62434 + -11,-17: + 2: 32434 + -10,-16: + 0: 61408 + -10,-14: + 2: 28672 + 0: 232 + -10,-15: + 0: 59616 + -10,-17: + 2: 34963 + -12,-18: + 2: 44800 + -13,-18: + 2: 44800 + -13,-17: + 0: 43690 + 2: 17732 + -11,-18: + 2: 8960 + -10,-18: + 2: 27776 + -9,-18: + 2: 1811 + 0,-21: + 2: 63624 + 1,-20: + 2: 15 + 0: 65280 + 1,-19: + 0: 29688 + 1,-18: + 0: 33655 + 1,-21: + 2: 63624 + 2,-20: + 2: 47 + 0: 63488 + 2,-19: + 0: 64435 + 2,-18: + 0: 13211 + 2: 32768 + 2,-21: + 2: 28876 + 0,-24: + 2: 63624 + -1,-24: + 2: 63624 + 0,-23: + 2: 63624 + -1,-23: + 0: 32768 + 2: 30856 + 0,-22: + 2: 63624 + -1,-22: + 2: 63624 + 0,-25: + 2: 36608 + 1,-24: + 2: 63624 + 1,-23: + 2: 63624 + 1,-22: + 2: 63624 + 1,-25: + 2: 36736 + 2,-23: + 2: 64512 + 2,-22: + 2: 64744 + 0: 2 + 3,-23: + 2: 61440 + 3,-22: + 2: 273 + 3,-24: + 2: 35939 + 3,-25: + 2: 4096 + 4,-24: + 2: 4096 + 4,-23: + 2: 62563 + -4,-24: + 2: 310 + -5,-24: + 2: 51200 + -4,-23: + 2: 61440 + -5,-23: + 2: 53558 + -4,-22: + 2: 240 + -5,-22: + 2: 4593 + 0: 4 + -4,-25: + 2: 51200 + -3,-23: + 2: 47496 + -3,-22: + 2: 35064 + -3,-24: + 2: 34952 + -3,-25: + 2: 36342 + -2,-24: + 2: 63624 + -2,-23: + 2: 63624 + -2,-22: + 2: 63624 + -2,-25: + 2: 36608 + -1,-25: + 2: 36744 + 5,-23: + 2: 4096 + 0: 36044 + 5,-24: + 2: 32 + 0: 51208 + 5,-22: + 2: 17634 + 5,-25: + 0: 32768 + 2: 8804 + 6,-24: + 0: 47893 + 6,-23: + 0: 7099 + 6,-22: + 2: 16 + 0: 52428 + 6,-25: + 0: 21847 + 7,-24: + 0: 47877 + 7,-23: + 0: 3003 + 7,-22: + 0: 30583 + 7,-25: + 0: 21853 + 8,-24: + 0: 29459 + 2: 128 + 8,-23: + 0: 14199 + 8,-22: + 0: 13104 + 2: 34952 + 8,-25: + 0: 12561 + 2: 35012 + 8,-29: + 0: 4096 + 2: 34816 + 7,-28: + 0: 65533 + 8,-28: + 0: 8192 + 2: 8 + 8,-27: + 0: 8738 + 8,-26: + 0: 4371 + 2: 19592 + 8,-30: + 2: 33 + 7,-30: + 2: 8 + 7,-29: + 0: 52735 + 5,-28: + 2: 2 + 0: 32768 + 5,-29: + 2: 8704 + 5,-27: + 2: 8192 + 0: 34952 + 5,-26: + 2: 17954 + 0: 8 + 6,-26: + 0: 21845 + 6,-29: + 0: 30446 + 6,-28: + 0: 61158 + 6,-27: + 0: 3264 + 7,-27: + 0: 1905 + 7,-26: + 0: 21845 + 5,-30: + 2: 128 + 6,-30: + 2: 3 + -6,-23: + 2: 27776 + -6,-22: + 2: 49346 + -15,-16: + 2: 23391 + 0: 1024 + -15,-15: + 2: 34959 + -15,-17: + 2: 34952 + -14,-16: + 2: 20292 + 0: 10 + -14,-15: + 2: 21588 + 0: 43690 + -15,-14: + 2: 2184 + -14,-14: + 2: 36772 + 0: 10 + -14,-17: + 0: 43690 + 2: 21588 + -15,-18: + 2: 34816 + -14,-18: + 2: 44800 + -15,9: + 2: 19532 + -15,10: + 2: 12 + -14,9: + 0: 3855 + 2: 41200 + -14,10: + 2: 15 + -13,9: + 0: 257 + 2: 17652 + -13,10: + 2: 62901 + 0: 64 + -12,9: + 2: 41200 + 0: 3855 + -12,10: + 2: 4383 + -11,9: + 0: 257 + 2: 18006 + -11,10: + 2: 7 + -4,13: + 0: 255 + 2: 61440 + -5,13: + 2: 61440 + -4,14: + 2: 3916 + -5,14: + 2: 3840 + -3,13: + 0: 221 + 2: 4096 + -3,14: + 2: 3855 + -2,14: + 2: 1831 + -2,13: + 0: 14 + 2: 11776 + 9,9: + 2: 34952 + 10,9: + 2: 16865 + 0: 3598 + 9,10: + 2: 8 + 10,10: + 2: 15 + 11,9: + 0: 771 + 2: 39160 + 11,10: + 2: 60011 + 0: 128 + 12,9: + 2: 16624 + 0: 3598 + 12,10: + 2: 12862 + 13,9: + 0: 771 + 2: 40124 + 13,10: + 2: 15 + -7,13: + 2: 58167 + -7,14: + 2: 3072 + -6,13: + 2: 64160 + -6,14: + 2: 3976 + 20,-23: + 2: 61440 + 19,-23: + 2: 32768 + 20,-22: + 2: 10970 + 0: 32 + 19,-22: + 2: 24456 + 21,-22: + 2: 24320 + 22,-22: + 2: 8960 + 17,-21: + 2: 8 + 18,-22: + 2: 11776 + -3,-26: + 2: 16384 + 0: 34944 + -2,-26: + 0: 61680 + -1,-26: + 0: 61680 + 0,-26: + 0: 61680 + 1,-26: + 0: 63728 + 2,-26: + 2: 4096 + 2,-25: + 2: 36211 + 25,-11: + 2: 15 + 25,-10: + 0: 257 + 2: 3598 + 25,-9: + 2: 61440 + 26,-11: + 2: 4383 + 26,-10: + 0: 257 + 2: 3598 + 26,-9: + 2: 28672 + 27,-11: + 2: 15 + 27,-10: + 0: 257 + 2: 3598 + 28,-11: + 2: 4975 + 0: 32768 + 28,-10: + 2: 4096 + 0: 36044 + 28,-9: + 2: 3171 + 29,-11: + 2: 2247 + 0: 12560 + 29,-10: + 0: 14327 + 29,-9: + 0: 1 + 2: 1992 + 30,-11: + 2: 12544 + 30,-10: + 2: 12834 + 30,-9: + 2: 1 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding + - uid: 3 + components: + - type: MetaData + - type: Transform + pos: 5.5,-13.5 + parent: 2 +- proto: AcousticGuitarInstrument + entities: + - uid: 4 + components: + - type: Transform + pos: -58.55762,-61.482254 + parent: 2 + - uid: 5 + components: + - type: Transform + pos: -1.3835077,30.478281 + parent: 2 +- proto: AirAlarm + entities: + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 17199 + - 17397 + - 548 + - uid: 7 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 577 + - 17261 + - 17180 + - uid: 8 + components: + - type: Transform + pos: -2.5,-54.5 + parent: 2 + - type: DeviceList + devices: + - 13519 + - 13427 + - 17208 + - 547 + - 17407 + - 13504 + - 175 + - 13503 + - uid: 9 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 631 + - 17516 + - 17318 + - 17317 + - 17515 + - uid: 10 + components: + - type: Transform + pos: 63.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 13601 + - 13600 + - 13602 + - 13768 + - 13769 + - 13770 + - 17495 + - 17297 + - 13674 + - 13673 + - 13672 + - 13663 + - 13664 + - 593 + - 13684 + - 13683 + - 13682 + - 594 + - uid: 11 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 17395 + - 551 + - 17222 + - 550 + - 17423 + - 17224 + - 13705 + - 13595 + - 173 + - 13594 + - 13503 + - 175 + - 13504 + - uid: 12 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-42.5 + parent: 2 + - type: DeviceList + devices: + - 17403 + - 552 + - 17204 + - 13705 + - 553 + - 17404 + - uid: 13 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-56.5 + parent: 2 + - type: DeviceList + devices: + - 554 + - 13716 + - 13717 + - 13715 + - 13714 + - 13712 + - 13711 + - 13710 + - 13709 + - 13708 + - 13707 + - 555 + - 17401 + - 17202 + - uid: 14 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-58.5 + parent: 2 + - type: DeviceList + devices: + - 556 + - 17207 + - 17405 + - 17406 + - 17206 + - uid: 15 + components: + - type: Transform + pos: 2.5,-64.5 + parent: 2 + - type: DeviceList + devices: + - 13713 + - 17198 + - 17396 + - 17213 + - 17412 + - uid: 16 + components: + - type: Transform + pos: -8.5,-73.5 + parent: 2 + - type: DeviceList + devices: + - 557 + - 17418 + - 17219 + - 558 + - 17414 + - uid: 17 + components: + - type: Transform + pos: 11.5,-69.5 + parent: 2 + - type: DeviceList + devices: + - 17216 + - 17416 + - 559 + - uid: 18 + components: + - type: Transform + pos: -2.5,-68.5 + parent: 2 + - type: DeviceList + devices: + - 17419 + - 17218 + - 560 + - 17415 + - 17215 + - 561 + - uid: 19 + components: + - type: Transform + pos: -16.5,-67.5 + parent: 2 + - type: DeviceList + devices: + - 13713 + - 562 + - 17197 + - uid: 20 + components: + - type: Transform + pos: -23.5,-63.5 + parent: 2 + - type: DeviceList + devices: + - 17220 + - 17420 + - 563 + - uid: 21 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 2 + - type: DeviceList + devices: + - 564 + - 17425 + - 17226 + - 13549 + - 13591 + - 13595 + - 13594 + - 13593 + - 13529 + - 13527 + - 173 + - 304 + - 296 + - uid: 22 + components: + - type: Transform + pos: -13.5,-28.5 + parent: 2 + - type: DeviceList + devices: + - 565 + - 17227 + - 17426 + - 17435 + - 17238 + - 17236 + - 17433 + - 296 + - 13591 + - 13549 + - 13552 + - 295 + - 13528 + - uid: 23 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 566 + - 17249 + - 17446 + - 13596 + - 13597 + - uid: 24 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 17245 + - 17443 + - 13513 + - uid: 25 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 567 + - 17442 + - 17244 + - 17243 + - 17441 + - 13544 + - 13560 + - 13590 + - 13589 + - uid: 26 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 17247 + - 17445 + - 13545 + - 13484 + - 13580 + - uid: 27 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 17444 + - 17248 + - 568 + - 13415 + - 13414 + - uid: 28 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 570 + - 569 + - 17257 + - 17456 + - 17250 + - 17447 + - 17436 + - 17239 + - 13688 + - 13546 + - 310 + - 13539 + - 13543 + - 18065 + - 13535 + - uid: 29 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-26.5 + parent: 2 + - type: DeviceList + devices: + - 571 + - 13692 + - 572 + - 17232 + - 17430 + - 17429 + - 17228 + - uid: 30 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 573 + - 13688 + - 17229 + - 17428 + - uid: 31 + components: + - type: Transform + pos: 14.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 574 + - 17256 + - 17454 + - 17448 + - 17251 + - 13556 + - 308 + - 13523 + - 13546 + - 310 + - 13539 + - uid: 32 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 2 + - type: DeviceList + devices: + - 575 + - 17438 + - 17241 + - 13655 + - 13652 + - 13529 + - 13527 + - 13557 + - 13526 + - 307 + - 304 + - uid: 33 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 576 + - 13679 + - 13680 + - 13681 + - 17440 + - 17242 + - 13557 + - 13526 + - 13523 + - 13556 + - 308 + - 307 + - uid: 34 + components: + - type: Transform + pos: 25.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 578 + - 17464 + - uid: 35 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 578 + - 17464 + - 13501 + - 13500 + - 13472 + - 13611 + - 13748 + - 13743 + - 13744 + - 13745 + - 13746 + - 13747 + - 13477 + - 13650 + - 13532 + - 13553 + - uid: 36 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 2 + - type: DeviceList + devices: + - 17466 + - 17268 + - 579 + - uid: 37 + components: + - type: Transform + pos: 40.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 13675 + - 13676 + - 13677 + - 13678 + - 580 + - 13650 + - 13685 + - 17269 + - 17467 + - uid: 38 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 13685 + - 581 + - 17194 + - 17492 + - 17295 + - 17493 + - uid: 39 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 13681 + - 13680 + - 13679 + - 13689 + - 13694 + - 13690 + - 13659 + - 582 + - 13684 + - 13683 + - 13682 + - 13676 + - 13675 + - 13677 + - 13678 + - 17471 + - 17273 + - 13501 + - 13500 + - uid: 40 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 13620 + - 13691 + - 583 + - 13722 + - 17275 + - 17473 + - uid: 41 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 13691 + - 13620 + - 13689 + - 13694 + - 584 + - 13690 + - 13659 + - 17272 + - 17469 + - 17271 + - 17470 + - uid: 42 + components: + - type: Transform + pos: 40.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 13723 + - 13724 + - 13649 + - 13706 + - 585 + - 17472 + - 17274 + - 17361 + - 17553 + - uid: 43 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-31.5 + parent: 2 + - type: DeviceList + devices: + - 13646 + - 13629 + - 13631 + - 13630 + - 586 + - 17479 + - 17279 + - uid: 45 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 2 + - type: DeviceList + devices: + - 13646 + - 13629 + - 13706 + - 587 + - 13644 + - 13628 + - 13645 + - 17481 + - 17282 + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-44.5 + parent: 2 + - type: DeviceList + devices: + - 13644 + - 13628 + - 13645 + - 590 + - 17288 + - 17484 + - 17287 + - 17485 + - 17286 + - 17566 + - 17284 + - 17483 + - 17285 + - 17482 + - 17184 + - 17562 + - uid: 47 + components: + - type: Transform + pos: 42.5,-54.5 + parent: 2 + - type: DeviceList + devices: + - 17292 + - 591 + - 17490 + - 17489 + - 17291 + - 17488 + - 17293 + - 17487 + - 17294 + - 17486 + - 17289 + - uid: 48 + components: + - type: Transform + pos: -6.5,-60.5 + parent: 2 + - type: DeviceList + devices: + - 592 + - 17217 + - 17417 + - uid: 49 + components: + - type: Transform + pos: 54.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 13674 + - 13673 + - 13672 + - 13663 + - 13664 + - 593 + - 13684 + - 13683 + - 13682 + - 594 + - 17296 + - 17494 + - 17297 + - 17495 + - uid: 50 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 13674 + - 13673 + - 13672 + - 595 + - 17201 + - 17400 + - 17252 + - 17449 + - 13601 + - 13600 + - 13602 + - uid: 51 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 596 + - 17496 + - 17298 + - 13603 + - 13604 + - 13612 + - 13613 + - 13605 + - 13606 + - 13608 + - 13607 + - uid: 52 + components: + - type: Transform + pos: 66.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 17497 + - 17299 + - 597 + - uid: 53 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-0.5 + parent: 2 + - type: DeviceList + devices: + - 17185 + - 17386 + - 598 + - 13609 + - 13610 + - 13614 + - 13615 + - 13607 + - 13608 + - 13605 + - 13606 + - uid: 54 + components: + - type: Transform + pos: 56.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 599 + - 13664 + - 13665 + - 17502 + - 17303 + - uid: 55 + components: + - type: Transform + pos: 60.5,-25.5 + parent: 2 + - type: DeviceList + devices: + - 13666 + - 13667 + - 13668 + - 13669 + - 13670 + - 13671 + - 600 + - 13627 + - 13626 + - 13632 + - 17311 + - 17510 + - 17310 + - 17509 + - 17505 + - 17304 + - uid: 56 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 13671 + - 13670 + - 13669 + - 601 + - 13663 + - 17301 + - 17501 + - uid: 57 + components: + - type: Transform + pos: 79.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 17302 + - 17500 + - 602 + - uid: 58 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 17508 + - 17309 + - 603 + - uid: 59 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 17300 + - 604 + - 17498 + - uid: 60 + components: + - type: Transform + pos: 73.5,-42.5 + parent: 2 + - type: DeviceList + devices: + - 13636 + - 13637 + - 13638 + - 13639 + - 13640 + - 13720 + - 605 + - 17513 + - 17314 + - uid: 61 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-30.5 + parent: 2 + - type: DeviceList + devices: + - 608 + - 17306 + - 17305 + - 17503 + - 17504 + - uid: 62 + components: + - type: Transform + pos: 73.5,-48.5 + parent: 2 + - type: DeviceList + devices: + - 13623 + - 13624 + - 13625 + - 546 + - 17312 + - 17511 + - uid: 63 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 17422 + - 17223 + - 609 + - uid: 64 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 610 + - 13693 + - 17432 + - 17235 + - uid: 65 + components: + - type: Transform + pos: -40.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 611 + - 17230 + - 17231 + - 17427 + - uid: 66 + components: + - type: Transform + pos: -32.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 17328 + - 17526 + - 613 + - uid: 67 + components: + - type: Transform + pos: -50.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 614 + - 17525 + - 17327 + - 13531 + - 283 + - 13534 + - uid: 68 + components: + - type: Transform + pos: -44.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 17522 + - 615 + - 17324 + - uid: 69 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 17259 + - 17458 + - 17258 + - 616 + - 17457 + - uid: 70 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 617 + - 618 + - 17399 + - 17200 + - 17530 + - 17331 + - 17529 + - 17332 + - 506 + - 13440 + - 13445 + - uid: 71 + components: + - type: Transform + pos: 8.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 13654 + - 13657 + - 619 + - 620 + - 17337 + - 17534 + - 17535 + - 17338 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 17193 + - 621 + - uid: 73 + components: + - type: Transform + pos: -6.5,28.5 + parent: 2 + - type: DeviceList + devices: + - 17540 + - 17344 + - 17343 + - 17541 + - 17342 + - 17542 + - 17545 + - 17347 + - 622 + - 17348 + - 17546 + - 17346 + - 17544 + - 17340 + - 17538 + - 17373 + - 17567 + - uid: 74 + components: + - type: Transform + pos: 11.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 17549 + - 623 + - 17351 + - uid: 75 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 624 + - 13647 + - 17350 + - 17547 + - uid: 76 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,38.5 + parent: 2 + - type: DeviceList + devices: + - 13647 + - 625 + - 13721 + - 17349 + - 17548 + - uid: 77 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,40.5 + parent: 2 + - type: DeviceList + devices: + - 17550 + - 17352 + - 626 + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,33.5 + parent: 2 + - type: DeviceList + devices: + - 17353 + - 17552 + - 628 + - uid: 79 + components: + - type: Transform + pos: -61.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 630 + - 629 + - 17321 + - 17518 + - 17519 + - 17320 + - 13660 + - 13531 + - 283 + - 13534 + - uid: 80 + components: + - type: Transform + pos: -74.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 632 + - 17316 + - 17514 + - uid: 81 + components: + - type: Transform + pos: -66.5,-12.5 + parent: 2 + - type: DeviceList + devices: + - 633 + - 17315 + - 17398 + - uid: 82 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 634 + - 17323 + - 17521 + - uid: 83 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-37.5 + parent: 2 + - type: DeviceList + devices: + - 17281 + - 17478 + - uid: 84 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 17531 + - 17336 + - 638 + - uid: 85 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,40.5 + parent: 2 + - uid: 86 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-26.5 + parent: 2 + - type: DeviceList + devices: + - 17181 + - 17439 + - 643 + - 13416 + - uid: 87 + components: + - type: Transform + pos: 3.5,34.5 + parent: 2 + - type: DeviceList + devices: + - 17350 + - 17547 + - 624 + - 17385 + - 644 + - 17363 + - 13647 + - 13772 + - uid: 88 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 17527 + - 17329 + - 612 + - 13555 + - 291 + - 13522 + - uid: 89 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 17361 + - 17553 + - 17564 + - 17369 + - 17371 + - 17565 + - 641 + - uid: 90 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,14.5 + parent: 2 + - type: DeviceList + devices: + - 642 + - 17532 + - 17335 + - uid: 91 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 17367 + - 17563 + - 17561 + - 17362 + - uid: 92 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-26.5 + parent: 2 + - type: DeviceList + devices: + - 13461 + - 13588 + - 13577 + - 17370 + - 646 + - 17554 +- proto: AirCanister + entities: + - uid: 93 + components: + - type: Transform + pos: 7.5,-41.5 + parent: 2 + - uid: 94 + components: + - type: Transform + pos: 60.5,-33.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: 61.5,-36.5 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: 61.5,-37.5 + parent: 2 +- proto: Airlock + entities: + - uid: 97 + components: + - type: Transform + pos: -58.5,-6.5 + parent: 2 + - uid: 98 + components: + - type: Transform + pos: 44.5,-64.5 + parent: 2 + - uid: 99 + components: + - type: Transform + pos: -47.5,-10.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: -47.5,-12.5 + parent: 2 + - uid: 101 + components: + - type: Transform + pos: -47.5,-14.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: -47.5,-16.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: -44.5,-10.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: 7.5,14.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: 7.5,11.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - uid: 108 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 109 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 110 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 111 + components: + - type: Transform + pos: 14.5,2.5 + parent: 2 + - uid: 112 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 113 + components: + - type: Transform + pos: 18.5,2.5 + parent: 2 + - uid: 114 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 115 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: -18.5,42.5 + parent: 2 + - uid: 117 + components: + - type: Transform + pos: -21.5,42.5 + parent: 2 + - uid: 118 + components: + - type: Transform + pos: -20.5,46.5 + parent: 2 + - uid: 119 + components: + - type: Transform + pos: -17.5,46.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: -23.5,42.5 + parent: 2 +- proto: AirlockArmoryLocked + entities: + - uid: 121 + components: + - type: Transform + pos: -0.5,31.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: 5.5,31.5 + parent: 2 + - uid: 123 + components: + - type: Transform + pos: 2.5,34.5 + parent: 2 + - uid: 124 + components: + - type: Transform + pos: 0.5,36.5 + parent: 2 + - uid: 530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,23.5 + parent: 2 +- proto: AirlockAssembly + entities: + - uid: 125 + components: + - type: Transform + pos: -16.5,18.5 + parent: 2 + - uid: 126 + components: + - type: Transform + pos: 57.5,-42.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: 55.5,-40.5 + parent: 2 +- proto: AirlockAssemblyEngineering + entities: + - uid: 128 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 +- proto: AirlockAssemblyExternalGlass + entities: + - uid: 129 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 130 + components: + - type: Transform + pos: 6.5,-46.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: 8.5,-47.5 + parent: 2 + - uid: 132 + components: + - type: Transform + pos: 4.5,-50.5 + parent: 2 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 133 + components: + - type: Transform + pos: 83.5,-47.5 + parent: 2 + - uid: 134 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: 27.5,24.5 + parent: 2 + - uid: 136 + components: + - type: Transform + pos: -43.5,13.5 + parent: 2 + - uid: 137 + components: + - type: Transform + pos: -19.5,-39.5 + parent: 2 + - uid: 138 + components: + - type: Transform + pos: 67.5,-56.5 + parent: 2 + - uid: 139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,-23.5 + parent: 2 + - uid: 140 + components: + - type: Transform + pos: 10.5,-51.5 + parent: 2 +- proto: AirlockBarLocked + entities: + - uid: 141 + components: + - type: MetaData + name: Bartender's Room + - type: Transform + pos: 30.5,-2.5 + parent: 2 +- proto: AirlockCaptainGlassLocked + entities: + - uid: 142 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 +- proto: AirlockCargoGlass + entities: + - uid: 143 + components: + - type: Transform + pos: -18.5,-24.5 + parent: 2 +- proto: AirlockCargoGlassLocked + entities: + - uid: 144 + components: + - type: Transform + pos: -23.5,-24.5 + parent: 2 + - uid: 145 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: -29.5,-21.5 + parent: 2 +- proto: AirlockChapelGlassLocked + entities: + - uid: 150 + components: + - type: MetaData + name: Crematorium + - type: Transform + pos: 62.5,0.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: 67.5,2.5 + parent: 2 +- proto: AirlockChemistryLocked + entities: + - uid: 152 + components: + - type: MetaData + name: Chemistry + - type: Transform + pos: 19.5,-23.5 + parent: 2 +- proto: AirlockChiefEngineerLocked + entities: + - uid: 153 + components: + - type: Transform + pos: 5.5,-64.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: 2.5,-62.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: 2.5,-59.5 + parent: 2 + - uid: 21492 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 2 + - uid: 28143 + components: + - type: Transform + pos: -11.5,-36.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 156 + components: + - type: Transform + pos: 44.5,-44.5 + parent: 2 + - uid: 157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-46.5 + parent: 2 + - uid: 159 + components: + - type: Transform + pos: 47.5,-44.5 + parent: 2 +- proto: AirlockCommandGlassLocked + entities: + - uid: 160 + components: + - type: Transform + pos: 28.5,-107.5 + parent: 2 + - uid: 161 + components: + - type: Transform + pos: 79.5,-2.5 + parent: 2 + - uid: 162 + components: + - type: Transform + pos: 78.5,-4.5 + parent: 2 + - uid: 163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 2 + - uid: 164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + - uid: 165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-8.5 + parent: 2 + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 2 +- proto: AirlockCommandLocked + entities: + - uid: 168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 2 +- proto: AirlockCorpsmanLocked + entities: + - uid: 169 + components: + - type: Transform + pos: -10.5,29.5 + parent: 2 +- proto: AirlockDetectiveLocked + entities: + - uid: 170 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - uid: 171 + components: + - type: Transform + pos: -6.5,16.5 + parent: 2 + - uid: 172 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 +- proto: AirlockEngineeringGlass + entities: + - uid: 174 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 2 + - uid: 176 + components: + - type: Transform + pos: -1.5,-51.5 + parent: 2 + - uid: 11434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-32.5 + parent: 2 + - uid: 17603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-51.5 + parent: 2 + - uid: 27725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-51.5 + parent: 2 + - uid: 27752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-32.5 + parent: 2 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 177 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: 6.5,-52.5 + parent: 2 + - uid: 179 + components: + - type: Transform + pos: 8.5,-70.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: 10.5,-72.5 + parent: 2 + - uid: 181 + components: + - type: Transform + pos: 6.5,-74.5 + parent: 2 + - uid: 182 + components: + - type: Transform + pos: -7.5,-74.5 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: -9.5,-70.5 + parent: 2 + - uid: 184 + components: + - type: Transform + pos: -16.5,-70.5 + parent: 2 + - uid: 185 + components: + - type: Transform + pos: -1.5,-68.5 + parent: 2 + - uid: 186 + components: + - type: Transform + pos: 0.5,-68.5 + parent: 2 + - uid: 20483 + components: + - type: Transform + pos: -11.5,-68.5 + parent: 2 +- proto: AirlockEngineeringLocked + entities: + - uid: 187 + components: + - type: MetaData + name: Starboard Bow Service Power + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 188 + components: + - type: MetaData + name: Science Power + - type: Transform + pos: 83.5,-45.5 + parent: 2 + - uid: 189 + components: + - type: Transform + pos: 23.5,24.5 + parent: 2 + - uid: 190 + components: + - type: MetaData + name: Port Bow Service Power + - type: Transform + pos: -43.5,11.5 + parent: 2 + - uid: 191 + components: + - type: MetaData + name: 'Starboard Bow Solars ' + - type: Transform + pos: 47.5,17.5 + parent: 2 + - uid: 192 + components: + - type: MetaData + name: Port Bow Solars + - type: Transform + pos: -49.5,20.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: -27.5,-65.5 + parent: 2 + - uid: 194 + components: + - type: MetaData + name: Cargo Power + - type: Transform + pos: -19.5,-35.5 + parent: 2 + - uid: 195 + components: + - type: MetaData + name: Port Quarter Maintenance Power + - type: Transform + pos: -30.5,-65.5 + parent: 2 + - uid: 196 + components: + - type: MetaData + name: Port Quarter Solars + - type: Transform + pos: -35.5,-61.5 + parent: 2 + - uid: 197 + components: + - type: MetaData + name: Starboard Quarter Solars + - type: Transform + pos: 81.5,-62.5 + parent: 2 + - uid: 198 + components: + - type: Transform + pos: 47.5,-50.5 + parent: 2 + - uid: 199 + components: + - type: Transform + pos: 8.5,-63.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: 8.5,-59.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: -18.5,-69.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: -21.5,-69.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: -6.5,-65.5 + parent: 2 + - uid: 204 + components: + - type: Transform + pos: -4.5,-56.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: -8.5,-53.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: -10.5,-53.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: -2.5,-36.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: -0.5,-28.5 + parent: 2 + - uid: 209 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 28139 + components: + - type: Transform + pos: -66.5,11.5 + parent: 2 +- proto: AirlockEVAGlassLocked + entities: + - uid: 167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,0.5 + parent: 2 + - uid: 11433 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 + - uid: 27748 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 +- proto: AirlockEVALocked + entities: + - uid: 388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,8.5 + parent: 2 + - uid: 394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,8.5 + parent: 2 +- proto: AirlockExternal + entities: + - uid: 210 + components: + - type: Transform + pos: -61.5,17.5 + parent: 2 + - uid: 211 + components: + - type: Transform + pos: -61.5,15.5 + parent: 2 + - uid: 212 + components: + - type: Transform + pos: 83.5,-41.5 + parent: 2 +- proto: AirlockExternalAtmosphericsLocked + entities: + - uid: 213 + components: + - type: Transform + pos: 25.5,-60.5 + parent: 2 +- proto: AirlockExternalEngineeringLocked + entities: + - uid: 214 + components: + - type: Transform + pos: -14.5,-76.5 + parent: 2 + - uid: 215 + components: + - type: Transform + pos: -11.5,-76.5 + parent: 2 + - uid: 216 + components: + - type: Transform + pos: 13.5,-76.5 + parent: 2 + - uid: 217 + components: + - type: Transform + pos: 10.5,-76.5 + parent: 2 +- proto: AirlockExternalGlass + entities: + - uid: 218 + components: + - type: Transform + pos: 83.5,-13.5 + parent: 2 + - uid: 219 + components: + - type: Transform + pos: 83.5,-11.5 + parent: 2 + - uid: 220 + components: + - type: Transform + pos: 83.5,-5.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: 83.5,-3.5 + parent: 2 + - uid: 222 + components: + - type: Transform + pos: -79.5,-4.5 + parent: 2 + - uid: 223 + components: + - type: Transform + pos: -79.5,9.5 + parent: 2 + - uid: 224 + components: + - type: Transform + pos: -77.5,-14.5 + parent: 2 + - uid: 225 + components: + - type: Transform + pos: -75.5,-16.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: -68.5,-16.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: 87.5,-41.5 + parent: 2 + - uid: 228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 116.5,-42.5 + parent: 2 +- proto: AirlockExternalGlassAtmosphericsLocked + entities: + - uid: 229 + components: + - type: Transform + pos: 23.5,-60.5 + parent: 2 +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 230 + components: + - type: Transform + pos: -42.5,-28.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: -42.5,-30.5 + parent: 2 + - uid: 232 + components: + - type: Transform + pos: -29.5,-37.5 + parent: 2 + - uid: 233 + components: + - type: Transform + pos: -26.5,-37.5 + parent: 2 +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 234 + components: + - type: Transform + pos: -41.5,-61.5 + parent: 2 + - uid: 235 + components: + - type: Transform + pos: -39.5,-61.5 + parent: 2 +- proto: AirlockExternalGlassLocked + entities: + - uid: 236 + components: + - type: Transform + pos: -66.5,19.5 + parent: 2 + - uid: 237 + components: + - type: Transform + pos: -33.5,-65.5 + parent: 2 + - uid: 238 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: -49.5,26.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: -49.5,24.5 + parent: 2 + - uid: 241 + components: + - type: Transform + pos: 49.5,-66.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: 62.5,-71.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: 87.5,-57.5 + parent: 2 +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,-2.5 + parent: 2 + - uid: 245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,-2.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: -70.5,7.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: -77.5,7.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,-4.5 + parent: 2 + - uid: 249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,-14.5 + parent: 2 + - uid: 250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,9.5 + parent: 2 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,18.5 + parent: 2 + - uid: 252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-28.5 + parent: 2 + - uid: 253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-30.5 + parent: 2 +- proto: AirlockExternalLocked + entities: + - uid: 254 + components: + - type: Transform + pos: 24.5,-80.5 + parent: 2 + - uid: 255 + components: + - type: Transform + pos: 30.5,26.5 + parent: 2 + - uid: 256 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 257 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: -35.5,-65.5 + parent: 2 + - uid: 259 + components: + - type: Transform + pos: 26.5,-80.5 + parent: 2 + - uid: 260 + components: + - type: Transform + pos: 49.5,-68.5 + parent: 2 + - uid: 261 + components: + - type: Transform + pos: 81.5,-66.5 + parent: 2 + - uid: 262 + components: + - type: Transform + pos: 81.5,-68.5 + parent: 2 + - uid: 263 + components: + - type: Transform + pos: 61.5,-72.5 + parent: 2 + - uid: 264 + components: + - type: Transform + pos: 89.5,-57.5 + parent: 2 +- proto: AirlockFreezerLocked + entities: + - uid: 265 + components: + - type: MetaData + name: Freezer + - type: Transform + pos: 36.5,-3.5 + parent: 2 +- proto: AirlockGlass + entities: + - uid: 266 + components: + - type: MetaData + name: Mixing Room + - type: Transform + pos: -38.5,-49.5 + parent: 2 + - uid: 267 + components: + - type: Transform + pos: 38.5,13.5 + parent: 2 + - uid: 268 + components: + - type: MetaData + name: Library + - type: Transform + pos: 54.5,-9.5 + parent: 2 + - uid: 269 + components: + - type: MetaData + name: Chapel + - type: Transform + pos: 64.5,-8.5 + parent: 2 + - uid: 270 + components: + - type: MetaData + name: Chapel + - type: Transform + pos: 74.5,-8.5 + parent: 2 + - uid: 271 + components: + - type: MetaData + name: Departure + - type: Transform + pos: 74.5,-12.5 + parent: 2 + - uid: 272 + components: + - type: Transform + pos: 74.5,-13.5 + parent: 2 + - uid: 273 + components: + - type: Transform + pos: -31.5,13.5 + parent: 2 + - uid: 274 + components: + - type: MetaData + name: Mixing Room + - type: Transform + pos: -40.5,-49.5 + parent: 2 + - uid: 275 + components: + - type: MetaData + name: Central Access + - type: Transform + pos: 17.5,-12.5 + parent: 2 + - uid: 276 + components: + - type: MetaData + name: Central Access + - type: Transform + pos: 17.5,-14.5 + parent: 2 + - uid: 277 + components: + - type: Transform + pos: 69.5,-0.5 + parent: 2 + - uid: 278 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - uid: 279 + components: + - type: Transform + pos: -44.5,-5.5 + parent: 2 + - uid: 280 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 2 + - uid: 281 + components: + - type: Transform + pos: -35.5,-2.5 + parent: 2 + - uid: 282 + components: + - type: Transform + pos: -52.5,-2.5 + parent: 2 + - uid: 284 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 2 + - uid: 285 + components: + - type: Transform + pos: -35.5,-1.5 + parent: 2 + - uid: 286 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 + - uid: 287 + components: + - type: Transform + pos: -33.5,-3.5 + parent: 2 + - uid: 288 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - uid: 289 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 + - uid: 292 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 2 + - uid: 293 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 2 + - uid: 294 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 2 + - uid: 297 + components: + - type: Transform + pos: -9.5,-29.5 + parent: 2 + - uid: 298 + components: + - type: Transform + pos: 26.5,1.5 + parent: 2 + - uid: 299 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 300 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 301 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: 28.5,10.5 + parent: 2 + - uid: 303 + components: + - type: Transform + pos: 28.5,12.5 + parent: 2 + - uid: 305 + components: + - type: Transform + pos: 8.5,-29.5 + parent: 2 + - uid: 306 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 2 + - uid: 309 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: -38.5,0.5 + parent: 2 + - uid: 312 + components: + - type: Transform + pos: -45.5,0.5 + parent: 2 + - uid: 313 + components: + - type: Transform + pos: -7.5,46.5 + parent: 2 + - uid: 314 + components: + - type: Transform + pos: -13.5,46.5 + parent: 2 + - uid: 315 + components: + - type: Transform + pos: -10.5,48.5 + parent: 2 + - uid: 316 + components: + - type: Transform + pos: -3.5,50.5 + parent: 2 + - uid: 317 + components: + - type: Transform + pos: -14.5,42.5 + parent: 2 + - uid: 318 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 319 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 2 + - uid: 13157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 2 + - uid: 13272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-0.5 + parent: 2 + - uid: 17602 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 2 + - uid: 17660 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 17668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-23.5 + parent: 2 + - uid: 17675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-31.5 + parent: 2 + - uid: 17679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-20.5 + parent: 2 + - uid: 17696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-30.5 + parent: 2 + - uid: 17997 + components: + - type: Transform + pos: 74.5,-14.5 + parent: 2 + - uid: 18152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 2 + - uid: 25936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 2 + - uid: 27665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 2 + - uid: 27726 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 27727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-23.5 + parent: 2 + - uid: 27729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-1.5 + parent: 2 + - uid: 27751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 2 + - uid: 27761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-31.5 + parent: 2 + - uid: 27764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-20.5 + parent: 2 + - uid: 27766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-30.5 + parent: 2 + - uid: 27990 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 27991 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 28149 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - uid: 28150 + components: + - type: Transform + pos: 12.5,26.5 + parent: 2 +- proto: AirlockGlassShuttle + entities: + - uid: 321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,21.5 + parent: 2 + - type: Door + changeAirtight: False + state: Open + - type: Physics + canCollide: False + - uid: 322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,-3.5 + parent: 2 + - uid: 323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,-5.5 + parent: 2 + - uid: 324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,-13.5 + parent: 2 + - uid: 325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,-11.5 + parent: 2 + - uid: 326 + components: + - type: Transform + pos: -75.5,-18.5 + parent: 2 + - uid: 327 + components: + - type: Transform + pos: -68.5,-18.5 + parent: 2 +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 328 + components: + - type: Transform + pos: -7.5,-28.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: -7.5,-20.5 + parent: 2 +- proto: AirlockHeadOfSecurityLocked + entities: + - uid: 332 + components: + - type: Transform + pos: 12.5,36.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: 15.5,38.5 + parent: 2 + - uid: 334 + components: + - type: Transform + pos: 15.5,41.5 + parent: 2 +- proto: AirlockHydroGlassLocked + entities: + - uid: 335 + components: + - type: Transform + pos: 48.5,-1.5 + parent: 2 + - uid: 336 + components: + - type: MetaData + name: 'Hydroponics ' + - type: Transform + pos: 43.5,-11.5 + parent: 2 +- proto: AirlockJanitorLocked + entities: + - uid: 337 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 +- proto: AirlockLawyerLocked + entities: + - uid: 338 + components: + - type: Transform + pos: -13.5,18.5 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: -14.5,15.5 + parent: 2 + - uid: 340 + components: + - type: Transform + pos: -11.5,14.5 + parent: 2 +- proto: AirlockMailGlassLocked + entities: + - uid: 146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-20.5 + parent: 2 + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-19.5 + parent: 2 + - uid: 149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-16.5 + parent: 2 +- proto: AirlockMailLocked + entities: + - uid: 381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-14.5 + parent: 2 +- proto: AirlockMaint + entities: + - uid: 341 + components: + - type: Transform + pos: -2.5,-43.5 + parent: 2 + - uid: 342 + components: + - type: Transform + pos: 50.5,-62.5 + parent: 2 + - uid: 343 + components: + - type: Transform + pos: -23.5,46.5 + parent: 2 + - uid: 344 + components: + - type: MetaData + name: Unit 3 + - type: Transform + pos: -37.5,-58.5 + parent: 2 + - uid: 345 + components: + - type: MetaData + name: Unit 2 + - type: Transform + pos: -37.5,-56.5 + parent: 2 + - uid: 346 + components: + - type: MetaData + name: Unit 1 + - type: Transform + pos: -37.5,-54.5 + parent: 2 + - uid: 347 + components: + - type: Transform + pos: -11.5,-44.5 + parent: 2 + - uid: 348 + components: + - type: Transform + pos: -16.5,50.5 + parent: 2 + - uid: 349 + components: + - type: Transform + pos: -55.5,-18.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: 43.5,-69.5 + parent: 2 + - uid: 351 + components: + - type: Transform + pos: 41.5,11.5 + parent: 2 + - uid: 352 + components: + - type: Transform + pos: -45.5,-17.5 + parent: 2 + - uid: 353 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 2 + - uid: 354 + components: + - type: Transform + pos: 19.5,16.5 + parent: 2 + - uid: 355 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 356 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: 54.5,3.5 + parent: 2 + - uid: 358 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: 51.5,-7.5 + parent: 2 + - uid: 360 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - uid: 361 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 + - uid: 362 + components: + - type: Transform + pos: -63.5,11.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: -2.5,11.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: -62.5,-13.5 + parent: 2 + - uid: 365 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 2 + - uid: 366 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - uid: 367 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 2 + - uid: 368 + components: + - type: Transform + pos: 76.5,-16.5 + parent: 2 + - uid: 369 + components: + - type: Transform + pos: 81.5,-34.5 + parent: 2 + - uid: 370 + components: + - type: Transform + pos: 81.5,-38.5 + parent: 2 + - uid: 371 + components: + - type: Transform + pos: 16.5,-33.5 + parent: 2 + - uid: 372 + components: + - type: Transform + pos: 9.5,16.5 + parent: 2 + - uid: 373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 2 + - uid: 374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: -49.5,14.5 + parent: 2 +- proto: AirlockMaintAtmoLocked + entities: + - uid: 376 + components: + - type: MetaData + name: Atmos Maint + - type: Transform + pos: 13.5,-39.5 + parent: 2 +- proto: AirlockMaintBarLocked + entities: + - uid: 377 + components: + - type: MetaData + name: Bartender's Room Maintenance + - type: Transform + pos: 30.5,2.5 + parent: 2 +- proto: AirlockMaintCaptainLocked + entities: + - uid: 378 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 2 + - uid: 379 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 2 + - uid: 380 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 +- proto: AirlockMaintCargoLocked + entities: + - uid: 382 + components: + - type: MetaData + name: Cargo Bay Maintenance + - type: Transform + pos: -39.5,-19.5 + parent: 2 + - uid: 383 + components: + - type: MetaData + name: Salvage Maintenance + - type: Transform + pos: -22.5,-33.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 2 +- proto: AirlockMaintChapelLocked + entities: + - uid: 385 + components: + - type: MetaData + name: Crematorium Maintenance + - type: Transform + pos: 61.5,3.5 + parent: 2 + - uid: 386 + components: + - type: MetaData + name: Chapel's Office + - type: Transform + pos: 66.5,-1.5 + parent: 2 +- proto: AirlockMaintCommandLocked + entities: + - uid: 387 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 2 + - uid: 389 + components: + - type: MetaData + name: Command Maint + - type: Transform + pos: -14.5,-19.5 + parent: 2 + - uid: 390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-52.5 + parent: 2 + - uid: 391 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 + - uid: 392 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 2 +- proto: AirlockMaintCommonLocked + entities: + - uid: 28130 + components: + - type: Transform + pos: 82.5,-21.5 + parent: 2 + - uid: 28131 + components: + - type: Transform + pos: 85.5,-30.5 + parent: 2 + - uid: 28132 + components: + - type: Transform + pos: 82.5,-43.5 + parent: 2 + - uid: 28133 + components: + - type: Transform + pos: 75.5,-60.5 + parent: 2 + - uid: 28134 + components: + - type: Transform + pos: 68.5,-63.5 + parent: 2 + - uid: 28135 + components: + - type: Transform + pos: 65.5,-63.5 + parent: 2 +- proto: AirlockMaintEngiLocked + entities: + - uid: 393 + components: + - type: Transform + pos: 61.5,15.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: -15.5,-67.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: -19.5,-71.5 + parent: 2 +- proto: AirlockMaintGlassLocked + entities: + - uid: 397 + components: + - type: Transform + pos: -35.5,-56.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: -26.5,-46.5 + parent: 2 + - uid: 399 + components: + - type: Transform + pos: 49.5,-32.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: -31.5,-71.5 + parent: 2 + - uid: 25821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-31.5 + parent: 2 +- proto: AirlockMaintHydroLocked + entities: + - uid: 401 + components: + - type: MetaData + name: Hydroponics Maintenance + - type: Transform + pos: 43.5,1.5 + parent: 2 +- proto: AirlockMaintJanitorLocked + entities: + - uid: 402 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 +- proto: AirlockMaintKitchenLocked + entities: + - uid: 403 + components: + - type: MetaData + name: Freezer Maintenance + - type: Transform + pos: 36.5,1.5 + parent: 2 +- proto: AirlockMaintLocked + entities: + - uid: 404 + components: + - type: Transform + pos: 25.5,-99.5 + parent: 2 + - uid: 405 + components: + - type: Transform + pos: 31.5,-99.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: -57.5,-12.5 + parent: 2 + - uid: 407 + components: + - type: MetaData + name: Ghetto Kitchen + - type: Transform + pos: -34.5,-45.5 + parent: 2 + - uid: 408 + components: + - type: MetaData + name: Incinerator + - type: Transform + pos: -33.5,-52.5 + parent: 2 + - uid: 409 + components: + - type: Transform + pos: 24.5,-94.5 + parent: 2 + - uid: 410 + components: + - type: Transform + pos: 32.5,-94.5 + parent: 2 + - uid: 411 + components: + - type: Transform + pos: 68.5,5.5 + parent: 2 + - uid: 412 + components: + - type: Transform + pos: -4.5,-59.5 + parent: 2 + - uid: 413 + components: + - type: MetaData + name: Primary Tool Storage Maintenance + - type: Transform + pos: -45.5,6.5 + parent: 2 + - uid: 414 + components: + - type: MetaData + name: Ghetto Surgery + - type: Transform + pos: -55.5,7.5 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: -17.5,-32.5 + parent: 2 + - uid: 416 + components: + - type: Transform + pos: -2.5,-53.5 + parent: 2 + - uid: 417 + components: + - type: MetaData + name: Incinerator + - type: Transform + pos: -30.5,-47.5 + parent: 2 + - uid: 418 + components: + - type: MetaData + name: Construction Area + - type: Transform + pos: -19.5,-53.5 + parent: 2 + - uid: 419 + components: + - type: Transform + pos: 49.5,-25.5 + parent: 2 + - uid: 420 + components: + - type: Transform + pos: 49.5,-38.5 + parent: 2 + - uid: 421 + components: + - type: MetaData + name: Courtroom Maintenance + - type: Transform + pos: 19.5,20.5 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: 49.5,-15.5 + parent: 2 + - uid: 423 + components: + - type: Transform + pos: -49.5,0.5 + parent: 2 + - uid: 424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,3.5 + parent: 2 + - uid: 425 + components: + - type: Transform + pos: -38.5,-9.5 + parent: 2 +- proto: AirlockMaintMedLocked + entities: + - uid: 426 + components: + - type: MetaData + name: Psych maint hatch + - type: Transform + pos: 14.5,-35.5 + parent: 2 + - uid: 427 + components: + - type: Transform + pos: 33.5,-39.5 + parent: 2 + - uid: 428 + components: + - type: MetaData + name: Medbay Maintenance + - type: Transform + pos: 42.5,-49.5 + parent: 2 + - uid: 429 + components: + - type: MetaData + name: 'Medbay Maintenance ' + - type: Transform + pos: 25.5,-37.5 + parent: 2 + - uid: 430 + components: + - type: MetaData + name: 'Morgue Maintenance ' + - type: Transform + pos: 47.5,-20.5 + parent: 2 +- proto: AirlockMaintRnDLocked + entities: + - uid: 431 + components: + - type: MetaData + name: Artifact Room Maintenance + - type: Transform + pos: 83.5,-23.5 + parent: 2 + - uid: 432 + components: + - type: MetaData + name: Testing Lab Maintenance + - type: Transform + pos: 66.5,-54.5 + parent: 2 + - uid: 433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-17.5 + parent: 2 + - uid: 434 + components: + - type: Transform + pos: 76.5,-52.5 + parent: 2 +- proto: AirlockMaintSecLocked + entities: + - uid: 435 + components: + - type: MetaData + name: Security Checkpoint Maintenance + - type: Transform + pos: -56.5,6.5 + parent: 2 + - uid: 436 + components: + - type: MetaData + name: Security Maintenance + - type: Transform + pos: 18.5,30.5 + parent: 2 + - uid: 437 + components: + - type: Transform + pos: 22.5,29.5 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: 21.5,27.5 + parent: 2 +- proto: AirlockMantisLocked + entities: + - uid: 439 + components: + - type: Transform + pos: 63.5,-46.5 + parent: 2 +- proto: AirlockMedicalGlass + entities: + - uid: 440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-30.5 + parent: 2 + - uid: 441 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 + - uid: 442 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 2 + - uid: 444 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 2 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 445 + components: + - type: Transform + pos: 39.5,-25.5 + parent: 2 + - uid: 446 + components: + - type: MetaData + name: Giga Break Room + - type: Transform + pos: 43.5,-35.5 + parent: 2 + - uid: 447 + components: + - type: MetaData + name: Medical Storage + - type: Transform + pos: 38.5,-39.5 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 2 + - uid: 449 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 2 + - uid: 450 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 2 + - uid: 451 + components: + - type: Transform + pos: 17.5,-27.5 + parent: 2 + - uid: 452 + components: + - type: MetaData + name: Patient Room 2 + - type: Transform + pos: 38.5,-49.5 + parent: 2 + - uid: 453 + components: + - type: MetaData + name: Operating Theatre + - type: Transform + pos: 23.5,-34.5 + parent: 2 + - uid: 454 + components: + - type: MetaData + name: Recovery Room + - type: Transform + pos: 25.5,-31.5 + parent: 2 + - uid: 455 + components: + - type: MetaData + name: Cryonics + - type: Transform + pos: 27.5,-33.5 + parent: 2 + - uid: 456 + components: + - type: MetaData + name: Patient Room 1 + - type: Transform + pos: 38.5,-46.5 + parent: 2 + - uid: 457 + components: + - type: MetaData + name: Cryonics + - type: Transform + pos: 36.5,-33.5 + parent: 2 + - uid: 458 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 2 + - uid: 459 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 2 + - uid: 460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-39.5 + parent: 2 + - uid: 461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-19.5 + parent: 2 + - uid: 462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-28.5 + parent: 2 +- proto: AirlockMedicalLocked + entities: + - uid: 463 + components: + - type: MetaData + name: Psych office + - type: Transform + pos: 12.5,-32.5 + parent: 2 + - uid: 464 + components: + - type: MetaData + name: Surgery Observation + - type: Transform + pos: 20.5,-28.5 + parent: 2 + - uid: 465 + components: + - type: MetaData + name: Morgue + - type: Transform + pos: 44.5,-15.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: 47.5,-27.5 + parent: 2 + - uid: 467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-20.5 + parent: 2 + - uid: 468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-35.5 + parent: 2 +- proto: AirlockQuartermasterGlassLocked + entities: + - uid: 469 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 2 +- proto: AirlockQuartermasterLocked + entities: + - uid: 470 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 2 + - uid: 471 + components: + - type: Transform + pos: -34.5,-32.5 + parent: 2 + - uid: 472 + components: + - type: Transform + pos: -31.5,-32.5 + parent: 2 +- proto: AirlockResearchDirectorLocked + entities: + - uid: 473 + components: + - type: MetaData + name: Research Director + - type: Transform + pos: 68.5,-36.5 + parent: 2 + - uid: 474 + components: + - type: MetaData + name: Server Room + - type: Transform + pos: 54.5,-30.5 + parent: 2 + - uid: 475 + components: + - type: MetaData + name: Server Room + - type: Transform + pos: 55.5,-28.5 + parent: 2 + - uid: 476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-33.5 + parent: 2 + - uid: 477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-36.5 + parent: 2 +- proto: AirlockSalvageGlassLocked + entities: + - uid: 478 + components: + - type: Transform + pos: -24.5,-35.5 + parent: 2 + - uid: 479 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 2 +- proto: AirlockScienceGlassLocked + entities: + - uid: 480 + components: + - type: MetaData + name: Testing Lab + - type: Transform + pos: 66.5,-49.5 + parent: 2 + - uid: 481 + components: + - type: Transform + pos: 64.5,-35.5 + parent: 2 + - uid: 482 + components: + - type: Transform + pos: 56.5,-18.5 + parent: 2 + - uid: 483 + components: + - type: MetaData + name: Toxins Lab + - type: Transform + pos: 69.5,-45.5 + parent: 2 + - uid: 484 + components: + - type: MetaData + name: Robotics + - type: Transform + pos: 62.5,-25.5 + parent: 2 + - uid: 485 + components: + - type: MetaData + name: Mixing Room + - type: Transform + pos: 75.5,-40.5 + parent: 2 + - uid: 486 + components: + - type: MetaData + name: Mixing Room + - type: Transform + pos: 73.5,-40.5 + parent: 2 + - uid: 487 + components: + - type: MetaData + name: Toxins Launch + - type: Transform + pos: 79.5,-36.5 + parent: 2 + - uid: 488 + components: + - type: MetaData + name: Toxins Launch + - type: Transform + pos: 83.5,-36.5 + parent: 2 + - uid: 489 + components: + - type: MetaData + name: Artifact Research + - type: Transform + pos: 75.5,-23.5 + parent: 2 + - uid: 490 + components: + - type: MetaData + name: Artifact Room + - type: Transform + pos: 82.5,-27.5 + parent: 2 + - uid: 491 + components: + - type: Transform + pos: 53.5,-25.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: 61.5,-28.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: 56.5,-56.5 + parent: 2 + - uid: 494 + components: + - type: Transform + pos: 57.5,-54.5 + parent: 2 + - uid: 495 + components: + - type: Transform + pos: 54.5,-56.5 + parent: 2 +- proto: AirlockScienceLocked + entities: + - uid: 496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-40.5 + parent: 2 + - uid: 497 + components: + - type: Transform + pos: 51.5,-27.5 + parent: 2 + - uid: 498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-37.5 + parent: 2 + - uid: 499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-35.5 + parent: 2 + - uid: 500 + components: + - type: Transform + pos: 65.5,-16.5 + parent: 2 + - uid: 501 + components: + - type: Transform + pos: 67.5,-16.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: 65.5,-20.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: 67.5,-20.5 + parent: 2 + - uid: 504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-40.5 + parent: 2 +- proto: AirlockSecurityGlass + entities: + - uid: 505 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - uid: 27967 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 27968 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 507 + components: + - type: Transform + pos: 80.5,-4.5 + parent: 2 + - uid: 508 + components: + - type: Transform + pos: 1.5,25.5 + parent: 2 + - uid: 509 + components: + - type: Transform + pos: 9.5,25.5 + parent: 2 + - uid: 510 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: 8.5,33.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: 20.5,33.5 + parent: 2 + - uid: 513 + components: + - type: Transform + pos: -5.5,34.5 + parent: 2 + - uid: 514 + components: + - type: Transform + pos: -5.5,38.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: -10.5,37.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: -10.5,42.5 + parent: 2 + - uid: 517 + components: + - type: Transform + pos: -14.5,40.5 + parent: 2 + - uid: 518 + components: + - type: Transform + pos: -14.5,37.5 + parent: 2 + - uid: 519 + components: + - type: Transform + pos: -18.5,-30.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: -8.5,28.5 + parent: 2 + - uid: 20619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,2.5 + parent: 2 +- proto: AirlockSecurityLawyerGlassLocked + entities: + - uid: 520 + components: + - type: Transform + pos: 4.5,25.5 + parent: 2 + - uid: 521 + components: + - type: Transform + pos: 6.5,25.5 + parent: 2 + - uid: 522 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 523 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 +- proto: AirlockSecurityLocked + entities: + - uid: 525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,25.5 + parent: 2 + - uid: 526 + components: + - type: Transform + pos: -13.5,28.5 + parent: 2 + - uid: 527 + components: + - type: Transform + pos: -13.5,33.5 + parent: 2 + - uid: 528 + components: + - type: Transform + pos: -15.5,32.5 + parent: 2 + - uid: 529 + components: + - type: Transform + pos: -16.5,35.5 + parent: 2 +- proto: AirlockServiceCaptainLocked + entities: + - uid: 531 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 532 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - uid: 534 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 2 +- proto: AirlockServiceGlassLocked + entities: + - uid: 536 + components: + - type: Transform + pos: 41.5,-5.5 + parent: 2 + - uid: 28095 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 + - uid: 28137 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 2 +- proto: AirlockServiceLocked + entities: + - uid: 537 + components: + - type: MetaData + name: Private Study + - type: Transform + pos: 62.5,-4.5 + parent: 2 + - uid: 538 + components: + - type: MetaData + name: Vacant Office A + - type: Transform + pos: -62.5,-10.5 + parent: 2 +- proto: AirlockTheatreLocked + entities: + - uid: 539 + components: + - type: Transform + pos: 23.5,4.5 + parent: 2 + - uid: 23530 + components: + - type: Transform + pos: 21.5,1.5 + parent: 2 +- proto: AirlockVirologyGlassLocked + entities: + - uid: 540 + components: + - type: Transform + pos: 47.5,-57.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: 45.5,-54.5 + parent: 2 + - uid: 542 + components: + - type: Transform + pos: 37.5,-55.5 + parent: 2 + - uid: 543 + components: + - type: Transform + pos: 43.5,-57.5 + parent: 2 +- proto: AirlockVirologyLocked + entities: + - uid: 544 + components: + - type: Transform + pos: 40.5,-50.5 + parent: 2 + - uid: 545 + components: + - type: Transform + pos: 40.5,-54.5 + parent: 2 +- proto: AirSensor + entities: + - uid: 546 + components: + - type: Transform + pos: 69.5,-52.5 + parent: 2 + - uid: 547 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8 + - uid: 548 + components: + - type: Transform + pos: 32.5,-34.5 + parent: 2 + - uid: 549 + components: + - type: Transform + pos: 63.5,-13.5 + parent: 2 + - uid: 550 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: -0.5,-49.5 + parent: 2 + - uid: 552 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - uid: 553 + components: + - type: Transform + pos: 5.5,-48.5 + parent: 2 + - uid: 554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-56.5 + parent: 2 + - uid: 555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-47.5 + parent: 2 + - uid: 556 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 2 + - uid: 557 + components: + - type: Transform + pos: -8.5,-76.5 + parent: 2 + - uid: 558 + components: + - type: Transform + pos: 7.5,-76.5 + parent: 2 + - uid: 559 + components: + - type: Transform + pos: 11.5,-73.5 + parent: 2 + - uid: 560 + components: + - type: Transform + pos: -4.5,-72.5 + parent: 2 + - uid: 561 + components: + - type: Transform + pos: 3.5,-72.5 + parent: 2 + - uid: 562 + components: + - type: Transform + pos: -15.5,-72.5 + parent: 2 + - uid: 563 + components: + - type: Transform + pos: -23.5,-67.5 + parent: 2 + - uid: 564 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 2 + - uid: 565 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 2 + - uid: 566 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - uid: 568 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - uid: 569 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - uid: 570 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 2 + - uid: 571 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 2 + - uid: 572 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 2 + - uid: 576 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 + - uid: 577 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 578 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 580 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 2 + - uid: 581 + components: + - type: Transform + pos: 45.5,-7.5 + parent: 2 + - uid: 582 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 2 + - uid: 583 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 584 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 2 + - uid: 586 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 2 + - uid: 587 + components: + - type: Transform + pos: 40.5,-33.5 + parent: 2 + - uid: 588 + components: + - type: Transform + pos: 45.5,-27.5 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: 39.5,-28.5 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: 40.5,-43.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: 40.5,-57.5 + parent: 2 + - uid: 592 + components: + - type: Transform + pos: -6.5,-63.5 + parent: 2 + - uid: 593 + components: + - type: Transform + pos: 66.5,-13.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: 78.5,-12.5 + parent: 2 + - uid: 596 + components: + - type: Transform + pos: 72.5,-10.5 + parent: 2 + - uid: 597 + components: + - type: Transform + pos: 66.5,3.5 + parent: 2 + - uid: 598 + components: + - type: Transform + pos: 54.5,-3.5 + parent: 2 + - uid: 599 + components: + - type: Transform + pos: 61.5,-21.5 + parent: 2 + - uid: 600 + components: + - type: Transform + pos: 66.5,-24.5 + parent: 2 + - uid: 601 + components: + - type: Transform + pos: 73.5,-23.5 + parent: 2 + - uid: 602 + components: + - type: Transform + pos: 80.5,-24.5 + parent: 2 + - uid: 603 + components: + - type: Transform + pos: 69.5,-37.5 + parent: 2 + - uid: 604 + components: + - type: Transform + pos: 72.5,-40.5 + parent: 2 + - uid: 605 + components: + - type: Transform + pos: 77.5,-45.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: 66.5,-45.5 + parent: 2 + - uid: 607 + components: + - type: Transform + pos: 67.5,-39.5 + parent: 2 + - uid: 608 + components: + - type: Transform + pos: 55.5,-30.5 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 2 + - uid: 610 + components: + - type: Transform + pos: -26.5,-33.5 + parent: 2 + - uid: 611 + components: + - type: Transform + pos: -32.5,-26.5 + parent: 2 + - uid: 612 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - uid: 613 + components: + - type: Transform + pos: -32.5,3.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: -46.5,-1.5 + parent: 2 + - uid: 615 + components: + - type: Transform + pos: -42.5,3.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 618 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 619 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: 16.5,21.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: -3.5,27.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - uid: 624 + components: + - type: Transform + pos: 0.5,32.5 + parent: 2 + - uid: 625 + components: + - type: Transform + pos: 3.5,36.5 + parent: 2 + - uid: 626 + components: + - type: Transform + pos: 9.5,37.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: 24.5,33.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: -57.5,1.5 + parent: 2 + - uid: 630 + components: + - type: Transform + pos: -57.5,-5.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: -65.5,-4.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: -73.5,9.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: -70.5,-14.5 + parent: 2 + - uid: 634 + components: + - type: Transform + pos: -51.5,-8.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: -5.5,51.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: 0.5,50.5 + parent: 2 + - uid: 637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-39.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 84 + - uid: 639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-39.5 + parent: 2 + - uid: 640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-46.5 + parent: 2 + - uid: 641 + components: + - type: Transform + pos: -43.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 89 + - uid: 642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 90 + - uid: 643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-25.5 + parent: 2 + - uid: 644 + components: + - type: Transform + pos: -2.5,32.5 + parent: 2 + - uid: 646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 92 +- proto: AltarConvertMaint + entities: + - uid: 647 + components: + - type: Transform + pos: 43.5,-73.5 + parent: 2 +- proto: AltarSpawner + entities: + - uid: 648 + components: + - type: Transform + pos: 69.5,-3.5 + parent: 2 +- proto: AlwaysPoweredWallLight + entities: + - uid: 649 + components: + - type: Transform + pos: 116.5,-35.5 + parent: 2 + - uid: 650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,12.5 + parent: 2 + - uid: 651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 116.5,-41.5 + parent: 2 +- proto: AmeController + entities: + - uid: 652 + components: + - type: Transform + pos: 12.5,-70.5 + parent: 2 +- proto: AmmoTechFabCircuitboard + entities: + - uid: 653 + components: + - type: Transform + pos: -13.491709,-36.440224 + parent: 2 +- proto: APCBasic + entities: + - uid: 654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-29.5 + parent: 2 + - uid: 655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-111.5 + parent: 2 + - uid: 656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-100.5 + parent: 2 + - uid: 657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-92.5 + parent: 2 + - uid: 658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-92.5 + parent: 2 + - uid: 659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,14.5 + parent: 2 + - uid: 660 + components: + - type: MetaData + name: Cargo Bay APC + - type: Transform + pos: -38.5,-19.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 85 + supplyRampPosition: 53.91901 + - uid: 661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-29.5 + parent: 2 + - uid: 662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-86.5 + parent: 2 + - uid: 663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 2 + - uid: 664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 2 + - uid: 665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-15.5 + parent: 2 + - uid: 666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-21.5 + parent: 2 + - uid: 667 + components: + - type: MetaData + name: Hibernation APC + - type: Transform + pos: 25.5,20.5 + parent: 2 + - type: Battery + startingCharge: 12000 + - type: PowerNetworkBattery + loadingNetworkDemand: 10 + currentReceiving: 10.019571 + currentSupply: 10 + - uid: 668 + components: + - type: MetaData + name: Telebay APC + - type: Transform + pos: 39.5,14.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 10 + supplyRampPosition: 1.347667 + - uid: 669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,8.5 + parent: 2 + - uid: 670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,13.5 + parent: 2 + - uid: 671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,4.5 + parent: 2 + - uid: 672 + components: + - type: MetaData + name: Port Quarter Maintenance APC + - type: Transform + pos: -29.5,-63.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 55 + supplyRampPosition: 2.6408517 + - uid: 673 + components: + - type: MetaData + name: Kitchen APC + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - uid: 674 + components: + - type: MetaData + name: Bartender's Room APC + - type: Transform + pos: 31.5,2.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 20 + supplyRampPosition: 0.010999783 + - uid: 675 + components: + - type: MetaData + name: Bar APC + - type: Transform + pos: 28.5,-3.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 10 + supplyRampPosition: 2.735612 + - uid: 676 + components: + - type: Transform + pos: -7.5,53.5 + parent: 2 + - uid: 677 + components: + - type: MetaData + name: Courtroom APC + - type: Transform + pos: 15.5,29.5 + parent: 2 + - type: Battery + startingCharge: 12000 + - type: PowerNetworkBattery + loadingNetworkDemand: 15 + currentReceiving: 15.000059 + currentSupply: 15 + supplyRampPosition: -5.9127808E-05 + - uid: 678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-15.5 + parent: 2 + - uid: 679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 2 + - uid: 680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,34.5 + parent: 2 + - uid: 681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,39.5 + parent: 2 + - uid: 682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,38.5 + parent: 2 + - uid: 683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,22.5 + parent: 2 + - uid: 684 + components: + - type: MetaData + name: Brig APC + - type: Transform + pos: -3.5,29.5 + parent: 2 + - type: Battery + startingCharge: 12000 + - type: PowerNetworkBattery + loadingNetworkDemand: 120 + currentReceiving: 120.00047 + currentSupply: 120 + supplyRampPosition: -0.00047302246 + - uid: 685 + components: + - type: Transform + pos: 0.5,52.5 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: -19.5,46.5 + parent: 2 + - uid: 687 + components: + - type: Transform + pos: -10.5,46.5 + parent: 2 + - uid: 688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,35.5 + parent: 2 + - uid: 689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,23.5 + parent: 2 + - uid: 690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,1.5 + parent: 2 + - uid: 691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-3.5 + parent: 2 + - uid: 692 + components: + - type: MetaData + name: Hydroponics APC + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 65 + supplyRampPosition: 17.574497 + - uid: 693 + components: + - type: MetaData + name: Chapel APC + - type: Transform + pos: 73.5,-4.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 45 + supplyRampPosition: 2.4463015 + - uid: 694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-10.5 + parent: 2 + - uid: 695 + components: + - type: MetaData + name: Ghetto Morgue APC + - type: Transform + pos: 66.5,20.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 5 + supplyRampPosition: 2.4463015 + - uid: 696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-18.5 + parent: 2 + - uid: 697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,22.5 + parent: 2 + - uid: 698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,20.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 15 + supplyRampPosition: 1.142588 + - uid: 700 + components: + - type: MetaData + name: Primary Tool Storage APC + - type: Transform + pos: -43.5,6.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 30 + supplyRampPosition: 18.132214 + - uid: 701 + components: + - type: MetaData + name: Security Checkpoint APC + - type: Transform + pos: -57.5,6.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 25 + supplyRampPosition: 9.296312 + - uid: 702 + components: + - type: MetaData + name: Arrivals APC + - type: Transform + pos: -65.5,-2.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 145 + supplyRampPosition: 32.478764 + - uid: 703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-17.5 + parent: 2 + - uid: 704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-9.5 + parent: 2 + - uid: 705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-9.5 + parent: 2 + - uid: 706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-10.5 + parent: 2 + - uid: 707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 2 + - uid: 708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-63.5 + parent: 2 + - uid: 709 + components: + - type: MetaData + name: Janitor Closet APC + - type: Transform + pos: -52.5,-6.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 5 + supplyRampPosition: 2.4463015 + - uid: 710 + components: + - type: MetaData + name: Cargo Office APC + - type: Transform + pos: -25.5,-20.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 65 + supplyRampPosition: 2.4463015 + - uid: 711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-35.5 + parent: 2 + - uid: 712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-25.5 + parent: 2 + - uid: 713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-54.5 + parent: 2 + - uid: 714 + components: + - type: MetaData + name: Telecomms APC + - type: Transform + pos: -8.5,-54.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 10 + supplyRampPosition: 1.347667 + - uid: 715 + components: + - type: MetaData + name: Security Office APC + - type: Transform + pos: 8.5,-49.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 10 + supplyRampPosition: 1.347667 + - uid: 716 + components: + - type: MetaData + name: Engine Room APC + - type: Transform + pos: 1.5,-68.5 + parent: 2 + - uid: 717 + components: + - type: MetaData + name: Chief Engineer's Office APC + - type: Transform + pos: 1.5,-60.5 + parent: 2 + - uid: 718 + components: + - type: MetaData + name: Storage APC + - type: Transform + pos: -3.5,-61.5 + parent: 2 + - uid: 719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-33.5 + parent: 2 + - uid: 720 + components: + - type: Transform + pos: -24.5,-63.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 5 + supplyRampPosition: 2.4463015 + - uid: 721 + components: + - type: MetaData + name: Medbay APC + - type: Transform + pos: 30.5,-26.5 + parent: 2 + - type: Battery + startingCharge: 12000 + - type: PowerNetworkBattery + loadingNetworkDemand: 55 + currentReceiving: 55.01975 + currentSupply: 55 + - uid: 722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-54.5 + parent: 2 + - uid: 723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-36.5 + parent: 2 + - uid: 724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-20.5 + parent: 2 + - uid: 725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-26.5 + parent: 2 + - uid: 726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-30.5 + parent: 2 + - uid: 727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-38.5 + parent: 2 + - uid: 728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-32.5 + parent: 2 + - uid: 729 + components: + - type: MetaData + name: Toxins Lab APC + - type: Transform + pos: 75.5,-42.5 + parent: 2 + - type: Battery + startingCharge: 12000 + - type: PowerNetworkBattery + loadingNetworkDemand: 10 + currentReceiving: 10.019571 + currentSupply: 10 + - uid: 730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-36.5 + parent: 2 + - uid: 731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-34.5 + parent: 2 + - uid: 732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-40.5 + parent: 2 + - uid: 733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-26.5 + parent: 2 + - uid: 734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,30.5 + parent: 2 + - uid: 735 + components: + - type: Transform + pos: 58.5,-38.5 + parent: 2 + - type: Apc + hasAccess: True + lastExternalState: Good + lastChargeState: Full + - uid: 736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,14.5 + parent: 2 + - uid: 737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-48.5 + parent: 2 + - uid: 738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-54.5 + parent: 2 + - uid: 739 + components: + - type: Transform + pos: 0.5,34.5 + parent: 2 + - uid: 740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,15.5 + parent: 2 + - uid: 741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-30.5 + parent: 2 + - uid: 742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,3.5 + parent: 2 + - uid: 743 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 2 +- proto: APCElectronics + entities: + - uid: 744 + components: + - type: Transform + pos: -8.565296,-35.527206 + parent: 2 + - uid: 745 + components: + - type: Transform + pos: -8.487171,-35.26158 + parent: 2 +- proto: APCHighCapacity + entities: + - uid: 746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,4.5 + parent: 2 + - uid: 747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,10.5 + parent: 2 + - uid: 748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,5.5 + parent: 2 + - uid: 749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,19.5 + parent: 2 + - uid: 750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-19.5 + parent: 2 + - uid: 751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-36.5 + parent: 2 + - uid: 752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,-46.5 + parent: 2 + - uid: 753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,-64.5 + parent: 2 + - uid: 754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-41.5 + parent: 2 +- proto: ArrivalsShuttleTimer + entities: + - uid: 755 + components: + - type: Transform + pos: -71.5,7.5 + parent: 2 + - uid: 756 + components: + - type: Transform + pos: -76.5,7.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: -72.5,-12.5 + parent: 2 + - uid: 758 + components: + - type: Transform + pos: -76.5,-2.5 + parent: 2 + - uid: 759 + components: + - type: Transform + pos: -71.5,-2.5 + parent: 2 +- proto: Ash + entities: + - uid: 760 + components: + - type: Transform + pos: -36.5,20.5 + parent: 2 +- proto: AtmosDeviceFanTiny + entities: + - uid: 761 + components: + - type: Transform + pos: -77.5,-14.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: -79.5,-4.5 + parent: 2 + - uid: 763 + components: + - type: Transform + pos: -75.5,-16.5 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: -77.5,7.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: -70.5,7.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 2 + - uid: 767 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 768 + components: + - type: Transform + pos: -70.5,-2.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: -77.5,-2.5 + parent: 2 + - uid: 770 + components: + - type: Transform + pos: -66.5,21.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: 84.5,-13.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: 84.5,-11.5 + parent: 2 + - uid: 773 + components: + - type: Transform + pos: 84.5,-5.5 + parent: 2 + - uid: 774 + components: + - type: Transform + pos: 84.5,-3.5 + parent: 2 + - uid: 775 + components: + - type: Transform + pos: -44.5,-28.5 + parent: 2 + - uid: 776 + components: + - type: Transform + pos: -44.5,-30.5 + parent: 2 + - uid: 777 + components: + - type: Transform + pos: -68.5,-16.5 + parent: 2 + - uid: 778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,18.5 + parent: 2 + - uid: 779 + components: + - type: Transform + pos: -81.5,-4.5 + parent: 2 + - uid: 780 + components: + - type: Transform + pos: -75.5,-18.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: -79.5,9.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: -79.5,-14.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: -68.5,-18.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: -81.5,9.5 + parent: 2 + - uid: 785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,18.5 + parent: 2 + - uid: 786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,-37.5 + parent: 2 +- proto: AtmosFixBlockerMarker + entities: + - uid: 787 + components: + - type: Transform + pos: 26.5,-55.5 + parent: 2 + - uid: 788 + components: + - type: Transform + pos: 26.5,-54.5 + parent: 2 + - uid: 789 + components: + - type: Transform + pos: 27.5,-56.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: 27.5,-54.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: 28.5,-56.5 + parent: 2 + - uid: 792 + components: + - type: Transform + pos: 28.5,-55.5 + parent: 2 + - uid: 793 + components: + - type: Transform + pos: 26.5,-52.5 + parent: 2 + - uid: 794 + components: + - type: Transform + pos: 26.5,-51.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: 26.5,-50.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: 27.5,-51.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: 27.5,-50.5 + parent: 2 + - uid: 798 + components: + - type: Transform + pos: 28.5,-52.5 + parent: 2 + - uid: 799 + components: + - type: Transform + pos: 28.5,-50.5 + parent: 2 + - uid: 800 + components: + - type: Transform + pos: 26.5,-44.5 + parent: 2 + - uid: 801 + components: + - type: Transform + pos: 26.5,-42.5 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: 27.5,-44.5 + parent: 2 + - uid: 803 + components: + - type: Transform + pos: 27.5,-43.5 + parent: 2 + - uid: 804 + components: + - type: Transform + pos: 28.5,-44.5 + parent: 2 + - uid: 805 + components: + - type: Transform + pos: 28.5,-43.5 + parent: 2 + - uid: 806 + components: + - type: Transform + pos: 26.5,-56.5 + parent: 2 + - uid: 807 + components: + - type: Transform + pos: 27.5,-55.5 + parent: 2 + - uid: 808 + components: + - type: Transform + pos: 28.5,-54.5 + parent: 2 + - uid: 809 + components: + - type: Transform + pos: 27.5,-52.5 + parent: 2 + - uid: 810 + components: + - type: Transform + pos: 28.5,-51.5 + parent: 2 + - uid: 811 + components: + - type: Transform + pos: 26.5,-43.5 + parent: 2 + - uid: 812 + components: + - type: Transform + pos: 27.5,-42.5 + parent: 2 + - uid: 813 + components: + - type: Transform + pos: 28.5,-42.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 814 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 2 + - uid: 815 + components: + - type: Transform + pos: 39.5,0.5 + parent: 2 + - uid: 816 + components: + - type: Transform + pos: 39.5,-1.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: 38.5,0.5 + parent: 2 + - uid: 818 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 2 + - uid: 819 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 2 + - uid: 820 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 2 + - uid: 821 + components: + - type: Transform + pos: 37.5,0.5 + parent: 2 + - uid: 822 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 2 + - uid: 823 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 2 + - uid: 824 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 2 + - uid: 825 + components: + - type: Transform + pos: 36.5,0.5 + parent: 2 + - uid: 826 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 2 + - uid: 827 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 2 + - uid: 828 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 2 + - uid: 829 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - uid: 830 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 2 + - uid: 831 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 833 + components: + - type: Transform + pos: 40.5,0.5 + parent: 2 + - uid: 834 + components: + - type: Transform + pos: 40.5,-2.5 + parent: 2 + - uid: 835 + components: + - type: Transform + pos: 39.5,-2.5 + parent: 2 + - uid: 836 + components: + - type: Transform + pos: 40.5,-0.5 + parent: 2 + - uid: 837 + components: + - type: Transform + pos: 40.5,-1.5 + parent: 2 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 838 + components: + - type: Transform + pos: 12.5,-64.5 + parent: 2 + - uid: 839 + components: + - type: Transform + pos: 13.5,-66.5 + parent: 2 + - uid: 840 + components: + - type: Transform + pos: 14.5,-65.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: 14.5,-66.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: 14.5,-64.5 + parent: 2 + - uid: 843 + components: + - type: Transform + pos: 13.5,-65.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: 13.5,-64.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: 12.5,-66.5 + parent: 2 + - uid: 846 + components: + - type: Transform + pos: 12.5,-65.5 + parent: 2 +- proto: AtmosFixOxygenMarker + entities: + - uid: 847 + components: + - type: Transform + pos: 16.5,-64.5 + parent: 2 + - uid: 848 + components: + - type: Transform + pos: 16.5,-66.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: 17.5,-64.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: 17.5,-65.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: 18.5,-64.5 + parent: 2 + - uid: 852 + components: + - type: Transform + pos: 18.5,-65.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: 18.5,-66.5 + parent: 2 + - uid: 854 + components: + - type: Transform + pos: 16.5,-65.5 + parent: 2 + - uid: 855 + components: + - type: Transform + pos: 17.5,-66.5 + parent: 2 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 856 + components: + - type: Transform + pos: 26.5,-48.5 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: 26.5,-47.5 + parent: 2 + - uid: 858 + components: + - type: Transform + pos: 27.5,-48.5 + parent: 2 + - uid: 859 + components: + - type: Transform + pos: 27.5,-47.5 + parent: 2 + - uid: 860 + components: + - type: Transform + pos: 27.5,-46.5 + parent: 2 + - uid: 861 + components: + - type: Transform + pos: 28.5,-47.5 + parent: 2 + - uid: 862 + components: + - type: Transform + pos: 28.5,-46.5 + parent: 2 + - uid: 863 + components: + - type: Transform + pos: 26.5,-46.5 + parent: 2 + - uid: 864 + components: + - type: Transform + pos: 28.5,-48.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 865 + components: + - type: Transform + pos: 69.5,-19.5 + parent: 2 + - type: MaterialStorage + materialWhiteList: + - Steel + - Plastic + - Wood + - Glass + - Cloth + - uid: 866 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 2 + - type: MaterialStorage + materialWhiteList: + - Steel + - Plastic + - Wood + - Glass + - Cloth + - uid: 867 + components: + - type: Transform + pos: 2.5,-51.5 + parent: 2 +- proto: AutolatheMachineCircuitboard + entities: + - uid: 868 + components: + - type: Transform + pos: -5.5652957,-37.29283 + parent: 2 +- proto: BackgammonBoard + entities: + - uid: 869 + components: + - type: Transform + pos: 63.5,-7.5 + parent: 2 +- proto: BalloonCorgi + entities: + - uid: 870 + components: + - type: Transform + pos: -10.073572,-27.22326 + parent: 2 +- proto: Barricade + entities: + - uid: 871 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 872 + components: + - type: Transform + pos: 65.5,15.5 + parent: 2 + - uid: 873 + components: + - type: Transform + pos: 62.5,16.5 + parent: 2 + - uid: 874 + components: + - type: Transform + pos: 61.5,16.5 + parent: 2 + - uid: 875 + components: + - type: Transform + pos: 60.5,16.5 + parent: 2 + - uid: 876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,19.5 + parent: 2 + - uid: 877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,22.5 + parent: 2 + - uid: 878 + components: + - type: Transform + pos: -39.5,21.5 + parent: 2 + - uid: 879 + components: + - type: Transform + pos: -31.5,17.5 + parent: 2 + - uid: 880 + components: + - type: Transform + pos: -55.5,7.5 + parent: 2 + - uid: 881 + components: + - type: Transform + pos: -30.5,-54.5 + parent: 2 + - uid: 882 + components: + - type: Transform + pos: -30.5,-53.5 + parent: 2 + - uid: 883 + components: + - type: Transform + pos: -33.5,-55.5 + parent: 2 + - uid: 884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-58.5 + parent: 2 + - uid: 885 + components: + - type: Transform + pos: -19.5,-53.5 + parent: 2 + - uid: 886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,3.5 + parent: 2 + - uid: 28114 + components: + - type: Transform + pos: 73.5,9.5 + parent: 2 + - uid: 28115 + components: + - type: Transform + pos: 71.5,11.5 + parent: 2 + - uid: 28117 + components: + - type: Transform + pos: 58.5,14.5 + parent: 2 + - uid: 28118 + components: + - type: Transform + pos: 53.5,11.5 + parent: 2 + - uid: 28119 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 + - uid: 28120 + components: + - type: Transform + pos: 35.5,2.5 + parent: 2 + - uid: 28121 + components: + - type: Transform + pos: 19.5,18.5 + parent: 2 +- proto: BarSignMaidCafe + entities: + - uid: 887 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 2 +- proto: BarSignOfficerBeersky + entities: + - uid: 888 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 +- proto: BaseComputer + entities: + - uid: 889 + components: + - type: Transform + pos: 56.5,-29.5 + parent: 2 + - uid: 890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-20.5 + parent: 2 + - uid: 891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-86.5 + parent: 2 + - uid: 892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-15.5 + parent: 2 + - uid: 893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,11.5 + parent: 2 + - uid: 894 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-40.5 + parent: 2 + - uid: 896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-57.5 + parent: 2 + - uid: 897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-57.5 + parent: 2 + - uid: 898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,3.5 + parent: 2 + - uid: 899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-17.5 + parent: 2 + - uid: 900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-12.5 + parent: 2 + - uid: 901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-37.5 + parent: 2 + - uid: 902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,12.5 + parent: 2 + - uid: 903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 2 +- proto: BaseGasCondenser + entities: + - uid: 904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-44.5 + parent: 2 +- proto: BassGuitarInstrument + entities: + - uid: 905 + components: + - type: Transform + pos: 20.759104,0.55695033 + parent: 2 +- proto: BeachBall + entities: + - uid: 906 + components: + - type: Transform + pos: 36.676365,9.510509 + parent: 2 +- proto: Beaker + entities: + - uid: 907 + components: + - type: Transform + pos: 74.27338,-18.287746 + parent: 2 + - uid: 908 + components: + - type: Transform + pos: 29.682446,-0.8163768 + parent: 2 +- proto: Bed + entities: + - uid: 909 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - uid: 910 + components: + - type: Transform + pos: -10.5,23.5 + parent: 2 + - uid: 911 + components: + - type: Transform + pos: -6.5,23.5 + parent: 2 + - uid: 912 + components: + - type: Transform + pos: -2.5,23.5 + parent: 2 + - uid: 913 + components: + - type: Transform + pos: 6.5,15.5 + parent: 2 + - uid: 914 + components: + - type: Transform + pos: 63.5,-3.5 + parent: 2 + - uid: 915 + components: + - type: Transform + pos: -30.5,-74.5 + parent: 2 + - uid: 916 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 917 + components: + - type: Transform + pos: 11.5,-33.5 + parent: 2 + - uid: 918 + components: + - type: Transform + pos: -7.5,15.5 + parent: 2 + - uid: 919 + components: + - type: Transform + pos: 22.5,2.5 + parent: 2 + - uid: 920 + components: + - type: Transform + pos: 16.5,37.5 + parent: 2 + - uid: 921 + components: + - type: Transform + pos: -20.5,41.5 + parent: 2 + - uid: 922 + components: + - type: Transform + pos: -21.5,47.5 + parent: 2 + - uid: 923 + components: + - type: Transform + pos: -18.5,47.5 + parent: 2 + - uid: 924 + components: + - type: Transform + pos: -17.5,41.5 + parent: 2 + - uid: 925 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 2 + - uid: 926 + components: + - type: Transform + pos: 74.5,-35.5 + parent: 2 + - uid: 927 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - uid: 928 + components: + - type: Transform + pos: 45.5,-42.5 + parent: 2 + - uid: 929 + components: + - type: Transform + pos: 1.5,-63.5 + parent: 2 + - uid: 930 + components: + - type: Transform + pos: -30.5,-33.5 + parent: 2 + - uid: 931 + components: + - type: Transform + pos: 33.5,1.5 + parent: 2 + - uid: 932 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - uid: 933 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 934 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 2 + - uid: 935 + components: + - type: Transform + pos: -1.5,30.5 + parent: 2 + - uid: 936 + components: + - type: Transform + pos: -7.5,32.5 + parent: 2 + - uid: 937 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 938 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 2 + - uid: 939 + components: + - type: Transform + pos: 63.5,-43.5 + parent: 2 +- proto: BedsheetBlack + entities: + - uid: 940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-0.5 + parent: 2 + - uid: 941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,1.5 + parent: 2 + - uid: 942 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 +- proto: BedsheetBlue + entities: + - uid: 943 + components: + - type: Transform + pos: 6.5,15.5 + parent: 2 +- proto: BedsheetBrigmedic + entities: + - uid: 944 + components: + - type: Transform + pos: -7.5,32.5 + parent: 2 +- proto: BedsheetCaptain + entities: + - uid: 945 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 2 +- proto: BedsheetCE + entities: + - uid: 946 + components: + - type: Transform + pos: 1.5,-63.5 + parent: 2 +- proto: BedsheetCentcom + entities: + - uid: 947 + components: + - type: Transform + pos: -30.5,-74.5 + parent: 2 +- proto: BedsheetClown + entities: + - uid: 948 + components: + - type: Transform + pos: 22.5,2.5 + parent: 2 +- proto: BedsheetCMO + entities: + - uid: 949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-42.5 + parent: 2 +- proto: BedsheetGreen + entities: + - uid: 950 + components: + - type: Transform + pos: 47.5,-58.5 + parent: 2 + - uid: 951 + components: + - type: Transform + pos: 44.5,-58.5 + parent: 2 + - uid: 952 + components: + - type: Transform + pos: 37.5,-51.5 + parent: 2 + - uid: 953 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 +- proto: BedsheetHOP + entities: + - uid: 954 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 2 +- proto: BedsheetIan + entities: + - uid: 955 + components: + - type: Transform + pos: -10.5,-27.5 + parent: 2 +- proto: BedsheetMedical + entities: + - uid: 956 + components: + - type: Transform + pos: 34.5,-49.5 + parent: 2 + - uid: 957 + components: + - type: Transform + pos: 34.5,-46.5 + parent: 2 + - uid: 958 + components: + - type: Transform + pos: 31.5,-36.5 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: 29.5,-36.5 + parent: 2 + - uid: 960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-27.5 + parent: 2 + - uid: 961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-30.5 + parent: 2 + - uid: 962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-27.5 + parent: 2 +- proto: BedsheetMime + entities: + - uid: 963 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 +- proto: BedsheetOrange + entities: + - uid: 964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,23.5 + parent: 2 + - uid: 965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,23.5 + parent: 2 + - uid: 966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,23.5 + parent: 2 + - uid: 967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,14.5 + parent: 2 +- proto: BedsheetPurple + entities: + - uid: 968 + components: + - type: Transform + pos: 63.5,-43.5 + parent: 2 +- proto: BedsheetQM + entities: + - uid: 969 + components: + - type: Transform + pos: -30.5,-33.5 + parent: 2 +- proto: BedsheetRD + entities: + - uid: 970 + components: + - type: Transform + pos: 74.5,-35.5 + parent: 2 +- proto: BedsheetRed + entities: + - uid: 971 + components: + - type: Transform + pos: -7.5,15.5 + parent: 2 + - uid: 972 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - uid: 973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,14.5 + parent: 2 + - uid: 974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,37.5 + parent: 2 + - uid: 975 + components: + - type: Transform + pos: -1.5,30.5 + parent: 2 +- proto: BedsheetSpawner + entities: + - uid: 976 + components: + - type: Transform + pos: 63.5,-3.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: -17.5,41.5 + parent: 2 + - uid: 978 + components: + - type: Transform + pos: -21.5,47.5 + parent: 2 + - uid: 979 + components: + - type: Transform + pos: -20.5,41.5 + parent: 2 + - uid: 980 + components: + - type: Transform + pos: -18.5,47.5 + parent: 2 +- proto: BenchParkLeft + entities: + - uid: 981 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 +- proto: BenchParkMiddle + entities: + - uid: 983 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 +- proto: BenchParkRight + entities: + - uid: 984 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 +- proto: BenchPewLeft + entities: + - uid: 985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-6.5 + parent: 2 + - uid: 986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-4.5 + parent: 2 + - uid: 987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-5.5 + parent: 2 + - uid: 988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-4.5 + parent: 2 + - uid: 989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-6.5 + parent: 2 + - uid: 990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-7.5 + parent: 2 + - uid: 991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-5.5 + parent: 2 + - uid: 992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-5.5 + parent: 2 + - uid: 993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-7.5 + parent: 2 +- proto: BenchPewRight + entities: + - uid: 994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-6.5 + parent: 2 + - uid: 995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-4.5 + parent: 2 + - uid: 996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-7.5 + parent: 2 + - uid: 997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-7.5 + parent: 2 + - uid: 998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-5.5 + parent: 2 + - uid: 999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-4.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-5.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-6.5 + parent: 2 +- proto: BenchSofaCorpCorner + entities: + - uid: 1002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-1.5 + parent: 2 + - uid: 1003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,47.5 + parent: 2 +- proto: BenchSofaCorpLeft + entities: + - uid: 1004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,48.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + pos: 77.5,-1.5 + parent: 2 +- proto: BenchSofaCorpMiddle + entities: + - uid: 1006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-2.5 + parent: 2 +- proto: BenchSofaCorpRight + entities: + - uid: 1007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,47.5 + parent: 2 + - uid: 1008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-3.5 + parent: 2 +- proto: BenchSteelLeft + entities: + - uid: 1009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-59.5 + parent: 2 + - uid: 1011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,27.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,12.5 + parent: 2 + - uid: 1013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-10.5 + parent: 2 + - uid: 1014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-10.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + pos: -57.5,17.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 2 + - uid: 1019 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + pos: 70.5,6.5 + parent: 2 + - uid: 1021 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 2 + - uid: 1022 + components: + - type: Transform + pos: -70.5,10.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: -68.5,-13.5 + parent: 2 + - uid: 1025 + components: + - type: Transform + pos: 18.5,28.5 + parent: 2 + - uid: 1026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,43.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - uid: 1028 + components: + - type: Transform + pos: -60.5,-2.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-1.5 + parent: 2 + - uid: 1030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,-5.5 + parent: 2 + - uid: 1032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-27.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-57.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-67.5 + parent: 2 + - uid: 1037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-32.5 + parent: 2 + - uid: 1038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-26.5 + parent: 2 + - uid: 1039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-14.5 + parent: 2 + - uid: 1040 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-3.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + pos: 82.5,-1.5 + parent: 2 + - uid: 1043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-7.5 + parent: 2 + - uid: 1044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-15.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + pos: -57.5,-2.5 + parent: 2 + - uid: 1046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-1.5 + parent: 2 + - uid: 1047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-6.5 + parent: 2 + - uid: 1048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.5,-5.5 + parent: 2 + - uid: 1049 + components: + - type: Transform + pos: -73.5,-13.5 + parent: 2 + - uid: 1050 + components: + - type: Transform + pos: -75.5,10.5 + parent: 2 + - uid: 1051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-4.5 + parent: 2 + - uid: 1052 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 1097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,11.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-22.5 + parent: 2 + - uid: 1099 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 2 + - uid: 1112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-26.5 + parent: 2 + - uid: 1113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-37.5 + parent: 2 + - uid: 27959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,41.5 + parent: 2 +- proto: BenchSteelMiddle + entities: + - uid: 1053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-38.5 + parent: 2 + - uid: 1054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-8.5 + parent: 2 + - uid: 1055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-8.5 + parent: 2 + - uid: 1056 + components: + - type: Transform + pos: -74.5,-13.5 + parent: 2 + - uid: 1057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,11.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,11.5 + parent: 2 + - uid: 1059 + components: + - type: Transform + pos: 71.5,6.5 + parent: 2 + - uid: 1060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,-5.5 + parent: 2 + - uid: 1061 + components: + - type: Transform + pos: -69.5,-13.5 + parent: 2 + - uid: 1062 + components: + - type: Transform + pos: -76.5,10.5 + parent: 2 + - uid: 1063 + components: + - type: Transform + pos: -71.5,10.5 + parent: 2 + - uid: 1064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,-5.5 + parent: 2 + - uid: 1065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,43.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-59.5 + parent: 2 + - uid: 1067 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 2 + - uid: 1068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-9.5 + parent: 2 + - uid: 1069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-9.5 + parent: 2 + - uid: 1070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-25.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-3.5 + parent: 2 + - uid: 1072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-26.5 + parent: 2 + - uid: 1073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-25.5 + parent: 2 + - uid: 1074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-5.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-15.5 + parent: 2 + - uid: 1076 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 1077 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 2 + - uid: 1115 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 2 +- proto: BenchSteelRight + entities: + - uid: 1010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-39.5 + parent: 2 + - uid: 1016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,11.5 + parent: 2 + - uid: 1017 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-25.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,40.5 + parent: 2 + - uid: 1034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-24.5 + parent: 2 + - uid: 1078 + components: + - type: Transform + pos: -77.5,10.5 + parent: 2 + - uid: 1079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-10.5 + parent: 2 + - uid: 1080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-15.5 + parent: 2 + - uid: 1081 + components: + - type: Transform + pos: -70.5,-13.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,-5.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-7.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-1.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + pos: -58.5,-2.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-3.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + pos: 81.5,-1.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-6.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-21.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + pos: -72.5,10.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-59.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,26.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-11.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,13.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + pos: -56.5,17.5 + parent: 2 + - uid: 1100 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + pos: 72.5,6.5 + parent: 2 + - uid: 1102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-1.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + pos: -61.5,-2.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: -75.5,-13.5 + parent: 2 + - uid: 1105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,43.5 + parent: 2 + - uid: 1106 + components: + - type: Transform + pos: 17.5,28.5 + parent: 2 + - uid: 1107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,-5.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-7.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 2 + - uid: 1114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-56.5 + parent: 2 + - uid: 1116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-66.5 + parent: 2 + - uid: 1117 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 2 + - uid: 1118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-24.5 + parent: 2 + - uid: 1119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-16.5 + parent: 2 + - uid: 1120 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 1121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-33.5 + parent: 2 + - uid: 20307 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 +- proto: BenchSteelWhiteLeft + entities: + - uid: 1122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-33.5 + parent: 2 + - uid: 1124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-25.5 + parent: 2 + - uid: 1126 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 1128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-44.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-25.5 + parent: 2 + - uid: 1133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-23.5 + parent: 2 + - uid: 1135 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 2 +- proto: BenchSteelWhiteRight + entities: + - uid: 1123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-25.5 + parent: 2 + - uid: 1125 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 2 + - uid: 1129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-32.5 + parent: 2 + - uid: 1130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-25.5 + parent: 2 + - uid: 1134 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 2 + - uid: 21671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-43.5 + parent: 2 + - uid: 28160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-22.5 + parent: 2 +- proto: BiomassReclaimer + entities: + - uid: 1136 + components: + - type: Transform + pos: 42.5,-20.5 + parent: 2 +- proto: BlastDoor + entities: + - uid: 1137 + components: + - type: Transform + pos: 27.5,-41.5 + parent: 2 + - uid: 1138 + components: + - type: MetaData + name: Incinerator Vent + - type: Transform + pos: -42.5,-49.5 + parent: 2 + - uid: 1139 + components: + - type: MetaData + name: Incinerator Vent + - type: Transform + pos: -42.5,-48.5 + parent: 2 + - uid: 1140 + components: + - type: MetaData + name: Incinerator Vent + - type: Transform + pos: -42.5,-50.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + pos: 5.5,36.5 + parent: 2 + - uid: 1142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-40.5 + parent: 2 + - type: DeviceLinkSink + links: + - 21977 + - uid: 1143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 21977 + - uid: 1144 + components: + - type: Transform + pos: 70.5,-41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 21977 +- proto: BlastDoorOpen + entities: + - uid: 1145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,0.5 + parent: 2 + - uid: 1146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,0.5 + parent: 2 + - uid: 1147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,33.5 + parent: 2 + - uid: 1148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,33.5 + parent: 2 + - uid: 1149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,0.5 + parent: 2 +- proto: BlockGameArcade + entities: + - uid: 1150 + components: + - type: Transform + pos: 74.5,12.5 + parent: 2 + - type: SpamEmitSound + enabled: False +- proto: BookAtmosAirAlarms + entities: + - uid: 1151 + components: + - type: Transform + pos: 62.036938,-2.3704655 + parent: 2 +- proto: BookAtmosDistro + entities: + - uid: 1152 + components: + - type: Transform + pos: 62.146313,-2.5267155 + parent: 2 +- proto: BookAtmosVentsMore + entities: + - uid: 1153 + components: + - type: Transform + pos: 62.630688,-2.3860905 + parent: 2 +- proto: BookAtmosWaste + entities: + - uid: 1154 + components: + - type: Transform + pos: 62.740063,-2.5267155 + parent: 2 +- proto: BookHowToRockAndStone + entities: + - uid: 1155 + components: + - type: Transform + pos: -14.512469,53.606407 + parent: 2 +- proto: BookRandomStory + entities: + - uid: 1156 + components: + - type: Transform + pos: 61.380688,-2.3497698 + parent: 2 + - uid: 1157 + components: + - type: Transform + pos: 61.552563,-2.5110905 + parent: 2 +- proto: BooksBag + entities: + - uid: 1158 + components: + - type: Transform + pos: 63.255688,-2.4798405 + parent: 2 +- proto: BookshelfFilled + entities: + - uid: 1159 + components: + - type: Transform + pos: -15.5,51.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: -13.5,50.5 + parent: 2 + - uid: 1161 + components: + - type: Transform + pos: -13.5,51.5 + parent: 2 + - uid: 1162 + components: + - type: Transform + pos: 53.5,-4.5 + parent: 2 + - uid: 1163 + components: + - type: Transform + pos: 59.5,-4.5 + parent: 2 + - uid: 1164 + components: + - type: Transform + pos: 58.5,-4.5 + parent: 2 + - uid: 1165 + components: + - type: Transform + pos: 57.5,-2.5 + parent: 2 + - uid: 1166 + components: + - type: Transform + pos: 54.5,-6.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + pos: 58.5,-2.5 + parent: 2 + - uid: 1168 + components: + - type: Transform + pos: 57.5,-4.5 + parent: 2 + - uid: 1169 + components: + - type: Transform + pos: 53.5,-6.5 + parent: 2 + - uid: 1170 + components: + - type: Transform + pos: 53.5,-2.5 + parent: 2 + - uid: 1171 + components: + - type: Transform + pos: 54.5,-2.5 + parent: 2 + - uid: 1172 + components: + - type: Transform + pos: 54.5,-4.5 + parent: 2 + - uid: 1174 + components: + - type: Transform + pos: 59.5,-7.5 + parent: 2 +- proto: BoozeDispenser + entities: + - uid: 1175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-3.5 + parent: 2 + - type: ContainerContainer + containers: + ReagentDispenser-reagentContainerContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + ReagentDispenser-beaker: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,20.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-44.5 + parent: 2 +- proto: BorgCharger + entities: + - uid: 1178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-19.5 + parent: 2 + - uid: 1179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: 27.5,8.5 + parent: 2 + - uid: 1181 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + pos: 52.5,-19.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-17.5 + parent: 2 + - uid: 1184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-17.5 + parent: 2 +- proto: BoxBeaker + entities: + - uid: 1185 + components: + - type: Transform + pos: 21.834911,-21.292097 + parent: 2 + - uid: 1186 + components: + - type: Transform + pos: 69.43082,-28.496725 + parent: 2 + - uid: 1187 + components: + - type: Transform + pos: 38.551548,-59.747505 + parent: 2 + - uid: 1188 + components: + - type: Transform + pos: 46.643726,-25.53226 + parent: 2 +- proto: BoxBodyBag + entities: + - uid: 1189 + components: + - type: Transform + pos: 44.46341,-20.381248 + parent: 2 + - uid: 1190 + components: + - type: Transform + pos: 41.50395,-26.440617 + parent: 2 +- proto: BoxCardboard + entities: + - uid: 1191 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + pos: 27.504585,-27.432928 + parent: 2 + - uid: 1193 + components: + - type: Transform + pos: -47.635696,-6.329595 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: -47.323196,-6.50147 + parent: 2 + - uid: 1195 + components: + - type: Transform + pos: -20.632591,-15.394136 + parent: 2 + - uid: 1196 + components: + - type: Transform + pos: -20.413841,-15.534761 + parent: 2 + - uid: 1197 + components: + - type: Transform + pos: -19.648216,-15.409761 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: -19.382591,-15.550386 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: -65.66784,-11.44996 + parent: 2 + - uid: 1200 + components: + - type: Transform + pos: -57.824932,5.7175736 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: -57.356182,5.5769486 + parent: 2 +- proto: BoxDarts + entities: + - uid: 1202 + components: + - type: Transform + pos: -12.4648485,47.559532 + parent: 2 +- proto: BoxEvidenceMarkers + entities: + - uid: 1203 + components: + - type: Transform + pos: -14.649316,22.483442 + parent: 2 + - uid: 1204 + components: + - type: Transform + pos: -4.3484325,13.565327 + parent: 2 + - uid: 1205 + components: + - type: Transform + pos: 4.5325327,32.563942 + parent: 2 +- proto: BoxFlare + entities: + - uid: 1206 + components: + - type: Transform + pos: -22.320019,3.444222 + parent: 2 + - uid: 1207 + components: + - type: Transform + pos: -27.387074,-29.38717 + parent: 2 +- proto: BoxFlashbang + entities: + - uid: 1208 + components: + - type: Transform + pos: 25.51847,36.53173 + parent: 2 + - uid: 1210 + components: + - type: Transform + parent: 1209 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: BoxFolderBlack + entities: + - uid: 1227 + components: + - type: Transform + pos: 45.02595,-20.490623 + parent: 2 +- proto: BoxFolderBlue + entities: + - uid: 1228 + components: + - type: Transform + pos: 51.747894,-41.514816 + parent: 2 + - uid: 1229 + components: + - type: Transform + pos: -55.5,-11.5 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: -11.594521,-15.426732 + parent: 2 + - uid: 1231 + components: + - type: Transform + pos: -11.37468,16.825611 + parent: 2 + - uid: 1232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.311617,-56.906967 + parent: 2 + - uid: 1233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.827696,32.515762 + parent: 2 +- proto: BoxFolderGrey + entities: + - uid: 1234 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + pos: 34.5,-45.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + pos: 14.421791,39.73979 + parent: 2 + - uid: 1237 + components: + - type: Transform + pos: 18.796444,32.718887 + parent: 2 +- proto: BoxFolderRed + entities: + - uid: 1238 + components: + - type: Transform + pos: -60.5,-11.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + pos: -11.640305,16.700611 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: -11.31218,17.059986 + parent: 2 + - uid: 1241 + components: + - type: Transform + pos: -2.5781758,-5.5029097 + parent: 2 + - uid: 1242 + components: + - type: Transform + pos: 14.656166,39.567917 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: 15.559589,33.528717 + parent: 2 + - uid: 1244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.1628075,15.424702 + parent: 2 + - uid: 1245 + components: + - type: Transform + pos: 3.4926047,-61.545456 + parent: 2 + - uid: 1246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.33457,30.452044 + parent: 2 + - uid: 1247 + components: + - type: Transform + pos: 18.452696,32.531387 + parent: 2 + - uid: 1248 + components: + - type: Transform + pos: -14.167116,31.38499 + parent: 2 + - uid: 1249 + components: + - type: Transform + pos: -11.37577,-15.254857 + parent: 2 + - uid: 1250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.137264,-15.474051 + parent: 2 +- proto: BoxFolderWhite + entities: + - uid: 1251 + components: + - type: Transform + pos: 57.5,-31.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: 26.534222,-106.3969 + parent: 2 + - uid: 1253 + components: + - type: Transform + pos: 21.524162,-27.491644 + parent: 2 + - uid: 1254 + components: + - type: Transform + pos: -2.6563008,-5.2216597 + parent: 2 + - uid: 1255 + components: + - type: Transform + pos: 46.77768,-46.635048 + parent: 2 + - uid: 1256 + components: + - type: Transform + pos: 38.5977,-27.081242 + parent: 2 + - uid: 1257 + components: + - type: Transform + pos: 38.707073,-27.362492 + parent: 2 +- proto: BoxFolderYellow + entities: + - uid: 1258 + components: + - type: Transform + pos: 55.5,1.5 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: -24.5,-21.5 + parent: 2 + - uid: 1260 + components: + - type: Transform + pos: -28.451855,-25.468752 + parent: 2 + - uid: 1261 + components: + - type: Transform + pos: -8.686617,-56.563217 + parent: 2 + - uid: 1262 + components: + - type: Transform + pos: -11.62577,-15.082982 + parent: 2 + - uid: 1263 + components: + - type: Transform + pos: 12.497088,33.700592 + parent: 2 + - uid: 1264 + components: + - type: Transform + pos: 9.668514,-15.411551 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: 3.5863543,-61.27983 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: 3.2738547,-61.420456 + parent: 2 + - uid: 1267 + components: + - type: Transform + pos: -8.342868,-56.344467 + parent: 2 + - uid: 1268 + components: + - type: Transform + pos: -2.3125508,-5.3622847 + parent: 2 +- proto: BoxHandcuff + entities: + - uid: 1269 + components: + - type: Transform + pos: -2.6800585,36.518677 + parent: 2 +- proto: BoxInflatable + entities: + - uid: 1271 + components: + - type: Transform + parent: 1270 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1279 + components: + - type: Transform + parent: 1278 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1287 + components: + - type: Transform + parent: 1286 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1294 + components: + - type: Transform + pos: 92.52866,-30.529163 + parent: 2 + - uid: 1295 + components: + - type: Transform + pos: 68.52631,-55.377457 + parent: 2 + - uid: 1296 + components: + - type: Transform + pos: 12.386681,-42.04888 + parent: 2 +- proto: BoxLethalshot + entities: + - uid: 1297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.2724562,35.529312 + parent: 2 +- proto: BoxLightMixed + entities: + - uid: 1299 + components: + - type: Transform + parent: 1298 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1300 + components: + - type: Transform + parent: 1298 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazinePistolSubMachineGunTopMounted + entities: + - uid: 1303 + components: + - type: Transform + pos: -2.4842808,38.626335 + parent: 2 + - uid: 1304 + components: + - type: Transform + pos: -2.4842808,38.345085 + parent: 2 +- proto: BoxMouthSwab + entities: + - uid: 1305 + components: + - type: Transform + pos: 38.348423,-59.466255 + parent: 2 +- proto: BoxMRE + entities: + - uid: 1306 + components: + - type: Transform + pos: -12.482197,3.5578237 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: 48.424255,8.669407 + parent: 2 + - uid: 1308 + components: + - type: Transform + pos: -0.48009515,24.586313 + parent: 2 + - uid: 1309 + components: + - type: Transform + pos: -8.46447,24.586313 + parent: 2 + - uid: 1310 + components: + - type: Transform + pos: -4.49572,24.586313 + parent: 2 + - uid: 1311 + components: + - type: Transform + pos: -22.63968,3.5384612 + parent: 2 +- proto: BoxPillCanister + entities: + - uid: 1312 + components: + - type: Transform + pos: 46.48018,-25.706886 + parent: 2 +- proto: BoxShotgunPractice + entities: + - uid: 1313 + components: + - type: Transform + pos: 21.502846,35.578606 + parent: 2 +- proto: BoxSterileMask + entities: + - uid: 1314 + components: + - type: Transform + pos: 38.317173,-58.747505 + parent: 2 +- proto: BoxSyringe + entities: + - uid: 1315 + components: + - type: Transform + pos: 38.582798,-59.028755 + parent: 2 + - uid: 1316 + components: + - type: Transform + pos: 46.34685,-25.516636 + parent: 2 +- proto: BoxVial + entities: + - uid: 1317 + components: + - type: Transform + pos: 21.350536,-21.292097 + parent: 2 +- proto: BoxZiptie + entities: + - uid: 1211 + components: + - type: Transform + parent: 1209 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1318 + components: + - type: Transform + pos: -15.481426,41.503326 + parent: 2 +- proto: BriefcaseBrown + entities: + - uid: 1320 + components: + - type: Transform + parent: 1319 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1339 + components: + - type: Transform + parent: 1338 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: BrigTimer + entities: + - uid: 1357 + components: + - type: Transform + pos: -3.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 27718: + - Start: Close + - Timer: Open + - uid: 1358 + components: + - type: Transform + pos: -7.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 27719: + - Start: Close + - Timer: Open + - uid: 1359 + components: + - type: Transform + pos: -11.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 27720: + - Start: Close + - Timer: Open +- proto: Bucket + entities: + - uid: 1360 + components: + - type: Transform + pos: -42.5,21.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + pos: 41.310593,-27.446613 + parent: 2 + - uid: 1362 + components: + - type: Transform + pos: 48.407314,-10.471735 + parent: 2 + - uid: 1363 + components: + - type: Transform + pos: 1.4000869,51.58606 + parent: 2 + - uid: 1364 + components: + - type: Transform + pos: 1.6188369,51.476685 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: 48.719814,-10.36236 + parent: 2 + - uid: 1366 + components: + - type: Transform + pos: -49.168774,-5.647331 + parent: 2 + - uid: 1367 + components: + - type: Transform + pos: -18.733625,20.317905 + parent: 2 + - uid: 1368 + components: + - type: Transform + pos: 3.7334309,-34.2688 + parent: 2 + - uid: 1369 + components: + - type: Transform + pos: 3.4365559,-34.48755 + parent: 2 +- proto: ButchCleaver + entities: + - uid: 1370 + components: + - type: Transform + pos: 37.4974,-7.249185 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 1371 + components: + - type: Transform + pos: -21.5,2.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + pos: 14.5,36.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + pos: -7.5,13.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + pos: 11.5,-76.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + pos: -68.5,-18.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + pos: -68.5,-17.5 + parent: 2 + - uid: 1377 + components: + - type: Transform + pos: 38.5,9.5 + parent: 2 + - uid: 1378 + components: + - type: Transform + pos: 25.5,-30.5 + parent: 2 + - uid: 1379 + components: + - type: Transform + pos: 91.5,-24.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + pos: 91.5,-25.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + pos: 57.5,-54.5 + parent: 2 + - uid: 1382 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + pos: 25.5,-35.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + pos: -11.5,-26.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 2 + - uid: 1387 + components: + - type: Transform + pos: 71.5,-54.5 + parent: 2 + - uid: 1388 + components: + - type: Transform + pos: -1.5,30.5 + parent: 2 + - uid: 1389 + components: + - type: Transform + pos: 46.5,-46.5 + parent: 2 + - uid: 1390 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 2 + - uid: 1391 + components: + - type: Transform + pos: -66.5,-9.5 + parent: 2 + - uid: 1392 + components: + - type: Transform + pos: -10.5,-26.5 + parent: 2 + - uid: 1393 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 + - uid: 1394 + components: + - type: Transform + pos: 23.5,29.5 + parent: 2 + - uid: 1395 + components: + - type: Transform + pos: 22.5,29.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: 92.5,-26.5 + parent: 2 + - uid: 1397 + components: + - type: Transform + pos: 91.5,-26.5 + parent: 2 + - uid: 1398 + components: + - type: Transform + pos: -19.5,21.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: 55.5,-40.5 + parent: 2 + - uid: 1400 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 1401 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 1402 + components: + - type: Transform + pos: 52.5,-41.5 + parent: 2 + - uid: 1403 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 1404 + components: + - type: Transform + pos: -19.5,44.5 + parent: 2 + - uid: 1405 + components: + - type: Transform + pos: -61.5,15.5 + parent: 2 + - uid: 1406 + components: + - type: Transform + pos: -61.5,16.5 + parent: 2 + - uid: 1407 + components: + - type: Transform + pos: -23.5,48.5 + parent: 2 + - uid: 1408 + components: + - type: Transform + pos: -29.5,11.5 + parent: 2 + - uid: 1409 + components: + - type: Transform + pos: -28.5,11.5 + parent: 2 + - uid: 1410 + components: + - type: Transform + pos: -27.5,11.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + pos: -55.5,12.5 + parent: 2 + - uid: 1412 + components: + - type: Transform + pos: -55.5,13.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + pos: -53.5,12.5 + parent: 2 + - uid: 1414 + components: + - type: Transform + pos: -54.5,12.5 + parent: 2 + - uid: 1415 + components: + - type: Transform + pos: -47.5,13.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + pos: -51.5,13.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + pos: -52.5,13.5 + parent: 2 + - uid: 1418 + components: + - type: Transform + pos: -58.5,11.5 + parent: 2 + - uid: 1419 + components: + - type: Transform + pos: -18.5,50.5 + parent: 2 + - uid: 1420 + components: + - type: Transform + pos: -23.5,46.5 + parent: 2 + - uid: 1421 + components: + - type: Transform + pos: -68.5,13.5 + parent: 2 + - uid: 1422 + components: + - type: Transform + pos: -53.5,-1.5 + parent: 2 + - uid: 1423 + components: + - type: Transform + pos: -66.5,15.5 + parent: 2 + - uid: 1424 + components: + - type: Transform + pos: -48.5,-1.5 + parent: 2 + - uid: 1425 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 + - uid: 1427 + components: + - type: Transform + pos: -49.5,-1.5 + parent: 2 + - uid: 1428 + components: + - type: Transform + pos: -80.5,-4.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + pos: -74.5,-2.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + pos: -75.5,7.5 + parent: 2 + - uid: 1431 + components: + - type: Transform + pos: -74.5,7.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + pos: -73.5,7.5 + parent: 2 + - uid: 1433 + components: + - type: Transform + pos: -79.5,9.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + pos: -75.5,-2.5 + parent: 2 + - uid: 1435 + components: + - type: Transform + pos: -73.5,-2.5 + parent: 2 + - uid: 1436 + components: + - type: Transform + pos: -72.5,7.5 + parent: 2 + - uid: 1437 + components: + - type: Transform + pos: -72.5,-2.5 + parent: 2 + - uid: 1438 + components: + - type: Transform + pos: -80.5,9.5 + parent: 2 + - uid: 1439 + components: + - type: Transform + pos: -78.5,9.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + pos: -77.5,-4.5 + parent: 2 + - uid: 1441 + components: + - type: Transform + pos: -78.5,-4.5 + parent: 2 + - uid: 1442 + components: + - type: Transform + pos: -75.5,-17.5 + parent: 2 + - uid: 1443 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - uid: 1444 + components: + - type: Transform + pos: -52.5,-6.5 + parent: 2 + - uid: 1445 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 2 + - uid: 1446 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 2 + - uid: 1447 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 2 + - uid: 1448 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + pos: 16.5,-34.5 + parent: 2 + - uid: 1450 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 2 + - uid: 1451 + components: + - type: Transform + pos: 10.5,-34.5 + parent: 2 + - uid: 1452 + components: + - type: Transform + pos: 14.5,-35.5 + parent: 2 + - uid: 1453 + components: + - type: Transform + pos: 15.5,-35.5 + parent: 2 + - uid: 1454 + components: + - type: Transform + pos: 10.5,-36.5 + parent: 2 + - uid: 1455 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 2 + - uid: 1456 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 2 + - uid: 1457 + components: + - type: Transform + pos: 65.5,-47.5 + parent: 2 + - uid: 1458 + components: + - type: Transform + pos: 53.5,-48.5 + parent: 2 + - uid: 1459 + components: + - type: Transform + pos: 55.5,-44.5 + parent: 2 + - uid: 1460 + components: + - type: Transform + pos: 54.5,-44.5 + parent: 2 + - uid: 1461 + components: + - type: Transform + pos: 55.5,-48.5 + parent: 2 + - uid: 1462 + components: + - type: Transform + pos: 39.5,-48.5 + parent: 2 + - uid: 1463 + components: + - type: Transform + pos: 52.5,-48.5 + parent: 2 + - uid: 1464 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 + - uid: 1465 + components: + - type: Transform + pos: -35.5,-37.5 + parent: 2 + - uid: 1466 + components: + - type: Transform + pos: 43.5,-67.5 + parent: 2 + - uid: 1467 + components: + - type: Transform + pos: 43.5,-68.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + pos: 43.5,-71.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + pos: 43.5,-72.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + pos: 43.5,-73.5 + parent: 2 + - uid: 1471 + components: + - type: Transform + pos: 44.5,-74.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + pos: 48.5,-65.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + pos: 43.5,-69.5 + parent: 2 + - uid: 1474 + components: + - type: Transform + pos: 43.5,-70.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + pos: 43.5,-66.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + pos: 33.5,-66.5 + parent: 2 + - uid: 1477 + components: + - type: Transform + pos: 37.5,-65.5 + parent: 2 + - uid: 1478 + components: + - type: Transform + pos: 37.5,-66.5 + parent: 2 + - uid: 1479 + components: + - type: Transform + pos: 37.5,-67.5 + parent: 2 + - uid: 1480 + components: + - type: Transform + pos: 33.5,-64.5 + parent: 2 + - uid: 1481 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 2 + - uid: 1482 + components: + - type: Transform + pos: -36.5,-37.5 + parent: 2 + - uid: 1483 + components: + - type: Transform + pos: -34.5,-37.5 + parent: 2 + - uid: 1484 + components: + - type: Transform + pos: 37.5,-64.5 + parent: 2 + - uid: 1485 + components: + - type: Transform + pos: 35.5,-61.5 + parent: 2 + - uid: 1486 + components: + - type: Transform + pos: -41.5,-30.5 + parent: 2 + - uid: 1487 + components: + - type: Transform + pos: -43.5,-30.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: -42.5,-30.5 + parent: 2 + - uid: 1489 + components: + - type: Transform + pos: -43.5,-28.5 + parent: 2 + - uid: 1490 + components: + - type: Transform + pos: -41.5,-28.5 + parent: 2 + - uid: 1491 + components: + - type: Transform + pos: -40.5,-30.5 + parent: 2 + - uid: 1492 + components: + - type: Transform + pos: -38.5,-28.5 + parent: 2 + - uid: 1493 + components: + - type: Transform + pos: 43.5,-74.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + pos: 42.5,-74.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: 34.5,-61.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + pos: 36.5,-64.5 + parent: 2 + - uid: 1498 + components: + - type: Transform + pos: 33.5,-65.5 + parent: 2 + - uid: 1499 + components: + - type: Transform + pos: 39.5,-64.5 + parent: 2 + - uid: 1500 + components: + - type: Transform + pos: 35.5,-64.5 + parent: 2 + - uid: 1501 + components: + - type: Transform + pos: 38.5,-64.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + pos: 34.5,-64.5 + parent: 2 + - uid: 1503 + components: + - type: Transform + pos: -3.5,-73.5 + parent: 2 + - uid: 1504 + components: + - type: Transform + pos: -5.5,-73.5 + parent: 2 + - uid: 1505 + components: + - type: Transform + pos: -4.5,-73.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + pos: 10.5,-73.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + pos: 5.5,-71.5 + parent: 2 + - uid: 1508 + components: + - type: Transform + pos: 5.5,-70.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + pos: -8.5,-70.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: -6.5,-71.5 + parent: 2 + - uid: 1511 + components: + - type: Transform + pos: -8.5,-72.5 + parent: 2 + - uid: 1512 + components: + - type: Transform + pos: -10.5,46.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + pos: -8.5,-71.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + pos: -6.5,-70.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: -7.5,-70.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + pos: -6.5,-72.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + pos: -6.5,-73.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + pos: -19.5,-72.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + pos: 25.5,-43.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + pos: 25.5,-51.5 + parent: 2 + - uid: 1521 + components: + - type: Transform + pos: 22.5,-67.5 + parent: 2 + - uid: 1522 + components: + - type: Transform + pos: -18.5,42.5 + parent: 2 + - uid: 1523 + components: + - type: Transform + pos: -20.5,45.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + pos: 11.5,-73.5 + parent: 2 + - uid: 1525 + components: + - type: Transform + pos: -11.5,36.5 + parent: 2 + - uid: 1526 + components: + - type: Transform + pos: -12.5,36.5 + parent: 2 + - uid: 1527 + components: + - type: Transform + pos: -8.5,44.5 + parent: 2 + - uid: 1528 + components: + - type: Transform + pos: -5.5,36.5 + parent: 2 + - uid: 1529 + components: + - type: Transform + pos: -7.5,36.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + pos: -7.5,53.5 + parent: 2 + - uid: 1531 + components: + - type: Transform + pos: -7.5,48.5 + parent: 2 + - uid: 1532 + components: + - type: Transform + pos: -7.5,51.5 + parent: 2 + - uid: 1533 + components: + - type: Transform + pos: -14.5,35.5 + parent: 2 + - uid: 1534 + components: + - type: Transform + pos: -6.5,34.5 + parent: 2 + - uid: 1535 + components: + - type: Transform + pos: -9.5,36.5 + parent: 2 + - uid: 1536 + components: + - type: Transform + pos: -7.5,47.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + pos: -5.5,38.5 + parent: 2 + - uid: 1538 + components: + - type: Transform + pos: -7.5,52.5 + parent: 2 + - uid: 1539 + components: + - type: Transform + pos: -8.5,36.5 + parent: 2 + - uid: 1540 + components: + - type: Transform + pos: -6.5,35.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + pos: -10.5,36.5 + parent: 2 + - uid: 1542 + components: + - type: Transform + pos: -6.5,36.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + pos: -4.5,44.5 + parent: 2 + - uid: 1544 + components: + - type: Transform + pos: -5.5,43.5 + parent: 2 + - uid: 1545 + components: + - type: Transform + pos: -14.5,34.5 + parent: 2 + - uid: 1546 + components: + - type: Transform + pos: -14.5,33.5 + parent: 2 + - uid: 1547 + components: + - type: Transform + pos: -13.5,36.5 + parent: 2 + - uid: 1548 + components: + - type: Transform + pos: -14.5,36.5 + parent: 2 + - uid: 1549 + components: + - type: Transform + pos: -7.5,50.5 + parent: 2 + - uid: 1550 + components: + - type: Transform + pos: -5.5,37.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: -7.5,49.5 + parent: 2 + - uid: 1552 + components: + - type: Transform + pos: -8.5,48.5 + parent: 2 + - uid: 1553 + components: + - type: Transform + pos: -9.5,48.5 + parent: 2 + - uid: 1554 + components: + - type: Transform + pos: -7.5,44.5 + parent: 2 + - uid: 1555 + components: + - type: Transform + pos: -6.5,44.5 + parent: 2 + - uid: 1556 + components: + - type: Transform + pos: -5.5,44.5 + parent: 2 + - uid: 1557 + components: + - type: Transform + pos: 36.5,-34.5 + parent: 2 + - uid: 1558 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 1560 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 1561 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 1562 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - uid: 1563 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 + - uid: 1564 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 1565 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 1566 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 1567 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 1568 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 2 + - uid: 1569 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 + - uid: 1571 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 2 + - uid: 1572 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 2 + - uid: 1573 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - uid: 1574 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 2 + - uid: 1575 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - uid: 1576 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 2 + - uid: 1577 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 2 + - uid: 1578 + components: + - type: Transform + pos: -8.5,-18.5 + parent: 2 + - uid: 1579 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 2 + - uid: 1580 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 2 + - uid: 1581 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 2 + - uid: 1582 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 2 + - uid: 1583 + components: + - type: Transform + pos: -11.5,-12.5 + parent: 2 + - uid: 1584 + components: + - type: Transform + pos: -9.5,-12.5 + parent: 2 + - uid: 1585 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 2 + - uid: 1586 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 2 + - uid: 1587 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 2 + - uid: 1588 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 2 + - uid: 1589 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 1590 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 1591 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 1592 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 + - uid: 1593 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 1594 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 1595 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 1596 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 2 + - uid: 1597 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 2 + - uid: 1598 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - uid: 1599 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 2 + - uid: 1600 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 2 + - uid: 1601 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 1602 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 2 + - uid: 1603 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 2 + - uid: 1604 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 2 + - uid: 1605 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 2 + - uid: 1606 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 2 + - uid: 1607 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 2 + - uid: 1608 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 2 + - uid: 1609 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 1610 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 1612 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 + - uid: 1614 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - uid: 1615 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 2 + - uid: 1616 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 1617 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 2 + - uid: 1618 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 + - uid: 1619 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 1620 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - uid: 1621 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 1622 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 1623 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 1624 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 1625 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 2 + - uid: 1626 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 2 + - uid: 1627 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 2 + - uid: 1628 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 2 + - uid: 1629 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 + - uid: 1630 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 + - uid: 1631 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 1632 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 1633 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - uid: 1635 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 1636 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 1637 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - uid: 1638 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 + - uid: 1639 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 + - uid: 1640 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 + - uid: 1641 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 2 + - uid: 1642 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 2 + - uid: 1643 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - uid: 1644 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 2 + - uid: 1645 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 2 + - uid: 1646 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 1648 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 2 + - uid: 1649 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 1650 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 2 + - uid: 1651 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 2 + - uid: 1652 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 2 + - uid: 1653 + components: + - type: Transform + pos: 22.5,14.5 + parent: 2 + - uid: 1654 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 1655 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 1656 + components: + - type: Transform + pos: 24.5,14.5 + parent: 2 + - uid: 1657 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 1658 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - uid: 1659 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 1660 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 1661 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 1662 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 1663 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 1664 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 1665 + components: + - type: Transform + pos: 13.5,1.5 + parent: 2 + - uid: 1666 + components: + - type: Transform + pos: 14.5,1.5 + parent: 2 + - uid: 1667 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - uid: 1668 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - uid: 1669 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 1670 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 + - uid: 1671 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 1672 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - uid: 1673 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - uid: 1674 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 1675 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - uid: 1676 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 + - uid: 1677 + components: + - type: Transform + pos: 25.5,18.5 + parent: 2 + - uid: 1678 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 2 + - uid: 1679 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 1680 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 + - uid: 1681 + components: + - type: Transform + pos: 39.5,12.5 + parent: 2 + - uid: 1682 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 1683 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 1684 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 1685 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 1686 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 1687 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 1688 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - uid: 1689 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 1690 + components: + - type: Transform + pos: 23.5,14.5 + parent: 2 + - uid: 1691 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - uid: 1692 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 1693 + components: + - type: Transform + pos: 9.5,-36.5 + parent: 2 + - uid: 1694 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 1695 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 + - uid: 1696 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2 + - uid: 1697 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - uid: 1698 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - uid: 1699 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 + - uid: 1700 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2 + - uid: 1701 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 + - uid: 1702 + components: + - type: Transform + pos: 10.5,11.5 + parent: 2 + - uid: 1703 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 1704 + components: + - type: Transform + pos: 8.5,11.5 + parent: 2 + - uid: 1705 + components: + - type: Transform + pos: 7.5,11.5 + parent: 2 + - uid: 1706 + components: + - type: Transform + pos: 8.5,12.5 + parent: 2 + - uid: 1707 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 1708 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - uid: 1709 + components: + - type: Transform + pos: 7.5,14.5 + parent: 2 + - uid: 1710 + components: + - type: Transform + pos: 8.5,10.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - uid: 1712 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 1713 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - uid: 1714 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 1715 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - uid: 1716 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 1717 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 1718 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 1719 + components: + - type: Transform + pos: 25.5,11.5 + parent: 2 + - uid: 1720 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 1721 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 1722 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 1723 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 1724 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 1725 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 + - uid: 1726 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 1727 + components: + - type: Transform + pos: 25.5,10.5 + parent: 2 + - uid: 1728 + components: + - type: Transform + pos: 25.5,9.5 + parent: 2 + - uid: 1729 + components: + - type: Transform + pos: 20.5,4.5 + parent: 2 + - uid: 1730 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - uid: 1731 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 + - uid: 1732 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - uid: 1733 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - uid: 1734 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - uid: 1735 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 2 + - uid: 1736 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 2 + - uid: 1737 + components: + - type: Transform + pos: 27.5,23.5 + parent: 2 + - uid: 1738 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 2 + - uid: 1739 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 + - uid: 1740 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 2 + - uid: 1741 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 1742 + components: + - type: Transform + pos: -14.5,-27.5 + parent: 2 + - uid: 1743 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 + - uid: 1744 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 2 + - uid: 1745 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 2 + - uid: 1746 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 2 + - uid: 1747 + components: + - type: Transform + pos: 31.5,1.5 + parent: 2 + - uid: 1748 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - uid: 1749 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 2 + - uid: 1750 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 2 + - uid: 1751 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 2 + - uid: 1752 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 2 + - uid: 1753 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 1754 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 + - uid: 1755 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 1756 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 1757 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 2 + - uid: 1758 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 2 + - uid: 1759 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 1760 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 1761 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 2 + - uid: 1762 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 2 + - uid: 1763 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 + - uid: 1764 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 2 + - uid: 1765 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - uid: 1766 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - uid: 1767 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 1768 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 2 + - uid: 1769 + components: + - type: Transform + pos: -29.5,-63.5 + parent: 2 + - uid: 1770 + components: + - type: Transform + pos: 23.5,23.5 + parent: 2 + - uid: 1771 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 2 + - uid: 1772 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 2 + - uid: 1773 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 1774 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 1775 + components: + - type: Transform + pos: 24.5,25.5 + parent: 2 + - uid: 1776 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - uid: 1777 + components: + - type: Transform + pos: 23.5,24.5 + parent: 2 + - uid: 1778 + components: + - type: Transform + pos: 23.5,25.5 + parent: 2 + - uid: 1779 + components: + - type: Transform + pos: 24.5,23.5 + parent: 2 + - uid: 1780 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 2 + - uid: 1781 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - uid: 1782 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - uid: 1783 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - uid: 1784 + components: + - type: Transform + pos: 27.5,24.5 + parent: 2 + - uid: 1785 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 1786 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 1787 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 1788 + components: + - type: Transform + pos: -20.5,43.5 + parent: 2 + - uid: 1789 + components: + - type: Transform + pos: 18.5,13.5 + parent: 2 + - uid: 1790 + components: + - type: Transform + pos: -1.5,23.5 + parent: 2 + - uid: 1791 + components: + - type: Transform + pos: -1.5,24.5 + parent: 2 + - uid: 1792 + components: + - type: Transform + pos: -46.5,21.5 + parent: 2 + - uid: 1793 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 + - uid: 1794 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 + - uid: 1795 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - uid: 1796 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 1797 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 2 + - uid: 1798 + components: + - type: Transform + pos: 12.5,27.5 + parent: 2 + - uid: 1799 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - uid: 1800 + components: + - type: Transform + pos: 16.5,27.5 + parent: 2 + - uid: 1801 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 + - uid: 1802 + components: + - type: Transform + pos: 15.5,27.5 + parent: 2 + - uid: 1803 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 + - uid: 1804 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 + - uid: 1805 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 1806 + components: + - type: Transform + pos: 17.5,21.5 + parent: 2 + - uid: 1807 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - uid: 1808 + components: + - type: Transform + pos: 16.5,20.5 + parent: 2 + - uid: 1809 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 1810 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 1811 + components: + - type: Transform + pos: -21.5,42.5 + parent: 2 + - uid: 1812 + components: + - type: Transform + pos: -21.5,41.5 + parent: 2 + - uid: 1813 + components: + - type: Transform + pos: -18.5,41.5 + parent: 2 + - uid: 1814 + components: + - type: Transform + pos: -19.5,46.5 + parent: 2 + - uid: 1815 + components: + - type: Transform + pos: -5.5,27.5 + parent: 2 + - uid: 1816 + components: + - type: Transform + pos: -7.5,27.5 + parent: 2 + - uid: 1817 + components: + - type: Transform + pos: -6.5,27.5 + parent: 2 + - uid: 1818 + components: + - type: Transform + pos: -8.5,27.5 + parent: 2 + - uid: 1819 + components: + - type: Transform + pos: -9.5,27.5 + parent: 2 + - uid: 1820 + components: + - type: Transform + pos: -3.5,29.5 + parent: 2 + - uid: 1821 + components: + - type: Transform + pos: -4.5,29.5 + parent: 2 + - uid: 1822 + components: + - type: Transform + pos: -4.5,28.5 + parent: 2 + - uid: 1823 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - uid: 1824 + components: + - type: Transform + pos: -2.5,25.5 + parent: 2 + - uid: 1825 + components: + - type: Transform + pos: -1.5,25.5 + parent: 2 + - uid: 1826 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 + - uid: 1827 + components: + - type: Transform + pos: -3.5,27.5 + parent: 2 + - uid: 1828 + components: + - type: Transform + pos: -2.5,27.5 + parent: 2 + - uid: 1829 + components: + - type: Transform + pos: -1.5,27.5 + parent: 2 + - uid: 1830 + components: + - type: Transform + pos: 2.5,27.5 + parent: 2 + - uid: 1831 + components: + - type: Transform + pos: 3.5,27.5 + parent: 2 + - uid: 1832 + components: + - type: Transform + pos: 4.5,27.5 + parent: 2 + - uid: 1833 + components: + - type: Transform + pos: 5.5,27.5 + parent: 2 + - uid: 1834 + components: + - type: Transform + pos: 6.5,27.5 + parent: 2 + - uid: 1835 + components: + - type: Transform + pos: 7.5,27.5 + parent: 2 + - uid: 1836 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 + - uid: 1837 + components: + - type: Transform + pos: 9.5,27.5 + parent: 2 + - uid: 1838 + components: + - type: Transform + pos: 9.5,26.5 + parent: 2 + - uid: 1839 + components: + - type: Transform + pos: 9.5,25.5 + parent: 2 + - uid: 1840 + components: + - type: Transform + pos: 9.5,24.5 + parent: 2 + - uid: 1841 + components: + - type: Transform + pos: 5.5,26.5 + parent: 2 + - uid: 1842 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 1843 + components: + - type: Transform + pos: 5.5,24.5 + parent: 2 + - uid: 1844 + components: + - type: Transform + pos: 5.5,23.5 + parent: 2 + - uid: 1845 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - uid: 1846 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 1847 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 1848 + components: + - type: Transform + pos: 2.5,26.5 + parent: 2 + - uid: 1849 + components: + - type: Transform + pos: 2.5,25.5 + parent: 2 + - uid: 1850 + components: + - type: Transform + pos: -9.5,26.5 + parent: 2 + - uid: 1851 + components: + - type: Transform + pos: -0.5,25.5 + parent: 2 + - uid: 1852 + components: + - type: Transform + pos: 1.5,27.5 + parent: 2 + - uid: 1853 + components: + - type: Transform + pos: -9.5,25.5 + parent: 2 + - uid: 1854 + components: + - type: Transform + pos: -10.5,25.5 + parent: 2 + - uid: 1855 + components: + - type: Transform + pos: -5.5,26.5 + parent: 2 + - uid: 1856 + components: + - type: Transform + pos: 2.5,24.5 + parent: 2 + - uid: 1857 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - uid: 1858 + components: + - type: Transform + pos: -0.5,27.5 + parent: 2 + - uid: 1859 + components: + - type: Transform + pos: -5.5,25.5 + parent: 2 + - uid: 1860 + components: + - type: Transform + pos: -6.5,25.5 + parent: 2 + - uid: 1861 + components: + - type: Transform + pos: -8.5,25.5 + parent: 2 + - uid: 1862 + components: + - type: Transform + pos: -1.5,26.5 + parent: 2 + - uid: 1863 + components: + - type: Transform + pos: -1.5,22.5 + parent: 2 + - uid: 1864 + components: + - type: Transform + pos: -2.5,22.5 + parent: 2 + - uid: 1865 + components: + - type: Transform + pos: -0.5,22.5 + parent: 2 + - uid: 1866 + components: + - type: Transform + pos: -5.5,24.5 + parent: 2 + - uid: 1867 + components: + - type: Transform + pos: -5.5,23.5 + parent: 2 + - uid: 1868 + components: + - type: Transform + pos: -5.5,22.5 + parent: 2 + - uid: 1869 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 + - uid: 1870 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - uid: 1871 + components: + - type: Transform + pos: -9.5,24.5 + parent: 2 + - uid: 1872 + components: + - type: Transform + pos: -9.5,23.5 + parent: 2 + - uid: 1873 + components: + - type: Transform + pos: -9.5,22.5 + parent: 2 + - uid: 1874 + components: + - type: Transform + pos: -10.5,22.5 + parent: 2 + - uid: 1875 + components: + - type: Transform + pos: -8.5,22.5 + parent: 2 + - uid: 1876 + components: + - type: Transform + pos: -10.5,27.5 + parent: 2 + - uid: 1877 + components: + - type: Transform + pos: -12.5,27.5 + parent: 2 + - uid: 1878 + components: + - type: Transform + pos: -11.5,27.5 + parent: 2 + - uid: 1879 + components: + - type: Transform + pos: -13.5,27.5 + parent: 2 + - uid: 1880 + components: + - type: Transform + pos: -13.5,26.5 + parent: 2 + - uid: 1881 + components: + - type: Transform + pos: -13.5,25.5 + parent: 2 + - uid: 1882 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - uid: 1883 + components: + - type: Transform + pos: -13.5,23.5 + parent: 2 + - uid: 1884 + components: + - type: Transform + pos: -20.5,22.5 + parent: 2 + - uid: 1885 + components: + - type: Transform + pos: -20.5,46.5 + parent: 2 + - uid: 1886 + components: + - type: Transform + pos: -17.5,46.5 + parent: 2 + - uid: 1887 + components: + - type: Transform + pos: -17.5,47.5 + parent: 2 + - uid: 1888 + components: + - type: Transform + pos: -18.5,45.5 + parent: 2 + - uid: 1889 + components: + - type: Transform + pos: -17.5,45.5 + parent: 2 + - uid: 1890 + components: + - type: Transform + pos: -18.5,43.5 + parent: 2 + - uid: 1891 + components: + - type: Transform + pos: -19.5,45.5 + parent: 2 + - uid: 1892 + components: + - type: Transform + pos: -23.5,45.5 + parent: 2 + - uid: 1893 + components: + - type: Transform + pos: -23.5,49.5 + parent: 2 + - uid: 1894 + components: + - type: Transform + pos: -21.5,50.5 + parent: 2 + - uid: 1895 + components: + - type: Transform + pos: -23.5,50.5 + parent: 2 + - uid: 1896 + components: + - type: Transform + pos: -20.5,50.5 + parent: 2 + - uid: 1897 + components: + - type: Transform + pos: -22.5,50.5 + parent: 2 + - uid: 1898 + components: + - type: Transform + pos: -10.5,40.5 + parent: 2 + - uid: 1899 + components: + - type: Transform + pos: -10.5,42.5 + parent: 2 + - uid: 1900 + components: + - type: Transform + pos: -10.5,39.5 + parent: 2 + - uid: 1901 + components: + - type: Transform + pos: -10.5,43.5 + parent: 2 + - uid: 1902 + components: + - type: Transform + pos: -10.5,44.5 + parent: 2 + - uid: 1903 + components: + - type: Transform + pos: -10.5,45.5 + parent: 2 + - uid: 1904 + components: + - type: Transform + pos: -10.5,41.5 + parent: 2 + - uid: 1905 + components: + - type: Transform + pos: -13.5,44.5 + parent: 2 + - uid: 1906 + components: + - type: Transform + pos: -14.5,44.5 + parent: 2 + - uid: 1907 + components: + - type: Transform + pos: -15.5,44.5 + parent: 2 + - uid: 1908 + components: + - type: Transform + pos: -14.5,43.5 + parent: 2 + - uid: 1909 + components: + - type: Transform + pos: -6.5,34.5 + parent: 2 + - uid: 1910 + components: + - type: Transform + pos: -10.5,38.5 + parent: 2 + - uid: 1911 + components: + - type: Transform + pos: -23.5,47.5 + parent: 2 + - uid: 1912 + components: + - type: Transform + pos: -21.5,43.5 + parent: 2 + - uid: 1913 + components: + - type: Transform + pos: -22.5,43.5 + parent: 2 + - uid: 1914 + components: + - type: Transform + pos: -19.5,43.5 + parent: 2 + - uid: 1915 + components: + - type: Transform + pos: -20.5,47.5 + parent: 2 + - uid: 1916 + components: + - type: Transform + pos: -21.5,45.5 + parent: 2 + - uid: 1917 + components: + - type: Transform + pos: -22.5,45.5 + parent: 2 + - uid: 1918 + components: + - type: Transform + pos: -23.5,43.5 + parent: 2 + - uid: 1919 + components: + - type: Transform + pos: -24.5,43.5 + parent: 2 + - uid: 1920 + components: + - type: Transform + pos: -19.5,22.5 + parent: 2 + - uid: 1921 + components: + - type: Transform + pos: -18.5,22.5 + parent: 2 + - uid: 1922 + components: + - type: Transform + pos: -19.5,20.5 + parent: 2 + - uid: 1923 + components: + - type: Transform + pos: -18.5,20.5 + parent: 2 + - uid: 1924 + components: + - type: Transform + pos: -20.5,24.5 + parent: 2 + - uid: 1925 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 + - uid: 1926 + components: + - type: Transform + pos: 5.5,38.5 + parent: 2 + - uid: 1927 + components: + - type: Transform + pos: 6.5,38.5 + parent: 2 + - uid: 1928 + components: + - type: Transform + pos: 0.5,33.5 + parent: 2 + - uid: 1929 + components: + - type: Transform + pos: -8.5,28.5 + parent: 2 + - uid: 1930 + components: + - type: Transform + pos: -8.5,30.5 + parent: 2 + - uid: 1931 + components: + - type: Transform + pos: -8.5,31.5 + parent: 2 + - uid: 1932 + components: + - type: Transform + pos: -7.5,31.5 + parent: 2 + - uid: 1933 + components: + - type: Transform + pos: -9.5,31.5 + parent: 2 + - uid: 1934 + components: + - type: Transform + pos: 7.5,38.5 + parent: 2 + - uid: 1935 + components: + - type: Transform + pos: 8.5,38.5 + parent: 2 + - uid: 1936 + components: + - type: Transform + pos: 8.5,37.5 + parent: 2 + - uid: 1937 + components: + - type: Transform + pos: 8.5,36.5 + parent: 2 + - uid: 1938 + components: + - type: Transform + pos: 11.5,39.5 + parent: 2 + - uid: 1939 + components: + - type: Transform + pos: 12.5,39.5 + parent: 2 + - uid: 1940 + components: + - type: Transform + pos: 19.5,33.5 + parent: 2 + - uid: 1941 + components: + - type: Transform + pos: 18.5,33.5 + parent: 2 + - uid: 1942 + components: + - type: Transform + pos: 17.5,33.5 + parent: 2 + - uid: 1943 + components: + - type: Transform + pos: 16.5,33.5 + parent: 2 + - uid: 1944 + components: + - type: Transform + pos: 15.5,33.5 + parent: 2 + - uid: 1945 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 + - uid: 1946 + components: + - type: Transform + pos: 13.5,33.5 + parent: 2 + - uid: 1947 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - uid: 1948 + components: + - type: Transform + pos: 13.5,31.5 + parent: 2 + - uid: 1949 + components: + - type: Transform + pos: 12.5,31.5 + parent: 2 + - uid: 1950 + components: + - type: Transform + pos: 11.5,31.5 + parent: 2 + - uid: 1951 + components: + - type: Transform + pos: 10.5,31.5 + parent: 2 + - uid: 1952 + components: + - type: Transform + pos: 9.5,31.5 + parent: 2 + - uid: 1953 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - uid: 1954 + components: + - type: Transform + pos: 7.5,31.5 + parent: 2 + - uid: 1955 + components: + - type: Transform + pos: 15.5,34.5 + parent: 2 + - uid: 1956 + components: + - type: Transform + pos: 12.5,33.5 + parent: 2 + - uid: 1957 + components: + - type: Transform + pos: 18.5,34.5 + parent: 2 + - uid: 1958 + components: + - type: Transform + pos: 18.5,35.5 + parent: 2 + - uid: 1959 + components: + - type: Transform + pos: 19.5,35.5 + parent: 2 + - uid: 1960 + components: + - type: Transform + pos: 0.5,31.5 + parent: 2 + - uid: 1961 + components: + - type: Transform + pos: 1.5,31.5 + parent: 2 + - uid: 1962 + components: + - type: Transform + pos: 2.5,31.5 + parent: 2 + - uid: 1963 + components: + - type: Transform + pos: 3.5,31.5 + parent: 2 + - uid: 1964 + components: + - type: Transform + pos: -19.5,50.5 + parent: 2 + - uid: 1965 + components: + - type: Transform + pos: 20.5,33.5 + parent: 2 + - uid: 1966 + components: + - type: Transform + pos: 22.5,33.5 + parent: 2 + - uid: 1967 + components: + - type: Transform + pos: 21.5,33.5 + parent: 2 + - uid: 1968 + components: + - type: Transform + pos: 23.5,33.5 + parent: 2 + - uid: 1969 + components: + - type: Transform + pos: 24.5,33.5 + parent: 2 + - uid: 1970 + components: + - type: Transform + pos: 23.5,34.5 + parent: 2 + - uid: 1971 + components: + - type: Transform + pos: 23.5,35.5 + parent: 2 + - uid: 1972 + components: + - type: Transform + pos: 23.5,36.5 + parent: 2 + - uid: 1973 + components: + - type: Transform + pos: 23.5,37.5 + parent: 2 + - uid: 1974 + components: + - type: Transform + pos: 23.5,38.5 + parent: 2 + - uid: 1975 + components: + - type: Transform + pos: 23.5,39.5 + parent: 2 + - uid: 1976 + components: + - type: Transform + pos: 23.5,40.5 + parent: 2 + - uid: 1977 + components: + - type: Transform + pos: 23.5,41.5 + parent: 2 + - uid: 1978 + components: + - type: Transform + pos: 20.5,35.5 + parent: 2 + - uid: 1979 + components: + - type: Transform + pos: -24.5,-35.5 + parent: 2 + - uid: 1980 + components: + - type: Transform + pos: -12.5,16.5 + parent: 2 + - uid: 1981 + components: + - type: Transform + pos: -11.5,16.5 + parent: 2 + - uid: 1982 + components: + - type: Transform + pos: -11.5,15.5 + parent: 2 + - uid: 1983 + components: + - type: Transform + pos: -14.5,13.5 + parent: 2 + - uid: 1984 + components: + - type: Transform + pos: -57.5,17.5 + parent: 2 + - uid: 1985 + components: + - type: Transform + pos: -47.5,12.5 + parent: 2 + - uid: 1986 + components: + - type: Transform + pos: 26.5,25.5 + parent: 2 + - uid: 1987 + components: + - type: Transform + pos: 25.5,25.5 + parent: 2 + - uid: 1988 + components: + - type: Transform + pos: 27.5,25.5 + parent: 2 + - uid: 1989 + components: + - type: Transform + pos: 21.5,29.5 + parent: 2 + - uid: 1990 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 + - uid: 1991 + components: + - type: Transform + pos: 21.5,27.5 + parent: 2 + - uid: 1992 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 1993 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 1994 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 1995 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 1996 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - uid: 1997 + components: + - type: Transform + pos: 21.5,21.5 + parent: 2 + - uid: 1998 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 1999 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 2000 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 2001 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 2002 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 2003 + components: + - type: Transform + pos: 20.5,17.5 + parent: 2 + - uid: 2004 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 2005 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 2006 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 2007 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 2008 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - uid: 2009 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 2010 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 2011 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - uid: 2012 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 2013 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 + - uid: 2014 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 + - uid: 2015 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 + - uid: 2016 + components: + - type: Transform + pos: 7.5,17.5 + parent: 2 + - uid: 2017 + components: + - type: Transform + pos: 6.5,17.5 + parent: 2 + - uid: 2018 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 2019 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 2020 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 2021 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 2022 + components: + - type: Transform + pos: 2.5,16.5 + parent: 2 + - uid: 2023 + components: + - type: Transform + pos: 2.5,15.5 + parent: 2 + - uid: 2024 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 2025 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 2026 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 2027 + components: + - type: Transform + pos: 2.5,11.5 + parent: 2 + - uid: 2028 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 + - uid: 2029 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 + - uid: 2030 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 2031 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 2032 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 2033 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 2034 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 2035 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 2036 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 2037 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 2038 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 2039 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - uid: 2040 + components: + - type: Transform + pos: -46.5,19.5 + parent: 2 + - uid: 2041 + components: + - type: Transform + pos: -47.5,19.5 + parent: 2 + - uid: 2042 + components: + - type: Transform + pos: -49.5,18.5 + parent: 2 + - uid: 2043 + components: + - type: Transform + pos: -48.5,13.5 + parent: 2 + - uid: 2044 + components: + - type: Transform + pos: -48.5,17.5 + parent: 2 + - uid: 2045 + components: + - type: Transform + pos: -45.5,12.5 + parent: 2 + - uid: 2046 + components: + - type: Transform + pos: -40.5,10.5 + parent: 2 + - uid: 2047 + components: + - type: Transform + pos: -40.5,12.5 + parent: 2 + - uid: 2048 + components: + - type: Transform + pos: -42.5,12.5 + parent: 2 + - uid: 2049 + components: + - type: Transform + pos: -43.5,10.5 + parent: 2 + - uid: 2050 + components: + - type: Transform + pos: -20.5,25.5 + parent: 2 + - uid: 2051 + components: + - type: Transform + pos: -18.5,23.5 + parent: 2 + - uid: 2052 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 + - uid: 2053 + components: + - type: Transform + pos: 12.5,36.5 + parent: 2 + - uid: 2054 + components: + - type: Transform + pos: -1.5,33.5 + parent: 2 + - uid: 2055 + components: + - type: Transform + pos: -0.5,31.5 + parent: 2 + - uid: 2056 + components: + - type: Transform + pos: 0.5,32.5 + parent: 2 + - uid: 2057 + components: + - type: Transform + pos: 20.5,34.5 + parent: 2 + - uid: 2058 + components: + - type: Transform + pos: 22.5,41.5 + parent: 2 + - uid: 2059 + components: + - type: Transform + pos: 21.5,41.5 + parent: 2 + - uid: 2060 + components: + - type: Transform + pos: 21.5,42.5 + parent: 2 + - uid: 2061 + components: + - type: Transform + pos: 21.5,40.5 + parent: 2 + - uid: 2062 + components: + - type: Transform + pos: 24.5,41.5 + parent: 2 + - uid: 2063 + components: + - type: Transform + pos: 25.5,41.5 + parent: 2 + - uid: 2064 + components: + - type: Transform + pos: 25.5,42.5 + parent: 2 + - uid: 2065 + components: + - type: Transform + pos: 25.5,40.5 + parent: 2 + - uid: 2066 + components: + - type: Transform + pos: 9.5,36.5 + parent: 2 + - uid: 2067 + components: + - type: Transform + pos: 9.5,35.5 + parent: 2 + - uid: 2068 + components: + - type: Transform + pos: 9.5,34.5 + parent: 2 + - uid: 2069 + components: + - type: Transform + pos: 7.5,36.5 + parent: 2 + - uid: 2070 + components: + - type: Transform + pos: 6.5,36.5 + parent: 2 + - uid: 2071 + components: + - type: Transform + pos: 6.5,35.5 + parent: 2 + - uid: 2072 + components: + - type: Transform + pos: 7.5,41.5 + parent: 2 + - uid: 2073 + components: + - type: Transform + pos: 7.5,42.5 + parent: 2 + - uid: 2074 + components: + - type: Transform + pos: 14.5,42.5 + parent: 2 + - uid: 2075 + components: + - type: Transform + pos: 4.5,31.5 + parent: 2 + - uid: 2076 + components: + - type: Transform + pos: 3.5,30.5 + parent: 2 + - uid: 2077 + components: + - type: Transform + pos: 3.5,29.5 + parent: 2 + - uid: 2078 + components: + - type: Transform + pos: 1.5,30.5 + parent: 2 + - uid: 2079 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 2080 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - uid: 2081 + components: + - type: Transform + pos: -14.5,40.5 + parent: 2 + - uid: 2082 + components: + - type: Transform + pos: 2.5,23.5 + parent: 2 + - uid: 2083 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 2084 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 2086 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 2 + - uid: 2087 + components: + - type: Transform + pos: -11.5,17.5 + parent: 2 + - uid: 2088 + components: + - type: Transform + pos: -13.5,15.5 + parent: 2 + - uid: 2089 + components: + - type: Transform + pos: -14.5,15.5 + parent: 2 + - uid: 2090 + components: + - type: Transform + pos: -20.5,21.5 + parent: 2 + - uid: 2091 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - uid: 2092 + components: + - type: Transform + pos: -14.5,14.5 + parent: 2 + - uid: 2093 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - uid: 2094 + components: + - type: Transform + pos: 38.5,14.5 + parent: 2 + - uid: 2095 + components: + - type: Transform + pos: 38.5,16.5 + parent: 2 + - uid: 2096 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - uid: 2097 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 + - uid: 2098 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 2099 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - uid: 2100 + components: + - type: Transform + pos: 28.5,12.5 + parent: 2 + - uid: 2101 + components: + - type: Transform + pos: 28.5,11.5 + parent: 2 + - uid: 2102 + components: + - type: Transform + pos: 28.5,10.5 + parent: 2 + - uid: 2103 + components: + - type: Transform + pos: 28.5,9.5 + parent: 2 + - uid: 2104 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - uid: 2105 + components: + - type: Transform + pos: 28.5,7.5 + parent: 2 + - uid: 2106 + components: + - type: Transform + pos: 28.5,6.5 + parent: 2 + - uid: 2107 + components: + - type: Transform + pos: 29.5,6.5 + parent: 2 + - uid: 2108 + components: + - type: Transform + pos: 30.5,6.5 + parent: 2 + - uid: 2109 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 2110 + components: + - type: Transform + pos: 32.5,6.5 + parent: 2 + - uid: 2111 + components: + - type: Transform + pos: 33.5,6.5 + parent: 2 + - uid: 2112 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 2113 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 + - uid: 2114 + components: + - type: Transform + pos: 36.5,6.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + pos: 37.5,6.5 + parent: 2 + - uid: 2116 + components: + - type: Transform + pos: 38.5,12.5 + parent: 2 + - uid: 2117 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 2119 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 2120 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 2121 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 2122 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 2 + - uid: 2123 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 2 + - uid: 2124 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 2125 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 2126 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 2127 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - uid: 2128 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 2129 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - uid: 2130 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 2131 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - uid: 2132 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 + - uid: 2133 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 2 + - uid: 2134 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 2 + - uid: 2135 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 2 + - uid: 2136 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 2 + - uid: 2137 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 2 + - uid: 2138 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 + - uid: 2139 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 2140 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 2141 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 + - uid: 2142 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 2143 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 2144 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 2145 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 2146 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 2147 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 2148 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 2149 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 2150 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 2151 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 + - uid: 2152 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 2153 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 + - uid: 2154 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 2155 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 2156 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 2157 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 2158 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 2159 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 2160 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 2161 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 + - uid: 2162 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 2163 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 2 + - uid: 2164 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 2 + - uid: 2165 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 2 + - uid: 2166 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 2 + - uid: 2167 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 2 + - uid: 2168 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 2 + - uid: 2169 + components: + - type: Transform + pos: -0.5,-28.5 + parent: 2 + - uid: 2170 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 2 + - uid: 2171 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 2 + - uid: 2172 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 2 + - uid: 2173 + components: + - type: Transform + pos: -4.5,-28.5 + parent: 2 + - uid: 2174 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 2 + - uid: 2175 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 2 + - uid: 2176 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 2 + - uid: 2177 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 2 + - uid: 2178 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 2 + - uid: 2179 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 2 + - uid: 2180 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 2 + - uid: 2182 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 2 + - uid: 2183 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 2 + - uid: 2184 + components: + - type: Transform + pos: 37.5,-4.5 + parent: 2 + - uid: 2185 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - uid: 2186 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 2187 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 2 + - uid: 2188 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 + - uid: 2190 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 2191 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - uid: 2192 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 + - uid: 2193 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 2 + - uid: 2194 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 2 + - uid: 2195 + components: + - type: Transform + pos: 38.5,-8.5 + parent: 2 + - uid: 2196 + components: + - type: Transform + pos: 39.5,-8.5 + parent: 2 + - uid: 2197 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 2 + - uid: 2199 + components: + - type: Transform + pos: 39.5,-5.5 + parent: 2 + - uid: 2200 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - uid: 2201 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - uid: 2202 + components: + - type: Transform + pos: 43.5,-0.5 + parent: 2 + - uid: 2203 + components: + - type: Transform + pos: 42.5,-0.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + pos: 44.5,-0.5 + parent: 2 + - uid: 2205 + components: + - type: Transform + pos: 45.5,-0.5 + parent: 2 + - uid: 2206 + components: + - type: Transform + pos: 46.5,-0.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: 47.5,-0.5 + parent: 2 + - uid: 2208 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 2 + - uid: 2209 + components: + - type: Transform + pos: 49.5,-0.5 + parent: 2 + - uid: 2210 + components: + - type: Transform + pos: 49.5,-1.5 + parent: 2 + - uid: 2211 + components: + - type: Transform + pos: 47.5,-1.5 + parent: 2 + - uid: 2212 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 2 + - uid: 2213 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 2 + - uid: 2214 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - uid: 2215 + components: + - type: Transform + pos: 44.5,-3.5 + parent: 2 + - uid: 2216 + components: + - type: Transform + pos: 45.5,-3.5 + parent: 2 + - uid: 2217 + components: + - type: Transform + pos: 46.5,-3.5 + parent: 2 + - uid: 2218 + components: + - type: Transform + pos: 47.5,-3.5 + parent: 2 + - uid: 2219 + components: + - type: Transform + pos: 48.5,-3.5 + parent: 2 + - uid: 2220 + components: + - type: Transform + pos: 48.5,-4.5 + parent: 2 + - uid: 2221 + components: + - type: Transform + pos: 48.5,-5.5 + parent: 2 + - uid: 2222 + components: + - type: Transform + pos: 48.5,-6.5 + parent: 2 + - uid: 2223 + components: + - type: Transform + pos: 48.5,-7.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + pos: 48.5,-8.5 + parent: 2 + - uid: 2225 + components: + - type: Transform + pos: 47.5,-8.5 + parent: 2 + - uid: 2226 + components: + - type: Transform + pos: 46.5,-8.5 + parent: 2 + - uid: 2227 + components: + - type: Transform + pos: 45.5,-8.5 + parent: 2 + - uid: 2228 + components: + - type: Transform + pos: 44.5,-8.5 + parent: 2 + - uid: 2229 + components: + - type: Transform + pos: 43.5,-8.5 + parent: 2 + - uid: 2230 + components: + - type: Transform + pos: 43.5,-7.5 + parent: 2 + - uid: 2231 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 2232 + components: + - type: Transform + pos: 43.5,-5.5 + parent: 2 + - uid: 2233 + components: + - type: Transform + pos: 43.5,-9.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + pos: 43.5,-10.5 + parent: 2 + - uid: 2235 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 2 + - uid: 2236 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 2 + - uid: 2237 + components: + - type: Transform + pos: 48.5,-9.5 + parent: 2 + - uid: 2238 + components: + - type: Transform + pos: -12.5,44.5 + parent: 2 + - uid: 2239 + components: + - type: Transform + pos: -11.5,44.5 + parent: 2 + - uid: 2240 + components: + - type: Transform + pos: 60.5,-3.5 + parent: 2 + - uid: 2241 + components: + - type: Transform + pos: 59.5,-3.5 + parent: 2 + - uid: 2242 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 2 + - uid: 2243 + components: + - type: Transform + pos: 57.5,-3.5 + parent: 2 + - uid: 2244 + components: + - type: Transform + pos: 57.5,-2.5 + parent: 2 + - uid: 2245 + components: + - type: Transform + pos: 57.5,-1.5 + parent: 2 + - uid: 2246 + components: + - type: Transform + pos: 57.5,-0.5 + parent: 2 + - uid: 2247 + components: + - type: Transform + pos: 57.5,0.5 + parent: 2 + - uid: 2248 + components: + - type: Transform + pos: 57.5,1.5 + parent: 2 + - uid: 2249 + components: + - type: Transform + pos: 57.5,2.5 + parent: 2 + - uid: 2250 + components: + - type: Transform + pos: 56.5,-3.5 + parent: 2 + - uid: 2251 + components: + - type: Transform + pos: 55.5,-3.5 + parent: 2 + - uid: 2252 + components: + - type: Transform + pos: 54.5,-3.5 + parent: 2 + - uid: 2253 + components: + - type: Transform + pos: 56.5,-4.5 + parent: 2 + - uid: 2254 + components: + - type: Transform + pos: 56.5,-5.5 + parent: 2 + - uid: 2255 + components: + - type: Transform + pos: 56.5,-6.5 + parent: 2 + - uid: 2256 + components: + - type: Transform + pos: 56.5,-7.5 + parent: 2 + - uid: 2257 + components: + - type: Transform + pos: 56.5,-8.5 + parent: 2 + - uid: 2258 + components: + - type: Transform + pos: 56.5,-9.5 + parent: 2 + - uid: 2259 + components: + - type: Transform + pos: 57.5,-9.5 + parent: 2 + - uid: 2260 + components: + - type: Transform + pos: 58.5,-9.5 + parent: 2 + - uid: 2261 + components: + - type: Transform + pos: 59.5,-9.5 + parent: 2 + - uid: 2262 + components: + - type: Transform + pos: 60.5,-9.5 + parent: 2 + - uid: 2263 + components: + - type: Transform + pos: 61.5,-9.5 + parent: 2 + - uid: 2264 + components: + - type: Transform + pos: 62.5,-9.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: 61.5,-10.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + pos: 61.5,-11.5 + parent: 2 + - uid: 2267 + components: + - type: Transform + pos: 59.5,-10.5 + parent: 2 + - uid: 2268 + components: + - type: Transform + pos: 59.5,-11.5 + parent: 2 + - uid: 2269 + components: + - type: Transform + pos: 57.5,-10.5 + parent: 2 + - uid: 2270 + components: + - type: Transform + pos: 57.5,-11.5 + parent: 2 + - uid: 2271 + components: + - type: Transform + pos: 62.5,-8.5 + parent: 2 + - uid: 2272 + components: + - type: Transform + pos: 62.5,-7.5 + parent: 2 + - uid: 2273 + components: + - type: Transform + pos: 62.5,-6.5 + parent: 2 + - uid: 2274 + components: + - type: Transform + pos: 62.5,-5.5 + parent: 2 + - uid: 2275 + components: + - type: Transform + pos: 62.5,-4.5 + parent: 2 + - uid: 2276 + components: + - type: Transform + pos: 73.5,-4.5 + parent: 2 + - uid: 2277 + components: + - type: Transform + pos: 72.5,-4.5 + parent: 2 + - uid: 2278 + components: + - type: Transform + pos: 72.5,-5.5 + parent: 2 + - uid: 2279 + components: + - type: Transform + pos: 72.5,-6.5 + parent: 2 + - uid: 2280 + components: + - type: Transform + pos: 72.5,-7.5 + parent: 2 + - uid: 2281 + components: + - type: Transform + pos: 72.5,-8.5 + parent: 2 + - uid: 2282 + components: + - type: Transform + pos: 72.5,-9.5 + parent: 2 + - uid: 2283 + components: + - type: Transform + pos: 71.5,-9.5 + parent: 2 + - uid: 2284 + components: + - type: Transform + pos: 70.5,-9.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + pos: 69.5,-9.5 + parent: 2 + - uid: 2286 + components: + - type: Transform + pos: 68.5,-9.5 + parent: 2 + - uid: 2287 + components: + - type: Transform + pos: 67.5,-9.5 + parent: 2 + - uid: 2288 + components: + - type: Transform + pos: 66.5,-9.5 + parent: 2 + - uid: 2289 + components: + - type: Transform + pos: 66.5,-8.5 + parent: 2 + - uid: 2290 + components: + - type: Transform + pos: 66.5,-7.5 + parent: 2 + - uid: 2291 + components: + - type: Transform + pos: 66.5,-6.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + pos: 66.5,-5.5 + parent: 2 + - uid: 2293 + components: + - type: Transform + pos: 66.5,-4.5 + parent: 2 + - uid: 2294 + components: + - type: Transform + pos: 66.5,-3.5 + parent: 2 + - uid: 2295 + components: + - type: Transform + pos: 67.5,-3.5 + parent: 2 + - uid: 2296 + components: + - type: Transform + pos: 68.5,-3.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + pos: 69.5,-3.5 + parent: 2 + - uid: 2298 + components: + - type: Transform + pos: 70.5,-3.5 + parent: 2 + - uid: 2299 + components: + - type: Transform + pos: 70.5,-2.5 + parent: 2 + - uid: 2300 + components: + - type: Transform + pos: 70.5,-1.5 + parent: 2 + - uid: 2301 + components: + - type: Transform + pos: 70.5,-0.5 + parent: 2 + - uid: 2302 + components: + - type: Transform + pos: 70.5,0.5 + parent: 2 + - uid: 2303 + components: + - type: Transform + pos: 70.5,1.5 + parent: 2 + - uid: 2304 + components: + - type: Transform + pos: 70.5,2.5 + parent: 2 + - uid: 2305 + components: + - type: Transform + pos: 70.5,3.5 + parent: 2 + - uid: 2306 + components: + - type: Transform + pos: 70.5,4.5 + parent: 2 + - uid: 2307 + components: + - type: Transform + pos: 70.5,5.5 + parent: 2 + - uid: 2308 + components: + - type: Transform + pos: 71.5,5.5 + parent: 2 + - uid: 2309 + components: + - type: Transform + pos: 72.5,5.5 + parent: 2 + - uid: 2310 + components: + - type: Transform + pos: 73.5,5.5 + parent: 2 + - uid: 2311 + components: + - type: Transform + pos: 71.5,3.5 + parent: 2 + - uid: 2312 + components: + - type: Transform + pos: 72.5,3.5 + parent: 2 + - uid: 2313 + components: + - type: Transform + pos: 73.5,3.5 + parent: 2 + - uid: 2314 + components: + - type: Transform + pos: 74.5,3.5 + parent: 2 + - uid: 2315 + components: + - type: Transform + pos: 75.5,3.5 + parent: 2 + - uid: 2316 + components: + - type: Transform + pos: 75.5,2.5 + parent: 2 + - uid: 2317 + components: + - type: Transform + pos: 75.5,1.5 + parent: 2 + - uid: 2318 + components: + - type: Transform + pos: 75.5,0.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + pos: 62.5,1.5 + parent: 2 + - uid: 2320 + components: + - type: Transform + pos: 61.5,1.5 + parent: 2 + - uid: 2321 + components: + - type: Transform + pos: 63.5,1.5 + parent: 2 + - uid: 2322 + components: + - type: Transform + pos: 64.5,1.5 + parent: 2 + - uid: 2323 + components: + - type: Transform + pos: 65.5,1.5 + parent: 2 + - uid: 2324 + components: + - type: Transform + pos: 65.5,2.5 + parent: 2 + - uid: 2325 + components: + - type: Transform + pos: 65.5,0.5 + parent: 2 + - uid: 2326 + components: + - type: Transform + pos: 71.5,-2.5 + parent: 2 + - uid: 2327 + components: + - type: Transform + pos: 72.5,-2.5 + parent: 2 + - uid: 2328 + components: + - type: Transform + pos: 73.5,-2.5 + parent: 2 + - uid: 2329 + components: + - type: Transform + pos: 74.5,-2.5 + parent: 2 + - uid: 2330 + components: + - type: Transform + pos: 73.5,-7.5 + parent: 2 + - uid: 2331 + components: + - type: Transform + pos: 74.5,-7.5 + parent: 2 + - uid: 2332 + components: + - type: Transform + pos: 45.5,19.5 + parent: 2 + - uid: 2333 + components: + - type: Transform + pos: 46.5,19.5 + parent: 2 + - uid: 2334 + components: + - type: Transform + pos: 66.5,20.5 + parent: 2 + - uid: 2335 + components: + - type: Transform + pos: 66.5,19.5 + parent: 2 + - uid: 2336 + components: + - type: Transform + pos: 65.5,18.5 + parent: 2 + - uid: 2337 + components: + - type: Transform + pos: 65.5,17.5 + parent: 2 + - uid: 2338 + components: + - type: Transform + pos: 42.5,5.5 + parent: 2 + - uid: 2339 + components: + - type: Transform + pos: 41.5,5.5 + parent: 2 + - uid: 2340 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 2341 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 2343 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - uid: 2345 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 + - uid: 2346 + components: + - type: Transform + pos: 37.5,3.5 + parent: 2 + - uid: 2347 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 2348 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + pos: 34.5,3.5 + parent: 2 + - uid: 2350 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 2351 + components: + - type: Transform + pos: 32.5,3.5 + parent: 2 + - uid: 2352 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - uid: 2353 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 2354 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 2355 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 2356 + components: + - type: Transform + pos: 27.5,3.5 + parent: 2 + - uid: 2357 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 + - uid: 2358 + components: + - type: Transform + pos: 25.5,3.5 + parent: 2 + - uid: 2359 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 + - uid: 2360 + components: + - type: Transform + pos: 44.5,3.5 + parent: 2 + - uid: 2361 + components: + - type: Transform + pos: 45.5,3.5 + parent: 2 + - uid: 2362 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 + - uid: 2363 + components: + - type: Transform + pos: 45.5,5.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + pos: 45.5,6.5 + parent: 2 + - uid: 2365 + components: + - type: Transform + pos: 45.5,7.5 + parent: 2 + - uid: 2366 + components: + - type: Transform + pos: 45.5,8.5 + parent: 2 + - uid: 2367 + components: + - type: Transform + pos: 45.5,9.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + pos: 45.5,10.5 + parent: 2 + - uid: 2369 + components: + - type: Transform + pos: 46.5,10.5 + parent: 2 + - uid: 2370 + components: + - type: Transform + pos: 47.5,10.5 + parent: 2 + - uid: 2371 + components: + - type: Transform + pos: 48.5,10.5 + parent: 2 + - uid: 2372 + components: + - type: Transform + pos: 49.5,10.5 + parent: 2 + - uid: 2373 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - uid: 2374 + components: + - type: Transform + pos: 51.5,10.5 + parent: 2 + - uid: 2375 + components: + - type: Transform + pos: 52.5,10.5 + parent: 2 + - uid: 2376 + components: + - type: Transform + pos: 53.5,10.5 + parent: 2 + - uid: 2377 + components: + - type: Transform + pos: 54.5,10.5 + parent: 2 + - uid: 2378 + components: + - type: Transform + pos: 55.5,10.5 + parent: 2 + - uid: 2379 + components: + - type: Transform + pos: 56.5,10.5 + parent: 2 + - uid: 2380 + components: + - type: Transform + pos: 57.5,10.5 + parent: 2 + - uid: 2381 + components: + - type: Transform + pos: 58.5,10.5 + parent: 2 + - uid: 2382 + components: + - type: Transform + pos: 59.5,10.5 + parent: 2 + - uid: 2383 + components: + - type: Transform + pos: 59.5,11.5 + parent: 2 + - uid: 2384 + components: + - type: Transform + pos: 59.5,12.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + pos: 59.5,13.5 + parent: 2 + - uid: 2386 + components: + - type: Transform + pos: 58.5,13.5 + parent: 2 + - uid: 2387 + components: + - type: Transform + pos: 57.5,13.5 + parent: 2 + - uid: 2388 + components: + - type: Transform + pos: 56.5,13.5 + parent: 2 + - uid: 2389 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - uid: 2390 + components: + - type: Transform + pos: 54.5,13.5 + parent: 2 + - uid: 2391 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 2392 + components: + - type: Transform + pos: 52.5,13.5 + parent: 2 + - uid: 2393 + components: + - type: Transform + pos: 51.5,13.5 + parent: 2 + - uid: 2394 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 2395 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 + - uid: 2396 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 + - uid: 2397 + components: + - type: Transform + pos: 52.5,14.5 + parent: 2 + - uid: 2398 + components: + - type: Transform + pos: 52.5,15.5 + parent: 2 + - uid: 2399 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 + - uid: 2400 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 + - uid: 2401 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - uid: 2402 + components: + - type: Transform + pos: 61.5,14.5 + parent: 2 + - uid: 2403 + components: + - type: Transform + pos: 62.5,14.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + pos: 63.5,14.5 + parent: 2 + - uid: 2405 + components: + - type: Transform + pos: 64.5,14.5 + parent: 2 + - uid: 2406 + components: + - type: Transform + pos: 65.5,14.5 + parent: 2 + - uid: 2407 + components: + - type: Transform + pos: 68.5,13.5 + parent: 2 + - uid: 2408 + components: + - type: Transform + pos: 68.5,14.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + pos: 69.5,14.5 + parent: 2 + - uid: 2410 + components: + - type: Transform + pos: 63.5,8.5 + parent: 2 + - uid: 2411 + components: + - type: Transform + pos: 65.5,13.5 + parent: 2 + - uid: 2412 + components: + - type: Transform + pos: 65.5,12.5 + parent: 2 + - uid: 2413 + components: + - type: Transform + pos: 65.5,11.5 + parent: 2 + - uid: 2414 + components: + - type: Transform + pos: 65.5,10.5 + parent: 2 + - uid: 2415 + components: + - type: Transform + pos: 65.5,9.5 + parent: 2 + - uid: 2416 + components: + - type: Transform + pos: 66.5,9.5 + parent: 2 + - uid: 2417 + components: + - type: Transform + pos: 66.5,8.5 + parent: 2 + - uid: 2418 + components: + - type: Transform + pos: 67.5,8.5 + parent: 2 + - uid: 2419 + components: + - type: Transform + pos: 70.5,10.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + pos: 70.5,9.5 + parent: 2 + - uid: 2421 + components: + - type: Transform + pos: 69.5,9.5 + parent: 2 + - uid: 2422 + components: + - type: Transform + pos: 68.5,9.5 + parent: 2 + - uid: 2423 + components: + - type: Transform + pos: 68.5,8.5 + parent: 2 + - uid: 2424 + components: + - type: Transform + pos: 73.5,8.5 + parent: 2 + - uid: 2425 + components: + - type: Transform + pos: 74.5,8.5 + parent: 2 + - uid: 2426 + components: + - type: Transform + pos: 64.5,9.5 + parent: 2 + - uid: 2427 + components: + - type: Transform + pos: 63.5,9.5 + parent: 2 + - uid: 2428 + components: + - type: Transform + pos: 61.5,9.5 + parent: 2 + - uid: 2429 + components: + - type: Transform + pos: 62.5,9.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + pos: 70.5,11.5 + parent: 2 + - uid: 2431 + components: + - type: Transform + pos: 71.5,11.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + pos: 72.5,11.5 + parent: 2 + - uid: 2433 + components: + - type: Transform + pos: 73.5,11.5 + parent: 2 + - uid: 2434 + components: + - type: Transform + pos: 73.5,10.5 + parent: 2 + - uid: 2435 + components: + - type: Transform + pos: 73.5,9.5 + parent: 2 + - uid: 2436 + components: + - type: Transform + pos: 74.5,11.5 + parent: 2 + - uid: 2437 + components: + - type: Transform + pos: 69.5,11.5 + parent: 2 + - uid: 2438 + components: + - type: Transform + pos: 68.5,11.5 + parent: 2 + - uid: 2439 + components: + - type: Transform + pos: 68.5,12.5 + parent: 2 + - uid: 2440 + components: + - type: Transform + pos: 64.5,8.5 + parent: 2 + - uid: 2441 + components: + - type: Transform + pos: 61.5,15.5 + parent: 2 + - uid: 2442 + components: + - type: Transform + pos: 61.5,16.5 + parent: 2 + - uid: 2443 + components: + - type: Transform + pos: 61.5,17.5 + parent: 2 + - uid: 2444 + components: + - type: Transform + pos: 61.5,18.5 + parent: 2 + - uid: 2445 + components: + - type: Transform + pos: 60.5,18.5 + parent: 2 + - uid: 2446 + components: + - type: Transform + pos: 60.5,19.5 + parent: 2 + - uid: 2447 + components: + - type: Transform + pos: 56.5,14.5 + parent: 2 + - uid: 2448 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - uid: 2449 + components: + - type: Transform + pos: 62.5,18.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 + - uid: 2451 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 2452 + components: + - type: Transform + pos: 56.5,15.5 + parent: 2 + - uid: 2453 + components: + - type: Transform + pos: 56.5,16.5 + parent: 2 + - uid: 2454 + components: + - type: Transform + pos: 56.5,17.5 + parent: 2 + - uid: 2455 + components: + - type: Transform + pos: 56.5,18.5 + parent: 2 + - uid: 2456 + components: + - type: Transform + pos: 56.5,19.5 + parent: 2 + - uid: 2457 + components: + - type: Transform + pos: 56.5,20.5 + parent: 2 + - uid: 2458 + components: + - type: Transform + pos: 56.5,21.5 + parent: 2 + - uid: 2459 + components: + - type: Transform + pos: 55.5,21.5 + parent: 2 + - uid: 2460 + components: + - type: Transform + pos: 57.5,21.5 + parent: 2 + - uid: 2461 + components: + - type: Transform + pos: 46.5,3.5 + parent: 2 + - uid: 2462 + components: + - type: Transform + pos: 47.5,3.5 + parent: 2 + - uid: 2463 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + pos: 54.5,8.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + pos: 54.5,7.5 + parent: 2 + - uid: 2466 + components: + - type: Transform + pos: 54.5,6.5 + parent: 2 + - uid: 2467 + components: + - type: Transform + pos: 54.5,5.5 + parent: 2 + - uid: 2468 + components: + - type: Transform + pos: 54.5,4.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + pos: 53.5,4.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + pos: 52.5,4.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - uid: 2472 + components: + - type: Transform + pos: 50.5,4.5 + parent: 2 + - uid: 2473 + components: + - type: Transform + pos: 49.5,4.5 + parent: 2 + - uid: 2474 + components: + - type: Transform + pos: 51.5,3.5 + parent: 2 + - uid: 2475 + components: + - type: Transform + pos: 51.5,2.5 + parent: 2 + - uid: 2476 + components: + - type: Transform + pos: 51.5,1.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + pos: 51.5,0.5 + parent: 2 + - uid: 2478 + components: + - type: Transform + pos: 51.5,-0.5 + parent: 2 + - uid: 2479 + components: + - type: Transform + pos: 51.5,-1.5 + parent: 2 + - uid: 2480 + components: + - type: Transform + pos: 51.5,-2.5 + parent: 2 + - uid: 2481 + components: + - type: Transform + pos: 51.5,-3.5 + parent: 2 + - uid: 2482 + components: + - type: Transform + pos: 51.5,-4.5 + parent: 2 + - uid: 2483 + components: + - type: Transform + pos: 51.5,-6.5 + parent: 2 + - uid: 2484 + components: + - type: Transform + pos: 55.5,5.5 + parent: 2 + - uid: 2485 + components: + - type: Transform + pos: 56.5,5.5 + parent: 2 + - uid: 2486 + components: + - type: Transform + pos: 57.5,5.5 + parent: 2 + - uid: 2487 + components: + - type: Transform + pos: 58.5,5.5 + parent: 2 + - uid: 2488 + components: + - type: Transform + pos: 59.5,5.5 + parent: 2 + - uid: 2489 + components: + - type: Transform + pos: 60.5,5.5 + parent: 2 + - uid: 2490 + components: + - type: Transform + pos: 61.5,5.5 + parent: 2 + - uid: 2491 + components: + - type: Transform + pos: 62.5,5.5 + parent: 2 + - uid: 2492 + components: + - type: Transform + pos: 63.5,5.5 + parent: 2 + - uid: 2493 + components: + - type: Transform + pos: 64.5,5.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + pos: 65.5,5.5 + parent: 2 + - uid: 2495 + components: + - type: Transform + pos: 66.5,5.5 + parent: 2 + - uid: 2496 + components: + - type: Transform + pos: 49.5,9.5 + parent: 2 + - uid: 2497 + components: + - type: Transform + pos: 49.5,8.5 + parent: 2 + - uid: 2498 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 2499 + components: + - type: Transform + pos: 52.5,8.5 + parent: 2 + - uid: 2500 + components: + - type: Transform + pos: 57.5,9.5 + parent: 2 + - uid: 2501 + components: + - type: Transform + pos: 57.5,8.5 + parent: 2 + - uid: 2502 + components: + - type: Transform + pos: 47.5,13.5 + parent: 2 + - uid: 2503 + components: + - type: Transform + pos: 62.5,10.5 + parent: 2 + - uid: 2504 + components: + - type: Transform + pos: 47.5,19.5 + parent: 2 + - uid: 2505 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 2506 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 + - uid: 2507 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 2508 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 2509 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 + - uid: 2513 + components: + - type: Transform + pos: -66.5,16.5 + parent: 2 + - uid: 2514 + components: + - type: Transform + pos: 74.5,-10.5 + parent: 2 + - uid: 2515 + components: + - type: Transform + pos: 75.5,-10.5 + parent: 2 + - uid: 2516 + components: + - type: Transform + pos: 76.5,-10.5 + parent: 2 + - uid: 2517 + components: + - type: Transform + pos: 77.5,-10.5 + parent: 2 + - uid: 2518 + components: + - type: Transform + pos: 78.5,-10.5 + parent: 2 + - uid: 2519 + components: + - type: Transform + pos: 79.5,-10.5 + parent: 2 + - uid: 2520 + components: + - type: Transform + pos: 80.5,-10.5 + parent: 2 + - uid: 2521 + components: + - type: Transform + pos: 81.5,-10.5 + parent: 2 + - uid: 2522 + components: + - type: Transform + pos: 82.5,-10.5 + parent: 2 + - uid: 2523 + components: + - type: Transform + pos: 83.5,-10.5 + parent: 2 + - uid: 2524 + components: + - type: Transform + pos: 84.5,-10.5 + parent: 2 + - uid: 2525 + components: + - type: Transform + pos: 85.5,-10.5 + parent: 2 + - uid: 2526 + components: + - type: Transform + pos: 83.5,-9.5 + parent: 2 + - uid: 2527 + components: + - type: Transform + pos: 83.5,-8.5 + parent: 2 + - uid: 2528 + components: + - type: Transform + pos: 83.5,-7.5 + parent: 2 + - uid: 2529 + components: + - type: Transform + pos: 83.5,-6.5 + parent: 2 + - uid: 2530 + components: + - type: Transform + pos: 85.5,-6.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + pos: 84.5,-6.5 + parent: 2 + - uid: 2532 + components: + - type: Transform + pos: 79.5,-9.5 + parent: 2 + - uid: 2533 + components: + - type: Transform + pos: 79.5,-8.5 + parent: 2 + - uid: 2534 + components: + - type: Transform + pos: 79.5,-7.5 + parent: 2 + - uid: 2535 + components: + - type: Transform + pos: 79.5,-6.5 + parent: 2 + - uid: 2536 + components: + - type: Transform + pos: 79.5,-5.5 + parent: 2 + - uid: 2537 + components: + - type: Transform + pos: 79.5,-4.5 + parent: 2 + - uid: 2538 + components: + - type: Transform + pos: 78.5,-4.5 + parent: 2 + - uid: 2539 + components: + - type: Transform + pos: 77.5,-4.5 + parent: 2 + - uid: 2540 + components: + - type: Transform + pos: 76.5,-4.5 + parent: 2 + - uid: 2541 + components: + - type: Transform + pos: 80.5,-4.5 + parent: 2 + - uid: 2542 + components: + - type: Transform + pos: 81.5,-4.5 + parent: 2 + - uid: 2543 + components: + - type: Transform + pos: 82.5,-4.5 + parent: 2 + - uid: 2544 + components: + - type: Transform + pos: 79.5,-3.5 + parent: 2 + - uid: 2545 + components: + - type: Transform + pos: 79.5,-2.5 + parent: 2 + - uid: 2546 + components: + - type: Transform + pos: 79.5,-1.5 + parent: 2 + - uid: 2547 + components: + - type: Transform + pos: 79.5,-0.5 + parent: 2 + - uid: 2548 + components: + - type: Transform + pos: 78.5,-0.5 + parent: 2 + - uid: 2549 + components: + - type: Transform + pos: 80.5,-0.5 + parent: 2 + - uid: 2550 + components: + - type: Transform + pos: 81.5,-0.5 + parent: 2 + - uid: 2551 + components: + - type: Transform + pos: 82.5,-0.5 + parent: 2 + - uid: 2552 + components: + - type: Transform + pos: 83.5,-0.5 + parent: 2 + - uid: 2553 + components: + - type: Transform + pos: 83.5,-1.5 + parent: 2 + - uid: 2554 + components: + - type: Transform + pos: 83.5,-2.5 + parent: 2 + - uid: 2555 + components: + - type: Transform + pos: 84.5,-2.5 + parent: 2 + - uid: 2556 + components: + - type: Transform + pos: 85.5,-2.5 + parent: 2 + - uid: 2557 + components: + - type: Transform + pos: 80.5,-12.5 + parent: 2 + - uid: 2558 + components: + - type: Transform + pos: 80.5,-11.5 + parent: 2 + - uid: 2559 + components: + - type: Transform + pos: 80.5,-13.5 + parent: 2 + - uid: 2560 + components: + - type: Transform + pos: 80.5,-14.5 + parent: 2 + - uid: 2561 + components: + - type: Transform + pos: 80.5,-15.5 + parent: 2 + - uid: 2562 + components: + - type: Transform + pos: 80.5,-16.5 + parent: 2 + - uid: 2563 + components: + - type: Transform + pos: 79.5,-16.5 + parent: 2 + - uid: 2564 + components: + - type: Transform + pos: 78.5,-16.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + pos: 81.5,-14.5 + parent: 2 + - uid: 2566 + components: + - type: Transform + pos: 82.5,-14.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + pos: 83.5,-14.5 + parent: 2 + - uid: 2568 + components: + - type: Transform + pos: 84.5,-14.5 + parent: 2 + - uid: 2569 + components: + - type: Transform + pos: 85.5,-14.5 + parent: 2 + - uid: 2570 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 2571 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 2572 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 2573 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 2574 + components: + - type: Transform + pos: -7.5,7.5 + parent: 2 + - uid: 2575 + components: + - type: Transform + pos: -6.5,6.5 + parent: 2 + - uid: 2576 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 2577 + components: + - type: Transform + pos: -7.5,8.5 + parent: 2 + - uid: 2578 + components: + - type: Transform + pos: -7.5,9.5 + parent: 2 + - uid: 2579 + components: + - type: Transform + pos: -5.5,6.5 + parent: 2 + - uid: 2580 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 + - uid: 2581 + components: + - type: Transform + pos: -3.5,6.5 + parent: 2 + - uid: 2582 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - uid: 2583 + components: + - type: Transform + pos: -3.5,4.5 + parent: 2 + - uid: 2584 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - uid: 2585 + components: + - type: Transform + pos: -4.5,7.5 + parent: 2 + - uid: 2586 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 2587 + components: + - type: Transform + pos: -8.5,7.5 + parent: 2 + - uid: 2588 + components: + - type: Transform + pos: -9.5,7.5 + parent: 2 + - uid: 2589 + components: + - type: Transform + pos: -10.5,7.5 + parent: 2 + - uid: 2590 + components: + - type: Transform + pos: -11.5,7.5 + parent: 2 + - uid: 2591 + components: + - type: Transform + pos: -11.5,6.5 + parent: 2 + - uid: 2592 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 + - uid: 2593 + components: + - type: Transform + pos: -11.5,4.5 + parent: 2 + - uid: 2594 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 2595 + components: + - type: Transform + pos: -11.5,2.5 + parent: 2 + - uid: 2596 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - uid: 2597 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 + - uid: 2598 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 2599 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - uid: 2600 + components: + - type: Transform + pos: -10.5,4.5 + parent: 2 + - uid: 2601 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 2602 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 + - uid: 2603 + components: + - type: Transform + pos: -13.5,7.5 + parent: 2 + - uid: 2604 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + pos: -38.5,-31.5 + parent: 2 + - uid: 2606 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - uid: 2607 + components: + - type: Transform + pos: -30.5,7.5 + parent: 2 + - uid: 2608 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 + - uid: 2609 + components: + - type: Transform + pos: -30.5,9.5 + parent: 2 + - uid: 2610 + components: + - type: Transform + pos: -29.5,9.5 + parent: 2 + - uid: 2611 + components: + - type: Transform + pos: -28.5,9.5 + parent: 2 + - uid: 2612 + components: + - type: Transform + pos: -35.5,10.5 + parent: 2 + - uid: 2613 + components: + - type: Transform + pos: -34.5,10.5 + parent: 2 + - uid: 2614 + components: + - type: Transform + pos: -34.5,9.5 + parent: 2 + - uid: 2615 + components: + - type: Transform + pos: -33.5,10.5 + parent: 2 + - uid: 2616 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - uid: 2617 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - uid: 2618 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 + - uid: 2619 + components: + - type: Transform + pos: -31.5,3.5 + parent: 2 + - uid: 2620 + components: + - type: Transform + pos: -31.5,2.5 + parent: 2 + - uid: 2621 + components: + - type: Transform + pos: -31.5,1.5 + parent: 2 + - uid: 2622 + components: + - type: Transform + pos: -29.5,0.5 + parent: 2 + - uid: 2623 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - uid: 2624 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - uid: 2625 + components: + - type: Transform + pos: -33.5,0.5 + parent: 2 + - uid: 2626 + components: + - type: Transform + pos: -34.5,0.5 + parent: 2 + - uid: 2627 + components: + - type: Transform + pos: -35.5,0.5 + parent: 2 + - uid: 2628 + components: + - type: Transform + pos: -62.5,14.5 + parent: 2 + - uid: 2629 + components: + - type: Transform + pos: -60.5,14.5 + parent: 2 + - uid: 2630 + components: + - type: Transform + pos: -61.5,14.5 + parent: 2 + - uid: 2631 + components: + - type: Transform + pos: -58.5,8.5 + parent: 2 + - uid: 2632 + components: + - type: Transform + pos: -60.5,8.5 + parent: 2 + - uid: 2633 + components: + - type: Transform + pos: -61.5,8.5 + parent: 2 + - uid: 2634 + components: + - type: Transform + pos: -61.5,9.5 + parent: 2 + - uid: 2635 + components: + - type: Transform + pos: -61.5,10.5 + parent: 2 + - uid: 2636 + components: + - type: Transform + pos: -61.5,11.5 + parent: 2 + - uid: 2637 + components: + - type: Transform + pos: -61.5,12.5 + parent: 2 + - uid: 2638 + components: + - type: Transform + pos: -61.5,13.5 + parent: 2 + - uid: 2639 + components: + - type: Transform + pos: -46.5,12.5 + parent: 2 + - uid: 2640 + components: + - type: Transform + pos: -44.5,12.5 + parent: 2 + - uid: 2641 + components: + - type: Transform + pos: -40.5,11.5 + parent: 2 + - uid: 2642 + components: + - type: Transform + pos: -41.5,12.5 + parent: 2 + - uid: 2643 + components: + - type: Transform + pos: -43.5,12.5 + parent: 2 + - uid: 2644 + components: + - type: Transform + pos: -43.5,11.5 + parent: 2 + - uid: 2645 + components: + - type: Transform + pos: -42.5,10.5 + parent: 2 + - uid: 2646 + components: + - type: Transform + pos: -56.5,17.5 + parent: 2 + - uid: 2647 + components: + - type: Transform + pos: -59.5,8.5 + parent: 2 + - uid: 2648 + components: + - type: Transform + pos: -57.5,8.5 + parent: 2 + - uid: 2649 + components: + - type: Transform + pos: -57.5,11.5 + parent: 2 + - uid: 2650 + components: + - type: Transform + pos: -51.5,14.5 + parent: 2 + - uid: 2651 + components: + - type: Transform + pos: -46.5,20.5 + parent: 2 + - uid: 2652 + components: + - type: Transform + pos: -48.5,19.5 + parent: 2 + - uid: 2653 + components: + - type: Transform + pos: -49.5,19.5 + parent: 2 + - uid: 2654 + components: + - type: Transform + pos: -50.5,11.5 + parent: 2 + - uid: 2655 + components: + - type: Transform + pos: -43.5,6.5 + parent: 2 + - uid: 2656 + components: + - type: Transform + pos: -43.5,5.5 + parent: 2 + - uid: 2657 + components: + - type: Transform + pos: -43.5,4.5 + parent: 2 + - uid: 2658 + components: + - type: Transform + pos: -44.5,4.5 + parent: 2 + - uid: 2659 + components: + - type: Transform + pos: -45.5,1.5 + parent: 2 + - uid: 2660 + components: + - type: Transform + pos: -45.5,2.5 + parent: 2 + - uid: 2661 + components: + - type: Transform + pos: -45.5,4.5 + parent: 2 + - uid: 2662 + components: + - type: Transform + pos: -44.5,0.5 + parent: 2 + - uid: 2663 + components: + - type: Transform + pos: -45.5,0.5 + parent: 2 + - uid: 2664 + components: + - type: Transform + pos: -46.5,0.5 + parent: 2 + - uid: 2665 + components: + - type: Transform + pos: -45.5,3.5 + parent: 2 + - uid: 2666 + components: + - type: Transform + pos: -42.5,4.5 + parent: 2 + - uid: 2667 + components: + - type: Transform + pos: -41.5,4.5 + parent: 2 + - uid: 2668 + components: + - type: Transform + pos: -40.5,4.5 + parent: 2 + - uid: 2669 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 + - uid: 2670 + components: + - type: Transform + pos: -38.5,4.5 + parent: 2 + - uid: 2671 + components: + - type: Transform + pos: -38.5,3.5 + parent: 2 + - uid: 2672 + components: + - type: Transform + pos: -38.5,2.5 + parent: 2 + - uid: 2673 + components: + - type: Transform + pos: -38.5,1.5 + parent: 2 + - uid: 2674 + components: + - type: Transform + pos: -38.5,0.5 + parent: 2 + - uid: 2675 + components: + - type: Transform + pos: -39.5,0.5 + parent: 2 + - uid: 2676 + components: + - type: Transform + pos: -37.5,0.5 + parent: 2 + - uid: 2677 + components: + - type: Transform + pos: -41.5,3.5 + parent: 2 + - uid: 2678 + components: + - type: Transform + pos: -41.5,2.5 + parent: 2 + - uid: 2679 + components: + - type: Transform + pos: -57.5,6.5 + parent: 2 + - uid: 2680 + components: + - type: Transform + pos: -57.5,5.5 + parent: 2 + - uid: 2681 + components: + - type: Transform + pos: -57.5,4.5 + parent: 2 + - uid: 2682 + components: + - type: Transform + pos: -57.5,3.5 + parent: 2 + - uid: 2683 + components: + - type: Transform + pos: -57.5,2.5 + parent: 2 + - uid: 2684 + components: + - type: Transform + pos: -58.5,2.5 + parent: 2 + - uid: 2685 + components: + - type: Transform + pos: -58.5,4.5 + parent: 2 + - uid: 2686 + components: + - type: Transform + pos: -59.5,4.5 + parent: 2 + - uid: 2687 + components: + - type: Transform + pos: -60.5,4.5 + parent: 2 + - uid: 2688 + components: + - type: Transform + pos: -52.5,10.5 + parent: 2 + - uid: 2689 + components: + - type: Transform + pos: -58.5,16.5 + parent: 2 + - uid: 2690 + components: + - type: Transform + pos: -66.5,17.5 + parent: 2 + - uid: 2691 + components: + - type: Transform + pos: -51.5,-1.5 + parent: 2 + - uid: 2692 + components: + - type: Transform + pos: -66.5,18.5 + parent: 2 + - uid: 2693 + components: + - type: Transform + pos: -67.5,17.5 + parent: 2 + - uid: 2694 + components: + - type: Transform + pos: -68.5,18.5 + parent: 2 + - uid: 2695 + components: + - type: Transform + pos: -66.5,14.5 + parent: 2 + - uid: 2696 + components: + - type: Transform + pos: -66.5,13.5 + parent: 2 + - uid: 2697 + components: + - type: Transform + pos: -66.5,12.5 + parent: 2 + - uid: 2698 + components: + - type: Transform + pos: -66.5,11.5 + parent: 2 + - uid: 2699 + components: + - type: Transform + pos: -67.5,11.5 + parent: 2 + - uid: 2700 + components: + - type: Transform + pos: -67.5,13.5 + parent: 2 + - uid: 2701 + components: + - type: Transform + pos: -68.5,13.5 + parent: 2 + - uid: 2702 + components: + - type: Transform + pos: -68.5,12.5 + parent: 2 + - uid: 2703 + components: + - type: Transform + pos: -64.5,14.5 + parent: 2 + - uid: 2704 + components: + - type: Transform + pos: -65.5,14.5 + parent: 2 + - uid: 2705 + components: + - type: Transform + pos: -64.5,9.5 + parent: 2 + - uid: 2706 + components: + - type: Transform + pos: -65.5,9.5 + parent: 2 + - uid: 2707 + components: + - type: Transform + pos: -66.5,9.5 + parent: 2 + - uid: 2708 + components: + - type: Transform + pos: -67.5,9.5 + parent: 2 + - uid: 2709 + components: + - type: Transform + pos: -68.5,9.5 + parent: 2 + - uid: 2710 + components: + - type: Transform + pos: -69.5,9.5 + parent: 2 + - uid: 2711 + components: + - type: Transform + pos: -70.5,9.5 + parent: 2 + - uid: 2712 + components: + - type: Transform + pos: -71.5,9.5 + parent: 2 + - uid: 2713 + components: + - type: Transform + pos: -72.5,9.5 + parent: 2 + - uid: 2714 + components: + - type: Transform + pos: -73.5,9.5 + parent: 2 + - uid: 2715 + components: + - type: Transform + pos: -74.5,9.5 + parent: 2 + - uid: 2716 + components: + - type: Transform + pos: -75.5,9.5 + parent: 2 + - uid: 2717 + components: + - type: Transform + pos: -76.5,9.5 + parent: 2 + - uid: 2718 + components: + - type: Transform + pos: -77.5,9.5 + parent: 2 + - uid: 2719 + components: + - type: Transform + pos: -79.5,-4.5 + parent: 2 + - uid: 2720 + components: + - type: Transform + pos: -75.5,8.5 + parent: 2 + - uid: 2721 + components: + - type: Transform + pos: -69.5,8.5 + parent: 2 + - uid: 2722 + components: + - type: Transform + pos: -63.5,8.5 + parent: 2 + - uid: 2723 + components: + - type: Transform + pos: -63.5,7.5 + parent: 2 + - uid: 2724 + components: + - type: Transform + pos: -63.5,6.5 + parent: 2 + - uid: 2725 + components: + - type: Transform + pos: -63.5,5.5 + parent: 2 + - uid: 2726 + components: + - type: Transform + pos: -63.5,4.5 + parent: 2 + - uid: 2727 + components: + - type: Transform + pos: -63.5,3.5 + parent: 2 + - uid: 2728 + components: + - type: Transform + pos: -63.5,2.5 + parent: 2 + - uid: 2729 + components: + - type: Transform + pos: -63.5,1.5 + parent: 2 + - uid: 2730 + components: + - type: Transform + pos: -63.5,0.5 + parent: 2 + - uid: 2731 + components: + - type: Transform + pos: -63.5,-1.5 + parent: 2 + - uid: 2732 + components: + - type: Transform + pos: -63.5,-0.5 + parent: 2 + - uid: 2733 + components: + - type: Transform + pos: -63.5,-2.5 + parent: 2 + - uid: 2734 + components: + - type: Transform + pos: -63.5,-4.5 + parent: 2 + - uid: 2735 + components: + - type: Transform + pos: -63.5,-5.5 + parent: 2 + - uid: 2736 + components: + - type: Transform + pos: -63.5,-6.5 + parent: 2 + - uid: 2737 + components: + - type: Transform + pos: -63.5,-7.5 + parent: 2 + - uid: 2738 + components: + - type: Transform + pos: -63.5,-8.5 + parent: 2 + - uid: 2739 + components: + - type: Transform + pos: -63.5,-9.5 + parent: 2 + - uid: 2740 + components: + - type: Transform + pos: -63.5,-10.5 + parent: 2 + - uid: 2741 + components: + - type: Transform + pos: -63.5,-11.5 + parent: 2 + - uid: 2742 + components: + - type: Transform + pos: -63.5,-12.5 + parent: 2 + - uid: 2743 + components: + - type: Transform + pos: -63.5,-13.5 + parent: 2 + - uid: 2744 + components: + - type: Transform + pos: -63.5,-14.5 + parent: 2 + - uid: 2745 + components: + - type: Transform + pos: -64.5,-14.5 + parent: 2 + - uid: 2746 + components: + - type: Transform + pos: -65.5,-14.5 + parent: 2 + - uid: 2747 + components: + - type: Transform + pos: -66.5,-14.5 + parent: 2 + - uid: 2748 + components: + - type: Transform + pos: -67.5,-14.5 + parent: 2 + - uid: 2749 + components: + - type: Transform + pos: -68.5,-14.5 + parent: 2 + - uid: 2750 + components: + - type: Transform + pos: -69.5,-14.5 + parent: 2 + - uid: 2751 + components: + - type: Transform + pos: -70.5,-14.5 + parent: 2 + - uid: 2752 + components: + - type: Transform + pos: -71.5,-14.5 + parent: 2 + - uid: 2753 + components: + - type: Transform + pos: -72.5,-14.5 + parent: 2 + - uid: 2754 + components: + - type: Transform + pos: -76.5,-14.5 + parent: 2 + - uid: 2755 + components: + - type: Transform + pos: -75.5,-16.5 + parent: 2 + - uid: 2756 + components: + - type: Transform + pos: -76.5,-17.5 + parent: 2 + - uid: 2757 + components: + - type: Transform + pos: -72.5,-15.5 + parent: 2 + - uid: 2758 + components: + - type: Transform + pos: -72.5,-16.5 + parent: 2 + - uid: 2759 + components: + - type: Transform + pos: -72.5,-17.5 + parent: 2 + - uid: 2760 + components: + - type: Transform + pos: -73.5,-17.5 + parent: 2 + - uid: 2761 + components: + - type: Transform + pos: -71.5,-17.5 + parent: 2 + - uid: 2762 + components: + - type: Transform + pos: -70.5,-17.5 + parent: 2 + - uid: 2763 + components: + - type: Transform + pos: -67.5,-15.5 + parent: 2 + - uid: 2764 + components: + - type: Transform + pos: -67.5,-17.5 + parent: 2 + - uid: 2765 + components: + - type: Transform + pos: -66.5,-16.5 + parent: 2 + - uid: 2766 + components: + - type: Transform + pos: -64.5,-10.5 + parent: 2 + - uid: 2767 + components: + - type: Transform + pos: -65.5,-10.5 + parent: 2 + - uid: 2768 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - uid: 2769 + components: + - type: Transform + pos: -66.5,-11.5 + parent: 2 + - uid: 2770 + components: + - type: Transform + pos: -63.5,-3.5 + parent: 2 + - uid: 2771 + components: + - type: Transform + pos: -65.5,2.5 + parent: 2 + - uid: 2772 + components: + - type: Transform + pos: -65.5,3.5 + parent: 2 + - uid: 2773 + components: + - type: Transform + pos: -65.5,4.5 + parent: 2 + - uid: 2774 + components: + - type: Transform + pos: -65.5,1.5 + parent: 2 + - uid: 2775 + components: + - type: Transform + pos: -65.5,0.5 + parent: 2 + - uid: 2776 + components: + - type: Transform + pos: -73.5,-14.5 + parent: 2 + - uid: 2777 + components: + - type: Transform + pos: -72.5,-12.5 + parent: 2 + - uid: 2778 + components: + - type: Transform + pos: -74.5,-12.5 + parent: 2 + - uid: 2779 + components: + - type: Transform + pos: -75.5,-12.5 + parent: 2 + - uid: 2780 + components: + - type: Transform + pos: -71.5,-12.5 + parent: 2 + - uid: 2781 + components: + - type: Transform + pos: -70.5,-12.5 + parent: 2 + - uid: 2782 + components: + - type: Transform + pos: -69.5,-12.5 + parent: 2 + - uid: 2783 + components: + - type: Transform + pos: -68.5,-12.5 + parent: 2 + - uid: 2784 + components: + - type: Transform + pos: -73.5,-12.5 + parent: 2 + - uid: 2785 + components: + - type: Transform + pos: -62.5,-4.5 + parent: 2 + - uid: 2786 + components: + - type: Transform + pos: -61.5,-4.5 + parent: 2 + - uid: 2787 + components: + - type: Transform + pos: -60.5,-4.5 + parent: 2 + - uid: 2788 + components: + - type: Transform + pos: -59.5,-4.5 + parent: 2 + - uid: 2789 + components: + - type: Transform + pos: -58.5,-4.5 + parent: 2 + - uid: 2790 + components: + - type: Transform + pos: -57.5,-4.5 + parent: 2 + - uid: 2791 + components: + - type: Transform + pos: -56.5,-4.5 + parent: 2 + - uid: 2792 + components: + - type: Transform + pos: -55.5,-4.5 + parent: 2 + - uid: 2793 + components: + - type: Transform + pos: -54.5,-4.5 + parent: 2 + - uid: 2794 + components: + - type: Transform + pos: -54.5,-3.5 + parent: 2 + - uid: 2795 + components: + - type: Transform + pos: -54.5,-2.5 + parent: 2 + - uid: 2796 + components: + - type: Transform + pos: -54.5,-1.5 + parent: 2 + - uid: 2797 + components: + - type: Transform + pos: -54.5,-0.5 + parent: 2 + - uid: 2798 + components: + - type: Transform + pos: -54.5,0.5 + parent: 2 + - uid: 2799 + components: + - type: Transform + pos: -55.5,0.5 + parent: 2 + - uid: 2800 + components: + - type: Transform + pos: -56.5,0.5 + parent: 2 + - uid: 2801 + components: + - type: Transform + pos: -57.5,0.5 + parent: 2 + - uid: 2802 + components: + - type: Transform + pos: -58.5,0.5 + parent: 2 + - uid: 2803 + components: + - type: Transform + pos: -59.5,0.5 + parent: 2 + - uid: 2804 + components: + - type: Transform + pos: -60.5,0.5 + parent: 2 + - uid: 2805 + components: + - type: Transform + pos: -61.5,0.5 + parent: 2 + - uid: 2806 + components: + - type: Transform + pos: -62.5,0.5 + parent: 2 + - uid: 2807 + components: + - type: Transform + pos: -64.5,-4.5 + parent: 2 + - uid: 2808 + components: + - type: Transform + pos: -65.5,-4.5 + parent: 2 + - uid: 2809 + components: + - type: Transform + pos: -66.5,-4.5 + parent: 2 + - uid: 2810 + components: + - type: Transform + pos: -67.5,-4.5 + parent: 2 + - uid: 2811 + components: + - type: Transform + pos: -68.5,-4.5 + parent: 2 + - uid: 2812 + components: + - type: Transform + pos: -69.5,-4.5 + parent: 2 + - uid: 2813 + components: + - type: Transform + pos: -70.5,-4.5 + parent: 2 + - uid: 2814 + components: + - type: Transform + pos: -71.5,-4.5 + parent: 2 + - uid: 2815 + components: + - type: Transform + pos: -72.5,-4.5 + parent: 2 + - uid: 2816 + components: + - type: Transform + pos: -73.5,-4.5 + parent: 2 + - uid: 2817 + components: + - type: Transform + pos: -74.5,-4.5 + parent: 2 + - uid: 2818 + components: + - type: Transform + pos: -75.5,-4.5 + parent: 2 + - uid: 2819 + components: + - type: Transform + pos: -76.5,-4.5 + parent: 2 + - uid: 2820 + components: + - type: Transform + pos: -74.5,-3.5 + parent: 2 + - uid: 2821 + components: + - type: Transform + pos: -69.5,-3.5 + parent: 2 + - uid: 2822 + components: + - type: Transform + pos: -74.5,-5.5 + parent: 2 + - uid: 2823 + components: + - type: Transform + pos: -74.5,-6.5 + parent: 2 + - uid: 2824 + components: + - type: Transform + pos: -75.5,-6.5 + parent: 2 + - uid: 2825 + components: + - type: Transform + pos: -73.5,-6.5 + parent: 2 + - uid: 2826 + components: + - type: Transform + pos: -72.5,-6.5 + parent: 2 + - uid: 2827 + components: + - type: Transform + pos: -71.5,-6.5 + parent: 2 + - uid: 2828 + components: + - type: Transform + pos: -70.5,-6.5 + parent: 2 + - uid: 2829 + components: + - type: Transform + pos: -69.5,-6.5 + parent: 2 + - uid: 2830 + components: + - type: Transform + pos: -68.5,-6.5 + parent: 2 + - uid: 2831 + components: + - type: Transform + pos: -69.5,-5.5 + parent: 2 + - uid: 2832 + components: + - type: Transform + pos: 51.5,-9.5 + parent: 2 + - uid: 2833 + components: + - type: Transform + pos: 51.5,-10.5 + parent: 2 + - uid: 2834 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - uid: 2835 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 2 + - uid: 2836 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - uid: 2837 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - uid: 2838 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 2839 + components: + - type: Transform + pos: -63.5,9.5 + parent: 2 + - uid: 2840 + components: + - type: Transform + pos: -74.5,-14.5 + parent: 2 + - uid: 2841 + components: + - type: Transform + pos: -75.5,-14.5 + parent: 2 + - uid: 2842 + components: + - type: Transform + pos: -77.5,-14.5 + parent: 2 + - uid: 2843 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 2 + - uid: 2844 + components: + - type: Transform + pos: -46.5,-1.5 + parent: 2 + - uid: 2845 + components: + - type: Transform + pos: -45.5,-1.5 + parent: 2 + - uid: 2846 + components: + - type: Transform + pos: -44.5,-1.5 + parent: 2 + - uid: 2847 + components: + - type: Transform + pos: -43.5,-1.5 + parent: 2 + - uid: 2848 + components: + - type: Transform + pos: -42.5,-1.5 + parent: 2 + - uid: 2849 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 + - uid: 2850 + components: + - type: Transform + pos: -40.5,-1.5 + parent: 2 + - uid: 2851 + components: + - type: Transform + pos: -39.5,-1.5 + parent: 2 + - uid: 2852 + components: + - type: Transform + pos: -38.5,-1.5 + parent: 2 + - uid: 2853 + components: + - type: Transform + pos: -37.5,-1.5 + parent: 2 + - uid: 2854 + components: + - type: Transform + pos: -36.5,-1.5 + parent: 2 + - uid: 2855 + components: + - type: Transform + pos: -35.5,-1.5 + parent: 2 + - uid: 2856 + components: + - type: Transform + pos: -34.5,-1.5 + parent: 2 + - uid: 2857 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 2 + - uid: 2858 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 + - uid: 2859 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 2 + - uid: 2860 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 2 + - uid: 2861 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 2 + - uid: 2862 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 + - uid: 2863 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - uid: 2864 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 2865 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - uid: 2866 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 2 + - uid: 2867 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 2 + - uid: 2868 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 2 + - uid: 2869 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 2 + - uid: 2870 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 2 + - uid: 2871 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 + - uid: 2872 + components: + - type: Transform + pos: 6.5,20.5 + parent: 2 + - uid: 2873 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 + - uid: 2874 + components: + - type: Transform + pos: 8.5,20.5 + parent: 2 + - uid: 2875 + components: + - type: Transform + pos: 9.5,20.5 + parent: 2 + - uid: 2876 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 2877 + components: + - type: Transform + pos: 3.5,20.5 + parent: 2 + - uid: 2878 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - uid: 2879 + components: + - type: Transform + pos: 1.5,20.5 + parent: 2 + - uid: 2880 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 + - uid: 2881 + components: + - type: Transform + pos: -0.5,20.5 + parent: 2 + - uid: 2882 + components: + - type: Transform + pos: -1.5,20.5 + parent: 2 + - uid: 2883 + components: + - type: Transform + pos: -2.5,20.5 + parent: 2 + - uid: 2884 + components: + - type: Transform + pos: -3.5,20.5 + parent: 2 + - uid: 2885 + components: + - type: Transform + pos: -4.5,20.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: -5.5,20.5 + parent: 2 + - uid: 2887 + components: + - type: Transform + pos: -6.5,20.5 + parent: 2 + - uid: 2888 + components: + - type: Transform + pos: -7.5,20.5 + parent: 2 + - uid: 2889 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 + - uid: 2890 + components: + - type: Transform + pos: -9.5,20.5 + parent: 2 + - uid: 2891 + components: + - type: Transform + pos: -10.5,20.5 + parent: 2 + - uid: 2892 + components: + - type: Transform + pos: -11.5,20.5 + parent: 2 + - uid: 2893 + components: + - type: Transform + pos: -12.5,20.5 + parent: 2 + - uid: 2894 + components: + - type: Transform + pos: -13.5,20.5 + parent: 2 + - uid: 2895 + components: + - type: Transform + pos: -14.5,20.5 + parent: 2 + - uid: 2896 + components: + - type: Transform + pos: -0.5,19.5 + parent: 2 + - uid: 2897 + components: + - type: Transform + pos: -0.5,18.5 + parent: 2 + - uid: 2898 + components: + - type: Transform + pos: -0.5,17.5 + parent: 2 + - uid: 2899 + components: + - type: Transform + pos: -0.5,16.5 + parent: 2 + - uid: 2900 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 2901 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 2902 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 2903 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 2904 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 2905 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 + - uid: 2906 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - uid: 2907 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 2908 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 + - uid: 2909 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 2910 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 2911 + components: + - type: Transform + pos: -0.5,4.5 + parent: 2 + - uid: 2912 + components: + - type: Transform + pos: 79.5,-13.5 + parent: 2 + - uid: 2913 + components: + - type: Transform + pos: 78.5,-13.5 + parent: 2 + - uid: 2914 + components: + - type: Transform + pos: 77.5,-13.5 + parent: 2 + - uid: 2915 + components: + - type: Transform + pos: 76.5,-13.5 + parent: 2 + - uid: 2916 + components: + - type: Transform + pos: 51.5,-7.5 + parent: 2 + - uid: 2917 + components: + - type: Transform + pos: 51.5,-8.5 + parent: 2 + - uid: 2918 + components: + - type: Transform + pos: 51.5,-5.5 + parent: 2 + - uid: 2919 + components: + - type: Transform + pos: 72.5,-13.5 + parent: 2 + - uid: 2920 + components: + - type: Transform + pos: 71.5,-13.5 + parent: 2 + - uid: 2921 + components: + - type: Transform + pos: 70.5,-13.5 + parent: 2 + - uid: 2922 + components: + - type: Transform + pos: 69.5,-13.5 + parent: 2 + - uid: 2923 + components: + - type: Transform + pos: 68.5,-13.5 + parent: 2 + - uid: 2924 + components: + - type: Transform + pos: 67.5,-13.5 + parent: 2 + - uid: 2925 + components: + - type: Transform + pos: 66.5,-13.5 + parent: 2 + - uid: 2926 + components: + - type: Transform + pos: 65.5,-13.5 + parent: 2 + - uid: 2927 + components: + - type: Transform + pos: 64.5,-13.5 + parent: 2 + - uid: 2928 + components: + - type: Transform + pos: 63.5,-13.5 + parent: 2 + - uid: 2929 + components: + - type: Transform + pos: 62.5,-13.5 + parent: 2 + - uid: 2930 + components: + - type: Transform + pos: 61.5,-13.5 + parent: 2 + - uid: 2931 + components: + - type: Transform + pos: 60.5,-13.5 + parent: 2 + - uid: 2932 + components: + - type: Transform + pos: 59.5,-13.5 + parent: 2 + - uid: 2933 + components: + - type: Transform + pos: 58.5,-13.5 + parent: 2 + - uid: 2934 + components: + - type: Transform + pos: 57.5,-13.5 + parent: 2 + - uid: 2935 + components: + - type: Transform + pos: 56.5,-13.5 + parent: 2 + - uid: 2936 + components: + - type: Transform + pos: 55.5,-13.5 + parent: 2 + - uid: 2937 + components: + - type: Transform + pos: 54.5,-13.5 + parent: 2 + - uid: 2938 + components: + - type: Transform + pos: 53.5,-13.5 + parent: 2 + - uid: 2939 + components: + - type: Transform + pos: 52.5,-13.5 + parent: 2 + - uid: 2940 + components: + - type: Transform + pos: 51.5,-13.5 + parent: 2 + - uid: 2941 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 2 + - uid: 2942 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 2 + - uid: 2943 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 2 + - uid: 2944 + components: + - type: Transform + pos: 47.5,-13.5 + parent: 2 + - uid: 2945 + components: + - type: Transform + pos: 46.5,-13.5 + parent: 2 + - uid: 2946 + components: + - type: Transform + pos: 45.5,-13.5 + parent: 2 + - uid: 2947 + components: + - type: Transform + pos: 44.5,-13.5 + parent: 2 + - uid: 2948 + components: + - type: Transform + pos: 43.5,-13.5 + parent: 2 + - uid: 2949 + components: + - type: Transform + pos: 42.5,-13.5 + parent: 2 + - uid: 2950 + components: + - type: Transform + pos: 41.5,-13.5 + parent: 2 + - uid: 2951 + components: + - type: Transform + pos: 40.5,-13.5 + parent: 2 + - uid: 2952 + components: + - type: Transform + pos: 39.5,-13.5 + parent: 2 + - uid: 2953 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 2 + - uid: 2954 + components: + - type: Transform + pos: 37.5,-13.5 + parent: 2 + - uid: 2955 + components: + - type: Transform + pos: 36.5,-13.5 + parent: 2 + - uid: 2956 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 2 + - uid: 2957 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 2 + - uid: 2958 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 2 + - uid: 2959 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 2 + - uid: 2960 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 2 + - uid: 2961 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 2 + - uid: 2962 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 + - uid: 2963 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 2 + - uid: 2964 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 2965 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 2 + - uid: 2966 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 2 + - uid: 2967 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 2 + - uid: 2968 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 2969 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 2 + - uid: 2970 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 2971 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 + - uid: 2972 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 2 + - uid: 2973 + components: + - type: Transform + pos: 51.5,-12.5 + parent: 2 + - uid: 2974 + components: + - type: Transform + pos: 51.5,-11.5 + parent: 2 + - uid: 2975 + components: + - type: Transform + pos: -66.5,19.5 + parent: 2 + - uid: 2976 + components: + - type: Transform + pos: -67.5,19.5 + parent: 2 + - uid: 2977 + components: + - type: Transform + pos: -67.5,20.5 + parent: 2 + - uid: 2978 + components: + - type: Transform + pos: -67.5,21.5 + parent: 2 + - uid: 2979 + components: + - type: Transform + pos: -65.5,19.5 + parent: 2 + - uid: 2980 + components: + - type: Transform + pos: -65.5,20.5 + parent: 2 + - uid: 2981 + components: + - type: Transform + pos: -65.5,21.5 + parent: 2 + - uid: 2982 + components: + - type: Transform + pos: -68.5,17.5 + parent: 2 + - uid: 2983 + components: + - type: Transform + pos: -68.5,18.5 + parent: 2 + - uid: 2984 + components: + - type: Transform + pos: -68.5,16.5 + parent: 2 + - uid: 2985 + components: + - type: Transform + pos: -68.5,14.5 + parent: 2 + - uid: 2986 + components: + - type: Transform + pos: -68.5,12.5 + parent: 2 + - uid: 2987 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 2 + - uid: 2988 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 2 + - uid: 2989 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 2 + - uid: 2990 + components: + - type: Transform + pos: -16.5,-17.5 + parent: 2 + - uid: 2991 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - uid: 2992 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 2 + - uid: 2993 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 2 + - uid: 2994 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 2 + - uid: 2995 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - uid: 2996 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 2 + - uid: 2997 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 2 + - uid: 2998 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - uid: 2999 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 2 + - uid: 3000 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 3001 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - uid: 3002 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 + - uid: 3003 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 2 + - uid: 3004 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 + - uid: 3005 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - uid: 3006 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 2 + - uid: 3007 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 2 + - uid: 3008 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 + - uid: 3009 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 2 + - uid: 3010 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 2 + - uid: 3011 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 2 + - uid: 3012 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 2 + - uid: 3013 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 2 + - uid: 3014 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - uid: 3015 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 + - uid: 3016 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - uid: 3017 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 + - uid: 3018 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 3019 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 3020 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 + - uid: 3021 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - uid: 3022 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 3023 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 3024 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - uid: 3025 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 3026 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 3027 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 3028 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 3029 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - uid: 3030 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - uid: 3031 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 + - uid: 3032 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 2 + - uid: 3033 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 + - uid: 3034 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 + - uid: 3035 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 3036 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - uid: 3037 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 3038 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 2 + - uid: 3039 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 2 + - uid: 3040 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - uid: 3041 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 2 + - uid: 3042 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 + - uid: 3043 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 2 + - uid: 3044 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 + - uid: 3045 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 + - uid: 3046 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 2 + - uid: 3047 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 3048 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 + - uid: 3049 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 2 + - uid: 3050 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 + - uid: 3051 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 2 + - uid: 3052 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 2 + - uid: 3053 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 + - uid: 3054 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 + - uid: 3055 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 2 + - uid: 3056 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 2 + - uid: 3057 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 2 + - uid: 3058 + components: + - type: Transform + pos: 15.5,-21.5 + parent: 2 + - uid: 3059 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 2 + - uid: 3060 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 2 + - uid: 3061 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 2 + - uid: 3062 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 2 + - uid: 3063 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 2 + - uid: 3064 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 2 + - uid: 3065 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 2 + - uid: 3066 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 2 + - uid: 3067 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 2 + - uid: 3068 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 2 + - uid: 3069 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 2 + - uid: 3070 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 2 + - uid: 3071 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 2 + - uid: 3072 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 2 + - uid: 3073 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 2 + - uid: 3074 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 2 + - uid: 3075 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 2 + - uid: 3076 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 2 + - uid: 3077 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 2 + - uid: 3078 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 2 + - uid: 3079 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 2 + - uid: 3080 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 2 + - uid: 3081 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 2 + - uid: 3082 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 2 + - uid: 3083 + components: + - type: Transform + pos: -0.5,-30.5 + parent: 2 + - uid: 3084 + components: + - type: Transform + pos: -1.5,-30.5 + parent: 2 + - uid: 3085 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 2 + - uid: 3086 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 2 + - uid: 3087 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 2 + - uid: 3088 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 2 + - uid: 3089 + components: + - type: Transform + pos: -7.5,-30.5 + parent: 2 + - uid: 3090 + components: + - type: Transform + pos: -8.5,-30.5 + parent: 2 + - uid: 3091 + components: + - type: Transform + pos: -9.5,-30.5 + parent: 2 + - uid: 3092 + components: + - type: Transform + pos: -10.5,-30.5 + parent: 2 + - uid: 3093 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 2 + - uid: 3094 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 2 + - uid: 3095 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 2 + - uid: 3096 + components: + - type: Transform + pos: -14.5,-30.5 + parent: 2 + - uid: 3097 + components: + - type: Transform + pos: -15.5,-30.5 + parent: 2 + - uid: 3098 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 2 + - uid: 3099 + components: + - type: Transform + pos: -16.5,-29.5 + parent: 2 + - uid: 3100 + components: + - type: Transform + pos: -16.5,-28.5 + parent: 2 + - uid: 3101 + components: + - type: Transform + pos: -16.5,-27.5 + parent: 2 + - uid: 3102 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 2 + - uid: 3103 + components: + - type: Transform + pos: -16.5,-25.5 + parent: 2 + - uid: 3104 + components: + - type: Transform + pos: -16.5,-24.5 + parent: 2 + - uid: 3105 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 2 + - uid: 3106 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 2 + - uid: 3107 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 2 + - uid: 3108 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - uid: 3109 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 2 + - uid: 3110 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - uid: 3111 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 3112 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 3113 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 2 + - uid: 3114 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 3115 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 + - uid: 3116 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 + - uid: 3117 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 + - uid: 3118 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - uid: 3119 + components: + - type: Transform + pos: -49.5,17.5 + parent: 2 + - uid: 3120 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 3121 + components: + - type: Transform + pos: -51.5,22.5 + parent: 2 + - uid: 3122 + components: + - type: Transform + pos: -50.5,22.5 + parent: 2 + - uid: 3123 + components: + - type: Transform + pos: -49.5,22.5 + parent: 2 + - uid: 3124 + components: + - type: Transform + pos: -49.5,23.5 + parent: 2 + - uid: 3125 + components: + - type: Transform + pos: -49.5,24.5 + parent: 2 + - uid: 3126 + components: + - type: Transform + pos: -50.5,24.5 + parent: 2 + - uid: 3127 + components: + - type: Transform + pos: -51.5,24.5 + parent: 2 + - uid: 3128 + components: + - type: Transform + pos: -50.5,25.5 + parent: 2 + - uid: 3129 + components: + - type: Transform + pos: -50.5,26.5 + parent: 2 + - uid: 3130 + components: + - type: Transform + pos: -49.5,26.5 + parent: 2 + - uid: 3131 + components: + - type: Transform + pos: -48.5,26.5 + parent: 2 + - uid: 3132 + components: + - type: Transform + pos: -48.5,16.5 + parent: 2 + - uid: 3133 + components: + - type: Transform + pos: -49.5,11.5 + parent: 2 + - uid: 3134 + components: + - type: Transform + pos: -52.5,11.5 + parent: 2 + - uid: 3135 + components: + - type: Transform + pos: -39.5,20.5 + parent: 2 + - uid: 3136 + components: + - type: Transform + pos: -40.5,20.5 + parent: 2 + - uid: 3137 + components: + - type: Transform + pos: -41.5,21.5 + parent: 2 + - uid: 3138 + components: + - type: Transform + pos: -41.5,20.5 + parent: 2 + - uid: 3139 + components: + - type: Transform + pos: -42.5,21.5 + parent: 2 + - uid: 3140 + components: + - type: Transform + pos: -38.5,20.5 + parent: 2 + - uid: 3141 + components: + - type: Transform + pos: -37.5,20.5 + parent: 2 + - uid: 3142 + components: + - type: Transform + pos: -35.5,20.5 + parent: 2 + - uid: 3143 + components: + - type: Transform + pos: -36.5,20.5 + parent: 2 + - uid: 3144 + components: + - type: Transform + pos: -34.5,20.5 + parent: 2 + - uid: 3145 + components: + - type: Transform + pos: -33.5,20.5 + parent: 2 + - uid: 3146 + components: + - type: Transform + pos: -33.5,21.5 + parent: 2 + - uid: 3147 + components: + - type: Transform + pos: -32.5,21.5 + parent: 2 + - uid: 3148 + components: + - type: Transform + pos: -33.5,24.5 + parent: 2 + - uid: 3149 + components: + - type: Transform + pos: -33.5,25.5 + parent: 2 + - uid: 3150 + components: + - type: Transform + pos: -34.5,25.5 + parent: 2 + - uid: 3151 + components: + - type: Transform + pos: -35.5,25.5 + parent: 2 + - uid: 3152 + components: + - type: Transform + pos: -32.5,25.5 + parent: 2 + - uid: 3153 + components: + - type: Transform + pos: -31.5,22.5 + parent: 2 + - uid: 3154 + components: + - type: Transform + pos: -30.5,23.5 + parent: 2 + - uid: 3155 + components: + - type: Transform + pos: -29.5,23.5 + parent: 2 + - uid: 3156 + components: + - type: Transform + pos: -29.5,24.5 + parent: 2 + - uid: 3157 + components: + - type: Transform + pos: -29.5,22.5 + parent: 2 + - uid: 3158 + components: + - type: Transform + pos: -31.5,20.5 + parent: 2 + - uid: 3159 + components: + - type: Transform + pos: -30.5,19.5 + parent: 2 + - uid: 3160 + components: + - type: Transform + pos: -29.5,19.5 + parent: 2 + - uid: 3161 + components: + - type: Transform + pos: -29.5,20.5 + parent: 2 + - uid: 3162 + components: + - type: Transform + pos: -29.5,18.5 + parent: 2 + - uid: 3163 + components: + - type: Transform + pos: -32.5,19.5 + parent: 2 + - uid: 3164 + components: + - type: Transform + pos: -31.5,10.5 + parent: 2 + - uid: 3165 + components: + - type: Transform + pos: -31.5,12.5 + parent: 2 + - uid: 3166 + components: + - type: Transform + pos: -51.5,11.5 + parent: 2 + - uid: 3167 + components: + - type: Transform + pos: -48.5,11.5 + parent: 2 + - uid: 3168 + components: + - type: Transform + pos: -48.5,15.5 + parent: 2 + - uid: 3169 + components: + - type: Transform + pos: -51.5,15.5 + parent: 2 + - uid: 3170 + components: + - type: Transform + pos: -58.5,17.5 + parent: 2 + - uid: 3171 + components: + - type: Transform + pos: -56.5,11.5 + parent: 2 + - uid: 3172 + components: + - type: Transform + pos: -25.5,1.5 + parent: 2 + - uid: 3173 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 + - uid: 3174 + components: + - type: Transform + pos: -21.5,5.5 + parent: 2 + - uid: 3175 + components: + - type: Transform + pos: -55.5,16.5 + parent: 2 + - uid: 3176 + components: + - type: Transform + pos: -55.5,15.5 + parent: 2 + - uid: 3177 + components: + - type: Transform + pos: -58.5,14.5 + parent: 2 + - uid: 3178 + components: + - type: Transform + pos: -58.5,13.5 + parent: 2 + - uid: 3179 + components: + - type: Transform + pos: -58.5,12.5 + parent: 2 + - uid: 3180 + components: + - type: Transform + pos: -47.5,11.5 + parent: 2 + - uid: 3181 + components: + - type: Transform + pos: -47.5,10.5 + parent: 2 + - uid: 3182 + components: + - type: Transform + pos: -47.5,9.5 + parent: 2 + - uid: 3183 + components: + - type: Transform + pos: -48.5,9.5 + parent: 2 + - uid: 3184 + components: + - type: Transform + pos: -49.5,9.5 + parent: 2 + - uid: 3185 + components: + - type: Transform + pos: -49.5,8.5 + parent: 2 + - uid: 3186 + components: + - type: Transform + pos: -49.5,7.5 + parent: 2 + - uid: 3187 + components: + - type: Transform + pos: -49.5,6.5 + parent: 2 + - uid: 3188 + components: + - type: Transform + pos: -49.5,5.5 + parent: 2 + - uid: 3189 + components: + - type: Transform + pos: -49.5,4.5 + parent: 2 + - uid: 3190 + components: + - type: Transform + pos: -49.5,3.5 + parent: 2 + - uid: 3191 + components: + - type: Transform + pos: -49.5,2.5 + parent: 2 + - uid: 3192 + components: + - type: Transform + pos: -46.5,9.5 + parent: 2 + - uid: 3193 + components: + - type: Transform + pos: -46.5,8.5 + parent: 2 + - uid: 3194 + components: + - type: Transform + pos: -46.5,7.5 + parent: 2 + - uid: 3195 + components: + - type: Transform + pos: -31.5,13.5 + parent: 2 + - uid: 3196 + components: + - type: Transform + pos: -31.5,11.5 + parent: 2 + - uid: 3197 + components: + - type: Transform + pos: -28.5,10.5 + parent: 2 + - uid: 3198 + components: + - type: Transform + pos: -27.5,10.5 + parent: 2 + - uid: 3199 + components: + - type: Transform + pos: -36.5,10.5 + parent: 2 + - uid: 3200 + components: + - type: Transform + pos: -37.5,10.5 + parent: 2 + - uid: 3201 + components: + - type: Transform + pos: -39.5,10.5 + parent: 2 + - uid: 3202 + components: + - type: Transform + pos: -38.5,7.5 + parent: 2 + - uid: 3203 + components: + - type: Transform + pos: -38.5,8.5 + parent: 2 + - uid: 3204 + components: + - type: Transform + pos: -38.5,9.5 + parent: 2 + - uid: 3205 + components: + - type: Transform + pos: -38.5,10.5 + parent: 2 + - uid: 3206 + components: + - type: Transform + pos: -29.5,10.5 + parent: 2 + - uid: 3207 + components: + - type: Transform + pos: -30.5,10.5 + parent: 2 + - uid: 3208 + components: + - type: Transform + pos: -32.5,9.5 + parent: 2 + - uid: 3209 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 3210 + components: + - type: Transform + pos: -32.5,10.5 + parent: 2 + - uid: 3211 + components: + - type: Transform + pos: -26.5,10.5 + parent: 2 + - uid: 3212 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - uid: 3213 + components: + - type: Transform + pos: -39.5,12.5 + parent: 2 + - uid: 3214 + components: + - type: Transform + pos: -38.5,12.5 + parent: 2 + - uid: 3215 + components: + - type: Transform + pos: -52.5,12.5 + parent: 2 + - uid: 3216 + components: + - type: Transform + pos: -55.5,14.5 + parent: 2 + - uid: 3217 + components: + - type: Transform + pos: -38.5,13.5 + parent: 2 + - uid: 3218 + components: + - type: Transform + pos: -37.5,13.5 + parent: 2 + - uid: 3219 + components: + - type: Transform + pos: -35.5,13.5 + parent: 2 + - uid: 3220 + components: + - type: Transform + pos: -36.5,13.5 + parent: 2 + - uid: 3221 + components: + - type: Transform + pos: -32.5,13.5 + parent: 2 + - uid: 3222 + components: + - type: Transform + pos: -32.5,14.5 + parent: 2 + - uid: 3223 + components: + - type: Transform + pos: -32.5,15.5 + parent: 2 + - uid: 3224 + components: + - type: Transform + pos: -32.5,16.5 + parent: 2 + - uid: 3225 + components: + - type: Transform + pos: -30.5,12.5 + parent: 2 + - uid: 3226 + components: + - type: Transform + pos: -30.5,13.5 + parent: 2 + - uid: 3227 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 + - uid: 3228 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 + - uid: 3229 + components: + - type: Transform + pos: -30.5,16.5 + parent: 2 + - uid: 3230 + components: + - type: Transform + pos: -25.5,9.5 + parent: 2 + - uid: 3231 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 3232 + components: + - type: Transform + pos: -25.5,7.5 + parent: 2 + - uid: 3233 + components: + - type: Transform + pos: -25.5,6.5 + parent: 2 + - uid: 3234 + components: + - type: Transform + pos: -25.5,5.5 + parent: 2 + - uid: 3235 + components: + - type: Transform + pos: -25.5,4.5 + parent: 2 + - uid: 3236 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 + - uid: 3237 + components: + - type: Transform + pos: -25.5,2.5 + parent: 2 + - uid: 3238 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 3240 + components: + - type: Transform + pos: -22.5,10.5 + parent: 2 + - uid: 3241 + components: + - type: Transform + pos: -21.5,10.5 + parent: 2 + - uid: 3242 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - uid: 3243 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 3244 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 3245 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 3246 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 3247 + components: + - type: Transform + pos: -16.5,11.5 + parent: 2 + - uid: 3248 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 + - uid: 3249 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 + - uid: 3250 + components: + - type: Transform + pos: -16.5,14.5 + parent: 2 + - uid: 3251 + components: + - type: Transform + pos: -16.5,15.5 + parent: 2 + - uid: 3252 + components: + - type: Transform + pos: -16.5,16.5 + parent: 2 + - uid: 3253 + components: + - type: Transform + pos: -15.5,11.5 + parent: 2 + - uid: 3254 + components: + - type: Transform + pos: -14.5,11.5 + parent: 2 + - uid: 3255 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 + - uid: 3256 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 + - uid: 3257 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - uid: 3258 + components: + - type: Transform + pos: -10.5,11.5 + parent: 2 + - uid: 3259 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 + - uid: 3260 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 3261 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - uid: 3262 + components: + - type: Transform + pos: -6.5,11.5 + parent: 2 + - uid: 3263 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - uid: 3264 + components: + - type: Transform + pos: -16.5,9.5 + parent: 2 + - uid: 3265 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 3266 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 + - uid: 3267 + components: + - type: Transform + pos: -16.5,7.5 + parent: 2 + - uid: 3268 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 3269 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 3270 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 3271 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 3272 + components: + - type: Transform + pos: -16.5,2.5 + parent: 2 + - uid: 3273 + components: + - type: Transform + pos: -20.5,11.5 + parent: 2 + - uid: 3274 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 3275 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - uid: 3276 + components: + - type: Transform + pos: -3.5,11.5 + parent: 2 + - uid: 3277 + components: + - type: Transform + pos: -1.5,11.5 + parent: 2 + - uid: 3278 + components: + - type: Transform + pos: -2.5,11.5 + parent: 2 + - uid: 3279 + components: + - type: Transform + pos: -55.5,17.5 + parent: 2 + - uid: 3280 + components: + - type: Transform + pos: -58.5,15.5 + parent: 2 + - uid: 3281 + components: + - type: Transform + pos: -20.5,3.5 + parent: 2 + - uid: 3282 + components: + - type: Transform + pos: -21.5,6.5 + parent: 2 + - uid: 3283 + components: + - type: Transform + pos: -50.5,3.5 + parent: 2 + - uid: 3284 + components: + - type: Transform + pos: -51.5,3.5 + parent: 2 + - uid: 3285 + components: + - type: Transform + pos: -52.5,3.5 + parent: 2 + - uid: 3286 + components: + - type: Transform + pos: -53.5,3.5 + parent: 2 + - uid: 3287 + components: + - type: Transform + pos: -53.5,4.5 + parent: 2 + - uid: 3288 + components: + - type: Transform + pos: -53.5,5.5 + parent: 2 + - uid: 3289 + components: + - type: Transform + pos: -59.5,14.5 + parent: 2 + - uid: 3290 + components: + - type: Transform + pos: -60.5,-17.5 + parent: 2 + - uid: 3291 + components: + - type: Transform + pos: -59.5,-17.5 + parent: 2 + - uid: 3292 + components: + - type: Transform + pos: -58.5,-17.5 + parent: 2 + - uid: 3293 + components: + - type: Transform + pos: -58.5,-18.5 + parent: 2 + - uid: 3294 + components: + - type: Transform + pos: -58.5,-19.5 + parent: 2 + - uid: 3295 + components: + - type: Transform + pos: -57.5,-19.5 + parent: 2 + - uid: 3296 + components: + - type: Transform + pos: -61.5,-17.5 + parent: 2 + - uid: 3297 + components: + - type: Transform + pos: -61.5,-18.5 + parent: 2 + - uid: 3298 + components: + - type: Transform + pos: -61.5,-19.5 + parent: 2 + - uid: 3299 + components: + - type: Transform + pos: -59.5,-16.5 + parent: 2 + - uid: 3300 + components: + - type: Transform + pos: -65.5,-2.5 + parent: 2 + - uid: 3301 + components: + - type: Transform + pos: -64.5,-2.5 + parent: 2 + - uid: 3302 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 3303 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 3304 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 3305 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 3306 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 3307 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 3308 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 + - uid: 3309 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 3310 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - uid: 3311 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 + - uid: 3312 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 2 + - uid: 3313 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 3314 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 3315 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 3316 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 2 + - uid: 3317 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - uid: 3318 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 2 + - uid: 3319 + components: + - type: Transform + pos: -34.5,-12.5 + parent: 2 + - uid: 3320 + components: + - type: Transform + pos: -34.5,-13.5 + parent: 2 + - uid: 3321 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 2 + - uid: 3322 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - uid: 3323 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 2 + - uid: 3324 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - uid: 3325 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 2 + - uid: 3326 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 3327 + components: + - type: Transform + pos: -38.5,-16.5 + parent: 2 + - uid: 3328 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 2 + - uid: 3329 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 2 + - uid: 3330 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 2 + - uid: 3331 + components: + - type: Transform + pos: -39.5,-15.5 + parent: 2 + - uid: 3332 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - uid: 3333 + components: + - type: Transform + pos: -41.5,-15.5 + parent: 2 + - uid: 3334 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - uid: 3335 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 3336 + components: + - type: Transform + pos: -42.5,-18.5 + parent: 2 + - uid: 3337 + components: + - type: Transform + pos: -43.5,-18.5 + parent: 2 + - uid: 3338 + components: + - type: Transform + pos: -44.5,-18.5 + parent: 2 + - uid: 3339 + components: + - type: Transform + pos: -45.5,-18.5 + parent: 2 + - uid: 3340 + components: + - type: Transform + pos: -46.5,-18.5 + parent: 2 + - uid: 3341 + components: + - type: Transform + pos: -47.5,-18.5 + parent: 2 + - uid: 3342 + components: + - type: Transform + pos: -48.5,-18.5 + parent: 2 + - uid: 3343 + components: + - type: Transform + pos: -49.5,-18.5 + parent: 2 + - uid: 3344 + components: + - type: Transform + pos: -50.5,-18.5 + parent: 2 + - uid: 3345 + components: + - type: Transform + pos: -50.5,-17.5 + parent: 2 + - uid: 3346 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 2 + - uid: 3347 + components: + - type: Transform + pos: -50.5,-15.5 + parent: 2 + - uid: 3348 + components: + - type: Transform + pos: -51.5,-15.5 + parent: 2 + - uid: 3349 + components: + - type: Transform + pos: -52.5,-15.5 + parent: 2 + - uid: 3350 + components: + - type: Transform + pos: -53.5,-15.5 + parent: 2 + - uid: 3351 + components: + - type: Transform + pos: -54.5,-15.5 + parent: 2 + - uid: 3352 + components: + - type: Transform + pos: -55.5,-15.5 + parent: 2 + - uid: 3353 + components: + - type: Transform + pos: -55.5,-14.5 + parent: 2 + - uid: 3354 + components: + - type: Transform + pos: -55.5,-13.5 + parent: 2 + - uid: 3355 + components: + - type: Transform + pos: -56.5,-13.5 + parent: 2 + - uid: 3356 + components: + - type: Transform + pos: -57.5,-13.5 + parent: 2 + - uid: 3357 + components: + - type: Transform + pos: -58.5,-13.5 + parent: 2 + - uid: 3358 + components: + - type: Transform + pos: -59.5,-13.5 + parent: 2 + - uid: 3359 + components: + - type: Transform + pos: -60.5,-13.5 + parent: 2 + - uid: 3360 + components: + - type: Transform + pos: -50.5,-14.5 + parent: 2 + - uid: 3361 + components: + - type: Transform + pos: -50.5,-13.5 + parent: 2 + - uid: 3362 + components: + - type: Transform + pos: -50.5,-12.5 + parent: 2 + - uid: 3363 + components: + - type: Transform + pos: -50.5,-11.5 + parent: 2 + - uid: 3364 + components: + - type: Transform + pos: -52.5,-16.5 + parent: 2 + - uid: 3365 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 2 + - uid: 3366 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 2 + - uid: 3367 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 2 + - uid: 3368 + components: + - type: Transform + pos: -39.5,-37.5 + parent: 2 + - uid: 3369 + components: + - type: Transform + pos: -38.5,-37.5 + parent: 2 + - uid: 3370 + components: + - type: Transform + pos: -40.5,-37.5 + parent: 2 + - uid: 3371 + components: + - type: Transform + pos: -41.5,-37.5 + parent: 2 + - uid: 3372 + components: + - type: Transform + pos: -37.5,-37.5 + parent: 2 + - uid: 3373 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - uid: 3374 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 2 + - uid: 3375 + components: + - type: Transform + pos: -43.5,-9.5 + parent: 2 + - uid: 3376 + components: + - type: Transform + pos: -42.5,-9.5 + parent: 2 + - uid: 3377 + components: + - type: Transform + pos: -42.5,-8.5 + parent: 2 + - uid: 3378 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 2 + - uid: 3379 + components: + - type: Transform + pos: -42.5,-6.5 + parent: 2 + - uid: 3380 + components: + - type: Transform + pos: -42.5,-5.5 + parent: 2 + - uid: 3381 + components: + - type: Transform + pos: -43.5,-5.5 + parent: 2 + - uid: 3382 + components: + - type: Transform + pos: -44.5,-5.5 + parent: 2 + - uid: 3383 + components: + - type: Transform + pos: -45.5,-5.5 + parent: 2 + - uid: 3384 + components: + - type: Transform + pos: -46.5,-5.5 + parent: 2 + - uid: 3385 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - uid: 3386 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 2 + - uid: 3387 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 2 + - uid: 3388 + components: + - type: Transform + pos: -33.5,-3.5 + parent: 2 + - uid: 3389 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 + - uid: 3390 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 2 + - uid: 3391 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - uid: 3392 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - uid: 3393 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 2 + - uid: 3395 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 2 + - uid: 3396 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 2 + - uid: 3397 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 2 + - uid: 3398 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 2 + - uid: 3399 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 2 + - uid: 3400 + components: + - type: Transform + pos: -51.5,-6.5 + parent: 2 + - uid: 3401 + components: + - type: Transform + pos: -53.5,-9.5 + parent: 2 + - uid: 3402 + components: + - type: Transform + pos: -54.5,-9.5 + parent: 2 + - uid: 3403 + components: + - type: Transform + pos: -55.5,-9.5 + parent: 2 + - uid: 3404 + components: + - type: Transform + pos: -56.5,-9.5 + parent: 2 + - uid: 3405 + components: + - type: Transform + pos: -57.5,-9.5 + parent: 2 + - uid: 3406 + components: + - type: Transform + pos: -58.5,-9.5 + parent: 2 + - uid: 3407 + components: + - type: Transform + pos: -59.5,-9.5 + parent: 2 + - uid: 3408 + components: + - type: Transform + pos: -60.5,-9.5 + parent: 2 + - uid: 3409 + components: + - type: Transform + pos: -58.5,-10.5 + parent: 2 + - uid: 3410 + components: + - type: Transform + pos: -58.5,-8.5 + parent: 2 + - uid: 3411 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 3412 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 2 + - uid: 3413 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 2 + - uid: 3414 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 2 + - uid: 3415 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 2 + - uid: 3416 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - uid: 3417 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - uid: 3418 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - uid: 3419 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 2 + - uid: 3420 + components: + - type: Transform + pos: -21.5,-12.5 + parent: 2 + - uid: 3421 + components: + - type: Transform + pos: -45.5,-9.5 + parent: 2 + - uid: 3422 + components: + - type: Transform + pos: -45.5,-10.5 + parent: 2 + - uid: 3423 + components: + - type: Transform + pos: -45.5,-11.5 + parent: 2 + - uid: 3424 + components: + - type: Transform + pos: -45.5,-12.5 + parent: 2 + - uid: 3425 + components: + - type: Transform + pos: -45.5,-13.5 + parent: 2 + - uid: 3426 + components: + - type: Transform + pos: -45.5,-14.5 + parent: 2 + - uid: 3427 + components: + - type: Transform + pos: -45.5,-15.5 + parent: 2 + - uid: 3428 + components: + - type: Transform + pos: -46.5,-15.5 + parent: 2 + - uid: 3429 + components: + - type: Transform + pos: -46.5,-13.5 + parent: 2 + - uid: 3430 + components: + - type: Transform + pos: -46.5,-11.5 + parent: 2 + - uid: 3431 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 2 + - uid: 3432 + components: + - type: Transform + pos: -35.5,-26.5 + parent: 2 + - uid: 3433 + components: + - type: Transform + pos: -34.5,-26.5 + parent: 2 + - uid: 3434 + components: + - type: Transform + pos: -33.5,-26.5 + parent: 2 + - uid: 3435 + components: + - type: Transform + pos: -32.5,-26.5 + parent: 2 + - uid: 3436 + components: + - type: Transform + pos: -31.5,-26.5 + parent: 2 + - uid: 3437 + components: + - type: Transform + pos: -31.5,-25.5 + parent: 2 + - uid: 3438 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 2 + - uid: 3439 + components: + - type: Transform + pos: -31.5,-23.5 + parent: 2 + - uid: 3440 + components: + - type: Transform + pos: -31.5,-22.5 + parent: 2 + - uid: 3441 + components: + - type: Transform + pos: -31.5,-21.5 + parent: 2 + - uid: 3442 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 2 + - uid: 3443 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 2 + - uid: 3444 + components: + - type: Transform + pos: -31.5,-18.5 + parent: 2 + - uid: 3445 + components: + - type: Transform + pos: -31.5,-17.5 + parent: 2 + - uid: 3446 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 2 + - uid: 3447 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 2 + - uid: 3448 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 2 + - uid: 3449 + components: + - type: Transform + pos: -31.5,-13.5 + parent: 2 + - uid: 3450 + components: + - type: Transform + pos: -31.5,-12.5 + parent: 2 + - uid: 3451 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 2 + - uid: 3452 + components: + - type: Transform + pos: -36.5,-26.5 + parent: 2 + - uid: 3453 + components: + - type: Transform + pos: -37.5,-26.5 + parent: 2 + - uid: 3454 + components: + - type: Transform + pos: -38.5,-26.5 + parent: 2 + - uid: 3455 + components: + - type: Transform + pos: -39.5,-26.5 + parent: 2 + - uid: 3456 + components: + - type: Transform + pos: -40.5,-26.5 + parent: 2 + - uid: 3457 + components: + - type: Transform + pos: -40.5,-27.5 + parent: 2 + - uid: 3458 + components: + - type: Transform + pos: -60.5,-18.5 + parent: 2 + - uid: 3459 + components: + - type: Transform + pos: -58.5,-20.5 + parent: 2 + - uid: 3460 + components: + - type: Transform + pos: -58.5,-21.5 + parent: 2 + - uid: 3461 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 2 + - uid: 3462 + components: + - type: Transform + pos: -60.5,-21.5 + parent: 2 + - uid: 3463 + components: + - type: Transform + pos: -60.5,-20.5 + parent: 2 + - uid: 3464 + components: + - type: Transform + pos: -54.5,-19.5 + parent: 2 + - uid: 3465 + components: + - type: Transform + pos: -53.5,-19.5 + parent: 2 + - uid: 3466 + components: + - type: Transform + pos: -54.5,-18.5 + parent: 2 + - uid: 3467 + components: + - type: Transform + pos: -54.5,-17.5 + parent: 2 + - uid: 3468 + components: + - type: Transform + pos: -53.5,-17.5 + parent: 2 + - uid: 3469 + components: + - type: Transform + pos: -52.5,-17.5 + parent: 2 + - uid: 3470 + components: + - type: Transform + pos: -38.5,-27.5 + parent: 2 + - uid: 3471 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 2 + - uid: 3472 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - uid: 3473 + components: + - type: Transform + pos: -34.5,-19.5 + parent: 2 + - uid: 3474 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 2 + - uid: 3475 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 2 + - uid: 3476 + components: + - type: Transform + pos: -36.5,-21.5 + parent: 2 + - uid: 3477 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 2 + - uid: 3478 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 2 + - uid: 3479 + components: + - type: Transform + pos: -38.5,-21.5 + parent: 2 + - uid: 3480 + components: + - type: Transform + pos: -39.5,-21.5 + parent: 2 + - uid: 3481 + components: + - type: Transform + pos: -40.5,-21.5 + parent: 2 + - uid: 3482 + components: + - type: Transform + pos: -29.5,-34.5 + parent: 2 + - uid: 3483 + components: + - type: Transform + pos: -13.5,16.5 + parent: 2 + - uid: 3484 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 + - uid: 3485 + components: + - type: Transform + pos: -25.5,-34.5 + parent: 2 + - uid: 3486 + components: + - type: Transform + pos: -25.5,-33.5 + parent: 2 + - uid: 3487 + components: + - type: Transform + pos: -25.5,-32.5 + parent: 2 + - uid: 3488 + components: + - type: Transform + pos: -25.5,-31.5 + parent: 2 + - uid: 3489 + components: + - type: Transform + pos: -25.5,-30.5 + parent: 2 + - uid: 3490 + components: + - type: Transform + pos: -26.5,-30.5 + parent: 2 + - uid: 3491 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - uid: 3492 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 + - uid: 3493 + components: + - type: Transform + pos: -31.5,0.5 + parent: 2 + - uid: 3494 + components: + - type: Transform + pos: -60.5,-3.5 + parent: 2 + - uid: 3495 + components: + - type: Transform + pos: -58.5,-1.5 + parent: 2 + - uid: 3496 + components: + - type: Transform + pos: -58.5,-0.5 + parent: 2 + - uid: 3497 + components: + - type: Transform + pos: -35.5,-29.5 + parent: 2 + - uid: 3498 + components: + - type: Transform + pos: -34.5,-29.5 + parent: 2 + - uid: 3499 + components: + - type: Transform + pos: -34.5,-30.5 + parent: 2 + - uid: 3500 + components: + - type: Transform + pos: -33.5,-30.5 + parent: 2 + - uid: 3501 + components: + - type: Transform + pos: -32.5,-30.5 + parent: 2 + - uid: 3502 + components: + - type: Transform + pos: -31.5,-30.5 + parent: 2 + - uid: 3503 + components: + - type: Transform + pos: -30.5,-30.5 + parent: 2 + - uid: 3504 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 2 + - uid: 3505 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 2 + - uid: 3506 + components: + - type: Transform + pos: -29.5,-31.5 + parent: 2 + - uid: 3507 + components: + - type: Transform + pos: -31.5,-29.5 + parent: 2 + - uid: 3508 + components: + - type: Transform + pos: -31.5,-28.5 + parent: 2 + - uid: 3509 + components: + - type: Transform + pos: -30.5,-28.5 + parent: 2 + - uid: 3510 + components: + - type: Transform + pos: -31.5,-31.5 + parent: 2 + - uid: 3511 + components: + - type: Transform + pos: -35.5,-30.5 + parent: 2 + - uid: 3512 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 2 + - uid: 3513 + components: + - type: Transform + pos: -26.5,-19.5 + parent: 2 + - uid: 3514 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 2 + - uid: 3515 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 2 + - uid: 3516 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 + - uid: 3517 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 2 + - uid: 3518 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 2 + - uid: 3519 + components: + - type: Transform + pos: -20.5,-18.5 + parent: 2 + - uid: 3520 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 2 + - uid: 3521 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 2 + - uid: 3522 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 2 + - uid: 3523 + components: + - type: Transform + pos: -19.5,-18.5 + parent: 2 + - uid: 3524 + components: + - type: Transform + pos: -21.5,-18.5 + parent: 2 + - uid: 3525 + components: + - type: Transform + pos: -22.5,-18.5 + parent: 2 + - uid: 3526 + components: + - type: Transform + pos: -28.5,-22.5 + parent: 2 + - uid: 3527 + components: + - type: Transform + pos: -22.5,-26.5 + parent: 2 + - uid: 3528 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 2 + - uid: 3529 + components: + - type: Transform + pos: -26.5,-26.5 + parent: 2 + - uid: 3530 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 2 + - uid: 3531 + components: + - type: Transform + pos: -21.5,-21.5 + parent: 2 + - uid: 3532 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 2 + - uid: 3533 + components: + - type: Transform + pos: -21.5,-19.5 + parent: 2 + - uid: 3534 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 2 + - uid: 3535 + components: + - type: Transform + pos: -18.5,-24.5 + parent: 2 + - uid: 3536 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 2 + - uid: 3537 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 2 + - uid: 3538 + components: + - type: Transform + pos: -18.5,-21.5 + parent: 2 + - uid: 3539 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 2 + - uid: 3540 + components: + - type: Transform + pos: -21.5,-21.5 + parent: 2 + - uid: 3541 + components: + - type: Transform + pos: -20.5,-23.5 + parent: 2 + - uid: 3542 + components: + - type: Transform + pos: -20.5,-22.5 + parent: 2 + - uid: 3543 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 2 + - uid: 3544 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 2 + - uid: 3545 + components: + - type: Transform + pos: -20.5,-24.5 + parent: 2 + - uid: 3546 + components: + - type: Transform + pos: -25.5,-26.5 + parent: 2 + - uid: 3547 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 2 + - uid: 3548 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 2 + - uid: 3549 + components: + - type: Transform + pos: -27.5,-25.5 + parent: 2 + - uid: 3550 + components: + - type: Transform + pos: -20.5,-26.5 + parent: 2 + - uid: 3551 + components: + - type: Transform + pos: -20.5,-25.5 + parent: 2 + - uid: 3552 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 2 + - uid: 3553 + components: + - type: Transform + pos: -23.5,-21.5 + parent: 2 + - uid: 3554 + components: + - type: Transform + pos: -23.5,-20.5 + parent: 2 + - uid: 3555 + components: + - type: Transform + pos: -24.5,-20.5 + parent: 2 + - uid: 3556 + components: + - type: Transform + pos: -22.5,-20.5 + parent: 2 + - uid: 3557 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 2 + - uid: 3558 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 2 + - uid: 3559 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 2 + - uid: 3560 + components: + - type: Transform + pos: -27.5,-21.5 + parent: 2 + - uid: 3561 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 + - uid: 3562 + components: + - type: Transform + pos: -27.5,-19.5 + parent: 2 + - uid: 3563 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - uid: 3564 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 2 + - uid: 3565 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 2 + - uid: 3566 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 2 + - uid: 3567 + components: + - type: Transform + pos: -24.5,-22.5 + parent: 2 + - uid: 3568 + components: + - type: Transform + pos: -19.5,-26.5 + parent: 2 + - uid: 3569 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - uid: 3570 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 3571 + components: + - type: Transform + pos: -24.5,-27.5 + parent: 2 + - uid: 3572 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 2 + - uid: 3573 + components: + - type: Transform + pos: -17.5,-35.5 + parent: 2 + - uid: 3574 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 2 + - uid: 3575 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 2 + - uid: 3576 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 2 + - uid: 3577 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 2 + - uid: 3578 + components: + - type: Transform + pos: -20.5,-33.5 + parent: 2 + - uid: 3579 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 2 + - uid: 3580 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 2 + - uid: 3581 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 2 + - uid: 3582 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 2 + - uid: 3583 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 2 + - uid: 3584 + components: + - type: Transform + pos: -17.5,-41.5 + parent: 2 + - uid: 3585 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 2 + - uid: 3586 + components: + - type: Transform + pos: -17.5,-43.5 + parent: 2 + - uid: 3587 + components: + - type: Transform + pos: -17.5,-44.5 + parent: 2 + - uid: 3588 + components: + - type: Transform + pos: -17.5,-45.5 + parent: 2 + - uid: 3589 + components: + - type: Transform + pos: -17.5,-46.5 + parent: 2 + - uid: 3590 + components: + - type: Transform + pos: -17.5,-47.5 + parent: 2 + - uid: 3591 + components: + - type: Transform + pos: -16.5,-47.5 + parent: 2 + - uid: 3592 + components: + - type: Transform + pos: -15.5,-47.5 + parent: 2 + - uid: 3593 + components: + - type: Transform + pos: -14.5,-47.5 + parent: 2 + - uid: 3594 + components: + - type: Transform + pos: -13.5,-47.5 + parent: 2 + - uid: 3595 + components: + - type: Transform + pos: -12.5,-47.5 + parent: 2 + - uid: 3596 + components: + - type: Transform + pos: -11.5,-47.5 + parent: 2 + - uid: 3597 + components: + - type: Transform + pos: -10.5,-47.5 + parent: 2 + - uid: 3598 + components: + - type: Transform + pos: -9.5,-47.5 + parent: 2 + - uid: 3599 + components: + - type: Transform + pos: -8.5,-47.5 + parent: 2 + - uid: 3600 + components: + - type: Transform + pos: -7.5,-47.5 + parent: 2 + - uid: 3601 + components: + - type: Transform + pos: -6.5,-47.5 + parent: 2 + - uid: 3602 + components: + - type: Transform + pos: -5.5,-47.5 + parent: 2 + - uid: 3603 + components: + - type: Transform + pos: -4.5,-47.5 + parent: 2 + - uid: 3604 + components: + - type: Transform + pos: -3.5,-47.5 + parent: 2 + - uid: 3605 + components: + - type: Transform + pos: -3.5,-48.5 + parent: 2 + - uid: 3606 + components: + - type: Transform + pos: -3.5,-49.5 + parent: 2 + - uid: 3607 + components: + - type: Transform + pos: -3.5,-50.5 + parent: 2 + - uid: 3608 + components: + - type: Transform + pos: -3.5,-51.5 + parent: 2 + - uid: 3609 + components: + - type: Transform + pos: -3.5,-52.5 + parent: 2 + - uid: 3610 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 2 + - uid: 3611 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 2 + - uid: 3612 + components: + - type: Transform + pos: -18.5,-47.5 + parent: 2 + - uid: 3613 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 2 + - uid: 3614 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 2 + - uid: 3615 + components: + - type: Transform + pos: -18.5,-50.5 + parent: 2 + - uid: 3616 + components: + - type: Transform + pos: -18.5,-51.5 + parent: 2 + - uid: 3617 + components: + - type: Transform + pos: -18.5,-52.5 + parent: 2 + - uid: 3618 + components: + - type: Transform + pos: -18.5,-53.5 + parent: 2 + - uid: 3619 + components: + - type: Transform + pos: -18.5,-54.5 + parent: 2 + - uid: 3620 + components: + - type: Transform + pos: -18.5,-55.5 + parent: 2 + - uid: 3621 + components: + - type: Transform + pos: -18.5,-56.5 + parent: 2 + - uid: 3622 + components: + - type: Transform + pos: -18.5,-57.5 + parent: 2 + - uid: 3623 + components: + - type: Transform + pos: -18.5,-58.5 + parent: 2 + - uid: 3624 + components: + - type: Transform + pos: -18.5,-59.5 + parent: 2 + - uid: 3625 + components: + - type: Transform + pos: -18.5,-60.5 + parent: 2 + - uid: 3626 + components: + - type: Transform + pos: -17.5,-60.5 + parent: 2 + - uid: 3627 + components: + - type: Transform + pos: -16.5,-60.5 + parent: 2 + - uid: 3628 + components: + - type: Transform + pos: -15.5,-60.5 + parent: 2 + - uid: 3629 + components: + - type: Transform + pos: -15.5,-59.5 + parent: 2 + - uid: 3630 + components: + - type: Transform + pos: -14.5,-59.5 + parent: 2 + - uid: 3631 + components: + - type: Transform + pos: -13.5,-59.5 + parent: 2 + - uid: 3632 + components: + - type: Transform + pos: -12.5,-59.5 + parent: 2 + - uid: 3633 + components: + - type: Transform + pos: -11.5,-59.5 + parent: 2 + - uid: 3634 + components: + - type: Transform + pos: -10.5,-59.5 + parent: 2 + - uid: 3635 + components: + - type: Transform + pos: -9.5,-59.5 + parent: 2 + - uid: 3636 + components: + - type: Transform + pos: -8.5,-59.5 + parent: 2 + - uid: 3637 + components: + - type: Transform + pos: -7.5,-59.5 + parent: 2 + - uid: 3638 + components: + - type: Transform + pos: -6.5,-59.5 + parent: 2 + - uid: 3639 + components: + - type: Transform + pos: -5.5,-59.5 + parent: 2 + - uid: 3640 + components: + - type: Transform + pos: -4.5,-59.5 + parent: 2 + - uid: 3641 + components: + - type: Transform + pos: -3.5,-59.5 + parent: 2 + - uid: 3642 + components: + - type: Transform + pos: -2.5,-59.5 + parent: 2 + - uid: 3643 + components: + - type: Transform + pos: -1.5,-59.5 + parent: 2 + - uid: 3644 + components: + - type: Transform + pos: -15.5,-61.5 + parent: 2 + - uid: 3645 + components: + - type: Transform + pos: -15.5,-62.5 + parent: 2 + - uid: 3646 + components: + - type: Transform + pos: -15.5,-63.5 + parent: 2 + - uid: 3647 + components: + - type: Transform + pos: -15.5,-64.5 + parent: 2 + - uid: 3648 + components: + - type: Transform + pos: -15.5,-65.5 + parent: 2 + - uid: 3649 + components: + - type: Transform + pos: -16.5,-64.5 + parent: 2 + - uid: 3650 + components: + - type: Transform + pos: -17.5,-64.5 + parent: 2 + - uid: 3651 + components: + - type: Transform + pos: -17.5,-65.5 + parent: 2 + - uid: 3652 + components: + - type: Transform + pos: -19.5,-60.5 + parent: 2 + - uid: 3653 + components: + - type: Transform + pos: -20.5,-60.5 + parent: 2 + - uid: 3654 + components: + - type: Transform + pos: -21.5,-60.5 + parent: 2 + - uid: 3655 + components: + - type: Transform + pos: -22.5,-60.5 + parent: 2 + - uid: 3656 + components: + - type: Transform + pos: -23.5,-60.5 + parent: 2 + - uid: 3657 + components: + - type: Transform + pos: -24.5,-60.5 + parent: 2 + - uid: 3658 + components: + - type: Transform + pos: -25.5,-60.5 + parent: 2 + - uid: 3659 + components: + - type: Transform + pos: -26.5,-60.5 + parent: 2 + - uid: 3660 + components: + - type: Transform + pos: -27.5,-60.5 + parent: 2 + - uid: 3661 + components: + - type: Transform + pos: -28.5,-60.5 + parent: 2 + - uid: 3662 + components: + - type: Transform + pos: -29.5,-60.5 + parent: 2 + - uid: 3663 + components: + - type: Transform + pos: -30.5,-60.5 + parent: 2 + - uid: 3664 + components: + - type: Transform + pos: -31.5,-60.5 + parent: 2 + - uid: 3665 + components: + - type: Transform + pos: -31.5,-61.5 + parent: 2 + - uid: 3666 + components: + - type: Transform + pos: -31.5,-62.5 + parent: 2 + - uid: 3667 + components: + - type: Transform + pos: -31.5,-63.5 + parent: 2 + - uid: 3668 + components: + - type: Transform + pos: -31.5,-64.5 + parent: 2 + - uid: 3669 + components: + - type: Transform + pos: -31.5,-65.5 + parent: 2 + - uid: 3670 + components: + - type: Transform + pos: -31.5,-66.5 + parent: 2 + - uid: 3671 + components: + - type: Transform + pos: -31.5,-67.5 + parent: 2 + - uid: 3672 + components: + - type: Transform + pos: -31.5,-68.5 + parent: 2 + - uid: 3673 + components: + - type: Transform + pos: -31.5,-69.5 + parent: 2 + - uid: 3674 + components: + - type: Transform + pos: -31.5,-70.5 + parent: 2 + - uid: 3675 + components: + - type: Transform + pos: -31.5,-71.5 + parent: 2 + - uid: 3676 + components: + - type: Transform + pos: -31.5,-72.5 + parent: 2 + - uid: 3677 + components: + - type: Transform + pos: -31.5,-73.5 + parent: 2 + - uid: 3678 + components: + - type: Transform + pos: -30.5,-65.5 + parent: 2 + - uid: 3679 + components: + - type: Transform + pos: -29.5,-65.5 + parent: 2 + - uid: 3680 + components: + - type: Transform + pos: -19.5,-47.5 + parent: 2 + - uid: 3681 + components: + - type: Transform + pos: -20.5,-47.5 + parent: 2 + - uid: 3682 + components: + - type: Transform + pos: -21.5,-47.5 + parent: 2 + - uid: 3683 + components: + - type: Transform + pos: -22.5,-47.5 + parent: 2 + - uid: 3684 + components: + - type: Transform + pos: -23.5,-47.5 + parent: 2 + - uid: 3685 + components: + - type: Transform + pos: -24.5,-47.5 + parent: 2 + - uid: 3686 + components: + - type: Transform + pos: -25.5,-47.5 + parent: 2 + - uid: 3687 + components: + - type: Transform + pos: -26.5,-47.5 + parent: 2 + - uid: 3688 + components: + - type: Transform + pos: -27.5,-47.5 + parent: 2 + - uid: 3689 + components: + - type: Transform + pos: -28.5,-47.5 + parent: 2 + - uid: 3690 + components: + - type: Transform + pos: -29.5,-47.5 + parent: 2 + - uid: 3691 + components: + - type: Transform + pos: -30.5,-47.5 + parent: 2 + - uid: 3692 + components: + - type: Transform + pos: -31.5,-47.5 + parent: 2 + - uid: 3693 + components: + - type: Transform + pos: -18.5,-42.5 + parent: 2 + - uid: 3694 + components: + - type: Transform + pos: -19.5,-42.5 + parent: 2 + - uid: 3695 + components: + - type: Transform + pos: -20.5,-42.5 + parent: 2 + - uid: 3696 + components: + - type: Transform + pos: -21.5,-42.5 + parent: 2 + - uid: 3697 + components: + - type: Transform + pos: -21.5,-43.5 + parent: 2 + - uid: 3698 + components: + - type: Transform + pos: -22.5,-43.5 + parent: 2 + - uid: 3699 + components: + - type: Transform + pos: -23.5,-43.5 + parent: 2 + - uid: 3700 + components: + - type: Transform + pos: -23.5,-44.5 + parent: 2 + - uid: 3701 + components: + - type: Transform + pos: -24.5,-44.5 + parent: 2 + - uid: 3702 + components: + - type: Transform + pos: -25.5,-44.5 + parent: 2 + - uid: 3703 + components: + - type: Transform + pos: -26.5,-44.5 + parent: 2 + - uid: 3704 + components: + - type: Transform + pos: -27.5,-44.5 + parent: 2 + - uid: 3705 + components: + - type: Transform + pos: -28.5,-44.5 + parent: 2 + - uid: 3706 + components: + - type: Transform + pos: -29.5,-44.5 + parent: 2 + - uid: 3707 + components: + - type: Transform + pos: -30.5,-44.5 + parent: 2 + - uid: 3708 + components: + - type: Transform + pos: -31.5,-44.5 + parent: 2 + - uid: 3709 + components: + - type: Transform + pos: -32.5,-44.5 + parent: 2 + - uid: 3710 + components: + - type: Transform + pos: -33.5,-44.5 + parent: 2 + - uid: 3711 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - uid: 3712 + components: + - type: Transform + pos: -16.5,-35.5 + parent: 2 + - uid: 3713 + components: + - type: Transform + pos: -16.5,-36.5 + parent: 2 + - uid: 3714 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 2 + - uid: 3715 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 2 + - uid: 3716 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 2 + - uid: 3717 + components: + - type: Transform + pos: -16.5,-41.5 + parent: 2 + - uid: 3718 + components: + - type: Transform + pos: -16.5,-42.5 + parent: 2 + - uid: 3719 + components: + - type: Transform + pos: -16.5,-43.5 + parent: 2 + - uid: 3720 + components: + - type: Transform + pos: -16.5,-44.5 + parent: 2 + - uid: 3721 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 2 + - uid: 3722 + components: + - type: Transform + pos: -18.5,-45.5 + parent: 2 + - uid: 3723 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 2 + - uid: 3724 + components: + - type: Transform + pos: -21.5,-46.5 + parent: 2 + - uid: 3727 + components: + - type: Transform + pos: -21.5,-44.5 + parent: 2 + - uid: 3728 + components: + - type: Transform + pos: -23.5,-45.5 + parent: 2 + - uid: 3729 + components: + - type: Transform + pos: -21.5,-61.5 + parent: 2 + - uid: 3730 + components: + - type: Transform + pos: -22.5,-61.5 + parent: 2 + - uid: 3731 + components: + - type: Transform + pos: -23.5,-61.5 + parent: 2 + - uid: 3732 + components: + - type: Transform + pos: -24.5,-61.5 + parent: 2 + - uid: 3733 + components: + - type: Transform + pos: -25.5,-61.5 + parent: 2 + - uid: 3734 + components: + - type: Transform + pos: -26.5,-61.5 + parent: 2 + - uid: 3735 + components: + - type: Transform + pos: -27.5,-61.5 + parent: 2 + - uid: 3736 + components: + - type: Transform + pos: -28.5,-61.5 + parent: 2 + - uid: 3737 + components: + - type: Transform + pos: -29.5,-61.5 + parent: 2 + - uid: 3738 + components: + - type: Transform + pos: -29.5,-64.5 + parent: 2 + - uid: 3739 + components: + - type: Transform + pos: -28.5,-64.5 + parent: 2 + - uid: 3740 + components: + - type: Transform + pos: -28.5,-63.5 + parent: 2 + - uid: 3741 + components: + - type: Transform + pos: -32.5,-67.5 + parent: 2 + - uid: 3742 + components: + - type: Transform + pos: -32.5,-68.5 + parent: 2 + - uid: 3743 + components: + - type: Transform + pos: -32.5,-69.5 + parent: 2 + - uid: 3744 + components: + - type: Transform + pos: -32.5,-70.5 + parent: 2 + - uid: 3745 + components: + - type: Transform + pos: -30.5,-67.5 + parent: 2 + - uid: 3746 + components: + - type: Transform + pos: -30.5,-68.5 + parent: 2 + - uid: 3747 + components: + - type: Transform + pos: -30.5,-69.5 + parent: 2 + - uid: 3748 + components: + - type: Transform + pos: -30.5,-70.5 + parent: 2 + - uid: 3749 + components: + - type: Transform + pos: -32.5,-73.5 + parent: 2 + - uid: 3750 + components: + - type: Transform + pos: -33.5,-73.5 + parent: 2 + - uid: 3751 + components: + - type: Transform + pos: -33.5,-74.5 + parent: 2 + - uid: 3752 + components: + - type: Transform + pos: -33.5,-75.5 + parent: 2 + - uid: 3753 + components: + - type: Transform + pos: -32.5,-75.5 + parent: 2 + - uid: 3754 + components: + - type: Transform + pos: -31.5,-75.5 + parent: 2 + - uid: 3755 + components: + - type: Transform + pos: -30.5,-75.5 + parent: 2 + - uid: 3756 + components: + - type: Transform + pos: -27.5,-43.5 + parent: 2 + - uid: 3757 + components: + - type: Transform + pos: -28.5,-42.5 + parent: 2 + - uid: 3758 + components: + - type: Transform + pos: -27.5,-42.5 + parent: 2 + - uid: 3759 + components: + - type: Transform + pos: -26.5,-42.5 + parent: 2 + - uid: 3760 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 2 + - uid: 3761 + components: + - type: Transform + pos: -37.5,-42.5 + parent: 2 + - uid: 3762 + components: + - type: Transform + pos: -18.5,-39.5 + parent: 2 + - uid: 3763 + components: + - type: Transform + pos: -19.5,-39.5 + parent: 2 + - uid: 3764 + components: + - type: Transform + pos: -20.5,-39.5 + parent: 2 + - uid: 3765 + components: + - type: Transform + pos: -21.5,-39.5 + parent: 2 + - uid: 3766 + components: + - type: Transform + pos: -21.5,-40.5 + parent: 2 + - uid: 3767 + components: + - type: Transform + pos: -22.5,-40.5 + parent: 2 + - uid: 3768 + components: + - type: Transform + pos: -12.5,-44.5 + parent: 2 + - uid: 3769 + components: + - type: Transform + pos: -12.5,-43.5 + parent: 2 + - uid: 3771 + components: + - type: Transform + pos: -13.5,-44.5 + parent: 2 + - uid: 3772 + components: + - type: Transform + pos: -37.5,-62.5 + parent: 2 + - uid: 3773 + components: + - type: Transform + pos: -37.5,-63.5 + parent: 2 + - uid: 3774 + components: + - type: Transform + pos: -37.5,-61.5 + parent: 2 + - uid: 3775 + components: + - type: Transform + pos: -38.5,-61.5 + parent: 2 + - uid: 3776 + components: + - type: Transform + pos: -39.5,-61.5 + parent: 2 + - uid: 3777 + components: + - type: Transform + pos: -32.5,-47.5 + parent: 2 + - uid: 3778 + components: + - type: Transform + pos: -32.5,-48.5 + parent: 2 + - uid: 3779 + components: + - type: Transform + pos: -41.5,-62.5 + parent: 2 + - uid: 3780 + components: + - type: Transform + pos: -40.5,-62.5 + parent: 2 + - uid: 3781 + components: + - type: Transform + pos: -39.5,-62.5 + parent: 2 + - uid: 3782 + components: + - type: Transform + pos: -39.5,-63.5 + parent: 2 + - uid: 3783 + components: + - type: Transform + pos: -32.5,-49.5 + parent: 2 + - uid: 3784 + components: + - type: Transform + pos: -32.5,-50.5 + parent: 2 + - uid: 3785 + components: + - type: Transform + pos: -33.5,-50.5 + parent: 2 + - uid: 3786 + components: + - type: Transform + pos: -34.5,-50.5 + parent: 2 + - uid: 3787 + components: + - type: Transform + pos: -35.5,-50.5 + parent: 2 + - uid: 3788 + components: + - type: Transform + pos: -36.5,-50.5 + parent: 2 + - uid: 3789 + components: + - type: Transform + pos: -37.5,-51.5 + parent: 2 + - uid: 3790 + components: + - type: Transform + pos: -36.5,-51.5 + parent: 2 + - uid: 3791 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 2 + - uid: 3792 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 2 + - uid: 3793 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 2 + - uid: 3794 + components: + - type: Transform + pos: -36.5,-42.5 + parent: 2 + - uid: 3795 + components: + - type: Transform + pos: -33.5,-51.5 + parent: 2 + - uid: 3796 + components: + - type: Transform + pos: -19.5,-53.5 + parent: 2 + - uid: 3797 + components: + - type: Transform + pos: -20.5,-53.5 + parent: 2 + - uid: 3798 + components: + - type: Transform + pos: -21.5,-53.5 + parent: 2 + - uid: 3799 + components: + - type: Transform + pos: -21.5,-52.5 + parent: 2 + - uid: 3800 + components: + - type: Transform + pos: -21.5,-51.5 + parent: 2 + - uid: 3801 + components: + - type: Transform + pos: -21.5,-50.5 + parent: 2 + - uid: 3802 + components: + - type: Transform + pos: -28.5,-50.5 + parent: 2 + - uid: 3803 + components: + - type: Transform + pos: -27.5,-50.5 + parent: 2 + - uid: 3804 + components: + - type: Transform + pos: -26.5,-50.5 + parent: 2 + - uid: 3805 + components: + - type: Transform + pos: -25.5,-50.5 + parent: 2 + - uid: 3806 + components: + - type: Transform + pos: -24.5,-50.5 + parent: 2 + - uid: 3807 + components: + - type: Transform + pos: -23.5,-50.5 + parent: 2 + - uid: 3808 + components: + - type: Transform + pos: -22.5,-50.5 + parent: 2 + - uid: 3809 + components: + - type: Transform + pos: -31.5,-59.5 + parent: 2 + - uid: 3810 + components: + - type: Transform + pos: -31.5,-58.5 + parent: 2 + - uid: 3811 + components: + - type: Transform + pos: -31.5,-57.5 + parent: 2 + - uid: 3812 + components: + - type: Transform + pos: -31.5,-56.5 + parent: 2 + - uid: 3813 + components: + - type: Transform + pos: -32.5,-56.5 + parent: 2 + - uid: 3814 + components: + - type: Transform + pos: -33.5,-56.5 + parent: 2 + - uid: 3815 + components: + - type: Transform + pos: -28.5,-57.5 + parent: 2 + - uid: 3816 + components: + - type: Transform + pos: -21.5,-56.5 + parent: 2 + - uid: 3817 + components: + - type: Transform + pos: -21.5,-57.5 + parent: 2 + - uid: 3818 + components: + - type: Transform + pos: -22.5,-57.5 + parent: 2 + - uid: 3819 + components: + - type: Transform + pos: -23.5,-57.5 + parent: 2 + - uid: 3820 + components: + - type: Transform + pos: -24.5,-57.5 + parent: 2 + - uid: 3821 + components: + - type: Transform + pos: -25.5,-57.5 + parent: 2 + - uid: 3822 + components: + - type: Transform + pos: -26.5,-57.5 + parent: 2 + - uid: 3823 + components: + - type: Transform + pos: -27.5,-57.5 + parent: 2 + - uid: 3824 + components: + - type: Transform + pos: -34.5,-56.5 + parent: 2 + - uid: 3825 + components: + - type: Transform + pos: -35.5,-56.5 + parent: 2 + - uid: 3826 + components: + - type: Transform + pos: -36.5,-56.5 + parent: 2 + - uid: 3827 + components: + - type: Transform + pos: -37.5,-56.5 + parent: 2 + - uid: 3828 + components: + - type: Transform + pos: -33.5,-55.5 + parent: 2 + - uid: 3829 + components: + - type: Transform + pos: -33.5,-54.5 + parent: 2 + - uid: 3830 + components: + - type: Transform + pos: -38.5,-56.5 + parent: 2 + - uid: 3831 + components: + - type: Transform + pos: -36.5,-55.5 + parent: 2 + - uid: 3832 + components: + - type: Transform + pos: -36.5,-54.5 + parent: 2 + - uid: 3833 + components: + - type: Transform + pos: -37.5,-54.5 + parent: 2 + - uid: 3834 + components: + - type: Transform + pos: -38.5,-54.5 + parent: 2 + - uid: 3835 + components: + - type: Transform + pos: -36.5,-57.5 + parent: 2 + - uid: 3836 + components: + - type: Transform + pos: -36.5,-58.5 + parent: 2 + - uid: 3837 + components: + - type: Transform + pos: -37.5,-58.5 + parent: 2 + - uid: 3838 + components: + - type: Transform + pos: -38.5,-58.5 + parent: 2 + - uid: 3839 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 2 + - uid: 3840 + components: + - type: Transform + pos: -32.5,-65.5 + parent: 2 + - uid: 3841 + components: + - type: Transform + pos: -34.5,-65.5 + parent: 2 + - uid: 3842 + components: + - type: Transform + pos: -33.5,-65.5 + parent: 2 + - uid: 3843 + components: + - type: Transform + pos: -21.5,-54.5 + parent: 2 + - uid: 3844 + components: + - type: Transform + pos: -21.5,-55.5 + parent: 2 + - uid: 3845 + components: + - type: Transform + pos: -19.5,-73.5 + parent: 2 + - uid: 3846 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 2 + - uid: 3847 + components: + - type: Transform + pos: -10.5,-35.5 + parent: 2 + - uid: 3848 + components: + - type: Transform + pos: -9.5,-35.5 + parent: 2 + - uid: 3849 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 2 + - uid: 3850 + components: + - type: Transform + pos: -8.5,-34.5 + parent: 2 + - uid: 3851 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 2 + - uid: 3852 + components: + - type: Transform + pos: -6.5,-34.5 + parent: 2 + - uid: 3853 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 2 + - uid: 3854 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 2 + - uid: 3855 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 2 + - uid: 3856 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 2 + - uid: 3857 + components: + - type: Transform + pos: -4.5,-37.5 + parent: 2 + - uid: 3858 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 2 + - uid: 3859 + components: + - type: Transform + pos: -5.5,-38.5 + parent: 2 + - uid: 3860 + components: + - type: Transform + pos: -6.5,-38.5 + parent: 2 + - uid: 3861 + components: + - type: Transform + pos: -7.5,-38.5 + parent: 2 + - uid: 3862 + components: + - type: Transform + pos: -8.5,-38.5 + parent: 2 + - uid: 3863 + components: + - type: Transform + pos: -9.5,-38.5 + parent: 2 + - uid: 3864 + components: + - type: Transform + pos: -9.5,-37.5 + parent: 2 + - uid: 3865 + components: + - type: Transform + pos: -9.5,-36.5 + parent: 2 + - uid: 3866 + components: + - type: Transform + pos: -11.5,-36.5 + parent: 2 + - uid: 3867 + components: + - type: Transform + pos: -12.5,-36.5 + parent: 2 + - uid: 3868 + components: + - type: Transform + pos: -13.5,-36.5 + parent: 2 + - uid: 3869 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 2 + - uid: 3870 + components: + - type: Transform + pos: -8.5,-44.5 + parent: 2 + - uid: 3871 + components: + - type: Transform + pos: -9.5,-44.5 + parent: 2 + - uid: 3872 + components: + - type: Transform + pos: -11.5,-44.5 + parent: 2 + - uid: 3873 + components: + - type: Transform + pos: -10.5,-44.5 + parent: 2 + - uid: 3874 + components: + - type: Transform + pos: -0.5,-51.5 + parent: 2 + - uid: 3875 + components: + - type: Transform + pos: -0.5,-52.5 + parent: 2 + - uid: 3876 + components: + - type: Transform + pos: -2.5,-56.5 + parent: 2 + - uid: 3877 + components: + - type: Transform + pos: -1.5,-56.5 + parent: 2 + - uid: 3878 + components: + - type: Transform + pos: 0.5,-56.5 + parent: 2 + - uid: 3879 + components: + - type: Transform + pos: -2.5,-53.5 + parent: 2 + - uid: 3880 + components: + - type: Transform + pos: -1.5,-53.5 + parent: 2 + - uid: 3881 + components: + - type: Transform + pos: -7.5,-44.5 + parent: 2 + - uid: 3882 + components: + - type: Transform + pos: -0.5,-56.5 + parent: 2 + - uid: 3883 + components: + - type: Transform + pos: -0.5,-53.5 + parent: 2 + - uid: 3884 + components: + - type: Transform + pos: -4.5,-44.5 + parent: 2 + - uid: 3885 + components: + - type: Transform + pos: -6.5,-44.5 + parent: 2 + - uid: 3886 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 2 + - uid: 3887 + components: + - type: Transform + pos: -0.5,-54.5 + parent: 2 + - uid: 3888 + components: + - type: Transform + pos: -3.5,-53.5 + parent: 2 + - uid: 3889 + components: + - type: Transform + pos: -5.5,-44.5 + parent: 2 + - uid: 3890 + components: + - type: Transform + pos: -0.5,-50.5 + parent: 2 + - uid: 3891 + components: + - type: Transform + pos: -0.5,-49.5 + parent: 2 + - uid: 3892 + components: + - type: Transform + pos: -0.5,-48.5 + parent: 2 + - uid: 3893 + components: + - type: Transform + pos: -0.5,-47.5 + parent: 2 + - uid: 3894 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 2 + - uid: 3895 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 2 + - uid: 3896 + components: + - type: Transform + pos: -0.5,-44.5 + parent: 2 + - uid: 3897 + components: + - type: Transform + pos: -0.5,-43.5 + parent: 2 + - uid: 3898 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 2 + - uid: 3899 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 2 + - uid: 3900 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 2 + - uid: 3901 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 2 + - uid: 3902 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 2 + - uid: 3903 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 2 + - uid: 3904 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 2 + - uid: 3905 + components: + - type: Transform + pos: -0.5,-35.5 + parent: 2 + - uid: 3906 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 2 + - uid: 3907 + components: + - type: Transform + pos: -7.5,-43.5 + parent: 2 + - uid: 3908 + components: + - type: Transform + pos: -7.5,-42.5 + parent: 2 + - uid: 3909 + components: + - type: Transform + pos: -7.5,-54.5 + parent: 2 + - uid: 3910 + components: + - type: Transform + pos: -8.5,-54.5 + parent: 2 + - uid: 3911 + components: + - type: Transform + pos: -6.5,-54.5 + parent: 2 + - uid: 3912 + components: + - type: Transform + pos: -6.5,-53.5 + parent: 2 + - uid: 3913 + components: + - type: Transform + pos: -6.5,-52.5 + parent: 2 + - uid: 3914 + components: + - type: Transform + pos: -6.5,-50.5 + parent: 2 + - uid: 3915 + components: + - type: Transform + pos: -6.5,-51.5 + parent: 2 + - uid: 3916 + components: + - type: Transform + pos: -7.5,-50.5 + parent: 2 + - uid: 3917 + components: + - type: Transform + pos: -6.5,-55.5 + parent: 2 + - uid: 3918 + components: + - type: Transform + pos: -6.5,-56.5 + parent: 2 + - uid: 3919 + components: + - type: Transform + pos: -7.5,-56.5 + parent: 2 + - uid: 3920 + components: + - type: Transform + pos: -8.5,-53.5 + parent: 2 + - uid: 3921 + components: + - type: Transform + pos: -9.5,-53.5 + parent: 2 + - uid: 3922 + components: + - type: Transform + pos: -10.5,-53.5 + parent: 2 + - uid: 3923 + components: + - type: Transform + pos: -11.5,-53.5 + parent: 2 + - uid: 3924 + components: + - type: Transform + pos: -12.5,-53.5 + parent: 2 + - uid: 3925 + components: + - type: Transform + pos: -13.5,-53.5 + parent: 2 + - uid: 3926 + components: + - type: Transform + pos: -13.5,-52.5 + parent: 2 + - uid: 3927 + components: + - type: Transform + pos: -13.5,-51.5 + parent: 2 + - uid: 3928 + components: + - type: Transform + pos: -13.5,-50.5 + parent: 2 + - uid: 3929 + components: + - type: Transform + pos: -13.5,-54.5 + parent: 2 + - uid: 3930 + components: + - type: Transform + pos: -13.5,-55.5 + parent: 2 + - uid: 3931 + components: + - type: Transform + pos: -13.5,-56.5 + parent: 2 + - uid: 3932 + components: + - type: Transform + pos: -14.5,-53.5 + parent: 2 + - uid: 3933 + components: + - type: Transform + pos: -15.5,-53.5 + parent: 2 + - uid: 3934 + components: + - type: Transform + pos: -9.5,-54.5 + parent: 2 + - uid: 3935 + components: + - type: Transform + pos: -9.5,-55.5 + parent: 2 + - uid: 3936 + components: + - type: Transform + pos: -9.5,-56.5 + parent: 2 + - uid: 3937 + components: + - type: Transform + pos: -9.5,-57.5 + parent: 2 + - uid: 3938 + components: + - type: Transform + pos: -12.5,-76.5 + parent: 2 + - uid: 3939 + components: + - type: Transform + pos: 7.5,-41.5 + parent: 2 + - uid: 3940 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 2 + - uid: 3941 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 2 + - uid: 3942 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 2 + - uid: 3943 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 2 + - uid: 3944 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 2 + - uid: 3945 + components: + - type: Transform + pos: 4.5,-43.5 + parent: 2 + - uid: 3946 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 2 + - uid: 3947 + components: + - type: Transform + pos: 6.5,-43.5 + parent: 2 + - uid: 3948 + components: + - type: Transform + pos: 5.5,-43.5 + parent: 2 + - uid: 3949 + components: + - type: Transform + pos: 3.5,-43.5 + parent: 2 + - uid: 3950 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 2 + - uid: 3951 + components: + - type: Transform + pos: 2.5,-45.5 + parent: 2 + - uid: 3952 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 2 + - uid: 3953 + components: + - type: Transform + pos: 8.5,-44.5 + parent: 2 + - uid: 3954 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - uid: 3955 + components: + - type: Transform + pos: 6.5,-45.5 + parent: 2 + - uid: 3956 + components: + - type: Transform + pos: 6.5,-46.5 + parent: 2 + - uid: 3957 + components: + - type: Transform + pos: 5.5,-46.5 + parent: 2 + - uid: 3958 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 2 + - uid: 3959 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 2 + - uid: 3960 + components: + - type: Transform + pos: 9.5,-41.5 + parent: 2 + - uid: 3961 + components: + - type: Transform + pos: 10.5,-41.5 + parent: 2 + - uid: 3962 + components: + - type: Transform + pos: 11.5,-41.5 + parent: 2 + - uid: 3963 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 2 + - uid: 3964 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 2 + - uid: 3965 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 2 + - uid: 3966 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 2 + - uid: 3967 + components: + - type: Transform + pos: 13.5,-44.5 + parent: 2 + - uid: 3968 + components: + - type: Transform + pos: 13.5,-45.5 + parent: 2 + - uid: 3969 + components: + - type: Transform + pos: 13.5,-46.5 + parent: 2 + - uid: 3970 + components: + - type: Transform + pos: 13.5,-47.5 + parent: 2 + - uid: 3971 + components: + - type: Transform + pos: 12.5,-47.5 + parent: 2 + - uid: 3972 + components: + - type: Transform + pos: 11.5,-47.5 + parent: 2 + - uid: 3973 + components: + - type: Transform + pos: 10.5,-47.5 + parent: 2 + - uid: 3974 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 2 + - uid: 3975 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 2 + - uid: 3976 + components: + - type: Transform + pos: 15.5,-40.5 + parent: 2 + - uid: 3977 + components: + - type: Transform + pos: 15.5,-42.5 + parent: 2 + - uid: 3978 + components: + - type: Transform + pos: 15.5,-43.5 + parent: 2 + - uid: 3979 + components: + - type: Transform + pos: 14.5,-44.5 + parent: 2 + - uid: 3980 + components: + - type: Transform + pos: 15.5,-45.5 + parent: 2 + - uid: 3981 + components: + - type: Transform + pos: 16.5,-45.5 + parent: 2 + - uid: 3982 + components: + - type: Transform + pos: 17.5,-45.5 + parent: 2 + - uid: 3983 + components: + - type: Transform + pos: 18.5,-45.5 + parent: 2 + - uid: 3984 + components: + - type: Transform + pos: 19.5,-45.5 + parent: 2 + - uid: 3985 + components: + - type: Transform + pos: 20.5,-45.5 + parent: 2 + - uid: 3986 + components: + - type: Transform + pos: 21.5,-45.5 + parent: 2 + - uid: 3987 + components: + - type: Transform + pos: 22.5,-45.5 + parent: 2 + - uid: 3988 + components: + - type: Transform + pos: 23.5,-45.5 + parent: 2 + - uid: 3989 + components: + - type: Transform + pos: 24.5,-45.5 + parent: 2 + - uid: 3990 + components: + - type: Transform + pos: 25.5,-45.5 + parent: 2 + - uid: 3991 + components: + - type: Transform + pos: 26.5,-45.5 + parent: 2 + - uid: 3992 + components: + - type: Transform + pos: 27.5,-45.5 + parent: 2 + - uid: 3993 + components: + - type: Transform + pos: 28.5,-45.5 + parent: 2 + - uid: 3994 + components: + - type: Transform + pos: 29.5,-45.5 + parent: 2 + - uid: 3995 + components: + - type: Transform + pos: 29.5,-44.5 + parent: 2 + - uid: 3996 + components: + - type: Transform + pos: 29.5,-43.5 + parent: 2 + - uid: 3997 + components: + - type: Transform + pos: 29.5,-42.5 + parent: 2 + - uid: 3998 + components: + - type: Transform + pos: 29.5,-41.5 + parent: 2 + - uid: 3999 + components: + - type: Transform + pos: 28.5,-41.5 + parent: 2 + - uid: 4000 + components: + - type: Transform + pos: 27.5,-41.5 + parent: 2 + - uid: 4001 + components: + - type: Transform + pos: 26.5,-41.5 + parent: 2 + - uid: 4002 + components: + - type: Transform + pos: 25.5,-41.5 + parent: 2 + - uid: 4003 + components: + - type: Transform + pos: 25.5,-42.5 + parent: 2 + - uid: 4004 + components: + - type: Transform + pos: 25.5,-44.5 + parent: 2 + - uid: 4005 + components: + - type: Transform + pos: 25.5,-46.5 + parent: 2 + - uid: 4006 + components: + - type: Transform + pos: 25.5,-48.5 + parent: 2 + - uid: 4007 + components: + - type: Transform + pos: 25.5,-49.5 + parent: 2 + - uid: 4008 + components: + - type: Transform + pos: 25.5,-50.5 + parent: 2 + - uid: 4009 + components: + - type: Transform + pos: 25.5,-47.5 + parent: 2 + - uid: 4010 + components: + - type: Transform + pos: 25.5,-52.5 + parent: 2 + - uid: 4011 + components: + - type: Transform + pos: 25.5,-53.5 + parent: 2 + - uid: 4012 + components: + - type: Transform + pos: 25.5,-54.5 + parent: 2 + - uid: 4013 + components: + - type: Transform + pos: 25.5,-55.5 + parent: 2 + - uid: 4014 + components: + - type: Transform + pos: 25.5,-56.5 + parent: 2 + - uid: 4015 + components: + - type: Transform + pos: 25.5,-57.5 + parent: 2 + - uid: 4016 + components: + - type: Transform + pos: 26.5,-57.5 + parent: 2 + - uid: 4017 + components: + - type: Transform + pos: 27.5,-57.5 + parent: 2 + - uid: 4018 + components: + - type: Transform + pos: 28.5,-57.5 + parent: 2 + - uid: 4019 + components: + - type: Transform + pos: 29.5,-57.5 + parent: 2 + - uid: 4020 + components: + - type: Transform + pos: 29.5,-56.5 + parent: 2 + - uid: 4021 + components: + - type: Transform + pos: 29.5,-55.5 + parent: 2 + - uid: 4022 + components: + - type: Transform + pos: 29.5,-54.5 + parent: 2 + - uid: 4023 + components: + - type: Transform + pos: 29.5,-53.5 + parent: 2 + - uid: 4024 + components: + - type: Transform + pos: 29.5,-52.5 + parent: 2 + - uid: 4025 + components: + - type: Transform + pos: 29.5,-51.5 + parent: 2 + - uid: 4026 + components: + - type: Transform + pos: 29.5,-50.5 + parent: 2 + - uid: 4027 + components: + - type: Transform + pos: 29.5,-49.5 + parent: 2 + - uid: 4028 + components: + - type: Transform + pos: 29.5,-48.5 + parent: 2 + - uid: 4029 + components: + - type: Transform + pos: 29.5,-47.5 + parent: 2 + - uid: 4030 + components: + - type: Transform + pos: 29.5,-46.5 + parent: 2 + - uid: 4031 + components: + - type: Transform + pos: 28.5,-49.5 + parent: 2 + - uid: 4032 + components: + - type: Transform + pos: 27.5,-49.5 + parent: 2 + - uid: 4033 + components: + - type: Transform + pos: 26.5,-49.5 + parent: 2 + - uid: 4034 + components: + - type: Transform + pos: 28.5,-53.5 + parent: 2 + - uid: 4035 + components: + - type: Transform + pos: 27.5,-53.5 + parent: 2 + - uid: 4036 + components: + - type: Transform + pos: 26.5,-53.5 + parent: 2 + - uid: 4037 + components: + - type: Transform + pos: 23.5,-44.5 + parent: 2 + - uid: 4038 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 2 + - uid: 4039 + components: + - type: Transform + pos: 23.5,-42.5 + parent: 2 + - uid: 4040 + components: + - type: Transform + pos: 23.5,-41.5 + parent: 2 + - uid: 4041 + components: + - type: Transform + pos: 23.5,-40.5 + parent: 2 + - uid: 4042 + components: + - type: Transform + pos: 23.5,-46.5 + parent: 2 + - uid: 4043 + components: + - type: Transform + pos: 23.5,-47.5 + parent: 2 + - uid: 4044 + components: + - type: Transform + pos: 23.5,-48.5 + parent: 2 + - uid: 4045 + components: + - type: Transform + pos: 23.5,-49.5 + parent: 2 + - uid: 4046 + components: + - type: Transform + pos: 23.5,-50.5 + parent: 2 + - uid: 4047 + components: + - type: Transform + pos: 23.5,-51.5 + parent: 2 + - uid: 4048 + components: + - type: Transform + pos: 23.5,-52.5 + parent: 2 + - uid: 4049 + components: + - type: Transform + pos: 23.5,-53.5 + parent: 2 + - uid: 4050 + components: + - type: Transform + pos: 23.5,-54.5 + parent: 2 + - uid: 4051 + components: + - type: Transform + pos: 23.5,-55.5 + parent: 2 + - uid: 4052 + components: + - type: Transform + pos: 23.5,-56.5 + parent: 2 + - uid: 4053 + components: + - type: Transform + pos: 23.5,-57.5 + parent: 2 + - uid: 4054 + components: + - type: Transform + pos: 15.5,-44.5 + parent: 2 + - uid: 4055 + components: + - type: Transform + pos: 17.5,-44.5 + parent: 2 + - uid: 4056 + components: + - type: Transform + pos: 17.5,-43.5 + parent: 2 + - uid: 4057 + components: + - type: Transform + pos: 18.5,-43.5 + parent: 2 + - uid: 4058 + components: + - type: Transform + pos: 18.5,-42.5 + parent: 2 + - uid: 4059 + components: + - type: Transform + pos: 19.5,-42.5 + parent: 2 + - uid: 4060 + components: + - type: Transform + pos: 20.5,-42.5 + parent: 2 + - uid: 4061 + components: + - type: Transform + pos: 12.5,-48.5 + parent: 2 + - uid: 4062 + components: + - type: Transform + pos: 12.5,-49.5 + parent: 2 + - uid: 4063 + components: + - type: Transform + pos: 12.5,-50.5 + parent: 2 + - uid: 4064 + components: + - type: Transform + pos: 12.5,-51.5 + parent: 2 + - uid: 4065 + components: + - type: Transform + pos: 12.5,-52.5 + parent: 2 + - uid: 4066 + components: + - type: Transform + pos: 12.5,-53.5 + parent: 2 + - uid: 4067 + components: + - type: Transform + pos: 12.5,-54.5 + parent: 2 + - uid: 4068 + components: + - type: Transform + pos: 12.5,-55.5 + parent: 2 + - uid: 4069 + components: + - type: Transform + pos: 12.5,-56.5 + parent: 2 + - uid: 4070 + components: + - type: Transform + pos: 12.5,-57.5 + parent: 2 + - uid: 4071 + components: + - type: Transform + pos: 12.5,-58.5 + parent: 2 + - uid: 4072 + components: + - type: Transform + pos: 12.5,-59.5 + parent: 2 + - uid: 4073 + components: + - type: Transform + pos: 13.5,-59.5 + parent: 2 + - uid: 4074 + components: + - type: Transform + pos: 14.5,-59.5 + parent: 2 + - uid: 4075 + components: + - type: Transform + pos: 15.5,-59.5 + parent: 2 + - uid: 4076 + components: + - type: Transform + pos: 16.5,-59.5 + parent: 2 + - uid: 4077 + components: + - type: Transform + pos: 17.5,-59.5 + parent: 2 + - uid: 4078 + components: + - type: Transform + pos: 18.5,-59.5 + parent: 2 + - uid: 4079 + components: + - type: Transform + pos: 19.5,-59.5 + parent: 2 + - uid: 4080 + components: + - type: Transform + pos: 20.5,-59.5 + parent: 2 + - uid: 4081 + components: + - type: Transform + pos: 21.5,-59.5 + parent: 2 + - uid: 4082 + components: + - type: Transform + pos: 21.5,-58.5 + parent: 2 + - uid: 4083 + components: + - type: Transform + pos: 21.5,-57.5 + parent: 2 + - uid: 4084 + components: + - type: Transform + pos: 21.5,-56.5 + parent: 2 + - uid: 4085 + components: + - type: Transform + pos: 21.5,-55.5 + parent: 2 + - uid: 4086 + components: + - type: Transform + pos: 21.5,-54.5 + parent: 2 + - uid: 4087 + components: + - type: Transform + pos: 21.5,-53.5 + parent: 2 + - uid: 4088 + components: + - type: Transform + pos: 21.5,-52.5 + parent: 2 + - uid: 4089 + components: + - type: Transform + pos: 21.5,-51.5 + parent: 2 + - uid: 4090 + components: + - type: Transform + pos: 21.5,-50.5 + parent: 2 + - uid: 4091 + components: + - type: Transform + pos: 21.5,-49.5 + parent: 2 + - uid: 4092 + components: + - type: Transform + pos: 21.5,-48.5 + parent: 2 + - uid: 4093 + components: + - type: Transform + pos: 21.5,-47.5 + parent: 2 + - uid: 4094 + components: + - type: Transform + pos: 16.5,-51.5 + parent: 2 + - uid: 4095 + components: + - type: Transform + pos: 17.5,-51.5 + parent: 2 + - uid: 4096 + components: + - type: Transform + pos: 18.5,-51.5 + parent: 2 + - uid: 4097 + components: + - type: Transform + pos: 19.5,-51.5 + parent: 2 + - uid: 4098 + components: + - type: Transform + pos: 20.5,-51.5 + parent: 2 + - uid: 4099 + components: + - type: Transform + pos: 13.5,-60.5 + parent: 2 + - uid: 4100 + components: + - type: Transform + pos: 13.5,-61.5 + parent: 2 + - uid: 4101 + components: + - type: Transform + pos: 14.5,-61.5 + parent: 2 + - uid: 4102 + components: + - type: Transform + pos: 15.5,-61.5 + parent: 2 + - uid: 4103 + components: + - type: Transform + pos: 16.5,-61.5 + parent: 2 + - uid: 4104 + components: + - type: Transform + pos: 17.5,-61.5 + parent: 2 + - uid: 4105 + components: + - type: Transform + pos: 18.5,-61.5 + parent: 2 + - uid: 4106 + components: + - type: Transform + pos: 19.5,-61.5 + parent: 2 + - uid: 4107 + components: + - type: Transform + pos: 20.5,-61.5 + parent: 2 + - uid: 4108 + components: + - type: Transform + pos: 21.5,-61.5 + parent: 2 + - uid: 4109 + components: + - type: Transform + pos: 6.5,-47.5 + parent: 2 + - uid: 4110 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 2 + - uid: 4111 + components: + - type: Transform + pos: 13.5,-62.5 + parent: 2 + - uid: 4112 + components: + - type: Transform + pos: 13.5,-63.5 + parent: 2 + - uid: 4113 + components: + - type: Transform + pos: 14.5,-63.5 + parent: 2 + - uid: 4114 + components: + - type: Transform + pos: 15.5,-63.5 + parent: 2 + - uid: 4115 + components: + - type: Transform + pos: 16.5,-63.5 + parent: 2 + - uid: 4116 + components: + - type: Transform + pos: 17.5,-63.5 + parent: 2 + - uid: 4117 + components: + - type: Transform + pos: 18.5,-63.5 + parent: 2 + - uid: 4118 + components: + - type: Transform + pos: 19.5,-63.5 + parent: 2 + - uid: 4119 + components: + - type: Transform + pos: 20.5,-63.5 + parent: 2 + - uid: 4120 + components: + - type: Transform + pos: 21.5,-63.5 + parent: 2 + - uid: 4121 + components: + - type: Transform + pos: 22.5,-63.5 + parent: 2 + - uid: 4122 + components: + - type: Transform + pos: 23.5,-63.5 + parent: 2 + - uid: 4123 + components: + - type: Transform + pos: 23.5,-64.5 + parent: 2 + - uid: 4124 + components: + - type: Transform + pos: 23.5,-65.5 + parent: 2 + - uid: 4125 + components: + - type: Transform + pos: 23.5,-66.5 + parent: 2 + - uid: 4126 + components: + - type: Transform + pos: 23.5,-67.5 + parent: 2 + - uid: 4127 + components: + - type: Transform + pos: 21.5,-67.5 + parent: 2 + - uid: 4128 + components: + - type: Transform + pos: 20.5,-67.5 + parent: 2 + - uid: 4129 + components: + - type: Transform + pos: 19.5,-67.5 + parent: 2 + - uid: 4130 + components: + - type: Transform + pos: 18.5,-67.5 + parent: 2 + - uid: 4131 + components: + - type: Transform + pos: 17.5,-67.5 + parent: 2 + - uid: 4132 + components: + - type: Transform + pos: 16.5,-67.5 + parent: 2 + - uid: 4133 + components: + - type: Transform + pos: 15.5,-67.5 + parent: 2 + - uid: 4134 + components: + - type: Transform + pos: 14.5,-67.5 + parent: 2 + - uid: 4135 + components: + - type: Transform + pos: 13.5,-67.5 + parent: 2 + - uid: 4136 + components: + - type: Transform + pos: 12.5,-67.5 + parent: 2 + - uid: 4137 + components: + - type: Transform + pos: 11.5,-67.5 + parent: 2 + - uid: 4138 + components: + - type: Transform + pos: 11.5,-66.5 + parent: 2 + - uid: 4139 + components: + - type: Transform + pos: 11.5,-65.5 + parent: 2 + - uid: 4140 + components: + - type: Transform + pos: 11.5,-64.5 + parent: 2 + - uid: 4141 + components: + - type: Transform + pos: 11.5,-63.5 + parent: 2 + - uid: 4142 + components: + - type: Transform + pos: 12.5,-63.5 + parent: 2 + - uid: 4143 + components: + - type: Transform + pos: 15.5,-64.5 + parent: 2 + - uid: 4144 + components: + - type: Transform + pos: 15.5,-65.5 + parent: 2 + - uid: 4145 + components: + - type: Transform + pos: 15.5,-66.5 + parent: 2 + - uid: 4146 + components: + - type: Transform + pos: 19.5,-64.5 + parent: 2 + - uid: 4147 + components: + - type: Transform + pos: 19.5,-65.5 + parent: 2 + - uid: 4148 + components: + - type: Transform + pos: 19.5,-66.5 + parent: 2 + - uid: 4149 + components: + - type: Transform + pos: 8.5,-49.5 + parent: 2 + - uid: 4150 + components: + - type: Transform + pos: -4.5,-43.5 + parent: 2 + - uid: 4151 + components: + - type: Transform + pos: 8.5,-50.5 + parent: 2 + - uid: 4152 + components: + - type: Transform + pos: 8.5,-51.5 + parent: 2 + - uid: 4153 + components: + - type: Transform + pos: 8.5,-52.5 + parent: 2 + - uid: 4154 + components: + - type: Transform + pos: 8.5,-53.5 + parent: 2 + - uid: 4155 + components: + - type: Transform + pos: 9.5,-51.5 + parent: 2 + - uid: 4156 + components: + - type: Transform + pos: 7.5,-52.5 + parent: 2 + - uid: 4157 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 2 + - uid: 4158 + components: + - type: Transform + pos: 5.5,-73.5 + parent: 2 + - uid: 4159 + components: + - type: Transform + pos: 4.5,-73.5 + parent: 2 + - uid: 4160 + components: + - type: Transform + pos: 3.5,-73.5 + parent: 2 + - uid: 4161 + components: + - type: Transform + pos: 2.5,-73.5 + parent: 2 + - uid: 4162 + components: + - type: Transform + pos: -0.5,-69.5 + parent: 2 + - uid: 4163 + components: + - type: Transform + pos: -2.5,-69.5 + parent: 2 + - uid: 4164 + components: + - type: Transform + pos: -2.5,-71.5 + parent: 2 + - uid: 4165 + components: + - type: Transform + pos: -2.5,-73.5 + parent: 2 + - uid: 4166 + components: + - type: Transform + pos: -1.5,-74.5 + parent: 2 + - uid: 4167 + components: + - type: Transform + pos: 0.5,-74.5 + parent: 2 + - uid: 4168 + components: + - type: Transform + pos: 1.5,-73.5 + parent: 2 + - uid: 4169 + components: + - type: Transform + pos: 1.5,-71.5 + parent: 2 + - uid: 4170 + components: + - type: Transform + pos: 1.5,-69.5 + parent: 2 + - uid: 4171 + components: + - type: Transform + pos: 1.5,-68.5 + parent: 2 + - uid: 4172 + components: + - type: Transform + pos: -1.5,-69.5 + parent: 2 + - uid: 4173 + components: + - type: Transform + pos: -2.5,-70.5 + parent: 2 + - uid: 4174 + components: + - type: Transform + pos: -2.5,-72.5 + parent: 2 + - uid: 4175 + components: + - type: Transform + pos: -0.5,-74.5 + parent: 2 + - uid: 4176 + components: + - type: Transform + pos: 1.5,-74.5 + parent: 2 + - uid: 4177 + components: + - type: Transform + pos: 1.5,-72.5 + parent: 2 + - uid: 4178 + components: + - type: Transform + pos: -2.5,-74.5 + parent: 2 + - uid: 4179 + components: + - type: Transform + pos: 0.5,-69.5 + parent: 2 + - uid: 4180 + components: + - type: Transform + pos: 1.5,-70.5 + parent: 2 + - uid: 4181 + components: + - type: Transform + pos: -4.5,-75.5 + parent: 2 + - uid: 4182 + components: + - type: Transform + pos: -6.5,-75.5 + parent: 2 + - uid: 4183 + components: + - type: Transform + pos: 5.5,-72.5 + parent: 2 + - uid: 4184 + components: + - type: Transform + pos: -5.5,-75.5 + parent: 2 + - uid: 4185 + components: + - type: Transform + pos: -7.5,-75.5 + parent: 2 + - uid: 4186 + components: + - type: Transform + pos: -3.5,-75.5 + parent: 2 + - uid: 4187 + components: + - type: Transform + pos: -2.5,-75.5 + parent: 2 + - uid: 4188 + components: + - type: Transform + pos: -1.5,-75.5 + parent: 2 + - uid: 4189 + components: + - type: Transform + pos: -0.5,-75.5 + parent: 2 + - uid: 4190 + components: + - type: Transform + pos: 0.5,-75.5 + parent: 2 + - uid: 4191 + components: + - type: Transform + pos: 1.5,-75.5 + parent: 2 + - uid: 4192 + components: + - type: Transform + pos: 2.5,-75.5 + parent: 2 + - uid: 4193 + components: + - type: Transform + pos: 3.5,-75.5 + parent: 2 + - uid: 4194 + components: + - type: Transform + pos: 4.5,-75.5 + parent: 2 + - uid: 4195 + components: + - type: Transform + pos: 5.5,-75.5 + parent: 2 + - uid: 4196 + components: + - type: Transform + pos: 6.5,-75.5 + parent: 2 + - uid: 4197 + components: + - type: Transform + pos: 7.5,-72.5 + parent: 2 + - uid: 4198 + components: + - type: Transform + pos: 7.5,-71.5 + parent: 2 + - uid: 4199 + components: + - type: Transform + pos: 7.5,-70.5 + parent: 2 + - uid: 4200 + components: + - type: Transform + pos: 6.5,-70.5 + parent: 2 + - uid: 4201 + components: + - type: Transform + pos: 8.5,-70.5 + parent: 2 + - uid: 4202 + components: + - type: Transform + pos: 9.5,-70.5 + parent: 2 + - uid: 4203 + components: + - type: Transform + pos: 10.5,-70.5 + parent: 2 + - uid: 4204 + components: + - type: Transform + pos: 10.5,-71.5 + parent: 2 + - uid: 4205 + components: + - type: Transform + pos: 9.5,-73.5 + parent: 2 + - uid: 4206 + components: + - type: Transform + pos: -0.5,-76.5 + parent: 2 + - uid: 4207 + components: + - type: Transform + pos: -0.5,-77.5 + parent: 2 + - uid: 4208 + components: + - type: Transform + pos: -0.5,-78.5 + parent: 2 + - uid: 4209 + components: + - type: Transform + pos: -1.5,-78.5 + parent: 2 + - uid: 4210 + components: + - type: Transform + pos: -2.5,-78.5 + parent: 2 + - uid: 4211 + components: + - type: Transform + pos: -3.5,-78.5 + parent: 2 + - uid: 4212 + components: + - type: Transform + pos: -4.5,-78.5 + parent: 2 + - uid: 4213 + components: + - type: Transform + pos: -5.5,-78.5 + parent: 2 + - uid: 4214 + components: + - type: Transform + pos: -6.5,-78.5 + parent: 2 + - uid: 4215 + components: + - type: Transform + pos: -7.5,-78.5 + parent: 2 + - uid: 4216 + components: + - type: Transform + pos: -8.5,-78.5 + parent: 2 + - uid: 4217 + components: + - type: Transform + pos: 0.5,-78.5 + parent: 2 + - uid: 4218 + components: + - type: Transform + pos: 1.5,-78.5 + parent: 2 + - uid: 4219 + components: + - type: Transform + pos: 2.5,-78.5 + parent: 2 + - uid: 4220 + components: + - type: Transform + pos: 3.5,-78.5 + parent: 2 + - uid: 4221 + components: + - type: Transform + pos: 4.5,-78.5 + parent: 2 + - uid: 4222 + components: + - type: Transform + pos: 5.5,-78.5 + parent: 2 + - uid: 4223 + components: + - type: Transform + pos: 6.5,-78.5 + parent: 2 + - uid: 4224 + components: + - type: Transform + pos: 7.5,-78.5 + parent: 2 + - uid: 4225 + components: + - type: Transform + pos: -9.5,-70.5 + parent: 2 + - uid: 4226 + components: + - type: Transform + pos: -10.5,-70.5 + parent: 2 + - uid: 4227 + components: + - type: Transform + pos: -11.5,-70.5 + parent: 2 + - uid: 4228 + components: + - type: Transform + pos: 11.5,-72.5 + parent: 2 + - uid: 4229 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 2 + - uid: 4230 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 + - uid: 4231 + components: + - type: Transform + pos: 1.5,-67.5 + parent: 2 + - uid: 4232 + components: + - type: Transform + pos: 0.5,-67.5 + parent: 2 + - uid: 4233 + components: + - type: Transform + pos: -0.5,-67.5 + parent: 2 + - uid: 4234 + components: + - type: Transform + pos: -1.5,-67.5 + parent: 2 + - uid: 4235 + components: + - type: Transform + pos: -2.5,-67.5 + parent: 2 + - uid: 4236 + components: + - type: Transform + pos: -3.5,-67.5 + parent: 2 + - uid: 4237 + components: + - type: Transform + pos: -4.5,-67.5 + parent: 2 + - uid: 4238 + components: + - type: Transform + pos: -5.5,-67.5 + parent: 2 + - uid: 4239 + components: + - type: Transform + pos: -6.5,-67.5 + parent: 2 + - uid: 4240 + components: + - type: Transform + pos: -7.5,-67.5 + parent: 2 + - uid: 4241 + components: + - type: Transform + pos: -8.5,-67.5 + parent: 2 + - uid: 4242 + components: + - type: Transform + pos: -8.5,-68.5 + parent: 2 + - uid: 4243 + components: + - type: Transform + pos: -9.5,-68.5 + parent: 2 + - uid: 4244 + components: + - type: Transform + pos: -9.5,-69.5 + parent: 2 + - uid: 4245 + components: + - type: Transform + pos: 2.5,-67.5 + parent: 2 + - uid: 4246 + components: + - type: Transform + pos: 3.5,-67.5 + parent: 2 + - uid: 4247 + components: + - type: Transform + pos: 4.5,-67.5 + parent: 2 + - uid: 4248 + components: + - type: Transform + pos: 5.5,-67.5 + parent: 2 + - uid: 4249 + components: + - type: Transform + pos: 6.5,-67.5 + parent: 2 + - uid: 4250 + components: + - type: Transform + pos: 7.5,-67.5 + parent: 2 + - uid: 4251 + components: + - type: Transform + pos: 8.5,-67.5 + parent: 2 + - uid: 4252 + components: + - type: Transform + pos: 8.5,-68.5 + parent: 2 + - uid: 4253 + components: + - type: Transform + pos: 8.5,-69.5 + parent: 2 + - uid: 4254 + components: + - type: Transform + pos: -9.5,-71.5 + parent: 2 + - uid: 4255 + components: + - type: Transform + pos: -9.5,-72.5 + parent: 2 + - uid: 4256 + components: + - type: Transform + pos: -9.5,-73.5 + parent: 2 + - uid: 4257 + components: + - type: Transform + pos: -9.5,-74.5 + parent: 2 + - uid: 4258 + components: + - type: Transform + pos: -9.5,-75.5 + parent: 2 + - uid: 4259 + components: + - type: Transform + pos: -9.5,-76.5 + parent: 2 + - uid: 4260 + components: + - type: Transform + pos: -10.5,-76.5 + parent: 2 + - uid: 4261 + components: + - type: Transform + pos: -11.5,-76.5 + parent: 2 + - uid: 4262 + components: + - type: Transform + pos: 14.5,-72.5 + parent: 2 + - uid: 4263 + components: + - type: Transform + pos: -8.5,-74.5 + parent: 2 + - uid: 4264 + components: + - type: Transform + pos: -7.5,-74.5 + parent: 2 + - uid: 4265 + components: + - type: Transform + pos: -6.5,-74.5 + parent: 2 + - uid: 4266 + components: + - type: Transform + pos: 8.5,-71.5 + parent: 2 + - uid: 4267 + components: + - type: Transform + pos: 8.5,-72.5 + parent: 2 + - uid: 4268 + components: + - type: Transform + pos: 8.5,-73.5 + parent: 2 + - uid: 4269 + components: + - type: Transform + pos: 8.5,-74.5 + parent: 2 + - uid: 4270 + components: + - type: Transform + pos: 8.5,-75.5 + parent: 2 + - uid: 4271 + components: + - type: Transform + pos: 8.5,-76.5 + parent: 2 + - uid: 4272 + components: + - type: Transform + pos: 9.5,-76.5 + parent: 2 + - uid: 4273 + components: + - type: Transform + pos: 10.5,-76.5 + parent: 2 + - uid: 4274 + components: + - type: Transform + pos: 15.5,-72.5 + parent: 2 + - uid: 4275 + components: + - type: Transform + pos: 7.5,-74.5 + parent: 2 + - uid: 4276 + components: + - type: Transform + pos: 6.5,-74.5 + parent: 2 + - uid: 4277 + components: + - type: Transform + pos: 5.5,-74.5 + parent: 2 + - uid: 4278 + components: + - type: Transform + pos: -10.5,-69.5 + parent: 2 + - uid: 4279 + components: + - type: Transform + pos: -11.5,-69.5 + parent: 2 + - uid: 4280 + components: + - type: Transform + pos: -12.5,-69.5 + parent: 2 + - uid: 4281 + components: + - type: Transform + pos: -13.5,-69.5 + parent: 2 + - uid: 4282 + components: + - type: Transform + pos: -14.5,-69.5 + parent: 2 + - uid: 4283 + components: + - type: Transform + pos: -15.5,-69.5 + parent: 2 + - uid: 4284 + components: + - type: Transform + pos: -16.5,-69.5 + parent: 2 + - uid: 4285 + components: + - type: Transform + pos: -16.5,-70.5 + parent: 2 + - uid: 4286 + components: + - type: Transform + pos: -16.5,-71.5 + parent: 2 + - uid: 4287 + components: + - type: Transform + pos: -16.5,-72.5 + parent: 2 + - uid: 4288 + components: + - type: Transform + pos: -15.5,-72.5 + parent: 2 + - uid: 4289 + components: + - type: Transform + pos: -14.5,-72.5 + parent: 2 + - uid: 4290 + components: + - type: Transform + pos: -13.5,-73.5 + parent: 2 + - uid: 4291 + components: + - type: Transform + pos: -16.5,-73.5 + parent: 2 + - uid: 4292 + components: + - type: Transform + pos: -16.5,-74.5 + parent: 2 + - uid: 4293 + components: + - type: Transform + pos: -15.5,-74.5 + parent: 2 + - uid: 4294 + components: + - type: Transform + pos: 13.5,-72.5 + parent: 2 + - uid: 4295 + components: + - type: Transform + pos: 12.5,-72.5 + parent: 2 + - uid: 4296 + components: + - type: Transform + pos: -13.5,-72.5 + parent: 2 + - uid: 4297 + components: + - type: Transform + pos: 2.5,-54.5 + parent: 2 + - uid: 4298 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 2 + - uid: 4299 + components: + - type: Transform + pos: 8.5,-61.5 + parent: 2 + - uid: 4300 + components: + - type: Transform + pos: 8.5,-60.5 + parent: 2 + - uid: 4301 + components: + - type: Transform + pos: 8.5,-59.5 + parent: 2 + - uid: 4302 + components: + - type: Transform + pos: 8.5,-58.5 + parent: 2 + - uid: 4303 + components: + - type: Transform + pos: 8.5,-57.5 + parent: 2 + - uid: 4304 + components: + - type: Transform + pos: 8.5,-56.5 + parent: 2 + - uid: 4305 + components: + - type: Transform + pos: 7.5,-56.5 + parent: 2 + - uid: 4306 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 2 + - uid: 4307 + components: + - type: Transform + pos: 5.5,-56.5 + parent: 2 + - uid: 4308 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 2 + - uid: 4309 + components: + - type: Transform + pos: 4.5,-55.5 + parent: 2 + - uid: 4310 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 2 + - uid: 4311 + components: + - type: Transform + pos: 4.5,-53.5 + parent: 2 + - uid: 4312 + components: + - type: Transform + pos: 4.5,-52.5 + parent: 2 + - uid: 4313 + components: + - type: Transform + pos: -24.5,-63.5 + parent: 2 + - uid: 4314 + components: + - type: Transform + pos: -24.5,-64.5 + parent: 2 + - uid: 4315 + components: + - type: Transform + pos: -24.5,-65.5 + parent: 2 + - uid: 4316 + components: + - type: Transform + pos: -25.5,-65.5 + parent: 2 + - uid: 4317 + components: + - type: Transform + pos: -25.5,-66.5 + parent: 2 + - uid: 4318 + components: + - type: Transform + pos: -25.5,-67.5 + parent: 2 + - uid: 4319 + components: + - type: Transform + pos: -25.5,-68.5 + parent: 2 + - uid: 4320 + components: + - type: Transform + pos: -25.5,-69.5 + parent: 2 + - uid: 4321 + components: + - type: Transform + pos: -24.5,-69.5 + parent: 2 + - uid: 4322 + components: + - type: Transform + pos: -23.5,-69.5 + parent: 2 + - uid: 4323 + components: + - type: Transform + pos: -22.5,-69.5 + parent: 2 + - uid: 4324 + components: + - type: Transform + pos: -21.5,-69.5 + parent: 2 + - uid: 4325 + components: + - type: Transform + pos: -20.5,-69.5 + parent: 2 + - uid: 4326 + components: + - type: Transform + pos: -19.5,-69.5 + parent: 2 + - uid: 4327 + components: + - type: Transform + pos: -19.5,-70.5 + parent: 2 + - uid: 4328 + components: + - type: Transform + pos: -19.5,-71.5 + parent: 2 + - uid: 4329 + components: + - type: Transform + pos: -23.5,-65.5 + parent: 2 + - uid: 4330 + components: + - type: Transform + pos: -23.5,-66.5 + parent: 2 + - uid: 4331 + components: + - type: Transform + pos: -23.5,-67.5 + parent: 2 + - uid: 4332 + components: + - type: Transform + pos: -23.5,-68.5 + parent: 2 + - uid: 4333 + components: + - type: Transform + pos: -3.5,-61.5 + parent: 2 + - uid: 4334 + components: + - type: Transform + pos: -3.5,-62.5 + parent: 2 + - uid: 4335 + components: + - type: Transform + pos: -2.5,-62.5 + parent: 2 + - uid: 4336 + components: + - type: Transform + pos: -1.5,-62.5 + parent: 2 + - uid: 4337 + components: + - type: Transform + pos: -1.5,-63.5 + parent: 2 + - uid: 4338 + components: + - type: Transform + pos: -1.5,-64.5 + parent: 2 + - uid: 4339 + components: + - type: Transform + pos: -1.5,-65.5 + parent: 2 + - uid: 4340 + components: + - type: Transform + pos: -2.5,-65.5 + parent: 2 + - uid: 4341 + components: + - type: Transform + pos: -0.5,-65.5 + parent: 2 + - uid: 4342 + components: + - type: Transform + pos: -4.5,-62.5 + parent: 2 + - uid: 4343 + components: + - type: Transform + pos: -5.5,-62.5 + parent: 2 + - uid: 4344 + components: + - type: Transform + pos: -6.5,-62.5 + parent: 2 + - uid: 4345 + components: + - type: Transform + pos: -7.5,-62.5 + parent: 2 + - uid: 4346 + components: + - type: Transform + pos: -8.5,-62.5 + parent: 2 + - uid: 4347 + components: + - type: Transform + pos: -9.5,-62.5 + parent: 2 + - uid: 4348 + components: + - type: Transform + pos: -10.5,-62.5 + parent: 2 + - uid: 4349 + components: + - type: Transform + pos: -11.5,-62.5 + parent: 2 + - uid: 4350 + components: + - type: Transform + pos: -12.5,-62.5 + parent: 2 + - uid: 4351 + components: + - type: Transform + pos: -12.5,-63.5 + parent: 2 + - uid: 4352 + components: + - type: Transform + pos: -12.5,-64.5 + parent: 2 + - uid: 4353 + components: + - type: Transform + pos: -12.5,-65.5 + parent: 2 + - uid: 4354 + components: + - type: Transform + pos: -8.5,-63.5 + parent: 2 + - uid: 4355 + components: + - type: Transform + pos: -8.5,-64.5 + parent: 2 + - uid: 4356 + components: + - type: Transform + pos: -8.5,-65.5 + parent: 2 + - uid: 4357 + components: + - type: Transform + pos: -7.5,-65.5 + parent: 2 + - uid: 4358 + components: + - type: Transform + pos: -4.5,-63.5 + parent: 2 + - uid: 4359 + components: + - type: Transform + pos: -4.5,-64.5 + parent: 2 + - uid: 4360 + components: + - type: Transform + pos: -4.5,-65.5 + parent: 2 + - uid: 4361 + components: + - type: Transform + pos: -5.5,-65.5 + parent: 2 + - uid: 4362 + components: + - type: Transform + pos: 1.5,-60.5 + parent: 2 + - uid: 4363 + components: + - type: Transform + pos: 2.5,-60.5 + parent: 2 + - uid: 4364 + components: + - type: Transform + pos: 3.5,-60.5 + parent: 2 + - uid: 4365 + components: + - type: Transform + pos: 4.5,-60.5 + parent: 2 + - uid: 4366 + components: + - type: Transform + pos: 5.5,-60.5 + parent: 2 + - uid: 4367 + components: + - type: Transform + pos: 4.5,-61.5 + parent: 2 + - uid: 4368 + components: + - type: Transform + pos: 4.5,-62.5 + parent: 2 + - uid: 4369 + components: + - type: Transform + pos: 4.5,-63.5 + parent: 2 + - uid: 4370 + components: + - type: Transform + pos: 4.5,-64.5 + parent: 2 + - uid: 4371 + components: + - type: Transform + pos: 3.5,-64.5 + parent: 2 + - uid: 4372 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 2 + - uid: 4373 + components: + - type: Transform + pos: 5.5,-47.5 + parent: 2 + - uid: 4374 + components: + - type: Transform + pos: 7.5,-47.5 + parent: 2 + - uid: 4375 + components: + - type: Transform + pos: 8.5,-47.5 + parent: 2 + - uid: 4376 + components: + - type: Transform + pos: 9.5,-47.5 + parent: 2 + - uid: 4377 + components: + - type: Transform + pos: 16.5,-72.5 + parent: 2 + - uid: 4378 + components: + - type: Transform + pos: 17.5,-72.5 + parent: 2 + - uid: 4379 + components: + - type: Transform + pos: 18.5,-72.5 + parent: 2 + - uid: 4380 + components: + - type: Transform + pos: 19.5,-72.5 + parent: 2 + - uid: 4381 + components: + - type: Transform + pos: 19.5,-71.5 + parent: 2 + - uid: 4382 + components: + - type: Transform + pos: 19.5,-70.5 + parent: 2 + - uid: 4383 + components: + - type: Transform + pos: 19.5,-73.5 + parent: 2 + - uid: 4384 + components: + - type: Transform + pos: 8.5,-66.5 + parent: 2 + - uid: 4385 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 2 + - uid: 4386 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 2 + - uid: 4387 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 2 + - uid: 4388 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 2 + - uid: 4389 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 4390 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 2 + - uid: 4391 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 2 + - uid: 4392 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 2 + - uid: 4393 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 2 + - uid: 4394 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 2 + - uid: 4395 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 2 + - uid: 4396 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 2 + - uid: 4397 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 2 + - uid: 4398 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 2 + - uid: 4399 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 + - uid: 4400 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - uid: 4401 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 2 + - uid: 4402 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 2 + - uid: 4403 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 2 + - uid: 4404 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 2 + - uid: 4405 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 2 + - uid: 4406 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 2 + - uid: 4407 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 2 + - uid: 4408 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 2 + - uid: 4409 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 2 + - uid: 4410 + components: + - type: Transform + pos: 24.5,-25.5 + parent: 2 + - uid: 4411 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 2 + - uid: 4412 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 2 + - uid: 4413 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 2 + - uid: 4414 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 2 + - uid: 4415 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 2 + - uid: 4416 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 2 + - uid: 4417 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - uid: 4418 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 + - uid: 4419 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 2 + - uid: 4420 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 2 + - uid: 4421 + components: + - type: Transform + pos: 35.5,-23.5 + parent: 2 + - uid: 4422 + components: + - type: Transform + pos: 36.5,-23.5 + parent: 2 + - uid: 4423 + components: + - type: Transform + pos: 37.5,-23.5 + parent: 2 + - uid: 4424 + components: + - type: Transform + pos: 38.5,-23.5 + parent: 2 + - uid: 4425 + components: + - type: Transform + pos: 39.5,-23.5 + parent: 2 + - uid: 4426 + components: + - type: Transform + pos: 39.5,-22.5 + parent: 2 + - uid: 4427 + components: + - type: Transform + pos: 44.5,-22.5 + parent: 2 + - uid: 4428 + components: + - type: Transform + pos: 44.5,-25.5 + parent: 2 + - uid: 4429 + components: + - type: Transform + pos: 39.5,-17.5 + parent: 2 + - uid: 4430 + components: + - type: Transform + pos: 38.5,-17.5 + parent: 2 + - uid: 4431 + components: + - type: Transform + pos: 38.5,-18.5 + parent: 2 + - uid: 4432 + components: + - type: Transform + pos: 38.5,-19.5 + parent: 2 + - uid: 4433 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 2 + - uid: 4434 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 2 + - uid: 4435 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 2 + - uid: 4436 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 2 + - uid: 4437 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 2 + - uid: 4438 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 2 + - uid: 4439 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 2 + - uid: 4440 + components: + - type: Transform + pos: 36.5,-31.5 + parent: 2 + - uid: 4441 + components: + - type: Transform + pos: 36.5,-32.5 + parent: 2 + - uid: 4442 + components: + - type: Transform + pos: 37.5,-32.5 + parent: 2 + - uid: 4443 + components: + - type: Transform + pos: 38.5,-32.5 + parent: 2 + - uid: 4444 + components: + - type: Transform + pos: 39.5,-32.5 + parent: 2 + - uid: 4445 + components: + - type: Transform + pos: 40.5,-32.5 + parent: 2 + - uid: 4446 + components: + - type: Transform + pos: 41.5,-32.5 + parent: 2 + - uid: 4447 + components: + - type: Transform + pos: 41.5,-33.5 + parent: 2 + - uid: 4448 + components: + - type: Transform + pos: 41.5,-34.5 + parent: 2 + - uid: 4449 + components: + - type: Transform + pos: 41.5,-35.5 + parent: 2 + - uid: 4450 + components: + - type: Transform + pos: 40.5,-36.5 + parent: 2 + - uid: 4451 + components: + - type: Transform + pos: 40.5,-37.5 + parent: 2 + - uid: 4452 + components: + - type: Transform + pos: 40.5,-38.5 + parent: 2 + - uid: 4453 + components: + - type: Transform + pos: 40.5,-39.5 + parent: 2 + - uid: 4454 + components: + - type: Transform + pos: 37.5,-54.5 + parent: 2 + - uid: 4455 + components: + - type: Transform + pos: 37.5,-53.5 + parent: 2 + - uid: 4456 + components: + - type: Transform + pos: 39.5,-39.5 + parent: 2 + - uid: 4457 + components: + - type: Transform + pos: 38.5,-39.5 + parent: 2 + - uid: 4458 + components: + - type: Transform + pos: 37.5,-39.5 + parent: 2 + - uid: 4459 + components: + - type: Transform + pos: 36.5,-39.5 + parent: 2 + - uid: 4460 + components: + - type: Transform + pos: 35.5,-39.5 + parent: 2 + - uid: 4461 + components: + - type: Transform + pos: 35.5,-40.5 + parent: 2 + - uid: 4462 + components: + - type: Transform + pos: 35.5,-41.5 + parent: 2 + - uid: 4463 + components: + - type: Transform + pos: 35.5,-42.5 + parent: 2 + - uid: 4464 + components: + - type: Transform + pos: 38.5,-38.5 + parent: 2 + - uid: 4465 + components: + - type: Transform + pos: 38.5,-40.5 + parent: 2 + - uid: 4466 + components: + - type: Transform + pos: 43.5,-36.5 + parent: 2 + - uid: 4467 + components: + - type: Transform + pos: 43.5,-35.5 + parent: 2 + - uid: 4468 + components: + - type: Transform + pos: 44.5,-35.5 + parent: 2 + - uid: 4474 + components: + - type: Transform + pos: 46.5,-35.5 + parent: 2 + - uid: 4475 + components: + - type: Transform + pos: 42.5,-28.5 + parent: 2 + - uid: 4476 + components: + - type: Transform + pos: 43.5,-26.5 + parent: 2 + - uid: 4477 + components: + - type: Transform + pos: 44.5,-24.5 + parent: 2 + - uid: 4478 + components: + - type: Transform + pos: 44.5,-23.5 + parent: 2 + - uid: 4479 + components: + - type: Transform + pos: 43.5,-28.5 + parent: 2 + - uid: 4480 + components: + - type: Transform + pos: 44.5,-28.5 + parent: 2 + - uid: 4481 + components: + - type: Transform + pos: 45.5,-28.5 + parent: 2 + - uid: 4482 + components: + - type: Transform + pos: 46.5,-28.5 + parent: 2 + - uid: 4483 + components: + - type: Transform + pos: 46.5,-27.5 + parent: 2 + - uid: 4484 + components: + - type: Transform + pos: 46.5,-26.5 + parent: 2 + - uid: 4485 + components: + - type: Transform + pos: 45.5,-26.5 + parent: 2 + - uid: 4486 + components: + - type: Transform + pos: 44.5,-26.5 + parent: 2 + - uid: 4487 + components: + - type: Transform + pos: 41.5,-28.5 + parent: 2 + - uid: 4488 + components: + - type: Transform + pos: 40.5,-28.5 + parent: 2 + - uid: 4489 + components: + - type: Transform + pos: 39.5,-28.5 + parent: 2 + - uid: 4490 + components: + - type: Transform + pos: 39.5,-27.5 + parent: 2 + - uid: 4491 + components: + - type: Transform + pos: 42.5,-46.5 + parent: 2 + - uid: 4492 + components: + - type: Transform + pos: 42.5,-48.5 + parent: 2 + - uid: 4493 + components: + - type: Transform + pos: 44.5,-46.5 + parent: 2 + - uid: 4494 + components: + - type: Transform + pos: 40.5,-45.5 + parent: 2 + - uid: 4495 + components: + - type: Transform + pos: 39.5,-45.5 + parent: 2 + - uid: 4496 + components: + - type: Transform + pos: 38.5,-45.5 + parent: 2 + - uid: 4497 + components: + - type: Transform + pos: 37.5,-45.5 + parent: 2 + - uid: 4498 + components: + - type: Transform + pos: 36.5,-45.5 + parent: 2 + - uid: 4499 + components: + - type: Transform + pos: 35.5,-45.5 + parent: 2 + - uid: 4500 + components: + - type: Transform + pos: 40.5,-46.5 + parent: 2 + - uid: 4501 + components: + - type: Transform + pos: 40.5,-47.5 + parent: 2 + - uid: 4502 + components: + - type: Transform + pos: 40.5,-48.5 + parent: 2 + - uid: 4503 + components: + - type: Transform + pos: 36.5,-48.5 + parent: 2 + - uid: 4504 + components: + - type: Transform + pos: 38.5,-48.5 + parent: 2 + - uid: 4505 + components: + - type: Transform + pos: 37.5,-48.5 + parent: 2 + - uid: 4506 + components: + - type: Transform + pos: 35.5,-48.5 + parent: 2 + - uid: 4507 + components: + - type: Transform + pos: 40.5,-44.5 + parent: 2 + - uid: 4508 + components: + - type: Transform + pos: 40.5,-43.5 + parent: 2 + - uid: 4509 + components: + - type: Transform + pos: 37.5,-52.5 + parent: 2 + - uid: 4510 + components: + - type: Transform + pos: 36.5,-52.5 + parent: 2 + - uid: 4511 + components: + - type: Transform + pos: 35.5,-52.5 + parent: 2 + - uid: 4512 + components: + - type: Transform + pos: 35.5,-53.5 + parent: 2 + - uid: 4513 + components: + - type: Transform + pos: 35.5,-54.5 + parent: 2 + - uid: 4514 + components: + - type: Transform + pos: 37.5,-55.5 + parent: 2 + - uid: 4515 + components: + - type: Transform + pos: 38.5,-55.5 + parent: 2 + - uid: 4516 + components: + - type: Transform + pos: 39.5,-55.5 + parent: 2 + - uid: 4517 + components: + - type: Transform + pos: 40.5,-55.5 + parent: 2 + - uid: 4518 + components: + - type: Transform + pos: 40.5,-54.5 + parent: 2 + - uid: 4519 + components: + - type: Transform + pos: 40.5,-53.5 + parent: 2 + - uid: 4520 + components: + - type: Transform + pos: 40.5,-52.5 + parent: 2 + - uid: 4521 + components: + - type: Transform + pos: 40.5,-51.5 + parent: 2 + - uid: 4522 + components: + - type: Transform + pos: 39.5,-56.5 + parent: 2 + - uid: 4523 + components: + - type: Transform + pos: 39.5,-57.5 + parent: 2 + - uid: 4524 + components: + - type: Transform + pos: 39.5,-58.5 + parent: 2 + - uid: 4525 + components: + - type: Transform + pos: 39.5,-59.5 + parent: 2 + - uid: 4526 + components: + - type: Transform + pos: 40.5,-59.5 + parent: 2 + - uid: 4527 + components: + - type: Transform + pos: 41.5,-59.5 + parent: 2 + - uid: 4528 + components: + - type: Transform + pos: 42.5,-59.5 + parent: 2 + - uid: 4529 + components: + - type: Transform + pos: 42.5,-60.5 + parent: 2 + - uid: 4530 + components: + - type: Transform + pos: 42.5,-57.5 + parent: 2 + - uid: 4531 + components: + - type: Transform + pos: 45.5,-59.5 + parent: 2 + - uid: 4532 + components: + - type: Transform + pos: 42.5,-58.5 + parent: 2 + - uid: 4533 + components: + - type: Transform + pos: 45.5,-58.5 + parent: 2 + - uid: 4534 + components: + - type: Transform + pos: 45.5,-57.5 + parent: 2 + - uid: 4535 + components: + - type: Transform + pos: 44.5,-57.5 + parent: 2 + - uid: 4536 + components: + - type: Transform + pos: 46.5,-57.5 + parent: 2 + - uid: 4537 + components: + - type: Transform + pos: 45.5,-60.5 + parent: 2 + - uid: 4538 + components: + - type: Transform + pos: 44.5,-59.5 + parent: 2 + - uid: 4539 + components: + - type: Transform + pos: 43.5,-59.5 + parent: 2 + - uid: 4540 + components: + - type: Transform + pos: 45.5,-56.5 + parent: 2 + - uid: 4541 + components: + - type: Transform + pos: 45.5,-55.5 + parent: 2 + - uid: 4542 + components: + - type: Transform + pos: 45.5,-54.5 + parent: 2 + - uid: 4543 + components: + - type: Transform + pos: 44.5,-54.5 + parent: 2 + - uid: 4544 + components: + - type: Transform + pos: 43.5,-54.5 + parent: 2 + - uid: 4545 + components: + - type: Transform + pos: 46.5,-38.5 + parent: 2 + - uid: 4546 + components: + - type: Transform + pos: 45.5,-53.5 + parent: 2 + - uid: 4547 + components: + - type: Transform + pos: 25.5,-34.5 + parent: 2 + - uid: 4548 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 2 + - uid: 4549 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 2 + - uid: 4550 + components: + - type: Transform + pos: 20.5,-33.5 + parent: 2 + - uid: 4551 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 2 + - uid: 4552 + components: + - type: Transform + pos: 20.5,-31.5 + parent: 2 + - uid: 4553 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 2 + - uid: 4554 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 2 + - uid: 4555 + components: + - type: Transform + pos: 21.5,-31.5 + parent: 2 + - uid: 4556 + components: + - type: Transform + pos: 22.5,-31.5 + parent: 2 + - uid: 4557 + components: + - type: Transform + pos: 19.5,-31.5 + parent: 2 + - uid: 4558 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 2 + - uid: 4559 + components: + - type: Transform + pos: 20.5,-34.5 + parent: 2 + - uid: 4560 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 2 + - uid: 4561 + components: + - type: Transform + pos: 25.5,-32.5 + parent: 2 + - uid: 4562 + components: + - type: Transform + pos: 25.5,-31.5 + parent: 2 + - uid: 4563 + components: + - type: Transform + pos: 24.5,-31.5 + parent: 2 + - uid: 4564 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 2 + - uid: 4565 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 2 + - uid: 4566 + components: + - type: Transform + pos: 27.5,-33.5 + parent: 2 + - uid: 4567 + components: + - type: Transform + pos: 27.5,-32.5 + parent: 2 + - uid: 4568 + components: + - type: Transform + pos: 35.5,-29.5 + parent: 2 + - uid: 4569 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 2 + - uid: 4570 + components: + - type: Transform + pos: 33.5,-29.5 + parent: 2 + - uid: 4571 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 2 + - uid: 4572 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 2 + - uid: 4573 + components: + - type: Transform + pos: 30.5,-29.5 + parent: 2 + - uid: 4574 + components: + - type: Transform + pos: 29.5,-29.5 + parent: 2 + - uid: 4575 + components: + - type: Transform + pos: 29.5,-28.5 + parent: 2 + - uid: 4576 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 2 + - uid: 4577 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 2 + - uid: 4578 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 2 + - uid: 4579 + components: + - type: Transform + pos: 31.5,-27.5 + parent: 2 + - uid: 4580 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 2 + - uid: 4581 + components: + - type: Transform + pos: 33.5,-28.5 + parent: 2 + - uid: 4582 + components: + - type: Transform + pos: 33.5,-27.5 + parent: 2 + - uid: 4583 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 2 + - uid: 4584 + components: + - type: Transform + pos: 35.5,-32.5 + parent: 2 + - uid: 4585 + components: + - type: Transform + pos: 33.5,-33.5 + parent: 2 + - uid: 4586 + components: + - type: Transform + pos: 32.5,-33.5 + parent: 2 + - uid: 4587 + components: + - type: Transform + pos: 31.5,-33.5 + parent: 2 + - uid: 4588 + components: + - type: Transform + pos: 30.5,-33.5 + parent: 2 + - uid: 4589 + components: + - type: Transform + pos: 29.5,-33.5 + parent: 2 + - uid: 4590 + components: + - type: Transform + pos: 29.5,-34.5 + parent: 2 + - uid: 4591 + components: + - type: Transform + pos: 29.5,-35.5 + parent: 2 + - uid: 4592 + components: + - type: Transform + pos: 30.5,-35.5 + parent: 2 + - uid: 4593 + components: + - type: Transform + pos: 31.5,-35.5 + parent: 2 + - uid: 4594 + components: + - type: Transform + pos: 32.5,-35.5 + parent: 2 + - uid: 4595 + components: + - type: Transform + pos: 47.5,-19.5 + parent: 2 + - uid: 4596 + components: + - type: Transform + pos: 46.5,-19.5 + parent: 2 + - uid: 4597 + components: + - type: Transform + pos: 44.5,-19.5 + parent: 2 + - uid: 4598 + components: + - type: Transform + pos: 43.5,-19.5 + parent: 2 + - uid: 4599 + components: + - type: Transform + pos: 42.5,-19.5 + parent: 2 + - uid: 4600 + components: + - type: Transform + pos: 42.5,-18.5 + parent: 2 + - uid: 4601 + components: + - type: Transform + pos: 42.5,-17.5 + parent: 2 + - uid: 4602 + components: + - type: Transform + pos: 43.5,-17.5 + parent: 2 + - uid: 4603 + components: + - type: Transform + pos: 44.5,-17.5 + parent: 2 + - uid: 4604 + components: + - type: Transform + pos: 45.5,-17.5 + parent: 2 + - uid: 4605 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 2 + - uid: 4606 + components: + - type: Transform + pos: 46.5,-17.5 + parent: 2 + - uid: 4607 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 2 + - uid: 4608 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 2 + - uid: 4609 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 2 + - uid: 4610 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 2 + - uid: 4611 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 2 + - uid: 4612 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 2 + - uid: 4613 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 2 + - uid: 4614 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - uid: 4615 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 2 + - uid: 4616 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 2 + - uid: 4617 + components: + - type: Transform + pos: 32.5,-18.5 + parent: 2 + - uid: 4618 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 2 + - uid: 4619 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 2 + - uid: 4620 + components: + - type: Transform + pos: 34.5,-17.5 + parent: 2 + - uid: 4621 + components: + - type: Transform + pos: 34.5,-16.5 + parent: 2 + - uid: 4622 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 2 + - uid: 4623 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 2 + - uid: 4624 + components: + - type: Transform + pos: 28.5,-18.5 + parent: 2 + - uid: 4625 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 2 + - uid: 4626 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 2 + - uid: 4627 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 2 + - uid: 4628 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 2 + - uid: 4629 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 2 + - uid: 4630 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 2 + - uid: 4631 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 2 + - uid: 4632 + components: + - type: Transform + pos: 41.5,-48.5 + parent: 2 + - uid: 4633 + components: + - type: Transform + pos: 41.5,-46.5 + parent: 2 + - uid: 4634 + components: + - type: Transform + pos: 49.5,-42.5 + parent: 2 + - uid: 4635 + components: + - type: Transform + pos: 49.5,-41.5 + parent: 2 + - uid: 4636 + components: + - type: Transform + pos: 49.5,-40.5 + parent: 2 + - uid: 4637 + components: + - type: Transform + pos: 49.5,-39.5 + parent: 2 + - uid: 4638 + components: + - type: Transform + pos: 49.5,-38.5 + parent: 2 + - uid: 4639 + components: + - type: Transform + pos: 49.5,-37.5 + parent: 2 + - uid: 4640 + components: + - type: Transform + pos: 49.5,-36.5 + parent: 2 + - uid: 4641 + components: + - type: Transform + pos: 49.5,-35.5 + parent: 2 + - uid: 4642 + components: + - type: Transform + pos: 49.5,-34.5 + parent: 2 + - uid: 4643 + components: + - type: Transform + pos: 49.5,-33.5 + parent: 2 + - uid: 4644 + components: + - type: Transform + pos: 49.5,-32.5 + parent: 2 + - uid: 4645 + components: + - type: Transform + pos: 49.5,-31.5 + parent: 2 + - uid: 4646 + components: + - type: Transform + pos: 49.5,-30.5 + parent: 2 + - uid: 4647 + components: + - type: Transform + pos: 49.5,-29.5 + parent: 2 + - uid: 4648 + components: + - type: Transform + pos: 49.5,-28.5 + parent: 2 + - uid: 4649 + components: + - type: Transform + pos: 49.5,-27.5 + parent: 2 + - uid: 4650 + components: + - type: Transform + pos: 49.5,-26.5 + parent: 2 + - uid: 4651 + components: + - type: Transform + pos: 49.5,-25.5 + parent: 2 + - uid: 4652 + components: + - type: Transform + pos: 49.5,-24.5 + parent: 2 + - uid: 4653 + components: + - type: Transform + pos: 49.5,-23.5 + parent: 2 + - uid: 4654 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 4655 + components: + - type: Transform + pos: 49.5,-21.5 + parent: 2 + - uid: 4656 + components: + - type: Transform + pos: 49.5,-20.5 + parent: 2 + - uid: 4657 + components: + - type: Transform + pos: 49.5,-19.5 + parent: 2 + - uid: 4658 + components: + - type: Transform + pos: 49.5,-18.5 + parent: 2 + - uid: 4659 + components: + - type: Transform + pos: 49.5,-17.5 + parent: 2 + - uid: 4660 + components: + - type: Transform + pos: 49.5,-43.5 + parent: 2 + - uid: 4661 + components: + - type: Transform + pos: 49.5,-44.5 + parent: 2 + - uid: 4662 + components: + - type: Transform + pos: 49.5,-45.5 + parent: 2 + - uid: 4663 + components: + - type: Transform + pos: 49.5,-46.5 + parent: 2 + - uid: 4664 + components: + - type: Transform + pos: 49.5,-47.5 + parent: 2 + - uid: 4665 + components: + - type: Transform + pos: 49.5,-48.5 + parent: 2 + - uid: 4666 + components: + - type: Transform + pos: 49.5,-49.5 + parent: 2 + - uid: 4667 + components: + - type: Transform + pos: 49.5,-50.5 + parent: 2 + - uid: 4668 + components: + - type: Transform + pos: 49.5,-51.5 + parent: 2 + - uid: 4669 + components: + - type: Transform + pos: 49.5,-52.5 + parent: 2 + - uid: 4670 + components: + - type: Transform + pos: 49.5,-53.5 + parent: 2 + - uid: 4671 + components: + - type: Transform + pos: 49.5,-54.5 + parent: 2 + - uid: 4672 + components: + - type: Transform + pos: 49.5,-55.5 + parent: 2 + - uid: 4673 + components: + - type: Transform + pos: 49.5,-56.5 + parent: 2 + - uid: 4674 + components: + - type: Transform + pos: 49.5,-57.5 + parent: 2 + - uid: 4675 + components: + - type: Transform + pos: 49.5,-58.5 + parent: 2 + - uid: 4676 + components: + - type: Transform + pos: 49.5,-59.5 + parent: 2 + - uid: 4677 + components: + - type: Transform + pos: 49.5,-60.5 + parent: 2 + - uid: 4678 + components: + - type: Transform + pos: 49.5,-61.5 + parent: 2 + - uid: 4679 + components: + - type: Transform + pos: 49.5,-62.5 + parent: 2 + - uid: 4680 + components: + - type: Transform + pos: 48.5,-49.5 + parent: 2 + - uid: 4681 + components: + - type: Transform + pos: 47.5,-49.5 + parent: 2 + - uid: 4682 + components: + - type: Transform + pos: 46.5,-49.5 + parent: 2 + - uid: 4683 + components: + - type: Transform + pos: 45.5,-49.5 + parent: 2 + - uid: 4684 + components: + - type: Transform + pos: 44.5,-49.5 + parent: 2 + - uid: 4685 + components: + - type: Transform + pos: 48.5,-62.5 + parent: 2 + - uid: 4686 + components: + - type: Transform + pos: 47.5,-62.5 + parent: 2 + - uid: 4687 + components: + - type: Transform + pos: 47.5,-63.5 + parent: 2 + - uid: 4688 + components: + - type: Transform + pos: 47.5,-64.5 + parent: 2 + - uid: 4689 + components: + - type: Transform + pos: 47.5,-65.5 + parent: 2 + - uid: 4690 + components: + - type: Transform + pos: 46.5,-65.5 + parent: 2 + - uid: 4691 + components: + - type: Transform + pos: 45.5,-65.5 + parent: 2 + - uid: 4692 + components: + - type: Transform + pos: 44.5,-65.5 + parent: 2 + - uid: 4693 + components: + - type: Transform + pos: 43.5,-65.5 + parent: 2 + - uid: 4694 + components: + - type: Transform + pos: 42.5,-65.5 + parent: 2 + - uid: 4695 + components: + - type: Transform + pos: 41.5,-65.5 + parent: 2 + - uid: 4696 + components: + - type: Transform + pos: 40.5,-65.5 + parent: 2 + - uid: 4697 + components: + - type: Transform + pos: 40.5,-64.5 + parent: 2 + - uid: 4698 + components: + - type: Transform + pos: 40.5,-63.5 + parent: 2 + - uid: 4699 + components: + - type: Transform + pos: 40.5,-62.5 + parent: 2 + - uid: 4700 + components: + - type: Transform + pos: 39.5,-62.5 + parent: 2 + - uid: 4701 + components: + - type: Transform + pos: 38.5,-62.5 + parent: 2 + - uid: 4702 + components: + - type: Transform + pos: 37.5,-62.5 + parent: 2 + - uid: 4703 + components: + - type: Transform + pos: 36.5,-62.5 + parent: 2 + - uid: 4704 + components: + - type: Transform + pos: 36.5,-61.5 + parent: 2 + - uid: 4705 + components: + - type: Transform + pos: 36.5,-60.5 + parent: 2 + - uid: 4706 + components: + - type: Transform + pos: 36.5,-59.5 + parent: 2 + - uid: 4707 + components: + - type: Transform + pos: 36.5,-58.5 + parent: 2 + - uid: 4708 + components: + - type: Transform + pos: 36.5,-57.5 + parent: 2 + - uid: 4709 + components: + - type: Transform + pos: 35.5,-57.5 + parent: 2 + - uid: 4710 + components: + - type: Transform + pos: 34.5,-57.5 + parent: 2 + - uid: 4711 + components: + - type: Transform + pos: 33.5,-57.5 + parent: 2 + - uid: 4712 + components: + - type: Transform + pos: 32.5,-57.5 + parent: 2 + - uid: 4713 + components: + - type: Transform + pos: 32.5,-56.5 + parent: 2 + - uid: 4714 + components: + - type: Transform + pos: 32.5,-55.5 + parent: 2 + - uid: 4715 + components: + - type: Transform + pos: 32.5,-54.5 + parent: 2 + - uid: 4716 + components: + - type: Transform + pos: 32.5,-53.5 + parent: 2 + - uid: 4717 + components: + - type: Transform + pos: 32.5,-52.5 + parent: 2 + - uid: 4718 + components: + - type: Transform + pos: 32.5,-51.5 + parent: 2 + - uid: 4719 + components: + - type: Transform + pos: 32.5,-50.5 + parent: 2 + - uid: 4720 + components: + - type: Transform + pos: 32.5,-49.5 + parent: 2 + - uid: 4721 + components: + - type: Transform + pos: 32.5,-48.5 + parent: 2 + - uid: 4722 + components: + - type: Transform + pos: 32.5,-47.5 + parent: 2 + - uid: 4723 + components: + - type: Transform + pos: 32.5,-46.5 + parent: 2 + - uid: 4724 + components: + - type: Transform + pos: 32.5,-45.5 + parent: 2 + - uid: 4725 + components: + - type: Transform + pos: 32.5,-44.5 + parent: 2 + - uid: 4726 + components: + - type: Transform + pos: 32.5,-43.5 + parent: 2 + - uid: 4727 + components: + - type: Transform + pos: 32.5,-42.5 + parent: 2 + - uid: 4728 + components: + - type: Transform + pos: 32.5,-41.5 + parent: 2 + - uid: 4729 + components: + - type: Transform + pos: 32.5,-40.5 + parent: 2 + - uid: 4730 + components: + - type: Transform + pos: 32.5,-39.5 + parent: 2 + - uid: 4731 + components: + - type: Transform + pos: 32.5,-38.5 + parent: 2 + - uid: 4732 + components: + - type: Transform + pos: 31.5,-38.5 + parent: 2 + - uid: 4733 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 2 + - uid: 4734 + components: + - type: Transform + pos: 29.5,-38.5 + parent: 2 + - uid: 4735 + components: + - type: Transform + pos: 28.5,-38.5 + parent: 2 + - uid: 4736 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 2 + - uid: 4737 + components: + - type: Transform + pos: 26.5,-38.5 + parent: 2 + - uid: 4738 + components: + - type: Transform + pos: 25.5,-38.5 + parent: 2 + - uid: 4739 + components: + - type: Transform + pos: 24.5,-38.5 + parent: 2 + - uid: 4740 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 2 + - uid: 4741 + components: + - type: Transform + pos: 22.5,-38.5 + parent: 2 + - uid: 4742 + components: + - type: Transform + pos: 21.5,-38.5 + parent: 2 + - uid: 4743 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 2 + - uid: 4744 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 2 + - uid: 4745 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 2 + - uid: 4746 + components: + - type: Transform + pos: 17.5,-38.5 + parent: 2 + - uid: 4747 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 2 + - uid: 4748 + components: + - type: Transform + pos: 15.5,-38.5 + parent: 2 + - uid: 4749 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 2 + - uid: 4750 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 2 + - uid: 4751 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 2 + - uid: 4752 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 2 + - uid: 4753 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 2 + - uid: 4754 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 2 + - uid: 4755 + components: + - type: Transform + pos: 8.5,-38.5 + parent: 2 + - uid: 4756 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 + - uid: 4757 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 2 + - uid: 4758 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 2 + - uid: 4759 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 2 + - uid: 4760 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 2 + - uid: 4761 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 2 + - uid: 4762 + components: + - type: Transform + pos: 49.5,-65.5 + parent: 2 + - uid: 4763 + components: + - type: Transform + pos: 50.5,-65.5 + parent: 2 + - uid: 4764 + components: + - type: Transform + pos: 50.5,-64.5 + parent: 2 + - uid: 4765 + components: + - type: Transform + pos: 50.5,-63.5 + parent: 2 + - uid: 4766 + components: + - type: Transform + pos: 51.5,-63.5 + parent: 2 + - uid: 4767 + components: + - type: Transform + pos: 52.5,-63.5 + parent: 2 + - uid: 4768 + components: + - type: Transform + pos: 53.5,-63.5 + parent: 2 + - uid: 4769 + components: + - type: Transform + pos: -9.5,44.5 + parent: 2 + - uid: 4770 + components: + - type: Transform + pos: 54.5,-48.5 + parent: 2 + - uid: 4771 + components: + - type: Transform + pos: 39.5,-25.5 + parent: 2 + - uid: 4772 + components: + - type: Transform + pos: 25.5,-60.5 + parent: 2 + - uid: 4773 + components: + - type: Transform + pos: 24.5,-60.5 + parent: 2 + - uid: 4774 + components: + - type: Transform + pos: 34.5,-32.5 + parent: 2 + - uid: 4775 + components: + - type: Transform + pos: 33.5,-35.5 + parent: 2 + - uid: 4776 + components: + - type: Transform + pos: 34.5,-35.5 + parent: 2 + - uid: 4777 + components: + - type: Transform + pos: 35.5,-35.5 + parent: 2 + - uid: 4778 + components: + - type: Transform + pos: 36.5,-35.5 + parent: 2 + - uid: 4779 + components: + - type: Transform + pos: 37.5,-35.5 + parent: 2 + - uid: 4780 + components: + - type: Transform + pos: 38.5,-35.5 + parent: 2 + - uid: 4781 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 2 + - uid: 4782 + components: + - type: Transform + pos: 35.5,-33.5 + parent: 2 + - uid: 4783 + components: + - type: Transform + pos: 37.5,-33.5 + parent: 2 + - uid: 4784 + components: + - type: Transform + pos: 38.5,-34.5 + parent: 2 + - uid: 4785 + components: + - type: Transform + pos: 38.5,-36.5 + parent: 2 + - uid: 4786 + components: + - type: Transform + pos: 23.5,-60.5 + parent: 2 + - uid: 4787 + components: + - type: Transform + pos: 22.5,-60.5 + parent: 2 + - uid: 4788 + components: + - type: Transform + pos: 21.5,-60.5 + parent: 2 + - uid: 4789 + components: + - type: Transform + pos: 45.5,-19.5 + parent: 2 + - uid: 4790 + components: + - type: Transform + pos: 84.5,-46.5 + parent: 2 + - uid: 4791 + components: + - type: Transform + pos: 84.5,-45.5 + parent: 2 + - uid: 4792 + components: + - type: Transform + pos: 83.5,-45.5 + parent: 2 + - uid: 4793 + components: + - type: Transform + pos: 82.5,-45.5 + parent: 2 + - uid: 4794 + components: + - type: Transform + pos: 82.5,-44.5 + parent: 2 + - uid: 4795 + components: + - type: Transform + pos: 82.5,-43.5 + parent: 2 + - uid: 4796 + components: + - type: Transform + pos: 82.5,-42.5 + parent: 2 + - uid: 4797 + components: + - type: Transform + pos: 82.5,-41.5 + parent: 2 + - uid: 4798 + components: + - type: Transform + pos: 82.5,-40.5 + parent: 2 + - uid: 4799 + components: + - type: Transform + pos: 81.5,-33.5 + parent: 2 + - uid: 4800 + components: + - type: Transform + pos: 81.5,-34.5 + parent: 2 + - uid: 4801 + components: + - type: Transform + pos: 81.5,-35.5 + parent: 2 + - uid: 4802 + components: + - type: Transform + pos: 81.5,-36.5 + parent: 2 + - uid: 4803 + components: + - type: Transform + pos: 81.5,-37.5 + parent: 2 + - uid: 4804 + components: + - type: Transform + pos: 81.5,-38.5 + parent: 2 + - uid: 4805 + components: + - type: Transform + pos: 81.5,-39.5 + parent: 2 + - uid: 4806 + components: + - type: Transform + pos: 81.5,-40.5 + parent: 2 + - uid: 4807 + components: + - type: Transform + pos: 84.5,-32.5 + parent: 2 + - uid: 4808 + components: + - type: Transform + pos: 84.5,-33.5 + parent: 2 + - uid: 4809 + components: + - type: Transform + pos: 83.5,-33.5 + parent: 2 + - uid: 4810 + components: + - type: Transform + pos: 82.5,-33.5 + parent: 2 + - uid: 4811 + components: + - type: Transform + pos: 85.5,-32.5 + parent: 2 + - uid: 4812 + components: + - type: Transform + pos: 83.5,-41.5 + parent: 2 + - uid: 4813 + components: + - type: Transform + pos: 84.5,-41.5 + parent: 2 + - uid: 4814 + components: + - type: Transform + pos: 85.5,-41.5 + parent: 2 + - uid: 4815 + components: + - type: Transform + pos: 86.5,-41.5 + parent: 2 + - uid: 4816 + components: + - type: Transform + pos: 87.5,-41.5 + parent: 2 + - uid: 4817 + components: + - type: Transform + pos: 87.5,-40.5 + parent: 2 + - uid: 4818 + components: + - type: Transform + pos: 87.5,-42.5 + parent: 2 + - uid: 4819 + components: + - type: Transform + pos: 82.5,-36.5 + parent: 2 + - uid: 4820 + components: + - type: Transform + pos: 83.5,-36.5 + parent: 2 + - uid: 4821 + components: + - type: Transform + pos: 84.5,-36.5 + parent: 2 + - uid: 4822 + components: + - type: Transform + pos: 85.5,-36.5 + parent: 2 + - uid: 4823 + components: + - type: Transform + pos: 85.5,-37.5 + parent: 2 + - uid: 4824 + components: + - type: Transform + pos: 86.5,-37.5 + parent: 2 + - uid: 4825 + components: + - type: Transform + pos: 86.5,-36.5 + parent: 2 + - uid: 4826 + components: + - type: Transform + pos: 87.5,-36.5 + parent: 2 + - uid: 4827 + components: + - type: Transform + pos: 87.5,-35.5 + parent: 2 + - uid: 4828 + components: + - type: Transform + pos: 87.5,-34.5 + parent: 2 + - uid: 4829 + components: + - type: Transform + pos: 85.5,-31.5 + parent: 2 + - uid: 4830 + components: + - type: Transform + pos: 85.5,-30.5 + parent: 2 + - uid: 4831 + components: + - type: Transform + pos: 85.5,-29.5 + parent: 2 + - uid: 4832 + components: + - type: Transform + pos: 85.5,-28.5 + parent: 2 + - uid: 4833 + components: + - type: Transform + pos: 85.5,-27.5 + parent: 2 + - uid: 4834 + components: + - type: Transform + pos: 85.5,-26.5 + parent: 2 + - uid: 4835 + components: + - type: Transform + pos: 85.5,-25.5 + parent: 2 + - uid: 4836 + components: + - type: Transform + pos: 85.5,-24.5 + parent: 2 + - uid: 4837 + components: + - type: Transform + pos: 85.5,-23.5 + parent: 2 + - uid: 4838 + components: + - type: Transform + pos: 85.5,-22.5 + parent: 2 + - uid: 4839 + components: + - type: Transform + pos: 85.5,-21.5 + parent: 2 + - uid: 4840 + components: + - type: Transform + pos: 84.5,-21.5 + parent: 2 + - uid: 4841 + components: + - type: Transform + pos: 83.5,-21.5 + parent: 2 + - uid: 4842 + components: + - type: Transform + pos: 82.5,-21.5 + parent: 2 + - uid: 4843 + components: + - type: Transform + pos: 81.5,-21.5 + parent: 2 + - uid: 4844 + components: + - type: Transform + pos: 80.5,-21.5 + parent: 2 + - uid: 4845 + components: + - type: Transform + pos: 79.5,-21.5 + parent: 2 + - uid: 4846 + components: + - type: Transform + pos: 79.5,-20.5 + parent: 2 + - uid: 4847 + components: + - type: Transform + pos: 79.5,-19.5 + parent: 2 + - uid: 4848 + components: + - type: Transform + pos: 80.5,-19.5 + parent: 2 + - uid: 4849 + components: + - type: Transform + pos: 81.5,-19.5 + parent: 2 + - uid: 4850 + components: + - type: Transform + pos: 78.5,-19.5 + parent: 2 + - uid: 4851 + components: + - type: Transform + pos: 77.5,-19.5 + parent: 2 + - uid: 4852 + components: + - type: Transform + pos: 76.5,-19.5 + parent: 2 + - uid: 4853 + components: + - type: Transform + pos: 76.5,-18.5 + parent: 2 + - uid: 4854 + components: + - type: Transform + pos: 76.5,-17.5 + parent: 2 + - uid: 4855 + components: + - type: Transform + pos: 82.5,-46.5 + parent: 2 + - uid: 4856 + components: + - type: Transform + pos: 82.5,-47.5 + parent: 2 + - uid: 4857 + components: + - type: Transform + pos: 82.5,-48.5 + parent: 2 + - uid: 4858 + components: + - type: Transform + pos: 82.5,-49.5 + parent: 2 + - uid: 4859 + components: + - type: Transform + pos: 82.5,-50.5 + parent: 2 + - uid: 4860 + components: + - type: Transform + pos: 82.5,-51.5 + parent: 2 + - uid: 4861 + components: + - type: Transform + pos: 82.5,-52.5 + parent: 2 + - uid: 4862 + components: + - type: Transform + pos: 83.5,-52.5 + parent: 2 + - uid: 4863 + components: + - type: Transform + pos: 84.5,-52.5 + parent: 2 + - uid: 4864 + components: + - type: Transform + pos: 85.5,-52.5 + parent: 2 + - uid: 4865 + components: + - type: Transform + pos: 86.5,-52.5 + parent: 2 + - uid: 4866 + components: + - type: Transform + pos: 87.5,-52.5 + parent: 2 + - uid: 4867 + components: + - type: Transform + pos: 87.5,-51.5 + parent: 2 + - uid: 4868 + components: + - type: Transform + pos: 87.5,-53.5 + parent: 2 + - uid: 4869 + components: + - type: Transform + pos: 82.5,-53.5 + parent: 2 + - uid: 4870 + components: + - type: Transform + pos: 82.5,-54.5 + parent: 2 + - uid: 4871 + components: + - type: Transform + pos: 82.5,-55.5 + parent: 2 + - uid: 4872 + components: + - type: Transform + pos: 82.5,-56.5 + parent: 2 + - uid: 4873 + components: + - type: Transform + pos: 82.5,-57.5 + parent: 2 + - uid: 4874 + components: + - type: Transform + pos: 83.5,-57.5 + parent: 2 + - uid: 4875 + components: + - type: Transform + pos: 84.5,-57.5 + parent: 2 + - uid: 4876 + components: + - type: Transform + pos: 85.5,-57.5 + parent: 2 + - uid: 4877 + components: + - type: Transform + pos: 86.5,-57.5 + parent: 2 + - uid: 4878 + components: + - type: Transform + pos: 87.5,-57.5 + parent: 2 + - uid: 4879 + components: + - type: Transform + pos: 88.5,-57.5 + parent: 2 + - uid: 4880 + components: + - type: Transform + pos: 82.5,-58.5 + parent: 2 + - uid: 4881 + components: + - type: Transform + pos: 82.5,-59.5 + parent: 2 + - uid: 4882 + components: + - type: Transform + pos: 82.5,-60.5 + parent: 2 + - uid: 4883 + components: + - type: Transform + pos: 81.5,-60.5 + parent: 2 + - uid: 4884 + components: + - type: Transform + pos: 80.5,-60.5 + parent: 2 + - uid: 4885 + components: + - type: Transform + pos: 79.5,-60.5 + parent: 2 + - uid: 4886 + components: + - type: Transform + pos: 78.5,-60.5 + parent: 2 + - uid: 4887 + components: + - type: Transform + pos: 77.5,-60.5 + parent: 2 + - uid: 4888 + components: + - type: Transform + pos: 76.5,-60.5 + parent: 2 + - uid: 4889 + components: + - type: Transform + pos: 74.5,-60.5 + parent: 2 + - uid: 4890 + components: + - type: Transform + pos: 73.5,-60.5 + parent: 2 + - uid: 4891 + components: + - type: Transform + pos: 72.5,-60.5 + parent: 2 + - uid: 4892 + components: + - type: Transform + pos: 71.5,-60.5 + parent: 2 + - uid: 4893 + components: + - type: Transform + pos: 70.5,-60.5 + parent: 2 + - uid: 4894 + components: + - type: Transform + pos: 69.5,-60.5 + parent: 2 + - uid: 4895 + components: + - type: Transform + pos: 68.5,-60.5 + parent: 2 + - uid: 4896 + components: + - type: Transform + pos: 67.5,-60.5 + parent: 2 + - uid: 4897 + components: + - type: Transform + pos: 66.5,-60.5 + parent: 2 + - uid: 4898 + components: + - type: Transform + pos: 65.5,-60.5 + parent: 2 + - uid: 4899 + components: + - type: Transform + pos: 65.5,-59.5 + parent: 2 + - uid: 4900 + components: + - type: Transform + pos: 65.5,-58.5 + parent: 2 + - uid: 4901 + components: + - type: Transform + pos: 65.5,-57.5 + parent: 2 + - uid: 4902 + components: + - type: Transform + pos: 65.5,-56.5 + parent: 2 + - uid: 4903 + components: + - type: Transform + pos: 66.5,-56.5 + parent: 2 + - uid: 4904 + components: + - type: Transform + pos: 67.5,-56.5 + parent: 2 + - uid: 4905 + components: + - type: Transform + pos: 68.5,-56.5 + parent: 2 + - uid: 4906 + components: + - type: Transform + pos: 69.5,-56.5 + parent: 2 + - uid: 4907 + components: + - type: Transform + pos: 66.5,-55.5 + parent: 2 + - uid: 4908 + components: + - type: Transform + pos: 68.5,-61.5 + parent: 2 + - uid: 4909 + components: + - type: Transform + pos: 68.5,-62.5 + parent: 2 + - uid: 4910 + components: + - type: Transform + pos: 68.5,-63.5 + parent: 2 + - uid: 4911 + components: + - type: Transform + pos: 68.5,-64.5 + parent: 2 + - uid: 4912 + components: + - type: Transform + pos: 68.5,-65.5 + parent: 2 + - uid: 4913 + components: + - type: Transform + pos: 77.5,-61.5 + parent: 2 + - uid: 4914 + components: + - type: Transform + pos: 77.5,-62.5 + parent: 2 + - uid: 4915 + components: + - type: Transform + pos: 77.5,-63.5 + parent: 2 + - uid: 4916 + components: + - type: Transform + pos: 77.5,-64.5 + parent: 2 + - uid: 4917 + components: + - type: Transform + pos: 76.5,-64.5 + parent: 2 + - uid: 4918 + components: + - type: Transform + pos: 75.5,-64.5 + parent: 2 + - uid: 4919 + components: + - type: Transform + pos: 74.5,-64.5 + parent: 2 + - uid: 4920 + components: + - type: Transform + pos: 73.5,-64.5 + parent: 2 + - uid: 4921 + components: + - type: Transform + pos: 72.5,-64.5 + parent: 2 + - uid: 4922 + components: + - type: Transform + pos: 72.5,-65.5 + parent: 2 + - uid: 4923 + components: + - type: Transform + pos: 71.5,-65.5 + parent: 2 + - uid: 4924 + components: + - type: Transform + pos: 70.5,-65.5 + parent: 2 + - uid: 4925 + components: + - type: Transform + pos: 69.5,-65.5 + parent: 2 + - uid: 4926 + components: + - type: Transform + pos: 72.5,-66.5 + parent: 2 + - uid: 4927 + components: + - type: Transform + pos: 72.5,-67.5 + parent: 2 + - uid: 4928 + components: + - type: Transform + pos: 72.5,-68.5 + parent: 2 + - uid: 4929 + components: + - type: Transform + pos: 71.5,-68.5 + parent: 2 + - uid: 4930 + components: + - type: Transform + pos: 70.5,-68.5 + parent: 2 + - uid: 4931 + components: + - type: Transform + pos: 69.5,-68.5 + parent: 2 + - uid: 4932 + components: + - type: Transform + pos: 68.5,-68.5 + parent: 2 + - uid: 4933 + components: + - type: Transform + pos: 67.5,-68.5 + parent: 2 + - uid: 4934 + components: + - type: Transform + pos: 66.5,-68.5 + parent: 2 + - uid: 4935 + components: + - type: Transform + pos: 65.5,-68.5 + parent: 2 + - uid: 4936 + components: + - type: Transform + pos: 65.5,-69.5 + parent: 2 + - uid: 4937 + components: + - type: Transform + pos: 65.5,-70.5 + parent: 2 + - uid: 4938 + components: + - type: Transform + pos: 65.5,-71.5 + parent: 2 + - uid: 4939 + components: + - type: Transform + pos: 64.5,-71.5 + parent: 2 + - uid: 4940 + components: + - type: Transform + pos: 63.5,-71.5 + parent: 2 + - uid: 4941 + components: + - type: Transform + pos: 62.5,-71.5 + parent: 2 + - uid: 4942 + components: + - type: Transform + pos: 61.5,-71.5 + parent: 2 + - uid: 4943 + components: + - type: Transform + pos: 65.5,-67.5 + parent: 2 + - uid: 4944 + components: + - type: Transform + pos: 65.5,-66.5 + parent: 2 + - uid: 4945 + components: + - type: Transform + pos: 65.5,-65.5 + parent: 2 + - uid: 4946 + components: + - type: Transform + pos: 65.5,-64.5 + parent: 2 + - uid: 4947 + components: + - type: Transform + pos: 65.5,-63.5 + parent: 2 + - uid: 4948 + components: + - type: Transform + pos: 65.5,-62.5 + parent: 2 + - uid: 4949 + components: + - type: Transform + pos: 65.5,-61.5 + parent: 2 + - uid: 4950 + components: + - type: Transform + pos: 64.5,-61.5 + parent: 2 + - uid: 4951 + components: + - type: Transform + pos: 63.5,-61.5 + parent: 2 + - uid: 4952 + components: + - type: Transform + pos: 62.5,-61.5 + parent: 2 + - uid: 4953 + components: + - type: Transform + pos: 61.5,-61.5 + parent: 2 + - uid: 4954 + components: + - type: Transform + pos: 60.5,-61.5 + parent: 2 + - uid: 4955 + components: + - type: Transform + pos: 59.5,-61.5 + parent: 2 + - uid: 4956 + components: + - type: Transform + pos: 58.5,-61.5 + parent: 2 + - uid: 4957 + components: + - type: Transform + pos: 57.5,-61.5 + parent: 2 + - uid: 4958 + components: + - type: Transform + pos: 56.5,-61.5 + parent: 2 + - uid: 4959 + components: + - type: Transform + pos: 55.5,-61.5 + parent: 2 + - uid: 4960 + components: + - type: Transform + pos: 54.5,-61.5 + parent: 2 + - uid: 4961 + components: + - type: Transform + pos: 53.5,-61.5 + parent: 2 + - uid: 4962 + components: + - type: Transform + pos: 56.5,-60.5 + parent: 2 + - uid: 4963 + components: + - type: Transform + pos: 61.5,-60.5 + parent: 2 + - uid: 4964 + components: + - type: Transform + pos: 54.5,-60.5 + parent: 2 + - uid: 4965 + components: + - type: Transform + pos: 60.5,-56.5 + parent: 2 + - uid: 4966 + components: + - type: Transform + pos: 63.5,-62.5 + parent: 2 + - uid: 4967 + components: + - type: Transform + pos: 63.5,-63.5 + parent: 2 + - uid: 4968 + components: + - type: Transform + pos: 62.5,-63.5 + parent: 2 + - uid: 4969 + components: + - type: Transform + pos: 61.5,-63.5 + parent: 2 + - uid: 4970 + components: + - type: Transform + pos: 58.5,-62.5 + parent: 2 + - uid: 4971 + components: + - type: Transform + pos: 58.5,-63.5 + parent: 2 + - uid: 4972 + components: + - type: Transform + pos: 57.5,-63.5 + parent: 2 + - uid: 4973 + components: + - type: Transform + pos: 56.5,-63.5 + parent: 2 + - uid: 4974 + components: + - type: Transform + pos: 62.5,-70.5 + parent: 2 + - uid: 4975 + components: + - type: Transform + pos: 60.5,-71.5 + parent: 2 + - uid: 4976 + components: + - type: Transform + pos: 60.5,-70.5 + parent: 2 + - uid: 4977 + components: + - type: Transform + pos: 60.5,-72.5 + parent: 2 + - uid: 4978 + components: + - type: Transform + pos: 62.5,-72.5 + parent: 2 + - uid: 4979 + components: + - type: Transform + pos: 62.5,-73.5 + parent: 2 + - uid: 4980 + components: + - type: Transform + pos: 63.5,-73.5 + parent: 2 + - uid: 4981 + components: + - type: Transform + pos: 64.5,-73.5 + parent: 2 + - uid: 4982 + components: + - type: Transform + pos: 65.5,-73.5 + parent: 2 + - uid: 4983 + components: + - type: Transform + pos: 69.5,-69.5 + parent: 2 + - uid: 4984 + components: + - type: Transform + pos: 70.5,-69.5 + parent: 2 + - uid: 4985 + components: + - type: Transform + pos: 73.5,-61.5 + parent: 2 + - uid: 4986 + components: + - type: Transform + pos: 74.5,-61.5 + parent: 2 + - uid: 4987 + components: + - type: Transform + pos: 74.5,-63.5 + parent: 2 + - uid: 4988 + components: + - type: Transform + pos: 73.5,-63.5 + parent: 2 + - uid: 4989 + components: + - type: Transform + pos: 75.5,-60.5 + parent: 2 + - uid: 4990 + components: + - type: Transform + pos: 78.5,-61.5 + parent: 2 + - uid: 4991 + components: + - type: Transform + pos: 77.5,-65.5 + parent: 2 + - uid: 4992 + components: + - type: Transform + pos: 76.5,-65.5 + parent: 2 + - uid: 4993 + components: + - type: Transform + pos: 86.5,-23.5 + parent: 2 + - uid: 4994 + components: + - type: Transform + pos: 87.5,-23.5 + parent: 2 + - uid: 4995 + components: + - type: Transform + pos: 88.5,-28.5 + parent: 2 + - uid: 4996 + components: + - type: Transform + pos: 89.5,-28.5 + parent: 2 + - uid: 4997 + components: + - type: Transform + pos: 90.5,-28.5 + parent: 2 + - uid: 4998 + components: + - type: Transform + pos: 91.5,-28.5 + parent: 2 + - uid: 4999 + components: + - type: Transform + pos: 92.5,-28.5 + parent: 2 + - uid: 5000 + components: + - type: Transform + pos: 91.5,-27.5 + parent: 2 + - uid: 5001 + components: + - type: Transform + pos: 91.5,-30.5 + parent: 2 + - uid: 5002 + components: + - type: Transform + pos: 91.5,-29.5 + parent: 2 + - uid: 5003 + components: + - type: Transform + pos: 89.5,-27.5 + parent: 2 + - uid: 5004 + components: + - type: Transform + pos: 89.5,-26.5 + parent: 2 + - uid: 5005 + components: + - type: Transform + pos: 89.5,-25.5 + parent: 2 + - uid: 5006 + components: + - type: Transform + pos: 89.5,-24.5 + parent: 2 + - uid: 5007 + components: + - type: Transform + pos: 89.5,-23.5 + parent: 2 + - uid: 5008 + components: + - type: Transform + pos: 89.5,-22.5 + parent: 2 + - uid: 5009 + components: + - type: Transform + pos: 90.5,-22.5 + parent: 2 + - uid: 5010 + components: + - type: Transform + pos: 89.5,-29.5 + parent: 2 + - uid: 5011 + components: + - type: Transform + pos: 89.5,-30.5 + parent: 2 + - uid: 5012 + components: + - type: Transform + pos: 83.5,-47.5 + parent: 2 + - uid: 5013 + components: + - type: Transform + pos: 84.5,-47.5 + parent: 2 + - uid: 5014 + components: + - type: Transform + pos: 79.5,-59.5 + parent: 2 + - uid: 5015 + components: + - type: Transform + pos: 79.5,-58.5 + parent: 2 + - uid: 5016 + components: + - type: Transform + pos: 79.5,-57.5 + parent: 2 + - uid: 5017 + components: + - type: Transform + pos: -38.5,-29.5 + parent: 2 + - uid: 5018 + components: + - type: Transform + pos: 78.5,-57.5 + parent: 2 + - uid: 5019 + components: + - type: Transform + pos: 77.5,-57.5 + parent: 2 + - uid: 5020 + components: + - type: Transform + pos: -39.5,-30.5 + parent: 2 + - uid: 5021 + components: + - type: Transform + pos: -42.5,-28.5 + parent: 2 + - uid: 5022 + components: + - type: Transform + pos: -38.5,-30.5 + parent: 2 + - uid: 5023 + components: + - type: Transform + pos: -41.5,-27.5 + parent: 2 + - uid: 5024 + components: + - type: Transform + pos: 83.5,-64.5 + parent: 2 + - uid: 5025 + components: + - type: Transform + pos: 82.5,-64.5 + parent: 2 + - uid: 5026 + components: + - type: Transform + pos: 81.5,-64.5 + parent: 2 + - uid: 5027 + components: + - type: Transform + pos: 81.5,-65.5 + parent: 2 + - uid: 5028 + components: + - type: Transform + pos: 81.5,-66.5 + parent: 2 + - uid: 5029 + components: + - type: Transform + pos: 81.5,-67.5 + parent: 2 + - uid: 5030 + components: + - type: Transform + pos: 82.5,-66.5 + parent: 2 + - uid: 5031 + components: + - type: Transform + pos: 83.5,-66.5 + parent: 2 + - uid: 5032 + components: + - type: Transform + pos: 82.5,-67.5 + parent: 2 + - uid: 5033 + components: + - type: Transform + pos: 82.5,-68.5 + parent: 2 + - uid: 5034 + components: + - type: Transform + pos: 56.5,-44.5 + parent: 2 + - uid: 5035 + components: + - type: Transform + pos: -14.5,39.5 + parent: 2 + - uid: 5036 + components: + - type: Transform + pos: -14.5,41.5 + parent: 2 + - uid: 5037 + components: + - type: Transform + pos: 37.5,-17.5 + parent: 2 + - uid: 5038 + components: + - type: Transform + pos: 69.5,-26.5 + parent: 2 + - uid: 5039 + components: + - type: Transform + pos: 70.5,-25.5 + parent: 2 + - uid: 5040 + components: + - type: Transform + pos: 70.5,-26.5 + parent: 2 + - uid: 5041 + components: + - type: Transform + pos: 70.5,-27.5 + parent: 2 + - uid: 5042 + components: + - type: Transform + pos: 70.5,-28.5 + parent: 2 + - uid: 5043 + components: + - type: Transform + pos: 70.5,-29.5 + parent: 2 + - uid: 5044 + components: + - type: Transform + pos: 70.5,-30.5 + parent: 2 + - uid: 5045 + components: + - type: Transform + pos: 71.5,-30.5 + parent: 2 + - uid: 5046 + components: + - type: Transform + pos: 72.5,-30.5 + parent: 2 + - uid: 5047 + components: + - type: Transform + pos: 73.5,-30.5 + parent: 2 + - uid: 5048 + components: + - type: Transform + pos: 73.5,-29.5 + parent: 2 + - uid: 5049 + components: + - type: Transform + pos: 73.5,-28.5 + parent: 2 + - uid: 5050 + components: + - type: Transform + pos: 73.5,-27.5 + parent: 2 + - uid: 5051 + components: + - type: Transform + pos: 73.5,-26.5 + parent: 2 + - uid: 5052 + components: + - type: Transform + pos: 73.5,-25.5 + parent: 2 + - uid: 5053 + components: + - type: Transform + pos: 73.5,-24.5 + parent: 2 + - uid: 5054 + components: + - type: Transform + pos: 73.5,-23.5 + parent: 2 + - uid: 5055 + components: + - type: Transform + pos: 73.5,-22.5 + parent: 2 + - uid: 5056 + components: + - type: Transform + pos: 73.5,-21.5 + parent: 2 + - uid: 5057 + components: + - type: Transform + pos: 73.5,-20.5 + parent: 2 + - uid: 5058 + components: + - type: Transform + pos: 73.5,-19.5 + parent: 2 + - uid: 5059 + components: + - type: Transform + pos: 73.5,-18.5 + parent: 2 + - uid: 5060 + components: + - type: Transform + pos: 73.5,-17.5 + parent: 2 + - uid: 5061 + components: + - type: Transform + pos: 72.5,-18.5 + parent: 2 + - uid: 5062 + components: + - type: Transform + pos: 71.5,-18.5 + parent: 2 + - uid: 5063 + components: + - type: Transform + pos: 70.5,-18.5 + parent: 2 + - uid: 5064 + components: + - type: Transform + pos: 70.5,-19.5 + parent: 2 + - uid: 5065 + components: + - type: Transform + pos: 70.5,-20.5 + parent: 2 + - uid: 5066 + components: + - type: Transform + pos: 70.5,-21.5 + parent: 2 + - uid: 5067 + components: + - type: Transform + pos: 70.5,-22.5 + parent: 2 + - uid: 5068 + components: + - type: Transform + pos: 69.5,-22.5 + parent: 2 + - uid: 5069 + components: + - type: Transform + pos: 68.5,-22.5 + parent: 2 + - uid: 5070 + components: + - type: Transform + pos: 67.5,-22.5 + parent: 2 + - uid: 5071 + components: + - type: Transform + pos: 66.5,-22.5 + parent: 2 + - uid: 5072 + components: + - type: Transform + pos: 66.5,-21.5 + parent: 2 + - uid: 5073 + components: + - type: Transform + pos: 66.5,-20.5 + parent: 2 + - uid: 5074 + components: + - type: Transform + pos: 66.5,-19.5 + parent: 2 + - uid: 5075 + components: + - type: Transform + pos: 66.5,-18.5 + parent: 2 + - uid: 5076 + components: + - type: Transform + pos: 66.5,-23.5 + parent: 2 + - uid: 5077 + components: + - type: Transform + pos: 66.5,-24.5 + parent: 2 + - uid: 5078 + components: + - type: Transform + pos: 66.5,-25.5 + parent: 2 + - uid: 5079 + components: + - type: Transform + pos: 66.5,-26.5 + parent: 2 + - uid: 5080 + components: + - type: Transform + pos: 66.5,-27.5 + parent: 2 + - uid: 5081 + components: + - type: Transform + pos: 62.5,-25.5 + parent: 2 + - uid: 5082 + components: + - type: Transform + pos: 61.5,-25.5 + parent: 2 + - uid: 5083 + components: + - type: Transform + pos: 63.5,-25.5 + parent: 2 + - uid: 5084 + components: + - type: Transform + pos: 62.5,-26.5 + parent: 2 + - uid: 5085 + components: + - type: Transform + pos: 61.5,-26.5 + parent: 2 + - uid: 5086 + components: + - type: Transform + pos: 60.5,-26.5 + parent: 2 + - uid: 5087 + components: + - type: Transform + pos: 59.5,-26.5 + parent: 2 + - uid: 5088 + components: + - type: Transform + pos: 58.5,-26.5 + parent: 2 + - uid: 5089 + components: + - type: Transform + pos: 57.5,-26.5 + parent: 2 + - uid: 5090 + components: + - type: Transform + pos: 56.5,-26.5 + parent: 2 + - uid: 5091 + components: + - type: Transform + pos: 55.5,-26.5 + parent: 2 + - uid: 5092 + components: + - type: Transform + pos: 54.5,-26.5 + parent: 2 + - uid: 5093 + components: + - type: Transform + pos: 55.5,-32.5 + parent: 2 + - uid: 5094 + components: + - type: Transform + pos: 66.5,-17.5 + parent: 2 + - uid: 5095 + components: + - type: Transform + pos: 70.5,-24.5 + parent: 2 + - uid: 5096 + components: + - type: Transform + pos: 70.5,-23.5 + parent: 2 + - uid: 5097 + components: + - type: Transform + pos: 71.5,-25.5 + parent: 2 + - uid: 5098 + components: + - type: Transform + pos: 72.5,-25.5 + parent: 2 + - uid: 5099 + components: + - type: Transform + pos: 71.5,-22.5 + parent: 2 + - uid: 5100 + components: + - type: Transform + pos: 72.5,-22.5 + parent: 2 + - uid: 5101 + components: + - type: Transform + pos: 66.5,-28.5 + parent: 2 + - uid: 5102 + components: + - type: Transform + pos: 66.5,-29.5 + parent: 2 + - uid: 5103 + components: + - type: Transform + pos: 66.5,-30.5 + parent: 2 + - uid: 5104 + components: + - type: Transform + pos: 66.5,-31.5 + parent: 2 + - uid: 5105 + components: + - type: Transform + pos: 66.5,-32.5 + parent: 2 + - uid: 5106 + components: + - type: Transform + pos: 66.5,-33.5 + parent: 2 + - uid: 5107 + components: + - type: Transform + pos: 66.5,-34.5 + parent: 2 + - uid: 5108 + components: + - type: Transform + pos: 66.5,-35.5 + parent: 2 + - uid: 5109 + components: + - type: Transform + pos: 66.5,-36.5 + parent: 2 + - uid: 5110 + components: + - type: Transform + pos: 66.5,-37.5 + parent: 2 + - uid: 5111 + components: + - type: Transform + pos: 66.5,-38.5 + parent: 2 + - uid: 5112 + components: + - type: Transform + pos: 66.5,-39.5 + parent: 2 + - uid: 5113 + components: + - type: Transform + pos: 66.5,-40.5 + parent: 2 + - uid: 5114 + components: + - type: Transform + pos: 66.5,-41.5 + parent: 2 + - uid: 5115 + components: + - type: Transform + pos: 66.5,-42.5 + parent: 2 + - uid: 5116 + components: + - type: Transform + pos: 66.5,-43.5 + parent: 2 + - uid: 5117 + components: + - type: Transform + pos: 66.5,-44.5 + parent: 2 + - uid: 5118 + components: + - type: Transform + pos: 66.5,-45.5 + parent: 2 + - uid: 5119 + components: + - type: Transform + pos: 66.5,-46.5 + parent: 2 + - uid: 5120 + components: + - type: Transform + pos: 66.5,-47.5 + parent: 2 + - uid: 5121 + components: + - type: Transform + pos: 67.5,-45.5 + parent: 2 + - uid: 5122 + components: + - type: Transform + pos: 67.5,-43.5 + parent: 2 + - uid: 5123 + components: + - type: Transform + pos: 67.5,-47.5 + parent: 2 + - uid: 5124 + components: + - type: Transform + pos: 67.5,-40.5 + parent: 2 + - uid: 5125 + components: + - type: Transform + pos: 68.5,-40.5 + parent: 2 + - uid: 5126 + components: + - type: Transform + pos: 68.5,-39.5 + parent: 2 + - uid: 5127 + components: + - type: Transform + pos: 68.5,-41.5 + parent: 2 + - uid: 5128 + components: + - type: Transform + pos: 71.5,-17.5 + parent: 2 + - uid: 5129 + components: + - type: Transform + pos: 71.5,-16.5 + parent: 2 + - uid: 5130 + components: + - type: Transform + pos: 69.5,-18.5 + parent: 2 + - uid: 5131 + components: + - type: Transform + pos: 69.5,-17.5 + parent: 2 + - uid: 5132 + components: + - type: Transform + pos: 69.5,-16.5 + parent: 2 + - uid: 5133 + components: + - type: Transform + pos: 78.5,-26.5 + parent: 2 + - uid: 5134 + components: + - type: Transform + pos: 78.5,-25.5 + parent: 2 + - uid: 5135 + components: + - type: Transform + pos: 78.5,-24.5 + parent: 2 + - uid: 5136 + components: + - type: Transform + pos: 79.5,-25.5 + parent: 2 + - uid: 5137 + components: + - type: Transform + pos: 80.5,-25.5 + parent: 2 + - uid: 5138 + components: + - type: Transform + pos: 80.5,-26.5 + parent: 2 + - uid: 5139 + components: + - type: Transform + pos: 77.5,-24.5 + parent: 2 + - uid: 5140 + components: + - type: Transform + pos: 76.5,-24.5 + parent: 2 + - uid: 5141 + components: + - type: Transform + pos: 75.5,-24.5 + parent: 2 + - uid: 5142 + components: + - type: Transform + pos: 80.5,-27.5 + parent: 2 + - uid: 5143 + components: + - type: Transform + pos: 77.5,-27.5 + parent: 2 + - uid: 5144 + components: + - type: Transform + pos: 76.5,-25.5 + parent: 2 + - uid: 5145 + components: + - type: Transform + pos: 76.5,-26.5 + parent: 2 + - uid: 5146 + components: + - type: Transform + pos: 81.5,-25.5 + parent: 2 + - uid: 5147 + components: + - type: Transform + pos: 82.5,-25.5 + parent: 2 + - uid: 5148 + components: + - type: Transform + pos: 82.5,-26.5 + parent: 2 + - uid: 5149 + components: + - type: Transform + pos: 82.5,-27.5 + parent: 2 + - uid: 5150 + components: + - type: Transform + pos: 82.5,-28.5 + parent: 2 + - uid: 5151 + components: + - type: Transform + pos: 82.5,-29.5 + parent: 2 + - uid: 5152 + components: + - type: Transform + pos: 81.5,-29.5 + parent: 2 + - uid: 5153 + components: + - type: Transform + pos: 80.5,-29.5 + parent: 2 + - uid: 5154 + components: + - type: Transform + pos: 79.5,-29.5 + parent: 2 + - uid: 5155 + components: + - type: Transform + pos: 11.5,-34.5 + parent: 2 + - uid: 5156 + components: + - type: Transform + pos: 81.5,-24.5 + parent: 2 + - uid: 5157 + components: + - type: Transform + pos: 58.5,-20.5 + parent: 2 + - uid: 5158 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 2 + - uid: 5159 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 + - uid: 5160 + components: + - type: Transform + pos: 55.5,-20.5 + parent: 2 + - uid: 5161 + components: + - type: Transform + pos: 54.5,-20.5 + parent: 2 + - uid: 5162 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 2 + - uid: 5163 + components: + - type: Transform + pos: 52.5,-20.5 + parent: 2 + - uid: 5164 + components: + - type: Transform + pos: 52.5,-19.5 + parent: 2 + - uid: 5165 + components: + - type: Transform + pos: 52.5,-18.5 + parent: 2 + - uid: 5166 + components: + - type: Transform + pos: 52.5,-17.5 + parent: 2 + - uid: 5167 + components: + - type: Transform + pos: 53.5,-17.5 + parent: 2 + - uid: 5168 + components: + - type: Transform + pos: 54.5,-17.5 + parent: 2 + - uid: 5169 + components: + - type: Transform + pos: 55.5,-17.5 + parent: 2 + - uid: 5170 + components: + - type: Transform + pos: 56.5,-17.5 + parent: 2 + - uid: 5171 + components: + - type: Transform + pos: 56.5,-18.5 + parent: 2 + - uid: 5172 + components: + - type: Transform + pos: 56.5,-19.5 + parent: 2 + - uid: 5173 + components: + - type: Transform + pos: 58.5,-19.5 + parent: 2 + - uid: 5174 + components: + - type: Transform + pos: 58.5,-18.5 + parent: 2 + - uid: 5175 + components: + - type: Transform + pos: 58.5,-17.5 + parent: 2 + - uid: 5176 + components: + - type: Transform + pos: 59.5,-18.5 + parent: 2 + - uid: 5177 + components: + - type: Transform + pos: 60.5,-18.5 + parent: 2 + - uid: 5178 + components: + - type: Transform + pos: 61.5,-18.5 + parent: 2 + - uid: 5179 + components: + - type: Transform + pos: 62.5,-18.5 + parent: 2 + - uid: 5180 + components: + - type: Transform + pos: 62.5,-19.5 + parent: 2 + - uid: 5181 + components: + - type: Transform + pos: 62.5,-20.5 + parent: 2 + - uid: 5182 + components: + - type: Transform + pos: 62.5,-21.5 + parent: 2 + - uid: 5183 + components: + - type: Transform + pos: 62.5,-22.5 + parent: 2 + - uid: 5184 + components: + - type: Transform + pos: 62.5,-23.5 + parent: 2 + - uid: 5185 + components: + - type: Transform + pos: 61.5,-23.5 + parent: 2 + - uid: 5186 + components: + - type: Transform + pos: 60.5,-23.5 + parent: 2 + - uid: 5187 + components: + - type: Transform + pos: 59.5,-23.5 + parent: 2 + - uid: 5188 + components: + - type: Transform + pos: 58.5,-23.5 + parent: 2 + - uid: 5189 + components: + - type: Transform + pos: 57.5,-23.5 + parent: 2 + - uid: 5190 + components: + - type: Transform + pos: 56.5,-23.5 + parent: 2 + - uid: 5191 + components: + - type: Transform + pos: 55.5,-23.5 + parent: 2 + - uid: 5192 + components: + - type: Transform + pos: 54.5,-23.5 + parent: 2 + - uid: 5193 + components: + - type: Transform + pos: 53.5,-23.5 + parent: 2 + - uid: 5194 + components: + - type: Transform + pos: 52.5,-23.5 + parent: 2 + - uid: 5195 + components: + - type: Transform + pos: 57.5,-21.5 + parent: 2 + - uid: 5196 + components: + - type: Transform + pos: 57.5,-22.5 + parent: 2 + - uid: 5197 + components: + - type: Transform + pos: 63.5,-22.5 + parent: 2 + - uid: 5198 + components: + - type: Transform + pos: 64.5,-22.5 + parent: 2 + - uid: 5199 + components: + - type: Transform + pos: 62.5,-24.5 + parent: 2 + - uid: 5200 + components: + - type: Transform + pos: 55.5,-31.5 + parent: 2 + - uid: 5201 + components: + - type: Transform + pos: 55.5,-30.5 + parent: 2 + - uid: 5202 + components: + - type: Transform + pos: 54.5,-30.5 + parent: 2 + - uid: 5203 + components: + - type: Transform + pos: 53.5,-30.5 + parent: 2 + - uid: 5204 + components: + - type: Transform + pos: 56.5,-30.5 + parent: 2 + - uid: 5205 + components: + - type: Transform + pos: 58.5,-30.5 + parent: 2 + - uid: 5206 + components: + - type: Transform + pos: 59.5,-30.5 + parent: 2 + - uid: 5207 + components: + - type: Transform + pos: 60.5,-30.5 + parent: 2 + - uid: 5208 + components: + - type: Transform + pos: 61.5,-30.5 + parent: 2 + - uid: 5209 + components: + - type: Transform + pos: 62.5,-30.5 + parent: 2 + - uid: 5210 + components: + - type: Transform + pos: 61.5,-29.5 + parent: 2 + - uid: 5211 + components: + - type: Transform + pos: 61.5,-31.5 + parent: 2 + - uid: 5212 + components: + - type: Transform + pos: 63.5,-30.5 + parent: 2 + - uid: 5213 + components: + - type: Transform + pos: 54.5,-29.5 + parent: 2 + - uid: 5214 + components: + - type: Transform + pos: 54.5,-31.5 + parent: 2 + - uid: 5215 + components: + - type: Transform + pos: 58.5,-36.5 + parent: 2 + - uid: 5216 + components: + - type: Transform + pos: 59.5,-36.5 + parent: 2 + - uid: 5217 + components: + - type: Transform + pos: 60.5,-36.5 + parent: 2 + - uid: 5218 + components: + - type: Transform + pos: 61.5,-36.5 + parent: 2 + - uid: 5219 + components: + - type: Transform + pos: 62.5,-36.5 + parent: 2 + - uid: 5220 + components: + - type: Transform + pos: 62.5,-35.5 + parent: 2 + - uid: 5221 + components: + - type: Transform + pos: 62.5,-34.5 + parent: 2 + - uid: 5222 + components: + - type: Transform + pos: 61.5,-34.5 + parent: 2 + - uid: 5223 + components: + - type: Transform + pos: 60.5,-34.5 + parent: 2 + - uid: 5224 + components: + - type: Transform + pos: 60.5,-35.5 + parent: 2 + - uid: 5225 + components: + - type: Transform + pos: 62.5,-40.5 + parent: 2 + - uid: 5226 + components: + - type: Transform + pos: 63.5,-40.5 + parent: 2 + - uid: 5227 + components: + - type: Transform + pos: 64.5,-40.5 + parent: 2 + - uid: 5228 + components: + - type: Transform + pos: 58.5,-44.5 + parent: 2 + - uid: 5229 + components: + - type: Transform + pos: 71.5,-52.5 + parent: 2 + - uid: 5230 + components: + - type: Transform + pos: 53.5,-44.5 + parent: 2 + - uid: 5231 + components: + - type: Transform + pos: 70.5,-52.5 + parent: 2 + - uid: 5232 + components: + - type: Transform + pos: 69.5,-52.5 + parent: 2 + - uid: 5233 + components: + - type: Transform + pos: 68.5,-52.5 + parent: 2 + - uid: 5234 + components: + - type: Transform + pos: 67.5,-52.5 + parent: 2 + - uid: 5235 + components: + - type: Transform + pos: 66.5,-52.5 + parent: 2 + - uid: 5236 + components: + - type: Transform + pos: 66.5,-51.5 + parent: 2 + - uid: 5237 + components: + - type: Transform + pos: 66.5,-50.5 + parent: 2 + - uid: 5238 + components: + - type: Transform + pos: 66.5,-49.5 + parent: 2 + - uid: 5239 + components: + - type: Transform + pos: 67.5,-49.5 + parent: 2 + - uid: 5240 + components: + - type: Transform + pos: 65.5,-49.5 + parent: 2 + - uid: 5241 + components: + - type: Transform + pos: 71.5,-51.5 + parent: 2 + - uid: 5242 + components: + - type: Transform + pos: 71.5,-50.5 + parent: 2 + - uid: 5243 + components: + - type: Transform + pos: 71.5,-49.5 + parent: 2 + - uid: 5244 + components: + - type: Transform + pos: 72.5,-49.5 + parent: 2 + - uid: 5245 + components: + - type: Transform + pos: 73.5,-49.5 + parent: 2 + - uid: 5246 + components: + - type: Transform + pos: 74.5,-49.5 + parent: 2 + - uid: 5247 + components: + - type: Transform + pos: 75.5,-49.5 + parent: 2 + - uid: 5248 + components: + - type: Transform + pos: 81.5,-51.5 + parent: 2 + - uid: 5249 + components: + - type: Transform + pos: 72.5,-52.5 + parent: 2 + - uid: 5250 + components: + - type: Transform + pos: 73.5,-52.5 + parent: 2 + - uid: 5251 + components: + - type: Transform + pos: 74.5,-52.5 + parent: 2 + - uid: 5252 + components: + - type: Transform + pos: 75.5,-52.5 + parent: 2 + - uid: 5253 + components: + - type: Transform + pos: 75.5,-51.5 + parent: 2 + - uid: 5254 + components: + - type: Transform + pos: 75.5,-53.5 + parent: 2 + - uid: 5255 + components: + - type: Transform + pos: 73.5,-53.5 + parent: 2 + - uid: 5256 + components: + - type: Transform + pos: 73.5,-54.5 + parent: 2 + - uid: 5257 + components: + - type: Transform + pos: 73.5,-55.5 + parent: 2 + - uid: 5258 + components: + - type: Transform + pos: 73.5,-56.5 + parent: 2 + - uid: 5259 + components: + - type: Transform + pos: 75.5,-42.5 + parent: 2 + - uid: 5260 + components: + - type: Transform + pos: 75.5,-43.5 + parent: 2 + - uid: 5261 + components: + - type: Transform + pos: 75.5,-44.5 + parent: 2 + - uid: 5262 + components: + - type: Transform + pos: 75.5,-45.5 + parent: 2 + - uid: 5263 + components: + - type: Transform + pos: 74.5,-45.5 + parent: 2 + - uid: 5264 + components: + - type: Transform + pos: 73.5,-45.5 + parent: 2 + - uid: 5265 + components: + - type: Transform + pos: 72.5,-45.5 + parent: 2 + - uid: 5266 + components: + - type: Transform + pos: 71.5,-45.5 + parent: 2 + - uid: 5267 + components: + - type: Transform + pos: 70.5,-45.5 + parent: 2 + - uid: 5268 + components: + - type: Transform + pos: 69.5,-45.5 + parent: 2 + - uid: 5269 + components: + - type: Transform + pos: 69.5,-44.5 + parent: 2 + - uid: 5270 + components: + - type: Transform + pos: 69.5,-46.5 + parent: 2 + - uid: 5271 + components: + - type: Transform + pos: 78.5,-46.5 + parent: 2 + - uid: 5272 + components: + - type: Transform + pos: 77.5,-46.5 + parent: 2 + - uid: 5273 + components: + - type: Transform + pos: 76.5,-46.5 + parent: 2 + - uid: 5274 + components: + - type: Transform + pos: 75.5,-46.5 + parent: 2 + - uid: 5275 + components: + - type: Transform + pos: 79.5,-46.5 + parent: 2 + - uid: 5276 + components: + - type: Transform + pos: 77.5,-45.5 + parent: 2 + - uid: 5277 + components: + - type: Transform + pos: 77.5,-44.5 + parent: 2 + - uid: 5278 + components: + - type: Transform + pos: 77.5,-43.5 + parent: 2 + - uid: 5279 + components: + - type: Transform + pos: 77.5,-42.5 + parent: 2 + - uid: 5280 + components: + - type: Transform + pos: 77.5,-41.5 + parent: 2 + - uid: 5281 + components: + - type: Transform + pos: 77.5,-40.5 + parent: 2 + - uid: 5282 + components: + - type: Transform + pos: 77.5,-39.5 + parent: 2 + - uid: 5283 + components: + - type: Transform + pos: 77.5,-38.5 + parent: 2 + - uid: 5284 + components: + - type: Transform + pos: 77.5,-37.5 + parent: 2 + - uid: 5285 + components: + - type: Transform + pos: 77.5,-36.5 + parent: 2 + - uid: 5286 + components: + - type: Transform + pos: 77.5,-35.5 + parent: 2 + - uid: 5287 + components: + - type: Transform + pos: 77.5,-34.5 + parent: 2 + - uid: 5288 + components: + - type: Transform + pos: 77.5,-33.5 + parent: 2 + - uid: 5289 + components: + - type: Transform + pos: 76.5,-40.5 + parent: 2 + - uid: 5290 + components: + - type: Transform + pos: 75.5,-40.5 + parent: 2 + - uid: 5291 + components: + - type: Transform + pos: 74.5,-40.5 + parent: 2 + - uid: 5292 + components: + - type: Transform + pos: 73.5,-40.5 + parent: 2 + - uid: 5293 + components: + - type: Transform + pos: 72.5,-40.5 + parent: 2 + - uid: 5294 + components: + - type: Transform + pos: 69.5,-38.5 + parent: 2 + - uid: 5295 + components: + - type: Transform + pos: 69.5,-37.5 + parent: 2 + - uid: 5296 + components: + - type: Transform + pos: 69.5,-36.5 + parent: 2 + - uid: 5297 + components: + - type: Transform + pos: 70.5,-36.5 + parent: 2 + - uid: 5298 + components: + - type: Transform + pos: 71.5,-36.5 + parent: 2 + - uid: 5299 + components: + - type: Transform + pos: 71.5,-35.5 + parent: 2 + - uid: 5300 + components: + - type: Transform + pos: 72.5,-33.5 + parent: 2 + - uid: 5301 + components: + - type: Transform + pos: 71.5,-33.5 + parent: 2 + - uid: 5302 + components: + - type: Transform + pos: 74.5,-36.5 + parent: 2 + - uid: 5303 + components: + - type: Transform + pos: 73.5,-36.5 + parent: 2 + - uid: 5304 + components: + - type: Transform + pos: -13.5,41.5 + parent: 2 + - uid: 5305 + components: + - type: Transform + pos: 70.5,-34.5 + parent: 2 + - uid: 5306 + components: + - type: Transform + pos: 69.5,-34.5 + parent: 2 + - uid: 5307 + components: + - type: Transform + pos: 68.5,-34.5 + parent: 2 + - uid: 5308 + components: + - type: Transform + pos: 68.5,-33.5 + parent: 2 + - uid: 5309 + components: + - type: Transform + pos: 52.5,-44.5 + parent: 2 + - uid: 5310 + components: + - type: Transform + pos: 12.5,-34.5 + parent: 2 + - uid: 5311 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 2 + - uid: 5312 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 2 + - uid: 5313 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 2 + - uid: 5314 + components: + - type: Transform + pos: 64.5,-47.5 + parent: 2 + - uid: 5315 + components: + - type: Transform + pos: -22.5,-45.5 + parent: 2 + - uid: 5316 + components: + - type: Transform + pos: -78.5,-14.5 + parent: 2 + - uid: 5317 + components: + - type: Transform + pos: -79.5,-14.5 + parent: 2 + - uid: 5318 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 2 + - uid: 5319 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 2 + - uid: 5320 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 2 + - uid: 5321 + components: + - type: Transform + pos: 7.5,-36.5 + parent: 2 + - uid: 5322 + components: + - type: Transform + pos: 6.5,-36.5 + parent: 2 + - uid: 5323 + components: + - type: Transform + pos: 5.5,-36.5 + parent: 2 + - uid: 5324 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 2 + - uid: 5325 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 2 + - uid: 5326 + components: + - type: Transform + pos: 3.5,-35.5 + parent: 2 + - uid: 5327 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 2 + - uid: 5328 + components: + - type: Transform + pos: 6.5,-33.5 + parent: 2 + - uid: 5329 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 2 + - uid: 5330 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 2 + - uid: 5331 + components: + - type: Transform + pos: 2.5,-33.5 + parent: 2 + - uid: 5332 + components: + - type: Transform + pos: 7.5,-33.5 + parent: 2 + - uid: 5333 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 2 + - uid: 5334 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + - uid: 5335 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 5336 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 2 + - uid: 5337 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 5338 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 5339 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 5340 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 2 + - uid: 5341 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 + - uid: 5342 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 2 + - uid: 5343 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 5344 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 + - uid: 5345 + components: + - type: Transform + pos: 58.5,-52.5 + parent: 2 + - uid: 5346 + components: + - type: Transform + pos: 17.5,31.5 + parent: 2 + - uid: 5347 + components: + - type: Transform + pos: -10.5,48.5 + parent: 2 + - uid: 5348 + components: + - type: Transform + pos: -11.5,48.5 + parent: 2 + - uid: 5349 + components: + - type: Transform + pos: -11.5,49.5 + parent: 2 + - uid: 5350 + components: + - type: Transform + pos: -11.5,50.5 + parent: 2 + - uid: 5351 + components: + - type: Transform + pos: -11.5,51.5 + parent: 2 + - uid: 5352 + components: + - type: Transform + pos: -11.5,52.5 + parent: 2 + - uid: 5353 + components: + - type: Transform + pos: -11.5,53.5 + parent: 2 + - uid: 5354 + components: + - type: Transform + pos: -12.5,51.5 + parent: 2 + - uid: 5355 + components: + - type: Transform + pos: -13.5,51.5 + parent: 2 + - uid: 5356 + components: + - type: Transform + pos: -14.5,51.5 + parent: 2 + - uid: 5357 + components: + - type: Transform + pos: -15.5,51.5 + parent: 2 + - uid: 5358 + components: + - type: Transform + pos: -12.5,49.5 + parent: 2 + - uid: 5359 + components: + - type: Transform + pos: -13.5,49.5 + parent: 2 + - uid: 5360 + components: + - type: Transform + pos: -14.5,49.5 + parent: 2 + - uid: 5361 + components: + - type: Transform + pos: -15.5,49.5 + parent: 2 + - uid: 5362 + components: + - type: Transform + pos: -6.5,50.5 + parent: 2 + - uid: 5363 + components: + - type: Transform + pos: -5.5,50.5 + parent: 2 + - uid: 5364 + components: + - type: Transform + pos: 0.5,52.5 + parent: 2 + - uid: 5365 + components: + - type: Transform + pos: 0.5,51.5 + parent: 2 + - uid: 5366 + components: + - type: Transform + pos: 0.5,50.5 + parent: 2 + - uid: 5367 + components: + - type: Transform + pos: 0.5,49.5 + parent: 2 + - uid: 5368 + components: + - type: Transform + pos: 0.5,48.5 + parent: 2 + - uid: 5369 + components: + - type: Transform + pos: 0.5,47.5 + parent: 2 + - uid: 5370 + components: + - type: Transform + pos: -0.5,50.5 + parent: 2 + - uid: 5371 + components: + - type: Transform + pos: -1.5,50.5 + parent: 2 + - uid: 5372 + components: + - type: Transform + pos: -1.5,49.5 + parent: 2 + - uid: 5373 + components: + - type: Transform + pos: -1.5,48.5 + parent: 2 + - uid: 5374 + components: + - type: Transform + pos: -1.5,47.5 + parent: 2 + - uid: 5375 + components: + - type: Transform + pos: 1.5,50.5 + parent: 2 + - uid: 5376 + components: + - type: Transform + pos: 2.5,50.5 + parent: 2 + - uid: 5377 + components: + - type: Transform + pos: 3.5,50.5 + parent: 2 + - uid: 5378 + components: + - type: Transform + pos: 3.5,49.5 + parent: 2 + - uid: 5379 + components: + - type: Transform + pos: 3.5,48.5 + parent: 2 + - uid: 5380 + components: + - type: Transform + pos: 3.5,47.5 + parent: 2 + - uid: 5381 + components: + - type: Transform + pos: 29.5,-111.5 + parent: 2 + - uid: 5382 + components: + - type: Transform + pos: 28.5,-111.5 + parent: 2 + - uid: 5383 + components: + - type: Transform + pos: 28.5,-110.5 + parent: 2 + - uid: 5384 + components: + - type: Transform + pos: 28.5,-109.5 + parent: 2 + - uid: 5385 + components: + - type: Transform + pos: 28.5,-108.5 + parent: 2 + - uid: 5386 + components: + - type: Transform + pos: 29.5,-109.5 + parent: 2 + - uid: 5387 + components: + - type: Transform + pos: 30.5,-109.5 + parent: 2 + - uid: 5388 + components: + - type: Transform + pos: 31.5,-109.5 + parent: 2 + - uid: 5389 + components: + - type: Transform + pos: 31.5,-111.5 + parent: 2 + - uid: 5390 + components: + - type: Transform + pos: 31.5,-110.5 + parent: 2 + - uid: 5391 + components: + - type: Transform + pos: 31.5,-112.5 + parent: 2 + - uid: 5392 + components: + - type: Transform + pos: 31.5,-113.5 + parent: 2 + - uid: 5393 + components: + - type: Transform + pos: 31.5,-114.5 + parent: 2 + - uid: 5394 + components: + - type: Transform + pos: 31.5,-115.5 + parent: 2 + - uid: 5395 + components: + - type: Transform + pos: 30.5,-115.5 + parent: 2 + - uid: 5396 + components: + - type: Transform + pos: 29.5,-115.5 + parent: 2 + - uid: 5397 + components: + - type: Transform + pos: 28.5,-115.5 + parent: 2 + - uid: 5398 + components: + - type: Transform + pos: 27.5,-115.5 + parent: 2 + - uid: 5399 + components: + - type: Transform + pos: 26.5,-115.5 + parent: 2 + - uid: 5400 + components: + - type: Transform + pos: 25.5,-115.5 + parent: 2 + - uid: 5401 + components: + - type: Transform + pos: 25.5,-114.5 + parent: 2 + - uid: 5402 + components: + - type: Transform + pos: 25.5,-113.5 + parent: 2 + - uid: 5403 + components: + - type: Transform + pos: 25.5,-112.5 + parent: 2 + - uid: 5404 + components: + - type: Transform + pos: 25.5,-111.5 + parent: 2 + - uid: 5405 + components: + - type: Transform + pos: 25.5,-110.5 + parent: 2 + - uid: 5406 + components: + - type: Transform + pos: 25.5,-109.5 + parent: 2 + - uid: 5407 + components: + - type: Transform + pos: 26.5,-109.5 + parent: 2 + - uid: 5408 + components: + - type: Transform + pos: 27.5,-109.5 + parent: 2 + - uid: 5409 + components: + - type: Transform + pos: 28.5,-107.5 + parent: 2 + - uid: 5410 + components: + - type: Transform + pos: 28.5,-106.5 + parent: 2 + - uid: 5411 + components: + - type: Transform + pos: 27.5,-106.5 + parent: 2 + - uid: 5412 + components: + - type: Transform + pos: 29.5,-106.5 + parent: 2 + - uid: 5413 + components: + - type: Transform + pos: 31.5,-100.5 + parent: 2 + - uid: 5414 + components: + - type: Transform + pos: 30.5,-100.5 + parent: 2 + - uid: 5415 + components: + - type: Transform + pos: 29.5,-103.5 + parent: 2 + - uid: 5416 + components: + - type: Transform + pos: 29.5,-102.5 + parent: 2 + - uid: 5417 + components: + - type: Transform + pos: 29.5,-101.5 + parent: 2 + - uid: 5418 + components: + - type: Transform + pos: 29.5,-100.5 + parent: 2 + - uid: 5419 + components: + - type: Transform + pos: 29.5,-99.5 + parent: 2 + - uid: 5420 + components: + - type: Transform + pos: 29.5,-98.5 + parent: 2 + - uid: 5421 + components: + - type: Transform + pos: 29.5,-97.5 + parent: 2 + - uid: 5422 + components: + - type: Transform + pos: 29.5,-96.5 + parent: 2 + - uid: 5423 + components: + - type: Transform + pos: 29.5,-95.5 + parent: 2 + - uid: 5424 + components: + - type: Transform + pos: 27.5,-95.5 + parent: 2 + - uid: 5425 + components: + - type: Transform + pos: 27.5,-96.5 + parent: 2 + - uid: 5426 + components: + - type: Transform + pos: 27.5,-97.5 + parent: 2 + - uid: 5427 + components: + - type: Transform + pos: 27.5,-98.5 + parent: 2 + - uid: 5428 + components: + - type: Transform + pos: 27.5,-99.5 + parent: 2 + - uid: 5429 + components: + - type: Transform + pos: 27.5,-100.5 + parent: 2 + - uid: 5430 + components: + - type: Transform + pos: 27.5,-101.5 + parent: 2 + - uid: 5431 + components: + - type: Transform + pos: 27.5,-102.5 + parent: 2 + - uid: 5432 + components: + - type: Transform + pos: 27.5,-103.5 + parent: 2 + - uid: 5433 + components: + - type: Transform + pos: 28.5,-100.5 + parent: 2 + - uid: 5434 + components: + - type: Transform + pos: 32.5,-100.5 + parent: 2 + - uid: 5435 + components: + - type: Transform + pos: 32.5,-101.5 + parent: 2 + - uid: 5436 + components: + - type: Transform + pos: 32.5,-102.5 + parent: 2 + - uid: 5437 + components: + - type: Transform + pos: 32.5,-103.5 + parent: 2 + - uid: 5438 + components: + - type: Transform + pos: 33.5,-103.5 + parent: 2 + - uid: 5439 + components: + - type: Transform + pos: 33.5,-104.5 + parent: 2 + - uid: 5440 + components: + - type: Transform + pos: 32.5,-99.5 + parent: 2 + - uid: 5441 + components: + - type: Transform + pos: 32.5,-98.5 + parent: 2 + - uid: 5442 + components: + - type: Transform + pos: 32.5,-97.5 + parent: 2 + - uid: 5443 + components: + - type: Transform + pos: 32.5,-96.5 + parent: 2 + - uid: 5444 + components: + - type: Transform + pos: 35.5,-92.5 + parent: 2 + - uid: 5445 + components: + - type: Transform + pos: 34.5,-92.5 + parent: 2 + - uid: 5446 + components: + - type: Transform + pos: 33.5,-92.5 + parent: 2 + - uid: 5447 + components: + - type: Transform + pos: 32.5,-92.5 + parent: 2 + - uid: 5448 + components: + - type: Transform + pos: 31.5,-92.5 + parent: 2 + - uid: 5449 + components: + - type: Transform + pos: 32.5,-91.5 + parent: 2 + - uid: 5450 + components: + - type: Transform + pos: 32.5,-90.5 + parent: 2 + - uid: 5451 + components: + - type: Transform + pos: 32.5,-89.5 + parent: 2 + - uid: 5452 + components: + - type: Transform + pos: 32.5,-88.5 + parent: 2 + - uid: 5453 + components: + - type: Transform + pos: 32.5,-93.5 + parent: 2 + - uid: 5454 + components: + - type: Transform + pos: 21.5,-92.5 + parent: 2 + - uid: 5455 + components: + - type: Transform + pos: 22.5,-92.5 + parent: 2 + - uid: 5456 + components: + - type: Transform + pos: 23.5,-92.5 + parent: 2 + - uid: 5457 + components: + - type: Transform + pos: 24.5,-92.5 + parent: 2 + - uid: 5458 + components: + - type: Transform + pos: 24.5,-91.5 + parent: 2 + - uid: 5459 + components: + - type: Transform + pos: 24.5,-90.5 + parent: 2 + - uid: 5460 + components: + - type: Transform + pos: 24.5,-89.5 + parent: 2 + - uid: 5461 + components: + - type: Transform + pos: 24.5,-93.5 + parent: 2 + - uid: 5462 + components: + - type: Transform + pos: 24.5,-94.5 + parent: 2 + - uid: 5463 + components: + - type: Transform + pos: 24.5,-95.5 + parent: 2 + - uid: 5464 + components: + - type: Transform + pos: 24.5,-96.5 + parent: 2 + - uid: 5465 + components: + - type: Transform + pos: 24.5,-97.5 + parent: 2 + - uid: 5466 + components: + - type: Transform + pos: 24.5,-98.5 + parent: 2 + - uid: 5467 + components: + - type: Transform + pos: 24.5,-99.5 + parent: 2 + - uid: 5468 + components: + - type: Transform + pos: 24.5,-100.5 + parent: 2 + - uid: 5469 + components: + - type: Transform + pos: 24.5,-101.5 + parent: 2 + - uid: 5470 + components: + - type: Transform + pos: 24.5,-102.5 + parent: 2 + - uid: 5471 + components: + - type: Transform + pos: 24.5,-103.5 + parent: 2 + - uid: 5472 + components: + - type: Transform + pos: 23.5,-103.5 + parent: 2 + - uid: 5473 + components: + - type: Transform + pos: 23.5,-104.5 + parent: 2 + - uid: 5474 + components: + - type: Transform + pos: 31.5,-86.5 + parent: 2 + - uid: 5475 + components: + - type: Transform + pos: 30.5,-86.5 + parent: 2 + - uid: 5476 + components: + - type: Transform + pos: 29.5,-86.5 + parent: 2 + - uid: 5477 + components: + - type: Transform + pos: 28.5,-86.5 + parent: 2 + - uid: 5478 + components: + - type: Transform + pos: 28.5,-87.5 + parent: 2 + - uid: 5479 + components: + - type: Transform + pos: 28.5,-88.5 + parent: 2 + - uid: 5480 + components: + - type: Transform + pos: 28.5,-89.5 + parent: 2 + - uid: 5481 + components: + - type: Transform + pos: 28.5,-90.5 + parent: 2 + - uid: 5482 + components: + - type: Transform + pos: 28.5,-91.5 + parent: 2 + - uid: 5483 + components: + - type: Transform + pos: 28.5,-92.5 + parent: 2 + - uid: 5484 + components: + - type: Transform + pos: 28.5,-93.5 + parent: 2 + - uid: 5485 + components: + - type: Transform + pos: 28.5,-85.5 + parent: 2 + - uid: 5486 + components: + - type: Transform + pos: 28.5,-84.5 + parent: 2 + - uid: 5487 + components: + - type: Transform + pos: 28.5,-83.5 + parent: 2 + - uid: 5488 + components: + - type: Transform + pos: 28.5,-82.5 + parent: 2 + - uid: 5489 + components: + - type: Transform + pos: 28.5,-81.5 + parent: 2 + - uid: 5490 + components: + - type: Transform + pos: 28.5,-80.5 + parent: 2 + - uid: 5491 + components: + - type: Transform + pos: 28.5,-79.5 + parent: 2 + - uid: 5492 + components: + - type: Transform + pos: 28.5,-78.5 + parent: 2 + - uid: 5493 + components: + - type: Transform + pos: 27.5,-80.5 + parent: 2 + - uid: 5494 + components: + - type: Transform + pos: 26.5,-80.5 + parent: 2 + - uid: 5495 + components: + - type: Transform + pos: 25.5,-80.5 + parent: 2 + - uid: 5496 + components: + - type: Transform + pos: 29.5,-85.5 + parent: 2 + - uid: 5497 + components: + - type: Transform + pos: 30.5,-85.5 + parent: 2 + - uid: 5498 + components: + - type: Transform + pos: 31.5,-85.5 + parent: 2 + - uid: 5499 + components: + - type: Transform + pos: 32.5,-85.5 + parent: 2 + - uid: 5500 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 5501 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 + - uid: 5502 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 + - uid: 5503 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 2 + - uid: 5504 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 2 + - uid: 5505 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - uid: 5506 + components: + - type: Transform + pos: -14.5,-50.5 + parent: 2 + - uid: 5507 + components: + - type: Transform + pos: -12.5,-50.5 + parent: 2 + - uid: 5508 + components: + - type: Transform + pos: -12.5,-56.5 + parent: 2 + - uid: 5509 + components: + - type: Transform + pos: -14.5,-56.5 + parent: 2 + - uid: 5510 + components: + - type: Transform + pos: -11.5,-50.5 + parent: 2 + - uid: 5511 + components: + - type: Transform + pos: -15.5,-50.5 + parent: 2 + - uid: 5512 + components: + - type: Transform + pos: -15.5,-56.5 + parent: 2 + - uid: 5513 + components: + - type: Transform + pos: -11.5,-56.5 + parent: 2 + - uid: 5514 + components: + - type: Transform + pos: 44.5,-44.5 + parent: 2 + - uid: 5515 + components: + - type: Transform + pos: 44.5,-43.5 + parent: 2 + - uid: 5516 + components: + - type: Transform + pos: -19.5,18.5 + parent: 2 + - uid: 5517 + components: + - type: Transform + pos: -17.5,20.5 + parent: 2 + - uid: 5518 + components: + - type: Transform + pos: -16.5,20.5 + parent: 2 + - uid: 5519 + components: + - type: Transform + pos: -14.5,38.5 + parent: 2 + - uid: 5520 + components: + - type: Transform + pos: 48.5,-40.5 + parent: 2 + - uid: 5521 + components: + - type: Transform + pos: 45.5,-43.5 + parent: 2 + - uid: 5522 + components: + - type: Transform + pos: 68.5,-26.5 + parent: 2 + - uid: 5523 + components: + - type: Transform + pos: -5.5,-50.5 + parent: 2 + - uid: 5524 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 2 + - uid: 5525 + components: + - type: Transform + pos: 0.5,34.5 + parent: 2 + - uid: 5526 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 5527 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 5528 + components: + - type: Transform + pos: -1.5,31.5 + parent: 2 + - uid: 5529 + components: + - type: Transform + pos: -1.5,32.5 + parent: 2 + - uid: 5530 + components: + - type: Transform + pos: 13.5,40.5 + parent: 2 + - uid: 5531 + components: + - type: Transform + pos: 14.5,40.5 + parent: 2 + - uid: 5532 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 2 + - uid: 5533 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - uid: 5534 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 5535 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 5536 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 + - uid: 5537 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - uid: 5538 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 + - uid: 5539 + components: + - type: Transform + pos: 52.5,-38.5 + parent: 2 + - uid: 5540 + components: + - type: Transform + pos: 52.5,-40.5 + parent: 2 + - uid: 5541 + components: + - type: Transform + pos: 58.5,-40.5 + parent: 2 + - uid: 5542 + components: + - type: Transform + pos: 16.5,38.5 + parent: 2 + - uid: 5543 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 + - uid: 5544 + components: + - type: Transform + pos: 57.5,-44.5 + parent: 2 + - uid: 5545 + components: + - type: Transform + pos: 57.5,-42.5 + parent: 2 + - uid: 5546 + components: + - type: Transform + pos: 57.5,-41.5 + parent: 2 + - uid: 5547 + components: + - type: Transform + pos: 57.5,-43.5 + parent: 2 + - uid: 5548 + components: + - type: Transform + pos: -14.5,37.5 + parent: 2 + - uid: 5549 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 2 + - uid: 5550 + components: + - type: Transform + pos: -24.5,-36.5 + parent: 2 + - uid: 5551 + components: + - type: Transform + pos: -24.5,-37.5 + parent: 2 + - uid: 5552 + components: + - type: Transform + pos: 58.5,-56.5 + parent: 2 + - uid: 5553 + components: + - type: Transform + pos: 53.5,-52.5 + parent: 2 + - uid: 5554 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 + - uid: 5555 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 5556 + components: + - type: Transform + pos: -14.5,32.5 + parent: 2 + - uid: 5557 + components: + - type: Transform + pos: -14.5,30.5 + parent: 2 + - uid: 5558 + components: + - type: Transform + pos: -26.5,-37.5 + parent: 2 + - uid: 5559 + components: + - type: Transform + pos: -25.5,-37.5 + parent: 2 + - uid: 5560 + components: + - type: Transform + pos: 12.5,37.5 + parent: 2 + - uid: 5561 + components: + - type: Transform + pos: -27.5,-37.5 + parent: 2 + - uid: 5562 + components: + - type: Transform + pos: 15.5,38.5 + parent: 2 + - uid: 5563 + components: + - type: Transform + pos: 9.5,33.5 + parent: 2 + - uid: 5564 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - uid: 5565 + components: + - type: Transform + pos: -35.5,-45.5 + parent: 2 + - uid: 5566 + components: + - type: Transform + pos: 57.5,-46.5 + parent: 2 + - uid: 5567 + components: + - type: Transform + pos: -14.5,1.5 + parent: 2 + - uid: 5568 + components: + - type: Transform + pos: -16.5,25.5 + parent: 2 + - uid: 5569 + components: + - type: Transform + pos: -28.5,-37.5 + parent: 2 + - uid: 5570 + components: + - type: Transform + pos: -29.5,-37.5 + parent: 2 + - uid: 5571 + components: + - type: Transform + pos: -16.5,26.5 + parent: 2 + - uid: 5572 + components: + - type: Transform + pos: 58.5,-39.5 + parent: 2 + - uid: 5573 + components: + - type: Transform + pos: -10.5,-27.5 + parent: 2 + - uid: 5574 + components: + - type: Transform + pos: 52.5,-39.5 + parent: 2 + - uid: 5575 + components: + - type: Transform + pos: 56.5,-40.5 + parent: 2 + - uid: 5576 + components: + - type: Transform + pos: 58.5,-38.5 + parent: 2 + - uid: 5577 + components: + - type: Transform + pos: -28.5,-20.5 + parent: 2 + - uid: 5578 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - uid: 5579 + components: + - type: Transform + pos: 93.5,-28.5 + parent: 2 + - uid: 5580 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 + - uid: 5581 + components: + - type: Transform + pos: -5.5,8.5 + parent: 2 + - uid: 5582 + components: + - type: Transform + pos: 38.5,11.5 + parent: 2 + - uid: 5583 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 2 + - uid: 5584 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 2 + - uid: 5585 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 2 + - uid: 5586 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 5587 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 2 + - uid: 5588 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 5589 + components: + - type: Transform + pos: 57.5,-58.5 + parent: 2 + - uid: 5590 + components: + - type: Transform + pos: -13.5,-27.5 + parent: 2 + - uid: 5591 + components: + - type: Transform + pos: 57.5,-57.5 + parent: 2 + - uid: 5592 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 5593 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 + - uid: 5594 + components: + - type: Transform + pos: 43.5,-39.5 + parent: 2 + - uid: 5595 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 5596 + components: + - type: Transform + pos: 42.5,-39.5 + parent: 2 + - uid: 5597 + components: + - type: Transform + pos: 93.5,-26.5 + parent: 2 + - uid: 5598 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 5599 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 5600 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 + - uid: 5601 + components: + - type: Transform + pos: 16.5,41.5 + parent: 2 + - uid: 5602 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 5603 + components: + - type: Transform + pos: -6.5,16.5 + parent: 2 + - uid: 5604 + components: + - type: Transform + pos: 54.5,-40.5 + parent: 2 + - uid: 5605 + components: + - type: Transform + pos: -58.5,-2.5 + parent: 2 + - uid: 5606 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 2 + - uid: 5607 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 + - uid: 5608 + components: + - type: Transform + pos: -38.5,-14.5 + parent: 2 + - uid: 5609 + components: + - type: Transform + pos: -9.5,-26.5 + parent: 2 + - uid: 5610 + components: + - type: Transform + pos: -6.5,-30.5 + parent: 2 + - uid: 5611 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 2 + - uid: 5612 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 2 + - uid: 5613 + components: + - type: Transform + pos: 25.5,-27.5 + parent: 2 + - uid: 5614 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 + - uid: 5615 + components: + - type: Transform + pos: 28.5,-33.5 + parent: 2 + - uid: 5616 + components: + - type: Transform + pos: -66.5,-8.5 + parent: 2 + - uid: 5617 + components: + - type: Transform + pos: -67.5,-16.5 + parent: 2 + - uid: 5618 + components: + - type: Transform + pos: -75.5,-15.5 + parent: 2 + - uid: 5619 + components: + - type: Transform + pos: -57.5,-2.5 + parent: 2 + - uid: 5620 + components: + - type: Transform + pos: -66.5,-7.5 + parent: 2 + - uid: 5621 + components: + - type: Transform + pos: -10.5,-24.5 + parent: 2 + - uid: 5622 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 2 + - uid: 5623 + components: + - type: Transform + pos: -16.5,35.5 + parent: 2 + - uid: 5624 + components: + - type: Transform + pos: -17.5,27.5 + parent: 2 + - uid: 5625 + components: + - type: Transform + pos: -17.5,30.5 + parent: 2 + - uid: 5626 + components: + - type: Transform + pos: 59.5,-56.5 + parent: 2 + - uid: 5627 + components: + - type: Transform + pos: -17.5,31.5 + parent: 2 + - uid: 5628 + components: + - type: Transform + pos: -13.5,30.5 + parent: 2 + - uid: 5629 + components: + - type: Transform + pos: -14.5,31.5 + parent: 2 + - uid: 5630 + components: + - type: Transform + pos: 56.5,-37.5 + parent: 2 + - uid: 5631 + components: + - type: Transform + pos: 93.5,-27.5 + parent: 2 + - uid: 5632 + components: + - type: Transform + pos: 56.5,-36.5 + parent: 2 + - uid: 5633 + components: + - type: Transform + pos: 52.5,-34.5 + parent: 2 + - uid: 5634 + components: + - type: Transform + pos: 60.5,-48.5 + parent: 2 + - uid: 5635 + components: + - type: Transform + pos: 45.5,-35.5 + parent: 2 + - uid: 5636 + components: + - type: Transform + pos: -8.5,-50.5 + parent: 2 + - uid: 5637 + components: + - type: Transform + pos: -61.5,-2.5 + parent: 2 + - uid: 5638 + components: + - type: Transform + pos: -60.5,-2.5 + parent: 2 + - uid: 5639 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - uid: 5640 + components: + - type: Transform + pos: 47.5,-52.5 + parent: 2 + - uid: 5641 + components: + - type: Transform + pos: 54.5,-34.5 + parent: 2 + - uid: 5642 + components: + - type: Transform + pos: 56.5,-34.5 + parent: 2 + - uid: 5643 + components: + - type: Transform + pos: 62.5,-52.5 + parent: 2 + - uid: 5644 + components: + - type: Transform + pos: 60.5,-52.5 + parent: 2 + - uid: 5645 + components: + - type: Transform + pos: 18.5,27.5 + parent: 2 + - uid: 5646 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 5647 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 + - uid: 5648 + components: + - type: Transform + pos: 7.5,40.5 + parent: 2 + - uid: 5649 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 + - uid: 5650 + components: + - type: Transform + pos: 17.5,27.5 + parent: 2 + - uid: 5651 + components: + - type: Transform + pos: 78.5,-29.5 + parent: 2 + - uid: 5652 + components: + - type: Transform + pos: 13.5,38.5 + parent: 2 + - uid: 5653 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 2 + - uid: 5654 + components: + - type: Transform + pos: 6.5,33.5 + parent: 2 + - uid: 5655 + components: + - type: Transform + pos: 7.5,33.5 + parent: 2 + - uid: 5656 + components: + - type: Transform + pos: 54.5,-52.5 + parent: 2 + - uid: 5657 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 2 + - uid: 5658 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 2 + - uid: 5659 + components: + - type: Transform + pos: -42.5,-10.5 + parent: 2 + - uid: 5660 + components: + - type: Transform + pos: 47.5,-38.5 + parent: 2 + - uid: 5661 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 2 + - uid: 5662 + components: + - type: Transform + pos: -46.5,-7.5 + parent: 2 + - uid: 5663 + components: + - type: Transform + pos: -46.5,-8.5 + parent: 2 + - uid: 5664 + components: + - type: Transform + pos: -42.5,-11.5 + parent: 2 + - uid: 5665 + components: + - type: Transform + pos: 91.5,-23.5 + parent: 2 + - uid: 5666 + components: + - type: Transform + pos: -39.5,-5.5 + parent: 2 + - uid: 5667 + components: + - type: Transform + pos: 21.5,9.5 + parent: 2 + - uid: 5668 + components: + - type: Transform + pos: 61.5,-40.5 + parent: 2 + - uid: 5669 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 5670 + components: + - type: Transform + pos: -18.5,27.5 + parent: 2 + - uid: 5671 + components: + - type: Transform + pos: 10.5,38.5 + parent: 2 + - uid: 5672 + components: + - type: Transform + pos: -46.5,-6.5 + parent: 2 + - uid: 5673 + components: + - type: Transform + pos: 12.5,26.5 + parent: 2 + - uid: 5674 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 5675 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 2 + - uid: 5676 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - uid: 5677 + components: + - type: Transform + pos: 12.5,28.5 + parent: 2 + - uid: 5678 + components: + - type: Transform + pos: -21.5,7.5 + parent: 2 + - uid: 5679 + components: + - type: Transform + pos: -8.5,-25.5 + parent: 2 + - uid: 5680 + components: + - type: Transform + pos: 76.5,-27.5 + parent: 2 + - uid: 5681 + components: + - type: Transform + pos: 37.5,16.5 + parent: 2 + - uid: 5682 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 5683 + components: + - type: Transform + pos: 32.5,16.5 + parent: 2 + - uid: 5684 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 5685 + components: + - type: Transform + pos: 57.5,-51.5 + parent: 2 + - uid: 5686 + components: + - type: Transform + pos: 58.5,-60.5 + parent: 2 + - uid: 5687 + components: + - type: Transform + pos: 62.5,-60.5 + parent: 2 + - uid: 5688 + components: + - type: Transform + pos: 60.5,-55.5 + parent: 2 + - uid: 5689 + components: + - type: Transform + pos: 57.5,-55.5 + parent: 2 + - uid: 5690 + components: + - type: Transform + pos: 57.5,-56.5 + parent: 2 + - uid: 5691 + components: + - type: Transform + pos: 57.5,-45.5 + parent: 2 + - uid: 5692 + components: + - type: Transform + pos: 47.5,0.5 + parent: 2 + - uid: 5693 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 5694 + components: + - type: Transform + pos: -9.5,4.5 + parent: 2 + - uid: 5695 + components: + - type: Transform + pos: 53.5,-34.5 + parent: 2 + - uid: 5696 + components: + - type: Transform + pos: -11.5,14.5 + parent: 2 + - uid: 5697 + components: + - type: Transform + pos: -18.5,19.5 + parent: 2 + - uid: 5698 + components: + - type: Transform + pos: -18.5,24.5 + parent: 2 + - uid: 5699 + components: + - type: Transform + pos: 12.5,40.5 + parent: 2 + - uid: 5700 + components: + - type: Transform + pos: -11.5,18.5 + parent: 2 + - uid: 5701 + components: + - type: Transform + pos: 12.5,42.5 + parent: 2 + - uid: 5702 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 + - uid: 5703 + components: + - type: Transform + pos: 4.5,32.5 + parent: 2 + - uid: 5704 + components: + - type: Transform + pos: 79.5,-49.5 + parent: 2 + - uid: 5705 + components: + - type: Transform + pos: -15.5,20.5 + parent: 2 + - uid: 5706 + components: + - type: Transform + pos: 65.5,-40.5 + parent: 2 + - uid: 5707 + components: + - type: Transform + pos: -33.5,-37.5 + parent: 2 + - uid: 5708 + components: + - type: Transform + pos: -21.5,8.5 + parent: 2 + - uid: 5709 + components: + - type: Transform + pos: -19.5,3.5 + parent: 2 + - uid: 5710 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - uid: 5711 + components: + - type: Transform + pos: 45.5,-46.5 + parent: 2 + - uid: 5712 + components: + - type: Transform + pos: -13.5,-24.5 + parent: 2 + - uid: 5713 + components: + - type: Transform + pos: 53.5,-40.5 + parent: 2 + - uid: 5714 + components: + - type: Transform + pos: -36.5,-45.5 + parent: 2 + - uid: 5715 + components: + - type: Transform + pos: 52.5,-52.5 + parent: 2 + - uid: 5716 + components: + - type: Transform + pos: -13.5,-25.5 + parent: 2 + - uid: 5717 + components: + - type: Transform + pos: 58.5,-48.5 + parent: 2 + - uid: 5718 + components: + - type: Transform + pos: -37.5,-45.5 + parent: 2 + - uid: 5719 + components: + - type: Transform + pos: 77.5,-51.5 + parent: 2 + - uid: 5720 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 5721 + components: + - type: Transform + pos: 5.5,-58.5 + parent: 2 + - uid: 5722 + components: + - type: Transform + pos: 79.5,-51.5 + parent: 2 + - uid: 5723 + components: + - type: Transform + pos: 73.5,-33.5 + parent: 2 + - uid: 5724 + components: + - type: Transform + pos: 57.5,-49.5 + parent: 2 + - uid: 5725 + components: + - type: Transform + pos: 59.5,-48.5 + parent: 2 + - uid: 5726 + components: + - type: Transform + pos: -38.5,-12.5 + parent: 2 + - uid: 5727 + components: + - type: Transform + pos: 44.5,-39.5 + parent: 2 + - uid: 5728 + components: + - type: Transform + pos: -18.5,25.5 + parent: 2 + - uid: 5729 + components: + - type: Transform + pos: -18.5,26.5 + parent: 2 + - uid: 5730 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 5731 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 5732 + components: + - type: Transform + pos: -7.5,16.5 + parent: 2 + - uid: 5733 + components: + - type: Transform + pos: -13.5,-76.5 + parent: 2 + - uid: 5734 + components: + - type: Transform + pos: -6.5,8.5 + parent: 2 + - uid: 5735 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 + - uid: 5736 + components: + - type: Transform + pos: 93.5,-29.5 + parent: 2 + - uid: 5737 + components: + - type: Transform + pos: 58.5,-58.5 + parent: 2 + - uid: 5738 + components: + - type: Transform + pos: -13.5,4.5 + parent: 2 + - uid: 5739 + components: + - type: Transform + pos: -38.5,-9.5 + parent: 2 + - uid: 5740 + components: + - type: Transform + pos: 79.5,-27.5 + parent: 2 + - uid: 5741 + components: + - type: Transform + pos: -14.5,4.5 + parent: 2 + - uid: 5742 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 5743 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 5744 + components: + - type: Transform + pos: 31.5,16.5 + parent: 2 + - uid: 5745 + components: + - type: Transform + pos: 29.5,16.5 + parent: 2 + - uid: 5746 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 2 + - uid: 5747 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 5748 + components: + - type: Transform + pos: -31.5,-37.5 + parent: 2 + - uid: 5749 + components: + - type: Transform + pos: -30.5,-37.5 + parent: 2 + - uid: 5750 + components: + - type: Transform + pos: 42.5,-29.5 + parent: 2 + - uid: 5751 + components: + - type: Transform + pos: 53.5,-60.5 + parent: 2 + - uid: 5752 + components: + - type: Transform + pos: 57.5,-60.5 + parent: 2 + - uid: 5753 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 2 + - uid: 5754 + components: + - type: Transform + pos: 47.5,-50.5 + parent: 2 + - uid: 5755 + components: + - type: Transform + pos: 47.5,-51.5 + parent: 2 + - uid: 5756 + components: + - type: Transform + pos: -16.5,24.5 + parent: 2 + - uid: 5757 + components: + - type: Transform + pos: 47.5,-46.5 + parent: 2 + - uid: 5758 + components: + - type: Transform + pos: -21.5,4.5 + parent: 2 + - uid: 5759 + components: + - type: Transform + pos: 12.5,-76.5 + parent: 2 + - uid: 5760 + components: + - type: Transform + pos: -13.5,38.5 + parent: 2 + - uid: 5761 + components: + - type: Transform + pos: -19.5,16.5 + parent: 2 + - uid: 5762 + components: + - type: Transform + pos: 88.5,-23.5 + parent: 2 + - uid: 5763 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 + - uid: 5764 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - uid: 5765 + components: + - type: Transform + pos: -6.5,14.5 + parent: 2 + - uid: 5766 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - uid: 5767 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 5768 + components: + - type: Transform + pos: -24.5,-34.5 + parent: 2 + - uid: 5769 + components: + - type: Transform + pos: 41.5,-17.5 + parent: 2 + - uid: 5770 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 5771 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - uid: 5772 + components: + - type: Transform + pos: 7.5,39.5 + parent: 2 + - uid: 5773 + components: + - type: Transform + pos: 41.5,-39.5 + parent: 2 + - uid: 5774 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 5775 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - uid: 5776 + components: + - type: Transform + pos: 61.5,-52.5 + parent: 2 + - uid: 5777 + components: + - type: Transform + pos: -19.5,24.5 + parent: 2 + - uid: 5778 + components: + - type: Transform + pos: -18.5,17.5 + parent: 2 + - uid: 5779 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 + - uid: 5780 + components: + - type: Transform + pos: 15.5,41.5 + parent: 2 + - uid: 5781 + components: + - type: Transform + pos: -12.5,30.5 + parent: 2 + - uid: 5782 + components: + - type: Transform + pos: 12.5,41.5 + parent: 2 + - uid: 5783 + components: + - type: Transform + pos: -8.5,1.5 + parent: 2 + - uid: 5784 + components: + - type: Transform + pos: 72.5,-36.5 + parent: 2 + - uid: 5785 + components: + - type: Transform + pos: -10.5,-25.5 + parent: 2 + - uid: 5786 + components: + - type: Transform + pos: -22.5,18.5 + parent: 2 + - uid: 5787 + components: + - type: Transform + pos: 74.5,-33.5 + parent: 2 + - uid: 5788 + components: + - type: Transform + pos: 44.5,-16.5 + parent: 2 + - uid: 5789 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 2 + - uid: 5790 + components: + - type: Transform + pos: 56.5,-52.5 + parent: 2 + - uid: 5791 + components: + - type: Transform + pos: 59.5,-52.5 + parent: 2 + - uid: 5792 + components: + - type: Transform + pos: 56.5,-48.5 + parent: 2 + - uid: 5793 + components: + - type: Transform + pos: -37.5,-44.5 + parent: 2 + - uid: 5794 + components: + - type: Transform + pos: -38.5,-45.5 + parent: 2 + - uid: 5795 + components: + - type: Transform + pos: -36.5,-46.5 + parent: 2 + - uid: 5796 + components: + - type: Transform + pos: -21.5,18.5 + parent: 2 + - uid: 5797 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 2 + - uid: 5798 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - uid: 5799 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 + - uid: 5800 + components: + - type: Transform + pos: -4.5,16.5 + parent: 2 + - uid: 5801 + components: + - type: Transform + pos: -32.5,-37.5 + parent: 2 + - uid: 5802 + components: + - type: Transform + pos: 45.5,-38.5 + parent: 2 + - uid: 5803 + components: + - type: Transform + pos: -34.5,-45.5 + parent: 2 + - uid: 5804 + components: + - type: Transform + pos: 45.5,-39.5 + parent: 2 + - uid: 5805 + components: + - type: Transform + pos: -17.5,-74.5 + parent: 2 + - uid: 5806 + components: + - type: Transform + pos: 4.5,-58.5 + parent: 2 + - uid: 5807 + components: + - type: Transform + pos: -23.5,-30.5 + parent: 2 + - uid: 5808 + components: + - type: Transform + pos: -22.5,-30.5 + parent: 2 + - uid: 5809 + components: + - type: Transform + pos: 4.5,-59.5 + parent: 2 + - uid: 5810 + components: + - type: Transform + pos: -21.5,-30.5 + parent: 2 + - uid: 5811 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 2 + - uid: 5812 + components: + - type: Transform + pos: -20.5,-31.5 + parent: 2 + - uid: 5813 + components: + - type: Transform + pos: -38.5,-11.5 + parent: 2 + - uid: 5814 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 2 + - uid: 5815 + components: + - type: Transform + pos: -38.5,-10.5 + parent: 2 + - uid: 5816 + components: + - type: Transform + pos: -19.5,-30.5 + parent: 2 + - uid: 5817 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 2 + - uid: 5818 + components: + - type: Transform + pos: 43.5,-46.5 + parent: 2 + - uid: 5819 + components: + - type: Transform + pos: 46.5,-43.5 + parent: 2 + - uid: 5820 + components: + - type: Transform + pos: 47.5,-43.5 + parent: 2 + - uid: 5821 + components: + - type: Transform + pos: 20.5,-35.5 + parent: 2 + - uid: 5822 + components: + - type: Transform + pos: 43.5,-23.5 + parent: 2 + - uid: 5823 + components: + - type: Transform + pos: 43.5,-24.5 + parent: 2 + - uid: 5824 + components: + - type: Transform + pos: 56.5,-35.5 + parent: 2 + - uid: 5825 + components: + - type: Transform + pos: 55.5,-34.5 + parent: 2 + - uid: 5826 + components: + - type: Transform + pos: 56.5,-39.5 + parent: 2 + - uid: 5827 + components: + - type: Transform + pos: 56.5,-38.5 + parent: 2 + - uid: 5828 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 2 + - uid: 5829 + components: + - type: Transform + pos: 57.5,-40.5 + parent: 2 + - uid: 5830 + components: + - type: Transform + pos: 59.5,-40.5 + parent: 2 + - uid: 5831 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 5832 + components: + - type: Transform + pos: -17.5,29.5 + parent: 2 + - uid: 5833 + components: + - type: Transform + pos: 14.5,41.5 + parent: 2 + - uid: 5834 + components: + - type: Transform + pos: 12.5,38.5 + parent: 2 + - uid: 5835 + components: + - type: Transform + pos: 13.5,36.5 + parent: 2 + - uid: 5836 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 2 + - uid: 5837 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 2 + - uid: 5838 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 2 + - uid: 5839 + components: + - type: Transform + pos: 57.5,-48.5 + parent: 2 + - uid: 5840 + components: + - type: Transform + pos: 44.5,-45.5 + parent: 2 + - uid: 5841 + components: + - type: Transform + pos: 78.5,-51.5 + parent: 2 + - uid: 5842 + components: + - type: Transform + pos: -33.5,-45.5 + parent: 2 + - uid: 5843 + components: + - type: Transform + pos: 80.5,-51.5 + parent: 2 + - uid: 5844 + components: + - type: Transform + pos: 78.5,-52.5 + parent: 2 + - uid: 5845 + components: + - type: Transform + pos: 78.5,-53.5 + parent: 2 + - uid: 5846 + components: + - type: Transform + pos: 9.5,38.5 + parent: 2 + - uid: 5847 + components: + - type: Transform + pos: -8.5,16.5 + parent: 2 + - uid: 5848 + components: + - type: Transform + pos: 78.5,-54.5 + parent: 2 + - uid: 5849 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 2 + - uid: 5850 + components: + - type: Transform + pos: 79.5,-50.5 + parent: 2 + - uid: 5851 + components: + - type: Transform + pos: 52.5,-60.5 + parent: 2 + - uid: 5852 + components: + - type: Transform + pos: 60.5,-60.5 + parent: 2 + - uid: 5853 + components: + - type: Transform + pos: 53.5,-56.5 + parent: 2 + - uid: 5854 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 5855 + components: + - type: Transform + pos: -55.5,-1.5 + parent: 2 + - uid: 5856 + components: + - type: Transform + pos: 45.5,-22.5 + parent: 2 + - uid: 5857 + components: + - type: Transform + pos: 57.5,-52.5 + parent: 2 + - uid: 5858 + components: + - type: Transform + pos: 71.5,-53.5 + parent: 2 + - uid: 5859 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 2 + - uid: 5860 + components: + - type: Transform + pos: -14.5,2.5 + parent: 2 + - uid: 5861 + components: + - type: Transform + pos: 77.5,-29.5 + parent: 2 + - uid: 5862 + components: + - type: Transform + pos: 56.5,-56.5 + parent: 2 + - uid: 5863 + components: + - type: Transform + pos: -13.5,-26.5 + parent: 2 + - uid: 5864 + components: + - type: Transform + pos: 57.5,-47.5 + parent: 2 + - uid: 5865 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 2 + - uid: 5866 + components: + - type: Transform + pos: -13.5,-22.5 + parent: 2 + - uid: 5867 + components: + - type: Transform + pos: 55.5,-52.5 + parent: 2 + - uid: 5868 + components: + - type: Transform + pos: 57.5,-53.5 + parent: 2 + - uid: 5869 + components: + - type: Transform + pos: 60.5,-57.5 + parent: 2 + - uid: 5870 + components: + - type: Transform + pos: 55.5,-56.5 + parent: 2 + - uid: 5871 + components: + - type: Transform + pos: -14.5,-22.5 + parent: 2 + - uid: 5872 + components: + - type: Transform + pos: 54.5,-56.5 + parent: 2 + - uid: 5873 + components: + - type: Transform + pos: 57.5,-50.5 + parent: 2 + - uid: 5874 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 2 + - uid: 5875 + components: + - type: Transform + pos: -8.5,-26.5 + parent: 2 + - uid: 5876 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 2 + - uid: 5877 + components: + - type: Transform + pos: -18.5,16.5 + parent: 2 + - uid: 5878 + components: + - type: Transform + pos: -15.5,32.5 + parent: 2 + - uid: 5879 + components: + - type: Transform + pos: -16.5,32.5 + parent: 2 + - uid: 5880 + components: + - type: Transform + pos: 19.5,-36.5 + parent: 2 + - uid: 5881 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 2 + - uid: 5882 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 5883 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 5884 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 2 + - uid: 5885 + components: + - type: Transform + pos: 61.5,-28.5 + parent: 2 + - uid: 5886 + components: + - type: Transform + pos: 20.5,-36.5 + parent: 2 + - uid: 5887 + components: + - type: Transform + pos: 21.5,-36.5 + parent: 2 + - uid: 5888 + components: + - type: Transform + pos: -17.5,32.5 + parent: 2 + - uid: 5889 + components: + - type: Transform + pos: 25.5,-36.5 + parent: 2 + - uid: 5890 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 2 + - uid: 5891 + components: + - type: Transform + pos: 52.5,-56.5 + parent: 2 + - uid: 5892 + components: + - type: Transform + pos: -8.5,29.5 + parent: 2 + - uid: 5893 + components: + - type: Transform + pos: -15.5,35.5 + parent: 2 + - uid: 5894 + components: + - type: Transform + pos: -18.5,35.5 + parent: 2 + - uid: 5895 + components: + - type: Transform + pos: -17.5,35.5 + parent: 2 + - uid: 5896 + components: + - type: Transform + pos: -19.5,35.5 + parent: 2 + - uid: 5897 + components: + - type: Transform + pos: -26.5,-34.5 + parent: 2 + - uid: 5898 + components: + - type: Transform + pos: -27.5,-34.5 + parent: 2 + - uid: 5899 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 2 + - uid: 5900 + components: + - type: Transform + pos: 71.5,-40.5 + parent: 2 + - uid: 5901 + components: + - type: Transform + pos: 71.5,-34.5 + parent: 2 + - uid: 5902 + components: + - type: Transform + pos: 41.5,-36.5 + parent: 2 + - uid: 5903 + components: + - type: Transform + pos: 42.5,-36.5 + parent: 2 + - uid: 5904 + components: + - type: Transform + pos: 43.5,-36.5 + parent: 2 + - uid: 5905 + components: + - type: Transform + pos: 39.5,-26.5 + parent: 2 + - uid: 5906 + components: + - type: Transform + pos: 1.5,34.5 + parent: 2 + - uid: 5907 + components: + - type: Transform + pos: 1.5,35.5 + parent: 2 + - uid: 5908 + components: + - type: Transform + pos: 1.5,36.5 + parent: 2 + - uid: 5909 + components: + - type: Transform + pos: 1.5,37.5 + parent: 2 + - uid: 5910 + components: + - type: Transform + pos: 1.5,38.5 + parent: 2 + - uid: 5911 + components: + - type: Transform + pos: 1.5,39.5 + parent: 2 + - uid: 5912 + components: + - type: Transform + pos: 2.5,36.5 + parent: 2 + - uid: 5913 + components: + - type: Transform + pos: 3.5,36.5 + parent: 2 + - uid: 5914 + components: + - type: Transform + pos: 4.5,36.5 + parent: 2 + - uid: 5915 + components: + - type: Transform + pos: 0.5,36.5 + parent: 2 + - uid: 5916 + components: + - type: Transform + pos: -0.5,36.5 + parent: 2 + - uid: 5917 + components: + - type: Transform + pos: -1.5,36.5 + parent: 2 + - uid: 5918 + components: + - type: Transform + pos: -2.5,36.5 + parent: 2 + - uid: 5919 + components: + - type: Transform + pos: -1.5,37.5 + parent: 2 + - uid: 5920 + components: + - type: Transform + pos: -1.5,38.5 + parent: 2 + - uid: 5921 + components: + - type: Transform + pos: -1.5,39.5 + parent: 2 + - uid: 5922 + components: + - type: Transform + pos: -1.5,35.5 + parent: 2 + - uid: 5923 + components: + - type: Transform + pos: 52.5,-37.5 + parent: 2 + - uid: 5924 + components: + - type: Transform + pos: 52.5,-36.5 + parent: 2 + - uid: 5925 + components: + - type: Transform + pos: 51.5,-36.5 + parent: 2 + - uid: 5926 + components: + - type: Transform + pos: 53.5,-36.5 + parent: 2 + - uid: 5927 + components: + - type: Transform + pos: 57.5,-35.5 + parent: 2 + - uid: 5928 + components: + - type: Transform + pos: 57.5,-37.5 + parent: 2 + - uid: 5929 + components: + - type: Transform + pos: 25.5,29.5 + parent: 2 + - uid: 5930 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 + - uid: 5931 + components: + - type: Transform + pos: -16.5,27.5 + parent: 2 + - uid: 5932 + components: + - type: Transform + pos: 38.5,10.5 + parent: 2 + - uid: 5933 + components: + - type: Transform + pos: 63.5,-46.5 + parent: 2 + - uid: 5934 + components: + - type: Transform + pos: 61.5,-44.5 + parent: 2 + - uid: 5935 + components: + - type: Transform + pos: 63.5,-45.5 + parent: 2 + - uid: 5936 + components: + - type: Transform + pos: 62.5,-47.5 + parent: 2 + - uid: 5937 + components: + - type: Transform + pos: 62.5,-48.5 + parent: 2 + - uid: 5938 + components: + - type: Transform + pos: 63.5,-47.5 + parent: 2 + - uid: 5939 + components: + - type: Transform + pos: 62.5,-44.5 + parent: 2 + - uid: 5940 + components: + - type: Transform + pos: 63.5,-44.5 + parent: 2 + - uid: 19039 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 2 + - uid: 19322 + components: + - type: Transform + pos: -14.5,-37.5 + parent: 2 + - uid: 21054 + components: + - type: Transform + pos: 47.5,22.5 + parent: 2 + - uid: 27767 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 2 + - uid: 27960 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 2 + - uid: 27961 + components: + - type: Transform + pos: -12.5,-35.5 + parent: 2 + - uid: 27965 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 2 + - uid: 27966 + components: + - type: Transform + pos: -12.5,-37.5 + parent: 2 + - uid: 27972 + components: + - type: Transform + pos: -14.5,-35.5 + parent: 2 + - uid: 28142 + components: + - type: Transform + pos: -13.5,-34.5 + parent: 2 +- proto: CableApcStack + entities: + - uid: 5941 + components: + - type: Transform + pos: -4.4804783,-45.275856 + parent: 2 + - type: RCDAmmo + charges: 6 + - uid: 5942 + components: + - type: Transform + pos: -28.687122,-54.44169 + parent: 2 + - type: RCDAmmo + charges: 6 + - uid: 5943 + components: + - type: Transform + pos: 74.33588,-19.006496 + parent: 2 + - type: RCDAmmo + charges: 6 + - uid: 5944 + components: + - type: Transform + pos: 74.7265,-19.100246 + parent: 2 + - type: RCDAmmo + charges: 6 + - uid: 5945 + components: + - type: Transform + pos: 78.68335,-64.45979 + parent: 2 + - type: RCDAmmo + charges: 6 + - uid: 5946 + components: + - type: Transform + pos: -13.443936,-69.3967 + parent: 2 + - type: RCDAmmo + charges: 6 + - uid: 5947 + components: + - type: Transform + pos: 80.52511,-45.958733 + parent: 2 + - type: RCDAmmo + charges: 6 + - uid: 5948 + components: + - type: Transform + pos: -8.470596,-33.408043 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - type: RCDAmmo + charges: 6 + - uid: 5949 + components: + - type: Transform + pos: 4.499056,-36.5813 + parent: 2 + - type: RCDAmmo + charges: 6 + - uid: 5950 + components: + - type: Transform + pos: 4.499056,-36.5813 + parent: 2 + - type: RCDAmmo + charges: 6 + - uid: 5951 + components: + - type: Transform + pos: -26.502972,-68.43327 + parent: 2 + - type: RCDAmmo + charges: 6 +- proto: CableApcStack1 + entities: + - uid: 5952 + components: + - type: Transform + pos: -33.5,22.5 + parent: 2 + - type: RCDAmmo + charges: 0 + - uid: 5953 + components: + - type: Transform + pos: -33.5,23.5 + parent: 2 + - type: RCDAmmo + charges: 0 + - uid: 5954 + components: + - type: Transform + pos: -31.5,21.5 + parent: 2 + - type: RCDAmmo + charges: 0 + - uid: 5955 + components: + - type: Transform + pos: -31.5,23.5 + parent: 2 + - type: RCDAmmo + charges: 0 + - uid: 5956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.268782,-27.554543 + parent: 2 + - type: RCDAmmo + charges: 0 + - uid: 5957 + components: + - type: Transform + pos: 58.155533,-24.534908 + parent: 2 + - type: RCDAmmo + charges: 0 + - uid: 5958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.40563,13.255079 + parent: 2 + - type: RCDAmmo + charges: 0 +- proto: CableApcStack10 + entities: + - uid: 5959 + components: + - type: Transform + pos: 62.82482,-29.474854 + parent: 2 + - type: RCDAmmo + charges: 2 +- proto: CableHV + entities: + - uid: 5960 + components: + - type: Transform + pos: 10.5,-80.5 + parent: 2 + - uid: 5961 + components: + - type: Transform + pos: 14.5,-77.5 + parent: 2 + - uid: 5962 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 2 + - uid: 5963 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 + - uid: 5964 + components: + - type: Transform + pos: 9.5,-80.5 + parent: 2 + - uid: 5965 + components: + - type: Transform + pos: -19.5,-69.5 + parent: 2 + - uid: 5966 + components: + - type: Transform + pos: -18.5,-69.5 + parent: 2 + - uid: 5967 + components: + - type: Transform + pos: -17.5,-69.5 + parent: 2 + - uid: 5968 + components: + - type: Transform + pos: -14.5,-69.5 + parent: 2 + - uid: 5969 + components: + - type: Transform + pos: 47.5,-53.5 + parent: 2 + - uid: 5970 + components: + - type: Transform + pos: 47.5,-51.5 + parent: 2 + - uid: 5971 + components: + - type: Transform + pos: 47.5,-52.5 + parent: 2 + - uid: 5972 + components: + - type: Transform + pos: 14.5,-76.5 + parent: 2 + - uid: 5973 + components: + - type: Transform + pos: 47.5,-50.5 + parent: 2 + - uid: 5974 + components: + - type: Transform + pos: 8.5,-75.5 + parent: 2 + - uid: 5975 + components: + - type: Transform + pos: 8.5,-73.5 + parent: 2 + - uid: 5976 + components: + - type: Transform + pos: 8.5,-74.5 + parent: 2 + - uid: 5977 + components: + - type: Transform + pos: 12.5,-79.5 + parent: 2 + - uid: 5978 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 2 + - uid: 5979 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 2 + - uid: 5980 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 2 + - uid: 5981 + components: + - type: Transform + pos: -21.5,-35.5 + parent: 2 + - uid: 5982 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 2 + - uid: 5983 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - uid: 5984 + components: + - type: Transform + pos: 4.5,-69.5 + parent: 2 + - uid: 5985 + components: + - type: Transform + pos: 2.5,-69.5 + parent: 2 + - uid: 5986 + components: + - type: Transform + pos: 3.5,-69.5 + parent: 2 + - uid: 5987 + components: + - type: Transform + pos: -3.5,-69.5 + parent: 2 + - uid: 5988 + components: + - type: Transform + pos: -3.5,-56.5 + parent: 2 + - uid: 5989 + components: + - type: Transform + pos: -5.5,-69.5 + parent: 2 + - uid: 5990 + components: + - type: Transform + pos: -6.5,-69.5 + parent: 2 + - uid: 5991 + components: + - type: Transform + pos: -8.5,-91.5 + parent: 2 + - uid: 5992 + components: + - type: Transform + pos: -4.5,-97.5 + parent: 2 + - uid: 5993 + components: + - type: Transform + pos: 1.5,-80.5 + parent: 2 + - uid: 5994 + components: + - type: Transform + pos: -8.5,-92.5 + parent: 2 + - uid: 5995 + components: + - type: Transform + pos: 0.5,-80.5 + parent: 2 + - uid: 5996 + components: + - type: Transform + pos: -8.5,-90.5 + parent: 2 + - uid: 5997 + components: + - type: Transform + pos: -5.5,-97.5 + parent: 2 + - uid: 5998 + components: + - type: Transform + pos: 2.5,-80.5 + parent: 2 + - uid: 5999 + components: + - type: Transform + pos: -8.5,-89.5 + parent: 2 + - uid: 6000 + components: + - type: Transform + pos: -8.5,-83.5 + parent: 2 + - uid: 6001 + components: + - type: Transform + pos: -8.5,-93.5 + parent: 2 + - uid: 6002 + components: + - type: Transform + pos: 7.5,-84.5 + parent: 2 + - uid: 6003 + components: + - type: Transform + pos: -0.5,-80.5 + parent: 2 + - uid: 6004 + components: + - type: Transform + pos: -3.5,-97.5 + parent: 2 + - uid: 6005 + components: + - type: Transform + pos: -1.5,-80.5 + parent: 2 + - uid: 6006 + components: + - type: Transform + pos: -2.5,-97.5 + parent: 2 + - uid: 6007 + components: + - type: Transform + pos: 7.5,-85.5 + parent: 2 + - uid: 6008 + components: + - type: Transform + pos: 7.5,-86.5 + parent: 2 + - uid: 6009 + components: + - type: Transform + pos: -1.5,-97.5 + parent: 2 + - uid: 6010 + components: + - type: Transform + pos: -2.5,-80.5 + parent: 2 + - uid: 6011 + components: + - type: Transform + pos: -4.5,-80.5 + parent: 2 + - uid: 6012 + components: + - type: Transform + pos: 0.5,-97.5 + parent: 2 + - uid: 6013 + components: + - type: Transform + pos: 7.5,-88.5 + parent: 2 + - uid: 6014 + components: + - type: Transform + pos: 7.5,-87.5 + parent: 2 + - uid: 6015 + components: + - type: Transform + pos: -0.5,-97.5 + parent: 2 + - uid: 6016 + components: + - type: Transform + pos: -3.5,-80.5 + parent: 2 + - uid: 6017 + components: + - type: Transform + pos: 3.5,-97.5 + parent: 2 + - uid: 6018 + components: + - type: Transform + pos: 5.5,-69.5 + parent: 2 + - uid: 6019 + components: + - type: Transform + pos: -4.5,-69.5 + parent: 2 + - uid: 6020 + components: + - type: Transform + pos: 7.5,-91.5 + parent: 2 + - uid: 6021 + components: + - type: Transform + pos: -23.5,-64.5 + parent: 2 + - uid: 6022 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 + - uid: 6023 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - uid: 6024 + components: + - type: Transform + pos: 46.5,19.5 + parent: 2 + - uid: 6025 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 6026 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 2 + - uid: 6027 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - uid: 6028 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 6029 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 2 + - uid: 6030 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 2 + - uid: 6031 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 2 + - uid: 6032 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 2 + - uid: 6033 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - uid: 6034 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - uid: 6035 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 2 + - uid: 6036 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 6037 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 2 + - uid: 6038 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 2 + - uid: 6039 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 2 + - uid: 6040 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 2 + - uid: 6041 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 2 + - uid: 6042 + components: + - type: Transform + pos: -0.5,-28.5 + parent: 2 + - uid: 6043 + components: + - type: Transform + pos: -4.5,-67.5 + parent: 2 + - uid: 6044 + components: + - type: Transform + pos: 49.5,-46.5 + parent: 2 + - uid: 6045 + components: + - type: Transform + pos: -5.5,-67.5 + parent: 2 + - uid: 6046 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 2 + - uid: 6047 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 6048 + components: + - type: Transform + pos: 8.5,-60.5 + parent: 2 + - uid: 6049 + components: + - type: Transform + pos: 13.5,-79.5 + parent: 2 + - uid: 6050 + components: + - type: Transform + pos: 8.5,-61.5 + parent: 2 + - uid: 6051 + components: + - type: Transform + pos: 8.5,-62.5 + parent: 2 + - uid: 6052 + components: + - type: Transform + pos: 8.5,-63.5 + parent: 2 + - uid: 6053 + components: + - type: Transform + pos: 8.5,-65.5 + parent: 2 + - uid: 6054 + components: + - type: Transform + pos: 8.5,-67.5 + parent: 2 + - uid: 6055 + components: + - type: Transform + pos: 7.5,-67.5 + parent: 2 + - uid: 6056 + components: + - type: Transform + pos: 6.5,-67.5 + parent: 2 + - uid: 6057 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 2 + - uid: 6058 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 2 + - uid: 6059 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 2 + - uid: 6060 + components: + - type: Transform + pos: 0.5,-56.5 + parent: 2 + - uid: 6061 + components: + - type: Transform + pos: 1.5,-56.5 + parent: 2 + - uid: 6062 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 2 + - uid: 6063 + components: + - type: Transform + pos: 3.5,-56.5 + parent: 2 + - uid: 6064 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 2 + - uid: 6065 + components: + - type: Transform + pos: 5.5,-56.5 + parent: 2 + - uid: 6066 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 2 + - uid: 6067 + components: + - type: Transform + pos: 7.5,-56.5 + parent: 2 + - uid: 6068 + components: + - type: Transform + pos: 8.5,-56.5 + parent: 2 + - uid: 6069 + components: + - type: Transform + pos: 8.5,-57.5 + parent: 2 + - uid: 6070 + components: + - type: Transform + pos: 8.5,-58.5 + parent: 2 + - uid: 6071 + components: + - type: Transform + pos: 8.5,-59.5 + parent: 2 + - uid: 6072 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 2 + - uid: 6073 + components: + - type: Transform + pos: -0.5,-43.5 + parent: 2 + - uid: 6074 + components: + - type: Transform + pos: -0.5,-44.5 + parent: 2 + - uid: 6075 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 2 + - uid: 6076 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 2 + - uid: 6077 + components: + - type: Transform + pos: -0.5,-47.5 + parent: 2 + - uid: 6078 + components: + - type: Transform + pos: -0.5,-48.5 + parent: 2 + - uid: 6079 + components: + - type: Transform + pos: -0.5,-49.5 + parent: 2 + - uid: 6080 + components: + - type: Transform + pos: -0.5,-50.5 + parent: 2 + - uid: 6081 + components: + - type: Transform + pos: -2.5,-59.5 + parent: 2 + - uid: 6082 + components: + - type: Transform + pos: -2.5,-58.5 + parent: 2 + - uid: 6083 + components: + - type: Transform + pos: -2.5,-57.5 + parent: 2 + - uid: 6084 + components: + - type: Transform + pos: -1.5,-57.5 + parent: 2 + - uid: 6085 + components: + - type: Transform + pos: -0.5,-57.5 + parent: 2 + - uid: 6086 + components: + - type: Transform + pos: -0.5,-56.5 + parent: 2 + - uid: 6087 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 2 + - uid: 6088 + components: + - type: Transform + pos: -0.5,-54.5 + parent: 2 + - uid: 6089 + components: + - type: Transform + pos: -0.5,-53.5 + parent: 2 + - uid: 6090 + components: + - type: Transform + pos: -0.5,-52.5 + parent: 2 + - uid: 6091 + components: + - type: Transform + pos: -0.5,-51.5 + parent: 2 + - uid: 6092 + components: + - type: Transform + pos: -16.5,-17.5 + parent: 2 + - uid: 6093 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 2 + - uid: 6094 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 2 + - uid: 6095 + components: + - type: Transform + pos: -15.5,-59.5 + parent: 2 + - uid: 6096 + components: + - type: Transform + pos: -14.5,-59.5 + parent: 2 + - uid: 6097 + components: + - type: Transform + pos: -13.5,-59.5 + parent: 2 + - uid: 6098 + components: + - type: Transform + pos: -12.5,-59.5 + parent: 2 + - uid: 6099 + components: + - type: Transform + pos: -11.5,-59.5 + parent: 2 + - uid: 6100 + components: + - type: Transform + pos: -10.5,-59.5 + parent: 2 + - uid: 6101 + components: + - type: Transform + pos: -9.5,-59.5 + parent: 2 + - uid: 6102 + components: + - type: Transform + pos: -8.5,-59.5 + parent: 2 + - uid: 6103 + components: + - type: Transform + pos: -7.5,-59.5 + parent: 2 + - uid: 6104 + components: + - type: Transform + pos: -6.5,-59.5 + parent: 2 + - uid: 6105 + components: + - type: Transform + pos: -5.5,-59.5 + parent: 2 + - uid: 6106 + components: + - type: Transform + pos: -4.5,-59.5 + parent: 2 + - uid: 6107 + components: + - type: Transform + pos: -3.5,-59.5 + parent: 2 + - uid: 6108 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - uid: 6109 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 2 + - uid: 6110 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 2 + - uid: 6111 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 2 + - uid: 6112 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 2 + - uid: 6113 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 2 + - uid: 6114 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - uid: 6115 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 2 + - uid: 6116 + components: + - type: Transform + pos: -7.5,-67.5 + parent: 2 + - uid: 6117 + components: + - type: Transform + pos: -9.5,-68.5 + parent: 2 + - uid: 6118 + components: + - type: Transform + pos: -9.5,-69.5 + parent: 2 + - uid: 6119 + components: + - type: Transform + pos: -10.5,-69.5 + parent: 2 + - uid: 6120 + components: + - type: Transform + pos: -11.5,-69.5 + parent: 2 + - uid: 6121 + components: + - type: Transform + pos: -12.5,-69.5 + parent: 2 + - uid: 6122 + components: + - type: Transform + pos: -13.5,-69.5 + parent: 2 + - uid: 6123 + components: + - type: Transform + pos: 15.5,-38.5 + parent: 2 + - uid: 6124 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 + - uid: 6125 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - uid: 6126 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - uid: 6127 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - uid: 6128 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 2 + - uid: 6129 + components: + - type: Transform + pos: -21.5,-12.5 + parent: 2 + - uid: 6130 + components: + - type: Transform + pos: -20.5,-12.5 + parent: 2 + - uid: 6131 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - uid: 6132 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 6133 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 + - uid: 6134 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 6135 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 6136 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 6137 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 6138 + components: + - type: Transform + pos: -0.5,-29.5 + parent: 2 + - uid: 6139 + components: + - type: Transform + pos: -0.5,-30.5 + parent: 2 + - uid: 6140 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 2 + - uid: 6141 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 2 + - uid: 6142 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 2 + - uid: 6143 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 2 + - uid: 6144 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 2 + - uid: 6145 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 2 + - uid: 6146 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 2 + - uid: 6147 + components: + - type: Transform + pos: 29.5,-38.5 + parent: 2 + - uid: 6148 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 2 + - uid: 6149 + components: + - type: Transform + pos: 25.5,-38.5 + parent: 2 + - uid: 6150 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 2 + - uid: 6151 + components: + - type: Transform + pos: 8.5,-72.5 + parent: 2 + - uid: 6152 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 2 + - uid: 6153 + components: + - type: Transform + pos: 23.5,22.5 + parent: 2 + - uid: 6154 + components: + - type: Transform + pos: 9.5,-72.5 + parent: 2 + - uid: 6155 + components: + - type: Transform + pos: -0.5,-32.5 + parent: 2 + - uid: 6156 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 2 + - uid: 6157 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 2 + - uid: 6158 + components: + - type: Transform + pos: -0.5,-35.5 + parent: 2 + - uid: 6159 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 2 + - uid: 6160 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 2 + - uid: 6161 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 2 + - uid: 6162 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 2 + - uid: 6163 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 2 + - uid: 6164 + components: + - type: Transform + pos: 21.5,-38.5 + parent: 2 + - uid: 6165 + components: + - type: Transform + pos: 22.5,-38.5 + parent: 2 + - uid: 6166 + components: + - type: Transform + pos: 24.5,-38.5 + parent: 2 + - uid: 6167 + components: + - type: Transform + pos: 26.5,-38.5 + parent: 2 + - uid: 6168 + components: + - type: Transform + pos: 28.5,-38.5 + parent: 2 + - uid: 6169 + components: + - type: Transform + pos: 32.5,-38.5 + parent: 2 + - uid: 6170 + components: + - type: Transform + pos: 32.5,-39.5 + parent: 2 + - uid: 6171 + components: + - type: Transform + pos: 32.5,-40.5 + parent: 2 + - uid: 6172 + components: + - type: Transform + pos: 32.5,-41.5 + parent: 2 + - uid: 6173 + components: + - type: Transform + pos: 32.5,-42.5 + parent: 2 + - uid: 6174 + components: + - type: Transform + pos: 32.5,-43.5 + parent: 2 + - uid: 6175 + components: + - type: Transform + pos: 32.5,-44.5 + parent: 2 + - uid: 6176 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 2 + - uid: 6177 + components: + - type: Transform + pos: 32.5,-45.5 + parent: 2 + - uid: 6178 + components: + - type: Transform + pos: 32.5,-46.5 + parent: 2 + - uid: 6179 + components: + - type: Transform + pos: 32.5,-47.5 + parent: 2 + - uid: 6180 + components: + - type: Transform + pos: 32.5,-48.5 + parent: 2 + - uid: 6181 + components: + - type: Transform + pos: 32.5,-49.5 + parent: 2 + - uid: 6182 + components: + - type: Transform + pos: 32.5,-50.5 + parent: 2 + - uid: 6183 + components: + - type: Transform + pos: 32.5,-51.5 + parent: 2 + - uid: 6184 + components: + - type: Transform + pos: 10.5,-72.5 + parent: 2 + - uid: 6185 + components: + - type: Transform + pos: 32.5,-53.5 + parent: 2 + - uid: 6186 + components: + - type: Transform + pos: 32.5,-54.5 + parent: 2 + - uid: 6187 + components: + - type: Transform + pos: 32.5,-55.5 + parent: 2 + - uid: 6188 + components: + - type: Transform + pos: 32.5,-56.5 + parent: 2 + - uid: 6189 + components: + - type: Transform + pos: 12.5,-72.5 + parent: 2 + - uid: 6190 + components: + - type: Transform + pos: 14.5,-72.5 + parent: 2 + - uid: 6191 + components: + - type: Transform + pos: 15.5,-72.5 + parent: 2 + - uid: 6192 + components: + - type: Transform + pos: 17.5,-72.5 + parent: 2 + - uid: 6193 + components: + - type: Transform + pos: 18.5,-72.5 + parent: 2 + - uid: 6194 + components: + - type: Transform + pos: -25.5,-70.5 + parent: 2 + - uid: 6195 + components: + - type: Transform + pos: -25.5,-68.5 + parent: 2 + - uid: 6196 + components: + - type: Transform + pos: 8.5,-70.5 + parent: 2 + - uid: 6197 + components: + - type: Transform + pos: -25.5,-67.5 + parent: 2 + - uid: 6198 + components: + - type: Transform + pos: 8.5,-71.5 + parent: 2 + - uid: 6199 + components: + - type: Transform + pos: -25.5,-69.5 + parent: 2 + - uid: 6200 + components: + - type: Transform + pos: 8.5,-69.5 + parent: 2 + - uid: 6201 + components: + - type: Transform + pos: -25.5,-66.5 + parent: 2 + - uid: 6202 + components: + - type: Transform + pos: 8.5,-68.5 + parent: 2 + - uid: 6203 + components: + - type: Transform + pos: -2.5,-60.5 + parent: 2 + - uid: 6204 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 6205 + components: + - type: Transform + pos: 20.5,17.5 + parent: 2 + - uid: 6206 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 6207 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 6208 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 6209 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 6210 + components: + - type: Transform + pos: 21.5,21.5 + parent: 2 + - uid: 6211 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - uid: 6212 + components: + - type: Transform + pos: 23.5,22.5 + parent: 2 + - uid: 6213 + components: + - type: Transform + pos: 32.5,3.5 + parent: 2 + - uid: 6214 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 2 + - uid: 6215 + components: + - type: Transform + pos: -18.5,-50.5 + parent: 2 + - uid: 6216 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 2 + - uid: 6217 + components: + - type: Transform + pos: 32.5,-52.5 + parent: 2 + - uid: 6218 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 2 + - uid: 6219 + components: + - type: Transform + pos: -18.5,-52.5 + parent: 2 + - uid: 6220 + components: + - type: Transform + pos: -18.5,-51.5 + parent: 2 + - uid: 6221 + components: + - type: Transform + pos: 32.5,-57.5 + parent: 2 + - uid: 6222 + components: + - type: Transform + pos: 33.5,-57.5 + parent: 2 + - uid: 6223 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 2 + - uid: 6224 + components: + - type: Transform + pos: 34.5,-57.5 + parent: 2 + - uid: 6225 + components: + - type: Transform + pos: 35.5,-57.5 + parent: 2 + - uid: 6226 + components: + - type: Transform + pos: 36.5,-57.5 + parent: 2 + - uid: 6227 + components: + - type: Transform + pos: 36.5,-58.5 + parent: 2 + - uid: 6228 + components: + - type: Transform + pos: 36.5,-59.5 + parent: 2 + - uid: 6229 + components: + - type: Transform + pos: 36.5,-60.5 + parent: 2 + - uid: 6230 + components: + - type: Transform + pos: 36.5,-61.5 + parent: 2 + - uid: 6231 + components: + - type: Transform + pos: 36.5,-62.5 + parent: 2 + - uid: 6232 + components: + - type: Transform + pos: 37.5,-62.5 + parent: 2 + - uid: 6233 + components: + - type: Transform + pos: 38.5,-62.5 + parent: 2 + - uid: 6234 + components: + - type: Transform + pos: 39.5,-62.5 + parent: 2 + - uid: 6235 + components: + - type: Transform + pos: 40.5,-64.5 + parent: 2 + - uid: 6236 + components: + - type: Transform + pos: 40.5,-63.5 + parent: 2 + - uid: 6237 + components: + - type: Transform + pos: 40.5,-62.5 + parent: 2 + - uid: 6238 + components: + - type: Transform + pos: 40.5,-65.5 + parent: 2 + - uid: 6239 + components: + - type: Transform + pos: 41.5,-65.5 + parent: 2 + - uid: 6240 + components: + - type: Transform + pos: 42.5,-65.5 + parent: 2 + - uid: 6241 + components: + - type: Transform + pos: 43.5,-65.5 + parent: 2 + - uid: 6242 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 2 + - uid: 6243 + components: + - type: Transform + pos: 44.5,-65.5 + parent: 2 + - uid: 6244 + components: + - type: Transform + pos: 46.5,-65.5 + parent: 2 + - uid: 6245 + components: + - type: Transform + pos: 45.5,-65.5 + parent: 2 + - uid: 6246 + components: + - type: Transform + pos: 47.5,-65.5 + parent: 2 + - uid: 6247 + components: + - type: Transform + pos: 47.5,-64.5 + parent: 2 + - uid: 6248 + components: + - type: Transform + pos: 47.5,-63.5 + parent: 2 + - uid: 6249 + components: + - type: Transform + pos: 47.5,-62.5 + parent: 2 + - uid: 6250 + components: + - type: Transform + pos: 48.5,-62.5 + parent: 2 + - uid: 6251 + components: + - type: Transform + pos: 49.5,-62.5 + parent: 2 + - uid: 6252 + components: + - type: Transform + pos: 49.5,-61.5 + parent: 2 + - uid: 6253 + components: + - type: Transform + pos: 49.5,-60.5 + parent: 2 + - uid: 6254 + components: + - type: Transform + pos: 49.5,-59.5 + parent: 2 + - uid: 6255 + components: + - type: Transform + pos: 17.5,-38.5 + parent: 2 + - uid: 6256 + components: + - type: Transform + pos: 49.5,-58.5 + parent: 2 + - uid: 6257 + components: + - type: Transform + pos: 49.5,-57.5 + parent: 2 + - uid: 6258 + components: + - type: Transform + pos: 49.5,-56.5 + parent: 2 + - uid: 6259 + components: + - type: Transform + pos: 49.5,-52.5 + parent: 2 + - uid: 6260 + components: + - type: Transform + pos: 49.5,-53.5 + parent: 2 + - uid: 6261 + components: + - type: Transform + pos: 49.5,-54.5 + parent: 2 + - uid: 6262 + components: + - type: Transform + pos: 49.5,-55.5 + parent: 2 + - uid: 6263 + components: + - type: Transform + pos: 49.5,-47.5 + parent: 2 + - uid: 6264 + components: + - type: Transform + pos: 49.5,-48.5 + parent: 2 + - uid: 6265 + components: + - type: Transform + pos: 49.5,-49.5 + parent: 2 + - uid: 6266 + components: + - type: Transform + pos: 49.5,-50.5 + parent: 2 + - uid: 6267 + components: + - type: Transform + pos: 49.5,-51.5 + parent: 2 + - uid: 6268 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 2 + - uid: 6269 + components: + - type: Transform + pos: 5.5,-67.5 + parent: 2 + - uid: 6270 + components: + - type: Transform + pos: 4.5,-67.5 + parent: 2 + - uid: 6271 + components: + - type: Transform + pos: 3.5,-67.5 + parent: 2 + - uid: 6272 + components: + - type: Transform + pos: 2.5,-67.5 + parent: 2 + - uid: 6273 + components: + - type: Transform + pos: 1.5,-67.5 + parent: 2 + - uid: 6274 + components: + - type: Transform + pos: 0.5,-67.5 + parent: 2 + - uid: 6275 + components: + - type: Transform + pos: -0.5,-67.5 + parent: 2 + - uid: 6276 + components: + - type: Transform + pos: -2.5,-67.5 + parent: 2 + - uid: 6277 + components: + - type: Transform + pos: -3.5,-67.5 + parent: 2 + - uid: 6278 + components: + - type: Transform + pos: -8.5,-67.5 + parent: 2 + - uid: 6279 + components: + - type: Transform + pos: -6.5,-67.5 + parent: 2 + - uid: 6280 + components: + - type: Transform + pos: -1.5,-67.5 + parent: 2 + - uid: 6281 + components: + - type: Transform + pos: 49.5,-45.5 + parent: 2 + - uid: 6282 + components: + - type: Transform + pos: 49.5,-44.5 + parent: 2 + - uid: 6283 + components: + - type: Transform + pos: 49.5,-43.5 + parent: 2 + - uid: 6284 + components: + - type: Transform + pos: 49.5,-42.5 + parent: 2 + - uid: 6285 + components: + - type: Transform + pos: 49.5,-41.5 + parent: 2 + - uid: 6286 + components: + - type: Transform + pos: 49.5,-40.5 + parent: 2 + - uid: 6287 + components: + - type: Transform + pos: 49.5,-39.5 + parent: 2 + - uid: 6288 + components: + - type: Transform + pos: 49.5,-38.5 + parent: 2 + - uid: 6289 + components: + - type: Transform + pos: 49.5,-37.5 + parent: 2 + - uid: 6290 + components: + - type: Transform + pos: 49.5,-36.5 + parent: 2 + - uid: 6291 + components: + - type: Transform + pos: 49.5,-35.5 + parent: 2 + - uid: 6292 + components: + - type: Transform + pos: 49.5,-34.5 + parent: 2 + - uid: 6293 + components: + - type: Transform + pos: 49.5,-33.5 + parent: 2 + - uid: 6294 + components: + - type: Transform + pos: 49.5,-32.5 + parent: 2 + - uid: 6295 + components: + - type: Transform + pos: 49.5,-31.5 + parent: 2 + - uid: 6296 + components: + - type: Transform + pos: 49.5,-30.5 + parent: 2 + - uid: 6297 + components: + - type: Transform + pos: 49.5,-29.5 + parent: 2 + - uid: 6298 + components: + - type: Transform + pos: 49.5,-28.5 + parent: 2 + - uid: 6299 + components: + - type: Transform + pos: 49.5,-27.5 + parent: 2 + - uid: 6300 + components: + - type: Transform + pos: 49.5,-26.5 + parent: 2 + - uid: 6301 + components: + - type: Transform + pos: 49.5,-25.5 + parent: 2 + - uid: 6302 + components: + - type: Transform + pos: 49.5,-24.5 + parent: 2 + - uid: 6303 + components: + - type: Transform + pos: 49.5,-23.5 + parent: 2 + - uid: 6304 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 6305 + components: + - type: Transform + pos: 49.5,-21.5 + parent: 2 + - uid: 6306 + components: + - type: Transform + pos: 49.5,-20.5 + parent: 2 + - uid: 6307 + components: + - type: Transform + pos: 49.5,-19.5 + parent: 2 + - uid: 6308 + components: + - type: Transform + pos: 49.5,-18.5 + parent: 2 + - uid: 6309 + components: + - type: Transform + pos: 49.5,-17.5 + parent: 2 + - uid: 6310 + components: + - type: Transform + pos: 49.5,-16.5 + parent: 2 + - uid: 6311 + components: + - type: Transform + pos: 49.5,-15.5 + parent: 2 + - uid: 6312 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 2 + - uid: 6313 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 2 + - uid: 6314 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 2 + - uid: 6315 + components: + - type: Transform + pos: 51.5,-13.5 + parent: 2 + - uid: 6316 + components: + - type: Transform + pos: 51.5,-12.5 + parent: 2 + - uid: 6317 + components: + - type: Transform + pos: 51.5,-11.5 + parent: 2 + - uid: 6318 + components: + - type: Transform + pos: 51.5,-10.5 + parent: 2 + - uid: 6319 + components: + - type: Transform + pos: 51.5,-9.5 + parent: 2 + - uid: 6320 + components: + - type: Transform + pos: 51.5,-8.5 + parent: 2 + - uid: 6321 + components: + - type: Transform + pos: 51.5,-7.5 + parent: 2 + - uid: 6322 + components: + - type: Transform + pos: 51.5,-6.5 + parent: 2 + - uid: 6323 + components: + - type: Transform + pos: 51.5,-5.5 + parent: 2 + - uid: 6324 + components: + - type: Transform + pos: 51.5,-4.5 + parent: 2 + - uid: 6325 + components: + - type: Transform + pos: 51.5,-3.5 + parent: 2 + - uid: 6326 + components: + - type: Transform + pos: 51.5,-2.5 + parent: 2 + - uid: 6327 + components: + - type: Transform + pos: 51.5,-1.5 + parent: 2 + - uid: 6328 + components: + - type: Transform + pos: 51.5,-0.5 + parent: 2 + - uid: 6329 + components: + - type: Transform + pos: 51.5,0.5 + parent: 2 + - uid: 6330 + components: + - type: Transform + pos: 51.5,1.5 + parent: 2 + - uid: 6331 + components: + - type: Transform + pos: 51.5,2.5 + parent: 2 + - uid: 6332 + components: + - type: Transform + pos: 51.5,3.5 + parent: 2 + - uid: 6333 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - uid: 6334 + components: + - type: Transform + pos: 52.5,4.5 + parent: 2 + - uid: 6335 + components: + - type: Transform + pos: 53.5,4.5 + parent: 2 + - uid: 6336 + components: + - type: Transform + pos: 54.5,4.5 + parent: 2 + - uid: 6337 + components: + - type: Transform + pos: 54.5,5.5 + parent: 2 + - uid: 6338 + components: + - type: Transform + pos: 54.5,6.5 + parent: 2 + - uid: 6339 + components: + - type: Transform + pos: 54.5,7.5 + parent: 2 + - uid: 6340 + components: + - type: Transform + pos: 54.5,8.5 + parent: 2 + - uid: 6341 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 + - uid: 6342 + components: + - type: Transform + pos: 54.5,10.5 + parent: 2 + - uid: 6343 + components: + - type: Transform + pos: 53.5,10.5 + parent: 2 + - uid: 6344 + components: + - type: Transform + pos: 52.5,10.5 + parent: 2 + - uid: 6345 + components: + - type: Transform + pos: 51.5,10.5 + parent: 2 + - uid: 6346 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - uid: 6347 + components: + - type: Transform + pos: 49.5,10.5 + parent: 2 + - uid: 6348 + components: + - type: Transform + pos: 48.5,10.5 + parent: 2 + - uid: 6349 + components: + - type: Transform + pos: 47.5,10.5 + parent: 2 + - uid: 6350 + components: + - type: Transform + pos: 46.5,10.5 + parent: 2 + - uid: 6351 + components: + - type: Transform + pos: 45.5,10.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + pos: 45.5,9.5 + parent: 2 + - uid: 6353 + components: + - type: Transform + pos: 45.5,8.5 + parent: 2 + - uid: 6354 + components: + - type: Transform + pos: 45.5,7.5 + parent: 2 + - uid: 6355 + components: + - type: Transform + pos: 45.5,6.5 + parent: 2 + - uid: 6356 + components: + - type: Transform + pos: 45.5,5.5 + parent: 2 + - uid: 6357 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 + - uid: 6358 + components: + - type: Transform + pos: 45.5,3.5 + parent: 2 + - uid: 6359 + components: + - type: Transform + pos: 44.5,3.5 + parent: 2 + - uid: 6360 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 + - uid: 6361 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 6362 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 6363 + components: + - type: Transform + pos: 42.5,5.5 + parent: 2 + - uid: 6364 + components: + - type: Transform + pos: 42.5,6.5 + parent: 2 + - uid: 6365 + components: + - type: Transform + pos: 42.5,7.5 + parent: 2 + - uid: 6366 + components: + - type: Transform + pos: 43.5,7.5 + parent: 2 + - uid: 6367 + components: + - type: Transform + pos: 19.5,15.5 + parent: 2 + - uid: 6368 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 6369 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - uid: 6370 + components: + - type: Transform + pos: -17.5,-60.5 + parent: 2 + - uid: 6371 + components: + - type: Transform + pos: -15.5,-63.5 + parent: 2 + - uid: 6372 + components: + - type: Transform + pos: -18.5,-55.5 + parent: 2 + - uid: 6373 + components: + - type: Transform + pos: -18.5,-57.5 + parent: 2 + - uid: 6374 + components: + - type: Transform + pos: -16.5,-60.5 + parent: 2 + - uid: 6375 + components: + - type: Transform + pos: -15.5,-64.5 + parent: 2 + - uid: 6376 + components: + - type: Transform + pos: -15.5,-62.5 + parent: 2 + - uid: 6377 + components: + - type: Transform + pos: -18.5,-58.5 + parent: 2 + - uid: 6378 + components: + - type: Transform + pos: -18.5,-59.5 + parent: 2 + - uid: 6379 + components: + - type: Transform + pos: -18.5,-56.5 + parent: 2 + - uid: 6380 + components: + - type: Transform + pos: -18.5,-60.5 + parent: 2 + - uid: 6381 + components: + - type: Transform + pos: 23.5,23.5 + parent: 2 + - uid: 6382 + components: + - type: Transform + pos: 16.5,30.5 + parent: 2 + - uid: 6383 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - uid: 6384 + components: + - type: Transform + pos: -0.5,26.5 + parent: 2 + - uid: 6385 + components: + - type: Transform + pos: -1.5,26.5 + parent: 2 + - uid: 6386 + components: + - type: Transform + pos: 2.5,26.5 + parent: 2 + - uid: 6387 + components: + - type: Transform + pos: -12.5,26.5 + parent: 2 + - uid: 6388 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 6389 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 6390 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 6391 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 6392 + components: + - type: Transform + pos: 21.5,27.5 + parent: 2 + - uid: 6393 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 + - uid: 6394 + components: + - type: Transform + pos: 21.5,29.5 + parent: 2 + - uid: 6395 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - uid: 6396 + components: + - type: Transform + pos: 20.5,30.5 + parent: 2 + - uid: 6397 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 + - uid: 6398 + components: + - type: Transform + pos: 18.5,30.5 + parent: 2 + - uid: 6399 + components: + - type: Transform + pos: 17.5,30.5 + parent: 2 + - uid: 6400 + components: + - type: Transform + pos: 15.5,30.5 + parent: 2 + - uid: 6401 + components: + - type: Transform + pos: 14.5,30.5 + parent: 2 + - uid: 6402 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 + - uid: 6403 + components: + - type: Transform + pos: 12.5,30.5 + parent: 2 + - uid: 6404 + components: + - type: Transform + pos: 11.5,30.5 + parent: 2 + - uid: 6405 + components: + - type: Transform + pos: 9.5,30.5 + parent: 2 + - uid: 6406 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - uid: 6407 + components: + - type: Transform + pos: 7.5,30.5 + parent: 2 + - uid: 6408 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 + - uid: 6409 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - uid: 6410 + components: + - type: Transform + pos: 7.5,27.5 + parent: 2 + - uid: 6411 + components: + - type: Transform + pos: 6.5,26.5 + parent: 2 + - uid: 6412 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - uid: 6413 + components: + - type: Transform + pos: 3.5,26.5 + parent: 2 + - uid: 6414 + components: + - type: Transform + pos: -4.5,26.5 + parent: 2 + - uid: 6415 + components: + - type: Transform + pos: -9.5,26.5 + parent: 2 + - uid: 6416 + components: + - type: Transform + pos: -11.5,26.5 + parent: 2 + - uid: 6417 + components: + - type: Transform + pos: -8.5,26.5 + parent: 2 + - uid: 6418 + components: + - type: Transform + pos: -7.5,26.5 + parent: 2 + - uid: 6419 + components: + - type: Transform + pos: -5.5,26.5 + parent: 2 + - uid: 6420 + components: + - type: Transform + pos: -3.5,26.5 + parent: 2 + - uid: 6421 + components: + - type: Transform + pos: 31.5,-38.5 + parent: 2 + - uid: 6422 + components: + - type: Transform + pos: -13.5,26.5 + parent: 2 + - uid: 6423 + components: + - type: Transform + pos: -15.5,-68.5 + parent: 2 + - uid: 6424 + components: + - type: Transform + pos: -15.5,-67.5 + parent: 2 + - uid: 6425 + components: + - type: Transform + pos: -15.5,-61.5 + parent: 2 + - uid: 6426 + components: + - type: Transform + pos: -18.5,-54.5 + parent: 2 + - uid: 6427 + components: + - type: Transform + pos: 5.5,26.5 + parent: 2 + - uid: 6428 + components: + - type: Transform + pos: -18.5,-53.5 + parent: 2 + - uid: 6429 + components: + - type: Transform + pos: -15.5,-66.5 + parent: 2 + - uid: 6430 + components: + - type: Transform + pos: 7.5,26.5 + parent: 2 + - uid: 6431 + components: + - type: Transform + pos: 81.5,-83.5 + parent: 2 + - uid: 6432 + components: + - type: Transform + pos: 81.5,-84.5 + parent: 2 + - uid: 6433 + components: + - type: Transform + pos: 81.5,-85.5 + parent: 2 + - uid: 6434 + components: + - type: Transform + pos: 81.5,-86.5 + parent: 2 + - uid: 6435 + components: + - type: Transform + pos: 83.5,-82.5 + parent: 2 + - uid: 6436 + components: + - type: Transform + pos: 82.5,-82.5 + parent: 2 + - uid: 6437 + components: + - type: Transform + pos: 80.5,-82.5 + parent: 2 + - uid: 6438 + components: + - type: Transform + pos: 79.5,-82.5 + parent: 2 + - uid: 6439 + components: + - type: Transform + pos: 79.5,-78.5 + parent: 2 + - uid: 6440 + components: + - type: Transform + pos: 80.5,-78.5 + parent: 2 + - uid: 6441 + components: + - type: Transform + pos: 82.5,-78.5 + parent: 2 + - uid: 6442 + components: + - type: Transform + pos: 83.5,-78.5 + parent: 2 + - uid: 6443 + components: + - type: Transform + pos: 83.5,-74.5 + parent: 2 + - uid: 6444 + components: + - type: Transform + pos: 82.5,-74.5 + parent: 2 + - uid: 6445 + components: + - type: Transform + pos: 80.5,-74.5 + parent: 2 + - uid: 6446 + components: + - type: Transform + pos: 79.5,-74.5 + parent: 2 + - uid: 6447 + components: + - type: Transform + pos: 83.5,-73.5 + parent: 2 + - uid: 6448 + components: + - type: Transform + pos: 84.5,-73.5 + parent: 2 + - uid: 6449 + components: + - type: Transform + pos: 85.5,-73.5 + parent: 2 + - uid: 6450 + components: + - type: Transform + pos: 86.5,-73.5 + parent: 2 + - uid: 6451 + components: + - type: Transform + pos: 87.5,-73.5 + parent: 2 + - uid: 6452 + components: + - type: Transform + pos: 87.5,-75.5 + parent: 2 + - uid: 6453 + components: + - type: Transform + pos: 86.5,-75.5 + parent: 2 + - uid: 6454 + components: + - type: Transform + pos: 85.5,-75.5 + parent: 2 + - uid: 6455 + components: + - type: Transform + pos: 84.5,-75.5 + parent: 2 + - uid: 6456 + components: + - type: Transform + pos: 83.5,-75.5 + parent: 2 + - uid: 6457 + components: + - type: Transform + pos: 83.5,-77.5 + parent: 2 + - uid: 6458 + components: + - type: Transform + pos: 84.5,-77.5 + parent: 2 + - uid: 6459 + components: + - type: Transform + pos: 85.5,-77.5 + parent: 2 + - uid: 6460 + components: + - type: Transform + pos: 86.5,-77.5 + parent: 2 + - uid: 6461 + components: + - type: Transform + pos: 87.5,-77.5 + parent: 2 + - uid: 6462 + components: + - type: Transform + pos: 87.5,-79.5 + parent: 2 + - uid: 6463 + components: + - type: Transform + pos: 86.5,-79.5 + parent: 2 + - uid: 6464 + components: + - type: Transform + pos: 85.5,-79.5 + parent: 2 + - uid: 6465 + components: + - type: Transform + pos: 84.5,-79.5 + parent: 2 + - uid: 6466 + components: + - type: Transform + pos: -46.5,12.5 + parent: 2 + - uid: 6467 + components: + - type: Transform + pos: -44.5,12.5 + parent: 2 + - uid: 6468 + components: + - type: Transform + pos: 83.5,-79.5 + parent: 2 + - uid: 6469 + components: + - type: Transform + pos: 83.5,-81.5 + parent: 2 + - uid: 6470 + components: + - type: Transform + pos: 84.5,-81.5 + parent: 2 + - uid: 6471 + components: + - type: Transform + pos: 85.5,-81.5 + parent: 2 + - uid: 6472 + components: + - type: Transform + pos: 86.5,-81.5 + parent: 2 + - uid: 6473 + components: + - type: Transform + pos: 87.5,-81.5 + parent: 2 + - uid: 6474 + components: + - type: Transform + pos: 87.5,-83.5 + parent: 2 + - uid: 6475 + components: + - type: Transform + pos: 86.5,-83.5 + parent: 2 + - uid: 6476 + components: + - type: Transform + pos: 85.5,-83.5 + parent: 2 + - uid: 6477 + components: + - type: Transform + pos: 84.5,-83.5 + parent: 2 + - uid: 6478 + components: + - type: Transform + pos: 83.5,-83.5 + parent: 2 + - uid: 6479 + components: + - type: Transform + pos: 75.5,-83.5 + parent: 2 + - uid: 6480 + components: + - type: Transform + pos: 23.5,24.5 + parent: 2 + - uid: 6481 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - uid: 6482 + components: + - type: Transform + pos: 23.5,25.5 + parent: 2 + - uid: 6483 + components: + - type: Transform + pos: 76.5,-83.5 + parent: 2 + - uid: 6484 + components: + - type: Transform + pos: 81.5,-72.5 + parent: 2 + - uid: 6485 + components: + - type: Transform + pos: 81.5,-71.5 + parent: 2 + - uid: 6486 + components: + - type: Transform + pos: 81.5,-70.5 + parent: 2 + - uid: 6487 + components: + - type: Transform + pos: 81.5,-69.5 + parent: 2 + - uid: 6488 + components: + - type: Transform + pos: 81.5,-61.5 + parent: 2 + - uid: 6489 + components: + - type: Transform + pos: 81.5,-62.5 + parent: 2 + - uid: 6490 + components: + - type: Transform + pos: 81.5,-63.5 + parent: 2 + - uid: 6491 + components: + - type: Transform + pos: -15.5,-60.5 + parent: 2 + - uid: 6492 + components: + - type: Transform + pos: -15.5,-65.5 + parent: 2 + - uid: 6493 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 2 + - uid: 6494 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 2 + - uid: 6495 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 2 + - uid: 6496 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 2 + - uid: 6497 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 2 + - uid: 6498 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 + - uid: 6499 + components: + - type: Transform + pos: 8.5,-38.5 + parent: 2 + - uid: 6500 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 2 + - uid: 6501 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 2 + - uid: 6502 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 2 + - uid: 6503 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 2 + - uid: 6504 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 6505 + components: + - type: Transform + pos: -16.5,11.5 + parent: 2 + - uid: 6506 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 + - uid: 6507 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 + - uid: 6508 + components: + - type: Transform + pos: -16.5,14.5 + parent: 2 + - uid: 6509 + components: + - type: Transform + pos: -16.5,15.5 + parent: 2 + - uid: 6510 + components: + - type: Transform + pos: -16.5,16.5 + parent: 2 + - uid: 6511 + components: + - type: Transform + pos: -16.5,17.5 + parent: 2 + - uid: 6512 + components: + - type: Transform + pos: -16.5,18.5 + parent: 2 + - uid: 6513 + components: + - type: Transform + pos: -16.5,19.5 + parent: 2 + - uid: 6514 + components: + - type: Transform + pos: -17.5,20.5 + parent: 2 + - uid: 6515 + components: + - type: Transform + pos: -17.5,19.5 + parent: 2 + - uid: 6516 + components: + - type: Transform + pos: -17.5,21.5 + parent: 2 + - uid: 6517 + components: + - type: Transform + pos: -17.5,22.5 + parent: 2 + - uid: 6518 + components: + - type: Transform + pos: -16.5,23.5 + parent: 2 + - uid: 6519 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - uid: 6520 + components: + - type: Transform + pos: -15.5,23.5 + parent: 2 + - uid: 6521 + components: + - type: Transform + pos: -13.5,23.5 + parent: 2 + - uid: 6522 + components: + - type: Transform + pos: -14.5,23.5 + parent: 2 + - uid: 6523 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - uid: 6524 + components: + - type: Transform + pos: -13.5,25.5 + parent: 2 + - uid: 6525 + components: + - type: Transform + pos: -20.5,-33.5 + parent: 2 + - uid: 6526 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 2 + - uid: 6527 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 2 + - uid: 6528 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 2 + - uid: 6529 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 2 + - uid: 6530 + components: + - type: Transform + pos: -17.5,-35.5 + parent: 2 + - uid: 6531 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 2 + - uid: 6532 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 2 + - uid: 6533 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 2 + - uid: 6534 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 2 + - uid: 6535 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 2 + - uid: 6536 + components: + - type: Transform + pos: -17.5,-41.5 + parent: 2 + - uid: 6537 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 2 + - uid: 6538 + components: + - type: Transform + pos: -17.5,-43.5 + parent: 2 + - uid: 6539 + components: + - type: Transform + pos: -17.5,-44.5 + parent: 2 + - uid: 6540 + components: + - type: Transform + pos: -17.5,-45.5 + parent: 2 + - uid: 6541 + components: + - type: Transform + pos: -17.5,-46.5 + parent: 2 + - uid: 6542 + components: + - type: Transform + pos: -17.5,-47.5 + parent: 2 + - uid: 6543 + components: + - type: Transform + pos: -18.5,-47.5 + parent: 2 + - uid: 6544 + components: + - type: Transform + pos: -26.5,-32.5 + parent: 2 + - uid: 6545 + components: + - type: Transform + pos: -26.5,-33.5 + parent: 2 + - uid: 6546 + components: + - type: Transform + pos: -22.5,-33.5 + parent: 2 + - uid: 6547 + components: + - type: Transform + pos: -25.5,-33.5 + parent: 2 + - uid: 6548 + components: + - type: Transform + pos: -21.5,-33.5 + parent: 2 + - uid: 6549 + components: + - type: Transform + pos: -24.5,-33.5 + parent: 2 + - uid: 6550 + components: + - type: Transform + pos: -23.5,-33.5 + parent: 2 + - uid: 6551 + components: + - type: Transform + pos: -30.5,-30.5 + parent: 2 + - uid: 6552 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 2 + - uid: 6553 + components: + - type: Transform + pos: -28.5,-30.5 + parent: 2 + - uid: 6554 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - uid: 6555 + components: + - type: Transform + pos: -26.5,-30.5 + parent: 2 + - uid: 6556 + components: + - type: Transform + pos: -26.5,-31.5 + parent: 2 + - uid: 6557 + components: + - type: Transform + pos: -31.5,-30.5 + parent: 2 + - uid: 6558 + components: + - type: Transform + pos: -32.5,-30.5 + parent: 2 + - uid: 6559 + components: + - type: Transform + pos: -32.5,-29.5 + parent: 2 + - uid: 6560 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 2 + - uid: 6561 + components: + - type: Transform + pos: -32.5,-27.5 + parent: 2 + - uid: 6562 + components: + - type: Transform + pos: -32.5,-26.5 + parent: 2 + - uid: 6563 + components: + - type: Transform + pos: -32.5,-25.5 + parent: 2 + - uid: 6564 + components: + - type: Transform + pos: -32.5,-24.5 + parent: 2 + - uid: 6565 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 2 + - uid: 6566 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 2 + - uid: 6567 + components: + - type: Transform + pos: -35.5,-24.5 + parent: 2 + - uid: 6568 + components: + - type: Transform + pos: -36.5,-24.5 + parent: 2 + - uid: 6569 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 2 + - uid: 6570 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 2 + - uid: 6571 + components: + - type: Transform + pos: -39.5,-24.5 + parent: 2 + - uid: 6572 + components: + - type: Transform + pos: -39.5,-23.5 + parent: 2 + - uid: 6573 + components: + - type: Transform + pos: -39.5,-22.5 + parent: 2 + - uid: 6574 + components: + - type: Transform + pos: -39.5,-21.5 + parent: 2 + - uid: 6575 + components: + - type: Transform + pos: -39.5,-20.5 + parent: 2 + - uid: 6576 + components: + - type: Transform + pos: -39.5,-19.5 + parent: 2 + - uid: 6577 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 2 + - uid: 6578 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 2 + - uid: 6579 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 2 + - uid: 6580 + components: + - type: Transform + pos: -38.5,-16.5 + parent: 2 + - uid: 6581 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 6582 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 2 + - uid: 6583 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - uid: 6584 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 2 + - uid: 6585 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - uid: 6586 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 2 + - uid: 6587 + components: + - type: Transform + pos: -34.5,-13.5 + parent: 2 + - uid: 6588 + components: + - type: Transform + pos: -34.5,-12.5 + parent: 2 + - uid: 6589 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 2 + - uid: 6590 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - uid: 6591 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 2 + - uid: 6592 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 6593 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 6594 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 6595 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 2 + - uid: 6596 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 6597 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 6598 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 6599 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - uid: 6600 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - uid: 6601 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 2 + - uid: 6602 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 + - uid: 6603 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 2 + - uid: 6604 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 2 + - uid: 6605 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 2 + - uid: 6606 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - uid: 6607 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 6608 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - uid: 6609 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 + - uid: 6610 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - uid: 6611 + components: + - type: Transform + pos: -25.5,1.5 + parent: 2 + - uid: 6612 + components: + - type: Transform + pos: -25.5,2.5 + parent: 2 + - uid: 6613 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 + - uid: 6614 + components: + - type: Transform + pos: -25.5,4.5 + parent: 2 + - uid: 6615 + components: + - type: Transform + pos: -25.5,5.5 + parent: 2 + - uid: 6616 + components: + - type: Transform + pos: -25.5,6.5 + parent: 2 + - uid: 6617 + components: + - type: Transform + pos: -25.5,7.5 + parent: 2 + - uid: 6618 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 6619 + components: + - type: Transform + pos: -25.5,9.5 + parent: 2 + - uid: 6620 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - uid: 6621 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 6622 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 6623 + components: + - type: Transform + pos: -22.5,10.5 + parent: 2 + - uid: 6624 + components: + - type: Transform + pos: -21.5,10.5 + parent: 2 + - uid: 6625 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - uid: 6626 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 6627 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 6628 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 6629 + components: + - type: Transform + pos: 19.5,16.5 + parent: 2 + - uid: 6630 + components: + - type: Transform + pos: 19.5,14.5 + parent: 2 + - uid: 6631 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - uid: 6632 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 + - uid: 6633 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - uid: 6634 + components: + - type: Transform + pos: 19.5,9.5 + parent: 2 + - uid: 6635 + components: + - type: Transform + pos: 20.5,9.5 + parent: 2 + - uid: 6636 + components: + - type: Transform + pos: 21.5,9.5 + parent: 2 + - uid: 6637 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 6638 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - uid: 6639 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 6640 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 6641 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - uid: 6642 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 6643 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 + - uid: 6644 + components: + - type: Transform + pos: 24.5,3.5 + parent: 2 + - uid: 6645 + components: + - type: Transform + pos: 24.5,4.5 + parent: 2 + - uid: 6646 + components: + - type: Transform + pos: 25.5,3.5 + parent: 2 + - uid: 6647 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 + - uid: 6648 + components: + - type: Transform + pos: 27.5,3.5 + parent: 2 + - uid: 6649 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 6650 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 6651 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 6652 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - uid: 6653 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - uid: 6654 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 6655 + components: + - type: Transform + pos: 34.5,3.5 + parent: 2 + - uid: 6656 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 + - uid: 6657 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 6658 + components: + - type: Transform + pos: 37.5,3.5 + parent: 2 + - uid: 6659 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 + - uid: 6660 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - uid: 6661 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 6662 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 6663 + components: + - type: Transform + pos: 47.5,40.5 + parent: 2 + - uid: 6664 + components: + - type: Transform + pos: 47.5,41.5 + parent: 2 + - uid: 6665 + components: + - type: Transform + pos: 49.5,33.5 + parent: 2 + - uid: 6666 + components: + - type: Transform + pos: 48.5,29.5 + parent: 2 + - uid: 6667 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 6668 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 6669 + components: + - type: Transform + pos: 47.5,39.5 + parent: 2 + - uid: 6670 + components: + - type: Transform + pos: 47.5,18.5 + parent: 2 + - uid: 6671 + components: + - type: Transform + pos: 41.5,38.5 + parent: 2 + - uid: 6672 + components: + - type: Transform + pos: 42.5,38.5 + parent: 2 + - uid: 6673 + components: + - type: Transform + pos: 43.5,38.5 + parent: 2 + - uid: 6674 + components: + - type: Transform + pos: 44.5,38.5 + parent: 2 + - uid: 6675 + components: + - type: Transform + pos: 45.5,38.5 + parent: 2 + - uid: 6676 + components: + - type: Transform + pos: 41.5,36.5 + parent: 2 + - uid: 6677 + components: + - type: Transform + pos: 42.5,36.5 + parent: 2 + - uid: 6678 + components: + - type: Transform + pos: 43.5,36.5 + parent: 2 + - uid: 6679 + components: + - type: Transform + pos: 44.5,36.5 + parent: 2 + - uid: 6680 + components: + - type: Transform + pos: 45.5,36.5 + parent: 2 + - uid: 6681 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - uid: 6682 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 + - uid: 6683 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - uid: 6684 + components: + - type: Transform + pos: 44.5,34.5 + parent: 2 + - uid: 6685 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 + - uid: 6686 + components: + - type: Transform + pos: 41.5,32.5 + parent: 2 + - uid: 6687 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 + - uid: 6688 + components: + - type: Transform + pos: 43.5,32.5 + parent: 2 + - uid: 6689 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - uid: 6690 + components: + - type: Transform + pos: 45.5,32.5 + parent: 2 + - uid: 6691 + components: + - type: Transform + pos: 49.5,32.5 + parent: 2 + - uid: 6692 + components: + - type: Transform + pos: 50.5,32.5 + parent: 2 + - uid: 6693 + components: + - type: Transform + pos: 51.5,32.5 + parent: 2 + - uid: 6694 + components: + - type: Transform + pos: 52.5,32.5 + parent: 2 + - uid: 6695 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 + - uid: 6696 + components: + - type: Transform + pos: 49.5,34.5 + parent: 2 + - uid: 6697 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 + - uid: 6698 + components: + - type: Transform + pos: 51.5,34.5 + parent: 2 + - uid: 6699 + components: + - type: Transform + pos: 52.5,34.5 + parent: 2 + - uid: 6700 + components: + - type: Transform + pos: 53.5,34.5 + parent: 2 + - uid: 6701 + components: + - type: Transform + pos: 49.5,36.5 + parent: 2 + - uid: 6702 + components: + - type: Transform + pos: 50.5,36.5 + parent: 2 + - uid: 6703 + components: + - type: Transform + pos: 51.5,36.5 + parent: 2 + - uid: 6704 + components: + - type: Transform + pos: 52.5,36.5 + parent: 2 + - uid: 6705 + components: + - type: Transform + pos: 53.5,36.5 + parent: 2 + - uid: 6706 + components: + - type: Transform + pos: 49.5,38.5 + parent: 2 + - uid: 6707 + components: + - type: Transform + pos: 50.5,38.5 + parent: 2 + - uid: 6708 + components: + - type: Transform + pos: 51.5,38.5 + parent: 2 + - uid: 6709 + components: + - type: Transform + pos: 52.5,38.5 + parent: 2 + - uid: 6710 + components: + - type: Transform + pos: 53.5,38.5 + parent: 2 + - uid: 6711 + components: + - type: Transform + pos: 47.5,17.5 + parent: 2 + - uid: 6712 + components: + - type: Transform + pos: 45.5,30.5 + parent: 2 + - uid: 6713 + components: + - type: Transform + pos: 44.5,30.5 + parent: 2 + - uid: 6714 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - uid: 6715 + components: + - type: Transform + pos: 42.5,30.5 + parent: 2 + - uid: 6716 + components: + - type: Transform + pos: 41.5,30.5 + parent: 2 + - uid: 6717 + components: + - type: Transform + pos: 41.5,28.5 + parent: 2 + - uid: 6718 + components: + - type: Transform + pos: 42.5,28.5 + parent: 2 + - uid: 6719 + components: + - type: Transform + pos: 43.5,28.5 + parent: 2 + - uid: 6720 + components: + - type: Transform + pos: 44.5,28.5 + parent: 2 + - uid: 6721 + components: + - type: Transform + pos: 45.5,28.5 + parent: 2 + - uid: 6722 + components: + - type: Transform + pos: 49.5,28.5 + parent: 2 + - uid: 6723 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 + - uid: 6724 + components: + - type: Transform + pos: 51.5,28.5 + parent: 2 + - uid: 6725 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 + - uid: 6726 + components: + - type: Transform + pos: 53.5,28.5 + parent: 2 + - uid: 6727 + components: + - type: Transform + pos: 53.5,30.5 + parent: 2 + - uid: 6728 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - uid: 6729 + components: + - type: Transform + pos: 51.5,30.5 + parent: 2 + - uid: 6730 + components: + - type: Transform + pos: 50.5,30.5 + parent: 2 + - uid: 6731 + components: + - type: Transform + pos: 49.5,30.5 + parent: 2 + - uid: 6732 + components: + - type: Transform + pos: 49.5,29.5 + parent: 2 + - uid: 6733 + components: + - type: Transform + pos: 46.5,33.5 + parent: 2 + - uid: 6734 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 + - uid: 6735 + components: + - type: Transform + pos: 47.5,28.5 + parent: 2 + - uid: 6736 + components: + - type: Transform + pos: 47.5,27.5 + parent: 2 + - uid: 6737 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 6738 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 6739 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 6740 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 6741 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 + - uid: 6742 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 6743 + components: + - type: Transform + pos: 47.5,15.5 + parent: 2 + - uid: 6744 + components: + - type: Transform + pos: 47.5,14.5 + parent: 2 + - uid: 6745 + components: + - type: Transform + pos: 47.5,13.5 + parent: 2 + - uid: 6746 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 + - uid: 6747 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 6748 + components: + - type: Transform + pos: 51.5,13.5 + parent: 2 + - uid: 6749 + components: + - type: Transform + pos: 52.5,13.5 + parent: 2 + - uid: 6750 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 6751 + components: + - type: Transform + pos: 54.5,13.5 + parent: 2 + - uid: 6752 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - uid: 6753 + components: + - type: Transform + pos: 56.5,13.5 + parent: 2 + - uid: 6754 + components: + - type: Transform + pos: 57.5,13.5 + parent: 2 + - uid: 6755 + components: + - type: Transform + pos: 58.5,13.5 + parent: 2 + - uid: 6756 + components: + - type: Transform + pos: 59.5,13.5 + parent: 2 + - uid: 6757 + components: + - type: Transform + pos: 59.5,12.5 + parent: 2 + - uid: 6758 + components: + - type: Transform + pos: 59.5,11.5 + parent: 2 + - uid: 6759 + components: + - type: Transform + pos: 59.5,10.5 + parent: 2 + - uid: 6760 + components: + - type: Transform + pos: 58.5,10.5 + parent: 2 + - uid: 6761 + components: + - type: Transform + pos: 57.5,10.5 + parent: 2 + - uid: 6762 + components: + - type: Transform + pos: 56.5,10.5 + parent: 2 + - uid: 6763 + components: + - type: Transform + pos: 55.5,10.5 + parent: 2 + - uid: 6764 + components: + - type: Transform + pos: 48.5,37.5 + parent: 2 + - uid: 6765 + components: + - type: Transform + pos: 46.5,37.5 + parent: 2 + - uid: 6766 + components: + - type: Transform + pos: 49.5,37.5 + parent: 2 + - uid: 6767 + components: + - type: Transform + pos: 45.5,33.5 + parent: 2 + - uid: 6768 + components: + - type: Transform + pos: 48.5,33.5 + parent: 2 + - uid: 6769 + components: + - type: Transform + pos: 45.5,37.5 + parent: 2 + - uid: 6770 + components: + - type: Transform + pos: -51.5,29.5 + parent: 2 + - uid: 6771 + components: + - type: Transform + pos: -50.5,29.5 + parent: 2 + - uid: 6772 + components: + - type: Transform + pos: -51.5,28.5 + parent: 2 + - uid: 6773 + components: + - type: Transform + pos: -52.5,28.5 + parent: 2 + - uid: 6774 + components: + - type: Transform + pos: -51.5,30.5 + parent: 2 + - uid: 6775 + components: + - type: Transform + pos: -53.5,30.5 + parent: 2 + - uid: 6776 + components: + - type: Transform + pos: -52.5,30.5 + parent: 2 + - uid: 6777 + components: + - type: Transform + pos: -55.5,30.5 + parent: 2 + - uid: 6778 + components: + - type: Transform + pos: -54.5,30.5 + parent: 2 + - uid: 6779 + components: + - type: Transform + pos: -55.5,28.5 + parent: 2 + - uid: 6780 + components: + - type: Transform + pos: -54.5,28.5 + parent: 2 + - uid: 6781 + components: + - type: Transform + pos: -53.5,28.5 + parent: 2 + - uid: 6782 + components: + - type: Transform + pos: -43.5,32.5 + parent: 2 + - uid: 6783 + components: + - type: Transform + pos: -45.5,30.5 + parent: 2 + - uid: 6784 + components: + - type: Transform + pos: -44.5,30.5 + parent: 2 + - uid: 6785 + components: + - type: Transform + pos: -43.5,30.5 + parent: 2 + - uid: 6786 + components: + - type: Transform + pos: -43.5,28.5 + parent: 2 + - uid: 6787 + components: + - type: Transform + pos: -44.5,28.5 + parent: 2 + - uid: 6788 + components: + - type: Transform + pos: -45.5,28.5 + parent: 2 + - uid: 6789 + components: + - type: Transform + pos: -46.5,32.5 + parent: 2 + - uid: 6790 + components: + - type: Transform + pos: -46.5,30.5 + parent: 2 + - uid: 6791 + components: + - type: Transform + pos: -48.5,29.5 + parent: 2 + - uid: 6792 + components: + - type: Transform + pos: -47.5,29.5 + parent: 2 + - uid: 6793 + components: + - type: Transform + pos: -47.5,30.5 + parent: 2 + - uid: 6794 + components: + - type: Transform + pos: -47.5,32.5 + parent: 2 + - uid: 6795 + components: + - type: Transform + pos: -45.5,32.5 + parent: 2 + - uid: 6796 + components: + - type: Transform + pos: -44.5,32.5 + parent: 2 + - uid: 6797 + components: + - type: Transform + pos: -47.5,28.5 + parent: 2 + - uid: 6798 + components: + - type: Transform + pos: -46.5,28.5 + parent: 2 + - uid: 6799 + components: + - type: Transform + pos: -43.5,34.5 + parent: 2 + - uid: 6800 + components: + - type: Transform + pos: -15.5,11.5 + parent: 2 + - uid: 6801 + components: + - type: Transform + pos: -44.5,10.5 + parent: 2 + - uid: 6802 + components: + - type: Transform + pos: -43.5,11.5 + parent: 2 + - uid: 6803 + components: + - type: Transform + pos: -45.5,12.5 + parent: 2 + - uid: 6804 + components: + - type: Transform + pos: -49.5,28.5 + parent: 2 + - uid: 6805 + components: + - type: Transform + pos: -49.5,27.5 + parent: 2 + - uid: 6806 + components: + - type: Transform + pos: -49.5,26.5 + parent: 2 + - uid: 6807 + components: + - type: Transform + pos: -49.5,25.5 + parent: 2 + - uid: 6808 + components: + - type: Transform + pos: -49.5,24.5 + parent: 2 + - uid: 6809 + components: + - type: Transform + pos: -51.5,37.5 + parent: 2 + - uid: 6810 + components: + - type: Transform + pos: -47.5,37.5 + parent: 2 + - uid: 6811 + components: + - type: Transform + pos: -47.5,33.5 + parent: 2 + - uid: 6812 + components: + - type: Transform + pos: -51.5,33.5 + parent: 2 + - uid: 6813 + components: + - type: Transform + pos: -49.5,21.5 + parent: 2 + - uid: 6814 + components: + - type: Transform + pos: -49.5,19.5 + parent: 2 + - uid: 6815 + components: + - type: Transform + pos: -49.5,18.5 + parent: 2 + - uid: 6816 + components: + - type: Transform + pos: -47.5,12.5 + parent: 2 + - uid: 6817 + components: + - type: Transform + pos: -47.5,11.5 + parent: 2 + - uid: 6818 + components: + - type: Transform + pos: -47.5,10.5 + parent: 2 + - uid: 6819 + components: + - type: Transform + pos: -47.5,9.5 + parent: 2 + - uid: 6820 + components: + - type: Transform + pos: -48.5,9.5 + parent: 2 + - uid: 6821 + components: + - type: Transform + pos: -49.5,9.5 + parent: 2 + - uid: 6822 + components: + - type: Transform + pos: -49.5,8.5 + parent: 2 + - uid: 6823 + components: + - type: Transform + pos: -49.5,7.5 + parent: 2 + - uid: 6824 + components: + - type: Transform + pos: -49.5,6.5 + parent: 2 + - uid: 6825 + components: + - type: Transform + pos: -49.5,5.5 + parent: 2 + - uid: 6826 + components: + - type: Transform + pos: -49.5,4.5 + parent: 2 + - uid: 6827 + components: + - type: Transform + pos: -49.5,3.5 + parent: 2 + - uid: 6828 + components: + - type: Transform + pos: -49.5,2.5 + parent: 2 + - uid: 6829 + components: + - type: Transform + pos: -49.5,1.5 + parent: 2 + - uid: 6830 + components: + - type: Transform + pos: -49.5,0.5 + parent: 2 + - uid: 6831 + components: + - type: Transform + pos: -49.5,-0.5 + parent: 2 + - uid: 6832 + components: + - type: Transform + pos: -49.5,-1.5 + parent: 2 + - uid: 6833 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 + - uid: 6834 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 2 + - uid: 6835 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 2 + - uid: 6836 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - uid: 6837 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - uid: 6838 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 6839 + components: + - type: Transform + pos: -50.5,-8.5 + parent: 2 + - uid: 6840 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 6841 + components: + - type: Transform + pos: -50.5,-10.5 + parent: 2 + - uid: 6842 + components: + - type: Transform + pos: -50.5,-11.5 + parent: 2 + - uid: 6843 + components: + - type: Transform + pos: -50.5,-12.5 + parent: 2 + - uid: 6844 + components: + - type: Transform + pos: -50.5,-13.5 + parent: 2 + - uid: 6845 + components: + - type: Transform + pos: -50.5,-14.5 + parent: 2 + - uid: 6846 + components: + - type: Transform + pos: -50.5,-15.5 + parent: 2 + - uid: 6847 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 2 + - uid: 6848 + components: + - type: Transform + pos: -50.5,-17.5 + parent: 2 + - uid: 6849 + components: + - type: Transform + pos: -50.5,-18.5 + parent: 2 + - uid: 6850 + components: + - type: Transform + pos: -49.5,-18.5 + parent: 2 + - uid: 6851 + components: + - type: Transform + pos: -48.5,-18.5 + parent: 2 + - uid: 6852 + components: + - type: Transform + pos: -47.5,-18.5 + parent: 2 + - uid: 6853 + components: + - type: Transform + pos: -46.5,-18.5 + parent: 2 + - uid: 6854 + components: + - type: Transform + pos: -45.5,-18.5 + parent: 2 + - uid: 6855 + components: + - type: Transform + pos: -44.5,-18.5 + parent: 2 + - uid: 6856 + components: + - type: Transform + pos: -43.5,-18.5 + parent: 2 + - uid: 6857 + components: + - type: Transform + pos: -42.5,-18.5 + parent: 2 + - uid: 6858 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 6859 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - uid: 6860 + components: + - type: Transform + pos: -44.5,9.5 + parent: 2 + - uid: 6861 + components: + - type: Transform + pos: -43.5,10.5 + parent: 2 + - uid: 6862 + components: + - type: Transform + pos: -43.5,12.5 + parent: 2 + - uid: 6863 + components: + - type: Transform + pos: -49.5,20.5 + parent: 2 + - uid: 6864 + components: + - type: Transform + pos: -14.5,11.5 + parent: 2 + - uid: 6865 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 + - uid: 6866 + components: + - type: Transform + pos: -10.5,11.5 + parent: 2 + - uid: 6867 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - uid: 6868 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 + - uid: 6869 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 6870 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - uid: 6871 + components: + - type: Transform + pos: -6.5,11.5 + parent: 2 + - uid: 6872 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - uid: 6873 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 6874 + components: + - type: Transform + pos: -3.5,11.5 + parent: 2 + - uid: 6875 + components: + - type: Transform + pos: -2.5,11.5 + parent: 2 + - uid: 6876 + components: + - type: Transform + pos: -1.5,11.5 + parent: 2 + - uid: 6877 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 6878 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 6879 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 + - uid: 6880 + components: + - type: Transform + pos: 2.5,11.5 + parent: 2 + - uid: 6881 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 6882 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 6883 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 6884 + components: + - type: Transform + pos: 2.5,15.5 + parent: 2 + - uid: 6885 + components: + - type: Transform + pos: 2.5,16.5 + parent: 2 + - uid: 6886 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 6887 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 6888 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 6889 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 6890 + components: + - type: Transform + pos: 6.5,17.5 + parent: 2 + - uid: 6891 + components: + - type: Transform + pos: 7.5,17.5 + parent: 2 + - uid: 6892 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 + - uid: 6893 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 + - uid: 6894 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 + - uid: 6895 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 6896 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - uid: 6897 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 6898 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 6899 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - uid: 6900 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 6901 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 6902 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 6903 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 + - uid: 6904 + components: + - type: Transform + pos: -23.5,-65.5 + parent: 2 + - uid: 6905 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 2 + - uid: 6906 + components: + - type: Transform + pos: 6.5,-65.5 + parent: 2 + - uid: 6907 + components: + - type: Transform + pos: 8.5,-65.5 + parent: 2 + - uid: 6908 + components: + - type: Transform + pos: 8.5,-64.5 + parent: 2 + - uid: 6909 + components: + - type: Transform + pos: 5.5,-64.5 + parent: 2 + - uid: 6910 + components: + - type: Transform + pos: -2.5,-61.5 + parent: 2 + - uid: 6911 + components: + - type: Transform + pos: -20.5,-70.5 + parent: 2 + - uid: 6912 + components: + - type: Transform + pos: 7.5,-65.5 + parent: 2 + - uid: 6913 + components: + - type: Transform + pos: -23.5,-70.5 + parent: 2 + - uid: 6914 + components: + - type: Transform + pos: -22.5,-70.5 + parent: 2 + - uid: 6915 + components: + - type: Transform + pos: -24.5,-70.5 + parent: 2 + - uid: 6916 + components: + - type: Transform + pos: -24.5,-64.5 + parent: 2 + - uid: 6917 + components: + - type: Transform + pos: -6.5,-49.5 + parent: 2 + - uid: 6918 + components: + - type: Transform + pos: -7.5,-49.5 + parent: 2 + - uid: 6919 + components: + - type: Transform + pos: -6.5,-50.5 + parent: 2 + - uid: 6920 + components: + - type: Transform + pos: -54.5,-57.5 + parent: 2 + - uid: 6921 + components: + - type: Transform + pos: -54.5,-58.5 + parent: 2 + - uid: 6922 + components: + - type: Transform + pos: -52.5,-58.5 + parent: 2 + - uid: 6923 + components: + - type: Transform + pos: -52.5,-56.5 + parent: 2 + - uid: 6924 + components: + - type: Transform + pos: -52.5,-57.5 + parent: 2 + - uid: 6925 + components: + - type: Transform + pos: -54.5,-66.5 + parent: 2 + - uid: 6926 + components: + - type: Transform + pos: -54.5,-65.5 + parent: 2 + - uid: 6927 + components: + - type: Transform + pos: -52.5,-55.5 + parent: 2 + - uid: 6928 + components: + - type: Transform + pos: -49.5,-60.5 + parent: 2 + - uid: 6929 + components: + - type: Transform + pos: -49.5,-59.5 + parent: 2 + - uid: 6930 + components: + - type: Transform + pos: -50.5,-58.5 + parent: 2 + - uid: 6931 + components: + - type: Transform + pos: -50.5,-59.5 + parent: 2 + - uid: 6932 + components: + - type: Transform + pos: -52.5,-67.5 + parent: 2 + - uid: 6933 + components: + - type: Transform + pos: -52.5,-65.5 + parent: 2 + - uid: 6934 + components: + - type: Transform + pos: -54.5,-64.5 + parent: 2 + - uid: 6935 + components: + - type: Transform + pos: -54.5,-63.5 + parent: 2 + - uid: 6936 + components: + - type: Transform + pos: -53.5,-63.5 + parent: 2 + - uid: 6937 + components: + - type: Transform + pos: -52.5,-63.5 + parent: 2 + - uid: 6938 + components: + - type: Transform + pos: -52.5,-64.5 + parent: 2 + - uid: 6939 + components: + - type: Transform + pos: -36.5,-62.5 + parent: 2 + - uid: 6940 + components: + - type: Transform + pos: -38.5,-61.5 + parent: 2 + - uid: 6941 + components: + - type: Transform + pos: -37.5,-62.5 + parent: 2 + - uid: 6942 + components: + - type: Transform + pos: -54.5,-67.5 + parent: 2 + - uid: 6943 + components: + - type: Transform + pos: -53.5,-62.5 + parent: 2 + - uid: 6944 + components: + - type: Transform + pos: -53.5,-60.5 + parent: 2 + - uid: 6945 + components: + - type: Transform + pos: -53.5,-59.5 + parent: 2 + - uid: 6946 + components: + - type: Transform + pos: -54.5,-59.5 + parent: 2 + - uid: 6947 + components: + - type: Transform + pos: -52.5,-59.5 + parent: 2 + - uid: 6948 + components: + - type: Transform + pos: -54.5,-55.5 + parent: 2 + - uid: 6949 + components: + - type: Transform + pos: -54.5,-56.5 + parent: 2 + - uid: 6950 + components: + - type: Transform + pos: -52.5,-66.5 + parent: 2 + - uid: 6951 + components: + - type: Transform + pos: -50.5,-57.5 + parent: 2 + - uid: 6952 + components: + - type: Transform + pos: -50.5,-56.5 + parent: 2 + - uid: 6953 + components: + - type: Transform + pos: -48.5,-55.5 + parent: 2 + - uid: 6954 + components: + - type: Transform + pos: -50.5,-55.5 + parent: 2 + - uid: 6955 + components: + - type: Transform + pos: -36.5,-61.5 + parent: 2 + - uid: 6956 + components: + - type: Transform + pos: 13.5,-72.5 + parent: 2 + - uid: 6957 + components: + - type: Transform + pos: -31.5,-61.5 + parent: 2 + - uid: 6958 + components: + - type: Transform + pos: -33.5,-61.5 + parent: 2 + - uid: 6959 + components: + - type: Transform + pos: 47.5,22.5 + parent: 2 + - uid: 6960 + components: + - type: Transform + pos: 46.5,18.5 + parent: 2 + - uid: 6961 + components: + - type: Transform + pos: -41.5,-61.5 + parent: 2 + - uid: 6962 + components: + - type: Transform + pos: -40.5,-61.5 + parent: 2 + - uid: 6963 + components: + - type: Transform + pos: -39.5,-61.5 + parent: 2 + - uid: 6964 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 2 + - uid: 6965 + components: + - type: Transform + pos: -47.5,13.5 + parent: 2 + - uid: 6966 + components: + - type: Transform + pos: -48.5,13.5 + parent: 2 + - uid: 6967 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 6968 + components: + - type: Transform + pos: -48.5,15.5 + parent: 2 + - uid: 6969 + components: + - type: Transform + pos: -48.5,16.5 + parent: 2 + - uid: 6970 + components: + - type: Transform + pos: -20.5,-66.5 + parent: 2 + - uid: 6971 + components: + - type: Transform + pos: -48.5,17.5 + parent: 2 + - uid: 6972 + components: + - type: Transform + pos: -20.5,-67.5 + parent: 2 + - uid: 6973 + components: + - type: Transform + pos: -49.5,17.5 + parent: 2 + - uid: 6974 + components: + - type: Transform + pos: -6.5,-53.5 + parent: 2 + - uid: 6975 + components: + - type: Transform + pos: 11.5,-72.5 + parent: 2 + - uid: 6976 + components: + - type: Transform + pos: 16.5,-72.5 + parent: 2 + - uid: 6977 + components: + - type: Transform + pos: 5.5,-63.5 + parent: 2 + - uid: 6978 + components: + - type: Transform + pos: -8.5,-87.5 + parent: 2 + - uid: 6979 + components: + - type: Transform + pos: 7.5,-93.5 + parent: 2 + - uid: 6980 + components: + - type: Transform + pos: 4.5,-80.5 + parent: 2 + - uid: 6981 + components: + - type: Transform + pos: 2.5,-97.5 + parent: 2 + - uid: 6982 + components: + - type: Transform + pos: 7.5,-90.5 + parent: 2 + - uid: 6983 + components: + - type: Transform + pos: 7.5,-92.5 + parent: 2 + - uid: 6984 + components: + - type: Transform + pos: 4.5,-97.5 + parent: 2 + - uid: 6985 + components: + - type: Transform + pos: -8.5,-84.5 + parent: 2 + - uid: 6986 + components: + - type: Transform + pos: -8.5,-85.5 + parent: 2 + - uid: 6987 + components: + - type: Transform + pos: -8.5,-86.5 + parent: 2 + - uid: 6988 + components: + - type: Transform + pos: -31.5,-60.5 + parent: 2 + - uid: 6989 + components: + - type: Transform + pos: -32.5,-61.5 + parent: 2 + - uid: 6990 + components: + - type: Transform + pos: -25.5,-64.5 + parent: 2 + - uid: 6991 + components: + - type: Transform + pos: -34.5,-61.5 + parent: 2 + - uid: 6992 + components: + - type: Transform + pos: 3.5,-80.5 + parent: 2 + - uid: 6993 + components: + - type: Transform + pos: 7.5,-83.5 + parent: 2 + - uid: 6994 + components: + - type: Transform + pos: -8.5,-88.5 + parent: 2 + - uid: 6995 + components: + - type: Transform + pos: -35.5,-61.5 + parent: 2 + - uid: 6996 + components: + - type: Transform + pos: -5.5,-80.5 + parent: 2 + - uid: 6997 + components: + - type: Transform + pos: 1.5,-97.5 + parent: 2 + - uid: 6998 + components: + - type: Transform + pos: 7.5,-89.5 + parent: 2 + - uid: 6999 + components: + - type: Transform + pos: -8.5,-68.5 + parent: 2 + - uid: 7000 + components: + - type: Transform + pos: 5.5,-65.5 + parent: 2 + - uid: 7001 + components: + - type: Transform + pos: -21.5,-70.5 + parent: 2 + - uid: 7002 + components: + - type: Transform + pos: -23.5,-66.5 + parent: 2 + - uid: 7003 + components: + - type: Transform + pos: -23.5,-67.5 + parent: 2 + - uid: 7004 + components: + - type: Transform + pos: -22.5,-68.5 + parent: 2 + - uid: 7005 + components: + - type: Transform + pos: -23.5,-68.5 + parent: 2 + - uid: 7006 + components: + - type: Transform + pos: -19.5,-68.5 + parent: 2 + - uid: 7007 + components: + - type: Transform + pos: -21.5,-68.5 + parent: 2 + - uid: 7008 + components: + - type: Transform + pos: -20.5,-68.5 + parent: 2 + - uid: 7009 + components: + - type: Transform + pos: -50.5,21.5 + parent: 2 + - uid: 7010 + components: + - type: Transform + pos: -50.5,22.5 + parent: 2 + - uid: 7011 + components: + - type: Transform + pos: -50.5,23.5 + parent: 2 + - uid: 7012 + components: + - type: Transform + pos: -49.5,23.5 + parent: 2 + - uid: 7013 + components: + - type: Transform + pos: -49.5,39.5 + parent: 2 + - uid: 7014 + components: + - type: Transform + pos: -49.5,40.5 + parent: 2 + - uid: 7015 + components: + - type: Transform + pos: -49.5,41.5 + parent: 2 + - uid: 7016 + components: + - type: Transform + pos: -47.5,36.5 + parent: 2 + - uid: 7017 + components: + - type: Transform + pos: -46.5,36.5 + parent: 2 + - uid: 7018 + components: + - type: Transform + pos: -45.5,36.5 + parent: 2 + - uid: 7019 + components: + - type: Transform + pos: -44.5,36.5 + parent: 2 + - uid: 7020 + components: + - type: Transform + pos: -43.5,36.5 + parent: 2 + - uid: 7021 + components: + - type: Transform + pos: -43.5,38.5 + parent: 2 + - uid: 7022 + components: + - type: Transform + pos: -44.5,38.5 + parent: 2 + - uid: 7023 + components: + - type: Transform + pos: -45.5,38.5 + parent: 2 + - uid: 7024 + components: + - type: Transform + pos: -46.5,38.5 + parent: 2 + - uid: 7025 + components: + - type: Transform + pos: -47.5,38.5 + parent: 2 + - uid: 7026 + components: + - type: Transform + pos: -48.5,37.5 + parent: 2 + - uid: 7027 + components: + - type: Transform + pos: -50.5,37.5 + parent: 2 + - uid: 7028 + components: + - type: Transform + pos: -51.5,38.5 + parent: 2 + - uid: 7029 + components: + - type: Transform + pos: -52.5,38.5 + parent: 2 + - uid: 7030 + components: + - type: Transform + pos: -53.5,38.5 + parent: 2 + - uid: 7031 + components: + - type: Transform + pos: -54.5,38.5 + parent: 2 + - uid: 7032 + components: + - type: Transform + pos: -55.5,38.5 + parent: 2 + - uid: 7033 + components: + - type: Transform + pos: -55.5,36.5 + parent: 2 + - uid: 7034 + components: + - type: Transform + pos: -54.5,36.5 + parent: 2 + - uid: 7035 + components: + - type: Transform + pos: -53.5,36.5 + parent: 2 + - uid: 7036 + components: + - type: Transform + pos: -52.5,36.5 + parent: 2 + - uid: 7037 + components: + - type: Transform + pos: -51.5,36.5 + parent: 2 + - uid: 7038 + components: + - type: Transform + pos: -51.5,34.5 + parent: 2 + - uid: 7039 + components: + - type: Transform + pos: -52.5,34.5 + parent: 2 + - uid: 7040 + components: + - type: Transform + pos: -53.5,34.5 + parent: 2 + - uid: 7041 + components: + - type: Transform + pos: -54.5,34.5 + parent: 2 + - uid: 7042 + components: + - type: Transform + pos: -55.5,34.5 + parent: 2 + - uid: 7043 + components: + - type: Transform + pos: -55.5,32.5 + parent: 2 + - uid: 7044 + components: + - type: Transform + pos: -54.5,32.5 + parent: 2 + - uid: 7045 + components: + - type: Transform + pos: -53.5,32.5 + parent: 2 + - uid: 7046 + components: + - type: Transform + pos: -52.5,32.5 + parent: 2 + - uid: 7047 + components: + - type: Transform + pos: -51.5,32.5 + parent: 2 + - uid: 7048 + components: + - type: Transform + pos: -50.5,33.5 + parent: 2 + - uid: 7049 + components: + - type: Transform + pos: -48.5,33.5 + parent: 2 + - uid: 7050 + components: + - type: Transform + pos: -47.5,34.5 + parent: 2 + - uid: 7051 + components: + - type: Transform + pos: -46.5,34.5 + parent: 2 + - uid: 7052 + components: + - type: Transform + pos: -45.5,34.5 + parent: 2 + - uid: 7053 + components: + - type: Transform + pos: -44.5,34.5 + parent: 2 + - uid: 7054 + components: + - type: Transform + pos: -2.5,-56.5 + parent: 2 + - uid: 7055 + components: + - type: Transform + pos: -4.5,-56.5 + parent: 2 + - uid: 7056 + components: + - type: Transform + pos: -28.5,-64.5 + parent: 2 + - uid: 7057 + components: + - type: Transform + pos: -31.5,-62.5 + parent: 2 + - uid: 7058 + components: + - type: Transform + pos: -31.5,-63.5 + parent: 2 + - uid: 7059 + components: + - type: Transform + pos: -31.5,-64.5 + parent: 2 + - uid: 7060 + components: + - type: Transform + pos: -31.5,-65.5 + parent: 2 + - uid: 7061 + components: + - type: Transform + pos: -30.5,-65.5 + parent: 2 + - uid: 7062 + components: + - type: Transform + pos: -29.5,-65.5 + parent: 2 + - uid: 7063 + components: + - type: Transform + pos: -28.5,-65.5 + parent: 2 + - uid: 7064 + components: + - type: Transform + pos: -27.5,-65.5 + parent: 2 + - uid: 7065 + components: + - type: Transform + pos: -26.5,-65.5 + parent: 2 + - uid: 7066 + components: + - type: Transform + pos: -26.5,-64.5 + parent: 2 + - uid: 7067 + components: + - type: Transform + pos: -24.5,-68.5 + parent: 2 + - uid: 7068 + components: + - type: Transform + pos: -24.5,-67.5 + parent: 2 + - uid: 7069 + components: + - type: Transform + pos: -24.5,-66.5 + parent: 2 + - uid: 7070 + components: + - type: Transform + pos: -38.5,-62.5 + parent: 2 + - uid: 7071 + components: + - type: Transform + pos: -19.5,-60.5 + parent: 2 + - uid: 7072 + components: + - type: Transform + pos: -20.5,-60.5 + parent: 2 + - uid: 7073 + components: + - type: Transform + pos: -21.5,-60.5 + parent: 2 + - uid: 7074 + components: + - type: Transform + pos: -22.5,-60.5 + parent: 2 + - uid: 7075 + components: + - type: Transform + pos: -23.5,-60.5 + parent: 2 + - uid: 7076 + components: + - type: Transform + pos: -24.5,-60.5 + parent: 2 + - uid: 7077 + components: + - type: Transform + pos: -25.5,-60.5 + parent: 2 + - uid: 7078 + components: + - type: Transform + pos: -26.5,-60.5 + parent: 2 + - uid: 7079 + components: + - type: Transform + pos: -27.5,-60.5 + parent: 2 + - uid: 7080 + components: + - type: Transform + pos: -28.5,-60.5 + parent: 2 + - uid: 7081 + components: + - type: Transform + pos: -29.5,-60.5 + parent: 2 + - uid: 7082 + components: + - type: Transform + pos: -30.5,-60.5 + parent: 2 + - uid: 7083 + components: + - type: Transform + pos: -54.5,-61.5 + parent: 2 + - uid: 7084 + components: + - type: Transform + pos: -55.5,-61.5 + parent: 2 + - uid: 7085 + components: + - type: Transform + pos: -56.5,-61.5 + parent: 2 + - uid: 7086 + components: + - type: Transform + pos: -57.5,-61.5 + parent: 2 + - uid: 7087 + components: + - type: Transform + pos: -42.5,-61.5 + parent: 2 + - uid: 7088 + components: + - type: Transform + pos: -44.5,-63.5 + parent: 2 + - uid: 7089 + components: + - type: Transform + pos: -44.5,-64.5 + parent: 2 + - uid: 7090 + components: + - type: Transform + pos: -44.5,-65.5 + parent: 2 + - uid: 7091 + components: + - type: Transform + pos: -44.5,-66.5 + parent: 2 + - uid: 7092 + components: + - type: Transform + pos: -44.5,-67.5 + parent: 2 + - uid: 7093 + components: + - type: Transform + pos: -46.5,-67.5 + parent: 2 + - uid: 7094 + components: + - type: Transform + pos: -46.5,-66.5 + parent: 2 + - uid: 7095 + components: + - type: Transform + pos: -46.5,-65.5 + parent: 2 + - uid: 7096 + components: + - type: Transform + pos: -46.5,-64.5 + parent: 2 + - uid: 7097 + components: + - type: Transform + pos: -46.5,-63.5 + parent: 2 + - uid: 7098 + components: + - type: Transform + pos: 51.5,-61.5 + parent: 2 + - uid: 7099 + components: + - type: Transform + pos: 52.5,-61.5 + parent: 2 + - uid: 7100 + components: + - type: Transform + pos: 53.5,-61.5 + parent: 2 + - uid: 7101 + components: + - type: Transform + pos: 54.5,-61.5 + parent: 2 + - uid: 7102 + components: + - type: Transform + pos: 55.5,-61.5 + parent: 2 + - uid: 7103 + components: + - type: Transform + pos: 56.5,-61.5 + parent: 2 + - uid: 7104 + components: + - type: Transform + pos: 57.5,-61.5 + parent: 2 + - uid: 7105 + components: + - type: Transform + pos: 58.5,-61.5 + parent: 2 + - uid: 7106 + components: + - type: Transform + pos: 59.5,-61.5 + parent: 2 + - uid: 7107 + components: + - type: Transform + pos: 60.5,-61.5 + parent: 2 + - uid: 7108 + components: + - type: Transform + pos: 61.5,-61.5 + parent: 2 + - uid: 7109 + components: + - type: Transform + pos: 62.5,-61.5 + parent: 2 + - uid: 7110 + components: + - type: Transform + pos: 63.5,-61.5 + parent: 2 + - uid: 7111 + components: + - type: Transform + pos: 64.5,-61.5 + parent: 2 + - uid: 7112 + components: + - type: Transform + pos: 65.5,-61.5 + parent: 2 + - uid: 7113 + components: + - type: Transform + pos: 65.5,-60.5 + parent: 2 + - uid: 7114 + components: + - type: Transform + pos: 66.5,-60.5 + parent: 2 + - uid: 7115 + components: + - type: Transform + pos: 67.5,-60.5 + parent: 2 + - uid: 7116 + components: + - type: Transform + pos: 68.5,-60.5 + parent: 2 + - uid: 7117 + components: + - type: Transform + pos: 69.5,-60.5 + parent: 2 + - uid: 7118 + components: + - type: Transform + pos: 70.5,-60.5 + parent: 2 + - uid: 7119 + components: + - type: Transform + pos: 71.5,-60.5 + parent: 2 + - uid: 7120 + components: + - type: Transform + pos: 72.5,-60.5 + parent: 2 + - uid: 7121 + components: + - type: Transform + pos: 73.5,-60.5 + parent: 2 + - uid: 7122 + components: + - type: Transform + pos: 74.5,-60.5 + parent: 2 + - uid: 7123 + components: + - type: Transform + pos: 75.5,-60.5 + parent: 2 + - uid: 7124 + components: + - type: Transform + pos: 76.5,-60.5 + parent: 2 + - uid: 7125 + components: + - type: Transform + pos: 77.5,-60.5 + parent: 2 + - uid: 7126 + components: + - type: Transform + pos: 78.5,-60.5 + parent: 2 + - uid: 7127 + components: + - type: Transform + pos: 79.5,-60.5 + parent: 2 + - uid: 7128 + components: + - type: Transform + pos: 80.5,-60.5 + parent: 2 + - uid: 7129 + components: + - type: Transform + pos: 81.5,-60.5 + parent: 2 + - uid: 7130 + components: + - type: Transform + pos: 82.5,-60.5 + parent: 2 + - uid: 7131 + components: + - type: Transform + pos: 82.5,-59.5 + parent: 2 + - uid: 7132 + components: + - type: Transform + pos: 82.5,-58.5 + parent: 2 + - uid: 7133 + components: + - type: Transform + pos: 82.5,-57.5 + parent: 2 + - uid: 7134 + components: + - type: Transform + pos: 82.5,-56.5 + parent: 2 + - uid: 7135 + components: + - type: Transform + pos: 82.5,-55.5 + parent: 2 + - uid: 7136 + components: + - type: Transform + pos: 82.5,-54.5 + parent: 2 + - uid: 7137 + components: + - type: Transform + pos: 82.5,-53.5 + parent: 2 + - uid: 7138 + components: + - type: Transform + pos: 82.5,-52.5 + parent: 2 + - uid: 7139 + components: + - type: Transform + pos: 82.5,-51.5 + parent: 2 + - uid: 7140 + components: + - type: Transform + pos: 82.5,-50.5 + parent: 2 + - uid: 7141 + components: + - type: Transform + pos: 82.5,-49.5 + parent: 2 + - uid: 7142 + components: + - type: Transform + pos: 82.5,-48.5 + parent: 2 + - uid: 7143 + components: + - type: Transform + pos: 82.5,-47.5 + parent: 2 + - uid: 7144 + components: + - type: Transform + pos: 82.5,-46.5 + parent: 2 + - uid: 7145 + components: + - type: Transform + pos: 82.5,-45.5 + parent: 2 + - uid: 7146 + components: + - type: Transform + pos: 83.5,-45.5 + parent: 2 + - uid: 7147 + components: + - type: Transform + pos: 84.5,-45.5 + parent: 2 + - uid: 7148 + components: + - type: Transform + pos: 85.5,-45.5 + parent: 2 + - uid: 7149 + components: + - type: Transform + pos: 85.5,-44.5 + parent: 2 + - uid: 7150 + components: + - type: Transform + pos: -45.5,-62.5 + parent: 2 + - uid: 7151 + components: + - type: Transform + pos: -45.5,-63.5 + parent: 2 + - uid: 7152 + components: + - type: Transform + pos: 80.5,-63.5 + parent: 2 + - uid: 7153 + components: + - type: Transform + pos: 80.5,-64.5 + parent: 2 + - uid: 7154 + components: + - type: Transform + pos: 80.5,-65.5 + parent: 2 + - uid: 7155 + components: + - type: Transform + pos: 77.5,-81.5 + parent: 2 + - uid: 7156 + components: + - type: Transform + pos: 78.5,-81.5 + parent: 2 + - uid: 7157 + components: + - type: Transform + pos: 79.5,-81.5 + parent: 2 + - uid: 7158 + components: + - type: Transform + pos: 77.5,-83.5 + parent: 2 + - uid: 7159 + components: + - type: Transform + pos: 79.5,-83.5 + parent: 2 + - uid: 7160 + components: + - type: Transform + pos: 78.5,-83.5 + parent: 2 + - uid: 7161 + components: + - type: Transform + pos: 76.5,-81.5 + parent: 2 + - uid: 7162 + components: + - type: Transform + pos: 75.5,-81.5 + parent: 2 + - uid: 7163 + components: + - type: Transform + pos: 75.5,-79.5 + parent: 2 + - uid: 7164 + components: + - type: Transform + pos: 76.5,-79.5 + parent: 2 + - uid: 7165 + components: + - type: Transform + pos: 79.5,-79.5 + parent: 2 + - uid: 7166 + components: + - type: Transform + pos: 79.5,-77.5 + parent: 2 + - uid: 7167 + components: + - type: Transform + pos: 78.5,-77.5 + parent: 2 + - uid: 7168 + components: + - type: Transform + pos: 77.5,-77.5 + parent: 2 + - uid: 7169 + components: + - type: Transform + pos: 78.5,-79.5 + parent: 2 + - uid: 7170 + components: + - type: Transform + pos: 77.5,-79.5 + parent: 2 + - uid: 7171 + components: + - type: Transform + pos: 79.5,-73.5 + parent: 2 + - uid: 7172 + components: + - type: Transform + pos: 76.5,-73.5 + parent: 2 + - uid: 7173 + components: + - type: Transform + pos: 75.5,-73.5 + parent: 2 + - uid: 7174 + components: + - type: Transform + pos: 75.5,-75.5 + parent: 2 + - uid: 7175 + components: + - type: Transform + pos: 76.5,-77.5 + parent: 2 + - uid: 7176 + components: + - type: Transform + pos: 75.5,-77.5 + parent: 2 + - uid: 7177 + components: + - type: Transform + pos: 76.5,-75.5 + parent: 2 + - uid: 7178 + components: + - type: Transform + pos: 79.5,-75.5 + parent: 2 + - uid: 7179 + components: + - type: Transform + pos: 78.5,-75.5 + parent: 2 + - uid: 7180 + components: + - type: Transform + pos: 77.5,-75.5 + parent: 2 + - uid: 7181 + components: + - type: Transform + pos: 77.5,-73.5 + parent: 2 + - uid: 7182 + components: + - type: Transform + pos: 78.5,-73.5 + parent: 2 + - uid: 7183 + components: + - type: Transform + pos: -50.5,-63.5 + parent: 2 + - uid: 7184 + components: + - type: Transform + pos: -50.5,-64.5 + parent: 2 + - uid: 7185 + components: + - type: Transform + pos: -50.5,-65.5 + parent: 2 + - uid: 7186 + components: + - type: Transform + pos: -50.5,-66.5 + parent: 2 + - uid: 7187 + components: + - type: Transform + pos: -50.5,-67.5 + parent: 2 + - uid: 7188 + components: + - type: Transform + pos: -6.5,-56.5 + parent: 2 + - uid: 7189 + components: + - type: Transform + pos: -6.5,-55.5 + parent: 2 + - uid: 7190 + components: + - type: Transform + pos: -6.5,-54.5 + parent: 2 + - uid: 7191 + components: + - type: Transform + pos: -5.5,-56.5 + parent: 2 + - uid: 7192 + components: + - type: Transform + pos: 50.5,-62.5 + parent: 2 + - uid: 7193 + components: + - type: Transform + pos: -48.5,-67.5 + parent: 2 + - uid: 7194 + components: + - type: Transform + pos: -48.5,-66.5 + parent: 2 + - uid: 7195 + components: + - type: Transform + pos: -48.5,-65.5 + parent: 2 + - uid: 7196 + components: + - type: Transform + pos: -48.5,-64.5 + parent: 2 + - uid: 7197 + components: + - type: Transform + pos: -48.5,-63.5 + parent: 2 + - uid: 7198 + components: + - type: Transform + pos: -49.5,-63.5 + parent: 2 + - uid: 7199 + components: + - type: Transform + pos: -49.5,-62.5 + parent: 2 + - uid: 7200 + components: + - type: Transform + pos: -44.5,-59.5 + parent: 2 + - uid: 7201 + components: + - type: Transform + pos: -44.5,-58.5 + parent: 2 + - uid: 7202 + components: + - type: Transform + pos: -44.5,-57.5 + parent: 2 + - uid: 7203 + components: + - type: Transform + pos: -44.5,-56.5 + parent: 2 + - uid: 7204 + components: + - type: Transform + pos: -44.5,-55.5 + parent: 2 + - uid: 7205 + components: + - type: Transform + pos: -46.5,-55.5 + parent: 2 + - uid: 7206 + components: + - type: Transform + pos: -46.5,-56.5 + parent: 2 + - uid: 7207 + components: + - type: Transform + pos: -46.5,-57.5 + parent: 2 + - uid: 7208 + components: + - type: Transform + pos: -46.5,-58.5 + parent: 2 + - uid: 7209 + components: + - type: Transform + pos: -46.5,-59.5 + parent: 2 + - uid: 7210 + components: + - type: Transform + pos: -45.5,-59.5 + parent: 2 + - uid: 7211 + components: + - type: Transform + pos: -45.5,-60.5 + parent: 2 + - uid: 7212 + components: + - type: Transform + pos: -48.5,-59.5 + parent: 2 + - uid: 7213 + components: + - type: Transform + pos: -48.5,-58.5 + parent: 2 + - uid: 7214 + components: + - type: Transform + pos: -48.5,-57.5 + parent: 2 + - uid: 7215 + components: + - type: Transform + pos: -48.5,-56.5 + parent: 2 + - uid: 7216 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 7217 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 + - uid: 7218 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - uid: 7219 + components: + - type: Transform + pos: 51.5,-62.5 + parent: 2 + - uid: 7220 + components: + - type: Transform + pos: 81.5,-65.5 + parent: 2 + - uid: 7221 + components: + - type: Transform + pos: 81.5,-66.5 + parent: 2 + - uid: 7222 + components: + - type: Transform + pos: 81.5,-67.5 + parent: 2 + - uid: 7223 + components: + - type: Transform + pos: 81.5,-68.5 + parent: 2 + - uid: 7224 + components: + - type: Transform + pos: -0.5,-31.5 + parent: 2 + - uid: 7225 + components: + - type: Transform + pos: -2.5,26.5 + parent: 2 + - uid: 7226 + components: + - type: Transform + pos: 1.5,26.5 + parent: 2 + - uid: 7227 + components: + - type: Transform + pos: -6.5,26.5 + parent: 2 + - uid: 7228 + components: + - type: Transform + pos: -10.5,26.5 + parent: 2 + - uid: 7229 + components: + - type: Transform + pos: -6.5,-52.5 + parent: 2 + - uid: 7230 + components: + - type: Transform + pos: -6.5,-51.5 + parent: 2 + - uid: 7231 + components: + - type: Transform + pos: 9.5,-76.5 + parent: 2 + - uid: 7232 + components: + - type: Transform + pos: 8.5,-76.5 + parent: 2 + - uid: 7233 + components: + - type: Transform + pos: 10.5,-76.5 + parent: 2 + - uid: 7234 + components: + - type: Transform + pos: 11.5,-76.5 + parent: 2 + - uid: 7235 + components: + - type: Transform + pos: 12.5,-76.5 + parent: 2 + - uid: 7236 + components: + - type: Transform + pos: 13.5,-76.5 + parent: 2 + - uid: 7237 + components: + - type: Transform + pos: -5.5,27.5 + parent: 2 + - uid: 7238 + components: + - type: Transform + pos: -5.5,28.5 + parent: 2 + - uid: 7239 + components: + - type: Transform + pos: -5.5,29.5 + parent: 2 + - uid: 7240 + components: + - type: Transform + pos: -5.5,30.5 + parent: 2 + - uid: 7241 + components: + - type: Transform + pos: -5.5,31.5 + parent: 2 + - uid: 7242 + components: + - type: Transform + pos: -5.5,32.5 + parent: 2 + - uid: 7243 + components: + - type: Transform + pos: -5.5,33.5 + parent: 2 + - uid: 7244 + components: + - type: Transform + pos: -5.5,34.5 + parent: 2 + - uid: 7245 + components: + - type: Transform + pos: -5.5,35.5 + parent: 2 + - uid: 7246 + components: + - type: Transform + pos: -6.5,35.5 + parent: 2 + - uid: 7247 + components: + - type: Transform + pos: -7.5,35.5 + parent: 2 + - uid: 7248 + components: + - type: Transform + pos: -8.5,35.5 + parent: 2 + - uid: 7249 + components: + - type: Transform + pos: -9.5,35.5 + parent: 2 + - uid: 7250 + components: + - type: Transform + pos: -10.5,35.5 + parent: 2 + - uid: 7251 + components: + - type: Transform + pos: -10.5,36.5 + parent: 2 + - uid: 7252 + components: + - type: Transform + pos: -10.5,37.5 + parent: 2 + - uid: 7253 + components: + - type: Transform + pos: -10.5,38.5 + parent: 2 + - uid: 7254 + components: + - type: Transform + pos: -10.5,39.5 + parent: 2 + - uid: 7255 + components: + - type: Transform + pos: -10.5,40.5 + parent: 2 + - uid: 7256 + components: + - type: Transform + pos: -10.5,41.5 + parent: 2 + - uid: 7257 + components: + - type: Transform + pos: -10.5,42.5 + parent: 2 + - uid: 7258 + components: + - type: Transform + pos: -10.5,43.5 + parent: 2 + - uid: 7259 + components: + - type: Transform + pos: -10.5,44.5 + parent: 2 + - uid: 7260 + components: + - type: Transform + pos: -11.5,44.5 + parent: 2 + - uid: 7261 + components: + - type: Transform + pos: -12.5,44.5 + parent: 2 + - uid: 7262 + components: + - type: Transform + pos: -13.5,44.5 + parent: 2 + - uid: 7263 + components: + - type: Transform + pos: -14.5,44.5 + parent: 2 + - uid: 7264 + components: + - type: Transform + pos: -15.5,44.5 + parent: 2 + - uid: 7265 + components: + - type: Transform + pos: -16.5,44.5 + parent: 2 + - uid: 7266 + components: + - type: Transform + pos: -17.5,44.5 + parent: 2 + - uid: 7267 + components: + - type: Transform + pos: -18.5,44.5 + parent: 2 + - uid: 7268 + components: + - type: Transform + pos: -19.5,44.5 + parent: 2 + - uid: 7269 + components: + - type: Transform + pos: -20.5,44.5 + parent: 2 + - uid: 7270 + components: + - type: Transform + pos: -21.5,44.5 + parent: 2 + - uid: 7271 + components: + - type: Transform + pos: -22.5,44.5 + parent: 2 + - uid: 7272 + components: + - type: Transform + pos: -23.5,44.5 + parent: 2 + - uid: 7273 + components: + - type: Transform + pos: -23.5,45.5 + parent: 2 + - uid: 7274 + components: + - type: Transform + pos: -23.5,46.5 + parent: 2 + - uid: 7275 + components: + - type: Transform + pos: -23.5,47.5 + parent: 2 + - uid: 7276 + components: + - type: Transform + pos: -23.5,48.5 + parent: 2 + - uid: 7277 + components: + - type: Transform + pos: -23.5,49.5 + parent: 2 + - uid: 7278 + components: + - type: Transform + pos: -23.5,50.5 + parent: 2 + - uid: 7279 + components: + - type: Transform + pos: -23.5,51.5 + parent: 2 + - uid: 7280 + components: + - type: Transform + pos: -22.5,51.5 + parent: 2 + - uid: 7281 + components: + - type: Transform + pos: -21.5,51.5 + parent: 2 + - uid: 7282 + components: + - type: Transform + pos: -20.5,51.5 + parent: 2 + - uid: 7283 + components: + - type: Transform + pos: 34.5,-92.5 + parent: 2 + - uid: 7284 + components: + - type: Transform + pos: 34.5,-91.5 + parent: 2 + - uid: 7285 + components: + - type: Transform + pos: 34.5,-90.5 + parent: 2 + - uid: 7286 + components: + - type: Transform + pos: 34.5,-89.5 + parent: 2 + - uid: 7287 + components: + - type: Transform + pos: 8.5,-80.5 + parent: 2 + - uid: 7288 + components: + - type: Transform + pos: 3.5,-62.5 + parent: 2 + - uid: 7289 + components: + - type: Transform + pos: 3.5,-63.5 + parent: 2 + - uid: 7290 + components: + - type: Transform + pos: 10.5,30.5 + parent: 2 + - uid: 7291 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 2 + - uid: 7292 + components: + - type: Transform + pos: 5.5,-62.5 + parent: 2 + - uid: 7293 + components: + - type: Transform + pos: 11.5,-79.5 + parent: 2 + - uid: 7294 + components: + - type: Transform + pos: 47.5,-49.5 + parent: 2 + - uid: 7295 + components: + - type: Transform + pos: 4.5,-62.5 + parent: 2 + - uid: 7296 + components: + - type: Transform + pos: 7.5,-80.5 + parent: 2 + - uid: 7297 + components: + - type: Transform + pos: -15.5,-69.5 + parent: 2 + - uid: 7298 + components: + - type: Transform + pos: -16.5,-69.5 + parent: 2 + - uid: 7299 + components: + - type: Transform + pos: -19.5,-70.5 + parent: 2 + - uid: 7300 + components: + - type: Transform + pos: 14.5,-79.5 + parent: 2 + - uid: 7301 + components: + - type: Transform + pos: 14.5,-78.5 + parent: 2 + - uid: 7302 + components: + - type: Transform + pos: 10.5,-79.5 + parent: 2 + - uid: 7303 + components: + - type: Transform + pos: 4.5,-57.5 + parent: 2 + - uid: 7304 + components: + - type: Transform + pos: 48.5,-49.5 + parent: 2 + - uid: 7305 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 2 +- proto: CableHVStack + entities: + - uid: 7306 + components: + - type: Transform + pos: 78.323975,-64.10042 + parent: 2 + - type: RCDAmmo + charges: 6 +- proto: CableMV + entities: + - uid: 7307 + components: + - type: Transform + pos: -20.5,35.5 + parent: 2 + - uid: 7308 + components: + - type: Transform + pos: -13.5,15.5 + parent: 2 + - uid: 7309 + components: + - type: Transform + pos: 47.5,-50.5 + parent: 2 + - uid: 7310 + components: + - type: Transform + pos: -15.5,-78.5 + parent: 2 + - uid: 7311 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - uid: 7312 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 2 + - uid: 7313 + components: + - type: Transform + pos: -11.5,-80.5 + parent: 2 + - uid: 7314 + components: + - type: Transform + pos: 58.5,-38.5 + parent: 2 + - uid: 7315 + components: + - type: Transform + pos: 38.5,-18.5 + parent: 2 + - uid: 7316 + components: + - type: Transform + pos: -22.5,-24.5 + parent: 2 + - uid: 7317 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 + - uid: 7318 + components: + - type: Transform + pos: 7.5,41.5 + parent: 2 + - uid: 7319 + components: + - type: Transform + pos: 14.5,42.5 + parent: 2 + - uid: 7320 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 + - uid: 7321 + components: + - type: Transform + pos: 47.5,-53.5 + parent: 2 + - uid: 7322 + components: + - type: Transform + pos: 47.5,-51.5 + parent: 2 + - uid: 7323 + components: + - type: Transform + pos: 0.5,33.5 + parent: 2 + - uid: 7324 + components: + - type: Transform + pos: 16.5,27.5 + parent: 2 + - uid: 7325 + components: + - type: Transform + pos: 16.5,20.5 + parent: 2 + - uid: 7326 + components: + - type: Transform + pos: 17.5,21.5 + parent: 2 + - uid: 7327 + components: + - type: Transform + pos: 0.5,32.5 + parent: 2 + - uid: 7328 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 2 + - uid: 7329 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 2 + - uid: 7330 + components: + - type: Transform + pos: -12.5,-79.5 + parent: 2 + - uid: 7331 + components: + - type: Transform + pos: 42.5,-48.5 + parent: 2 + - uid: 7332 + components: + - type: Transform + pos: 40.5,-29.5 + parent: 2 + - uid: 7333 + components: + - type: Transform + pos: 22.5,4.5 + parent: 2 + - uid: 7334 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 + - uid: 7335 + components: + - type: Transform + pos: 66.5,-26.5 + parent: 2 + - uid: 7336 + components: + - type: Transform + pos: 71.5,-53.5 + parent: 2 + - uid: 7337 + components: + - type: Transform + pos: 23.5,4.5 + parent: 2 + - uid: 7338 + components: + - type: Transform + pos: 48.5,-49.5 + parent: 2 + - uid: 7339 + components: + - type: Transform + pos: 47.5,-49.5 + parent: 2 + - uid: 7340 + components: + - type: Transform + pos: 47.5,-52.5 + parent: 2 + - uid: 7341 + components: + - type: Transform + pos: -48.5,13.5 + parent: 2 + - uid: 7342 + components: + - type: Transform + pos: -49.5,17.5 + parent: 2 + - uid: 7343 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 7344 + components: + - type: Transform + pos: -62.5,14.5 + parent: 2 + - uid: 7345 + components: + - type: Transform + pos: -63.5,14.5 + parent: 2 + - uid: 7346 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 2 + - uid: 7347 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 2 + - uid: 7348 + components: + - type: Transform + pos: -21.5,-35.5 + parent: 2 + - uid: 7349 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 2 + - uid: 7350 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - uid: 7351 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 2 + - uid: 7352 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 2 + - uid: 7353 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 + - uid: 7354 + components: + - type: Transform + pos: -20.5,-68.5 + parent: 2 + - uid: 7355 + components: + - type: Transform + pos: 7.5,-87.5 + parent: 2 + - uid: 7356 + components: + - type: Transform + pos: -4.5,-80.5 + parent: 2 + - uid: 7357 + components: + - type: Transform + pos: 7.5,-88.5 + parent: 2 + - uid: 7358 + components: + - type: Transform + pos: -5.5,-80.5 + parent: 2 + - uid: 7359 + components: + - type: Transform + pos: -8.5,-91.5 + parent: 2 + - uid: 7360 + components: + - type: Transform + pos: -2.5,-97.5 + parent: 2 + - uid: 7361 + components: + - type: Transform + pos: -1.5,-97.5 + parent: 2 + - uid: 7362 + components: + - type: Transform + pos: -15.5,-69.5 + parent: 2 + - uid: 7363 + components: + - type: Transform + pos: -3.5,-97.5 + parent: 2 + - uid: 7364 + components: + - type: Transform + pos: -4.5,-97.5 + parent: 2 + - uid: 7365 + components: + - type: Transform + pos: -5.5,-97.5 + parent: 2 + - uid: 7366 + components: + - type: Transform + pos: -8.5,-92.5 + parent: 2 + - uid: 7367 + components: + - type: Transform + pos: -8.5,-83.5 + parent: 2 + - uid: 7368 + components: + - type: Transform + pos: 7.5,-86.5 + parent: 2 + - uid: 7369 + components: + - type: Transform + pos: 7.5,-85.5 + parent: 2 + - uid: 7370 + components: + - type: Transform + pos: -8.5,-84.5 + parent: 2 + - uid: 7371 + components: + - type: Transform + pos: -8.5,-93.5 + parent: 2 + - uid: 7372 + components: + - type: Transform + pos: 3.5,-97.5 + parent: 2 + - uid: 7373 + components: + - type: Transform + pos: -8.5,-86.5 + parent: 2 + - uid: 7374 + components: + - type: Transform + pos: 7.5,-83.5 + parent: 2 + - uid: 7375 + components: + - type: Transform + pos: -8.5,-68.5 + parent: 2 + - uid: 7376 + components: + - type: Transform + pos: 7.5,-84.5 + parent: 2 + - uid: 7377 + components: + - type: Transform + pos: -8.5,-85.5 + parent: 2 + - uid: 7378 + components: + - type: Transform + pos: 4.5,-97.5 + parent: 2 + - uid: 7379 + components: + - type: Transform + pos: 7.5,-92.5 + parent: 2 + - uid: 7380 + components: + - type: Transform + pos: 1.5,-68.5 + parent: 2 + - uid: 7381 + components: + - type: Transform + pos: 2.5,-80.5 + parent: 2 + - uid: 7382 + components: + - type: Transform + pos: -8.5,-88.5 + parent: 2 + - uid: 7383 + components: + - type: Transform + pos: 1.5,-97.5 + parent: 2 + - uid: 7384 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 2 + - uid: 7385 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 2 + - uid: 7386 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 2 + - uid: 7387 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 7388 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 2 + - uid: 7389 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 7390 + components: + - type: Transform + pos: -28.5,-64.5 + parent: 2 + - uid: 7391 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - uid: 7392 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 2 + - uid: 7393 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 + - uid: 7394 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 2 + - uid: 7395 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 2 + - uid: 7396 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 2 + - uid: 7397 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 7398 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 2 + - uid: 7399 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 2 + - uid: 7400 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 2 + - uid: 7401 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 2 + - uid: 7402 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 2 + - uid: 7403 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 2 + - uid: 7404 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 2 + - uid: 7405 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - uid: 7406 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 2 + - uid: 7407 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - uid: 7408 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 2 + - uid: 7409 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - uid: 7410 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - uid: 7411 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - uid: 7412 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - uid: 7413 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 7414 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 7415 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 7416 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 7417 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 2 + - uid: 7418 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - uid: 7419 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - uid: 7420 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 + - uid: 7421 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 2 + - uid: 7422 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 + - uid: 7423 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 7424 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 7425 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 2 + - uid: 7426 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 + - uid: 7427 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 2 + - uid: 7428 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 2 + - uid: 7429 + components: + - type: Transform + pos: -7.5,-20.5 + parent: 2 + - uid: 7430 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 2 + - uid: 7431 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 7432 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 7433 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 7434 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 2 + - uid: 7435 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 7436 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - uid: 7437 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 7438 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 2 + - uid: 7439 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 7440 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - uid: 7441 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 7442 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 7443 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - uid: 7444 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 2 + - uid: 7445 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - uid: 7446 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 7447 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 2 + - uid: 7448 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 7449 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 2 + - uid: 7450 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - uid: 7451 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - uid: 7452 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 7453 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 + - uid: 7454 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 + - uid: 7455 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 2 + - uid: 7456 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 2 + - uid: 7457 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 2 + - uid: 7458 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 2 + - uid: 7459 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 2 + - uid: 7460 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 2 + - uid: 7461 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 2 + - uid: 7462 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 2 + - uid: 7463 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 2 + - uid: 7464 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 2 + - uid: 7465 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 2 + - uid: 7466 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 2 + - uid: 7467 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 2 + - uid: 7468 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 2 + - uid: 7469 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 + - uid: 7470 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 + - uid: 7471 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 + - uid: 7472 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 2 + - uid: 7473 + components: + - type: Transform + pos: -23.5,-69.5 + parent: 2 + - uid: 7474 + components: + - type: Transform + pos: 24.5,19.5 + parent: 2 + - uid: 7475 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 + - uid: 7476 + components: + - type: Transform + pos: 24.5,17.5 + parent: 2 + - uid: 7477 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 + - uid: 7478 + components: + - type: Transform + pos: 24.5,15.5 + parent: 2 + - uid: 7479 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 + - uid: 7480 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 7481 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 7482 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 7483 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 7484 + components: + - type: Transform + pos: 17.5,8.5 + parent: 2 + - uid: 7485 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 + - uid: 7486 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 7487 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - uid: 7488 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - uid: 7489 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 7490 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 + - uid: 7491 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 7492 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 7493 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - uid: 7494 + components: + - type: Transform + pos: 24.5,14.5 + parent: 2 + - uid: 7495 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 7496 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 + - uid: 7497 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - uid: 7498 + components: + - type: Transform + pos: 40.5,12.5 + parent: 2 + - uid: 7499 + components: + - type: Transform + pos: 40.5,11.5 + parent: 2 + - uid: 7500 + components: + - type: Transform + pos: 41.5,11.5 + parent: 2 + - uid: 7501 + components: + - type: Transform + pos: 42.5,11.5 + parent: 2 + - uid: 7502 + components: + - type: Transform + pos: 43.5,11.5 + parent: 2 + - uid: 7503 + components: + - type: Transform + pos: 44.5,11.5 + parent: 2 + - uid: 7504 + components: + - type: Transform + pos: 45.5,11.5 + parent: 2 + - uid: 7505 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - uid: 7506 + components: + - type: Transform + pos: 26.5,13.5 + parent: 2 + - uid: 7507 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 7508 + components: + - type: Transform + pos: 23.5,14.5 + parent: 2 + - uid: 7509 + components: + - type: Transform + pos: 22.5,14.5 + parent: 2 + - uid: 7510 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - uid: 7511 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 7512 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 + - uid: 7513 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 + - uid: 7514 + components: + - type: Transform + pos: 20.5,11.5 + parent: 2 + - uid: 7515 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - uid: 7516 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 7517 + components: + - type: Transform + pos: 18.5,13.5 + parent: 2 + - uid: 7518 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 7519 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 7520 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 7521 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 7522 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 7523 + components: + - type: Transform + pos: 19.5,32.5 + parent: 2 + - uid: 7524 + components: + - type: Transform + pos: 43.5,7.5 + parent: 2 + - uid: 7525 + components: + - type: Transform + pos: 42.5,7.5 + parent: 2 + - uid: 7526 + components: + - type: Transform + pos: 42.5,6.5 + parent: 2 + - uid: 7527 + components: + - type: Transform + pos: 42.5,5.5 + parent: 2 + - uid: 7528 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 7529 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 7530 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 7531 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 + - uid: 7532 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 7533 + components: + - type: Transform + pos: 34.5,3.5 + parent: 2 + - uid: 7534 + components: + - type: Transform + pos: 32.5,3.5 + parent: 2 + - uid: 7535 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 7536 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 7537 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 + - uid: 7538 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - uid: 7539 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 7540 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - uid: 7541 + components: + - type: Transform + pos: 27.5,3.5 + parent: 2 + - uid: 7542 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 + - uid: 7543 + components: + - type: Transform + pos: 25.5,3.5 + parent: 2 + - uid: 7544 + components: + - type: Transform + pos: 24.5,3.5 + parent: 2 + - uid: 7545 + components: + - type: Transform + pos: 24.5,4.5 + parent: 2 + - uid: 7546 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 + - uid: 7547 + components: + - type: Transform + pos: 12.5,42.5 + parent: 2 + - uid: 7548 + components: + - type: Transform + pos: 7.5,39.5 + parent: 2 + - uid: 7549 + components: + - type: Transform + pos: 7.5,40.5 + parent: 2 + - uid: 7550 + components: + - type: Transform + pos: 14.5,40.5 + parent: 2 + - uid: 7551 + components: + - type: Transform + pos: 20.5,4.5 + parent: 2 + - uid: 7552 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 7553 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 + - uid: 7554 + components: + - type: Transform + pos: -18.5,-47.5 + parent: 2 + - uid: 7555 + components: + - type: Transform + pos: -17.5,-41.5 + parent: 2 + - uid: 7556 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 2 + - uid: 7557 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 7558 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 2 + - uid: 7559 + components: + - type: Transform + pos: 26.5,2.5 + parent: 2 + - uid: 7560 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - uid: 7561 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 7562 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 7563 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 7564 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - uid: 7565 + components: + - type: Transform + pos: -17.5,-43.5 + parent: 2 + - uid: 7566 + components: + - type: Transform + pos: -17.5,-46.5 + parent: 2 + - uid: 7567 + components: + - type: Transform + pos: -17.5,-47.5 + parent: 2 + - uid: 7568 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 2 + - uid: 7569 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - uid: 7570 + components: + - type: Transform + pos: -17.5,-45.5 + parent: 2 + - uid: 7571 + components: + - type: Transform + pos: 24.5,23.5 + parent: 2 + - uid: 7572 + components: + - type: Transform + pos: -17.5,-44.5 + parent: 2 + - uid: 7573 + components: + - type: Transform + pos: 26.5,1.5 + parent: 2 + - uid: 7574 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 2 + - uid: 7575 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 7576 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 7577 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - uid: 7578 + components: + - type: Transform + pos: 17.5,30.5 + parent: 2 + - uid: 7579 + components: + - type: Transform + pos: -4.5,29.5 + parent: 2 + - uid: 7580 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 + - uid: 7581 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 7582 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 7583 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 + - uid: 7584 + components: + - type: Transform + pos: 3.5,20.5 + parent: 2 + - uid: 7585 + components: + - type: Transform + pos: 8.5,38.5 + parent: 2 + - uid: 7586 + components: + - type: Transform + pos: 8.5,37.5 + parent: 2 + - uid: 7587 + components: + - type: Transform + pos: 8.5,36.5 + parent: 2 + - uid: 7588 + components: + - type: Transform + pos: 8.5,35.5 + parent: 2 + - uid: 7589 + components: + - type: Transform + pos: 8.5,34.5 + parent: 2 + - uid: 7590 + components: + - type: Transform + pos: 8.5,33.5 + parent: 2 + - uid: 7591 + components: + - type: Transform + pos: 8.5,32.5 + parent: 2 + - uid: 7592 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - uid: 7593 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - uid: 7594 + components: + - type: Transform + pos: 1.5,20.5 + parent: 2 + - uid: 7595 + components: + - type: Transform + pos: -3.5,20.5 + parent: 2 + - uid: 7596 + components: + - type: Transform + pos: -2.5,20.5 + parent: 2 + - uid: 7597 + components: + - type: Transform + pos: -13.5,25.5 + parent: 2 + - uid: 7598 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 + - uid: 7599 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - uid: 7600 + components: + - type: Transform + pos: 7.5,27.5 + parent: 2 + - uid: 7601 + components: + - type: Transform + pos: 7.5,26.5 + parent: 2 + - uid: 7602 + components: + - type: Transform + pos: 6.5,26.5 + parent: 2 + - uid: 7603 + components: + - type: Transform + pos: 5.5,26.5 + parent: 2 + - uid: 7604 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - uid: 7605 + components: + - type: Transform + pos: 3.5,26.5 + parent: 2 + - uid: 7606 + components: + - type: Transform + pos: 2.5,26.5 + parent: 2 + - uid: 7607 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - uid: 7608 + components: + - type: Transform + pos: -0.5,26.5 + parent: 2 + - uid: 7609 + components: + - type: Transform + pos: -1.5,26.5 + parent: 2 + - uid: 7610 + components: + - type: Transform + pos: -3.5,26.5 + parent: 2 + - uid: 7611 + components: + - type: Transform + pos: -4.5,28.5 + parent: 2 + - uid: 7612 + components: + - type: Transform + pos: 7.5,38.5 + parent: 2 + - uid: 7613 + components: + - type: Transform + pos: 6.5,38.5 + parent: 2 + - uid: 7614 + components: + - type: Transform + pos: 5.5,38.5 + parent: 2 + - uid: 7615 + components: + - type: Transform + pos: 7.5,30.5 + parent: 2 + - uid: 7616 + components: + - type: Transform + pos: 2.5,31.5 + parent: 2 + - uid: 7617 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 + - uid: 7618 + components: + - type: Transform + pos: 15.5,33.5 + parent: 2 + - uid: 7619 + components: + - type: Transform + pos: 16.5,33.5 + parent: 2 + - uid: 7620 + components: + - type: Transform + pos: 17.5,33.5 + parent: 2 + - uid: 7621 + components: + - type: Transform + pos: 18.5,33.5 + parent: 2 + - uid: 7622 + components: + - type: Transform + pos: 19.5,33.5 + parent: 2 + - uid: 7623 + components: + - type: Transform + pos: 14.5,34.5 + parent: 2 + - uid: 7624 + components: + - type: Transform + pos: 14.5,35.5 + parent: 2 + - uid: 7625 + components: + - type: Transform + pos: 14.5,36.5 + parent: 2 + - uid: 7626 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - uid: 7627 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 + - uid: 7628 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - uid: 7629 + components: + - type: Transform + pos: 13.5,39.5 + parent: 2 + - uid: 7630 + components: + - type: Transform + pos: 12.5,39.5 + parent: 2 + - uid: 7631 + components: + - type: Transform + pos: 11.5,39.5 + parent: 2 + - uid: 7632 + components: + - type: Transform + pos: -4.5,30.5 + parent: 2 + - uid: 7633 + components: + - type: Transform + pos: -3.5,29.5 + parent: 2 + - uid: 7634 + components: + - type: Transform + pos: -4.5,31.5 + parent: 2 + - uid: 7635 + components: + - type: Transform + pos: -4.5,32.5 + parent: 2 + - uid: 7636 + components: + - type: Transform + pos: -4.5,33.5 + parent: 2 + - uid: 7637 + components: + - type: Transform + pos: -4.5,34.5 + parent: 2 + - uid: 7638 + components: + - type: Transform + pos: -5.5,34.5 + parent: 2 + - uid: 7639 + components: + - type: Transform + pos: -6.5,34.5 + parent: 2 + - uid: 7640 + components: + - type: Transform + pos: -14.5,33.5 + parent: 2 + - uid: 7641 + components: + - type: Transform + pos: -4.5,26.5 + parent: 2 + - uid: 7642 + components: + - type: Transform + pos: -5.5,26.5 + parent: 2 + - uid: 7643 + components: + - type: Transform + pos: -7.5,26.5 + parent: 2 + - uid: 7644 + components: + - type: Transform + pos: -8.5,26.5 + parent: 2 + - uid: 7645 + components: + - type: Transform + pos: -9.5,26.5 + parent: 2 + - uid: 7646 + components: + - type: Transform + pos: -11.5,26.5 + parent: 2 + - uid: 7647 + components: + - type: Transform + pos: -12.5,26.5 + parent: 2 + - uid: 7648 + components: + - type: Transform + pos: -13.5,26.5 + parent: 2 + - uid: 7649 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 + - uid: 7650 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - uid: 7651 + components: + - type: Transform + pos: -20.5,22.5 + parent: 2 + - uid: 7652 + components: + - type: Transform + pos: -19.5,22.5 + parent: 2 + - uid: 7653 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - uid: 7654 + components: + - type: Transform + pos: -13.5,23.5 + parent: 2 + - uid: 7655 + components: + - type: Transform + pos: -14.5,23.5 + parent: 2 + - uid: 7656 + components: + - type: Transform + pos: -15.5,23.5 + parent: 2 + - uid: 7657 + components: + - type: Transform + pos: -16.5,23.5 + parent: 2 + - uid: 7658 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - uid: 7659 + components: + - type: Transform + pos: -18.5,23.5 + parent: 2 + - uid: 7660 + components: + - type: Transform + pos: -19.5,23.5 + parent: 2 + - uid: 7661 + components: + - type: Transform + pos: 4.5,42.5 + parent: 2 + - uid: 7662 + components: + - type: Transform + pos: 5.5,42.5 + parent: 2 + - uid: 7663 + components: + - type: Transform + pos: 6.5,42.5 + parent: 2 + - uid: 7664 + components: + - type: Transform + pos: 7.5,42.5 + parent: 2 + - uid: 7665 + components: + - type: Transform + pos: 3.5,42.5 + parent: 2 + - uid: 7666 + components: + - type: Transform + pos: 2.5,42.5 + parent: 2 + - uid: 7667 + components: + - type: Transform + pos: 19.5,34.5 + parent: 2 + - uid: 7668 + components: + - type: Transform + pos: 19.5,35.5 + parent: 2 + - uid: 7669 + components: + - type: Transform + pos: 20.5,35.5 + parent: 2 + - uid: 7670 + components: + - type: Transform + pos: -19.5,20.5 + parent: 2 + - uid: 7671 + components: + - type: Transform + pos: -18.5,20.5 + parent: 2 + - uid: 7672 + components: + - type: Transform + pos: -17.5,20.5 + parent: 2 + - uid: 7673 + components: + - type: Transform + pos: -16.5,20.5 + parent: 2 + - uid: 7674 + components: + - type: Transform + pos: -15.5,20.5 + parent: 2 + - uid: 7675 + components: + - type: Transform + pos: -5.5,20.5 + parent: 2 + - uid: 7676 + components: + - type: Transform + pos: -6.5,20.5 + parent: 2 + - uid: 7677 + components: + - type: Transform + pos: -7.5,20.5 + parent: 2 + - uid: 7678 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 + - uid: 7679 + components: + - type: Transform + pos: -9.5,20.5 + parent: 2 + - uid: 7680 + components: + - type: Transform + pos: -10.5,20.5 + parent: 2 + - uid: 7681 + components: + - type: Transform + pos: -11.5,20.5 + parent: 2 + - uid: 7682 + components: + - type: Transform + pos: -12.5,20.5 + parent: 2 + - uid: 7683 + components: + - type: Transform + pos: -13.5,20.5 + parent: 2 + - uid: 7684 + components: + - type: Transform + pos: -14.5,20.5 + parent: 2 + - uid: 7685 + components: + - type: Transform + pos: -4.5,20.5 + parent: 2 + - uid: 7686 + components: + - type: Transform + pos: -4.5,19.5 + parent: 2 + - uid: 7687 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - uid: 7688 + components: + - type: Transform + pos: -48.5,15.5 + parent: 2 + - uid: 7689 + components: + - type: Transform + pos: 18.5,30.5 + parent: 2 + - uid: 7690 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 + - uid: 7691 + components: + - type: Transform + pos: 20.5,30.5 + parent: 2 + - uid: 7692 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - uid: 7693 + components: + - type: Transform + pos: 21.5,29.5 + parent: 2 + - uid: 7694 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 + - uid: 7695 + components: + - type: Transform + pos: 21.5,27.5 + parent: 2 + - uid: 7696 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 7697 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 7698 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - uid: 7699 + components: + - type: Transform + pos: 23.5,25.5 + parent: 2 + - uid: 7700 + components: + - type: Transform + pos: 23.5,23.5 + parent: 2 + - uid: 7701 + components: + - type: Transform + pos: 23.5,24.5 + parent: 2 + - uid: 7702 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - uid: 7703 + components: + - type: Transform + pos: -40.5,10.5 + parent: 2 + - uid: 7704 + components: + - type: Transform + pos: -40.5,12.5 + parent: 2 + - uid: 7705 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 + - uid: 7706 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 + - uid: 7707 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 7708 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - uid: 7709 + components: + - type: Transform + pos: 37.5,3.5 + parent: 2 + - uid: 7710 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 + - uid: 7711 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 7712 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - uid: 7713 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 7714 + components: + - type: Transform + pos: 24.5,12.5 + parent: 2 + - uid: 7715 + components: + - type: Transform + pos: 24.5,10.5 + parent: 2 + - uid: 7716 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - uid: 7717 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 7718 + components: + - type: Transform + pos: 36.5,2.5 + parent: 2 + - uid: 7719 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 7720 + components: + - type: Transform + pos: 36.5,0.5 + parent: 2 + - uid: 7721 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 2 + - uid: 7722 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 2 + - uid: 7723 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 2 + - uid: 7724 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 2 + - uid: 7725 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - uid: 7726 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 + - uid: 7727 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 + - uid: 7728 + components: + - type: Transform + pos: 43.5,2.5 + parent: 2 + - uid: 7729 + components: + - type: Transform + pos: 43.5,1.5 + parent: 2 + - uid: 7730 + components: + - type: Transform + pos: 43.5,0.5 + parent: 2 + - uid: 7731 + components: + - type: Transform + pos: 43.5,-0.5 + parent: 2 + - uid: 7732 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - uid: 7733 + components: + - type: Transform + pos: 44.5,3.5 + parent: 2 + - uid: 7734 + components: + - type: Transform + pos: 45.5,3.5 + parent: 2 + - uid: 7735 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 + - uid: 7736 + components: + - type: Transform + pos: 45.5,5.5 + parent: 2 + - uid: 7737 + components: + - type: Transform + pos: 45.5,6.5 + parent: 2 + - uid: 7738 + components: + - type: Transform + pos: 45.5,7.5 + parent: 2 + - uid: 7739 + components: + - type: Transform + pos: 45.5,8.5 + parent: 2 + - uid: 7740 + components: + - type: Transform + pos: 45.5,9.5 + parent: 2 + - uid: 7741 + components: + - type: Transform + pos: 45.5,10.5 + parent: 2 + - uid: 7742 + components: + - type: Transform + pos: 46.5,10.5 + parent: 2 + - uid: 7743 + components: + - type: Transform + pos: 47.5,10.5 + parent: 2 + - uid: 7744 + components: + - type: Transform + pos: 48.5,10.5 + parent: 2 + - uid: 7745 + components: + - type: Transform + pos: 49.5,10.5 + parent: 2 + - uid: 7746 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - uid: 7747 + components: + - type: Transform + pos: 51.5,10.5 + parent: 2 + - uid: 7748 + components: + - type: Transform + pos: 52.5,10.5 + parent: 2 + - uid: 7749 + components: + - type: Transform + pos: 53.5,10.5 + parent: 2 + - uid: 7750 + components: + - type: Transform + pos: 54.5,10.5 + parent: 2 + - uid: 7751 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 + - uid: 7752 + components: + - type: Transform + pos: 54.5,8.5 + parent: 2 + - uid: 7753 + components: + - type: Transform + pos: 54.5,7.5 + parent: 2 + - uid: 7754 + components: + - type: Transform + pos: 54.5,6.5 + parent: 2 + - uid: 7755 + components: + - type: Transform + pos: 54.5,6.5 + parent: 2 + - uid: 7756 + components: + - type: Transform + pos: 54.5,5.5 + parent: 2 + - uid: 7757 + components: + - type: Transform + pos: 54.5,4.5 + parent: 2 + - uid: 7758 + components: + - type: Transform + pos: 54.5,3.5 + parent: 2 + - uid: 7759 + components: + - type: Transform + pos: 54.5,2.5 + parent: 2 + - uid: 7760 + components: + - type: Transform + pos: 54.5,1.5 + parent: 2 + - uid: 7761 + components: + - type: Transform + pos: 54.5,0.5 + parent: 2 + - uid: 7762 + components: + - type: Transform + pos: 54.5,-0.5 + parent: 2 + - uid: 7763 + components: + - type: Transform + pos: 54.5,-1.5 + parent: 2 + - uid: 7764 + components: + - type: Transform + pos: 54.5,-2.5 + parent: 2 + - uid: 7765 + components: + - type: Transform + pos: 54.5,-3.5 + parent: 2 + - uid: 7766 + components: + - type: Transform + pos: 55.5,-3.5 + parent: 2 + - uid: 7767 + components: + - type: Transform + pos: 56.5,-3.5 + parent: 2 + - uid: 7768 + components: + - type: Transform + pos: 57.5,-3.5 + parent: 2 + - uid: 7769 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 2 + - uid: 7770 + components: + - type: Transform + pos: 59.5,-3.5 + parent: 2 + - uid: 7771 + components: + - type: Transform + pos: 60.5,-3.5 + parent: 2 + - uid: 7772 + components: + - type: Transform + pos: 55.5,5.5 + parent: 2 + - uid: 7773 + components: + - type: Transform + pos: 56.5,5.5 + parent: 2 + - uid: 7774 + components: + - type: Transform + pos: 57.5,5.5 + parent: 2 + - uid: 7775 + components: + - type: Transform + pos: 58.5,5.5 + parent: 2 + - uid: 7776 + components: + - type: Transform + pos: 59.5,5.5 + parent: 2 + - uid: 7777 + components: + - type: Transform + pos: 60.5,5.5 + parent: 2 + - uid: 7778 + components: + - type: Transform + pos: 61.5,5.5 + parent: 2 + - uid: 7779 + components: + - type: Transform + pos: 61.5,4.5 + parent: 2 + - uid: 7780 + components: + - type: Transform + pos: 61.5,3.5 + parent: 2 + - uid: 7781 + components: + - type: Transform + pos: 61.5,2.5 + parent: 2 + - uid: 7782 + components: + - type: Transform + pos: 61.5,1.5 + parent: 2 + - uid: 7783 + components: + - type: Transform + pos: 62.5,1.5 + parent: 2 + - uid: 7784 + components: + - type: Transform + pos: 62.5,5.5 + parent: 2 + - uid: 7785 + components: + - type: Transform + pos: 63.5,5.5 + parent: 2 + - uid: 7786 + components: + - type: Transform + pos: 64.5,5.5 + parent: 2 + - uid: 7787 + components: + - type: Transform + pos: 65.5,5.5 + parent: 2 + - uid: 7788 + components: + - type: Transform + pos: 66.5,5.5 + parent: 2 + - uid: 7789 + components: + - type: Transform + pos: 67.5,5.5 + parent: 2 + - uid: 7790 + components: + - type: Transform + pos: 68.5,5.5 + parent: 2 + - uid: 7791 + components: + - type: Transform + pos: 69.5,5.5 + parent: 2 + - uid: 7792 + components: + - type: Transform + pos: 70.5,5.5 + parent: 2 + - uid: 7793 + components: + - type: Transform + pos: 71.5,5.5 + parent: 2 + - uid: 7794 + components: + - type: Transform + pos: 72.5,5.5 + parent: 2 + - uid: 7795 + components: + - type: Transform + pos: 72.5,4.5 + parent: 2 + - uid: 7796 + components: + - type: Transform + pos: 72.5,3.5 + parent: 2 + - uid: 7797 + components: + - type: Transform + pos: 72.5,2.5 + parent: 2 + - uid: 7798 + components: + - type: Transform + pos: 72.5,1.5 + parent: 2 + - uid: 7799 + components: + - type: Transform + pos: 72.5,0.5 + parent: 2 + - uid: 7800 + components: + - type: Transform + pos: 72.5,-0.5 + parent: 2 + - uid: 7801 + components: + - type: Transform + pos: 72.5,-1.5 + parent: 2 + - uid: 7802 + components: + - type: Transform + pos: 72.5,-2.5 + parent: 2 + - uid: 7803 + components: + - type: Transform + pos: 72.5,-3.5 + parent: 2 + - uid: 7804 + components: + - type: Transform + pos: 72.5,-4.5 + parent: 2 + - uid: 7805 + components: + - type: Transform + pos: 73.5,-4.5 + parent: 2 + - uid: 7806 + components: + - type: Transform + pos: 55.5,10.5 + parent: 2 + - uid: 7807 + components: + - type: Transform + pos: 56.5,10.5 + parent: 2 + - uid: 7808 + components: + - type: Transform + pos: 57.5,10.5 + parent: 2 + - uid: 7809 + components: + - type: Transform + pos: 58.5,10.5 + parent: 2 + - uid: 7810 + components: + - type: Transform + pos: 59.5,10.5 + parent: 2 + - uid: 7811 + components: + - type: Transform + pos: 59.5,11.5 + parent: 2 + - uid: 7812 + components: + - type: Transform + pos: 59.5,12.5 + parent: 2 + - uid: 7813 + components: + - type: Transform + pos: 59.5,13.5 + parent: 2 + - uid: 7814 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 + - uid: 7815 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - uid: 7816 + components: + - type: Transform + pos: 61.5,14.5 + parent: 2 + - uid: 7817 + components: + - type: Transform + pos: 62.5,14.5 + parent: 2 + - uid: 7818 + components: + - type: Transform + pos: 63.5,14.5 + parent: 2 + - uid: 7819 + components: + - type: Transform + pos: 64.5,14.5 + parent: 2 + - uid: 7820 + components: + - type: Transform + pos: 65.5,14.5 + parent: 2 + - uid: 7821 + components: + - type: Transform + pos: 65.5,15.5 + parent: 2 + - uid: 7822 + components: + - type: Transform + pos: 65.5,18.5 + parent: 2 + - uid: 7823 + components: + - type: Transform + pos: 65.5,20.5 + parent: 2 + - uid: 7824 + components: + - type: Transform + pos: 66.5,20.5 + parent: 2 + - uid: 7825 + components: + - type: Transform + pos: 41.5,5.5 + parent: 2 + - uid: 7826 + components: + - type: Transform + pos: 58.5,13.5 + parent: 2 + - uid: 7827 + components: + - type: Transform + pos: 57.5,13.5 + parent: 2 + - uid: 7828 + components: + - type: Transform + pos: 56.5,13.5 + parent: 2 + - uid: 7829 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - uid: 7830 + components: + - type: Transform + pos: 54.5,13.5 + parent: 2 + - uid: 7831 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 7832 + components: + - type: Transform + pos: 52.5,13.5 + parent: 2 + - uid: 7833 + components: + - type: Transform + pos: 51.5,13.5 + parent: 2 + - uid: 7834 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 7835 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 + - uid: 7836 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 + - uid: 7837 + components: + - type: Transform + pos: 47.5,13.5 + parent: 2 + - uid: 7838 + components: + - type: Transform + pos: 47.5,14.5 + parent: 2 + - uid: 7839 + components: + - type: Transform + pos: 47.5,15.5 + parent: 2 + - uid: 7840 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 + - uid: 7841 + components: + - type: Transform + pos: 47.5,17.5 + parent: 2 + - uid: 7842 + components: + - type: Transform + pos: 47.5,18.5 + parent: 2 + - uid: 7843 + components: + - type: Transform + pos: 46.5,18.5 + parent: 2 + - uid: 7844 + components: + - type: Transform + pos: 46.5,19.5 + parent: 2 + - uid: 7845 + components: + - type: Transform + pos: 45.5,19.5 + parent: 2 + - uid: 7846 + components: + - type: Transform + pos: 72.5,-5.5 + parent: 2 + - uid: 7847 + components: + - type: Transform + pos: 72.5,-6.5 + parent: 2 + - uid: 7848 + components: + - type: Transform + pos: 72.5,-7.5 + parent: 2 + - uid: 7849 + components: + - type: Transform + pos: 72.5,-8.5 + parent: 2 + - uid: 7850 + components: + - type: Transform + pos: 72.5,-9.5 + parent: 2 + - uid: 7851 + components: + - type: Transform + pos: 72.5,-10.5 + parent: 2 + - uid: 7852 + components: + - type: Transform + pos: 73.5,-10.5 + parent: 2 + - uid: 7853 + components: + - type: Transform + pos: 74.5,-10.5 + parent: 2 + - uid: 7854 + components: + - type: Transform + pos: -8.5,8.5 + parent: 2 + - uid: 7855 + components: + - type: Transform + pos: -9.5,8.5 + parent: 2 + - uid: 7856 + components: + - type: Transform + pos: -10.5,8.5 + parent: 2 + - uid: 7857 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 + - uid: 7858 + components: + - type: Transform + pos: -12.5,8.5 + parent: 2 + - uid: 7859 + components: + - type: Transform + pos: -13.5,8.5 + parent: 2 + - uid: 7860 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 + - uid: 7861 + components: + - type: Transform + pos: -15.5,8.5 + parent: 2 + - uid: 7862 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 + - uid: 7863 + components: + - type: Transform + pos: -16.5,9.5 + parent: 2 + - uid: 7864 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 7865 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 7866 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 7867 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 7868 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - uid: 7869 + components: + - type: Transform + pos: -21.5,10.5 + parent: 2 + - uid: 7870 + components: + - type: Transform + pos: -22.5,10.5 + parent: 2 + - uid: 7871 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 7872 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 7873 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - uid: 7874 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - uid: 7875 + components: + - type: Transform + pos: -25.5,9.5 + parent: 2 + - uid: 7876 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 7877 + components: + - type: Transform + pos: -25.5,7.5 + parent: 2 + - uid: 7878 + components: + - type: Transform + pos: -25.5,6.5 + parent: 2 + - uid: 7879 + components: + - type: Transform + pos: -25.5,5.5 + parent: 2 + - uid: 7880 + components: + - type: Transform + pos: -25.5,4.5 + parent: 2 + - uid: 7881 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 + - uid: 7882 + components: + - type: Transform + pos: -25.5,2.5 + parent: 2 + - uid: 7883 + components: + - type: Transform + pos: -25.5,1.5 + parent: 2 + - uid: 7884 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - uid: 7885 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 + - uid: 7886 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - uid: 7887 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 7888 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - uid: 7889 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 2 + - uid: 7890 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 2 + - uid: 7891 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 2 + - uid: 7892 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 2 + - uid: 7893 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 + - uid: 7894 + components: + - type: Transform + pos: -31.5,0.5 + parent: 2 + - uid: 7895 + components: + - type: Transform + pos: -31.5,1.5 + parent: 2 + - uid: 7896 + components: + - type: Transform + pos: -31.5,2.5 + parent: 2 + - uid: 7897 + components: + - type: Transform + pos: -31.5,3.5 + parent: 2 + - uid: 7898 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 + - uid: 7899 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - uid: 7900 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - uid: 7901 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - uid: 7902 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - uid: 7903 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 7904 + components: + - type: Transform + pos: -13.5,19.5 + parent: 2 + - uid: 7905 + components: + - type: Transform + pos: -13.5,18.5 + parent: 2 + - uid: 7906 + components: + - type: Transform + pos: -13.5,17.5 + parent: 2 + - uid: 7907 + components: + - type: Transform + pos: -13.5,16.5 + parent: 2 + - uid: 7908 + components: + - type: Transform + pos: -45.5,12.5 + parent: 2 + - uid: 7909 + components: + - type: Transform + pos: -43.5,12.5 + parent: 2 + - uid: 7910 + components: + - type: Transform + pos: -43.5,10.5 + parent: 2 + - uid: 7911 + components: + - type: Transform + pos: -44.5,9.5 + parent: 2 + - uid: 7912 + components: + - type: Transform + pos: -46.5,12.5 + parent: 2 + - uid: 7913 + components: + - type: Transform + pos: -42.5,12.5 + parent: 2 + - uid: 7914 + components: + - type: Transform + pos: -41.5,12.5 + parent: 2 + - uid: 7915 + components: + - type: Transform + pos: -39.5,10.5 + parent: 2 + - uid: 7916 + components: + - type: Transform + pos: -40.5,11.5 + parent: 2 + - uid: 7917 + components: + - type: Transform + pos: -43.5,7.5 + parent: 2 + - uid: 7918 + components: + - type: Transform + pos: -42.5,7.5 + parent: 2 + - uid: 7919 + components: + - type: Transform + pos: -41.5,7.5 + parent: 2 + - uid: 7920 + components: + - type: Transform + pos: -40.5,7.5 + parent: 2 + - uid: 7921 + components: + - type: Transform + pos: -39.5,7.5 + parent: 2 + - uid: 7922 + components: + - type: Transform + pos: -38.5,7.5 + parent: 2 + - uid: 7923 + components: + - type: Transform + pos: -38.5,8.5 + parent: 2 + - uid: 7924 + components: + - type: Transform + pos: -38.5,9.5 + parent: 2 + - uid: 7925 + components: + - type: Transform + pos: -38.5,10.5 + parent: 2 + - uid: 7926 + components: + - type: Transform + pos: -37.5,10.5 + parent: 2 + - uid: 7927 + components: + - type: Transform + pos: -36.5,10.5 + parent: 2 + - uid: 7928 + components: + - type: Transform + pos: -35.5,10.5 + parent: 2 + - uid: 7929 + components: + - type: Transform + pos: -34.5,10.5 + parent: 2 + - uid: 7930 + components: + - type: Transform + pos: -33.5,10.5 + parent: 2 + - uid: 7931 + components: + - type: Transform + pos: -32.5,10.5 + parent: 2 + - uid: 7932 + components: + - type: Transform + pos: -31.5,10.5 + parent: 2 + - uid: 7933 + components: + - type: Transform + pos: -30.5,10.5 + parent: 2 + - uid: 7934 + components: + - type: Transform + pos: -29.5,10.5 + parent: 2 + - uid: 7935 + components: + - type: Transform + pos: -28.5,10.5 + parent: 2 + - uid: 7936 + components: + - type: Transform + pos: -27.5,10.5 + parent: 2 + - uid: 7937 + components: + - type: Transform + pos: -26.5,10.5 + parent: 2 + - uid: 7938 + components: + - type: Transform + pos: -43.5,6.5 + parent: 2 + - uid: 7939 + components: + - type: Transform + pos: -57.5,6.5 + parent: 2 + - uid: 7940 + components: + - type: Transform + pos: -57.5,7.5 + parent: 2 + - uid: 7941 + components: + - type: Transform + pos: -57.5,8.5 + parent: 2 + - uid: 7942 + components: + - type: Transform + pos: -58.5,8.5 + parent: 2 + - uid: 7943 + components: + - type: Transform + pos: -59.5,8.5 + parent: 2 + - uid: 7944 + components: + - type: Transform + pos: -60.5,8.5 + parent: 2 + - uid: 7945 + components: + - type: Transform + pos: -61.5,8.5 + parent: 2 + - uid: 7946 + components: + - type: Transform + pos: -61.5,9.5 + parent: 2 + - uid: 7947 + components: + - type: Transform + pos: -61.5,10.5 + parent: 2 + - uid: 7948 + components: + - type: Transform + pos: -61.5,11.5 + parent: 2 + - uid: 7949 + components: + - type: Transform + pos: -61.5,12.5 + parent: 2 + - uid: 7950 + components: + - type: Transform + pos: -61.5,13.5 + parent: 2 + - uid: 7951 + components: + - type: Transform + pos: -61.5,14.5 + parent: 2 + - uid: 7952 + components: + - type: Transform + pos: -60.5,14.5 + parent: 2 + - uid: 7953 + components: + - type: Transform + pos: -48.5,17.5 + parent: 2 + - uid: 7954 + components: + - type: Transform + pos: -47.5,13.5 + parent: 2 + - uid: 7955 + components: + - type: Transform + pos: -47.5,12.5 + parent: 2 + - uid: 7956 + components: + - type: Transform + pos: -47.5,11.5 + parent: 2 + - uid: 7957 + components: + - type: Transform + pos: -47.5,10.5 + parent: 2 + - uid: 7958 + components: + - type: Transform + pos: -47.5,9.5 + parent: 2 + - uid: 7959 + components: + - type: Transform + pos: -46.5,9.5 + parent: 2 + - uid: 7960 + components: + - type: Transform + pos: -46.5,7.5 + parent: 2 + - uid: 7961 + components: + - type: Transform + pos: -46.5,8.5 + parent: 2 + - uid: 7962 + components: + - type: Transform + pos: -45.5,7.5 + parent: 2 + - uid: 7963 + components: + - type: Transform + pos: -44.5,7.5 + parent: 2 + - uid: 7964 + components: + - type: Transform + pos: -64.5,14.5 + parent: 2 + - uid: 7965 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 + - uid: 7966 + components: + - type: Transform + pos: -65.5,7.5 + parent: 2 + - uid: 7967 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 2 + - uid: 7968 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 + - uid: 7969 + components: + - type: Transform + pos: -31.5,11.5 + parent: 2 + - uid: 7970 + components: + - type: Transform + pos: -31.5,12.5 + parent: 2 + - uid: 7971 + components: + - type: Transform + pos: -31.5,13.5 + parent: 2 + - uid: 7972 + components: + - type: Transform + pos: -31.5,14.5 + parent: 2 + - uid: 7973 + components: + - type: Transform + pos: -31.5,15.5 + parent: 2 + - uid: 7974 + components: + - type: Transform + pos: -31.5,16.5 + parent: 2 + - uid: 7975 + components: + - type: Transform + pos: -31.5,17.5 + parent: 2 + - uid: 7976 + components: + - type: Transform + pos: -31.5,20.5 + parent: 2 + - uid: 7977 + components: + - type: Transform + pos: -32.5,20.5 + parent: 2 + - uid: 7978 + components: + - type: Transform + pos: -39.5,20.5 + parent: 2 + - uid: 7979 + components: + - type: Transform + pos: -38.5,20.5 + parent: 2 + - uid: 7980 + components: + - type: Transform + pos: -35.5,20.5 + parent: 2 + - uid: 7981 + components: + - type: Transform + pos: -33.5,20.5 + parent: 2 + - uid: 7982 + components: + - type: Transform + pos: -44.5,12.5 + parent: 2 + - uid: 7983 + components: + - type: Transform + pos: -43.5,11.5 + parent: 2 + - uid: 7984 + components: + - type: Transform + pos: -43.5,9.5 + parent: 2 + - uid: 7985 + components: + - type: Transform + pos: -49.5,18.5 + parent: 2 + - uid: 7986 + components: + - type: Transform + pos: -49.5,19.5 + parent: 2 + - uid: 7987 + components: + - type: Transform + pos: -49.5,20.5 + parent: 2 + - uid: 7988 + components: + - type: Transform + pos: -49.5,21.5 + parent: 2 + - uid: 7989 + components: + - type: Transform + pos: -49.5,22.5 + parent: 2 + - uid: 7990 + components: + - type: Transform + pos: -50.5,22.5 + parent: 2 + - uid: 7991 + components: + - type: Transform + pos: -51.5,22.5 + parent: 2 + - uid: 7992 + components: + - type: Transform + pos: -48.5,16.5 + parent: 2 + - uid: 7993 + components: + - type: Transform + pos: -16.5,7.5 + parent: 2 + - uid: 7994 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 7995 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 7996 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 7997 + components: + - type: Transform + pos: -48.5,11.5 + parent: 2 + - uid: 7998 + components: + - type: Transform + pos: -49.5,11.5 + parent: 2 + - uid: 7999 + components: + - type: Transform + pos: -50.5,11.5 + parent: 2 + - uid: 8000 + components: + - type: Transform + pos: -51.5,11.5 + parent: 2 + - uid: 8001 + components: + - type: Transform + pos: -52.5,11.5 + parent: 2 + - uid: 8002 + components: + - type: Transform + pos: -53.5,11.5 + parent: 2 + - uid: 8003 + components: + - type: Transform + pos: -54.5,11.5 + parent: 2 + - uid: 8004 + components: + - type: Transform + pos: -55.5,11.5 + parent: 2 + - uid: 8005 + components: + - type: Transform + pos: -56.5,11.5 + parent: 2 + - uid: 8006 + components: + - type: Transform + pos: -57.5,11.5 + parent: 2 + - uid: 8007 + components: + - type: Transform + pos: -58.5,11.5 + parent: 2 + - uid: 8008 + components: + - type: Transform + pos: -58.5,13.5 + parent: 2 + - uid: 8009 + components: + - type: Transform + pos: -58.5,14.5 + parent: 2 + - uid: 8010 + components: + - type: Transform + pos: -59.5,14.5 + parent: 2 + - uid: 8011 + components: + - type: Transform + pos: -42.5,10.5 + parent: 2 + - uid: 8012 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 2 + - uid: 8013 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - uid: 8014 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - uid: 8015 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 8016 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 8017 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 8018 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 2 + - uid: 8019 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 8020 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 8021 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 8022 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 2 + - uid: 8023 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - uid: 8024 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 2 + - uid: 8025 + components: + - type: Transform + pos: -34.5,-12.5 + parent: 2 + - uid: 8026 + components: + - type: Transform + pos: -34.5,-13.5 + parent: 2 + - uid: 8027 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 2 + - uid: 8028 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - uid: 8029 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 2 + - uid: 8030 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - uid: 8031 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 2 + - uid: 8032 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 8033 + components: + - type: Transform + pos: -38.5,-16.5 + parent: 2 + - uid: 8034 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 2 + - uid: 8035 + components: + - type: Transform + pos: -41.5,-16.5 + parent: 2 + - uid: 8036 + components: + - type: Transform + pos: -41.5,-15.5 + parent: 2 + - uid: 8037 + components: + - type: Transform + pos: -41.5,-17.5 + parent: 2 + - uid: 8038 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 8039 + components: + - type: Transform + pos: -42.5,-18.5 + parent: 2 + - uid: 8040 + components: + - type: Transform + pos: -43.5,-18.5 + parent: 2 + - uid: 8041 + components: + - type: Transform + pos: -44.5,-18.5 + parent: 2 + - uid: 8042 + components: + - type: Transform + pos: -45.5,-18.5 + parent: 2 + - uid: 8043 + components: + - type: Transform + pos: -46.5,-18.5 + parent: 2 + - uid: 8044 + components: + - type: Transform + pos: -47.5,-18.5 + parent: 2 + - uid: 8045 + components: + - type: Transform + pos: -48.5,-18.5 + parent: 2 + - uid: 8046 + components: + - type: Transform + pos: -49.5,-18.5 + parent: 2 + - uid: 8047 + components: + - type: Transform + pos: -50.5,-18.5 + parent: 2 + - uid: 8048 + components: + - type: Transform + pos: -50.5,-17.5 + parent: 2 + - uid: 8049 + components: + - type: Transform + pos: -51.5,-17.5 + parent: 2 + - uid: 8050 + components: + - type: Transform + pos: -52.5,-17.5 + parent: 2 + - uid: 8051 + components: + - type: Transform + pos: -53.5,-17.5 + parent: 2 + - uid: 8052 + components: + - type: Transform + pos: -54.5,-17.5 + parent: 2 + - uid: 8053 + components: + - type: Transform + pos: -54.5,-18.5 + parent: 2 + - uid: 8054 + components: + - type: Transform + pos: -55.5,-18.5 + parent: 2 + - uid: 8055 + components: + - type: Transform + pos: -56.5,-18.5 + parent: 2 + - uid: 8056 + components: + - type: Transform + pos: -57.5,-18.5 + parent: 2 + - uid: 8057 + components: + - type: Transform + pos: -58.5,-18.5 + parent: 2 + - uid: 8058 + components: + - type: Transform + pos: -59.5,-18.5 + parent: 2 + - uid: 8059 + components: + - type: Transform + pos: -59.5,-17.5 + parent: 2 + - uid: 8060 + components: + - type: Transform + pos: -60.5,-17.5 + parent: 2 + - uid: 8061 + components: + - type: Transform + pos: -48.5,9.5 + parent: 2 + - uid: 8062 + components: + - type: Transform + pos: -49.5,9.5 + parent: 2 + - uid: 8063 + components: + - type: Transform + pos: -49.5,8.5 + parent: 2 + - uid: 8064 + components: + - type: Transform + pos: -49.5,7.5 + parent: 2 + - uid: 8065 + components: + - type: Transform + pos: -49.5,6.5 + parent: 2 + - uid: 8066 + components: + - type: Transform + pos: -49.5,5.5 + parent: 2 + - uid: 8067 + components: + - type: Transform + pos: -49.5,4.5 + parent: 2 + - uid: 8068 + components: + - type: Transform + pos: -49.5,3.5 + parent: 2 + - uid: 8069 + components: + - type: Transform + pos: -49.5,2.5 + parent: 2 + - uid: 8070 + components: + - type: Transform + pos: -49.5,1.5 + parent: 2 + - uid: 8071 + components: + - type: Transform + pos: -49.5,0.5 + parent: 2 + - uid: 8072 + components: + - type: Transform + pos: -49.5,-0.5 + parent: 2 + - uid: 8073 + components: + - type: Transform + pos: -49.5,-1.5 + parent: 2 + - uid: 8074 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 + - uid: 8075 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 2 + - uid: 8076 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 2 + - uid: 8077 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - uid: 8078 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - uid: 8079 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 8080 + components: + - type: Transform + pos: -50.5,-8.5 + parent: 2 + - uid: 8081 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 8082 + components: + - type: Transform + pos: -50.5,-10.5 + parent: 2 + - uid: 8083 + components: + - type: Transform + pos: -50.5,-11.5 + parent: 2 + - uid: 8084 + components: + - type: Transform + pos: -50.5,-12.5 + parent: 2 + - uid: 8085 + components: + - type: Transform + pos: -50.5,-13.5 + parent: 2 + - uid: 8086 + components: + - type: Transform + pos: -50.5,-14.5 + parent: 2 + - uid: 8087 + components: + - type: Transform + pos: -50.5,-15.5 + parent: 2 + - uid: 8088 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 2 + - uid: 8089 + components: + - type: Transform + pos: -48.5,-1.5 + parent: 2 + - uid: 8090 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 2 + - uid: 8091 + components: + - type: Transform + pos: -46.5,-1.5 + parent: 2 + - uid: 8092 + components: + - type: Transform + pos: -45.5,-1.5 + parent: 2 + - uid: 8093 + components: + - type: Transform + pos: -44.5,-1.5 + parent: 2 + - uid: 8094 + components: + - type: Transform + pos: -43.5,-1.5 + parent: 2 + - uid: 8095 + components: + - type: Transform + pos: -42.5,-1.5 + parent: 2 + - uid: 8096 + components: + - type: Transform + pos: -42.5,-2.5 + parent: 2 + - uid: 8097 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 2 + - uid: 8098 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 2 + - uid: 8099 + components: + - type: Transform + pos: -42.5,-5.5 + parent: 2 + - uid: 8100 + components: + - type: Transform + pos: -42.5,-6.5 + parent: 2 + - uid: 8101 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 2 + - uid: 8102 + components: + - type: Transform + pos: -42.5,-8.5 + parent: 2 + - uid: 8103 + components: + - type: Transform + pos: -42.5,-9.5 + parent: 2 + - uid: 8104 + components: + - type: Transform + pos: -43.5,-9.5 + parent: 2 + - uid: 8105 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 2 + - uid: 8106 + components: + - type: Transform + pos: -51.5,-15.5 + parent: 2 + - uid: 8107 + components: + - type: Transform + pos: -52.5,-15.5 + parent: 2 + - uid: 8108 + components: + - type: Transform + pos: -53.5,-15.5 + parent: 2 + - uid: 8109 + components: + - type: Transform + pos: -54.5,-15.5 + parent: 2 + - uid: 8110 + components: + - type: Transform + pos: -55.5,-13.5 + parent: 2 + - uid: 8111 + components: + - type: Transform + pos: -55.5,-14.5 + parent: 2 + - uid: 8112 + components: + - type: Transform + pos: -55.5,-15.5 + parent: 2 + - uid: 8113 + components: + - type: Transform + pos: -56.5,-13.5 + parent: 2 + - uid: 8114 + components: + - type: Transform + pos: -57.5,-13.5 + parent: 2 + - uid: 8115 + components: + - type: Transform + pos: -58.5,-13.5 + parent: 2 + - uid: 8116 + components: + - type: Transform + pos: -59.5,-13.5 + parent: 2 + - uid: 8117 + components: + - type: Transform + pos: -60.5,-13.5 + parent: 2 + - uid: 8118 + components: + - type: Transform + pos: -61.5,-13.5 + parent: 2 + - uid: 8119 + components: + - type: Transform + pos: -62.5,-13.5 + parent: 2 + - uid: 8120 + components: + - type: Transform + pos: -63.5,-13.5 + parent: 2 + - uid: 8121 + components: + - type: Transform + pos: -63.5,-12.5 + parent: 2 + - uid: 8122 + components: + - type: Transform + pos: -63.5,-11.5 + parent: 2 + - uid: 8123 + components: + - type: Transform + pos: -63.5,-10.5 + parent: 2 + - uid: 8124 + components: + - type: Transform + pos: -62.5,-10.5 + parent: 2 + - uid: 8125 + components: + - type: Transform + pos: -61.5,-10.5 + parent: 2 + - uid: 8126 + components: + - type: Transform + pos: -60.5,-10.5 + parent: 2 + - uid: 8127 + components: + - type: Transform + pos: -59.5,-10.5 + parent: 2 + - uid: 8128 + components: + - type: Transform + pos: -58.5,-10.5 + parent: 2 + - uid: 8129 + components: + - type: Transform + pos: -57.5,-10.5 + parent: 2 + - uid: 8130 + components: + - type: Transform + pos: -56.5,-10.5 + parent: 2 + - uid: 8131 + components: + - type: Transform + pos: -55.5,-10.5 + parent: 2 + - uid: 8132 + components: + - type: Transform + pos: -55.5,-9.5 + parent: 2 + - uid: 8133 + components: + - type: Transform + pos: -54.5,-9.5 + parent: 2 + - uid: 8134 + components: + - type: Transform + pos: -53.5,-9.5 + parent: 2 + - uid: 8135 + components: + - type: Transform + pos: -51.5,-6.5 + parent: 2 + - uid: 8136 + components: + - type: Transform + pos: -52.5,-6.5 + parent: 2 + - uid: 8137 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 8138 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 8139 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 8140 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 8141 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 + - uid: 8142 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 8143 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - uid: 8144 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 + - uid: 8145 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - uid: 8146 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - uid: 8147 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - uid: 8148 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - uid: 8149 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - uid: 8150 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 2 + - uid: 8151 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 2 + - uid: 8152 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 2 + - uid: 8153 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 2 + - uid: 8154 + components: + - type: Transform + pos: -65.5,-2.5 + parent: 2 + - uid: 8155 + components: + - type: Transform + pos: -63.5,-2.5 + parent: 2 + - uid: 8156 + components: + - type: Transform + pos: -63.5,-1.5 + parent: 2 + - uid: 8157 + components: + - type: Transform + pos: -63.5,-0.5 + parent: 2 + - uid: 8158 + components: + - type: Transform + pos: -63.5,0.5 + parent: 2 + - uid: 8159 + components: + - type: Transform + pos: -63.5,1.5 + parent: 2 + - uid: 8160 + components: + - type: Transform + pos: -63.5,2.5 + parent: 2 + - uid: 8161 + components: + - type: Transform + pos: -63.5,3.5 + parent: 2 + - uid: 8162 + components: + - type: Transform + pos: -63.5,4.5 + parent: 2 + - uid: 8163 + components: + - type: Transform + pos: -63.5,5.5 + parent: 2 + - uid: 8164 + components: + - type: Transform + pos: -63.5,6.5 + parent: 2 + - uid: 8165 + components: + - type: Transform + pos: -63.5,7.5 + parent: 2 + - uid: 8166 + components: + - type: Transform + pos: -63.5,8.5 + parent: 2 + - uid: 8167 + components: + - type: Transform + pos: -63.5,9.5 + parent: 2 + - uid: 8168 + components: + - type: Transform + pos: -63.5,10.5 + parent: 2 + - uid: 8169 + components: + - type: Transform + pos: -63.5,11.5 + parent: 2 + - uid: 8170 + components: + - type: Transform + pos: -63.5,12.5 + parent: 2 + - uid: 8171 + components: + - type: Transform + pos: -63.5,13.5 + parent: 2 + - uid: 8172 + components: + - type: Transform + pos: -64.5,-2.5 + parent: 2 + - uid: 8173 + components: + - type: Transform + pos: -65.5,-2.5 + parent: 2 + - uid: 8174 + components: + - type: Transform + pos: -63.5,-3.5 + parent: 2 + - uid: 8175 + components: + - type: Transform + pos: -63.5,-4.5 + parent: 2 + - uid: 8176 + components: + - type: Transform + pos: -63.5,-5.5 + parent: 2 + - uid: 8177 + components: + - type: Transform + pos: -63.5,-6.5 + parent: 2 + - uid: 8178 + components: + - type: Transform + pos: -63.5,-7.5 + parent: 2 + - uid: 8179 + components: + - type: Transform + pos: -63.5,-8.5 + parent: 2 + - uid: 8180 + components: + - type: Transform + pos: -63.5,-9.5 + parent: 2 + - uid: 8181 + components: + - type: Transform + pos: -39.5,-15.5 + parent: 2 + - uid: 8182 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 2 + - uid: 8183 + components: + - type: Transform + pos: -39.5,-21.5 + parent: 2 + - uid: 8184 + components: + - type: Transform + pos: -39.5,-22.5 + parent: 2 + - uid: 8185 + components: + - type: Transform + pos: -39.5,-23.5 + parent: 2 + - uid: 8186 + components: + - type: Transform + pos: -39.5,-24.5 + parent: 2 + - uid: 8187 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 2 + - uid: 8188 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 2 + - uid: 8189 + components: + - type: Transform + pos: -36.5,-24.5 + parent: 2 + - uid: 8190 + components: + - type: Transform + pos: -35.5,-24.5 + parent: 2 + - uid: 8191 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 2 + - uid: 8192 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 2 + - uid: 8193 + components: + - type: Transform + pos: -32.5,-24.5 + parent: 2 + - uid: 8194 + components: + - type: Transform + pos: -32.5,-25.5 + parent: 2 + - uid: 8195 + components: + - type: Transform + pos: -32.5,-26.5 + parent: 2 + - uid: 8196 + components: + - type: Transform + pos: -32.5,-27.5 + parent: 2 + - uid: 8197 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 2 + - uid: 8198 + components: + - type: Transform + pos: -32.5,-29.5 + parent: 2 + - uid: 8199 + components: + - type: Transform + pos: -32.5,-30.5 + parent: 2 + - uid: 8200 + components: + - type: Transform + pos: -33.5,-29.5 + parent: 2 + - uid: 8201 + components: + - type: Transform + pos: -34.5,-29.5 + parent: 2 + - uid: 8202 + components: + - type: Transform + pos: -35.5,-29.5 + parent: 2 + - uid: 8203 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 2 + - uid: 8204 + components: + - type: Transform + pos: -31.5,-30.5 + parent: 2 + - uid: 8205 + components: + - type: Transform + pos: -30.5,-30.5 + parent: 2 + - uid: 8206 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 2 + - uid: 8207 + components: + - type: Transform + pos: -28.5,-30.5 + parent: 2 + - uid: 8208 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - uid: 8209 + components: + - type: Transform + pos: -26.5,-30.5 + parent: 2 + - uid: 8210 + components: + - type: Transform + pos: -26.5,-31.5 + parent: 2 + - uid: 8211 + components: + - type: Transform + pos: -26.5,-32.5 + parent: 2 + - uid: 8212 + components: + - type: Transform + pos: -26.5,-33.5 + parent: 2 + - uid: 8213 + components: + - type: Transform + pos: -26.5,-34.5 + parent: 2 + - uid: 8214 + components: + - type: Transform + pos: -27.5,-34.5 + parent: 2 + - uid: 8215 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 2 + - uid: 8216 + components: + - type: Transform + pos: -29.5,-34.5 + parent: 2 + - uid: 8217 + components: + - type: Transform + pos: -25.5,-30.5 + parent: 2 + - uid: 8218 + components: + - type: Transform + pos: -25.5,-29.5 + parent: 2 + - uid: 8219 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 2 + - uid: 8220 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 2 + - uid: 8221 + components: + - type: Transform + pos: -25.5,-26.5 + parent: 2 + - uid: 8222 + components: + - type: Transform + pos: -25.5,-25.5 + parent: 2 + - uid: 8223 + components: + - type: Transform + pos: -25.5,-24.5 + parent: 2 + - uid: 8224 + components: + - type: Transform + pos: -25.5,-23.5 + parent: 2 + - uid: 8225 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 2 + - uid: 8226 + components: + - type: Transform + pos: -25.5,-21.5 + parent: 2 + - uid: 8227 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 2 + - uid: 8228 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 8229 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 2 + - uid: 8230 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 2 + - uid: 8231 + components: + - type: Transform + pos: -34.5,-20.5 + parent: 2 + - uid: 8232 + components: + - type: Transform + pos: -33.5,-20.5 + parent: 2 + - uid: 8233 + components: + - type: Transform + pos: -32.5,-20.5 + parent: 2 + - uid: 8234 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 2 + - uid: 8235 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 2 + - uid: 8236 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 2 + - uid: 8237 + components: + - type: Transform + pos: -28.5,-20.5 + parent: 2 + - uid: 8238 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 + - uid: 8239 + components: + - type: Transform + pos: -26.5,-20.5 + parent: 2 + - uid: 8240 + components: + - type: Transform + pos: -38.5,-21.5 + parent: 2 + - uid: 8241 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 8242 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - uid: 8243 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 2 + - uid: 8244 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 2 + - uid: 8245 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 2 + - uid: 8246 + components: + - type: Transform + pos: -17.5,-35.5 + parent: 2 + - uid: 8247 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 2 + - uid: 8248 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 2 + - uid: 8249 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 2 + - uid: 8250 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 2 + - uid: 8251 + components: + - type: Transform + pos: -20.5,-33.5 + parent: 2 + - uid: 8252 + components: + - type: Transform + pos: -21.5,-33.5 + parent: 2 + - uid: 8253 + components: + - type: Transform + pos: -22.5,-33.5 + parent: 2 + - uid: 8254 + components: + - type: Transform + pos: -23.5,-33.5 + parent: 2 + - uid: 8255 + components: + - type: Transform + pos: -24.5,-33.5 + parent: 2 + - uid: 8256 + components: + - type: Transform + pos: -25.5,-33.5 + parent: 2 + - uid: 8257 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 2 + - uid: 8258 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 2 + - uid: 8259 + components: + - type: Transform + pos: -37.5,-63.5 + parent: 2 + - uid: 8260 + components: + - type: Transform + pos: -7.5,-50.5 + parent: 2 + - uid: 8261 + components: + - type: Transform + pos: -6.5,-52.5 + parent: 2 + - uid: 8262 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 2 + - uid: 8263 + components: + - type: Transform + pos: -18.5,-50.5 + parent: 2 + - uid: 8264 + components: + - type: Transform + pos: -18.5,-51.5 + parent: 2 + - uid: 8265 + components: + - type: Transform + pos: -18.5,-52.5 + parent: 2 + - uid: 8266 + components: + - type: Transform + pos: -18.5,-53.5 + parent: 2 + - uid: 8267 + components: + - type: Transform + pos: -31.5,-60.5 + parent: 2 + - uid: 8268 + components: + - type: Transform + pos: -31.5,-61.5 + parent: 2 + - uid: 8269 + components: + - type: Transform + pos: -31.5,-62.5 + parent: 2 + - uid: 8270 + components: + - type: Transform + pos: -31.5,-63.5 + parent: 2 + - uid: 8271 + components: + - type: Transform + pos: -31.5,-64.5 + parent: 2 + - uid: 8272 + components: + - type: Transform + pos: -31.5,-65.5 + parent: 2 + - uid: 8273 + components: + - type: Transform + pos: -30.5,-65.5 + parent: 2 + - uid: 8274 + components: + - type: Transform + pos: -29.5,-65.5 + parent: 2 + - uid: 8275 + components: + - type: Transform + pos: -29.5,-64.5 + parent: 2 + - uid: 8276 + components: + - type: Transform + pos: -29.5,-63.5 + parent: 2 + - uid: 8277 + components: + - type: Transform + pos: -37.5,-62.5 + parent: 2 + - uid: 8278 + components: + - type: Transform + pos: -37.5,-61.5 + parent: 2 + - uid: 8279 + components: + - type: Transform + pos: -36.5,-61.5 + parent: 2 + - uid: 8280 + components: + - type: Transform + pos: -34.5,-61.5 + parent: 2 + - uid: 8281 + components: + - type: Transform + pos: -35.5,-61.5 + parent: 2 + - uid: 8282 + components: + - type: Transform + pos: -33.5,-61.5 + parent: 2 + - uid: 8283 + components: + - type: Transform + pos: -32.5,-61.5 + parent: 2 + - uid: 8284 + components: + - type: Transform + pos: -15.5,-67.5 + parent: 2 + - uid: 8285 + components: + - type: Transform + pos: -18.5,-69.5 + parent: 2 + - uid: 8286 + components: + - type: Transform + pos: -17.5,-69.5 + parent: 2 + - uid: 8287 + components: + - type: Transform + pos: -15.5,-68.5 + parent: 2 + - uid: 8288 + components: + - type: Transform + pos: -19.5,-69.5 + parent: 2 + - uid: 8289 + components: + - type: Transform + pos: -15.5,-66.5 + parent: 2 + - uid: 8290 + components: + - type: Transform + pos: -20.5,-67.5 + parent: 2 + - uid: 8291 + components: + - type: Transform + pos: -15.5,-62.5 + parent: 2 + - uid: 8292 + components: + - type: Transform + pos: -12.5,-59.5 + parent: 2 + - uid: 8293 + components: + - type: Transform + pos: -11.5,-59.5 + parent: 2 + - uid: 8294 + components: + - type: Transform + pos: -16.5,-69.5 + parent: 2 + - uid: 8295 + components: + - type: Transform + pos: -15.5,-65.5 + parent: 2 + - uid: 8296 + components: + - type: Transform + pos: -15.5,-64.5 + parent: 2 + - uid: 8297 + components: + - type: Transform + pos: -15.5,-63.5 + parent: 2 + - uid: 8298 + components: + - type: Transform + pos: -15.5,-61.5 + parent: 2 + - uid: 8299 + components: + - type: Transform + pos: -13.5,-59.5 + parent: 2 + - uid: 8300 + components: + - type: Transform + pos: -15.5,-60.5 + parent: 2 + - uid: 8301 + components: + - type: Transform + pos: -15.5,-59.5 + parent: 2 + - uid: 8302 + components: + - type: Transform + pos: -14.5,-59.5 + parent: 2 + - uid: 8303 + components: + - type: Transform + pos: -20.5,-66.5 + parent: 2 + - uid: 8304 + components: + - type: Transform + pos: -10.5,-59.5 + parent: 2 + - uid: 8305 + components: + - type: Transform + pos: -9.5,-59.5 + parent: 2 + - uid: 8306 + components: + - type: Transform + pos: -8.5,-59.5 + parent: 2 + - uid: 8307 + components: + - type: Transform + pos: -7.5,-59.5 + parent: 2 + - uid: 8308 + components: + - type: Transform + pos: -6.5,-59.5 + parent: 2 + - uid: 8309 + components: + - type: Transform + pos: -5.5,-59.5 + parent: 2 + - uid: 8310 + components: + - type: Transform + pos: -4.5,-59.5 + parent: 2 + - uid: 8311 + components: + - type: Transform + pos: -3.5,-59.5 + parent: 2 + - uid: 8312 + components: + - type: Transform + pos: -2.5,-59.5 + parent: 2 + - uid: 8313 + components: + - type: Transform + pos: -2.5,-58.5 + parent: 2 + - uid: 8314 + components: + - type: Transform + pos: -2.5,-57.5 + parent: 2 + - uid: 8315 + components: + - type: Transform + pos: -1.5,-57.5 + parent: 2 + - uid: 8316 + components: + - type: Transform + pos: -0.5,-57.5 + parent: 2 + - uid: 8317 + components: + - type: Transform + pos: -0.5,-56.5 + parent: 2 + - uid: 8318 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 2 + - uid: 8319 + components: + - type: Transform + pos: -0.5,-54.5 + parent: 2 + - uid: 8320 + components: + - type: Transform + pos: -0.5,-53.5 + parent: 2 + - uid: 8321 + components: + - type: Transform + pos: -0.5,-52.5 + parent: 2 + - uid: 8322 + components: + - type: Transform + pos: -0.5,-51.5 + parent: 2 + - uid: 8323 + components: + - type: Transform + pos: -0.5,-50.5 + parent: 2 + - uid: 8324 + components: + - type: Transform + pos: -0.5,-49.5 + parent: 2 + - uid: 8325 + components: + - type: Transform + pos: -0.5,-48.5 + parent: 2 + - uid: 8326 + components: + - type: Transform + pos: -0.5,-47.5 + parent: 2 + - uid: 8327 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 2 + - uid: 8328 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 2 + - uid: 8329 + components: + - type: Transform + pos: -0.5,-44.5 + parent: 2 + - uid: 8330 + components: + - type: Transform + pos: -0.5,-43.5 + parent: 2 + - uid: 8331 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 2 + - uid: 8332 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 2 + - uid: 8333 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 2 + - uid: 8334 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 2 + - uid: 8335 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 2 + - uid: 8336 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 2 + - uid: 8337 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 2 + - uid: 8338 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 2 + - uid: 8339 + components: + - type: Transform + pos: -2.5,-36.5 + parent: 2 + - uid: 8340 + components: + - type: Transform + pos: -3.5,-36.5 + parent: 2 + - uid: 8341 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 2 + - uid: 8342 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 2 + - uid: 8343 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 2 + - uid: 8344 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 2 + - uid: 8345 + components: + - type: Transform + pos: -8.5,-36.5 + parent: 2 + - uid: 8346 + components: + - type: Transform + pos: -9.5,-36.5 + parent: 2 + - uid: 8347 + components: + - type: Transform + pos: -10.5,-36.5 + parent: 2 + - uid: 8348 + components: + - type: Transform + pos: -10.5,-35.5 + parent: 2 + - uid: 8349 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 2 + - uid: 8350 + components: + - type: Transform + pos: -14.5,-69.5 + parent: 2 + - uid: 8351 + components: + - type: Transform + pos: -13.5,-69.5 + parent: 2 + - uid: 8352 + components: + - type: Transform + pos: -12.5,-69.5 + parent: 2 + - uid: 8353 + components: + - type: Transform + pos: -11.5,-69.5 + parent: 2 + - uid: 8354 + components: + - type: Transform + pos: -10.5,-69.5 + parent: 2 + - uid: 8355 + components: + - type: Transform + pos: -9.5,-69.5 + parent: 2 + - uid: 8356 + components: + - type: Transform + pos: -9.5,-68.5 + parent: 2 + - uid: 8357 + components: + - type: Transform + pos: -8.5,-67.5 + parent: 2 + - uid: 8358 + components: + - type: Transform + pos: -7.5,-67.5 + parent: 2 + - uid: 8359 + components: + - type: Transform + pos: -6.5,-67.5 + parent: 2 + - uid: 8360 + components: + - type: Transform + pos: -5.5,-67.5 + parent: 2 + - uid: 8361 + components: + - type: Transform + pos: -4.5,-67.5 + parent: 2 + - uid: 8362 + components: + - type: Transform + pos: -3.5,-67.5 + parent: 2 + - uid: 8363 + components: + - type: Transform + pos: -2.5,-67.5 + parent: 2 + - uid: 8364 + components: + - type: Transform + pos: -1.5,-67.5 + parent: 2 + - uid: 8365 + components: + - type: Transform + pos: -0.5,-67.5 + parent: 2 + - uid: 8366 + components: + - type: Transform + pos: 0.5,-67.5 + parent: 2 + - uid: 8367 + components: + - type: Transform + pos: 1.5,-67.5 + parent: 2 + - uid: 8368 + components: + - type: Transform + pos: 2.5,-67.5 + parent: 2 + - uid: 8369 + components: + - type: Transform + pos: 3.5,-67.5 + parent: 2 + - uid: 8370 + components: + - type: Transform + pos: 4.5,-67.5 + parent: 2 + - uid: 8371 + components: + - type: Transform + pos: 5.5,-67.5 + parent: 2 + - uid: 8372 + components: + - type: Transform + pos: 6.5,-67.5 + parent: 2 + - uid: 8373 + components: + - type: Transform + pos: 7.5,-67.5 + parent: 2 + - uid: 8374 + components: + - type: Transform + pos: 8.5,-67.5 + parent: 2 + - uid: 8375 + components: + - type: Transform + pos: 8.5,-66.5 + parent: 2 + - uid: 8376 + components: + - type: Transform + pos: 8.5,-65.5 + parent: 2 + - uid: 8377 + components: + - type: Transform + pos: 8.5,-64.5 + parent: 2 + - uid: 8378 + components: + - type: Transform + pos: 8.5,-63.5 + parent: 2 + - uid: 8379 + components: + - type: Transform + pos: 8.5,-62.5 + parent: 2 + - uid: 8380 + components: + - type: Transform + pos: 8.5,-61.5 + parent: 2 + - uid: 8381 + components: + - type: Transform + pos: 8.5,-60.5 + parent: 2 + - uid: 8382 + components: + - type: Transform + pos: 8.5,-59.5 + parent: 2 + - uid: 8383 + components: + - type: Transform + pos: 8.5,-58.5 + parent: 2 + - uid: 8384 + components: + - type: Transform + pos: 8.5,-57.5 + parent: 2 + - uid: 8385 + components: + - type: Transform + pos: 8.5,-56.5 + parent: 2 + - uid: 8386 + components: + - type: Transform + pos: 7.5,-56.5 + parent: 2 + - uid: 8387 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 2 + - uid: 8388 + components: + - type: Transform + pos: 5.5,-56.5 + parent: 2 + - uid: 8389 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 2 + - uid: 8390 + components: + - type: Transform + pos: 3.5,-56.5 + parent: 2 + - uid: 8391 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 2 + - uid: 8392 + components: + - type: Transform + pos: 1.5,-56.5 + parent: 2 + - uid: 8393 + components: + - type: Transform + pos: 0.5,-56.5 + parent: 2 + - uid: 8394 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 2 + - uid: 8395 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 2 + - uid: 8396 + components: + - type: Transform + pos: 4.5,-53.5 + parent: 2 + - uid: 8397 + components: + - type: Transform + pos: 4.5,-52.5 + parent: 2 + - uid: 8398 + components: + - type: Transform + pos: 4.5,-51.5 + parent: 2 + - uid: 8399 + components: + - type: Transform + pos: 4.5,-50.5 + parent: 2 + - uid: 8400 + components: + - type: Transform + pos: 4.5,-49.5 + parent: 2 + - uid: 8401 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 2 + - uid: 8402 + components: + - type: Transform + pos: 6.5,-47.5 + parent: 2 + - uid: 8403 + components: + - type: Transform + pos: 6.5,-46.5 + parent: 2 + - uid: 8404 + components: + - type: Transform + pos: 6.5,-45.5 + parent: 2 + - uid: 8405 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - uid: 8406 + components: + - type: Transform + pos: 6.5,-43.5 + parent: 2 + - uid: 8407 + components: + - type: Transform + pos: 5.5,-43.5 + parent: 2 + - uid: 8408 + components: + - type: Transform + pos: 7.5,-90.5 + parent: 2 + - uid: 8409 + components: + - type: Transform + pos: -2.5,-80.5 + parent: 2 + - uid: 8410 + components: + - type: Transform + pos: -8.5,-89.5 + parent: 2 + - uid: 8411 + components: + - type: Transform + pos: 0.5,-97.5 + parent: 2 + - uid: 8412 + components: + - type: Transform + pos: 7.5,-93.5 + parent: 2 + - uid: 8413 + components: + - type: Transform + pos: 7.5,-91.5 + parent: 2 + - uid: 8414 + components: + - type: Transform + pos: 0.5,-80.5 + parent: 2 + - uid: 8415 + components: + - type: Transform + pos: 1.5,-80.5 + parent: 2 + - uid: 8416 + components: + - type: Transform + pos: -0.5,-80.5 + parent: 2 + - uid: 8417 + components: + - type: Transform + pos: 3.5,-80.5 + parent: 2 + - uid: 8418 + components: + - type: Transform + pos: -1.5,-80.5 + parent: 2 + - uid: 8419 + components: + - type: Transform + pos: -0.5,-97.5 + parent: 2 + - uid: 8420 + components: + - type: Transform + pos: -8.5,-90.5 + parent: 2 + - uid: 8421 + components: + - type: Transform + pos: -3.5,-80.5 + parent: 2 + - uid: 8422 + components: + - type: Transform + pos: 7.5,-89.5 + parent: 2 + - uid: 8423 + components: + - type: Transform + pos: 2.5,-97.5 + parent: 2 + - uid: 8424 + components: + - type: Transform + pos: -8.5,-87.5 + parent: 2 + - uid: 8425 + components: + - type: Transform + pos: 4.5,-80.5 + parent: 2 + - uid: 8426 + components: + - type: Transform + pos: 4.5,-43.5 + parent: 2 + - uid: 8427 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 2 + - uid: 8428 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 2 + - uid: 8429 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 2 + - uid: 8430 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 2 + - uid: 8431 + components: + - type: Transform + pos: 7.5,-41.5 + parent: 2 + - uid: 8432 + components: + - type: Transform + pos: 2.5,-54.5 + parent: 2 + - uid: 8433 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 2 + - uid: 8434 + components: + - type: Transform + pos: -6.5,-66.5 + parent: 2 + - uid: 8435 + components: + - type: Transform + pos: -6.5,-65.5 + parent: 2 + - uid: 8436 + components: + - type: Transform + pos: -6.5,-64.5 + parent: 2 + - uid: 8437 + components: + - type: Transform + pos: -6.5,-63.5 + parent: 2 + - uid: 8438 + components: + - type: Transform + pos: -6.5,-62.5 + parent: 2 + - uid: 8439 + components: + - type: Transform + pos: -5.5,-62.5 + parent: 2 + - uid: 8440 + components: + - type: Transform + pos: -4.5,-62.5 + parent: 2 + - uid: 8441 + components: + - type: Transform + pos: -3.5,-62.5 + parent: 2 + - uid: 8442 + components: + - type: Transform + pos: -3.5,-61.5 + parent: 2 + - uid: 8443 + components: + - type: Transform + pos: 5.5,-66.5 + parent: 2 + - uid: 8444 + components: + - type: Transform + pos: 5.5,-65.5 + parent: 2 + - uid: 8445 + components: + - type: Transform + pos: 5.5,-64.5 + parent: 2 + - uid: 8446 + components: + - type: Transform + pos: 5.5,-63.5 + parent: 2 + - uid: 8447 + components: + - type: Transform + pos: 5.5,-62.5 + parent: 2 + - uid: 8448 + components: + - type: Transform + pos: 5.5,-61.5 + parent: 2 + - uid: 8449 + components: + - type: Transform + pos: 5.5,-60.5 + parent: 2 + - uid: 8450 + components: + - type: Transform + pos: 4.5,-60.5 + parent: 2 + - uid: 8451 + components: + - type: Transform + pos: 3.5,-60.5 + parent: 2 + - uid: 8452 + components: + - type: Transform + pos: 2.5,-60.5 + parent: 2 + - uid: 8453 + components: + - type: Transform + pos: 1.5,-60.5 + parent: 2 + - uid: 8454 + components: + - type: Transform + pos: -20.5,-69.5 + parent: 2 + - uid: 8455 + components: + - type: Transform + pos: -21.5,-69.5 + parent: 2 + - uid: 8456 + components: + - type: Transform + pos: -22.5,-69.5 + parent: 2 + - uid: 8457 + components: + - type: Transform + pos: -24.5,-69.5 + parent: 2 + - uid: 8458 + components: + - type: Transform + pos: -24.5,-68.5 + parent: 2 + - uid: 8459 + components: + - type: Transform + pos: -24.5,-67.5 + parent: 2 + - uid: 8460 + components: + - type: Transform + pos: -24.5,-66.5 + parent: 2 + - uid: 8461 + components: + - type: Transform + pos: -24.5,-65.5 + parent: 2 + - uid: 8462 + components: + - type: Transform + pos: -24.5,-64.5 + parent: 2 + - uid: 8463 + components: + - type: Transform + pos: -24.5,-63.5 + parent: 2 + - uid: 8464 + components: + - type: Transform + pos: 5.5,-52.5 + parent: 2 + - uid: 8465 + components: + - type: Transform + pos: 6.5,-52.5 + parent: 2 + - uid: 8466 + components: + - type: Transform + pos: 7.5,-52.5 + parent: 2 + - uid: 8467 + components: + - type: Transform + pos: 8.5,-52.5 + parent: 2 + - uid: 8468 + components: + - type: Transform + pos: 8.5,-51.5 + parent: 2 + - uid: 8469 + components: + - type: Transform + pos: 8.5,-50.5 + parent: 2 + - uid: 8470 + components: + - type: Transform + pos: 8.5,-49.5 + parent: 2 + - uid: 8471 + components: + - type: Transform + pos: -31.5,-59.5 + parent: 2 + - uid: 8472 + components: + - type: Transform + pos: -31.5,-58.5 + parent: 2 + - uid: 8473 + components: + - type: Transform + pos: -31.5,-57.5 + parent: 2 + - uid: 8474 + components: + - type: Transform + pos: -31.5,-56.5 + parent: 2 + - uid: 8475 + components: + - type: Transform + pos: -32.5,-56.5 + parent: 2 + - uid: 8476 + components: + - type: Transform + pos: -33.5,-56.5 + parent: 2 + - uid: 8477 + components: + - type: Transform + pos: -33.5,-55.5 + parent: 2 + - uid: 8478 + components: + - type: Transform + pos: -33.5,-54.5 + parent: 2 + - uid: 8479 + components: + - type: Transform + pos: -32.5,-54.5 + parent: 2 + - uid: 8480 + components: + - type: Transform + pos: -31.5,-54.5 + parent: 2 + - uid: 8481 + components: + - type: Transform + pos: -30.5,-54.5 + parent: 2 + - uid: 8482 + components: + - type: Transform + pos: -29.5,-54.5 + parent: 2 + - uid: 8483 + components: + - type: Transform + pos: -28.5,-54.5 + parent: 2 + - uid: 8484 + components: + - type: Transform + pos: -28.5,-55.5 + parent: 2 + - uid: 8485 + components: + - type: Transform + pos: -28.5,-56.5 + parent: 2 + - uid: 8486 + components: + - type: Transform + pos: -28.5,-57.5 + parent: 2 + - uid: 8487 + components: + - type: Transform + pos: -27.5,-57.5 + parent: 2 + - uid: 8488 + components: + - type: Transform + pos: -26.5,-57.5 + parent: 2 + - uid: 8489 + components: + - type: Transform + pos: -25.5,-57.5 + parent: 2 + - uid: 8490 + components: + - type: Transform + pos: -24.5,-57.5 + parent: 2 + - uid: 8491 + components: + - type: Transform + pos: -23.5,-57.5 + parent: 2 + - uid: 8492 + components: + - type: Transform + pos: -22.5,-57.5 + parent: 2 + - uid: 8493 + components: + - type: Transform + pos: -21.5,-57.5 + parent: 2 + - uid: 8494 + components: + - type: Transform + pos: -21.5,-56.5 + parent: 2 + - uid: 8495 + components: + - type: Transform + pos: -21.5,-55.5 + parent: 2 + - uid: 8496 + components: + - type: Transform + pos: -21.5,-54.5 + parent: 2 + - uid: 8497 + components: + - type: Transform + pos: -21.5,-53.5 + parent: 2 + - uid: 8498 + components: + - type: Transform + pos: -20.5,-53.5 + parent: 2 + - uid: 8499 + components: + - type: Transform + pos: -19.5,-53.5 + parent: 2 + - uid: 8500 + components: + - type: Transform + pos: 5.5,-47.5 + parent: 2 + - uid: 8501 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 2 + - uid: 8502 + components: + - type: Transform + pos: 49.5,-40.5 + parent: 2 + - uid: 8503 + components: + - type: Transform + pos: 40.5,-42.5 + parent: 2 + - uid: 8504 + components: + - type: Transform + pos: 40.5,-43.5 + parent: 2 + - uid: 8505 + components: + - type: Transform + pos: 40.5,-44.5 + parent: 2 + - uid: 8506 + components: + - type: Transform + pos: 40.5,-45.5 + parent: 2 + - uid: 8507 + components: + - type: Transform + pos: 40.5,-46.5 + parent: 2 + - uid: 8508 + components: + - type: Transform + pos: 40.5,-47.5 + parent: 2 + - uid: 8509 + components: + - type: Transform + pos: 40.5,-48.5 + parent: 2 + - uid: 8510 + components: + - type: Transform + pos: 40.5,-49.5 + parent: 2 + - uid: 8511 + components: + - type: Transform + pos: 40.5,-50.5 + parent: 2 + - uid: 8512 + components: + - type: Transform + pos: 40.5,-51.5 + parent: 2 + - uid: 8513 + components: + - type: Transform + pos: 40.5,-52.5 + parent: 2 + - uid: 8514 + components: + - type: Transform + pos: 40.5,-53.5 + parent: 2 + - uid: 8515 + components: + - type: Transform + pos: 40.5,-54.5 + parent: 2 + - uid: 8516 + components: + - type: Transform + pos: 40.5,-55.5 + parent: 2 + - uid: 8517 + components: + - type: Transform + pos: 39.5,-55.5 + parent: 2 + - uid: 8518 + components: + - type: Transform + pos: 38.5,-55.5 + parent: 2 + - uid: 8519 + components: + - type: Transform + pos: 37.5,-55.5 + parent: 2 + - uid: 8520 + components: + - type: Transform + pos: 37.5,-54.5 + parent: 2 + - uid: 8521 + components: + - type: Transform + pos: 40.5,-41.5 + parent: 2 + - uid: 8522 + components: + - type: Transform + pos: 40.5,-40.5 + parent: 2 + - uid: 8523 + components: + - type: Transform + pos: 40.5,-39.5 + parent: 2 + - uid: 8524 + components: + - type: Transform + pos: 40.5,-38.5 + parent: 2 + - uid: 8525 + components: + - type: Transform + pos: 40.5,-37.5 + parent: 2 + - uid: 8526 + components: + - type: Transform + pos: 40.5,-36.5 + parent: 2 + - uid: 8527 + components: + - type: Transform + pos: 41.5,-36.5 + parent: 2 + - uid: 8528 + components: + - type: Transform + pos: 42.5,-36.5 + parent: 2 + - uid: 8529 + components: + - type: Transform + pos: 43.5,-36.5 + parent: 2 + - uid: 8530 + components: + - type: Transform + pos: 40.5,-35.5 + parent: 2 + - uid: 8531 + components: + - type: Transform + pos: 40.5,-34.5 + parent: 2 + - uid: 8532 + components: + - type: Transform + pos: 40.5,-32.5 + parent: 2 + - uid: 8533 + components: + - type: Transform + pos: 39.5,-32.5 + parent: 2 + - uid: 8534 + components: + - type: Transform + pos: 38.5,-32.5 + parent: 2 + - uid: 8535 + components: + - type: Transform + pos: 37.5,-32.5 + parent: 2 + - uid: 8536 + components: + - type: Transform + pos: 36.5,-32.5 + parent: 2 + - uid: 8537 + components: + - type: Transform + pos: 36.5,-31.5 + parent: 2 + - uid: 8538 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 2 + - uid: 8539 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 2 + - uid: 8540 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 2 + - uid: 8541 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 2 + - uid: 8542 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 2 + - uid: 8543 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 2 + - uid: 8544 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 2 + - uid: 8545 + components: + - type: Transform + pos: 36.5,-23.5 + parent: 2 + - uid: 8546 + components: + - type: Transform + pos: 37.5,-23.5 + parent: 2 + - uid: 8547 + components: + - type: Transform + pos: 38.5,-23.5 + parent: 2 + - uid: 8548 + components: + - type: Transform + pos: 39.5,-23.5 + parent: 2 + - uid: 8549 + components: + - type: Transform + pos: 40.5,-24.5 + parent: 2 + - uid: 8550 + components: + - type: Transform + pos: 40.5,-25.5 + parent: 2 + - uid: 8551 + components: + - type: Transform + pos: 40.5,-26.5 + parent: 2 + - uid: 8552 + components: + - type: Transform + pos: 40.5,-27.5 + parent: 2 + - uid: 8553 + components: + - type: Transform + pos: 40.5,-28.5 + parent: 2 + - uid: 8554 + components: + - type: Transform + pos: 41.5,-29.5 + parent: 2 + - uid: 8555 + components: + - type: Transform + pos: 40.5,-23.5 + parent: 2 + - uid: 8556 + components: + - type: Transform + pos: 41.5,-19.5 + parent: 2 + - uid: 8557 + components: + - type: Transform + pos: 42.5,-19.5 + parent: 2 + - uid: 8558 + components: + - type: Transform + pos: 43.5,-19.5 + parent: 2 + - uid: 8559 + components: + - type: Transform + pos: 44.5,-19.5 + parent: 2 + - uid: 8560 + components: + - type: Transform + pos: 46.5,-19.5 + parent: 2 + - uid: 8561 + components: + - type: Transform + pos: 47.5,-19.5 + parent: 2 + - uid: 8562 + components: + - type: Transform + pos: 35.5,-23.5 + parent: 2 + - uid: 8563 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 2 + - uid: 8564 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 2 + - uid: 8565 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 + - uid: 8566 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - uid: 8567 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 2 + - uid: 8568 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 2 + - uid: 8569 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 2 + - uid: 8570 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 2 + - uid: 8571 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 2 + - uid: 8572 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 2 + - uid: 8573 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 2 + - uid: 8574 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 2 + - uid: 8575 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 2 + - uid: 8576 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 2 + - uid: 8577 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 2 + - uid: 8578 + components: + - type: Transform + pos: 24.5,-25.5 + parent: 2 + - uid: 8579 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 2 + - uid: 8580 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 2 + - uid: 8581 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 2 + - uid: 8582 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 2 + - uid: 8583 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 2 + - uid: 8584 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - uid: 8585 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 + - uid: 8586 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 8587 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 2 + - uid: 8588 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 2 + - uid: 8589 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 + - uid: 8590 + components: + - type: Transform + pos: 25.5,-27.5 + parent: 2 + - uid: 8591 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 2 + - uid: 8592 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 2 + - uid: 8593 + components: + - type: Transform + pos: 25.5,-30.5 + parent: 2 + - uid: 8594 + components: + - type: Transform + pos: 25.5,-31.5 + parent: 2 + - uid: 8595 + components: + - type: Transform + pos: 25.5,-32.5 + parent: 2 + - uid: 8596 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 2 + - uid: 8597 + components: + - type: Transform + pos: 24.5,-33.5 + parent: 2 + - uid: 8598 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 2 + - uid: 8599 + components: + - type: Transform + pos: 45.5,-19.5 + parent: 2 + - uid: 8600 + components: + - type: Transform + pos: 85.5,-44.5 + parent: 2 + - uid: 8601 + components: + - type: Transform + pos: 85.5,-45.5 + parent: 2 + - uid: 8602 + components: + - type: Transform + pos: 84.5,-45.5 + parent: 2 + - uid: 8603 + components: + - type: Transform + pos: 83.5,-45.5 + parent: 2 + - uid: 8604 + components: + - type: Transform + pos: 82.5,-45.5 + parent: 2 + - uid: 8605 + components: + - type: Transform + pos: 84.5,-46.5 + parent: 2 + - uid: 8606 + components: + - type: Transform + pos: 82.5,-44.5 + parent: 2 + - uid: 8607 + components: + - type: Transform + pos: 82.5,-43.5 + parent: 2 + - uid: 8608 + components: + - type: Transform + pos: 82.5,-42.5 + parent: 2 + - uid: 8609 + components: + - type: Transform + pos: 82.5,-41.5 + parent: 2 + - uid: 8610 + components: + - type: Transform + pos: 82.5,-40.5 + parent: 2 + - uid: 8611 + components: + - type: Transform + pos: 81.5,-40.5 + parent: 2 + - uid: 8612 + components: + - type: Transform + pos: 81.5,-39.5 + parent: 2 + - uid: 8613 + components: + - type: Transform + pos: 81.5,-38.5 + parent: 2 + - uid: 8614 + components: + - type: Transform + pos: 81.5,-37.5 + parent: 2 + - uid: 8615 + components: + - type: Transform + pos: 81.5,-36.5 + parent: 2 + - uid: 8616 + components: + - type: Transform + pos: 80.5,-36.5 + parent: 2 + - uid: 8617 + components: + - type: Transform + pos: 79.5,-36.5 + parent: 2 + - uid: 8618 + components: + - type: Transform + pos: 78.5,-36.5 + parent: 2 + - uid: 8619 + components: + - type: Transform + pos: 77.5,-36.5 + parent: 2 + - uid: 8620 + components: + - type: Transform + pos: 83.5,-23.5 + parent: 2 + - uid: 8621 + components: + - type: Transform + pos: 84.5,-23.5 + parent: 2 + - uid: 8622 + components: + - type: Transform + pos: 85.5,-23.5 + parent: 2 + - uid: 8623 + components: + - type: Transform + pos: 85.5,-24.5 + parent: 2 + - uid: 8624 + components: + - type: Transform + pos: 85.5,-25.5 + parent: 2 + - uid: 8625 + components: + - type: Transform + pos: 85.5,-26.5 + parent: 2 + - uid: 8626 + components: + - type: Transform + pos: 85.5,-27.5 + parent: 2 + - uid: 8627 + components: + - type: Transform + pos: 85.5,-28.5 + parent: 2 + - uid: 8628 + components: + - type: Transform + pos: 85.5,-29.5 + parent: 2 + - uid: 8629 + components: + - type: Transform + pos: 85.5,-30.5 + parent: 2 + - uid: 8630 + components: + - type: Transform + pos: 85.5,-31.5 + parent: 2 + - uid: 8631 + components: + - type: Transform + pos: 85.5,-32.5 + parent: 2 + - uid: 8632 + components: + - type: Transform + pos: 84.5,-32.5 + parent: 2 + - uid: 8633 + components: + - type: Transform + pos: 84.5,-33.5 + parent: 2 + - uid: 8634 + components: + - type: Transform + pos: 83.5,-33.5 + parent: 2 + - uid: 8635 + components: + - type: Transform + pos: 82.5,-33.5 + parent: 2 + - uid: 8636 + components: + - type: Transform + pos: 81.5,-33.5 + parent: 2 + - uid: 8637 + components: + - type: Transform + pos: 81.5,-34.5 + parent: 2 + - uid: 8638 + components: + - type: Transform + pos: 81.5,-35.5 + parent: 2 + - uid: 8639 + components: + - type: Transform + pos: 82.5,-46.5 + parent: 2 + - uid: 8640 + components: + - type: Transform + pos: 82.5,-47.5 + parent: 2 + - uid: 8641 + components: + - type: Transform + pos: 82.5,-48.5 + parent: 2 + - uid: 8642 + components: + - type: Transform + pos: 82.5,-49.5 + parent: 2 + - uid: 8643 + components: + - type: Transform + pos: 82.5,-50.5 + parent: 2 + - uid: 8644 + components: + - type: Transform + pos: 82.5,-51.5 + parent: 2 + - uid: 8645 + components: + - type: Transform + pos: 82.5,-52.5 + parent: 2 + - uid: 8646 + components: + - type: Transform + pos: 82.5,-53.5 + parent: 2 + - uid: 8647 + components: + - type: Transform + pos: 82.5,-54.5 + parent: 2 + - uid: 8648 + components: + - type: Transform + pos: 82.5,-55.5 + parent: 2 + - uid: 8649 + components: + - type: Transform + pos: 82.5,-56.5 + parent: 2 + - uid: 8650 + components: + - type: Transform + pos: 82.5,-57.5 + parent: 2 + - uid: 8651 + components: + - type: Transform + pos: 82.5,-58.5 + parent: 2 + - uid: 8652 + components: + - type: Transform + pos: 82.5,-59.5 + parent: 2 + - uid: 8653 + components: + - type: Transform + pos: 82.5,-60.5 + parent: 2 + - uid: 8654 + components: + - type: Transform + pos: 81.5,-60.5 + parent: 2 + - uid: 8655 + components: + - type: Transform + pos: 80.5,-60.5 + parent: 2 + - uid: 8656 + components: + - type: Transform + pos: 79.5,-60.5 + parent: 2 + - uid: 8657 + components: + - type: Transform + pos: 78.5,-60.5 + parent: 2 + - uid: 8658 + components: + - type: Transform + pos: 77.5,-60.5 + parent: 2 + - uid: 8659 + components: + - type: Transform + pos: 76.5,-60.5 + parent: 2 + - uid: 8660 + components: + - type: Transform + pos: 75.5,-60.5 + parent: 2 + - uid: 8661 + components: + - type: Transform + pos: 74.5,-60.5 + parent: 2 + - uid: 8662 + components: + - type: Transform + pos: 73.5,-60.5 + parent: 2 + - uid: 8663 + components: + - type: Transform + pos: 72.5,-60.5 + parent: 2 + - uid: 8664 + components: + - type: Transform + pos: 71.5,-60.5 + parent: 2 + - uid: 8665 + components: + - type: Transform + pos: 70.5,-60.5 + parent: 2 + - uid: 8666 + components: + - type: Transform + pos: 69.5,-60.5 + parent: 2 + - uid: 8667 + components: + - type: Transform + pos: 68.5,-60.5 + parent: 2 + - uid: 8668 + components: + - type: Transform + pos: 67.5,-60.5 + parent: 2 + - uid: 8669 + components: + - type: Transform + pos: 66.5,-60.5 + parent: 2 + - uid: 8670 + components: + - type: Transform + pos: 65.5,-60.5 + parent: 2 + - uid: 8671 + components: + - type: Transform + pos: 65.5,-59.5 + parent: 2 + - uid: 8672 + components: + - type: Transform + pos: 65.5,-58.5 + parent: 2 + - uid: 8673 + components: + - type: Transform + pos: 65.5,-57.5 + parent: 2 + - uid: 8674 + components: + - type: Transform + pos: 65.5,-56.5 + parent: 2 + - uid: 8675 + components: + - type: Transform + pos: 66.5,-56.5 + parent: 2 + - uid: 8676 + components: + - type: Transform + pos: 66.5,-55.5 + parent: 2 + - uid: 8677 + components: + - type: Transform + pos: 66.5,-54.5 + parent: 2 + - uid: 8678 + components: + - type: Transform + pos: 66.5,-53.5 + parent: 2 + - uid: 8679 + components: + - type: Transform + pos: 66.5,-52.5 + parent: 2 + - uid: 8680 + components: + - type: Transform + pos: 85.5,-22.5 + parent: 2 + - uid: 8681 + components: + - type: Transform + pos: 85.5,-21.5 + parent: 2 + - uid: 8682 + components: + - type: Transform + pos: 84.5,-21.5 + parent: 2 + - uid: 8683 + components: + - type: Transform + pos: 83.5,-21.5 + parent: 2 + - uid: 8684 + components: + - type: Transform + pos: 82.5,-21.5 + parent: 2 + - uid: 8685 + components: + - type: Transform + pos: 81.5,-21.5 + parent: 2 + - uid: 8686 + components: + - type: Transform + pos: 80.5,-21.5 + parent: 2 + - uid: 8687 + components: + - type: Transform + pos: 79.5,-21.5 + parent: 2 + - uid: 8688 + components: + - type: Transform + pos: 78.5,-21.5 + parent: 2 + - uid: 8689 + components: + - type: Transform + pos: 77.5,-21.5 + parent: 2 + - uid: 8690 + components: + - type: Transform + pos: 76.5,-21.5 + parent: 2 + - uid: 8691 + components: + - type: Transform + pos: 75.5,-21.5 + parent: 2 + - uid: 8692 + components: + - type: Transform + pos: 74.5,-21.5 + parent: 2 + - uid: 8693 + components: + - type: Transform + pos: -8.5,-54.5 + parent: 2 + - uid: 8694 + components: + - type: Transform + pos: -7.5,-54.5 + parent: 2 + - uid: 8695 + components: + - type: Transform + pos: -1.5,42.5 + parent: 2 + - uid: 8696 + components: + - type: Transform + pos: -0.5,42.5 + parent: 2 + - uid: 8697 + components: + - type: Transform + pos: 0.5,42.5 + parent: 2 + - uid: 8698 + components: + - type: Transform + pos: 1.5,42.5 + parent: 2 + - uid: 8699 + components: + - type: Transform + pos: -2.5,42.5 + parent: 2 + - uid: 8700 + components: + - type: Transform + pos: 81.5,-61.5 + parent: 2 + - uid: 8701 + components: + - type: Transform + pos: 81.5,-62.5 + parent: 2 + - uid: 8702 + components: + - type: Transform + pos: 81.5,-63.5 + parent: 2 + - uid: 8703 + components: + - type: Transform + pos: 81.5,-64.5 + parent: 2 + - uid: 8704 + components: + - type: Transform + pos: 82.5,-64.5 + parent: 2 + - uid: 8705 + components: + - type: Transform + pos: 83.5,-64.5 + parent: 2 + - uid: 8706 + components: + - type: Transform + pos: 74.5,-22.5 + parent: 2 + - uid: 8707 + components: + - type: Transform + pos: 74.5,-23.5 + parent: 2 + - uid: 8708 + components: + - type: Transform + pos: 73.5,-23.5 + parent: 2 + - uid: 8709 + components: + - type: Transform + pos: 72.5,-23.5 + parent: 2 + - uid: 8710 + components: + - type: Transform + pos: 71.5,-23.5 + parent: 2 + - uid: 8711 + components: + - type: Transform + pos: 70.5,-23.5 + parent: 2 + - uid: 8712 + components: + - type: Transform + pos: 75.5,-23.5 + parent: 2 + - uid: 8713 + components: + - type: Transform + pos: 68.5,-23.5 + parent: 2 + - uid: 8714 + components: + - type: Transform + pos: 68.5,-26.5 + parent: 2 + - uid: 8715 + components: + - type: Transform + pos: 78.5,-26.5 + parent: 2 + - uid: 8716 + components: + - type: Transform + pos: 78.5,-25.5 + parent: 2 + - uid: 8717 + components: + - type: Transform + pos: 78.5,-24.5 + parent: 2 + - uid: 8718 + components: + - type: Transform + pos: 78.5,-23.5 + parent: 2 + - uid: 8719 + components: + - type: Transform + pos: 79.5,-23.5 + parent: 2 + - uid: 8720 + components: + - type: Transform + pos: 80.5,-23.5 + parent: 2 + - uid: 8721 + components: + - type: Transform + pos: 81.5,-23.5 + parent: 2 + - uid: 8722 + components: + - type: Transform + pos: 82.5,-23.5 + parent: 2 + - uid: 8723 + components: + - type: Transform + pos: 75.5,-42.5 + parent: 2 + - uid: 8724 + components: + - type: Transform + pos: 76.5,-42.5 + parent: 2 + - uid: 8725 + components: + - type: Transform + pos: 77.5,-42.5 + parent: 2 + - uid: 8726 + components: + - type: Transform + pos: 77.5,-41.5 + parent: 2 + - uid: 8727 + components: + - type: Transform + pos: 77.5,-40.5 + parent: 2 + - uid: 8728 + components: + - type: Transform + pos: 77.5,-39.5 + parent: 2 + - uid: 8729 + components: + - type: Transform + pos: 77.5,-38.5 + parent: 2 + - uid: 8730 + components: + - type: Transform + pos: 77.5,-37.5 + parent: 2 + - uid: 8731 + components: + - type: Transform + pos: 67.5,-53.5 + parent: 2 + - uid: 8732 + components: + - type: Transform + pos: 68.5,-53.5 + parent: 2 + - uid: 8733 + components: + - type: Transform + pos: 69.5,-53.5 + parent: 2 + - uid: 8734 + components: + - type: Transform + pos: 70.5,-53.5 + parent: 2 + - uid: 8735 + components: + - type: Transform + pos: 71.5,-54.5 + parent: 2 + - uid: 8736 + components: + - type: Transform + pos: 66.5,-51.5 + parent: 2 + - uid: 8737 + components: + - type: Transform + pos: 66.5,-50.5 + parent: 2 + - uid: 8738 + components: + - type: Transform + pos: 66.5,-49.5 + parent: 2 + - uid: 8739 + components: + - type: Transform + pos: 66.5,-48.5 + parent: 2 + - uid: 8740 + components: + - type: Transform + pos: 66.5,-47.5 + parent: 2 + - uid: 8741 + components: + - type: Transform + pos: 66.5,-46.5 + parent: 2 + - uid: 8742 + components: + - type: Transform + pos: 66.5,-45.5 + parent: 2 + - uid: 8743 + components: + - type: Transform + pos: 66.5,-44.5 + parent: 2 + - uid: 8744 + components: + - type: Transform + pos: 66.5,-43.5 + parent: 2 + - uid: 8745 + components: + - type: Transform + pos: 66.5,-42.5 + parent: 2 + - uid: 8746 + components: + - type: Transform + pos: 66.5,-40.5 + parent: 2 + - uid: 8747 + components: + - type: Transform + pos: 65.5,-40.5 + parent: 2 + - uid: 8748 + components: + - type: Transform + pos: 64.5,-40.5 + parent: 2 + - uid: 8749 + components: + - type: Transform + pos: 63.5,-40.5 + parent: 2 + - uid: 8750 + components: + - type: Transform + pos: 62.5,-40.5 + parent: 2 + - uid: 8751 + components: + - type: Transform + pos: 67.5,-45.5 + parent: 2 + - uid: 8752 + components: + - type: Transform + pos: 68.5,-45.5 + parent: 2 + - uid: 8753 + components: + - type: Transform + pos: 69.5,-45.5 + parent: 2 + - uid: 8754 + components: + - type: Transform + pos: 70.5,-45.5 + parent: 2 + - uid: 8755 + components: + - type: Transform + pos: 71.5,-45.5 + parent: 2 + - uid: 8756 + components: + - type: Transform + pos: 72.5,-45.5 + parent: 2 + - uid: 8757 + components: + - type: Transform + pos: 73.5,-45.5 + parent: 2 + - uid: 8758 + components: + - type: Transform + pos: 74.5,-45.5 + parent: 2 + - uid: 8759 + components: + - type: Transform + pos: 75.5,-45.5 + parent: 2 + - uid: 8760 + components: + - type: Transform + pos: 76.5,-45.5 + parent: 2 + - uid: 8761 + components: + - type: Transform + pos: 77.5,-45.5 + parent: 2 + - uid: 8762 + components: + - type: Transform + pos: 77.5,-44.5 + parent: 2 + - uid: 8763 + components: + - type: Transform + pos: 77.5,-43.5 + parent: 2 + - uid: 8764 + components: + - type: Transform + pos: 66.5,-39.5 + parent: 2 + - uid: 8765 + components: + - type: Transform + pos: 66.5,-38.5 + parent: 2 + - uid: 8766 + components: + - type: Transform + pos: 66.5,-37.5 + parent: 2 + - uid: 8767 + components: + - type: Transform + pos: 66.5,-36.5 + parent: 2 + - uid: 8768 + components: + - type: Transform + pos: 66.5,-35.5 + parent: 2 + - uid: 8769 + components: + - type: Transform + pos: 65.5,-35.5 + parent: 2 + - uid: 8770 + components: + - type: Transform + pos: 64.5,-35.5 + parent: 2 + - uid: 8771 + components: + - type: Transform + pos: 63.5,-35.5 + parent: 2 + - uid: 8772 + components: + - type: Transform + pos: 62.5,-35.5 + parent: 2 + - uid: 8773 + components: + - type: Transform + pos: 61.5,-35.5 + parent: 2 + - uid: 8774 + components: + - type: Transform + pos: 60.5,-35.5 + parent: 2 + - uid: 8775 + components: + - type: Transform + pos: 60.5,-36.5 + parent: 2 + - uid: 8776 + components: + - type: Transform + pos: 59.5,-36.5 + parent: 2 + - uid: 8777 + components: + - type: Transform + pos: 58.5,-36.5 + parent: 2 + - uid: 8778 + components: + - type: Transform + pos: 67.5,-36.5 + parent: 2 + - uid: 8779 + components: + - type: Transform + pos: 68.5,-36.5 + parent: 2 + - uid: 8780 + components: + - type: Transform + pos: 69.5,-36.5 + parent: 2 + - uid: 8781 + components: + - type: Transform + pos: 69.5,-37.5 + parent: 2 + - uid: 8782 + components: + - type: Transform + pos: 69.5,-38.5 + parent: 2 + - uid: 8783 + components: + - type: Transform + pos: 66.5,-34.5 + parent: 2 + - uid: 8784 + components: + - type: Transform + pos: 66.5,-33.5 + parent: 2 + - uid: 8785 + components: + - type: Transform + pos: 66.5,-32.5 + parent: 2 + - uid: 8786 + components: + - type: Transform + pos: 66.5,-31.5 + parent: 2 + - uid: 8787 + components: + - type: Transform + pos: 66.5,-30.5 + parent: 2 + - uid: 8788 + components: + - type: Transform + pos: 66.5,-29.5 + parent: 2 + - uid: 8789 + components: + - type: Transform + pos: 66.5,-28.5 + parent: 2 + - uid: 8790 + components: + - type: Transform + pos: 66.5,-27.5 + parent: 2 + - uid: 8791 + components: + - type: Transform + pos: 65.5,-27.5 + parent: 2 + - uid: 8792 + components: + - type: Transform + pos: 64.5,-27.5 + parent: 2 + - uid: 8793 + components: + - type: Transform + pos: 63.5,-27.5 + parent: 2 + - uid: 8794 + components: + - type: Transform + pos: 62.5,-27.5 + parent: 2 + - uid: 8795 + components: + - type: Transform + pos: 61.5,-27.5 + parent: 2 + - uid: 8796 + components: + - type: Transform + pos: 61.5,-28.5 + parent: 2 + - uid: 8797 + components: + - type: Transform + pos: 61.5,-30.5 + parent: 2 + - uid: 8798 + components: + - type: Transform + pos: 60.5,-30.5 + parent: 2 + - uid: 8799 + components: + - type: Transform + pos: 59.5,-30.5 + parent: 2 + - uid: 8800 + components: + - type: Transform + pos: 58.5,-30.5 + parent: 2 + - uid: 8801 + components: + - type: Transform + pos: 61.5,-29.5 + parent: 2 + - uid: 8802 + components: + - type: Transform + pos: 66.5,-26.5 + parent: 2 + - uid: 8803 + components: + - type: Transform + pos: 66.5,-25.5 + parent: 2 + - uid: 8804 + components: + - type: Transform + pos: 66.5,-24.5 + parent: 2 + - uid: 8805 + components: + - type: Transform + pos: 66.5,-23.5 + parent: 2 + - uid: 8806 + components: + - type: Transform + pos: 67.5,-23.5 + parent: 2 + - uid: 8807 + components: + - type: Transform + pos: 69.5,-23.5 + parent: 2 + - uid: 8808 + components: + - type: Transform + pos: 76.5,-23.5 + parent: 2 + - uid: 8809 + components: + - type: Transform + pos: 77.5,-23.5 + parent: 2 + - uid: 8810 + components: + - type: Transform + pos: 62.5,-26.5 + parent: 2 + - uid: 8811 + components: + - type: Transform + pos: 62.5,-25.5 + parent: 2 + - uid: 8812 + components: + - type: Transform + pos: 62.5,-24.5 + parent: 2 + - uid: 8813 + components: + - type: Transform + pos: 62.5,-23.5 + parent: 2 + - uid: 8814 + components: + - type: Transform + pos: 62.5,-22.5 + parent: 2 + - uid: 8815 + components: + - type: Transform + pos: 62.5,-21.5 + parent: 2 + - uid: 8816 + components: + - type: Transform + pos: 62.5,-20.5 + parent: 2 + - uid: 8817 + components: + - type: Transform + pos: 61.5,-20.5 + parent: 2 + - uid: 8818 + components: + - type: Transform + pos: 60.5,-20.5 + parent: 2 + - uid: 8819 + components: + - type: Transform + pos: 59.5,-20.5 + parent: 2 + - uid: 8820 + components: + - type: Transform + pos: 58.5,-20.5 + parent: 2 + - uid: 8821 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 2 + - uid: 8822 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 + - uid: 8823 + components: + - type: Transform + pos: 60.5,-27.5 + parent: 2 + - uid: 8824 + components: + - type: Transform + pos: 59.5,-27.5 + parent: 2 + - uid: 8825 + components: + - type: Transform + pos: 58.5,-27.5 + parent: 2 + - uid: 8826 + components: + - type: Transform + pos: 57.5,-27.5 + parent: 2 + - uid: 8827 + components: + - type: Transform + pos: 56.5,-27.5 + parent: 2 + - uid: 8828 + components: + - type: Transform + pos: 55.5,-27.5 + parent: 2 + - uid: 8829 + components: + - type: Transform + pos: 55.5,-28.5 + parent: 2 + - uid: 8830 + components: + - type: Transform + pos: 55.5,-29.5 + parent: 2 + - uid: 8831 + components: + - type: Transform + pos: 55.5,-30.5 + parent: 2 + - uid: 8832 + components: + - type: Transform + pos: 55.5,-31.5 + parent: 2 + - uid: 8833 + components: + - type: Transform + pos: 55.5,-32.5 + parent: 2 + - uid: 8834 + components: + - type: Transform + pos: 19.5,31.5 + parent: 2 + - uid: 8835 + components: + - type: Transform + pos: 17.5,31.5 + parent: 2 + - uid: 8836 + components: + - type: Transform + pos: 49.5,-42.5 + parent: 2 + - uid: 8837 + components: + - type: Transform + pos: 49.5,-43.5 + parent: 2 + - uid: 8838 + components: + - type: Transform + pos: 49.5,-44.5 + parent: 2 + - uid: 8839 + components: + - type: Transform + pos: 49.5,-45.5 + parent: 2 + - uid: 8840 + components: + - type: Transform + pos: 49.5,-46.5 + parent: 2 + - uid: 8841 + components: + - type: Transform + pos: 49.5,-47.5 + parent: 2 + - uid: 8842 + components: + - type: Transform + pos: 49.5,-48.5 + parent: 2 + - uid: 8843 + components: + - type: Transform + pos: 49.5,-49.5 + parent: 2 + - uid: 8844 + components: + - type: Transform + pos: 49.5,-50.5 + parent: 2 + - uid: 8845 + components: + - type: Transform + pos: 49.5,-51.5 + parent: 2 + - uid: 8846 + components: + - type: Transform + pos: 49.5,-52.5 + parent: 2 + - uid: 8847 + components: + - type: Transform + pos: 49.5,-53.5 + parent: 2 + - uid: 8848 + components: + - type: Transform + pos: 49.5,-54.5 + parent: 2 + - uid: 8849 + components: + - type: Transform + pos: 49.5,-55.5 + parent: 2 + - uid: 8850 + components: + - type: Transform + pos: 49.5,-56.5 + parent: 2 + - uid: 8851 + components: + - type: Transform + pos: 49.5,-57.5 + parent: 2 + - uid: 8852 + components: + - type: Transform + pos: 49.5,-58.5 + parent: 2 + - uid: 8853 + components: + - type: Transform + pos: 49.5,-59.5 + parent: 2 + - uid: 8854 + components: + - type: Transform + pos: 49.5,-60.5 + parent: 2 + - uid: 8855 + components: + - type: Transform + pos: 49.5,-61.5 + parent: 2 + - uid: 8856 + components: + - type: Transform + pos: 49.5,-62.5 + parent: 2 + - uid: 8857 + components: + - type: Transform + pos: 48.5,-62.5 + parent: 2 + - uid: 8858 + components: + - type: Transform + pos: 47.5,-62.5 + parent: 2 + - uid: 8859 + components: + - type: Transform + pos: 47.5,-63.5 + parent: 2 + - uid: 8860 + components: + - type: Transform + pos: 47.5,-64.5 + parent: 2 + - uid: 8861 + components: + - type: Transform + pos: 47.5,-65.5 + parent: 2 + - uid: 8862 + components: + - type: Transform + pos: 46.5,-65.5 + parent: 2 + - uid: 8863 + components: + - type: Transform + pos: 45.5,-65.5 + parent: 2 + - uid: 8864 + components: + - type: Transform + pos: 44.5,-65.5 + parent: 2 + - uid: 8865 + components: + - type: Transform + pos: 43.5,-65.5 + parent: 2 + - uid: 8866 + components: + - type: Transform + pos: 42.5,-65.5 + parent: 2 + - uid: 8867 + components: + - type: Transform + pos: 41.5,-65.5 + parent: 2 + - uid: 8868 + components: + - type: Transform + pos: 40.5,-65.5 + parent: 2 + - uid: 8869 + components: + - type: Transform + pos: 40.5,-64.5 + parent: 2 + - uid: 8870 + components: + - type: Transform + pos: 40.5,-63.5 + parent: 2 + - uid: 8871 + components: + - type: Transform + pos: 40.5,-62.5 + parent: 2 + - uid: 8872 + components: + - type: Transform + pos: 39.5,-62.5 + parent: 2 + - uid: 8873 + components: + - type: Transform + pos: 38.5,-62.5 + parent: 2 + - uid: 8874 + components: + - type: Transform + pos: 37.5,-62.5 + parent: 2 + - uid: 8875 + components: + - type: Transform + pos: 36.5,-62.5 + parent: 2 + - uid: 8876 + components: + - type: Transform + pos: 36.5,-61.5 + parent: 2 + - uid: 8877 + components: + - type: Transform + pos: 36.5,-60.5 + parent: 2 + - uid: 8878 + components: + - type: Transform + pos: 36.5,-59.5 + parent: 2 + - uid: 8879 + components: + - type: Transform + pos: 36.5,-58.5 + parent: 2 + - uid: 8880 + components: + - type: Transform + pos: 36.5,-57.5 + parent: 2 + - uid: 8881 + components: + - type: Transform + pos: 35.5,-57.5 + parent: 2 + - uid: 8882 + components: + - type: Transform + pos: 34.5,-57.5 + parent: 2 + - uid: 8883 + components: + - type: Transform + pos: 33.5,-57.5 + parent: 2 + - uid: 8884 + components: + - type: Transform + pos: 32.5,-57.5 + parent: 2 + - uid: 8885 + components: + - type: Transform + pos: 32.5,-56.5 + parent: 2 + - uid: 8886 + components: + - type: Transform + pos: 32.5,-55.5 + parent: 2 + - uid: 8887 + components: + - type: Transform + pos: 32.5,-54.5 + parent: 2 + - uid: 8888 + components: + - type: Transform + pos: 32.5,-53.5 + parent: 2 + - uid: 8889 + components: + - type: Transform + pos: 32.5,-52.5 + parent: 2 + - uid: 8890 + components: + - type: Transform + pos: 32.5,-51.5 + parent: 2 + - uid: 8891 + components: + - type: Transform + pos: 32.5,-50.5 + parent: 2 + - uid: 8892 + components: + - type: Transform + pos: 32.5,-49.5 + parent: 2 + - uid: 8893 + components: + - type: Transform + pos: 32.5,-48.5 + parent: 2 + - uid: 8894 + components: + - type: Transform + pos: 32.5,-47.5 + parent: 2 + - uid: 8895 + components: + - type: Transform + pos: 32.5,-46.5 + parent: 2 + - uid: 8896 + components: + - type: Transform + pos: 32.5,-45.5 + parent: 2 + - uid: 8897 + components: + - type: Transform + pos: 32.5,-44.5 + parent: 2 + - uid: 8898 + components: + - type: Transform + pos: 32.5,-43.5 + parent: 2 + - uid: 8899 + components: + - type: Transform + pos: 32.5,-42.5 + parent: 2 + - uid: 8900 + components: + - type: Transform + pos: 32.5,-41.5 + parent: 2 + - uid: 8901 + components: + - type: Transform + pos: 32.5,-40.5 + parent: 2 + - uid: 8902 + components: + - type: Transform + pos: 32.5,-39.5 + parent: 2 + - uid: 8903 + components: + - type: Transform + pos: 32.5,-38.5 + parent: 2 + - uid: 8904 + components: + - type: Transform + pos: 31.5,-38.5 + parent: 2 + - uid: 8905 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 2 + - uid: 8906 + components: + - type: Transform + pos: 29.5,-38.5 + parent: 2 + - uid: 8907 + components: + - type: Transform + pos: 28.5,-38.5 + parent: 2 + - uid: 8908 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 2 + - uid: 8909 + components: + - type: Transform + pos: 26.5,-38.5 + parent: 2 + - uid: 8910 + components: + - type: Transform + pos: 25.5,-38.5 + parent: 2 + - uid: 8911 + components: + - type: Transform + pos: 24.5,-38.5 + parent: 2 + - uid: 8912 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 2 + - uid: 8913 + components: + - type: Transform + pos: 22.5,-38.5 + parent: 2 + - uid: 8914 + components: + - type: Transform + pos: 21.5,-38.5 + parent: 2 + - uid: 8915 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 2 + - uid: 8916 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 2 + - uid: 8917 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 2 + - uid: 8918 + components: + - type: Transform + pos: 17.5,-38.5 + parent: 2 + - uid: 8919 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 2 + - uid: 8920 + components: + - type: Transform + pos: 15.5,-38.5 + parent: 2 + - uid: 8921 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 2 + - uid: 8922 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 2 + - uid: 8923 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 2 + - uid: 8924 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 2 + - uid: 8925 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 2 + - uid: 8926 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 2 + - uid: 8927 + components: + - type: Transform + pos: 8.5,-38.5 + parent: 2 + - uid: 8928 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 + - uid: 8929 + components: + - type: Transform + pos: 7.5,-37.5 + parent: 2 + - uid: 8930 + components: + - type: Transform + pos: 7.5,-36.5 + parent: 2 + - uid: 8931 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 2 + - uid: 8932 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 2 + - uid: 8933 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 + - uid: 8934 + components: + - type: Transform + pos: 4.5,-55.5 + parent: 2 + - uid: 8935 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - uid: 8936 + components: + - type: Transform + pos: 66.5,-41.5 + parent: 2 + - uid: 8937 + components: + - type: Transform + pos: -10.5,26.5 + parent: 2 + - uid: 8938 + components: + - type: Transform + pos: -6.5,26.5 + parent: 2 + - uid: 8939 + components: + - type: Transform + pos: -2.5,26.5 + parent: 2 + - uid: 8940 + components: + - type: Transform + pos: 1.5,26.5 + parent: 2 + - uid: 8941 + components: + - type: Transform + pos: -9.5,-70.5 + parent: 2 + - uid: 8942 + components: + - type: Transform + pos: -9.5,-71.5 + parent: 2 + - uid: 8943 + components: + - type: Transform + pos: -9.5,-72.5 + parent: 2 + - uid: 8944 + components: + - type: Transform + pos: -9.5,-73.5 + parent: 2 + - uid: 8945 + components: + - type: Transform + pos: -9.5,-74.5 + parent: 2 + - uid: 8946 + components: + - type: Transform + pos: -9.5,-75.5 + parent: 2 + - uid: 8947 + components: + - type: Transform + pos: -9.5,-76.5 + parent: 2 + - uid: 8948 + components: + - type: Transform + pos: -10.5,-76.5 + parent: 2 + - uid: 8949 + components: + - type: Transform + pos: -11.5,-76.5 + parent: 2 + - uid: 8950 + components: + - type: Transform + pos: -12.5,-76.5 + parent: 2 + - uid: 8951 + components: + - type: Transform + pos: -13.5,-76.5 + parent: 2 + - uid: 8952 + components: + - type: Transform + pos: -20.5,51.5 + parent: 2 + - uid: 8953 + components: + - type: Transform + pos: -21.5,51.5 + parent: 2 + - uid: 8954 + components: + - type: Transform + pos: -22.5,51.5 + parent: 2 + - uid: 8955 + components: + - type: Transform + pos: -23.5,51.5 + parent: 2 + - uid: 8956 + components: + - type: Transform + pos: -23.5,50.5 + parent: 2 + - uid: 8957 + components: + - type: Transform + pos: -23.5,49.5 + parent: 2 + - uid: 8958 + components: + - type: Transform + pos: -23.5,48.5 + parent: 2 + - uid: 8959 + components: + - type: Transform + pos: -23.5,47.5 + parent: 2 + - uid: 8960 + components: + - type: Transform + pos: -23.5,46.5 + parent: 2 + - uid: 8961 + components: + - type: Transform + pos: -23.5,45.5 + parent: 2 + - uid: 8962 + components: + - type: Transform + pos: -23.5,44.5 + parent: 2 + - uid: 8963 + components: + - type: Transform + pos: -22.5,44.5 + parent: 2 + - uid: 8964 + components: + - type: Transform + pos: -21.5,44.5 + parent: 2 + - uid: 8965 + components: + - type: Transform + pos: -20.5,44.5 + parent: 2 + - uid: 8966 + components: + - type: Transform + pos: -19.5,44.5 + parent: 2 + - uid: 8967 + components: + - type: Transform + pos: -19.5,45.5 + parent: 2 + - uid: 8968 + components: + - type: Transform + pos: -19.5,46.5 + parent: 2 + - uid: 8969 + components: + - type: Transform + pos: -18.5,44.5 + parent: 2 + - uid: 8970 + components: + - type: Transform + pos: -17.5,44.5 + parent: 2 + - uid: 8971 + components: + - type: Transform + pos: -16.5,44.5 + parent: 2 + - uid: 8972 + components: + - type: Transform + pos: -15.5,44.5 + parent: 2 + - uid: 8973 + components: + - type: Transform + pos: -14.5,44.5 + parent: 2 + - uid: 8974 + components: + - type: Transform + pos: -13.5,44.5 + parent: 2 + - uid: 8975 + components: + - type: Transform + pos: -12.5,44.5 + parent: 2 + - uid: 8976 + components: + - type: Transform + pos: -11.5,44.5 + parent: 2 + - uid: 8977 + components: + - type: Transform + pos: -10.5,44.5 + parent: 2 + - uid: 8978 + components: + - type: Transform + pos: -10.5,45.5 + parent: 2 + - uid: 8979 + components: + - type: Transform + pos: -10.5,46.5 + parent: 2 + - uid: 8980 + components: + - type: Transform + pos: -9.5,45.5 + parent: 2 + - uid: 8981 + components: + - type: Transform + pos: -8.5,45.5 + parent: 2 + - uid: 8982 + components: + - type: Transform + pos: -7.5,45.5 + parent: 2 + - uid: 8983 + components: + - type: Transform + pos: -7.5,46.5 + parent: 2 + - uid: 8984 + components: + - type: Transform + pos: -7.5,47.5 + parent: 2 + - uid: 8985 + components: + - type: Transform + pos: -7.5,48.5 + parent: 2 + - uid: 8986 + components: + - type: Transform + pos: -7.5,49.5 + parent: 2 + - uid: 8987 + components: + - type: Transform + pos: -7.5,50.5 + parent: 2 + - uid: 8988 + components: + - type: Transform + pos: -7.5,51.5 + parent: 2 + - uid: 8989 + components: + - type: Transform + pos: -7.5,52.5 + parent: 2 + - uid: 8990 + components: + - type: Transform + pos: -7.5,53.5 + parent: 2 + - uid: 8991 + components: + - type: Transform + pos: -6.5,50.5 + parent: 2 + - uid: 8992 + components: + - type: Transform + pos: -5.5,50.5 + parent: 2 + - uid: 8993 + components: + - type: Transform + pos: -4.5,50.5 + parent: 2 + - uid: 8994 + components: + - type: Transform + pos: -3.5,50.5 + parent: 2 + - uid: 8995 + components: + - type: Transform + pos: -2.5,50.5 + parent: 2 + - uid: 8996 + components: + - type: Transform + pos: -1.5,50.5 + parent: 2 + - uid: 8997 + components: + - type: Transform + pos: -0.5,50.5 + parent: 2 + - uid: 8998 + components: + - type: Transform + pos: 0.5,50.5 + parent: 2 + - uid: 8999 + components: + - type: Transform + pos: 0.5,52.5 + parent: 2 + - uid: 9000 + components: + - type: Transform + pos: 0.5,51.5 + parent: 2 + - uid: 9001 + components: + - type: Transform + pos: 0.5,49.5 + parent: 2 + - uid: 9002 + components: + - type: Transform + pos: 0.5,48.5 + parent: 2 + - uid: 9003 + components: + - type: Transform + pos: 0.5,47.5 + parent: 2 + - uid: 9004 + components: + - type: Transform + pos: 0.5,46.5 + parent: 2 + - uid: 9005 + components: + - type: Transform + pos: 1.5,46.5 + parent: 2 + - uid: 9006 + components: + - type: Transform + pos: 2.5,46.5 + parent: 2 + - uid: 9007 + components: + - type: Transform + pos: 3.5,46.5 + parent: 2 + - uid: 9008 + components: + - type: Transform + pos: -0.5,46.5 + parent: 2 + - uid: 9009 + components: + - type: Transform + pos: -1.5,46.5 + parent: 2 + - uid: 9010 + components: + - type: Transform + pos: -7.5,44.5 + parent: 2 + - uid: 9011 + components: + - type: Transform + pos: -6.5,44.5 + parent: 2 + - uid: 9012 + components: + - type: Transform + pos: -5.5,44.5 + parent: 2 + - uid: 9013 + components: + - type: Transform + pos: -4.5,44.5 + parent: 2 + - uid: 9014 + components: + - type: Transform + pos: -24.5,44.5 + parent: 2 + - uid: 9015 + components: + - type: Transform + pos: -25.5,44.5 + parent: 2 + - uid: 9016 + components: + - type: Transform + pos: -25.5,45.5 + parent: 2 + - uid: 9017 + components: + - type: Transform + pos: -25.5,43.5 + parent: 2 + - uid: 9018 + components: + - type: Transform + pos: -21.5,43.5 + parent: 2 + - uid: 9019 + components: + - type: Transform + pos: -21.5,42.5 + parent: 2 + - uid: 9020 + components: + - type: Transform + pos: -21.5,41.5 + parent: 2 + - uid: 9021 + components: + - type: Transform + pos: -21.5,40.5 + parent: 2 + - uid: 9022 + components: + - type: Transform + pos: -21.5,39.5 + parent: 2 + - uid: 9023 + components: + - type: Transform + pos: -18.5,39.5 + parent: 2 + - uid: 9024 + components: + - type: Transform + pos: -18.5,40.5 + parent: 2 + - uid: 9025 + components: + - type: Transform + pos: -18.5,41.5 + parent: 2 + - uid: 9026 + components: + - type: Transform + pos: -18.5,42.5 + parent: 2 + - uid: 9027 + components: + - type: Transform + pos: -18.5,43.5 + parent: 2 + - uid: 9028 + components: + - type: Transform + pos: -8.5,48.5 + parent: 2 + - uid: 9029 + components: + - type: Transform + pos: -9.5,48.5 + parent: 2 + - uid: 9030 + components: + - type: Transform + pos: -10.5,48.5 + parent: 2 + - uid: 9031 + components: + - type: Transform + pos: -11.5,48.5 + parent: 2 + - uid: 9032 + components: + - type: Transform + pos: -11.5,49.5 + parent: 2 + - uid: 9033 + components: + - type: Transform + pos: -11.5,50.5 + parent: 2 + - uid: 9034 + components: + - type: Transform + pos: -11.5,51.5 + parent: 2 + - uid: 9035 + components: + - type: Transform + pos: -11.5,52.5 + parent: 2 + - uid: 9036 + components: + - type: Transform + pos: -11.5,53.5 + parent: 2 + - uid: 9037 + components: + - type: Transform + pos: -11.5,54.5 + parent: 2 + - uid: 9038 + components: + - type: Transform + pos: -12.5,54.5 + parent: 2 + - uid: 9039 + components: + - type: Transform + pos: -12.5,53.5 + parent: 2 + - uid: 9040 + components: + - type: Transform + pos: -13.5,53.5 + parent: 2 + - uid: 9041 + components: + - type: Transform + pos: -14.5,53.5 + parent: 2 + - uid: 9042 + components: + - type: Transform + pos: -14.5,54.5 + parent: 2 + - uid: 9043 + components: + - type: Transform + pos: -15.5,54.5 + parent: 2 + - uid: 9044 + components: + - type: Transform + pos: -20.5,50.5 + parent: 2 + - uid: 9045 + components: + - type: Transform + pos: -19.5,50.5 + parent: 2 + - uid: 9046 + components: + - type: Transform + pos: -18.5,50.5 + parent: 2 + - uid: 9047 + components: + - type: Transform + pos: -17.5,50.5 + parent: 2 + - uid: 9048 + components: + - type: Transform + pos: -16.5,50.5 + parent: 2 + - uid: 9049 + components: + - type: Transform + pos: -15.5,50.5 + parent: 2 + - uid: 9050 + components: + - type: Transform + pos: -15.5,49.5 + parent: 2 + - uid: 9051 + components: + - type: Transform + pos: -14.5,49.5 + parent: 2 + - uid: 9052 + components: + - type: Transform + pos: -13.5,49.5 + parent: 2 + - uid: 9053 + components: + - type: Transform + pos: -12.5,49.5 + parent: 2 + - uid: 9054 + components: + - type: Transform + pos: -4.5,35.5 + parent: 2 + - uid: 9055 + components: + - type: Transform + pos: -5.5,35.5 + parent: 2 + - uid: 9056 + components: + - type: Transform + pos: -6.5,35.5 + parent: 2 + - uid: 9057 + components: + - type: Transform + pos: -5.5,36.5 + parent: 2 + - uid: 9058 + components: + - type: Transform + pos: -5.5,37.5 + parent: 2 + - uid: 9059 + components: + - type: Transform + pos: -6.5,37.5 + parent: 2 + - uid: 9060 + components: + - type: Transform + pos: -6.5,38.5 + parent: 2 + - uid: 9061 + components: + - type: Transform + pos: -4.5,37.5 + parent: 2 + - uid: 9062 + components: + - type: Transform + pos: -4.5,38.5 + parent: 2 + - uid: 9063 + components: + - type: Transform + pos: -7.5,35.5 + parent: 2 + - uid: 9064 + components: + - type: Transform + pos: -8.5,35.5 + parent: 2 + - uid: 9065 + components: + - type: Transform + pos: -9.5,35.5 + parent: 2 + - uid: 9066 + components: + - type: Transform + pos: -10.5,35.5 + parent: 2 + - uid: 9067 + components: + - type: Transform + pos: -11.5,35.5 + parent: 2 + - uid: 9068 + components: + - type: Transform + pos: -12.5,35.5 + parent: 2 + - uid: 9069 + components: + - type: Transform + pos: -13.5,35.5 + parent: 2 + - uid: 9070 + components: + - type: Transform + pos: -14.5,35.5 + parent: 2 + - uid: 9071 + components: + - type: Transform + pos: -15.5,35.5 + parent: 2 + - uid: 9072 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 2 + - uid: 9073 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 2 + - uid: 9074 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 9075 + components: + - type: Transform + pos: -9.5,36.5 + parent: 2 + - uid: 9076 + components: + - type: Transform + pos: -9.5,37.5 + parent: 2 + - uid: 9077 + components: + - type: Transform + pos: -14.5,34.5 + parent: 2 + - uid: 9078 + components: + - type: Transform + pos: 35.5,-92.5 + parent: 2 + - uid: 9079 + components: + - type: Transform + pos: 34.5,-92.5 + parent: 2 + - uid: 9080 + components: + - type: Transform + pos: 33.5,-92.5 + parent: 2 + - uid: 9081 + components: + - type: Transform + pos: 33.5,-91.5 + parent: 2 + - uid: 9082 + components: + - type: Transform + pos: 33.5,-90.5 + parent: 2 + - uid: 9083 + components: + - type: Transform + pos: 33.5,-89.5 + parent: 2 + - uid: 9084 + components: + - type: Transform + pos: 34.5,-89.5 + parent: 2 + - uid: 9085 + components: + - type: Transform + pos: 32.5,-91.5 + parent: 2 + - uid: 9086 + components: + - type: Transform + pos: 31.5,-91.5 + parent: 2 + - uid: 9087 + components: + - type: Transform + pos: 30.5,-91.5 + parent: 2 + - uid: 9088 + components: + - type: Transform + pos: 29.5,-91.5 + parent: 2 + - uid: 9089 + components: + - type: Transform + pos: 28.5,-91.5 + parent: 2 + - uid: 9090 + components: + - type: Transform + pos: 28.5,-90.5 + parent: 2 + - uid: 9091 + components: + - type: Transform + pos: 28.5,-89.5 + parent: 2 + - uid: 9092 + components: + - type: Transform + pos: 28.5,-88.5 + parent: 2 + - uid: 9093 + components: + - type: Transform + pos: 28.5,-87.5 + parent: 2 + - uid: 9094 + components: + - type: Transform + pos: 28.5,-86.5 + parent: 2 + - uid: 9095 + components: + - type: Transform + pos: 29.5,-86.5 + parent: 2 + - uid: 9096 + components: + - type: Transform + pos: 30.5,-86.5 + parent: 2 + - uid: 9097 + components: + - type: Transform + pos: 31.5,-86.5 + parent: 2 + - uid: 9098 + components: + - type: Transform + pos: 27.5,-91.5 + parent: 2 + - uid: 9099 + components: + - type: Transform + pos: 26.5,-91.5 + parent: 2 + - uid: 9100 + components: + - type: Transform + pos: 25.5,-91.5 + parent: 2 + - uid: 9101 + components: + - type: Transform + pos: 24.5,-91.5 + parent: 2 + - uid: 9102 + components: + - type: Transform + pos: 23.5,-91.5 + parent: 2 + - uid: 9103 + components: + - type: Transform + pos: 22.5,-91.5 + parent: 2 + - uid: 9104 + components: + - type: Transform + pos: 22.5,-92.5 + parent: 2 + - uid: 9105 + components: + - type: Transform + pos: 21.5,-92.5 + parent: 2 + - uid: 9106 + components: + - type: Transform + pos: 28.5,-92.5 + parent: 2 + - uid: 9107 + components: + - type: Transform + pos: 28.5,-93.5 + parent: 2 + - uid: 9108 + components: + - type: Transform + pos: 28.5,-94.5 + parent: 2 + - uid: 9109 + components: + - type: Transform + pos: 28.5,-95.5 + parent: 2 + - uid: 9110 + components: + - type: Transform + pos: 28.5,-96.5 + parent: 2 + - uid: 9111 + components: + - type: Transform + pos: 28.5,-97.5 + parent: 2 + - uid: 9112 + components: + - type: Transform + pos: 28.5,-98.5 + parent: 2 + - uid: 9113 + components: + - type: Transform + pos: 28.5,-99.5 + parent: 2 + - uid: 9114 + components: + - type: Transform + pos: 28.5,-100.5 + parent: 2 + - uid: 9115 + components: + - type: Transform + pos: 29.5,-100.5 + parent: 2 + - uid: 9116 + components: + - type: Transform + pos: 30.5,-100.5 + parent: 2 + - uid: 9117 + components: + - type: Transform + pos: 31.5,-100.5 + parent: 2 + - uid: 9118 + components: + - type: Transform + pos: 32.5,-100.5 + parent: 2 + - uid: 9119 + components: + - type: Transform + pos: 32.5,-99.5 + parent: 2 + - uid: 9120 + components: + - type: Transform + pos: 32.5,-98.5 + parent: 2 + - uid: 9121 + components: + - type: Transform + pos: 32.5,-97.5 + parent: 2 + - uid: 9122 + components: + - type: Transform + pos: 32.5,-96.5 + parent: 2 + - uid: 9123 + components: + - type: Transform + pos: 32.5,-95.5 + parent: 2 + - uid: 9124 + components: + - type: Transform + pos: 32.5,-94.5 + parent: 2 + - uid: 9125 + components: + - type: Transform + pos: 32.5,-93.5 + parent: 2 + - uid: 9126 + components: + - type: Transform + pos: 32.5,-92.5 + parent: 2 + - uid: 9127 + components: + - type: Transform + pos: 28.5,-101.5 + parent: 2 + - uid: 9128 + components: + - type: Transform + pos: 28.5,-102.5 + parent: 2 + - uid: 9129 + components: + - type: Transform + pos: 28.5,-103.5 + parent: 2 + - uid: 9130 + components: + - type: Transform + pos: 28.5,-104.5 + parent: 2 + - uid: 9131 + components: + - type: Transform + pos: 28.5,-105.5 + parent: 2 + - uid: 9132 + components: + - type: Transform + pos: 28.5,-106.5 + parent: 2 + - uid: 9133 + components: + - type: Transform + pos: 28.5,-107.5 + parent: 2 + - uid: 9134 + components: + - type: Transform + pos: 28.5,-108.5 + parent: 2 + - uid: 9135 + components: + - type: Transform + pos: 28.5,-109.5 + parent: 2 + - uid: 9136 + components: + - type: Transform + pos: 28.5,-110.5 + parent: 2 + - uid: 9137 + components: + - type: Transform + pos: 28.5,-111.5 + parent: 2 + - uid: 9138 + components: + - type: Transform + pos: 29.5,-111.5 + parent: 2 + - uid: 9139 + components: + - type: Transform + pos: -6.5,-51.5 + parent: 2 + - uid: 9140 + components: + - type: Transform + pos: -7.5,-51.5 + parent: 2 + - uid: 9141 + components: + - type: Transform + pos: -7.5,-49.5 + parent: 2 + - uid: 9142 + components: + - type: Transform + pos: -6.5,-53.5 + parent: 2 + - uid: 9143 + components: + - type: Transform + pos: -6.5,-54.5 + parent: 2 + - uid: 9144 + components: + - type: Transform + pos: 6.5,31.5 + parent: 2 + - uid: 9145 + components: + - type: Transform + pos: 5.5,31.5 + parent: 2 + - uid: 9146 + components: + - type: Transform + pos: 3.5,31.5 + parent: 2 + - uid: 9147 + components: + - type: Transform + pos: 4.5,31.5 + parent: 2 + - uid: 9148 + components: + - type: Transform + pos: 0.5,31.5 + parent: 2 + - uid: 9149 + components: + - type: Transform + pos: 1.5,31.5 + parent: 2 + - uid: 9150 + components: + - type: Transform + pos: -1.5,20.5 + parent: 2 + - uid: 9151 + components: + - type: Transform + pos: -0.5,20.5 + parent: 2 + - uid: 9152 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 + - uid: 9153 + components: + - type: Transform + pos: -17.5,35.5 + parent: 2 + - uid: 9154 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - uid: 9155 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 9156 + components: + - type: Transform + pos: 8.5,20.5 + parent: 2 + - uid: 9157 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 + - uid: 9158 + components: + - type: Transform + pos: 9.5,20.5 + parent: 2 + - uid: 9159 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 9160 + components: + - type: Transform + pos: 15.5,27.5 + parent: 2 + - uid: 9161 + components: + - type: Transform + pos: 58.5,-39.5 + parent: 2 + - uid: 9162 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - uid: 9163 + components: + - type: Transform + pos: -16.5,-24.5 + parent: 2 + - uid: 9164 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 + - uid: 9165 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 + - uid: 9166 + components: + - type: Transform + pos: -13.5,30.5 + parent: 2 + - uid: 9167 + components: + - type: Transform + pos: 11.5,32.5 + parent: 2 + - uid: 9168 + components: + - type: Transform + pos: 10.5,32.5 + parent: 2 + - uid: 9169 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 + - uid: 9170 + components: + - type: Transform + pos: -58.5,12.5 + parent: 2 + - uid: 9171 + components: + - type: Transform + pos: 12.5,20.5 + parent: 2 + - uid: 9172 + components: + - type: Transform + pos: 6.5,20.5 + parent: 2 + - uid: 9173 + components: + - type: Transform + pos: 38.5,-22.5 + parent: 2 + - uid: 9174 + components: + - type: Transform + pos: 38.5,-20.5 + parent: 2 + - uid: 9175 + components: + - type: Transform + pos: 38.5,-21.5 + parent: 2 + - uid: 9176 + components: + - type: Transform + pos: 12.5,32.5 + parent: 2 + - uid: 9177 + components: + - type: Transform + pos: 41.5,-48.5 + parent: 2 + - uid: 9178 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - uid: 9179 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - uid: 9180 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 + - uid: 9181 + components: + - type: Transform + pos: -10.5,-80.5 + parent: 2 + - uid: 9182 + components: + - type: Transform + pos: -9.5,-80.5 + parent: 2 + - uid: 9183 + components: + - type: Transform + pos: 49.5,-41.5 + parent: 2 + - uid: 9184 + components: + - type: Transform + pos: -16.5,-27.5 + parent: 2 + - uid: 9185 + components: + - type: Transform + pos: -16.5,-29.5 + parent: 2 + - uid: 9186 + components: + - type: Transform + pos: -16.5,-28.5 + parent: 2 + - uid: 9187 + components: + - type: Transform + pos: -18.5,-24.5 + parent: 2 + - uid: 9188 + components: + - type: Transform + pos: 7.5,31.5 + parent: 2 + - uid: 9189 + components: + - type: Transform + pos: -14.5,30.5 + parent: 2 + - uid: 9190 + components: + - type: Transform + pos: -12.5,30.5 + parent: 2 + - uid: 9191 + components: + - type: Transform + pos: -8.5,-80.5 + parent: 2 + - uid: 9192 + components: + - type: Transform + pos: -20.5,-24.5 + parent: 2 + - uid: 9193 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 + - uid: 9194 + components: + - type: Transform + pos: 3.5,40.5 + parent: 2 + - uid: 9195 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 9196 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 9197 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 9198 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 + - uid: 9199 + components: + - type: Transform + pos: -15.5,-79.5 + parent: 2 + - uid: 9200 + components: + - type: Transform + pos: -14.5,31.5 + parent: 2 + - uid: 9201 + components: + - type: Transform + pos: 17.5,27.5 + parent: 2 + - uid: 9202 + components: + - type: Transform + pos: -19.5,-24.5 + parent: 2 + - uid: 9203 + components: + - type: Transform + pos: -21.5,-24.5 + parent: 2 + - uid: 9204 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 9205 + components: + - type: Transform + pos: 9.5,32.5 + parent: 2 + - uid: 9206 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - uid: 9207 + components: + - type: Transform + pos: -6.5,14.5 + parent: 2 + - uid: 9208 + components: + - type: Transform + pos: -18.5,35.5 + parent: 2 + - uid: 9209 + components: + - type: Transform + pos: -16.5,35.5 + parent: 2 + - uid: 9210 + components: + - type: Transform + pos: -16.5,-25.5 + parent: 2 + - uid: 9211 + components: + - type: Transform + pos: 38.5,-17.5 + parent: 2 + - uid: 9212 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - uid: 9213 + components: + - type: Transform + pos: -19.5,3.5 + parent: 2 + - uid: 9214 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 2 + - uid: 9215 + components: + - type: Transform + pos: 41.5,-18.5 + parent: 2 + - uid: 9216 + components: + - type: Transform + pos: 41.5,-17.5 + parent: 2 + - uid: 9217 + components: + - type: Transform + pos: 39.5,-17.5 + parent: 2 + - uid: 9218 + components: + - type: Transform + pos: -13.5,-79.5 + parent: 2 + - uid: 9219 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 9220 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 9221 + components: + - type: Transform + pos: -14.5,-79.5 + parent: 2 + - uid: 9222 + components: + - type: Transform + pos: -11.5,-79.5 + parent: 2 + - uid: 9223 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 2 + - uid: 9224 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 2 + - uid: 9225 + components: + - type: Transform + pos: -23.5,-24.5 + parent: 2 + - uid: 9226 + components: + - type: Transform + pos: 58.5,-40.5 + parent: 2 + - uid: 9227 + components: + - type: Transform + pos: 59.5,-40.5 + parent: 2 + - uid: 9228 + components: + - type: Transform + pos: -17.5,-24.5 + parent: 2 + - uid: 9229 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 2 + - uid: 9230 + components: + - type: Transform + pos: 42.5,-29.5 + parent: 2 + - uid: 9231 + components: + - type: Transform + pos: 38.5,-19.5 + parent: 2 + - uid: 9232 + components: + - type: Transform + pos: -15.5,-76.5 + parent: 2 + - uid: 9233 + components: + - type: Transform + pos: -14.5,-76.5 + parent: 2 + - uid: 9234 + components: + - type: Transform + pos: -15.5,-77.5 + parent: 2 + - uid: 9235 + components: + - type: Transform + pos: 0.5,34.5 + parent: 2 + - uid: 9236 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 2 + - uid: 9237 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 2 + - uid: 9238 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 2 + - uid: 9239 + components: + - type: Transform + pos: -17.5,-30.5 + parent: 2 + - uid: 9240 + components: + - type: Transform + pos: -18.5,-30.5 + parent: 2 + - uid: 9241 + components: + - type: Transform + pos: -19.5,-30.5 + parent: 2 + - uid: 9242 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 2 + - uid: 9243 + components: + - type: Transform + pos: -21.5,-30.5 + parent: 2 + - uid: 9244 + components: + - type: Transform + pos: -20.5,-32.5 + parent: 2 + - uid: 9245 + components: + - type: Transform + pos: -22.5,-30.5 + parent: 2 + - uid: 9246 + components: + - type: Transform + pos: -23.5,-30.5 + parent: 2 + - uid: 9247 + components: + - type: Transform + pos: 48.5,-40.5 + parent: 2 + - uid: 9248 + components: + - type: Transform + pos: 14.5,41.5 + parent: 2 + - uid: 9249 + components: + - type: Transform + pos: -4.5,16.5 + parent: 2 + - uid: 9250 + components: + - type: Transform + pos: -21.5,2.5 + parent: 2 + - uid: 9251 + components: + - type: Transform + pos: 67.5,-26.5 + parent: 2 + - uid: 9252 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 9253 + components: + - type: Transform + pos: -20.5,3.5 + parent: 2 + - uid: 9254 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 2 + - uid: 9255 + components: + - type: Transform + pos: -20.5,36.5 + parent: 2 + - uid: 9256 + components: + - type: Transform + pos: -19.5,35.5 + parent: 2 + - uid: 9257 + components: + - type: Transform + pos: -20.5,34.5 + parent: 2 + - uid: 9258 + components: + - type: Transform + pos: -19.5,21.5 + parent: 2 + - uid: 9259 + components: + - type: Transform + pos: 41.5,-33.5 + parent: 2 + - uid: 9260 + components: + - type: Transform + pos: 40.5,-33.5 + parent: 2 + - uid: 9261 + components: + - type: Transform + pos: 1.5,34.5 + parent: 2 + - uid: 9262 + components: + - type: Transform + pos: 1.5,35.5 + parent: 2 + - uid: 9263 + components: + - type: Transform + pos: 1.5,36.5 + parent: 2 + - uid: 9264 + components: + - type: Transform + pos: 1.5,37.5 + parent: 2 + - uid: 9265 + components: + - type: Transform + pos: 1.5,38.5 + parent: 2 + - uid: 9266 + components: + - type: Transform + pos: 1.5,39.5 + parent: 2 + - uid: 9267 + components: + - type: Transform + pos: 1.5,40.5 + parent: 2 + - uid: 9268 + components: + - type: Transform + pos: 2.5,40.5 + parent: 2 + - uid: 9269 + components: + - type: Transform + pos: -14.5,32.5 + parent: 2 + - uid: 9270 + components: + - type: Transform + pos: 46.5,-49.5 + parent: 2 + - uid: 9271 + components: + - type: Transform + pos: 45.5,-49.5 + parent: 2 + - uid: 9272 + components: + - type: Transform + pos: 44.5,-49.5 + parent: 2 + - uid: 9273 + components: + - type: Transform + pos: 43.5,-49.5 + parent: 2 + - uid: 9274 + components: + - type: Transform + pos: 42.5,-49.5 + parent: 2 +- proto: CableMVStack + entities: + - uid: 9275 + components: + - type: Transform + pos: 78.5271,-64.24104 + parent: 2 + - type: RCDAmmo + charges: 6 + - uid: 9276 + components: + - type: Transform + pos: 4.483431,-36.378174 + parent: 2 + - type: RCDAmmo + charges: 6 + - uid: 9277 + components: + - type: Transform + pos: 4.483431,-36.378174 + parent: 2 + - type: RCDAmmo + charges: 6 +- proto: CableMVStack1 + entities: + - uid: 9278 + components: + - type: Transform + pos: 65.5,19.5 + parent: 2 + - type: RCDAmmo + charges: 0 + - uid: 9279 + components: + - type: Transform + pos: 65.5,17.5 + parent: 2 + - type: RCDAmmo + charges: 0 + - uid: 9280 + components: + - type: Transform + pos: -31.5,18.5 + parent: 2 + - type: RCDAmmo + charges: 0 + - uid: 9281 + components: + - type: Transform + pos: 65.5,16.5 + parent: 2 + - type: RCDAmmo + charges: 0 + - uid: 9282 + components: + - type: Transform + pos: -33.5,20.5 + parent: 2 + - type: RCDAmmo + charges: 0 + - uid: 9283 + components: + - type: Transform + pos: -34.5,20.5 + parent: 2 + - type: RCDAmmo + charges: 0 + - uid: 9284 + components: + - type: Transform + pos: -35.5,20.5 + parent: 2 + - type: RCDAmmo + charges: 0 + - uid: 9285 + components: + - type: Transform + pos: -36.5,20.5 + parent: 2 + - type: RCDAmmo + charges: 0 + - uid: 9286 + components: + - type: Transform + pos: -37.5,20.5 + parent: 2 + - type: RCDAmmo + charges: 0 + - uid: 9287 + components: + - type: Transform + pos: -31.5,19.5 + parent: 2 + - type: RCDAmmo + charges: 0 +- proto: CableTerminal + entities: + - uid: 9288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,20.5 + parent: 2 + - uid: 9289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-50.5 + parent: 2 + - uid: 9290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,23.5 + parent: 2 + - uid: 9291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-68.5 + parent: 2 + - uid: 9292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-67.5 + parent: 2 + - uid: 9293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-66.5 + parent: 2 + - uid: 9294 + components: + - type: Transform + pos: -38.5,-61.5 + parent: 2 + - uid: 9295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-65.5 + parent: 2 + - uid: 9296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-92.5 + parent: 2 +- proto: CapacitorStockPart + entities: + - uid: 9297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.24938,12.958204 + parent: 2 + - uid: 9298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5249074,-24.314453 + parent: 2 + - uid: 9299 + components: + - type: Transform + pos: 57.905533,-24.222408 + parent: 2 + - uid: 9300 + components: + - type: Transform + pos: 74.3515,-19.897121 + parent: 2 + - uid: 9301 + components: + - type: Transform + pos: 74.72912,-20.240425 + parent: 2 + - uid: 9302 + components: + - type: Transform + pos: 7.378157,-27.288918 + parent: 2 +- proto: CarbonDioxideCanister + entities: + - uid: 9303 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 2 + - uid: 9304 + components: + - type: Transform + pos: 60.5,-36.5 + parent: 2 +- proto: Carpet + entities: + - uid: 9305 + components: + - type: Transform + pos: 55.5,-2.5 + parent: 2 + - uid: 9306 + components: + - type: Transform + pos: 55.5,-3.5 + parent: 2 + - uid: 9307 + components: + - type: Transform + pos: 55.5,-4.5 + parent: 2 + - uid: 9308 + components: + - type: Transform + pos: 55.5,-5.5 + parent: 2 + - uid: 9309 + components: + - type: Transform + pos: 55.5,-6.5 + parent: 2 + - uid: 9310 + components: + - type: Transform + pos: 56.5,-2.5 + parent: 2 + - uid: 9311 + components: + - type: Transform + pos: 56.5,-3.5 + parent: 2 + - uid: 9312 + components: + - type: Transform + pos: 56.5,-4.5 + parent: 2 + - uid: 9313 + components: + - type: Transform + pos: 56.5,-5.5 + parent: 2 + - uid: 9314 + components: + - type: Transform + pos: 56.5,-6.5 + parent: 2 + - uid: 9315 + components: + - type: Transform + pos: 59.5,-8.5 + parent: 2 + - uid: 9316 + components: + - type: Transform + pos: 59.5,-9.5 + parent: 2 + - uid: 9317 + components: + - type: Transform + pos: 60.5,-8.5 + parent: 2 + - uid: 9318 + components: + - type: Transform + pos: 60.5,-9.5 + parent: 2 + - uid: 9319 + components: + - type: Transform + pos: 61.5,-8.5 + parent: 2 + - uid: 9320 + components: + - type: Transform + pos: 61.5,-9.5 + parent: 2 + - uid: 9321 + components: + - type: Transform + pos: 62.5,-8.5 + parent: 2 + - uid: 9322 + components: + - type: Transform + pos: 62.5,-9.5 + parent: 2 + - uid: 9323 + components: + - type: Transform + pos: 63.5,-8.5 + parent: 2 + - uid: 9324 + components: + - type: Transform + pos: 63.5,-9.5 + parent: 2 + - uid: 9325 + components: + - type: Transform + pos: -20.5,47.5 + parent: 2 + - uid: 9326 + components: + - type: Transform + pos: -20.5,48.5 + parent: 2 + - uid: 9327 + components: + - type: Transform + pos: -56.5,-9.5 + parent: 2 + - uid: 9328 + components: + - type: Transform + pos: -56.5,-10.5 + parent: 2 + - uid: 9329 + components: + - type: Transform + pos: -57.5,-9.5 + parent: 2 + - uid: 9330 + components: + - type: Transform + pos: -57.5,-10.5 + parent: 2 + - uid: 9331 + components: + - type: Transform + pos: -58.5,-9.5 + parent: 2 + - uid: 9332 + components: + - type: Transform + pos: -58.5,-10.5 + parent: 2 + - uid: 9333 + components: + - type: Transform + pos: -59.5,-9.5 + parent: 2 + - uid: 9334 + components: + - type: Transform + pos: -59.5,-10.5 + parent: 2 + - uid: 9335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-7.5 + parent: 2 + - uid: 9336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-7.5 + parent: 2 + - uid: 9337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-8.5 + parent: 2 + - uid: 9338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-8.5 + parent: 2 + - uid: 9339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-8.5 + parent: 2 + - uid: 9340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-8.5 + parent: 2 + - uid: 9341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-9.5 + parent: 2 + - uid: 9342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-9.5 + parent: 2 + - uid: 9343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-9.5 + parent: 2 + - uid: 9344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-9.5 + parent: 2 + - uid: 9345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,51.5 + parent: 2 + - uid: 9346 + components: + - type: Transform + pos: 69.5,1.5 + parent: 2 + - uid: 9347 + components: + - type: Transform + pos: 69.5,2.5 + parent: 2 + - uid: 9348 + components: + - type: Transform + pos: 70.5,1.5 + parent: 2 + - uid: 9349 + components: + - type: Transform + pos: 70.5,2.5 + parent: 2 + - uid: 9350 + components: + - type: Transform + pos: 71.5,1.5 + parent: 2 + - uid: 9351 + components: + - type: Transform + pos: 71.5,2.5 + parent: 2 + - uid: 9352 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 9353 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 9354 + components: + - type: Transform + pos: -2.5,32.5 + parent: 2 + - uid: 9355 + components: + - type: Transform + pos: 16.5,38.5 + parent: 2 + - uid: 9356 + components: + - type: Transform + pos: -11.5,29.5 + parent: 2 + - uid: 9357 + components: + - type: Transform + pos: -7.5,16.5 + parent: 2 + - uid: 9358 + components: + - type: Transform + pos: -8.5,16.5 + parent: 2 + - uid: 9359 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 + - uid: 9360 + components: + - type: Transform + pos: -1.5,31.5 + parent: 2 + - uid: 9361 + components: + - type: Transform + pos: -2.5,31.5 + parent: 2 + - uid: 9362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,52.5 + parent: 2 + - uid: 9363 + components: + - type: Transform + pos: -1.5,32.5 + parent: 2 + - uid: 9364 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - uid: 9365 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 +- proto: CarpetBlack + entities: + - uid: 9366 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 9367 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - uid: 9368 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 9369 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 2 + - uid: 9370 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 9371 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 2 + - uid: 9372 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - uid: 9373 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 +- proto: CarpetBlue + entities: + - uid: 9374 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 2 + - uid: 9375 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 2 +- proto: CarpetChapel + entities: + - uid: 9376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,2.5 + parent: 2 + - uid: 9377 + components: + - type: Transform + pos: 73.5,0.5 + parent: 2 + - uid: 9378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-3.5 + parent: 2 + - uid: 9379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,0.5 + parent: 2 + - uid: 9380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-7.5 + parent: 2 + - uid: 9381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-5.5 + parent: 2 + - uid: 9382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-5.5 + parent: 2 + - uid: 9383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-7.5 + parent: 2 + - uid: 9384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-6.5 + parent: 2 + - uid: 9385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-3.5 + parent: 2 + - uid: 9386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-2.5 + parent: 2 + - uid: 9387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-4.5 + parent: 2 + - uid: 9388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-4.5 + parent: 2 + - uid: 9389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-6.5 + parent: 2 + - uid: 9390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-4.5 + parent: 2 + - uid: 9391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-6.5 + parent: 2 + - uid: 9392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-6.5 + parent: 2 + - uid: 9393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-2.5 + parent: 2 + - uid: 9394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-2.5 + parent: 2 + - uid: 9395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-4.5 + parent: 2 + - uid: 9396 + components: + - type: Transform + pos: 71.5,-3.5 + parent: 2 + - uid: 9397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-2.5 + parent: 2 + - uid: 9398 + components: + - type: Transform + pos: 66.5,-3.5 + parent: 2 + - uid: 9399 + components: + - type: Transform + pos: 66.5,-5.5 + parent: 2 + - uid: 9400 + components: + - type: Transform + pos: 71.5,-7.5 + parent: 2 + - uid: 9401 + components: + - type: Transform + pos: 71.5,-5.5 + parent: 2 + - uid: 9402 + components: + - type: Transform + pos: 73.5,2.5 + parent: 2 + - uid: 9403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,3.5 + parent: 2 + - uid: 9404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,1.5 + parent: 2 + - uid: 9405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,3.5 + parent: 2 + - uid: 9406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,1.5 + parent: 2 + - uid: 9407 + components: + - type: Transform + pos: 69.5,16.5 + parent: 2 + - uid: 9408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,19.5 + parent: 2 + - uid: 9409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,17.5 + parent: 2 + - uid: 9410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,19.5 + parent: 2 + - uid: 9411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,17.5 + parent: 2 + - uid: 9412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,18.5 + parent: 2 + - uid: 9413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,16.5 + parent: 2 + - uid: 9414 + components: + - type: Transform + pos: 66.5,-7.5 + parent: 2 +- proto: CarpetGreen + entities: + - uid: 9415 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 9416 + components: + - type: Transform + pos: -17.5,47.5 + parent: 2 + - uid: 9417 + components: + - type: Transform + pos: -17.5,48.5 + parent: 2 + - uid: 9418 + components: + - type: Transform + pos: 68.5,-6.5 + parent: 2 + - uid: 9419 + components: + - type: Transform + pos: 66.5,-9.5 + parent: 2 + - uid: 9420 + components: + - type: Transform + pos: 70.5,-10.5 + parent: 2 + - uid: 9421 + components: + - type: Transform + pos: 67.5,-8.5 + parent: 2 + - uid: 9422 + components: + - type: Transform + pos: 64.5,-8.5 + parent: 2 + - uid: 9423 + components: + - type: Transform + pos: 66.5,-8.5 + parent: 2 + - uid: 9424 + components: + - type: Transform + pos: 68.5,-9.5 + parent: 2 + - uid: 9425 + components: + - type: Transform + pos: 68.5,-4.5 + parent: 2 + - uid: 9426 + components: + - type: Transform + pos: 65.5,-8.5 + parent: 2 + - uid: 9427 + components: + - type: Transform + pos: 69.5,-10.5 + parent: 2 + - uid: 9428 + components: + - type: Transform + pos: 68.5,-8.5 + parent: 2 + - uid: 9429 + components: + - type: Transform + pos: 68.5,-10.5 + parent: 2 + - uid: 9430 + components: + - type: Transform + pos: 68.5,-5.5 + parent: 2 + - uid: 9431 + components: + - type: Transform + pos: 67.5,-9.5 + parent: 2 + - uid: 9432 + components: + - type: Transform + pos: 71.5,-10.5 + parent: 2 + - uid: 9433 + components: + - type: Transform + pos: 65.5,-9.5 + parent: 2 + - uid: 9434 + components: + - type: Transform + pos: 67.5,-10.5 + parent: 2 + - uid: 9435 + components: + - type: Transform + pos: 68.5,-7.5 + parent: 2 + - uid: 9436 + components: + - type: Transform + pos: 74.5,-8.5 + parent: 2 + - uid: 9437 + components: + - type: Transform + pos: 62.5,-3.5 + parent: 2 + - uid: 9438 + components: + - type: Transform + pos: 61.5,-2.5 + parent: 2 + - uid: 9439 + components: + - type: Transform + pos: 63.5,-2.5 + parent: 2 + - uid: 9440 + components: + - type: Transform + pos: 63.5,-3.5 + parent: 2 + - uid: 9441 + components: + - type: Transform + pos: 62.5,-2.5 + parent: 2 + - uid: 9442 + components: + - type: Transform + pos: 57.5,2.5 + parent: 2 + - uid: 9443 + components: + - type: Transform + pos: 57.5,1.5 + parent: 2 + - uid: 9444 + components: + - type: Transform + pos: 57.5,0.5 + parent: 2 + - uid: 9445 + components: + - type: Transform + pos: 57.5,-0.5 + parent: 2 + - uid: 9446 + components: + - type: Transform + pos: 56.5,2.5 + parent: 2 + - uid: 9447 + components: + - type: Transform + pos: 56.5,1.5 + parent: 2 + - uid: 9448 + components: + - type: Transform + pos: 56.5,0.5 + parent: 2 + - uid: 9449 + components: + - type: Transform + pos: 56.5,-0.5 + parent: 2 + - uid: 9450 + components: + - type: Transform + pos: 55.5,2.5 + parent: 2 + - uid: 9451 + components: + - type: Transform + pos: 55.5,1.5 + parent: 2 + - uid: 9452 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 + - uid: 9453 + components: + - type: Transform + pos: 55.5,-0.5 + parent: 2 + - uid: 9454 + components: + - type: Transform + pos: 54.5,2.5 + parent: 2 + - uid: 9455 + components: + - type: Transform + pos: 54.5,1.5 + parent: 2 + - uid: 9456 + components: + - type: Transform + pos: 54.5,0.5 + parent: 2 + - uid: 9457 + components: + - type: Transform + pos: 54.5,-0.5 + parent: 2 + - uid: 9458 + components: + - type: Transform + pos: 43.5,-63.5 + parent: 2 + - uid: 9459 + components: + - type: Transform + pos: 43.5,-62.5 + parent: 2 + - uid: 9460 + components: + - type: Transform + pos: 44.5,-63.5 + parent: 2 + - uid: 9461 + components: + - type: Transform + pos: 44.5,-62.5 + parent: 2 + - uid: 9462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-9.5 + parent: 2 + - uid: 9463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-9.5 + parent: 2 + - uid: 9464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-9.5 + parent: 2 + - uid: 9465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-9.5 + parent: 2 + - uid: 9466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-9.5 + parent: 2 + - uid: 9467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-8.5 + parent: 2 + - uid: 9468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-8.5 + parent: 2 + - uid: 9469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-8.5 + parent: 2 + - uid: 9470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-8.5 + parent: 2 + - uid: 9471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-8.5 + parent: 2 + - uid: 9472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-7.5 + parent: 2 + - uid: 9473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-7.5 + parent: 2 + - uid: 9474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-6.5 + parent: 2 + - uid: 9475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-6.5 + parent: 2 + - uid: 9476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-5.5 + parent: 2 + - uid: 9477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-4.5 + parent: 2 + - uid: 9478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-4.5 + parent: 2 + - uid: 9479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-5.5 + parent: 2 + - uid: 9480 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 + - uid: 9481 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 + - uid: 9482 + components: + - type: Transform + pos: -37.5,-46.5 + parent: 2 + - uid: 9483 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 9484 + components: + - type: Transform + pos: -38.5,-46.5 + parent: 2 + - uid: 9485 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 9486 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 +- proto: CarpetOrange + entities: + - uid: 9487 + components: + - type: Transform + pos: -21.5,41.5 + parent: 2 + - uid: 9488 + components: + - type: Transform + pos: -21.5,40.5 + parent: 2 + - uid: 9489 + components: + - type: Transform + pos: 63.5,2.5 + parent: 2 + - uid: 9490 + components: + - type: Transform + pos: 65.5,0.5 + parent: 2 + - uid: 9491 + components: + - type: Transform + pos: 65.5,2.5 + parent: 2 + - uid: 9492 + components: + - type: Transform + pos: 65.5,1.5 + parent: 2 + - uid: 9493 + components: + - type: Transform + pos: 64.5,0.5 + parent: 2 + - uid: 9494 + components: + - type: Transform + pos: 64.5,1.5 + parent: 2 + - uid: 9495 + components: + - type: Transform + pos: 64.5,2.5 + parent: 2 + - uid: 9496 + components: + - type: Transform + pos: 63.5,0.5 + parent: 2 + - uid: 9497 + components: + - type: Transform + pos: 63.5,1.5 + parent: 2 + - uid: 9498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,15.5 + parent: 2 + - uid: 9499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-62.5 + parent: 2 + - uid: 9500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,14.5 + parent: 2 + - uid: 9501 + components: + - type: Transform + pos: -31.5,-33.5 + parent: 2 + - uid: 9502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,14.5 + parent: 2 + - uid: 9503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,15.5 + parent: 2 +- proto: CarpetPink + entities: + - uid: 9504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,14.5 + parent: 2 + - uid: 9505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,15.5 + parent: 2 + - uid: 9506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,14.5 + parent: 2 + - uid: 9507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,15.5 + parent: 2 +- proto: CarpetPurple + entities: + - uid: 9508 + components: + - type: Transform + pos: 73.5,-36.5 + parent: 2 + - uid: 9509 + components: + - type: Transform + pos: 74.5,-36.5 + parent: 2 +- proto: CarpetSBlue + entities: + - uid: 9510 + components: + - type: Transform + pos: 6.5,15.5 + parent: 2 + - uid: 9511 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 9512 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 + - uid: 9513 + components: + - type: Transform + pos: 44.5,-43.5 + parent: 2 + - uid: 9514 + components: + - type: Transform + pos: -18.5,41.5 + parent: 2 + - uid: 9515 + components: + - type: Transform + pos: -18.5,40.5 + parent: 2 + - uid: 9516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-22.5 + parent: 2 + - uid: 9517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-21.5 + parent: 2 + - uid: 9518 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 9519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-22.5 + parent: 2 + - uid: 9520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 2 + - uid: 9521 + components: + - type: Transform + pos: 44.5,-42.5 + parent: 2 + - uid: 9522 + components: + - type: Transform + pos: 32.5,10.5 + parent: 2 + - uid: 9523 + components: + - type: Transform + pos: 31.5,10.5 + parent: 2 +- proto: CarrotSeeds + entities: + - uid: 9524 + components: + - type: Transform + pos: 46.732643,1.7123063 + parent: 2 +- proto: CarvedPumpkin + entities: + - uid: 645 + components: + - type: Transform + pos: 31.493444,15.653688 + parent: 2 +- proto: CarvedPumpkinLarge + entities: + - uid: 4471 + components: + - type: Transform + pos: 37.606613,15.829205 + parent: 2 +- proto: CarvedPumpkinSmall + entities: + - uid: 4469 + components: + - type: Transform + pos: 37.670887,12.307664 + parent: 2 +- proto: Catwalk + entities: + - uid: 9525 + components: + - type: Transform + pos: -44.5,2.5 + parent: 2 + - uid: 9526 + components: + - type: Transform + pos: -44.5,3.5 + parent: 2 + - uid: 9527 + components: + - type: Transform + pos: -44.5,4.5 + parent: 2 + - uid: 9528 + components: + - type: Transform + pos: -45.5,2.5 + parent: 2 + - uid: 9529 + components: + - type: Transform + pos: -45.5,3.5 + parent: 2 + - uid: 9530 + components: + - type: Transform + pos: -45.5,4.5 + parent: 2 + - uid: 9531 + components: + - type: Transform + pos: -66.5,14.5 + parent: 2 + - uid: 9532 + components: + - type: Transform + pos: -66.5,15.5 + parent: 2 + - uid: 9533 + components: + - type: Transform + pos: -66.5,16.5 + parent: 2 + - uid: 9534 + components: + - type: Transform + pos: -67.5,14.5 + parent: 2 + - uid: 9535 + components: + - type: Transform + pos: -67.5,15.5 + parent: 2 + - uid: 9536 + components: + - type: Transform + pos: -67.5,16.5 + parent: 2 + - uid: 9537 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 + - uid: 9538 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 2 + - uid: 9539 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 + - uid: 9540 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 + - uid: 9541 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 + - uid: 9542 + components: + - type: Transform + pos: -12.5,-77.5 + parent: 2 + - uid: 9543 + components: + - type: Transform + pos: -78.5,-13.5 + parent: 2 + - uid: 9544 + components: + - type: Transform + pos: -80.5,9.5 + parent: 2 + - uid: 9545 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 + - uid: 9546 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 + - uid: 9547 + components: + - type: Transform + pos: -9.5,1.5 + parent: 2 + - uid: 9548 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 + - uid: 9549 + components: + - type: Transform + pos: -9.5,2.5 + parent: 2 + - uid: 9550 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - uid: 9551 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 9552 + components: + - type: Transform + pos: -13.5,2.5 + parent: 2 + - uid: 9553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-49.5 + parent: 2 + - uid: 9554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 103.5,-43.5 + parent: 2 + - uid: 9555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-49.5 + parent: 2 + - uid: 9556 + components: + - type: Transform + pos: 62.5,-74.5 + parent: 2 + - uid: 9557 + components: + - type: Transform + pos: -9.5,7.5 + parent: 2 + - uid: 9558 + components: + - type: Transform + pos: -9.5,6.5 + parent: 2 + - uid: 9559 + components: + - type: Transform + pos: -8.5,6.5 + parent: 2 + - uid: 9560 + components: + - type: Transform + pos: -8.5,7.5 + parent: 2 + - uid: 9561 + components: + - type: Transform + pos: -10.5,6.5 + parent: 2 + - uid: 9562 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 + - uid: 9563 + components: + - type: Transform + pos: -13.5,4.5 + parent: 2 + - uid: 9564 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 9565 + components: + - type: Transform + pos: -16.5,2.5 + parent: 2 + - uid: 9566 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - uid: 9567 + components: + - type: Transform + pos: -10.5,7.5 + parent: 2 + - uid: 9568 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 2 + - uid: 9569 + components: + - type: Transform + pos: 84.5,-41.5 + parent: 2 + - uid: 9570 + components: + - type: Transform + pos: -35.5,-24.5 + parent: 2 + - uid: 9571 + components: + - type: Transform + pos: -34.5,-21.5 + parent: 2 + - uid: 9572 + components: + - type: Transform + pos: -11.5,-65.5 + parent: 2 + - uid: 9573 + components: + - type: Transform + pos: -9.5,4.5 + parent: 2 + - uid: 9574 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 + - uid: 9575 + components: + - type: Transform + pos: -34.5,-22.5 + parent: 2 + - uid: 9576 + components: + - type: Transform + pos: 85.5,-41.5 + parent: 2 + - uid: 9577 + components: + - type: Transform + pos: -13.5,-71.5 + parent: 2 + - uid: 9578 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 2 + - uid: 9579 + components: + - type: Transform + pos: -80.5,-5.5 + parent: 2 + - uid: 9580 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 9581 + components: + - type: Transform + pos: -28.5,-37.5 + parent: 2 + - uid: 9582 + components: + - type: Transform + pos: -16.5,11.5 + parent: 2 + - uid: 9583 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 + - uid: 9584 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 + - uid: 9585 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 + - uid: 9586 + components: + - type: Transform + pos: -15.5,11.5 + parent: 2 + - uid: 9587 + components: + - type: Transform + pos: -48.5,-45.5 + parent: 2 + - uid: 9588 + components: + - type: Transform + pos: -49.5,-45.5 + parent: 2 + - uid: 9589 + components: + - type: Transform + pos: -50.5,-45.5 + parent: 2 + - uid: 9590 + components: + - type: Transform + pos: -28.5,-38.5 + parent: 2 + - uid: 9591 + components: + - type: Transform + pos: -12.5,-37.5 + parent: 2 + - uid: 9592 + components: + - type: Transform + pos: -13.5,-65.5 + parent: 2 + - uid: 9593 + components: + - type: Transform + pos: -43.5,-45.5 + parent: 2 + - uid: 9594 + components: + - type: Transform + pos: -13.5,-64.5 + parent: 2 + - uid: 9595 + components: + - type: Transform + pos: -27.5,-36.5 + parent: 2 + - uid: 9596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-37.5 + parent: 2 + - uid: 9597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-37.5 + parent: 2 + - uid: 9598 + components: + - type: Transform + pos: -5.5,-63.5 + parent: 2 + - uid: 9599 + components: + - type: Transform + pos: -45.5,-45.5 + parent: 2 + - uid: 9600 + components: + - type: Transform + pos: -13.5,-72.5 + parent: 2 + - uid: 9601 + components: + - type: Transform + pos: -51.5,-45.5 + parent: 2 + - uid: 9602 + components: + - type: Transform + pos: 18.5,-70.5 + parent: 2 + - uid: 9603 + components: + - type: Transform + pos: 18.5,-71.5 + parent: 2 + - uid: 9604 + components: + - type: Transform + pos: -9.5,-37.5 + parent: 2 + - uid: 9605 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - uid: 9606 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 9607 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 9608 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - uid: 9609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-37.5 + parent: 2 + - uid: 9610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-37.5 + parent: 2 + - uid: 9611 + components: + - type: Transform + pos: -27.5,-38.5 + parent: 2 + - uid: 9612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-35.5 + parent: 2 + - uid: 9613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-38.5 + parent: 2 + - uid: 9614 + components: + - type: Transform + pos: -23.5,-68.5 + parent: 2 + - uid: 9615 + components: + - type: Transform + pos: -9.5,-38.5 + parent: 2 + - uid: 9616 + components: + - type: Transform + pos: -6.5,-38.5 + parent: 2 + - uid: 9617 + components: + - type: Transform + pos: -8.5,-36.5 + parent: 2 + - uid: 9618 + components: + - type: Transform + pos: 7.5,-35.5 + parent: 2 + - uid: 9619 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 9620 + components: + - type: Transform + pos: 7.5,-36.5 + parent: 2 + - uid: 9621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-36.5 + parent: 2 + - uid: 9622 + components: + - type: Transform + pos: -9.5,-36.5 + parent: 2 + - uid: 9623 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 2 + - uid: 9624 + components: + - type: Transform + pos: 49.5,-29.5 + parent: 2 + - uid: 9625 + components: + - type: Transform + pos: 49.5,-30.5 + parent: 2 + - uid: 9626 + components: + - type: Transform + pos: 49.5,-18.5 + parent: 2 + - uid: 9627 + components: + - type: Transform + pos: 49.5,-20.5 + parent: 2 + - uid: 9628 + components: + - type: Transform + pos: 49.5,-21.5 + parent: 2 + - uid: 9629 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 9630 + components: + - type: Transform + pos: 18.5,-72.5 + parent: 2 + - uid: 9631 + components: + - type: Transform + pos: -41.5,-37.5 + parent: 2 + - uid: 9632 + components: + - type: Transform + pos: -1.5,41.5 + parent: 2 + - uid: 9633 + components: + - type: Transform + pos: 2.5,11.5 + parent: 2 + - uid: 9634 + components: + - type: Transform + pos: 49.5,-16.5 + parent: 2 + - uid: 9635 + components: + - type: Transform + pos: 49.5,-17.5 + parent: 2 + - uid: 9636 + components: + - type: Transform + pos: -15.5,-60.5 + parent: 2 + - uid: 9637 + components: + - type: Transform + pos: -15.5,-61.5 + parent: 2 + - uid: 9638 + components: + - type: Transform + pos: -15.5,-62.5 + parent: 2 + - uid: 9639 + components: + - type: Transform + pos: -15.5,-63.5 + parent: 2 + - uid: 9640 + components: + - type: Transform + pos: -15.5,-64.5 + parent: 2 + - uid: 9641 + components: + - type: Transform + pos: -15.5,-65.5 + parent: 2 + - uid: 9642 + components: + - type: Transform + pos: -15.5,-66.5 + parent: 2 + - uid: 9643 + components: + - type: Transform + pos: -5.5,-59.5 + parent: 2 + - uid: 9644 + components: + - type: Transform + pos: -6.5,-59.5 + parent: 2 + - uid: 9645 + components: + - type: Transform + pos: -7.5,-59.5 + parent: 2 + - uid: 9646 + components: + - type: Transform + pos: -8.5,-59.5 + parent: 2 + - uid: 9647 + components: + - type: Transform + pos: -9.5,-59.5 + parent: 2 + - uid: 9648 + components: + - type: Transform + pos: -10.5,-59.5 + parent: 2 + - uid: 9649 + components: + - type: Transform + pos: -11.5,-59.5 + parent: 2 + - uid: 9650 + components: + - type: Transform + pos: -12.5,-59.5 + parent: 2 + - uid: 9651 + components: + - type: Transform + pos: -14.5,-59.5 + parent: 2 + - uid: 9652 + components: + - type: Transform + pos: -21.5,-33.5 + parent: 2 + - uid: 9653 + components: + - type: Transform + pos: -20.5,-33.5 + parent: 2 + - uid: 9654 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 2 + - uid: 9655 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 2 + - uid: 9656 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 2 + - uid: 9657 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 2 + - uid: 9658 + components: + - type: Transform + pos: -17.5,-35.5 + parent: 2 + - uid: 9659 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 2 + - uid: 9660 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 2 + - uid: 9661 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 2 + - uid: 9662 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 2 + - uid: 9663 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 2 + - uid: 9664 + components: + - type: Transform + pos: -17.5,-41.5 + parent: 2 + - uid: 9665 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 2 + - uid: 9666 + components: + - type: Transform + pos: -17.5,-44.5 + parent: 2 + - uid: 9667 + components: + - type: Transform + pos: -17.5,-45.5 + parent: 2 + - uid: 9668 + components: + - type: Transform + pos: -17.5,-46.5 + parent: 2 + - uid: 9669 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 2 + - uid: 9670 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 2 + - uid: 9671 + components: + - type: Transform + pos: -18.5,-50.5 + parent: 2 + - uid: 9672 + components: + - type: Transform + pos: -18.5,-51.5 + parent: 2 + - uid: 9673 + components: + - type: Transform + pos: -18.5,-52.5 + parent: 2 + - uid: 9674 + components: + - type: Transform + pos: -18.5,-53.5 + parent: 2 + - uid: 9675 + components: + - type: Transform + pos: -18.5,-54.5 + parent: 2 + - uid: 9676 + components: + - type: Transform + pos: -18.5,-55.5 + parent: 2 + - uid: 9677 + components: + - type: Transform + pos: -18.5,-56.5 + parent: 2 + - uid: 9678 + components: + - type: Transform + pos: -18.5,-57.5 + parent: 2 + - uid: 9679 + components: + - type: Transform + pos: -18.5,-58.5 + parent: 2 + - uid: 9680 + components: + - type: Transform + pos: -18.5,-59.5 + parent: 2 + - uid: 9681 + components: + - type: Transform + pos: -32.5,-61.5 + parent: 2 + - uid: 9682 + components: + - type: Transform + pos: -33.5,-61.5 + parent: 2 + - uid: 9683 + components: + - type: Transform + pos: -34.5,-61.5 + parent: 2 + - uid: 9684 + components: + - type: Transform + pos: -31.5,-60.5 + parent: 2 + - uid: 9685 + components: + - type: Transform + pos: -31.5,-61.5 + parent: 2 + - uid: 9686 + components: + - type: Transform + pos: -31.5,-62.5 + parent: 2 + - uid: 9687 + components: + - type: Transform + pos: -31.5,-63.5 + parent: 2 + - uid: 9688 + components: + - type: Transform + pos: 49.5,-31.5 + parent: 2 + - uid: 9689 + components: + - type: Transform + pos: -31.5,-64.5 + parent: 2 + - uid: 9690 + components: + - type: Transform + pos: -31.5,-65.5 + parent: 2 + - uid: 9691 + components: + - type: Transform + pos: -20.5,-60.5 + parent: 2 + - uid: 9692 + components: + - type: Transform + pos: -21.5,-60.5 + parent: 2 + - uid: 9693 + components: + - type: Transform + pos: -22.5,-60.5 + parent: 2 + - uid: 9694 + components: + - type: Transform + pos: -23.5,-60.5 + parent: 2 + - uid: 9695 + components: + - type: Transform + pos: 1.5,-73.5 + parent: 2 + - uid: 9696 + components: + - type: Transform + pos: -24.5,-60.5 + parent: 2 + - uid: 9697 + components: + - type: Transform + pos: -25.5,-60.5 + parent: 2 + - uid: 9698 + components: + - type: Transform + pos: -26.5,-60.5 + parent: 2 + - uid: 9699 + components: + - type: Transform + pos: -27.5,-60.5 + parent: 2 + - uid: 9700 + components: + - type: Transform + pos: -28.5,-60.5 + parent: 2 + - uid: 9701 + components: + - type: Transform + pos: -29.5,-60.5 + parent: 2 + - uid: 9702 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 2 + - uid: 9703 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 2 + - uid: 9704 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 2 + - uid: 9705 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 2 + - uid: 9706 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 2 + - uid: 9707 + components: + - type: Transform + pos: -5.5,-73.5 + parent: 2 + - uid: 9708 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 2 + - uid: 9709 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 2 + - uid: 9710 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 2 + - uid: 9711 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 2 + - uid: 9712 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 2 + - uid: 9713 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 2 + - uid: 9714 + components: + - type: Transform + pos: 15.5,-38.5 + parent: 2 + - uid: 9715 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 2 + - uid: 9716 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 2 + - uid: 9717 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 2 + - uid: 9718 + components: + - type: Transform + pos: 21.5,-38.5 + parent: 2 + - uid: 9719 + components: + - type: Transform + pos: 22.5,-38.5 + parent: 2 + - uid: 9720 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 2 + - uid: 9721 + components: + - type: Transform + pos: 24.5,-38.5 + parent: 2 + - uid: 9722 + components: + - type: Transform + pos: 25.5,-38.5 + parent: 2 + - uid: 9723 + components: + - type: Transform + pos: 26.5,-38.5 + parent: 2 + - uid: 9724 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 2 + - uid: 9725 + components: + - type: Transform + pos: 28.5,-38.5 + parent: 2 + - uid: 9726 + components: + - type: Transform + pos: 29.5,-38.5 + parent: 2 + - uid: 9727 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 2 + - uid: 9728 + components: + - type: Transform + pos: 31.5,-38.5 + parent: 2 + - uid: 9729 + components: + - type: Transform + pos: 32.5,-38.5 + parent: 2 + - uid: 9730 + components: + - type: Transform + pos: 32.5,-39.5 + parent: 2 + - uid: 9731 + components: + - type: Transform + pos: 32.5,-40.5 + parent: 2 + - uid: 9732 + components: + - type: Transform + pos: 32.5,-41.5 + parent: 2 + - uid: 9733 + components: + - type: Transform + pos: 32.5,-42.5 + parent: 2 + - uid: 9734 + components: + - type: Transform + pos: 32.5,-43.5 + parent: 2 + - uid: 9735 + components: + - type: Transform + pos: 32.5,-44.5 + parent: 2 + - uid: 9736 + components: + - type: Transform + pos: 32.5,-45.5 + parent: 2 + - uid: 9737 + components: + - type: Transform + pos: 32.5,-46.5 + parent: 2 + - uid: 9738 + components: + - type: Transform + pos: 32.5,-47.5 + parent: 2 + - uid: 9739 + components: + - type: Transform + pos: 32.5,-48.5 + parent: 2 + - uid: 9740 + components: + - type: Transform + pos: 32.5,-49.5 + parent: 2 + - uid: 9741 + components: + - type: Transform + pos: 32.5,-50.5 + parent: 2 + - uid: 9742 + components: + - type: Transform + pos: 32.5,-51.5 + parent: 2 + - uid: 9743 + components: + - type: Transform + pos: 32.5,-52.5 + parent: 2 + - uid: 9744 + components: + - type: Transform + pos: 32.5,-53.5 + parent: 2 + - uid: 9745 + components: + - type: Transform + pos: 32.5,-54.5 + parent: 2 + - uid: 9746 + components: + - type: Transform + pos: 32.5,-55.5 + parent: 2 + - uid: 9747 + components: + - type: Transform + pos: 32.5,-57.5 + parent: 2 + - uid: 9748 + components: + - type: Transform + pos: 33.5,-57.5 + parent: 2 + - uid: 9749 + components: + - type: Transform + pos: 34.5,-57.5 + parent: 2 + - uid: 9750 + components: + - type: Transform + pos: 35.5,-57.5 + parent: 2 + - uid: 9751 + components: + - type: Transform + pos: 36.5,-57.5 + parent: 2 + - uid: 9752 + components: + - type: Transform + pos: 36.5,-58.5 + parent: 2 + - uid: 9753 + components: + - type: Transform + pos: 36.5,-59.5 + parent: 2 + - uid: 9754 + components: + - type: Transform + pos: 36.5,-60.5 + parent: 2 + - uid: 9755 + components: + - type: Transform + pos: 36.5,-61.5 + parent: 2 + - uid: 9756 + components: + - type: Transform + pos: 36.5,-62.5 + parent: 2 + - uid: 9757 + components: + - type: Transform + pos: 37.5,-62.5 + parent: 2 + - uid: 9758 + components: + - type: Transform + pos: 38.5,-62.5 + parent: 2 + - uid: 9759 + components: + - type: Transform + pos: 39.5,-62.5 + parent: 2 + - uid: 9760 + components: + - type: Transform + pos: 40.5,-62.5 + parent: 2 + - uid: 9761 + components: + - type: Transform + pos: 40.5,-63.5 + parent: 2 + - uid: 9762 + components: + - type: Transform + pos: 40.5,-64.5 + parent: 2 + - uid: 9763 + components: + - type: Transform + pos: 40.5,-65.5 + parent: 2 + - uid: 9764 + components: + - type: Transform + pos: 41.5,-65.5 + parent: 2 + - uid: 9765 + components: + - type: Transform + pos: 42.5,-65.5 + parent: 2 + - uid: 9766 + components: + - type: Transform + pos: 43.5,-65.5 + parent: 2 + - uid: 9767 + components: + - type: Transform + pos: 44.5,-65.5 + parent: 2 + - uid: 9768 + components: + - type: Transform + pos: 45.5,-65.5 + parent: 2 + - uid: 9769 + components: + - type: Transform + pos: 46.5,-65.5 + parent: 2 + - uid: 9770 + components: + - type: Transform + pos: 47.5,-65.5 + parent: 2 + - uid: 9771 + components: + - type: Transform + pos: 47.5,-64.5 + parent: 2 + - uid: 9772 + components: + - type: Transform + pos: 47.5,-62.5 + parent: 2 + - uid: 9773 + components: + - type: Transform + pos: 47.5,-63.5 + parent: 2 + - uid: 9774 + components: + - type: Transform + pos: 48.5,-62.5 + parent: 2 + - uid: 9775 + components: + - type: Transform + pos: 82.5,-45.5 + parent: 2 + - uid: 9776 + components: + - type: Transform + pos: 82.5,-46.5 + parent: 2 + - uid: 9777 + components: + - type: Transform + pos: 82.5,-47.5 + parent: 2 + - uid: 9778 + components: + - type: Transform + pos: 82.5,-48.5 + parent: 2 + - uid: 9779 + components: + - type: Transform + pos: 82.5,-49.5 + parent: 2 + - uid: 9780 + components: + - type: Transform + pos: 82.5,-50.5 + parent: 2 + - uid: 9781 + components: + - type: Transform + pos: 82.5,-51.5 + parent: 2 + - uid: 9782 + components: + - type: Transform + pos: 82.5,-52.5 + parent: 2 + - uid: 9783 + components: + - type: Transform + pos: 82.5,-53.5 + parent: 2 + - uid: 9784 + components: + - type: Transform + pos: 82.5,-55.5 + parent: 2 + - uid: 9785 + components: + - type: Transform + pos: 82.5,-56.5 + parent: 2 + - uid: 9786 + components: + - type: Transform + pos: 82.5,-57.5 + parent: 2 + - uid: 9787 + components: + - type: Transform + pos: 82.5,-58.5 + parent: 2 + - uid: 9788 + components: + - type: Transform + pos: 82.5,-59.5 + parent: 2 + - uid: 9789 + components: + - type: Transform + pos: 81.5,-60.5 + parent: 2 + - uid: 9790 + components: + - type: Transform + pos: 80.5,-60.5 + parent: 2 + - uid: 9791 + components: + - type: Transform + pos: 79.5,-60.5 + parent: 2 + - uid: 9792 + components: + - type: Transform + pos: 78.5,-60.5 + parent: 2 + - uid: 9793 + components: + - type: Transform + pos: 77.5,-60.5 + parent: 2 + - uid: 9794 + components: + - type: Transform + pos: 76.5,-60.5 + parent: 2 + - uid: 9795 + components: + - type: Transform + pos: 74.5,-60.5 + parent: 2 + - uid: 9796 + components: + - type: Transform + pos: 73.5,-60.5 + parent: 2 + - uid: 9797 + components: + - type: Transform + pos: 72.5,-60.5 + parent: 2 + - uid: 9798 + components: + - type: Transform + pos: 71.5,-60.5 + parent: 2 + - uid: 9799 + components: + - type: Transform + pos: 70.5,-60.5 + parent: 2 + - uid: 9800 + components: + - type: Transform + pos: 69.5,-60.5 + parent: 2 + - uid: 9801 + components: + - type: Transform + pos: 68.5,-60.5 + parent: 2 + - uid: 9802 + components: + - type: Transform + pos: 67.5,-60.5 + parent: 2 + - uid: 9803 + components: + - type: Transform + pos: 66.5,-60.5 + parent: 2 + - uid: 9804 + components: + - type: Transform + pos: 64.5,-61.5 + parent: 2 + - uid: 9805 + components: + - type: Transform + pos: 63.5,-61.5 + parent: 2 + - uid: 9806 + components: + - type: Transform + pos: 62.5,-61.5 + parent: 2 + - uid: 9807 + components: + - type: Transform + pos: 61.5,-61.5 + parent: 2 + - uid: 9808 + components: + - type: Transform + pos: 60.5,-61.5 + parent: 2 + - uid: 9809 + components: + - type: Transform + pos: 59.5,-61.5 + parent: 2 + - uid: 9810 + components: + - type: Transform + pos: 58.5,-61.5 + parent: 2 + - uid: 9811 + components: + - type: Transform + pos: 57.5,-61.5 + parent: 2 + - uid: 9812 + components: + - type: Transform + pos: 56.5,-61.5 + parent: 2 + - uid: 9813 + components: + - type: Transform + pos: 55.5,-61.5 + parent: 2 + - uid: 9814 + components: + - type: Transform + pos: 54.5,-61.5 + parent: 2 + - uid: 9815 + components: + - type: Transform + pos: 53.5,-61.5 + parent: 2 + - uid: 9816 + components: + - type: Transform + pos: 52.5,-61.5 + parent: 2 + - uid: 9817 + components: + - type: Transform + pos: 49.5,-60.5 + parent: 2 + - uid: 9818 + components: + - type: Transform + pos: 49.5,-59.5 + parent: 2 + - uid: 9819 + components: + - type: Transform + pos: 49.5,-58.5 + parent: 2 + - uid: 9820 + components: + - type: Transform + pos: 49.5,-57.5 + parent: 2 + - uid: 9821 + components: + - type: Transform + pos: 49.5,-56.5 + parent: 2 + - uid: 9822 + components: + - type: Transform + pos: 49.5,-55.5 + parent: 2 + - uid: 9823 + components: + - type: Transform + pos: 49.5,-54.5 + parent: 2 + - uid: 9824 + components: + - type: Transform + pos: 49.5,-53.5 + parent: 2 + - uid: 9825 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 + - uid: 9826 + components: + - type: Transform + pos: 20.5,30.5 + parent: 2 + - uid: 9827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,29.5 + parent: 2 + - uid: 9828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,29.5 + parent: 2 + - uid: 9829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,29.5 + parent: 2 + - uid: 9830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,29.5 + parent: 2 + - uid: 9831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,30.5 + parent: 2 + - uid: 9832 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 9833 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 9834 + components: + - type: Transform + pos: 20.5,17.5 + parent: 2 + - uid: 9835 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 9836 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 9837 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 9838 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - uid: 9839 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 9840 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 9841 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - uid: 9842 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 9843 + components: + - type: Transform + pos: 6.5,17.5 + parent: 2 + - uid: 9844 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 9845 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 9846 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 9847 + components: + - type: Transform + pos: 2.5,16.5 + parent: 2 + - uid: 9848 + components: + - type: Transform + pos: 2.5,15.5 + parent: 2 + - uid: 9849 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 9850 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 9851 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 9852 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 9853 + components: + - type: Transform + pos: -3.5,11.5 + parent: 2 + - uid: 9854 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 9855 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - uid: 9856 + components: + - type: Transform + pos: -6.5,11.5 + parent: 2 + - uid: 9857 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - uid: 9858 + components: + - type: Transform + pos: -16.5,17.5 + parent: 2 + - uid: 9859 + components: + - type: Transform + pos: -16.5,16.5 + parent: 2 + - uid: 9860 + components: + - type: Transform + pos: -16.5,15.5 + parent: 2 + - uid: 9861 + components: + - type: Transform + pos: -16.5,14.5 + parent: 2 + - uid: 9862 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 + - uid: 9863 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 + - uid: 9864 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 9865 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 9866 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 9867 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - uid: 9868 + components: + - type: Transform + pos: -21.5,10.5 + parent: 2 + - uid: 9869 + components: + - type: Transform + pos: -22.5,10.5 + parent: 2 + - uid: 9870 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 9871 + components: + - type: Transform + pos: -25.5,9.5 + parent: 2 + - uid: 9872 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 9873 + components: + - type: Transform + pos: -25.5,7.5 + parent: 2 + - uid: 9874 + components: + - type: Transform + pos: -25.5,6.5 + parent: 2 + - uid: 9875 + components: + - type: Transform + pos: -25.5,5.5 + parent: 2 + - uid: 9876 + components: + - type: Transform + pos: -25.5,4.5 + parent: 2 + - uid: 9877 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 2 + - uid: 9878 + components: + - type: Transform + pos: 5.5,-73.5 + parent: 2 + - uid: 9879 + components: + - type: Transform + pos: 4.5,-73.5 + parent: 2 + - uid: 9880 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 + - uid: 9881 + components: + - type: Transform + pos: -25.5,2.5 + parent: 2 + - uid: 9882 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - uid: 9883 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - uid: 9884 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 9885 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 9886 + components: + - type: Transform + pos: -34.5,-37.5 + parent: 2 + - uid: 9887 + components: + - type: Transform + pos: -35.5,-37.5 + parent: 2 + - uid: 9888 + components: + - type: Transform + pos: -36.5,-37.5 + parent: 2 + - uid: 9889 + components: + - type: Transform + pos: -37.5,-37.5 + parent: 2 + - uid: 9890 + components: + - type: Transform + pos: -38.5,-37.5 + parent: 2 + - uid: 9891 + components: + - type: Transform + pos: -39.5,-37.5 + parent: 2 + - uid: 9892 + components: + - type: Transform + pos: -40.5,-37.5 + parent: 2 + - uid: 9893 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - uid: 9894 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 9895 + components: + - type: Transform + pos: -7.5,-67.5 + parent: 2 + - uid: 9896 + components: + - type: Transform + pos: -6.5,-67.5 + parent: 2 + - uid: 9897 + components: + - type: Transform + pos: -8.5,-67.5 + parent: 2 + - uid: 9898 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 + - uid: 9899 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 9900 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - uid: 9901 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 + - uid: 9902 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 9903 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 9904 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 9905 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 9906 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 2 + - uid: 9907 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 9908 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 9909 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 9910 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 2 + - uid: 9911 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - uid: 9912 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 2 + - uid: 9913 + components: + - type: Transform + pos: -34.5,-12.5 + parent: 2 + - uid: 9914 + components: + - type: Transform + pos: -34.5,-13.5 + parent: 2 + - uid: 9915 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - uid: 9916 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 2 + - uid: 9917 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - uid: 9918 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 2 + - uid: 9919 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 9920 + components: + - type: Transform + pos: -38.5,-16.5 + parent: 2 + - uid: 9921 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 2 + - uid: 9922 + components: + - type: Transform + pos: -42.5,-18.5 + parent: 2 + - uid: 9923 + components: + - type: Transform + pos: -43.5,-18.5 + parent: 2 + - uid: 9924 + components: + - type: Transform + pos: -44.5,-18.5 + parent: 2 + - uid: 9925 + components: + - type: Transform + pos: -45.5,-18.5 + parent: 2 + - uid: 9926 + components: + - type: Transform + pos: -46.5,-18.5 + parent: 2 + - uid: 9927 + components: + - type: Transform + pos: -47.5,-18.5 + parent: 2 + - uid: 9928 + components: + - type: Transform + pos: -48.5,-18.5 + parent: 2 + - uid: 9929 + components: + - type: Transform + pos: -25.5,1.5 + parent: 2 + - uid: 9930 + components: + - type: Transform + pos: -50.5,-17.5 + parent: 2 + - uid: 9931 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 2 + - uid: 9932 + components: + - type: Transform + pos: -50.5,-15.5 + parent: 2 + - uid: 9933 + components: + - type: Transform + pos: -50.5,-14.5 + parent: 2 + - uid: 9934 + components: + - type: Transform + pos: -50.5,-13.5 + parent: 2 + - uid: 9935 + components: + - type: Transform + pos: -50.5,-12.5 + parent: 2 + - uid: 9936 + components: + - type: Transform + pos: -50.5,-11.5 + parent: 2 + - uid: 9937 + components: + - type: Transform + pos: -50.5,-10.5 + parent: 2 + - uid: 9938 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 2 + - uid: 9939 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 2 + - uid: 9940 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 2 + - uid: 9941 + components: + - type: Transform + pos: 51.5,-6.5 + parent: 2 + - uid: 9942 + components: + - type: Transform + pos: 51.5,-5.5 + parent: 2 + - uid: 9943 + components: + - type: Transform + pos: 51.5,-4.5 + parent: 2 + - uid: 9944 + components: + - type: Transform + pos: 51.5,-3.5 + parent: 2 + - uid: 9945 + components: + - type: Transform + pos: 51.5,-2.5 + parent: 2 + - uid: 9946 + components: + - type: Transform + pos: 51.5,-1.5 + parent: 2 + - uid: 9947 + components: + - type: Transform + pos: 51.5,-0.5 + parent: 2 + - uid: 9948 + components: + - type: Transform + pos: 51.5,0.5 + parent: 2 + - uid: 9949 + components: + - type: Transform + pos: 51.5,1.5 + parent: 2 + - uid: 9950 + components: + - type: Transform + pos: 51.5,2.5 + parent: 2 + - uid: 9951 + components: + - type: Transform + pos: 51.5,3.5 + parent: 2 + - uid: 9952 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - uid: 9953 + components: + - type: Transform + pos: 52.5,4.5 + parent: 2 + - uid: 9954 + components: + - type: Transform + pos: 53.5,4.5 + parent: 2 + - uid: 9955 + components: + - type: Transform + pos: 54.5,4.5 + parent: 2 + - uid: 9956 + components: + - type: Transform + pos: 54.5,5.5 + parent: 2 + - uid: 9957 + components: + - type: Transform + pos: 54.5,6.5 + parent: 2 + - uid: 9958 + components: + - type: Transform + pos: 54.5,7.5 + parent: 2 + - uid: 9959 + components: + - type: Transform + pos: 54.5,8.5 + parent: 2 + - uid: 9960 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 + - uid: 9961 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 + - uid: 9962 + components: + - type: Transform + pos: 47.5,15.5 + parent: 2 + - uid: 9963 + components: + - type: Transform + pos: 47.5,14.5 + parent: 2 + - uid: 9964 + components: + - type: Transform + pos: 47.5,13.5 + parent: 2 + - uid: 9965 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 + - uid: 9966 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 + - uid: 9967 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 9968 + components: + - type: Transform + pos: 51.5,13.5 + parent: 2 + - uid: 9969 + components: + - type: Transform + pos: 52.5,13.5 + parent: 2 + - uid: 9970 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 9971 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - uid: 9972 + components: + - type: Transform + pos: 56.5,13.5 + parent: 2 + - uid: 9973 + components: + - type: Transform + pos: 57.5,13.5 + parent: 2 + - uid: 9974 + components: + - type: Transform + pos: 58.5,13.5 + parent: 2 + - uid: 9975 + components: + - type: Transform + pos: 59.5,13.5 + parent: 2 + - uid: 9976 + components: + - type: Transform + pos: 59.5,12.5 + parent: 2 + - uid: 9977 + components: + - type: Transform + pos: 59.5,10.5 + parent: 2 + - uid: 9978 + components: + - type: Transform + pos: 58.5,10.5 + parent: 2 + - uid: 9979 + components: + - type: Transform + pos: 57.5,10.5 + parent: 2 + - uid: 9980 + components: + - type: Transform + pos: 55.5,10.5 + parent: 2 + - uid: 9981 + components: + - type: Transform + pos: 54.5,10.5 + parent: 2 + - uid: 9982 + components: + - type: Transform + pos: 53.5,10.5 + parent: 2 + - uid: 9983 + components: + - type: Transform + pos: 52.5,10.5 + parent: 2 + - uid: 9984 + components: + - type: Transform + pos: 51.5,10.5 + parent: 2 + - uid: 9985 + components: + - type: Transform + pos: 49.5,10.5 + parent: 2 + - uid: 9986 + components: + - type: Transform + pos: 48.5,10.5 + parent: 2 + - uid: 9987 + components: + - type: Transform + pos: 47.5,10.5 + parent: 2 + - uid: 9988 + components: + - type: Transform + pos: 46.5,10.5 + parent: 2 + - uid: 9989 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 9990 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 9991 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - uid: 9992 + components: + - type: Transform + pos: 32.5,3.5 + parent: 2 + - uid: 9993 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 9994 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 + - uid: 9995 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 9996 + components: + - type: Transform + pos: 37.5,3.5 + parent: 2 + - uid: 9997 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 + - uid: 9998 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - uid: 9999 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 10000 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 10001 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 10002 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 + - uid: 10003 + components: + - type: Transform + pos: 44.5,3.5 + parent: 2 + - uid: 10004 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 + - uid: 10005 + components: + - type: Transform + pos: 45.5,5.5 + parent: 2 + - uid: 10006 + components: + - type: Transform + pos: 45.5,6.5 + parent: 2 + - uid: 10007 + components: + - type: Transform + pos: 45.5,7.5 + parent: 2 + - uid: 10008 + components: + - type: Transform + pos: 45.5,9.5 + parent: 2 + - uid: 10009 + components: + - type: Transform + pos: 41.5,29.5 + parent: 2 + - uid: 10010 + components: + - type: Transform + pos: 42.5,29.5 + parent: 2 + - uid: 10011 + components: + - type: Transform + pos: 43.5,29.5 + parent: 2 + - uid: 10012 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 + - uid: 10013 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 10014 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 10015 + components: + - type: Transform + pos: 48.5,29.5 + parent: 2 + - uid: 10016 + components: + - type: Transform + pos: 49.5,29.5 + parent: 2 + - uid: 10017 + components: + - type: Transform + pos: 50.5,29.5 + parent: 2 + - uid: 10018 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 10019 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 10020 + components: + - type: Transform + pos: 53.5,29.5 + parent: 2 + - uid: 10021 + components: + - type: Transform + pos: 53.5,33.5 + parent: 2 + - uid: 10022 + components: + - type: Transform + pos: 52.5,33.5 + parent: 2 + - uid: 10023 + components: + - type: Transform + pos: 51.5,33.5 + parent: 2 + - uid: 10024 + components: + - type: Transform + pos: 50.5,33.5 + parent: 2 + - uid: 10025 + components: + - type: Transform + pos: 49.5,33.5 + parent: 2 + - uid: 10026 + components: + - type: Transform + pos: 48.5,33.5 + parent: 2 + - uid: 10027 + components: + - type: Transform + pos: 46.5,33.5 + parent: 2 + - uid: 10028 + components: + - type: Transform + pos: 45.5,33.5 + parent: 2 + - uid: 10029 + components: + - type: Transform + pos: 44.5,33.5 + parent: 2 + - uid: 10030 + components: + - type: Transform + pos: 43.5,33.5 + parent: 2 + - uid: 10031 + components: + - type: Transform + pos: 42.5,33.5 + parent: 2 + - uid: 10032 + components: + - type: Transform + pos: 41.5,33.5 + parent: 2 + - uid: 10033 + components: + - type: Transform + pos: 41.5,37.5 + parent: 2 + - uid: 10034 + components: + - type: Transform + pos: 42.5,37.5 + parent: 2 + - uid: 10035 + components: + - type: Transform + pos: 43.5,37.5 + parent: 2 + - uid: 10036 + components: + - type: Transform + pos: 44.5,37.5 + parent: 2 + - uid: 10037 + components: + - type: Transform + pos: 45.5,37.5 + parent: 2 + - uid: 10038 + components: + - type: Transform + pos: 46.5,37.5 + parent: 2 + - uid: 10039 + components: + - type: Transform + pos: 53.5,37.5 + parent: 2 + - uid: 10040 + components: + - type: Transform + pos: 52.5,37.5 + parent: 2 + - uid: 10041 + components: + - type: Transform + pos: 51.5,37.5 + parent: 2 + - uid: 10042 + components: + - type: Transform + pos: 50.5,37.5 + parent: 2 + - uid: 10043 + components: + - type: Transform + pos: 49.5,37.5 + parent: 2 + - uid: 10044 + components: + - type: Transform + pos: 48.5,37.5 + parent: 2 + - uid: 10045 + components: + - type: Transform + pos: 47.5,40.5 + parent: 2 + - uid: 10046 + components: + - type: Transform + pos: 47.5,39.5 + parent: 2 + - uid: 10047 + components: + - type: Transform + pos: 47.5,38.5 + parent: 2 + - uid: 10048 + components: + - type: Transform + pos: 47.5,37.5 + parent: 2 + - uid: 10049 + components: + - type: Transform + pos: 47.5,36.5 + parent: 2 + - uid: 10050 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - uid: 10051 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 + - uid: 10052 + components: + - type: Transform + pos: 2.5,-67.5 + parent: 2 + - uid: 10053 + components: + - type: Transform + pos: 0.5,-67.5 + parent: 2 + - uid: 10054 + components: + - type: Transform + pos: 5.5,-67.5 + parent: 2 + - uid: 10055 + components: + - type: Transform + pos: 3.5,-67.5 + parent: 2 + - uid: 10056 + components: + - type: Transform + pos: 4.5,-67.5 + parent: 2 + - uid: 10057 + components: + - type: Transform + pos: 1.5,-67.5 + parent: 2 + - uid: 10058 + components: + - type: Transform + pos: -0.5,-67.5 + parent: 2 + - uid: 10059 + components: + - type: Transform + pos: -1.5,-67.5 + parent: 2 + - uid: 10060 + components: + - type: Transform + pos: -5.5,-67.5 + parent: 2 + - uid: 10061 + components: + - type: Transform + pos: -2.5,-67.5 + parent: 2 + - uid: 10062 + components: + - type: Transform + pos: -3.5,-67.5 + parent: 2 + - uid: 10063 + components: + - type: Transform + pos: -4.5,-67.5 + parent: 2 + - uid: 10064 + components: + - type: Transform + pos: 8.5,-67.5 + parent: 2 + - uid: 10065 + components: + - type: Transform + pos: 7.5,-67.5 + parent: 2 + - uid: 10066 + components: + - type: Transform + pos: 6.5,-67.5 + parent: 2 + - uid: 10067 + components: + - type: Transform + pos: 47.5,33.5 + parent: 2 + - uid: 10068 + components: + - type: Transform + pos: 47.5,32.5 + parent: 2 + - uid: 10069 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - uid: 10070 + components: + - type: Transform + pos: 47.5,30.5 + parent: 2 + - uid: 10071 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 10072 + components: + - type: Transform + pos: 47.5,28.5 + parent: 2 + - uid: 10073 + components: + - type: Transform + pos: 47.5,27.5 + parent: 2 + - uid: 10074 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 10075 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 10076 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 10077 + components: + - type: Transform + pos: -55.5,29.5 + parent: 2 + - uid: 10078 + components: + - type: Transform + pos: -54.5,29.5 + parent: 2 + - uid: 10079 + components: + - type: Transform + pos: -53.5,29.5 + parent: 2 + - uid: 10080 + components: + - type: Transform + pos: -52.5,29.5 + parent: 2 + - uid: 10081 + components: + - type: Transform + pos: -51.5,29.5 + parent: 2 + - uid: 10082 + components: + - type: Transform + pos: -50.5,29.5 + parent: 2 + - uid: 10083 + components: + - type: Transform + pos: -48.5,29.5 + parent: 2 + - uid: 10084 + components: + - type: Transform + pos: -47.5,29.5 + parent: 2 + - uid: 10085 + components: + - type: Transform + pos: -46.5,29.5 + parent: 2 + - uid: 10086 + components: + - type: Transform + pos: -45.5,29.5 + parent: 2 + - uid: 10087 + components: + - type: Transform + pos: -44.5,29.5 + parent: 2 + - uid: 10088 + components: + - type: Transform + pos: -43.5,29.5 + parent: 2 + - uid: 10089 + components: + - type: Transform + pos: -43.5,33.5 + parent: 2 + - uid: 10090 + components: + - type: Transform + pos: -44.5,33.5 + parent: 2 + - uid: 10091 + components: + - type: Transform + pos: -45.5,33.5 + parent: 2 + - uid: 10092 + components: + - type: Transform + pos: -46.5,33.5 + parent: 2 + - uid: 10093 + components: + - type: Transform + pos: -47.5,33.5 + parent: 2 + - uid: 10094 + components: + - type: Transform + pos: -48.5,33.5 + parent: 2 + - uid: 10095 + components: + - type: Transform + pos: -50.5,33.5 + parent: 2 + - uid: 10096 + components: + - type: Transform + pos: -51.5,33.5 + parent: 2 + - uid: 10097 + components: + - type: Transform + pos: -52.5,33.5 + parent: 2 + - uid: 10098 + components: + - type: Transform + pos: -53.5,33.5 + parent: 2 + - uid: 10099 + components: + - type: Transform + pos: -54.5,33.5 + parent: 2 + - uid: 10100 + components: + - type: Transform + pos: -55.5,33.5 + parent: 2 + - uid: 10101 + components: + - type: Transform + pos: -55.5,37.5 + parent: 2 + - uid: 10102 + components: + - type: Transform + pos: -54.5,37.5 + parent: 2 + - uid: 10103 + components: + - type: Transform + pos: -53.5,37.5 + parent: 2 + - uid: 10104 + components: + - type: Transform + pos: -52.5,37.5 + parent: 2 + - uid: 10105 + components: + - type: Transform + pos: -51.5,37.5 + parent: 2 + - uid: 10106 + components: + - type: Transform + pos: -50.5,37.5 + parent: 2 + - uid: 10107 + components: + - type: Transform + pos: -43.5,37.5 + parent: 2 + - uid: 10108 + components: + - type: Transform + pos: -44.5,37.5 + parent: 2 + - uid: 10109 + components: + - type: Transform + pos: -45.5,37.5 + parent: 2 + - uid: 10110 + components: + - type: Transform + pos: -46.5,37.5 + parent: 2 + - uid: 10111 + components: + - type: Transform + pos: -47.5,37.5 + parent: 2 + - uid: 10112 + components: + - type: Transform + pos: -48.5,37.5 + parent: 2 + - uid: 10113 + components: + - type: Transform + pos: -49.5,40.5 + parent: 2 + - uid: 10114 + components: + - type: Transform + pos: -49.5,39.5 + parent: 2 + - uid: 10115 + components: + - type: Transform + pos: -49.5,38.5 + parent: 2 + - uid: 10116 + components: + - type: Transform + pos: -49.5,37.5 + parent: 2 + - uid: 10117 + components: + - type: Transform + pos: -49.5,36.5 + parent: 2 + - uid: 10118 + components: + - type: Transform + pos: -49.5,35.5 + parent: 2 + - uid: 10119 + components: + - type: Transform + pos: -49.5,34.5 + parent: 2 + - uid: 10120 + components: + - type: Transform + pos: -49.5,33.5 + parent: 2 + - uid: 10121 + components: + - type: Transform + pos: -49.5,32.5 + parent: 2 + - uid: 10122 + components: + - type: Transform + pos: -49.5,31.5 + parent: 2 + - uid: 10123 + components: + - type: Transform + pos: -49.5,30.5 + parent: 2 + - uid: 10124 + components: + - type: Transform + pos: -49.5,29.5 + parent: 2 + - uid: 10125 + components: + - type: Transform + pos: -49.5,28.5 + parent: 2 + - uid: 10126 + components: + - type: Transform + pos: -49.5,27.5 + parent: 2 + - uid: 10127 + components: + - type: Transform + pos: -49.5,23.5 + parent: 2 + - uid: 10128 + components: + - type: Transform + pos: -49.5,22.5 + parent: 2 + - uid: 10129 + components: + - type: Transform + pos: -49.5,21.5 + parent: 2 + - uid: 10130 + components: + - type: Transform + pos: -49.5,19.5 + parent: 2 + - uid: 10131 + components: + - type: Transform + pos: -49.5,18.5 + parent: 2 + - uid: 10132 + components: + - type: Transform + pos: -49.5,17.5 + parent: 2 + - uid: 10133 + components: + - type: Transform + pos: -48.5,17.5 + parent: 2 + - uid: 10134 + components: + - type: Transform + pos: -48.5,16.5 + parent: 2 + - uid: 10135 + components: + - type: Transform + pos: -48.5,15.5 + parent: 2 + - uid: 10136 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 10137 + components: + - type: Transform + pos: -48.5,13.5 + parent: 2 + - uid: 10138 + components: + - type: Transform + pos: -47.5,13.5 + parent: 2 + - uid: 10139 + components: + - type: Transform + pos: -43.5,12.5 + parent: 2 + - uid: 10140 + components: + - type: Transform + pos: -44.5,12.5 + parent: 2 + - uid: 10141 + components: + - type: Transform + pos: -45.5,12.5 + parent: 2 + - uid: 10142 + components: + - type: Transform + pos: -46.5,12.5 + parent: 2 + - uid: 10143 + components: + - type: Transform + pos: -47.5,12.5 + parent: 2 + - uid: 10144 + components: + - type: Transform + pos: -47.5,11.5 + parent: 2 + - uid: 10145 + components: + - type: Transform + pos: -47.5,10.5 + parent: 2 + - uid: 10146 + components: + - type: Transform + pos: -47.5,9.5 + parent: 2 + - uid: 10147 + components: + - type: Transform + pos: -48.5,9.5 + parent: 2 + - uid: 10148 + components: + - type: Transform + pos: -49.5,9.5 + parent: 2 + - uid: 10149 + components: + - type: Transform + pos: -49.5,8.5 + parent: 2 + - uid: 10150 + components: + - type: Transform + pos: -49.5,7.5 + parent: 2 + - uid: 10151 + components: + - type: Transform + pos: -49.5,5.5 + parent: 2 + - uid: 10152 + components: + - type: Transform + pos: -49.5,4.5 + parent: 2 + - uid: 10153 + components: + - type: Transform + pos: -49.5,3.5 + parent: 2 + - uid: 10154 + components: + - type: Transform + pos: -49.5,2.5 + parent: 2 + - uid: 10155 + components: + - type: Transform + pos: -49.5,1.5 + parent: 2 + - uid: 10156 + components: + - type: Transform + pos: 49.5,-23.5 + parent: 2 + - uid: 10157 + components: + - type: Transform + pos: 49.5,-19.5 + parent: 2 + - uid: 10158 + components: + - type: Transform + pos: 49.5,-24.5 + parent: 2 + - uid: 10159 + components: + - type: Transform + pos: 15.5,-76.5 + parent: 2 + - uid: 10160 + components: + - type: Transform + pos: 16.5,-76.5 + parent: 2 + - uid: 10161 + components: + - type: Transform + pos: 17.5,-76.5 + parent: 2 + - uid: 10162 + components: + - type: Transform + pos: 18.5,-76.5 + parent: 2 + - uid: 10163 + components: + - type: Transform + pos: 19.5,-76.5 + parent: 2 + - uid: 10164 + components: + - type: Transform + pos: 21.5,-76.5 + parent: 2 + - uid: 10165 + components: + - type: Transform + pos: 20.5,-76.5 + parent: 2 + - uid: 10166 + components: + - type: Transform + pos: 22.5,-76.5 + parent: 2 + - uid: 10167 + components: + - type: Transform + pos: 22.5,-77.5 + parent: 2 + - uid: 10168 + components: + - type: Transform + pos: 22.5,-78.5 + parent: 2 + - uid: 10169 + components: + - type: Transform + pos: 22.5,-79.5 + parent: 2 + - uid: 10170 + components: + - type: Transform + pos: 22.5,-80.5 + parent: 2 + - uid: 10171 + components: + - type: Transform + pos: 23.5,-79.5 + parent: 2 + - uid: 10172 + components: + - type: Transform + pos: 23.5,-80.5 + parent: 2 + - uid: 10173 + components: + - type: Transform + pos: 23.5,-81.5 + parent: 2 + - uid: 10174 + components: + - type: Transform + pos: 23.5,-82.5 + parent: 2 + - uid: 10175 + components: + - type: Transform + pos: 14.5,-72.5 + parent: 2 + - uid: 10176 + components: + - type: Transform + pos: 15.5,-72.5 + parent: 2 + - uid: 10177 + components: + - type: Transform + pos: 16.5,-72.5 + parent: 2 + - uid: 10178 + components: + - type: Transform + pos: -42.5,-61.5 + parent: 2 + - uid: 10179 + components: + - type: Transform + pos: -43.5,-61.5 + parent: 2 + - uid: 10180 + components: + - type: Transform + pos: -44.5,-61.5 + parent: 2 + - uid: 10181 + components: + - type: Transform + pos: -45.5,-61.5 + parent: 2 + - uid: 10182 + components: + - type: Transform + pos: -46.5,-61.5 + parent: 2 + - uid: 10183 + components: + - type: Transform + pos: -47.5,-61.5 + parent: 2 + - uid: 10184 + components: + - type: Transform + pos: -48.5,-61.5 + parent: 2 + - uid: 10185 + components: + - type: Transform + pos: -49.5,-61.5 + parent: 2 + - uid: 10186 + components: + - type: Transform + pos: -50.5,-61.5 + parent: 2 + - uid: 10187 + components: + - type: Transform + pos: -51.5,-61.5 + parent: 2 + - uid: 10188 + components: + - type: Transform + pos: -52.5,-61.5 + parent: 2 + - uid: 10189 + components: + - type: Transform + pos: -53.5,-61.5 + parent: 2 + - uid: 10190 + components: + - type: Transform + pos: -54.5,-61.5 + parent: 2 + - uid: 10191 + components: + - type: Transform + pos: -55.5,-61.5 + parent: 2 + - uid: 10192 + components: + - type: Transform + pos: -56.5,-61.5 + parent: 2 + - uid: 10193 + components: + - type: Transform + pos: -53.5,-55.5 + parent: 2 + - uid: 10194 + components: + - type: Transform + pos: -53.5,-56.5 + parent: 2 + - uid: 10195 + components: + - type: Transform + pos: -53.5,-57.5 + parent: 2 + - uid: 10196 + components: + - type: Transform + pos: -53.5,-58.5 + parent: 2 + - uid: 10197 + components: + - type: Transform + pos: -53.5,-59.5 + parent: 2 + - uid: 10198 + components: + - type: Transform + pos: -53.5,-60.5 + parent: 2 + - uid: 10199 + components: + - type: Transform + pos: -49.5,-60.5 + parent: 2 + - uid: 10200 + components: + - type: Transform + pos: -49.5,-59.5 + parent: 2 + - uid: 10201 + components: + - type: Transform + pos: -49.5,-58.5 + parent: 2 + - uid: 10202 + components: + - type: Transform + pos: -49.5,-57.5 + parent: 2 + - uid: 10203 + components: + - type: Transform + pos: -49.5,-56.5 + parent: 2 + - uid: 10204 + components: + - type: Transform + pos: -49.5,-55.5 + parent: 2 + - uid: 10205 + components: + - type: Transform + pos: -45.5,-55.5 + parent: 2 + - uid: 10206 + components: + - type: Transform + pos: -45.5,-56.5 + parent: 2 + - uid: 10207 + components: + - type: Transform + pos: -45.5,-57.5 + parent: 2 + - uid: 10208 + components: + - type: Transform + pos: -45.5,-58.5 + parent: 2 + - uid: 10209 + components: + - type: Transform + pos: -45.5,-59.5 + parent: 2 + - uid: 10210 + components: + - type: Transform + pos: -45.5,-60.5 + parent: 2 + - uid: 10211 + components: + - type: Transform + pos: -45.5,-62.5 + parent: 2 + - uid: 10212 + components: + - type: Transform + pos: -45.5,-63.5 + parent: 2 + - uid: 10213 + components: + - type: Transform + pos: -45.5,-64.5 + parent: 2 + - uid: 10214 + components: + - type: Transform + pos: -45.5,-65.5 + parent: 2 + - uid: 10215 + components: + - type: Transform + pos: -45.5,-66.5 + parent: 2 + - uid: 10216 + components: + - type: Transform + pos: -45.5,-67.5 + parent: 2 + - uid: 10217 + components: + - type: Transform + pos: -49.5,-62.5 + parent: 2 + - uid: 10218 + components: + - type: Transform + pos: -49.5,-63.5 + parent: 2 + - uid: 10219 + components: + - type: Transform + pos: -49.5,-64.5 + parent: 2 + - uid: 10220 + components: + - type: Transform + pos: -49.5,-65.5 + parent: 2 + - uid: 10221 + components: + - type: Transform + pos: -49.5,-66.5 + parent: 2 + - uid: 10222 + components: + - type: Transform + pos: -49.5,-67.5 + parent: 2 + - uid: 10223 + components: + - type: Transform + pos: -53.5,-62.5 + parent: 2 + - uid: 10224 + components: + - type: Transform + pos: -53.5,-63.5 + parent: 2 + - uid: 10225 + components: + - type: Transform + pos: -53.5,-64.5 + parent: 2 + - uid: 10226 + components: + - type: Transform + pos: -53.5,-65.5 + parent: 2 + - uid: 10227 + components: + - type: Transform + pos: -53.5,-66.5 + parent: 2 + - uid: 10228 + components: + - type: Transform + pos: -53.5,-67.5 + parent: 2 + - uid: 10229 + components: + - type: Transform + pos: 49.5,-39.5 + parent: 2 + - uid: 10230 + components: + - type: Transform + pos: 49.5,-41.5 + parent: 2 + - uid: 10231 + components: + - type: Transform + pos: 49.5,-48.5 + parent: 2 + - uid: 10232 + components: + - type: Transform + pos: 49.5,-47.5 + parent: 2 + - uid: 10233 + components: + - type: Transform + pos: 49.5,-46.5 + parent: 2 + - uid: 10234 + components: + - type: Transform + pos: 49.5,-45.5 + parent: 2 + - uid: 10235 + components: + - type: Transform + pos: 49.5,-44.5 + parent: 2 + - uid: 10236 + components: + - type: Transform + pos: 49.5,-52.5 + parent: 2 + - uid: 10237 + components: + - type: Transform + pos: 49.5,-51.5 + parent: 2 + - uid: 10238 + components: + - type: Transform + pos: 49.5,-50.5 + parent: 2 + - uid: 10239 + components: + - type: Transform + pos: -9.5,-71.5 + parent: 2 + - uid: 10240 + components: + - type: Transform + pos: -9.5,-72.5 + parent: 2 + - uid: 10241 + components: + - type: Transform + pos: -9.5,-73.5 + parent: 2 + - uid: 10242 + components: + - type: Transform + pos: -9.5,-74.5 + parent: 2 + - uid: 10243 + components: + - type: Transform + pos: -9.5,-75.5 + parent: 2 + - uid: 10244 + components: + - type: Transform + pos: -9.5,-76.5 + parent: 2 + - uid: 10245 + components: + - type: Transform + pos: -10.5,-76.5 + parent: 2 + - uid: 10246 + components: + - type: Transform + pos: -7.5,-70.5 + parent: 2 + - uid: 10247 + components: + - type: Transform + pos: -6.5,-70.5 + parent: 2 + - uid: 10248 + components: + - type: Transform + pos: -6.5,-71.5 + parent: 2 + - uid: 10249 + components: + - type: Transform + pos: -6.5,-72.5 + parent: 2 + - uid: 10250 + components: + - type: Transform + pos: -6.5,-74.5 + parent: 2 + - uid: 10251 + components: + - type: Transform + pos: 6.5,-70.5 + parent: 2 + - uid: 10252 + components: + - type: Transform + pos: 5.5,-70.5 + parent: 2 + - uid: 10253 + components: + - type: Transform + pos: 5.5,-71.5 + parent: 2 + - uid: 10254 + components: + - type: Transform + pos: 5.5,-72.5 + parent: 2 + - uid: 10255 + components: + - type: Transform + pos: 5.5,-74.5 + parent: 2 + - uid: 10256 + components: + - type: Transform + pos: 1.5,-70.5 + parent: 2 + - uid: 10257 + components: + - type: Transform + pos: 1.5,-69.5 + parent: 2 + - uid: 10258 + components: + - type: Transform + pos: 1.5,-72.5 + parent: 2 + - uid: 10259 + components: + - type: Transform + pos: 1.5,-71.5 + parent: 2 + - uid: 10260 + components: + - type: Transform + pos: -2.5,-70.5 + parent: 2 + - uid: 10261 + components: + - type: Transform + pos: -2.5,-69.5 + parent: 2 + - uid: 10262 + components: + - type: Transform + pos: -1.5,-69.5 + parent: 2 + - uid: 10263 + components: + - type: Transform + pos: -0.5,-69.5 + parent: 2 + - uid: 10264 + components: + - type: Transform + pos: 0.5,-69.5 + parent: 2 + - uid: 10265 + components: + - type: Transform + pos: -2.5,-72.5 + parent: 2 + - uid: 10266 + components: + - type: Transform + pos: -3.5,-73.5 + parent: 2 + - uid: 10267 + components: + - type: Transform + pos: -4.5,-73.5 + parent: 2 + - uid: 10268 + components: + - type: Transform + pos: -6.5,-73.5 + parent: 2 + - uid: 10269 + components: + - type: Transform + pos: 2.5,-73.5 + parent: 2 + - uid: 10270 + components: + - type: Transform + pos: 3.5,-73.5 + parent: 2 + - uid: 10271 + components: + - type: Transform + pos: 17.5,-72.5 + parent: 2 + - uid: 10272 + components: + - type: Transform + pos: -2.5,-71.5 + parent: 2 + - uid: 10273 + components: + - type: Transform + pos: -2.5,-73.5 + parent: 2 + - uid: 10274 + components: + - type: Transform + pos: 81.5,-69.5 + parent: 2 + - uid: 10275 + components: + - type: Transform + pos: 81.5,-70.5 + parent: 2 + - uid: 10276 + components: + - type: Transform + pos: 81.5,-71.5 + parent: 2 + - uid: 10277 + components: + - type: Transform + pos: 81.5,-72.5 + parent: 2 + - uid: 10278 + components: + - type: Transform + pos: 81.5,-73.5 + parent: 2 + - uid: 10279 + components: + - type: Transform + pos: 81.5,-74.5 + parent: 2 + - uid: 10280 + components: + - type: Transform + pos: 81.5,-75.5 + parent: 2 + - uid: 10281 + components: + - type: Transform + pos: 81.5,-76.5 + parent: 2 + - uid: 10282 + components: + - type: Transform + pos: 81.5,-77.5 + parent: 2 + - uid: 10283 + components: + - type: Transform + pos: 81.5,-78.5 + parent: 2 + - uid: 10284 + components: + - type: Transform + pos: 81.5,-79.5 + parent: 2 + - uid: 10285 + components: + - type: Transform + pos: 81.5,-80.5 + parent: 2 + - uid: 10286 + components: + - type: Transform + pos: 81.5,-81.5 + parent: 2 + - uid: 10287 + components: + - type: Transform + pos: 81.5,-82.5 + parent: 2 + - uid: 10288 + components: + - type: Transform + pos: 81.5,-83.5 + parent: 2 + - uid: 10289 + components: + - type: Transform + pos: 81.5,-84.5 + parent: 2 + - uid: 10290 + components: + - type: Transform + pos: 81.5,-85.5 + parent: 2 + - uid: 10291 + components: + - type: Transform + pos: 80.5,-82.5 + parent: 2 + - uid: 10292 + components: + - type: Transform + pos: 79.5,-82.5 + parent: 2 + - uid: 10293 + components: + - type: Transform + pos: 78.5,-82.5 + parent: 2 + - uid: 10294 + components: + - type: Transform + pos: 77.5,-82.5 + parent: 2 + - uid: 10295 + components: + - type: Transform + pos: 76.5,-82.5 + parent: 2 + - uid: 10296 + components: + - type: Transform + pos: 75.5,-82.5 + parent: 2 + - uid: 10297 + components: + - type: Transform + pos: 82.5,-82.5 + parent: 2 + - uid: 10298 + components: + - type: Transform + pos: 83.5,-82.5 + parent: 2 + - uid: 10299 + components: + - type: Transform + pos: 84.5,-82.5 + parent: 2 + - uid: 10300 + components: + - type: Transform + pos: 85.5,-82.5 + parent: 2 + - uid: 10301 + components: + - type: Transform + pos: 86.5,-82.5 + parent: 2 + - uid: 10302 + components: + - type: Transform + pos: 87.5,-82.5 + parent: 2 + - uid: 10303 + components: + - type: Transform + pos: 82.5,-78.5 + parent: 2 + - uid: 10304 + components: + - type: Transform + pos: 83.5,-78.5 + parent: 2 + - uid: 10305 + components: + - type: Transform + pos: 84.5,-78.5 + parent: 2 + - uid: 10306 + components: + - type: Transform + pos: 85.5,-78.5 + parent: 2 + - uid: 10307 + components: + - type: Transform + pos: 86.5,-78.5 + parent: 2 + - uid: 10308 + components: + - type: Transform + pos: 87.5,-78.5 + parent: 2 + - uid: 10309 + components: + - type: Transform + pos: 80.5,-78.5 + parent: 2 + - uid: 10310 + components: + - type: Transform + pos: 79.5,-78.5 + parent: 2 + - uid: 10311 + components: + - type: Transform + pos: 78.5,-78.5 + parent: 2 + - uid: 10312 + components: + - type: Transform + pos: 77.5,-78.5 + parent: 2 + - uid: 10313 + components: + - type: Transform + pos: 76.5,-78.5 + parent: 2 + - uid: 10314 + components: + - type: Transform + pos: 75.5,-78.5 + parent: 2 + - uid: 10315 + components: + - type: Transform + pos: 80.5,-74.5 + parent: 2 + - uid: 10316 + components: + - type: Transform + pos: 79.5,-74.5 + parent: 2 + - uid: 10317 + components: + - type: Transform + pos: 78.5,-74.5 + parent: 2 + - uid: 10318 + components: + - type: Transform + pos: 77.5,-74.5 + parent: 2 + - uid: 10319 + components: + - type: Transform + pos: 76.5,-74.5 + parent: 2 + - uid: 10320 + components: + - type: Transform + pos: 75.5,-74.5 + parent: 2 + - uid: 10321 + components: + - type: Transform + pos: 82.5,-74.5 + parent: 2 + - uid: 10322 + components: + - type: Transform + pos: 83.5,-74.5 + parent: 2 + - uid: 10323 + components: + - type: Transform + pos: 84.5,-74.5 + parent: 2 + - uid: 10324 + components: + - type: Transform + pos: 85.5,-74.5 + parent: 2 + - uid: 10325 + components: + - type: Transform + pos: 86.5,-74.5 + parent: 2 + - uid: 10326 + components: + - type: Transform + pos: 87.5,-74.5 + parent: 2 + - uid: 10327 + components: + - type: Transform + pos: 53.5,-73.5 + parent: 2 + - uid: 10328 + components: + - type: Transform + pos: 52.5,-73.5 + parent: 2 + - uid: 10329 + components: + - type: Transform + pos: 51.5,-73.5 + parent: 2 + - uid: 10330 + components: + - type: Transform + pos: 52.5,-74.5 + parent: 2 + - uid: 10331 + components: + - type: Transform + pos: 53.5,-74.5 + parent: 2 + - uid: 10332 + components: + - type: Transform + pos: 54.5,-74.5 + parent: 2 + - uid: 10333 + components: + - type: Transform + pos: 55.5,-74.5 + parent: 2 + - uid: 10334 + components: + - type: Transform + pos: 56.5,-74.5 + parent: 2 + - uid: 10335 + components: + - type: Transform + pos: 57.5,-74.5 + parent: 2 + - uid: 10336 + components: + - type: Transform + pos: 58.5,-74.5 + parent: 2 + - uid: 10337 + components: + - type: Transform + pos: 59.5,-74.5 + parent: 2 + - uid: 10338 + components: + - type: Transform + pos: 60.5,-74.5 + parent: 2 + - uid: 10339 + components: + - type: Transform + pos: 50.5,-73.5 + parent: 2 + - uid: 10340 + components: + - type: Transform + pos: 61.5,-73.5 + parent: 2 + - uid: 10341 + components: + - type: Transform + pos: 49.5,-73.5 + parent: 2 + - uid: 10342 + components: + - type: Transform + pos: 49.5,-72.5 + parent: 2 + - uid: 10343 + components: + - type: Transform + pos: 49.5,-71.5 + parent: 2 + - uid: 10344 + components: + - type: Transform + pos: 49.5,-70.5 + parent: 2 + - uid: 10345 + components: + - type: Transform + pos: 49.5,-69.5 + parent: 2 + - uid: 10346 + components: + - type: Transform + pos: 60.5,-73.5 + parent: 2 + - uid: 10347 + components: + - type: Transform + pos: 61.5,-74.5 + parent: 2 + - uid: 10348 + components: + - type: Transform + pos: -23.5,47.5 + parent: 2 + - uid: 10349 + components: + - type: Transform + pos: -23.5,48.5 + parent: 2 + - uid: 10350 + components: + - type: Transform + pos: -23.5,49.5 + parent: 2 + - uid: 10351 + components: + - type: Transform + pos: -23.5,50.5 + parent: 2 + - uid: 10352 + components: + - type: Transform + pos: 2.5,48.5 + parent: 2 + - uid: 10353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-36.5 + parent: 2 + - uid: 10354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-37.5 + parent: 2 + - uid: 10355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-35.5 + parent: 2 + - uid: 10356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-34.5 + parent: 2 + - uid: 10357 + components: + - type: Transform + pos: -0.5,41.5 + parent: 2 + - uid: 10358 + components: + - type: Transform + pos: 0.5,41.5 + parent: 2 + - uid: 10359 + components: + - type: Transform + pos: 1.5,41.5 + parent: 2 + - uid: 10360 + components: + - type: Transform + pos: 2.5,41.5 + parent: 2 + - uid: 10361 + components: + - type: Transform + pos: 3.5,41.5 + parent: 2 + - uid: 10362 + components: + - type: Transform + pos: 86.5,-41.5 + parent: 2 + - uid: 10363 + components: + - type: Transform + pos: 11.5,-77.5 + parent: 2 + - uid: 10364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-20.5 + parent: 2 + - uid: 10365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-19.5 + parent: 2 + - uid: 10366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-21.5 + parent: 2 + - uid: 10367 + components: + - type: Transform + pos: -75.5,-17.5 + parent: 2 + - uid: 10368 + components: + - type: Transform + pos: -68.5,-17.5 + parent: 2 + - uid: 10369 + components: + - type: Transform + pos: -78.5,-15.5 + parent: 2 + - uid: 10370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-19.5 + parent: 2 + - uid: 10371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-18.5 + parent: 2 + - uid: 10372 + components: + - type: Transform + pos: -12.5,-61.5 + parent: 2 + - uid: 10373 + components: + - type: Transform + pos: -31.5,1.5 + parent: 2 + - uid: 10374 + components: + - type: Transform + pos: -5.5,-62.5 + parent: 2 + - uid: 10375 + components: + - type: Transform + pos: 11.5,-76.5 + parent: 2 + - uid: 10376 + components: + - type: Transform + pos: -6.5,-63.5 + parent: 2 + - uid: 10377 + components: + - type: Transform + pos: -6.5,-62.5 + parent: 2 + - uid: 10378 + components: + - type: Transform + pos: -7.5,-63.5 + parent: 2 + - uid: 10379 + components: + - type: Transform + pos: -7.5,-62.5 + parent: 2 + - uid: 10380 + components: + - type: Transform + pos: -8.5,-63.5 + parent: 2 + - uid: 10381 + components: + - type: Transform + pos: -8.5,-62.5 + parent: 2 + - uid: 10382 + components: + - type: Transform + pos: 7.5,-41.5 + parent: 2 + - uid: 10383 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 2 + - uid: 10384 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 2 + - uid: 10385 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 2 + - uid: 10386 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 2 + - uid: 10387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-20.5 + parent: 2 + - uid: 10388 + components: + - type: Transform + pos: -33.5,-22.5 + parent: 2 + - uid: 10389 + components: + - type: Transform + pos: -33.5,-23.5 + parent: 2 + - uid: 10390 + components: + - type: Transform + pos: -14.5,11.5 + parent: 2 + - uid: 10391 + components: + - type: Transform + pos: -33.5,-21.5 + parent: 2 + - uid: 10392 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 2 + - uid: 10393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-52.5 + parent: 2 + - uid: 10394 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 2 + - uid: 10395 + components: + - type: Transform + pos: -80.5,8.5 + parent: 2 + - uid: 10396 + components: + - type: Transform + pos: -78.5,-14.5 + parent: 2 + - uid: 10397 + components: + - type: Transform + pos: -80.5,10.5 + parent: 2 + - uid: 10398 + components: + - type: Transform + pos: -80.5,-3.5 + parent: 2 + - uid: 10399 + components: + - type: Transform + pos: -80.5,-4.5 + parent: 2 + - uid: 10400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-54.5 + parent: 2 + - uid: 10401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-53.5 + parent: 2 + - uid: 10402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-51.5 + parent: 2 + - uid: 10403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-55.5 + parent: 2 + - uid: 10404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-51.5 + parent: 2 + - uid: 10405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-53.5 + parent: 2 + - uid: 10406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-51.5 + parent: 2 + - uid: 10407 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - uid: 10408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-17.5 + parent: 2 + - uid: 10409 + components: + - type: Transform + pos: -3.5,-36.5 + parent: 2 + - uid: 10410 + components: + - type: Transform + pos: -13.5,-76.5 + parent: 2 + - uid: 10411 + components: + - type: Transform + pos: -13.5,-77.5 + parent: 2 + - uid: 10412 + components: + - type: Transform + pos: 12.5,-76.5 + parent: 2 + - uid: 10413 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - uid: 10414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,11.5 + parent: 2 + - uid: 10415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,11.5 + parent: 2 + - uid: 10416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,11.5 + parent: 2 + - uid: 10417 + components: + - type: Transform + pos: -23.5,-66.5 + parent: 2 + - uid: 10418 + components: + - type: Transform + pos: -23.5,-67.5 + parent: 2 + - uid: 10419 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - uid: 10420 + components: + - type: Transform + pos: 45.5,3.5 + parent: 2 + - uid: 10421 + components: + - type: Transform + pos: 46.5,3.5 + parent: 2 + - uid: 10422 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - uid: 10423 + components: + - type: Transform + pos: 47.5,3.5 + parent: 2 + - uid: 10424 + components: + - type: Transform + pos: -4.5,-37.5 + parent: 2 + - uid: 10425 + components: + - type: Transform + pos: -9.5,-35.5 + parent: 2 + - uid: 10426 + components: + - type: Transform + pos: -8.5,-34.5 + parent: 2 + - uid: 10427 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 2 + - uid: 10428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-53.5 + parent: 2 + - uid: 10429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-35.5 + parent: 2 + - uid: 10430 + components: + - type: Transform + pos: -17.5,6.5 + parent: 2 + - uid: 10431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-39.5 + parent: 2 + - uid: 10432 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 10433 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - uid: 10434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 101.5,-43.5 + parent: 2 + - uid: 10435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-49.5 + parent: 2 + - uid: 10436 + components: + - type: Transform + pos: 0.5,47.5 + parent: 2 + - uid: 10437 + components: + - type: Transform + pos: -40.5,-45.5 + parent: 2 + - uid: 10438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-27.5 + parent: 2 + - uid: 10439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-26.5 + parent: 2 + - uid: 10440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-27.5 + parent: 2 + - uid: 10441 + components: + - type: Transform + pos: -23.5,-65.5 + parent: 2 + - uid: 10442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-26.5 + parent: 2 + - uid: 10443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-26.5 + parent: 2 + - uid: 10444 + components: + - type: Transform + pos: 12.5,-77.5 + parent: 2 + - uid: 10445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-27.5 + parent: 2 + - uid: 10446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-20.5 + parent: 2 + - uid: 10447 + components: + - type: Transform + pos: 80.5,-51.5 + parent: 2 + - uid: 10448 + components: + - type: Transform + pos: 81.5,-51.5 + parent: 2 + - uid: 10449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-19.5 + parent: 2 + - uid: 10450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-33.5 + parent: 2 + - uid: 10451 + components: + - type: Transform + pos: -17.5,2.5 + parent: 2 + - uid: 10452 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - uid: 10453 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 2 + - uid: 10454 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 2 + - uid: 10455 + components: + - type: Transform + pos: 5.5,-40.5 + parent: 2 + - uid: 10456 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 10457 + components: + - type: Transform + pos: 7.5,-34.5 + parent: 2 + - uid: 10458 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 + - uid: 10459 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 2 + - uid: 10460 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 2 + - uid: 10461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-53.5 + parent: 2 + - uid: 10462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-49.5 + parent: 2 + - uid: 10463 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 2 + - uid: 10464 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 10465 + components: + - type: Transform + pos: -13.5,-61.5 + parent: 2 + - uid: 10466 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 10467 + components: + - type: Transform + pos: 2.5,47.5 + parent: 2 + - uid: 10468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-52.5 + parent: 2 + - uid: 10469 + components: + - type: Transform + pos: -38.5,-11.5 + parent: 2 + - uid: 10470 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 + - uid: 10471 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 2 + - uid: 10472 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 2 + - uid: 10473 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 2 + - uid: 10474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-51.5 + parent: 2 + - uid: 10475 + components: + - type: Transform + pos: -12.5,-64.5 + parent: 2 + - uid: 10476 + components: + - type: Transform + pos: 7.5,17.5 + parent: 2 + - uid: 10477 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 2 + - uid: 10478 + components: + - type: Transform + pos: 49.5,4.5 + parent: 2 + - uid: 10479 + components: + - type: Transform + pos: 50.5,4.5 + parent: 2 + - uid: 10480 + components: + - type: Transform + pos: -34.5,-23.5 + parent: 2 + - uid: 10481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-39.5 + parent: 2 + - uid: 10482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-38.5 + parent: 2 + - uid: 10483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-36.5 + parent: 2 + - uid: 10484 + components: + - type: Transform + pos: -42.5,-45.5 + parent: 2 + - uid: 10485 + components: + - type: Transform + pos: -11.5,-64.5 + parent: 2 + - uid: 10486 + components: + - type: Transform + pos: -12.5,-66.5 + parent: 2 + - uid: 10487 + components: + - type: Transform + pos: -17.5,3.5 + parent: 2 + - uid: 10488 + components: + - type: Transform + pos: -1.5,48.5 + parent: 2 + - uid: 10489 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 10490 + components: + - type: Transform + pos: 0.5,48.5 + parent: 2 + - uid: 10491 + components: + - type: Transform + pos: 4.5,48.5 + parent: 2 + - uid: 10492 + components: + - type: Transform + pos: -1.5,47.5 + parent: 2 + - uid: 10493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-44.5 + parent: 2 + - uid: 10494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-45.5 + parent: 2 + - uid: 10495 + components: + - type: Transform + pos: -24.5,-65.5 + parent: 2 + - uid: 10496 + components: + - type: Transform + pos: -25.5,-65.5 + parent: 2 + - uid: 10497 + components: + - type: Transform + pos: -46.5,-45.5 + parent: 2 + - uid: 10498 + components: + - type: Transform + pos: -12.5,-65.5 + parent: 2 + - uid: 10499 + components: + - type: Transform + pos: -13.5,-66.5 + parent: 2 + - uid: 10500 + components: + - type: Transform + pos: 4.5,47.5 + parent: 2 + - uid: 10501 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 + - uid: 10502 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 + - uid: 10503 + components: + - type: Transform + pos: -12.5,-76.5 + parent: 2 + - uid: 10504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,17.5 + parent: 2 + - uid: 10505 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 2 + - uid: 10506 + components: + - type: Transform + pos: -17.5,24.5 + parent: 2 + - uid: 10507 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 2 + - uid: 10508 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 + - uid: 10509 + components: + - type: Transform + pos: -47.5,-45.5 + parent: 2 + - uid: 10510 + components: + - type: Transform + pos: -11.5,-66.5 + parent: 2 + - uid: 10511 + components: + - type: Transform + pos: -11.5,-61.5 + parent: 2 + - uid: 10512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-18.5 + parent: 2 + - uid: 10513 + components: + - type: Transform + pos: -41.5,-45.5 + parent: 2 + - uid: 10514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-55.5 + parent: 2 + - uid: 10515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-53.5 + parent: 2 + - uid: 10516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-56.5 + parent: 2 + - uid: 10517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-51.5 + parent: 2 + - uid: 10518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-50.5 + parent: 2 + - uid: 10519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-53.5 + parent: 2 + - uid: 10520 + components: + - type: Transform + pos: -35.5,-23.5 + parent: 2 + - uid: 10521 + components: + - type: Transform + pos: -35.5,-22.5 + parent: 2 + - uid: 10522 + components: + - type: Transform + pos: -35.5,-21.5 + parent: 2 + - uid: 10523 + components: + - type: Transform + pos: -36.5,-24.5 + parent: 2 + - uid: 10524 + components: + - type: Transform + pos: -36.5,-23.5 + parent: 2 + - uid: 10525 + components: + - type: Transform + pos: -36.5,-22.5 + parent: 2 + - uid: 10526 + components: + - type: Transform + pos: -36.5,-21.5 + parent: 2 + - uid: 10527 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 2 + - uid: 10528 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 2 + - uid: 10529 + components: + - type: Transform + pos: -37.5,-23.5 + parent: 2 + - uid: 10530 + components: + - type: Transform + pos: -37.5,-22.5 + parent: 2 + - uid: 10531 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 2 + - uid: 10532 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 2 + - uid: 10533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-55.5 + parent: 2 + - uid: 10534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-51.5 + parent: 2 + - uid: 10535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-53.5 + parent: 2 + - uid: 10536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-55.5 + parent: 2 + - uid: 10537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-55.5 + parent: 2 + - uid: 10538 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 2 + - uid: 10539 + components: + - type: Transform + pos: -43.5,-28.5 + parent: 2 + - uid: 10540 + components: + - type: Transform + pos: -43.5,-30.5 + parent: 2 + - uid: 10541 + components: + - type: Transform + pos: -5.5,-38.5 + parent: 2 + - uid: 10542 + components: + - type: Transform + pos: -7.5,-38.5 + parent: 2 + - uid: 10543 + components: + - type: Transform + pos: -8.5,-38.5 + parent: 2 + - uid: 10544 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 10545 + components: + - type: Transform + pos: 6.5,-35.5 + parent: 2 + - uid: 10546 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 10547 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 2 + - uid: 10548 + components: + - type: Transform + pos: -25.5,-66.5 + parent: 2 + - uid: 10549 + components: + - type: Transform + pos: 6.5,-36.5 + parent: 2 + - uid: 10550 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 10551 + components: + - type: Transform + pos: -6.5,-34.5 + parent: 2 + - uid: 10552 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 2 + - uid: 10553 + components: + - type: Transform + pos: -44.5,-45.5 + parent: 2 + - uid: 10554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-34.5 + parent: 2 + - uid: 10555 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 10556 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 10557 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - uid: 10558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-19.5 + parent: 2 + - uid: 10559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-17.5 + parent: 2 + - uid: 10560 + components: + - type: Transform + pos: -25.5,-67.5 + parent: 2 + - uid: 10561 + components: + - type: Transform + pos: -25.5,-68.5 + parent: 2 + - uid: 10562 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 2 + - uid: 10563 + components: + - type: Transform + pos: -10.5,-36.5 + parent: 2 + - uid: 10564 + components: + - type: Transform + pos: 23.5,25.5 + parent: 2 + - uid: 10565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-21.5 + parent: 2 + - uid: 10566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-32.5 + parent: 2 + - uid: 10567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-31.5 + parent: 2 + - uid: 10568 + components: + - type: Transform + pos: -12.5,-35.5 + parent: 2 + - uid: 10569 + components: + - type: Transform + pos: -12.5,-36.5 + parent: 2 + - uid: 10570 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 10571 + components: + - type: Transform + pos: 48.5,4.5 + parent: 2 + - uid: 10572 + components: + - type: Transform + pos: 48.5,3.5 + parent: 2 + - uid: 10573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-34.5 + parent: 2 + - uid: 10574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-33.5 + parent: 2 + - uid: 10575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-32.5 + parent: 2 + - uid: 10576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-31.5 + parent: 2 + - uid: 10577 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 10578 + components: + - type: Transform + pos: -6.5,8.5 + parent: 2 + - uid: 10579 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 10580 + components: + - type: Transform + pos: -27.5,-37.5 + parent: 2 + - uid: 10581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-18.5 + parent: 2 + - uid: 10582 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 10583 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 10584 + components: + - type: Transform + pos: 21.5,21.5 + parent: 2 + - uid: 10585 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 10586 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 + - uid: 10587 + components: + - type: Transform + pos: -3.5,4.5 + parent: 2 + - uid: 10588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-20.5 + parent: 2 + - uid: 10589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-21.5 + parent: 2 + - uid: 10590 + components: + - type: Transform + pos: -17.5,7.5 + parent: 2 + - uid: 10591 + components: + - type: Transform + pos: 17.5,-71.5 + parent: 2 + - uid: 10592 + components: + - type: Transform + pos: -28.5,-36.5 + parent: 2 + - uid: 10593 + components: + - type: Transform + pos: -17.5,25.5 + parent: 2 + - uid: 10594 + components: + - type: Transform + pos: -17.5,26.5 + parent: 2 + - uid: 10595 + components: + - type: Transform + pos: -16.5,9.5 + parent: 2 + - uid: 10596 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 + - uid: 10597 + components: + - type: Transform + pos: -16.5,7.5 + parent: 2 + - uid: 10598 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 10599 + components: + - type: Transform + pos: 17.5,-70.5 + parent: 2 + - uid: 10600 + components: + - type: Transform + pos: -16.5,1.5 + parent: 2 + - uid: 10601 + components: + - type: Transform + pos: 16.5,-71.5 + parent: 2 + - uid: 10602 + components: + - type: Transform + pos: -6.5,6.5 + parent: 2 + - uid: 10603 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 2 + - uid: 10604 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 10605 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - uid: 10606 + components: + - type: Transform + pos: 16.5,-70.5 + parent: 2 + - uid: 10607 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 + - uid: 10608 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 2 + - uid: 10609 + components: + - type: Transform + pos: -38.5,-14.5 + parent: 2 + - uid: 10610 + components: + - type: Transform + pos: -38.5,-15.5 + parent: 2 + - uid: 10611 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 + - uid: 10612 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 + - uid: 10613 + components: + - type: Transform + pos: -38.5,-12.5 + parent: 2 + - uid: 10614 + components: + - type: Transform + pos: -38.5,-10.5 + parent: 2 + - uid: 10615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-17.5 + parent: 2 + - uid: 10616 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 2 + - uid: 10617 + components: + - type: Transform + pos: 78.5,-51.5 + parent: 2 + - uid: 10618 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 2 + - uid: 10619 + components: + - type: Transform + pos: 79.5,-51.5 + parent: 2 + - uid: 10620 + components: + - type: Transform + pos: 77.5,-51.5 + parent: 2 + - uid: 10621 + components: + - type: Transform + pos: 15.5,-71.5 + parent: 2 + - uid: 10622 + components: + - type: Transform + pos: 30.5,-33.5 + parent: 2 + - uid: 10623 + components: + - type: Transform + pos: 32.5,-33.5 + parent: 2 + - uid: 10624 + components: + - type: Transform + pos: 31.5,-33.5 + parent: 2 + - uid: 10625 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 2 + - uid: 10626 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 2 + - uid: 10627 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 + - uid: 10628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 104.5,-43.5 + parent: 2 + - uid: 10629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 102.5,-43.5 + parent: 2 + - uid: 10630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-40.5 + parent: 2 + - uid: 10631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 105.5,-43.5 + parent: 2 + - uid: 10632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 106.5,-43.5 + parent: 2 + - uid: 10633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 107.5,-43.5 + parent: 2 + - uid: 10634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 108.5,-43.5 + parent: 2 + - uid: 10635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 109.5,-43.5 + parent: 2 + - uid: 10636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 110.5,-43.5 + parent: 2 + - uid: 10637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 113.5,-43.5 + parent: 2 + - uid: 10638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 114.5,-43.5 + parent: 2 + - uid: 10639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 115.5,-43.5 + parent: 2 + - uid: 10640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 116.5,-43.5 + parent: 2 + - uid: 10641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-41.5 + parent: 2 + - uid: 10642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-42.5 + parent: 2 + - uid: 10643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-43.5 + parent: 2 + - uid: 10644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,-43.5 + parent: 2 + - uid: 10645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,-43.5 + parent: 2 + - uid: 10646 + components: + - type: Transform + pos: 15.5,-70.5 + parent: 2 + - uid: 10647 + components: + - type: Transform + pos: 91.5,-43.5 + parent: 2 + - uid: 10648 + components: + - type: Transform + pos: 104.5,-32.5 + parent: 2 + - uid: 10649 + components: + - type: Transform + pos: 103.5,-32.5 + parent: 2 + - uid: 10650 + components: + - type: Transform + pos: 102.5,-32.5 + parent: 2 + - uid: 10651 + components: + - type: Transform + pos: 101.5,-32.5 + parent: 2 + - uid: 10652 + components: + - type: Transform + pos: 100.5,-32.5 + parent: 2 + - uid: 10653 + components: + - type: Transform + pos: 99.5,-32.5 + parent: 2 + - uid: 10654 + components: + - type: Transform + pos: 98.5,-32.5 + parent: 2 + - uid: 10655 + components: + - type: Transform + pos: 92.5,-43.5 + parent: 2 + - uid: 10656 + components: + - type: Transform + pos: 93.5,-43.5 + parent: 2 + - uid: 10657 + components: + - type: Transform + pos: 94.5,-43.5 + parent: 2 + - uid: 10658 + components: + - type: Transform + pos: 95.5,-43.5 + parent: 2 + - uid: 10659 + components: + - type: Transform + pos: 96.5,-43.5 + parent: 2 + - uid: 10660 + components: + - type: Transform + pos: 97.5,-43.5 + parent: 2 + - uid: 10661 + components: + - type: Transform + pos: 98.5,-43.5 + parent: 2 + - uid: 10662 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - uid: 10663 + components: + - type: Transform + pos: 89.5,-28.5 + parent: 2 + - uid: 10664 + components: + - type: Transform + pos: 89.5,-31.5 + parent: 2 + - uid: 10665 + components: + - type: Transform + pos: 89.5,-30.5 + parent: 2 + - uid: 10666 + components: + - type: Transform + pos: 89.5,-29.5 + parent: 2 + - uid: 10667 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 10668 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 10669 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 10670 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 10671 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 10672 + components: + - type: Transform + pos: 14.5,-71.5 + parent: 2 + - uid: 10673 + components: + - type: Transform + pos: 14.5,-70.5 + parent: 2 + - uid: 10674 + components: + - type: Transform + pos: 14.5,-73.5 + parent: 2 + - uid: 10675 + components: + - type: Transform + pos: 15.5,-73.5 + parent: 2 + - uid: 10676 + components: + - type: Transform + pos: 16.5,-73.5 + parent: 2 + - uid: 10677 + components: + - type: Transform + pos: 17.5,-73.5 + parent: 2 + - uid: 10678 + components: + - type: Transform + pos: 18.5,-73.5 + parent: 2 + - uid: 10679 + components: + - type: Transform + pos: 4.5,-49.5 + parent: 2 + - uid: 10680 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 2 + - uid: 10681 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 2 +- proto: Chair + entities: + - uid: 10682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-51.5 + parent: 2 + - uid: 10683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-51.5 + parent: 2 + - uid: 10684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-6.5 + parent: 2 + - uid: 10685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 2 + - uid: 10686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-9.5 + parent: 2 + - uid: 10687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-6.5 + parent: 2 + - uid: 10688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,9.5 + parent: 2 + - uid: 10689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 2 + - uid: 10690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 2 + - uid: 10691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,17.5 + parent: 2 + - uid: 10692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,9.5 + parent: 2 + - uid: 10693 + components: + - type: Transform + pos: 23.5,14.5 + parent: 2 + - uid: 10694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-105.5 + parent: 2 + - uid: 10695 + components: + - type: Transform + pos: 56.5,-62.5 + parent: 2 + - uid: 10696 + components: + - type: Transform + pos: 57.5,-62.5 + parent: 2 + - uid: 10697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-73.5 + parent: 2 + - uid: 10698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-28.5 + parent: 2 + - uid: 10699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-29.5 + parent: 2 + - uid: 10700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-28.5 + parent: 2 + - uid: 10701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-29.5 + parent: 2 + - uid: 10702 + components: + - type: Transform + pos: 64.5,2.5 + parent: 2 + - uid: 10703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,0.5 + parent: 2 + - uid: 10704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,23.5 + parent: 2 + - uid: 10705 + components: + - type: Transform + pos: 67.5,19.5 + parent: 2 + - uid: 10706 + components: + - type: Transform + pos: -30.5,24.5 + parent: 2 + - uid: 10707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,22.5 + parent: 2 + - uid: 10708 + components: + - type: Transform + pos: -30.5,20.5 + parent: 2 + - uid: 10709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,18.5 + parent: 2 + - uid: 10710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-30.5 + parent: 2 + - uid: 10711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-30.5 + parent: 2 + - uid: 10712 + components: + - type: Transform + pos: 72.5,-27.5 + parent: 2 + - uid: 10713 + components: + - type: Transform + pos: 71.5,-27.5 + parent: 2 + - uid: 10714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,2.5 + parent: 2 + - uid: 10715 + components: + - type: Transform + pos: -7.5,37.5 + parent: 2 + - uid: 10716 + components: + - type: Transform + pos: -15.5,36.5 + parent: 2 + - uid: 10717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,11.5 + parent: 2 + - uid: 10718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,34.5 + parent: 2 + - uid: 10719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-7.5 + parent: 2 + - uid: 10720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,33.5 + parent: 2 + - uid: 10721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,32.5 + parent: 2 + - uid: 10722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 2 + - uid: 10723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,9.5 + parent: 2 + - uid: 10724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,52.5 + parent: 2 + - uid: 10725 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 10726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,51.5 + parent: 2 + - uid: 10727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,9.5 + parent: 2 + - uid: 10728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,10.5 + parent: 2 + - uid: 10729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,47.5 + parent: 2 + - uid: 10730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,52.5 + parent: 2 + - uid: 10731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,51.5 + parent: 2 + - uid: 10732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,12.5 + parent: 2 + - uid: 10733 + components: + - type: Transform + pos: 10.5,11.5 + parent: 2 + - uid: 10734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 2 + - uid: 10735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-50.5 + parent: 2 + - uid: 10736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,31.5 + parent: 2 + - uid: 10737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,32.5 + parent: 2 + - uid: 10738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-6.5 + parent: 2 + - uid: 10739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,30.5 + parent: 2 + - uid: 10740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-46.5 + parent: 2 + - uid: 10741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,-35.5 + parent: 2 + - uid: 10742 + components: + - type: Transform + pos: 115.5,-36.5 + parent: 2 + - uid: 10743 + components: + - type: Transform + pos: 117.5,-36.5 + parent: 2 + - uid: 10744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 117.5,-40.5 + parent: 2 + - uid: 10745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 115.5,-40.5 + parent: 2 + - uid: 10746 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 2 + - uid: 10747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-19.5 + parent: 2 + - uid: 21493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-10.5 + parent: 2 +- proto: ChairFolding + entities: + - uid: 10748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,8.5 + parent: 2 + - uid: 10749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.556896,10.691315 + parent: 2 + - uid: 28140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-9.5 + parent: 2 + - uid: 28141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-6.5 + parent: 2 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 1131 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 +- proto: ChairGreyscale + entities: + - uid: 10750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-47.5 + parent: 2 + - uid: 10751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-46.5 + parent: 2 + - uid: 10752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-35.5 + parent: 2 + - uid: 10753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-35.5 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 10754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.46011126,-5.239894 + parent: 2 + - uid: 10755 + components: + - type: Transform + pos: -33.17269,-30.672718 + parent: 2 + - uid: 10756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.62468,17.153736 + parent: 2 + - uid: 10757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.496781,38.597076 + parent: 2 + - uid: 10758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-85.5 + parent: 2 + - uid: 10759 + components: + - type: Transform + pos: 30.5,-106.5 + parent: 2 + - uid: 10760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-44.5 + parent: 2 + - uid: 10761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,1.5 + parent: 2 + - uid: 10762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,0.5 + parent: 2 + - uid: 10763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-0.5 + parent: 2 + - uid: 10764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-0.5 + parent: 2 + - uid: 10765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,0.5 + parent: 2 + - uid: 10766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,1.5 + parent: 2 + - uid: 10767 + components: + - type: Transform + pos: 56.5,2.5 + parent: 2 + - uid: 10768 + components: + - type: Transform + pos: 55.5,2.5 + parent: 2 + - uid: 10769 + components: + - type: Transform + pos: 62.5,-6.5 + parent: 2 + - uid: 10770 + components: + - type: Transform + pos: -60.5,-10.5 + parent: 2 + - uid: 10771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-7.5 + parent: 2 + - uid: 10772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-7.5 + parent: 2 + - uid: 10773 + components: + - type: Transform + pos: -55.5,-10.5 + parent: 2 + - uid: 10774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-22.5 + parent: 2 + - uid: 10775 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 2 + - uid: 10776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-58.5 + parent: 2 + - uid: 10777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-57.5 + parent: 2 + - uid: 10778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-58.5 + parent: 2 + - uid: 10779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-63.5 + parent: 2 + - uid: 10780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-43.5 + parent: 2 + - uid: 10781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-31.5 + parent: 2 + - uid: 10782 + components: + - type: Transform + pos: 76.5,-25.5 + parent: 2 + - uid: 10783 + components: + - type: Transform + pos: 79.5,-25.5 + parent: 2 + - uid: 10784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.9623806,14.661451 + parent: 2 + - uid: 10785 + components: + - type: Transform + pos: 14.031166,40.442917 + parent: 2 + - uid: 10786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.538236,-5.349269 + parent: 2 + - uid: 10787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.4773889,-5.302394 + parent: 2 + - uid: 10788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.508639,-7.3336434 + parent: 2 + - uid: 10789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.460111,-7.333644 + parent: 2 + - uid: 10790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-56.5 + parent: 2 + - uid: 10791 + components: + - type: Transform + pos: 3.9769783,-60.46733 + parent: 2 + - uid: 10792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.503407,-18.377739 + parent: 2 + - uid: 10793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.470787,-29.400114 + parent: 2 + - uid: 10794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.353188,12.168853 + parent: 2 +- proto: ChairOfficeLight + entities: + - uid: 10795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5561574,-24.798828 + parent: 2 + - uid: 10796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-51.5 + parent: 2 + - uid: 10797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.100536,-17.370222 + parent: 2 + - uid: 10798 + components: + - type: Transform + pos: 36.5,-35.5 + parent: 2 + - uid: 10799 + components: + - type: Transform + pos: 2.5,30.5 + parent: 2 + - uid: 10800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.419968,-26.930988 + parent: 2 + - uid: 10801 + components: + - type: Transform + pos: 39.5,-58.5 + parent: 2 + - uid: 10802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-49.5 + parent: 2 + - uid: 10803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-49.5 + parent: 2 + - uid: 10804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-50.5 + parent: 2 + - uid: 10805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-44.5 + parent: 2 + - uid: 10806 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 2 + - uid: 10807 + components: + - type: Transform + pos: 35.5,-53.5 + parent: 2 + - uid: 10808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-45.5 + parent: 2 + - uid: 10809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-48.5 + parent: 2 + - uid: 10810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-20.5 + parent: 2 + - uid: 10811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-17.5 + parent: 2 + - uid: 10812 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 2 + - uid: 10813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,23.5 + parent: 2 + - uid: 10814 + components: + - type: Transform + pos: 58.046158,-23.550533 + parent: 2 + - uid: 10815 + components: + - type: Transform + pos: 70.30547,-33.437622 + parent: 2 + - uid: 10816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-20.5 + parent: 2 + - uid: 10817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.012004,-16.29774 + parent: 2 + - uid: 10818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.538036,-16.713972 + parent: 2 + - uid: 10819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.511171,30.677187 + parent: 2 + - uid: 10820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.495546,31.505312 + parent: 2 + - uid: 10821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-20.5 + parent: 2 + - uid: 10822 + components: + - type: Transform + pos: 52.5,-40.5 + parent: 2 + - uid: 10823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.039238,-38.312332 + parent: 2 + - uid: 10824 + components: + - type: Transform + pos: 22.069286,-19.307722 + parent: 2 + - uid: 10825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.36668,-26.820917 + parent: 2 + - uid: 10826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-26.5 + parent: 2 + - uid: 10827 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 2 + - uid: 10828 + components: + - type: Transform + pos: 46.08543,-28.430292 + parent: 2 + - uid: 10829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.449554,-46.697548 + parent: 2 + - uid: 10830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-17.5 + parent: 2 + - uid: 10831 + components: + - type: Transform + pos: -58.5,3.5 + parent: 2 + - uid: 10832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.479616,30.588116 + parent: 2 +- proto: ChairWood + entities: + - uid: 10833 + components: + - type: Transform + pos: 45.5,-71.5 + parent: 2 + - uid: 10834 + components: + - type: Transform + pos: 42.5,-70.5 + parent: 2 + - uid: 10835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-3.5 + parent: 2 + - uid: 10836 + components: + - type: Transform + pos: 74.5,-1.5 + parent: 2 + - uid: 10837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,19.5 + parent: 2 + - uid: 10838 + components: + - type: Transform + pos: 44.5,-70.5 + parent: 2 + - uid: 10839 + components: + - type: Transform + pos: 45.5,-70.5 + parent: 2 + - uid: 10840 + components: + - type: Transform + pos: 41.5,-71.5 + parent: 2 + - uid: 10841 + components: + - type: Transform + pos: 42.5,-71.5 + parent: 2 + - uid: 10842 + components: + - type: Transform + pos: 44.5,-71.5 + parent: 2 + - uid: 10843 + components: + - type: Transform + pos: 41.5,-70.5 + parent: 2 +- proto: CheapLighter + entities: + - uid: 10844 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - uid: 10845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.490491,-11.594858 + parent: 2 +- proto: CheapRollerBed + entities: + - uid: 10846 + components: + - type: Transform + pos: 42.5,-32.5 + parent: 2 + - uid: 10847 + components: + - type: Transform + pos: 42.5,-33.5 + parent: 2 + - uid: 10848 + components: + - type: Transform + pos: 42.5,-34.5 + parent: 2 +- proto: chem_master + entities: + - uid: 10849 + components: + - type: Transform + pos: 18.5,-17.5 + parent: 2 + - uid: 10850 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 2 + - uid: 10851 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 2 + - uid: 10852 + components: + - type: Transform + pos: 54.5,-38.5 + parent: 2 +- proto: ChemDispenser + entities: + - uid: 10853 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 2 + - uid: 10854 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 2 + - uid: 10855 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 2 +- proto: ChemDispenserMachineCircuitboard + entities: + - uid: 10856 + components: + - type: Transform + pos: -13.489363,-35.327927 + parent: 2 +- proto: ChemistryHotplate + entities: + - uid: 10857 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 2 + - uid: 10858 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 +- proto: ChemMasterMachineCircuitboard + entities: + - uid: 10859 + components: + - type: Transform + pos: -13.489363,-35.577927 + parent: 2 +- proto: ChessBoard + entities: + - uid: 10860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.016045,10.642594 + parent: 2 + - uid: 10861 + components: + - type: Transform + pos: 57.5,15.5 + parent: 2 +- proto: ChurchOrganInstrument + entities: + - uid: 10862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-3.5 + parent: 2 +- proto: Cigar + entities: + - uid: 10863 + components: + - type: Transform + pos: -20.468914,-73.59466 + parent: 2 +- proto: CigaretteSpent + entities: + - uid: 10864 + components: + - type: Transform + pos: -58.381145,-3.0356364 + parent: 2 + - uid: 10865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.86552,-3.0043864 + parent: 2 + - uid: 10866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.05302,-3.3793864 + parent: 2 + - uid: 10867 + components: + - type: Transform + pos: -58.287395,-3.1606364 + parent: 2 +- proto: CigCartonBlue + entities: + - uid: 10868 + components: + - type: Transform + pos: -12.412367,-11.313608 + parent: 2 +- proto: CigPackBlue + entities: + - uid: 10869 + components: + - type: Transform + pos: -58.39677,-2.4887614 + parent: 2 +- proto: CigPackGreen + entities: + - uid: 10870 + components: + - type: Transform + pos: 56.5,-62.5 + parent: 2 +- proto: CircuitImprinter + entities: + - uid: 10871 + components: + - type: Transform + pos: 71.5,-20.5 + parent: 2 + - type: MaterialStorage + materialWhiteList: + - Steel + - Glass + - Gold +- proto: CleanerDispenser + entities: + - uid: 10872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-6.5 + parent: 2 +- proto: CloningPod + entities: + - uid: 10873 + components: + - type: Transform + pos: 41.5,-29.5 + parent: 2 +- proto: ClosetBombFilled + entities: + - uid: 10874 + components: + - type: Transform + pos: 74.5,-43.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10875 + components: + - type: Transform + pos: 6.5,38.5 + parent: 2 + - uid: 10876 + components: + - type: Transform + pos: 22.5,32.5 + parent: 2 +- proto: ClosetEmergency + entities: + - uid: 10877 + components: + - type: Transform + pos: -65.5,-7.5 + parent: 2 + - uid: 10878 + components: + - type: Transform + pos: -55.5,-2.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10879 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 10880 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 + - uid: 10881 + components: + - type: Transform + pos: 84.5,-42.5 + parent: 2 + - uid: 10882 + components: + - type: Transform + pos: -80.5,10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 5.0982914 + - 19.179287 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10883 + components: + - type: Transform + pos: 25.5,-81.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10884 + components: + - type: Transform + pos: -78.5,-15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10885 + components: + - type: Transform + pos: 1.5,-40.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10886 + components: + - type: Transform + pos: 24.5,25.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10887 + components: + - type: Transform + pos: 79.5,-6.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10888 + components: + - type: Transform + pos: 82.5,-12.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10889 + components: + - type: Transform + pos: -54.5,-13.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10890 + components: + - type: Transform + pos: -59.5,-20.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10891 + components: + - type: Transform + pos: -40.5,-20.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10892 + components: + - type: Transform + pos: -33.5,-47.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10893 + components: + - type: Transform + pos: -28.5,-43.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10894 + components: + - type: Transform + pos: 41.5,-51.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10895 + components: + - type: Transform + pos: 50.5,-31.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10896 + components: + - type: Transform + pos: 86.5,-31.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10897 + components: + - type: Transform + pos: 86.5,-51.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10898 + components: + - type: Transform + pos: 86.5,-59.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10899 + components: + - type: Transform + pos: 80.5,-61.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10900 + components: + - type: Transform + pos: 63.5,-70.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10901 + components: + - type: Transform + pos: 69.5,-64.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10902 + components: + - type: Transform + pos: 49.5,-64.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10903 + components: + - type: Transform + pos: -22.5,51.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 2.146141 + - 8.073578 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10904 + components: + - type: Transform + pos: -43.5,-4.5 + parent: 2 + - uid: 10905 + components: + - type: Transform + pos: -28.5,-38.5 + parent: 2 + - uid: 10906 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 2 + - uid: 10907 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 + - uid: 10908 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - uid: 10909 + components: + - type: Transform + pos: -13.5,-77.5 + parent: 2 + - uid: 10910 + components: + - type: Transform + pos: 14.5,-32.5 + parent: 2 + - uid: 10911 + components: + - type: Transform + pos: 7.5,-60.5 + parent: 2 + - uid: 10912 + components: + - type: Transform + pos: -65.5,-9.5 + parent: 2 + - uid: 10913 + components: + - type: Transform + pos: 79.5,-11.5 + parent: 2 + - uid: 10914 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - uid: 10915 + components: + - type: Transform + pos: -15.5,-23.5 + parent: 2 +- proto: ClosetFireFilled + entities: + - uid: 10916 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 10917 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10918 + components: + - type: Transform + pos: 75.5,-7.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10919 + components: + - type: Transform + pos: 50.5,-30.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10920 + components: + - type: Transform + pos: 70.5,-64.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10921 + components: + - type: Transform + pos: 86.5,-50.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10922 + components: + - type: Transform + pos: 86.5,-32.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10923 + components: + - type: Transform + pos: 66.5,-17.5 + parent: 2 + - uid: 10924 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 2 + - uid: 10925 + components: + - type: Transform + pos: -71.5,-16.5 + parent: 2 + - uid: 10926 + components: + - type: Transform + pos: 24.5,3.5 + parent: 2 + - uid: 10927 + components: + - type: Transform + pos: 7.5,-64.5 + parent: 2 + - uid: 10928 + components: + - type: Transform + pos: -30.5,-27.5 + parent: 2 + - uid: 10929 + components: + - type: Transform + pos: -65.5,-8.5 + parent: 2 + - uid: 10930 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 +- proto: ClosetL3Janitor + entities: + - uid: 10931 + components: + - type: Transform + pos: 61.5,-39.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10932 + - 10933 + - 10935 + - 10936 + - 10934 + - 10937 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10938 + components: + - type: Transform + pos: 60.5,-39.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10942 + - 10940 + - 10944 + - 10943 + - 10941 + - 10939 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10945 + components: + - type: Transform + pos: 59.5,-39.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10946 + - 10950 + - 10951 + - 10948 + - 10949 + - 10947 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetL3ScienceFilled + entities: + - uid: 10952 + components: + - type: Transform + pos: 73.5,-43.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetL3Security + entities: + - uid: 10953 + components: + - type: Transform + pos: 44.5,-36.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10963 + - 10954 + - 10960 + - 10958 + - 10962 + - 10959 + - 10964 + - 10961 + - 10956 + - 10955 + - 10965 + - 10957 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10966 + components: + - type: Transform + pos: 45.5,-36.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10967 + - 10973 + - 10968 + - 10978 + - 10976 + - 10972 + - 10970 + - 10969 + - 10974 + - 10977 + - 10975 + - 10971 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10979 + components: + - type: Transform + pos: 46.5,-36.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10987 + - 10983 + - 10985 + - 10991 + - 10984 + - 10981 + - 10989 + - 10990 + - 10988 + - 10982 + - 10980 + - 10986 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetL3SecurityFilled + entities: + - uid: 10992 + components: + - type: Transform + pos: -18.5,36.5 + parent: 2 + - uid: 10993 + components: + - type: Transform + pos: -19.5,34.5 + parent: 2 + - uid: 10994 + components: + - type: Transform + pos: -17.5,36.5 + parent: 2 +- proto: ClosetL3VirologyFilled + entities: + - uid: 10995 + components: + - type: Transform + pos: 40.5,-60.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10996 + components: + - type: Transform + pos: 41.5,-52.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 2.146141 + - 8.073578 + - 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: + - 11003 + - 11004 + - 10999 + - 11000 + - 11001 + - 10997 + - 11002 + - 11005 + - 10998 + - 11006 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11007 + components: + - type: Transform + pos: 41.5,-53.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 2.146141 + - 8.073578 + - 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: + - 11013 + - 11015 + - 11009 + - 11008 + - 11017 + - 11014 + - 11016 + - 11010 + - 11012 + - 11011 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 11018 + components: + - type: Transform + pos: -56.5,-20.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11035 + components: + - type: Transform + pos: -20.5,-49.5 + parent: 2 + - uid: 28097 + components: + - type: Transform + pos: 41.5,-64.5 + parent: 2 + - uid: 28098 + components: + - type: Transform + pos: 15.5,-36.5 + parent: 2 + - uid: 28099 + components: + - type: Transform + pos: -34.5,-62.5 + parent: 2 + - uid: 28100 + components: + - type: Transform + pos: -32.5,-47.5 + parent: 2 + - uid: 28101 + components: + - type: Transform + pos: -29.5,-43.5 + parent: 2 + - uid: 28102 + components: + - type: Transform + pos: -52.5,-10.5 + parent: 2 + - uid: 28103 + components: + - type: Transform + pos: -43.5,-15.5 + parent: 2 + - uid: 28104 + components: + - type: Transform + pos: -59.5,10.5 + parent: 2 + - uid: 28105 + components: + - type: Transform + pos: -46.5,16.5 + parent: 2 + - uid: 28106 + components: + - type: Transform + pos: -48.5,1.5 + parent: 2 + - uid: 28107 + components: + - type: Transform + pos: -33.5,11.5 + parent: 2 + - uid: 28108 + components: + - type: Transform + pos: -17.5,1.5 + parent: 2 + - uid: 28109 + components: + - type: Transform + pos: 18.5,18.5 + parent: 2 + - uid: 28110 + components: + - type: Transform + pos: 42.5,9.5 + parent: 2 + - uid: 28111 + components: + - type: Transform + pos: 51.5,7.5 + parent: 2 + - uid: 28112 + components: + - type: Transform + pos: 53.5,16.5 + parent: 2 + - uid: 28113 + components: + - type: Transform + pos: 75.5,8.5 + parent: 2 + - uid: 28116 + components: + - type: Transform + pos: 72.5,10.5 + parent: 2 + - uid: 28122 + components: + - type: Transform + pos: 81.5,-19.5 + parent: 2 + - uid: 28123 + components: + - type: Transform + pos: 84.5,-29.5 + parent: 2 + - uid: 28124 + components: + - type: Transform + pos: 84.5,-55.5 + parent: 2 + - uid: 28125 + components: + - type: Transform + pos: 80.5,-50.5 + parent: 2 + - uid: 28136 + components: + - type: Transform + pos: 32.5,-60.5 + parent: 2 +- proto: ClosetRadiationSuit + entities: + - uid: 11019 + components: + - type: Transform + pos: 47.5,-36.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11023 + - 11024 + - 11025 + - 11022 + - 11027 + - 11020 + - 11026 + - 11028 + - 11021 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetRadiationSuitFilled + entities: + - uid: 11029 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11030 + components: + - type: Transform + pos: -21.5,-49.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11031 + components: + - type: Transform + pos: 81.5,-25.5 + parent: 2 + - uid: 11032 + components: + - type: Transform + pos: -10.5,-71.5 + parent: 2 + - uid: 11033 + components: + - type: Transform + pos: -10.5,-73.5 + parent: 2 +- proto: ClosetSteelBase + entities: + - uid: 11034 + components: + - type: Transform + pos: -43.5,22.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11036 + components: + - type: Transform + pos: 37.5,-45.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11037 + components: + - type: Transform + pos: 37.5,-48.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11038 + components: + - type: Transform + pos: 55.5,-22.5 + parent: 2 + - uid: 11039 + components: + - type: Transform + pos: 37.5,-19.5 + parent: 2 + - uid: 11040 + components: + - type: Transform + pos: 26.5,-35.5 + parent: 2 + - uid: 11041 + components: + - type: Transform + pos: 40.5,-26.5 + parent: 2 + - uid: 11042 + components: + - type: Transform + pos: 26.5,-36.5 + parent: 2 +- proto: ClosetToolFilled + entities: + - uid: 11043 + components: + - type: Transform + pos: -37.5,4.5 + parent: 2 + - uid: 11044 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11045 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 11046 + components: + - type: Transform + pos: -65.5,12.5 + parent: 2 + - uid: 11047 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 2 +- proto: ClosetWallGrey + entities: + - uid: 11048 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11049 + - 11050 + - 11068 + - 11063 + - 11057 + - 11067 + - 11052 + - 11056 + - 11055 + - 11051 + - 11061 + - 11060 + - 11053 + - 11066 + - 11054 + - 11065 + - 11058 + - 11064 + - 11062 + - 11059 +- proto: ClosetWallMixed + entities: + - uid: 1298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-9.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1299 + - 1301 + - 1300 + - 1302 +- proto: ClosetWallWhite + entities: + - uid: 11069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,28.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11071 + - 11070 + - 11072 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 11073 + components: + - type: Transform + pos: 20.408598,-32.464928 + parent: 2 + - uid: 11074 + components: + - type: Transform + pos: 39.514877,-17.271873 + parent: 2 + - uid: 11075 + components: + - type: Transform + pos: 54.497265,-24.344576 + parent: 2 + - uid: 11076 + components: + - type: Transform + pos: 44.61751,-47.254646 + parent: 2 +- proto: ClothingBeltHolster + entities: + - uid: 11077 + components: + - type: Transform + pos: -54.62445,-11.406659 + parent: 2 +- proto: ClothingBeltJanitorFilled + entities: + - uid: 11079 + components: + - type: Transform + parent: 11078 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltKatanaSheathFilled + entities: + - uid: 11085 + components: + - type: Transform + parent: 11084 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltSecurityFilled + entities: + - uid: 1212 + components: + - type: Transform + parent: 1209 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11090 + components: + - type: Transform + parent: 11089 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11103 + components: + - type: Transform + parent: 11102 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11116 + components: + - type: Transform + parent: 11115 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltSecurityWebbingFilled + entities: + - uid: 11128 + components: + - type: Transform + parent: 11127 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11141 + components: + - type: Transform + parent: 11140 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11155 + components: + - type: Transform + parent: 11154 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltUtility + entities: + - uid: 11168 + components: + - type: Transform + pos: 6.5031567,-26.523293 + parent: 2 + - uid: 11169 + components: + - type: Transform + pos: -34.5,-60.5 + parent: 2 + - uid: 11170 + components: + - type: Transform + pos: -18.5,-64.5 + parent: 2 + - uid: 11171 + components: + - type: Transform + pos: -2.523362,-64.446915 + parent: 2 + - uid: 11172 + components: + - type: Transform + pos: -23.490316,-9.4287615 + parent: 2 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 11173 + components: + - type: Transform + pos: -13.477247,6.583733 + parent: 2 + - uid: 11174 + components: + - type: Transform + pos: 73.561226,-31.426735 + parent: 2 + - uid: 11176 + components: + - type: Transform + parent: 11175 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11179 + components: + - type: Transform + pos: 61.514908,-24.488033 + parent: 2 + - uid: 11180 + components: + - type: Transform + pos: -37.48116,3.6969604 + parent: 2 + - uid: 11181 + components: + - type: Transform + pos: -30.49021,-31.500843 + parent: 2 + - uid: 11182 + components: + - type: Transform + pos: 76.46675,-57.544342 + parent: 2 + - uid: 11183 + components: + - type: Transform + pos: 92.52666,-29.477417 + parent: 2 +- proto: ClothingEyesGlasses + entities: + - uid: 11184 + components: + - type: Transform + pos: 69.542885,-29.28833 + parent: 2 +- proto: ClothingEyesGlassesChemical + entities: + - uid: 11185 + components: + - type: Transform + pos: 54.55154,-41.70787 + parent: 2 + - uid: 11187 + components: + - type: Transform + parent: 11186 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11188 + components: + - type: Transform + pos: 22.510805,-21.586035 + parent: 2 + - uid: 11189 + components: + - type: Transform + pos: 20.534155,-16.571487 + parent: 2 +- proto: ClothingEyesGlassesSecurity + entities: + - uid: 1213 + components: + - type: Transform + parent: 1209 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11091 + components: + - type: Transform + parent: 11089 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11104 + components: + - type: Transform + parent: 11102 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11117 + components: + - type: Transform + parent: 11115 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11129 + components: + - type: Transform + parent: 11127 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11142 + components: + - type: Transform + parent: 11140 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11156 + components: + - type: Transform + parent: 11154 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 1321 + components: + - type: Transform + parent: 1319 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1340 + components: + - type: Transform + parent: 1338 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesHudMedical + entities: + - uid: 11191 + components: + - type: Transform + parent: 11190 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11194 + components: + - type: Transform + parent: 11193 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11197 + components: + - type: Transform + parent: 11196 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 11199 + components: + - type: Transform + pos: -57.5,16.5 + parent: 2 + - uid: 11200 + components: + - type: Transform + pos: 22.031576,12.999834 + parent: 2 +- proto: ClothingHandsGlovesBoxingGreen + entities: + - uid: 11201 + components: + - type: Transform + pos: 24.015951,13.046709 + parent: 2 +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 11202 + components: + - type: Transform + pos: -53.5,12.5 + parent: 2 + - uid: 11203 + components: + - type: Transform + pos: 21.984701,11.046709 + parent: 2 + - uid: 11204 + components: + - type: Transform + pos: 15.461203,28.535076 + parent: 2 +- proto: ClothingHandsGlovesBoxingYellow + entities: + - uid: 11205 + components: + - type: Transform + pos: 24.031576,11.031084 + parent: 2 +- proto: ClothingHandsGlovesColorBlack + entities: + - uid: 1214 + components: + - type: Transform + parent: 1209 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1322 + components: + - type: Transform + parent: 1319 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1341 + components: + - type: Transform + parent: 1338 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorBlue + entities: + - uid: 1323 + components: + - type: Transform + parent: 1319 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1342 + components: + - type: Transform + parent: 1338 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorBrown + entities: + - uid: 1324 + components: + - type: Transform + parent: 1319 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1343 + components: + - type: Transform + parent: 1338 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorGreen + entities: + - uid: 1325 + components: + - type: Transform + parent: 1319 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1344 + components: + - type: Transform + parent: 1338 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorOrange + entities: + - uid: 11020 + components: + - type: Transform + parent: 11019 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11206 + components: + - type: Transform + pos: -17.662788,51.5307 + parent: 2 +- proto: ClothingHandsGlovesColorRed + entities: + - uid: 1326 + components: + - type: Transform + parent: 1319 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1345 + components: + - type: Transform + parent: 1338 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorWhite + entities: + - uid: 1327 + components: + - type: Transform + parent: 1319 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1346 + components: + - type: Transform + parent: 1338 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11080 + components: + - type: Transform + parent: 11078 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 11177 + components: + - type: Transform + parent: 11175 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11207 + components: + - type: MetaData + name: изолированные перчатки "Серого короля" + - type: Transform + pos: 43.508904,-73.44038 + parent: 2 + - uid: 11208 + components: + - type: Transform + pos: -41.507515,4.7594604 + parent: 2 + - uid: 11209 + components: + - type: Transform + pos: -17.457012,2.5422597 + parent: 2 +- proto: ClothingHandsGlovesColorYellowBudget + entities: + - uid: 11210 + components: + - type: Transform + pos: 70.5,12.5 + parent: 2 + - uid: 11211 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 11212 + components: + - type: Transform + pos: 47.48863,-67.09937 + parent: 2 +- proto: ClothingHandsGlovesJanitor + entities: + - uid: 11214 + components: + - type: Transform + parent: 11213 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11215 + components: + - type: Transform + parent: 11213 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesLatex + entities: + - uid: 10932 + components: + - type: Transform + parent: 10931 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10939 + components: + - type: Transform + parent: 10938 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10946 + components: + - type: Transform + parent: 10945 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10954 + components: + - type: Transform + parent: 10953 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10955 + components: + - type: Transform + parent: 10953 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10967 + components: + - type: Transform + parent: 10966 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10968 + components: + - type: Transform + parent: 10966 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10980 + components: + - type: Transform + parent: 10979 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10981 + components: + - type: Transform + parent: 10979 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11228 + components: + - type: Transform + pos: 54.41914,-22.3602 + parent: 2 +- proto: ClothingHandsGlovesLeather + entities: + - uid: 11229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.537567,-2.5569925 + parent: 2 +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 10997 + components: + - type: Transform + parent: 10996 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10998 + components: + - type: Transform + parent: 10996 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11008 + components: + - type: Transform + parent: 11007 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11009 + components: + - type: Transform + parent: 11007 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11230 + components: + - type: Transform + pos: 38.538353,-58.218132 + parent: 2 +- proto: ClothingHeadHatAnimalCatBrown + entities: + - uid: 11231 + components: + - type: Transform + pos: -54.557106,-7.452629 + parent: 2 +- proto: ClothingHeadHatAnimalHeadslime + entities: + - uid: 11232 + components: + - type: Transform + pos: 41.493343,-57.314545 + parent: 2 +- proto: ClothingHeadHatBowlerHat + entities: + - uid: 11233 + components: + - type: Transform + pos: -36.5,22.5 + parent: 2 +- proto: ClothingHeadHatCardborg + entities: + - uid: 11234 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 2 +- proto: ClothingHeadHatCasa + entities: + - uid: 11086 + components: + - type: Transform + parent: 11084 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatCatEars + entities: + - uid: 11081 + components: + - type: Transform + parent: 11078 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatChickenhead + entities: + - uid: 11235 + components: + - type: Transform + pos: 58.5,19.5 + parent: 2 +- proto: ClothingHeadHatCone + entities: + - uid: 11236 + components: + - type: Transform + pos: -14.577853,20.767813 + parent: 2 + - uid: 11237 + components: + - type: Transform + pos: 23.713287,15.616619 + parent: 2 + - uid: 11238 + components: + - type: Transform + pos: -14.538792,19.361563 + parent: 2 + - uid: 11239 + components: + - type: Transform + pos: -16.486618,17.389896 + parent: 2 + - uid: 11240 + components: + - type: Transform + pos: 24.630186,15.231776 + parent: 2 + - uid: 11241 + components: + - type: Transform + pos: 25.291412,15.632244 + parent: 2 + - uid: 11242 + components: + - type: Transform + pos: -2.609167,-76.54765 + parent: 2 + - uid: 11243 + components: + - type: Transform + pos: 1.5314574,-76.3289 + parent: 2 + - uid: 11244 + components: + - type: Transform + pos: 1.8283329,-77.53203 + parent: 2 +- proto: ClothingHeadHatCowboyBlack + entities: + - uid: 11246 + components: + - type: Transform + parent: 11245 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 11251 + components: + - type: Transform + pos: 45.44214,-62.312943 + parent: 2 +- proto: ClothingHeadHatFez + entities: + - uid: 11252 + components: + - type: Transform + pos: 47.502956,-71.100746 + parent: 2 + - uid: 11253 + components: + - type: Transform + pos: 47.313797,-71.28293 + parent: 2 + - uid: 11254 + components: + - type: Transform + pos: 47.548172,-71.37668 + parent: 2 + - uid: 11255 + components: + - type: Transform + pos: 47.690456,-71.225746 + parent: 2 +- proto: ClothingHeadHatGreensoft + entities: + - uid: 11256 + components: + - type: Transform + pos: -37.292267,-8.427467 + parent: 2 +- proto: ClothingHeadHatHardhatYellow + entities: + - uid: 11257 + components: + - type: Transform + pos: 5.51966,-54.4665 + parent: 2 + - uid: 11258 + components: + - type: Transform + pos: -19.482018,16.505407 + parent: 2 +- proto: ClothingHeadHatHoodBioGeneral + entities: + - uid: 10956 + components: + - type: Transform + parent: 10953 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10957 + components: + - type: Transform + parent: 10953 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10969 + components: + - type: Transform + parent: 10966 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10970 + components: + - type: Transform + parent: 10966 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10982 + components: + - type: Transform + parent: 10979 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10983 + components: + - type: Transform + parent: 10979 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatHoodBioJanitor + entities: + - uid: 11216 + components: + - type: Transform + parent: 11213 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11217 + components: + - type: Transform + parent: 11213 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatHoodBioScientist + entities: + - uid: 10933 + components: + - type: Transform + parent: 10931 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10940 + components: + - type: Transform + parent: 10938 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10947 + components: + - type: Transform + parent: 10945 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatHoodBioVirology + entities: + - uid: 10999 + components: + - type: Transform + parent: 10996 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11010 + components: + - type: Transform + parent: 11007 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatOrangesoft + entities: + - uid: 11259 + components: + - type: Transform + pos: -17.569038,51.765076 + parent: 2 +- proto: ClothingHeadHatPirate + entities: + - uid: 11260 + components: + - type: Transform + pos: 57.890774,8.249944 + parent: 2 + - uid: 11261 + components: + - type: Transform + pos: 58.4689,8.515569 + parent: 2 + - uid: 11262 + components: + - type: Transform + pos: 58.25015,8.749944 + parent: 2 +- proto: ClothingHeadHatSurgcapBlue + entities: + - uid: 11263 + components: + - type: Transform + pos: 22.680075,-33.449303 + parent: 2 +- proto: ClothingHeadHatTophat + entities: + - uid: 11264 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 +- proto: ClothingHeadHatTrucker + entities: + - uid: 11265 + components: + - type: Transform + pos: 44.65452,-0.5220691 + parent: 2 +- proto: ClothingHeadHatUshanka + entities: + - uid: 11266 + components: + - type: Transform + pos: 62.38717,18.759663 + parent: 2 + - uid: 11267 + components: + - type: Transform + pos: 62.527794,18.509663 + parent: 2 +- proto: ClothingHeadHatWelding + entities: + - uid: 11268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.727246,6.5993586 + parent: 2 + - uid: 11269 + components: + - type: Transform + pos: 63.702408,-24.472408 + parent: 2 + - uid: 11270 + components: + - type: Transform + pos: 6.5092974,-24.32017 + parent: 2 + - uid: 11271 + components: + - type: Transform + pos: -45.475826,21.643604 + parent: 2 + - uid: 11272 + components: + - type: Transform + pos: -40.650043,1.739646 + parent: 2 +- proto: ClothingHeadHatWeldingMaskFlame + entities: + - uid: 11273 + components: + - type: Transform + pos: 32.426586,-67.42694 + parent: 2 + - uid: 11274 + components: + - type: Transform + pos: -36.50452,-64.51913 + parent: 2 + - uid: 11275 + components: + - type: Transform + pos: -40.29067,1.583396 + parent: 2 +- proto: ClothingHeadHatWeldingMaskPainted + entities: + - uid: 11276 + components: + - type: Transform + pos: -56.61541,13.4948435 + parent: 2 +- proto: ClothingHeadHelmetBasic + entities: + - uid: 11092 + components: + - type: Transform + parent: 11089 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11105 + components: + - type: Transform + parent: 11102 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11118 + components: + - type: Transform + parent: 11115 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11130 + components: + - type: Transform + parent: 11127 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11143 + components: + - type: Transform + parent: 11140 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11157 + components: + - type: Transform + parent: 11154 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11277 + components: + - type: Transform + pos: -22.502037,-31.431364 + parent: 2 + - uid: 11278 + components: + - type: Transform + pos: -2.7007792,37.77021 + parent: 2 + - uid: 11279 + components: + - type: Transform + pos: -2.3257792,37.77021 + parent: 2 +- proto: ClothingHeadHelmetEVALarge + entities: + - uid: 11280 + components: + - type: Transform + pos: -27.310291,-38.4729 + parent: 2 + - uid: 11281 + components: + - type: Transform + pos: -67.65563,18.624487 + parent: 2 +- proto: ClothingHeadHelmetRiot + entities: + - uid: 1215 + components: + - type: Transform + parent: 1209 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11282 + components: + - type: Transform + pos: -0.34365582,37.876335 + parent: 2 + - uid: 11283 + components: + - type: Transform + pos: -0.6717808,37.876335 + parent: 2 +- proto: ClothingHeadPrisonGuard + entities: + - uid: 1216 + components: + - type: Transform + parent: 1209 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadsetPrisonGuard + entities: + - uid: 1217 + components: + - type: Transform + parent: 1209 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadsetSecurity + entities: + - uid: 11093 + components: + - type: Transform + parent: 11089 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11106 + components: + - type: Transform + parent: 11102 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11119 + components: + - type: Transform + parent: 11115 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11131 + components: + - type: Transform + parent: 11127 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11144 + components: + - type: Transform + parent: 11140 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11158 + components: + - type: Transform + parent: 11154 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskBreath + entities: + - uid: 11284 + components: + - type: Transform + pos: -10.5819435,1.5265737 + parent: 2 + - uid: 11285 + components: + - type: Transform + pos: 33.678288,-27.523506 + parent: 2 + - uid: 11286 + components: + - type: Transform + pos: 43.402,-38.41342 + parent: 2 + - uid: 11287 + components: + - type: Transform + pos: 18.689848,-34.527428 + parent: 2 + - uid: 11288 + components: + - type: Transform + pos: -52.5,-13.5 + parent: 2 + - uid: 11289 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - uid: 11291 + components: + - type: Transform + parent: 11290 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11297 + components: + - type: Transform + pos: 51.653515,-24.5477 + parent: 2 + - uid: 11298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.16343,-11.467581 + parent: 2 +- proto: ClothingMaskBreathMedical + entities: + - uid: 11299 + components: + - type: Transform + pos: 32.73315,-36.51239 + parent: 2 + - uid: 11300 + components: + - type: Transform + pos: 63.664223,12.6749115 + parent: 2 +- proto: ClothingMaskBreathMedicalSecurity + entities: + - uid: 11302 + components: + - type: Transform + parent: 11301 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskClown + entities: + - uid: 11307 + components: + - type: Transform + pos: 55.5,17.5 + parent: 2 +- proto: ClothingMaskGas + entities: + - uid: 10934 + components: + - type: Transform + parent: 10931 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10941 + components: + - type: Transform + parent: 10938 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10948 + components: + - type: Transform + parent: 10945 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10958 + components: + - type: Transform + parent: 10953 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10959 + components: + - type: Transform + parent: 10953 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10971 + components: + - type: Transform + parent: 10966 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10972 + components: + - type: Transform + parent: 10966 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10984 + components: + - type: Transform + parent: 10979 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10985 + components: + - type: Transform + parent: 10979 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11000 + components: + - type: Transform + parent: 10996 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11001 + components: + - type: Transform + parent: 10996 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11011 + components: + - type: Transform + parent: 11007 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11012 + components: + - type: Transform + parent: 11007 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11021 + components: + - type: Transform + parent: 11019 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11070 + components: + - type: Transform + parent: 11069 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11218 + components: + - type: Transform + parent: 11213 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11219 + components: + - type: Transform + parent: 11213 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11308 + components: + - type: Transform + pos: -13.261466,-74.416336 + parent: 2 + - uid: 11309 + components: + - type: Transform + pos: 25.30574,25.583838 + parent: 2 + - uid: 11310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.136406,3.508368 + parent: 2 + - uid: 11311 + components: + - type: Transform + pos: -10.664972,-72.29757 + parent: 2 + - uid: 11312 + components: + - type: Transform + pos: -10.305597,-72.51632 + parent: 2 + - uid: 11313 + components: + - type: Transform + pos: 9.6990595,-73.872505 + parent: 2 +- proto: ClothingMaskGasAtmos + entities: + - uid: 11314 + components: + - type: Transform + pos: -44.458595,14.399037 + parent: 2 + - uid: 11316 + components: + - type: Transform + parent: 11315 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11322 + components: + - type: Transform + parent: 11321 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11328 + components: + - type: Transform + parent: 11327 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskGasCaptain + entities: + - uid: 11334 + components: + - type: Transform + parent: 11333 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskGasCentcom + entities: + - uid: 11340 + components: + - type: Transform + pos: -31.539621,-74.493805 + parent: 2 +- proto: ClothingMaskGasSecurity + entities: + - uid: 1218 + components: + - type: Transform + parent: 1209 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11094 + components: + - type: Transform + parent: 11089 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11107 + components: + - type: Transform + parent: 11102 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11120 + components: + - type: Transform + parent: 11115 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11132 + components: + - type: Transform + parent: 11127 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11145 + components: + - type: Transform + parent: 11140 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11159 + components: + - type: Transform + parent: 11154 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11342 + components: + - type: Transform + parent: 11341 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11347 + components: + - type: Transform + parent: 11346 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11352 + components: + - type: Transform + parent: 11351 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11357 + components: + - type: Transform + parent: 11356 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11367 + components: + - type: Transform + parent: 11366 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11371 + components: + - type: Transform + pos: -18.550438,34.511818 + parent: 2 + - uid: 11373 + components: + - type: Transform + parent: 11372 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskGasSwat + entities: + - uid: 11378 + components: + - type: Transform + parent: 11377 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskMuzzle + entities: + - uid: 11385 + components: + - type: Transform + parent: 11384 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskSterile + entities: + - uid: 11387 + components: + - type: Transform + pos: 38.5,-58.5 + parent: 2 + - uid: 11388 + components: + - type: Transform + pos: 54.51352,-41.49919 + parent: 2 + - uid: 11389 + components: + - type: Transform + pos: 22.523825,-33.214928 + parent: 2 + - uid: 11390 + components: + - type: Transform + pos: 53.622265,-22.344576 + parent: 2 +- proto: ClothingNeckBronzeheart + entities: + - uid: 11391 + components: + - type: Transform + pos: -29.269331,5.5125856 + parent: 2 +- proto: ClothingNeckGoldmedal + entities: + - uid: 11392 + components: + - type: Transform + pos: -29.651337,5.5125856 + parent: 2 + - uid: 11393 + components: + - type: Transform + pos: 5.4949827,-12.34338 + parent: 2 +- proto: ClothingNeckHeadphones + entities: + - uid: 11394 + components: + - type: Transform + pos: 75.59623,12.540107 + parent: 2 +- proto: ClothingNeckLawyerbadge + entities: + - uid: 1328 + components: + - type: Transform + parent: 1319 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1347 + components: + - type: Transform + parent: 1338 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckScarfStripedGreen + entities: + - uid: 11395 + components: + - type: Transform + pos: 63.447033,-2.4922638 + parent: 2 +- proto: ClothingNeckStethoscope + entities: + - uid: 11192 + components: + - type: Transform + parent: 11190 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11195 + components: + - type: Transform + parent: 11193 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11198 + components: + - type: Transform + parent: 11196 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11396 + components: + - type: Transform + pos: 30.348389,-19.489916 + parent: 2 + - uid: 11397 + components: + - type: Transform + pos: 34.5,-45.5 + parent: 2 + - uid: 11398 + components: + - type: Transform + pos: 63.304848,12.495255 + parent: 2 +- proto: ClothingNeckTieRed + entities: + - uid: 11399 + components: + - type: Transform + pos: 45.295048,-62.737274 + parent: 2 +- proto: ClothingOuterArmorBasic + entities: + - uid: 1219 + components: + - type: Transform + parent: 1209 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11095 + components: + - type: Transform + parent: 11089 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11108 + components: + - type: Transform + parent: 11102 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11121 + components: + - type: Transform + parent: 11115 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11133 + components: + - type: Transform + parent: 11127 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11146 + components: + - type: Transform + parent: 11140 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11160 + components: + - type: Transform + parent: 11154 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 11400 + components: + - type: Transform + pos: 10.389312,23.568253 + parent: 2 + - uid: 11401 + components: + - type: Transform + pos: 8.510229,40.591194 + parent: 2 + - uid: 11402 + components: + - type: Transform + pos: -2.7007787,37.504585 + parent: 2 + - uid: 11403 + components: + - type: Transform + pos: -2.3257787,37.504585 + parent: 2 +- proto: ClothingOuterArmorCaptainCarapace + entities: + - uid: 11405 + components: + - type: Transform + parent: 11404 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterArmorReflective + entities: + - uid: 11406 + components: + - type: Transform + pos: 25.662289,35.109856 + parent: 2 + - uid: 11407 + components: + - type: Transform + pos: -0.49990606,38.688835 + parent: 2 +- proto: ClothingOuterArmorRiot + entities: + - uid: 1220 + components: + - type: Transform + parent: 1209 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: Понижает вашу скорость на [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Тупой[/color] урон снижается на [color=lightblue]60%[/color]. + + - [color=yellow]Рубящий[/color] урон снижается на [color=lightblue]60%[/color]. + + - [color=yellow]Проникающий[/color] урон снижается на [color=lightblue]30%[/color]. + + - [color=yellow]Тепловой[/color] урон снижается на [color=lightblue]10%[/color]. + + - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]10%[/color]. + + - [color=orange]Взрывной[/color] урон снижен благодаря [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11408 + components: + - type: Transform + pos: -0.6561556,37.563835 + parent: 2 + - uid: 11409 + components: + - type: Transform + pos: -0.3592806,37.563835 + parent: 2 +- proto: ClothingOuterBioGeneral + entities: + - uid: 10960 + components: + - type: Transform + parent: 10953 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10961 + components: + - type: Transform + parent: 10953 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10973 + components: + - type: Transform + parent: 10966 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10974 + components: + - type: Transform + parent: 10966 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10986 + components: + - type: Transform + parent: 10979 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10987 + components: + - type: Transform + parent: 10979 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterBioJanitor + entities: + - uid: 11220 + components: + - type: Transform + parent: 11213 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11221 + components: + - type: Transform + parent: 11213 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterBioScientist + entities: + - uid: 10935 + components: + - type: Transform + parent: 10931 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10942 + components: + - type: Transform + parent: 10938 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10949 + components: + - type: Transform + parent: 10945 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterBioVirology + entities: + - uid: 11002 + components: + - type: Transform + parent: 10996 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11013 + components: + - type: Transform + parent: 11007 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCardborg + entities: + - uid: 11410 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 +- proto: ClothingOuterCoatBomber + entities: + - uid: 11411 + components: + - type: Transform + pos: -46.493744,14.462048 + parent: 2 + - uid: 11412 + components: + - type: Transform + pos: -37.66298,-8.505592 + parent: 2 +- proto: ClothingOuterCoatPirate + entities: + - uid: 11413 + components: + - type: Transform + pos: 57.9064,7.9061937 + parent: 2 + - uid: 11414 + components: + - type: Transform + pos: 58.514145,8.160378 + parent: 2 + - uid: 11415 + components: + - type: Transform + pos: 58.27977,8.379128 + parent: 2 +- proto: ClothingOuterHardsuitAtmos + entities: + - uid: 11317 + components: + - type: Transform + parent: 11315 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11323 + components: + - type: Transform + parent: 11321 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11329 + components: + - type: Transform + parent: 11327 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitBrigmedic + entities: + - uid: 11303 + components: + - type: Transform + parent: 11301 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitCap + entities: + - uid: 11335 + components: + - type: Transform + parent: 11333 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: Понижает вашу скорость на [color=yellow]20%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Тупой[/color] урон снижается на [color=lightblue]20%[/color]. + + - [color=yellow]Рубящий[/color] урон снижается на [color=lightblue]20%[/color]. + + - [color=yellow]Проникающий[/color] урон снижается на [color=lightblue]20%[/color]. + + - [color=yellow]Тепловой[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]40%[/color]. + + - [color=yellow]Лазерный[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=orange]Взрывной[/color] урон снижен благодаря [color=lightblue]50%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitEVA + entities: + - uid: 11416 + components: + - type: Transform + pos: -27.716541,-38.519775 + parent: 2 + - uid: 11417 + components: + - type: Transform + pos: -67.64001,18.280737 + parent: 2 +- proto: ClothingOuterHardsuitMedical + entities: + - uid: 11292 + components: + - type: MetaData + name: медицинский скафандр + - type: Transform + parent: 11290 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Понижает вашу скорость бега на [color=yellow]5%[/color]. + + Понижает вашу скорость ходьбы на [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]90%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitSecurity + entities: + - uid: 11343 + components: + - type: Transform + parent: 11341 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11348 + components: + - type: Transform + parent: 11346 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11353 + components: + - type: Transform + parent: 11351 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11358 + components: + - type: Transform + parent: 11356 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: Понижает вашу скорость на [color=yellow]15%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Тупой[/color] урон снижается на [color=lightblue]40%[/color]. + + - [color=yellow]Рубящий[/color] урон снижается на [color=lightblue]40%[/color]. + + - [color=yellow]Проникающий[/color] урон снижается на [color=lightblue]40%[/color]. + + - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]30%[/color]. + + - [color=aqua]Stamina[/color] damage reduced by [color=lightblue]25%[/color]. + + - [color=orange]Взрывной[/color] урон снижен благодаря [color=lightblue]60%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11368 + components: + - type: Transform + parent: 11366 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11374 + components: + - type: Transform + parent: 11372 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitWarden + entities: + - uid: 11379 + components: + - type: Transform + parent: 11377 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHoodieGrey + entities: + - uid: 11418 + components: + - type: Transform + pos: 47.616776,-72.55742 + parent: 2 + - uid: 11419 + components: + - type: Transform + pos: 47.41365,-72.40117 + parent: 2 + - uid: 11420 + components: + - type: Transform + pos: 47.60115,-72.260544 + parent: 2 + - uid: 11421 + components: + - type: Transform + pos: 47.72615,-72.416794 + parent: 2 +- proto: ClothingOuterStraightjacket + entities: + - uid: 11386 + components: + - type: Transform + parent: 11384 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterSuitEmergency + entities: + - uid: 14226 + components: + - type: Transform + parent: 13789 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterSuitFire + entities: + - uid: 11422 + components: + - type: Transform + pos: 27.448183,21.624187 + parent: 2 +- proto: ClothingOuterSuitMonkey + entities: + - uid: 11423 + components: + - type: Transform + pos: 58.5,19.5 + parent: 2 +- proto: ClothingOuterSuitRad + entities: + - uid: 11022 + components: + - type: Transform + parent: 11019 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11424 + components: + - type: Transform + pos: 9.360087,-60.550705 + parent: 2 + - uid: 11425 + components: + - type: Transform + pos: 9.672587,-60.394455 + parent: 2 +- proto: ClothingOuterVestWebMerc + entities: + - uid: 11426 + components: + - type: Transform + pos: -18.590942,12.700656 + parent: 2 +- proto: ClothingOuterWinterCap + entities: + - uid: 11427 + components: + - type: Transform + pos: 7.481188,-11.46352 + parent: 2 +- proto: ClothingOuterWinterSci + entities: + - uid: 11428 + components: + - type: Transform + pos: 57.501347,-57.40986 + parent: 2 +- proto: ClothingShoesBootsCombat + entities: + - uid: 11429 + components: + - type: Transform + pos: -18.519972,12.388156 + parent: 2 + - uid: 11430 + components: + - type: Transform + pos: 68.49056,16.310373 + parent: 2 +- proto: ClothingShoesBootsJack + entities: + - uid: 1221 + components: + - type: Transform + parent: 1209 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11096 + components: + - type: Transform + parent: 11089 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11109 + components: + - type: Transform + parent: 11102 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11122 + components: + - type: Transform + parent: 11115 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11134 + components: + - type: Transform + parent: 11127 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11147 + components: + - type: Transform + parent: 11140 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11161 + components: + - type: Transform + parent: 11154 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsMag + entities: + - uid: 11293 + components: + - type: Transform + parent: 11290 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11336 + components: + - type: Transform + parent: 11333 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11337 + components: + - type: Transform + parent: 11333 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11361 + components: + - type: Transform + pos: -19.288345,25.57303 + parent: 2 + - uid: 11363 + components: + - type: Transform + pos: -19.585451,25.343508 + parent: 2 + - uid: 11380 + components: + - type: Transform + parent: 11377 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11431 + components: + - type: Transform + pos: -9.664747,9.3493595 + parent: 2 + - uid: 11432 + components: + - type: Transform + pos: -9.367872,9.5681095 + parent: 2 + - uid: 11435 + components: + - type: Transform + pos: 0.53038836,-24.595703 + parent: 2 +- proto: ClothingShoesColorBlack + entities: + - uid: 1329 + components: + - type: Transform + parent: 1319 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1348 + components: + - type: Transform + parent: 1338 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesColorWhite + entities: + - uid: 11082 + components: + - type: Transform + parent: 11078 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesFlippers + entities: + - uid: 11436 + components: + - type: Transform + pos: 70.422775,14.622831 + parent: 2 +- proto: ClothingShoesGaloshes + entities: + - uid: 11222 + components: + - type: Transform + parent: 11213 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11223 + components: + - type: Transform + parent: 11213 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11437 + components: + - type: Transform + pos: 23.665749,30.481749 + parent: 2 +- proto: ClothingShoesGeta + entities: + - uid: 11087 + components: + - type: Transform + parent: 11084 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoeSlippersDuck + entities: + - uid: 11438 + components: + - type: Transform + pos: 45.466923,-63.487274 + parent: 2 +- proto: ClothingUnderSocksBee + entities: + - uid: 11439 + components: + - type: Transform + pos: 75.39761,12.476688 + parent: 2 +- proto: ClothingUnderSocksCoder + entities: + - uid: 11440 + components: + - type: Transform + pos: 1.4697213,-22.60485 + parent: 2 +- proto: ClothingUniformJumpskirtJanimaidmini + entities: + - uid: 11083 + components: + - type: Transform + parent: 11078 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtLawyerBlack + entities: + - uid: 1330 + components: + - type: Transform + parent: 1319 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1349 + components: + - type: Transform + parent: 1338 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtLawyerBlue + entities: + - uid: 1331 + components: + - type: Transform + parent: 1319 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1350 + components: + - type: Transform + parent: 1338 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtLawyerGood + entities: + - uid: 1332 + components: + - type: Transform + parent: 1319 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1351 + components: + - type: Transform + parent: 1338 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtLawyerRed + entities: + - uid: 1333 + components: + - type: Transform + parent: 1319 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1352 + components: + - type: Transform + parent: 1338 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtSec + entities: + - uid: 11097 + components: + - type: Transform + parent: 11089 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11110 + components: + - type: Transform + parent: 11102 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11123 + components: + - type: Transform + parent: 11115 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11135 + components: + - type: Transform + parent: 11127 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11148 + components: + - type: Transform + parent: 11140 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11162 + components: + - type: Transform + parent: 11154 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitHawaiBlack + entities: + - uid: 11049 + components: + - type: Transform + parent: 11048 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11050 + components: + - type: Transform + parent: 11048 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11051 + components: + - type: Transform + parent: 11048 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitHawaiBlue + entities: + - uid: 11052 + components: + - type: Transform + parent: 11048 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11053 + components: + - type: Transform + parent: 11048 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11054 + components: + - type: Transform + parent: 11048 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitHawaiRed + entities: + - uid: 11055 + components: + - type: Transform + parent: 11048 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11056 + components: + - type: Transform + parent: 11048 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11057 + components: + - type: Transform + parent: 11048 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitHawaiYellow + entities: + - uid: 11058 + components: + - type: Transform + parent: 11048 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11059 + components: + - type: Transform + parent: 11048 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11060 + components: + - type: Transform + parent: 11048 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitLawyerBlack + entities: + - uid: 1334 + components: + - type: Transform + parent: 1319 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1353 + components: + - type: Transform + parent: 1338 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitLawyerBlue + entities: + - uid: 1335 + components: + - type: Transform + parent: 1319 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1354 + components: + - type: Transform + parent: 1338 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitLawyerGood + entities: + - uid: 1336 + components: + - type: Transform + parent: 1319 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1355 + components: + - type: Transform + parent: 1338 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitLawyerRed + entities: + - uid: 1337 + components: + - type: Transform + parent: 1319 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1356 + components: + - type: Transform + parent: 1338 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPrisonGuard + entities: + - uid: 1222 + components: + - type: Transform + parent: 1209 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitSec + entities: + - uid: 11098 + components: + - type: Transform + parent: 11089 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11111 + components: + - type: Transform + parent: 11102 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11124 + components: + - type: Transform + parent: 11115 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11136 + components: + - type: Transform + parent: 11127 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11149 + components: + - type: Transform + parent: 11140 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11163 + components: + - type: Transform + parent: 11154 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformKendoHakama + entities: + - uid: 11088 + components: + - type: Transform + parent: 11084 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformMNKUnderGarment + entities: + - uid: 11061 + components: + - type: MetaData + desc: A form-fitting, hydrodynamic blue swimsuit. + name: white swimsuit + - type: Transform + parent: 11048 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11062 + components: + - type: MetaData + desc: A form-fitting, hydrodynamic blue swimsuit. + name: white swimsuit + - type: Transform + parent: 11048 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformSwimsuitBlue + entities: + - uid: 11063 + components: + - type: Transform + parent: 11048 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11064 + components: + - type: Transform + parent: 11048 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ComfyChair + entities: + - uid: 11441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,53.5 + parent: 2 + - uid: 11442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,15.5 + parent: 2 + - uid: 11443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,14.5 + parent: 2 + - uid: 11444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,13.5 + parent: 2 + - uid: 11445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-3.5 + parent: 2 + - uid: 11446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,53.5 + parent: 2 + - uid: 11447 + components: + - type: Transform + pos: 57.5,-6.5 + parent: 2 + - uid: 11448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-10.5 + parent: 2 + - uid: 11449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-10.5 + parent: 2 + - uid: 11450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-10.5 + parent: 2 + - uid: 11451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-10.5 + parent: 2 + - uid: 11452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-7.5 + parent: 2 + - uid: 11453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-1.5 + parent: 2 + - uid: 11454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-15.5 + parent: 2 + - uid: 11455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-14.5 + parent: 2 + - uid: 11456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-15.5 + parent: 2 + - uid: 11457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-15.5 + parent: 2 + - uid: 11458 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 2 + - uid: 11459 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 2 + - uid: 11460 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 2 + - uid: 11461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-15.5 + parent: 2 + - uid: 11462 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 2 + - uid: 11463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 2 + - uid: 11464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 2 + - uid: 11465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 2 + - uid: 11466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 2 + - uid: 11467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-3.5 + parent: 2 +- proto: CommsComputerCircuitboard + entities: + - uid: 11468 + components: + - type: Transform + pos: -13.484488,-37.3621 + parent: 2 +- proto: ComputerAlert + entities: + - uid: 11469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-84.5 + parent: 2 + - uid: 11470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-43.5 + parent: 2 +- proto: ComputerAnalysisConsole + entities: + - uid: 11471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-26.5 + parent: 2 + - uid: 11472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-26.5 + parent: 2 +- proto: computerBodyScanner + entities: + - uid: 11473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-36.5 + parent: 2 + - uid: 11474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-17.5 + parent: 2 + - uid: 11475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-36.5 + parent: 2 + - uid: 11476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-23.5 + parent: 2 + - uid: 11477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-26.5 + parent: 2 + - uid: 11478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-29.5 + parent: 2 + - uid: 11479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-27.5 + parent: 2 +- proto: ComputerCargoBounty + entities: + - uid: 11480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-23.5 + parent: 2 +- proto: ComputerCargoOrders + entities: + - uid: 11481 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 2 + - uid: 11482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-23.5 + parent: 2 + - uid: 11483 + components: + - type: Transform + pos: -22.5,-21.5 + parent: 2 + - uid: 11484 + components: + - type: Transform + pos: -30.5,-29.5 + parent: 2 +- proto: ComputerCloningConsole + entities: + - uid: 11485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-29.5 + parent: 2 +- proto: ComputerComms + entities: + - uid: 11486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-18.5 + parent: 2 + - uid: 11487 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 +- proto: ComputerCrewMonitoring + entities: + - uid: 11488 + components: + - type: Transform + pos: 46.5,-38.5 + parent: 2 + - uid: 11489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-47.5 + parent: 2 + - uid: 11490 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 11491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-30.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 11492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 11493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,30.5 + parent: 2 + - uid: 11494 + components: + - type: Transform + pos: 17.5,35.5 + parent: 2 + - uid: 11495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,3.5 + parent: 2 +- proto: ComputerId + entities: + - uid: 11496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-18.5 + parent: 2 + - uid: 11497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 2 + - uid: 11498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-27.5 + parent: 2 +- proto: ComputerMedicalRecords + entities: + - uid: 11499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-21.5 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 11500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + - uid: 11501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-85.5 + parent: 2 + - uid: 11502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-63.5 + parent: 2 + - uid: 11503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-57.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 11504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-38.5 + parent: 2 + - uid: 11505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-36.5 + parent: 2 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 11506 + components: + - type: Transform + pos: 71.5,-43.5 + parent: 2 + - uid: 11507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-31.5 + parent: 2 + - uid: 11508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-20.5 + parent: 2 + - uid: 11509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-17.5 + parent: 2 + - uid: 11510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 2 + - uid: 11511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-37.5 + parent: 2 +- proto: ComputerShuttleCargo + entities: + - uid: 11512 + components: + - type: Transform + pos: -41.5,-29.5 + parent: 2 + - uid: 11513 + components: + - type: Transform + pos: -31.5,-29.5 + parent: 2 +- proto: ComputerShuttleSalvage + entities: + - uid: 11514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-37.5 + parent: 2 +- proto: ComputerSolarControl + entities: + - uid: 11515 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - uid: 11516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-63.5 + parent: 2 + - uid: 11517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,19.5 + parent: 2 + - uid: 11518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,22.5 + parent: 2 + - uid: 11519 + components: + - type: Transform + pos: -37.5,-60.5 + parent: 2 + - uid: 11520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-64.5 + parent: 2 +- proto: ComputerStationRecords + entities: + - uid: 11521 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 2 + - uid: 11522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,17.5 + parent: 2 + - uid: 11523 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 2 + - uid: 11524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 2 + - uid: 11525 + components: + - type: Transform + pos: 19.5,35.5 + parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 11526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 2 + - uid: 11527 + components: + - type: Transform + pos: -15.5,39.5 + parent: 2 + - uid: 11528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,30.5 + parent: 2 + - uid: 11529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-29.5 + parent: 2 + - uid: 11530 + components: + - type: Transform + pos: 18.5,35.5 + parent: 2 + - uid: 11531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,29.5 + parent: 2 + - uid: 11532 + components: + - type: Transform + pos: 2.5,24.5 + parent: 2 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 11533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,30.5 + parent: 2 + - uid: 11534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-35.5 + parent: 2 +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 11535 + components: + - type: Transform + pos: 72.5,-17.5 + parent: 2 +- proto: ContainmentFieldGenerator + entities: + - uid: 11536 + components: + - type: Transform + pos: -11.5,-65.5 + parent: 2 + - uid: 11537 + components: + - type: Transform + pos: -11.5,-66.5 + parent: 2 + - uid: 11538 + components: + - type: Transform + pos: -4.5,-92.5 + parent: 2 + - uid: 11539 + components: + - type: Transform + pos: 3.5,-92.5 + parent: 2 + - uid: 11540 + components: + - type: Transform + pos: 3.5,-84.5 + parent: 2 + - uid: 11541 + components: + - type: Transform + pos: -4.5,-84.5 + parent: 2 + - uid: 11542 + components: + - type: Transform + pos: -13.5,-64.5 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 11543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23344 + - uid: 11544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23345 + - uid: 11545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23345 + - uid: 11546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23345 + - uid: 11547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23343 + - uid: 11548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23343 + - uid: 11549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23346 + - uid: 11550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23346 + - uid: 11551 + components: + - type: Transform + pos: -57.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23346 + - uid: 11552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23346 + - uid: 11553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23346 + - uid: 11554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23346 + - uid: 11555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23346 + - uid: 11556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23346 + - uid: 11557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23346 + - uid: 11558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23346 + - uid: 11559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23346 + - uid: 11560 + components: + - type: Transform + pos: 62.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23347 + - uid: 11561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23346 + - uid: 11562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-15.5 + parent: 2 + - uid: 11563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23346 + - uid: 11564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23345 + - uid: 11565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23344 + - uid: 11566 + components: + - type: Transform + pos: 60.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23340 + - uid: 11567 + components: + - type: Transform + pos: 62.5,-20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23347 + - uid: 11568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23345 + - uid: 11569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23344 + - uid: 11570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23344 + - uid: 11571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23344 + - uid: 11572 + components: + - type: Transform + pos: 60.5,-20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23340 + - uid: 11573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23343 + - uid: 11574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23343 + - uid: 11575 + components: + - type: Transform + pos: 27.5,30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23343 + - uid: 11576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23343 + - uid: 11577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23343 +- proto: CounterWoodFrame + entities: + - uid: 11578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-37.5 + parent: 2 + - uid: 11579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-37.5 + parent: 2 +- proto: CrateAirlockKit + entities: + - uid: 11580 + components: + - type: Transform + pos: -44.5,4.5 + parent: 2 +- proto: CrateArtifactContainer + entities: + - uid: 11581 + components: + - type: Transform + pos: 81.5,-23.5 + parent: 2 + - uid: 11582 + components: + - type: Transform + pos: 80.5,-23.5 + parent: 2 +- proto: CrateCommandSecure + entities: + - uid: 11084 + components: + - type: Transform + pos: -33.5,5.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1462 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11087 + - 11086 + - 11088 + - 11085 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11245 + components: + - type: Transform + pos: -29.5,3.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11246 + - 11249 + - 11247 + - 11248 + - 11250 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEmptySpawner + entities: + - uid: 11583 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 2 + - uid: 11584 + components: + - type: Transform + pos: -31.5,-13.5 + parent: 2 + - uid: 11585 + components: + - type: Transform + pos: -31.5,-12.5 + parent: 2 + - uid: 11586 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 2 +- proto: CrateEngineering + entities: + - uid: 11587 + components: + - type: Transform + pos: -19.5,20.5 + parent: 2 +- proto: CrateEngineeringAMEJar + entities: + - uid: 11588 + components: + - type: Transform + pos: 11.5,-70.5 + parent: 2 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11589 + components: + - type: Transform + pos: -6.5,-63.5 + parent: 2 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 11590 + components: + - type: Transform + pos: 11.5,-74.5 + parent: 2 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateEngineeringCableBulk + entities: + - uid: 11591 + components: + - type: Transform + pos: -7.5,-63.5 + parent: 2 + - uid: 11592 + components: + - type: Transform + pos: -44.5,10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 11593 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 11594 + components: + - type: Transform + pos: -23.5,-64.5 + parent: 2 +- proto: CrateEngineeringCableLV + entities: + - uid: 11595 + components: + - type: Transform + pos: -45.5,2.5 + parent: 2 +- proto: CrateEngineeringShuttle + entities: + - uid: 11596 + components: + - type: Transform + pos: -66.5,15.5 + parent: 2 + - uid: 11597 + components: + - type: Transform + pos: -5.5,-62.5 + parent: 2 +- proto: CrateFilledSpawner + entities: + - uid: 11598 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 2 + - uid: 11599 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 2 + - uid: 11600 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 2 + - uid: 11601 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 2 + - uid: 11602 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 2 + - uid: 11603 + components: + - type: Transform + pos: -36.5,-24.5 + parent: 2 + - uid: 11604 + components: + - type: Transform + pos: -33.5,-22.5 + parent: 2 + - uid: 11605 + components: + - type: Transform + pos: -35.5,-21.5 + parent: 2 + - uid: 11606 + components: + - type: Transform + pos: -37.5,-23.5 + parent: 2 +- proto: CrateFoodCooking + entities: + - uid: 11607 + components: + - type: Transform + pos: -6.5,48.5 + parent: 2 + - uid: 11608 + components: + - type: Transform + pos: 40.5,-4.5 + parent: 2 + - uid: 11609 + components: + - type: Transform + pos: 39.5,-4.5 + parent: 2 +- proto: CrateFreezer + entities: + - uid: 11610 + components: + - type: Transform + pos: 39.5,0.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 234.99966 + 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: + - 11611 + - 11612 + - 11613 + - 11614 + - 11615 + - 11616 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11617 + components: + - type: Transform + pos: 40.5,0.5 + parent: 2 + - uid: 11618 + components: + - type: Transform + pos: 40.5,-1.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 234.99966 + 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: + - 11619 + - 11620 + - 11621 + - 11622 + - 11623 + - 11624 + - 11625 + - 11626 + - 11627 + - 11628 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateFunInstrumentsVariety + entities: + - uid: 11629 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 +- proto: CrateGenericSteel + entities: + - uid: 11078 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11081 + - 11079 + - 11083 + - 11082 + - 11080 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11630 + components: + - type: Transform + pos: -51.5,-18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 2.146141 + - 8.073578 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 11631 + components: + - type: Transform + pos: -8.5,-43.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 2.146141 + - 8.073578 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 11632 + components: + - type: Transform + pos: -32.5,-43.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 11633 + components: + - type: Transform + pos: -20.5,-58.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 2.146141 + - 8.073578 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 11634 + components: + - type: Transform + pos: -10.5,-41.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 11635 + components: + - type: Transform + pos: -9.5,-41.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 11636 + components: + - type: Transform + pos: -31.5,-10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11656 + - 11651 + - 11655 + - 11654 + - 11653 + - 11652 + - 11650 + - 11649 + - 11648 + - 11641 + - 11666 + - 11640 + - 11639 + - 11638 + - 11637 + - 11646 + - 11665 + - 11664 + - 11663 + - 11662 + - 11647 + - 11661 + - 11645 + - 11660 + - 11659 + - 11658 + - 11657 + - 11644 + - 11643 + - 11642 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11667 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 2 + - uid: 11668 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 + - uid: 11669 + components: + - type: Transform + pos: -34.5,-4.5 + parent: 2 +- proto: CrateHydroponicsSeeds + entities: + - uid: 11670 + components: + - type: Transform + pos: -43.5,20.5 + parent: 2 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11671 + components: + - type: Transform + pos: -44.5,2.5 + parent: 2 +- proto: CrateHydroSecure + entities: + - uid: 11672 + components: + - type: Transform + pos: 49.5,-6.5 + parent: 2 +- proto: CrateInternals + entities: + - uid: 11673 + components: + - type: Transform + pos: 47.5,-34.5 + parent: 2 +- proto: CrateMaterialGlass + entities: + - uid: 11674 + components: + - type: Transform + pos: -45.5,3.5 + parent: 2 +- proto: CrateMaterialPlasma + entities: + - uid: 11675 + components: + - type: Transform + pos: -12.5,-61.5 + parent: 2 + - uid: 11676 + components: + - type: Transform + pos: -8.5,-63.5 + parent: 2 +- proto: CrateMaterialPlasteel + entities: + - uid: 11677 + components: + - type: Transform + pos: -5.5,-63.5 + parent: 2 +- proto: CrateMaterialSteel + entities: + - uid: 11678 + components: + - type: Transform + pos: -8.5,-62.5 + parent: 2 + - uid: 11679 + components: + - type: Transform + pos: -8.5,6.5 + parent: 2 + - uid: 11680 + components: + - type: Transform + pos: 10.5,-27.5 + parent: 2 + - uid: 11681 + components: + - type: Transform + pos: 57.5,-21.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateMedicalSurgery + entities: + - uid: 11682 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 2 +- proto: CrateNPCCow + entities: + - uid: 11683 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 2 +- proto: CrateNPCHamlet + entities: + - uid: 11684 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 +- proto: CrateScienceSecure + entities: + - uid: 11685 + components: + - type: Transform + pos: 72.5,-31.5 + parent: 2 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 11213 + components: + - type: Transform + pos: -51.5,-6.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11216 + - 11223 + - 11217 + - 11221 + - 11220 + - 11227 + - 11226 + - 11225 + - 11215 + - 11214 + - 11224 + - 11218 + - 11222 + - 11219 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateServiceReplacementLights + entities: + - uid: 11686 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 2.146141 + - 8.073578 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + PaperLabel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Construction + containers: + - EntityStorageComponent + - entity_storage +- proto: CrateTrainingBombs + entities: + - uid: 11687 + components: + - type: Transform + pos: 21.5,32.5 + parent: 2 +- proto: CrateTrashCart + entities: + - uid: 11688 + components: + - type: Transform + pos: 23.5,28.5 + parent: 2 + - uid: 11689 + components: + - type: Transform + pos: -57.5,-20.5 + parent: 2 + - uid: 11690 + components: + - type: Transform + pos: -51.5,-10.5 + parent: 2 + - uid: 11691 + components: + - type: Transform + pos: -59.5,-17.5 + parent: 2 +- proto: CrateTrashCartJani + entities: + - uid: 11692 + components: + - type: Transform + pos: -49.5,-6.5 + parent: 2 +- proto: CrateWeaponSecure + entities: + - uid: 11693 + components: + - type: Transform + pos: 1.5,35.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11697 + - 11695 + - 11694 + - 11698 + - 11696 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrayonBox + entities: + - uid: 11699 + components: + - type: Transform + pos: 65.5,2.5 + parent: 2 + - uid: 11701 + components: + - type: Transform + parent: 11700 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11712 + components: + - type: Transform + parent: 11711 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Crematorium + entities: + - uid: 11719 + components: + - type: Transform + pos: 60.5,2.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrewMonitoringServer + entities: + - uid: 11720 + components: + - type: Transform + pos: 52.5,-29.5 + parent: 2 + - type: SingletonDeviceNetServer + active: False + available: False +- proto: Crowbar + entities: + - uid: 11721 + components: + - type: Transform + pos: -24.345285,-43.747276 + parent: 2 + - uid: 11722 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 2 + - uid: 11723 + components: + - type: Transform + pos: 40.48116,-72.5237 + parent: 2 +- proto: CrowbarRed + entities: + - uid: 11112 + components: + - type: Transform + parent: 11102 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11150 + components: + - type: Transform + parent: 11140 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11724 + components: + - type: Transform + pos: -17.454494,22.553839 + parent: 2 + - uid: 11725 + components: + - type: Transform + pos: -17.610744,22.741339 + parent: 2 +- proto: CryogenicSleepUnit + entities: + - uid: 11726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-5.5 + parent: 2 + - uid: 11727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-7.5 + parent: 2 + - uid: 11728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-8.5 + parent: 2 + - uid: 11729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-4.5 + parent: 2 +- proto: CryoPod + entities: + - uid: 11730 + components: + - type: Transform + pos: 30.5,-32.5 + parent: 2 + - uid: 11731 + components: + - type: Transform + pos: 32.5,-32.5 + parent: 2 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 11732 + components: + - type: Transform + pos: 31.391907,-32.330605 + parent: 2 + - uid: 11733 + components: + - type: Transform + pos: 31.548157,-32.12748 + parent: 2 +- proto: CyborgEndoskeleton + entities: + - uid: 11734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.509727,-21.425533 + parent: 2 +- proto: d10Dice + entities: + - uid: 11735 + components: + - type: Transform + pos: 56.5,3.5000002 + parent: 2 + - uid: 11736 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 +- proto: d12Dice + entities: + - uid: 11737 + components: + - type: Transform + pos: 56.5,3.5000002 + parent: 2 + - uid: 11738 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 +- proto: d20Dice + entities: + - uid: 11739 + components: + - type: Transform + pos: 56.5,3.5000002 + parent: 2 + - uid: 11740 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 + - uid: 11741 + components: + - type: Transform + pos: 55.5,18.5 + parent: 2 +- proto: d4Dice + entities: + - uid: 11742 + components: + - type: Transform + pos: 56.5,3.5000002 + parent: 2 + - uid: 11743 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 + - uid: 11744 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 +- proto: d6Dice + entities: + - uid: 11745 + components: + - type: Transform + pos: 58.5,16.5 + parent: 2 + - uid: 11746 + components: + - type: Transform + pos: 58.5,15.5 + parent: 2 + - uid: 11747 + components: + - type: Transform + pos: 56.5,3.5000002 + parent: 2 + - uid: 11748 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 +- proto: d8Dice + entities: + - uid: 11749 + components: + - type: Transform + pos: 56.5,3.5000002 + parent: 2 + - uid: 11750 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 + - uid: 11751 + components: + - type: Transform + pos: 55.5,18.5 + parent: 2 +- proto: DefaultStationBeacon + entities: + - uid: 11752 + components: + - type: Transform + pos: 38.5,-29.5 + parent: 2 + - type: NavMapBeacon + color: '#52B4E9FF' + text: Генетика + - type: WarpPoint + location: Генетика +- proto: DefaultStationBeaconAICore + entities: + - uid: 11753 + components: + - type: Transform + pos: 28.5,-110.5 + parent: 2 +- proto: DefaultStationBeaconAISatellite + entities: + - uid: 11754 + components: + - type: Transform + pos: 28.5,-91.5 + parent: 2 +- proto: DefaultStationBeaconAME + entities: + - uid: 11755 + components: + - type: Transform + pos: 11.5,-72.5 + parent: 2 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 11756 + components: + - type: Transform + pos: 72.5,-51.5 + parent: 2 + - uid: 11757 + components: + - type: Transform + pos: 75.5,-44.5 + parent: 2 + - type: NavMapBeacon + text: Лаборатория токсинов + - type: WarpPoint + location: Лаборатория токсинов + - uid: 11758 + components: + - type: Transform + pos: 116.5,-38.5 + parent: 2 + - type: NavMapBeacon + text: 'Тестовый спутник ' + - type: WarpPoint + location: 'Тестовый спутник ' + - uid: 11759 + components: + - type: Transform + pos: 57.5,-48.5 + parent: 2 + - type: NavMapBeacon + text: Лаборатория ксенобиологии + - type: WarpPoint + location: Лаборатория ксенобиологии +- proto: DefaultStationBeaconArmory + entities: + - uid: 11760 + components: + - type: Transform + pos: 2.5,37.5 + parent: 2 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 11761 + components: + - type: Transform + pos: -64.5,2.5 + parent: 2 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 11762 + components: + - type: Transform + pos: 79.5,-24.5 + parent: 2 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 11763 + components: + - type: Transform + pos: 11.5,-51.5 + parent: 2 +- proto: DefaultStationBeaconBotany + entities: + - uid: 11764 + components: + - type: Transform + pos: 46.5,-7.5 + parent: 2 +- proto: DefaultStationBeaconBridge + entities: + - uid: 11765 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 +- proto: DefaultStationBeaconBrig + entities: + - uid: 11766 + components: + - type: Transform + pos: -1.5,27.5 + parent: 2 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 11767 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 11768 + components: + - type: Transform + pos: -36.5,-23.5 + parent: 2 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 11769 + components: + - type: Transform + pos: -26.5,-23.5 + parent: 2 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 11770 + components: + - type: Transform + pos: 3.5,-60.5 + parent: 2 +- proto: DefaultStationBeaconChapel + entities: + - uid: 11771 + components: + - type: Transform + pos: 69.5,-1.5 + parent: 2 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 11772 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 2 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 11773 + components: + - type: Transform + pos: 32.5,-35.5 + parent: 2 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 11774 + components: + - type: Transform + pos: -46.5,-6.5 + parent: 2 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 11775 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 11776 + components: + - type: Transform + pos: -58.5,-17.5 + parent: 2 +- proto: DefaultStationBeaconDorms + entities: + - uid: 11777 + components: + - type: Transform + pos: 10.5,11.5 + parent: 2 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 11778 + components: + - type: Transform + pos: -0.5,-66.5 + parent: 2 +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 11779 + components: + - type: Transform + pos: -64.5,-9.5 + parent: 2 + - uid: 11780 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 +- proto: DefaultStationBeaconEvac + entities: + - uid: 11781 + components: + - type: Transform + pos: 81.5,-9.5 + parent: 2 +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 11782 + components: + - type: Transform + pos: -17.5,24.5 + parent: 2 + - uid: 11783 + components: + - type: Transform + pos: -11.5,4.5 + parent: 2 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 11784 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 2 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 11785 + components: + - type: Transform + pos: -9.5,-26.5 + parent: 2 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 11786 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 11787 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 11788 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 11789 + components: + - type: Transform + pos: -12.5,16.5 + parent: 2 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 11790 + components: + - type: Transform + pos: 56.5,-1.5 + parent: 2 +- proto: DefaultStationBeaconMailroom + entities: + - uid: 11791 + components: + - type: Transform + pos: -21.5,-17.5 + parent: 2 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 11792 + components: + - type: Transform + pos: 32.5,-24.5 + parent: 2 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 11793 + components: + - type: Transform + pos: 42.5,-18.5 + parent: 2 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 11794 + components: + - type: Transform + pos: -10.5,40.5 + parent: 2 +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 11795 + components: + - type: Transform + pos: -24.5,-69.5 + parent: 2 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 11796 + components: + - type: Transform + pos: 71.5,-36.5 + parent: 2 +- proto: DefaultStationBeaconRND + entities: + - uid: 11797 + components: + - type: Transform + pos: 66.5,-26.5 + parent: 2 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 11798 + components: + - type: Transform + pos: 60.5,-21.5 + parent: 2 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 11799 + components: + - type: Transform + pos: -26.5,-34.5 + parent: 2 +- proto: DefaultStationBeaconSecurityCheckpoint + entities: + - uid: 11800 + components: + - type: Transform + pos: -58.5,4.5 + parent: 2 +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 11801 + components: + - type: Transform + pos: 56.5,-30.5 + parent: 2 +- proto: DefaultStationBeaconSolars + entities: + - uid: 11802 + components: + - type: Transform + pos: 47.5,19.5 + parent: 2 + - uid: 11803 + components: + - type: Transform + pos: -40.5,-61.5 + parent: 2 + - uid: 11804 + components: + - type: Transform + pos: -49.5,25.5 + parent: 2 + - uid: 11805 + components: + - type: Transform + pos: 81.5,-64.5 + parent: 2 +- proto: DefaultStationBeaconSurgery + entities: + - uid: 11806 + components: + - type: Transform + pos: 21.5,-34.5 + parent: 2 +- proto: DefaultStationBeaconTechVault + entities: + - uid: 11807 + components: + - type: Transform + pos: -8.5,-36.5 + parent: 2 +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 11808 + components: + - type: Transform + pos: -12.5,-53.5 + parent: 2 +- proto: DefaultStationBeaconTheater + entities: + - uid: 11809 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 11810 + components: + - type: Transform + pos: -42.5,2.5 + parent: 2 +- proto: DefaultStationBeaconVault + entities: + - uid: 11811 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 11812 + components: + - type: Transform + pos: 3.5,32.5 + parent: 2 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 11813 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 2 + - uid: 11814 + components: + - type: Transform + pos: 35.5,-44.5 + parent: 2 + - uid: 11815 + components: + - type: Transform + pos: 35.5,-47.5 + parent: 2 + - uid: 11816 + components: + - type: Transform + pos: 32.5,-26.5 + parent: 2 + - uid: 11817 + components: + - type: Transform + pos: -8.5,33.5 + parent: 2 + - uid: 11818 + components: + - type: Transform + pos: 34.5,-33.5 + parent: 2 + - uid: 11819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-41.5 + parent: 2 +- proto: DeployableBarrier + entities: + - uid: 11820 + components: + - type: Transform + pos: 3.5,38.5 + parent: 2 + - uid: 11821 + components: + - type: Transform + pos: 3.5,39.5 + parent: 2 + - uid: 11822 + components: + - type: Transform + pos: 4.5,38.5 + parent: 2 + - uid: 11823 + components: + - type: Transform + pos: 4.5,39.5 + parent: 2 +- proto: DeskBell + entities: + - uid: 11824 + components: + - type: Transform + pos: 1.5,22.5 + parent: 2 + - type: Physics + canCollide: False + bodyType: Static + - uid: 11825 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - type: Physics + canCollide: False + bodyType: Static + - uid: 11826 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 2 + - type: Physics + canCollide: False + bodyType: Static +- proto: DiceBag + entities: + - uid: 11827 + components: + - type: Transform + pos: -14.614862,48.57499 + parent: 2 +- proto: DiseaseDiagnoser + entities: + - uid: 11828 + components: + - type: Transform + pos: 41.5,-58.5 + parent: 2 +- proto: DisgustingSweptSoup + entities: + - uid: 11829 + components: + - type: Transform + pos: 38.567345,-70.52471 + parent: 2 +- proto: DisposalBend + entities: + - uid: 11830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,29.5 + parent: 2 + - uid: 11831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,30.5 + parent: 2 + - uid: 11832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,29.5 + parent: 2 + - uid: 11833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,10.5 + parent: 2 + - uid: 11834 + components: + - type: Transform + pos: 44.5,-28.5 + parent: 2 + - uid: 11835 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 11836 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 11837 + components: + - type: Transform + pos: 5.5,-65.5 + parent: 2 + - uid: 11838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-13.5 + parent: 2 + - uid: 11839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-14.5 + parent: 2 + - uid: 11840 + components: + - type: Transform + pos: -55.5,-13.5 + parent: 2 + - uid: 11841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-15.5 + parent: 2 + - uid: 11842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,19.5 + parent: 2 + - uid: 11843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,17.5 + parent: 2 + - uid: 11844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,9.5 + parent: 2 + - uid: 11845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,9.5 + parent: 2 + - uid: 11846 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 11847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,14.5 + parent: 2 + - uid: 11848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-4.5 + parent: 2 + - uid: 11849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-4.5 + parent: 2 + - uid: 11850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,20.5 + parent: 2 + - uid: 11851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,17.5 + parent: 2 + - uid: 11852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,26.5 + parent: 2 + - uid: 11853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,26.5 + parent: 2 + - uid: 11854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,23.5 + parent: 2 + - uid: 11855 + components: + - type: Transform + pos: -16.5,19.5 + parent: 2 + - uid: 11856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-33.5 + parent: 2 + - uid: 11857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,3.5 + parent: 2 + - uid: 11858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-9.5 + parent: 2 + - uid: 11859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-2.5 + parent: 2 + - uid: 11860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-0.5 + parent: 2 + - uid: 11861 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 2 + - uid: 11862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,2.5 + parent: 2 + - uid: 11863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,2.5 + parent: 2 + - uid: 11864 + components: + - type: Transform + pos: 54.5,10.5 + parent: 2 + - uid: 11865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,10.5 + parent: 2 + - uid: 11866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,3.5 + parent: 2 + - uid: 11867 + components: + - type: Transform + pos: 61.5,5.5 + parent: 2 + - uid: 11868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,0.5 + parent: 2 + - uid: 11869 + components: + - type: Transform + pos: 66.5,0.5 + parent: 2 + - uid: 11870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,1.5 + parent: 2 + - uid: 11871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-14.5 + parent: 2 + - uid: 11872 + components: + - type: Transform + pos: -50.5,-15.5 + parent: 2 + - uid: 11873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-18.5 + parent: 2 + - uid: 11874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-18.5 + parent: 2 + - uid: 11875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-9.5 + parent: 2 + - uid: 11876 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - uid: 11877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-12.5 + parent: 2 + - uid: 11878 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 11879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-8.5 + parent: 2 + - uid: 11880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-16.5 + parent: 2 + - uid: 11881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-15.5 + parent: 2 + - uid: 11882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-16.5 + parent: 2 + - uid: 11883 + components: + - type: Transform + pos: -39.5,-15.5 + parent: 2 + - uid: 11884 + components: + - type: Transform + pos: -21.5,-24.5 + parent: 2 + - uid: 11885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-24.5 + parent: 2 + - uid: 11886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-20.5 + parent: 2 + - uid: 11887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-52.5 + parent: 2 + - uid: 11888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-52.5 + parent: 2 + - uid: 11889 + components: + - type: Transform + pos: -44.5,-51.5 + parent: 2 + - uid: 11890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-51.5 + parent: 2 + - uid: 11891 + components: + - type: Transform + pos: -46.5,-50.5 + parent: 2 + - uid: 11892 + components: + - type: Transform + pos: -26.5,-30.5 + parent: 2 + - uid: 11893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-33.5 + parent: 2 + - uid: 11894 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 2 + - uid: 11895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-47.5 + parent: 2 + - uid: 11896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-44.5 + parent: 2 + - uid: 11897 + components: + - type: Transform + pos: -10.5,-44.5 + parent: 2 + - uid: 11898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-30.5 + parent: 2 + - uid: 11899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-47.5 + parent: 2 + - uid: 11900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-60.5 + parent: 2 + - uid: 11901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-60.5 + parent: 2 + - uid: 11902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-59.5 + parent: 2 + - uid: 11903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-59.5 + parent: 2 + - uid: 11904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-56.5 + parent: 2 + - uid: 11905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-47.5 + parent: 2 + - uid: 11906 + components: + - type: Transform + pos: 6.5,-45.5 + parent: 2 + - uid: 11907 + components: + - type: Transform + pos: 9.5,-47.5 + parent: 2 + - uid: 11908 + components: + - type: Transform + pos: 8.5,-56.5 + parent: 2 + - uid: 11909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-67.5 + parent: 2 + - uid: 11910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-67.5 + parent: 2 + - uid: 11911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-38.5 + parent: 2 + - uid: 11912 + components: + - type: Transform + pos: 32.5,-38.5 + parent: 2 + - uid: 11913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-57.5 + parent: 2 + - uid: 11914 + components: + - type: Transform + pos: 36.5,-57.5 + parent: 2 + - uid: 11915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-62.5 + parent: 2 + - uid: 11916 + components: + - type: Transform + pos: 40.5,-62.5 + parent: 2 + - uid: 11917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-65.5 + parent: 2 + - uid: 11918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-65.5 + parent: 2 + - uid: 11919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-62.5 + parent: 2 + - uid: 11920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-25.5 + parent: 2 + - uid: 11921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-39.5 + parent: 2 + - uid: 11922 + components: + - type: Transform + pos: 40.5,-33.5 + parent: 2 + - uid: 11923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-33.5 + parent: 2 + - uid: 11924 + components: + - type: Transform + pos: 39.5,-32.5 + parent: 2 + - uid: 11925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-60.5 + parent: 2 + - uid: 11926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-16.5 + parent: 2 + - uid: 11927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-22.5 + parent: 2 + - uid: 11928 + components: + - type: Transform + pos: 57.5,-16.5 + parent: 2 + - uid: 11929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-62.5 + parent: 2 + - uid: 11930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-61.5 + parent: 2 + - uid: 11931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-61.5 + parent: 2 + - uid: 11932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-56.5 + parent: 2 + - uid: 11933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-56.5 + parent: 2 + - uid: 11934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-53.5 + parent: 2 + - uid: 11935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-43.5 + parent: 2 + - uid: 11936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-36.5 + parent: 2 + - uid: 11937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-40.5 + parent: 2 + - uid: 11938 + components: + - type: Transform + pos: 82.5,-40.5 + parent: 2 + - uid: 11939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-60.5 + parent: 2 + - uid: 11940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-21.5 + parent: 2 + - uid: 11941 + components: + - type: Transform + pos: 85.5,-21.5 + parent: 2 + - uid: 11942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,-32.5 + parent: 2 + - uid: 11943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-32.5 + parent: 2 + - uid: 11944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,-33.5 + parent: 2 + - uid: 11945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-30.5 + parent: 2 + - uid: 11946 + components: + - type: Transform + pos: 70.5,-13.5 + parent: 2 + - uid: 11947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-17.5 + parent: 2 + - uid: 11948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-32.5 + parent: 2 + - uid: 11949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-39.5 + parent: 2 + - uid: 11950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-13.5 + parent: 2 + - uid: 11951 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 2 + - uid: 11952 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 2 + - uid: 11953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,23.5 + parent: 2 + - uid: 11954 + components: + - type: Transform + pos: 19.5,-22.5 + parent: 2 + - uid: 11955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-49.5 + parent: 2 + - uid: 11956 + components: + - type: Transform + pos: 57.5,-34.5 + parent: 2 + - uid: 11957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,10.5 + parent: 2 + - uid: 11958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,13.5 + parent: 2 + - uid: 11959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-1.5 + parent: 2 + - uid: 11960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-36.5 + parent: 2 + - uid: 11961 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - uid: 11962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-23.5 + parent: 2 + - uid: 11963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-17.5 + parent: 2 + - uid: 11964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-31.5 + parent: 2 + - uid: 11965 + components: + - type: Transform + pos: 39.5,-23.5 + parent: 2 + - uid: 11966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-28.5 + parent: 2 + - uid: 11967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 2 + - uid: 11968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,10.5 + parent: 2 + - uid: 11969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,10.5 + parent: 2 + - uid: 11970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-21.5 + parent: 2 +- proto: DisposalJunction + entities: + - uid: 11971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 2 + - uid: 11972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-8.5 + parent: 2 + - uid: 11973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-15.5 + parent: 2 + - uid: 11974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-1.5 + parent: 2 + - uid: 11975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-11.5 + parent: 2 + - uid: 11976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,15.5 + parent: 2 + - uid: 11977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,0.5 + parent: 2 + - uid: 11978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,30.5 + parent: 2 + - uid: 11979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,5.5 + parent: 2 + - uid: 11980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-12.5 + parent: 2 + - uid: 11981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-56.5 + parent: 2 + - uid: 11982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-47.5 + parent: 2 + - uid: 11983 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 2 + - uid: 11984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-56.5 + parent: 2 + - uid: 11985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-38.5 + parent: 2 + - uid: 11986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-62.5 + parent: 2 + - uid: 11987 + components: + - type: Transform + pos: 49.5,-49.5 + parent: 2 + - uid: 11988 + components: + - type: Transform + pos: 81.5,-36.5 + parent: 2 + - uid: 11989 + components: + - type: Transform + pos: 85.5,-23.5 + parent: 2 + - uid: 11990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 2 +- proto: DisposalJunctionFlipped + entities: + - uid: 11991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-13.5 + parent: 2 + - uid: 11992 + components: + - type: Transform + pos: -50.5,-8.5 + parent: 2 + - uid: 11993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-1.5 + parent: 2 + - uid: 11994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 2 + - uid: 11995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 2 + - uid: 11996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,17.5 + parent: 2 + - uid: 11997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,3.5 + parent: 2 + - uid: 11998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,3.5 + parent: 2 + - uid: 11999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,3.5 + parent: 2 + - uid: 12000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-19.5 + parent: 2 + - uid: 12001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-20.5 + parent: 2 + - uid: 12002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-67.5 + parent: 2 + - uid: 12003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-25.5 + parent: 2 + - uid: 12004 + components: + - type: Transform + pos: 65.5,-60.5 + parent: 2 + - uid: 12005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-15.5 + parent: 2 + - uid: 12006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,14.5 + parent: 2 +- proto: DisposalPipe + entities: + - uid: 12007 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 2 + - uid: 12008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-49.5 + parent: 2 + - uid: 12009 + components: + - type: Transform + pos: 39.5,-24.5 + parent: 2 + - uid: 12010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,29.5 + parent: 2 + - uid: 12011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-31.5 + parent: 2 + - uid: 12012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 2 + - uid: 12013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-28.5 + parent: 2 + - uid: 12014 + components: + - type: Transform + pos: 39.5,-27.5 + parent: 2 + - uid: 12015 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 2 + - uid: 12016 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 2 + - uid: 12017 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 2 + - uid: 12018 + components: + - type: Transform + pos: -32.5,-29.5 + parent: 2 + - uid: 12019 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 + - uid: 12020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,13.5 + parent: 2 + - uid: 12021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-28.5 + parent: 2 + - uid: 12022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,10.5 + parent: 2 + - uid: 12023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,11.5 + parent: 2 + - uid: 12024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-15.5 + parent: 2 + - uid: 12025 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 2 + - uid: 12026 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - uid: 12027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-30.5 + parent: 2 + - uid: 12028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-30.5 + parent: 2 + - uid: 12029 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 2 + - uid: 12030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-30.5 + parent: 2 + - uid: 12031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-30.5 + parent: 2 + - uid: 12032 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 + - uid: 12033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-17.5 + parent: 2 + - uid: 12034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 2 + - uid: 12035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 2 + - uid: 12036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 2 + - uid: 12037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 2 + - uid: 12038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 2 + - uid: 12039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + - uid: 12040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 2 + - uid: 12041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 2 + - uid: 12042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 2 + - uid: 12043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 2 + - uid: 12044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-13.5 + parent: 2 + - uid: 12045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-12.5 + parent: 2 + - uid: 12046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-13.5 + parent: 2 + - uid: 12047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-13.5 + parent: 2 + - uid: 12048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-13.5 + parent: 2 + - uid: 12049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-13.5 + parent: 2 + - uid: 12050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-13.5 + parent: 2 + - uid: 12051 + components: + - type: Transform + pos: -55.5,-14.5 + parent: 2 + - uid: 12052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-15.5 + parent: 2 + - uid: 12053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-15.5 + parent: 2 + - uid: 12054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-15.5 + parent: 2 + - uid: 12055 + components: + - type: Transform + pos: -50.5,-13.5 + parent: 2 + - uid: 12056 + components: + - type: Transform + pos: -50.5,-12.5 + parent: 2 + - uid: 12057 + components: + - type: Transform + pos: -50.5,-11.5 + parent: 2 + - uid: 12058 + components: + - type: Transform + pos: -50.5,-10.5 + parent: 2 + - uid: 12059 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 12060 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 12061 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - uid: 12062 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - uid: 12063 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 2 + - uid: 12064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-1.5 + parent: 2 + - uid: 12065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-1.5 + parent: 2 + - uid: 12066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-1.5 + parent: 2 + - uid: 12067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-1.5 + parent: 2 + - uid: 12068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-1.5 + parent: 2 + - uid: 12069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-1.5 + parent: 2 + - uid: 12070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-1.5 + parent: 2 + - uid: 12071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-1.5 + parent: 2 + - uid: 12072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-1.5 + parent: 2 + - uid: 12073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-1.5 + parent: 2 + - uid: 12074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-1.5 + parent: 2 + - uid: 12075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-1.5 + parent: 2 + - uid: 12076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 2 + - uid: 12077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 2 + - uid: 12078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-1.5 + parent: 2 + - uid: 12079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-1.5 + parent: 2 + - uid: 12080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-1.5 + parent: 2 + - uid: 12081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-1.5 + parent: 2 + - uid: 12082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-1.5 + parent: 2 + - uid: 12083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-1.5 + parent: 2 + - uid: 12084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 2 + - uid: 12085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-1.5 + parent: 2 + - uid: 12086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 2 + - uid: 12087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-1.5 + parent: 2 + - uid: 12088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 2 + - uid: 12089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 2 + - uid: 12090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 2 + - uid: 12091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 2 + - uid: 12092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-1.5 + parent: 2 + - uid: 12093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 2 + - uid: 12094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 2 + - uid: 12095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-7.5 + parent: 2 + - uid: 12096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-5.5 + parent: 2 + - uid: 12097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-3.5 + parent: 2 + - uid: 12098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-8.5 + parent: 2 + - uid: 12099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-8.5 + parent: 2 + - uid: 12100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-8.5 + parent: 2 + - uid: 12101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-8.5 + parent: 2 + - uid: 12102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-8.5 + parent: 2 + - uid: 12103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-8.5 + parent: 2 + - uid: 12104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 2 + - uid: 12105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-8.5 + parent: 2 + - uid: 12106 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - uid: 12107 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - uid: 12108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-14.5 + parent: 2 + - uid: 12109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-15.5 + parent: 2 + - uid: 12110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-16.5 + parent: 2 + - uid: 12111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-17.5 + parent: 2 + - uid: 12112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-18.5 + parent: 2 + - uid: 12113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-14.5 + parent: 2 + - uid: 12114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-2.5 + parent: 2 + - uid: 12115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-4.5 + parent: 2 + - uid: 12116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-6.5 + parent: 2 + - uid: 12117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,17.5 + parent: 2 + - uid: 12118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,22.5 + parent: 2 + - uid: 12119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,20.5 + parent: 2 + - uid: 12120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,11.5 + parent: 2 + - uid: 12121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,23.5 + parent: 2 + - uid: 12122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,12.5 + parent: 2 + - uid: 12123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,13.5 + parent: 2 + - uid: 12124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 2 + - uid: 12125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,15.5 + parent: 2 + - uid: 12126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,16.5 + parent: 2 + - uid: 12127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,17.5 + parent: 2 + - uid: 12128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,17.5 + parent: 2 + - uid: 12129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,17.5 + parent: 2 + - uid: 12130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,17.5 + parent: 2 + - uid: 12131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,17.5 + parent: 2 + - uid: 12132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,17.5 + parent: 2 + - uid: 12133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,17.5 + parent: 2 + - uid: 12134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,17.5 + parent: 2 + - uid: 12135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,17.5 + parent: 2 + - uid: 12136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,17.5 + parent: 2 + - uid: 12137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,17.5 + parent: 2 + - uid: 12138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,17.5 + parent: 2 + - uid: 12139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,17.5 + parent: 2 + - uid: 12140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,17.5 + parent: 2 + - uid: 12141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,16.5 + parent: 2 + - uid: 12142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,17.5 + parent: 2 + - uid: 12143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,6.5 + parent: 2 + - uid: 12144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,7.5 + parent: 2 + - uid: 12145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,8.5 + parent: 2 + - uid: 12146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,10.5 + parent: 2 + - uid: 12147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,11.5 + parent: 2 + - uid: 12148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,12.5 + parent: 2 + - uid: 12149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,13.5 + parent: 2 + - uid: 12150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,14.5 + parent: 2 + - uid: 12151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,14.5 + parent: 2 + - uid: 12152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,14.5 + parent: 2 + - uid: 12153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,14.5 + parent: 2 + - uid: 12154 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 12155 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 12156 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 12157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-4.5 + parent: 2 + - uid: 12158 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 + - uid: 12159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 2 + - uid: 12160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-4.5 + parent: 2 + - uid: 12161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 2 + - uid: 12162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 2 + - uid: 12163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 2 + - uid: 12164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,4.5 + parent: 2 + - uid: 12165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,3.5 + parent: 2 + - uid: 12166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,2.5 + parent: 2 + - uid: 12167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,3.5 + parent: 2 + - uid: 12168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,1.5 + parent: 2 + - uid: 12169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 2 + - uid: 12170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-18.5 + parent: 2 + - uid: 12171 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 + - uid: 12172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,20.5 + parent: 2 + - uid: 12173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,20.5 + parent: 2 + - uid: 12174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,20.5 + parent: 2 + - uid: 12175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,20.5 + parent: 2 + - uid: 12176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,17.5 + parent: 2 + - uid: 12177 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 12178 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 12179 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 2 + - uid: 12180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,21.5 + parent: 2 + - uid: 12181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,30.5 + parent: 2 + - uid: 12182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,30.5 + parent: 2 + - uid: 12183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,30.5 + parent: 2 + - uid: 12184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,30.5 + parent: 2 + - uid: 12185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,30.5 + parent: 2 + - uid: 12186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,30.5 + parent: 2 + - uid: 12187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,30.5 + parent: 2 + - uid: 12188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,30.5 + parent: 2 + - uid: 12189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,30.5 + parent: 2 + - uid: 12190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,30.5 + parent: 2 + - uid: 12191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,29.5 + parent: 2 + - uid: 12192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,27.5 + parent: 2 + - uid: 12193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,26.5 + parent: 2 + - uid: 12194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,26.5 + parent: 2 + - uid: 12195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,26.5 + parent: 2 + - uid: 12196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,26.5 + parent: 2 + - uid: 12197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,26.5 + parent: 2 + - uid: 12198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,26.5 + parent: 2 + - uid: 12199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,26.5 + parent: 2 + - uid: 12200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,26.5 + parent: 2 + - uid: 12201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,26.5 + parent: 2 + - uid: 12202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,26.5 + parent: 2 + - uid: 12203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,26.5 + parent: 2 + - uid: 12204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,26.5 + parent: 2 + - uid: 12205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,26.5 + parent: 2 + - uid: 12206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,26.5 + parent: 2 + - uid: 12207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,26.5 + parent: 2 + - uid: 12208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,26.5 + parent: 2 + - uid: 12209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,26.5 + parent: 2 + - uid: 12210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,26.5 + parent: 2 + - uid: 12211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,26.5 + parent: 2 + - uid: 12212 + components: + - type: Transform + pos: -13.5,25.5 + parent: 2 + - uid: 12213 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - uid: 12214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,23.5 + parent: 2 + - uid: 12215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,23.5 + parent: 2 + - uid: 12216 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - uid: 12217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 2 + - uid: 12218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 2 + - uid: 12219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 2 + - uid: 12220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 2 + - uid: 12221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-1.5 + parent: 2 + - uid: 12222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 2 + - uid: 12223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 2 + - uid: 12224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 2 + - uid: 12225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 2 + - uid: 12226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 2 + - uid: 12227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 2 + - uid: 12228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 2 + - uid: 12229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 2 + - uid: 12230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 2 + - uid: 12231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 2 + - uid: 12232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 2 + - uid: 12233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 2 + - uid: 12234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 2 + - uid: 12235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 2 + - uid: 12236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 2 + - uid: 12237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,10.5 + parent: 2 + - uid: 12238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 2 + - uid: 12239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 2 + - uid: 12240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - uid: 12241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 12242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 2 + - uid: 12243 + components: + - type: Transform + pos: -16.5,18.5 + parent: 2 + - uid: 12244 + components: + - type: Transform + pos: -16.5,17.5 + parent: 2 + - uid: 12245 + components: + - type: Transform + pos: -16.5,16.5 + parent: 2 + - uid: 12246 + components: + - type: Transform + pos: -16.5,15.5 + parent: 2 + - uid: 12247 + components: + - type: Transform + pos: -16.5,14.5 + parent: 2 + - uid: 12248 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 + - uid: 12249 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 + - uid: 12250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,30.5 + parent: 2 + - uid: 12251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,3.5 + parent: 2 + - uid: 12252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,3.5 + parent: 2 + - uid: 12253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,3.5 + parent: 2 + - uid: 12254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,3.5 + parent: 2 + - uid: 12255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,3.5 + parent: 2 + - uid: 12256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,3.5 + parent: 2 + - uid: 12257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,3.5 + parent: 2 + - uid: 12258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,3.5 + parent: 2 + - uid: 12259 + components: + - type: Transform + pos: 36.5,2.5 + parent: 2 + - uid: 12260 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 12261 + components: + - type: Transform + pos: 36.5,0.5 + parent: 2 + - uid: 12262 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 2 + - uid: 12263 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 2 + - uid: 12264 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 2 + - uid: 12265 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 2 + - uid: 12266 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 2 + - uid: 12267 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 12268 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - uid: 12269 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 + - uid: 12270 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 + - uid: 12271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-9.5 + parent: 2 + - uid: 12272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-9.5 + parent: 2 + - uid: 12273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-9.5 + parent: 2 + - uid: 12274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,3.5 + parent: 2 + - uid: 12275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,3.5 + parent: 2 + - uid: 12276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,3.5 + parent: 2 + - uid: 12277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,3.5 + parent: 2 + - uid: 12278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,3.5 + parent: 2 + - uid: 12279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,3.5 + parent: 2 + - uid: 12280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,2.5 + parent: 2 + - uid: 12281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,1.5 + parent: 2 + - uid: 12282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,0.5 + parent: 2 + - uid: 12283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-0.5 + parent: 2 + - uid: 12284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-0.5 + parent: 2 + - uid: 12285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-0.5 + parent: 2 + - uid: 12286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-0.5 + parent: 2 + - uid: 12287 + components: + - type: Transform + pos: 48.5,-1.5 + parent: 2 + - uid: 12288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,3.5 + parent: 2 + - uid: 12289 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 + - uid: 12290 + components: + - type: Transform + pos: 45.5,5.5 + parent: 2 + - uid: 12291 + components: + - type: Transform + pos: 45.5,6.5 + parent: 2 + - uid: 12292 + components: + - type: Transform + pos: 45.5,7.5 + parent: 2 + - uid: 12293 + components: + - type: Transform + pos: 45.5,8.5 + parent: 2 + - uid: 12294 + components: + - type: Transform + pos: 45.5,9.5 + parent: 2 + - uid: 12295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,10.5 + parent: 2 + - uid: 12296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,10.5 + parent: 2 + - uid: 12297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,10.5 + parent: 2 + - uid: 12298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,10.5 + parent: 2 + - uid: 12299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,10.5 + parent: 2 + - uid: 12300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,10.5 + parent: 2 + - uid: 12301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,10.5 + parent: 2 + - uid: 12302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,10.5 + parent: 2 + - uid: 12303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,9.5 + parent: 2 + - uid: 12304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,8.5 + parent: 2 + - uid: 12305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,7.5 + parent: 2 + - uid: 12306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,6.5 + parent: 2 + - uid: 12307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,4.5 + parent: 2 + - uid: 12308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,3.5 + parent: 2 + - uid: 12309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,2.5 + parent: 2 + - uid: 12310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,2.5 + parent: 2 + - uid: 12311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,2.5 + parent: 2 + - uid: 12312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-9.5 + parent: 2 + - uid: 12313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-8.5 + parent: 2 + - uid: 12314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-7.5 + parent: 2 + - uid: 12315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-6.5 + parent: 2 + - uid: 12316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-5.5 + parent: 2 + - uid: 12317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-4.5 + parent: 2 + - uid: 12318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-3.5 + parent: 2 + - uid: 12319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-2.5 + parent: 2 + - uid: 12320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-1.5 + parent: 2 + - uid: 12321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-0.5 + parent: 2 + - uid: 12322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,0.5 + parent: 2 + - uid: 12323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,0.5 + parent: 2 + - uid: 12324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,0.5 + parent: 2 + - uid: 12325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,0.5 + parent: 2 + - uid: 12326 + components: + - type: Transform + pos: 61.5,1.5 + parent: 2 + - uid: 12327 + components: + - type: Transform + pos: 61.5,2.5 + parent: 2 + - uid: 12328 + components: + - type: Transform + pos: 61.5,3.5 + parent: 2 + - uid: 12329 + components: + - type: Transform + pos: 61.5,4.5 + parent: 2 + - uid: 12330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,5.5 + parent: 2 + - uid: 12331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,5.5 + parent: 2 + - uid: 12332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,5.5 + parent: 2 + - uid: 12333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,5.5 + parent: 2 + - uid: 12334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,5.5 + parent: 2 + - uid: 12335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,5.5 + parent: 2 + - uid: 12336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,0.5 + parent: 2 + - uid: 12337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-0.5 + parent: 2 + - uid: 12338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-4.5 + parent: 2 + - uid: 12339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-3.5 + parent: 2 + - uid: 12340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-2.5 + parent: 2 + - uid: 12341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-1.5 + parent: 2 + - uid: 12342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-1.5 + parent: 2 + - uid: 12343 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 2 + - uid: 12344 + components: + - type: Transform + pos: -50.5,-17.5 + parent: 2 + - uid: 12345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-18.5 + parent: 2 + - uid: 12346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-18.5 + parent: 2 + - uid: 12347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-18.5 + parent: 2 + - uid: 12348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-18.5 + parent: 2 + - uid: 12349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-18.5 + parent: 2 + - uid: 12350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-18.5 + parent: 2 + - uid: 12351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-18.5 + parent: 2 + - uid: 12352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-18.5 + parent: 2 + - uid: 12353 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 2 + - uid: 12354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-19.5 + parent: 2 + - uid: 12355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-8.5 + parent: 2 + - uid: 12356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-7.5 + parent: 2 + - uid: 12357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-6.5 + parent: 2 + - uid: 12358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-5.5 + parent: 2 + - uid: 12359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-4.5 + parent: 2 + - uid: 12360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-3.5 + parent: 2 + - uid: 12361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-2.5 + parent: 2 + - uid: 12362 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 2 + - uid: 12363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-16.5 + parent: 2 + - uid: 12364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-15.5 + parent: 2 + - uid: 12365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-16.5 + parent: 2 + - uid: 12366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-16.5 + parent: 2 + - uid: 12367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-16.5 + parent: 2 + - uid: 12368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-16.5 + parent: 2 + - uid: 12369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-15.5 + parent: 2 + - uid: 12370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-14.5 + parent: 2 + - uid: 12371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-13.5 + parent: 2 + - uid: 12372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-12.5 + parent: 2 + - uid: 12373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-11.5 + parent: 2 + - uid: 12374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-10.5 + parent: 2 + - uid: 12375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-9.5 + parent: 2 + - uid: 12376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-8.5 + parent: 2 + - uid: 12377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-8.5 + parent: 2 + - uid: 12378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-8.5 + parent: 2 + - uid: 12379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-8.5 + parent: 2 + - uid: 12380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 2 + - uid: 12381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-8.5 + parent: 2 + - uid: 12382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-8.5 + parent: 2 + - uid: 12383 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 + - uid: 12384 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 12385 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - uid: 12386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 2 + - uid: 12387 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 2 + - uid: 12388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-20.5 + parent: 2 + - uid: 12389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-20.5 + parent: 2 + - uid: 12390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-16.5 + parent: 2 + - uid: 12391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-14.5 + parent: 2 + - uid: 12392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-13.5 + parent: 2 + - uid: 12393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-18.5 + parent: 2 + - uid: 12394 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 2 + - uid: 12395 + components: + - type: Transform + pos: -32.5,-27.5 + parent: 2 + - uid: 12396 + components: + - type: Transform + pos: -32.5,-26.5 + parent: 2 + - uid: 12397 + components: + - type: Transform + pos: -32.5,-25.5 + parent: 2 + - uid: 12398 + components: + - type: Transform + pos: -32.5,-24.5 + parent: 2 + - uid: 12399 + components: + - type: Transform + pos: -32.5,-23.5 + parent: 2 + - uid: 12400 + components: + - type: Transform + pos: -32.5,-22.5 + parent: 2 + - uid: 12401 + components: + - type: Transform + pos: -32.5,-21.5 + parent: 2 + - uid: 12402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-20.5 + parent: 2 + - uid: 12403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-20.5 + parent: 2 + - uid: 12404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-20.5 + parent: 2 + - uid: 12405 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 2 + - uid: 12406 + components: + - type: Transform + pos: -21.5,-25.5 + parent: 2 + - uid: 12407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-24.5 + parent: 2 + - uid: 12408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-24.5 + parent: 2 + - uid: 12409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-24.5 + parent: 2 + - uid: 12410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-24.5 + parent: 2 + - uid: 12411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-23.5 + parent: 2 + - uid: 12412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-22.5 + parent: 2 + - uid: 12413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-21.5 + parent: 2 + - uid: 12414 + components: + - type: Transform + pos: -37.5,-51.5 + parent: 2 + - uid: 12415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-52.5 + parent: 2 + - uid: 12416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-52.5 + parent: 2 + - uid: 12417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-50.5 + parent: 2 + - uid: 12418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-51.5 + parent: 2 + - uid: 12419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-52.5 + parent: 2 + - uid: 12420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-52.5 + parent: 2 + - uid: 12421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-52.5 + parent: 2 + - uid: 12422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-52.5 + parent: 2 + - uid: 12423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-30.5 + parent: 2 + - uid: 12424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-44.5 + parent: 2 + - uid: 12425 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 2 + - uid: 12426 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 2 + - uid: 12427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-47.5 + parent: 2 + - uid: 12428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-47.5 + parent: 2 + - uid: 12429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-47.5 + parent: 2 + - uid: 12430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-47.5 + parent: 2 + - uid: 12431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-46.5 + parent: 2 + - uid: 12432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-45.5 + parent: 2 + - uid: 12433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-44.5 + parent: 2 + - uid: 12434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-43.5 + parent: 2 + - uid: 12435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-42.5 + parent: 2 + - uid: 12436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-41.5 + parent: 2 + - uid: 12437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-40.5 + parent: 2 + - uid: 12438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-39.5 + parent: 2 + - uid: 12439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-38.5 + parent: 2 + - uid: 12440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-37.5 + parent: 2 + - uid: 12441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-36.5 + parent: 2 + - uid: 12442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-35.5 + parent: 2 + - uid: 12443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-34.5 + parent: 2 + - uid: 12444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-33.5 + parent: 2 + - uid: 12445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-33.5 + parent: 2 + - uid: 12446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-33.5 + parent: 2 + - uid: 12447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-33.5 + parent: 2 + - uid: 12448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-33.5 + parent: 2 + - uid: 12449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-33.5 + parent: 2 + - uid: 12450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-33.5 + parent: 2 + - uid: 12451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-33.5 + parent: 2 + - uid: 12452 + components: + - type: Transform + pos: -26.5,-32.5 + parent: 2 + - uid: 12453 + components: + - type: Transform + pos: -26.5,-31.5 + parent: 2 + - uid: 12454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-30.5 + parent: 2 + - uid: 12455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-30.5 + parent: 2 + - uid: 12456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-30.5 + parent: 2 + - uid: 12457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-30.5 + parent: 2 + - uid: 12458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-45.5 + parent: 2 + - uid: 12459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-46.5 + parent: 2 + - uid: 12460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-47.5 + parent: 2 + - uid: 12461 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 2 + - uid: 12462 + components: + - type: Transform + pos: 4.5,-49.5 + parent: 2 + - uid: 12463 + components: + - type: Transform + pos: 4.5,-50.5 + parent: 2 + - uid: 12464 + components: + - type: Transform + pos: 4.5,-51.5 + parent: 2 + - uid: 12465 + components: + - type: Transform + pos: 4.5,-52.5 + parent: 2 + - uid: 12466 + components: + - type: Transform + pos: 4.5,-53.5 + parent: 2 + - uid: 12467 + components: + - type: Transform + pos: 4.5,-55.5 + parent: 2 + - uid: 12468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-56.5 + parent: 2 + - uid: 12469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-56.5 + parent: 2 + - uid: 12470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-56.5 + parent: 2 + - uid: 12471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-56.5 + parent: 2 + - uid: 12472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-56.5 + parent: 2 + - uid: 12473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-57.5 + parent: 2 + - uid: 12474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-58.5 + parent: 2 + - uid: 12475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-59.5 + parent: 2 + - uid: 12476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-59.5 + parent: 2 + - uid: 12477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-59.5 + parent: 2 + - uid: 12478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-59.5 + parent: 2 + - uid: 12479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-59.5 + parent: 2 + - uid: 12480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-59.5 + parent: 2 + - uid: 12481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-59.5 + parent: 2 + - uid: 12482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-59.5 + parent: 2 + - uid: 12483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-59.5 + parent: 2 + - uid: 12484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-59.5 + parent: 2 + - uid: 12485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-59.5 + parent: 2 + - uid: 12486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-59.5 + parent: 2 + - uid: 12487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-60.5 + parent: 2 + - uid: 12488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-60.5 + parent: 2 + - uid: 12489 + components: + - type: Transform + pos: -18.5,-59.5 + parent: 2 + - uid: 12490 + components: + - type: Transform + pos: -18.5,-58.5 + parent: 2 + - uid: 12491 + components: + - type: Transform + pos: -18.5,-57.5 + parent: 2 + - uid: 12492 + components: + - type: Transform + pos: -18.5,-56.5 + parent: 2 + - uid: 12493 + components: + - type: Transform + pos: -18.5,-55.5 + parent: 2 + - uid: 12494 + components: + - type: Transform + pos: -18.5,-54.5 + parent: 2 + - uid: 12495 + components: + - type: Transform + pos: -18.5,-53.5 + parent: 2 + - uid: 12496 + components: + - type: Transform + pos: -18.5,-52.5 + parent: 2 + - uid: 12497 + components: + - type: Transform + pos: -18.5,-51.5 + parent: 2 + - uid: 12498 + components: + - type: Transform + pos: -18.5,-50.5 + parent: 2 + - uid: 12499 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 2 + - uid: 12500 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 2 + - uid: 12501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-47.5 + parent: 2 + - uid: 12502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-47.5 + parent: 2 + - uid: 12503 + components: + - type: Transform + pos: 5.5,-66.5 + parent: 2 + - uid: 12504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-67.5 + parent: 2 + - uid: 12505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-67.5 + parent: 2 + - uid: 12506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-66.5 + parent: 2 + - uid: 12507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-65.5 + parent: 2 + - uid: 12508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-64.5 + parent: 2 + - uid: 12509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-63.5 + parent: 2 + - uid: 12510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-62.5 + parent: 2 + - uid: 12511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-61.5 + parent: 2 + - uid: 12512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-60.5 + parent: 2 + - uid: 12513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-59.5 + parent: 2 + - uid: 12514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-58.5 + parent: 2 + - uid: 12515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-57.5 + parent: 2 + - uid: 12516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-56.5 + parent: 2 + - uid: 12517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-56.5 + parent: 2 + - uid: 12518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-56.5 + parent: 2 + - uid: 12519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-67.5 + parent: 2 + - uid: 12520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-67.5 + parent: 2 + - uid: 12521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-67.5 + parent: 2 + - uid: 12522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-67.5 + parent: 2 + - uid: 12523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-67.5 + parent: 2 + - uid: 12524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-67.5 + parent: 2 + - uid: 12525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-67.5 + parent: 2 + - uid: 12526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-67.5 + parent: 2 + - uid: 12527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-67.5 + parent: 2 + - uid: 12528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-67.5 + parent: 2 + - uid: 12529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-67.5 + parent: 2 + - uid: 12530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-67.5 + parent: 2 + - uid: 12531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-67.5 + parent: 2 + - uid: 12532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-67.5 + parent: 2 + - uid: 12533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-54.5 + parent: 2 + - uid: 12534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-53.5 + parent: 2 + - uid: 12535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-52.5 + parent: 2 + - uid: 12536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-51.5 + parent: 2 + - uid: 12537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-50.5 + parent: 2 + - uid: 12538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-49.5 + parent: 2 + - uid: 12539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-48.5 + parent: 2 + - uid: 12540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-47.5 + parent: 2 + - uid: 12541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-46.5 + parent: 2 + - uid: 12542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-45.5 + parent: 2 + - uid: 12543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-44.5 + parent: 2 + - uid: 12544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-43.5 + parent: 2 + - uid: 12545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-42.5 + parent: 2 + - uid: 12546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-41.5 + parent: 2 + - uid: 12547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-40.5 + parent: 2 + - uid: 12548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-39.5 + parent: 2 + - uid: 12549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-38.5 + parent: 2 + - uid: 12550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-38.5 + parent: 2 + - uid: 12551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-38.5 + parent: 2 + - uid: 12552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-38.5 + parent: 2 + - uid: 12553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-38.5 + parent: 2 + - uid: 12554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-38.5 + parent: 2 + - uid: 12555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-38.5 + parent: 2 + - uid: 12556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-38.5 + parent: 2 + - uid: 12557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-38.5 + parent: 2 + - uid: 12558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-38.5 + parent: 2 + - uid: 12559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-38.5 + parent: 2 + - uid: 12560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-38.5 + parent: 2 + - uid: 12561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-38.5 + parent: 2 + - uid: 12562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-38.5 + parent: 2 + - uid: 12563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-38.5 + parent: 2 + - uid: 12564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-38.5 + parent: 2 + - uid: 12565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-38.5 + parent: 2 + - uid: 12566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-38.5 + parent: 2 + - uid: 12567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-38.5 + parent: 2 + - uid: 12568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-38.5 + parent: 2 + - uid: 12569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-38.5 + parent: 2 + - uid: 12570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-38.5 + parent: 2 + - uid: 12571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-38.5 + parent: 2 + - uid: 12572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-38.5 + parent: 2 + - uid: 12573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-38.5 + parent: 2 + - uid: 12574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-38.5 + parent: 2 + - uid: 12575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-38.5 + parent: 2 + - uid: 12576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-38.5 + parent: 2 + - uid: 12577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-38.5 + parent: 2 + - uid: 12578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-38.5 + parent: 2 + - uid: 12579 + components: + - type: Transform + pos: 32.5,-39.5 + parent: 2 + - uid: 12580 + components: + - type: Transform + pos: 32.5,-40.5 + parent: 2 + - uid: 12581 + components: + - type: Transform + pos: 32.5,-41.5 + parent: 2 + - uid: 12582 + components: + - type: Transform + pos: 32.5,-42.5 + parent: 2 + - uid: 12583 + components: + - type: Transform + pos: 32.5,-43.5 + parent: 2 + - uid: 12584 + components: + - type: Transform + pos: 32.5,-44.5 + parent: 2 + - uid: 12585 + components: + - type: Transform + pos: 32.5,-45.5 + parent: 2 + - uid: 12586 + components: + - type: Transform + pos: 32.5,-46.5 + parent: 2 + - uid: 12587 + components: + - type: Transform + pos: 32.5,-47.5 + parent: 2 + - uid: 12588 + components: + - type: Transform + pos: 32.5,-48.5 + parent: 2 + - uid: 12589 + components: + - type: Transform + pos: 32.5,-49.5 + parent: 2 + - uid: 12590 + components: + - type: Transform + pos: 32.5,-50.5 + parent: 2 + - uid: 12591 + components: + - type: Transform + pos: 32.5,-51.5 + parent: 2 + - uid: 12592 + components: + - type: Transform + pos: 32.5,-52.5 + parent: 2 + - uid: 12593 + components: + - type: Transform + pos: 32.5,-53.5 + parent: 2 + - uid: 12594 + components: + - type: Transform + pos: 32.5,-54.5 + parent: 2 + - uid: 12595 + components: + - type: Transform + pos: 32.5,-55.5 + parent: 2 + - uid: 12596 + components: + - type: Transform + pos: 32.5,-56.5 + parent: 2 + - uid: 12597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-57.5 + parent: 2 + - uid: 12598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-57.5 + parent: 2 + - uid: 12599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-57.5 + parent: 2 + - uid: 12600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-58.5 + parent: 2 + - uid: 12601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-59.5 + parent: 2 + - uid: 12602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-60.5 + parent: 2 + - uid: 12603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-61.5 + parent: 2 + - uid: 12604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-62.5 + parent: 2 + - uid: 12605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-62.5 + parent: 2 + - uid: 12606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-62.5 + parent: 2 + - uid: 12607 + components: + - type: Transform + pos: 40.5,-63.5 + parent: 2 + - uid: 12608 + components: + - type: Transform + pos: 40.5,-64.5 + parent: 2 + - uid: 12609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-65.5 + parent: 2 + - uid: 12610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-65.5 + parent: 2 + - uid: 12611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-65.5 + parent: 2 + - uid: 12612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-65.5 + parent: 2 + - uid: 12613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-65.5 + parent: 2 + - uid: 12614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-65.5 + parent: 2 + - uid: 12615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-64.5 + parent: 2 + - uid: 12616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-63.5 + parent: 2 + - uid: 12617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-62.5 + parent: 2 + - uid: 12618 + components: + - type: Transform + pos: 49.5,-61.5 + parent: 2 + - uid: 12619 + components: + - type: Transform + pos: 49.5,-60.5 + parent: 2 + - uid: 12620 + components: + - type: Transform + pos: 49.5,-59.5 + parent: 2 + - uid: 12621 + components: + - type: Transform + pos: 49.5,-58.5 + parent: 2 + - uid: 12622 + components: + - type: Transform + pos: 49.5,-57.5 + parent: 2 + - uid: 12623 + components: + - type: Transform + pos: 49.5,-56.5 + parent: 2 + - uid: 12624 + components: + - type: Transform + pos: 49.5,-55.5 + parent: 2 + - uid: 12625 + components: + - type: Transform + pos: 49.5,-54.5 + parent: 2 + - uid: 12626 + components: + - type: Transform + pos: 49.5,-53.5 + parent: 2 + - uid: 12627 + components: + - type: Transform + pos: 49.5,-52.5 + parent: 2 + - uid: 12628 + components: + - type: Transform + pos: 49.5,-51.5 + parent: 2 + - uid: 12629 + components: + - type: Transform + pos: 49.5,-50.5 + parent: 2 + - uid: 12630 + components: + - type: Transform + pos: 49.5,-38.5 + parent: 2 + - uid: 12631 + components: + - type: Transform + pos: 49.5,-39.5 + parent: 2 + - uid: 12632 + components: + - type: Transform + pos: 49.5,-41.5 + parent: 2 + - uid: 12633 + components: + - type: Transform + pos: 49.5,-45.5 + parent: 2 + - uid: 12634 + components: + - type: Transform + pos: 49.5,-44.5 + parent: 2 + - uid: 12635 + components: + - type: Transform + pos: 49.5,-43.5 + parent: 2 + - uid: 12636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-23.5 + parent: 2 + - uid: 12637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-24.5 + parent: 2 + - uid: 12638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-18.5 + parent: 2 + - uid: 12639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-19.5 + parent: 2 + - uid: 12640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-20.5 + parent: 2 + - uid: 12641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-21.5 + parent: 2 + - uid: 12642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-22.5 + parent: 2 + - uid: 12643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-24.5 + parent: 2 + - uid: 12644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-25.5 + parent: 2 + - uid: 12645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-25.5 + parent: 2 + - uid: 12646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-25.5 + parent: 2 + - uid: 12647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-25.5 + parent: 2 + - uid: 12648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-25.5 + parent: 2 + - uid: 12649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-25.5 + parent: 2 + - uid: 12650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-25.5 + parent: 2 + - uid: 12651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-25.5 + parent: 2 + - uid: 12652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-25.5 + parent: 2 + - uid: 12653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-26.5 + parent: 2 + - uid: 12654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-27.5 + parent: 2 + - uid: 12655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-28.5 + parent: 2 + - uid: 12656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-29.5 + parent: 2 + - uid: 12657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-30.5 + parent: 2 + - uid: 12658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-31.5 + parent: 2 + - uid: 12659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-32.5 + parent: 2 + - uid: 12660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-33.5 + parent: 2 + - uid: 12661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-34.5 + parent: 2 + - uid: 12662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-35.5 + parent: 2 + - uid: 12663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-36.5 + parent: 2 + - uid: 12664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-37.5 + parent: 2 + - uid: 12665 + components: + - type: Transform + pos: 40.5,-34.5 + parent: 2 + - uid: 12666 + components: + - type: Transform + pos: 40.5,-36.5 + parent: 2 + - uid: 12667 + components: + - type: Transform + pos: 40.5,-37.5 + parent: 2 + - uid: 12668 + components: + - type: Transform + pos: 40.5,-38.5 + parent: 2 + - uid: 12669 + components: + - type: Transform + pos: 49.5,-42.5 + parent: 2 + - uid: 12670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-49.5 + parent: 2 + - uid: 12671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-49.5 + parent: 2 + - uid: 12672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-49.5 + parent: 2 + - uid: 12673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-49.5 + parent: 2 + - uid: 12674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-49.5 + parent: 2 + - uid: 12675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-49.5 + parent: 2 + - uid: 12676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-49.5 + parent: 2 + - uid: 12677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-39.5 + parent: 2 + - uid: 12678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-39.5 + parent: 2 + - uid: 12679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-59.5 + parent: 2 + - uid: 12680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-58.5 + parent: 2 + - uid: 12681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-57.5 + parent: 2 + - uid: 12682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-56.5 + parent: 2 + - uid: 12683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-55.5 + parent: 2 + - uid: 12684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-54.5 + parent: 2 + - uid: 12685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-53.5 + parent: 2 + - uid: 12686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-52.5 + parent: 2 + - uid: 12687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-51.5 + parent: 2 + - uid: 12688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-50.5 + parent: 2 + - uid: 12689 + components: + - type: Transform + pos: 49.5,-27.5 + parent: 2 + - uid: 12690 + components: + - type: Transform + pos: 49.5,-48.5 + parent: 2 + - uid: 12691 + components: + - type: Transform + pos: 49.5,-47.5 + parent: 2 + - uid: 12692 + components: + - type: Transform + pos: 49.5,-46.5 + parent: 2 + - uid: 12693 + components: + - type: Transform + pos: 49.5,-37.5 + parent: 2 + - uid: 12694 + components: + - type: Transform + pos: 49.5,-36.5 + parent: 2 + - uid: 12695 + components: + - type: Transform + pos: 49.5,-35.5 + parent: 2 + - uid: 12696 + components: + - type: Transform + pos: 49.5,-34.5 + parent: 2 + - uid: 12697 + components: + - type: Transform + pos: 49.5,-33.5 + parent: 2 + - uid: 12698 + components: + - type: Transform + pos: 49.5,-32.5 + parent: 2 + - uid: 12699 + components: + - type: Transform + pos: 49.5,-31.5 + parent: 2 + - uid: 12700 + components: + - type: Transform + pos: 49.5,-30.5 + parent: 2 + - uid: 12701 + components: + - type: Transform + pos: 49.5,-29.5 + parent: 2 + - uid: 12702 + components: + - type: Transform + pos: 49.5,-28.5 + parent: 2 + - uid: 12703 + components: + - type: Transform + pos: 49.5,-26.5 + parent: 2 + - uid: 12704 + components: + - type: Transform + pos: 49.5,-25.5 + parent: 2 + - uid: 12705 + components: + - type: Transform + pos: 49.5,-24.5 + parent: 2 + - uid: 12706 + components: + - type: Transform + pos: 49.5,-23.5 + parent: 2 + - uid: 12707 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 12708 + components: + - type: Transform + pos: 49.5,-21.5 + parent: 2 + - uid: 12709 + components: + - type: Transform + pos: 49.5,-20.5 + parent: 2 + - uid: 12710 + components: + - type: Transform + pos: 49.5,-19.5 + parent: 2 + - uid: 12711 + components: + - type: Transform + pos: 49.5,-18.5 + parent: 2 + - uid: 12712 + components: + - type: Transform + pos: 49.5,-17.5 + parent: 2 + - uid: 12713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-16.5 + parent: 2 + - uid: 12714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-16.5 + parent: 2 + - uid: 12715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-16.5 + parent: 2 + - uid: 12716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-16.5 + parent: 2 + - uid: 12717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-16.5 + parent: 2 + - uid: 12718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-16.5 + parent: 2 + - uid: 12719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-16.5 + parent: 2 + - uid: 12720 + components: + - type: Transform + pos: 57.5,-17.5 + parent: 2 + - uid: 12721 + components: + - type: Transform + pos: 57.5,-18.5 + parent: 2 + - uid: 12722 + components: + - type: Transform + pos: 57.5,-19.5 + parent: 2 + - uid: 12723 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 2 + - uid: 12724 + components: + - type: Transform + pos: 57.5,-21.5 + parent: 2 + - uid: 12725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-62.5 + parent: 2 + - uid: 12726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-61.5 + parent: 2 + - uid: 12727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-61.5 + parent: 2 + - uid: 12728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-61.5 + parent: 2 + - uid: 12729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-61.5 + parent: 2 + - uid: 12730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-61.5 + parent: 2 + - uid: 12731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-61.5 + parent: 2 + - uid: 12732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-61.5 + parent: 2 + - uid: 12733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-61.5 + parent: 2 + - uid: 12734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-61.5 + parent: 2 + - uid: 12735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-61.5 + parent: 2 + - uid: 12736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-61.5 + parent: 2 + - uid: 12737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-61.5 + parent: 2 + - uid: 12738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-61.5 + parent: 2 + - uid: 12739 + components: + - type: Transform + pos: 65.5,-59.5 + parent: 2 + - uid: 12740 + components: + - type: Transform + pos: 65.5,-58.5 + parent: 2 + - uid: 12741 + components: + - type: Transform + pos: 65.5,-57.5 + parent: 2 + - uid: 12742 + components: + - type: Transform + pos: 66.5,-55.5 + parent: 2 + - uid: 12743 + components: + - type: Transform + pos: 66.5,-54.5 + parent: 2 + - uid: 12744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-60.5 + parent: 2 + - uid: 12745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-60.5 + parent: 2 + - uid: 12746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-60.5 + parent: 2 + - uid: 12747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-60.5 + parent: 2 + - uid: 12748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-60.5 + parent: 2 + - uid: 12749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-60.5 + parent: 2 + - uid: 12750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-60.5 + parent: 2 + - uid: 12751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-60.5 + parent: 2 + - uid: 12752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-60.5 + parent: 2 + - uid: 12753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-60.5 + parent: 2 + - uid: 12754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-60.5 + parent: 2 + - uid: 12755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-60.5 + parent: 2 + - uid: 12756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-60.5 + parent: 2 + - uid: 12757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-60.5 + parent: 2 + - uid: 12758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,-60.5 + parent: 2 + - uid: 12759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-60.5 + parent: 2 + - uid: 12760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-59.5 + parent: 2 + - uid: 12761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-58.5 + parent: 2 + - uid: 12762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-57.5 + parent: 2 + - uid: 12763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-56.5 + parent: 2 + - uid: 12764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-55.5 + parent: 2 + - uid: 12765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-54.5 + parent: 2 + - uid: 12766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-53.5 + parent: 2 + - uid: 12767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-52.5 + parent: 2 + - uid: 12768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-51.5 + parent: 2 + - uid: 12769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-50.5 + parent: 2 + - uid: 12770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-49.5 + parent: 2 + - uid: 12771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-48.5 + parent: 2 + - uid: 12772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-47.5 + parent: 2 + - uid: 12773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-46.5 + parent: 2 + - uid: 12774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-45.5 + parent: 2 + - uid: 12775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-44.5 + parent: 2 + - uid: 12776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-43.5 + parent: 2 + - uid: 12777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-42.5 + parent: 2 + - uid: 12778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-41.5 + parent: 2 + - uid: 12779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-39.5 + parent: 2 + - uid: 12780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-38.5 + parent: 2 + - uid: 12781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-37.5 + parent: 2 + - uid: 12782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-36.5 + parent: 2 + - uid: 12783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-36.5 + parent: 2 + - uid: 12784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-36.5 + parent: 2 + - uid: 12785 + components: + - type: Transform + pos: 77.5,-37.5 + parent: 2 + - uid: 12786 + components: + - type: Transform + pos: 77.5,-38.5 + parent: 2 + - uid: 12787 + components: + - type: Transform + pos: 77.5,-39.5 + parent: 2 + - uid: 12788 + components: + - type: Transform + pos: 77.5,-40.5 + parent: 2 + - uid: 12789 + components: + - type: Transform + pos: 77.5,-41.5 + parent: 2 + - uid: 12790 + components: + - type: Transform + pos: 77.5,-42.5 + parent: 2 + - uid: 12791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-43.5 + parent: 2 + - uid: 12792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-43.5 + parent: 2 + - uid: 12793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-43.5 + parent: 2 + - uid: 12794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-43.5 + parent: 2 + - uid: 12795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-43.5 + parent: 2 + - uid: 12796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-43.5 + parent: 2 + - uid: 12797 + components: + - type: Transform + pos: 81.5,-35.5 + parent: 2 + - uid: 12798 + components: + - type: Transform + pos: 81.5,-34.5 + parent: 2 + - uid: 12799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-33.5 + parent: 2 + - uid: 12800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,-33.5 + parent: 2 + - uid: 12801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-31.5 + parent: 2 + - uid: 12802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-30.5 + parent: 2 + - uid: 12803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-29.5 + parent: 2 + - uid: 12804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-28.5 + parent: 2 + - uid: 12805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-27.5 + parent: 2 + - uid: 12806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-26.5 + parent: 2 + - uid: 12807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-25.5 + parent: 2 + - uid: 12808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-24.5 + parent: 2 + - uid: 12809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-23.5 + parent: 2 + - uid: 12810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-23.5 + parent: 2 + - uid: 12811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-23.5 + parent: 2 + - uid: 12812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-23.5 + parent: 2 + - uid: 12813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-23.5 + parent: 2 + - uid: 12814 + components: + - type: Transform + pos: 85.5,-22.5 + parent: 2 + - uid: 12815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-20.5 + parent: 2 + - uid: 12816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,-21.5 + parent: 2 + - uid: 12817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,-21.5 + parent: 2 + - uid: 12818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-21.5 + parent: 2 + - uid: 12819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-21.5 + parent: 2 + - uid: 12820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,-21.5 + parent: 2 + - uid: 12821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-21.5 + parent: 2 + - uid: 12822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-21.5 + parent: 2 + - uid: 12823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-21.5 + parent: 2 + - uid: 12824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-21.5 + parent: 2 + - uid: 12825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-21.5 + parent: 2 + - uid: 12826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-19.5 + parent: 2 + - uid: 12827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-18.5 + parent: 2 + - uid: 12828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-36.5 + parent: 2 + - uid: 12829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-12.5 + parent: 2 + - uid: 12830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-11.5 + parent: 2 + - uid: 12831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-30.5 + parent: 2 + - uid: 12832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-30.5 + parent: 2 + - uid: 12833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-30.5 + parent: 2 + - uid: 12834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-30.5 + parent: 2 + - uid: 12835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-30.5 + parent: 2 + - uid: 12836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-30.5 + parent: 2 + - uid: 12837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-30.5 + parent: 2 + - uid: 12838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-30.5 + parent: 2 + - uid: 12839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-30.5 + parent: 2 + - uid: 12840 + components: + - type: Transform + pos: 49.5,-40.5 + parent: 2 + - uid: 12841 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 2 + - uid: 12842 + components: + - type: Transform + pos: -16.5,-29.5 + parent: 2 + - uid: 12843 + components: + - type: Transform + pos: -16.5,-28.5 + parent: 2 + - uid: 12844 + components: + - type: Transform + pos: -16.5,-27.5 + parent: 2 + - uid: 12845 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 2 + - uid: 12846 + components: + - type: Transform + pos: -16.5,-25.5 + parent: 2 + - uid: 12847 + components: + - type: Transform + pos: -0.5,-32.5 + parent: 2 + - uid: 12848 + components: + - type: Transform + pos: -16.5,-24.5 + parent: 2 + - uid: 12849 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 2 + - uid: 12850 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 2 + - uid: 12851 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 2 + - uid: 12852 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - uid: 12853 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 2 + - uid: 12854 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 2 + - uid: 12855 + components: + - type: Transform + pos: -16.5,-17.5 + parent: 2 + - uid: 12856 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - uid: 12857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-30.5 + parent: 2 + - uid: 12858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-30.5 + parent: 2 + - uid: 12859 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 2 + - uid: 12860 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 2 + - uid: 12861 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - uid: 12862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 2 + - uid: 12863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 2 + - uid: 12864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-15.5 + parent: 2 + - uid: 12865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-30.5 + parent: 2 + - uid: 12866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-30.5 + parent: 2 + - uid: 12867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-30.5 + parent: 2 + - uid: 12868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-30.5 + parent: 2 + - uid: 12869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-15.5 + parent: 2 + - uid: 12870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-30.5 + parent: 2 + - uid: 12871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-10.5 + parent: 2 + - uid: 12872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-9.5 + parent: 2 + - uid: 12873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-8.5 + parent: 2 + - uid: 12874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-27.5 + parent: 2 + - uid: 12875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-7.5 + parent: 2 + - uid: 12876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-6.5 + parent: 2 + - uid: 12877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-5.5 + parent: 2 + - uid: 12878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-4.5 + parent: 2 + - uid: 12879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-3.5 + parent: 2 + - uid: 12880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-2.5 + parent: 2 + - uid: 12881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 2 + - uid: 12882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 2 + - uid: 12883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 2 + - uid: 12884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 2 + - uid: 12885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 2 + - uid: 12886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 2 + - uid: 12887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + - uid: 12888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-13.5 + parent: 2 + - uid: 12889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-13.5 + parent: 2 + - uid: 12890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-13.5 + parent: 2 + - uid: 12891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-13.5 + parent: 2 + - uid: 12892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-13.5 + parent: 2 + - uid: 12893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-13.5 + parent: 2 + - uid: 12894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-13.5 + parent: 2 + - uid: 12895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-13.5 + parent: 2 + - uid: 12896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-13.5 + parent: 2 + - uid: 12897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-13.5 + parent: 2 + - uid: 12898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-13.5 + parent: 2 + - uid: 12899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-13.5 + parent: 2 + - uid: 12900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-13.5 + parent: 2 + - uid: 12901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-13.5 + parent: 2 + - uid: 12902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-13.5 + parent: 2 + - uid: 12903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-13.5 + parent: 2 + - uid: 12904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-13.5 + parent: 2 + - uid: 12905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-13.5 + parent: 2 + - uid: 12906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-13.5 + parent: 2 + - uid: 12907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-13.5 + parent: 2 + - uid: 12908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-13.5 + parent: 2 + - uid: 12909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-13.5 + parent: 2 + - uid: 12910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-13.5 + parent: 2 + - uid: 12911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-13.5 + parent: 2 + - uid: 12912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-13.5 + parent: 2 + - uid: 12913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-13.5 + parent: 2 + - uid: 12914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-13.5 + parent: 2 + - uid: 12915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-13.5 + parent: 2 + - uid: 12916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-13.5 + parent: 2 + - uid: 12917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-13.5 + parent: 2 + - uid: 12918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-13.5 + parent: 2 + - uid: 12919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-13.5 + parent: 2 + - uid: 12920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-13.5 + parent: 2 + - uid: 12921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-13.5 + parent: 2 + - uid: 12922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-13.5 + parent: 2 + - uid: 12923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-13.5 + parent: 2 + - uid: 12924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-13.5 + parent: 2 + - uid: 12925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-13.5 + parent: 2 + - uid: 12926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-13.5 + parent: 2 + - uid: 12927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-13.5 + parent: 2 + - uid: 12928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-13.5 + parent: 2 + - uid: 12929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-13.5 + parent: 2 + - uid: 12930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-13.5 + parent: 2 + - uid: 12931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-13.5 + parent: 2 + - uid: 12932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-13.5 + parent: 2 + - uid: 12933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-13.5 + parent: 2 + - uid: 12934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-13.5 + parent: 2 + - uid: 12935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-13.5 + parent: 2 + - uid: 12936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-13.5 + parent: 2 + - uid: 12937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-13.5 + parent: 2 + - uid: 12938 + components: + - type: Transform + pos: 70.5,-14.5 + parent: 2 + - uid: 12939 + components: + - type: Transform + pos: 70.5,-15.5 + parent: 2 + - uid: 12940 + components: + - type: Transform + pos: 70.5,-16.5 + parent: 2 + - uid: 12941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-13.5 + parent: 2 + - uid: 12942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-13.5 + parent: 2 + - uid: 12943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-13.5 + parent: 2 + - uid: 12944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,30.5 + parent: 2 + - uid: 12945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-31.5 + parent: 2 + - uid: 12946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-31.5 + parent: 2 + - uid: 12947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-31.5 + parent: 2 + - uid: 12948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,26.5 + parent: 2 + - uid: 12949 + components: + - type: Transform + pos: 40.5,-35.5 + parent: 2 + - uid: 12950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 2 + - uid: 12951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 2 + - uid: 12952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 2 + - uid: 12953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-31.5 + parent: 2 + - uid: 12954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-37.5 + parent: 2 + - uid: 12955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-34.5 + parent: 2 + - uid: 12956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-47.5 + parent: 2 + - uid: 12957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-34.5 + parent: 2 + - uid: 12958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-36.5 + parent: 2 + - uid: 12959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-34.5 + parent: 2 + - uid: 12960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-34.5 + parent: 2 + - uid: 12961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-35.5 + parent: 2 + - uid: 12962 + components: + - type: Transform + pos: -20.5,11.5 + parent: 2 + - uid: 12963 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 12964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,10.5 + parent: 2 + - uid: 12965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,30.5 + parent: 2 + - uid: 12966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-51.5 + parent: 2 + - uid: 12967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-43.5 + parent: 2 + - uid: 12968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-51.5 + parent: 2 + - uid: 12969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-33.5 + parent: 2 + - uid: 12970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-38.5 + parent: 2 + - uid: 12971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-35.5 + parent: 2 + - uid: 12972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-34.5 + parent: 2 + - uid: 12973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-32.5 + parent: 2 + - uid: 12974 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 2 + - uid: 12975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,43.5 + parent: 2 + - uid: 12976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,43.5 + parent: 2 + - uid: 12977 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 2 + - uid: 12978 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 2 + - uid: 12979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,10.5 + parent: 2 + - uid: 12980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-23.5 + parent: 2 + - uid: 12981 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 2 + - uid: 12982 + components: + - type: Transform + pos: 39.5,-26.5 + parent: 2 + - uid: 12983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-28.5 + parent: 2 + - uid: 12984 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 2 + - uid: 12985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-17.5 + parent: 2 + - uid: 12986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-0.5 + parent: 2 + - uid: 12987 + components: + - type: Transform + pos: 39.5,-25.5 + parent: 2 + - uid: 12988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-23.5 + parent: 2 + - uid: 12989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-28.5 + parent: 2 + - uid: 12990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 2 + - uid: 12991 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 2 + - uid: 12992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,43.5 + parent: 2 + - uid: 12993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 2 + - uid: 12994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,6.5 + parent: 2 + - uid: 12995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 2 + - uid: 12996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,8.5 + parent: 2 + - uid: 12997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 2 + - uid: 12998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,10.5 + parent: 2 + - uid: 12999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,10.5 + parent: 2 + - uid: 13000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,10.5 + parent: 2 + - uid: 13001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,10.5 + parent: 2 + - uid: 13002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,10.5 + parent: 2 + - uid: 13003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,10.5 + parent: 2 + - uid: 13004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,11.5 + parent: 2 + - uid: 13005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,12.5 + parent: 2 + - uid: 13006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,13.5 + parent: 2 + - uid: 13007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-20.5 + parent: 2 + - uid: 13008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-19.5 + parent: 2 + - uid: 13009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,0.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 13010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-29.5 + parent: 2 + - uid: 13011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-47.5 + parent: 2 + - uid: 13012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,30.5 + parent: 2 + - uid: 13013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-51.5 + parent: 2 + - uid: 13014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-51.5 + parent: 2 + - uid: 13015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-38.5 + parent: 2 + - uid: 13016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-43.5 + parent: 2 + - uid: 13017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,30.5 + parent: 2 + - uid: 13018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-65.5 + parent: 2 + - uid: 13019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,43.5 + parent: 2 + - uid: 13020 + components: + - type: Transform + pos: 37.5,-38.5 + parent: 2 + - uid: 13021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-15.5 + parent: 2 + - uid: 13022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 2 + - uid: 13023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-15.5 + parent: 2 + - uid: 13024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 2 + - uid: 13025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,19.5 + parent: 2 + - uid: 13026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,15.5 + parent: 2 + - uid: 13027 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - uid: 13028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,0.5 + parent: 2 + - uid: 13029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-9.5 + parent: 2 + - uid: 13030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-2.5 + parent: 2 + - uid: 13031 + components: + - type: Transform + pos: 58.5,3.5 + parent: 2 + - uid: 13032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-10.5 + parent: 2 + - uid: 13033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,1.5 + parent: 2 + - uid: 13034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-5.5 + parent: 2 + - uid: 13035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-9.5 + parent: 2 + - uid: 13036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-8.5 + parent: 2 + - uid: 13037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-13.5 + parent: 2 + - uid: 13038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-19.5 + parent: 2 + - uid: 13039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-27.5 + parent: 2 + - uid: 13040 + components: + - type: Transform + pos: -37.5,-50.5 + parent: 2 + - uid: 13041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-23.5 + parent: 2 + - uid: 13042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-45.5 + parent: 2 + - uid: 13043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-45.5 + parent: 2 + - uid: 13044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-48.5 + parent: 2 + - uid: 13045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-54.5 + parent: 2 + - uid: 13046 + components: + - type: Transform + pos: -9.5,-66.5 + parent: 2 + - uid: 13047 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 2 + - uid: 13048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-25.5 + parent: 2 + - uid: 13049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-60.5 + parent: 2 + - uid: 13050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-22.5 + parent: 2 + - uid: 13051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-53.5 + parent: 2 + - uid: 13052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-43.5 + parent: 2 + - uid: 13053 + components: + - type: Transform + pos: 74.5,-17.5 + parent: 2 + - uid: 13054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-36.5 + parent: 2 + - uid: 13055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-17.5 + parent: 2 + - uid: 13056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-31.5 + parent: 2 + - uid: 13057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-22.5 + parent: 2 + - uid: 13058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-51.5 + parent: 2 + - uid: 13059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-47.5 + parent: 2 + - uid: 13060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-47.5 + parent: 2 + - uid: 13061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-43.5 + parent: 2 + - uid: 13062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-51.5 + parent: 2 + - uid: 13063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-34.5 + parent: 2 + - uid: 13064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,43.5 + parent: 2 + - uid: 13065 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 13066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,13.5 + parent: 2 + - uid: 13067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 2 + - uid: 13068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,6.5 + parent: 2 +- proto: DisposalUnit + entities: + - uid: 13069 + components: + - type: Transform + pos: 4.5,-65.5 + parent: 2 + - uid: 13070 + components: + - type: Transform + pos: 57.5,-38.5 + parent: 2 + - uid: 13071 + components: + - type: Transform + pos: 6.5,30.5 + parent: 2 + - uid: 13072 + components: + - type: Transform + pos: 37.5,-38.5 + parent: 2 + - uid: 13073 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 2 + - uid: 13074 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 2 + - uid: 13075 + components: + - type: Transform + pos: -9.5,-66.5 + parent: 2 + - uid: 13076 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 + - uid: 13077 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 2 + - uid: 13078 + components: + - type: Transform + pos: 20.5,15.5 + parent: 2 + - uid: 13079 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 13080 + components: + - type: Transform + pos: 40.5,-9.5 + parent: 2 + - uid: 13081 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - uid: 13082 + components: + - type: Transform + pos: 16.5,19.5 + parent: 2 + - uid: 13083 + components: + - type: Transform + pos: 49.5,-2.5 + parent: 2 + - uid: 13084 + components: + - type: Transform + pos: 58.5,3.5 + parent: 2 + - uid: 13085 + components: + - type: Transform + pos: 66.5,-10.5 + parent: 2 + - uid: 13086 + components: + - type: Transform + pos: -53.5,-5.5 + parent: 2 + - uid: 13087 + components: + - type: Transform + pos: 79.5,-23.5 + parent: 2 + - uid: 13088 + components: + - type: Transform + pos: -43.5,-9.5 + parent: 2 + - uid: 13089 + components: + - type: Transform + pos: -24.5,-13.5 + parent: 2 + - uid: 13090 + components: + - type: Transform + pos: -21.5,-27.5 + parent: 2 + - uid: 13091 + components: + - type: Transform + pos: -37.5,-50.5 + parent: 2 + - uid: 13092 + components: + - type: Transform + pos: -10.5,-45.5 + parent: 2 + - uid: 13093 + components: + - type: Transform + pos: 4.5,-45.5 + parent: 2 + - uid: 13094 + components: + - type: Transform + pos: 9.5,-48.5 + parent: 2 + - uid: 13095 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 2 + - uid: 13096 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 2 + - uid: 13097 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 2 + - uid: 13098 + components: + - type: Transform + pos: 41.5,-60.5 + parent: 2 + - uid: 13099 + components: + - type: Transform + pos: 74.5,-17.5 + parent: 2 + - uid: 13100 + components: + - type: Transform + pos: 56.5,-22.5 + parent: 2 + - uid: 13101 + components: + - type: Transform + pos: 67.5,-53.5 + parent: 2 + - uid: 13102 + components: + - type: Transform + pos: 70.5,-43.5 + parent: 2 + - uid: 13103 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 2 + - uid: 13104 + components: + - type: Transform + pos: -49.5,-8.5 + parent: 2 + - uid: 13105 + components: + - type: Transform + pos: 42.5,-31.5 + parent: 2 + - uid: 13106 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 2 + - uid: 13107 + components: + - type: Transform + pos: -4.5,43.5 + parent: 2 + - uid: 13108 + components: + - type: Transform + pos: 59.5,-51.5 + parent: 2 + - uid: 13109 + components: + - type: Transform + pos: 59.5,-47.5 + parent: 2 + - uid: 13110 + components: + - type: Transform + pos: 55.5,-51.5 + parent: 2 + - uid: 13111 + components: + - type: Transform + pos: 55.5,-43.5 + parent: 2 + - uid: 13112 + components: + - type: Transform + pos: 44.5,-29.5 + parent: 2 + - uid: 13113 + components: + - type: Transform + pos: -37.5,1.5 + parent: 2 + - uid: 13114 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 2 + - uid: 13115 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 13116 + components: + - type: Transform + pos: 14.5,6.5 + parent: 2 +- proto: DisposalYJunction + entities: + - uid: 13117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-17.5 + parent: 2 + - uid: 13118 + components: + - type: Transform + pos: 38.5,-31.5 + parent: 2 + - uid: 13119 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 + - uid: 13120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-47.5 + parent: 2 + - uid: 13121 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 2 +- proto: DogBed + entities: + - uid: 13122 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 13123 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 + - uid: 13124 + components: + - type: Transform + pos: -10.5,-27.5 + parent: 2 + - uid: 13125 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - uid: 13126 + components: + - type: Transform + pos: 4.5,30.5 + parent: 2 + - uid: 13127 + components: + - type: Transform + pos: 47.5,-47.5 + parent: 2 + - uid: 13128 + components: + - type: Transform + pos: 70.5,-31.5 + parent: 2 + - uid: 13129 + components: + - type: Transform + pos: 69.5,-33.5 + parent: 2 + - uid: 13130 + components: + - type: Transform + pos: 69.5,-26.5 + parent: 2 + - uid: 13131 + components: + - type: Transform + pos: 61.5,-45.5 + parent: 2 +- proto: DonkpocketBoxSpawner + entities: + - uid: 13132 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 2 +- proto: DoorElectronics + entities: + - uid: 13133 + components: + - type: Transform + pos: -8.705921,-37.54283 + parent: 2 + - uid: 13134 + components: + - type: Transform + pos: -8.549671,-37.277206 + parent: 2 + - uid: 13135 + components: + - type: Transform + pos: -8.346546,-37.558456 + parent: 2 +- proto: DoubleEmergencyNitrogenTankFilled + entities: + - uid: 11349 + components: + - type: Transform + parent: 11346 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11359 + components: + - type: Transform + parent: 11356 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: DoubleEmergencyOxygenTank + entities: + - uid: 13136 + components: + - type: Transform + pos: 80.36886,-43.411858 + parent: 2 +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 11350 + components: + - type: Transform + parent: 11346 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11360 + components: + - type: Transform + parent: 11356 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13137 + components: + - type: Transform + pos: 7.5168324,-44.471626 + parent: 2 + - uid: 13138 + components: + - type: Transform + pos: -24.480824,-31.51217 + parent: 2 + - uid: 13139 + components: + - type: Transform + pos: 9.495935,-73.48188 + parent: 2 + - uid: 27963 + components: + - type: Transform + pos: -19.288345,24.37141 + parent: 2 +- proto: Dresser + entities: + - uid: 13140 + components: + - type: Transform + pos: -8.5,17.5 + parent: 2 + - uid: 13141 + components: + - type: Transform + pos: -20.5,40.5 + parent: 2 + - uid: 13142 + components: + - type: Transform + pos: -17.5,40.5 + parent: 2 + - uid: 13143 + components: + - type: Transform + pos: -18.5,48.5 + parent: 2 + - uid: 13144 + components: + - type: Transform + pos: -21.5,48.5 + parent: 2 +- proto: DresserCaptainFilled + entities: + - uid: 13145 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 +- proto: DresserChiefEngineerFilled + entities: + - uid: 13146 + components: + - type: Transform + pos: 1.5,-61.5 + parent: 2 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 13147 + components: + - type: Transform + pos: 45.5,-43.5 + parent: 2 +- proto: DresserFilled + entities: + - uid: 13148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,5.5 + parent: 2 + - uid: 13149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,3.5 + parent: 2 + - uid: 13150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-1.5 + parent: 2 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 13151 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 2 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 13152 + components: + - type: Transform + pos: 16.5,39.5 + parent: 2 +- proto: DresserQuarterMasterFilled + entities: + - uid: 13153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-33.5 + parent: 2 +- proto: DresserResearchDirectorFilled + entities: + - uid: 13154 + components: + - type: Transform + pos: 73.5,-35.5 + parent: 2 +- proto: DresserWardenFilled + entities: + - uid: 13155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,30.5 + parent: 2 +- proto: DrinkAntifreeze + entities: + - uid: 13156 + components: + - type: Transform + pos: -36.762585,-44.30011 + parent: 2 +- proto: DrinkBottleBeer + entities: + - uid: 13158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.530655,-2.5825114 + parent: 2 + - uid: 13159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.10878,-3.1606364 + parent: 2 + - uid: 13160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.75518,-5.7451854 + parent: 2 + - uid: 13161 + components: + - type: Transform + pos: -33.19268,-5.4795604 + parent: 2 +- proto: DrinkCafeLatte + entities: + - uid: 13162 + components: + - type: Transform + pos: -11.296555,16.544361 + parent: 2 + - uid: 13163 + components: + - type: Transform + pos: 7.4822626,-50.28808 + parent: 2 + - uid: 13164 + components: + - type: Transform + pos: -8.499117,-57.266342 + parent: 2 +- proto: DrinkColaCan + entities: + - uid: 13165 + components: + - type: Transform + pos: -6.721695,-6.3008265 + parent: 2 +- proto: DrinkDoctorsDelightGlass + entities: + - uid: 13166 + components: + - type: Transform + pos: 5.4159336,-6.361189 + parent: 2 +- proto: DrinkFitnessShakerBlue + entities: + - uid: 13167 + components: + - type: Transform + pos: 17.799793,28.519545 + parent: 2 +- proto: DrinkGlass + entities: + - uid: 13168 + components: + - type: Transform + pos: -37.46571,-44.221985 + parent: 2 + - uid: 13169 + components: + - type: Transform + pos: -37.700085,-44.45636 + parent: 2 +- proto: DrinkGoldenCup + entities: + - uid: 13170 + components: + - type: Transform + pos: 5.479357,-11.49963 + parent: 2 +- proto: DrinkHotCoffee + entities: + - uid: 13171 + components: + - type: Transform + pos: 22.414787,-27.054144 + parent: 2 +- proto: DrinkMugBlue + entities: + - uid: 13172 + components: + - type: Transform + pos: 8.779138,-53.397453 + parent: 2 +- proto: DrinkMugDog + entities: + - uid: 13173 + components: + - type: Transform + pos: 14.749676,30.433222 + parent: 2 +- proto: DrinkMugMoebius + entities: + - uid: 13174 + components: + - type: Transform + pos: 70.079765,-34.448067 + parent: 2 +- proto: DrinkMugOne + entities: + - uid: 13175 + components: + - type: Transform + pos: 46.74643,-47.400673 + parent: 2 + - uid: 13176 + components: + - type: Transform + pos: 14.312176,30.542597 + parent: 2 +- proto: DrinkMugRed + entities: + - uid: 13177 + components: + - type: Transform + pos: 14.67155,30.745722 + parent: 2 +- proto: DrinkShotGlass + entities: + - uid: 13178 + components: + - type: Transform + pos: 10.338733,-12.093376 + parent: 2 + - uid: 13179 + components: + - type: Transform + pos: 10.666857,-12.015251 + parent: 2 + - uid: 13180 + components: + - type: Transform + pos: 13.73669,37.41748 + parent: 2 + - uid: 13181 + components: + - type: Transform + pos: 13.70544,37.72998 + parent: 2 + - uid: 13182 + components: + - type: Transform + pos: -4.209683,15.830952 + parent: 2 + - uid: 13183 + components: + - type: Transform + pos: 13.334623,-36.303032 + parent: 2 + - uid: 13184 + components: + - type: Transform + pos: 13.334623,-36.599907 + parent: 2 +- proto: DrinkTequilaSunriseGlass + entities: + - uid: 13185 + components: + - type: Transform + pos: 32.036064,8.545481 + parent: 2 +- proto: DrinkVodkaBottleFull + entities: + - uid: 11023 + components: + - type: Transform + parent: 11019 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11024 + components: + - type: Transform + parent: 11019 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11025 + components: + - type: Transform + parent: 11019 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkWaterBottleFull + entities: + - uid: 13186 + components: + - type: Transform + pos: 37.42936,-36.059875 + parent: 2 + - uid: 13187 + components: + - type: Transform + pos: 5.749668,-18.395926 + parent: 2 + - uid: 13188 + components: + - type: Transform + pos: -8.4157505,-14.416845 + parent: 2 + - uid: 13189 + components: + - type: Transform + pos: 12.372088,32.872467 + parent: 2 + - uid: 13190 + components: + - type: Transform + pos: -10.4782505,-14.21372 + parent: 2 +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 13191 + components: + - type: Transform + pos: 10.479357,-11.390251 + parent: 2 + - uid: 13192 + components: + - type: Transform + pos: -4.600308,15.987202 + parent: 2 + - uid: 13193 + components: + - type: Transform + pos: 13.33044,37.63623 + parent: 2 + - uid: 13194 + components: + - type: Transform + pos: 13.756498,-36.412407 + parent: 2 +- proto: Dropper + entities: + - uid: 13195 + components: + - type: Transform + pos: 74.3515,-18.443996 + parent: 2 + - uid: 13196 + components: + - type: Transform + pos: 54.51352,-41.296066 + parent: 2 +- proto: EmergencyLight + entities: + - uid: 13197 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 2 + - uid: 13198 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13199 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13200 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13201 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13202 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13203 + components: + - type: Transform + pos: -7.5,21.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,32.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13205 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-3.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13207 + components: + - type: Transform + pos: -10.5,-29.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13209 + components: + - type: Transform + pos: 1.5,-55.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-49.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13211 + components: + - type: Transform + pos: -7.5,-61.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13212 + components: + - type: Transform + pos: -14.5,-68.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-24.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-16.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-25.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13216 + components: + - type: Transform + pos: 39.5,-55.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-22.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13218 + components: + - type: Transform + pos: 79.5,-43.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-21.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-10.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13222 + components: + - type: Transform + pos: -32.5,6.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-44.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-73.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 13225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,37.5 + parent: 2 + - uid: 13226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-50.5 + parent: 2 + - uid: 13227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-7.5 + parent: 2 + - uid: 13228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,0.5 + parent: 2 + - uid: 13229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,4.5 + parent: 2 + - uid: 13230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-40.5 + parent: 2 + - uid: 13231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-32.5 + parent: 2 +- proto: EmergencyNitrogenTankFilled + entities: + - uid: 23427 + components: + - type: Transform + parent: 23284 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: EmergencyOxygenTank + entities: + - uid: 13232 + components: + - type: Transform + pos: -52.5,-13.5 + parent: 2 + - uid: 13233 + components: + - type: Transform + pos: 80.68136,-43.427483 + parent: 2 +- proto: EmergencyOxygenTankFilled + entities: + - uid: 13234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.3163185,1.4015737 + parent: 2 + - uid: 13235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.68325,-38.56967 + parent: 2 + - uid: 13236 + components: + - type: Transform + pos: -67.23376,18.515112 + parent: 2 + - uid: 13237 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - uid: 13238 + components: + - type: Transform + pos: -18.097313,34.605568 + parent: 2 + - uid: 15891 + components: + - type: Transform + parent: 13789 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Emitter + entities: + - uid: 13239 + components: + - type: Transform + pos: -13.5,-65.5 + parent: 2 + - uid: 13240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-64.5 + parent: 2 + - uid: 13241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-84.5 + parent: 2 + - uid: 13242 + components: + - type: Transform + pos: 3.5,-80.5 + parent: 2 + - uid: 13243 + components: + - type: Transform + pos: -4.5,-80.5 + parent: 2 + - uid: 13244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-92.5 + parent: 2 + - uid: 13245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-97.5 + parent: 2 + - uid: 13246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-92.5 + parent: 2 + - uid: 13247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-84.5 + parent: 2 + - uid: 13248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-97.5 + parent: 2 + - uid: 13249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-66.5 + parent: 2 + - uid: 13250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-66.5 + parent: 2 +- proto: EncryptionKeyBinary + entities: + - uid: 13252 + components: + - type: Transform + parent: 13251 + - type: Physics + canCollide: False +- proto: EncryptionKeyCargo + entities: + - uid: 13255 + components: + - type: Transform + parent: 13254 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommand + entities: + - uid: 13257 + components: + - type: Transform + parent: 13256 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommon + entities: + - uid: 13259 + components: + - type: Transform + parent: 13258 + - type: Physics + canCollide: False +- proto: EncryptionKeyEngineering + entities: + - uid: 13261 + components: + - type: Transform + parent: 13260 + - type: Physics + canCollide: False +- proto: EncryptionKeyMedical + entities: + - uid: 13263 + components: + - type: Transform + parent: 13262 + - type: Physics + canCollide: False +- proto: EncryptionKeyRobo + entities: + - uid: 13253 + components: + - type: Transform + parent: 13251 + - type: Physics + canCollide: False +- proto: EncryptionKeySecurity + entities: + - uid: 13265 + components: + - type: Transform + parent: 13264 + - type: Physics + canCollide: False +- proto: EncryptionKeyService + entities: + - uid: 13267 + components: + - type: Transform + parent: 13266 + - type: Physics + canCollide: False +- proto: EpinephrineChemistryBottle + entities: + - uid: 13268 + components: + - type: Transform + pos: -7.20075,30.91916 + parent: 2 + - uid: 13269 + components: + - type: Transform + pos: 34.23571,-41.37066 + parent: 2 +- proto: ExosuitFabricator + entities: + - uid: 13270 + components: + - type: Transform + pos: 60.5,-19.5 + parent: 2 +- proto: ExtendedEmergencyOxygenTank + entities: + - uid: 13271 + components: + - type: Transform + pos: -20.605156,3.6177425 + parent: 2 +- proto: ExtendedEmergencyOxygenTankFilled + entities: + - uid: 1108 + components: + - type: Transform + pos: -19.558441,24.57393 + parent: 2 + - uid: 13273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.620842,-74.58821 + parent: 2 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 13274 + components: + - type: Transform + pos: 31.5,-106.5 + parent: 2 + - uid: 13275 + components: + - type: Transform + pos: 15.5,-49.5 + parent: 2 + - uid: 13276 + components: + - type: Transform + pos: 13.5,-49.5 + parent: 2 + - uid: 13277 + components: + - type: Transform + pos: 64.5,-21.5 + parent: 2 + - uid: 13278 + components: + - type: Transform + pos: 59.5,-25.5 + parent: 2 + - uid: 13279 + components: + - type: Transform + pos: 69.5,-47.5 + parent: 2 + - uid: 13280 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 + - type: ContainerContainer + containers: + cabinetSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + ItemCabinet: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13281 + components: + - type: Transform + pos: -6.5,-32.5 + parent: 2 + - uid: 13282 + components: + - type: Transform + pos: -14.5,-17.5 + parent: 2 + - type: ContainerContainer + containers: + cabinetSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + ItemCabinet: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13283 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 + - type: ContainerContainer + containers: + cabinetSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + ItemCabinet: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13284 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 2 + - uid: 13285 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 + - type: ContainerContainer + containers: + cabinetSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + ItemCabinet: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13286 + components: + - type: Transform + pos: 46.5,-1.5 + parent: 2 + - uid: 13287 + components: + - type: Transform + pos: 10.5,-57.5 + parent: 2 + - uid: 13288 + components: + - type: Transform + pos: -2.5,-46.5 + parent: 2 + - uid: 13289 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 13290 + components: + - type: Transform + pos: 38.5,-52.5 + parent: 2 + - uid: 13291 + components: + - type: Transform + pos: 48.5,-56.5 + parent: 2 + - uid: 13292 + components: + - type: Transform + pos: -14.5,-28.5 + parent: 2 + - uid: 13293 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 13294 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 13295 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 + - uid: 13296 + components: + - type: Transform + pos: -47.5,0.5 + parent: 2 + - uid: 13297 + components: + - type: Transform + pos: -47.5,4.5 + parent: 2 + - uid: 13298 + components: + - type: Transform + pos: -55.5,2.5 + parent: 2 + - uid: 13299 + components: + - type: Transform + pos: -65.5,-12.5 + parent: 2 + - uid: 13300 + components: + - type: Transform + pos: -65.5,7.5 + parent: 2 + - uid: 13301 + components: + - type: Transform + pos: -52.5,-14.5 + parent: 2 + - uid: 13302 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - uid: 13303 + components: + - type: Transform + pos: -51.5,16.5 + parent: 2 + - uid: 13304 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 + - uid: 13305 + components: + - type: Transform + pos: 19.5,21.5 + parent: 2 + - uid: 13306 + components: + - type: Transform + pos: 3.5,25.5 + parent: 2 + - uid: 13307 + components: + - type: Transform + pos: 5.5,33.5 + parent: 2 + - uid: 13308 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 13309 + components: + - type: Transform + pos: 27.5,16.5 + parent: 2 + - uid: 13310 + components: + - type: Transform + pos: 44.5,4.5 + parent: 2 + - uid: 13311 + components: + - type: Transform + pos: 59.5,14.5 + parent: 2 + - uid: 13312 + components: + - type: Transform + pos: 62.5,2.5 + parent: 2 + - uid: 13313 + components: + - type: Transform + pos: 60.5,-4.5 + parent: 2 + - uid: 13314 + components: + - type: Transform + pos: 77.5,-0.5 + parent: 2 + - uid: 13315 + components: + - type: Transform + pos: 79.5,-8.5 + parent: 2 + - uid: 13316 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 2 + - uid: 13317 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - uid: 13318 + components: + - type: Transform + pos: 25.5,-88.5 + parent: 2 + - uid: 13319 + components: + - type: Transform + pos: 31.5,-88.5 + parent: 2 +- proto: FaxMachineBase + entities: + - uid: 13320 + components: + - type: Transform + pos: -32.5,-31.5 + parent: 2 + - type: FaxMachine + destinationAddress: QM + - uid: 13321 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 2 + - type: FaxMachine + destinationAddress: bridge + - uid: 13322 + components: + - type: Transform + pos: 13.5,39.5 + parent: 2 + - type: FaxMachine + destinationAddress: HoS + - uid: 13323 + components: + - type: Transform + pos: 43.5,-45.5 + parent: 2 + - type: FaxMachine + destinationAddress: CMO + - uid: 13324 + components: + - type: Transform + pos: -21.5,-15.5 + parent: 2 + - type: FaxMachine + name: Mail Room + - uid: 13325 + components: + - type: Transform + pos: 59.5,-2.5 + parent: 2 + - type: FaxMachine + name: Library + - uid: 13326 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 2 + - type: FaxMachine + name: Medical + - uid: 13327 + components: + - type: Transform + pos: 71.5,-37.5 + parent: 2 + - type: FaxMachine + name: RD + - uid: 13328 + components: + - type: Transform + pos: 4.5,-61.5 + parent: 2 + - type: FaxMachine + destinationAddress: CE +- proto: FigureSpawner + entities: + - uid: 13329 + components: + - type: Transform + pos: 56.5,0.5 + parent: 2 +- proto: filingCabinet + entities: + - uid: 13330 + components: + - type: Transform + pos: 57.5,3.5 + parent: 2 +- proto: filingCabinetDrawer + entities: + - uid: 13331 + components: + - type: Transform + pos: -54.5,-9.5 + parent: 2 +- proto: filingCabinetDrawerRandom + entities: + - uid: 13332 + components: + - type: Transform + pos: -5.7280054,17.630201 + parent: 2 + - uid: 13333 + components: + - type: Transform + pos: -5.2436304,17.630201 + parent: 2 + - uid: 13334 + components: + - type: Transform + pos: 7.7128086,-7.267438 + parent: 2 + - uid: 13335 + components: + - type: Transform + pos: 4.5,32.5 + parent: 2 + - uid: 13336 + components: + - type: Transform + pos: 7.244059,-7.267438 + parent: 2 + - uid: 13337 + components: + - type: Transform + pos: -60.262135,5.6394477 + parent: 2 + - uid: 13338 + components: + - type: Transform + pos: -60.762135,5.6394477 + parent: 2 +- proto: filingCabinetRandom + entities: + - uid: 13339 + components: + - type: Transform + pos: -3.430699,-4.5100636 + parent: 2 + - uid: 13340 + components: + - type: Transform + pos: -3.743199,-4.5100636 + parent: 2 +- proto: FireAlarm + entities: + - uid: 13341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 13626 + - 13627 + - 13632 + - 13635 + - 13634 + - 13633 + - uid: 13342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-23.5 + parent: 2 + - uid: 13343 + components: + - type: Transform + pos: 68.5,-49.5 + parent: 2 + - type: DeviceList + devices: + - 13623 + - 13624 + - 13625 + - 546 + - uid: 13344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 13620 + - 13691 + - 583 + - 13722 + - uid: 13345 + components: + - type: Transform + pos: -3.5,-54.5 + parent: 2 + - type: DeviceList + devices: + - 547 + - uid: 13346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 631 + - uid: 13347 + components: + - type: Transform + pos: 61.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 13609 + - 13610 + - 13614 + - 13615 + - 13607 + - 13608 + - 13605 + - 13606 + - 598 + - uid: 13348 + components: + - type: Transform + pos: 67.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 596 + - 13603 + - 13604 + - 13612 + - 13613 + - 13605 + - 13606 + - 13608 + - 13607 + - uid: 13349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-50.5 + parent: 2 + - type: DeviceList + devices: + - 551 + - 550 + - 13705 + - 13595 + - 173 + - 13594 + - 13503 + - 175 + - 13504 + - uid: 13350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 551 + - 550 + - 13705 + - 13595 + - 173 + - 13594 + - 13503 + - 175 + - 13504 + - uid: 13351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-45.5 + parent: 2 + - type: DeviceList + devices: + - 17403 + - 552 + - 17204 + - 13705 + - 553 + - 17404 + - uid: 13352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-55.5 + parent: 2 + - type: DeviceList + devices: + - 554 + - 13716 + - 13717 + - 13715 + - 13714 + - 13712 + - 13711 + - 13710 + - 13709 + - 13708 + - 13707 + - 555 + - uid: 13353 + components: + - type: Transform + pos: 1.5,-64.5 + parent: 2 + - type: DeviceList + devices: + - 13713 + - 17198 + - 17396 + - 17213 + - 17412 + - uid: 13354 + components: + - type: Transform + pos: -17.5,-67.5 + parent: 2 + - type: DeviceList + devices: + - 13713 + - 562 + - uid: 13355 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 2 + - type: DeviceList + devices: + - 564 + - uid: 13356 + components: + - type: Transform + pos: -11.5,-28.5 + parent: 2 + - type: DeviceList + devices: + - 565 + - uid: 13357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 567 + - uid: 13358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 567 + - uid: 13359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 570 + - 569 + - 13688 + - uid: 13360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-25.5 + parent: 2 + - type: DeviceList + devices: + - 571 + - 13692 + - 572 + - uid: 13361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 573 + - 13688 + - uid: 13362 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 2 + - type: DeviceList + devices: + - 575 + - uid: 13363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 576 + - 13679 + - 13680 + - 13681 + - uid: 13364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 578 + - uid: 13365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 13675 + - 13676 + - 13677 + - 13678 + - 580 + - 13650 + - 13685 + - 13643 + - uid: 13366 + components: + - type: Transform + pos: 45.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 13685 + - 581 + - 13643 + - uid: 13367 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 13681 + - 13680 + - 13679 + - 13689 + - 13694 + - 13690 + - 13659 + - 582 + - 13684 + - 13683 + - 13682 + - 13676 + - 13675 + - 13677 + - 13678 + - uid: 13368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 13691 + - 13620 + - 13689 + - 13694 + - 584 + - 13690 + - 13659 + - uid: 13369 + components: + - type: Transform + pos: 36.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 13723 + - 13724 + - 13649 + - 13706 + - 585 + - uid: 13370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-30.5 + parent: 2 + - type: DeviceList + devices: + - 13646 + - 13629 + - 13631 + - 13630 + - 586 + - uid: 13371 + components: + - type: Transform + pos: 38.5,-30.5 + parent: 2 + - type: DeviceList + devices: + - 13646 + - 13629 + - 13706 + - 587 + - 13644 + - 13628 + - 13645 + - uid: 13372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-43.5 + parent: 2 + - type: DeviceList + devices: + - 13644 + - 13628 + - 13645 + - 590 + - uid: 13373 + components: + - type: Transform + pos: -5.5,-60.5 + parent: 2 + - type: DeviceList + devices: + - 592 + - uid: 13374 + components: + - type: Transform + pos: 64.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 13674 + - 13673 + - 13672 + - 13663 + - 13664 + - 593 + - 13684 + - 13683 + - 13682 + - 594 + - 13601 + - 13600 + - 13602 + - uid: 13375 + components: + - type: Transform + pos: 50.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 13674 + - 13673 + - 13672 + - 13663 + - 13664 + - 593 + - 13684 + - 13683 + - 13682 + - 594 + - uid: 13376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 13674 + - 13673 + - 13672 + - 595 + - 13601 + - 13600 + - 13602 + - uid: 13377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 13666 + - 13667 + - 13668 + - 13669 + - 13670 + - 13671 + - 600 + - 13627 + - 13626 + - 13632 + - 13622 + - 13621 + - uid: 13378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 13671 + - 13670 + - 13669 + - 601 + - 13663 + - uid: 13379 + components: + - type: Transform + pos: 79.5,-42.5 + parent: 2 + - type: DeviceList + devices: + - 13636 + - 13637 + - 13638 + - 13639 + - 13640 + - 13720 + - 605 + - uid: 13380 + components: + - type: Transform + pos: -23.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 610 + - 13693 + - uid: 13381 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 612 + - uid: 13382 + components: + - type: Transform + pos: -42.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 614 + - uid: 13383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 617 + - 618 + - 506 + - 13440 + - 13445 + - uid: 13384 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 617 + - 618 + - 506 + - 13440 + - 13445 + - uid: 13385 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 13654 + - 13657 + - 619 + - 620 + - uid: 13386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,39.5 + parent: 2 + - type: DeviceList + devices: + - 13647 + - 625 + - 13721 + - uid: 13387 + components: + - type: Transform + pos: -56.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 630 + - 629 + - 13660 + - uid: 13388 + components: + - type: Transform + pos: -64.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 632 + - uid: 13389 + components: + - type: Transform + pos: -67.5,-12.5 + parent: 2 + - type: DeviceList + devices: + - 633 + - uid: 13390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 13649 + - 13630 + - 13631 + - uid: 13391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-37.5 + parent: 2 + - uid: 13392 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 578 + - 13611 + - 13748 + - 13743 + - 13744 + - 13745 + - 13746 + - 13747 + - uid: 13393 + components: + - type: Transform + pos: -0.5,52.5 + parent: 2 + - type: DeviceList + devices: + - 17393 + - 636 + - 17186 + - uid: 13394 + components: + - type: Transform + pos: -6.5,53.5 + parent: 2 + - type: DeviceList + devices: + - 17391 + - 17190 + - 635 + - uid: 13395 + components: + - type: Transform + pos: -9.5,28.5 + parent: 2 + - uid: 13396 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - uid: 13397 + components: + - type: Transform + pos: 15.5,0.5 + parent: 2 + - uid: 13398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-24.5 + parent: 2 + - uid: 13399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 13647 + - uid: 13400 + components: + - type: Transform + pos: 60.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 13664 + - 13665 +- proto: FireAxeCabinetFilled + entities: + - uid: 13401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 2 + - uid: 13402 + components: + - type: Transform + pos: 14.5,-53.5 + parent: 2 +- proto: FireExtinguisher + entities: + - uid: 13403 + components: + - type: Transform + pos: 27.65475,21.45491 + parent: 2 + - uid: 13404 + components: + - type: Transform + pos: 58.276596,-41.402428 + parent: 2 + - uid: 13405 + components: + - type: Transform + pos: 58.651596,-41.402428 + parent: 2 + - uid: 13406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.54268,-25.644386 + parent: 2 +- proto: Firelock + entities: + - uid: 173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - 11 + - 13349 + - 13350 + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13349 + - 11 + - 13350 + - 8 + - uid: 283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 + - 79 + - uid: 291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 88 + - uid: 295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - uid: 296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - 22 + - uid: 304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - 21 + - uid: 307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 33 + - 32 + - uid: 308 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31 + - 33 + - uid: 310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31 + - 28 + - uid: 506 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 70 + - 13384 + - 13383 + - uid: 13407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,10.5 + parent: 2 + - uid: 13408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,7.5 + parent: 2 + - uid: 13409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,12.5 + parent: 2 + - uid: 13410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,7.5 + parent: 2 + - uid: 13411 + components: + - type: Transform + pos: 10.5,-51.5 + parent: 2 + - uid: 13412 + components: + - type: Transform + pos: 4.5,-50.5 + parent: 2 + - uid: 13413 + components: + - type: Transform + pos: 8.5,-47.5 + parent: 2 + - uid: 13414 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 27 + - uid: 13415 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 27 + - uid: 13416 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 86 + - uid: 13417 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 + - uid: 13418 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 2 + - uid: 13419 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 2 + - uid: 13420 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 2 + - uid: 13421 + components: + - type: Transform + pos: -23.5,-24.5 + parent: 2 + - uid: 13422 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 2 + - uid: 13423 + components: + - type: Transform + pos: -29.5,-21.5 + parent: 2 + - uid: 13424 + components: + - type: Transform + pos: -7.5,-74.5 + parent: 2 + - uid: 13425 + components: + - type: Transform + pos: 8.5,-70.5 + parent: 2 + - uid: 13426 + components: + - type: Transform + pos: -9.5,-70.5 + parent: 2 + - uid: 13427 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8 + - uid: 13428 + components: + - type: Transform + pos: 6.5,-52.5 + parent: 2 + - uid: 13429 + components: + - type: Transform + pos: 8.5,-63.5 + parent: 2 + - uid: 13430 + components: + - type: Transform + pos: 6.5,-74.5 + parent: 2 + - uid: 13431 + components: + - type: Transform + pos: -18.5,-69.5 + parent: 2 + - uid: 13432 + components: + - type: Transform + pos: 8.5,-59.5 + parent: 2 + - uid: 13433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-71.5 + parent: 2 + - uid: 13434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-69.5 + parent: 2 + - uid: 13435 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 13436 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 13437 + components: + - type: Transform + pos: 18.5,2.5 + parent: 2 + - uid: 13438 + components: + - type: Transform + pos: -23.5,42.5 + parent: 2 + - uid: 13439 + components: + - type: Transform + pos: -7.5,46.5 + parent: 2 + - uid: 13440 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 70 + - 13384 + - 13383 + - uid: 13441 + components: + - type: Transform + pos: -10.5,37.5 + parent: 2 + - uid: 13442 + components: + - type: Transform + pos: -13.5,46.5 + parent: 2 + - uid: 13443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,13.5 + parent: 2 + - uid: 13444 + components: + - type: Transform + pos: -10.5,42.5 + parent: 2 + - uid: 13445 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 70 + - 13384 + - 13383 + - uid: 13446 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 + - uid: 13447 + components: + - type: Transform + pos: -5.5,38.5 + parent: 2 + - uid: 13448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,11.5 + parent: 2 + - uid: 13449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 2 + - uid: 13450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,8.5 + parent: 2 + - uid: 13451 + components: + - type: Transform + pos: -24.5,-35.5 + parent: 2 + - uid: 13452 + components: + - type: Transform + pos: 9.5,25.5 + parent: 2 + - uid: 13453 + components: + - type: Transform + pos: 6.5,25.5 + parent: 2 + - uid: 13454 + components: + - type: Transform + pos: 4.5,25.5 + parent: 2 + - uid: 13455 + components: + - type: Transform + pos: -10.5,48.5 + parent: 2 + - uid: 13456 + components: + - type: Transform + pos: -13.5,25.5 + parent: 2 + - uid: 13457 + components: + - type: Transform + pos: -8.5,28.5 + parent: 2 + - uid: 13458 + components: + - type: Transform + pos: 0.5,36.5 + parent: 2 + - uid: 13459 + components: + - type: Transform + pos: -15.5,23.5 + parent: 2 + - uid: 13460 + components: + - type: Transform + pos: -60.5,2.5 + parent: 2 + - uid: 13461 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 92 + - uid: 13462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,0.5 + parent: 2 + - uid: 13463 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 + - uid: 13464 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 13465 + components: + - type: Transform + pos: 20.5,33.5 + parent: 2 + - uid: 13466 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 + - uid: 13467 + components: + - type: Transform + pos: -14.5,-27.5 + parent: 2 + - uid: 13468 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 2 + - uid: 13469 + components: + - type: Transform + pos: -13.5,28.5 + parent: 2 + - uid: 13470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,2.5 + parent: 2 + - uid: 13471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 2 + - uid: 13472 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 13473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-59.5 + parent: 2 + - uid: 13474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-62.5 + parent: 2 + - uid: 13475 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 13476 + components: + - type: Transform + pos: 1.5,25.5 + parent: 2 + - uid: 13477 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 13478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,11.5 + parent: 2 + - uid: 13479 + components: + - type: Transform + pos: -14.5,15.5 + parent: 2 + - uid: 13480 + components: + - type: Transform + pos: -13.5,18.5 + parent: 2 + - uid: 13481 + components: + - type: Transform + pos: 23.5,4.5 + parent: 2 + - uid: 13482 + components: + - type: Transform + pos: 6.5,-46.5 + parent: 2 + - uid: 13483 + components: + - type: Transform + pos: 5.5,31.5 + parent: 2 + - uid: 13484 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 26 + - uid: 13485 + components: + - type: Transform + pos: -18.5,-24.5 + parent: 2 + - uid: 13486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-32.5 + parent: 2 + - uid: 13487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-32.5 + parent: 2 + - uid: 13488 + components: + - type: Transform + pos: -11.5,-36.5 + parent: 2 + - uid: 13489 + components: + - type: Transform + pos: -16.5,-70.5 + parent: 2 + - uid: 13490 + components: + - type: Transform + pos: -14.5,42.5 + parent: 2 + - uid: 13491 + components: + - type: Transform + pos: -14.5,40.5 + parent: 2 + - uid: 13492 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 2 + - uid: 13493 + components: + - type: Transform + pos: 10.5,-72.5 + parent: 2 + - uid: 13494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,38.5 + parent: 2 + - uid: 13495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,41.5 + parent: 2 + - uid: 13496 + components: + - type: Transform + pos: -18.5,-30.5 + parent: 2 + - uid: 13497 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - uid: 13498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,14.5 + parent: 2 + - uid: 13499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,13.5 + parent: 2 + - uid: 13500 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - 39 + - uid: 13501 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - 39 + - uid: 13502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-64.5 + parent: 2 + - uid: 13503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13349 + - 11 + - 13350 + - 8 + - uid: 13504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13349 + - 11 + - 13350 + - 8 + - uid: 13505 + components: + - type: Transform + pos: -10.5,29.5 + parent: 2 + - uid: 13506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-10.5 + parent: 2 + - uid: 13507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-14.5 + parent: 2 + - uid: 13508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-5.5 + parent: 2 + - uid: 13509 + components: + - type: Transform + pos: -7.5,-76.5 + parent: 2 + - uid: 13510 + components: + - type: Transform + pos: -7.5,-77.5 + parent: 2 + - uid: 13511 + components: + - type: Transform + pos: 6.5,-76.5 + parent: 2 + - uid: 13512 + components: + - type: Transform + pos: 6.5,-77.5 + parent: 2 + - uid: 13513 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - uid: 13514 + components: + - type: Transform + pos: -1.5,-68.5 + parent: 2 + - uid: 13515 + components: + - type: Transform + pos: 0.5,-68.5 + parent: 2 + - uid: 13516 + components: + - type: Transform + pos: 14.5,2.5 + parent: 2 + - uid: 13517 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 13518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-53.5 + parent: 2 + - uid: 13519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8 + - uid: 13520 + components: + - type: Transform + pos: -15.5,32.5 + parent: 2 + - uid: 13521 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 2 + - uid: 13522 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 88 + - uid: 13523 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 33 + - 31 + - uid: 13524 + components: + - type: Transform + pos: -5.5,34.5 + parent: 2 + - uid: 13525 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 + - uid: 13526 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - 33 + - uid: 13527 + components: + - type: Transform + pos: 8.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - 32 + - uid: 13528 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - uid: 13529 + components: + - type: Transform + pos: 8.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - 32 + - uid: 13530 + components: + - type: Transform + pos: -35.5,-2.5 + parent: 2 + - uid: 13531 + components: + - type: Transform + pos: -52.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 + - 79 + - uid: 13532 + components: + - type: Transform + pos: 26.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 13533 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - uid: 13534 + components: + - type: Transform + pos: -52.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 + - 79 + - uid: 13535 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 28 + - uid: 13536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,26.5 + parent: 2 + - uid: 13537 + components: + - type: Transform + pos: 8.5,33.5 + parent: 2 + - uid: 13538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-12.5 + parent: 2 + - uid: 13539 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31 + - 28 + - uid: 13540 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - uid: 13541 + components: + - type: Transform + pos: -14.5,-22.5 + parent: 2 + - uid: 13542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,22.5 + parent: 2 + - uid: 13543 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 28 + - uid: 13544 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25 + - uid: 13545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 26 + - uid: 13546 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31 + - 28 + - uid: 13547 + components: + - type: Transform + pos: -35.5,-1.5 + parent: 2 + - uid: 13548 + components: + - type: Transform + pos: 78.5,-4.5 + parent: 2 + - uid: 13549 + components: + - type: Transform + pos: -9.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - 22 + - uid: 13550 + components: + - type: Transform + pos: -13.5,33.5 + parent: 2 + - uid: 13551 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 + - uid: 13552 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - uid: 13553 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 13554 + components: + - type: Transform + pos: -6.5,16.5 + parent: 2 + - uid: 13555 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 88 + - uid: 13556 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 33 + - 31 + - uid: 13557 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - 33 + - uid: 13558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-53.5 + parent: 2 + - uid: 13559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,0.5 + parent: 2 + - uid: 13560 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25 + - uid: 13561 + components: + - type: Transform + pos: -14.5,37.5 + parent: 2 + - uid: 13562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,50.5 + parent: 2 + - uid: 13563 + components: + - type: Transform + pos: 12.5,36.5 + parent: 2 + - uid: 13564 + components: + - type: Transform + pos: -6.5,-65.5 + parent: 2 + - uid: 13565 + components: + - type: Transform + pos: -11.5,14.5 + parent: 2 + - uid: 13566 + components: + - type: Transform + pos: -38.5,0.5 + parent: 2 + - uid: 13567 + components: + - type: Transform + pos: -45.5,0.5 + parent: 2 + - uid: 13568 + components: + - type: Transform + pos: -18.5,42.5 + parent: 2 + - uid: 13569 + components: + - type: Transform + pos: -17.5,46.5 + parent: 2 + - uid: 13570 + components: + - type: Transform + pos: 79.5,-2.5 + parent: 2 + - uid: 13571 + components: + - type: Transform + pos: 80.5,-4.5 + parent: 2 + - uid: 13572 + components: + - type: Transform + pos: -20.5,46.5 + parent: 2 + - uid: 13573 + components: + - type: Transform + pos: -21.5,42.5 + parent: 2 + - uid: 13574 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 2 + - uid: 13575 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 2 + - uid: 13576 + components: + - type: Transform + pos: -2.5,-36.5 + parent: 2 + - uid: 13577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 92 + - uid: 13578 + components: + - type: Transform + pos: -24.5,-16.5 + parent: 2 + - uid: 13579 + components: + - type: Transform + pos: -33.5,-3.5 + parent: 2 + - uid: 13580 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 26 + - uid: 13581 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 2 + - uid: 13582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-16.5 + parent: 2 + - uid: 13583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-10.5 + parent: 2 + - uid: 13584 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 2 + - uid: 13585 + components: + - type: Transform + pos: -16.5,35.5 + parent: 2 + - uid: 13586 + components: + - type: Transform + pos: -16.5,45.5 + parent: 2 + - uid: 13587 + components: + - type: Transform + pos: -16.5,43.5 + parent: 2 + - uid: 13588 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 92 + - uid: 13589 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25 + - uid: 13590 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25 + - uid: 13591 + components: + - type: Transform + pos: -9.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - 22 + - uid: 13592 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 13593 + components: + - type: Transform + pos: -0.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - uid: 13594 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - 11 + - 13349 + - 13350 + - uid: 13595 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - 11 + - 13349 + - 13350 + - uid: 13596 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23 + - uid: 13597 + components: + - type: Transform + pos: -7.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23 + - uid: 18065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 28 +- proto: FirelockEdge + entities: + - uid: 13598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-60.5 + parent: 2 + - uid: 13599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-60.5 + parent: 2 + - uid: 13600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-14.5 + parent: 2 + - uid: 13601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-13.5 + parent: 2 + - uid: 13602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-12.5 + parent: 2 + - uid: 13603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-9.5 + parent: 2 + - uid: 13604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-8.5 + parent: 2 + - uid: 13605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-9.5 + parent: 2 + - uid: 13606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-8.5 + parent: 2 + - uid: 13607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-9.5 + parent: 2 + - uid: 13608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-8.5 + parent: 2 + - uid: 13609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-9.5 + parent: 2 + - uid: 13610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-8.5 + parent: 2 + - uid: 13611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 13612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-9.5 + parent: 2 + - uid: 13613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-8.5 + parent: 2 + - uid: 13614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-9.5 + parent: 2 + - uid: 13615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-8.5 + parent: 2 + - uid: 13616 + components: + - type: Transform + pos: -41.5,-8.5 + parent: 2 +- proto: FirelockFrame + entities: + - uid: 13617 + components: + - type: Transform + pos: -15.5,20.5 + parent: 2 + - uid: 13618 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 +- proto: FirelockGlass + entities: + - uid: 13619 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - uid: 13620 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 2 + - uid: 13621 + components: + - type: Transform + pos: 52.5,-26.5 + parent: 2 + - uid: 13622 + components: + - type: Transform + pos: 52.5,-27.5 + parent: 2 + - uid: 13623 + components: + - type: Transform + pos: 65.5,-48.5 + parent: 2 + - uid: 13624 + components: + - type: Transform + pos: 66.5,-48.5 + parent: 2 + - uid: 13625 + components: + - type: Transform + pos: 67.5,-48.5 + parent: 2 + - uid: 13626 + components: + - type: Transform + pos: 65.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13341 + - uid: 13627 + components: + - type: Transform + pos: 66.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13341 + - uid: 13628 + components: + - type: Transform + pos: 40.5,-37.5 + parent: 2 + - uid: 13629 + components: + - type: Transform + pos: 34.5,-28.5 + parent: 2 + - uid: 13630 + components: + - type: Transform + pos: 28.5,-28.5 + parent: 2 + - uid: 13631 + components: + - type: Transform + pos: 28.5,-29.5 + parent: 2 + - uid: 13632 + components: + - type: Transform + pos: 67.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13341 + - uid: 13633 + components: + - type: Transform + pos: 65.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13341 + - uid: 13634 + components: + - type: Transform + pos: 66.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13341 + - uid: 13635 + components: + - type: Transform + pos: 67.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13341 + - uid: 13636 + components: + - type: Transform + pos: 76.5,-42.5 + parent: 2 + - uid: 13637 + components: + - type: Transform + pos: 77.5,-42.5 + parent: 2 + - uid: 13638 + components: + - type: Transform + pos: 78.5,-42.5 + parent: 2 + - uid: 13639 + components: + - type: Transform + pos: 76.5,-38.5 + parent: 2 + - uid: 13640 + components: + - type: Transform + pos: 77.5,-38.5 + parent: 2 + - uid: 13641 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 13642 + components: + - type: Transform + pos: 46.5,8.5 + parent: 2 + - uid: 13643 + components: + - type: Transform + pos: 41.5,-4.5 + parent: 2 + - uid: 13644 + components: + - type: Transform + pos: 39.5,-37.5 + parent: 2 + - uid: 13645 + components: + - type: Transform + pos: 41.5,-37.5 + parent: 2 + - uid: 13646 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 2 + - uid: 13647 + components: + - type: Transform + pos: 2.5,34.5 + parent: 2 + - uid: 13648 + components: + - type: Transform + pos: -44.5,20.5 + parent: 2 + - uid: 13649 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 2 + - uid: 13650 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 13651 + components: + - type: Transform + pos: -13.5,-59.5 + parent: 2 + - uid: 13652 + components: + - type: Transform + pos: 8.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - uid: 13653 + components: + - type: Transform + pos: -17.5,-43.5 + parent: 2 + - uid: 13654 + components: + - type: Transform + pos: 1.5,22.5 + parent: 2 + - uid: 13655 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - uid: 13656 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 + - uid: 13657 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 13658 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 + - uid: 13659 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 2 + - uid: 13660 + components: + - type: Transform + pos: -58.5,2.5 + parent: 2 + - uid: 13661 + components: + - type: Transform + pos: 65.5,-58.5 + parent: 2 + - uid: 13662 + components: + - type: Transform + pos: 32.5,-56.5 + parent: 2 + - uid: 13663 + components: + - type: Transform + pos: 70.5,-16.5 + parent: 2 + - uid: 13664 + components: + - type: Transform + pos: 62.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13400 + - uid: 13665 + components: + - type: Transform + pos: 64.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13400 + - uid: 13666 + components: + - type: Transform + pos: 65.5,-21.5 + parent: 2 + - uid: 13667 + components: + - type: Transform + pos: 66.5,-21.5 + parent: 2 + - uid: 13668 + components: + - type: Transform + pos: 67.5,-21.5 + parent: 2 + - uid: 13669 + components: + - type: Transform + pos: 68.5,-22.5 + parent: 2 + - uid: 13670 + components: + - type: Transform + pos: 68.5,-23.5 + parent: 2 + - uid: 13671 + components: + - type: Transform + pos: 68.5,-24.5 + parent: 2 + - uid: 13672 + components: + - type: Transform + pos: 73.5,-12.5 + parent: 2 + - uid: 13673 + components: + - type: Transform + pos: 73.5,-13.5 + parent: 2 + - uid: 13674 + components: + - type: Transform + pos: 73.5,-14.5 + parent: 2 + - uid: 13675 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - uid: 13676 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 + - uid: 13677 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 2 + - uid: 13678 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 13679 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 2 + - uid: 13680 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 2 + - uid: 13681 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 + - uid: 13682 + components: + - type: Transform + pos: 41.5,-12.5 + parent: 2 + - uid: 13683 + components: + - type: Transform + pos: 41.5,-13.5 + parent: 2 + - uid: 13684 + components: + - type: Transform + pos: 41.5,-14.5 + parent: 2 + - uid: 13685 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 2 + - uid: 13686 + components: + - type: Transform + pos: 20.5,24.5 + parent: 2 + - uid: 13687 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 13688 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 2 + - uid: 13689 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 + - uid: 13690 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 2 + - uid: 13691 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 2 + - uid: 13692 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 2 + - uid: 13693 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 2 + - uid: 13694 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 2 + - uid: 13695 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 + - uid: 13696 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 2 + - uid: 13697 + components: + - type: Transform + pos: -49.5,-18.5 + parent: 2 + - uid: 13698 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - uid: 13699 + components: + - type: Transform + pos: 72.5,4.5 + parent: 2 + - uid: 13700 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - uid: 13701 + components: + - type: Transform + pos: 56.5,10.5 + parent: 2 + - uid: 13702 + components: + - type: Transform + pos: -61.5,11.5 + parent: 2 + - uid: 13703 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 13704 + components: + - type: Transform + pos: 34.5,3.5 + parent: 2 + - uid: 13705 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 2 + - uid: 13706 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 2 + - uid: 13707 + components: + - type: Transform + pos: 14.5,-45.5 + parent: 2 + - uid: 13708 + components: + - type: Transform + pos: 13.5,-45.5 + parent: 2 + - uid: 13709 + components: + - type: Transform + pos: 12.5,-45.5 + parent: 2 + - uid: 13710 + components: + - type: Transform + pos: 11.5,-45.5 + parent: 2 + - uid: 13711 + components: + - type: Transform + pos: 10.5,-45.5 + parent: 2 + - uid: 13712 + components: + - type: Transform + pos: 9.5,-45.5 + parent: 2 + - uid: 13713 + components: + - type: Transform + pos: -11.5,-68.5 + parent: 2 + - uid: 13714 + components: + - type: Transform + pos: 11.5,-49.5 + parent: 2 + - uid: 13715 + components: + - type: Transform + pos: 12.5,-49.5 + parent: 2 + - uid: 13716 + components: + - type: Transform + pos: 11.5,-53.5 + parent: 2 + - uid: 13717 + components: + - type: Transform + pos: 12.5,-53.5 + parent: 2 + - uid: 13718 + components: + - type: Transform + pos: 49.5,-61.5 + parent: 2 + - uid: 13719 + components: + - type: Transform + pos: -66.5,11.5 + parent: 2 + - uid: 13720 + components: + - type: Transform + pos: 78.5,-38.5 + parent: 2 + - uid: 13721 + components: + - type: Transform + pos: 5.5,37.5 + parent: 2 + - uid: 13722 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 2 + - uid: 13723 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 2 + - uid: 13724 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 2 + - uid: 13725 + components: + - type: Transform + pos: -51.5,17.5 + parent: 2 + - uid: 13726 + components: + - type: Transform + pos: -51.5,18.5 + parent: 2 + - uid: 13727 + components: + - type: Transform + pos: -51.5,9.5 + parent: 2 + - uid: 13728 + components: + - type: Transform + pos: -51.5,10.5 + parent: 2 + - uid: 13729 + components: + - type: Transform + pos: -51.5,11.5 + parent: 2 + - uid: 13730 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 13731 + components: + - type: Transform + pos: 59.5,11.5 + parent: 2 + - uid: 13732 + components: + - type: Transform + pos: 64.5,14.5 + parent: 2 + - uid: 13733 + components: + - type: Transform + pos: 75.5,-64.5 + parent: 2 + - uid: 13734 + components: + - type: Transform + pos: 75.5,-60.5 + parent: 2 + - uid: 13735 + components: + - type: Transform + pos: 65.5,-63.5 + parent: 2 + - uid: 13736 + components: + - type: Transform + pos: -16.5,-47.5 + parent: 2 + - uid: 13737 + components: + - type: Transform + pos: 54.5,13.5 + parent: 2 + - uid: 13738 + components: + - type: Transform + pos: 82.5,-21.5 + parent: 2 + - uid: 13739 + components: + - type: Transform + pos: 82.5,-43.5 + parent: 2 + - uid: 13740 + components: + - type: Transform + pos: 68.5,-63.5 + parent: 2 + - uid: 13741 + components: + - type: Transform + pos: -33.5,-55.5 + parent: 2 + - uid: 13742 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 + - uid: 13743 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 13744 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 13745 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 13746 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 13747 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 13748 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 13749 + components: + - type: Transform + pos: 45.5,8.5 + parent: 2 + - uid: 13750 + components: + - type: Transform + pos: 71.5,4.5 + parent: 2 + - uid: 13751 + components: + - type: Transform + pos: 70.5,4.5 + parent: 2 + - uid: 13752 + components: + - type: Transform + pos: 69.5,4.5 + parent: 2 + - uid: 13753 + components: + - type: Transform + pos: 49.5,-43.5 + parent: 2 + - uid: 13754 + components: + - type: Transform + pos: 82.5,-54.5 + parent: 2 + - uid: 13755 + components: + - type: Transform + pos: -23.5,-47.5 + parent: 2 + - uid: 13756 + components: + - type: Transform + pos: -3.5,-49.5 + parent: 2 + - uid: 13757 + components: + - type: Transform + pos: 56.5,5.5 + parent: 2 + - uid: 13758 + components: + - type: Transform + pos: 64.5,9.5 + parent: 2 + - uid: 13759 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 2 + - uid: 13760 + components: + - type: Transform + pos: -18.5,-34.5 + parent: 2 + - uid: 13761 + components: + - type: Transform + pos: -38.5,9.5 + parent: 2 + - uid: 13762 + components: + - type: Transform + pos: -26.5,10.5 + parent: 2 + - uid: 13763 + components: + - type: Transform + pos: -48.5,6.5 + parent: 2 + - uid: 13764 + components: + - type: Transform + pos: -49.5,6.5 + parent: 2 + - uid: 13765 + components: + - type: Transform + pos: -42.5,12.5 + parent: 2 + - uid: 13766 + components: + - type: Transform + pos: -60.5,14.5 + parent: 2 + - uid: 13767 + components: + - type: Transform + pos: -55.5,-14.5 + parent: 2 + - uid: 13768 + components: + - type: Transform + pos: 55.5,-14.5 + parent: 2 + - uid: 13769 + components: + - type: Transform + pos: 55.5,-13.5 + parent: 2 + - uid: 13770 + components: + - type: Transform + pos: 55.5,-12.5 + parent: 2 + - uid: 13771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-14.5 + parent: 2 + - uid: 13772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,29.5 + parent: 2 +- proto: Fireplace + entities: + - uid: 13773 + components: + - type: Transform + pos: 60.5,-43.5 + parent: 2 +- proto: FitnessPunchingBagSyndicate + entities: + - uid: 13774 + components: + - type: Transform + pos: 15.5,27.5 + parent: 2 +- proto: FitnessWeightLifter + entities: + - uid: 13775 + components: + - type: Transform + pos: 18.5,26.5 + parent: 2 + - uid: 13776 + components: + - type: Transform + pos: 16.5,26.5 + parent: 2 +- proto: FitnessWeightsBench1 + entities: + - uid: 13777 + components: + - type: Transform + pos: 18.5,24.5 + parent: 2 + - uid: 13778 + components: + - type: Transform + pos: 16.5,24.5 + parent: 2 +- proto: Flash + entities: + - uid: 1223 + components: + - type: Transform + parent: 1209 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11137 + components: + - type: Transform + parent: 11127 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11151 + components: + - type: Transform + parent: 11140 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11164 + components: + - type: Transform + parent: 11154 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13779 + components: + - type: Transform + pos: -2.2425585,36.5343 + parent: 2 + - uid: 13780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.606464,32.466217 + parent: 2 +- proto: FlashlightLantern + entities: + - uid: 13781 + components: + - type: Transform + pos: 49.435802,16.306866 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13782 + components: + - type: Transform + pos: 48.529552,11.266704 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13783 + components: + - type: Transform + pos: 70.51346,12.480552 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13784 + components: + - type: Transform + pos: 67.42922,18.532057 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13785 + components: + - type: Transform + pos: 55.583378,18.000807 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13786 + components: + - type: Transform + pos: -45.601074,22.357426 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13787 + components: + - type: Transform + pos: -4.4961033,-45.400856 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13788 + components: + - type: Transform + pos: -27.532469,-17.392113 + parent: 2 + - uid: 21736 + components: + - type: Transform + pos: 47.436043,-31.49331 + parent: 2 +- proto: FlashlightSeclite + entities: + - uid: 1224 + components: + - type: Transform + parent: 1209 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11099 + components: + - type: Transform + parent: 11089 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11113 + components: + - type: Transform + parent: 11102 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11125 + components: + - type: Transform + parent: 11115 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11138 + components: + - type: Transform + parent: 11127 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11152 + components: + - type: Transform + parent: 11140 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11165 + components: + - type: Transform + parent: 11154 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13790 + components: + - type: Transform + pos: -56.482708,3.5588183 + parent: 2 +- proto: FloorDrain + entities: + - uid: 13791 + components: + - type: Transform + pos: 40.5,-28.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,41.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-35.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13794 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,27.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13796 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13797 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,28.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13799 + components: + - type: Transform + pos: 44.5,-19.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-23.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-35.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-36.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,6.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,6.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloorTileItemArcadeBlue2 + entities: + - uid: 13805 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13806 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13807 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13808 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13809 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13810 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13811 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13812 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13813 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13814 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13815 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13816 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13817 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13818 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13819 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13820 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13821 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13822 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13823 + components: + - type: Transform + pos: 75.54602,11.361063 + parent: 2 + - uid: 13824 + components: + - type: Transform + pos: 75.530396,11.361063 + parent: 2 + - uid: 13825 + components: + - type: Transform + pos: 75.530396,11.361063 + parent: 2 + - uid: 13826 + components: + - type: Transform + pos: 75.530396,11.361063 + parent: 2 + - uid: 13827 + components: + - type: Transform + pos: 75.530396,11.361063 + parent: 2 + - uid: 13828 + components: + - type: Transform + pos: 75.530396,11.361063 + parent: 2 + - uid: 13829 + components: + - type: Transform + pos: 75.530396,11.361063 + parent: 2 + - uid: 13830 + components: + - type: Transform + pos: 75.530396,11.361063 + parent: 2 + - uid: 13831 + components: + - type: Transform + pos: 75.530396,11.376688 + parent: 2 + - uid: 13832 + components: + - type: Transform + pos: 75.530396,11.376688 + parent: 2 + - uid: 13833 + components: + - type: Transform + pos: 75.530396,11.376688 + parent: 2 + - uid: 13834 + components: + - type: Transform + pos: 75.530396,11.376688 + parent: 2 +- proto: FloorTileItemEighties + entities: + - uid: 13835 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 13836 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 13837 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 13838 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 13839 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 13840 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 13841 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 13842 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 13843 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 13844 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 13845 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 13846 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 13847 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 13848 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 13849 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 13850 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 13851 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 13852 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 13853 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 13854 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 13855 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 13856 + components: + - type: Transform + pos: 60.499405,18.470098 + parent: 2 + - uid: 13857 + components: + - type: Transform + pos: 60.499405,18.485723 + parent: 2 + - uid: 13858 + components: + - type: Transform + pos: 60.499405,18.485723 + parent: 2 + - uid: 13859 + components: + - type: Transform + pos: 60.499405,18.485723 + parent: 2 + - uid: 13860 + components: + - type: Transform + pos: 60.499405,18.485723 + parent: 2 + - uid: 13861 + components: + - type: Transform + pos: 60.499405,18.485723 + parent: 2 + - uid: 13862 + components: + - type: Transform + pos: 60.499405,18.485723 + parent: 2 + - uid: 13863 + components: + - type: Transform + pos: 60.499405,18.485723 + parent: 2 + - uid: 13864 + components: + - type: Transform + pos: 60.499405,18.485723 + parent: 2 +- proto: FloorWaterEntity + entities: + - uid: 13865 + components: + - type: Transform + pos: 37.5,10.5 + parent: 2 + - uid: 13866 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - uid: 13867 + components: + - type: Transform + pos: 37.5,8.5 + parent: 2 + - uid: 13868 + components: + - type: Transform + pos: 36.5,8.5 + parent: 2 + - uid: 13869 + components: + - type: Transform + pos: 34.5,7.5 + parent: 2 + - uid: 13870 + components: + - type: Transform + pos: 37.5,9.5 + parent: 2 + - uid: 13871 + components: + - type: Transform + pos: 35.5,7.5 + parent: 2 + - uid: 13872 + components: + - type: Transform + pos: 35.5,10.5 + parent: 2 + - uid: 13873 + components: + - type: Transform + pos: 33.5,10.5 + parent: 2 + - uid: 13874 + components: + - type: Transform + pos: 37.5,7.5 + parent: 2 + - uid: 13875 + components: + - type: Transform + pos: 33.5,7.5 + parent: 2 + - uid: 13876 + components: + - type: Transform + pos: 33.5,9.5 + parent: 2 + - uid: 13877 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - uid: 13878 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 13879 + components: + - type: Transform + pos: 36.5,7.5 + parent: 2 + - uid: 13880 + components: + - type: Transform + pos: 36.5,9.5 + parent: 2 + - uid: 13881 + components: + - type: Transform + pos: 35.5,8.5 + parent: 2 + - uid: 13882 + components: + - type: Transform + pos: 35.5,9.5 + parent: 2 + - uid: 13883 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 +- proto: FloraRockSolid01 + entities: + - uid: 13884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.464336,9.508448 + parent: 2 +- proto: FloraRockSolid03 + entities: + - uid: 13885 + components: + - type: Transform + pos: 34.4369,15.747398 + parent: 2 +- proto: FloraTreeAutumnOrange01 + entities: + - uid: 2511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.114433,12.618874 + parent: 2 +- proto: FloraTreeAutumnOrangeLarge04 + entities: + - uid: 27669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.636877,14.4820595 + parent: 2 +- proto: FoodBanana + entities: + - uid: 13886 + components: + - type: Transform + pos: 46.449463,-23.516687 + parent: 2 +- proto: FoodBoxDonkpocket + entities: + - uid: 13887 + components: + - type: Transform + pos: 34.5,-53.5 + parent: 2 + - uid: 13888 + components: + - type: Transform + pos: 8.326013,-53.272453 + parent: 2 +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 13889 + components: + - type: Transform + pos: 26.502972,-87.37317 + parent: 2 +- proto: FoodBoxDonut + entities: + - uid: 13890 + components: + - type: Transform + pos: -20.423912,-29.35324 + parent: 2 + - uid: 13891 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 13892 + components: + - type: Transform + pos: 15.606464,34.372467 + parent: 2 +- proto: FoodButter + entities: + - uid: 13893 + components: + - type: Transform + pos: 35.65365,-7.311685 + parent: 2 +- proto: FoodCakeChristmasSlice + entities: + - uid: 13894 + components: + - type: Transform + pos: 36.51706,-10.491591 + parent: 2 +- proto: FoodCartCold + entities: + - uid: 13895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-2.5 + parent: 2 +- proto: FoodCondimentBottleColdsauce + entities: + - uid: 13896 + components: + - type: MetaData + desc: 'На 99,5% состоит из натуральных трав! ' + name: бутылка шампуня для головы + - type: Transform + pos: 18.416246,5.624106 + parent: 2 + - type: SolutionContainerManager + solutions: + food: + temperature: 293.15 + canReact: True + maxVol: 30 + name: null + reagents: + - data: null + ReagentId: FourteenLoko + Quantity: 30 + - type: Tag + tags: [] +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 13897 + components: + - type: Transform + pos: -5.833415,47.75177 + parent: 2 + - uid: 13898 + components: + - type: Transform + pos: 36.700523,-6.467935 + parent: 2 + - uid: 13899 + components: + - type: Transform + pos: 36.40365,-6.217935 + parent: 2 +- proto: FoodCondimentBottleHotsauce + entities: + - uid: 13901 + components: + - type: Transform + parent: 13900 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodCondimentPacketHotsauce + entities: + - uid: 13904 + components: + - type: Transform + pos: 37.044273,-6.499185 + parent: 2 +- proto: FoodCondimentPacketPepper + entities: + - uid: 13905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.895915,47.50177 + parent: 2 +- proto: FoodCondimentPacketSalt + entities: + - uid: 13906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.38029,47.486145 + parent: 2 +- proto: FoodDonkpocket + entities: + - uid: 13907 + components: + - type: Transform + pos: -6.409195,-6.4102015 + parent: 2 +- proto: FoodMealSoftTaco + entities: + - uid: 11637 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11638 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11639 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11640 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11641 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeat + entities: + - uid: 11611 + components: + - type: Transform + parent: 11610 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11612 + components: + - type: Transform + parent: 11610 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11613 + components: + - type: Transform + parent: 11610 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11614 + components: + - type: Transform + parent: 11610 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11615 + components: + - type: Transform + parent: 11610 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11616 + components: + - type: Transform + parent: 11610 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11619 + components: + - type: Transform + parent: 11618 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11620 + components: + - type: Transform + parent: 11618 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11621 + components: + - type: Transform + parent: 11618 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11622 + components: + - type: Transform + parent: 11618 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11623 + components: + - type: Transform + parent: 11618 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11624 + components: + - type: Transform + parent: 11618 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11625 + components: + - type: Transform + parent: 11618 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11626 + components: + - type: Transform + parent: 11618 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11627 + components: + - type: Transform + parent: 11618 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11628 + components: + - type: Transform + parent: 11618 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13909 + components: + - type: Transform + parent: 13908 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13910 + components: + - type: Transform + parent: 13908 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13911 + components: + - type: Transform + parent: 13908 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13912 + components: + - type: Transform + parent: 13908 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13913 + components: + - type: Transform + parent: 13908 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13914 + components: + - type: Transform + parent: 13908 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13915 + components: + - type: Transform + parent: 13908 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13916 + components: + - type: Transform + parent: 13908 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13917 + components: + - type: Transform + parent: 13908 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13918 + components: + - type: Transform + parent: 13908 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13919 + components: + - type: Transform + parent: 13908 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FoodPieBananaCream + entities: + - uid: 11702 + components: + - type: Transform + parent: 11700 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11703 + components: + - type: Transform + parent: 11700 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11704 + components: + - type: Transform + parent: 11700 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11705 + components: + - type: Transform + parent: 11700 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11706 + components: + - type: Transform + parent: 11700 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13920 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 13921 + components: + - type: Transform + pos: 55.5,17.5 + parent: 2 +- proto: FoodPizzaArnold + entities: + - uid: 13902 + components: + - type: Transform + parent: 13900 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodPlate + entities: + - uid: 13922 + components: + - type: Transform + pos: 20.549822,-6.3386226 + parent: 2 +- proto: FoodPlateSmall + entities: + - uid: 13923 + components: + - type: Transform + pos: 38.419273,-7.092935 + parent: 2 + - uid: 13924 + components: + - type: Transform + pos: 20.377945,-10.338623 + parent: 2 + - uid: 13925 + components: + - type: Transform + pos: 38.419273,-7.186685 + parent: 2 + - uid: 13926 + components: + - type: Transform + pos: 38.419273,-7.29606 + parent: 2 +- proto: FoodPoppy + entities: + - uid: 13927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,3.5000002 + parent: 2 +- proto: FoodShakerPepper + entities: + - uid: 13928 + components: + - type: Transform + pos: 35.606773,-6.98356 + parent: 2 +- proto: FoodShakerSalt + entities: + - uid: 13929 + components: + - type: Transform + pos: 35.34115,-7.10856 + parent: 2 +- proto: FoodTacoBeef + entities: + - uid: 11642 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11643 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11644 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11645 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11646 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodTacoBeefSupreme + entities: + - uid: 11647 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11648 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11649 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11650 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11651 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodTacoChicken + entities: + - uid: 11652 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11653 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11654 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11655 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11656 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodTacoChickenSupreme + entities: + - uid: 11657 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11658 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11659 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11660 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11661 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodTacoFish + entities: + - uid: 11662 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11663 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11664 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11665 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11666 + components: + - type: Transform + parent: 11636 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodTinMRE + entities: + - uid: 13930 + components: + - type: Transform + pos: 80.451996,-57.478004 + parent: 2 +- proto: FoodTinMRETrash + entities: + - uid: 10879 + components: + - type: Transform + parent: 10878 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodTinPeachesMaint + entities: + - uid: 13931 + components: + - type: Transform + pos: -46.54512,13.835054 + parent: 2 + - uid: 13932 + components: + - type: Transform + pos: 47.544956,-70.26469 + parent: 2 + - uid: 13933 + components: + - type: Transform + pos: -37.41171,-48.284546 + parent: 2 +- proto: Fork + entities: + - uid: 13934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.450523,-7.405435 + parent: 2 +- proto: FuelDispenser + entities: + - uid: 13935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-20.5 + parent: 2 +- proto: GasAnalyzer + entities: + - uid: 13936 + components: + - type: Transform + pos: 85.49485,-35.48728 + parent: 2 +- proto: GasFilter + entities: + - uid: 13937 + components: + - type: MetaData + name: n2 filter + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 13938 + components: + - type: MetaData + name: o2 filter + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 13939 + components: + - type: MetaData + name: waste filter + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 13940 + components: + - type: MetaData + name: h2o filter + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 13941 + components: + - type: MetaData + name: co2 filter + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 13942 + components: + - type: Transform + pos: 29.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' +- proto: GasMinerCarbonDioxide + entities: + - uid: 13943 + components: + - type: Transform + pos: 27.5,-55.5 + parent: 2 +- proto: GasMinerNitrogen + entities: + - uid: 13944 + components: + - type: Transform + pos: 13.5,-65.5 + parent: 2 + - type: GasMiner + maxExternalPressure: 4500 +- proto: GasMinerOxygen + entities: + - uid: 13945 + components: + - type: Transform + pos: 17.5,-65.5 + parent: 2 + - type: GasMiner + maxExternalPressure: 4500 +- proto: GasMinerPlasma + entities: + - uid: 13946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-47.5 + parent: 2 +- proto: GasMinerWaterVapor + entities: + - uid: 13947 + components: + - type: Transform + pos: 27.5,-51.5 + parent: 2 +- proto: GasMixer + entities: + - uid: 13948 + components: + - type: MetaData + name: air mixer + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-56.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 13949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-50.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0 + inletOneConcentration: 1 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 13950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-43.5 + parent: 2 + - uid: 13951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-47.5 + parent: 2 + - uid: 13952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-47.5 + parent: 2 + - uid: 13953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-47.5 + parent: 2 +- proto: GasMixerFlipped + entities: + - uid: 13954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-41.5 + parent: 2 +- proto: GasOutletInjector + entities: + - uid: 13955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-44.5 + parent: 2 + - uid: 13956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-48.5 + parent: 2 + - uid: 13957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-52.5 + parent: 2 + - uid: 13958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-56.5 + parent: 2 + - uid: 13959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-64.5 + parent: 2 + - uid: 13960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-64.5 + parent: 2 + - uid: 13961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-38.5 + parent: 2 +- proto: GasPassiveGate + entities: + - uid: 13962 + components: + - type: Transform + pos: 20.5,-60.5 + parent: 2 +- proto: GasPassiveVent + entities: + - uid: 13963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 93.5,-23.5 + parent: 2 + - uid: 13964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-64.5 + parent: 2 + - uid: 13965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 13966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 13967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 13970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 13971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 13972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-0.5 + parent: 2 + - uid: 13973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 13974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 13975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-94.5 + parent: 2 +- proto: GasPipeBend + entities: + - uid: 13976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 92.5,-23.5 + parent: 2 + - uid: 13977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 13979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#B22222FF' + - uid: 13980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 13981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13982 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 13984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-57.5 + parent: 2 + - uid: 13985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-33.5 + parent: 2 + - uid: 13986 + components: + - type: Transform + pos: 15.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 13989 + components: + - type: Transform + pos: -4.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 13990 + components: + - type: Transform + pos: 6.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 13993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13994 + components: + - type: Transform + pos: 56.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 13996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14001 + components: + - type: Transform + pos: -5.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14003 + components: + - type: Transform + pos: -4.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14009 + components: + - type: Transform + pos: 3.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14011 + components: + - type: Transform + pos: -5.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14013 + components: + - type: Transform + pos: 26.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,22.5 + parent: 2 + - uid: 14015 + components: + - type: Transform + pos: 85.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14017 + components: + - type: Transform + pos: 79.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14024 + components: + - type: Transform + pos: 82.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-48.5 + parent: 2 + - uid: 14027 + components: + - type: Transform + pos: 40.5,8.5 + parent: 2 + - uid: 14028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14029 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14031 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14033 + components: + - type: Transform + pos: 1.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14035 + components: + - type: Transform + pos: -40.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14037 + components: + - type: Transform + pos: -38.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14042 + components: + - type: Transform + pos: -44.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,15.5 + parent: 2 + - uid: 14046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-35.5 + parent: 2 + - uid: 14049 + components: + - type: Transform + pos: 48.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-35.5 + parent: 2 + - uid: 14051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-33.5 + parent: 2 + - uid: 14052 + components: + - type: Transform + pos: 20.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14059 + components: + - type: Transform + pos: 23.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14060 + components: + - type: Transform + pos: 7.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14068 + components: + - type: Transform + pos: 7.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14069 + components: + - type: Transform + pos: 8.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14071 + components: + - type: Transform + pos: 8.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14073 + components: + - type: Transform + pos: 9.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14084 + components: + - type: Transform + pos: -54.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14087 + components: + - type: Transform + pos: -64.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14088 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14091 + components: + - type: Transform + pos: -53.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14092 + components: + - type: Transform + pos: -63.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14094 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14099 + components: + - type: Transform + pos: -28.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14100 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14102 + components: + - type: Transform + pos: -24.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14105 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14110 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14111 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14112 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14114 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14116 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14128 + components: + - type: Transform + pos: 41.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14129 + components: + - type: Transform + pos: 39.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14130 + components: + - type: Transform + pos: 46.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14133 + components: + - type: Transform + pos: 37.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14135 + components: + - type: Transform + pos: 47.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14140 + components: + - type: Transform + pos: 69.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14141 + components: + - type: Transform + pos: 70.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14142 + components: + - type: Transform + pos: 74.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14144 + components: + - type: Transform + pos: 62.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14154 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-34.5 + parent: 2 + - uid: 14161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14162 + components: + - type: Transform + pos: 22.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-93.5 + parent: 2 + - uid: 14165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-93.5 + parent: 2 + - uid: 14166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14168 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14170 + components: + - type: Transform + pos: 42.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14171 + components: + - type: Transform + pos: 27.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14178 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14180 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-57.5 + parent: 2 + - uid: 14184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-25.5 + parent: 2 + - uid: 14186 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14187 + components: + - type: Transform + pos: 58.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#B22222FF' + - uid: 14188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-56.5 + parent: 2 + - uid: 14195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14197 + components: + - type: Transform + pos: 85.5,-36.5 + parent: 2 + - uid: 14198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' +- proto: GasPipeFourway + entities: + - uid: 14199 + components: + - type: Transform + pos: 21.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14200 + components: + - type: Transform + pos: 15.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14201 + components: + - type: Transform + pos: 65.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14202 + components: + - type: Transform + pos: 30.5,-33.5 + parent: 2 + - uid: 14203 + components: + - type: Transform + pos: 4.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14204 + components: + - type: Transform + pos: 5.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14205 + components: + - type: Transform + pos: 0.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14206 + components: + - type: Transform + pos: -1.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14207 + components: + - type: Transform + pos: 8.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14208 + components: + - type: Transform + pos: 7.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14209 + components: + - type: Transform + pos: 8.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14210 + components: + - type: Transform + pos: 9.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14211 + components: + - type: Transform + pos: -1.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14212 + components: + - type: Transform + pos: -64.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14213 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14214 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14215 + components: + - type: Transform + pos: -63.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14216 + components: + - type: Transform + pos: -24.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14217 + components: + - type: Transform + pos: -25.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14218 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14219 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14220 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14221 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14222 + components: + - type: Transform + pos: 35.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14223 + components: + - type: Transform + pos: 39.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14224 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14225 + components: + - type: Transform + pos: 32.5,-33.5 + parent: 2 + - uid: 14227 + components: + - type: Transform + pos: 39.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14228 + components: + - type: Transform + pos: 39.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14229 + components: + - type: Transform + pos: 41.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14230 + components: + - type: Transform + pos: 43.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14231 + components: + - type: Transform + pos: 44.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14232 + components: + - type: Transform + pos: 61.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14233 + components: + - type: Transform + pos: 62.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14234 + components: + - type: Transform + pos: 65.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14235 + components: + - type: Transform + pos: 66.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14236 + components: + - type: Transform + pos: 66.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14237 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14238 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14239 + components: + - type: Transform + pos: -10.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14240 + components: + - type: Transform + pos: 15.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14241 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14242 + components: + - type: Transform + pos: 28.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14243 + components: + - type: Transform + pos: 89.5,-24.5 + parent: 2 + - uid: 14244 + components: + - type: Transform + pos: 2.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14245 + components: + - type: Transform + pos: 7.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14246 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14247 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14248 + components: + - type: Transform + pos: 41.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 14249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14251 + components: + - type: Transform + pos: 58.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#B22222FF' + - uid: 14252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14255 + components: + - type: Transform + pos: 56.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14258 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14260 + components: + - type: Transform + pos: -21.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14261 + components: + - type: Transform + pos: -23.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14262 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14267 + components: + - type: Transform + pos: 59.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14270 + components: + - type: Transform + pos: 56.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#B22222FF' + - uid: 14271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14272 + components: + - type: Transform + pos: 56.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#B22222FF' + - uid: 14273 + components: + - type: Transform + pos: -14.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14275 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14278 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14279 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,-27.5 + parent: 2 + - uid: 14282 + components: + - type: Transform + pos: 81.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14283 + components: + - type: Transform + pos: 88.5,-28.5 + parent: 2 + - uid: 14284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,-29.5 + parent: 2 + - uid: 14285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,-29.5 + parent: 2 + - uid: 14286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14288 + components: + - type: Transform + pos: -16.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14294 + components: + - type: Transform + pos: 57.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#1E90FFFF' + - uid: 14295 + components: + - type: Transform + pos: 13.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14296 + components: + - type: Transform + pos: 56.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#B22222FF' + - uid: 14297 + components: + - type: Transform + pos: 56.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#B22222FF' + - uid: 14298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14310 + components: + - type: Transform + pos: 9.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14315 + components: + - type: Transform + pos: 16.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14316 + components: + - type: Transform + pos: 16.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14320 + components: + - type: Transform + pos: 16.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14327 + components: + - type: Transform + pos: 11.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-34.5 + parent: 2 + - uid: 14346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14351 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14352 + components: + - type: Transform + pos: 8.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14353 + components: + - type: Transform + pos: 27.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14354 + components: + - type: Transform + pos: 69.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14355 + components: + - type: Transform + pos: 70.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14356 + components: + - type: Transform + pos: 69.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14357 + components: + - type: Transform + pos: 70.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14360 + components: + - type: Transform + pos: 69.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14363 + components: + - type: Transform + pos: 69.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14364 + components: + - type: Transform + pos: 70.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14366 + components: + - type: Transform + pos: 70.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14367 + components: + - type: Transform + pos: 69.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14368 + components: + - type: Transform + pos: 70.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14369 + components: + - type: Transform + pos: 26.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14370 + components: + - type: Transform + pos: 69.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14378 + components: + - type: Transform + pos: -9.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14379 + components: + - type: Transform + pos: -8.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14380 + components: + - type: Transform + pos: -8.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14381 + components: + - type: Transform + pos: -8.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14395 + components: + - type: Transform + pos: -10.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14408 + components: + - type: Transform + pos: -6.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14412 + components: + - type: Transform + pos: -6.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14413 + components: + - type: Transform + pos: -6.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14414 + components: + - type: Transform + pos: -6.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14415 + components: + - type: Transform + pos: -6.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14416 + components: + - type: Transform + pos: -6.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14425 + components: + - type: Transform + pos: 36.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14431 + components: + - type: Transform + pos: 27.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14432 + components: + - type: Transform + pos: 76.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14433 + components: + - type: Transform + pos: 76.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14438 + components: + - type: Transform + pos: 79.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14460 + components: + - type: Transform + pos: 82.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14461 + components: + - type: Transform + pos: 82.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14462 + components: + - type: Transform + pos: 82.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14463 + components: + - type: Transform + pos: 82.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14464 + components: + - type: Transform + pos: 82.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14465 + components: + - type: Transform + pos: 82.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14467 + components: + - type: Transform + pos: 40.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14468 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14476 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14478 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14479 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14480 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14487 + components: + - type: Transform + pos: 16.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14488 + components: + - type: Transform + pos: 16.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14494 + components: + - type: Transform + pos: 16.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14497 + components: + - type: Transform + pos: 16.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14511 + components: + - type: Transform + pos: -38.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14512 + components: + - type: Transform + pos: -38.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14517 + components: + - type: Transform + pos: -43.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14522 + components: + - type: Transform + pos: 11.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14523 + components: + - type: Transform + pos: 11.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14524 + components: + - type: Transform + pos: 11.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14525 + components: + - type: Transform + pos: 11.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14526 + components: + - type: Transform + pos: 11.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14527 + components: + - type: Transform + pos: 11.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14528 + components: + - type: Transform + pos: 11.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14546 + components: + - type: Transform + pos: 12.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14547 + components: + - type: Transform + pos: 12.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14548 + components: + - type: Transform + pos: 12.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14550 + components: + - type: Transform + pos: 12.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14558 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-33.5 + parent: 2 + - uid: 14560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14567 + components: + - type: Transform + pos: 8.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14573 + components: + - type: Transform + pos: 14.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14574 + components: + - type: Transform + pos: 14.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14575 + components: + - type: Transform + pos: 18.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14576 + components: + - type: Transform + pos: 20.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14577 + components: + - type: Transform + pos: 20.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14578 + components: + - type: Transform + pos: 20.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14579 + components: + - type: Transform + pos: 20.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14580 + components: + - type: Transform + pos: 20.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14581 + components: + - type: Transform + pos: 20.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14585 + components: + - type: Transform + pos: 14.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14599 + components: + - type: Transform + pos: 20.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14600 + components: + - type: Transform + pos: 20.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14601 + components: + - type: Transform + pos: 20.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14602 + components: + - type: Transform + pos: 22.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 14632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 14640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14648 + components: + - type: Transform + pos: 17.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14649 + components: + - type: Transform + pos: 17.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14650 + components: + - type: Transform + pos: 17.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14651 + components: + - type: Transform + pos: 17.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14653 + components: + - type: Transform + pos: 15.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14654 + components: + - type: Transform + pos: 15.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14655 + components: + - type: Transform + pos: 15.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14656 + components: + - type: Transform + pos: 15.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14667 + components: + - type: Transform + pos: 5.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14668 + components: + - type: Transform + pos: 5.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14669 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14670 + components: + - type: Transform + pos: 4.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14671 + components: + - type: Transform + pos: 4.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14672 + components: + - type: Transform + pos: 4.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14673 + components: + - type: Transform + pos: 4.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14680 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14681 + components: + - type: Transform + pos: 5.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14682 + components: + - type: Transform + pos: 5.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14683 + components: + - type: Transform + pos: 5.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14693 + components: + - type: Transform + pos: -1.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14694 + components: + - type: Transform + pos: -1.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14695 + components: + - type: Transform + pos: -1.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14696 + components: + - type: Transform + pos: -1.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14697 + components: + - type: Transform + pos: 0.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14698 + components: + - type: Transform + pos: 0.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14699 + components: + - type: Transform + pos: 0.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14700 + components: + - type: Transform + pos: 0.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14701 + components: + - type: Transform + pos: -1.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14702 + components: + - type: Transform + pos: 0.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14703 + components: + - type: Transform + pos: 0.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14704 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14705 + components: + - type: Transform + pos: -1.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14706 + components: + - type: Transform + pos: -1.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14707 + components: + - type: Transform + pos: -1.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14708 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14709 + components: + - type: Transform + pos: 0.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14710 + components: + - type: Transform + pos: 0.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14724 + components: + - type: Transform + pos: -5.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14725 + components: + - type: Transform + pos: -7.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14726 + components: + - type: Transform + pos: -7.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14727 + components: + - type: Transform + pos: -7.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14728 + components: + - type: Transform + pos: -5.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14729 + components: + - type: Transform + pos: -5.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14730 + components: + - type: Transform + pos: -5.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14741 + components: + - type: Transform + pos: 7.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14742 + components: + - type: Transform + pos: 7.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14743 + components: + - type: Transform + pos: 7.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14744 + components: + - type: Transform + pos: 7.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14745 + components: + - type: Transform + pos: 7.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14746 + components: + - type: Transform + pos: 8.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14747 + components: + - type: Transform + pos: 8.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14748 + components: + - type: Transform + pos: 8.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14749 + components: + - type: Transform + pos: 8.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14750 + components: + - type: Transform + pos: 8.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14758 + components: + - type: Transform + pos: 7.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14759 + components: + - type: Transform + pos: 7.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14760 + components: + - type: Transform + pos: 8.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14761 + components: + - type: Transform + pos: 8.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14762 + components: + - type: Transform + pos: 9.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14763 + components: + - type: Transform + pos: 9.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14764 + components: + - type: Transform + pos: 9.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14769 + components: + - type: Transform + pos: 3.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14770 + components: + - type: Transform + pos: 3.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14771 + components: + - type: Transform + pos: 3.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14795 + components: + - type: Transform + pos: 9.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14811 + components: + - type: Transform + pos: -8.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14826 + components: + - type: Transform + pos: -10.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14827 + components: + - type: Transform + pos: -10.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14861 + components: + - type: Transform + pos: -1.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14862 + components: + - type: Transform + pos: -1.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14863 + components: + - type: Transform + pos: -1.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14864 + components: + - type: Transform + pos: -1.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14865 + components: + - type: Transform + pos: -1.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14866 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14867 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14868 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14869 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14870 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14949 + components: + - type: Transform + pos: -54.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14950 + components: + - type: Transform + pos: -54.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14951 + components: + - type: Transform + pos: -54.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14952 + components: + - type: Transform + pos: -54.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14953 + components: + - type: Transform + pos: -54.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 14999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15030 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15031 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15032 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15033 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15034 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15035 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15036 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15037 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15038 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15039 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15040 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15041 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15042 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15043 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15044 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15045 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15046 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15047 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15048 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15049 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15050 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15051 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15052 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15130 + components: + - type: Transform + pos: -53.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15131 + components: + - type: Transform + pos: -53.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15166 + components: + - type: Transform + pos: -53.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15182 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15183 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15184 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15185 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15186 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15187 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15188 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15189 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15190 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15191 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15192 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15193 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15194 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15195 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15196 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15197 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15198 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15199 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15200 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15211 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15212 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15213 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15214 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15215 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15216 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15217 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15218 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15219 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15220 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15383 + components: + - type: Transform + pos: -21.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15384 + components: + - type: Transform + pos: -21.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15385 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15386 + components: + - type: Transform + pos: -22.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15387 + components: + - type: Transform + pos: -22.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15388 + components: + - type: Transform + pos: -22.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15389 + components: + - type: Transform + pos: -22.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15390 + components: + - type: Transform + pos: -21.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15391 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15400 + components: + - type: Transform + pos: -28.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15401 + components: + - type: Transform + pos: -27.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15415 + components: + - type: Transform + pos: -39.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15416 + components: + - type: Transform + pos: -39.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15417 + components: + - type: Transform + pos: -39.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15418 + components: + - type: Transform + pos: -39.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15422 + components: + - type: Transform + pos: -25.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15423 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15424 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15425 + components: + - type: Transform + pos: -24.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15426 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15427 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15428 + components: + - type: Transform + pos: -25.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15429 + components: + - type: Transform + pos: -24.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15430 + components: + - type: Transform + pos: -25.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15447 + components: + - type: Transform + pos: -24.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15448 + components: + - type: Transform + pos: -24.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15449 + components: + - type: Transform + pos: -25.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15467 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15468 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15469 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15470 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15471 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15472 + components: + - type: Transform + pos: 5.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15473 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15474 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15531 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15532 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15533 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15534 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15535 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15536 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15537 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15538 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15539 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15540 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15541 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15542 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15543 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15544 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15545 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15546 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15547 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15548 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15549 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15550 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15551 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15552 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15553 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15554 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15555 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15556 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15563 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15564 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15565 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15566 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15567 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15568 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15569 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15570 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15571 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15572 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15573 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15574 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15575 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15576 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15577 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15578 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15579 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15580 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15581 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15582 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15583 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15584 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15585 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15586 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15587 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15588 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15589 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15590 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15595 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15596 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15597 + components: + - type: Transform + pos: 8.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15617 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15618 + components: + - type: Transform + pos: -10.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15619 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15620 + components: + - type: Transform + pos: -10.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15621 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15622 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15623 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15624 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15648 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15649 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15650 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15651 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15652 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15653 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15654 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15655 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15656 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15657 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15661 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15664 + components: + - type: Transform + pos: 21.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15665 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15666 + components: + - type: Transform + pos: 21.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15695 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15696 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15697 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15698 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15700 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15701 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15702 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15703 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15704 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15705 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15706 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15707 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15708 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15709 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15710 + components: + - type: Transform + pos: 21.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15711 + components: + - type: Transform + pos: 20.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15712 + components: + - type: Transform + pos: 20.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15713 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15747 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15748 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15749 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15750 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15751 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15752 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15753 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15754 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15755 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15756 + components: + - type: Transform + pos: 37.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15757 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15758 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15759 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15760 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15761 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15762 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15763 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15764 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15765 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15766 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15767 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15768 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15769 + components: + - type: Transform + pos: 34.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15770 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15771 + components: + - type: Transform + pos: 34.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15772 + components: + - type: Transform + pos: 34.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15773 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15774 + components: + - type: Transform + pos: 34.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15775 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15776 + components: + - type: Transform + pos: 34.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15784 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15785 + components: + - type: Transform + pos: 35.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15786 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15787 + components: + - type: Transform + pos: 35.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15788 + components: + - type: Transform + pos: 35.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15789 + components: + - type: Transform + pos: 35.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15790 + components: + - type: Transform + pos: 35.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15791 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15792 + components: + - type: Transform + pos: 35.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15793 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15794 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15795 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15796 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15797 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15798 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15799 + components: + - type: Transform + pos: 26.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15800 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15801 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15822 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15823 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15824 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15837 + components: + - type: Transform + pos: 39.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15838 + components: + - type: Transform + pos: 39.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15839 + components: + - type: Transform + pos: 39.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15840 + components: + - type: Transform + pos: 39.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15842 + components: + - type: Transform + pos: 26.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15843 + components: + - type: Transform + pos: 26.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15844 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15845 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15846 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15847 + components: + - type: Transform + pos: 25.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15860 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15861 + components: + - type: Transform + pos: 25.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15862 + components: + - type: Transform + pos: 25.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15863 + components: + - type: Transform + pos: 25.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15864 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15865 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15866 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15867 + components: + - type: Transform + pos: 26.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15868 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15894 + components: + - type: Transform + pos: 35.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15895 + components: + - type: Transform + pos: 35.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15896 + components: + - type: Transform + pos: 35.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15897 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15898 + components: + - type: Transform + pos: 35.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15902 + components: + - type: Transform + pos: 39.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15928 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15960 + components: + - type: Transform + pos: 39.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15961 + components: + - type: Transform + pos: 41.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15962 + components: + - type: Transform + pos: 41.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15963 + components: + - type: Transform + pos: 41.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15964 + components: + - type: Transform + pos: 39.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15965 + components: + - type: Transform + pos: 41.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15970 + components: + - type: Transform + pos: 43.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15971 + components: + - type: Transform + pos: 43.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15972 + components: + - type: Transform + pos: 43.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15973 + components: + - type: Transform + pos: 46.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15974 + components: + - type: Transform + pos: 46.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15975 + components: + - type: Transform + pos: 46.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15984 + components: + - type: Transform + pos: 44.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15985 + components: + - type: Transform + pos: 44.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 15999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16002 + components: + - type: Transform + pos: 44.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16003 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16034 + components: + - type: Transform + pos: 69.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16035 + components: + - type: Transform + pos: 70.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16036 + components: + - type: Transform + pos: 70.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16037 + components: + - type: Transform + pos: 69.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16038 + components: + - type: Transform + pos: 69.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16039 + components: + - type: Transform + pos: 69.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16040 + components: + - type: Transform + pos: 70.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16041 + components: + - type: Transform + pos: 70.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16042 + components: + - type: Transform + pos: 70.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-41.5 + parent: 2 + - uid: 16049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-41.5 + parent: 2 + - uid: 16050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-39.5 + parent: 2 + - uid: 16051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-39.5 + parent: 2 + - uid: 16052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-41.5 + parent: 2 + - uid: 16053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-39.5 + parent: 2 + - uid: 16054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16068 + components: + - type: Transform + pos: 65.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16069 + components: + - type: Transform + pos: 65.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16070 + components: + - type: Transform + pos: 66.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16089 + components: + - type: Transform + pos: 66.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16098 + components: + - type: Transform + pos: 65.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16099 + components: + - type: Transform + pos: 66.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16100 + components: + - type: Transform + pos: 65.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16101 + components: + - type: Transform + pos: 66.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16102 + components: + - type: Transform + pos: 65.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16103 + components: + - type: Transform + pos: 66.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16104 + components: + - type: Transform + pos: 65.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16105 + components: + - type: Transform + pos: 66.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-28.5 + parent: 2 + - uid: 16115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16116 + components: + - type: Transform + pos: 61.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16117 + components: + - type: Transform + pos: 61.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16118 + components: + - type: Transform + pos: 61.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16119 + components: + - type: Transform + pos: 62.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16120 + components: + - type: Transform + pos: 62.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16121 + components: + - type: Transform + pos: 61.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16122 + components: + - type: Transform + pos: 62.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16123 + components: + - type: Transform + pos: 62.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16124 + components: + - type: Transform + pos: 62.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16125 + components: + - type: Transform + pos: 55.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16126 + components: + - type: Transform + pos: 55.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16127 + components: + - type: Transform + pos: 56.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16128 + components: + - type: Transform + pos: 56.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16129 + components: + - type: Transform + pos: 56.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16135 + components: + - type: Transform + pos: 61.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16136 + components: + - type: Transform + pos: 61.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16137 + components: + - type: Transform + pos: 62.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16138 + components: + - type: Transform + pos: 62.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16139 + components: + - type: Transform + pos: 62.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16153 + components: + - type: Transform + pos: 66.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16154 + components: + - type: Transform + pos: 65.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16155 + components: + - type: Transform + pos: 66.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16193 + components: + - type: Transform + pos: 57.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16253 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16254 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16255 + components: + - type: Transform + pos: -51.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16256 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16257 + components: + - type: Transform + pos: -51.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16258 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16259 + components: + - type: Transform + pos: -51.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16260 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16261 + components: + - type: Transform + pos: -51.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16262 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16263 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16264 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16265 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16266 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16267 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16268 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16276 + components: + - type: Transform + pos: -33.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16277 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16278 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16279 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16280 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16281 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16282 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16283 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16284 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16285 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16286 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16287 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16288 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16289 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16290 + components: + - type: Transform + pos: -31.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16291 + components: + - type: Transform + pos: -31.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16292 + components: + - type: Transform + pos: -31.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16293 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16294 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16295 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16296 + components: + - type: Transform + pos: -30.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16297 + components: + - type: Transform + pos: -30.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16298 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16299 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16300 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16301 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16302 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16303 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16304 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16305 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16378 + components: + - type: Transform + pos: 4.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16379 + components: + - type: Transform + pos: 6.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16380 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16381 + components: + - type: Transform + pos: 4.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16403 + components: + - type: Transform + pos: -8.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16407 + components: + - type: Transform + pos: -8.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16413 + components: + - type: Transform + pos: -0.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16416 + components: + - type: Transform + pos: -6.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16419 + components: + - type: Transform + pos: -4.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16423 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16427 + components: + - type: Transform + pos: -2.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16432 + components: + - type: Transform + pos: -14.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16433 + components: + - type: Transform + pos: -14.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16434 + components: + - type: Transform + pos: -14.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16435 + components: + - type: Transform + pos: -13.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16436 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16437 + components: + - type: Transform + pos: -0.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16438 + components: + - type: Transform + pos: 1.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16439 + components: + - type: Transform + pos: 2.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16440 + components: + - type: Transform + pos: 2.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16441 + components: + - type: Transform + pos: 56.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#B22222FF' + - uid: 16442 + components: + - type: Transform + pos: 1.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16443 + components: + - type: Transform + pos: 56.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#B22222FF' + - uid: 16444 + components: + - type: Transform + pos: 1.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16445 + components: + - type: Transform + pos: 1.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16446 + components: + - type: Transform + pos: 2.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16447 + components: + - type: Transform + pos: 2.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16448 + components: + - type: Transform + pos: 2.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16449 + components: + - type: Transform + pos: -5.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16450 + components: + - type: Transform + pos: -5.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16451 + components: + - type: Transform + pos: -4.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16452 + components: + - type: Transform + pos: -4.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16463 + components: + - type: Transform + pos: -14.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16465 + components: + - type: Transform + pos: -5.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16467 + components: + - type: Transform + pos: -14.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16469 + components: + - type: Transform + pos: 7.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16470 + components: + - type: Transform + pos: 7.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16471 + components: + - type: Transform + pos: 7.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16472 + components: + - type: Transform + pos: 7.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16473 + components: + - type: Transform + pos: 8.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16474 + components: + - type: Transform + pos: 8.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16475 + components: + - type: Transform + pos: 8.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16476 + components: + - type: Transform + pos: 8.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16497 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-82.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16533 + components: + - type: Transform + pos: 28.5,-86.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16534 + components: + - type: Transform + pos: 28.5,-87.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16535 + components: + - type: Transform + pos: 28.5,-88.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16536 + components: + - type: Transform + pos: 28.5,-89.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16537 + components: + - type: Transform + pos: 28.5,-90.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-93.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-94.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-95.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-96.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-97.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-98.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-99.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-100.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-101.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-102.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-103.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-104.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-105.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16551 + components: + - type: Transform + pos: 28.5,-107.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16552 + components: + - type: Transform + pos: 28.5,-108.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16559 + components: + - type: Transform + pos: 22.5,-92.5 + parent: 2 + - uid: 16560 + components: + - type: Transform + pos: 56.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#B22222FF' + - uid: 16561 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16563 + components: + - type: Transform + pos: 56.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#B22222FF' + - uid: 16564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16568 + components: + - type: Transform + pos: 57.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,-27.5 + parent: 2 + - uid: 16571 + components: + - type: Transform + pos: 57.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16572 + components: + - type: Transform + pos: 56.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#B22222FF' + - uid: 16573 + components: + - type: Transform + pos: 56.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#B22222FF' + - uid: 16574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16577 + components: + - type: Transform + pos: -15.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16589 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16590 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16592 + components: + - type: Transform + pos: 57.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#1E90FFFF' + - uid: 16593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,-27.5 + parent: 2 + - uid: 16616 + components: + - type: Transform + pos: -23.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16618 + components: + - type: Transform + pos: -23.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16621 + components: + - type: Transform + pos: 57.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-57.5 + parent: 2 + - uid: 16625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-57.5 + parent: 2 + - uid: 16626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-57.5 + parent: 2 + - uid: 16629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-57.5 + parent: 2 + - uid: 16630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16636 + components: + - type: Transform + pos: -23.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#B22222FF' + - uid: 16638 + components: + - type: Transform + pos: -21.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16639 + components: + - type: Transform + pos: 57.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#1E90FFFF' + - uid: 16640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#B22222FF' + - uid: 16642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16643 + components: + - type: Transform + pos: -15.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16644 + components: + - type: Transform + pos: -15.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16645 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16646 + components: + - type: Transform + pos: -41.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16654 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-57.5 + parent: 2 + - uid: 16657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16658 + components: + - type: Transform + pos: 57.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16659 + components: + - type: Transform + pos: 57.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16661 + components: + - type: Transform + pos: -23.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16662 + components: + - type: Transform + pos: 92.5,-24.5 + parent: 2 + - uid: 16663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-57.5 + parent: 2 + - uid: 16667 + components: + - type: Transform + pos: 42.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16668 + components: + - type: Transform + pos: 66.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16669 + components: + - type: Transform + pos: 66.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16670 + components: + - type: Transform + pos: 66.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16671 + components: + - type: Transform + pos: 66.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16672 + components: + - type: Transform + pos: 65.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16673 + components: + - type: Transform + pos: 65.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16674 + components: + - type: Transform + pos: 65.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16675 + components: + - type: Transform + pos: 65.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16676 + components: + - type: Transform + pos: 65.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-37.5 + parent: 2 + - uid: 16682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16684 + components: + - type: Transform + pos: -15.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' +- proto: GasPipeTJunction + entities: + - uid: 15892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16686 + components: + - type: Transform + pos: 89.5,-23.5 + parent: 2 + - uid: 16687 + components: + - type: Transform + pos: 90.5,-25.5 + parent: 2 + - uid: 16688 + components: + - type: Transform + pos: 86.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16689 + components: + - type: Transform + pos: 56.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16692 + components: + - type: Transform + pos: 57.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-27.5 + parent: 2 + - uid: 16696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16698 + components: + - type: Transform + pos: 66.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16700 + components: + - type: Transform + pos: -9.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16701 + components: + - type: Transform + pos: -6.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16702 + components: + - type: Transform + pos: -10.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16706 + components: + - type: Transform + pos: 21.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16708 + components: + - type: Transform + pos: 10.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16714 + components: + - type: Transform + pos: -11.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16715 + components: + - type: Transform + pos: -6.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16716 + components: + - type: Transform + pos: -0.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16717 + components: + - type: Transform + pos: -8.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16719 + components: + - type: Transform + pos: -2.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16720 + components: + - type: Transform + pos: -10.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,22.5 + parent: 2 + - uid: 16727 + components: + - type: Transform + pos: 85.5,-47.5 + parent: 2 + - uid: 16728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,7.5 + parent: 2 + - uid: 16729 + components: + - type: Transform + pos: 46.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16731 + components: + - type: Transform + pos: -0.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-53.5 + parent: 2 + - uid: 16737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-54.5 + parent: 2 + - uid: 16738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,15.5 + parent: 2 + - uid: 16741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-43.5 + parent: 2 + - uid: 16747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-41.5 + parent: 2 + - uid: 16748 + components: + - type: Transform + pos: 76.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16752 + components: + - type: Transform + pos: 16.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16754 + components: + - type: Transform + pos: 1.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16758 + components: + - type: Transform + pos: 19.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 16759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 16760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16762 + components: + - type: Transform + pos: 20.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 16763 + components: + - type: Transform + pos: 20.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 16764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 16765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 16766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-48.5 + parent: 2 + - uid: 16767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-48.5 + parent: 2 + - uid: 16768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-48.5 + parent: 2 + - uid: 16769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-50.5 + parent: 2 + - uid: 16770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-51.5 + parent: 2 + - uid: 16771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-52.5 + parent: 2 + - uid: 16772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-50.5 + parent: 2 + - uid: 16773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-51.5 + parent: 2 + - uid: 16774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-52.5 + parent: 2 + - uid: 16775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16777 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16778 + components: + - type: Transform + pos: 5.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16779 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16788 + components: + - type: Transform + pos: -7.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16794 + components: + - type: Transform + pos: 0.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16798 + components: + - type: Transform + pos: -9.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16802 + components: + - type: Transform + pos: -13.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16817 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16819 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16821 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16822 + components: + - type: Transform + pos: -42.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16823 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16825 + components: + - type: Transform + pos: -51.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16829 + components: + - type: Transform + pos: -59.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16836 + components: + - type: Transform + pos: -1.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16845 + components: + - type: Transform + pos: -2.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16846 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16849 + components: + - type: Transform + pos: -11.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16857 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16858 + components: + - type: Transform + pos: -22.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16859 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16861 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16864 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16865 + components: + - type: Transform + pos: -50.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16867 + components: + - type: Transform + pos: -58.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16878 + components: + - type: Transform + pos: 0.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16880 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16886 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16887 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16889 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16890 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16891 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16897 + components: + - type: Transform + pos: 46.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16900 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16902 + components: + - type: Transform + pos: 34.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16904 + components: + - type: Transform + pos: 65.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16905 + components: + - type: Transform + pos: 66.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16906 + components: + - type: Transform + pos: 65.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16912 + components: + - type: Transform + pos: -20.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16916 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16917 + components: + - type: Transform + pos: -25.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16918 + components: + - type: Transform + pos: -26.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16919 + components: + - type: Transform + pos: -34.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16921 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16922 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16923 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16924 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16925 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16926 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16927 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16929 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16945 + components: + - type: Transform + pos: -10.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16946 + components: + - type: Transform + pos: -12.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16947 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16956 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16962 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16971 + components: + - type: Transform + pos: 41.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16981 + components: + - type: Transform + pos: 40.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16982 + components: + - type: Transform + pos: 40.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16987 + components: + - type: Transform + pos: 73.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16998 + components: + - type: Transform + pos: 56.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 16999 + components: + - type: Transform + pos: 55.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17006 + components: + - type: Transform + pos: -4.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17007 + components: + - type: Transform + pos: -5.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17008 + components: + - type: Transform + pos: -10.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17009 + components: + - type: Transform + pos: -11.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17013 + components: + - type: Transform + pos: -7.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17016 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17020 + components: + - type: Transform + pos: 4.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17021 + components: + - type: Transform + pos: 6.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17023 + components: + - type: Transform + pos: 9.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-106.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17042 + components: + - type: Transform + pos: 2.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17043 + components: + - type: Transform + pos: 1.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17048 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,-28.5 + parent: 2 + - uid: 17051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,-25.5 + parent: 2 + - uid: 17052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,-25.5 + parent: 2 + - uid: 17053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-57.5 + parent: 2 + - uid: 17054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17055 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#B22222FF' + - uid: 17059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-56.5 + parent: 2 +- proto: GasPort + entities: + - uid: 17061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,-27.5 + parent: 2 + - uid: 17062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,-28.5 + parent: 2 + - uid: 17063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,-31.5 + parent: 2 + - uid: 17064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,-31.5 + parent: 2 + - uid: 17065 + components: + - type: Transform + pos: -44.5,16.5 + parent: 2 + - uid: 17066 + components: + - type: Transform + pos: -43.5,16.5 + parent: 2 + - uid: 17067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,8.5 + parent: 2 + - uid: 17068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-47.5 + parent: 2 + - uid: 17069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,21.5 + parent: 2 + - uid: 17070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,7.5 + parent: 2 + - uid: 17071 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 2 + - uid: 17072 + components: + - type: Transform + pos: -21.5,-38.5 + parent: 2 + - uid: 17073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-51.5 + parent: 2 + - uid: 17076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-51.5 + parent: 2 + - uid: 17077 + components: + - type: Transform + pos: 13.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17078 + components: + - type: Transform + pos: 14.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17079 + components: + - type: Transform + pos: 15.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,-47.5 + parent: 2 + - uid: 17081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,-48.5 + parent: 2 + - uid: 17082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-42.5 + parent: 2 + - uid: 17083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-44.5 + parent: 2 + - uid: 17084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-41.5 + parent: 2 + - uid: 17085 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 2 + - uid: 17086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-30.5 + parent: 2 + - uid: 17087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-52.5 + parent: 2 + - uid: 17088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-51.5 + parent: 2 + - uid: 17089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-50.5 + parent: 2 + - uid: 17090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-52.5 + parent: 2 + - uid: 17091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-51.5 + parent: 2 + - uid: 17092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-50.5 + parent: 2 + - uid: 17093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17094 + components: + - type: Transform + pos: 10.5,-42.5 + parent: 2 + - uid: 17095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-43.5 + parent: 2 + - uid: 17096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-47.5 + parent: 2 + - uid: 17097 + components: + - type: Transform + pos: 76.5,-46.5 + parent: 2 + - uid: 17098 + components: + - type: Transform + pos: 77.5,-46.5 + parent: 2 + - uid: 17099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-47.5 + parent: 2 + - uid: 17100 + components: + - type: Transform + pos: 74.5,-46.5 + parent: 2 + - uid: 17101 + components: + - type: Transform + pos: 70.5,-46.5 + parent: 2 + - uid: 17102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-47.5 + parent: 2 + - uid: 17103 + components: + - type: Transform + pos: 72.5,-46.5 + parent: 2 + - uid: 17104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-47.5 + parent: 2 + - uid: 17105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-41.5 + parent: 2 + - uid: 17106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-39.5 + parent: 2 + - uid: 17107 + components: + - type: Transform + pos: 22.5,-91.5 + parent: 2 + - uid: 17108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,-24.5 + parent: 2 + - uid: 17109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-44.5 + parent: 2 + - uid: 17110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,-23.5 + parent: 2 + - uid: 17111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,-26.5 + parent: 2 + - uid: 17112 + components: + - type: Transform + pos: 70.5,-55.5 + parent: 2 + - uid: 17113 + components: + - type: Transform + pos: 69.5,-55.5 + parent: 2 + - uid: 17114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-57.5 + parent: 2 + - uid: 17115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17116 + components: + - type: Transform + pos: 82.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPressurePump + entities: + - uid: 17117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,-30.5 + parent: 2 + - uid: 17118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,-30.5 + parent: 2 + - uid: 17119 + components: + - type: Transform + pos: 1.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17122 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17124 + components: + - type: Transform + pos: 40.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17125 + components: + - type: Transform + pos: -43.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17126 + components: + - type: MetaData + name: air to distro + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17127 + components: + - type: MetaData + name: o2 pump + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 17128 + components: + - type: MetaData + name: n2 pump + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 17129 + components: + - type: MetaData + name: o2 to mix + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 17130 + components: + - type: MetaData + name: n2 to mix + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 17131 + components: + - type: MetaData + name: co2 pump + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 17132 + components: + - type: MetaData + name: h2o pump + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 17133 + components: + - type: MetaData + name: waste filter pump + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 17134 + components: + - type: MetaData + name: mix pump + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 17135 + components: + - type: MetaData + name: mix to waste + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17136 + components: + - type: MetaData + name: distro to ports + - type: Transform + pos: 16.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17137 + components: + - type: MetaData + name: mix product to ports + - type: Transform + pos: 17.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 17138 + components: + - type: MetaData + name: mix line to ports + - type: Transform + pos: 18.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 17139 + components: + - type: MetaData + name: distro to mix + - type: Transform + pos: 21.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17140 + components: + - type: MetaData + name: volatile ports pump + - type: Transform + pos: 18.5,-49.5 + parent: 2 + - uid: 17141 + components: + - type: MetaData + name: neutral ports pump + - type: Transform + pos: 16.5,-49.5 + parent: 2 + - uid: 17142 + components: + - type: MetaData + name: ports to waste + - type: Transform + pos: 16.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17143 + components: + - type: MetaData + name: volatile ports to waste + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-41.5 + parent: 2 + - uid: 17145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-39.5 + parent: 2 + - uid: 17146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-57.5 + parent: 2 + - uid: 17149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-25.5 + parent: 2 + - uid: 17150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,-24.5 + parent: 2 + - uid: 17151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.5,-23.5 + parent: 2 + - uid: 17152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-28.5 + parent: 2 + - uid: 17154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,-27.5 + parent: 2 + - uid: 17155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasThermoMachineFreezer + entities: + - uid: 17158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,-29.5 + parent: 2 + - uid: 17159 + components: + - type: Transform + pos: 33.5,-32.5 + parent: 2 + - uid: 17160 + components: + - type: Transform + pos: 11.5,-40.5 + parent: 2 + - uid: 17161 + components: + - type: Transform + pos: 38.5,0.5 + parent: 2 + - uid: 17162 + components: + - type: Transform + pos: 57.5,-29.5 + parent: 2 + - uid: 17163 + components: + - type: Transform + pos: 70.5,-47.5 + parent: 2 + - uid: 17164 + components: + - type: Transform + pos: 19.5,-54.5 + parent: 2 +- proto: GasThermoMachineHeater + entities: + - uid: 17165 + components: + - type: Transform + pos: 9.5,-42.5 + parent: 2 + - uid: 17166 + components: + - type: Transform + pos: 74.5,-47.5 + parent: 2 + - uid: 17167 + components: + - type: Transform + pos: 19.5,-53.5 + parent: 2 + - uid: 17168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,-29.5 + parent: 2 +- proto: GasValve + entities: + - uid: 17169 + components: + - type: Transform + pos: 88.5,-26.5 + parent: 2 + - type: GasValve + open: False + - uid: 17170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,-26.5 + parent: 2 + - type: GasValve + open: False + - uid: 17171 + components: + - type: MetaData + name: waste valve 2 + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17172 + components: + - type: MetaData + name: waste valve 1 + - type: Transform + pos: 15.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-41.5 + parent: 2 + - uid: 17174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-39.5 + parent: 2 +- proto: GasVentPump + entities: + - uid: 17175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#B22222FF' + - uid: 17177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#B22222FF' + - uid: 17178 + components: + - type: Transform + pos: 58.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17179 + components: + - type: Transform + pos: -15.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17182 + components: + - type: Transform + pos: 13.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17183 + components: + - type: Transform + pos: 53.5,-56.5 + parent: 2 + - uid: 17184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17193 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17197 + components: + - type: Transform + pos: -15.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17198 + components: + - type: Transform + pos: -1.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17200 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17203 + components: + - type: Transform + pos: 16.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17204 + components: + - type: Transform + pos: 5.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17206 + components: + - type: Transform + pos: 9.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17210 + components: + - type: Transform + pos: -7.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17211 + components: + - type: Transform + pos: -6.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17214 + components: + - type: Transform + pos: 3.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17217 + components: + - type: Transform + pos: -7.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17228 + components: + - type: Transform + pos: -20.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17229 + components: + - type: Transform + pos: -21.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17243 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17244 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17252 + components: + - type: Transform + pos: 78.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17256 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17261 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17262 + components: + - type: Transform + pos: 12.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17263 + components: + - type: Transform + pos: 16.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17264 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17268 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17270 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17273 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17274 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17275 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17276 + components: + - type: Transform + pos: 39.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17277 + components: + - type: Transform + pos: 40.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17290 + components: + - type: Transform + pos: 44.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17291 + components: + - type: Transform + pos: 35.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17296 + components: + - type: Transform + pos: 47.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17297 + components: + - type: Transform + pos: 67.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17298 + components: + - type: Transform + pos: 73.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-41.5 + parent: 2 + - uid: 17301 + components: + - type: Transform + pos: 70.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17320 + components: + - type: Transform + pos: -59.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17322 + components: + - type: Transform + pos: -60.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17324 + components: + - type: Transform + pos: -38.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17327 + components: + - type: Transform + pos: -40.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17328 + components: + - type: Transform + pos: -30.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17329 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17333 + components: + - type: Transform + pos: -16.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 90 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 84 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17337 + components: + - type: Transform + pos: -6.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17338 + components: + - type: Transform + pos: 9.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17347 + components: + - type: Transform + pos: -10.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17349 + components: + - type: Transform + pos: 1.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17352 + components: + - type: Transform + pos: 8.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-109.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-106.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-91.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17360 + components: + - type: Transform + pos: 28.5,-79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 42 + - 89 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17362 + components: + - type: Transform + pos: -21.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17364 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17365 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17368 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 89 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 92 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 89 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17372 + components: + - type: Transform + pos: 51.5,-56.5 + parent: 2 + - uid: 17373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17377 + components: + - type: Transform + pos: 30.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 17378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#1E90FFFF' + - uid: 17379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17380 + components: + - type: Transform + pos: 59.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17384 + components: + - type: Transform + pos: -14.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17386 + components: + - type: Transform + pos: 57.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17388 + components: + - type: Transform + pos: -7.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17389 + components: + - type: Transform + pos: -13.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17390 + components: + - type: Transform + pos: -18.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17397 + components: + - type: Transform + pos: 28.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17399 + components: + - type: Transform + pos: -2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17401 + components: + - type: Transform + pos: 11.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 17403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17410 + components: + - type: Transform + pos: -5.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17413 + components: + - type: Transform + pos: 5.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17417 + components: + - type: Transform + pos: -5.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17425 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17426 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17428 + components: + - type: Transform + pos: -22.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17449 + components: + - type: Transform + pos: 76.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17459 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17460 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17465 + components: + - type: Transform + pos: 20.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17466 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17468 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17473 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17474 + components: + - type: Transform + pos: 38.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17491 + components: + - type: Transform + pos: 43.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17492 + components: + - type: Transform + pos: 47.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-39.5 + parent: 2 + - uid: 17499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17501 + components: + - type: Transform + pos: 70.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17502 + components: + - type: Transform + pos: 61.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17518 + components: + - type: Transform + pos: -58.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17520 + components: + - type: Transform + pos: -57.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17522 + components: + - type: Transform + pos: -45.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17526 + components: + - type: Transform + pos: -31.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 84 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17533 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17548 + components: + - type: Transform + pos: 2.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17550 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 42 + - 89 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 92 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17557 + components: + - type: Transform + pos: 16.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17559 + components: + - type: Transform + pos: 12.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 89 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 89 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 73 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17568 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' + - uid: 17569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' +- proto: GasVolumePump + entities: + - uid: 17570 + components: + - type: Transform + pos: 11.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#E32636FF' +- proto: Gateway + entities: + - uid: 17571 + components: + - type: Transform + pos: -21.5,6.5 + parent: 2 +- proto: Gauze + entities: + - uid: 17572 + components: + - type: Transform + pos: 25.488188,13.131261 + parent: 2 +- proto: GeigerCounter + entities: + - uid: 11026 + components: + - type: Transform + parent: 11019 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17574 + components: + - type: Transform + parent: 17573 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17579 + components: + - type: Transform + parent: 17578 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17584 + components: + - type: Transform + parent: 17583 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Girder + entities: + - uid: 17588 + components: + - type: Transform + pos: 49.5,5.5 + parent: 2 + - uid: 17589 + components: + - type: Transform + pos: -20.5,19.5 + parent: 2 + - uid: 17590 + components: + - type: Transform + pos: -17.5,17.5 + parent: 2 + - uid: 17591 + components: + - type: Transform + pos: -4.5,4.5 + parent: 2 + - uid: 17592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 2 + - uid: 17593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-37.5 + parent: 2 + - uid: 17594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-37.5 + parent: 2 +- proto: GlassBoxLaserFilled + entities: + - uid: 17595 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 +- proto: GlimmerProber + entities: + - uid: 17596 + components: + - type: Transform + pos: 61.5,-49.5 + parent: 2 +- proto: GravityGenerator + entities: + - uid: 17597 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 2 + - type: GravityGenerator + charge: 100 + - type: PointLight + radius: 175.75 +- proto: GravityGeneratorMini + entities: + - uid: 17598 + components: + - type: Transform + pos: -67.5,15.5 + parent: 2 +- proto: Grille + entities: + - uid: 17599 + components: + - type: Transform + pos: 13.5,36.5 + parent: 2 + - uid: 17600 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 2 + - uid: 17601 + components: + - type: Transform + pos: -80.5,7.5 + parent: 2 + - uid: 17604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-17.5 + parent: 2 + - uid: 17605 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 17606 + components: + - type: Transform + pos: -16.5,44.5 + parent: 2 + - uid: 17607 + components: + - type: Transform + pos: 54.5,-8.5 + parent: 2 + - uid: 17608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-19.5 + parent: 2 + - uid: 17609 + components: + - type: Transform + pos: 5.5,-46.5 + parent: 2 + - uid: 17610 + components: + - type: Transform + pos: 74.5,-9.5 + parent: 2 + - uid: 17611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-51.5 + parent: 2 + - uid: 17612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-17.5 + parent: 2 + - uid: 17613 + components: + - type: Transform + pos: 35.5,-33.5 + parent: 2 + - uid: 17614 + components: + - type: Transform + pos: 76.5,-4.5 + parent: 2 + - uid: 17615 + components: + - type: Transform + pos: 87.5,-42.5 + parent: 2 + - uid: 17616 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 2 + - uid: 17617 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 2 + - uid: 17618 + components: + - type: Transform + pos: -15.5,19.5 + parent: 2 + - uid: 17619 + components: + - type: Transform + pos: -4.5,34.5 + parent: 2 + - uid: 17620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,20.5 + parent: 2 + - uid: 17621 + components: + - type: Transform + pos: -44.5,-6.5 + parent: 2 + - uid: 17622 + components: + - type: Transform + pos: -12.5,-25.5 + parent: 2 + - uid: 17623 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 2 + - uid: 17624 + components: + - type: Transform + pos: 32.5,16.5 + parent: 2 + - uid: 17625 + components: + - type: Transform + pos: 31.5,16.5 + parent: 2 + - uid: 17626 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 17627 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 17628 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 17629 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 17630 + components: + - type: Transform + pos: 47.5,-11.5 + parent: 2 + - uid: 17631 + components: + - type: Transform + pos: 48.5,-11.5 + parent: 2 + - uid: 17632 + components: + - type: Transform + pos: 79.5,-27.5 + parent: 2 + - uid: 17633 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - uid: 17634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-4.5 + parent: 2 + - uid: 17635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,18.5 + parent: 2 + - uid: 17636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,14.5 + parent: 2 + - uid: 17637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,15.5 + parent: 2 + - uid: 17638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,16.5 + parent: 2 + - uid: 17639 + components: + - type: Transform + pos: -12.5,-78.5 + parent: 2 + - uid: 17640 + components: + - type: Transform + pos: -13.5,-78.5 + parent: 2 + - uid: 17641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,-22.5 + parent: 2 + - uid: 17642 + components: + - type: Transform + pos: 80.5,-27.5 + parent: 2 + - uid: 17643 + components: + - type: Transform + pos: 64.5,-29.5 + parent: 2 + - uid: 17644 + components: + - type: Transform + pos: 64.5,-30.5 + parent: 2 + - uid: 17645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-36.5 + parent: 2 + - uid: 17646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-57.5 + parent: 2 + - uid: 17647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-36.5 + parent: 2 + - uid: 17648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-43.5 + parent: 2 + - uid: 17649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-51.5 + parent: 2 + - uid: 17650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-47.5 + parent: 2 + - uid: 17651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-37.5 + parent: 2 + - uid: 17652 + components: + - type: Transform + pos: -38.5,-42.5 + parent: 2 + - uid: 17653 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 17654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-39.5 + parent: 2 + - uid: 17655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-36.5 + parent: 2 + - uid: 17656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-35.5 + parent: 2 + - uid: 17657 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 17658 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 17659 + components: + - type: Transform + pos: 43.5,-23.5 + parent: 2 + - uid: 17661 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 17662 + components: + - type: Transform + pos: 87.5,-40.5 + parent: 2 + - uid: 17663 + components: + - type: Transform + pos: -41.5,-24.5 + parent: 2 + - uid: 17664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 2 + - uid: 17665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,31.5 + parent: 2 + - uid: 17666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-36.5 + parent: 2 + - uid: 17667 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 2 + - uid: 17669 + components: + - type: Transform + pos: 79.5,-10.5 + parent: 2 + - uid: 17670 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 2 + - uid: 17671 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 2 + - uid: 17672 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 2 + - uid: 17673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-45.5 + parent: 2 + - uid: 17674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 2 + - uid: 17676 + components: + - type: Transform + pos: 62.5,-28.5 + parent: 2 + - uid: 17677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,16.5 + parent: 2 + - uid: 17680 + components: + - type: Transform + pos: 7.5,33.5 + parent: 2 + - uid: 17681 + components: + - type: Transform + pos: -19.5,30.5 + parent: 2 + - uid: 17682 + components: + - type: Transform + pos: -19.5,31.5 + parent: 2 + - uid: 17683 + components: + - type: Transform + pos: -80.5,-6.5 + parent: 2 + - uid: 17684 + components: + - type: Transform + pos: -66.5,-8.5 + parent: 2 + - uid: 17685 + components: + - type: Transform + pos: -66.5,-7.5 + parent: 2 + - uid: 17686 + components: + - type: Transform + pos: -66.5,-11.5 + parent: 2 + - uid: 17687 + components: + - type: Transform + pos: -76.5,-12.5 + parent: 2 + - uid: 17688 + components: + - type: Transform + pos: -78.5,-12.5 + parent: 2 + - uid: 17689 + components: + - type: Transform + pos: -76.5,-6.5 + parent: 2 + - uid: 17690 + components: + - type: Transform + pos: -65.5,-16.5 + parent: 2 + - uid: 17691 + components: + - type: Transform + pos: -64.5,-16.5 + parent: 2 + - uid: 17692 + components: + - type: Transform + pos: -80.5,-2.5 + parent: 2 + - uid: 17693 + components: + - type: Transform + pos: -78.5,-16.5 + parent: 2 + - uid: 17694 + components: + - type: Transform + pos: 64.5,-9.5 + parent: 2 + - uid: 17695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,4.5 + parent: 2 + - uid: 17701 + components: + - type: Transform + pos: -12.5,-70.5 + parent: 2 + - uid: 17702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,51.5 + parent: 2 + - uid: 17703 + components: + - type: Transform + pos: 28.5,28.5 + parent: 2 + - uid: 17704 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 + - uid: 17705 + components: + - type: Transform + pos: 3.5,46.5 + parent: 2 + - uid: 17706 + components: + - type: Transform + pos: 14.5,36.5 + parent: 2 + - uid: 17707 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 + - uid: 17708 + components: + - type: Transform + pos: -29.5,9.5 + parent: 2 + - uid: 17709 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 17710 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 + - uid: 17711 + components: + - type: Transform + pos: -34.5,0.5 + parent: 2 + - uid: 17712 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - uid: 17713 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - uid: 17714 + components: + - type: Transform + pos: -37.5,17.5 + parent: 2 + - uid: 17715 + components: + - type: Transform + pos: -38.5,17.5 + parent: 2 + - uid: 17716 + components: + - type: Transform + pos: -28.5,9.5 + parent: 2 + - uid: 17717 + components: + - type: Transform + pos: -30.5,9.5 + parent: 2 + - uid: 17718 + components: + - type: Transform + pos: -32.5,9.5 + parent: 2 + - uid: 17719 + components: + - type: Transform + pos: -34.5,9.5 + parent: 2 + - uid: 17720 + components: + - type: Transform + pos: -35.5,0.5 + parent: 2 + - uid: 17721 + components: + - type: Transform + pos: -33.5,0.5 + parent: 2 + - uid: 17722 + components: + - type: Transform + pos: -29.5,0.5 + parent: 2 + - uid: 17723 + components: + - type: Transform + pos: -29.5,19.5 + parent: 2 + - uid: 17724 + components: + - type: Transform + pos: -29.5,23.5 + parent: 2 + - uid: 17725 + components: + - type: Transform + pos: -36.5,17.5 + parent: 2 + - uid: 17726 + components: + - type: Transform + pos: -34.5,25.5 + parent: 2 + - uid: 17727 + components: + - type: Transform + pos: -29.5,24.5 + parent: 2 + - uid: 17728 + components: + - type: Transform + pos: -27.5,11.5 + parent: 2 + - uid: 17729 + components: + - type: Transform + pos: -28.5,11.5 + parent: 2 + - uid: 17730 + components: + - type: Transform + pos: -29.5,11.5 + parent: 2 + - uid: 17731 + components: + - type: Transform + pos: -30.5,12.5 + parent: 2 + - uid: 17732 + components: + - type: Transform + pos: -30.5,13.5 + parent: 2 + - uid: 17733 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 + - uid: 17734 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 + - uid: 17735 + components: + - type: Transform + pos: -30.5,16.5 + parent: 2 + - uid: 17736 + components: + - type: Transform + pos: -32.5,16.5 + parent: 2 + - uid: 17737 + components: + - type: Transform + pos: -32.5,15.5 + parent: 2 + - uid: 17738 + components: + - type: Transform + pos: -32.5,14.5 + parent: 2 + - uid: 17739 + components: + - type: Transform + pos: -32.5,13.5 + parent: 2 + - uid: 17740 + components: + - type: Transform + pos: -29.5,22.5 + parent: 2 + - uid: 17741 + components: + - type: Transform + pos: -29.5,18.5 + parent: 2 + - uid: 17742 + components: + - type: Transform + pos: -35.5,25.5 + parent: 2 + - uid: 17743 + components: + - type: Transform + pos: -33.5,25.5 + parent: 2 + - uid: 17744 + components: + - type: Transform + pos: -42.5,19.5 + parent: 2 + - uid: 17745 + components: + - type: Transform + pos: -43.5,19.5 + parent: 2 + - uid: 17746 + components: + - type: Transform + pos: -48.5,26.5 + parent: 2 + - uid: 17747 + components: + - type: Transform + pos: -50.5,26.5 + parent: 2 + - uid: 17748 + components: + - type: Transform + pos: -50.5,25.5 + parent: 2 + - uid: 17749 + components: + - type: Transform + pos: -50.5,24.5 + parent: 2 + - uid: 17750 + components: + - type: Transform + pos: -51.5,24.5 + parent: 2 + - uid: 17751 + components: + - type: Transform + pos: -51.5,13.5 + parent: 2 + - uid: 17752 + components: + - type: Transform + pos: -51.5,15.5 + parent: 2 + - uid: 17753 + components: + - type: Transform + pos: -32.5,25.5 + parent: 2 + - uid: 17754 + components: + - type: Transform + pos: -38.5,13.5 + parent: 2 + - uid: 17755 + components: + - type: Transform + pos: -29.5,20.5 + parent: 2 + - uid: 17756 + components: + - type: Transform + pos: -35.5,13.5 + parent: 2 + - uid: 17757 + components: + - type: Transform + pos: -37.5,13.5 + parent: 2 + - uid: 17758 + components: + - type: Transform + pos: -36.5,13.5 + parent: 2 + - uid: 17759 + components: + - type: Transform + pos: -65.5,21.5 + parent: 2 + - uid: 17760 + components: + - type: Transform + pos: -65.5,19.5 + parent: 2 + - uid: 17761 + components: + - type: Transform + pos: -67.5,21.5 + parent: 2 + - uid: 17762 + components: + - type: Transform + pos: -68.5,16.5 + parent: 2 + - uid: 17763 + components: + - type: Transform + pos: -68.5,18.5 + parent: 2 + - uid: 17764 + components: + - type: Transform + pos: -68.5,14.5 + parent: 2 + - uid: 17765 + components: + - type: Transform + pos: -68.5,12.5 + parent: 2 + - uid: 17766 + components: + - type: Transform + pos: -67.5,20.5 + parent: 2 + - uid: 17767 + components: + - type: Transform + pos: -67.5,19.5 + parent: 2 + - uid: 17768 + components: + - type: Transform + pos: -68.5,13.5 + parent: 2 + - uid: 17769 + components: + - type: Transform + pos: -67.5,11.5 + parent: 2 + - uid: 17770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-2.5 + parent: 2 + - uid: 17771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,7.5 + parent: 2 + - uid: 17772 + components: + - type: Transform + pos: -65.5,4.5 + parent: 2 + - uid: 17773 + components: + - type: Transform + pos: -65.5,3.5 + parent: 2 + - uid: 17774 + components: + - type: Transform + pos: -65.5,2.5 + parent: 2 + - uid: 17775 + components: + - type: Transform + pos: -65.5,1.5 + parent: 2 + - uid: 17776 + components: + - type: Transform + pos: -65.5,0.5 + parent: 2 + - uid: 17777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,7.5 + parent: 2 + - uid: 17778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-2.5 + parent: 2 + - uid: 17779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-2.5 + parent: 2 + - uid: 17780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-2.5 + parent: 2 + - uid: 17781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,7.5 + parent: 2 + - uid: 17782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,7.5 + parent: 2 + - uid: 17783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,-2.5 + parent: 2 + - uid: 17784 + components: + - type: Transform + pos: -46.5,0.5 + parent: 2 + - uid: 17785 + components: + - type: Transform + pos: -44.5,0.5 + parent: 2 + - uid: 17786 + components: + - type: Transform + pos: -37.5,0.5 + parent: 2 + - uid: 17787 + components: + - type: Transform + pos: -39.5,0.5 + parent: 2 + - uid: 17788 + components: + - type: Transform + pos: 1.5,40.5 + parent: 2 + - uid: 17789 + components: + - type: Transform + pos: 2.5,40.5 + parent: 2 + - uid: 17790 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 2 + - uid: 17791 + components: + - type: Transform + pos: -13.5,-34.5 + parent: 2 + - uid: 17792 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 2 + - uid: 17793 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 + - uid: 17794 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 17795 + components: + - type: Transform + pos: 57.5,21.5 + parent: 2 + - uid: 17796 + components: + - type: Transform + pos: 56.5,21.5 + parent: 2 + - uid: 17797 + components: + - type: Transform + pos: 55.5,21.5 + parent: 2 + - uid: 17798 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 17799 + components: + - type: Transform + pos: 65.5,24.5 + parent: 2 + - uid: 17800 + components: + - type: Transform + pos: 64.5,8.5 + parent: 2 + - uid: 17801 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - uid: 17802 + components: + - type: Transform + pos: -68.5,-6.5 + parent: 2 + - uid: 17803 + components: + - type: Transform + pos: -69.5,-6.5 + parent: 2 + - uid: 17804 + components: + - type: Transform + pos: -70.5,-6.5 + parent: 2 + - uid: 17805 + components: + - type: Transform + pos: -71.5,-6.5 + parent: 2 + - uid: 17806 + components: + - type: Transform + pos: -73.5,-6.5 + parent: 2 + - uid: 17807 + components: + - type: Transform + pos: -74.5,-6.5 + parent: 2 + - uid: 17808 + components: + - type: Transform + pos: -75.5,-6.5 + parent: 2 + - uid: 17809 + components: + - type: Transform + pos: -68.5,-12.5 + parent: 2 + - uid: 17810 + components: + - type: Transform + pos: -69.5,-12.5 + parent: 2 + - uid: 17811 + components: + - type: Transform + pos: -70.5,-12.5 + parent: 2 + - uid: 17812 + components: + - type: Transform + pos: -71.5,-12.5 + parent: 2 + - uid: 17813 + components: + - type: Transform + pos: -73.5,-12.5 + parent: 2 + - uid: 17814 + components: + - type: Transform + pos: -74.5,-12.5 + parent: 2 + - uid: 17815 + components: + - type: Transform + pos: -75.5,-12.5 + parent: 2 + - uid: 17816 + components: + - type: Transform + pos: -76.5,-17.5 + parent: 2 + - uid: 17817 + components: + - type: Transform + pos: -73.5,-17.5 + parent: 2 + - uid: 17818 + components: + - type: Transform + pos: -72.5,-17.5 + parent: 2 + - uid: 17819 + components: + - type: Transform + pos: -71.5,-17.5 + parent: 2 + - uid: 17820 + components: + - type: Transform + pos: -70.5,-17.5 + parent: 2 + - uid: 17821 + components: + - type: Transform + pos: -67.5,-17.5 + parent: 2 + - uid: 17822 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 2 + - uid: 17823 + components: + - type: Transform + pos: -58.5,-21.5 + parent: 2 + - uid: 17824 + components: + - type: Transform + pos: -60.5,-20.5 + parent: 2 + - uid: 17825 + components: + - type: Transform + pos: -60.5,-21.5 + parent: 2 + - uid: 17826 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 2 + - uid: 17827 + components: + - type: Transform + pos: -60.5,-18.5 + parent: 2 + - uid: 17828 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 2 + - uid: 17829 + components: + - type: Transform + pos: -53.5,-19.5 + parent: 2 + - uid: 17830 + components: + - type: Transform + pos: -54.5,-19.5 + parent: 2 + - uid: 17831 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - uid: 17832 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 + - uid: 17833 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 2 + - uid: 17834 + components: + - type: Transform + pos: -23.5,-21.5 + parent: 2 + - uid: 17835 + components: + - type: Transform + pos: -30.5,-28.5 + parent: 2 + - uid: 17836 + components: + - type: Transform + pos: -31.5,-28.5 + parent: 2 + - uid: 17837 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - uid: 17838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,7.5 + parent: 2 + - uid: 17839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-2.5 + parent: 2 + - uid: 17840 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 2 + - uid: 17841 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 2 + - uid: 17842 + components: + - type: Transform + pos: -16.5,-44.5 + parent: 2 + - uid: 17843 + components: + - type: Transform + pos: -16.5,-43.5 + parent: 2 + - uid: 17844 + components: + - type: Transform + pos: -16.5,-42.5 + parent: 2 + - uid: 17845 + components: + - type: Transform + pos: -16.5,-41.5 + parent: 2 + - uid: 17846 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 2 + - uid: 17847 + components: + - type: Transform + pos: -18.5,-45.5 + parent: 2 + - uid: 17848 + components: + - type: Transform + pos: -16.5,-35.5 + parent: 2 + - uid: 17849 + components: + - type: Transform + pos: -16.5,-36.5 + parent: 2 + - uid: 17850 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 2 + - uid: 17852 + components: + - type: Transform + pos: 2.5,-45.5 + parent: 2 + - uid: 17853 + components: + - type: Transform + pos: 8.5,-44.5 + parent: 2 + - uid: 17854 + components: + - type: Transform + pos: 2.5,-55.5 + parent: 2 + - uid: 17855 + components: + - type: Transform + pos: 2.5,-57.5 + parent: 2 + - uid: 17856 + components: + - type: Transform + pos: 87.5,-34.5 + parent: 2 + - uid: 17857 + components: + - type: Transform + pos: 87.5,-35.5 + parent: 2 + - uid: 17858 + components: + - type: Transform + pos: 87.5,-36.5 + parent: 2 + - uid: 17859 + components: + - type: Transform + pos: 86.5,-37.5 + parent: 2 + - uid: 17860 + components: + - type: Transform + pos: 85.5,-37.5 + parent: 2 + - uid: 17861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-4.5 + parent: 2 + - uid: 17862 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - uid: 17863 + components: + - type: Transform + pos: 38.5,-40.5 + parent: 2 + - uid: 17864 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 2 + - uid: 17865 + components: + - type: Transform + pos: 38.5,-38.5 + parent: 2 + - uid: 17866 + components: + - type: Transform + pos: 38.5,-45.5 + parent: 2 + - uid: 17867 + components: + - type: Transform + pos: 43.5,-54.5 + parent: 2 + - uid: 17868 + components: + - type: Transform + pos: 44.5,-54.5 + parent: 2 + - uid: 17869 + components: + - type: Transform + pos: 46.5,-57.5 + parent: 2 + - uid: 17870 + components: + - type: Transform + pos: 44.5,-57.5 + parent: 2 + - uid: 17871 + components: + - type: Transform + pos: 45.5,-58.5 + parent: 2 + - uid: 17872 + components: + - type: Transform + pos: 45.5,-59.5 + parent: 2 + - uid: 17873 + components: + - type: Transform + pos: 45.5,-60.5 + parent: 2 + - uid: 17874 + components: + - type: Transform + pos: 42.5,-58.5 + parent: 2 + - uid: 17875 + components: + - type: Transform + pos: 42.5,-59.5 + parent: 2 + - uid: 17876 + components: + - type: Transform + pos: 42.5,-60.5 + parent: 2 + - uid: 17877 + components: + - type: Transform + pos: 65.5,-49.5 + parent: 2 + - uid: 17878 + components: + - type: Transform + pos: 67.5,-49.5 + parent: 2 + - uid: 17879 + components: + - type: Transform + pos: 69.5,-44.5 + parent: 2 + - uid: 17880 + components: + - type: Transform + pos: 69.5,-46.5 + parent: 2 + - uid: 17881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-42.5 + parent: 2 + - uid: 17882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-42.5 + parent: 2 + - uid: 17883 + components: + - type: Transform + pos: 68.5,-39.5 + parent: 2 + - uid: 17884 + components: + - type: Transform + pos: 68.5,-40.5 + parent: 2 + - uid: 17885 + components: + - type: Transform + pos: 68.5,-41.5 + parent: 2 + - uid: 17886 + components: + - type: Transform + pos: 68.5,-33.5 + parent: 2 + - uid: 17887 + components: + - type: Transform + pos: 68.5,-34.5 + parent: 2 + - uid: 17888 + components: + - type: Transform + pos: 68.5,-30.5 + parent: 2 + - uid: 17889 + components: + - type: Transform + pos: 68.5,-29.5 + parent: 2 + - uid: 17890 + components: + - type: Transform + pos: 68.5,-28.5 + parent: 2 + - uid: 17891 + components: + - type: Transform + pos: 75.5,-24.5 + parent: 2 + - uid: 17892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,-27.5 + parent: 2 + - uid: 17893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,-29.5 + parent: 2 + - uid: 17894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,-22.5 + parent: 2 + - uid: 17895 + components: + - type: Transform + pos: 71.5,-16.5 + parent: 2 + - uid: 17896 + components: + - type: Transform + pos: 64.5,-22.5 + parent: 2 + - uid: 17897 + components: + - type: Transform + pos: 63.5,-25.5 + parent: 2 + - uid: 17898 + components: + - type: Transform + pos: 61.5,-25.5 + parent: 2 + - uid: 17899 + components: + - type: Transform + pos: 63.5,-16.5 + parent: 2 + - uid: 17900 + components: + - type: Transform + pos: 61.5,-16.5 + parent: 2 + - uid: 17901 + components: + - type: Transform + pos: 54.5,-29.5 + parent: 2 + - uid: 17902 + components: + - type: Transform + pos: 54.5,-31.5 + parent: 2 + - uid: 17903 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 2 + - uid: 17904 + components: + - type: Transform + pos: 75.5,3.5 + parent: 2 + - uid: 17905 + components: + - type: Transform + pos: 75.5,2.5 + parent: 2 + - uid: 17906 + components: + - type: Transform + pos: 75.5,1.5 + parent: 2 + - uid: 17907 + components: + - type: Transform + pos: 75.5,0.5 + parent: 2 + - uid: 17908 + components: + - type: Transform + pos: 80.5,-0.5 + parent: 2 + - uid: 17909 + components: + - type: Transform + pos: 81.5,-0.5 + parent: 2 + - uid: 17910 + components: + - type: Transform + pos: 82.5,-0.5 + parent: 2 + - uid: 17911 + components: + - type: Transform + pos: 83.5,-1.5 + parent: 2 + - uid: 17912 + components: + - type: Transform + pos: 83.5,-2.5 + parent: 2 + - uid: 17913 + components: + - type: Transform + pos: 84.5,-2.5 + parent: 2 + - uid: 17914 + components: + - type: Transform + pos: 85.5,-2.5 + parent: 2 + - uid: 17915 + components: + - type: Transform + pos: 85.5,-6.5 + parent: 2 + - uid: 17916 + components: + - type: Transform + pos: 84.5,-6.5 + parent: 2 + - uid: 17917 + components: + - type: Transform + pos: 83.5,-7.5 + parent: 2 + - uid: 17918 + components: + - type: Transform + pos: 83.5,-8.5 + parent: 2 + - uid: 17919 + components: + - type: Transform + pos: 83.5,-9.5 + parent: 2 + - uid: 17920 + components: + - type: Transform + pos: 84.5,-10.5 + parent: 2 + - uid: 17921 + components: + - type: Transform + pos: 85.5,-10.5 + parent: 2 + - uid: 17922 + components: + - type: Transform + pos: 85.5,-14.5 + parent: 2 + - uid: 17923 + components: + - type: Transform + pos: 84.5,-14.5 + parent: 2 + - uid: 17924 + components: + - type: Transform + pos: 83.5,-14.5 + parent: 2 + - uid: 17925 + components: + - type: Transform + pos: 82.5,-14.5 + parent: 2 + - uid: 17926 + components: + - type: Transform + pos: 81.5,-14.5 + parent: 2 + - uid: 17927 + components: + - type: Transform + pos: 80.5,-14.5 + parent: 2 + - uid: 17928 + components: + - type: Transform + pos: 80.5,-15.5 + parent: 2 + - uid: 17929 + components: + - type: Transform + pos: 80.5,-16.5 + parent: 2 + - uid: 17930 + components: + - type: Transform + pos: 79.5,-16.5 + parent: 2 + - uid: 17931 + components: + - type: Transform + pos: 78.5,-16.5 + parent: 2 + - uid: 17932 + components: + - type: Transform + pos: 79.5,-7.5 + parent: 2 + - uid: 17933 + components: + - type: Transform + pos: 74.5,-2.5 + parent: 2 + - uid: 17934 + components: + - type: Transform + pos: 57.5,-11.5 + parent: 2 + - uid: 17935 + components: + - type: Transform + pos: 59.5,-11.5 + parent: 2 + - uid: 17936 + components: + - type: Transform + pos: 61.5,-11.5 + parent: 2 + - uid: 17937 + components: + - type: Transform + pos: 72.5,-11.5 + parent: 2 + - uid: 17938 + components: + - type: Transform + pos: 71.5,-11.5 + parent: 2 + - uid: 17939 + components: + - type: Transform + pos: 70.5,-11.5 + parent: 2 + - uid: 17940 + components: + - type: Transform + pos: 69.5,-11.5 + parent: 2 + - uid: 17941 + components: + - type: Transform + pos: 68.5,-11.5 + parent: 2 + - uid: 17942 + components: + - type: Transform + pos: 67.5,-11.5 + parent: 2 + - uid: 17943 + components: + - type: Transform + pos: 66.5,-11.5 + parent: 2 + - uid: 17944 + components: + - type: Transform + pos: 67.5,0.5 + parent: 2 + - uid: 17945 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 2 + - uid: 17946 + components: + - type: Transform + pos: 49.5,-1.5 + parent: 2 + - uid: 17947 + components: + - type: Transform + pos: 47.5,-1.5 + parent: 2 + - uid: 17948 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 17949 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 17950 + components: + - type: Transform + pos: 74.5,-7.5 + parent: 2 + - uid: 17951 + components: + - type: Transform + pos: 87.5,-51.5 + parent: 2 + - uid: 17952 + components: + - type: Transform + pos: 87.5,-52.5 + parent: 2 + - uid: 17953 + components: + - type: Transform + pos: 87.5,-53.5 + parent: 2 + - uid: 17954 + components: + - type: Transform + pos: 83.5,-66.5 + parent: 2 + - uid: 17955 + components: + - type: Transform + pos: 82.5,-66.5 + parent: 2 + - uid: 17956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 2 + - uid: 17957 + components: + - type: Transform + pos: 31.5,-43.5 + parent: 2 + - uid: 17958 + components: + - type: Transform + pos: 31.5,-42.5 + parent: 2 + - uid: 17959 + components: + - type: Transform + pos: 31.5,-50.5 + parent: 2 + - uid: 17960 + components: + - type: Transform + pos: 42.5,-74.5 + parent: 2 + - uid: 17961 + components: + - type: Transform + pos: 43.5,-74.5 + parent: 2 + - uid: 17962 + components: + - type: Transform + pos: 44.5,-74.5 + parent: 2 + - uid: 17963 + components: + - type: Transform + pos: 50.5,-65.5 + parent: 2 + - uid: 17964 + components: + - type: Transform + pos: 50.5,-64.5 + parent: 2 + - uid: 17965 + components: + - type: Transform + pos: 64.5,-31.5 + parent: 2 + - uid: 17966 + components: + - type: Transform + pos: 51.5,-63.5 + parent: 2 + - uid: 17967 + components: + - type: Transform + pos: 52.5,-63.5 + parent: 2 + - uid: 17968 + components: + - type: Transform + pos: 53.5,-63.5 + parent: 2 + - uid: 17969 + components: + - type: Transform + pos: 57.5,-63.5 + parent: 2 + - uid: 17970 + components: + - type: Transform + pos: 56.5,-63.5 + parent: 2 + - uid: 17971 + components: + - type: Transform + pos: 58.5,-63.5 + parent: 2 + - uid: 17972 + components: + - type: Transform + pos: 61.5,-63.5 + parent: 2 + - uid: 17973 + components: + - type: Transform + pos: 62.5,-63.5 + parent: 2 + - uid: 17974 + components: + - type: Transform + pos: 63.5,-63.5 + parent: 2 + - uid: 17975 + components: + - type: Transform + pos: 62.5,-70.5 + parent: 2 + - uid: 17976 + components: + - type: Transform + pos: 60.5,-70.5 + parent: 2 + - uid: 17977 + components: + - type: Transform + pos: 60.5,-71.5 + parent: 2 + - uid: 17978 + components: + - type: Transform + pos: 60.5,-72.5 + parent: 2 + - uid: 17979 + components: + - type: Transform + pos: 62.5,-72.5 + parent: 2 + - uid: 17980 + components: + - type: Transform + pos: 62.5,-73.5 + parent: 2 + - uid: 17981 + components: + - type: Transform + pos: 63.5,-73.5 + parent: 2 + - uid: 17982 + components: + - type: Transform + pos: 64.5,-73.5 + parent: 2 + - uid: 17983 + components: + - type: Transform + pos: 65.5,-73.5 + parent: 2 + - uid: 17984 + components: + - type: Transform + pos: 69.5,-69.5 + parent: 2 + - uid: 17985 + components: + - type: Transform + pos: 70.5,-69.5 + parent: 2 + - uid: 17986 + components: + - type: Transform + pos: 76.5,-65.5 + parent: 2 + - uid: 17987 + components: + - type: Transform + pos: 77.5,-65.5 + parent: 2 + - uid: 17988 + components: + - type: Transform + pos: 78.5,-61.5 + parent: 2 + - uid: 17989 + components: + - type: Transform + pos: 74.5,-61.5 + parent: 2 + - uid: 17990 + components: + - type: Transform + pos: 73.5,-61.5 + parent: 2 + - uid: 17991 + components: + - type: Transform + pos: 73.5,-63.5 + parent: 2 + - uid: 17992 + components: + - type: Transform + pos: 74.5,-63.5 + parent: 2 + - uid: 17993 + components: + - type: Transform + pos: 34.5,-61.5 + parent: 2 + - uid: 17994 + components: + - type: Transform + pos: 35.5,-61.5 + parent: 2 + - uid: 17995 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 2 + - uid: 17996 + components: + - type: Transform + pos: -12.5,-43.5 + parent: 2 + - uid: 17998 + components: + - type: Transform + pos: -13.5,-44.5 + parent: 2 + - uid: 17999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-58.5 + parent: 2 + - uid: 18000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-58.5 + parent: 2 + - uid: 18001 + components: + - type: Transform + pos: -9.5,-55.5 + parent: 2 + - uid: 18002 + components: + - type: Transform + pos: -9.5,-56.5 + parent: 2 + - uid: 18003 + components: + - type: Transform + pos: -9.5,-57.5 + parent: 2 + - uid: 18004 + components: + - type: Transform + pos: -21.5,-61.5 + parent: 2 + - uid: 18005 + components: + - type: Transform + pos: -22.5,-61.5 + parent: 2 + - uid: 18006 + components: + - type: Transform + pos: -23.5,-61.5 + parent: 2 + - uid: 18007 + components: + - type: Transform + pos: -24.5,-61.5 + parent: 2 + - uid: 18008 + components: + - type: Transform + pos: -25.5,-61.5 + parent: 2 + - uid: 18009 + components: + - type: Transform + pos: -26.5,-61.5 + parent: 2 + - uid: 18010 + components: + - type: Transform + pos: -27.5,-61.5 + parent: 2 + - uid: 18011 + components: + - type: Transform + pos: -28.5,-61.5 + parent: 2 + - uid: 18012 + components: + - type: Transform + pos: -29.5,-61.5 + parent: 2 + - uid: 18013 + components: + - type: Transform + pos: -32.5,-59.5 + parent: 2 + - uid: 18014 + components: + - type: Transform + pos: -37.5,-51.5 + parent: 2 + - uid: 18015 + components: + - type: Transform + pos: -36.5,-51.5 + parent: 2 + - uid: 18016 + components: + - type: Transform + pos: 15.5,-44.5 + parent: 2 + - uid: 18017 + components: + - type: Transform + pos: -41.5,-62.5 + parent: 2 + - uid: 18018 + components: + - type: Transform + pos: -39.5,-63.5 + parent: 2 + - uid: 18019 + components: + - type: Transform + pos: -40.5,-62.5 + parent: 2 + - uid: 18020 + components: + - type: Transform + pos: -39.5,-62.5 + parent: 2 + - uid: 18021 + components: + - type: Transform + pos: -28.5,-63.5 + parent: 2 + - uid: 18022 + components: + - type: Transform + pos: -30.5,-67.5 + parent: 2 + - uid: 18023 + components: + - type: Transform + pos: -30.5,-68.5 + parent: 2 + - uid: 18024 + components: + - type: Transform + pos: -30.5,-70.5 + parent: 2 + - uid: 18025 + components: + - type: Transform + pos: -30.5,-69.5 + parent: 2 + - uid: 18026 + components: + - type: Transform + pos: -32.5,-67.5 + parent: 2 + - uid: 18027 + components: + - type: Transform + pos: -32.5,-68.5 + parent: 2 + - uid: 18028 + components: + - type: Transform + pos: -32.5,-70.5 + parent: 2 + - uid: 18029 + components: + - type: Transform + pos: -32.5,-69.5 + parent: 2 + - uid: 18030 + components: + - type: Transform + pos: -33.5,-73.5 + parent: 2 + - uid: 18031 + components: + - type: Transform + pos: -33.5,-74.5 + parent: 2 + - uid: 18032 + components: + - type: Transform + pos: -33.5,-75.5 + parent: 2 + - uid: 18033 + components: + - type: Transform + pos: -32.5,-75.5 + parent: 2 + - uid: 18034 + components: + - type: Transform + pos: -31.5,-75.5 + parent: 2 + - uid: 18035 + components: + - type: Transform + pos: -30.5,-75.5 + parent: 2 + - uid: 18036 + components: + - type: Transform + pos: -27.5,-74.5 + parent: 2 + - uid: 18037 + components: + - type: Transform + pos: -26.5,-74.5 + parent: 2 + - uid: 18038 + components: + - type: Transform + pos: -25.5,-74.5 + parent: 2 + - uid: 18039 + components: + - type: Transform + pos: -24.5,-74.5 + parent: 2 + - uid: 18040 + components: + - type: Transform + pos: -23.5,-74.5 + parent: 2 + - uid: 18041 + components: + - type: Transform + pos: -22.5,-74.5 + parent: 2 + - uid: 18042 + components: + - type: Transform + pos: -0.5,-65.5 + parent: 2 + - uid: 18043 + components: + - type: Transform + pos: -1.5,-65.5 + parent: 2 + - uid: 18044 + components: + - type: Transform + pos: -2.5,-65.5 + parent: 2 + - uid: 18045 + components: + - type: Transform + pos: -4.5,-65.5 + parent: 2 + - uid: 18046 + components: + - type: Transform + pos: -5.5,-65.5 + parent: 2 + - uid: 18047 + components: + - type: Transform + pos: -7.5,-65.5 + parent: 2 + - uid: 18048 + components: + - type: Transform + pos: -8.5,-65.5 + parent: 2 + - uid: 18049 + components: + - type: Transform + pos: 4.5,-64.5 + parent: 2 + - uid: 18050 + components: + - type: Transform + pos: 3.5,-64.5 + parent: 2 + - uid: 18051 + components: + - type: Transform + pos: 19.5,-73.5 + parent: 2 + - uid: 18052 + components: + - type: Transform + pos: -8.5,-70.5 + parent: 2 + - uid: 18053 + components: + - type: Transform + pos: -15.5,-74.5 + parent: 2 + - uid: 18054 + components: + - type: Transform + pos: -16.5,-74.5 + parent: 2 + - uid: 18055 + components: + - type: Transform + pos: -8.5,-71.5 + parent: 2 + - uid: 18056 + components: + - type: Transform + pos: 0.5,-102.5 + parent: 2 + - uid: 18057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-6.5 + parent: 2 + - uid: 18058 + components: + - type: Transform + pos: -0.5,-102.5 + parent: 2 + - uid: 18059 + components: + - type: Transform + pos: 7.5,-71.5 + parent: 2 + - uid: 18060 + components: + - type: Transform + pos: 7.5,-70.5 + parent: 2 + - uid: 18061 + components: + - type: Transform + pos: -8.5,-100.5 + parent: 2 + - uid: 18062 + components: + - type: Transform + pos: -8.5,-101.5 + parent: 2 + - uid: 18063 + components: + - type: Transform + pos: 0.5,-100.5 + parent: 2 + - uid: 18064 + components: + - type: Transform + pos: -21.5,-44.5 + parent: 2 + - uid: 18066 + components: + - type: Transform + pos: -21.5,-46.5 + parent: 2 + - uid: 18067 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 2 + - uid: 18068 + components: + - type: Transform + pos: -22.5,-40.5 + parent: 2 + - uid: 18069 + components: + - type: Transform + pos: -26.5,-42.5 + parent: 2 + - uid: 18070 + components: + - type: Transform + pos: -27.5,-42.5 + parent: 2 + - uid: 18071 + components: + - type: Transform + pos: -28.5,-42.5 + parent: 2 + - uid: 18073 + components: + - type: Transform + pos: -36.5,-42.5 + parent: 2 + - uid: 18074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 2 + - uid: 18075 + components: + - type: Transform + pos: -37.5,-42.5 + parent: 2 + - uid: 18076 + components: + - type: Transform + pos: 15.5,-40.5 + parent: 2 + - uid: 18077 + components: + - type: Transform + pos: 15.5,-42.5 + parent: 2 + - uid: 18078 + components: + - type: Transform + pos: 15.5,-45.5 + parent: 2 + - uid: 18079 + components: + - type: Transform + pos: 23.5,-46.5 + parent: 2 + - uid: 18080 + components: + - type: Transform + pos: 23.5,-47.5 + parent: 2 + - uid: 18081 + components: + - type: Transform + pos: 23.5,-48.5 + parent: 2 + - uid: 18082 + components: + - type: Transform + pos: 23.5,-50.5 + parent: 2 + - uid: 18083 + components: + - type: Transform + pos: 23.5,-51.5 + parent: 2 + - uid: 18084 + components: + - type: Transform + pos: 23.5,-52.5 + parent: 2 + - uid: 18085 + components: + - type: Transform + pos: 23.5,-54.5 + parent: 2 + - uid: 18086 + components: + - type: Transform + pos: 23.5,-55.5 + parent: 2 + - uid: 18087 + components: + - type: Transform + pos: 23.5,-56.5 + parent: 2 + - uid: 18088 + components: + - type: Transform + pos: 21.5,-61.5 + parent: 2 + - uid: 18089 + components: + - type: Transform + pos: 20.5,-61.5 + parent: 2 + - uid: 18090 + components: + - type: Transform + pos: 18.5,-61.5 + parent: 2 + - uid: 18091 + components: + - type: Transform + pos: 17.5,-61.5 + parent: 2 + - uid: 18092 + components: + - type: Transform + pos: 16.5,-61.5 + parent: 2 + - uid: 18093 + components: + - type: Transform + pos: 14.5,-61.5 + parent: 2 + - uid: 18094 + components: + - type: Transform + pos: 13.5,-61.5 + parent: 2 + - uid: 18095 + components: + - type: Transform + pos: 30.5,-81.5 + parent: 2 + - uid: 18096 + components: + - type: Transform + pos: 30.5,-80.5 + parent: 2 + - uid: 18097 + components: + - type: Transform + pos: 30.5,-79.5 + parent: 2 + - uid: 18098 + components: + - type: Transform + pos: 30.5,-78.5 + parent: 2 + - uid: 18099 + components: + - type: Transform + pos: 30.5,-77.5 + parent: 2 + - uid: 18100 + components: + - type: Transform + pos: 29.5,-77.5 + parent: 2 + - uid: 18101 + components: + - type: Transform + pos: 28.5,-77.5 + parent: 2 + - uid: 18102 + components: + - type: Transform + pos: 27.5,-77.5 + parent: 2 + - uid: 18103 + components: + - type: Transform + pos: 26.5,-77.5 + parent: 2 + - uid: 18104 + components: + - type: Transform + pos: 26.5,-78.5 + parent: 2 + - uid: 18105 + components: + - type: Transform + pos: 26.5,-79.5 + parent: 2 + - uid: 18106 + components: + - type: Transform + pos: 26.5,-81.5 + parent: 2 + - uid: 18107 + components: + - type: Transform + pos: 25.5,-79.5 + parent: 2 + - uid: 18108 + components: + - type: Transform + pos: 24.5,-79.5 + parent: 2 + - uid: 18109 + components: + - type: Transform + pos: 24.5,-81.5 + parent: 2 + - uid: 18110 + components: + - type: Transform + pos: 29.5,-95.5 + parent: 2 + - uid: 18111 + components: + - type: Transform + pos: 29.5,-96.5 + parent: 2 + - uid: 18112 + components: + - type: Transform + pos: 29.5,-97.5 + parent: 2 + - uid: 18113 + components: + - type: Transform + pos: 29.5,-98.5 + parent: 2 + - uid: 18114 + components: + - type: Transform + pos: 29.5,-99.5 + parent: 2 + - uid: 18115 + components: + - type: Transform + pos: 29.5,-100.5 + parent: 2 + - uid: 18116 + components: + - type: Transform + pos: 29.5,-101.5 + parent: 2 + - uid: 18117 + components: + - type: Transform + pos: 29.5,-102.5 + parent: 2 + - uid: 18118 + components: + - type: Transform + pos: 29.5,-103.5 + parent: 2 + - uid: 18119 + components: + - type: Transform + pos: 33.5,-107.5 + parent: 2 + - uid: 18120 + components: + - type: Transform + pos: 33.5,-108.5 + parent: 2 + - uid: 18121 + components: + - type: Transform + pos: 27.5,-103.5 + parent: 2 + - uid: 18122 + components: + - type: Transform + pos: 27.5,-102.5 + parent: 2 + - uid: 18123 + components: + - type: Transform + pos: 27.5,-101.5 + parent: 2 + - uid: 18124 + components: + - type: Transform + pos: 27.5,-100.5 + parent: 2 + - uid: 18125 + components: + - type: Transform + pos: 27.5,-99.5 + parent: 2 + - uid: 18126 + components: + - type: Transform + pos: 27.5,-98.5 + parent: 2 + - uid: 18127 + components: + - type: Transform + pos: 27.5,-97.5 + parent: 2 + - uid: 18128 + components: + - type: Transform + pos: 27.5,-96.5 + parent: 2 + - uid: 18129 + components: + - type: Transform + pos: 27.5,-95.5 + parent: 2 + - uid: 18130 + components: + - type: Transform + pos: 23.5,-108.5 + parent: 2 + - uid: 18131 + components: + - type: Transform + pos: 23.5,-107.5 + parent: 2 + - uid: 18132 + components: + - type: Transform + pos: 30.5,-107.5 + parent: 2 + - uid: 18133 + components: + - type: Transform + pos: 29.5,-107.5 + parent: 2 + - uid: 18134 + components: + - type: Transform + pos: 27.5,-107.5 + parent: 2 + - uid: 18135 + components: + - type: Transform + pos: 26.5,-107.5 + parent: 2 + - uid: 18136 + components: + - type: Transform + pos: 1.5,-102.5 + parent: 2 + - uid: 18137 + components: + - type: Transform + pos: -8.5,-102.5 + parent: 2 + - uid: 18138 + components: + - type: Transform + pos: -0.5,-100.5 + parent: 2 + - uid: 18139 + components: + - type: Transform + pos: 12.5,-85.5 + parent: 2 + - uid: 18140 + components: + - type: Transform + pos: 12.5,-86.5 + parent: 2 + - uid: 18141 + components: + - type: Transform + pos: 12.5,-87.5 + parent: 2 + - uid: 18142 + components: + - type: Transform + pos: 12.5,-88.5 + parent: 2 + - uid: 18143 + components: + - type: Transform + pos: 11.5,-88.5 + parent: 2 + - uid: 18144 + components: + - type: Transform + pos: 10.5,-88.5 + parent: 2 + - uid: 18145 + components: + - type: Transform + pos: 13.5,-88.5 + parent: 2 + - uid: 18146 + components: + - type: Transform + pos: 14.5,-88.5 + parent: 2 + - uid: 18147 + components: + - type: Transform + pos: 16.5,-88.5 + parent: 2 + - uid: 18148 + components: + - type: Transform + pos: 20.5,-88.5 + parent: 2 + - uid: 18149 + components: + - type: Transform + pos: -1.5,-100.5 + parent: 2 + - uid: 18150 + components: + - type: Transform + pos: -7.5,-102.5 + parent: 2 + - uid: 18151 + components: + - type: Transform + pos: 2.5,-102.5 + parent: 2 + - uid: 18153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-36.5 + parent: 2 + - uid: 18154 + components: + - type: Transform + pos: 4.5,-102.5 + parent: 2 + - uid: 18155 + components: + - type: Transform + pos: -5.5,-102.5 + parent: 2 + - uid: 18156 + components: + - type: Transform + pos: -3.5,-100.5 + parent: 2 + - uid: 18157 + components: + - type: Transform + pos: -2.5,-100.5 + parent: 2 + - uid: 18158 + components: + - type: Transform + pos: -6.5,-102.5 + parent: 2 + - uid: 18159 + components: + - type: Transform + pos: 3.5,-102.5 + parent: 2 + - uid: 18160 + components: + - type: Transform + pos: -41.5,-25.5 + parent: 2 + - uid: 18161 + components: + - type: Transform + pos: 10.5,-71.5 + parent: 2 + - uid: 18162 + components: + - type: Transform + pos: -11.5,-86.5 + parent: 2 + - uid: 18163 + components: + - type: Transform + pos: -12.5,-86.5 + parent: 2 + - uid: 18164 + components: + - type: Transform + pos: -13.5,-86.5 + parent: 2 + - uid: 18165 + components: + - type: Transform + pos: -14.5,-86.5 + parent: 2 + - uid: 18166 + components: + - type: Transform + pos: -15.5,-86.5 + parent: 2 + - uid: 18167 + components: + - type: Transform + pos: -16.5,-86.5 + parent: 2 + - uid: 18168 + components: + - type: Transform + pos: -17.5,-86.5 + parent: 2 + - uid: 18169 + components: + - type: Transform + pos: -17.5,-87.5 + parent: 2 + - uid: 18170 + components: + - type: Transform + pos: -17.5,-88.5 + parent: 2 + - uid: 18171 + components: + - type: Transform + pos: -16.5,-88.5 + parent: 2 + - uid: 18172 + components: + - type: Transform + pos: -15.5,-88.5 + parent: 2 + - uid: 18173 + components: + - type: Transform + pos: -14.5,-88.5 + parent: 2 + - uid: 18174 + components: + - type: Transform + pos: -13.5,-88.5 + parent: 2 + - uid: 18175 + components: + - type: Transform + pos: -12.5,-88.5 + parent: 2 + - uid: 18176 + components: + - type: Transform + pos: -11.5,-88.5 + parent: 2 + - uid: 18177 + components: + - type: Transform + pos: -20.5,-89.5 + parent: 2 + - uid: 18178 + components: + - type: Transform + pos: -21.5,-89.5 + parent: 2 + - uid: 18179 + components: + - type: Transform + pos: -21.5,-88.5 + parent: 2 + - uid: 18180 + components: + - type: Transform + pos: -22.5,-88.5 + parent: 2 + - uid: 18181 + components: + - type: Transform + pos: -22.5,-87.5 + parent: 2 + - uid: 18182 + components: + - type: Transform + pos: -19.5,-76.5 + parent: 2 + - uid: 18183 + components: + - type: Transform + pos: -19.5,-77.5 + parent: 2 + - uid: 18184 + components: + - type: Transform + pos: -19.5,-78.5 + parent: 2 + - uid: 18185 + components: + - type: Transform + pos: -19.5,-79.5 + parent: 2 + - uid: 18186 + components: + - type: Transform + pos: -19.5,-80.5 + parent: 2 + - uid: 18187 + components: + - type: Transform + pos: -19.5,-81.5 + parent: 2 + - uid: 18188 + components: + - type: Transform + pos: -19.5,-82.5 + parent: 2 + - uid: 18189 + components: + - type: Transform + pos: -19.5,-83.5 + parent: 2 + - uid: 18190 + components: + - type: Transform + pos: -19.5,-84.5 + parent: 2 + - uid: 18191 + components: + - type: Transform + pos: -20.5,-84.5 + parent: 2 + - uid: 18192 + components: + - type: Transform + pos: -21.5,-84.5 + parent: 2 + - uid: 18193 + components: + - type: Transform + pos: -21.5,-83.5 + parent: 2 + - uid: 18194 + components: + - type: Transform + pos: -21.5,-82.5 + parent: 2 + - uid: 18195 + components: + - type: Transform + pos: -21.5,-81.5 + parent: 2 + - uid: 18196 + components: + - type: Transform + pos: -21.5,-80.5 + parent: 2 + - uid: 18197 + components: + - type: Transform + pos: -21.5,-79.5 + parent: 2 + - uid: 18198 + components: + - type: Transform + pos: -21.5,-78.5 + parent: 2 + - uid: 18199 + components: + - type: Transform + pos: -21.5,-77.5 + parent: 2 + - uid: 18200 + components: + - type: Transform + pos: -21.5,-76.5 + parent: 2 + - uid: 18201 + components: + - type: Transform + pos: -20.5,-76.5 + parent: 2 + - uid: 18202 + components: + - type: Transform + pos: 7.5,-102.5 + parent: 2 + - uid: 18203 + components: + - type: Transform + pos: -3.5,-102.5 + parent: 2 + - uid: 18204 + components: + - type: Transform + pos: -5.5,-68.5 + parent: 2 + - uid: 18205 + components: + - type: Transform + pos: -5.5,-100.5 + parent: 2 + - uid: 18206 + components: + - type: Transform + pos: -50.5,-69.5 + parent: 2 + - uid: 18207 + components: + - type: Transform + pos: -49.5,-69.5 + parent: 2 + - uid: 18208 + components: + - type: Transform + pos: -42.5,-53.5 + parent: 2 + - uid: 18209 + components: + - type: Transform + pos: -43.5,-53.5 + parent: 2 + - uid: 18210 + components: + - type: Transform + pos: -44.5,-53.5 + parent: 2 + - uid: 18211 + components: + - type: Transform + pos: -45.5,-53.5 + parent: 2 + - uid: 18212 + components: + - type: Transform + pos: -46.5,-53.5 + parent: 2 + - uid: 18213 + components: + - type: Transform + pos: -48.5,-53.5 + parent: 2 + - uid: 18214 + components: + - type: Transform + pos: -49.5,-53.5 + parent: 2 + - uid: 18215 + components: + - type: Transform + pos: -50.5,-53.5 + parent: 2 + - uid: 18216 + components: + - type: Transform + pos: -51.5,-53.5 + parent: 2 + - uid: 18217 + components: + - type: Transform + pos: -52.5,-53.5 + parent: 2 + - uid: 18218 + components: + - type: Transform + pos: -53.5,-53.5 + parent: 2 + - uid: 18219 + components: + - type: Transform + pos: -54.5,-53.5 + parent: 2 + - uid: 18220 + components: + - type: Transform + pos: -55.5,-53.5 + parent: 2 + - uid: 18221 + components: + - type: Transform + pos: -56.5,-53.5 + parent: 2 + - uid: 18222 + components: + - type: Transform + pos: -56.5,-54.5 + parent: 2 + - uid: 18223 + components: + - type: Transform + pos: -56.5,-55.5 + parent: 2 + - uid: 18224 + components: + - type: Transform + pos: -56.5,-56.5 + parent: 2 + - uid: 18225 + components: + - type: Transform + pos: -56.5,-57.5 + parent: 2 + - uid: 18226 + components: + - type: Transform + pos: -57.5,-59.5 + parent: 2 + - uid: 18227 + components: + - type: Transform + pos: -58.5,-59.5 + parent: 2 + - uid: 18228 + components: + - type: Transform + pos: -59.5,-59.5 + parent: 2 + - uid: 18229 + components: + - type: Transform + pos: -59.5,-63.5 + parent: 2 + - uid: 18230 + components: + - type: Transform + pos: -59.5,-62.5 + parent: 2 + - uid: 18231 + components: + - type: Transform + pos: -59.5,-61.5 + parent: 2 + - uid: 18232 + components: + - type: Transform + pos: -59.5,-60.5 + parent: 2 + - uid: 18233 + components: + - type: Transform + pos: -58.5,-63.5 + parent: 2 + - uid: 18234 + components: + - type: Transform + pos: -57.5,-63.5 + parent: 2 + - uid: 18235 + components: + - type: Transform + pos: -56.5,-65.5 + parent: 2 + - uid: 18236 + components: + - type: Transform + pos: -56.5,-66.5 + parent: 2 + - uid: 18237 + components: + - type: Transform + pos: -56.5,-68.5 + parent: 2 + - uid: 18238 + components: + - type: Transform + pos: -56.5,-69.5 + parent: 2 + - uid: 18239 + components: + - type: Transform + pos: -55.5,-69.5 + parent: 2 + - uid: 18240 + components: + - type: Transform + pos: -54.5,-69.5 + parent: 2 + - uid: 18241 + components: + - type: Transform + pos: -53.5,-69.5 + parent: 2 + - uid: 18242 + components: + - type: Transform + pos: -52.5,-69.5 + parent: 2 + - uid: 18243 + components: + - type: Transform + pos: -48.5,-69.5 + parent: 2 + - uid: 18244 + components: + - type: Transform + pos: -47.5,-69.5 + parent: 2 + - uid: 18245 + components: + - type: Transform + pos: -46.5,-69.5 + parent: 2 + - uid: 18246 + components: + - type: Transform + pos: -45.5,-69.5 + parent: 2 + - uid: 18247 + components: + - type: Transform + pos: -44.5,-69.5 + parent: 2 + - uid: 18248 + components: + - type: Transform + pos: -43.5,-69.5 + parent: 2 + - uid: 18249 + components: + - type: Transform + pos: -42.5,-69.5 + parent: 2 + - uid: 18250 + components: + - type: Transform + pos: -42.5,-68.5 + parent: 2 + - uid: 18251 + components: + - type: Transform + pos: -42.5,-67.5 + parent: 2 + - uid: 18252 + components: + - type: Transform + pos: -42.5,-55.5 + parent: 2 + - uid: 18253 + components: + - type: Transform + pos: -42.5,-54.5 + parent: 2 + - uid: 18254 + components: + - type: Transform + pos: -47.5,43.5 + parent: 2 + - uid: 18255 + components: + - type: Transform + pos: -48.5,43.5 + parent: 2 + - uid: 18256 + components: + - type: Transform + pos: -49.5,43.5 + parent: 2 + - uid: 18257 + components: + - type: Transform + pos: -50.5,43.5 + parent: 2 + - uid: 18258 + components: + - type: Transform + pos: -51.5,43.5 + parent: 2 + - uid: 18259 + components: + - type: Transform + pos: -51.5,42.5 + parent: 2 + - uid: 18260 + components: + - type: Transform + pos: -51.5,41.5 + parent: 2 + - uid: 18261 + components: + - type: Transform + pos: -47.5,41.5 + parent: 2 + - uid: 18262 + components: + - type: Transform + pos: -45.5,40.5 + parent: 2 + - uid: 18263 + components: + - type: Transform + pos: -44.5,40.5 + parent: 2 + - uid: 18264 + components: + - type: Transform + pos: -43.5,40.5 + parent: 2 + - uid: 18265 + components: + - type: Transform + pos: -42.5,40.5 + parent: 2 + - uid: 18266 + components: + - type: Transform + pos: -41.5,40.5 + parent: 2 + - uid: 18267 + components: + - type: Transform + pos: -41.5,39.5 + parent: 2 + - uid: 18268 + components: + - type: Transform + pos: -41.5,38.5 + parent: 2 + - uid: 18269 + components: + - type: Transform + pos: -41.5,37.5 + parent: 2 + - uid: 18270 + components: + - type: Transform + pos: -41.5,36.5 + parent: 2 + - uid: 18271 + components: + - type: Transform + pos: -41.5,34.5 + parent: 2 + - uid: 18272 + components: + - type: Transform + pos: -41.5,33.5 + parent: 2 + - uid: 18273 + components: + - type: Transform + pos: -41.5,32.5 + parent: 2 + - uid: 18274 + components: + - type: Transform + pos: -41.5,31.5 + parent: 2 + - uid: 18275 + components: + - type: Transform + pos: -41.5,30.5 + parent: 2 + - uid: 18276 + components: + - type: Transform + pos: -41.5,29.5 + parent: 2 + - uid: 18277 + components: + - type: Transform + pos: -41.5,28.5 + parent: 2 + - uid: 18278 + components: + - type: Transform + pos: -41.5,27.5 + parent: 2 + - uid: 18279 + components: + - type: Transform + pos: -41.5,26.5 + parent: 2 + - uid: 18280 + components: + - type: Transform + pos: -42.5,26.5 + parent: 2 + - uid: 18281 + components: + - type: Transform + pos: -43.5,26.5 + parent: 2 + - uid: 18282 + components: + - type: Transform + pos: -55.5,26.5 + parent: 2 + - uid: 18283 + components: + - type: Transform + pos: -56.5,26.5 + parent: 2 + - uid: 18284 + components: + - type: Transform + pos: -57.5,26.5 + parent: 2 + - uid: 18285 + components: + - type: Transform + pos: -57.5,27.5 + parent: 2 + - uid: 18286 + components: + - type: Transform + pos: -57.5,29.5 + parent: 2 + - uid: 18287 + components: + - type: Transform + pos: -57.5,30.5 + parent: 2 + - uid: 18288 + components: + - type: Transform + pos: -57.5,31.5 + parent: 2 + - uid: 18289 + components: + - type: Transform + pos: -57.5,32.5 + parent: 2 + - uid: 18290 + components: + - type: Transform + pos: -57.5,33.5 + parent: 2 + - uid: 18291 + components: + - type: Transform + pos: -57.5,34.5 + parent: 2 + - uid: 18292 + components: + - type: Transform + pos: -57.5,35.5 + parent: 2 + - uid: 18293 + components: + - type: Transform + pos: -57.5,36.5 + parent: 2 + - uid: 18294 + components: + - type: Transform + pos: -57.5,37.5 + parent: 2 + - uid: 18295 + components: + - type: Transform + pos: -57.5,38.5 + parent: 2 + - uid: 18296 + components: + - type: Transform + pos: -57.5,39.5 + parent: 2 + - uid: 18297 + components: + - type: Transform + pos: -57.5,40.5 + parent: 2 + - uid: 18298 + components: + - type: Transform + pos: -56.5,40.5 + parent: 2 + - uid: 18299 + components: + - type: Transform + pos: -55.5,40.5 + parent: 2 + - uid: 18300 + components: + - type: Transform + pos: -54.5,40.5 + parent: 2 + - uid: 18301 + components: + - type: Transform + pos: -53.5,40.5 + parent: 2 + - uid: 18302 + components: + - type: Transform + pos: 4.5,42.5 + parent: 2 + - uid: 18303 + components: + - type: Transform + pos: 3.5,42.5 + parent: 2 + - uid: 18304 + components: + - type: Transform + pos: 2.5,42.5 + parent: 2 + - uid: 18305 + components: + - type: Transform + pos: 1.5,42.5 + parent: 2 + - uid: 18306 + components: + - type: Transform + pos: 0.5,42.5 + parent: 2 + - uid: 18307 + components: + - type: Transform + pos: -0.5,42.5 + parent: 2 + - uid: 18308 + components: + - type: Transform + pos: -1.5,42.5 + parent: 2 + - uid: 18309 + components: + - type: Transform + pos: -2.5,42.5 + parent: 2 + - uid: 18310 + components: + - type: Transform + pos: 21.5,42.5 + parent: 2 + - uid: 18311 + components: + - type: Transform + pos: 20.5,34.5 + parent: 2 + - uid: 18312 + components: + - type: Transform + pos: 67.5,-65.5 + parent: 2 + - uid: 18313 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 + - uid: 18314 + components: + - type: Transform + pos: 55.5,26.5 + parent: 2 + - uid: 18315 + components: + - type: Transform + pos: 54.5,26.5 + parent: 2 + - uid: 18316 + components: + - type: Transform + pos: 53.5,26.5 + parent: 2 + - uid: 18317 + components: + - type: Transform + pos: 55.5,29.5 + parent: 2 + - uid: 18318 + components: + - type: Transform + pos: 55.5,30.5 + parent: 2 + - uid: 18319 + components: + - type: Transform + pos: 55.5,31.5 + parent: 2 + - uid: 18320 + components: + - type: Transform + pos: 55.5,32.5 + parent: 2 + - uid: 18321 + components: + - type: Transform + pos: 55.5,33.5 + parent: 2 + - uid: 18322 + components: + - type: Transform + pos: 55.5,34.5 + parent: 2 + - uid: 18323 + components: + - type: Transform + pos: 55.5,35.5 + parent: 2 + - uid: 18324 + components: + - type: Transform + pos: 55.5,36.5 + parent: 2 + - uid: 18325 + components: + - type: Transform + pos: 55.5,37.5 + parent: 2 + - uid: 18326 + components: + - type: Transform + pos: 55.5,38.5 + parent: 2 + - uid: 18327 + components: + - type: Transform + pos: 55.5,39.5 + parent: 2 + - uid: 18328 + components: + - type: Transform + pos: 55.5,40.5 + parent: 2 + - uid: 18329 + components: + - type: Transform + pos: 54.5,40.5 + parent: 2 + - uid: 18330 + components: + - type: Transform + pos: 53.5,40.5 + parent: 2 + - uid: 18331 + components: + - type: Transform + pos: 52.5,40.5 + parent: 2 + - uid: 18332 + components: + - type: Transform + pos: 51.5,40.5 + parent: 2 + - uid: 18333 + components: + - type: Transform + pos: 49.5,41.5 + parent: 2 + - uid: 18334 + components: + - type: Transform + pos: 49.5,43.5 + parent: 2 + - uid: 18335 + components: + - type: Transform + pos: 48.5,43.5 + parent: 2 + - uid: 18336 + components: + - type: Transform + pos: 47.5,43.5 + parent: 2 + - uid: 18337 + components: + - type: Transform + pos: 46.5,43.5 + parent: 2 + - uid: 18338 + components: + - type: Transform + pos: 45.5,43.5 + parent: 2 + - uid: 18339 + components: + - type: Transform + pos: 45.5,42.5 + parent: 2 + - uid: 18340 + components: + - type: Transform + pos: 45.5,41.5 + parent: 2 + - uid: 18341 + components: + - type: Transform + pos: 43.5,40.5 + parent: 2 + - uid: 18342 + components: + - type: Transform + pos: 42.5,40.5 + parent: 2 + - uid: 18343 + components: + - type: Transform + pos: 41.5,40.5 + parent: 2 + - uid: 18344 + components: + - type: Transform + pos: 40.5,40.5 + parent: 2 + - uid: 18345 + components: + - type: Transform + pos: 39.5,40.5 + parent: 2 + - uid: 18346 + components: + - type: Transform + pos: 39.5,38.5 + parent: 2 + - uid: 18347 + components: + - type: Transform + pos: 39.5,37.5 + parent: 2 + - uid: 18348 + components: + - type: Transform + pos: 39.5,36.5 + parent: 2 + - uid: 18349 + components: + - type: Transform + pos: 39.5,35.5 + parent: 2 + - uid: 18350 + components: + - type: Transform + pos: 39.5,34.5 + parent: 2 + - uid: 18351 + components: + - type: Transform + pos: 39.5,33.5 + parent: 2 + - uid: 18352 + components: + - type: Transform + pos: 39.5,32.5 + parent: 2 + - uid: 18353 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - uid: 18354 + components: + - type: Transform + pos: 39.5,30.5 + parent: 2 + - uid: 18355 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - uid: 18356 + components: + - type: Transform + pos: 39.5,28.5 + parent: 2 + - uid: 18357 + components: + - type: Transform + pos: 39.5,27.5 + parent: 2 + - uid: 18358 + components: + - type: Transform + pos: 39.5,26.5 + parent: 2 + - uid: 18359 + components: + - type: Transform + pos: 40.5,26.5 + parent: 2 + - uid: 18360 + components: + - type: Transform + pos: 41.5,26.5 + parent: 2 + - uid: 18361 + components: + - type: Transform + pos: 82.5,-67.5 + parent: 2 + - uid: 18362 + components: + - type: Transform + pos: 82.5,-68.5 + parent: 2 + - uid: 18363 + components: + - type: Transform + pos: 89.5,-85.5 + parent: 2 + - uid: 18364 + components: + - type: Transform + pos: 89.5,-84.5 + parent: 2 + - uid: 18365 + components: + - type: Transform + pos: 89.5,-83.5 + parent: 2 + - uid: 18366 + components: + - type: Transform + pos: 89.5,-82.5 + parent: 2 + - uid: 18367 + components: + - type: Transform + pos: 89.5,-81.5 + parent: 2 + - uid: 18368 + components: + - type: Transform + pos: 89.5,-80.5 + parent: 2 + - uid: 18369 + components: + - type: Transform + pos: 89.5,-79.5 + parent: 2 + - uid: 18370 + components: + - type: Transform + pos: 89.5,-78.5 + parent: 2 + - uid: 18371 + components: + - type: Transform + pos: 89.5,-77.5 + parent: 2 + - uid: 18372 + components: + - type: Transform + pos: 89.5,-76.5 + parent: 2 + - uid: 18373 + components: + - type: Transform + pos: 89.5,-75.5 + parent: 2 + - uid: 18374 + components: + - type: Transform + pos: 89.5,-74.5 + parent: 2 + - uid: 18375 + components: + - type: Transform + pos: 89.5,-73.5 + parent: 2 + - uid: 18376 + components: + - type: Transform + pos: 89.5,-72.5 + parent: 2 + - uid: 18377 + components: + - type: Transform + pos: 89.5,-71.5 + parent: 2 + - uid: 18378 + components: + - type: Transform + pos: 88.5,-71.5 + parent: 2 + - uid: 18379 + components: + - type: Transform + pos: 75.5,-71.5 + parent: 2 + - uid: 18380 + components: + - type: Transform + pos: 74.5,-71.5 + parent: 2 + - uid: 18381 + components: + - type: Transform + pos: 73.5,-71.5 + parent: 2 + - uid: 18382 + components: + - type: Transform + pos: 73.5,-72.5 + parent: 2 + - uid: 18383 + components: + - type: Transform + pos: 73.5,-73.5 + parent: 2 + - uid: 18384 + components: + - type: Transform + pos: 73.5,-74.5 + parent: 2 + - uid: 18385 + components: + - type: Transform + pos: 73.5,-75.5 + parent: 2 + - uid: 18386 + components: + - type: Transform + pos: 73.5,-76.5 + parent: 2 + - uid: 18387 + components: + - type: Transform + pos: 73.5,-77.5 + parent: 2 + - uid: 18388 + components: + - type: Transform + pos: 73.5,-78.5 + parent: 2 + - uid: 18389 + components: + - type: Transform + pos: 73.5,-79.5 + parent: 2 + - uid: 18390 + components: + - type: Transform + pos: 73.5,-81.5 + parent: 2 + - uid: 18391 + components: + - type: Transform + pos: 73.5,-82.5 + parent: 2 + - uid: 18392 + components: + - type: Transform + pos: 73.5,-83.5 + parent: 2 + - uid: 18393 + components: + - type: Transform + pos: 73.5,-84.5 + parent: 2 + - uid: 18394 + components: + - type: Transform + pos: 73.5,-85.5 + parent: 2 + - uid: 18395 + components: + - type: Transform + pos: 74.5,-85.5 + parent: 2 + - uid: 18396 + components: + - type: Transform + pos: 75.5,-85.5 + parent: 2 + - uid: 18397 + components: + - type: Transform + pos: 76.5,-85.5 + parent: 2 + - uid: 18398 + components: + - type: Transform + pos: 77.5,-85.5 + parent: 2 + - uid: 18399 + components: + - type: Transform + pos: 79.5,-86.5 + parent: 2 + - uid: 18400 + components: + - type: Transform + pos: 79.5,-87.5 + parent: 2 + - uid: 18401 + components: + - type: Transform + pos: 79.5,-88.5 + parent: 2 + - uid: 18402 + components: + - type: Transform + pos: 80.5,-88.5 + parent: 2 + - uid: 18403 + components: + - type: Transform + pos: 81.5,-88.5 + parent: 2 + - uid: 18404 + components: + - type: Transform + pos: 82.5,-88.5 + parent: 2 + - uid: 18405 + components: + - type: Transform + pos: 83.5,-88.5 + parent: 2 + - uid: 18406 + components: + - type: Transform + pos: 83.5,-87.5 + parent: 2 + - uid: 18407 + components: + - type: Transform + pos: 83.5,-86.5 + parent: 2 + - uid: 18408 + components: + - type: Transform + pos: 87.5,-85.5 + parent: 2 + - uid: 18409 + components: + - type: Transform + pos: 86.5,-85.5 + parent: 2 + - uid: 18410 + components: + - type: Transform + pos: 85.5,-85.5 + parent: 2 + - uid: 18411 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + - uid: 18412 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 2 + - uid: 18413 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 2 + - uid: 18414 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 2 + - uid: 18415 + components: + - type: Transform + pos: 31.5,-22.5 + parent: 2 + - uid: 18416 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 2 + - uid: 18417 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 2 + - uid: 18418 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 18419 + components: + - type: Transform + pos: 27.5,1.5 + parent: 2 + - uid: 18420 + components: + - type: Transform + pos: -18.5,39.5 + parent: 2 + - uid: 18421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,44.5 + parent: 2 + - uid: 18422 + components: + - type: Transform + pos: -0.5,46.5 + parent: 2 + - uid: 18423 + components: + - type: Transform + pos: 0.5,46.5 + parent: 2 + - uid: 18424 + components: + - type: Transform + pos: 1.5,46.5 + parent: 2 + - uid: 18425 + components: + - type: Transform + pos: 2.5,46.5 + parent: 2 + - uid: 18426 + components: + - type: Transform + pos: 38.5,12.5 + parent: 2 + - uid: 18427 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 18428 + components: + - type: Transform + pos: 77.5,-27.5 + parent: 2 + - uid: 18429 + components: + - type: Transform + pos: -9.5,37.5 + parent: 2 + - uid: 18430 + components: + - type: Transform + pos: 7.5,42.5 + parent: 2 + - uid: 18431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,21.5 + parent: 2 + - uid: 18432 + components: + - type: Transform + pos: 3.5,29.5 + parent: 2 + - uid: 18433 + components: + - type: Transform + pos: -8.5,25.5 + parent: 2 + - uid: 18434 + components: + - type: Transform + pos: -6.5,25.5 + parent: 2 + - uid: 18435 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - uid: 18436 + components: + - type: Transform + pos: -2.5,25.5 + parent: 2 + - uid: 18437 + components: + - type: Transform + pos: -0.5,25.5 + parent: 2 + - uid: 18438 + components: + - type: Transform + pos: 2.5,25.5 + parent: 2 + - uid: 18439 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 18440 + components: + - type: Transform + pos: -10.5,25.5 + parent: 2 + - uid: 18441 + components: + - type: Transform + pos: -10.5,22.5 + parent: 2 + - uid: 18442 + components: + - type: Transform + pos: -9.5,22.5 + parent: 2 + - uid: 18443 + components: + - type: Transform + pos: -8.5,22.5 + parent: 2 + - uid: 18444 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 + - uid: 18445 + components: + - type: Transform + pos: -5.5,22.5 + parent: 2 + - uid: 18446 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - uid: 18447 + components: + - type: Transform + pos: -1.5,22.5 + parent: 2 + - uid: 18448 + components: + - type: Transform + pos: -0.5,22.5 + parent: 2 + - uid: 18449 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - uid: 18450 + components: + - type: Transform + pos: -2.5,22.5 + parent: 2 + - uid: 18451 + components: + - type: Transform + pos: -4.5,38.5 + parent: 2 + - uid: 18452 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 2 + - uid: 18453 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 2 + - uid: 18454 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 2 + - uid: 18455 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 2 + - uid: 18456 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 2 + - uid: 18457 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 2 + - uid: 18458 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 18459 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - uid: 18460 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 2 + - uid: 18461 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 2 + - uid: 18462 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 2 + - uid: 18463 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 2 + - uid: 18464 + components: + - type: Transform + pos: -4.5,-28.5 + parent: 2 + - uid: 18465 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 2 + - uid: 18466 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 2 + - uid: 18467 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 18468 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 2 + - uid: 18469 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 18470 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 18471 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 18472 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 18473 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 2 + - uid: 18474 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 18475 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 18476 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - uid: 18477 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 18478 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 + - uid: 18480 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 2 + - uid: 18481 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 2 + - uid: 18482 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 2 + - uid: 18484 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 + - uid: 18485 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 + - uid: 18486 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 18487 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 + - uid: 18488 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 18489 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 18490 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 18491 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 18492 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 18493 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 18494 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 18495 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 18496 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 18497 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - uid: 18498 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 18499 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - uid: 18500 + components: + - type: Transform + pos: 31.5,-48.5 + parent: 2 + - uid: 18501 + components: + - type: Transform + pos: 31.5,-47.5 + parent: 2 + - uid: 18502 + components: + - type: Transform + pos: 25.5,46.5 + parent: 2 + - uid: 18503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,43.5 + parent: 2 + - uid: 18504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,45.5 + parent: 2 + - uid: 18505 + components: + - type: Transform + pos: -21.5,39.5 + parent: 2 + - uid: 18506 + components: + - type: Transform + pos: -1.5,46.5 + parent: 2 + - uid: 18507 + components: + - type: Transform + pos: 21.5,40.5 + parent: 2 + - uid: 18508 + components: + - type: Transform + pos: 21.5,41.5 + parent: 2 + - uid: 18509 + components: + - type: Transform + pos: 25.5,42.5 + parent: 2 + - uid: 18510 + components: + - type: Transform + pos: 25.5,41.5 + parent: 2 + - uid: 18511 + components: + - type: Transform + pos: 25.5,40.5 + parent: 2 + - uid: 18512 + components: + - type: Transform + pos: 75.5,5.5 + parent: 2 + - uid: 18513 + components: + - type: Transform + pos: 1.5,44.5 + parent: 2 + - uid: 18514 + components: + - type: Transform + pos: 68.5,-0.5 + parent: 2 + - uid: 18515 + components: + - type: Transform + pos: 67.5,3.5 + parent: 2 + - uid: 18516 + components: + - type: Transform + pos: 67.5,1.5 + parent: 2 + - uid: 18517 + components: + - type: Transform + pos: 57.5,9.5 + parent: 2 + - uid: 18518 + components: + - type: Transform + pos: 55.5,14.5 + parent: 2 + - uid: 18519 + components: + - type: Transform + pos: -65.5,20.5 + parent: 2 + - uid: 18520 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 18521 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 + - uid: 18522 + components: + - type: Transform + pos: -57.5,2.5 + parent: 2 + - uid: 18523 + components: + - type: Transform + pos: -68.5,17.5 + parent: 2 + - uid: 18524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,7.5 + parent: 2 + - uid: 18525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,7.5 + parent: 2 + - uid: 18526 + components: + - type: Transform + pos: -6.5,38.5 + parent: 2 + - uid: 18527 + components: + - type: Transform + pos: -55.5,14.5 + parent: 2 + - uid: 18528 + components: + - type: Transform + pos: 15.5,-43.5 + parent: 2 + - uid: 18529 + components: + - type: Transform + pos: -42.5,-17.5 + parent: 2 + - uid: 18530 + components: + - type: Transform + pos: -43.5,-17.5 + parent: 2 + - uid: 18531 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 18532 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 18533 + components: + - type: Transform + pos: -8.5,-72.5 + parent: 2 + - uid: 18534 + components: + - type: Transform + pos: 14.5,-63.5 + parent: 2 + - uid: 18535 + components: + - type: Transform + pos: 16.5,-63.5 + parent: 2 + - uid: 18536 + components: + - type: Transform + pos: 17.5,-63.5 + parent: 2 + - uid: 18537 + components: + - type: Transform + pos: 13.5,-63.5 + parent: 2 + - uid: 18538 + components: + - type: Transform + pos: 18.5,-63.5 + parent: 2 + - uid: 18539 + components: + - type: Transform + pos: 20.5,-63.5 + parent: 2 + - uid: 18540 + components: + - type: Transform + pos: 8.5,-48.5 + parent: 2 + - uid: 18541 + components: + - type: Transform + pos: 7.5,-100.5 + parent: 2 + - uid: 18542 + components: + - type: Transform + pos: 5.5,-100.5 + parent: 2 + - uid: 18543 + components: + - type: Transform + pos: 4.5,-100.5 + parent: 2 + - uid: 18544 + components: + - type: Transform + pos: 3.5,-100.5 + parent: 2 + - uid: 18545 + components: + - type: Transform + pos: 2.5,-100.5 + parent: 2 + - uid: 18546 + components: + - type: Transform + pos: -6.5,-100.5 + parent: 2 + - uid: 18547 + components: + - type: Transform + pos: -2.5,-102.5 + parent: 2 + - uid: 18548 + components: + - type: Transform + pos: 4.5,-68.5 + parent: 2 + - uid: 18549 + components: + - type: Transform + pos: -4.5,-68.5 + parent: 2 + - uid: 18551 + components: + - type: Transform + pos: 3.5,-78.5 + parent: 2 + - uid: 18552 + components: + - type: Transform + pos: 7.5,-101.5 + parent: 2 + - uid: 18553 + components: + - type: Transform + pos: -10.5,-70.5 + parent: 2 + - uid: 18554 + components: + - type: Transform + pos: 9.5,-70.5 + parent: 2 + - uid: 18555 + components: + - type: Transform + pos: 6.5,-102.5 + parent: 2 + - uid: 18556 + components: + - type: Transform + pos: 6.5,-100.5 + parent: 2 + - uid: 18557 + components: + - type: Transform + pos: 4.5,-78.5 + parent: 2 + - uid: 18558 + components: + - type: Transform + pos: 3.5,-68.5 + parent: 2 + - uid: 18559 + components: + - type: Transform + pos: 7.5,-72.5 + parent: 2 + - uid: 18560 + components: + - type: Transform + pos: -1.5,-102.5 + parent: 2 + - uid: 18561 + components: + - type: Transform + pos: -7.5,-100.5 + parent: 2 + - uid: 18562 + components: + - type: Transform + pos: 1.5,-100.5 + parent: 2 + - uid: 18563 + components: + - type: Transform + pos: 5.5,-102.5 + parent: 2 + - uid: 18564 + components: + - type: Transform + pos: -4.5,-102.5 + parent: 2 + - uid: 18565 + components: + - type: Transform + pos: -4.5,-100.5 + parent: 2 + - uid: 18566 + components: + - type: Transform + pos: 34.5,-32.5 + parent: 2 + - uid: 18567 + components: + - type: Transform + pos: 22.5,-61.5 + parent: 2 + - uid: 18568 + components: + - type: Transform + pos: 12.5,-61.5 + parent: 2 + - uid: 18569 + components: + - type: Transform + pos: 12.5,-63.5 + parent: 2 + - uid: 18570 + components: + - type: Transform + pos: 19.5,-70.5 + parent: 2 + - uid: 18571 + components: + - type: Transform + pos: 19.5,-71.5 + parent: 2 + - uid: 18572 + components: + - type: Transform + pos: 19.5,-72.5 + parent: 2 + - uid: 18573 + components: + - type: Transform + pos: -0.5,-75.5 + parent: 2 + - uid: 18574 + components: + - type: Transform + pos: -39.5,-32.5 + parent: 2 + - uid: 18575 + components: + - type: Transform + pos: -38.5,-32.5 + parent: 2 + - uid: 18576 + components: + - type: Transform + pos: -37.5,-32.5 + parent: 2 + - uid: 18577 + components: + - type: Transform + pos: 38.5,-35.5 + parent: 2 + - uid: 18578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-28.5 + parent: 2 + - uid: 18579 + components: + - type: Transform + pos: 22.5,-31.5 + parent: 2 + - uid: 18580 + components: + - type: Transform + pos: 21.5,-31.5 + parent: 2 + - uid: 18581 + components: + - type: Transform + pos: 19.5,-31.5 + parent: 2 + - uid: 18582 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 2 + - uid: 18583 + components: + - type: Transform + pos: 24.5,-31.5 + parent: 2 + - uid: 18584 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 2 + - uid: 18585 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 2 + - uid: 18586 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 2 + - uid: 18587 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 2 + - uid: 18588 + components: + - type: Transform + pos: 38.5,-36.5 + parent: 2 + - uid: 18589 + components: + - type: Transform + pos: 27.5,-32.5 + parent: 2 + - uid: 18590 + components: + - type: Transform + pos: 38.5,-25.5 + parent: 2 + - uid: 18591 + components: + - type: Transform + pos: 37.5,-33.5 + parent: 2 + - uid: 18592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-27.5 + parent: 2 + - uid: 18593 + components: + - type: Transform + pos: 38.5,-34.5 + parent: 2 + - uid: 18594 + components: + - type: Transform + pos: 38.5,-48.5 + parent: 2 + - uid: 18595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-32.5 + parent: 2 + - uid: 18596 + components: + - type: Transform + pos: 9.5,-54.5 + parent: 2 + - uid: 18597 + components: + - type: Transform + pos: 58.5,-58.5 + parent: 2 + - uid: 18598 + components: + - type: Transform + pos: 76.5,-61.5 + parent: 2 + - uid: 18599 + components: + - type: Transform + pos: 43.5,-34.5 + parent: 2 + - uid: 18600 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 18601 + components: + - type: Transform + pos: 69.5,-16.5 + parent: 2 + - uid: 18602 + components: + - type: Transform + pos: 58.5,-54.5 + parent: 2 + - uid: 18603 + components: + - type: Transform + pos: 57.5,-58.5 + parent: 2 + - uid: 18604 + components: + - type: Transform + pos: -22.5,-45.5 + parent: 2 + - uid: 18605 + components: + - type: Transform + pos: 38.5,-69.5 + parent: 2 + - uid: 18606 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 2 + - uid: 18607 + components: + - type: Transform + pos: -79.5,12.5 + parent: 2 + - uid: 18608 + components: + - type: Transform + pos: -78.5,12.5 + parent: 2 + - uid: 18609 + components: + - type: Transform + pos: -77.5,12.5 + parent: 2 + - uid: 18610 + components: + - type: Transform + pos: -76.5,12.5 + parent: 2 + - uid: 18611 + components: + - type: Transform + pos: -75.5,12.5 + parent: 2 + - uid: 18612 + components: + - type: Transform + pos: -73.5,12.5 + parent: 2 + - uid: 18613 + components: + - type: Transform + pos: -72.5,12.5 + parent: 2 + - uid: 18614 + components: + - type: Transform + pos: -71.5,12.5 + parent: 2 + - uid: 18615 + components: + - type: Transform + pos: -70.5,12.5 + parent: 2 + - uid: 18616 + components: + - type: Transform + pos: -69.5,12.5 + parent: 2 + - uid: 18617 + components: + - type: Transform + pos: 23.5,-44.5 + parent: 2 + - uid: 18618 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 2 + - uid: 18619 + components: + - type: Transform + pos: 23.5,-42.5 + parent: 2 + - uid: 18620 + components: + - type: Transform + pos: 21.5,-63.5 + parent: 2 + - uid: 18621 + components: + - type: Transform + pos: 22.5,-63.5 + parent: 2 + - uid: 18622 + components: + - type: Transform + pos: 25.5,-56.5 + parent: 2 + - uid: 18623 + components: + - type: Transform + pos: 25.5,-55.5 + parent: 2 + - uid: 18624 + components: + - type: Transform + pos: 25.5,-54.5 + parent: 2 + - uid: 18625 + components: + - type: Transform + pos: 25.5,-52.5 + parent: 2 + - uid: 18626 + components: + - type: Transform + pos: 25.5,-51.5 + parent: 2 + - uid: 18627 + components: + - type: Transform + pos: 25.5,-50.5 + parent: 2 + - uid: 18628 + components: + - type: Transform + pos: 25.5,-48.5 + parent: 2 + - uid: 18629 + components: + - type: Transform + pos: 25.5,-47.5 + parent: 2 + - uid: 18630 + components: + - type: Transform + pos: 25.5,-46.5 + parent: 2 + - uid: 18631 + components: + - type: Transform + pos: 25.5,-44.5 + parent: 2 + - uid: 18632 + components: + - type: Transform + pos: 25.5,-43.5 + parent: 2 + - uid: 18633 + components: + - type: Transform + pos: 25.5,-42.5 + parent: 2 + - uid: 18634 + components: + - type: Transform + pos: -6.5,46.5 + parent: 2 + - uid: 18635 + components: + - type: Transform + pos: -14.5,54.5 + parent: 2 + - uid: 18636 + components: + - type: Transform + pos: -15.5,54.5 + parent: 2 + - uid: 18637 + components: + - type: Transform + pos: -12.5,54.5 + parent: 2 + - uid: 18638 + components: + - type: Transform + pos: -8.5,46.5 + parent: 2 + - uid: 18639 + components: + - type: Transform + pos: -11.5,54.5 + parent: 2 + - uid: 18640 + components: + - type: Transform + pos: 6.5,29.5 + parent: 2 + - uid: 18641 + components: + - type: Transform + pos: 8.5,29.5 + parent: 2 + - uid: 18642 + components: + - type: Transform + pos: -12.5,-32.5 + parent: 2 + - uid: 18643 + components: + - type: Transform + pos: -13.5,-32.5 + parent: 2 + - uid: 18644 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 2 + - uid: 18645 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 18646 + components: + - type: Transform + pos: 35.5,4.5 + parent: 2 + - uid: 18647 + components: + - type: Transform + pos: 33.5,4.5 + parent: 2 + - uid: 18648 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - uid: 18649 + components: + - type: Transform + pos: 21.5,46.5 + parent: 2 + - uid: 18650 + components: + - type: Transform + pos: 22.5,46.5 + parent: 2 + - uid: 18651 + components: + - type: Transform + pos: 23.5,46.5 + parent: 2 + - uid: 18652 + components: + - type: Transform + pos: 24.5,46.5 + parent: 2 + - uid: 18653 + components: + - type: Transform + pos: 17.5,46.5 + parent: 2 + - uid: 18654 + components: + - type: Transform + pos: 16.5,46.5 + parent: 2 + - uid: 18655 + components: + - type: Transform + pos: 15.5,46.5 + parent: 2 + - uid: 18656 + components: + - type: Transform + pos: 14.5,46.5 + parent: 2 + - uid: 18657 + components: + - type: Transform + pos: 13.5,46.5 + parent: 2 + - uid: 18658 + components: + - type: Transform + pos: 12.5,46.5 + parent: 2 + - uid: 18659 + components: + - type: Transform + pos: 11.5,46.5 + parent: 2 + - uid: 18660 + components: + - type: Transform + pos: 10.5,46.5 + parent: 2 + - uid: 18661 + components: + - type: Transform + pos: 9.5,46.5 + parent: 2 + - uid: 18662 + components: + - type: Transform + pos: 8.5,46.5 + parent: 2 + - uid: 18663 + components: + - type: Transform + pos: 7.5,46.5 + parent: 2 + - uid: 18664 + components: + - type: Transform + pos: -27.5,41.5 + parent: 2 + - uid: 18665 + components: + - type: Transform + pos: -27.5,42.5 + parent: 2 + - uid: 18666 + components: + - type: Transform + pos: -27.5,43.5 + parent: 2 + - uid: 18667 + components: + - type: Transform + pos: -27.5,44.5 + parent: 2 + - uid: 18668 + components: + - type: Transform + pos: -27.5,45.5 + parent: 2 + - uid: 18669 + components: + - type: Transform + pos: -27.5,46.5 + parent: 2 + - uid: 18670 + components: + - type: Transform + pos: -27.5,47.5 + parent: 2 + - uid: 18671 + components: + - type: Transform + pos: -24.5,58.5 + parent: 2 + - uid: 18672 + components: + - type: Transform + pos: -23.5,58.5 + parent: 2 + - uid: 18673 + components: + - type: Transform + pos: -22.5,58.5 + parent: 2 + - uid: 18674 + components: + - type: Transform + pos: -21.5,58.5 + parent: 2 + - uid: 18675 + components: + - type: Transform + pos: -20.5,58.5 + parent: 2 + - uid: 18676 + components: + - type: Transform + pos: -19.5,58.5 + parent: 2 + - uid: 18677 + components: + - type: Transform + pos: -18.5,58.5 + parent: 2 + - uid: 18678 + components: + - type: Transform + pos: -17.5,58.5 + parent: 2 + - uid: 18679 + components: + - type: Transform + pos: -15.5,58.5 + parent: 2 + - uid: 18680 + components: + - type: Transform + pos: -14.5,58.5 + parent: 2 + - uid: 18681 + components: + - type: Transform + pos: -13.5,58.5 + parent: 2 + - uid: 18682 + components: + - type: Transform + pos: -12.5,58.5 + parent: 2 + - uid: 18683 + components: + - type: Transform + pos: -11.5,58.5 + parent: 2 + - uid: 18684 + components: + - type: Transform + pos: -10.5,58.5 + parent: 2 + - uid: 18685 + components: + - type: Transform + pos: -9.5,58.5 + parent: 2 + - uid: 18686 + components: + - type: Transform + pos: -8.5,58.5 + parent: 2 + - uid: 18687 + components: + - type: Transform + pos: -2.5,56.5 + parent: 2 + - uid: 18688 + components: + - type: Transform + pos: -1.5,56.5 + parent: 2 + - uid: 18689 + components: + - type: Transform + pos: -0.5,56.5 + parent: 2 + - uid: 18690 + components: + - type: Transform + pos: 0.5,56.5 + parent: 2 + - uid: 18691 + components: + - type: Transform + pos: 1.5,56.5 + parent: 2 + - uid: 18692 + components: + - type: Transform + pos: 2.5,56.5 + parent: 2 + - uid: 18693 + components: + - type: Transform + pos: 3.5,56.5 + parent: 2 + - uid: 18694 + components: + - type: Transform + pos: 4.5,56.5 + parent: 2 + - uid: 18695 + components: + - type: Transform + pos: 5.5,56.5 + parent: 2 + - uid: 18696 + components: + - type: Transform + pos: 6.5,56.5 + parent: 2 + - uid: 18697 + components: + - type: Transform + pos: 7.5,56.5 + parent: 2 + - uid: 18698 + components: + - type: Transform + pos: 9.5,53.5 + parent: 2 + - uid: 18699 + components: + - type: Transform + pos: 9.5,52.5 + parent: 2 + - uid: 18700 + components: + - type: Transform + pos: 9.5,51.5 + parent: 2 + - uid: 18701 + components: + - type: Transform + pos: 9.5,50.5 + parent: 2 + - uid: 18702 + components: + - type: Transform + pos: 9.5,49.5 + parent: 2 + - uid: 18703 + components: + - type: Transform + pos: 9.5,48.5 + parent: 2 + - uid: 18704 + components: + - type: Transform + pos: -27.5,54.5 + parent: 2 + - uid: 18705 + components: + - type: Transform + pos: -27.5,53.5 + parent: 2 + - uid: 18706 + components: + - type: Transform + pos: -27.5,52.5 + parent: 2 + - uid: 18707 + components: + - type: Transform + pos: -27.5,51.5 + parent: 2 + - uid: 18708 + components: + - type: Transform + pos: -27.5,50.5 + parent: 2 + - uid: 18709 + components: + - type: Transform + pos: 70.5,-0.5 + parent: 2 + - uid: 18710 + components: + - type: Transform + pos: 0.5,44.5 + parent: 2 + - uid: 18711 + components: + - type: Transform + pos: -0.5,44.5 + parent: 2 + - uid: 18712 + components: + - type: Transform + pos: 2.5,44.5 + parent: 2 + - uid: 18713 + components: + - type: Transform + pos: 0.5,-75.5 + parent: 2 + - uid: 18714 + components: + - type: Transform + pos: 1.5,-78.5 + parent: 2 + - uid: 18715 + components: + - type: Transform + pos: 0.5,-78.5 + parent: 2 + - uid: 18716 + components: + - type: Transform + pos: 1.5,-75.5 + parent: 2 + - uid: 18717 + components: + - type: Transform + pos: -1.5,-75.5 + parent: 2 + - uid: 18718 + components: + - type: Transform + pos: -0.5,-78.5 + parent: 2 + - uid: 18719 + components: + - type: Transform + pos: -2.5,-78.5 + parent: 2 + - uid: 18720 + components: + - type: Transform + pos: -1.5,-78.5 + parent: 2 + - uid: 18721 + components: + - type: Transform + pos: -6.5,-78.5 + parent: 2 + - uid: 18722 + components: + - type: Transform + pos: 11.5,-78.5 + parent: 2 + - uid: 18723 + components: + - type: Transform + pos: -13.5,-70.5 + parent: 2 + - uid: 18724 + components: + - type: Transform + pos: -11.5,-69.5 + parent: 2 + - uid: 18725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-3.5 + parent: 2 + - uid: 18726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-40.5 + parent: 2 + - uid: 18727 + components: + - type: Transform + pos: 32.5,6.5 + parent: 2 + - uid: 18728 + components: + - type: Transform + pos: 12.5,42.5 + parent: 2 + - uid: 18729 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 + - uid: 18730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,9.5 + parent: 2 + - uid: 18731 + components: + - type: Transform + pos: -24.5,38.5 + parent: 2 + - uid: 18732 + components: + - type: Transform + pos: -5.5,-78.5 + parent: 2 + - uid: 18733 + components: + - type: Transform + pos: -4.5,-78.5 + parent: 2 + - uid: 18734 + components: + - type: Transform + pos: 77.5,-4.5 + parent: 2 + - uid: 18735 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 2 + - uid: 18736 + components: + - type: Transform + pos: -23.5,-31.5 + parent: 2 + - uid: 18737 + components: + - type: Transform + pos: -76.5,11.5 + parent: 2 + - uid: 18738 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 18739 + components: + - type: Transform + pos: -77.5,11.5 + parent: 2 + - uid: 18740 + components: + - type: Transform + pos: -78.5,11.5 + parent: 2 + - uid: 18741 + components: + - type: Transform + pos: -70.5,11.5 + parent: 2 + - uid: 18742 + components: + - type: Transform + pos: -71.5,11.5 + parent: 2 + - uid: 18743 + components: + - type: Transform + pos: -72.5,11.5 + parent: 2 + - uid: 18744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,6.5 + parent: 2 + - uid: 18745 + components: + - type: Transform + pos: -14.5,-70.5 + parent: 2 + - uid: 18746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,-28.5 + parent: 2 + - uid: 18747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,-26.5 + parent: 2 + - uid: 18748 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 2 + - uid: 18749 + components: + - type: Transform + pos: 76.5,-27.5 + parent: 2 + - uid: 18750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,6.5 + parent: 2 + - uid: 18751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,13.5 + parent: 2 + - uid: 18752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,31.5 + parent: 2 + - uid: 18753 + components: + - type: Transform + pos: 36.5,6.5 + parent: 2 + - uid: 18754 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 + - uid: 18755 + components: + - type: Transform + pos: -23.5,35.5 + parent: 2 + - uid: 18756 + components: + - type: Transform + pos: 5.5,-75.5 + parent: 2 + - uid: 18757 + components: + - type: Transform + pos: -5.5,-75.5 + parent: 2 + - uid: 18758 + components: + - type: Transform + pos: -6.5,-75.5 + parent: 2 + - uid: 18759 + components: + - type: Transform + pos: -4.5,-75.5 + parent: 2 + - uid: 18760 + components: + - type: Transform + pos: 31.5,-51.5 + parent: 2 + - uid: 18761 + components: + - type: Transform + pos: 31.5,-40.5 + parent: 2 + - uid: 18762 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 2 + - uid: 18763 + components: + - type: Transform + pos: -2.5,-75.5 + parent: 2 + - uid: 18764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-57.5 + parent: 2 + - uid: 18765 + components: + - type: Transform + pos: 7.5,-54.5 + parent: 2 + - uid: 18766 + components: + - type: Transform + pos: 8.5,-54.5 + parent: 2 + - uid: 18767 + components: + - type: Transform + pos: -22.5,35.5 + parent: 2 + - uid: 18768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-58.5 + parent: 2 + - uid: 18769 + components: + - type: Transform + pos: 31.5,-44.5 + parent: 2 + - uid: 18771 + components: + - type: Transform + pos: 4.5,-75.5 + parent: 2 + - uid: 18772 + components: + - type: Transform + pos: 3.5,-75.5 + parent: 2 + - uid: 18773 + components: + - type: Transform + pos: 12.5,-78.5 + parent: 2 + - uid: 18774 + components: + - type: Transform + pos: 5.5,-78.5 + parent: 2 + - uid: 18775 + components: + - type: Transform + pos: -41.5,-20.5 + parent: 2 + - uid: 18776 + components: + - type: Transform + pos: -41.5,-21.5 + parent: 2 + - uid: 18777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,18.5 + parent: 2 + - uid: 18778 + components: + - type: Transform + pos: -21.5,-28.5 + parent: 2 + - uid: 18779 + components: + - type: Transform + pos: -22.5,-28.5 + parent: 2 + - uid: 18780 + components: + - type: Transform + pos: 60.5,-28.5 + parent: 2 + - uid: 18781 + components: + - type: Transform + pos: -19.5,-28.5 + parent: 2 + - uid: 18782 + components: + - type: Transform + pos: -17.5,-74.5 + parent: 2 + - uid: 18783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,30.5 + parent: 2 + - uid: 18784 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 2 + - uid: 18785 + components: + - type: Transform + pos: -82.5,-2.5 + parent: 2 + - uid: 18786 + components: + - type: Transform + pos: 14.5,42.5 + parent: 2 + - uid: 18787 + components: + - type: Transform + pos: -23.5,-29.5 + parent: 2 + - uid: 18788 + components: + - type: Transform + pos: -82.5,11.5 + parent: 2 + - uid: 18789 + components: + - type: Transform + pos: -83.5,7.5 + parent: 2 + - uid: 18790 + components: + - type: Transform + pos: -82.5,7.5 + parent: 2 + - uid: 18791 + components: + - type: Transform + pos: -81.5,-12.5 + parent: 2 + - uid: 18792 + components: + - type: Transform + pos: -83.5,-6.5 + parent: 2 + - uid: 18793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-3.5 + parent: 2 + - uid: 18794 + components: + - type: Transform + pos: -24.5,-17.5 + parent: 2 + - uid: 18795 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 2 + - uid: 18796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,16.5 + parent: 2 + - uid: 18797 + components: + - type: Transform + pos: -23.5,20.5 + parent: 2 + - uid: 18798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,40.5 + parent: 2 + - uid: 18799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-47.5 + parent: 2 + - uid: 18800 + components: + - type: Transform + pos: 31.5,-55.5 + parent: 2 + - uid: 18801 + components: + - type: Transform + pos: 31.5,-46.5 + parent: 2 + - uid: 18802 + components: + - type: Transform + pos: 31.5,-52.5 + parent: 2 + - uid: 18803 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 18804 + components: + - type: Transform + pos: 58.5,-42.5 + parent: 2 + - uid: 18805 + components: + - type: Transform + pos: 9.5,33.5 + parent: 2 + - uid: 18806 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 + - uid: 18807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,36.5 + parent: 2 + - uid: 18808 + components: + - type: Transform + pos: 82.5,-4.5 + parent: 2 + - uid: 18809 + components: + - type: Transform + pos: 28.5,30.5 + parent: 2 + - uid: 18810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,30.5 + parent: 2 + - uid: 18811 + components: + - type: Transform + pos: 81.5,-4.5 + parent: 2 + - uid: 18812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,1.5 + parent: 2 + - uid: 18813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-38.5 + parent: 2 + - uid: 18814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,16.5 + parent: 2 + - uid: 18815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,16.5 + parent: 2 + - uid: 18816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,35.5 + parent: 2 + - uid: 18817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,34.5 + parent: 2 + - uid: 18818 + components: + - type: Transform + pos: 43.5,-24.5 + parent: 2 + - uid: 18819 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - uid: 18820 + components: + - type: Transform + pos: -24.5,32.5 + parent: 2 + - uid: 18821 + components: + - type: Transform + pos: -24.5,36.5 + parent: 2 + - uid: 18822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,35.5 + parent: 2 + - uid: 18823 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 2 + - uid: 18824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,-39.5 + parent: 2 + - uid: 18825 + components: + - type: Transform + pos: 116.5,-34.5 + parent: 2 + - uid: 18826 + components: + - type: Transform + pos: 114.5,-35.5 + parent: 2 + - uid: 18827 + components: + - type: Transform + pos: 114.5,-36.5 + parent: 2 + - uid: 18828 + components: + - type: Transform + pos: 118.5,-36.5 + parent: 2 + - uid: 18829 + components: + - type: Transform + pos: 118.5,-35.5 + parent: 2 + - uid: 18830 + components: + - type: Transform + pos: 120.5,-38.5 + parent: 2 + - uid: 18831 + components: + - type: Transform + pos: 119.5,-40.5 + parent: 2 + - uid: 18832 + components: + - type: Transform + pos: 119.5,-39.5 + parent: 2 + - uid: 18833 + components: + - type: Transform + pos: 114.5,-40.5 + parent: 2 + - uid: 18834 + components: + - type: Transform + pos: 114.5,-41.5 + parent: 2 + - uid: 18835 + components: + - type: Transform + pos: 112.5,-35.5 + parent: 2 + - uid: 18836 + components: + - type: Transform + pos: 115.5,-33.5 + parent: 2 + - uid: 18837 + components: + - type: Transform + pos: 117.5,-33.5 + parent: 2 + - uid: 18838 + components: + - type: Transform + pos: 118.5,-34.5 + parent: 2 + - uid: 18839 + components: + - type: Transform + pos: 119.5,-35.5 + parent: 2 + - uid: 18840 + components: + - type: Transform + pos: 114.5,-34.5 + parent: 2 + - uid: 18841 + components: + - type: Transform + pos: 121.5,-40.5 + parent: 2 + - uid: 18842 + components: + - type: Transform + pos: 120.5,-40.5 + parent: 2 + - uid: 18843 + components: + - type: Transform + pos: 120.5,-41.5 + parent: 2 + - uid: 18844 + components: + - type: Transform + pos: 117.5,-43.5 + parent: 2 + - uid: 18845 + components: + - type: Transform + pos: 118.5,-43.5 + parent: 2 + - uid: 18846 + components: + - type: Transform + pos: 114.5,-42.5 + parent: 2 + - uid: 18847 + components: + - type: Transform + pos: 113.5,-41.5 + parent: 2 + - uid: 18848 + components: + - type: Transform + pos: 112.5,-40.5 + parent: 2 + - uid: 18849 + components: + - type: Transform + pos: 113.5,-42.5 + parent: 2 + - uid: 18850 + components: + - type: Transform + pos: 121.5,-37.5 + parent: 2 + - uid: 18851 + components: + - type: Transform + pos: 121.5,-38.5 + parent: 2 + - uid: 18852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,-39.5 + parent: 2 + - uid: 18853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 93.5,-39.5 + parent: 2 + - uid: 18854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,-39.5 + parent: 2 + - uid: 18855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,-37.5 + parent: 2 + - uid: 18856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 100.5,-37.5 + parent: 2 + - uid: 18857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 103.5,-37.5 + parent: 2 + - uid: 18858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 99.5,-39.5 + parent: 2 + - uid: 18859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,-37.5 + parent: 2 + - uid: 18860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,-37.5 + parent: 2 + - uid: 18861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,-39.5 + parent: 2 + - uid: 18862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 108.5,-37.5 + parent: 2 + - uid: 18863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 111.5,-37.5 + parent: 2 + - uid: 18864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 109.5,-39.5 + parent: 2 + - uid: 18865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 106.5,-39.5 + parent: 2 + - uid: 18866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 105.5,-39.5 + parent: 2 + - uid: 18867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 108.5,-39.5 + parent: 2 + - uid: 18868 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 2 + - uid: 18869 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 2 + - uid: 18870 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 18871 + components: + - type: Transform + pos: -28.5,24.5 + parent: 2 + - uid: 18872 + components: + - type: Transform + pos: -23.5,23.5 + parent: 2 + - uid: 18873 + components: + - type: Transform + pos: 31.5,-54.5 + parent: 2 + - uid: 18874 + components: + - type: Transform + pos: 31.5,-56.5 + parent: 2 + - uid: 21065 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 2 + - uid: 21277 + components: + - type: Transform + pos: -14.5,-37.5 + parent: 2 + - uid: 21278 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 2 + - uid: 21279 + components: + - type: Transform + pos: -14.5,-35.5 + parent: 2 +- proto: GrilleBroken + entities: + - uid: 18875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-1.5 + parent: 2 + - uid: 18876 + components: + - type: Transform + pos: -59.5,-1.5 + parent: 2 + - uid: 18877 + components: + - type: Transform + pos: -51.5,14.5 + parent: 2 + - uid: 18878 + components: + - type: Transform + pos: 49.5,9.5 + parent: 2 + - uid: 18879 + components: + - type: Transform + pos: 63.5,8.5 + parent: 2 + - uid: 18880 + components: + - type: Transform + pos: 60.5,8.5 + parent: 2 + - uid: 18881 + components: + - type: Transform + pos: -41.5,-17.5 + parent: 2 + - uid: 18882 + components: + - type: Transform + pos: 42.5,-65.5 + parent: 2 + - uid: 18883 + components: + - type: Transform + pos: 19.5,-88.5 + parent: 2 + - uid: 18884 + components: + - type: Transform + pos: 18.5,-88.5 + parent: 2 + - uid: 18885 + components: + - type: Transform + pos: 17.5,-88.5 + parent: 2 + - uid: 18886 + components: + - type: Transform + pos: 15.5,-88.5 + parent: 2 + - uid: 18887 + components: + - type: Transform + pos: -47.5,-53.5 + parent: 2 + - uid: 18888 + components: + - type: Transform + pos: -56.5,-67.5 + parent: 2 + - uid: 18889 + components: + - type: Transform + pos: -51.5,-69.5 + parent: 2 + - uid: 18890 + components: + - type: Transform + pos: -41.5,35.5 + parent: 2 + - uid: 18891 + components: + - type: Transform + pos: -57.5,28.5 + parent: 2 + - uid: 18892 + components: + - type: Transform + pos: -47.5,42.5 + parent: 2 + - uid: 18893 + components: + - type: Transform + pos: 49.5,42.5 + parent: 2 + - uid: 18894 + components: + - type: Transform + pos: 39.5,39.5 + parent: 2 + - uid: 18895 + components: + - type: Transform + pos: 55.5,28.5 + parent: 2 + - uid: 18896 + components: + - type: Transform + pos: 87.5,-71.5 + parent: 2 + - uid: 18897 + components: + - type: Transform + pos: 76.5,-71.5 + parent: 2 + - uid: 18898 + components: + - type: Transform + pos: 73.5,-80.5 + parent: 2 + - uid: 18899 + components: + - type: Transform + pos: 88.5,-85.5 + parent: 2 + - uid: 18900 + components: + - type: Transform + pos: 61.5,8.5 + parent: 2 + - uid: 18901 + components: + - type: Transform + pos: 58.5,14.5 + parent: 2 + - uid: 18902 + components: + - type: Transform + pos: 57.5,14.5 + parent: 2 + - uid: 18903 + components: + - type: Transform + pos: -20.5,11.5 + parent: 2 + - uid: 18904 + components: + - type: Transform + pos: -27.5,48.5 + parent: 2 + - uid: 18905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,49.5 + parent: 2 + - uid: 18906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-37.5 + parent: 2 + - uid: 18907 + components: + - type: Transform + pos: 15.5,-36.5 + parent: 2 + - uid: 18908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,44.5 + parent: 2 + - uid: 18909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,44.5 + parent: 2 + - uid: 18910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,-12.5 + parent: 2 + - uid: 18911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-12.5 + parent: 2 + - uid: 18912 + components: + - type: Transform + pos: -80.5,-16.5 + parent: 2 + - uid: 18913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,-16.5 + parent: 2 + - uid: 18914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,-16.5 + parent: 2 + - uid: 18915 + components: + - type: Transform + pos: -81.5,-16.5 + parent: 2 + - uid: 18916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-16.5 + parent: 2 + - uid: 18917 + components: + - type: Transform + pos: -82.5,-6.5 + parent: 2 + - uid: 18918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,-6.5 + parent: 2 + - uid: 18919 + components: + - type: Transform + pos: -83.5,-2.5 + parent: 2 + - uid: 18920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,11.5 + parent: 2 + - uid: 18921 + components: + - type: Transform + pos: -83.5,11.5 + parent: 2 + - uid: 18922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,20.5 + parent: 2 + - uid: 18923 + components: + - type: Transform + pos: -24.5,33.5 + parent: 2 + - uid: 18924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,37.5 + parent: 2 + - uid: 18925 + components: + - type: Transform + pos: 116.5,-33.5 + parent: 2 + - uid: 18926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 120.5,-36.5 + parent: 2 + - uid: 18927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 121.5,-39.5 + parent: 2 + - uid: 18928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 119.5,-41.5 + parent: 2 + - uid: 18929 + components: + - type: Transform + pos: 119.5,-42.5 + parent: 2 + - uid: 18930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 114.5,-43.5 + parent: 2 + - uid: 18931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 116.5,-43.5 + parent: 2 + - uid: 18932 + components: + - type: Transform + pos: 112.5,-41.5 + parent: 2 + - uid: 18933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 112.5,-36.5 + parent: 2 + - uid: 18934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 107.5,-37.5 + parent: 2 + - uid: 18935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 106.5,-37.5 + parent: 2 + - uid: 18936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 102.5,-37.5 + parent: 2 + - uid: 18937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 100.5,-39.5 + parent: 2 + - uid: 18938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,-37.5 + parent: 2 + - uid: 18939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 98.5,-37.5 + parent: 2 + - uid: 18940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 98.5,-39.5 + parent: 2 + - uid: 18941 + components: + - type: Transform + pos: 89.5,-39.5 + parent: 2 + - uid: 18942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,23.5 + parent: 2 + - uid: 18943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,23.5 + parent: 2 + - uid: 18944 + components: + - type: Transform + pos: -22.5,23.5 + parent: 2 + - uid: 18945 + components: + - type: Transform + pos: -28.5,25.5 + parent: 2 +- proto: GunSafe + entities: + - uid: 18946 + components: + - type: Transform + pos: 10.5,24.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1462 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18947 + - 18948 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: Gyroscope + entities: + - uid: 18949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,16.5 + parent: 2 +- proto: Handcuffs + entities: + - uid: 18950 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 + - uid: 18951 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 + - uid: 18952 + components: + - type: Transform + pos: -15.384127,34.584564 + parent: 2 +- proto: HandheldGPSBasic + entities: + - uid: 18953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.30828,2.883368 + parent: 2 +- proto: HandheldHealthAnalyzer + entities: + - uid: 18954 + components: + - type: Transform + pos: 34.57946,-41.230034 + parent: 2 + - uid: 18955 + components: + - type: Transform + pos: 63.429848,12.47963 + parent: 2 + - uid: 18956 + components: + - type: Transform + pos: -7.51325,30.51291 + parent: 2 +- proto: HandLabeler + entities: + - uid: 18957 + components: + - type: Transform + pos: -6.5039477,39.581596 + parent: 2 + - uid: 18958 + components: + - type: Transform + pos: -34.47231,-18.423414 + parent: 2 + - uid: 18959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.180566,22.545942 + parent: 2 +- proto: HellfireFreezerMachineCircuitBoard + entities: + - uid: 18961 + components: + - type: Transform + parent: 18960 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: HighSecCommandLocked + entities: + - uid: 18962 + components: + - type: Transform + pos: 31.5,-85.5 + parent: 2 + - uid: 18963 + components: + - type: Transform + pos: 28.5,-104.5 + parent: 2 + - uid: 18964 + components: + - type: Transform + pos: 28.5,-94.5 + parent: 2 + - uid: 18965 + components: + - type: Transform + pos: 30.5,-91.5 + parent: 2 + - uid: 18966 + components: + - type: Transform + pos: 26.5,-91.5 + parent: 2 + - uid: 18967 + components: + - type: Transform + pos: 28.5,-88.5 + parent: 2 + - uid: 18968 + components: + - type: Transform + pos: 28.5,-82.5 + parent: 2 + - uid: 18969 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 + - uid: 18970 + components: + - type: Transform + pos: -31.5,2.5 + parent: 2 +- proto: HolofanProjector + entities: + - uid: 17575 + components: + - type: Transform + parent: 17573 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17580 + components: + - type: Transform + parent: 17578 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17585 + components: + - type: Transform + parent: 17583 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18971 + components: + - type: Transform + pos: 78.50061,-23.436087 + parent: 2 + - uid: 18972 + components: + - type: Transform + pos: -20.405937,-40.342514 + parent: 2 + - uid: 18973 + components: + - type: Transform + pos: 7.524209,-48.59169 + parent: 2 +- proto: Holoprojector + entities: + - uid: 18974 + components: + - type: Transform + pos: -51.636093,-4.834831 + parent: 2 +- proto: HolosignEng + entities: + - uid: 18975 + components: + - type: Transform + pos: -14.473687,20.142813 + parent: 2 + missingComponents: + - TimedDespawn +- proto: HospitalCurtainsOpen + entities: + - uid: 18976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-28.5 + parent: 2 + - uid: 18977 + components: + - type: Transform + pos: 38.5,-49.5 + parent: 2 + - uid: 18978 + components: + - type: Transform + pos: 38.5,-46.5 + parent: 2 + - uid: 18979 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 + - uid: 18980 + components: + - type: Transform + pos: 34.5,-28.5 + parent: 2 + - uid: 18981 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 2 + - uid: 18982 + components: + - type: Transform + pos: 28.5,-29.5 + parent: 2 + - uid: 18983 + components: + - type: Transform + pos: 62.5,10.5 + parent: 2 + - uid: 18984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,7.5 + parent: 2 + - uid: 18985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,7.5 + parent: 2 + - uid: 18986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,7.5 + parent: 2 +- proto: hydroponicsSoil + entities: + - uid: 18987 + components: + - type: Transform + pos: -40.5,22.5 + parent: 2 + - uid: 18988 + components: + - type: Transform + pos: -41.5,22.5 + parent: 2 + - uid: 18989 + components: + - type: Transform + pos: -41.5,20.5 + parent: 2 + - uid: 18990 + components: + - type: Transform + pos: -40.5,20.5 + parent: 2 +- proto: HydroponicsToolHatchet + entities: + - uid: 18991 + components: + - type: Transform + pos: 43.388893,-0.3643396 + parent: 2 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 18992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.6032119,51.58606 + parent: 2 +- proto: HydroponicsToolScythe + entities: + - uid: 18993 + components: + - type: Transform + pos: 44.46702,-0.41269416 + parent: 2 +- proto: HydroponicsToolSpade + entities: + - uid: 18994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.3688369,51.539185 + parent: 2 +- proto: hydroponicsTray + entities: + - uid: 18995 + components: + - type: Transform + pos: 3.5,47.5 + parent: 2 + - uid: 18996 + components: + - type: Transform + pos: -2.5,47.5 + parent: 2 + - uid: 18997 + components: + - type: Transform + pos: 1.5,47.5 + parent: 2 + - uid: 18998 + components: + - type: Transform + pos: 44.5,-4.5 + parent: 2 + - uid: 18999 + components: + - type: Transform + pos: -0.5,48.5 + parent: 2 + - uid: 19000 + components: + - type: Transform + pos: 3.5,48.5 + parent: 2 + - uid: 19001 + components: + - type: Transform + pos: -0.5,47.5 + parent: 2 + - uid: 19002 + components: + - type: Transform + pos: 1.5,48.5 + parent: 2 + - uid: 19003 + components: + - type: Transform + pos: 47.5,-4.5 + parent: 2 + - uid: 19004 + components: + - type: Transform + pos: 47.5,-3.5 + parent: 2 + - uid: 19005 + components: + - type: Transform + pos: 44.5,-3.5 + parent: 2 + - uid: 19006 + components: + - type: Transform + pos: 49.5,-4.5 + parent: 2 + - uid: 19007 + components: + - type: Transform + pos: 44.5,-5.5 + parent: 2 + - uid: 19008 + components: + - type: Transform + pos: 49.5,-7.5 + parent: 2 + - uid: 19009 + components: + - type: Transform + pos: 44.5,-8.5 + parent: 2 + - uid: 19010 + components: + - type: Transform + pos: 47.5,-5.5 + parent: 2 + - uid: 19011 + components: + - type: Transform + pos: 47.5,-6.5 + parent: 2 + - uid: 19012 + components: + - type: Transform + pos: -2.5,48.5 + parent: 2 + - uid: 19013 + components: + - type: Transform + pos: 44.5,-6.5 + parent: 2 + - uid: 19014 + components: + - type: Transform + pos: 49.5,-3.5 + parent: 2 + - uid: 19015 + components: + - type: Transform + pos: 49.5,-8.5 + parent: 2 + - uid: 19016 + components: + - type: Transform + pos: 44.5,-7.5 + parent: 2 + - uid: 19017 + components: + - type: Transform + pos: 47.5,-7.5 + parent: 2 + - uid: 19018 + components: + - type: Transform + pos: 47.5,-8.5 + parent: 2 +- proto: IDComputerCircuitboard + entities: + - uid: 19019 + components: + - type: Transform + pos: -13.484488,-37.5496 + parent: 2 +- proto: Igniter + entities: + - uid: 19020 + components: + - type: Transform + pos: 80.77511,-45.443108 + parent: 2 + - uid: 19021 + components: + - type: Transform + pos: 80.43136,-45.599358 + parent: 2 + - uid: 19022 + components: + - type: Transform + pos: 80.40011,-45.302483 + parent: 2 +- proto: IngotGold + entities: + - uid: 19023 + components: + - type: Transform + pos: -33.50281,4.533134 + parent: 2 +- proto: IngotGold1 + entities: + - uid: 19024 + components: + - type: Transform + pos: 58.422615,7.678384 + parent: 2 + - uid: 19025 + components: + - type: Transform + pos: 57.56324,7.397134 + parent: 2 + - uid: 19026 + components: + - type: Transform + pos: 57.391365,7.569009 + parent: 2 +- proto: IngotSilver + entities: + - uid: 19027 + components: + - type: Transform + pos: -33.53406,3.548759 + parent: 2 +- proto: IntercomAll + entities: + - uid: 19028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-15.5 + parent: 2 +- proto: IntercomAssesmbly + entities: + - uid: 19029 + components: + - type: Transform + pos: -18.5,21.5 + parent: 2 +- proto: IntercomCommand + entities: + - uid: 19030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-14.5 + parent: 2 + - uid: 19031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-15.5 + parent: 2 + - uid: 19032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 2 +- proto: IntercomCommon + entities: + - uid: 19033 + components: + - type: Transform + pos: 56.5,-11.5 + parent: 2 + - uid: 19034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,6.5 + parent: 2 + - uid: 19035 + components: + - type: Transform + pos: -40.5,0.5 + parent: 2 + - uid: 19036 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 +- proto: IntercomEngineering + entities: + - uid: 19037 + components: + - type: Transform + pos: -14.5,-67.5 + parent: 2 + - uid: 19038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-49.5 + parent: 2 + - uid: 19040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-53.5 + parent: 2 + - uid: 28144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-65.5 + parent: 2 +- proto: IntercomMedical + entities: + - uid: 19041 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 2 + - uid: 19042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-42.5 + parent: 2 + - uid: 19043 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 2 + - uid: 19044 + components: + - type: Transform + pos: 38.5,-54.5 + parent: 2 + - uid: 19045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-34.5 + parent: 2 +- proto: IntercomScience + entities: + - uid: 19046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-16.5 + parent: 2 + - uid: 19047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-26.5 + parent: 2 + - uid: 19048 + components: + - type: Transform + pos: 63.5,-38.5 + parent: 2 +- proto: IntercomSecurity + entities: + - uid: 19049 + components: + - type: Transform + pos: -59.5,2.5 + parent: 2 + - uid: 19050 + components: + - type: Transform + pos: 4.5,29.5 + parent: 2 + - uid: 19051 + components: + - type: Transform + pos: 17.5,36.5 + parent: 2 +- proto: IntercomSupply + entities: + - uid: 19052 + components: + - type: Transform + pos: -20.5,-20.5 + parent: 2 + - uid: 19053 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 2 +- proto: JanitorialTrolley + entities: + - uid: 19054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-7.5 + parent: 2 +- proto: JetpackBlueFilled + entities: + - uid: 19055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.477247,6.521233 + parent: 2 +- proto: JetpackMiniFilled + entities: + - uid: 11294 + components: + - type: Transform + parent: 11290 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11318 + components: + - type: Transform + parent: 11315 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11324 + components: + - type: Transform + parent: 11321 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11330 + components: + - type: Transform + parent: 11327 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: JetpackSecurityFilled + entities: + - uid: 11381 + components: + - type: Transform + parent: 11377 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19056 + components: + - type: Transform + pos: -16.511055,22.489605 + parent: 2 + - uid: 19057 + components: + - type: Transform + pos: -16.511055,22.72398 + parent: 2 +- proto: Jukebox + entities: + - uid: 20656 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 2 +- proto: KitchenElectricGrill + entities: + - uid: 19058 + components: + - type: MetaData + desc: Микроволновка? Нет, настоящий мужчина готовит стейки на гриле! + name: электрогриль + - type: Transform + pos: 38.5,-6.5 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 19059 + components: + - type: Transform + pos: 7.5,-53.5 + parent: 2 + - uid: 19060 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 2 + - uid: 19061 + components: + - type: Transform + pos: 26.5,-86.5 + parent: 2 + - uid: 19062 + components: + - type: Transform + pos: -33.5,18.5 + parent: 2 + - uid: 19063 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - uid: 19064 + components: + - type: Transform + pos: 34.5,-52.5 + parent: 2 + - uid: 19065 + components: + - type: Transform + pos: -6.5,47.5 + parent: 2 + - uid: 19066 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 +- proto: KitchenReagentGrinder + entities: + - uid: 19067 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 2 + - uid: 19068 + components: + - type: Transform + pos: 34.5,-54.5 + parent: 2 + - uid: 19069 + components: + - type: Transform + pos: -4.5,47.5 + parent: 2 + - uid: 19070 + components: + - type: Transform + pos: 69.5,-30.5 + parent: 2 + - uid: 19071 + components: + - type: Transform + pos: 53.5,-37.5 + parent: 2 + - uid: 19072 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 19073 + components: + - type: Transform + pos: 46.5,-26.5 + parent: 2 +- proto: KitchenSpike + entities: + - uid: 19074 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - uid: 19075 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 +- proto: KnifePlastic + entities: + - uid: 13903 + components: + - type: Transform + parent: 13900 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.16154,47.736145 + parent: 2 +- proto: Lamp + entities: + - uid: 19077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.442993,49.240738 + parent: 2 + - uid: 19078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.411743,49.240738 + parent: 2 + - uid: 19079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.516711,-20.844028 + parent: 2 + - uid: 19080 + components: + - type: Transform + pos: 5.5707607,15.92931 + parent: 2 + - uid: 19081 + components: + - type: Transform + pos: 46.40268,-46.775673 + parent: 2 + - uid: 19082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5096836,-6.079938 + parent: 2 + - uid: 19083 + components: + - type: Transform + pos: 5.5551357,12.96056 + parent: 2 + - uid: 19084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.552362,41.209488 + parent: 2 + - uid: 19085 + components: + - type: Transform + pos: 63.59359,1.9265842 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19086 + components: + - type: Transform + pos: -59.557964,-8.137121 + parent: 2 + - uid: 19087 + components: + - type: Transform + pos: 3.5354433,-43.043236 + parent: 2 + - uid: 19088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.579765,-34.010567 + parent: 2 + - uid: 19089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.561783,-24.081783 + parent: 2 + - uid: 19090 + components: + - type: Transform + pos: 6.712423,-27.10142 + parent: 2 + - uid: 19091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.47179,5.9049006 + parent: 2 + - uid: 19092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.536737,41.225113 + parent: 2 + - uid: 19093 + components: + - type: Transform + pos: 5.5082607,6.8793 + parent: 2 + - uid: 19094 + components: + - type: Transform + pos: 5.5238857,9.957425 + parent: 2 + - uid: 19095 + components: + - type: Transform + pos: 17.612906,15.960062 + parent: 2 + - uid: 19096 + components: + - type: Transform + pos: 13.5347805,15.944437 + parent: 2 +- proto: LampBanana + entities: + - uid: 19097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.518665,3.8424006 + parent: 2 +- proto: LampGold + entities: + - uid: 19098 + components: + - type: Transform + pos: 27.55192,-19.472286 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19099 + components: + - type: Transform + pos: 60.5,-6.5 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19100 + components: + - type: Transform + pos: 61.465347,-10.029866 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19101 + components: + - type: Transform + pos: 57.47965,-10.061116 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19102 + components: + - type: Transform + pos: -57.52329,-8.160038 + parent: 2 + - type: ContainerContainer + containers: + cellslot_cell_container: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LandMineExplosive + entities: + - uid: 19103 + components: + - type: Transform + pos: 4.573552,45.573456 + parent: 2 + - uid: 19104 + components: + - type: Transform + pos: 4.5483456,43.448456 + parent: 2 + - uid: 19105 + components: + - type: Transform + pos: 1.1108456,43.46408 + parent: 2 + - uid: 19106 + components: + - type: Transform + pos: -2.4829044,43.52658 + parent: 2 + - uid: 19107 + components: + - type: Transform + pos: -2.5045729,45.542206 + parent: 2 +- proto: LandMineModular + entities: + - uid: 19108 + components: + - type: Transform + pos: 62.85607,-29.209229 + parent: 2 +- proto: LargeBeaker + entities: + - uid: 19109 + components: + - type: Transform + pos: 74.664,-18.318996 + parent: 2 + - uid: 19110 + components: + - type: Transform + pos: 53.726738,-37.468582 + parent: 2 +- proto: LauncherCreamPie + entities: + - uid: 11707 + components: + - type: Transform + parent: 11700 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: LightBulb + entities: + - uid: 19111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.280533,-24.206783 + parent: 2 +- proto: Lighter + entities: + - uid: 19112 + components: + - type: Transform + pos: -20.062664,-73.65716 + parent: 2 +- proto: LightReplacer + entities: + - uid: 1301 + components: + - type: Transform + parent: 1298 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1302 + components: + - type: Transform + parent: 1298 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19113 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 2 +- proto: LockerAtmosphericsFilled + entities: + - uid: 1270 + components: + - type: Transform + pos: 13.5,-52.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1468 + moles: + - 1.7642671 + - 6.637005 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1271 + - 1275 + - 1277 + - 1272 + - 1273 + - 1274 + - 1276 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1278 + components: + - type: Transform + pos: 13.5,-50.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14706 + moles: + - 1.9176816 + - 7.2141356 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1280 + - 1281 + - 1279 + - 1284 + - 1283 + - 1282 + - 1285 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' + - uid: 1286 + components: + - type: Transform + pos: 13.5,-51.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.9176816 + - 7.2141356 + - 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: + - 1293 + - 1292 + - 1291 + - 1290 + - 1287 + - 1289 + - 1288 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' +- proto: LockerBooze + entities: + - uid: 1319 + components: + - type: MetaData + desc: Большой шкаф для одежды. + - type: Transform + pos: -12.5,13.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1462 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1336 + - 1330 + - 1335 + - 1331 + - 1337 + - 1324 + - 1329 + - 1320 + - 1321 + - 1323 + - 1328 + - 1322 + - 1332 + - 1327 + - 1326 + - 1333 + - 1334 + - 1325 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + missingComponents: + - AccessReader + - uid: 1338 + components: + - type: MetaData + desc: Большой шкаф для одежды. + name: гардероб + - type: Transform + pos: -10.5,13.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1462 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1352 + - 1353 + - 1340 + - 1343 + - 1345 + - 1355 + - 1347 + - 1342 + - 1354 + - 1349 + - 1356 + - 1350 + - 1346 + - 1348 + - 1339 + - 1351 + - 1341 + - 1344 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + missingComponents: + - AccessReader + - uid: 19114 + components: + - type: MetaData + desc: Большой шкаф для одежды. + name: гардероб + - type: Transform + pos: 4.5,6.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 19115 + components: + - type: MetaData + desc: Большой шкаф для одежды. + name: гардероб + - type: Transform + pos: 4.5,12.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 19116 + components: + - type: MetaData + desc: Большой шкаф для одежды. + name: гардероб + - type: Transform + pos: 4.5,9.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 19117 + components: + - type: MetaData + desc: Большой шкаф для одежды. + name: гардероб + - type: Transform + pos: 4.5,15.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 19118 + components: + - type: MetaData + desc: Большой шкаф для одежды. + name: гардероб + - type: Transform + pos: 15.5,15.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 19119 + components: + - type: MetaData + desc: Большой шкаф для одежды. + name: гардероб + - type: Transform + pos: 11.5,15.5 + parent: 2 + missingComponents: + - AccessReader +- proto: LockerBotanistFilled + entities: + - uid: 19120 + components: + - type: Transform + pos: 49.5,-0.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 19121 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerBotanistLoot + entities: + - uid: 19122 + components: + - type: Transform + pos: 49.5,0.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerBrigmedicFilled + entities: + - uid: 11301 + components: + - type: Transform + pos: -11.5,30.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11304 + - 11305 + - 11302 + - 11306 + - 11303 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' +- proto: LockerCaptainFilledNoLaser + entities: + - uid: 11404 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14688 + moles: + - 1.9744498 + - 7.427692 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11405 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' +- proto: LockerChemistryFilled + entities: + - uid: 11186 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11187 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' +- proto: LockerChiefEngineerFilled + entities: + - uid: 19123 + components: + - type: Transform + pos: 4.5,-59.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerChiefMedicalOfficerFilled + entities: + - uid: 19124 + components: + - type: Transform + pos: 43.5,-42.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerClown + entities: + - uid: 11700 + components: + - type: Transform + pos: 20.5,2.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1462 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11708 + - 11709 + - 11710 + - 11701 + - 11702 + - 11707 + - 11703 + - 11704 + - 11705 + - 11706 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerDetectiveFilled + entities: + - uid: 19125 + components: + - type: Transform + pos: -7.5,17.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerElectricalSupplies + entities: + - uid: 19126 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 19127 + components: + - type: Transform + pos: -5.5,-50.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 19128 + components: + - type: Transform + pos: -22.5,-64.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: PointLight + color: '#D56C6CFF' + - uid: 19129 + components: + - type: Transform + pos: 84.5,-44.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerEngineerFilled + entities: + - uid: 17573 + components: + - type: Transform + pos: -17.5,-71.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14713 + moles: + - 1.9744498 + - 7.427692 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17577 + - 17575 + - 17574 + - 17576 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' + - uid: 17578 + components: + - type: Transform + pos: -17.5,-72.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14713 + moles: + - 1.9744498 + - 7.427692 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17582 + - 17579 + - 17581 + - 17580 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' + - uid: 17583 + components: + - type: Transform + pos: -17.5,-73.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14713 + moles: + - 1.9744498 + - 7.427692 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17587 + - 17585 + - 17584 + - 17586 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' +- proto: LockerEvidence + entities: + - uid: 19130 + components: + - type: Transform + pos: -4.5,40.5 + parent: 2 + - uid: 19131 + components: + - type: Transform + pos: -4.5,39.5 + parent: 2 + - uid: 19132 + components: + - type: Transform + pos: -19.5,-31.5 + parent: 2 + - uid: 19133 + components: + - type: Transform + pos: -6.5,40.5 + parent: 2 + - uid: 19134 + components: + - type: Transform + pos: -3.5,13.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 19135 + components: + - type: Transform + pos: -12.5,24.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: PointLight + color: '#D56C6CFF' + - uid: 19136 + components: + - type: Transform + pos: -12.5,23.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: PointLight + color: '#D56C6CFF' + - uid: 19137 + components: + - type: Transform + pos: -12.5,22.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: PointLight + color: '#D56C6CFF' + - uid: 19138 + components: + - type: Transform + pos: -3.5,28.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: PointLight + color: '#D56C6CFF' + - uid: 19139 + components: + - type: Transform + pos: -2.5,28.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.9556966 + - 18.642859 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: PointLight + color: '#D56C6CFF' + - uid: 19140 + components: + - type: Transform + pos: -1.5,28.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.9556966 + - 18.642859 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: PointLight + color: '#D56C6CFF' + - uid: 19141 + components: + - type: Transform + pos: -14.5,27.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: PointLight + color: '#D56C6CFF' + - uid: 19142 + components: + - type: Transform + pos: -7.5,34.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: PointLight + color: '#D56C6CFF' + - uid: 19143 + components: + - type: Transform + pos: -8.5,34.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: PointLight + color: '#D56C6CFF' + - uid: 19144 + components: + - type: Transform + pos: -6.5,41.5 + parent: 2 + - uid: 19145 + components: + - type: Transform + pos: -61.5,5.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerForensicMantisFilled + entities: + - uid: 19146 + components: + - type: Transform + pos: 63.5,-44.5 + parent: 2 +- proto: LockerFreezer + entities: + - uid: 13908 + components: + - type: Transform + pos: -4.5,48.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 13919 + - 13918 + - 13917 + - 13916 + - 13915 + - 13914 + - 13913 + - 13912 + - 13911 + - 13910 + - 13909 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerFreezerBase + entities: + - uid: 13900 + components: + - type: Transform + pos: 9.5,-53.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 13901 + - 13902 + - 13903 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' + missingComponents: + - AccessReader +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 19147 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19148 + - 19149 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 19150 + components: + - type: Transform + pos: 13.5,41.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerMedical + entities: + - uid: 11384 + components: + - type: Transform + pos: 9.5,-36.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11385 + - 11386 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' +- proto: LockerMedicalFilled + entities: + - uid: 11190 + components: + - type: Transform + pos: 34.5,-38.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11191 + - 11192 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' + - uid: 11193 + components: + - type: Transform + pos: 35.5,-38.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11194 + - 11195 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' + - uid: 11196 + components: + - type: Transform + pos: 36.5,-38.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11197 + - 11198 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' +- proto: LockerMedicineFilled + entities: + - uid: 19151 + components: + - type: Transform + pos: 36.5,-45.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: PointLight + color: '#D56C6CFF' + - uid: 19152 + components: + - type: Transform + pos: 36.5,-48.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: PointLight + color: '#D56C6CFF' + - uid: 19153 + components: + - type: Transform + pos: 30.5,-27.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 19154 + components: + - type: Transform + pos: 35.5,-36.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 19155 + components: + - type: Transform + pos: 24.5,-36.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 19156 + components: + - type: Transform + pos: 12.5,-36.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerMime + entities: + - uid: 11711 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1462 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11713 + - 11714 + - 11715 + - 11718 + - 11716 + - 11712 + - 11717 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerParamedicFilledHardsuit + entities: + - uid: 19157 + components: + - type: Transform + pos: 45.5,-38.5 + parent: 2 + - uid: 19158 + components: + - type: Transform + pos: 47.5,-38.5 + parent: 2 +- proto: LockerQuarterMasterFilled + entities: + - uid: 19159 + components: + - type: Transform + pos: -34.5,-29.5 + parent: 2 +- proto: LockerResearchDirectorFilled + entities: + - uid: 11175 + components: + - type: Transform + pos: 74.5,-37.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11177 + - 11176 + - 11178 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 19160 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 2 + - uid: 19161 + components: + - type: Transform + pos: -28.5,-33.5 + parent: 2 + - uid: 19162 + components: + - type: Transform + pos: -28.5,-32.5 + parent: 2 + - uid: 19163 + components: + - type: Transform + pos: -28.5,-31.5 + parent: 2 +- proto: LockerScienceFilled + entities: + - uid: 19164 + components: + - type: Transform + pos: 74.5,-27.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 19165 + components: + - type: Transform + pos: 74.5,-29.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 19166 + components: + - type: Transform + pos: 74.5,-28.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: LockerSecurity + entities: + - uid: 1209 + components: + - type: MetaData + name: prison guard's closet + - type: Transform + pos: -13.5,39.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1223 + - 1216 + - 1226 + - 1214 + - 1210 + - 1218 + - 1221 + - 1211 + - 1219 + - 1212 + - 1215 + - 1213 + - 1224 + - 1220 + - 1217 + - 1225 + - 1222 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11089 + components: + - type: Transform + pos: 6.5,39.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11100 + - 11091 + - 11094 + - 11093 + - 11099 + - 11098 + - 11096 + - 11090 + - 11097 + - 11092 + - 11101 + - 11095 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11102 + components: + - type: Transform + pos: 6.5,35.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11112 + - 11113 + - 11114 + - 11104 + - 11106 + - 11105 + - 11110 + - 11111 + - 11109 + - 11103 + - 11107 + - 11108 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11115 + components: + - type: Transform + pos: 6.5,41.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11120 + - 11118 + - 11116 + - 11121 + - 11123 + - 11122 + - 11126 + - 11124 + - 11125 + - 11119 + - 11117 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11127 + components: + - type: Transform + pos: 6.5,40.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11132 + - 11137 + - 11129 + - 11135 + - 11128 + - 11136 + - 11138 + - 11134 + - 11139 + - 11133 + - 11131 + - 11130 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11140 + components: + - type: Transform + pos: 8.5,41.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11150 + - 11143 + - 11146 + - 11151 + - 11145 + - 11144 + - 11142 + - 11153 + - 11149 + - 11148 + - 11147 + - 11141 + - 11152 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 11154 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11165 + - 11163 + - 11155 + - 11162 + - 11161 + - 11167 + - 11160 + - 11158 + - 11156 + - 11157 + - 11166 + - 11164 + - 11159 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSteel + entities: + - uid: 19167 + components: + - type: Transform + pos: 12.5,23.5 + parent: 2 + - uid: 19168 + components: + - type: Transform + pos: 14.5,23.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19169 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19170 + components: + - type: Transform + pos: 14.5,24.5 + parent: 2 +- proto: LockerWardenFilled + entities: + - uid: 19171 + components: + - type: Transform + pos: -2.5,33.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19172 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: PointLight + color: '#D56C6CFF' +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 19173 + components: + - type: Transform + pos: -6.5,-33.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 19174 + components: + - type: Transform + pos: -20.5,-72.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: PointLight + color: '#D56C6CFF' + - uid: 19175 + components: + - type: Transform + pos: 59.5,-24.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' + - uid: 19176 + components: + - type: Transform + pos: -0.5,-64.5 + parent: 2 + - type: PointLight + color: '#D56C6CFF' +- proto: MachineAnomalyGenerator + entities: + - uid: 19177 + components: + - type: Transform + pos: 72.5,-50.5 + parent: 2 +- proto: MachineAnomalyVessel + entities: + - uid: 19178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-51.5 + parent: 2 + - uid: 19179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-50.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 19180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-57.5 + parent: 2 + - uid: 19181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-54.5 + parent: 2 + - uid: 19182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-56.5 + parent: 2 +- proto: MachineArtifactAnalyzer + entities: + - uid: 19183 + components: + - type: Transform + pos: 76.5,-29.5 + parent: 2 + - uid: 19184 + components: + - type: Transform + pos: 79.5,-29.5 + parent: 2 +- proto: MachineCentrifuge + entities: + - uid: 19185 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 +- proto: MachineElectrolysisUnit + entities: + - uid: 19186 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 2 +- proto: MachineFrame + entities: + - uid: 19187 + components: + - type: Transform + pos: 23.5,19.5 + parent: 2 + - uid: 19188 + components: + - type: Transform + pos: 33.5,-85.5 + parent: 2 + - uid: 19189 + components: + - type: Transform + pos: 39.5,-16.5 + parent: 2 +- proto: MachineFrameDestroyed + entities: + - uid: 19190 + components: + - type: Transform + pos: 51.5,-37.5 + parent: 2 +- proto: MagazineBoxMagnum + entities: + - uid: 11247 + components: + - type: Transform + parent: 11245 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxMagnumPractice + entities: + - uid: 19191 + components: + - type: Transform + pos: 21.709164,36.21923 + parent: 2 +- proto: MagazineBoxMagnumRubber + entities: + - uid: 11694 + components: + - type: Transform + parent: 11693 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxPistol + entities: + - uid: 19192 + components: + - type: Transform + pos: 9.353189,36.521774 + parent: 2 + - uid: 19193 + components: + - type: Transform + pos: 8.37643,24.037003 + parent: 2 +- proto: MagazineBoxPistolPractice + entities: + - uid: 19194 + components: + - type: Transform + pos: 21.427914,36.609856 + parent: 2 +- proto: MagazineBoxPistolRubber + entities: + - uid: 11100 + components: + - type: Transform + parent: 11089 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11166 + components: + - type: Transform + parent: 11154 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11695 + components: + - type: Transform + parent: 11693 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11696 + components: + - type: Transform + parent: 11693 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxRifleRubber + entities: + - uid: 11697 + components: + - type: Transform + parent: 11693 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11698 + components: + - type: Transform + parent: 11693 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazinePistol + entities: + - uid: 19195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.47018,23.490128 + parent: 2 + - uid: 19196 + components: + - type: Transform + pos: 9.743814,36.5374 + parent: 2 +- proto: MagazineShotgun + entities: + - uid: 19197 + components: + - type: Transform + pos: -2.7342799,35.595085 + parent: 2 + - uid: 19198 + components: + - type: Transform + pos: -2.7342799,35.407585 + parent: 2 +- proto: MagicDiceBag + entities: + - uid: 19199 + components: + - type: Transform + pos: 11.84417,10.564469 + parent: 2 +- proto: MailBag + entities: + - uid: 19200 + components: + - type: Transform + pos: -23.529716,-17.517113 + parent: 2 +- proto: MailingUnit + entities: + - uid: 19201 + components: + - type: Transform + pos: 69.5,-17.5 + parent: 2 + - type: MailingUnit + tag: science + - type: Configuration + config: + tag: science +- proto: MailTeleporter + entities: + - uid: 19202 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 +- proto: MaintenanceFluffSpawner + entities: + - uid: 19203 + components: + - type: Transform + pos: -35.5,-51.5 + parent: 2 + - uid: 19204 + components: + - type: Transform + pos: 60.5,19.5 + parent: 2 + - uid: 19205 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 + - uid: 19206 + components: + - type: Transform + pos: -18.5,-65.5 + parent: 2 + - uid: 19207 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 +- proto: MaintenanceToolSpawner + entities: + - uid: 19208 + components: + - type: Transform + pos: 15.5,-34.5 + parent: 2 + - uid: 19209 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 2 + - uid: 19210 + components: + - type: Transform + pos: -36.5,-48.5 + parent: 2 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 19211 + components: + - type: Transform + pos: -19.5,14.5 + parent: 2 + - uid: 19212 + components: + - type: Transform + pos: -30.5,-72.5 + parent: 2 +- proto: MaterialCloth + entities: + - uid: 19148 + components: + - type: Transform + parent: 19147 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MaterialDurathread + entities: + - uid: 19149 + components: + - type: Transform + parent: 19147 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MaterialWoodPlank1 + entities: + - uid: 19213 + components: + - type: Transform + rot: 3.1415202617645264 rad + pos: -30.264874,19.73441 + parent: 2 + - uid: 19214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.638481,19.375069 + parent: 2 +- proto: MatterBinStockPart + entities: + - uid: 19215 + components: + - type: Transform + pos: -2.3530324,-24.783203 + parent: 2 +- proto: Mattress + entities: + - uid: 19216 + components: + - type: Transform + pos: -21.5,15.5 + parent: 2 + - uid: 19217 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 + - uid: 19218 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 +- proto: MedicalBed + entities: + - uid: 19219 + components: + - type: Transform + pos: 37.5,-51.5 + parent: 2 + - uid: 19220 + components: + - type: Transform + pos: 34.5,-46.5 + parent: 2 + - uid: 19221 + components: + - type: Transform + pos: 34.5,-49.5 + parent: 2 + - uid: 19222 + components: + - type: Transform + pos: 47.5,-58.5 + parent: 2 + - uid: 19223 + components: + - type: Transform + pos: 44.5,-58.5 + parent: 2 + - uid: 19224 + components: + - type: Transform + pos: 29.5,-30.5 + parent: 2 + - uid: 19225 + components: + - type: Transform + pos: 29.5,-36.5 + parent: 2 + - uid: 19226 + components: + - type: Transform + pos: 31.5,-27.5 + parent: 2 + - uid: 19227 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 2 + - uid: 19228 + components: + - type: Transform + pos: 31.5,-36.5 + parent: 2 +- proto: MedicalScanner + entities: + - uid: 19229 + components: + - type: Transform + pos: 39.5,-29.5 + parent: 2 + - uid: 19230 + components: + - type: Transform + pos: 45.5,-29.5 + parent: 2 + - uid: 19231 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 2 + - uid: 19232 + components: + - type: Transform + pos: 43.5,-27.5 + parent: 2 +- proto: MedicalTechFab + entities: + - uid: 19233 + components: + - type: Transform + pos: 37.5,-41.5 + parent: 2 +- proto: MedicatedSuture + entities: + - uid: 19234 + components: + - type: Transform + pos: 34.845085,-43.511284 + parent: 2 +- proto: MedkitAdvancedFilled + entities: + - uid: 19235 + components: + - type: Transform + pos: 44.36751,-47.629646 + parent: 2 +- proto: MedkitBruteFilled + entities: + - uid: 19236 + components: + - type: Transform + pos: 34.32946,-41.980034 + parent: 2 + - uid: 19237 + components: + - type: Transform + pos: 34.61071,-42.105034 + parent: 2 + - uid: 19238 + components: + - type: Transform + pos: -9.597286,31.38791 + parent: 2 +- proto: MedkitBurnFilled + entities: + - uid: 19239 + components: + - type: Transform + pos: 34.313835,-42.261284 + parent: 2 + - uid: 19240 + components: + - type: Transform + pos: 34.626335,-42.386284 + parent: 2 + - uid: 19241 + components: + - type: Transform + pos: -9.378536,31.51291 + parent: 2 +- proto: MedkitFilled + entities: + - uid: 19242 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 2 + - uid: 19243 + components: + - type: Transform + pos: 28.48315,-36.465515 + parent: 2 + - uid: 19244 + components: + - type: Transform + pos: 25.474028,12.477519 + parent: 2 +- proto: MedkitOxygenFilled + entities: + - uid: 19245 + components: + - type: Transform + pos: 34.313835,-42.93316 + parent: 2 + - uid: 19246 + components: + - type: Transform + pos: 34.657585,-43.08941 + parent: 2 +- proto: MedkitRadiationFilled + entities: + - uid: 19247 + components: + - type: Transform + pos: 44.668606,-34.576263 + parent: 2 + - uid: 19248 + components: + - type: Transform + pos: 34.32946,-43.261284 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 19249 + components: + - type: Transform + pos: -19.483423,36.3714 + parent: 2 + - uid: 19250 + components: + - type: Transform + pos: 44.418606,-34.43564 + parent: 2 + - uid: 19251 + components: + - type: Transform + pos: -7.627973,31.548697 + parent: 2 + - uid: 19252 + components: + - type: Transform + pos: 34.64196,-42.74566 + parent: 2 + - uid: 19253 + components: + - type: Transform + pos: 34.313835,-42.605034 + parent: 2 +- proto: Memorial + entities: + - uid: 19254 + components: + - type: MetaData + desc: Увековечивает что-то или кого-то. На памятнике есть слово "Noize", значение которого вы понять не можете. + - type: Transform + pos: 33.5,16.5 + parent: 2 +- proto: MicroManipulatorStockPart + entities: + - uid: 19255 + components: + - type: Transform + pos: 74.25775,-19.490871 + parent: 2 + - uid: 19256 + components: + - type: Transform + rot: 0.0004530529258772731 rad + pos: 74.7369,-19.349794 + parent: 2 +- proto: Mirror + entities: + - uid: 19257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-14.5 + parent: 2 + - uid: 19258 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - uid: 19259 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - uid: 19260 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 2 + - uid: 19261 + components: + - type: Transform + pos: -36.5,-53.5 + parent: 2 + - uid: 19262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,6.5 + parent: 2 + - uid: 19263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 2 + - uid: 19264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 2 + - uid: 19265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-12.5 + parent: 2 +- proto: ModularGrenade + entities: + - uid: 19266 + components: + - type: Transform + pos: 62.340446,-29.318604 + parent: 2 +- proto: MonkeyCube + entities: + - uid: 19267 + components: + - type: Transform + pos: 62.33079,-52.571655 + parent: 2 + - uid: 19268 + components: + - type: Transform + pos: 52.365692,-48.456734 + parent: 2 + - uid: 19269 + components: + - type: Transform + pos: 52.412567,-52.61853 + parent: 2 + - uid: 19270 + components: + - type: Transform + pos: 52.38254,-44.60257 + parent: 2 +- proto: MopBucket + entities: + - uid: 19271 + components: + - type: Transform + pos: -18.537788,51.577576 + parent: 2 +- proto: MopBucketFull + entities: + - uid: 19272 + components: + - type: Transform + pos: -51.24966,-7.143779 + parent: 2 +- proto: MopItem + entities: + - uid: 19273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.613323,-27.284367 + parent: 2 + - uid: 19274 + components: + - type: Transform + pos: -18.522163,51.546326 + parent: 2 + - uid: 19275 + components: + - type: Transform + pos: 3.5146809,-34.30005 + parent: 2 + - uid: 19276 + components: + - type: Transform + pos: -49.68297,-5.475456 + parent: 2 + - uid: 19277 + components: + - type: Transform + pos: -49.323593,-5.491081 + parent: 2 +- proto: Morgue + entities: + - uid: 19278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-18.5 + parent: 2 + - uid: 19279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-17.5 + parent: 2 + - uid: 19280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-20.5 + parent: 2 + - uid: 19281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-24.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-20.5 + parent: 2 + - uid: 19283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-0.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.7822967 + - 17.990545 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14954 + moles: + - 4.3997126 + - 16.5513 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-17.5 + parent: 2 + - uid: 19289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-16.5 + parent: 2 + - uid: 19290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-16.5 + parent: 2 + - uid: 19291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-18.5 + parent: 2 + - uid: 19292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-17.5 + parent: 2 + - uid: 19293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-16.5 + parent: 2 + - uid: 19294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-18.5 + parent: 2 + - uid: 19295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-18.5 + parent: 2 + - uid: 19296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-16.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 19297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-17.5 + parent: 2 + - uid: 19298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,32.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: MouseTimedSpawner + entities: + - uid: 19299 + components: + - type: Transform + pos: 52.5,7.5 + parent: 2 +- proto: Multitool + entities: + - uid: 19300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.54741,-51.08161 + parent: 2 + - uid: 19301 + components: + - type: Transform + pos: -9.159046,-33.38658 + parent: 2 + - uid: 19302 + components: + - type: Transform + pos: 24.424177,-28.395216 + parent: 2 + - uid: 19303 + components: + - type: Transform + pos: 38.236637,-27.524155 + parent: 2 + - uid: 19304 + components: + - type: Transform + pos: 70.5,12.5 + parent: 2 + - uid: 19305 + components: + - type: Transform + pos: -28.508348,-26.915876 + parent: 2 + - uid: 19306 + components: + - type: Transform + pos: 78.5,-62.5 + parent: 2 + - uid: 19307 + components: + - type: Transform + pos: 33.528397,-88.48169 + parent: 2 + - uid: 19308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.530495,-26.383043 + parent: 2 + - uid: 19309 + components: + - type: Transform + pos: 3.320313,33.590897 + parent: 2 +- proto: NetworkConfigurator + entities: + - uid: 19310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.535503,-66.41187 + parent: 2 +- proto: NitrogenCanister + entities: + - uid: 19311 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 2 + - uid: 19312 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 2 + - uid: 19313 + components: + - type: Transform + pos: 59.5,-33.5 + parent: 2 + - uid: 19314 + components: + - type: Transform + pos: 62.5,-37.5 + parent: 2 +- proto: NitrogenTankFilled + entities: + - uid: 10936 + components: + - type: Transform + parent: 10931 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10943 + components: + - type: Transform + parent: 10938 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10950 + components: + - type: Transform + parent: 10945 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10962 + components: + - type: Transform + parent: 10953 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10963 + components: + - type: Transform + parent: 10953 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10975 + components: + - type: Transform + parent: 10966 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10976 + components: + - type: Transform + parent: 10966 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10988 + components: + - type: Transform + parent: 10979 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10989 + components: + - type: Transform + parent: 10979 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11003 + components: + - type: Transform + parent: 10996 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11004 + components: + - type: Transform + parent: 10996 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11014 + components: + - type: Transform + parent: 11007 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11015 + components: + - type: Transform + parent: 11007 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11027 + components: + - type: Transform + parent: 11019 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11295 + components: + - type: Transform + parent: 11290 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11304 + components: + - type: Transform + parent: 11301 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11319 + components: + - type: Transform + parent: 11315 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11325 + components: + - type: Transform + parent: 11321 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11331 + components: + - type: Transform + parent: 11327 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11338 + components: + - type: Transform + parent: 11333 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11344 + components: + - type: Transform + parent: 11341 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11354 + components: + - type: Transform + parent: 11351 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11369 + components: + - type: Transform + parent: 11366 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11375 + components: + - type: Transform + parent: 11372 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11382 + components: + - type: Transform + parent: 11377 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: NitrousOxideCanister + entities: + - uid: 19315 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 2 + - uid: 19316 + components: + - type: Transform + pos: 17.5,-40.5 + parent: 2 + - uid: 19317 + components: + - type: Transform + pos: 59.5,-37.5 + parent: 2 +- proto: NitrousOxideTankFilled + entities: + - uid: 19318 + components: + - type: Transform + pos: 32.405025,-36.371765 + parent: 2 + - uid: 19319 + components: + - type: Transform + pos: 51.38789,-24.4227 + parent: 2 + - uid: 19320 + components: + - type: Transform + pos: 18.314848,-34.371178 + parent: 2 +- proto: NoticeBoard + entities: + - uid: 19321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-23.5 + parent: 2 +- proto: NTFlag + entities: + - uid: 19323 + components: + - type: Transform + pos: -30.5,7.5 + parent: 2 + - uid: 19324 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 19325 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 +- proto: NuclearBomb + entities: + - uid: 19326 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 +- proto: Ointment + entities: + - uid: 19327 + components: + - type: Transform + pos: -59.3874,18.425798 + parent: 2 + - uid: 19328 + components: + - type: Transform + pos: 34.628628,-41.581703 + parent: 2 +- proto: OperatingTable + entities: + - uid: 19329 + components: + - type: Transform + pos: 37.5,-16.5 + parent: 2 + - uid: 19330 + components: + - type: Transform + pos: 21.5,-36.5 + parent: 2 + - uid: 19331 + components: + - type: Transform + pos: 51.5,-22.5 + parent: 2 + - uid: 19332 + components: + - type: Transform + pos: 19.5,-36.5 + parent: 2 +- proto: OracleSpawner + entities: + - uid: 19333 + components: + - type: Transform + pos: 68.5,-3.5 + parent: 2 +- proto: OreProcessor + entities: + - uid: 19334 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 2 + - type: MaterialStorage + materialWhiteList: + - Steel + - Glass + - Plasma + - Uranium + - Gold + - Silver +- proto: OxygenCanister + entities: + - uid: 19335 + components: + - type: Transform + pos: -10.5,4.5 + parent: 2 + - uid: 19336 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 2 + - uid: 19337 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 2 + - uid: 19338 + components: + - type: Transform + pos: 20.5,-40.5 + parent: 2 + - uid: 19339 + components: + - type: Transform + pos: -23.5,-38.5 + parent: 2 + - uid: 19340 + components: + - type: Transform + pos: 62.5,-36.5 + parent: 2 + - uid: 19341 + components: + - type: Transform + pos: 61.5,-33.5 + parent: 2 + - uid: 22021 + components: + - type: Transform + pos: -16.5,26.5 + parent: 2 +- proto: OxygenTank + entities: + - uid: 19342 + components: + - type: Transform + pos: 79.33761,-43.411858 + parent: 2 + - uid: 19343 + components: + - type: Transform + pos: 79.54073,-43.411858 + parent: 2 + - uid: 19344 + components: + - type: Transform + pos: 79.74386,-43.411858 + parent: 2 +- proto: OxygenTankFilled + entities: + - uid: 10937 + components: + - type: Transform + parent: 10931 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10944 + components: + - type: Transform + parent: 10938 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10951 + components: + - type: Transform + parent: 10945 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10964 + components: + - type: Transform + parent: 10953 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10965 + components: + - type: Transform + parent: 10953 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10977 + components: + - type: Transform + parent: 10966 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10978 + components: + - type: Transform + parent: 10966 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10990 + components: + - type: Transform + parent: 10979 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10991 + components: + - type: Transform + parent: 10979 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11005 + components: + - type: Transform + parent: 10996 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11006 + components: + - type: Transform + parent: 10996 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11016 + components: + - type: Transform + parent: 11007 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11017 + components: + - type: Transform + parent: 11007 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11028 + components: + - type: Transform + parent: 11019 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11296 + components: + - type: Transform + parent: 11290 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11305 + components: + - type: Transform + parent: 11301 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11320 + components: + - type: Transform + parent: 11315 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11326 + components: + - type: Transform + parent: 11321 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11332 + components: + - type: Transform + parent: 11327 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11339 + components: + - type: Transform + parent: 11333 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11345 + components: + - type: Transform + parent: 11341 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11355 + components: + - type: Transform + parent: 11351 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11370 + components: + - type: Transform + parent: 11366 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11376 + components: + - type: Transform + parent: 11372 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11383 + components: + - type: Transform + parent: 11377 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19345 + components: + - type: Transform + pos: 33.381413,-27.398506 + parent: 2 +- proto: PaintingAmogusTriptych + entities: + - uid: 19346 + components: + - type: Transform + pos: 53.5,-7.5 + parent: 2 +- proto: PaintingMonkey + entities: + - uid: 19347 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 +- proto: PaintingMoony + entities: + - uid: 19348 + components: + - type: Transform + pos: 62.5,-11.5 + parent: 2 +- proto: PaintingSadClown + entities: + - uid: 28147 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 +- proto: PaintingTheGreatWave + entities: + - uid: 19350 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 +- proto: PaintingTheScream + entities: + - uid: 19351 + components: + - type: Transform + pos: 60.5,-11.5 + parent: 2 +- proto: PaintingTheSonOfMan + entities: + - uid: 19352 + components: + - type: Transform + pos: 58.5,-11.5 + parent: 2 +- proto: Paper + entities: + - uid: 11713 + components: + - type: Transform + parent: 11711 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11714 + components: + - type: Transform + parent: 11711 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11715 + components: + - type: Transform + parent: 11711 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11716 + components: + - type: Transform + parent: 11711 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11717 + components: + - type: Transform + parent: 11711 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 19353 + components: + - type: Transform + pos: -9.5095005,-14.46372 + parent: 2 + - uid: 19354 + components: + - type: Transform + pos: -9.2907505,-14.385595 + parent: 2 + - uid: 19355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5407505,-14.30747 + parent: 2 +- proto: PaperBin10 + entities: + - uid: 19356 + components: + - type: Transform + pos: 68.5,-50.5 + parent: 2 + - uid: 19357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.635866,31.47874 + parent: 2 + - uid: 19358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-26.5 + parent: 2 + - uid: 19359 + components: + - type: Transform + pos: -33.62635,-31.516468 + parent: 2 + - uid: 19360 + components: + - type: Transform + pos: 7.496379,-16.54774 + parent: 2 + - uid: 19361 + components: + - type: Transform + pos: -1.375051,-4.487284 + parent: 2 + - uid: 19362 + components: + - type: Transform + pos: 4.660019,-4.521192 + parent: 2 + - uid: 19363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.324554,-46.525673 + parent: 2 + - uid: 19364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.636737,-25.520134 + parent: 2 + - uid: 19365 + components: + - type: Transform + pos: 69.37664,-34.479317 + parent: 2 + - uid: 19366 + components: + - type: Transform + pos: 45.61966,-20.521873 + parent: 2 + - uid: 19367 + components: + - type: Transform + pos: 51.310394,-41.46794 + parent: 2 + - uid: 19368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.662748,-34.521782 + parent: 2 + - uid: 19369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.657018,-13.598607 + parent: 2 + - uid: 19370 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 2 + - uid: 19371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.429466,-19.534761 + parent: 2 + - uid: 19372 + components: + - type: Transform + pos: 19.5,32.5 + parent: 2 +- proto: ParchisBoard + entities: + - uid: 19373 + components: + - type: Transform + pos: 61.5,-7.5 + parent: 2 +- proto: ParticleAcceleratorControlBoxUnfinished + entities: + - uid: 19374 + components: + - type: Transform + pos: -1.5,-71.5 + parent: 2 +- proto: ParticleAcceleratorEmitterForeUnfinished + entities: + - uid: 19375 + components: + - type: Transform + pos: -0.5,-73.5 + parent: 2 +- proto: ParticleAcceleratorEmitterPortUnfinished + entities: + - uid: 19376 + components: + - type: Transform + pos: 0.5,-73.5 + parent: 2 +- proto: ParticleAcceleratorEmitterStarboardUnfinished + entities: + - uid: 19377 + components: + - type: Transform + pos: -1.5,-73.5 + parent: 2 +- proto: ParticleAcceleratorEndCapUnfinished + entities: + - uid: 19378 + components: + - type: Transform + pos: -0.5,-70.5 + parent: 2 +- proto: ParticleAcceleratorFuelChamberUnfinished + entities: + - uid: 19379 + components: + - type: Transform + pos: -0.5,-71.5 + parent: 2 +- proto: ParticleAcceleratorPowerBoxUnfinished + entities: + - uid: 19380 + components: + - type: Transform + pos: -0.5,-72.5 + parent: 2 +- proto: PartRodMetal + entities: + - uid: 19381 + components: + - type: Transform + pos: -28.374622,-53.801064 + parent: 2 + - type: RCDAmmo + charges: 15 + - uid: 19382 + components: + - type: Transform + rot: 0.0003970976686105132 rad + pos: 78.73667,-63.693985 + parent: 2 + - type: RCDAmmo + charges: 15 +- proto: Pen + entities: + - uid: 11718 + components: + - type: Transform + parent: 11711 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 19383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.227648,-13.321079 + parent: 2 + - uid: 19384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.230487,-25.332636 + parent: 2 + - uid: 19385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.2595005,-14.510595 + parent: 2 + - uid: 19386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.294968,-26.868488 + parent: 2 + - uid: 19387 + components: + - type: Transform + pos: 21.914787,-27.444769 + parent: 2 + - uid: 19388 + components: + - type: Transform + pos: -17.631445,30.858294 + parent: 2 + - uid: 19389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.828176,-4.3466597 + parent: 2 + - uid: 19390 + components: + - type: Transform + pos: 45.21345,-20.209373 + parent: 2 + - uid: 19391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.709683,15.424702 + parent: 2 + - uid: 19392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.71518,-46.228798 + parent: 2 + - uid: 19393 + components: + - type: Transform + pos: 12.668963,33.216217 + parent: 2 + - uid: 19394 + components: + - type: Transform + pos: 51.76352,-41.18669 + parent: 2 + - uid: 19395 + components: + - type: Transform + pos: 3.9926043,-61.24858 + parent: 2 + - uid: 19396 + components: + - type: Transform + pos: -8.499119,-55.891342 + parent: 2 + - uid: 19397 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 2 + - uid: 19398 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 2 + - uid: 19399 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 + - uid: 19400 + components: + - type: Transform + pos: 55.5,1.5 + parent: 2 + - uid: 19401 + components: + - type: Transform + pos: 60.5,-7.5 + parent: 2 + - uid: 19402 + components: + - type: Transform + pos: 60.5,-7.5 + parent: 2 + - uid: 19403 + components: + - type: Transform + pos: 64.5,1.5 + parent: 2 + - uid: 19404 + components: + - type: Transform + pos: -60.5,-8.5 + parent: 2 + - uid: 19405 + components: + - type: Transform + pos: -56.5,-8.5 + parent: 2 + - uid: 19406 + components: + - type: Transform + pos: -25.5,-21.5 + parent: 2 + - uid: 19407 + components: + - type: Transform + pos: -34.5,-51.5 + parent: 2 + - uid: 19408 + components: + - type: Transform + pos: 61.5,-15.5 + parent: 2 + - uid: 19409 + components: + - type: Transform + pos: 71.5,-15.5 + parent: 2 + - uid: 19410 + components: + - type: Transform + pos: 57.5,-31.5 + parent: 2 + - uid: 19411 + components: + - type: Transform + pos: 26.706097,-106.16252 + parent: 2 + - uid: 19412 + components: + - type: Transform + pos: 8.434139,-15.427176 + parent: 2 + - uid: 19413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.71843,17.122486 + parent: 2 + - uid: 19414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.861015,-34.229317 + parent: 2 + - uid: 19415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.334623,-34.209282 + parent: 2 + - uid: 19416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.18885,-31.219593 + parent: 2 + - uid: 19417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.241966,-19.534761 + parent: 2 + - uid: 19418 + components: + - type: Transform + pos: 36.64811,-36.41925 + parent: 2 + - uid: 19419 + components: + - type: Transform + pos: 13.984291,39.80229 + parent: 2 + - uid: 19420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.229616,31.806864 + parent: 2 +- proto: PercentileDie + entities: + - uid: 19421 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - uid: 19422 + components: + - type: Transform + pos: 56.5,3.5000002 + parent: 2 + - uid: 19423 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 +- proto: PetRockCarrier + entities: + - uid: 19424 + components: + - type: Transform + pos: -28.464132,-25.920338 + parent: 2 + - uid: 19425 + components: + - type: Transform + pos: -10.876947,-14.379839 + parent: 2 +- proto: PhoneInstrument + entities: + - uid: 19426 + components: + - type: Transform + pos: 6.0777926,-18.41155 + parent: 2 + - uid: 19427 + components: + - type: Transform + pos: -11.703137,-21.117882 + parent: 2 + - uid: 19428 + components: + - type: Transform + pos: 27.481524,-83.38469 + parent: 2 + - uid: 19429 + components: + - type: Transform + pos: 1.6921444,-61.266052 + parent: 2 + - uid: 19430 + components: + - type: Transform + pos: -32.692986,-33.073654 + parent: 2 + - uid: 19431 + components: + - type: Transform + pos: 16.68672,39.719643 + parent: 2 +- proto: PianoInstrument + entities: + - uid: 19432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-1.5 + parent: 2 + - uid: 19433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,24.5 + parent: 2 +- proto: PillTricordrazine + entities: + - uid: 19434 + components: + - type: Transform + pos: 5.744059,-6.501814 + parent: 2 +- proto: PinpointerNuclear + entities: + - uid: 19435 + components: + - type: Transform + pos: -29.516947,4.9344606 + parent: 2 +- proto: PlantBag + entities: + - uid: 19436 + components: + - type: Transform + pos: 42.513893,-0.4112146 + parent: 2 +- proto: PlaqueAtmos + entities: + - uid: 19437 + components: + - type: Transform + pos: 3.5,-46.5 + parent: 2 +- proto: PlasmaCanister + entities: + - uid: 19438 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 2 + - uid: 19439 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 2 + - uid: 19440 + components: + - type: Transform + pos: 18.5,-40.5 + parent: 2 + - uid: 19441 + components: + - type: Transform + pos: 62.5,-33.5 + parent: 2 + - uid: 19442 + components: + - type: Transform + pos: 59.5,-36.5 + parent: 2 + - uid: 19443 + components: + - type: Transform + pos: 14.5,-40.5 + parent: 2 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 19444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,40.5 + parent: 2 + - uid: 19445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,40.5 + parent: 2 + - uid: 19446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,40.5 + parent: 2 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 19447 + components: + - type: Transform + pos: -42.5,-27.5 + parent: 2 + - uid: 19448 + components: + - type: Transform + pos: -61.5,-21.5 + parent: 2 + - uid: 19449 + components: + - type: Transform + pos: 2.5,-42.5 + parent: 2 + - uid: 19450 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - uid: 19451 + components: + - type: Transform + pos: -44.5,-27.5 + parent: 2 + - uid: 19452 + components: + - type: Transform + pos: -42.5,-31.5 + parent: 2 + - uid: 19453 + components: + - type: Transform + pos: -44.5,-31.5 + parent: 2 +- proto: PlasticFlapsClear + entities: + - uid: 19454 + components: + - type: Transform + pos: 76.5,-21.5 + parent: 2 +- proto: Plunger + entities: + - uid: 19455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.24547,-5.522331 + parent: 2 +- proto: PlushieHolocarp + entities: + - uid: 19456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.821857,-42.67826 + parent: 2 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushieLamp + entities: + - uid: 19457 + components: + - type: Transform + pos: 44.578045,-62.22757 + parent: 2 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushiePenguin + entities: + - uid: 19458 + components: + - type: MetaData + desc: Я использую Arch!!! + name: плюшевый пингвин + - type: Transform + pos: 10.531286,40.51229 + parent: 2 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} + - uid: 19459 + components: + - type: MetaData + desc: Я использую Arch!!! + name: плюшевый пингвин + - type: Transform + pos: 74.81925,-35.53076 + parent: 2 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushieRGBee + entities: + - uid: 19460 + components: + - type: Transform + pos: -21.53196,-58.55052 + parent: 2 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PlushieRouny + entities: + - uid: 19461 + components: + - type: MetaData + desc: '"РУНИ, СОСИ МОЙ ЧЛЕН!" - Неизвестный морской пехотинец.' + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.6328115,9.692904 + parent: 2 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: PortableFlasher + entities: + - uid: 19462 + components: + - type: Transform + pos: 4.5,35.5 + parent: 2 + - uid: 19463 + components: + - type: Transform + pos: 3.5,35.5 + parent: 2 +- proto: PortableGeneratorJrPacman + entities: + - uid: 19464 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 2 + - uid: 19465 + components: + - type: Transform + pos: 51.5,-20.5 + parent: 2 + - uid: 19466 + components: + - type: Transform + pos: -25.5,-70.5 + parent: 2 + - uid: 19467 + components: + - type: Transform + pos: 20.5,21.5 + parent: 2 +- proto: PortableGeneratorJrPacmanMachineCircuitboard + entities: + - uid: 19468 + components: + - type: Transform + pos: -6.383251,-35.344765 + parent: 2 +- proto: PortableGeneratorPacman + entities: + - uid: 19469 + components: + - type: Transform + pos: -67.5,14.5 + parent: 2 + - uid: 19470 + components: + - type: Transform + pos: -10.5,7.5 + parent: 2 +- proto: PortableGeneratorPacmanMachineCircuitboard + entities: + - uid: 19471 + components: + - type: Transform + pos: -6.555126,-35.626015 + parent: 2 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 19472 + components: + - type: Transform + pos: 34.5,-92.5 + parent: 2 + - uid: 19473 + components: + - type: Transform + pos: -11.5,-61.5 + parent: 2 +- proto: PortableScrubber + entities: + - uid: 19474 + components: + - type: Transform + pos: 23.5,-95.5 + parent: 2 + - uid: 19475 + components: + - type: Transform + pos: 77.5,-32.5 + parent: 2 + - uid: 19476 + components: + - type: Transform + pos: 77.5,-33.5 + parent: 2 + - uid: 19477 + components: + - type: Transform + pos: 77.5,-34.5 + parent: 2 + - uid: 19478 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 2 + - uid: 19479 + components: + - type: Transform + pos: 1.5,-49.5 + parent: 2 + - uid: 19480 + components: + - type: Transform + pos: 1.5,-48.5 + parent: 2 + - uid: 19481 + components: + - type: Transform + pos: 15.5,-54.5 + parent: 2 + - uid: 19482 + components: + - type: Transform + pos: 14.5,-54.5 + parent: 2 + - uid: 19483 + components: + - type: Transform + pos: 13.5,-54.5 + parent: 2 + - uid: 19484 + components: + - type: Transform + pos: 22.5,-91.5 + parent: 2 + - uid: 19485 + components: + - type: Transform + pos: 63.5,-37.5 + parent: 2 +- proto: Portafib + entities: + - uid: 11306 + components: + - type: Transform + parent: 11301 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 19486 + components: + - type: Transform + pos: 6.5,-50.5 + parent: 2 + - uid: 19487 + components: + - type: Transform + pos: -19.5,41.5 + parent: 2 +- proto: PosterContrabandBountyHunters + entities: + - uid: 19488 + components: + - type: Transform + pos: -18.5,49.5 + parent: 2 +- proto: PosterContrabandClown + entities: + - uid: 19489 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 +- proto: PosterContrabandDonk + entities: + - uid: 19490 + components: + - type: MetaData + desc: 'DONK CO. ФИРМЕННАЯ ЕДА ИЗ МИКРОВОЛНОВКИ: СДЕЛАНО ГОЛОДАЮЩИМИ СТУДЕНТАМИ, ДЛЯ ГОЛОДАЮЩИХ СТУДЕНТОВ.' + name: DONK CO. ФИРМЕННАЯ ЕДА ИЗ МИКРОВОЛНОВКИ + - type: Transform + pos: 33.5,-22.5 + parent: 2 +- proto: PosterContrabandDonutCorp + entities: + - uid: 19491 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 2 +- proto: PosterContrabandEAT + entities: + - uid: 19492 + components: + - type: Transform + pos: 40.5,-10.5 + parent: 2 + - uid: 19493 + components: + - type: Transform + pos: -34.5,-44.5 + parent: 2 +- proto: PosterContrabandFreeDrone + entities: + - uid: 19494 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 2 +- proto: PosterContrabandFreeTonto + entities: + - uid: 19495 + components: + - type: Transform + pos: -11.5,46.5 + parent: 2 +- proto: PosterContrabandGreyTide + entities: + - uid: 19496 + components: + - type: Transform + pos: 41.5,-69.5 + parent: 2 +- proto: PosterContrabandHackingGuide + entities: + - uid: 19497 + components: + - type: MetaData + desc: Этот плакат подробно описывает внутреннюю работу стандартных воздушных шлюзов Nanotrasen. Удивительно, но оно всё ещё актуально. + - type: Transform + pos: -38.5,5.5 + parent: 2 +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 19498 + components: + - type: Transform + pos: -13.5,-67.5 + parent: 2 +- proto: PosterContrabandInterdyne + entities: + - uid: 19499 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 +- proto: PosterContrabandNuclearDeviceInformational + entities: + - uid: 19500 + components: + - type: Transform + pos: -34.5,5.5 + parent: 2 +- proto: PosterContrabandSyndicateRecruitment + entities: + - uid: 19501 + components: + - type: Transform + pos: -22.5,49.5 + parent: 2 +- proto: PosterContrabandTools + entities: + - uid: 19502 + components: + - type: Transform + pos: -41.5,5.5 + parent: 2 +- proto: PosterLegit12Gauge + entities: + - uid: 19503 + components: + - type: Transform + pos: -3.5,36.5 + parent: 2 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 19504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-35.5 + parent: 2 + - uid: 19505 + components: + - type: Transform + pos: 28.5,-27.5 + parent: 2 + - uid: 19506 + components: + - type: Transform + pos: 37.5,-47.5 + parent: 2 +- proto: PosterLegitBlessThisSpess + entities: + - uid: 19507 + components: + - type: Transform + pos: -6.5,-27.5 + parent: 2 +- proto: PosterLegitBuild + entities: + - uid: 19508 + components: + - type: Transform + pos: 2.5,-50.5 + parent: 2 +- proto: PosterLegitChknDnnr + entities: + - uid: 19509 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 +- proto: PosterLegitDickGumshue + entities: + - uid: 19510 + components: + - type: Transform + pos: 43.5,-64.5 + parent: 2 +- proto: PosterLegitDoNotQuestion + entities: + - uid: 19511 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 2 +- proto: PosterLegitFruitBowl + entities: + - uid: 19512 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 2 +- proto: PosterLegitLoveIan + entities: + - uid: 19513 + components: + - type: Transform + pos: -10.5,-28.5 + parent: 2 +- proto: PosterLegitMime + entities: + - uid: 19514 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 19515 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 19516 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 19517 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 19518 + components: + - type: Transform + pos: -28.5,5.5 + parent: 2 + - uid: 19519 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 + - uid: 19520 + components: + - type: Transform + pos: -12.5,-27.5 + parent: 2 +- proto: PosterLegitNoERP + entities: + - uid: 19521 + components: + - type: Transform + pos: -22.5,46.5 + parent: 2 +- proto: PosterLegitObey + entities: + - uid: 19522 + components: + - type: Transform + pos: -4.5,46.5 + parent: 2 +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 19523 + components: + - type: Transform + pos: 9.5,-63.5 + parent: 2 +- proto: PosterLegitSafetyMothDelam + entities: + - uid: 19524 + components: + - type: MetaData + desc: Этот информационный плакат использует Safety Moth™, чтобы рассказать зрителям о необходимости прятаться в шкафах, когда кристалл суперматерии дестабилизируется чтобы избежать галлюцинаций. Эвакуация может быть лучшей стратегией. + name: Мотылек безопасности - Меры предосторожности при дестабилизации + - type: Transform + pos: -14.5,-6.5 + parent: 2 +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 19525 + components: + - type: MetaData + desc: Этот информационный плакат с использованием Safety Moth™ информирует зрителей о необходимости помочь раненым/погибшим членам экипажа с помощью их/своего инъектора эпинефрина. «Предотвратите гниение органов с помощью одного простого приема!» + name: Мотылек безопасности - Эпинефрин + - type: Transform + pos: 34.5,-27.5 + parent: 2 +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 19526 + components: + - type: MetaData + desc: Этот информационный плакат использует Safety Moth™, чтобы рассказать зрителям о необходимости носить защитные каски в местах, требующих повышенной осторожности. «Это как лампа для вашей головы!» + name: Мотылек безопасности - Каски + - type: Transform + pos: -3.5,-65.5 + parent: 2 +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 19527 + components: + - type: MetaData + desc: На этом информационном плакате Safety Moth™ рассказывается о том, что перед приготовлением метамфетамина необходимо получить разрешение CMO. «Держитесь ближе к заданной температуре и никогда не превышайте ее!» ...Вы никогда не должны делать это. + name: Мотылек безопасности - Метамфетамин + - type: Transform + pos: 17.5,-19.5 + parent: 2 +- proto: PosterLegitSafetyReport + entities: + - uid: 19528 + components: + - type: Transform + pos: -10.5,50.5 + parent: 2 +- proto: PosterLegitSecWatch + entities: + - uid: 19529 + components: + - type: Transform + pos: -10.5,53.5 + parent: 2 +- proto: PosterLegitStateLaws + entities: + - uid: 19530 + components: + - type: Transform + pos: -7.5,40.5 + parent: 2 +- proto: PosterLegitWorkForAFuture + entities: + - uid: 19531 + components: + - type: Transform + pos: 54.5,-32.5 + parent: 2 + - uid: 19532 + components: + - type: Transform + pos: -3.5,52.5 + parent: 2 +- proto: PotatoSeeds + entities: + - uid: 19533 + components: + - type: Transform + pos: 2.9625869,51.52356 + parent: 2 + - uid: 19534 + components: + - type: Transform + pos: 46.357643,1.5248063 + parent: 2 +- proto: PottedPlant10 + entities: + - uid: 19535 + components: + - type: Transform + pos: 52.5,-8.5 + parent: 2 + - uid: 19536 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 2 +- proto: PottedPlant11 + entities: + - uid: 19537 + components: + - type: Transform + pos: 60.5,-45.5 + parent: 2 +- proto: PottedPlant14 + entities: + - uid: 19538 + components: + - type: Transform + pos: 64.5,-0.5 + parent: 2 +- proto: PottedPlant16 + entities: + - uid: 19539 + components: + - type: Transform + pos: -12.5,34.5 + parent: 2 +- proto: PottedPlant17 + entities: + - uid: 19540 + components: + - type: Transform + pos: -22.5,-71.5 + parent: 2 + - uid: 19541 + components: + - type: Transform + pos: -3.5,-57.5 + parent: 2 +- proto: PottedPlant18 + entities: + - uid: 19542 + components: + - type: Transform + pos: 38.285923,-60.528755 + parent: 2 +- proto: PottedPlant21 + entities: + - uid: 19543 + components: + - type: Transform + pos: 40.5,-31.5 + parent: 2 + - uid: 19544 + components: + - type: Transform + pos: 34.5,-51.5 + parent: 2 +- proto: PottedPlant22 + entities: + - uid: 19545 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 2 +- proto: PottedPlant24 + entities: + - uid: 19546 + components: + - type: Transform + pos: 34.5,-55.5 + parent: 2 +- proto: PottedPlant27 + entities: + - uid: 19547 + components: + - type: Transform + pos: -23.485977,-34.725426 + parent: 2 +- proto: PottedPlant29 + entities: + - uid: 19548 + components: + - type: Transform + pos: 47.533268,-22.74141 + parent: 2 + - uid: 19549 + components: + - type: Transform + pos: 43.5,-63.5 + parent: 2 +- proto: PottedPlant5 + entities: + - uid: 19550 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 2 +- proto: PottedPlant6 + entities: + - uid: 19551 + components: + - type: Transform + pos: 27.518597,-87.763794 + parent: 2 +- proto: PottedPlantBioluminscent + entities: + - uid: 19552 + components: + - type: Transform + pos: 42.5,-36.5 + parent: 2 +- proto: PottedPlantRandom + entities: + - uid: 19553 + components: + - type: Transform + pos: 61.5,-47.5 + parent: 2 + - uid: 19554 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 19555 + components: + - type: Transform + pos: -5.5,-57.5 + parent: 2 + - uid: 19556 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 2 + - uid: 19557 + components: + - type: Transform + pos: 27.5,15.5 + parent: 2 + - uid: 19558 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - uid: 19559 + components: + - type: Transform + pos: 34.5,-40.5 + parent: 2 + - uid: 19560 + components: + - type: Transform + pos: -14.5,-69.5 + parent: 2 + - uid: 19561 + components: + - type: Transform + pos: 8.5,39.5 + parent: 2 + - uid: 19562 + components: + - type: Transform + pos: 10.5,28.5 + parent: 2 + - uid: 19563 + components: + - type: Transform + pos: 6.5,32.5 + parent: 2 + - uid: 19564 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 19565 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 19566 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 19567 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 19568 + components: + - type: Transform + pos: 40.5,-11.5 + parent: 2 + - uid: 19569 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 2 + - uid: 19570 + components: + - type: Transform + pos: 77.5,-15.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 19571 + components: + - type: Transform + pos: 59.5,-10.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 19572 + components: + - type: Transform + pos: 73.5,-10.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 19573 + components: + - type: Transform + pos: 63.5,-10.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - uid: 19574 + components: + - type: Transform + pos: -58.5,-11.5 + parent: 2 + - uid: 19575 + components: + - type: Transform + pos: -22.5,-27.5 + parent: 2 + - uid: 19576 + components: + - type: Transform + pos: 9.5,-64.5 + parent: 2 + - uid: 19577 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 2 + - uid: 19578 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 2 + - uid: 19579 + components: + - type: Transform + pos: 74.5,5.5 + parent: 2 + - uid: 19580 + components: + - type: Transform + pos: 73.5,0.5 + parent: 2 + - uid: 19581 + components: + - type: Transform + pos: 73.5,3.5 + parent: 2 + - uid: 19582 + components: + - type: Transform + pos: 73.5,-5.5 + parent: 2 + - uid: 19583 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 2 + - uid: 19584 + components: + - type: Transform + pos: -8.5,39.5 + parent: 2 + - uid: 19585 + components: + - type: Transform + pos: -9.5,50.5 + parent: 2 + - uid: 19586 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 2 + - uid: 19587 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 2 + - uid: 19588 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 2 + - uid: 19589 + components: + - type: Transform + pos: -33.5,-29.5 + parent: 2 + - uid: 19590 + components: + - type: Transform + pos: -78.5,10.5 + parent: 2 + - uid: 19591 + components: + - type: Transform + pos: -69.5,-5.5 + parent: 2 + - uid: 19592 + components: + - type: Transform + pos: -65.5,-10.5 + parent: 2 + - uid: 19593 + components: + - type: Transform + pos: -73.5,-16.5 + parent: 2 + - uid: 19594 + components: + - type: Transform + pos: -53.5,1.5 + parent: 2 + - uid: 19595 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 + - uid: 19596 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 2 + - uid: 19597 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - uid: 19598 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 +- proto: PowerCellHigh + entities: + - uid: 1272 + components: + - type: Transform + parent: 1270 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1273 + components: + - type: Transform + parent: 1270 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1280 + components: + - type: Transform + parent: 1278 + - type: Physics + canCollide: False + - type: PointLight + - type: InsideEntityStorage + - uid: 1281 + components: + - type: Transform + parent: 1278 + - type: Physics + canCollide: False + - type: PointLight + - type: InsideEntityStorage + - uid: 1288 + components: + - type: Transform + parent: 1286 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: PointLight + - type: InsideEntityStorage + - uid: 1289 + components: + - type: Transform + parent: 1286 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: PointLight + - type: InsideEntityStorage + - uid: 17576 + components: + - type: Transform + parent: 17573 + - type: Physics + canCollide: False + - type: PointLight + - type: InsideEntityStorage + - uid: 17581 + components: + - type: Transform + parent: 17578 + - type: Physics + canCollide: False + - type: PointLight + - type: InsideEntityStorage + - uid: 17586 + components: + - type: Transform + parent: 17583 + - type: Physics + canCollide: False + - type: PointLight + - type: InsideEntityStorage + - uid: 19599 + components: + - type: Transform + pos: -51.15172,-4.975456 + parent: 2 + - type: PointLight + - uid: 19600 + components: + - type: Transform + pos: 43.986732,-40.538414 + parent: 2 + - type: PointLight + - uid: 19601 + components: + - type: Transform + pos: 9.314255,35.027946 + parent: 2 + - type: PointLight + - uid: 19602 + components: + - type: Transform + pos: 3.9769797,-61.576706 + parent: 2 + - type: PointLight + - uid: 19603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.221723,31.361197 + parent: 2 + - type: PointLight + - uid: 19604 + components: + - type: Transform + pos: -51.15172,-4.850456 + parent: 2 + - type: PointLight + - uid: 19605 + components: + - type: Transform + pos: 14.062416,39.474167 + parent: 2 + - type: PointLight +- proto: PowerCellMedium + entities: + - uid: 19606 + components: + - type: Transform + pos: -1.007745,-61.525032 + parent: 2 + - type: PointLight +- proto: PowerCellMediumPrinted + entities: + - uid: 11365 + components: + - type: Transform + pos: -16.384808,24.627935 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 19607 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 19608 + components: + - type: Transform + pos: 9.5,35.5 + parent: 2 + - uid: 19609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-18.5 + parent: 2 + - uid: 19610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-23.5 + parent: 2 + - uid: 19611 + components: + - type: Transform + pos: 8.5,24.5 + parent: 2 + - uid: 19612 + components: + - type: Transform + pos: -17.5,34.5 + parent: 2 + - uid: 19613 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 + - uid: 19614 + components: + - type: Transform + pos: -67.5,12.5 + parent: 2 + - uid: 19615 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 19616 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 2 + - uid: 19617 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 + - uid: 19618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-21.5 + parent: 2 + - uid: 19619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,34.5 + parent: 2 + - uid: 19620 + components: + - type: Transform + pos: -51.5,-4.5 + parent: 2 + - uid: 19621 + components: + - type: Transform + pos: -39.5,-6.5 + parent: 2 + - uid: 19622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-69.5 + parent: 2 + - uid: 19623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-30.5 + parent: 2 + - uid: 19624 + components: + - type: Transform + pos: -0.5,-61.5 + parent: 2 + - uid: 19625 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 2 + - uid: 19626 + components: + - type: Transform + pos: -21.5,-13.5 + parent: 2 + - uid: 19627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-55.5 + parent: 2 + - uid: 19628 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - uid: 19629 + components: + - type: Transform + pos: -20.5,-40.5 + parent: 2 + - uid: 19630 + components: + - type: Transform + pos: 74.5,-16.5 + parent: 2 + - uid: 19631 + components: + - type: Transform + pos: 69.5,-29.5 + parent: 2 + - uid: 19632 + components: + - type: Transform + pos: 32.5,-88.5 + parent: 2 + - uid: 19633 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 2 + - uid: 19634 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 2 + - uid: 19635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-53.5 + parent: 2 + - uid: 19636 + components: + - type: Transform + pos: 77.5,-26.5 + parent: 2 + - uid: 19637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-29.5 + parent: 2 + - uid: 19638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-29.5 + parent: 2 + - uid: 19639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-26.5 + parent: 2 + - uid: 19640 + components: + - type: Transform + pos: -16.5,24.5 + parent: 2 + - uid: 19641 + components: + - type: Transform + pos: 44.5,-40.5 + parent: 2 + - uid: 19642 + components: + - type: Transform + pos: 45.5,-34.5 + parent: 2 + - uid: 19643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,34.5 + parent: 2 + - uid: 19644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,37.5 + parent: 2 + - uid: 19645 + components: + - type: Transform + pos: -58.5,5.5 + parent: 2 + - uid: 19646 + components: + - type: Transform + pos: -26.5,-29.5 + parent: 2 + - uid: 19647 + components: + - type: Transform + pos: -19.5,2.5 + parent: 2 + - uid: 19648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,30.5 + parent: 2 + - uid: 19649 + components: + - type: Transform + pos: 35.5,-43.5 + parent: 2 + - uid: 19650 + components: + - type: Transform + pos: -37.5,2.5 + parent: 2 + - uid: 19651 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 2 + - uid: 19652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-65.5 + parent: 2 + - uid: 19653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-74.5 + parent: 2 + - uid: 19654 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 2 +- proto: PowerCellSmall + entities: + - uid: 19655 + components: + - type: Transform + pos: -2.3686574,-25.408203 + parent: 2 + - type: PointLight +- proto: PowerCellSmallPrinted + entities: + - uid: 19656 + components: + - type: Transform + pos: -39.373257,-6.4071956 + parent: 2 +- proto: PowerDrill + entities: + - uid: 1274 + components: + - type: Transform + parent: 1270 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1282 + components: + - type: Transform + parent: 1278 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1290 + components: + - type: Transform + parent: 1286 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11178 + components: + - type: Transform + parent: 11175 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Poweredlight + entities: + - uid: 19657 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 19658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,24.5 + parent: 2 + - uid: 19659 + components: + - type: Transform + pos: 43.5,-45.5 + parent: 2 + - uid: 19660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,19.5 + parent: 2 + - uid: 19661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-11.5 + parent: 2 + - uid: 19662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,4.5 + parent: 2 + - uid: 19663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-29.5 + parent: 2 + - uid: 19664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,38.5 + parent: 2 + - uid: 19665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-27.5 + parent: 2 + - uid: 19666 + components: + - type: Transform + pos: 44.5,-42.5 + parent: 2 + - uid: 19667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-6.5 + parent: 2 + - uid: 19668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,31.5 + parent: 2 + - uid: 19669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-9.5 + parent: 2 + - uid: 19670 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 2 + - uid: 19671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,37.5 + parent: 2 + - uid: 19672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,39.5 + parent: 2 + - uid: 19673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,16.5 + parent: 2 + - uid: 19674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-1.5 + parent: 2 + - uid: 19675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-15.5 + parent: 2 + - uid: 19676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,29.5 + parent: 2 + - uid: 19677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-24.5 + parent: 2 + - uid: 19678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-13.5 + parent: 2 + - uid: 19679 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 2 + - uid: 19680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-47.5 + parent: 2 + - uid: 19681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 2 + - uid: 19682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,39.5 + parent: 2 + - uid: 19683 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 2 + - uid: 19684 + components: + - type: Transform + pos: -18.5,20.5 + parent: 2 + - uid: 19685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,35.5 + parent: 2 + - uid: 19686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-6.5 + parent: 2 + - uid: 19687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-6.5 + parent: 2 + - uid: 19688 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 + - uid: 19689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,26.5 + parent: 2 + - uid: 19690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-36.5 + parent: 2 + - uid: 19691 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 2 + - uid: 19692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-25.5 + parent: 2 + - uid: 19693 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 2 + - uid: 19694 + components: + - type: Transform + pos: 44.5,-38.5 + parent: 2 + - uid: 19695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,33.5 + parent: 2 + - uid: 19696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-73.5 + parent: 2 + - uid: 19697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-31.5 + parent: 2 + - uid: 19698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-35.5 + parent: 2 + - uid: 19699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 2 + - uid: 19700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-22.5 + parent: 2 + - uid: 19701 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 2 + - uid: 19702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-0.5 + parent: 2 + - uid: 19703 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - uid: 19704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 2 + - uid: 19705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-6.5 + parent: 2 + - uid: 19706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-3.5 + parent: 2 + - uid: 19707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-36.5 + parent: 2 + - uid: 19708 + components: + - type: Transform + pos: -5.5,41.5 + parent: 2 + - uid: 19709 + components: + - type: Transform + pos: 44.5,-51.5 + parent: 2 + - uid: 19710 + components: + - type: Transform + pos: -13.5,-49.5 + parent: 2 + - uid: 19711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-36.5 + parent: 2 + - uid: 19712 + components: + - type: Transform + pos: -76.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19713 + components: + - type: Transform + pos: 10.5,28.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19714 + components: + - type: Transform + pos: 17.5,-70.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-26.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19720 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-19.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19726 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19729 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19733 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-31.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,26.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19741 + components: + - type: Transform + pos: 5.5,28.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19742 + components: + - type: Transform + pos: 15.5,35.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,34.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,30.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19745 + components: + - type: Transform + pos: 23.5,42.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,34.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19750 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19753 + components: + - type: Transform + pos: 46.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19756 + components: + - type: Transform + pos: 71.5,6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19757 + components: + - type: Transform + pos: 64.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19758 + components: + - type: Transform + pos: 71.5,-1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19761 + components: + - type: Transform + pos: 57.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19766 + components: + - type: Transform + pos: 63.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19767 + components: + - type: Transform + pos: 77.5,-1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,-12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19772 + components: + - type: Transform + pos: -9.5,9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19774 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19777 + components: + - type: Transform + pos: -69.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19778 + components: + - type: Transform + pos: -69.5,10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19779 + components: + - type: Transform + pos: -75.5,10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19783 + components: + - type: Transform + pos: -65.5,-13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19787 + components: + - type: Transform + pos: -62.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19790 + components: + - type: Transform + pos: -48.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19791 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19792 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,19.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19797 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19798 + components: + - type: Transform + pos: -3.5,21.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,19.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19800 + components: + - type: Transform + pos: 73.5,-12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19801 + components: + - type: Transform + pos: 60.5,-12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19802 + components: + - type: Transform + pos: 54.5,-12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19805 + components: + - type: Transform + pos: 41.5,-12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19806 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19807 + components: + - type: Transform + pos: 36.5,-22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-23.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19810 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19813 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19814 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-21.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19819 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-31.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19821 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19822 + components: + - type: Transform + pos: -11.5,-29.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-31.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-21.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19837 + components: + - type: Transform + pos: -57.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19838 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-23.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19841 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-23.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19843 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-59.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19845 + components: + - type: Transform + pos: -7.5,-33.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-39.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-34.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-48.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-55.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-53.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-57.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19852 + components: + - type: Transform + pos: 5.5,-40.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-48.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-51.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-51.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19857 + components: + - type: Transform + pos: 14.5,-54.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19858 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19859 + components: + - type: Transform + pos: 17.5,-40.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19860 + components: + - type: Transform + pos: 21.5,-40.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-58.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-58.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-73.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-77.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-77.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19866 + components: + - type: Transform + pos: -6.5,-69.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19867 + components: + - type: Transform + pos: 5.5,-69.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19868 + components: + - type: Transform + pos: -0.5,-69.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19869 + components: + - type: Transform + pos: -0.5,-76.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-72.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19871 + components: + - type: Transform + pos: 3.5,-51.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-56.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-65.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19874 + components: + - type: Transform + pos: 2.5,-65.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19875 + components: + - type: Transform + pos: -1.5,-61.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19876 + components: + - type: Transform + pos: -6.5,-61.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19877 + components: + - type: Transform + pos: -12.5,-61.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-67.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19879 + components: + - type: Transform + pos: -24.5,-64.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-69.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19881 + components: + - type: Transform + pos: -16.5,-68.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-29.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-74.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19884 + components: + - type: Transform + pos: 12.5,-70.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19887 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19888 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19892 + components: + - type: Transform + pos: 40.5,-31.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-44.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-49.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-52.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-59.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-59.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19898 + components: + - type: Transform + pos: 41.5,-55.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-48.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19901 + components: + - type: Transform + pos: 36.5,-38.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-43.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-30.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-29.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-34.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-33.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19910 + components: + - type: Transform + pos: 50.5,-26.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19911 + components: + - type: Transform + pos: 34.5,-34.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-25.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-22.5 + parent: 2 + - uid: 19914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-26.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-23.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-30.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-27.5 + parent: 2 + - uid: 19921 + components: + - type: Transform + pos: 60.5,-26.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19922 + components: + - type: Transform + pos: 68.5,-22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-35.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19927 + components: + - type: Transform + pos: 78.5,-23.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-34.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-42.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-53.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19931 + components: + - type: Transform + pos: 73.5,-49.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,-45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19933 + components: + - type: Transform + pos: 73.5,-43.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19934 + components: + - type: Transform + pos: 77.5,-32.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-38.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-38.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-31.5 + parent: 2 + - uid: 19940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-40.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-31.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19942 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-21.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19945 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19946 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-34.5 + parent: 2 + - uid: 19948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-25.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,35.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19952 + components: + - type: Transform + pos: 30.5,-27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19953 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19954 + components: + - type: Transform + pos: 57.5,-16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19955 + components: + - type: Transform + pos: 54.5,-26.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-30.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19957 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19959 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19960 + components: + - type: Transform + pos: -19.5,45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,50.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19962 + components: + - type: Transform + pos: -14.5,45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19963 + components: + - type: Transform + pos: -5.5,45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19964 + components: + - type: Transform + pos: -9.5,41.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,49.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19966 + components: + - type: Transform + pos: -1.5,51.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19967 + components: + - type: Transform + pos: 3.5,51.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19968 + components: + - type: Transform + pos: -8.5,53.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19969 + components: + - type: Transform + pos: -12.5,36.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,36.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,0.5 + parent: 2 + - uid: 19972 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19974 + components: + - type: Transform + pos: 67.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-101.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-97.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-97.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-101.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-109.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-109.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-114.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-114.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 19985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,36.5 + parent: 2 + - uid: 19986 + components: + - type: Transform + pos: 29.5,10.5 + parent: 2 + - uid: 19987 + components: + - type: Transform + pos: 37.5,10.5 + parent: 2 + - uid: 19988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-27.5 + parent: 2 + - uid: 19989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-2.5 + parent: 2 + - uid: 19990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-10.5 + parent: 2 + - uid: 19991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-36.5 + parent: 2 + - uid: 19992 + components: + - type: Transform + pos: 91.5,-23.5 + parent: 2 + - uid: 19993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,40.5 + parent: 2 + - uid: 19994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-33.5 + parent: 2 + - uid: 19995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,3.5 + parent: 2 + - uid: 19996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,3.5 + parent: 2 + - uid: 19997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-39.5 + parent: 2 + - uid: 19998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-51.5 + parent: 2 + - uid: 19999 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 20000 + components: + - type: Transform + pos: 26.5,15.5 + parent: 2 + - uid: 20001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,32.5 + parent: 2 + - uid: 20002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,15.5 + parent: 2 + - uid: 20003 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 20004 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 20005 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 20006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,14.5 + parent: 2 + - uid: 20007 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - uid: 20008 + components: + - type: Transform + pos: 16.5,15.5 + parent: 2 + - uid: 20010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-36.5 + parent: 2 + - uid: 20011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,7.5 + parent: 2 + - uid: 20012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-35.5 + parent: 2 + - uid: 20013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,30.5 + parent: 2 + - uid: 20014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-37.5 + parent: 2 + - uid: 20015 + components: + - type: Transform + pos: -59.5,4.5 + parent: 2 + - uid: 20016 + components: + - type: Transform + pos: 71.5,-33.5 + parent: 2 + - uid: 20017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-41.5 + parent: 2 + - uid: 20018 + components: + - type: Transform + pos: -19.5,8.5 + parent: 2 + - uid: 20019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-20.5 + parent: 2 + - uid: 20020 + components: + - type: Transform + pos: 47.5,-16.5 + parent: 2 + - uid: 20021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-53.5 + parent: 2 + - uid: 20022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,27.5 + parent: 2 + - uid: 20023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,38.5 + parent: 2 + - uid: 20024 + components: + - type: Transform + pos: 33.5,1.5 + parent: 2 + - uid: 20025 + components: + - type: Transform + pos: -18.5,36.5 + parent: 2 + - uid: 20026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,6.5 + parent: 2 + - uid: 20027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,6.5 + parent: 2 + - uid: 20028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,5.5 + parent: 2 + - uid: 20029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,1.5 + parent: 2 + - uid: 20030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-57.5 + parent: 2 + - uid: 20031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-34.5 + parent: 2 + - uid: 20032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-38.5 + parent: 2 + - uid: 20033 + components: + - type: Transform + pos: 85.5,-35.5 + parent: 2 + - uid: 20034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,11.5 + parent: 2 + - uid: 20035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,22.5 + parent: 2 + - uid: 20036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,13.5 + parent: 2 + - uid: 20037 + components: + - type: Transform + pos: -8.5,32.5 + parent: 2 + - uid: 20038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,-30.5 + parent: 2 + - uid: 20039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,-27.5 + parent: 2 + - uid: 20040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-61.5 + parent: 2 + - uid: 20041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-62.5 + parent: 2 +- proto: PoweredLightBlueInterior + entities: + - uid: 20042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,-23.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20047 + components: + - type: Transform + pos: 93.5,-32.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,-56.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20049 + components: + - type: Transform + pos: 80.5,-69.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20050 + components: + - type: Transform + pos: 60.5,-73.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20051 + components: + - type: Transform + pos: 50.5,-69.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-60.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-64.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredlightEmpty + entities: + - uid: 20054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,18.5 + parent: 2 +- proto: PoweredlightLED + entities: + - uid: 20055 + components: + - type: Transform + pos: -34.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20056 + components: + - type: Transform + pos: -28.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,41.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredlightSodium + entities: + - uid: 20060 + components: + - type: Transform + pos: -36.5,-33.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20061 + components: + - type: Transform + pos: -40.5,-33.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PoweredSmallLight + entities: + - uid: 20062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-49.5 + parent: 2 + - uid: 20063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,28.5 + parent: 2 + - uid: 20064 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - uid: 20065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,41.5 + parent: 2 + - uid: 20066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,14.5 + parent: 2 + - uid: 20067 + components: + - type: Transform + pos: 25.5,26.5 + parent: 2 + - uid: 20068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,29.5 + parent: 2 + - uid: 20069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,28.5 + parent: 2 + - uid: 20070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-18.5 + parent: 2 + - uid: 20071 + components: + - type: Transform + pos: -13.5,-76.5 + parent: 2 + - uid: 20072 + components: + - type: Transform + pos: 78.5,-49.5 + parent: 2 + - uid: 20073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-51.5 + parent: 2 + - uid: 20074 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 20075 + components: + - type: Transform + pos: 16.5,3.5 + parent: 2 + - uid: 20076 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 20077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-12.5 + parent: 2 + - uid: 20078 + components: + - type: Transform + pos: 47.5,-42.5 + parent: 2 + - uid: 20079 + components: + - type: Transform + pos: -6.5,9.5 + parent: 2 + - uid: 20080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,13.5 + parent: 2 + - uid: 20081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-50.5 + parent: 2 + - uid: 20082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 2 + - uid: 20083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-44.5 + parent: 2 + - uid: 20084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-11.5 + parent: 2 + - uid: 20085 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 2 + - uid: 20086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-36.5 + parent: 2 + - uid: 20087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-33.5 + parent: 2 + - uid: 20088 + components: + - type: Transform + pos: 69.5,-59.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-52.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20091 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20092 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20093 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,23.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,23.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20105 + components: + - type: Transform + pos: 62.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20107 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20112 + components: + - type: Transform + pos: 73.5,12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,19.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20123 + components: + - type: Transform + pos: -41.5,22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20124 + components: + - type: Transform + pos: -31.5,24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,19.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20127 + components: + - type: Transform + pos: -60.5,14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20130 + components: + - type: Transform + pos: -55.5,18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20133 + components: + - type: Transform + pos: -46.5,22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20137 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20139 + components: + - type: Transform + pos: -3.5,11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-19.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20141 + components: + - type: Transform + pos: -59.5,-15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20145 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20146 + components: + - type: Transform + pos: -42.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-35.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-38.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-33.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20153 + components: + - type: Transform + pos: -32.5,-43.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-48.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20155 + components: + - type: Transform + pos: -14.5,-59.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20156 + components: + - type: Transform + pos: -30.5,-60.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-54.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20158 + components: + - type: Transform + pos: -24.5,-60.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-62.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-73.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-30.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20162 + components: + - type: Transform + pos: -24.5,-49.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-51.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-55.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-58.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-56.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20167 + components: + - type: Transform + pos: -37.5,-60.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-42.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-48.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-73.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-43.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-47.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-51.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-55.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-66.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-66.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-66.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-43.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-61.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20180 + components: + - type: Transform + pos: -19.5,-68.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-28.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20182 + components: + - type: Transform + pos: -43.5,-30.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-52.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-62.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-65.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20187 + components: + - type: Transform + pos: 44.5,-62.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20188 + components: + - type: Transform + pos: 45.5,-70.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-69.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20190 + components: + - type: Transform + pos: 34.5,-59.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-43.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20192 + components: + - type: Transform + pos: 24.5,-60.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-36.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-30.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20195 + components: + - type: Transform + pos: 85.5,-44.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20196 + components: + - type: Transform + pos: 85.5,-47.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,-56.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-64.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-66.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-65.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-71.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-68.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20203 + components: + - type: Transform + pos: 65.5,-55.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20204 + components: + - type: Transform + pos: 85.5,-40.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20205 + components: + - type: Transform + pos: 80.5,-35.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20206 + components: + - type: Transform + pos: 79.5,-19.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-64.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20208 + components: + - type: Transform + pos: 71.5,-39.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20209 + components: + - type: Transform + pos: 74.5,-39.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-57.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-30.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-30.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20214 + components: + - type: Transform + pos: -39.5,-48.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20215 + components: + - type: Transform + pos: 84.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,-11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20218 + components: + - type: Transform + pos: 84.5,-13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,41.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,41.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,47.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,47.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,41.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20226 + components: + - type: Transform + pos: 29.5,-83.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-87.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-90.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-90.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-90.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-81.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20232 + components: + - type: Transform + pos: 26.5,-105.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20233 + components: + - type: Transform + pos: 30.5,-105.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-17.5 + parent: 2 + - uid: 20235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,-17.5 + parent: 2 + - uid: 20236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,-13.5 + parent: 2 + - uid: 20237 + components: + - type: Transform + pos: -80.5,10.5 + parent: 2 + - uid: 20238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,-3.5 + parent: 2 + - uid: 20239 + components: + - type: Transform + pos: 63.5,-39.5 + parent: 2 + - uid: 20240 + components: + - type: Transform + pos: -27.5,-36.5 + parent: 2 + - uid: 20241 + components: + - type: Transform + pos: -11.5,30.5 + parent: 2 + - uid: 20242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,15.5 + parent: 2 + - uid: 20243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 2 + - uid: 20244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-33.5 + parent: 2 + - uid: 20245 + components: + - type: Transform + pos: 12.5,-76.5 + parent: 2 + - uid: 20246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,41.5 + parent: 2 + - uid: 20247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-36.5 + parent: 2 + - uid: 20248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-10.5 + parent: 2 + - uid: 20249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,1.5 + parent: 2 + - uid: 20250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-14.5 + parent: 2 + - uid: 20251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-12.5 + parent: 2 + - uid: 20252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-16.5 + parent: 2 + - uid: 20253 + components: + - type: Transform + pos: 69.5,-55.5 + parent: 2 + - uid: 20254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,7.5 + parent: 2 + - uid: 20255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 2 + - uid: 20256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-59.5 + parent: 2 + - uid: 20257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-45.5 + parent: 2 + - uid: 20258 + components: + - type: Transform + pos: 64.5,-47.5 + parent: 2 +- proto: PoweredSmallLightEmpty + entities: + - uid: 20259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-54.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 20260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-58.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PresentHalloweenRandom + entities: + - uid: 1023 + components: + - type: Transform + pos: 12.534232,24.627775 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: 17.356386,28.539637 + parent: 2 + - uid: 15904 + components: + - type: Transform + pos: 30.894241,15.522142 + parent: 2 + - uid: 17480 + components: + - type: Transform + pos: 33.473663,12.70036 + parent: 2 + - uid: 28176 + components: + - type: Transform + pos: 20.532694,10.476083 + parent: 2 + - uid: 28177 + components: + - type: Transform + pos: 13.439701,14.451378 + parent: 2 + - uid: 28178 + components: + - type: Transform + pos: 17.410118,14.451378 + parent: 2 + - uid: 28179 + components: + - type: Transform + pos: 6.370619,15.490981 + parent: 2 + - uid: 28180 + components: + - type: Transform + pos: 6.357115,12.493682 + parent: 2 + - uid: 28181 + components: + - type: Transform + pos: 6.4246387,9.496382 + parent: 2 + - uid: 28182 + components: + - type: Transform + pos: 23.49024,-5.535775 + parent: 2 + - uid: 28183 + components: + - type: Transform + pos: 19.581161,-9.5233135 + parent: 2 + - uid: 28184 + components: + - type: Transform + pos: -1.4738061,-38.73146 + parent: 2 + - uid: 28185 + components: + - type: Transform + pos: -28.236238,-54.2238 + parent: 2 + - uid: 28186 + components: + - type: Transform + pos: -38.28041,-56.429436 + parent: 2 + - uid: 28187 + components: + - type: Transform + pos: -57.479378,-2.5071793 + parent: 2 + - uid: 28188 + components: + - type: Transform + pos: -70.41565,10.416985 + parent: 2 + - uid: 28189 + components: + - type: Transform + pos: -50.621815,14.52656 + parent: 2 + - uid: 28190 + components: + - type: Transform + pos: -69.65274,-13.712599 + parent: 2 + - uid: 28191 + components: + - type: Transform + pos: -57.538292,-15.890093 + parent: 2 + - uid: 28192 + components: + - type: Transform + pos: -17.657393,8.619431 + parent: 2 + - uid: 28193 + components: + - type: Transform + pos: -5.506363,4.498878 + parent: 2 + - uid: 28194 + components: + - type: Transform + pos: 32.32449,-16.445892 + parent: 2 + - uid: 28195 + components: + - type: Transform + pos: 32.382553,-25.420168 + parent: 2 + - uid: 28196 + components: + - type: Transform + pos: 53.41542,-3.60093 + parent: 2 + - uid: 28197 + components: + - type: Transform + pos: 80.60558,-9.793598 + parent: 2 +- proto: Protolathe + entities: + - uid: 20261 + components: + - type: Transform + pos: 2.5,-53.5 + parent: 2 + - uid: 20262 + components: + - type: Transform + pos: 71.5,-19.5 + parent: 2 + - type: MaterialStorage + materialWhiteList: + - Steel + - Glass + - Plastic + - Wood + - Gold + - uid: 20263 + components: + - type: Transform + pos: 62.5,-19.5 + parent: 2 +- proto: ProtolatheMachineCircuitboard + entities: + - uid: 20264 + components: + - type: Transform + pos: -5.4246707,-37.558456 + parent: 2 +- proto: ProximitySensor + entities: + - uid: 20265 + components: + - type: Transform + pos: 80.10323,-47.224358 + parent: 2 + - uid: 20266 + components: + - type: Transform + pos: 80.41573,-47.302483 + parent: 2 + - uid: 20267 + components: + - type: Transform + pos: 80.13448,-47.536858 + parent: 2 + - uid: 20268 + components: + - type: Transform + pos: 80.41573,-47.568108 + parent: 2 +- proto: PuddleVomit + entities: + - uid: 20269 + components: + - type: Transform + pos: -54.5,14.5 + parent: 2 + - uid: 20270 + components: + - type: Transform + pos: -36.5,-54.5 + parent: 2 + - uid: 20271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-54.5 + parent: 2 + - uid: 20272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-58.5 + parent: 2 +- proto: PumpkinLantern + entities: + - uid: 158 + components: + - type: Transform + pos: 80.32865,-41.60147 + parent: 2 + - uid: 4472 + components: + - type: Transform + pos: 80.74606,-19.482254 + parent: 2 + - uid: 4473 + components: + - type: Transform + pos: 74.60119,-59.143456 + parent: 2 + - uid: 15903 + components: + - type: Transform + pos: -36.45765,23.586351 + parent: 2 + - uid: 15905 + components: + - type: Transform + pos: -56.624386,14.508342 + parent: 2 + - uid: 15907 + components: + - type: Transform + pos: 43.431355,-70.43881 + parent: 2 + - uid: 16973 + components: + - type: Transform + pos: -14.43005,-46.221054 + parent: 2 + - uid: 28175 + components: + - type: Transform + pos: -21.75754,12.441943 + parent: 2 +- proto: PumpkinLanternLarge + entities: + - uid: 17678 + components: + - type: Transform + pos: -25.370611,-53.778236 + parent: 2 + - uid: 28174 + components: + - type: Transform + pos: 32.34425,13.722995 + parent: 2 +- proto: PumpkinLanternSmall + entities: + - uid: 4470 + components: + - type: Transform + pos: 69.47381,-3.278459 + parent: 2 + - uid: 15893 + components: + - type: Transform + pos: 29.463926,-8.33429 + parent: 2 + - uid: 15906 + components: + - type: Transform + pos: -37.189594,-44.465797 + parent: 2 +- proto: Rack + entities: + - uid: 11362 + components: + - type: Transform + pos: -19.5,25.5 + parent: 2 + - uid: 18770 + components: + - type: Transform + pos: -19.5,24.5 + parent: 2 + - uid: 20273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-53.5 + parent: 2 + - uid: 20274 + components: + - type: Transform + pos: -10.5,1.5 + parent: 2 + - uid: 20275 + components: + - type: Transform + pos: -14.5,6.5 + parent: 2 + - uid: 20276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-49.5 + parent: 2 + - uid: 20277 + components: + - type: Transform + pos: -9.5,9.5 + parent: 2 + - uid: 20278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-15.5 + parent: 2 + - uid: 20279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-27.5 + parent: 2 + - uid: 20280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,36.5 + parent: 2 + - uid: 20281 + components: + - type: Transform + pos: 44.5,-38.5 + parent: 2 + - uid: 20282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-55.5 + parent: 2 + - uid: 20283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,18.5 + parent: 2 + - uid: 20284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,22.5 + parent: 2 + - uid: 20285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,41.5 + parent: 2 + - uid: 20286 + components: + - type: Transform + pos: 1.5,51.5 + parent: 2 + - uid: 20287 + components: + - type: Transform + pos: 43.5,-38.5 + parent: 2 + - uid: 20288 + components: + - type: Transform + pos: -2.5,39.5 + parent: 2 + - uid: 20289 + components: + - type: Transform + pos: -5.5,-33.5 + parent: 2 + - uid: 20290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-51.5 + parent: 2 + - uid: 20291 + components: + - type: Transform + pos: -6.5,39.5 + parent: 2 + - uid: 20292 + components: + - type: Transform + pos: 44.5,-34.5 + parent: 2 + - uid: 20293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-10.5 + parent: 2 + - uid: 20294 + components: + - type: Transform + pos: 9.5,-60.5 + parent: 2 + - uid: 20295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,30.5 + parent: 2 + - uid: 20296 + components: + - type: Transform + pos: 9.5,-61.5 + parent: 2 + - uid: 20297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-74.5 + parent: 2 + - uid: 20298 + components: + - type: Transform + pos: 86.5,-40.5 + parent: 2 + - uid: 20299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-31.5 + parent: 2 + - uid: 20300 + components: + - type: Transform + pos: 57.5,-57.5 + parent: 2 + - uid: 20301 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 20302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-32.5 + parent: 2 + - uid: 20303 + components: + - type: Transform + pos: -33.5,4.5 + parent: 2 + - uid: 20304 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 20305 + components: + - type: Transform + pos: 44.5,-25.5 + parent: 2 + - uid: 20306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-4.5 + parent: 2 + - uid: 20308 + components: + - type: Transform + pos: -33.5,3.5 + parent: 2 + - uid: 20309 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 2 + - uid: 20310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-37.5 + parent: 2 + - uid: 20311 + components: + - type: Transform + pos: -19.5,16.5 + parent: 2 + - uid: 20312 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 + - uid: 20313 + components: + - type: Transform + pos: 44.5,-47.5 + parent: 2 + - uid: 20314 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 2 + - uid: 20315 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 2 + - uid: 20316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-51.5 + parent: 2 + - uid: 20317 + components: + - type: Transform + pos: 1.5,33.5 + parent: 2 + - uid: 20318 + components: + - type: Transform + pos: -12.5,47.5 + parent: 2 + - uid: 20319 + components: + - type: Transform + pos: -2.5,38.5 + parent: 2 + - uid: 20320 + components: + - type: Transform + pos: 46.5,1.5 + parent: 2 + - uid: 20321 + components: + - type: Transform + pos: 44.5,-0.5 + parent: 2 + - uid: 20322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-24.5 + parent: 2 + - uid: 20323 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - uid: 20324 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 2 + - uid: 20325 + components: + - type: Transform + pos: -27.5,-38.5 + parent: 2 + - uid: 20326 + components: + - type: Transform + pos: 75.5,-50.5 + parent: 2 + - uid: 20327 + components: + - type: Transform + pos: 75.5,-49.5 + parent: 2 + - uid: 20328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-17.5 + parent: 2 + - uid: 20329 + components: + - type: Transform + pos: -5.5,-37.5 + parent: 2 + - uid: 20330 + components: + - type: Transform + pos: -6.5,-37.5 + parent: 2 + - uid: 20331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-24.5 + parent: 2 + - uid: 20332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-5.5 + parent: 2 + - uid: 20333 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 2 + - uid: 20334 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 2 + - uid: 20335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-13.5 + parent: 2 + - uid: 20336 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 2 + - uid: 20337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-24.5 + parent: 2 + - uid: 20338 + components: + - type: Transform + pos: 26.5,-87.5 + parent: 2 + - uid: 20339 + components: + - type: Transform + pos: 29.5,-83.5 + parent: 2 + - uid: 20340 + components: + - type: Transform + pos: 33.5,-95.5 + parent: 2 + - uid: 20341 + components: + - type: Transform + pos: 48.5,7.5 + parent: 2 + - uid: 20342 + components: + - type: Transform + pos: 24.5,21.5 + parent: 2 + - uid: 20343 + components: + - type: Transform + pos: 20.5,19.5 + parent: 2 + - uid: 20344 + components: + - type: Transform + pos: 27.5,21.5 + parent: 2 + - uid: 20345 + components: + - type: Transform + pos: -44.5,14.5 + parent: 2 + - uid: 20346 + components: + - type: Transform + pos: 25.5,25.5 + parent: 2 + - uid: 20347 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 + - uid: 20348 + components: + - type: Transform + pos: 66.5,6.5 + parent: 2 + - uid: 20349 + components: + - type: Transform + pos: 70.5,12.5 + parent: 2 + - uid: 20350 + components: + - type: Transform + pos: 75.5,12.5 + parent: 2 + - uid: 20351 + components: + - type: Transform + pos: 58.5,19.5 + parent: 2 + - uid: 20352 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 20353 + components: + - type: Transform + pos: 53.5,15.5 + parent: 2 + - uid: 20354 + components: + - type: Transform + pos: 49.5,16.5 + parent: 2 + - uid: 20355 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 20356 + components: + - type: Transform + pos: 48.5,11.5 + parent: 2 + - uid: 20357 + components: + - type: Transform + pos: 47.5,11.5 + parent: 2 + - uid: 20358 + components: + - type: Transform + pos: 48.5,20.5 + parent: 2 + - uid: 20359 + components: + - type: Transform + pos: -48.5,23.5 + parent: 2 + - uid: 20360 + components: + - type: Transform + pos: -46.5,22.5 + parent: 2 + - uid: 20361 + components: + - type: Transform + pos: -45.5,22.5 + parent: 2 + - uid: 20362 + components: + - type: Transform + pos: -45.5,21.5 + parent: 2 + - uid: 20363 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - uid: 20364 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - uid: 20365 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 2 + - uid: 20366 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 2 + - uid: 20367 + components: + - type: Transform + pos: -21.5,-36.5 + parent: 2 + - uid: 20368 + components: + - type: Transform + pos: -21.5,-40.5 + parent: 2 + - uid: 20369 + components: + - type: Transform + pos: -36.5,-62.5 + parent: 2 + - uid: 20370 + components: + - type: Transform + pos: -34.5,-63.5 + parent: 2 + - uid: 20371 + components: + - type: Transform + pos: -31.5,-74.5 + parent: 2 + - uid: 20372 + components: + - type: Transform + pos: -18.5,-64.5 + parent: 2 + - uid: 20373 + components: + - type: Transform + pos: -34.5,-60.5 + parent: 2 + - uid: 20374 + components: + - type: Transform + pos: -18.5,-65.5 + parent: 2 + - uid: 20375 + components: + - type: Transform + pos: -24.5,-43.5 + parent: 2 + - uid: 20376 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 2 + - uid: 20377 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 2 + - uid: 20378 + components: + - type: Transform + pos: -29.5,-45.5 + parent: 2 + - uid: 20379 + components: + - type: Transform + pos: -5.5,-45.5 + parent: 2 + - uid: 20380 + components: + - type: Transform + pos: 15.5,-48.5 + parent: 2 + - uid: 20381 + components: + - type: Transform + pos: 15.5,-34.5 + parent: 2 + - uid: 20382 + components: + - type: Transform + pos: 7.5,-44.5 + parent: 2 + - uid: 20383 + components: + - type: Transform + pos: 47.5,-72.5 + parent: 2 + - uid: 20384 + components: + - type: Transform + pos: 47.5,-71.5 + parent: 2 + - uid: 20385 + components: + - type: Transform + pos: 84.5,-48.5 + parent: 2 + - uid: 20386 + components: + - type: Transform + pos: 82.5,-63.5 + parent: 2 + - uid: 20387 + components: + - type: Transform + pos: 86.5,-27.5 + parent: 2 + - uid: 20388 + components: + - type: Transform + pos: 86.5,-26.5 + parent: 2 + - uid: 20389 + components: + - type: Transform + pos: 43.5,-62.5 + parent: 2 + - uid: 20390 + components: + - type: Transform + pos: -36.5,-48.5 + parent: 2 + - uid: 20391 + components: + - type: Transform + pos: -15.5,34.5 + parent: 2 + - uid: 20392 + components: + - type: Transform + pos: -17.5,51.5 + parent: 2 + - uid: 20393 + components: + - type: Transform + pos: 23.5,-88.5 + parent: 2 + - uid: 20394 + components: + - type: Transform + pos: 34.5,-90.5 + parent: 2 + - uid: 20395 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 2 + - uid: 20396 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 20397 + components: + - type: Transform + pos: -7.5,-37.5 + parent: 2 + - uid: 20398 + components: + - type: Transform + pos: 80.5,-35.5 + parent: 2 + - uid: 20399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,1.5 + parent: 2 + - uid: 20400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-6.5 + parent: 2 + - uid: 20401 + components: + - type: Transform + pos: -8.5,-35.5 + parent: 2 + - uid: 20402 + components: + - type: Transform + pos: -2.5,-64.5 + parent: 2 + - uid: 20403 + components: + - type: Transform + pos: 78.5,-23.5 + parent: 2 + - uid: 20404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-41.5 + parent: 2 + - uid: 20405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-36.5 + parent: 2 + - uid: 20406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-35.5 + parent: 2 + - uid: 20407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 2 + - uid: 20408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-15.5 + parent: 2 + - uid: 20409 + components: + - type: Transform + pos: -26.5,-68.5 + parent: 2 + - uid: 20410 + components: + - type: Transform + pos: -26.5,-67.5 + parent: 2 + - uid: 20411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-41.5 + parent: 2 + - uid: 20412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-41.5 + parent: 2 + - uid: 20413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-36.5 + parent: 2 + - uid: 20414 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 2 + - uid: 20415 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 2 + - uid: 20416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-27.5 + parent: 2 + - uid: 20417 + components: + - type: Transform + pos: -22.5,3.5 + parent: 2 + - uid: 20418 + components: + - type: Transform + pos: -23.5,3.5 + parent: 2 + - uid: 20419 + components: + - type: Transform + pos: -34.5,-18.5 + parent: 2 + - uid: 20420 + components: + - type: Transform + pos: -8.5,-37.5 + parent: 2 + - uid: 20421 + components: + - type: Transform + pos: -30.5,-31.5 + parent: 2 + - uid: 20422 + components: + - type: Transform + pos: 10.5,23.5 + parent: 2 + - uid: 20423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-24.5 + parent: 2 + - uid: 20424 + components: + - type: Transform + pos: -14.5,24.5 + parent: 2 + - uid: 20425 + components: + - type: Transform + pos: 80.5,-43.5 + parent: 2 + - uid: 20426 + components: + - type: Transform + pos: 79.5,-43.5 + parent: 2 + - uid: 20427 + components: + - type: Transform + pos: -65.5,-11.5 + parent: 2 + - uid: 20428 + components: + - type: Transform + pos: -24.5,-31.5 + parent: 2 + - uid: 20429 + components: + - type: Transform + pos: 13.5,37.5 + parent: 2 + - uid: 20430 + components: + - type: Transform + pos: 8.5,40.5 + parent: 2 + - uid: 20431 + components: + - type: Transform + pos: -56.5,3.5 + parent: 2 + - uid: 20432 + components: + - type: Transform + pos: -10.5,-72.5 + parent: 2 + - uid: 20433 + components: + - type: Transform + pos: 39.5,-17.5 + parent: 2 + - uid: 20434 + components: + - type: Transform + pos: -42.5,-9.5 + parent: 2 + - uid: 20435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,36.5 + parent: 2 + - uid: 20436 + components: + - type: Transform + pos: -0.5,35.5 + parent: 2 + - uid: 20437 + components: + - type: Transform + pos: -0.5,39.5 + parent: 2 + - uid: 20438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-26.5 + parent: 2 + - uid: 20439 + components: + - type: Transform + pos: -2.5,35.5 + parent: 2 + - uid: 20441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,31.5 + parent: 2 + - uid: 20442 + components: + - type: Transform + pos: 9.5,36.5 + parent: 2 + - uid: 20443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-21.5 + parent: 2 + - uid: 20444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-22.5 + parent: 2 + - uid: 20445 + components: + - type: Transform + pos: 18.5,5.5 + parent: 2 + - uid: 20446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,2.5 + parent: 2 + - uid: 20447 + components: + - type: Transform + pos: 37.5,-40.5 + parent: 2 + - uid: 20448 + components: + - type: Transform + pos: 68.5,-55.5 + parent: 2 + - uid: 20449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,10.5 + parent: 2 + - uid: 20450 + components: + - type: Transform + pos: -17.5,22.5 + parent: 2 + - uid: 20451 + components: + - type: Transform + pos: -16.5,22.5 + parent: 2 + - uid: 20452 + components: + - type: Transform + pos: 13.5,6.5 + parent: 2 + - uid: 20453 + components: + - type: Transform + pos: 92.5,-29.5 + parent: 2 + - uid: 20454 + components: + - type: Transform + pos: 92.5,-30.5 + parent: 2 + - uid: 20455 + components: + - type: Transform + pos: 7.5,-48.5 + parent: 2 + - uid: 23821 + components: + - type: Transform + pos: 47.5,-31.5 + parent: 2 +- proto: RadiationCollector + entities: + - uid: 20456 + components: + - type: Transform + pos: 7.5,-85.5 + parent: 2 + - uid: 20457 + components: + - type: Transform + pos: 7.5,-86.5 + parent: 2 + - uid: 20458 + components: + - type: Transform + pos: 7.5,-87.5 + parent: 2 + - uid: 20459 + components: + - type: Transform + pos: -8.5,-89.5 + parent: 2 + - uid: 20460 + components: + - type: Transform + pos: 2.5,-80.5 + parent: 2 + - uid: 20461 + components: + - type: Transform + pos: 1.5,-80.5 + parent: 2 + - uid: 20462 + components: + - type: Transform + pos: 0.5,-80.5 + parent: 2 + - uid: 20463 + components: + - type: Transform + pos: -1.5,-80.5 + parent: 2 + - uid: 20464 + components: + - type: Transform + pos: -2.5,-80.5 + parent: 2 + - uid: 20465 + components: + - type: Transform + pos: -3.5,-80.5 + parent: 2 + - uid: 20466 + components: + - type: Transform + pos: -8.5,-90.5 + parent: 2 + - uid: 20467 + components: + - type: Transform + pos: -8.5,-91.5 + parent: 2 + - uid: 20468 + components: + - type: Transform + pos: -26.5,-70.5 + parent: 2 +- proto: RadioHandheld + entities: + - uid: 20469 + components: + - type: Transform + pos: 9.70488,34.996696 + parent: 2 + - uid: 20470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.497088,33.966217 + parent: 2 + - uid: 20471 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 + - uid: 20472 + components: + - type: Transform + pos: 29.481524,-83.494064 + parent: 2 +- proto: RagItem + entities: + - uid: 20473 + components: + - type: Transform + pos: 29.377846,-1.3166616 + parent: 2 +- proto: Railing + entities: + - uid: 20474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - uid: 20475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 2 + - uid: 20476 + components: + - type: Transform + pos: -31.5,-39.5 + parent: 2 + - uid: 20477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 2 + - uid: 20478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 2 + - uid: 20479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 2 + - uid: 20480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 20485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-73.5 + parent: 2 + - uid: 20486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-73.5 + parent: 2 + - uid: 20487 + components: + - type: Transform + pos: -25.5,-56.5 + parent: 2 + - uid: 20488 + components: + - type: Transform + pos: -26.5,-56.5 + parent: 2 + - uid: 20489 + components: + - type: Transform + pos: 71.5,-14.5 + parent: 2 + - uid: 20490 + components: + - type: Transform + pos: 69.5,-14.5 + parent: 2 + - uid: 20491 + components: + - type: Transform + pos: 70.5,-14.5 + parent: 2 + - uid: 20492 + components: + - type: Transform + pos: 63.5,-14.5 + parent: 2 + - uid: 20493 + components: + - type: Transform + pos: 62.5,-14.5 + parent: 2 + - uid: 20494 + components: + - type: Transform + pos: 61.5,-14.5 + parent: 2 + - uid: 20495 + components: + - type: Transform + pos: -24.5,-56.5 + parent: 2 + - uid: 20496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-51.5 + parent: 2 + - uid: 20497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-51.5 + parent: 2 + - uid: 20498 + components: + - type: Transform + pos: -30.5,-39.5 + parent: 2 + - uid: 20499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,0.5 + parent: 2 + - uid: 20500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,0.5 + parent: 2 + - uid: 20501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,0.5 + parent: 2 + - uid: 20502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,0.5 + parent: 2 + - uid: 20503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-71.5 + parent: 2 + - uid: 20504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-70.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 20505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-14.5 + parent: 2 + - uid: 20506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-14.5 + parent: 2 + - uid: 20507 + components: + - type: Transform + pos: -55.5,0.5 + parent: 2 + - uid: 20508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,0.5 + parent: 2 +- proto: RandomArcade + entities: + - uid: 20509 + components: + - type: Transform + pos: 55.5,20.5 + parent: 2 + - uid: 20510 + components: + - type: Transform + pos: 75.5,-5.5 + parent: 2 + - uid: 20511 + components: + - type: Transform + pos: -33.5,24.5 + parent: 2 +- proto: RandomArtifactSpawner + entities: + - uid: 20512 + components: + - type: Transform + pos: 76.5,-28.5 + parent: 2 + - uid: 20513 + components: + - type: Transform + pos: 79.5,-28.5 + parent: 2 +- proto: RandomBook + entities: + - uid: 20514 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 + - uid: 20515 + components: + - type: Transform + pos: 57.5,-7.5 + parent: 2 + - uid: 20516 + components: + - type: Transform + pos: 56.5,1.5 + parent: 2 + - uid: 20517 + components: + - type: Transform + pos: 62.5,-7.5 + parent: 2 + - uid: 20518 + components: + - type: Transform + pos: 61.5,-10.5 + parent: 2 +- proto: RandomBox + entities: + - uid: 20519 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 +- proto: RandomDrinkGlass + entities: + - uid: 20520 + components: + - type: Transform + pos: 61.5,-43.5 + parent: 2 + - uid: 20521 + components: + - type: Transform + pos: 72.5,-28.5 + parent: 2 +- proto: RandomFoodMeal + entities: + - uid: 20522 + components: + - type: Transform + pos: -5.5,51.5 + parent: 2 +- proto: RandomFoodSingle + entities: + - uid: 20523 + components: + - type: Transform + pos: 71.5,-29.5 + parent: 2 +- proto: RandomInstruments + entities: + - uid: 20524 + components: + - type: Transform + pos: 55.5,15.5 + parent: 2 +- proto: RandomPosterAny + entities: + - uid: 20525 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 20526 + components: + - type: Transform + pos: 23.5,43.5 + parent: 2 + - uid: 20527 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 2 + - uid: 20528 + components: + - type: Transform + pos: -53.5,-13.5 + parent: 2 + - uid: 20529 + components: + - type: Transform + pos: -51.5,12.5 + parent: 2 + - uid: 20530 + components: + - type: Transform + pos: -44.5,8.5 + parent: 2 + - uid: 20531 + components: + - type: Transform + pos: -32.5,11.5 + parent: 2 + - uid: 20532 + components: + - type: Transform + pos: -13.5,12.5 + parent: 2 + - uid: 20533 + components: + - type: Transform + pos: -9.5,12.5 + parent: 2 + - uid: 20534 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - uid: 20535 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - uid: 20536 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 20537 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 + - uid: 20538 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 2 + - uid: 20539 + components: + - type: Transform + pos: -19.5,-41.5 + parent: 2 + - uid: 20540 + components: + - type: Transform + pos: -30.5,-45.5 + parent: 2 + - uid: 20541 + components: + - type: Transform + pos: -19.5,-52.5 + parent: 2 + - uid: 20542 + components: + - type: Transform + pos: -30.5,-50.5 + parent: 2 + - uid: 20543 + components: + - type: Transform + pos: -30.5,-57.5 + parent: 2 + - uid: 20544 + components: + - type: Transform + pos: -30.5,-62.5 + parent: 2 + - uid: 20545 + components: + - type: Transform + pos: -17.5,-59.5 + parent: 2 + - uid: 20546 + components: + - type: Transform + pos: -18.5,-46.5 + parent: 2 + - uid: 20547 + components: + - type: Transform + pos: 33.5,-58.5 + parent: 2 + - uid: 20548 + components: + - type: Transform + pos: 33.5,-61.5 + parent: 2 + - uid: 20549 + components: + - type: Transform + pos: 34.5,-66.5 + parent: 2 + - uid: 20550 + components: + - type: Transform + pos: 41.5,-67.5 + parent: 2 + - uid: 20551 + components: + - type: Transform + pos: 50.5,-61.5 + parent: 2 + - uid: 20552 + components: + - type: Transform + pos: 48.5,-48.5 + parent: 2 + - uid: 20553 + components: + - type: Transform + pos: 48.5,-19.5 + parent: 2 + - uid: 20554 + components: + - type: Transform + pos: 64.5,-63.5 + parent: 2 + - uid: 20555 + components: + - type: Transform + pos: 69.5,-67.5 + parent: 2 + - uid: 20556 + components: + - type: Transform + pos: 75.5,-62.5 + parent: 2 + - uid: 20557 + components: + - type: Transform + pos: 72.5,-62.5 + parent: 2 + - uid: 20558 + components: + - type: Transform + pos: 83.5,-56.5 + parent: 2 + - uid: 20559 + components: + - type: Transform + pos: 83.5,-53.5 + parent: 2 + - uid: 20560 + components: + - type: Transform + pos: 82.5,-34.5 + parent: 2 + - uid: 20561 + components: + - type: Transform + pos: 84.5,-30.5 + parent: 2 + - uid: 20562 + components: + - type: Transform + pos: 87.5,-25.5 + parent: 2 + - uid: 20563 + components: + - type: Transform + pos: 77.5,-18.5 + parent: 2 + - uid: 20564 + components: + - type: Transform + pos: 59.5,7.5 + parent: 2 + - uid: 20565 + components: + - type: Transform + pos: 64.5,12.5 + parent: 2 + - uid: 20566 + components: + - type: Transform + pos: 67.5,15.5 + parent: 2 + - uid: 20567 + components: + - type: Transform + pos: 60.5,15.5 + parent: 2 + - uid: 20568 + components: + - type: Transform + pos: 54.5,16.5 + parent: 2 + - uid: 20569 + components: + - type: Transform + pos: 53.5,11.5 + parent: 2 + - uid: 20570 + components: + - type: Transform + pos: 47.5,9.5 + parent: 2 + - uid: 20571 + components: + - type: Transform + pos: 51.5,6.5 + parent: 2 + - uid: 20572 + components: + - type: Transform + pos: 44.5,9.5 + parent: 2 + - uid: 20573 + components: + - type: Transform + pos: -16.5,52.5 + parent: 2 + - uid: 20574 + components: + - type: Transform + pos: 2.5,52.5 + parent: 2 +- proto: RandomPosterContraband + entities: + - uid: 20575 + components: + - type: Transform + pos: -3.5,23.5 + parent: 2 + - uid: 20576 + components: + - type: Transform + pos: -7.5,24.5 + parent: 2 + - uid: 20577 + components: + - type: Transform + pos: -60.5,13.5 + parent: 2 + - uid: 20578 + components: + - type: Transform + pos: -60.5,15.5 + parent: 2 +- proto: RandomPosterLegit + entities: + - uid: 20579 + components: + - type: Transform + pos: -63.5,-16.5 + parent: 2 + - uid: 20580 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 20581 + components: + - type: Transform + pos: 11.5,24.5 + parent: 2 + - uid: 20582 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 20583 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 20584 + components: + - type: Transform + pos: 9.5,29.5 + parent: 2 + - uid: 20585 + components: + - type: Transform + pos: 5.5,35.5 + parent: 2 + - uid: 20586 + components: + - type: Transform + pos: 9.5,22.5 + parent: 2 + - uid: 20587 + components: + - type: Transform + pos: 7.5,18.5 + parent: 2 + - uid: 20588 + components: + - type: Transform + pos: -76.5,11.5 + parent: 2 + - uid: 20589 + components: + - type: Transform + pos: -66.5,-7.5 + parent: 2 + - uid: 20590 + components: + - type: Transform + pos: -59.5,-12.5 + parent: 2 + - uid: 20591 + components: + - type: Transform + pos: -53.5,-7.5 + parent: 2 + - uid: 20592 + components: + - type: Transform + pos: -58.5,-14.5 + parent: 2 + - uid: 20593 + components: + - type: Transform + pos: -44.5,-16.5 + parent: 2 + - uid: 20594 + components: + - type: Transform + pos: -42.5,-13.5 + parent: 2 + - uid: 20595 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 2 + - uid: 20596 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 2 + - uid: 20597 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - uid: 20598 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 20599 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 + - uid: 20600 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 2 + - uid: 20601 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 20602 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 2 + - uid: 20603 + components: + - type: Transform + pos: -6.5,-28.5 + parent: 2 + - uid: 20604 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 2 + - uid: 20605 + components: + - type: Transform + pos: 52.5,-3.5 + parent: 2 + - uid: 20606 + components: + - type: Transform + pos: 58.5,4.5 + parent: 2 + - uid: 20607 + components: + - type: Transform + pos: 75.5,-4.5 + parent: 2 + - uid: 20608 + components: + - type: Transform + pos: 68.5,-27.5 + parent: 2 + - uid: 20609 + components: + - type: Transform + pos: 75.5,-17.5 + parent: 2 + - uid: 20610 + components: + - type: Transform + pos: 37.5,-59.5 + parent: 2 + - uid: 20611 + components: + - type: Transform + pos: -4.5,-32.5 + parent: 2 + - uid: 20612 + components: + - type: Transform + pos: -2.5,-49.5 + parent: 2 + - uid: 20613 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 2 + - uid: 20614 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - uid: 20615 + components: + - type: Transform + pos: -54.5,-6.5 + parent: 2 + - uid: 20616 + components: + - type: Transform + pos: 1.5,15.5 + parent: 2 + - uid: 20617 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 2 + - uid: 20618 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 + - uid: 20620 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 + - uid: 20621 + components: + - type: Transform + pos: -62.5,5.5 + parent: 2 +- proto: RandomSnacks + entities: + - uid: 20622 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 +- proto: RandomSoap + entities: + - uid: 20623 + components: + - type: Transform + pos: -36.5,21.5 + parent: 2 + - uid: 20624 + components: + - type: Transform + pos: 16.5,6.5 + parent: 2 +- proto: RandomSpawner + entities: + - uid: 20625 + components: + - type: Transform + pos: -17.5,27.5 + parent: 2 + - uid: 20626 + components: + - type: Transform + pos: -18.5,22.5 + parent: 2 + - uid: 20627 + components: + - type: Transform + pos: -3.5,6.5 + parent: 2 + - uid: 20628 + components: + - type: Transform + pos: 5.5,-76.5 + parent: 2 + - uid: 20629 + components: + - type: Transform + pos: -6.5,8.5 + parent: 2 + - uid: 20630 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 20631 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - uid: 20632 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 + - uid: 20633 + components: + - type: Transform + pos: -38.5,-2.5 + parent: 2 + - uid: 20634 + components: + - type: Transform + pos: -23.5,2.5 + parent: 2 + - uid: 20635 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - uid: 20636 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 20637 + components: + - type: Transform + pos: -3.5,9.5 + parent: 2 + - uid: 20638 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - uid: 20639 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - uid: 20640 + components: + - type: Transform + pos: -53.5,6.5 + parent: 2 + - uid: 20641 + components: + - type: Transform + pos: -8.5,-50.5 + parent: 2 + - uid: 20642 + components: + - type: Transform + pos: -5.5,-51.5 + parent: 2 + - uid: 20643 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 2 + - uid: 20644 + components: + - type: Transform + pos: -10.5,3.5 + parent: 2 + - uid: 20645 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - uid: 20646 + components: + - type: Transform + pos: -51.5,4.5 + parent: 2 + - uid: 20647 + components: + - type: Transform + pos: -4.5,50.5 + parent: 2 + - uid: 20648 + components: + - type: Transform + pos: -7.5,47.5 + parent: 2 + - uid: 20649 + components: + - type: Transform + pos: -0.5,49.5 + parent: 2 + - uid: 20650 + components: + - type: Transform + pos: -17.5,20.5 + parent: 2 + - uid: 20651 + components: + - type: Transform + pos: -0.5,36.5 + parent: 2 + - uid: 20652 + components: + - type: Transform + pos: 15.5,31.5 + parent: 2 + - uid: 20653 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 2 + - uid: 20654 + components: + - type: Transform + pos: -42.5,-8.5 + parent: 2 + - uid: 20655 + components: + - type: Transform + pos: -30.5,3.5 + parent: 2 + - uid: 20657 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 + - uid: 20658 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 2 + - uid: 20659 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 2 + - uid: 20660 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 2 + - uid: 20661 + components: + - type: Transform + pos: -65.5,16.5 + parent: 2 + - uid: 20662 + components: + - type: Transform + pos: 9.5,-69.5 + parent: 2 + - uid: 20663 + components: + - type: Transform + pos: -12.5,-68.5 + parent: 2 + - uid: 20664 + components: + - type: Transform + pos: 4.5,31.5 + parent: 2 + - uid: 20665 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 2 + - uid: 20666 + components: + - type: Transform + pos: 11.5,33.5 + parent: 2 + - uid: 20667 + components: + - type: Transform + pos: -5.5,-77.5 + parent: 2 + - uid: 20668 + components: + - type: Transform + pos: 4.5,50.5 + parent: 2 + - uid: 20669 + components: + - type: Transform + pos: -43.5,1.5 + parent: 2 + - uid: 20670 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 + - uid: 20671 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 20672 + components: + - type: Transform + pos: 27.5,11.5 + parent: 2 + - uid: 20673 + components: + - type: Transform + pos: 22.5,5.5 + parent: 2 + - uid: 20674 + components: + - type: Transform + pos: 9.5,-71.5 + parent: 2 + - uid: 20675 + components: + - type: Transform + pos: -13.5,41.5 + parent: 2 + - uid: 20676 + components: + - type: Transform + pos: -11.5,52.5 + parent: 2 + - uid: 20677 + components: + - type: Transform + pos: -13.5,47.5 + parent: 2 + - uid: 20678 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - uid: 20679 + components: + - type: Transform + pos: -12.5,-63.5 + parent: 2 + - uid: 20680 + components: + - type: Transform + pos: -11.5,15.5 + parent: 2 + - uid: 20681 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 2 + - uid: 20682 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 20683 + components: + - type: Transform + pos: -5.5,-56.5 + parent: 2 + - uid: 20684 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 2 + - uid: 20685 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 20686 + components: + - type: Transform + pos: -46.5,5.5 + parent: 2 + - uid: 20687 + components: + - type: Transform + pos: 6.5,-65.5 + parent: 2 + - uid: 20688 + components: + - type: Transform + pos: -6.5,-61.5 + parent: 2 + - uid: 20689 + components: + - type: Transform + pos: -9.5,-63.5 + parent: 2 + - uid: 20690 + components: + - type: Transform + pos: -5.5,-64.5 + parent: 2 + - uid: 20691 + components: + - type: Transform + pos: -3.5,-63.5 + parent: 2 + - uid: 20692 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - uid: 20693 + components: + - type: Transform + pos: 24.5,19.5 + parent: 2 + - uid: 20694 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 2 + - uid: 20695 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - uid: 20696 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 20697 + components: + - type: Transform + pos: -0.5,-62.5 + parent: 2 + - uid: 20698 + components: + - type: Transform + pos: -7.5,-53.5 + parent: 2 + - uid: 20699 + components: + - type: Transform + pos: -1.5,-40.5 + parent: 2 + - uid: 20700 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 2 + - uid: 20701 + components: + - type: Transform + pos: -68.5,-4.5 + parent: 2 + - uid: 20702 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 2 + - uid: 20703 + components: + - type: Transform + pos: 23.5,8.5 + parent: 2 + - uid: 20704 + components: + - type: Transform + pos: -67.5,10.5 + parent: 2 + - uid: 20705 + components: + - type: Transform + pos: -76.5,-3.5 + parent: 2 + - uid: 20706 + components: + - type: Transform + pos: 22.5,35.5 + parent: 2 + - uid: 20707 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 20708 + components: + - type: Transform + pos: -33.5,-6.5 + parent: 2 + - uid: 20709 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 2 + - uid: 20710 + components: + - type: Transform + pos: -66.5,18.5 + parent: 2 + - uid: 20711 + components: + - type: Transform + pos: -39.5,-5.5 + parent: 2 + - uid: 20712 + components: + - type: Transform + pos: -73.5,-15.5 + parent: 2 + - uid: 20713 + components: + - type: Transform + pos: -70.5,9.5 + parent: 2 + - uid: 20714 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 2 + - uid: 20715 + components: + - type: Transform + pos: -60.5,0.5 + parent: 2 + - uid: 20716 + components: + - type: Transform + pos: -19.5,18.5 + parent: 2 + - uid: 20717 + components: + - type: Transform + pos: -17.5,-69.5 + parent: 2 + - uid: 20718 + components: + - type: Transform + pos: -12.5,-73.5 + parent: 2 + - uid: 20719 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 20720 + components: + - type: Transform + pos: -54.5,3.5 + parent: 2 + - uid: 20721 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 2 + - uid: 20722 + components: + - type: Transform + pos: 3.5,37.5 + parent: 2 + - uid: 20723 + components: + - type: Transform + pos: 26.5,2.5 + parent: 2 + - uid: 20724 + components: + - type: Transform + pos: -5.5,40.5 + parent: 2 + - uid: 20725 + components: + - type: Transform + pos: -18.5,16.5 + parent: 2 + - uid: 20726 + components: + - type: Transform + pos: -23.5,41.5 + parent: 2 + - uid: 20727 + components: + - type: Transform + pos: -18.5,13.5 + parent: 2 + - uid: 20728 + components: + - type: Transform + pos: -63.5,2.5 + parent: 2 + - uid: 20729 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - uid: 20730 + components: + - type: Transform + pos: -77.5,10.5 + parent: 2 + - uid: 20731 + components: + - type: Transform + pos: -73.5,8.5 + parent: 2 + - uid: 20732 + components: + - type: Transform + pos: -63.5,-0.5 + parent: 2 + - uid: 20733 + components: + - type: Transform + pos: -64.5,7.5 + parent: 2 + - uid: 20734 + components: + - type: Transform + pos: -9.5,41.5 + parent: 2 + - uid: 20735 + components: + - type: Transform + pos: -46.5,-5.5 + parent: 2 + - uid: 20736 + components: + - type: Transform + pos: -66.5,13.5 + parent: 2 + - uid: 20737 + components: + - type: Transform + pos: -14.5,50.5 + parent: 2 + - uid: 20738 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 2 + - uid: 20739 + components: + - type: Transform + pos: -10.5,-24.5 + parent: 2 + - uid: 20740 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 2 + - uid: 20741 + components: + - type: Transform + pos: 45.5,-45.5 + parent: 2 + - uid: 20742 + components: + - type: Transform + pos: 24.5,32.5 + parent: 2 + - uid: 20743 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 + - uid: 20744 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 + - uid: 20745 + components: + - type: Transform + pos: 17.5,1.5 + parent: 2 + - uid: 20746 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - uid: 20747 + components: + - type: Transform + pos: -10.5,26.5 + parent: 2 + - uid: 20748 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 20749 + components: + - type: Transform + pos: -13.5,17.5 + parent: 2 + - uid: 20750 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 2 + - uid: 20751 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - uid: 20752 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 2 + - uid: 20753 + components: + - type: Transform + pos: 8.5,37.5 + parent: 2 + - uid: 20754 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 2 + - uid: 20755 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - uid: 20756 + components: + - type: Transform + pos: -40.5,3.5 + parent: 2 + - uid: 20757 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 + - uid: 20758 + components: + - type: Transform + pos: -7.5,-39.5 + parent: 2 + - uid: 20759 + components: + - type: Transform + pos: -10.5,-37.5 + parent: 2 + - uid: 20760 + components: + - type: Transform + pos: 3.5,-35.5 + parent: 2 + - uid: 20761 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 20762 + components: + - type: Transform + pos: -46.5,-8.5 + parent: 2 + - uid: 20763 + components: + - type: Transform + pos: 43.5,10.5 + parent: 2 + - uid: 20764 + components: + - type: Transform + pos: 9.5,27.5 + parent: 2 + - uid: 20765 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 20766 + components: + - type: Transform + pos: -1.5,23.5 + parent: 2 + - uid: 20767 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 20768 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 20769 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 + - uid: 20770 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 2 + - uid: 20771 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 2 + - uid: 20772 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 + - uid: 20773 + components: + - type: Transform + pos: 39.5,2.5 + parent: 2 + - uid: 20774 + components: + - type: Transform + pos: 54.5,-1.5 + parent: 2 + - uid: 20775 + components: + - type: Transform + pos: 58.5,1.5 + parent: 2 + - uid: 20776 + components: + - type: Transform + pos: 66.5,-6.5 + parent: 2 + - uid: 20777 + components: + - type: Transform + pos: 52.5,17.5 + parent: 2 + - uid: 20778 + components: + - type: Transform + pos: 57.5,18.5 + parent: 2 + - uid: 20779 + components: + - type: Transform + pos: 62.5,17.5 + parent: 2 + - uid: 20780 + components: + - type: Transform + pos: 67.5,16.5 + parent: 2 + - uid: 20781 + components: + - type: Transform + pos: 73.5,12.5 + parent: 2 + - uid: 20782 + components: + - type: Transform + pos: 60.5,9.5 + parent: 2 + - uid: 20783 + components: + - type: Transform + pos: 50.5,3.5 + parent: 2 + - uid: 20784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-6.5 + parent: 2 + - uid: 20785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-11.5 + parent: 2 + - uid: 20786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-14.5 + parent: 2 + - uid: 20787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-12.5 + parent: 2 + - uid: 20788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-12.5 + parent: 2 + - uid: 20789 + components: + - type: Transform + pos: -36.5,19.5 + parent: 2 + - uid: 20790 + components: + - type: Transform + pos: -37.5,23.5 + parent: 2 + - uid: 20791 + components: + - type: Transform + pos: -30.5,21.5 + parent: 2 + - uid: 20792 + components: + - type: Transform + pos: -36.5,11.5 + parent: 2 + - uid: 20793 + components: + - type: Transform + pos: -54.5,17.5 + parent: 2 + - uid: 20794 + components: + - type: Transform + pos: -56.5,15.5 + parent: 2 + - uid: 20795 + components: + - type: Transform + pos: -56.5,11.5 + parent: 2 + - uid: 20796 + components: + - type: Transform + pos: -48.5,4.5 + parent: 2 + - uid: 20797 + components: + - type: Transform + pos: -46.5,17.5 + parent: 2 + - uid: 20798 + components: + - type: Transform + pos: -71.5,10.5 + parent: 2 + - uid: 20799 + components: + - type: Transform + pos: -63.5,-14.5 + parent: 2 + - uid: 20800 + components: + - type: Transform + pos: -49.5,-2.5 + parent: 2 + - uid: 20801 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - uid: 20802 + components: + - type: Transform + pos: -46.5,-12.5 + parent: 2 + - uid: 20803 + components: + - type: Transform + pos: -61.5,-9.5 + parent: 2 + - uid: 20804 + components: + - type: Transform + pos: -51.5,-16.5 + parent: 2 + - uid: 20805 + components: + - type: Transform + pos: -43.5,-14.5 + parent: 2 + - uid: 20806 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 2 + - uid: 20807 + components: + - type: Transform + pos: -57.5,-17.5 + parent: 2 + - uid: 20808 + components: + - type: Transform + pos: -58.5,-20.5 + parent: 2 + - uid: 20809 + components: + - type: Transform + pos: -19.5,-22.5 + parent: 2 + - uid: 20810 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 2 + - uid: 20811 + components: + - type: Transform + pos: -4.5,-48.5 + parent: 2 + - uid: 20812 + components: + - type: Transform + pos: -33.5,-43.5 + parent: 2 + - uid: 20813 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 2 + - uid: 20814 + components: + - type: Transform + pos: -21.5,-50.5 + parent: 2 + - uid: 20815 + components: + - type: Transform + pos: -27.5,-58.5 + parent: 2 + - uid: 20816 + components: + - type: Transform + pos: -32.5,-74.5 + parent: 2 + - uid: 20817 + components: + - type: Transform + pos: 53.5,-62.5 + parent: 2 + - uid: 20818 + components: + - type: Transform + pos: 68.5,-59.5 + parent: 2 + - uid: 20819 + components: + - type: Transform + pos: 66.5,-67.5 + parent: 2 + - uid: 20820 + components: + - type: Transform + pos: 80.5,-58.5 + parent: 2 + - uid: 20821 + components: + - type: Transform + pos: 81.5,-61.5 + parent: 2 + - uid: 20822 + components: + - type: Transform + pos: 86.5,-55.5 + parent: 2 + - uid: 20823 + components: + - type: Transform + pos: 84.5,-31.5 + parent: 2 + - uid: 20824 + components: + - type: Transform + pos: 86.5,-21.5 + parent: 2 + - uid: 20825 + components: + - type: Transform + pos: 78.5,-19.5 + parent: 2 + - uid: 20826 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 + - uid: 20827 + components: + - type: Transform + pos: -0.5,50.5 + parent: 2 + - uid: 20828 + components: + - type: Transform + pos: -21.5,44.5 + parent: 2 + - uid: 20829 + components: + - type: Transform + pos: -10.5,45.5 + parent: 2 + - uid: 20830 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - uid: 20831 + components: + - type: Transform + pos: 5.5,-61.5 + parent: 2 + - uid: 20832 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 20833 + components: + - type: Transform + pos: -54.5,-0.5 + parent: 2 + - uid: 20834 + components: + - type: Transform + pos: -54.5,-4.5 + parent: 2 + - uid: 20835 + components: + - type: Transform + pos: -59.5,-3.5 + parent: 2 + - uid: 20836 + components: + - type: Transform + pos: -61.5,-5.5 + parent: 2 + - uid: 20837 + components: + - type: Transform + pos: -64.5,-7.5 + parent: 2 + - uid: 20838 + components: + - type: Transform + pos: -63.5,-11.5 + parent: 2 + - uid: 20839 + components: + - type: Transform + pos: -8.5,52.5 + parent: 2 + - uid: 20840 + components: + - type: Transform + pos: -11.5,38.5 + parent: 2 + - uid: 20841 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 2 + - uid: 20842 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 20843 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 + - uid: 20844 + components: + - type: Transform + pos: 7.5,40.5 + parent: 2 + - uid: 20845 + components: + - type: Transform + pos: -8.5,32.5 + parent: 2 + - uid: 20846 + components: + - type: Transform + pos: 17.5,34.5 + parent: 2 + - uid: 20847 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 + - uid: 20848 + components: + - type: Transform + pos: -6.5,19.5 + parent: 2 + - uid: 20849 + components: + - type: Transform + pos: -0.5,19.5 + parent: 2 + - uid: 20850 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 20851 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 20852 + components: + - type: Transform + pos: -1.5,4.5 + parent: 2 + - uid: 20853 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - uid: 20854 + components: + - type: Transform + pos: -12.5,20.5 + parent: 2 + - uid: 20855 + components: + - type: Transform + pos: 17.5,27.5 + parent: 2 + - uid: 20856 + components: + - type: Transform + pos: 12.5,28.5 + parent: 2 + - uid: 20857 + components: + - type: Transform + pos: -1.5,9.5 + parent: 2 + - uid: 20858 + components: + - type: Transform + pos: -4.5,21.5 + parent: 2 + - uid: 20859 + components: + - type: Transform + pos: -9.5,29.5 + parent: 2 + - uid: 20860 + components: + - type: Transform + pos: -18.5,40.5 + parent: 2 + - uid: 20861 + components: + - type: Transform + pos: 1.5,20.5 + parent: 2 + - uid: 20862 + components: + - type: Transform + pos: -2.5,50.5 + parent: 2 + - uid: 20863 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 20864 + components: + - type: Transform + pos: -75.5,-13.5 + parent: 2 + - uid: 20865 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 + - uid: 20866 + components: + - type: Transform + pos: 16.5,25.5 + parent: 2 + - uid: 20867 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - uid: 20868 + components: + - type: Transform + pos: -69.5,-15.5 + parent: 2 + - uid: 20869 + components: + - type: Transform + pos: -14.5,38.5 + parent: 2 + - uid: 20870 + components: + - type: Transform + pos: 7.5,-34.5 + parent: 2 + - uid: 20871 + components: + - type: Transform + pos: 5.5,-36.5 + parent: 2 + - uid: 20872 + components: + - type: Transform + pos: -16.5,-72.5 + parent: 2 + - uid: 20873 + components: + - type: Transform + pos: -3.5,-34.5 + parent: 2 + - uid: 20874 + components: + - type: Transform + pos: 3.5,-66.5 + parent: 2 + - uid: 20875 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 2 + - uid: 20876 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 + - uid: 20877 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 2 + - uid: 20878 + components: + - type: Transform + pos: -0.5,-76.5 + parent: 2 + - uid: 20879 + components: + - type: Transform + pos: -20.5,48.5 + parent: 2 + - uid: 20880 + components: + - type: Transform + pos: 8.5,38.5 + parent: 2 + - uid: 20881 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 2 + - uid: 20882 + components: + - type: Transform + pos: 1.5,-44.5 + parent: 2 + - uid: 20883 + components: + - type: Transform + pos: -0.5,-48.5 + parent: 2 + - uid: 20884 + components: + - type: Transform + pos: -1.5,-53.5 + parent: 2 + - uid: 20885 + components: + - type: Transform + pos: 1.5,-56.5 + parent: 2 + - uid: 20886 + components: + - type: Transform + pos: -3.5,-58.5 + parent: 2 + - uid: 20887 + components: + - type: Transform + pos: -4.5,-66.5 + parent: 2 + - uid: 20888 + components: + - type: Transform + pos: -10.5,-69.5 + parent: 2 + - uid: 20889 + components: + - type: Transform + pos: 9.5,-58.5 + parent: 2 + - uid: 20890 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 2 + - uid: 20891 + components: + - type: Transform + pos: 4.5,-51.5 + parent: 2 + - uid: 20892 + components: + - type: Transform + pos: 3.5,-55.5 + parent: 2 + - uid: 20893 + components: + - type: Transform + pos: -8.5,-66.5 + parent: 2 + - uid: 20894 + components: + - type: Transform + pos: 0.5,28.5 + parent: 2 + - uid: 20895 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 2 + - uid: 20896 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 2 + - uid: 20897 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 + - uid: 20898 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 20899 + components: + - type: Transform + pos: -40.5,-22.5 + parent: 2 + - uid: 20900 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 20901 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 2 + - uid: 20902 + components: + - type: Transform + pos: -35.5,-26.5 + parent: 2 + - uid: 20903 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - uid: 20904 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - uid: 20905 + components: + - type: Transform + pos: -41.5,-28.5 + parent: 2 + - uid: 20906 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - uid: 20907 + components: + - type: Transform + pos: -36.5,-30.5 + parent: 2 + - uid: 20908 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 20909 + components: + - type: Transform + pos: -40.5,-31.5 + parent: 2 + - uid: 20910 + components: + - type: Transform + pos: -38.5,-26.5 + parent: 2 + - uid: 20911 + components: + - type: Transform + pos: -24.5,-27.5 + parent: 2 + - uid: 20912 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 2 + - uid: 20913 + components: + - type: Transform + pos: -26.5,-19.5 + parent: 2 + - uid: 20914 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 + - uid: 20915 + components: + - type: Transform + pos: -23.5,-34.5 + parent: 2 + - uid: 20916 + components: + - type: Transform + pos: -26.5,-34.5 + parent: 2 + - uid: 20917 + components: + - type: Transform + pos: -24.5,-29.5 + parent: 2 + - uid: 20918 + components: + - type: Transform + pos: -25.5,-36.5 + parent: 2 + - uid: 20919 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 + - uid: 20920 + components: + - type: Transform + pos: -22.5,-71.5 + parent: 2 + - uid: 20921 + components: + - type: Transform + pos: -26.5,-69.5 + parent: 2 + - uid: 20922 + components: + - type: Transform + pos: -22.5,-66.5 + parent: 2 + - uid: 20923 + components: + - type: Transform + pos: -26.5,-64.5 + parent: 2 + - uid: 20924 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - uid: 20925 + components: + - type: Transform + pos: 8.5,-51.5 + parent: 2 + - uid: 20926 + components: + - type: Transform + pos: -20.5,-68.5 + parent: 2 + - uid: 20927 + components: + - type: Transform + pos: 14.5,41.5 + parent: 2 + - uid: 20928 + components: + - type: Transform + pos: 7.5,-75.5 + parent: 2 + - uid: 20929 + components: + - type: Transform + pos: -1.5,39.5 + parent: 2 + - uid: 20930 + components: + - type: Transform + pos: 24.5,38.5 + parent: 2 + - uid: 20931 + components: + - type: Transform + pos: -4.5,31.5 + parent: 2 + - uid: 20932 + components: + - type: Transform + pos: -56.5,5.5 + parent: 2 + - uid: 20933 + components: + - type: Transform + pos: -60.5,4.5 + parent: 2 + - uid: 20934 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - uid: 20935 + components: + - type: Transform + pos: -18.5,25.5 + parent: 2 + - uid: 20936 + components: + - type: Transform + pos: -43.5,-10.5 + parent: 2 + - uid: 20937 + components: + - type: Transform + pos: -41.5,-11.5 + parent: 2 + - uid: 20938 + components: + - type: Transform + pos: -45.5,-16.5 + parent: 2 + - uid: 20939 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 2 + - uid: 20940 + components: + - type: Transform + pos: 7.5,30.5 + parent: 2 + - uid: 20941 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 2 + - uid: 20942 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 20943 + components: + - type: Transform + pos: 7.5,34.5 + parent: 2 + - uid: 20944 + components: + - type: Transform + pos: 22.5,42.5 + parent: 2 + - uid: 20945 + components: + - type: Transform + pos: 12.5,38.5 + parent: 2 + - uid: 20946 + components: + - type: Transform + pos: -38.5,4.5 + parent: 2 + - uid: 20947 + components: + - type: Transform + pos: -38.5,1.5 + parent: 2 + - uid: 20948 + components: + - type: Transform + pos: -4.5,37.5 + parent: 2 + - uid: 20949 + components: + - type: Transform + pos: -9.5,34.5 + parent: 2 + - uid: 20950 + components: + - type: Transform + pos: -13.5,36.5 + parent: 2 + - uid: 20951 + components: + - type: Transform + pos: -18.5,35.5 + parent: 2 + - uid: 20952 + components: + - type: Transform + pos: -10.5,-56.5 + parent: 2 + - uid: 20953 + components: + - type: Transform + pos: -14.5,-55.5 + parent: 2 + - uid: 20954 + components: + - type: Transform + pos: -11.5,-51.5 + parent: 2 + - uid: 20955 + components: + - type: Transform + pos: -16.5,-49.5 + parent: 2 + - uid: 20956 + components: + - type: Transform + pos: -16.5,-53.5 + parent: 2 + - uid: 20957 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 2 + - uid: 20958 + components: + - type: Transform + pos: -19.5,6.5 + parent: 2 + - uid: 20959 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - uid: 20960 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 2 + - uid: 20961 + components: + - type: Transform + pos: 10.5,-34.5 + parent: 2 + - uid: 20962 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 + - uid: 20963 + components: + - type: Transform + pos: -21.5,13.5 + parent: 2 + - uid: 20964 + components: + - type: Transform + pos: -21.5,14.5 + parent: 2 + - uid: 20965 + components: + - type: Transform + pos: -19.5,13.5 + parent: 2 + - uid: 20966 + components: + - type: Transform + pos: -19.5,12.5 + parent: 2 + - uid: 20967 + components: + - type: Transform + pos: -18.5,14.5 + parent: 2 + - uid: 20968 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - uid: 20969 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 2 + - uid: 20970 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 2 + - uid: 20971 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 2 + - uid: 20972 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 2 + - uid: 20973 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 2 + - uid: 20974 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 2 + - uid: 20975 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - uid: 20976 + components: + - type: Transform + pos: -17.5,-16.5 + parent: 2 + - uid: 20977 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 2 + - uid: 20978 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 2 + - uid: 20979 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 2 + - uid: 20980 + components: + - type: Transform + pos: -10.5,-31.5 + parent: 2 + - uid: 20981 + components: + - type: Transform + pos: -17.5,-23.5 + parent: 2 + - uid: 20982 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 2 + - uid: 20983 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 2 + - uid: 20984 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 + - uid: 20985 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 2 + - uid: 20986 + components: + - type: Transform + pos: -5.5,-29.5 + parent: 2 + - uid: 20987 + components: + - type: Transform + pos: -3.5,-31.5 + parent: 2 + - uid: 20988 + components: + - type: Transform + pos: -8.5,-31.5 + parent: 2 + - uid: 20989 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 2 + - uid: 20990 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 2 + - uid: 20991 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 2 + - uid: 20992 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 2 + - uid: 20993 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 2 + - uid: 20994 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 2 + - uid: 20995 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 20996 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 2 + - uid: 20997 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 2 + - uid: 20998 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 + - uid: 20999 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - uid: 21000 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 21001 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - uid: 21002 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 21003 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 21004 + components: + - type: Transform + pos: -8.5,8.5 + parent: 2 + - uid: 21005 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 + - uid: 21006 + components: + - type: Transform + pos: -11.5,6.5 + parent: 2 + - uid: 21007 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - uid: 21008 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - uid: 21009 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 21010 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 2 + - uid: 21011 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 2 + - uid: 21012 + components: + - type: Transform + pos: 13.5,-70.5 + parent: 2 + - uid: 21013 + components: + - type: Transform + pos: 11.5,-72.5 + parent: 2 + - uid: 21014 + components: + - type: Transform + pos: 7.5,-47.5 + parent: 2 + - uid: 21015 + components: + - type: Transform + pos: 3.5,-44.5 + parent: 2 + - uid: 21016 + components: + - type: Transform + pos: 7.5,-42.5 + parent: 2 + - uid: 21017 + components: + - type: Transform + pos: 12.5,-40.5 + parent: 2 + - uid: 21018 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 2 + - uid: 21019 + components: + - type: Transform + pos: 11.5,-51.5 + parent: 2 + - uid: 28096 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 2 +- proto: RandomVending + entities: + - uid: 21020 + components: + - type: Transform + pos: -18.5,-13.5 + parent: 2 +- proto: RandomVendingDrinks + entities: + - uid: 21021 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 2 + - uid: 21022 + components: + - type: Transform + pos: 75.5,-6.5 + parent: 2 + - uid: 21023 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 2 + - uid: 21024 + components: + - type: Transform + pos: 24.5,2.5 + parent: 2 + - uid: 21025 + components: + - type: Transform + pos: -55.5,-1.5 + parent: 2 +- proto: RandomVendingSnacks + entities: + - uid: 21026 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 21027 + components: + - type: Transform + pos: -24.5,45.5 + parent: 2 + - uid: 21028 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 21029 + components: + - type: Transform + pos: -70.5,-16.5 + parent: 2 + - uid: 21030 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 2 +- proto: RCD + entities: + - uid: 1275 + components: + - type: Transform + parent: 1270 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1283 + components: + - type: Transform + parent: 1278 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1291 + components: + - type: Transform + parent: 1286 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ReagentContainerRice + entities: + - uid: 21031 + components: + - type: MetaData + desc: Совершенно точно не кокаин! + name: пакет порошка для стирки + - type: Transform + pos: -42.449387,-9.46593 + parent: 2 +- proto: Recycler + entities: + - uid: 21032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-17.5 + parent: 2 + - uid: 21033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23342 +- proto: RegenerativeMesh + entities: + - uid: 21034 + components: + - type: Transform + pos: -7.612348,31.021431 + parent: 2 +- proto: ReinforcedGirder + entities: + - uid: 21035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-46.5 + parent: 2 + - uid: 21036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-50.5 + parent: 2 + - uid: 21037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-50.5 + parent: 2 + - uid: 21038 + components: + - type: Transform + pos: -20.5,17.5 + parent: 2 + - uid: 21039 + components: + - type: Transform + pos: -17.5,18.5 + parent: 2 + - uid: 21040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-46.5 + parent: 2 + - uid: 21041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-54.5 + parent: 2 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 21042 + components: + - type: Transform + pos: 3.5,40.5 + parent: 2 + - uid: 21043 + components: + - type: Transform + pos: 12.5,-63.5 + parent: 2 + - uid: 21044 + components: + - type: Transform + pos: 13.5,-63.5 + parent: 2 + - uid: 21045 + components: + - type: Transform + pos: 14.5,-63.5 + parent: 2 + - uid: 21046 + components: + - type: Transform + pos: 16.5,-63.5 + parent: 2 + - uid: 21047 + components: + - type: Transform + pos: 17.5,-63.5 + parent: 2 + - uid: 21048 + components: + - type: Transform + pos: 18.5,-63.5 + parent: 2 + - uid: 21049 + components: + - type: Transform + pos: 43.5,-54.5 + parent: 2 + - uid: 21050 + components: + - type: Transform + pos: 44.5,-54.5 + parent: 2 + - uid: 21051 + components: + - type: Transform + pos: -10.5,-70.5 + parent: 2 + - uid: 21053 + components: + - type: Transform + pos: 9.5,-70.5 + parent: 2 + - uid: 21055 + components: + - type: Transform + pos: -5.5,-68.5 + parent: 2 + - uid: 21056 + components: + - type: Transform + pos: 3.5,-68.5 + parent: 2 + - uid: 21057 + components: + - type: Transform + pos: -8.5,-71.5 + parent: 2 + - uid: 21058 + components: + - type: Transform + pos: -8.5,-70.5 + parent: 2 + - uid: 21059 + components: + - type: Transform + pos: 4.5,-68.5 + parent: 2 + - uid: 21060 + components: + - type: Transform + pos: -4.5,-68.5 + parent: 2 + - uid: 21061 + components: + - type: Transform + pos: 7.5,-70.5 + parent: 2 + - uid: 21062 + components: + - type: Transform + pos: 7.5,-71.5 + parent: 2 + - uid: 21063 + components: + - type: Transform + pos: 7.5,-72.5 + parent: 2 + - uid: 21064 + components: + - type: Transform + pos: -8.5,-72.5 + parent: 2 + - uid: 21066 + components: + - type: Transform + pos: 2.5,40.5 + parent: 2 + - uid: 21067 + components: + - type: Transform + pos: 1.5,40.5 + parent: 2 + - uid: 21068 + components: + - type: Transform + pos: 25.5,-44.5 + parent: 2 + - uid: 21069 + components: + - type: Transform + pos: 25.5,-43.5 + parent: 2 + - uid: 21070 + components: + - type: Transform + pos: 25.5,-42.5 + parent: 2 + - uid: 21071 + components: + - type: Transform + pos: 25.5,-48.5 + parent: 2 + - uid: 21072 + components: + - type: Transform + pos: 25.5,-47.5 + parent: 2 + - uid: 21073 + components: + - type: Transform + pos: 25.5,-46.5 + parent: 2 + - uid: 21074 + components: + - type: Transform + pos: 25.5,-52.5 + parent: 2 + - uid: 21075 + components: + - type: Transform + pos: 25.5,-51.5 + parent: 2 + - uid: 21076 + components: + - type: Transform + pos: 25.5,-50.5 + parent: 2 + - uid: 21077 + components: + - type: Transform + pos: 25.5,-56.5 + parent: 2 + - uid: 21078 + components: + - type: Transform + pos: 25.5,-55.5 + parent: 2 + - uid: 21079 + components: + - type: Transform + pos: 25.5,-54.5 + parent: 2 + - uid: 21080 + components: + - type: Transform + pos: 20.5,-63.5 + parent: 2 + - uid: 21081 + components: + - type: Transform + pos: 21.5,-63.5 + parent: 2 + - uid: 21082 + components: + - type: Transform + pos: 22.5,-63.5 + parent: 2 + - uid: 21083 + components: + - type: Transform + pos: -4.5,-78.5 + parent: 2 + - uid: 21084 + components: + - type: Transform + pos: -0.5,-78.5 + parent: 2 + - uid: 21085 + components: + - type: Transform + pos: 5.5,-78.5 + parent: 2 + - uid: 21086 + components: + - type: Transform + pos: -2.5,-78.5 + parent: 2 + - uid: 21087 + components: + - type: Transform + pos: 0.5,-78.5 + parent: 2 + - uid: 21088 + components: + - type: Transform + pos: 4.5,-78.5 + parent: 2 + - uid: 21089 + components: + - type: Transform + pos: -6.5,-78.5 + parent: 2 + - uid: 21090 + components: + - type: Transform + pos: 1.5,-78.5 + parent: 2 + - uid: 21091 + components: + - type: Transform + pos: -5.5,-78.5 + parent: 2 + - uid: 21092 + components: + - type: Transform + pos: -1.5,-78.5 + parent: 2 + - uid: 21093 + components: + - type: Transform + pos: 3.5,-78.5 + parent: 2 +- proto: ReinforcedWindow + entities: + - uid: 19349 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 2 + - uid: 20482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-71.5 + parent: 2 + - uid: 21094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,30.5 + parent: 2 + - uid: 21095 + components: + - type: Transform + pos: 87.5,-42.5 + parent: 2 + - uid: 21096 + components: + - type: Transform + pos: 47.5,-11.5 + parent: 2 + - uid: 21097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 2 + - uid: 21098 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 2 + - uid: 21099 + components: + - type: Transform + pos: 5.5,-46.5 + parent: 2 + - uid: 21100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-39.5 + parent: 2 + - uid: 21101 + components: + - type: Transform + pos: -76.5,11.5 + parent: 2 + - uid: 21102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,18.5 + parent: 2 + - uid: 21103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,15.5 + parent: 2 + - uid: 21104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,14.5 + parent: 2 + - uid: 21105 + components: + - type: Transform + pos: -13.5,-78.5 + parent: 2 + - uid: 21106 + components: + - type: Transform + pos: -12.5,-78.5 + parent: 2 + - uid: 21107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-47.5 + parent: 2 + - uid: 21108 + components: + - type: Transform + pos: 77.5,-27.5 + parent: 2 + - uid: 21109 + components: + - type: Transform + pos: 80.5,-27.5 + parent: 2 + - uid: 21110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-36.5 + parent: 2 + - uid: 21111 + components: + - type: Transform + pos: 58.5,-42.5 + parent: 2 + - uid: 21112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-43.5 + parent: 2 + - uid: 21113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-60.5 + parent: 2 + - uid: 21114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-60.5 + parent: 2 + - uid: 21115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-60.5 + parent: 2 + - uid: 21116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-60.5 + parent: 2 + - uid: 21117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-60.5 + parent: 2 + - uid: 21118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-60.5 + parent: 2 + - uid: 21119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-60.5 + parent: 2 + - uid: 21120 + components: + - type: Transform + pos: 64.5,-30.5 + parent: 2 + - uid: 21121 + components: + - type: Transform + pos: -12.5,-25.5 + parent: 2 + - uid: 21122 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 2 + - uid: 21123 + components: + - type: Transform + pos: 64.5,-31.5 + parent: 2 + - uid: 21124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-37.5 + parent: 2 + - uid: 21125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-17.5 + parent: 2 + - uid: 21126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,16.5 + parent: 2 + - uid: 21127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,18.5 + parent: 2 + - uid: 21128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-58.5 + parent: 2 + - uid: 21129 + components: + - type: Transform + pos: 87.5,-40.5 + parent: 2 + - uid: 21130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 2 + - uid: 21131 + components: + - type: Transform + pos: 77.5,-4.5 + parent: 2 + - uid: 21132 + components: + - type: Transform + pos: 76.5,-4.5 + parent: 2 + - uid: 21133 + components: + - type: Transform + pos: 81.5,-4.5 + parent: 2 + - uid: 21134 + components: + - type: Transform + pos: 82.5,-4.5 + parent: 2 + - uid: 21135 + components: + - type: Transform + pos: -78.5,-12.5 + parent: 2 + - uid: 21136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 2 + - uid: 21137 + components: + - type: Transform + pos: -78.5,-16.5 + parent: 2 + - uid: 21138 + components: + - type: Transform + pos: -77.5,11.5 + parent: 2 + - uid: 21139 + components: + - type: Transform + pos: -72.5,11.5 + parent: 2 + - uid: 21140 + components: + - type: Transform + pos: -78.5,11.5 + parent: 2 + - uid: 21141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 2 + - uid: 21142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,-29.5 + parent: 2 + - uid: 21143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,-28.5 + parent: 2 + - uid: 21144 + components: + - type: Transform + pos: -20.5,35.5 + parent: 2 + - uid: 21145 + components: + - type: Transform + pos: -19.5,30.5 + parent: 2 + - uid: 21146 + components: + - type: Transform + pos: -19.5,31.5 + parent: 2 + - uid: 21147 + components: + - type: Transform + pos: -66.5,-7.5 + parent: 2 + - uid: 21148 + components: + - type: Transform + pos: -76.5,-6.5 + parent: 2 + - uid: 21149 + components: + - type: Transform + pos: -65.5,-16.5 + parent: 2 + - uid: 21150 + components: + - type: Transform + pos: -66.5,-8.5 + parent: 2 + - uid: 21151 + components: + - type: Transform + pos: -64.5,-16.5 + parent: 2 + - uid: 21152 + components: + - type: Transform + pos: -80.5,-2.5 + parent: 2 + - uid: 21153 + components: + - type: Transform + pos: -80.5,7.5 + parent: 2 + - uid: 21154 + components: + - type: Transform + pos: -66.5,-11.5 + parent: 2 + - uid: 21155 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - uid: 21156 + components: + - type: Transform + pos: -76.5,-12.5 + parent: 2 + - uid: 21157 + components: + - type: Transform + pos: -80.5,-6.5 + parent: 2 + - uid: 21158 + components: + - type: Transform + pos: 57.5,-58.5 + parent: 2 + - uid: 21159 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 2 + - uid: 21160 + components: + - type: Transform + pos: -11.5,-69.5 + parent: 2 + - uid: 21161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,31.5 + parent: 2 + - uid: 21162 + components: + - type: Transform + pos: 28.5,28.5 + parent: 2 + - uid: 21163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-36.5 + parent: 2 + - uid: 21164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-35.5 + parent: 2 + - uid: 21165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,51.5 + parent: 2 + - uid: 21166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,-22.5 + parent: 2 + - uid: 21167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,-22.5 + parent: 2 + - uid: 21168 + components: + - type: Transform + pos: 31.5,-51.5 + parent: 2 + - uid: 21169 + components: + - type: Transform + pos: 31.5,-55.5 + parent: 2 + - uid: 21170 + components: + - type: Transform + pos: 31.5,-47.5 + parent: 2 + - uid: 21171 + components: + - type: Transform + pos: 31.5,-54.5 + parent: 2 + - uid: 21172 + components: + - type: Transform + pos: 12.5,-78.5 + parent: 2 + - uid: 21173 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 2 + - uid: 21174 + components: + - type: Transform + pos: 76.5,-27.5 + parent: 2 + - uid: 21175 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 21176 + components: + - type: Transform + pos: 31.5,-50.5 + parent: 2 + - uid: 21177 + components: + - type: Transform + pos: 31.5,-43.5 + parent: 2 + - uid: 21178 + components: + - type: Transform + pos: 5.5,-75.5 + parent: 2 + - uid: 21179 + components: + - type: Transform + pos: -5.5,-75.5 + parent: 2 + - uid: 21180 + components: + - type: Transform + pos: -2.5,-75.5 + parent: 2 + - uid: 21181 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 21182 + components: + - type: Transform + pos: 58.5,-58.5 + parent: 2 + - uid: 21183 + components: + - type: Transform + pos: 62.5,-28.5 + parent: 2 + - uid: 21184 + components: + - type: Transform + pos: -41.5,-21.5 + parent: 2 + - uid: 21185 + components: + - type: Transform + pos: -38.5,-42.5 + parent: 2 + - uid: 21186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,6.5 + parent: 2 + - uid: 21187 + components: + - type: Transform + pos: 11.5,-78.5 + parent: 2 + - uid: 21188 + components: + - type: Transform + pos: 79.5,-10.5 + parent: 2 + - uid: 21189 + components: + - type: Transform + pos: 1.5,-75.5 + parent: 2 + - uid: 21190 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 21191 + components: + - type: Transform + pos: 4.5,-75.5 + parent: 2 + - uid: 21192 + components: + - type: Transform + pos: -4.5,-75.5 + parent: 2 + - uid: 21193 + components: + - type: Transform + pos: 16.5,-61.5 + parent: 2 + - uid: 21194 + components: + - type: Transform + pos: 17.5,-61.5 + parent: 2 + - uid: 21195 + components: + - type: Transform + pos: 18.5,-61.5 + parent: 2 + - uid: 21196 + components: + - type: Transform + pos: 13.5,-61.5 + parent: 2 + - uid: 21197 + components: + - type: Transform + pos: 14.5,-61.5 + parent: 2 + - uid: 21198 + components: + - type: Transform + pos: 12.5,-61.5 + parent: 2 + - uid: 21199 + components: + - type: Transform + pos: -70.5,11.5 + parent: 2 + - uid: 21200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-47.5 + parent: 2 + - uid: 21201 + components: + - type: Transform + pos: -71.5,11.5 + parent: 2 + - uid: 21202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-58.5 + parent: 2 + - uid: 21203 + components: + - type: Transform + pos: 9.5,33.5 + parent: 2 + - uid: 21204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-60.5 + parent: 2 + - uid: 21205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-60.5 + parent: 2 + - uid: 21206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-57.5 + parent: 2 + - uid: 21207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-57.5 + parent: 2 + - uid: 21208 + components: + - type: Transform + pos: -75.5,-6.5 + parent: 2 + - uid: 21209 + components: + - type: Transform + pos: -34.5,0.5 + parent: 2 + - uid: 21210 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - uid: 21211 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - uid: 21212 + components: + - type: Transform + pos: -28.5,9.5 + parent: 2 + - uid: 21213 + components: + - type: Transform + pos: -30.5,9.5 + parent: 2 + - uid: 21214 + components: + - type: Transform + pos: -32.5,9.5 + parent: 2 + - uid: 21215 + components: + - type: Transform + pos: -34.5,9.5 + parent: 2 + - uid: 21216 + components: + - type: Transform + pos: -33.5,0.5 + parent: 2 + - uid: 21217 + components: + - type: Transform + pos: -35.5,0.5 + parent: 2 + - uid: 21218 + components: + - type: Transform + pos: -29.5,0.5 + parent: 2 + - uid: 21219 + components: + - type: Transform + pos: -29.5,9.5 + parent: 2 + - uid: 21220 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 21221 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 + - uid: 21222 + components: + - type: Transform + pos: -29.5,19.5 + parent: 2 + - uid: 21223 + components: + - type: Transform + pos: -28.5,11.5 + parent: 2 + - uid: 21224 + components: + - type: Transform + pos: -29.5,11.5 + parent: 2 + - uid: 21225 + components: + - type: Transform + pos: -27.5,11.5 + parent: 2 + - uid: 21226 + components: + - type: Transform + pos: -30.5,12.5 + parent: 2 + - uid: 21227 + components: + - type: Transform + pos: -30.5,13.5 + parent: 2 + - uid: 21228 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 + - uid: 21229 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 + - uid: 21230 + components: + - type: Transform + pos: -30.5,16.5 + parent: 2 + - uid: 21231 + components: + - type: Transform + pos: -32.5,25.5 + parent: 2 + - uid: 21232 + components: + - type: Transform + pos: -32.5,13.5 + parent: 2 + - uid: 21233 + components: + - type: Transform + pos: -32.5,14.5 + parent: 2 + - uid: 21234 + components: + - type: Transform + pos: -32.5,15.5 + parent: 2 + - uid: 21235 + components: + - type: Transform + pos: -32.5,16.5 + parent: 2 + - uid: 21236 + components: + - type: Transform + pos: -29.5,23.5 + parent: 2 + - uid: 21237 + components: + - type: Transform + pos: -29.5,20.5 + parent: 2 + - uid: 21238 + components: + - type: Transform + pos: -42.5,19.5 + parent: 2 + - uid: 21239 + components: + - type: Transform + pos: -43.5,19.5 + parent: 2 + - uid: 21240 + components: + - type: Transform + pos: -48.5,26.5 + parent: 2 + - uid: 21241 + components: + - type: Transform + pos: -50.5,26.5 + parent: 2 + - uid: 21242 + components: + - type: Transform + pos: -50.5,25.5 + parent: 2 + - uid: 21243 + components: + - type: Transform + pos: -50.5,24.5 + parent: 2 + - uid: 21244 + components: + - type: Transform + pos: -51.5,24.5 + parent: 2 + - uid: 21245 + components: + - type: Transform + pos: -33.5,25.5 + parent: 2 + - uid: 21246 + components: + - type: Transform + pos: -29.5,24.5 + parent: 2 + - uid: 21247 + components: + - type: Transform + pos: -29.5,22.5 + parent: 2 + - uid: 21248 + components: + - type: Transform + pos: -29.5,18.5 + parent: 2 + - uid: 21249 + components: + - type: Transform + pos: -35.5,25.5 + parent: 2 + - uid: 21250 + components: + - type: Transform + pos: -34.5,25.5 + parent: 2 + - uid: 21251 + components: + - type: Transform + pos: -57.5,2.5 + parent: 2 + - uid: 21252 + components: + - type: Transform + pos: -65.5,20.5 + parent: 2 + - uid: 21253 + components: + - type: Transform + pos: -68.5,13.5 + parent: 2 + - uid: 21254 + components: + - type: Transform + pos: -67.5,21.5 + parent: 2 + - uid: 21255 + components: + - type: Transform + pos: -65.5,21.5 + parent: 2 + - uid: 21256 + components: + - type: Transform + pos: -68.5,14.5 + parent: 2 + - uid: 21257 + components: + - type: Transform + pos: -68.5,12.5 + parent: 2 + - uid: 21258 + components: + - type: Transform + pos: -67.5,19.5 + parent: 2 + - uid: 21259 + components: + - type: Transform + pos: -67.5,20.5 + parent: 2 + - uid: 21260 + components: + - type: Transform + pos: -68.5,18.5 + parent: 2 + - uid: 21261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,7.5 + parent: 2 + - uid: 21262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-2.5 + parent: 2 + - uid: 21263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,7.5 + parent: 2 + - uid: 21264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,-2.5 + parent: 2 + - uid: 21265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,-2.5 + parent: 2 + - uid: 21266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,7.5 + parent: 2 + - uid: 21267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,7.5 + parent: 2 + - uid: 21268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,7.5 + parent: 2 + - uid: 21269 + components: + - type: Transform + pos: -65.5,4.5 + parent: 2 + - uid: 21270 + components: + - type: Transform + pos: -65.5,3.5 + parent: 2 + - uid: 21271 + components: + - type: Transform + pos: -65.5,2.5 + parent: 2 + - uid: 21272 + components: + - type: Transform + pos: -65.5,1.5 + parent: 2 + - uid: 21273 + components: + - type: Transform + pos: -65.5,0.5 + parent: 2 + - uid: 21274 + components: + - type: Transform + pos: 27.5,1.5 + parent: 2 + - uid: 21275 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - uid: 21276 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 21280 + components: + - type: Transform + pos: 65.5,24.5 + parent: 2 + - uid: 21281 + components: + - type: Transform + pos: 56.5,21.5 + parent: 2 + - uid: 21282 + components: + - type: Transform + pos: 57.5,21.5 + parent: 2 + - uid: 21283 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 + - uid: 21284 + components: + - type: Transform + pos: 55.5,21.5 + parent: 2 + - uid: 21285 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 21286 + components: + - type: Transform + pos: -74.5,-6.5 + parent: 2 + - uid: 21287 + components: + - type: Transform + pos: -73.5,-6.5 + parent: 2 + - uid: 21288 + components: + - type: Transform + pos: -71.5,-6.5 + parent: 2 + - uid: 21289 + components: + - type: Transform + pos: -70.5,-6.5 + parent: 2 + - uid: 21290 + components: + - type: Transform + pos: -69.5,-6.5 + parent: 2 + - uid: 21291 + components: + - type: Transform + pos: -68.5,-6.5 + parent: 2 + - uid: 21292 + components: + - type: Transform + pos: -75.5,-12.5 + parent: 2 + - uid: 21293 + components: + - type: Transform + pos: -74.5,-12.5 + parent: 2 + - uid: 21294 + components: + - type: Transform + pos: -73.5,-12.5 + parent: 2 + - uid: 21295 + components: + - type: Transform + pos: -71.5,-12.5 + parent: 2 + - uid: 21296 + components: + - type: Transform + pos: -70.5,-12.5 + parent: 2 + - uid: 21297 + components: + - type: Transform + pos: -69.5,-12.5 + parent: 2 + - uid: 21298 + components: + - type: Transform + pos: -68.5,-12.5 + parent: 2 + - uid: 21299 + components: + - type: Transform + pos: -76.5,-17.5 + parent: 2 + - uid: 21300 + components: + - type: Transform + pos: -73.5,-17.5 + parent: 2 + - uid: 21301 + components: + - type: Transform + pos: -72.5,-17.5 + parent: 2 + - uid: 21302 + components: + - type: Transform + pos: -71.5,-17.5 + parent: 2 + - uid: 21303 + components: + - type: Transform + pos: -70.5,-17.5 + parent: 2 + - uid: 21304 + components: + - type: Transform + pos: -67.5,-17.5 + parent: 2 + - uid: 21305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,-2.5 + parent: 2 + - uid: 21306 + components: + - type: Transform + pos: -53.5,-19.5 + parent: 2 + - uid: 21307 + components: + - type: Transform + pos: -54.5,-19.5 + parent: 2 + - uid: 21308 + components: + - type: Transform + pos: -58.5,-21.5 + parent: 2 + - uid: 21309 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 2 + - uid: 21310 + components: + - type: Transform + pos: -60.5,-21.5 + parent: 2 + - uid: 21311 + components: + - type: Transform + pos: -60.5,-20.5 + parent: 2 + - uid: 21312 + components: + - type: Transform + pos: -60.5,-18.5 + parent: 2 + - uid: 21313 + components: + - type: Transform + pos: -13.5,-70.5 + parent: 2 + - uid: 21314 + components: + - type: Transform + pos: -14.5,-70.5 + parent: 2 + - uid: 21315 + components: + - type: Transform + pos: -12.5,-70.5 + parent: 2 + - uid: 21316 + components: + - type: Transform + pos: -30.5,-28.5 + parent: 2 + - uid: 21317 + components: + - type: Transform + pos: -31.5,-28.5 + parent: 2 + - uid: 21318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,7.5 + parent: 2 + - uid: 21319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-2.5 + parent: 2 + - uid: 21320 + components: + - type: Transform + pos: 33.5,4.5 + parent: 2 + - uid: 21321 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 2 + - uid: 21322 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 2 + - uid: 21323 + components: + - type: Transform + pos: 2.5,-45.5 + parent: 2 + - uid: 21324 + components: + - type: Transform + pos: -16.5,-35.5 + parent: 2 + - uid: 21325 + components: + - type: Transform + pos: -16.5,-36.5 + parent: 2 + - uid: 21327 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 2 + - uid: 21328 + components: + - type: Transform + pos: -16.5,-41.5 + parent: 2 + - uid: 21329 + components: + - type: Transform + pos: -16.5,-42.5 + parent: 2 + - uid: 21330 + components: + - type: Transform + pos: -16.5,-43.5 + parent: 2 + - uid: 21331 + components: + - type: Transform + pos: -16.5,-44.5 + parent: 2 + - uid: 21332 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 2 + - uid: 21333 + components: + - type: Transform + pos: -18.5,-45.5 + parent: 2 + - uid: 21334 + components: + - type: Transform + pos: 2.5,-55.5 + parent: 2 + - uid: 21335 + components: + - type: Transform + pos: 2.5,-57.5 + parent: 2 + - uid: 21336 + components: + - type: Transform + pos: 87.5,-36.5 + parent: 2 + - uid: 21337 + components: + - type: Transform + pos: 87.5,-35.5 + parent: 2 + - uid: 21338 + components: + - type: Transform + pos: 87.5,-34.5 + parent: 2 + - uid: 21339 + components: + - type: Transform + pos: 69.5,-44.5 + parent: 2 + - uid: 21340 + components: + - type: Transform + pos: 69.5,-46.5 + parent: 2 + - uid: 21341 + components: + - type: Transform + pos: 68.5,-41.5 + parent: 2 + - uid: 21342 + components: + - type: Transform + pos: 68.5,-40.5 + parent: 2 + - uid: 21343 + components: + - type: Transform + pos: 68.5,-39.5 + parent: 2 + - uid: 21344 + components: + - type: Transform + pos: 68.5,-34.5 + parent: 2 + - uid: 21345 + components: + - type: Transform + pos: 68.5,-33.5 + parent: 2 + - uid: 21346 + components: + - type: Transform + pos: 63.5,-16.5 + parent: 2 + - uid: 21347 + components: + - type: Transform + pos: 61.5,-16.5 + parent: 2 + - uid: 21348 + components: + - type: Transform + pos: 54.5,-31.5 + parent: 2 + - uid: 21349 + components: + - type: Transform + pos: 54.5,-29.5 + parent: 2 + - uid: 21350 + components: + - type: Transform + pos: 71.5,-16.5 + parent: 2 + - uid: 21351 + components: + - type: Transform + pos: 75.5,-24.5 + parent: 2 + - uid: 21352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,-27.5 + parent: 2 + - uid: 21353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,-26.5 + parent: 2 + - uid: 21354 + components: + - type: Transform + pos: 78.5,-16.5 + parent: 2 + - uid: 21355 + components: + - type: Transform + pos: 79.5,-16.5 + parent: 2 + - uid: 21356 + components: + - type: Transform + pos: 80.5,-16.5 + parent: 2 + - uid: 21357 + components: + - type: Transform + pos: 80.5,-15.5 + parent: 2 + - uid: 21358 + components: + - type: Transform + pos: 80.5,-14.5 + parent: 2 + - uid: 21359 + components: + - type: Transform + pos: 81.5,-14.5 + parent: 2 + - uid: 21360 + components: + - type: Transform + pos: 82.5,-14.5 + parent: 2 + - uid: 21361 + components: + - type: Transform + pos: 83.5,-14.5 + parent: 2 + - uid: 21362 + components: + - type: Transform + pos: 84.5,-14.5 + parent: 2 + - uid: 21363 + components: + - type: Transform + pos: 85.5,-14.5 + parent: 2 + - uid: 21364 + components: + - type: Transform + pos: 85.5,-10.5 + parent: 2 + - uid: 21365 + components: + - type: Transform + pos: 84.5,-10.5 + parent: 2 + - uid: 21366 + components: + - type: Transform + pos: 83.5,-9.5 + parent: 2 + - uid: 21367 + components: + - type: Transform + pos: 83.5,-8.5 + parent: 2 + - uid: 21368 + components: + - type: Transform + pos: 83.5,-7.5 + parent: 2 + - uid: 21369 + components: + - type: Transform + pos: 84.5,-6.5 + parent: 2 + - uid: 21370 + components: + - type: Transform + pos: 85.5,-6.5 + parent: 2 + - uid: 21371 + components: + - type: Transform + pos: 85.5,-2.5 + parent: 2 + - uid: 21372 + components: + - type: Transform + pos: 84.5,-2.5 + parent: 2 + - uid: 21373 + components: + - type: Transform + pos: 83.5,-2.5 + parent: 2 + - uid: 21374 + components: + - type: Transform + pos: 83.5,-1.5 + parent: 2 + - uid: 21375 + components: + - type: Transform + pos: 82.5,-0.5 + parent: 2 + - uid: 21376 + components: + - type: Transform + pos: 81.5,-0.5 + parent: 2 + - uid: 21377 + components: + - type: Transform + pos: 80.5,-0.5 + parent: 2 + - uid: 21378 + components: + - type: Transform + pos: 75.5,0.5 + parent: 2 + - uid: 21379 + components: + - type: Transform + pos: 75.5,1.5 + parent: 2 + - uid: 21380 + components: + - type: Transform + pos: 75.5,2.5 + parent: 2 + - uid: 21381 + components: + - type: Transform + pos: 75.5,3.5 + parent: 2 + - uid: 21382 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - uid: 21383 + components: + - type: Transform + pos: 79.5,-7.5 + parent: 2 + - uid: 21384 + components: + - type: Transform + pos: 67.5,1.5 + parent: 2 + - uid: 21385 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 2 + - uid: 21386 + components: + - type: Transform + pos: -37.5,-32.5 + parent: 2 + - uid: 21387 + components: + - type: Transform + pos: 87.5,-51.5 + parent: 2 + - uid: 21388 + components: + - type: Transform + pos: 87.5,-52.5 + parent: 2 + - uid: 21389 + components: + - type: Transform + pos: 87.5,-53.5 + parent: 2 + - uid: 21390 + components: + - type: Transform + pos: -41.5,-25.5 + parent: 2 + - uid: 21391 + components: + - type: Transform + pos: 82.5,-67.5 + parent: 2 + - uid: 21392 + components: + - type: Transform + pos: 82.5,-66.5 + parent: 2 + - uid: 21393 + components: + - type: Transform + pos: 83.5,-66.5 + parent: 2 + - uid: 21394 + components: + - type: Transform + pos: 82.5,-68.5 + parent: 2 + - uid: 21395 + components: + - type: Transform + pos: -38.5,-32.5 + parent: 2 + - uid: 21396 + components: + - type: Transform + pos: 77.5,-65.5 + parent: 2 + - uid: 21397 + components: + - type: Transform + pos: 76.5,-65.5 + parent: 2 + - uid: 21398 + components: + - type: Transform + pos: 70.5,-69.5 + parent: 2 + - uid: 21399 + components: + - type: Transform + pos: 69.5,-69.5 + parent: 2 + - uid: 21400 + components: + - type: Transform + pos: 65.5,-73.5 + parent: 2 + - uid: 21401 + components: + - type: Transform + pos: 64.5,-73.5 + parent: 2 + - uid: 21402 + components: + - type: Transform + pos: 63.5,-73.5 + parent: 2 + - uid: 21403 + components: + - type: Transform + pos: 62.5,-73.5 + parent: 2 + - uid: 21404 + components: + - type: Transform + pos: 62.5,-72.5 + parent: 2 + - uid: 21405 + components: + - type: Transform + pos: 60.5,-72.5 + parent: 2 + - uid: 21406 + components: + - type: Transform + pos: 60.5,-71.5 + parent: 2 + - uid: 21407 + components: + - type: Transform + pos: 60.5,-70.5 + parent: 2 + - uid: 21408 + components: + - type: Transform + pos: 62.5,-70.5 + parent: 2 + - uid: 21409 + components: + - type: Transform + pos: 63.5,-63.5 + parent: 2 + - uid: 21410 + components: + - type: Transform + pos: 62.5,-63.5 + parent: 2 + - uid: 21411 + components: + - type: Transform + pos: 61.5,-63.5 + parent: 2 + - uid: 21412 + components: + - type: Transform + pos: 58.5,-63.5 + parent: 2 + - uid: 21413 + components: + - type: Transform + pos: 57.5,-63.5 + parent: 2 + - uid: 21414 + components: + - type: Transform + pos: 56.5,-63.5 + parent: 2 + - uid: 21415 + components: + - type: Transform + pos: 53.5,-63.5 + parent: 2 + - uid: 21416 + components: + - type: Transform + pos: 52.5,-63.5 + parent: 2 + - uid: 21417 + components: + - type: Transform + pos: 51.5,-63.5 + parent: 2 + - uid: 21418 + components: + - type: Transform + pos: 50.5,-64.5 + parent: 2 + - uid: 21419 + components: + - type: Transform + pos: 50.5,-65.5 + parent: 2 + - uid: 21420 + components: + - type: Transform + pos: 44.5,-74.5 + parent: 2 + - uid: 21421 + components: + - type: Transform + pos: 43.5,-74.5 + parent: 2 + - uid: 21422 + components: + - type: Transform + pos: 42.5,-74.5 + parent: 2 + - uid: 21423 + components: + - type: Transform + pos: 74.5,-61.5 + parent: 2 + - uid: 21424 + components: + - type: Transform + pos: 73.5,-61.5 + parent: 2 + - uid: 21425 + components: + - type: Transform + pos: 73.5,-63.5 + parent: 2 + - uid: 21426 + components: + - type: Transform + pos: 74.5,-63.5 + parent: 2 + - uid: 21427 + components: + - type: Transform + pos: 15.5,-44.5 + parent: 2 + - uid: 21428 + components: + - type: Transform + pos: -12.5,-43.5 + parent: 2 + - uid: 21430 + components: + - type: Transform + pos: -13.5,-44.5 + parent: 2 + - uid: 21431 + components: + - type: Transform + pos: -9.5,-57.5 + parent: 2 + - uid: 21432 + components: + - type: Transform + pos: -9.5,-56.5 + parent: 2 + - uid: 21433 + components: + - type: Transform + pos: -9.5,-55.5 + parent: 2 + - uid: 21434 + components: + - type: Transform + pos: -21.5,-61.5 + parent: 2 + - uid: 21435 + components: + - type: Transform + pos: -22.5,-61.5 + parent: 2 + - uid: 21436 + components: + - type: Transform + pos: -23.5,-61.5 + parent: 2 + - uid: 21437 + components: + - type: Transform + pos: -24.5,-61.5 + parent: 2 + - uid: 21438 + components: + - type: Transform + pos: -25.5,-61.5 + parent: 2 + - uid: 21439 + components: + - type: Transform + pos: -27.5,-61.5 + parent: 2 + - uid: 21440 + components: + - type: Transform + pos: -26.5,-61.5 + parent: 2 + - uid: 21441 + components: + - type: Transform + pos: -28.5,-61.5 + parent: 2 + - uid: 21442 + components: + - type: Transform + pos: -29.5,-61.5 + parent: 2 + - uid: 21443 + components: + - type: Transform + pos: 15.5,-42.5 + parent: 2 + - uid: 21444 + components: + - type: Transform + pos: 42.5,-60.5 + parent: 2 + - uid: 21445 + components: + - type: Transform + pos: 42.5,-59.5 + parent: 2 + - uid: 21446 + components: + - type: Transform + pos: 42.5,-58.5 + parent: 2 + - uid: 21447 + components: + - type: Transform + pos: 15.5,-40.5 + parent: 2 + - uid: 21448 + components: + - type: Transform + pos: -39.5,-62.5 + parent: 2 + - uid: 21449 + components: + - type: Transform + pos: -39.5,-63.5 + parent: 2 + - uid: 21450 + components: + - type: Transform + pos: -40.5,-62.5 + parent: 2 + - uid: 21451 + components: + - type: Transform + pos: -41.5,-62.5 + parent: 2 + - uid: 21452 + components: + - type: Transform + pos: -36.5,-51.5 + parent: 2 + - uid: 21453 + components: + - type: Transform + pos: -37.5,-51.5 + parent: 2 + - uid: 21454 + components: + - type: Transform + pos: -22.5,-74.5 + parent: 2 + - uid: 21455 + components: + - type: Transform + pos: -28.5,-63.5 + parent: 2 + - uid: 21456 + components: + - type: Transform + pos: -30.5,-67.5 + parent: 2 + - uid: 21457 + components: + - type: Transform + pos: -30.5,-68.5 + parent: 2 + - uid: 21458 + components: + - type: Transform + pos: -30.5,-69.5 + parent: 2 + - uid: 21459 + components: + - type: Transform + pos: -30.5,-70.5 + parent: 2 + - uid: 21460 + components: + - type: Transform + pos: -32.5,-67.5 + parent: 2 + - uid: 21461 + components: + - type: Transform + pos: -32.5,-68.5 + parent: 2 + - uid: 21462 + components: + - type: Transform + pos: -32.5,-69.5 + parent: 2 + - uid: 21463 + components: + - type: Transform + pos: -32.5,-70.5 + parent: 2 + - uid: 21464 + components: + - type: Transform + pos: -27.5,-74.5 + parent: 2 + - uid: 21465 + components: + - type: Transform + pos: -26.5,-74.5 + parent: 2 + - uid: 21466 + components: + - type: Transform + pos: -25.5,-74.5 + parent: 2 + - uid: 21467 + components: + - type: Transform + pos: -24.5,-74.5 + parent: 2 + - uid: 21468 + components: + - type: Transform + pos: -23.5,-74.5 + parent: 2 + - uid: 21469 + components: + - type: Transform + pos: -33.5,-73.5 + parent: 2 + - uid: 21470 + components: + - type: Transform + pos: -33.5,-74.5 + parent: 2 + - uid: 21471 + components: + - type: Transform + pos: -33.5,-75.5 + parent: 2 + - uid: 21472 + components: + - type: Transform + pos: -32.5,-75.5 + parent: 2 + - uid: 21473 + components: + - type: Transform + pos: -31.5,-75.5 + parent: 2 + - uid: 21474 + components: + - type: Transform + pos: -30.5,-75.5 + parent: 2 + - uid: 21475 + components: + - type: Transform + pos: 4.5,-64.5 + parent: 2 + - uid: 21476 + components: + - type: Transform + pos: -0.5,-65.5 + parent: 2 + - uid: 21477 + components: + - type: Transform + pos: -1.5,-65.5 + parent: 2 + - uid: 21478 + components: + - type: Transform + pos: -2.5,-65.5 + parent: 2 + - uid: 21479 + components: + - type: Transform + pos: -4.5,-65.5 + parent: 2 + - uid: 21480 + components: + - type: Transform + pos: -5.5,-65.5 + parent: 2 + - uid: 21481 + components: + - type: Transform + pos: -7.5,-65.5 + parent: 2 + - uid: 21482 + components: + - type: Transform + pos: -8.5,-65.5 + parent: 2 + - uid: 21483 + components: + - type: Transform + pos: 19.5,-73.5 + parent: 2 + - uid: 21484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-36.5 + parent: 2 + - uid: 21485 + components: + - type: Transform + pos: -15.5,-74.5 + parent: 2 + - uid: 21486 + components: + - type: Transform + pos: -16.5,-74.5 + parent: 2 + - uid: 21487 + components: + - type: Transform + pos: -26.5,-42.5 + parent: 2 + - uid: 21488 + components: + - type: Transform + pos: -27.5,-42.5 + parent: 2 + - uid: 21489 + components: + - type: Transform + pos: -28.5,-42.5 + parent: 2 + - uid: 21490 + components: + - type: Transform + pos: -22.5,-40.5 + parent: 2 + - uid: 21491 + components: + - type: Transform + pos: -21.5,-44.5 + parent: 2 + - uid: 21494 + components: + - type: Transform + pos: -21.5,-46.5 + parent: 2 + - uid: 21495 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 2 + - uid: 21496 + components: + - type: Transform + pos: -37.5,-42.5 + parent: 2 + - uid: 21497 + components: + - type: Transform + pos: 23.5,-46.5 + parent: 2 + - uid: 21498 + components: + - type: Transform + pos: 23.5,-47.5 + parent: 2 + - uid: 21499 + components: + - type: Transform + pos: 23.5,-48.5 + parent: 2 + - uid: 21500 + components: + - type: Transform + pos: 23.5,-50.5 + parent: 2 + - uid: 21501 + components: + - type: Transform + pos: 23.5,-51.5 + parent: 2 + - uid: 21502 + components: + - type: Transform + pos: 23.5,-52.5 + parent: 2 + - uid: 21503 + components: + - type: Transform + pos: 23.5,-54.5 + parent: 2 + - uid: 21504 + components: + - type: Transform + pos: 23.5,-55.5 + parent: 2 + - uid: 21505 + components: + - type: Transform + pos: 23.5,-56.5 + parent: 2 + - uid: 21506 + components: + - type: Transform + pos: 21.5,-61.5 + parent: 2 + - uid: 21507 + components: + - type: Transform + pos: 20.5,-61.5 + parent: 2 + - uid: 21508 + components: + - type: Transform + pos: 22.5,-61.5 + parent: 2 + - uid: 21509 + components: + - type: Transform + pos: 8.5,-48.5 + parent: 2 + - uid: 21510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-36.5 + parent: 2 + - uid: 21511 + components: + - type: Transform + pos: 15.5,-45.5 + parent: 2 + - uid: 21512 + components: + - type: Transform + pos: 15.5,-43.5 + parent: 2 + - uid: 21513 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 2 + - uid: 21514 + components: + - type: Transform + pos: 29.5,-103.5 + parent: 2 + - uid: 21515 + components: + - type: Transform + pos: 29.5,-102.5 + parent: 2 + - uid: 21516 + components: + - type: Transform + pos: 29.5,-101.5 + parent: 2 + - uid: 21517 + components: + - type: Transform + pos: 29.5,-100.5 + parent: 2 + - uid: 21518 + components: + - type: Transform + pos: 29.5,-99.5 + parent: 2 + - uid: 21519 + components: + - type: Transform + pos: 29.5,-98.5 + parent: 2 + - uid: 21520 + components: + - type: Transform + pos: 29.5,-97.5 + parent: 2 + - uid: 21521 + components: + - type: Transform + pos: 29.5,-96.5 + parent: 2 + - uid: 21522 + components: + - type: Transform + pos: 29.5,-95.5 + parent: 2 + - uid: 21523 + components: + - type: Transform + pos: 27.5,-95.5 + parent: 2 + - uid: 21524 + components: + - type: Transform + pos: 27.5,-96.5 + parent: 2 + - uid: 21525 + components: + - type: Transform + pos: 27.5,-97.5 + parent: 2 + - uid: 21526 + components: + - type: Transform + pos: 27.5,-98.5 + parent: 2 + - uid: 21527 + components: + - type: Transform + pos: 27.5,-99.5 + parent: 2 + - uid: 21528 + components: + - type: Transform + pos: 27.5,-100.5 + parent: 2 + - uid: 21529 + components: + - type: Transform + pos: 27.5,-101.5 + parent: 2 + - uid: 21530 + components: + - type: Transform + pos: 27.5,-102.5 + parent: 2 + - uid: 21531 + components: + - type: Transform + pos: 27.5,-103.5 + parent: 2 + - uid: 21532 + components: + - type: Transform + pos: 30.5,-107.5 + parent: 2 + - uid: 21533 + components: + - type: Transform + pos: 29.5,-107.5 + parent: 2 + - uid: 21534 + components: + - type: Transform + pos: 27.5,-107.5 + parent: 2 + - uid: 21535 + components: + - type: Transform + pos: 26.5,-107.5 + parent: 2 + - uid: 21536 + components: + - type: Transform + pos: 30.5,-81.5 + parent: 2 + - uid: 21537 + components: + - type: Transform + pos: 30.5,-80.5 + parent: 2 + - uid: 21538 + components: + - type: Transform + pos: 30.5,-79.5 + parent: 2 + - uid: 21539 + components: + - type: Transform + pos: 30.5,-78.5 + parent: 2 + - uid: 21540 + components: + - type: Transform + pos: 30.5,-77.5 + parent: 2 + - uid: 21541 + components: + - type: Transform + pos: 29.5,-77.5 + parent: 2 + - uid: 21542 + components: + - type: Transform + pos: 28.5,-77.5 + parent: 2 + - uid: 21543 + components: + - type: Transform + pos: 27.5,-77.5 + parent: 2 + - uid: 21544 + components: + - type: Transform + pos: 26.5,-77.5 + parent: 2 + - uid: 21545 + components: + - type: Transform + pos: 26.5,-78.5 + parent: 2 + - uid: 21546 + components: + - type: Transform + pos: 26.5,-79.5 + parent: 2 + - uid: 21547 + components: + - type: Transform + pos: 25.5,-79.5 + parent: 2 + - uid: 21548 + components: + - type: Transform + pos: 24.5,-79.5 + parent: 2 + - uid: 21549 + components: + - type: Transform + pos: 24.5,-81.5 + parent: 2 + - uid: 21550 + components: + - type: Transform + pos: 26.5,-81.5 + parent: 2 + - uid: 21551 + components: + - type: Transform + pos: -23.5,-31.5 + parent: 2 + - uid: 21552 + components: + - type: Transform + pos: -23.5,-29.5 + parent: 2 + - uid: 21553 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 21554 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 21555 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 21556 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 21557 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 21558 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 21559 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - uid: 21560 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 21561 + components: + - type: Transform + pos: -1.5,46.5 + parent: 2 + - uid: 21562 + components: + - type: Transform + pos: 38.5,12.5 + parent: 2 + - uid: 21563 + components: + - type: Transform + pos: 79.5,-27.5 + parent: 2 + - uid: 21564 + components: + - type: Transform + pos: 32.5,16.5 + parent: 2 + - uid: 21565 + components: + - type: Transform + pos: 21.5,40.5 + parent: 2 + - uid: 21566 + components: + - type: Transform + pos: 7.5,42.5 + parent: 2 + - uid: 21567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-3.5 + parent: 2 + - uid: 21568 + components: + - type: Transform + pos: 3.5,29.5 + parent: 2 + - uid: 21569 + components: + - type: Transform + pos: -8.5,25.5 + parent: 2 + - uid: 21570 + components: + - type: Transform + pos: -6.5,25.5 + parent: 2 + - uid: 21571 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - uid: 21572 + components: + - type: Transform + pos: -2.5,25.5 + parent: 2 + - uid: 21573 + components: + - type: Transform + pos: -0.5,25.5 + parent: 2 + - uid: 21574 + components: + - type: Transform + pos: 2.5,25.5 + parent: 2 + - uid: 21575 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 21576 + components: + - type: Transform + pos: 6.5,29.5 + parent: 2 + - uid: 21577 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - uid: 21578 + components: + - type: Transform + pos: -0.5,22.5 + parent: 2 + - uid: 21579 + components: + - type: Transform + pos: -1.5,22.5 + parent: 2 + - uid: 21580 + components: + - type: Transform + pos: -2.5,22.5 + parent: 2 + - uid: 21581 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - uid: 21582 + components: + - type: Transform + pos: -5.5,22.5 + parent: 2 + - uid: 21583 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 + - uid: 21584 + components: + - type: Transform + pos: -8.5,22.5 + parent: 2 + - uid: 21585 + components: + - type: Transform + pos: -9.5,22.5 + parent: 2 + - uid: 21586 + components: + - type: Transform + pos: -10.5,22.5 + parent: 2 + - uid: 21587 + components: + - type: Transform + pos: -6.5,-75.5 + parent: 2 + - uid: 21588 + components: + - type: Transform + pos: -4.5,38.5 + parent: 2 + - uid: 21589 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 2 + - uid: 21590 + components: + - type: Transform + pos: -13.5,-32.5 + parent: 2 + - uid: 21591 + components: + - type: Transform + pos: -12.5,-32.5 + parent: 2 + - uid: 21592 + components: + - type: Transform + pos: 35.5,4.5 + parent: 2 + - uid: 21593 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - uid: 21594 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 21595 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 2 + - uid: 21596 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 2 + - uid: 21597 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 2 + - uid: 21598 + components: + - type: Transform + pos: -4.5,-28.5 + parent: 2 + - uid: 21599 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 2 + - uid: 21600 + components: + - type: Transform + pos: 3.5,-75.5 + parent: 2 + - uid: 21601 + components: + - type: Transform + pos: -0.5,-75.5 + parent: 2 + - uid: 21602 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 2 + - uid: 21603 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 2 + - uid: 21604 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 2 + - uid: 21605 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 21606 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 21607 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - uid: 21608 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 21609 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 21610 + components: + - type: Transform + pos: -1.5,-75.5 + parent: 2 + - uid: 21611 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 + - uid: 21612 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 21613 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 2 + - uid: 21614 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 2 + - uid: 21615 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 2 + - uid: 21616 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 + - uid: 21617 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 + - uid: 21618 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 21619 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 21620 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 21621 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 + - uid: 21622 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 21623 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 21624 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 21625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-58.5 + parent: 2 + - uid: 21626 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 21627 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - uid: 21628 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 21629 + components: + - type: Transform + pos: 8.5,29.5 + parent: 2 + - uid: 21630 + components: + - type: Transform + pos: -10.5,25.5 + parent: 2 + - uid: 21631 + components: + - type: Transform + pos: 21.5,41.5 + parent: 2 + - uid: 21632 + components: + - type: Transform + pos: -0.5,46.5 + parent: 2 + - uid: 21633 + components: + - type: Transform + pos: 0.5,46.5 + parent: 2 + - uid: 21634 + components: + - type: Transform + pos: -18.5,39.5 + parent: 2 + - uid: 21635 + components: + - type: Transform + pos: -15.5,54.5 + parent: 2 + - uid: 21636 + components: + - type: Transform + pos: -14.5,54.5 + parent: 2 + - uid: 21637 + components: + - type: Transform + pos: -12.5,54.5 + parent: 2 + - uid: 21638 + components: + - type: Transform + pos: -11.5,54.5 + parent: 2 + - uid: 21639 + components: + - type: Transform + pos: -25.5,45.5 + parent: 2 + - uid: 21640 + components: + - type: Transform + pos: 20.5,34.5 + parent: 2 + - uid: 21641 + components: + - type: Transform + pos: -9.5,37.5 + parent: 2 + - uid: 21642 + components: + - type: Transform + pos: 21.5,42.5 + parent: 2 + - uid: 21643 + components: + - type: Transform + pos: 25.5,42.5 + parent: 2 + - uid: 21644 + components: + - type: Transform + pos: 25.5,41.5 + parent: 2 + - uid: 21645 + components: + - type: Transform + pos: 25.5,40.5 + parent: 2 + - uid: 21646 + components: + - type: Transform + pos: -6.5,38.5 + parent: 2 + - uid: 21647 + components: + - type: Transform + pos: -21.5,39.5 + parent: 2 + - uid: 21648 + components: + - type: Transform + pos: -25.5,43.5 + parent: 2 + - uid: 21649 + components: + - type: Transform + pos: -25.5,44.5 + parent: 2 + - uid: 21650 + components: + - type: Transform + pos: 67.5,3.5 + parent: 2 + - uid: 21651 + components: + - type: Transform + pos: 57.5,9.5 + parent: 2 + - uid: 21652 + components: + - type: Transform + pos: -65.5,19.5 + parent: 2 + - uid: 21653 + components: + - type: Transform + pos: -68.5,16.5 + parent: 2 + - uid: 21654 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 + - uid: 21655 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 21656 + components: + - type: Transform + pos: -68.5,17.5 + parent: 2 + - uid: 21657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-2.5 + parent: 2 + - uid: 21658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,7.5 + parent: 2 + - uid: 21659 + components: + - type: Transform + pos: -51.5,13.5 + parent: 2 + - uid: 21660 + components: + - type: Transform + pos: -36.5,17.5 + parent: 2 + - uid: 21661 + components: + - type: Transform + pos: -37.5,17.5 + parent: 2 + - uid: 21662 + components: + - type: Transform + pos: -38.5,17.5 + parent: 2 + - uid: 21663 + components: + - type: Transform + pos: -35.5,13.5 + parent: 2 + - uid: 21664 + components: + - type: Transform + pos: -36.5,13.5 + parent: 2 + - uid: 21665 + components: + - type: Transform + pos: -37.5,13.5 + parent: 2 + - uid: 21666 + components: + - type: Transform + pos: -38.5,13.5 + parent: 2 + - uid: 21667 + components: + - type: Transform + pos: -51.5,15.5 + parent: 2 + - uid: 21668 + components: + - type: Transform + pos: -39.5,-32.5 + parent: 2 + - uid: 21669 + components: + - type: Transform + pos: -36.5,-42.5 + parent: 2 + - uid: 21670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-44.5 + parent: 2 + - uid: 21672 + components: + - type: Transform + pos: 3.5,-64.5 + parent: 2 + - uid: 21673 + components: + - type: Transform + pos: 19.5,-70.5 + parent: 2 + - uid: 21674 + components: + - type: Transform + pos: 19.5,-71.5 + parent: 2 + - uid: 21675 + components: + - type: Transform + pos: 19.5,-72.5 + parent: 2 + - uid: 21676 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 2 + - uid: 21677 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 2 + - uid: 21678 + components: + - type: Transform + pos: 75.5,5.5 + parent: 2 + - uid: 21679 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 21680 + components: + - type: Transform + pos: 69.5,-16.5 + parent: 2 + - uid: 21681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-42.5 + parent: 2 + - uid: 21682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-42.5 + parent: 2 + - uid: 21683 + components: + - type: Transform + pos: -22.5,-45.5 + parent: 2 + - uid: 21684 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + - uid: 21685 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 21686 + components: + - type: Transform + pos: 45.5,-60.5 + parent: 2 + - uid: 21687 + components: + - type: Transform + pos: 45.5,-59.5 + parent: 2 + - uid: 21688 + components: + - type: Transform + pos: 45.5,-58.5 + parent: 2 + - uid: 21689 + components: + - type: Transform + pos: 44.5,-57.5 + parent: 2 + - uid: 21690 + components: + - type: Transform + pos: 46.5,-57.5 + parent: 2 + - uid: 21691 + components: + - type: Transform + pos: 67.5,0.5 + parent: 2 + - uid: 21692 + components: + - type: Transform + pos: 23.5,-44.5 + parent: 2 + - uid: 21693 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 2 + - uid: 21694 + components: + - type: Transform + pos: 23.5,-42.5 + parent: 2 + - uid: 21695 + components: + - type: Transform + pos: 10.5,-32.5 + parent: 2 + - uid: 21696 + components: + - type: Transform + pos: 9.5,-32.5 + parent: 2 + - uid: 21697 + components: + - type: Transform + pos: 14.5,36.5 + parent: 2 + - uid: 21698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-45.5 + parent: 2 + - uid: 21699 + components: + - type: Transform + pos: 0.5,-75.5 + parent: 2 + - uid: 21700 + components: + - type: Transform + pos: 1.5,46.5 + parent: 2 + - uid: 21701 + components: + - type: Transform + pos: 2.5,46.5 + parent: 2 + - uid: 21702 + components: + - type: Transform + pos: -41.5,-24.5 + parent: 2 + - uid: 21703 + components: + - type: Transform + pos: -41.5,-20.5 + parent: 2 + - uid: 21704 + components: + - type: Transform + pos: 13.5,36.5 + parent: 2 + - uid: 21705 + components: + - type: Transform + pos: 31.5,16.5 + parent: 2 + - uid: 21706 + components: + - type: Transform + pos: -19.5,-28.5 + parent: 2 + - uid: 21707 + components: + - type: Transform + pos: -21.5,-28.5 + parent: 2 + - uid: 21708 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 2 + - uid: 21709 + components: + - type: Transform + pos: -22.5,-28.5 + parent: 2 + - uid: 21710 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 21711 + components: + - type: Transform + pos: 31.5,-40.5 + parent: 2 + - uid: 21712 + components: + - type: Transform + pos: 14.5,42.5 + parent: 2 + - uid: 21713 + components: + - type: Transform + pos: 12.5,42.5 + parent: 2 + - uid: 21714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-40.5 + parent: 2 + - uid: 21715 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 21716 + components: + - type: Transform + pos: 32.5,6.5 + parent: 2 + - uid: 21717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,6.5 + parent: 2 + - uid: 21718 + components: + - type: Transform + pos: 48.5,-11.5 + parent: 2 + - uid: 21719 + components: + - type: Transform + pos: 7.5,33.5 + parent: 2 + - uid: 21720 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 + - uid: 21721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,20.5 + parent: 2 + - uid: 21722 + components: + - type: Transform + pos: 36.5,6.5 + parent: 2 + - uid: 21723 + components: + - type: Transform + pos: -17.5,-74.5 + parent: 2 + - uid: 21724 + components: + - type: Transform + pos: 31.5,-42.5 + parent: 2 + - uid: 21725 + components: + - type: Transform + pos: 31.5,-56.5 + parent: 2 + - uid: 21726 + components: + - type: Transform + pos: 31.5,-46.5 + parent: 2 + - uid: 21727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-36.5 + parent: 2 + - uid: 21728 + components: + - type: Transform + pos: -4.5,34.5 + parent: 2 + - uid: 21729 + components: + - type: Transform + pos: 64.5,-29.5 + parent: 2 + - uid: 21730 + components: + - type: Transform + pos: 58.5,-54.5 + parent: 2 + - uid: 21731 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 + - uid: 21732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-51.5 + parent: 2 + - uid: 21733 + components: + - type: Transform + pos: 60.5,-28.5 + parent: 2 + - uid: 21734 + components: + - type: Transform + pos: 3.5,46.5 + parent: 2 + - uid: 21735 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 + - uid: 21737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,36.5 + parent: 2 + - uid: 21738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,34.5 + parent: 2 + - uid: 21739 + components: + - type: Transform + pos: 28.5,30.5 + parent: 2 + - uid: 21740 + components: + - type: Transform + pos: 114.5,-36.5 + parent: 2 + - uid: 21741 + components: + - type: Transform + pos: 114.5,-35.5 + parent: 2 + - uid: 21742 + components: + - type: Transform + pos: 116.5,-34.5 + parent: 2 + - uid: 21743 + components: + - type: Transform + pos: 118.5,-36.5 + parent: 2 + - uid: 21744 + components: + - type: Transform + pos: 118.5,-35.5 + parent: 2 + - uid: 21745 + components: + - type: Transform + pos: 120.5,-38.5 + parent: 2 + - uid: 21746 + components: + - type: Transform + pos: 119.5,-39.5 + parent: 2 + - uid: 21747 + components: + - type: Transform + pos: 119.5,-40.5 + parent: 2 + - uid: 21748 + components: + - type: Transform + pos: 114.5,-41.5 + parent: 2 + - uid: 21749 + components: + - type: Transform + pos: 114.5,-40.5 + parent: 2 + - uid: 21750 + components: + - type: Transform + pos: 85.5,-37.5 + parent: 2 + - uid: 21751 + components: + - type: Transform + pos: 86.5,-37.5 + parent: 2 + - uid: 21752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,16.5 + parent: 2 + - uid: 21753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,16.5 + parent: 2 + - uid: 21754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,16.5 + parent: 2 + - uid: 21755 + components: + - type: Transform + pos: 31.5,-44.5 + parent: 2 + - uid: 21756 + components: + - type: Transform + pos: 31.5,-52.5 + parent: 2 + - uid: 21757 + components: + - type: Transform + pos: 31.5,-48.5 + parent: 2 + - uid: 23189 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 2 + - uid: 23190 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 2 + - uid: 23192 + components: + - type: Transform + pos: -13.5,-34.5 + parent: 2 + - uid: 23193 + components: + - type: Transform + pos: -14.5,-35.5 + parent: 2 + - uid: 23471 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 2 + - uid: 23527 + components: + - type: Transform + pos: -14.5,-37.5 + parent: 2 + - uid: 23528 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 2 +- proto: RemoteSignaller + entities: + - uid: 21758 + components: + - type: Transform + pos: 80.27511,-46.427483 + parent: 2 + - uid: 21759 + components: + - type: Transform + pos: 80.69698,-46.349358 + parent: 2 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 21760 + components: + - type: Transform + pos: 52.5,-31.5 + parent: 2 +- proto: ReverseEngineeringMachine + entities: + - uid: 21761 + components: + - type: Transform + pos: 63.5,-49.5 + parent: 2 +- proto: RightLegBorgEngineer + entities: + - uid: 21762 + components: + - type: Transform + pos: 62.150352,-21.534908 + parent: 2 +- proto: RiotBulletShield + entities: + - uid: 21763 + components: + - type: Transform + pos: -0.7342808,38.32946 + parent: 2 +- proto: RiotLaserShield + entities: + - uid: 21764 + components: + - type: Transform + pos: -0.32803082,38.32946 + parent: 2 +- proto: RiotShield + entities: + - uid: 1225 + components: + - type: Transform + parent: 1209 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 21765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.6874056,37.39196 + parent: 2 + - uid: 21766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.3436556,37.39196 + parent: 2 +- proto: RobustHarvestChemistryBottle + entities: + - uid: 21767 + components: + - type: Transform + pos: 3.3688369,51.507935 + parent: 2 +- proto: RockGuitarInstrument + entities: + - uid: 21768 + components: + - type: Transform + pos: 20.337229,0.52570033 + parent: 2 +- proto: RollerBed + entities: + - uid: 21769 + components: + - type: Transform + pos: 31.522,-23.25922 + parent: 2 + - uid: 21770 + components: + - type: Transform + pos: 63.382973,11.66713 + parent: 2 + - uid: 21771 + components: + - type: Transform + pos: 32.65516,-23.247793 + parent: 2 +- proto: RollerBedSpawnFolded + entities: + - uid: 21772 + components: + - type: Transform + pos: -23.48343,3.6790857 + parent: 2 +- proto: RollingPin + entities: + - uid: 21773 + components: + - type: Transform + pos: 37.508766,-6.8546605 + parent: 2 +- proto: RubberStampApproved + entities: + - uid: 21774 + components: + - type: Transform + pos: -2.258723,-4.924784 + parent: 2 + - uid: 21775 + components: + - type: Transform + pos: -20.616966,-19.456636 + parent: 2 +- proto: RubberStampDenied + entities: + - uid: 21776 + components: + - type: Transform + pos: -11.258898,-13.742954 + parent: 2 + - uid: 21777 + components: + - type: Transform + pos: -19.898216,-19.253511 + parent: 2 +- proto: SalvageCanisterSpawner + entities: + - uid: 21778 + components: + - type: Transform + pos: -10.5,6.5 + parent: 2 + - uid: 21779 + components: + - type: Transform + pos: -8.5,7.5 + parent: 2 + - uid: 21780 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 2 + - uid: 21781 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 2 + - uid: 21782 + components: + - type: Transform + pos: -33.5,-21.5 + parent: 2 + - uid: 21783 + components: + - type: Transform + pos: -35.5,-22.5 + parent: 2 + - uid: 21784 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 2 + - uid: 21785 + components: + - type: Transform + pos: -37.5,-22.5 + parent: 2 + - uid: 21786 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 2 + - uid: 21787 + components: + - type: Transform + pos: 85.5,-53.5 + parent: 2 + - uid: 21788 + components: + - type: Transform + pos: 84.5,-40.5 + parent: 2 + - uid: 21789 + components: + - type: Transform + pos: 86.5,-53.5 + parent: 2 + - uid: 21790 + components: + - type: Transform + pos: 73.5,-59.5 + parent: 2 + - uid: 21791 + components: + - type: Transform + pos: 68.5,-66.5 + parent: 2 + - uid: 21792 + components: + - type: Transform + pos: 84.5,-59.5 + parent: 2 + - uid: 28126 + components: + - type: Transform + pos: 79.5,-49.5 + parent: 2 + - uid: 28127 + components: + - type: Transform + pos: 78.5,-49.5 + parent: 2 + - uid: 28128 + components: + - type: Transform + pos: 77.5,-49.5 + parent: 2 + - uid: 28129 + components: + - type: Transform + pos: 77.5,-50.5 + parent: 2 +- proto: SalvageMagnet + entities: + - uid: 21793 + components: + - type: Transform + pos: -30.5,-36.5 + parent: 2 +- proto: SawElectric + entities: + - uid: 21794 + components: + - type: Transform + pos: 21.642136,-32.415237 + parent: 2 +- proto: Scalpel + entities: + - uid: 21795 + components: + - type: Transform + pos: 39.50725,-17.749228 + parent: 2 +- proto: ScalpelLaser + entities: + - uid: 21796 + components: + - type: Transform + pos: 22.461325,-32.871178 + parent: 2 +- proto: ScalpelShiv + entities: + - uid: 21798 + components: + - type: Transform + parent: 21797 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False +- proto: SciFlash + entities: + - uid: 21799 + components: + - type: Transform + pos: -8.29982,-6.410202 + parent: 2 + - uid: 21800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.596546,-33.620956 + parent: 2 +- proto: Screen + entities: + - uid: 21801 + components: + - type: Transform + pos: 83.5,-6.5 + parent: 2 + - uid: 21802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,22.5 + parent: 2 + - uid: 21803 + components: + - type: Transform + pos: 83.5,-10.5 + parent: 2 + - uid: 21804 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 21805 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 21806 + components: + - type: Transform + pos: -7.5,22.5 + parent: 2 + - uid: 21807 + components: + - type: Transform + pos: 39.5,-10.5 + parent: 2 + - uid: 21808 + components: + - type: Transform + pos: 65.5,-11.5 + parent: 2 + - uid: 21809 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 2 +- proto: Screwdriver + entities: + - uid: 21810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.9562817,-27.523293 + parent: 2 + - uid: 21811 + components: + - type: Transform + pos: 29.559649,-83.400314 + parent: 2 + - uid: 21812 + components: + - type: Transform + pos: 2.526245,-35.596924 + parent: 2 + - uid: 21813 + components: + - type: Transform + pos: 3.900114,33.46071 + parent: 2 + - uid: 21814 + components: + - type: Transform + pos: 57.468033,-24.566158 + parent: 2 + - uid: 21815 + components: + - type: Transform + pos: -41.476265,4.4313354 + parent: 2 + - uid: 21816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.746056,-42.23638 + parent: 2 +- proto: SecurityTechFab + entities: + - uid: 21817 + components: + - type: Transform + pos: 0.5,33.5 + parent: 2 +- proto: SeedExtractor + entities: + - uid: 21818 + components: + - type: Transform + pos: -1.5,51.5 + parent: 2 + - uid: 21819 + components: + - type: Transform + pos: 49.5,-10.5 + parent: 2 +- proto: ShardGlass + entities: + - uid: 21820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.188766,-0.29204476 + parent: 2 + - uid: 21821 + components: + - type: Transform + pos: -59.76689,-0.71391976 + parent: 2 + - uid: 21822 + components: + - type: Transform + pos: -41.498413,-16.841608 + parent: 2 +- proto: ShardGlassReinforced + entities: + - uid: 21823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.607735,-46.467712 + parent: 2 + - uid: 21824 + components: + - type: Transform + pos: 55.288746,-46.842712 + parent: 2 + - uid: 21825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.955463,-51.468605 + parent: 2 + - uid: 21826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5294,-54.347427 + parent: 2 + - uid: 21827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.12985,-51.39361 + parent: 2 + - uid: 21828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.37929,-54.666176 + parent: 2 + - uid: 21829 + components: + - type: Transform + pos: 55.851665,-47.894577 + parent: 2 + - uid: 21830 + components: + - type: Transform + pos: 54.144146,-45.317734 + parent: 2 + - uid: 21831 + components: + - type: Transform + pos: 54.481895,-45.58023 + parent: 2 + - uid: 21832 + components: + - type: Transform + pos: -52.937687,15.598715 + parent: 2 + - uid: 21833 + components: + - type: Transform + pos: -57.359562,12.192465 + parent: 2 + - uid: 21834 + components: + - type: Transform + pos: -57.531437,12.004965 + parent: 2 + - uid: 21835 + components: + - type: Transform + pos: -55.265812,16.848715 + parent: 2 + - uid: 21836 + components: + - type: Transform + pos: -53.265812,15.348715 + parent: 2 + - uid: 21837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,14.5 + parent: 2 + - uid: 21838 + components: + - type: Transform + pos: -57.531437,14.45809 + parent: 2 +- proto: SheetGlass + entities: + - uid: 21839 + components: + - type: Transform + pos: 1.5678418,33.515785 + parent: 2 + - uid: 21840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.519659,-51.43525 + parent: 2 + - uid: 21841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.478477,-22.472408 + parent: 2 + - uid: 21842 + components: + - type: Transform + pos: 73.74213,-16.318996 + parent: 2 + - uid: 21843 + components: + - type: Transform + pos: 78.42439,-63.099358 + parent: 2 + - uid: 21844 + components: + - type: Transform + pos: 37.583725,-40.463486 + parent: 2 +- proto: SheetGlass10 + entities: + - uid: 21845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.616095,-53.351486 + parent: 2 + - type: RCDAmmo + charges: 10 +- proto: SheetPlasma + entities: + - uid: 21846 + components: + - type: Transform + pos: 18.491161,-18.323347 + parent: 2 + - uid: 21847 + components: + - type: Transform + pos: 53.466644,-41.46794 + parent: 2 + - uid: 21848 + components: + - type: Transform + pos: 43.53589,-62.501984 + parent: 2 + - uid: 21849 + components: + - type: Transform + pos: -5.453337,-33.402206 + parent: 2 + - uid: 21850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.499916,-49.45661 + parent: 2 +- proto: SheetPlasteel + entities: + - uid: 21851 + components: + - type: Transform + pos: 2.6396809,-34.5188 + parent: 2 + - type: RCDAmmo + charges: 60 + - uid: 21852 + components: + - type: Transform + pos: 2.6396809,-34.5188 + parent: 2 + - type: RCDAmmo + charges: 60 +- proto: SheetPlastic + entities: + - uid: 21853 + components: + - type: Transform + pos: 1.5678418,33.53141 + parent: 2 + - type: RCDAmmo + charges: 15 + - uid: 21854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.462852,-22.472408 + parent: 2 + - type: RCDAmmo + charges: 15 + - uid: 21855 + components: + - type: Transform + pos: 69.49671,-31.342108 + parent: 2 + - type: RCDAmmo + charges: 15 + - uid: 21856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.535284,-51.450874 + parent: 2 + - type: RCDAmmo + charges: 15 + - uid: 21857 + components: + - type: Transform + pos: 37.583725,-40.463486 + parent: 2 + - type: RCDAmmo + charges: 15 +- proto: SheetRGlass + entities: + - uid: 21858 + components: + - type: Transform + pos: -28.390247,-52.707314 + parent: 2 + - type: RCDAmmo + charges: 60 + - uid: 21859 + components: + - type: Transform + pos: 78.42439,-63.599358 + parent: 2 + - type: RCDAmmo + charges: 60 +- proto: SheetSteel + entities: + - uid: 21860 + components: + - type: Transform + pos: 1.5365918,33.515785 + parent: 2 + - uid: 21861 + components: + - type: Transform + pos: 2.3271809,-34.378174 + parent: 2 + - uid: 21862 + components: + - type: Transform + pos: 2.3271809,-34.378174 + parent: 2 + - uid: 21863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.494102,-21.503658 + parent: 2 + - uid: 21864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.519659,-51.450874 + parent: 2 + - uid: 21865 + components: + - type: Transform + pos: 73.38275,-16.428371 + parent: 2 + - uid: 21866 + components: + - type: Transform + pos: 78.65877,-63.208733 + parent: 2 + - uid: 21867 + components: + - type: Transform + pos: 37.552475,-40.47911 + parent: 2 +- proto: SheetSteel1 + entities: + - uid: 21868 + components: + - type: Transform + pos: -20.620274,-13.378096 + parent: 2 + - uid: 21869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.72547,-52.413986 + parent: 2 + - type: RCDAmmo + charges: 1 + - uid: 21870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.319218,-54.851486 + parent: 2 + - type: RCDAmmo + charges: 1 + - uid: 21871 + components: + - type: Transform + pos: -38.50352,24.53604 + parent: 2 + - type: RCDAmmo + charges: 1 +- proto: ShotGunCabinetFilled + entities: + - uid: 21872 + components: + - type: MetaData + desc: На маленькой этикетке написано "Только для экстренного использования", а также указаны правила безопасного использования ружья. Ага, конечно. + name: шкаф для дробовика + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 2 +- proto: ShuttersNormal + entities: + - uid: 21873 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 27971 + - uid: 21874 + components: + - type: Transform + pos: 31.5,-84.5 + parent: 2 + - uid: 21875 + components: + - type: Transform + pos: 52.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23341 + - uid: 21876 + components: + - type: Transform + pos: 53.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23341 + - uid: 21877 + components: + - type: Transform + pos: 54.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23341 + - uid: 21878 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 2 + - type: DeviceLinkSink + links: + - 27971 + - uid: 28155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-62.5 + parent: 2 + - type: DeviceLinkSink + links: + - 28157 + - uid: 28156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-63.5 + parent: 2 + - type: DeviceLinkSink + links: + - 28157 +- proto: ShuttersNormalOpen + entities: + - uid: 21879 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 2 + - uid: 21880 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 2 + - uid: 21881 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 21882 + components: + - type: Transform + pos: 3.5,-64.5 + parent: 2 + - uid: 21883 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 2 + - uid: 21884 + components: + - type: Transform + pos: 4.5,-58.5 + parent: 2 + - uid: 21885 + components: + - type: Transform + pos: 5.5,-58.5 + parent: 2 + - uid: 21886 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 2 + - uid: 21887 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 2 + - uid: 21888 + components: + - type: Transform + pos: 68.5,-33.5 + parent: 2 + - uid: 21889 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 21890 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 + - uid: 21891 + components: + - type: Transform + pos: 14.5,42.5 + parent: 2 + - uid: 21892 + components: + - type: Transform + pos: -19.5,30.5 + parent: 2 + - uid: 21893 + components: + - type: Transform + pos: -19.5,31.5 + parent: 2 + - uid: 21894 + components: + - type: Transform + pos: 42.5,-47.5 + parent: 2 + - uid: 21895 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 + - uid: 21896 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 2 + - uid: 21897 + components: + - type: Transform + pos: -11.5,18.5 + parent: 2 + - uid: 21898 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 + - uid: 21899 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 + - uid: 21900 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 2 + - uid: 21901 + components: + - type: Transform + pos: -12.5,-25.5 + parent: 2 + - uid: 21902 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 21903 + components: + - type: Transform + pos: 4.5,-64.5 + parent: 2 + - uid: 21904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-13.5 + parent: 2 + - uid: 21905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-14.5 + parent: 2 + - uid: 21906 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 + - uid: 21907 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 + - uid: 21908 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 21909 + components: + - type: Transform + pos: 1.5,22.5 + parent: 2 + - uid: 21910 + components: + - type: Transform + pos: 10.5,-32.5 + parent: 2 + - uid: 21911 + components: + - type: Transform + pos: 9.5,-32.5 + parent: 2 + - uid: 21912 + components: + - type: Transform + pos: 2.5,-45.5 + parent: 2 + - uid: 21913 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 2 + - uid: 21914 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 2 + - uid: 21915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-15.5 + parent: 2 + - uid: 21916 + components: + - type: Transform + pos: 8.5,-62.5 + parent: 2 + - uid: 21917 + components: + - type: Transform + pos: 9.5,-62.5 + parent: 2 + - uid: 21918 + components: + - type: Transform + pos: 7.5,-62.5 + parent: 2 + - uid: 21919 + components: + - type: Transform + pos: 14.5,36.5 + parent: 2 + - uid: 21920 + components: + - type: Transform + pos: -15.5,30.5 + parent: 2 + - uid: 21921 + components: + - type: Transform + pos: 3.5,29.5 + parent: 2 + - uid: 21922 + components: + - type: Transform + pos: 2.5,29.5 + parent: 2 + - uid: 21923 + components: + - type: Transform + pos: 13.5,36.5 + parent: 2 + - uid: 21924 + components: + - type: Transform + pos: 42.5,-45.5 + parent: 2 + - uid: 21925 + components: + - type: Transform + pos: 68.5,-34.5 + parent: 2 + - uid: 21926 + components: + - type: Transform + pos: -15.5,31.5 + parent: 2 + - uid: 21927 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 2 + - uid: 21928 + components: + - type: Transform + pos: 12.5,42.5 + parent: 2 +- proto: ShuttersRadiationOpen + entities: + - uid: 21929 + components: + - type: Transform + pos: 1.5,-75.5 + parent: 2 + - uid: 21930 + components: + - type: Transform + pos: -2.5,-75.5 + parent: 2 + - uid: 21931 + components: + - type: Transform + pos: -6.5,-75.5 + parent: 2 + - uid: 21932 + components: + - type: Transform + pos: -5.5,-75.5 + parent: 2 + - uid: 21933 + components: + - type: Transform + pos: 5.5,-75.5 + parent: 2 + - uid: 21934 + components: + - type: Transform + pos: -4.5,-75.5 + parent: 2 + - uid: 21935 + components: + - type: Transform + pos: 3.5,-75.5 + parent: 2 + - uid: 21936 + components: + - type: Transform + pos: 4.5,-75.5 + parent: 2 +- proto: ShuttersWindow + entities: + - uid: 21937 + components: + - type: MetaData + name: Warehouse Shutters + - type: Transform + pos: -31.5,-17.5 + parent: 2 +- proto: ShuttersWindowOpen + entities: + - uid: 21938 + components: + - type: Transform + pos: -30.5,-28.5 + parent: 2 + - uid: 21939 + components: + - type: Transform + pos: -31.5,-28.5 + parent: 2 + - uid: 21940 + components: + - type: Transform + pos: -14.5,-27.5 + parent: 2 + - uid: 21941 + components: + - type: Transform + pos: -10.5,22.5 + parent: 2 + - uid: 21942 + components: + - type: Transform + pos: -9.5,22.5 + parent: 2 + - uid: 21943 + components: + - type: Transform + pos: -8.5,22.5 + parent: 2 + - uid: 21944 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 + - uid: 21945 + components: + - type: Transform + pos: -5.5,22.5 + parent: 2 + - uid: 21946 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - uid: 21947 + components: + - type: Transform + pos: -2.5,22.5 + parent: 2 + - uid: 21948 + components: + - type: Transform + pos: -1.5,22.5 + parent: 2 + - uid: 21949 + components: + - type: Transform + pos: -0.5,22.5 + parent: 2 + - uid: 21950 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 21951 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 2 + - uid: 21952 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 + - uid: 21953 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - uid: 21954 + components: + - type: Transform + pos: 61.5,-16.5 + parent: 2 + - uid: 21955 + components: + - type: Transform + pos: 62.5,-16.5 + parent: 2 + - uid: 21956 + components: + - type: Transform + pos: 63.5,-16.5 + parent: 2 + - uid: 21957 + components: + - type: Transform + pos: 69.5,-16.5 + parent: 2 + - uid: 21958 + components: + - type: Transform + pos: 70.5,-16.5 + parent: 2 + - uid: 21959 + components: + - type: Transform + pos: 71.5,-16.5 + parent: 2 + - uid: 21960 + components: + - type: Transform + pos: 68.5,-22.5 + parent: 2 + - uid: 21961 + components: + - type: Transform + pos: 68.5,-23.5 + parent: 2 + - uid: 21962 + components: + - type: Transform + pos: 68.5,-24.5 + parent: 2 + - uid: 21963 + components: + - type: Transform + pos: 68.5,-28.5 + parent: 2 + - uid: 21964 + components: + - type: Transform + pos: 68.5,-29.5 + parent: 2 + - uid: 21965 + components: + - type: Transform + pos: 68.5,-30.5 + parent: 2 + - uid: 21966 + components: + - type: Transform + pos: 64.5,-22.5 + parent: 2 + - uid: 21967 + components: + - type: Transform + pos: 64.5,-23.5 + parent: 2 + - uid: 21968 + components: + - type: Transform + pos: -14.5,-22.5 + parent: 2 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 21969 + components: + - type: Transform + pos: -67.37438,13.692579 + parent: 2 +- proto: SignAi + entities: + - uid: 21970 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 28158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-82.5 + parent: 2 + - uid: 28159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-104.5 + parent: 2 +- proto: SignalButton + entities: + - uid: 21971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,32.5 + parent: 2 + - uid: 21972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,32.5 + parent: 2 + - uid: 21973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 27663: + - Pressed: DoorBolt + - uid: 21974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 27664: + - Pressed: DoorBolt + - uid: 21975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,7.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 27668: + - Pressed: DoorBolt + - uid: 21976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,7.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 27670: + - Pressed: DoorBolt + - uid: 21977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1144: + - Pressed: Toggle + 1142: + - Pressed: Toggle + 1143: + - Pressed: Toggle + - uid: 27971 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 21878: + - Pressed: Toggle + 21873: + - Pressed: Toggle + - uid: 28157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-64.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 28156: + - Pressed: Toggle + 28155: + - Pressed: Toggle +- proto: SignAME + entities: + - uid: 20484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-73.5 + parent: 2 +- proto: SignAnomaly + entities: + - uid: 21978 + components: + - type: Transform + pos: 75.5,-22.5 + parent: 2 + - uid: 22107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-43.5 + parent: 2 +- proto: SignAnomaly2 + entities: + - uid: 21979 + components: + - type: Transform + pos: 68.5,-48.5 + parent: 2 +- proto: SignArmory + entities: + - uid: 21980 + components: + - type: Transform + pos: 1.5,34.5 + parent: 2 +- proto: SignArrivals + entities: + - uid: 22016 + components: + - type: Transform + pos: -62.5,2.5 + parent: 2 +- proto: SignAtmos + entities: + - uid: 21981 + components: + - type: Transform + pos: 10.5,-52.5 + parent: 2 + - uid: 21982 + components: + - type: Transform + pos: 8.5,-46.5 + parent: 2 + - uid: 21983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-50.5 + parent: 2 + - uid: 21984 + components: + - type: Transform + pos: 87.5,-24.5 + parent: 2 +- proto: SignBar + entities: + - uid: 21985 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 +- proto: SignBiohazardMed + entities: + - uid: 21986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-39.5 + parent: 2 + - uid: 21987 + components: + - type: Transform + pos: 41.5,-50.5 + parent: 2 + - uid: 21988 + components: + - type: Transform + pos: 39.5,-54.5 + parent: 2 +- proto: SignBoxing + entities: + - uid: 28171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,9.5 + parent: 2 +- proto: SignBridge + entities: + - uid: 21989 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 2 + - uid: 21990 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 +- proto: SignCanisters + entities: + - uid: 21326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-43.5 + parent: 2 + - uid: 22067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-34.5 + parent: 2 +- proto: SignCaptain + entities: + - uid: 27969 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 +- proto: SignCargo + entities: + - uid: 21991 + components: + - type: Transform + pos: -18.5,-20.5 + parent: 2 +- proto: SignCargoDock + entities: + - uid: 22123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-29.5 + parent: 2 +- proto: SignChapel + entities: + - uid: 21992 + components: + - type: Transform + pos: 74.5,-6.5 + parent: 2 +- proto: SignCheckpoint + entities: + - uid: 18483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,5.5 + parent: 2 +- proto: SignChem + entities: + - uid: 21993 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 2 + - uid: 21994 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 2 +- proto: SignCloning + entities: + - uid: 21995 + components: + - type: MetaData + desc: Знак, указывающий на лабораторию генетики. + name: знак "генетика" + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-25.5 + parent: 2 +- proto: SignConference + entities: + - uid: 21996 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 +- proto: SignCryo + entities: + - uid: 28170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-31.5 + parent: 2 +- proto: SignCryogenicsMed + entities: + - uid: 21997 + components: + - type: Transform + pos: 38.5,-33.5 + parent: 2 +- proto: SignDangerMed + entities: + - uid: 21998 + components: + - type: Transform + pos: 2.5,-68.5 + parent: 2 + - uid: 21999 + components: + - type: Transform + pos: 5.5,-50.5 + parent: 2 +- proto: SignDirectionalBridge + entities: + - uid: 22001 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 +- proto: SignDirectionalCryo + entities: + - uid: 22002 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 2 + - uid: 22003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,7.5 + parent: 2 +- proto: SignDirectionalEng + entities: + - uid: 22005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-28.5 + parent: 2 + - uid: 22006 + components: + - type: Transform + pos: -19.49536,-3.7142625 + parent: 2 + - uid: 22007 + components: + - type: Transform + pos: -2.495048,-32.707497 + parent: 2 + - uid: 22008 + components: + - type: Transform + pos: 17.493805,-15.696056 + parent: 2 +- proto: SignDirectionalEvac + entities: + - uid: 22010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-32.5 + parent: 2 + - uid: 22011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-11.5 + parent: 2 + - uid: 22012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.504663,2.2990081 + parent: 2 + - uid: 22013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-3.5 + parent: 2 +- proto: SignDirectionalExam + entities: + - uid: 22014 + components: + - type: MetaData + desc: Указатель в сторону смотрового(ых) кабинета(ов). + name: знак "смотровой кабинет" + - type: Transform + pos: 38.5,-37.5 + parent: 2 +- proto: SignDirectionalGravity + entities: + - uid: 22015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.48893,-28.299696 + parent: 2 +- proto: SignDirectionalHop + entities: + - uid: 22017 + components: + - type: Transform + pos: -18.489511,-4.1296644 + parent: 2 + - uid: 22018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-28.5 + parent: 2 +- proto: SignDirectionalHydro + entities: + - uid: 22020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.499992,-3.7091393 + parent: 2 +- proto: SignDirectionalMed + entities: + - uid: 22023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.499992,-3.2872643 + parent: 2 + - uid: 22024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.495048,-32.301247 + parent: 2 + - uid: 22025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.493805,-15.305431 + parent: 2 + - uid: 22026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 2 +- proto: SignDirectionalSci + entities: + - uid: 22027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-3.5 + parent: 2 + - uid: 22028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-15.5 + parent: 2 +- proto: SignDirectionalSec + entities: + - uid: 22029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.49536,-3.2767625 + parent: 2 + - uid: 22030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.499279,-11.288156 + parent: 2 + - uid: 22031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.504663,2.7208831 + parent: 2 + - uid: 22033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.505136,0.7252439 + parent: 2 +- proto: SignDirectionalSolar + entities: + - uid: 22034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-59.5 + parent: 2 + - uid: 22035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-65.5 + parent: 2 + - uid: 22036 + components: + - type: Transform + pos: 83.5,-49.5 + parent: 2 + - uid: 22037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,14.5 + parent: 2 + - uid: 22038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,4.5 + parent: 2 + - uid: 22039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,12.5 + parent: 2 + - uid: 22040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,12.5 + parent: 2 + - uid: 22041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,6.5 + parent: 2 +- proto: SignDirectionalSupply + entities: + - uid: 22042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-32.5 + parent: 2 + - uid: 22043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.494359,-28.72186 + parent: 2 + - uid: 22044 + components: + - type: Transform + pos: -18.494526,-3.909933 + parent: 2 + - uid: 22046 + components: + - type: Transform + pos: -17.505136,0.28774393 + parent: 2 +- proto: SignDirectionalWash + entities: + - uid: 22047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.490667,-11.707433 + parent: 2 +- proto: SignDisposalSpace + entities: + - uid: 28169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-17.5 + parent: 2 +- proto: SignDorms + entities: + - uid: 28153 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 +- proto: SignDrones + entities: + - uid: 22048 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 2 +- proto: SignElectricalMed + entities: + - uid: 22049 + components: + - type: Transform + pos: 43.5,4.5 + parent: 2 + - uid: 22050 + components: + - type: Transform + pos: 24.5,24.5 + parent: 2 + - uid: 22051 + components: + - type: Transform + pos: -44.5,11.5 + parent: 2 + - uid: 22052 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 + - uid: 22053 + components: + - type: Transform + pos: -21.5,-68.5 + parent: 2 + - uid: 22054 + components: + - type: Transform + pos: -30.5,-64.5 + parent: 2 + - uid: 22055 + components: + - type: Transform + pos: 5.5,46.5 + parent: 2 + - uid: 22056 + components: + - type: Transform + pos: -3.5,46.5 + parent: 2 + - uid: 22057 + components: + - type: Transform + pos: -25.5,46.5 + parent: 2 +- proto: SignEngineering + entities: + - uid: 22058 + components: + - type: Transform + pos: 1.5,-54.5 + parent: 2 +- proto: SignEquip + entities: + - uid: 28145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-38.5 + parent: 2 + - uid: 28146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-25.5 + parent: 2 + - uid: 28148 + components: + - type: Transform + pos: 10.5,33.5 + parent: 2 + - uid: 28162 + components: + - type: Transform + pos: -15.5,-70.5 + parent: 2 +- proto: SignEscapePods + entities: + - uid: 28021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,-13.5 + parent: 2 + - uid: 28167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,8.5 + parent: 2 + - uid: 28168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,-3.5 + parent: 2 +- proto: SignEVA + entities: + - uid: 11364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,24.5 + parent: 2 + - uid: 22060 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 +- proto: SignExamroom + entities: + - uid: 22004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-26.5 + parent: 2 +- proto: SignFire + entities: + - uid: 22062 + components: + - type: Transform + pos: 74.5,-42.5 + parent: 2 + - uid: 22063 + components: + - type: Transform + pos: 68.5,-38.5 + parent: 2 + - uid: 22064 + components: + - type: Transform + pos: 9.5,-59.5 + parent: 2 +- proto: SignGate + entities: + - uid: 28045 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 +- proto: SignGenetics + entities: + - uid: 28166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-25.5 + parent: 2 +- proto: SignHead + entities: + - uid: 17697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-31.5 + parent: 2 + - uid: 18479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-64.5 + parent: 2 + - uid: 21052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-28.5 + parent: 2 + - uid: 22019 + components: + - type: Transform + pos: 42.5,-44.5 + parent: 2 + - uid: 22066 + components: + - type: Transform + pos: -8.5,-28.5 + parent: 2 + - uid: 23674 + components: + - type: Transform + pos: 68.5,-35.5 + parent: 2 + - uid: 27952 + components: + - type: Transform + pos: 15.5,36.5 + parent: 2 +- proto: SignHOP + entities: + - uid: 22022 + components: + - type: Transform + pos: -14.5,-21.5 + parent: 2 +- proto: SignHydro + entities: + - uid: 22032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-11.5 + parent: 2 +- proto: SignInterrogation + entities: + - uid: 22068 + components: + - type: Transform + pos: -12.5,28.5 + parent: 2 +- proto: SignJanitor + entities: + - uid: 22009 + components: + - type: Transform + pos: -49.5,-3.5 + parent: 2 +- proto: SignKiddiePlaque + entities: + - uid: 22069 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 + - uid: 22070 + components: + - type: Transform + pos: -56.5,-6.5 + parent: 2 + - uid: 22071 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 +- proto: SignLaundromat + entities: + - uid: 28046 + components: + - type: Transform + pos: -44.5,-8.5 + parent: 2 +- proto: SignLawyer + entities: + - uid: 28151 + components: + - type: Transform + pos: -12.5,18.5 + parent: 2 +- proto: SignLibrary + entities: + - uid: 22072 + components: + - type: Transform + pos: 54.5,-10.5 + parent: 2 +- proto: SignMagneticsMed + entities: + - uid: 22073 + components: + - type: Transform + pos: -29.5,-33.5 + parent: 2 +- proto: SignMail + entities: + - uid: 22074 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 22075 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 2 + - uid: 22076 + components: + - type: Transform + pos: 63.5,10.5 + parent: 2 + - uid: 22077 + components: + - type: Transform + pos: -7.5,28.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 22078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-20.5 + parent: 2 +- proto: SignNosmoking + entities: + - uid: 22079 + components: + - type: Transform + pos: 64.5,-36.5 + parent: 2 +- proto: SignNukeVault + entities: + - uid: 22065 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 +- proto: SignPA + entities: + - uid: 28161 + components: + - type: Transform + pos: -0.5,-68.5 + parent: 2 +- proto: SignPlaque + entities: + - uid: 22080 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 2 + - uid: 22081 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 2 +- proto: SignPrison + entities: + - uid: 27964 + components: + - type: Transform + pos: -12.5,37.5 + parent: 2 +- proto: SignPsychology + entities: + - uid: 21429 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 2 +- proto: SignRadiationMed + entities: + - uid: 22082 + components: + - type: Transform + pos: 8.5,-77.5 + parent: 2 + - uid: 22083 + components: + - type: Transform + pos: -9.5,-77.5 + parent: 2 + - uid: 22084 + components: + - type: Transform + pos: 6.5,-68.5 + parent: 2 + - uid: 22085 + components: + - type: Transform + pos: -7.5,-68.5 + parent: 2 + - uid: 22086 + components: + - type: Transform + pos: -3.5,-68.5 + parent: 2 + - uid: 22087 + components: + - type: Transform + pos: -19.5,-54.5 + parent: 2 + - uid: 22088 + components: + - type: Transform + pos: -30.5,-52.5 + parent: 2 +- proto: SignReception + entities: + - uid: 1127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-21.5 + parent: 2 +- proto: SignRedFive + entities: + - uid: 22089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,13.5 + parent: 2 +- proto: SignRedFour + entities: + - uid: 22090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,15.5 + parent: 2 +- proto: SignRedOne + entities: + - uid: 22091 + components: + - type: Transform + pos: -3.5119529,29.131002 + parent: 2 + - uid: 22092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 + - uid: 22093 + components: + - type: Transform + pos: -11.7532215,25.367563 + parent: 2 +- proto: SignRedSix + entities: + - uid: 22094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,13.5 + parent: 2 +- proto: SignRedThree + entities: + - uid: 22095 + components: + - type: Transform + pos: -1.511953,29.146627 + parent: 2 + - uid: 22096 + components: + - type: Transform + pos: -3.753222,25.367563 + parent: 2 + - uid: 22097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,12.5 + parent: 2 +- proto: SignRedTwo + entities: + - uid: 22098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 2 + - uid: 22099 + components: + - type: Transform + pos: -2.4963279,29.115377 + parent: 2 + - uid: 22100 + components: + - type: Transform + pos: -7.768847,25.367563 + parent: 2 +- proto: SignRND + entities: + - uid: 22101 + components: + - type: Transform + pos: 68.5,-16.5 + parent: 2 +- proto: SignRobo + entities: + - uid: 22102 + components: + - type: Transform + pos: 64.5,-16.5 + parent: 2 + - uid: 22103 + components: + - type: Transform + pos: 64.5,-25.5 + parent: 2 +- proto: SignSalvage + entities: + - uid: 22104 + components: + - type: MetaData + desc: Знак, указывающий на комнату утилизаторов. + name: знак "утилизаторская" + - type: Transform + pos: -27.5,-28.5 + parent: 2 +- proto: SignScience + entities: + - uid: 22105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-46.5 + parent: 2 +- proto: SignScience1 + entities: + - uid: 22106 + components: + - type: Transform + pos: 72.5,-15.5 + parent: 2 +- proto: SignSecurearea + entities: + - uid: 22108 + components: + - type: Transform + pos: -3.5,43.5 + parent: 2 +- proto: SignSecureMed + entities: + - uid: 22109 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 22110 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 2 + - uid: 22111 + components: + - type: Transform + pos: 7.5,-59.5 + parent: 2 + - uid: 22113 + components: + - type: Transform + pos: 30.5,-82.5 + parent: 2 + - uid: 22114 + components: + - type: Transform + pos: 26.5,-82.5 + parent: 2 + - uid: 22115 + components: + - type: Transform + pos: 26.5,-93.5 + parent: 2 + - uid: 22116 + components: + - type: Transform + pos: 30.5,-93.5 + parent: 2 +- proto: SignSecureSmall + entities: + - uid: 22117 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 2 + - uid: 22118 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 2 + - uid: 22119 + components: + - type: Transform + pos: -80.5,12.5 + parent: 2 + - uid: 22120 + components: + - type: Transform + pos: -74.5,12.5 + parent: 2 +- proto: SignSecureSmallRed + entities: + - uid: 22121 + components: + - type: Transform + pos: 20.5,27.5 + parent: 2 + - uid: 22122 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 +- proto: SignSecurity + entities: + - uid: 22045 + components: + - type: Transform + pos: 7.5,22.5 + parent: 2 +- proto: SignSMES + entities: + - uid: 22059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-70.5 + parent: 2 +- proto: SignSmoking + entities: + - uid: 22124 + components: + - type: Transform + pos: 61.5,-32.5 + parent: 2 + - uid: 22125 + components: + - type: Transform + pos: 14.5,-51.5 + parent: 2 + - uid: 22126 + components: + - type: Transform + pos: 28.5,-30.5 + parent: 2 + - uid: 22127 + components: + - type: Transform + pos: 23.5,-36.5 + parent: 2 +- proto: SignSolar + entities: + - uid: 28138 + components: + - type: Transform + pos: -48.5,20.5 + parent: 2 + - uid: 28163 + components: + - type: Transform + pos: -35.5,-60.5 + parent: 2 + - uid: 28164 + components: + - type: Transform + pos: 48.5,17.5 + parent: 2 + - uid: 28165 + components: + - type: Transform + pos: 80.5,-62.5 + parent: 2 +- proto: SignSomethingOld + entities: + - uid: 22128 + components: + - type: Transform + pos: -6.5,-40.5 + parent: 2 +- proto: SignSomethingOld2 + entities: + - uid: 22129 + components: + - type: Transform + pos: -8.5,-32.5 + parent: 2 +- proto: SignSpace + entities: + - uid: 22130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-38.5 + parent: 2 + - uid: 22131 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 22132 + components: + - type: Transform + pos: 83.5,-4.5 + parent: 2 + - uid: 22133 + components: + - type: Transform + pos: 83.5,-12.5 + parent: 2 + - uid: 22134 + components: + - type: Transform + pos: 87.5,-56.5 + parent: 2 + - uid: 22135 + components: + - type: Transform + pos: 80.5,-66.5 + parent: 2 + - uid: 22136 + components: + - type: Transform + pos: 48.5,-66.5 + parent: 2 + - uid: 22137 + components: + - type: Transform + pos: 62.5,-69.5 + parent: 2 + - uid: 22138 + components: + - type: Transform + pos: 23.5,-59.5 + parent: 2 + - uid: 22139 + components: + - type: Transform + pos: 26.5,-81.5 + parent: 2 + - uid: 22140 + components: + - type: Transform + pos: 10.5,-75.5 + parent: 2 + - uid: 22141 + components: + - type: Transform + pos: -11.5,-75.5 + parent: 2 + - uid: 22142 + components: + - type: Transform + pos: -33.5,-64.5 + parent: 2 + - uid: 22143 + components: + - type: Transform + pos: -39.5,-60.5 + parent: 2 + - uid: 22144 + components: + - type: Transform + pos: -38.5,-48.5 + parent: 2 + - uid: 22145 + components: + - type: Transform + pos: -62.5,-20.5 + parent: 2 + - uid: 22146 + components: + - type: Transform + pos: -67.5,19.5 + parent: 2 + - uid: 22147 + components: + - type: Transform + pos: -62.5,15.5 + parent: 2 + - uid: 22148 + components: + - type: Transform + pos: -48.5,24.5 + parent: 2 + - uid: 22149 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 +- proto: SignStorage + entities: + - uid: 17698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-17.5 + parent: 2 + - uid: 22000 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 2 + - uid: 28154 + components: + - type: Transform + pos: -10.5,-61.5 + parent: 2 +- proto: SignSurgery + entities: + - uid: 22150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-35.5 + parent: 2 +- proto: SignTelecomms + entities: + - uid: 22151 + components: + - type: Transform + pos: -4.5,-55.5 + parent: 2 +- proto: SignTheatre + entities: + - uid: 18550 + components: + - type: Transform + pos: 20.5,1.5 + parent: 2 +- proto: SignToilet + entities: + - uid: 20481 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 2 + - uid: 28059 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 2 + - uid: 28152 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 +- proto: SignToolStorage + entities: + - uid: 22152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,0.5 + parent: 2 +- proto: SignVirology + entities: + - uid: 22155 + components: + - type: Transform + pos: 39.5,-50.5 + parent: 2 +- proto: SignXenolab + entities: + - uid: 22156 + components: + - type: Transform + pos: 64.5,-41.5 + parent: 2 +- proto: SingularityGenerator + entities: + - uid: 22157 + components: + - type: Transform + pos: -13.5,-61.5 + parent: 2 +- proto: Sink + entities: + - uid: 22158 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 2 + - uid: 22159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 2 + - uid: 22160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-56.5 + parent: 2 + - uid: 22161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-17.5 + parent: 2 + - uid: 22162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-19.5 + parent: 2 + - uid: 22163 + components: + - type: Transform + pos: -19.5,51.5 + parent: 2 +- proto: SinkEmpty + entities: + - uid: 22164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-20.5 + parent: 2 + - uid: 22165 + components: + - type: Transform + pos: -36.5,-54.5 + parent: 2 +- proto: SinkStemlessWater + entities: + - uid: 22166 + components: + - type: Transform + pos: 1.5,-59.5 + parent: 2 + - uid: 22167 + components: + - type: Transform + pos: -7.5,13.5 + parent: 2 + - uid: 22168 + components: + - type: Transform + pos: 16.5,41.5 + parent: 2 +- proto: SinkWide + entities: + - uid: 22169 + components: + - type: Transform + pos: 73.5,-33.5 + parent: 2 + - uid: 22170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,40.5 + parent: 2 + - uid: 22171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-24.5 + parent: 2 + - uid: 22172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-19.5 + parent: 2 + - uid: 22173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-14.5 + parent: 2 + - uid: 22174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-43.5 + parent: 2 + - uid: 22175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-35.5 + parent: 2 + - uid: 22176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-12.5 + parent: 2 + - uid: 22177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,6.5 + parent: 2 + - uid: 22178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-7.5 + parent: 2 + - uid: 22179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-6.5 + parent: 2 + - uid: 22180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-10.5 + parent: 2 + - uid: 22181 + components: + - type: Transform + pos: -42.5,22.5 + parent: 2 + - uid: 22182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,49.5 + parent: 2 + - uid: 22183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-36.5 + parent: 2 + - uid: 22184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 2 + - uid: 22185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 2 + - uid: 22186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,29.5 + parent: 2 + - uid: 22187 + components: + - type: Transform + pos: 31.5,1.5 + parent: 2 + - uid: 22188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-34.5 + parent: 2 + - uid: 22189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-8.5 + parent: 2 + - uid: 22190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-29.5 + parent: 2 +- proto: SmallLight + entities: + - uid: 22191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,17.5 + parent: 2 +- proto: SmartFridge + entities: + - uid: 22192 + components: + - type: Transform + pos: 41.5,-4.5 + parent: 2 + - uid: 22193 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 2 + - uid: 22194 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - uid: 22195 + components: + - type: Transform + pos: 38.5,-57.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 22196 + components: + - type: Transform + pos: 28.5,-113.5 + parent: 2 + - uid: 22197 + components: + - type: Transform + pos: 5.5,-69.5 + parent: 2 + - uid: 22198 + components: + - type: Transform + pos: -6.5,-69.5 + parent: 2 + - uid: 22199 + components: + - type: Transform + pos: 80.5,-65.5 + parent: 2 + - uid: 22200 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - uid: 22201 + components: + - type: Transform + pos: -50.5,23.5 + parent: 2 + - uid: 22202 + components: + - type: Transform + pos: -6.5,-49.5 + parent: 2 + - uid: 22203 + components: + - type: Transform + pos: -38.5,-62.5 + parent: 2 + - uid: 22204 + components: + - type: Transform + pos: -24.5,-66.5 + parent: 2 + - uid: 22205 + components: + - type: Transform + pos: -24.5,-67.5 + parent: 2 + - uid: 22206 + components: + - type: Transform + pos: -24.5,-68.5 + parent: 2 + - uid: 22207 + components: + - type: Transform + pos: 34.5,-91.5 + parent: 2 +- proto: SMESBasicEmpty + entities: + - uid: 22208 + components: + - type: Transform + pos: -12.5,-65.5 + parent: 2 + - uid: 22209 + components: + - type: Transform + pos: -26.5,-71.5 + parent: 2 +- proto: SMESMachineCircuitboard + entities: + - uid: 22210 + components: + - type: Transform + pos: -7.4871707,-37.41783 + parent: 2 +- proto: Soap + entities: + - uid: 22211 + components: + - type: Transform + pos: -24.570625,41.564262 + parent: 2 + - uid: 22212 + components: + - type: Transform + pos: 13.484906,6.598923 + parent: 2 +- proto: SoapNT + entities: + - uid: 11708 + components: + - type: Transform + parent: 11700 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11709 + components: + - type: Transform + parent: 11700 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11710 + components: + - type: Transform + parent: 11700 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 22213 + components: + - type: Transform + pos: 10.464365,-22.554323 + parent: 2 +- proto: soda_dispenser + entities: + - uid: 22214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-6.5 + parent: 2 + - type: ContainerContainer + containers: + ReagentDispenser-reagentContainerContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + ReagentDispenser-beaker: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 22215 + components: + - type: Transform + pos: -34.5,24.5 + parent: 2 +- proto: SolarPanel + entities: + - uid: 22216 + components: + - type: Transform + pos: -53.5,36.5 + parent: 2 + - uid: 22217 + components: + - type: Transform + pos: -51.5,36.5 + parent: 2 + - type: PowerSupplier + supplyRate: 261 + - uid: 22218 + components: + - type: Transform + pos: -43.5,38.5 + parent: 2 + - uid: 22219 + components: + - type: Transform + pos: -44.5,36.5 + parent: 2 + - uid: 22220 + components: + - type: Transform + pos: -45.5,38.5 + parent: 2 + - uid: 22221 + components: + - type: Transform + pos: -52.5,36.5 + parent: 2 + - uid: 22222 + components: + - type: Transform + pos: -47.5,38.5 + parent: 2 + - uid: 22223 + components: + - type: Transform + pos: -44.5,38.5 + parent: 2 + - uid: 22224 + components: + - type: Transform + pos: -43.5,36.5 + parent: 2 + - uid: 22225 + components: + - type: Transform + pos: -55.5,38.5 + parent: 2 + - uid: 22226 + components: + - type: Transform + pos: -53.5,38.5 + parent: 2 + - uid: 22227 + components: + - type: Transform + pos: -46.5,38.5 + parent: 2 + - uid: 22228 + components: + - type: Transform + pos: -47.5,34.5 + parent: 2 + - uid: 22229 + components: + - type: Transform + pos: -46.5,34.5 + parent: 2 + - type: PowerSupplier + supplyRate: 261 + - uid: 22230 + components: + - type: Transform + pos: -44.5,34.5 + parent: 2 + - uid: 22231 + components: + - type: Transform + pos: -55.5,32.5 + parent: 2 + - uid: 22232 + components: + - type: Transform + pos: -53.5,34.5 + parent: 2 + - uid: 22233 + components: + - type: Transform + pos: -52.5,34.5 + parent: 2 + - uid: 22234 + components: + - type: Transform + pos: -51.5,34.5 + parent: 2 + - type: PowerSupplier + supplyRate: 260 + - uid: 22235 + components: + - type: Transform + pos: -43.5,32.5 + parent: 2 + - type: PowerSupplier + supplyRate: 260 + - uid: 22236 + components: + - type: Transform + pos: -44.5,32.5 + parent: 2 + - uid: 22237 + components: + - type: Transform + pos: -47.5,32.5 + parent: 2 + - type: PowerSupplier + supplyRate: 261 + - uid: 22238 + components: + - type: Transform + pos: -45.5,32.5 + parent: 2 + - uid: 22239 + components: + - type: Transform + pos: -43.5,34.5 + parent: 2 + - type: PowerSupplier + supplyRate: 261 + - uid: 22240 + components: + - type: Transform + pos: -54.5,32.5 + parent: 2 + - uid: 22241 + components: + - type: Transform + pos: -53.5,32.5 + parent: 2 + - uid: 22242 + components: + - type: Transform + pos: -52.5,32.5 + parent: 2 + - type: PowerSupplier + supplyRate: 260 + - uid: 22243 + components: + - type: Transform + pos: -55.5,34.5 + parent: 2 + - uid: 22244 + components: + - type: Transform + pos: -55.5,30.5 + parent: 2 + - uid: 22245 + components: + - type: Transform + pos: -54.5,30.5 + parent: 2 + - uid: 22246 + components: + - type: Transform + pos: -54.5,28.5 + parent: 2 + - uid: 22247 + components: + - type: Transform + pos: -53.5,28.5 + parent: 2 + - uid: 22248 + components: + - type: Transform + pos: -52.5,30.5 + parent: 2 + - uid: 22249 + components: + - type: Transform + pos: -51.5,30.5 + parent: 2 + - type: PowerSupplier + supplyRate: 260 + - uid: 22250 + components: + - type: Transform + pos: -51.5,28.5 + parent: 2 + - uid: 22251 + components: + - type: Transform + pos: -46.5,30.5 + parent: 2 + - type: PowerSupplier + supplyRate: 260 + - uid: 22252 + components: + - type: Transform + pos: -54.5,36.5 + parent: 2 + - uid: 22253 + components: + - type: Transform + pos: -47.5,30.5 + parent: 2 + - uid: 22254 + components: + - type: Transform + pos: -46.5,28.5 + parent: 2 + - uid: 22255 + components: + - type: Transform + pos: -55.5,36.5 + parent: 2 + - uid: 22256 + components: + - type: Transform + pos: -52.5,38.5 + parent: 2 + - uid: 22257 + components: + - type: Transform + pos: -51.5,38.5 + parent: 2 + - type: PowerSupplier + supplyRate: 262 + - uid: 22258 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 + - uid: 22259 + components: + - type: Transform + pos: -45.5,36.5 + parent: 2 + - uid: 22260 + components: + - type: Transform + pos: -47.5,36.5 + parent: 2 + - type: PowerSupplier + supplyRate: 261 + - uid: 22261 + components: + - type: Transform + pos: 43.5,28.5 + parent: 2 + - uid: 22262 + components: + - type: Transform + pos: 41.5,30.5 + parent: 2 + - uid: 22263 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 + - uid: 22264 + components: + - type: Transform + pos: 44.5,34.5 + parent: 2 + - uid: 22265 + components: + - type: Transform + pos: 49.5,34.5 + parent: 2 + - uid: 22266 + components: + - type: Transform + pos: 50.5,32.5 + parent: 2 + - uid: 22267 + components: + - type: Transform + pos: 52.5,36.5 + parent: 2 + - uid: 22268 + components: + - type: Transform + pos: 44.5,38.5 + parent: 2 + - uid: 22269 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - uid: 22270 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - uid: 22271 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 + - uid: 22272 + components: + - type: Transform + pos: 41.5,32.5 + parent: 2 + - uid: 22273 + components: + - type: Transform + pos: 43.5,32.5 + parent: 2 + - uid: 22274 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - uid: 22275 + components: + - type: Transform + pos: 45.5,32.5 + parent: 2 + - uid: 22276 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 + - uid: 22277 + components: + - type: Transform + pos: 51.5,34.5 + parent: 2 + - uid: 22278 + components: + - type: Transform + pos: 52.5,34.5 + parent: 2 + - uid: 22279 + components: + - type: Transform + pos: 53.5,34.5 + parent: 2 + - uid: 22280 + components: + - type: Transform + pos: 53.5,36.5 + parent: 2 + - uid: 22281 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 + - uid: 22282 + components: + - type: Transform + pos: 52.5,32.5 + parent: 2 + - uid: 22283 + components: + - type: Transform + pos: 51.5,32.5 + parent: 2 + - uid: 22284 + components: + - type: Transform + pos: 49.5,32.5 + parent: 2 + - uid: 22285 + components: + - type: Transform + pos: 51.5,36.5 + parent: 2 + - uid: 22286 + components: + - type: Transform + pos: 50.5,36.5 + parent: 2 + - uid: 22287 + components: + - type: Transform + pos: 49.5,36.5 + parent: 2 + - uid: 22288 + components: + - type: Transform + pos: 53.5,38.5 + parent: 2 + - uid: 22289 + components: + - type: Transform + pos: 52.5,38.5 + parent: 2 + - uid: 22290 + components: + - type: Transform + pos: 51.5,38.5 + parent: 2 + - uid: 22291 + components: + - type: Transform + pos: 50.5,38.5 + parent: 2 + - uid: 22292 + components: + - type: Transform + pos: 49.5,38.5 + parent: 2 + - uid: 22293 + components: + - type: Transform + pos: 45.5,38.5 + parent: 2 + - uid: 22294 + components: + - type: Transform + pos: 43.5,38.5 + parent: 2 + - uid: 22295 + components: + - type: Transform + pos: 42.5,38.5 + parent: 2 + - uid: 22296 + components: + - type: Transform + pos: 41.5,38.5 + parent: 2 + - uid: 22297 + components: + - type: Transform + pos: 41.5,36.5 + parent: 2 + - uid: 22298 + components: + - type: Transform + pos: 42.5,36.5 + parent: 2 + - uid: 22299 + components: + - type: Transform + pos: 43.5,36.5 + parent: 2 + - uid: 22300 + components: + - type: Transform + pos: 44.5,36.5 + parent: 2 + - uid: 22301 + components: + - type: Transform + pos: 45.5,36.5 + parent: 2 + - uid: 22302 + components: + - type: Transform + pos: 51.5,28.5 + parent: 2 + - uid: 22303 + components: + - type: Transform + pos: 42.5,30.5 + parent: 2 + - uid: 22304 + components: + - type: Transform + pos: 42.5,28.5 + parent: 2 + - uid: 22305 + components: + - type: Transform + pos: 51.5,30.5 + parent: 2 + - uid: 22306 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - uid: 22307 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 + - uid: 22308 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - type: PowerSupplier + supplyRate: 259 + - uid: 22309 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 + - uid: 22310 + components: + - type: Transform + pos: 49.5,30.5 + parent: 2 + - uid: 22311 + components: + - type: Transform + pos: 45.5,28.5 + parent: 2 + - type: PowerSupplier + supplyRate: 259 + - uid: 22312 + components: + - type: Transform + pos: 44.5,28.5 + parent: 2 + - uid: 22313 + components: + - type: Transform + pos: 50.5,30.5 + parent: 2 + - uid: 22314 + components: + - type: Transform + pos: 44.5,30.5 + parent: 2 + - type: PowerSupplier + supplyRate: 259 + - uid: 22315 + components: + - type: Transform + pos: 41.5,28.5 + parent: 2 + - uid: 22316 + components: + - type: Transform + pos: -45.5,28.5 + parent: 2 + - uid: 22317 + components: + - type: Transform + pos: -44.5,30.5 + parent: 2 + - uid: 22318 + components: + - type: Transform + pos: -43.5,30.5 + parent: 2 + - type: PowerSupplier + supplyRate: 259 + - uid: 22319 + components: + - type: Transform + pos: -43.5,28.5 + parent: 2 + - uid: 22320 + components: + - type: Transform + pos: -50.5,-64.5 + parent: 2 + - uid: 22321 + components: + - type: Transform + pos: -44.5,-58.5 + parent: 2 + - uid: 22322 + components: + - type: Transform + pos: -54.5,-65.5 + parent: 2 + - uid: 22323 + components: + - type: Transform + pos: -54.5,-59.5 + parent: 2 + - uid: 22324 + components: + - type: Transform + pos: -52.5,-58.5 + parent: 2 + - uid: 22325 + components: + - type: Transform + pos: -48.5,-56.5 + parent: 2 + - uid: 22326 + components: + - type: Transform + pos: -50.5,-55.5 + parent: 2 + - uid: 22327 + components: + - type: Transform + pos: -52.5,-59.5 + parent: 2 + - uid: 22328 + components: + - type: Transform + pos: -52.5,-55.5 + parent: 2 + - uid: 22329 + components: + - type: Transform + pos: -48.5,-58.5 + parent: 2 + - uid: 22330 + components: + - type: Transform + pos: -46.5,-57.5 + parent: 2 + - uid: 22331 + components: + - type: Transform + pos: -54.5,-57.5 + parent: 2 + - uid: 22332 + components: + - type: Transform + pos: -52.5,-64.5 + parent: 2 + - uid: 22333 + components: + - type: Transform + pos: -54.5,-66.5 + parent: 2 + - uid: 22334 + components: + - type: Transform + pos: -48.5,-67.5 + parent: 2 + - uid: 22335 + components: + - type: Transform + pos: -50.5,-65.5 + parent: 2 + - uid: 22336 + components: + - type: Transform + pos: -46.5,-66.5 + parent: 2 + - uid: 22337 + components: + - type: Transform + pos: -44.5,-64.5 + parent: 2 + - uid: 22338 + components: + - type: Transform + pos: 53.5,30.5 + parent: 2 + - uid: 22339 + components: + - type: Transform + pos: 53.5,28.5 + parent: 2 + - uid: 22340 + components: + - type: Transform + pos: 49.5,28.5 + parent: 2 + - uid: 22341 + components: + - type: Transform + pos: 45.5,30.5 + parent: 2 + - uid: 22342 + components: + - type: Transform + pos: -50.5,-67.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1493 + - uid: 22343 + components: + - type: Transform + pos: -50.5,-66.5 + parent: 2 + - uid: 22344 + components: + - type: Transform + pos: -50.5,-63.5 + parent: 2 + - uid: 22345 + components: + - type: Transform + pos: -48.5,-66.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1493 + - uid: 22346 + components: + - type: Transform + pos: -48.5,-65.5 + parent: 2 + - uid: 22347 + components: + - type: Transform + pos: -48.5,-64.5 + parent: 2 + - uid: 22348 + components: + - type: Transform + pos: -48.5,-63.5 + parent: 2 + - uid: 22349 + components: + - type: Transform + pos: -44.5,-67.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1493 + - uid: 22350 + components: + - type: Transform + pos: -44.5,-66.5 + parent: 2 + - uid: 22351 + components: + - type: Transform + pos: -44.5,-65.5 + parent: 2 + - uid: 22352 + components: + - type: Transform + pos: -44.5,-63.5 + parent: 2 + - uid: 22353 + components: + - type: Transform + pos: -46.5,-67.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1493 + - uid: 22354 + components: + - type: Transform + pos: -46.5,-65.5 + parent: 2 + - uid: 22355 + components: + - type: Transform + pos: -46.5,-64.5 + parent: 2 + - uid: 22356 + components: + - type: Transform + pos: -46.5,-63.5 + parent: 2 + - uid: 22357 + components: + - type: Transform + pos: -44.5,-59.5 + parent: 2 + - uid: 22358 + components: + - type: Transform + pos: -54.5,-64.5 + parent: 2 + - uid: 22359 + components: + - type: Transform + pos: -44.5,-57.5 + parent: 2 + - uid: 22360 + components: + - type: Transform + pos: -44.5,-56.5 + parent: 2 + - uid: 22361 + components: + - type: Transform + pos: -44.5,-55.5 + parent: 2 + - uid: 22362 + components: + - type: Transform + pos: -46.5,-59.5 + parent: 2 + - uid: 22363 + components: + - type: Transform + pos: -46.5,-58.5 + parent: 2 + - uid: 22364 + components: + - type: Transform + pos: -54.5,-63.5 + parent: 2 + - uid: 22365 + components: + - type: Transform + pos: -46.5,-56.5 + parent: 2 + - uid: 22366 + components: + - type: Transform + pos: -46.5,-55.5 + parent: 2 + - uid: 22367 + components: + - type: Transform + pos: -48.5,-59.5 + parent: 2 + - uid: 22368 + components: + - type: Transform + pos: -48.5,-57.5 + parent: 2 + - uid: 22369 + components: + - type: Transform + pos: -48.5,-55.5 + parent: 2 + - uid: 22370 + components: + - type: Transform + pos: -52.5,-67.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1494 + - uid: 22371 + components: + - type: Transform + pos: -50.5,-58.5 + parent: 2 + - uid: 22372 + components: + - type: Transform + pos: -50.5,-57.5 + parent: 2 + - uid: 22373 + components: + - type: Transform + pos: -50.5,-56.5 + parent: 2 + - uid: 22374 + components: + - type: Transform + pos: -54.5,-67.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1494 + - uid: 22375 + components: + - type: Transform + pos: -52.5,-66.5 + parent: 2 + - uid: 22376 + components: + - type: Transform + pos: -52.5,-65.5 + parent: 2 + - uid: 22377 + components: + - type: Transform + pos: -52.5,-57.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1494 + - uid: 22378 + components: + - type: Transform + pos: -52.5,-56.5 + parent: 2 + - uid: 22379 + components: + - type: Transform + pos: -54.5,-56.5 + parent: 2 + - uid: 22380 + components: + - type: Transform + pos: -54.5,-58.5 + parent: 2 + - uid: 22381 + components: + - type: Transform + pos: -50.5,-59.5 + parent: 2 + - uid: 22382 + components: + - type: Transform + pos: -52.5,-63.5 + parent: 2 + - uid: 22383 + components: + - type: Transform + pos: -54.5,-55.5 + parent: 2 + - uid: 22384 + components: + - type: Transform + pos: -46.5,36.5 + parent: 2 + - uid: 22385 + components: + - type: Transform + pos: -54.5,38.5 + parent: 2 + - uid: 22386 + components: + - type: Transform + pos: -54.5,34.5 + parent: 2 + - uid: 22387 + components: + - type: Transform + pos: -51.5,32.5 + parent: 2 + - uid: 22388 + components: + - type: Transform + pos: -45.5,34.5 + parent: 2 + - uid: 22389 + components: + - type: Transform + pos: -46.5,32.5 + parent: 2 + - uid: 22390 + components: + - type: Transform + pos: -45.5,30.5 + parent: 2 + - uid: 22391 + components: + - type: Transform + pos: -44.5,28.5 + parent: 2 + - uid: 22392 + components: + - type: Transform + pos: -47.5,28.5 + parent: 2 + - uid: 22393 + components: + - type: Transform + pos: -52.5,28.5 + parent: 2 + - uid: 22394 + components: + - type: Transform + pos: -55.5,28.5 + parent: 2 + - uid: 22395 + components: + - type: Transform + pos: -53.5,30.5 + parent: 2 + - uid: 22396 + components: + - type: Transform + pos: 78.5,-77.5 + parent: 2 + - uid: 22397 + components: + - type: Transform + pos: 77.5,-79.5 + parent: 2 + - uid: 22398 + components: + - type: Transform + pos: 75.5,-73.5 + parent: 2 + - uid: 22399 + components: + - type: Transform + pos: 78.5,-75.5 + parent: 2 + - uid: 22400 + components: + - type: Transform + pos: 79.5,-81.5 + parent: 2 + - uid: 22401 + components: + - type: Transform + pos: 79.5,-83.5 + parent: 2 + - uid: 22402 + components: + - type: Transform + pos: 84.5,-83.5 + parent: 2 + - uid: 22403 + components: + - type: Transform + pos: 77.5,-83.5 + parent: 2 + - uid: 22404 + components: + - type: Transform + pos: 76.5,-81.5 + parent: 2 + - uid: 22405 + components: + - type: Transform + pos: 76.5,-77.5 + parent: 2 + - uid: 22406 + components: + - type: Transform + pos: 75.5,-83.5 + parent: 2 + - uid: 22407 + components: + - type: Transform + pos: 87.5,-77.5 + parent: 2 + - uid: 22408 + components: + - type: Transform + pos: 84.5,-75.5 + parent: 2 + - uid: 22409 + components: + - type: Transform + pos: 83.5,-77.5 + parent: 2 + - uid: 22410 + components: + - type: Transform + pos: 86.5,-79.5 + parent: 2 + - uid: 22411 + components: + - type: Transform + pos: 85.5,-73.5 + parent: 2 + - uid: 22412 + components: + - type: Transform + pos: 87.5,-81.5 + parent: 2 + - uid: 22413 + components: + - type: Transform + pos: 86.5,-83.5 + parent: 2 + - uid: 22414 + components: + - type: Transform + pos: 83.5,-81.5 + parent: 2 + - uid: 22415 + components: + - type: Transform + pos: 84.5,-79.5 + parent: 2 + - uid: 22416 + components: + - type: Transform + pos: 76.5,-73.5 + parent: 2 + - uid: 22417 + components: + - type: Transform + pos: 77.5,-73.5 + parent: 2 + - uid: 22418 + components: + - type: Transform + pos: 78.5,-73.5 + parent: 2 + - uid: 22419 + components: + - type: Transform + pos: 79.5,-73.5 + parent: 2 + - uid: 22420 + components: + - type: Transform + pos: 79.5,-75.5 + parent: 2 + - uid: 22421 + components: + - type: Transform + pos: 77.5,-75.5 + parent: 2 + - uid: 22422 + components: + - type: Transform + pos: 76.5,-75.5 + parent: 2 + - uid: 22423 + components: + - type: Transform + pos: 75.5,-75.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22424 + components: + - type: Transform + pos: 83.5,-73.5 + parent: 2 + - uid: 22425 + components: + - type: Transform + pos: 84.5,-73.5 + parent: 2 + - uid: 22426 + components: + - type: Transform + pos: 86.5,-73.5 + parent: 2 + - uid: 22427 + components: + - type: Transform + pos: 87.5,-73.5 + parent: 2 + - uid: 22428 + components: + - type: Transform + pos: 87.5,-75.5 + parent: 2 + - uid: 22429 + components: + - type: Transform + pos: 86.5,-75.5 + parent: 2 + - uid: 22430 + components: + - type: Transform + pos: 85.5,-75.5 + parent: 2 + - uid: 22431 + components: + - type: Transform + pos: 83.5,-75.5 + parent: 2 + - uid: 22432 + components: + - type: Transform + pos: 75.5,-77.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22433 + components: + - type: Transform + pos: 77.5,-77.5 + parent: 2 + - uid: 22434 + components: + - type: Transform + pos: 79.5,-77.5 + parent: 2 + - uid: 22435 + components: + - type: Transform + pos: 79.5,-79.5 + parent: 2 + - uid: 22436 + components: + - type: Transform + pos: 78.5,-79.5 + parent: 2 + - uid: 22437 + components: + - type: Transform + pos: 76.5,-79.5 + parent: 2 + - uid: 22438 + components: + - type: Transform + pos: 75.5,-79.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22439 + components: + - type: Transform + pos: 75.5,-81.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22440 + components: + - type: Transform + pos: 78.5,-81.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22441 + components: + - type: Transform + pos: 77.5,-81.5 + parent: 2 + - uid: 22442 + components: + - type: Transform + pos: 76.5,-83.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22443 + components: + - type: Transform + pos: 78.5,-83.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22444 + components: + - type: Transform + pos: 83.5,-83.5 + parent: 2 + - uid: 22445 + components: + - type: Transform + pos: 85.5,-83.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22446 + components: + - type: Transform + pos: 87.5,-83.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22447 + components: + - type: Transform + pos: 86.5,-81.5 + parent: 2 + - uid: 22448 + components: + - type: Transform + pos: 85.5,-81.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22449 + components: + - type: Transform + pos: 84.5,-81.5 + parent: 2 + - uid: 22450 + components: + - type: Transform + pos: 83.5,-79.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22451 + components: + - type: Transform + pos: 85.5,-79.5 + parent: 2 + - uid: 22452 + components: + - type: Transform + pos: 87.5,-79.5 + parent: 2 + - uid: 22453 + components: + - type: Transform + pos: 86.5,-77.5 + parent: 2 + - uid: 22454 + components: + - type: Transform + pos: 85.5,-77.5 + parent: 2 + - type: PowerSupplier + supplyRate: 1297 + - uid: 22455 + components: + - type: Transform + pos: 84.5,-77.5 + parent: 2 +- proto: SolarTracker + entities: + - uid: 22456 + components: + - type: Transform + pos: 47.5,41.5 + parent: 2 + - uid: 22457 + components: + - type: Transform + pos: -49.5,41.5 + parent: 2 + - uid: 22458 + components: + - type: Transform + pos: 81.5,-86.5 + parent: 2 + - uid: 22459 + components: + - type: Transform + pos: -57.5,-61.5 + parent: 2 +- proto: SophicScribeSpawner + entities: + - uid: 22460 + components: + - type: Transform + pos: 70.5,-3.5 + parent: 2 +- proto: SpaceCash100 + entities: + - uid: 22461 + components: + - type: Transform + pos: -33.079475,-31.469593 + parent: 2 +- proto: SpaceCash1000 + entities: + - uid: 22462 + components: + - type: Transform + pos: -29.485697,4.5750856 + parent: 2 +- proto: SpaceVillainArcadeComputerCircuitboard + entities: + - uid: 22463 + components: + - type: Transform + pos: 75.53078,12.7389765 + parent: 2 +- proto: SpaceVillainArcadeFilled + entities: + - uid: 22464 + components: + - type: Transform + pos: -11.5,53.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 22465 + components: + - type: Transform + pos: 72.5,12.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 22466 + components: + - type: Transform + pos: -12.5,53.5 + parent: 2 + - type: SpamEmitSound + enabled: False +- proto: SpareIdCabinetFilled + entities: + - uid: 22467 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 +- proto: SpawnMobBandito + entities: + - uid: 22468 + components: + - type: Transform + pos: 69.5,-33.5 + parent: 2 +- proto: SpawnMobButterfly + entities: + - uid: 22469 + components: + - type: Transform + pos: 37.5,12.5 + parent: 2 + - uid: 22470 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 +- proto: SpawnMobCat + entities: + - uid: 22471 + components: + - type: Transform + pos: 57.5,-1.5 + parent: 2 +- proto: SpawnMobCatKitten + entities: + - uid: 22472 + components: + - type: Transform + pos: 69.5,-26.5 + parent: 2 + - uid: 22473 + components: + - type: Transform + pos: 61.5,-45.5 + parent: 2 +- proto: SpawnMobCatRuntime + entities: + - uid: 22474 + components: + - type: Transform + pos: 47.5,-47.5 + parent: 2 +- proto: SpawnMobCleanBot + entities: + - uid: 22475 + components: + - type: Transform + pos: 66.5,-13.5 + parent: 2 +- proto: SpawnMobCorgi + entities: + - uid: 22476 + components: + - type: Transform + pos: -10.5,-27.5 + parent: 2 +- proto: SpawnMobDrone + entities: + - uid: 22477 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 2 + - uid: 22478 + components: + - type: Transform + pos: 7.5,-36.5 + parent: 2 + - uid: 22479 + components: + - type: Transform + pos: 6.5,-36.5 + parent: 2 + - uid: 22480 + components: + - type: Transform + pos: 7.5,-35.5 + parent: 2 +- proto: SpawnMobFoxRenault + entities: + - uid: 22481 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 +- proto: SpawnMobMcGriff + entities: + - uid: 22482 + components: + - type: Transform + pos: 4.5,30.5 + parent: 2 +- proto: SpawnMobMedibot + entities: + - uid: 22483 + components: + - type: Transform + pos: 33.5,-24.5 + parent: 2 +- proto: SpawnMobMonkey + entities: + - uid: 22484 + components: + - type: Transform + pos: 45.5,-23.5 + parent: 2 + - uid: 22485 + components: + - type: Transform + pos: 47.5,-24.5 + parent: 2 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 22486 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 +- proto: SpawnMobMouse + entities: + - uid: 22487 + components: + - type: Transform + pos: -36.5,-46.5 + parent: 2 + - uid: 22488 + components: + - type: Transform + pos: 49.5,8.5 + parent: 2 + - uid: 22489 + components: + - type: Transform + pos: 20.5,26.5 + parent: 2 + - uid: 22490 + components: + - type: Transform + pos: -53.5,-16.5 + parent: 2 + - uid: 22491 + components: + - type: Transform + pos: -22.5,-54.5 + parent: 2 + - uid: 22492 + components: + - type: Transform + pos: 80.5,-32.5 + parent: 2 + - uid: 22493 + components: + - type: Transform + pos: -21.5,50.5 + parent: 2 +- proto: SpawnMobShiva + entities: + - uid: 22494 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 +- proto: SpawnMobSlothPaperwork + entities: + - uid: 22495 + components: + - type: Transform + pos: 57.5,-3.5 + parent: 2 +- proto: SpawnMobSmile + entities: + - uid: 22496 + components: + - type: Transform + pos: 70.5,-31.5 + parent: 2 +- proto: SpawnMobWalter + entities: + - uid: 22497 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 +- proto: SpawnPointAtmos + entities: + - uid: 22498 + components: + - type: Transform + pos: 12.5,-51.5 + parent: 2 + - uid: 22499 + components: + - type: Transform + pos: 12.5,-52.5 + parent: 2 + - uid: 22500 + components: + - type: Transform + pos: 12.5,-50.5 + parent: 2 +- proto: SpawnPointBartender + entities: + - uid: 22501 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 2 + - uid: 22502 + components: + - type: Transform + pos: 33.5,1.5 + parent: 2 +- proto: SpawnPointBorg + entities: + - uid: 22503 + components: + - type: Transform + pos: 52.5,-18.5 + parent: 2 + - uid: 22504 + components: + - type: Transform + pos: 54.5,-18.5 + parent: 2 + - uid: 22505 + components: + - type: Transform + pos: 53.5,-17.5 + parent: 2 + - uid: 22506 + components: + - type: Transform + pos: 53.5,-19.5 + parent: 2 +- proto: SpawnPointBotanist + entities: + - uid: 22507 + components: + - type: Transform + pos: 48.5,1.5 + parent: 2 + - uid: 22508 + components: + - type: Transform + pos: 48.5,0.5 + parent: 2 + - uid: 22509 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 2 +- proto: SpawnPointBrigmedic + entities: + - uid: 22510 + components: + - type: Transform + pos: -11.5,29.5 + parent: 2 +- proto: SpawnPointCaptain + entities: + - uid: 22511 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 2 +- proto: SpawnPointCargoTechnician + entities: + - uid: 22512 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 2 + - uid: 22513 + components: + - type: Transform + pos: -34.5,-19.5 + parent: 2 + - uid: 22514 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 2 + - uid: 22515 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - uid: 22516 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 + - uid: 22517 + components: + - type: Transform + pos: -26.5,-20.5 + parent: 2 + - uid: 22518 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 2 + - uid: 22519 + components: + - type: Transform + pos: -26.5,-21.5 + parent: 2 +- proto: SpawnPointChaplain + entities: + - uid: 22520 + components: + - type: Transform + pos: 64.5,2.5 + parent: 2 +- proto: SpawnPointChef + entities: + - uid: 22521 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 22522 + components: + - type: Transform + pos: 38.5,-5.5 + parent: 2 +- proto: SpawnPointChemist + entities: + - uid: 22523 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 2 + - uid: 22524 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 2 + - uid: 22525 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 2 +- proto: SpawnPointChiefEngineer + entities: + - uid: 22526 + components: + - type: Transform + pos: 1.5,-62.5 + parent: 2 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 22527 + components: + - type: Transform + pos: 44.5,-42.5 + parent: 2 +- proto: SpawnPointClown + entities: + - uid: 22528 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 +- proto: SpawnPointMailCarrier + entities: + - uid: 22529 + components: + - type: Transform + pos: -21.5,-16.5 + parent: 2 +- proto: SpawnPointDetective + entities: + - uid: 22530 + components: + - type: Transform + pos: -8.5,15.5 + parent: 2 +- proto: SpawnPointForensicMantis + entities: + - uid: 22531 + components: + - type: Transform + pos: 63.5,-43.5 + parent: 2 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 22532 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 2 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 22533 + components: + - type: Transform + pos: 16.5,38.5 + parent: 2 +- proto: SpawnPointHobo + entities: + - uid: 22534 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 2 +- proto: SpawnPointJanitor + entities: + - uid: 22535 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 22536 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 22537 + components: + - type: Transform + pos: -75.5,10.5 + parent: 2 + - uid: 22538 + components: + - type: Transform + pos: -74.5,10.5 + parent: 2 + - uid: 22539 + components: + - type: Transform + pos: -73.5,10.5 + parent: 2 + - uid: 22540 + components: + - type: Transform + pos: -72.5,10.5 + parent: 2 + - uid: 22541 + components: + - type: Transform + pos: -75.5,-5.5 + parent: 2 + - uid: 22542 + components: + - type: Transform + pos: -74.5,-5.5 + parent: 2 + - uid: 22543 + components: + - type: Transform + pos: -73.5,-5.5 + parent: 2 + - uid: 22544 + components: + - type: Transform + pos: -72.5,-5.5 + parent: 2 +- proto: SpawnPointLawyer + entities: + - uid: 22545 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 + - uid: 22546 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 +- proto: SpawnPointLibrarian + entities: + - uid: 22547 + components: + - type: Transform + pos: 62.5,-6.5 + parent: 2 +- proto: SpawnPointMailCarrier + entities: + - uid: 22548 + components: + - type: Transform + pos: -21.5,-18.5 + parent: 2 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 22549 + components: + - type: Transform + pos: 35.5,-40.5 + parent: 2 + - uid: 22550 + components: + - type: Transform + pos: 35.5,-41.5 + parent: 2 + - uid: 22551 + components: + - type: Transform + pos: 36.5,-40.5 + parent: 2 + - uid: 22552 + components: + - type: Transform + pos: 36.5,-41.5 + parent: 2 +- proto: SpawnPointMedicalIntern + entities: + - uid: 22553 + components: + - type: Transform + pos: 36.5,-42.5 + parent: 2 + - uid: 22554 + components: + - type: Transform + pos: 36.5,-39.5 + parent: 2 + - uid: 22555 + components: + - type: Transform + pos: 35.5,-39.5 + parent: 2 + - uid: 22556 + components: + - type: Transform + pos: 35.5,-42.5 + parent: 2 +- proto: SpawnPointMime + entities: + - uid: 22557 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 +- proto: SpawnPointMusician + entities: + - uid: 22558 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 2 +- proto: SpawnPointObserver + entities: + - uid: 22559 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 2 +- proto: SpawnPointParamedic + entities: + - uid: 22560 + components: + - type: Transform + pos: 47.5,-39.5 + parent: 2 + - uid: 22561 + components: + - type: Transform + pos: 45.5,-39.5 + parent: 2 +- proto: SpawnPointPassenger + entities: + - uid: 22562 + components: + - type: Transform + pos: -41.5,2.5 + parent: 2 + - uid: 22563 + components: + - type: Transform + pos: -39.5,2.5 + parent: 2 + - uid: 22564 + components: + - type: Transform + pos: -46.5,1.5 + parent: 2 + - uid: 22565 + components: + - type: Transform + pos: -43.5,5.5 + parent: 2 +- proto: SpawnPointPrisoner + entities: + - uid: 22566 + components: + - type: Transform + pos: -9.5,49.5 + parent: 2 + - uid: 22567 + components: + - type: Transform + pos: -24.5,43.5 + parent: 2 + - uid: 22568 + components: + - type: Transform + pos: -17.5,45.5 + parent: 2 + - uid: 22569 + components: + - type: Transform + pos: -5.5,43.5 + parent: 2 +- proto: SpawnPointPrisonGuard + entities: + - uid: 22570 + components: + - type: Transform + pos: -14.5,39.5 + parent: 2 +- proto: SpawnPointPsychologist + entities: + - uid: 22571 + components: + - type: Transform + pos: 10.5,-36.5 + parent: 2 +- proto: SpawnPointQuartermaster + entities: + - uid: 22572 + components: + - type: Transform + pos: -31.5,-33.5 + parent: 2 +- proto: SpawnPointResearchAssistant + entities: + - uid: 22573 + components: + - type: Transform + pos: 73.5,-29.5 + parent: 2 + - uid: 22574 + components: + - type: Transform + pos: 70.5,-29.5 + parent: 2 + - uid: 22575 + components: + - type: Transform + pos: 70.5,-28.5 + parent: 2 + - uid: 22576 + components: + - type: Transform + pos: 73.5,-27.5 + parent: 2 + - uid: 22577 + components: + - type: Transform + pos: 72.5,-45.5 + parent: 2 + - uid: 22578 + components: + - type: Transform + pos: 77.5,-44.5 + parent: 2 +- proto: SpawnPointResearchDirector + entities: + - uid: 22579 + components: + - type: Transform + pos: 74.5,-36.5 + parent: 2 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 22580 + components: + - type: Transform + pos: -27.5,-31.5 + parent: 2 + - uid: 22581 + components: + - type: Transform + pos: -27.5,-32.5 + parent: 2 + - uid: 22582 + components: + - type: Transform + pos: -27.5,-33.5 + parent: 2 + - uid: 22583 + components: + - type: Transform + pos: -27.5,-34.5 + parent: 2 +- proto: SpawnPointScientist + entities: + - uid: 22584 + components: + - type: Transform + pos: 71.5,-30.5 + parent: 2 + - uid: 22585 + components: + - type: Transform + pos: 72.5,-30.5 + parent: 2 + - uid: 22586 + components: + - type: Transform + pos: 71.5,-27.5 + parent: 2 + - uid: 22587 + components: + - type: Transform + pos: 72.5,-27.5 + parent: 2 + - uid: 22588 + components: + - type: Transform + pos: 59.5,-21.5 + parent: 2 +- proto: SpawnPointSecurityCadet + entities: + - uid: 22589 + components: + - type: Transform + pos: 8.5,36.5 + parent: 2 + - uid: 22590 + components: + - type: Transform + pos: 6.5,36.5 + parent: 2 + - uid: 22591 + components: + - type: Transform + pos: 7.5,36.5 + parent: 2 + - uid: 22592 + components: + - type: Transform + pos: 8.5,35.5 + parent: 2 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 22593 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - uid: 22594 + components: + - type: Transform + pos: 8.5,37.5 + parent: 2 + - uid: 22595 + components: + - type: Transform + pos: 9.5,37.5 + parent: 2 + - uid: 22596 + components: + - type: Transform + pos: 6.5,37.5 + parent: 2 +- proto: SpawnPointSeniorEngineer + entities: + - uid: 22597 + components: + - type: Transform + pos: -4.5,-62.5 + parent: 2 +- proto: SpawnPointSeniorOfficer + entities: + - uid: 22598 + components: + - type: Transform + pos: 9.5,38.5 + parent: 2 +- proto: SpawnPointSeniorPhysician + entities: + - uid: 22599 + components: + - type: Transform + pos: 34.5,-39.5 + parent: 2 +- proto: SpawnPointSeniorResearcher + entities: + - uid: 22600 + components: + - type: Transform + pos: 73.5,-28.5 + parent: 2 +- proto: SpawnPointServiceWorker + entities: + - uid: 22601 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 22602 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 +- proto: SpawnPointStationEngineer + entities: + - uid: 22603 + components: + - type: Transform + pos: -16.5,-71.5 + parent: 2 + - uid: 22604 + components: + - type: Transform + pos: -16.5,-73.5 + parent: 2 + - uid: 22605 + components: + - type: Transform + pos: -16.5,-72.5 + parent: 2 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 22606 + components: + - type: Transform + pos: -1.5,-63.5 + parent: 2 + - uid: 22607 + components: + - type: Transform + pos: -2.5,-63.5 + parent: 2 + - uid: 22608 + components: + - type: Transform + pos: -1.5,-62.5 + parent: 2 + - uid: 22609 + components: + - type: Transform + pos: -2.5,-62.5 + parent: 2 +- proto: SpawnPointWarden + entities: + - uid: 22610 + components: + - type: Transform + pos: -1.5,31.5 + parent: 2 +- proto: SpawnVendingMachineRestockFoodDrink + entities: + - uid: 22611 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 +- proto: SpearReinforced + entities: + - uid: 22612 + components: + - type: Transform + pos: 41.442837,-70.39236 + parent: 2 +- proto: SpeedLoaderMagnum + entities: + - uid: 11248 + components: + - type: Transform + parent: 11245 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11249 + components: + - type: Transform + parent: 11245 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Spoon + entities: + - uid: 22613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.6849,-7.13981 + parent: 2 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 11224 + components: + - type: Transform + parent: 11213 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11225 + components: + - type: Transform + parent: 11213 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11226 + components: + - type: Transform + parent: 11213 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11227 + components: + - type: Transform + parent: 11213 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22614 + components: + - type: Transform + pos: 2.2021809,-35.23755 + parent: 2 + - uid: 22615 + components: + - type: Transform + pos: 2.4678059,-35.0813 + parent: 2 + - uid: 22616 + components: + - type: Transform + pos: 2.4521809,-35.284424 + parent: 2 + - uid: 22617 + components: + - type: Transform + pos: -51.74547,-5.397331 + parent: 2 + - uid: 22618 + components: + - type: Transform + pos: -51.573593,-5.522331 + parent: 2 + - uid: 22619 + components: + - type: Transform + pos: -51.542343,-5.412956 + parent: 2 + - uid: 22620 + components: + - type: Transform + pos: -51.761093,-5.522331 + parent: 2 +- proto: SS13Memorial + entities: + - uid: 22621 + components: + - type: Transform + pos: 33.5,13.5 + parent: 2 +- proto: StasisBed + entities: + - uid: 22622 + components: + - type: Transform + pos: 31.5,-30.5 + parent: 2 + - uid: 22623 + components: + - type: Transform + pos: 33.5,-36.5 + parent: 2 +- proto: Stool + entities: + - uid: 22624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.008797,52.757362 + parent: 2 + - uid: 22625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-1.5 + parent: 2 + - uid: 22626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-6.5 + parent: 2 + - uid: 22627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.519653,24.674086 + parent: 2 + - uid: 22628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,23.5 + parent: 2 + - uid: 22629 + components: + - type: Transform + pos: -57.5,16.5 + parent: 2 + - uid: 22630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,6.5 + parent: 2 + - uid: 22631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,12.5 + parent: 2 + - uid: 22632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,9.5 + parent: 2 + - uid: 22633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,21.5 + parent: 2 + - uid: 22634 + components: + - type: Transform + pos: 64.5,7.5 + parent: 2 + - uid: 22635 + components: + - type: Transform + pos: 64.5,6.5 + parent: 2 + - uid: 22636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-19.5 + parent: 2 + - uid: 22637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-36.5 + parent: 2 + - uid: 22638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-45.5 + parent: 2 + - uid: 22639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-4.5 + parent: 2 + - uid: 22640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,44.5 + parent: 2 + - uid: 22641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,7.5 + parent: 2 +- proto: StoolBar + entities: + - uid: 22642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-45.5 + parent: 2 + - uid: 22643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-45.5 + parent: 2 + - uid: 22644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-45.5 + parent: 2 + - uid: 22645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,20.5 + parent: 2 + - uid: 22646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,18.5 + parent: 2 + - uid: 22647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,22.5 + parent: 2 + - uid: 22648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-11.5 + parent: 2 + - uid: 22649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-11.5 + parent: 2 + - uid: 22650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-11.5 + parent: 2 + - uid: 22651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-4.5 + parent: 2 + - uid: 22652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-5.5 + parent: 2 + - uid: 22653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-6.5 + parent: 2 + - uid: 22654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-7.5 + parent: 2 + - uid: 22655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-8.5 + parent: 2 + - uid: 22656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-9.5 + parent: 2 + - uid: 22657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-9.5 + parent: 2 + - uid: 22658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-11.5 + parent: 2 + - uid: 22659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,23.5 + parent: 2 +- proto: StorageCanister + entities: + - uid: 22660 + components: + - type: Transform + pos: 76.5,-32.5 + parent: 2 + - uid: 22661 + components: + - type: Transform + pos: 19.5,-40.5 + parent: 2 + - uid: 22662 + components: + - type: Transform + pos: 9.5,-40.5 + parent: 2 + - uid: 22663 + components: + - type: Transform + pos: 11.5,-44.5 + parent: 2 + - uid: 22664 + components: + - type: Transform + pos: 10.5,-44.5 + parent: 2 + - uid: 22665 + components: + - type: Transform + pos: 91.5,-30.5 + parent: 2 + - uid: 22666 + components: + - type: Transform + pos: 76.5,-33.5 + parent: 2 + - uid: 22667 + components: + - type: Transform + pos: 19.5,-41.5 + parent: 2 +- proto: Stunbaton + entities: + - uid: 22668 + components: + - type: Transform + pos: 25.427914,35.516106 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 22669 + components: + - type: MetaData + name: Cargo Substation + - type: Transform + pos: -21.5,-35.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 60.000237 + currentSupply: 60.000237 + supplyRampPosition: 60.000237 + - uid: 22670 + components: + - type: Transform + pos: 85.5,-44.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 260.0401 + currentSupply: 260.0401 + supplyRampPosition: 260.0401 + - uid: 22671 + components: + - type: MetaData + name: Command Substation + - type: Transform + pos: -10.5,-19.5 + parent: 2 + - uid: 22672 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 22673 + components: + - type: MetaData + name: Starboard Bow Service Substation + - type: Transform + pos: 43.5,7.5 + parent: 2 + - uid: 22674 + components: + - type: MetaData + name: Port Quarter Maintenance Substation + - type: Transform + pos: -28.5,-64.5 + parent: 2 + - uid: 22675 + components: + - type: MetaData + name: Security Substation + - type: Transform + pos: 24.5,22.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 45.00018 + currentSupply: 45.00018 + supplyRampPosition: 45.00018 + - uid: 22676 + components: + - type: MetaData + name: Port Bow Service Substation + - type: Transform + pos: -44.5,9.5 + parent: 2 + - type: PowerNetworkBattery + loadingNetworkDemand: 19.980549 + currentSupply: 19.980549 + supplyRampPosition: 19.980549 + - uid: 22677 + components: + - type: MetaData + name: Engineering Substation + - type: Transform + pos: -20.5,-66.5 + parent: 2 + - uid: 22678 + components: + - type: Transform + pos: -7.5,-49.5 + parent: 2 + - uid: 22679 + components: + - type: MetaData + name: Perma Substation + - type: Transform + pos: -20.5,51.5 + parent: 2 + - uid: 22680 + components: + - type: Transform + pos: 34.5,-89.5 + parent: 2 + - uid: 22681 + components: + - type: Transform + pos: 47.5,-53.5 + parent: 2 +- proto: SubstationBasicEmpty + entities: + - uid: 22682 + components: + - type: Transform + pos: -12.5,-64.5 + parent: 2 +- proto: SubstationMachineCircuitboard + entities: + - uid: 22683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.67126,13.161329 + parent: 2 + - uid: 22684 + components: + - type: Transform + pos: -5.4559207,-35.433456 + parent: 2 +- proto: SuitStorageBase + entities: + - uid: 11290 + components: + - type: Transform + pos: 43.5,-43.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11294 + - 11292 + - 11291 + - 11295 + - 11296 + - 11293 + - uid: 11315 + components: + - type: Transform + pos: 3.5,-48.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11318 + - 11317 + - 11320 + - 11316 + - 11319 + - uid: 11321 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11326 + - 11324 + - 11323 + - 11325 + - 11322 + - uid: 11327 + components: + - type: Transform + pos: 3.5,-47.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11331 + - 11328 + - 11329 + - 11330 + - 11332 + - uid: 11333 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11336 + - 11335 + - 11337 + - 11334 + - 11339 + - 11338 + - uid: 11341 + components: + - type: Transform + pos: -19.5,22.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.734816 + - 6.5262127 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11344 + - 11345 + - 11343 + - 11342 + - uid: 11346 + components: + - type: Transform + pos: 1.5,39.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11349 + - 11350 + - 11347 + - 11348 + - uid: 11351 + components: + - type: Transform + pos: -19.5,23.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11352 + - 11354 + - 11355 + - 11353 + - uid: 11356 + components: + - type: Transform + pos: 1.5,38.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11358 + - 11357 + - 11360 + - 11359 + - uid: 11366 + components: + - type: Transform + pos: -19.5,26.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11367 + - 11369 + - 11368 + - 11370 + - uid: 11372 + components: + - type: Transform + pos: -19.5,27.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11375 + - 11376 + - 11373 + - 11374 + - uid: 11377 + components: + - type: Transform + pos: -1.5,33.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11382 + - 11379 + - 11383 + - 11381 + - 11378 + - 11380 + - uid: 13789 + components: + - type: Transform + pos: 44.5,-31.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14226 + - 15891 + - uid: 22685 + components: + - type: Transform + pos: 5.5,-59.5 + parent: 2 + - uid: 23284 + components: + - type: Transform + pos: 44.5,-32.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 23427 + - 23765 +- proto: SuitStorageEngi + entities: + - uid: 22686 + components: + - type: Transform + pos: -12.5,-72.5 + parent: 2 + - uid: 22687 + components: + - type: Transform + pos: -12.5,-71.5 + parent: 2 + - uid: 22688 + components: + - type: Transform + pos: -14.5,-71.5 + parent: 2 + - uid: 22689 + components: + - type: Transform + pos: -14.5,-72.5 + parent: 2 +- proto: SuitStorageEVA + entities: + - uid: 22690 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 22691 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - uid: 22692 + components: + - type: Transform + pos: -22.5,1.5 + parent: 2 + - uid: 22693 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 22694 + components: + - type: Transform + pos: -14.5,2.5 + parent: 2 + - uid: 22695 + components: + - type: Transform + pos: -8.5,1.5 + parent: 2 + - uid: 22696 + components: + - type: Transform + pos: -14.5,1.5 + parent: 2 + - uid: 22697 + components: + - type: Transform + pos: -14.5,4.5 + parent: 2 + - uid: 22698 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 2 + - uid: 22699 + components: + - type: Transform + pos: -23.5,1.5 + parent: 2 +- proto: SuitStorageHOS + entities: + - uid: 22700 + components: + - type: Transform + pos: 12.5,41.5 + parent: 2 +- proto: SuitStorageRD + entities: + - uid: 22701 + components: + - type: Transform + pos: 73.5,-37.5 + parent: 2 +- proto: SuperSynthesizerInstrument + entities: + - uid: 22702 + components: + - type: Transform + pos: 22.595268,0.59744716 + parent: 2 +- proto: SurveillanceCameraCommand + entities: + - uid: 22703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-25.5 + parent: 2 + - uid: 22704 + components: + - type: Transform + pos: 69.5,-37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: research director + - uid: 22705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Vault + - uid: 22706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Conference Room + - uid: 22707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge West + - uid: 22708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge East + - uid: 22709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain's Bedroom + - uid: 22710 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain's Office + - uid: 22711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: High Sec Circuitry + - uid: 22712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Grav Gen + - uid: 22713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: gate +- proto: SurveillanceCameraEngineering + entities: + - uid: 22714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-69.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Particle Accelerator + - uid: 22715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-68.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: SMES Bank + - uid: 22716 + components: + - type: Transform + pos: -14.5,-73.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engi Locker Room + - uid: 22717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-61.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engi Supply Room + - uid: 22718 + components: + - type: Transform + pos: 6.5,-57.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engineering Lobby + - uid: 22719 + components: + - type: Transform + pos: 4.5,-45.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Desk + - uid: 22720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-45.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North Atmos + - uid: 22721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-53.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos + - uid: 22722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-62.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: CE's Room + - uid: 22723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: EVA Supply + - uid: 22724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Circuitry + - uid: 22725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-70.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: AME Room +- proto: SurveillanceCameraGeneral + entities: + - uid: 22726 + components: + - type: Transform + pos: -41.5,1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Tool Room + - uid: 22727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Chapel Crematorium + - uid: 22728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Chapel + - uid: 22729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Library + - uid: 22730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Hydroponics + - uid: 22731 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Kitchen + - uid: 22732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Theater + - uid: 22733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Bar + - uid: 22734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Bathroom + - uid: 22735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorms +- proto: SurveillanceCameraMedical + entities: + - uid: 22736 + components: + - type: Transform + pos: 43.5,-40.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: paramedics locker room + - uid: 22737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: biohazard suits storage + - uid: 22738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery + - uid: 22739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-55.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology + - uid: 22740 + components: + - type: Transform + pos: 44.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Morgue + - uid: 22741 + components: + - type: Transform + pos: 44.5,-29.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Cloning + - uid: 22742 + components: + - type: Transform + pos: 33.5,-36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medbay Storage + - uid: 22743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-40.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Examination Room 1 + - uid: 22744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-27.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Emergency Room + - uid: 22745 + components: + - type: Transform + pos: 31.5,-21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medbay Lobby + - uid: 22746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemistry + - uid: 22747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-47.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: 'chief medical officer ' +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 22748 + components: + - type: Transform + pos: -14.5,-50.5 + parent: 2 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 22749 + components: + - type: Transform + pos: -14.5,-56.5 + parent: 2 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 22750 + components: + - type: Transform + pos: -11.5,-56.5 + parent: 2 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 22751 + components: + - type: Transform + pos: -14.5,-52.5 + parent: 2 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 22752 + components: + - type: Transform + pos: -11.5,-52.5 + parent: 2 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 22753 + components: + - type: Transform + pos: -11.5,-50.5 + parent: 2 +- proto: SurveillanceCameraRouterService + entities: + - uid: 22754 + components: + - type: Transform + pos: -14.5,-54.5 + parent: 2 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 22755 + components: + - type: Transform + pos: -11.5,-54.5 + parent: 2 +- proto: SurveillanceCameraScience + entities: + - uid: 22756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-43.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Toxins + - uid: 22757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: RND + - uid: 22758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-49.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Anomaly Lab + - uid: 22759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: robotics + - uid: 22760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-40.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: xenobiology laboratory + - uid: 22761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-43.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: slime farm +- proto: SurveillanceCameraSecurity + entities: + - uid: 22762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: warden's rest room + - uid: 22763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: HoS + - uid: 22764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,43.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory Exterior + - uid: 22765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Arrivals Sec Office + - uid: 22766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Shooting Range + - uid: 22767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,39.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Locker Room + - uid: 22768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,28.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell Block + - uid: 22769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: sec hallway + - uid: 22770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,45.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Hall + - uid: 22771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,48.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Recreation + - uid: 22772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,51.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Botany + - uid: 22773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,51.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Library + - uid: 22774 + components: + - type: Transform + pos: -19.5,43.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Cells + - uid: 22775 + components: + - type: Transform + pos: 8.5,43.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security Exterior Armory + - uid: 22776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Entryway + - uid: 22777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: warden's office + - uid: 22778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,17.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Detective Office + - uid: 22779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,32.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: interrogation room +- proto: SurveillanceCameraSupply + entities: + - uid: 22780 + components: + - type: Transform + pos: -20.5,-19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Mail Room + - uid: 22781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Lobby + - uid: 22782 + components: + - type: Transform + pos: -35.5,-27.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Bay + - uid: 22783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-29.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Quartermaster +- proto: SurveillanceWirelessCameraAnchoredConstructed + entities: + - uid: 22784 + components: + - type: Transform + pos: 116.5,-35.5 + parent: 2 + - type: DeviceNetwork + address: 18D9-49AB + receiveFrequency: 1939 + - type: SurveillanceCamera + networkSet: True + nameSet: True + id: Тестовый полигон РнД +- proto: Syringe + entities: + - uid: 22785 + components: + - type: Transform + pos: 31.63015,-32.473373 + parent: 2 +- proto: SyringeEphedrine + entities: + - uid: 22786 + components: + - type: Transform + pos: -20.550821,14.488405 + parent: 2 + - type: Tag + tags: [] +- proto: Table + entities: + - uid: 22787 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 22788 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 22789 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 22790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-26.5 + parent: 2 + - uid: 22791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-50.5 + parent: 2 + - uid: 22792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-53.5 + parent: 2 + - uid: 22793 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 2 + - uid: 22794 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 22795 + components: + - type: Transform + pos: -9.5,-14.5 + parent: 2 + - uid: 22796 + components: + - type: Transform + pos: -13.5,6.5 + parent: 2 + - uid: 22797 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - uid: 22798 + components: + - type: Transform + pos: -9.5,-27.5 + parent: 2 + - uid: 22799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-31.5 + parent: 2 + - uid: 22800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-19.5 + parent: 2 + - uid: 22801 + components: + - type: Transform + pos: 12.5,33.5 + parent: 2 + - uid: 22802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-27.5 + parent: 2 + - uid: 22803 + components: + - type: Transform + pos: 15.5,34.5 + parent: 2 + - uid: 22804 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 2 + - uid: 22805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,47.5 + parent: 2 + - uid: 22806 + components: + - type: Transform + pos: 80.5,-1.5 + parent: 2 + - uid: 22807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,34.5 + parent: 2 + - uid: 22808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,30.5 + parent: 2 + - uid: 22809 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 + - uid: 22810 + components: + - type: Transform + pos: 43.5,-40.5 + parent: 2 + - uid: 22811 + components: + - type: Transform + pos: -9.5,-33.5 + parent: 2 + - uid: 22812 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 + - uid: 22813 + components: + - type: Transform + pos: 44.5,-40.5 + parent: 2 + - uid: 22814 + components: + - type: Transform + pos: -11.5,-25.5 + parent: 2 + - uid: 22815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-45.5 + parent: 2 + - uid: 22816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-54.5 + parent: 2 + - uid: 22817 + components: + - type: Transform + pos: 2.5,51.5 + parent: 2 + - uid: 22818 + components: + - type: Transform + pos: 3.5,51.5 + parent: 2 + - uid: 22819 + components: + - type: Transform + pos: 18.5,-34.5 + parent: 2 + - uid: 22820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-12.5 + parent: 2 + - uid: 22821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-18.5 + parent: 2 + - uid: 22822 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 2 + - uid: 22823 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 2 + - uid: 22824 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 2 + - uid: 22825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-11.5 + parent: 2 + - uid: 22826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-18.5 + parent: 2 + - uid: 22827 + components: + - type: Transform + pos: 13.5,39.5 + parent: 2 + - uid: 22828 + components: + - type: Transform + pos: 71.5,-37.5 + parent: 2 + - uid: 22829 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 22830 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 + - uid: 22831 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 22832 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 2 + - uid: 22833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-29.5 + parent: 2 + - uid: 22834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-29.5 + parent: 2 + - uid: 22835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 2 + - uid: 22836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-2.5 + parent: 2 + - uid: 22837 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 22838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-20.5 + parent: 2 + - uid: 22839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-20.5 + parent: 2 + - uid: 22840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 2 + - uid: 22841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 2 + - uid: 22842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-3.5 + parent: 2 + - uid: 22843 + components: + - type: Transform + pos: -11.5,16.5 + parent: 2 + - uid: 22844 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 22845 + components: + - type: Transform + pos: -0.5,-61.5 + parent: 2 + - uid: 22846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-53.5 + parent: 2 + - uid: 22847 + components: + - type: Transform + pos: -37.5,3.5 + parent: 2 + - uid: 22848 + components: + - type: Transform + pos: -20.5,3.5 + parent: 2 + - uid: 22849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-47.5 + parent: 2 + - uid: 22850 + components: + - type: Transform + pos: 12.5,34.5 + parent: 2 + - uid: 22851 + components: + - type: Transform + pos: -39.5,-6.5 + parent: 2 + - uid: 22852 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 2 + - uid: 22853 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 2 + - uid: 22854 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 2 + - uid: 22855 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 2 + - uid: 22856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-31.5 + parent: 2 + - uid: 22857 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 2 + - uid: 22858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-57.5 + parent: 2 + - uid: 22859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,34.5 + parent: 2 + - uid: 22860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-56.5 + parent: 2 + - uid: 22861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,30.5 + parent: 2 + - uid: 22862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-55.5 + parent: 2 + - uid: 22863 + components: + - type: Transform + pos: 8.5,24.5 + parent: 2 + - uid: 22864 + components: + - type: Transform + pos: 3.5,-61.5 + parent: 2 + - uid: 22865 + components: + - type: Transform + pos: 4.5,-61.5 + parent: 2 + - uid: 22866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 2 + - uid: 22867 + components: + - type: Transform + pos: -11.5,17.5 + parent: 2 + - uid: 22868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-4.5 + parent: 2 + - uid: 22869 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 2 + - uid: 22870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-46.5 + parent: 2 + - uid: 22871 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 22872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-41.5 + parent: 2 + - uid: 22873 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 2 + - uid: 22874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-25.5 + parent: 2 + - uid: 22875 + components: + - type: Transform + pos: 9.5,35.5 + parent: 2 + - uid: 22876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-29.5 + parent: 2 + - uid: 22877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-18.5 + parent: 2 + - uid: 22878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 2 + - uid: 22879 + components: + - type: Transform + pos: 43.5,-0.5 + parent: 2 + - uid: 22880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,47.5 + parent: 2 + - uid: 22881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,31.5 + parent: 2 + - uid: 22882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,13.5 + parent: 2 + - uid: 22883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,12.5 + parent: 2 + - uid: 22884 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 2 + - uid: 22885 + components: + - type: Transform + pos: 45.5,-34.5 + parent: 2 + - uid: 22886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-31.5 + parent: 2 + - uid: 22887 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 22888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 2 + - uid: 22889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-5.5 + parent: 2 + - uid: 22890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-6.5 + parent: 2 + - uid: 22891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,52.5 + parent: 2 + - uid: 22892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-69.5 + parent: 2 + - uid: 22893 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 + - uid: 22894 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 2 + - uid: 22895 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 + - uid: 22896 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 22897 + components: + - type: Transform + pos: -1.5,-61.5 + parent: 2 + - uid: 22898 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - uid: 22899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,51.5 + parent: 2 + - uid: 22900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,47.5 + parent: 2 + - uid: 22901 + components: + - type: Transform + pos: 80.5,-26.5 + parent: 2 + - uid: 22902 + components: + - type: Transform + pos: 77.5,-26.5 + parent: 2 + - uid: 22903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 2 + - uid: 22904 + components: + - type: Transform + pos: 8.5,-27.5 + parent: 2 + - uid: 22905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,35.5 + parent: 2 + - uid: 22906 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 2 + - uid: 22907 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 2 + - uid: 22908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-19.5 + parent: 2 + - uid: 22909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-29.5 + parent: 2 + - uid: 22910 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 2 + - uid: 22911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-69.5 + parent: 2 + - uid: 22912 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 2 + - uid: 22913 + components: + - type: Transform + pos: -19.5,2.5 + parent: 2 + - uid: 22914 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 22915 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 22916 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 22917 + components: + - type: Transform + pos: 79.5,-47.5 + parent: 2 + - uid: 22918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-24.5 + parent: 2 + - uid: 22919 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 2 + - uid: 22920 + components: + - type: Transform + pos: -37.5,2.5 + parent: 2 + - uid: 22921 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 2 + - uid: 22922 + components: + - type: Transform + pos: 27.5,-83.5 + parent: 2 + - uid: 22923 + components: + - type: Transform + pos: 26.5,-86.5 + parent: 2 + - uid: 22924 + components: + - type: Transform + pos: 30.5,-87.5 + parent: 2 + - uid: 22925 + components: + - type: Transform + pos: -20.5,-40.5 + parent: 2 + - uid: 22926 + components: + - type: Transform + pos: 72.5,-29.5 + parent: 2 + - uid: 22927 + components: + - type: Transform + pos: 72.5,-28.5 + parent: 2 + - uid: 22928 + components: + - type: Transform + pos: 71.5,-28.5 + parent: 2 + - uid: 22929 + components: + - type: Transform + pos: 71.5,-29.5 + parent: 2 + - uid: 22930 + components: + - type: Transform + pos: 69.5,-28.5 + parent: 2 + - uid: 22931 + components: + - type: Transform + pos: 43.5,6.5 + parent: 2 + - uid: 22932 + components: + - type: Transform + pos: 43.5,5.5 + parent: 2 + - uid: 22933 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 + - uid: 22934 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 2 + - uid: 22935 + components: + - type: Transform + pos: 64.5,16.5 + parent: 2 + - uid: 22936 + components: + - type: Transform + pos: 67.5,18.5 + parent: 2 + - uid: 22937 + components: + - type: Transform + pos: -18.5,14.5 + parent: 2 + - uid: 22938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 2 + - uid: 22939 + components: + - type: Transform + pos: -19.5,3.5 + parent: 2 + - uid: 22940 + components: + - type: Transform + pos: -46.5,14.5 + parent: 2 + - uid: 22941 + components: + - type: Transform + pos: -46.5,13.5 + parent: 2 + - uid: 22942 + components: + - type: Transform + pos: -52.5,-13.5 + parent: 2 + - uid: 22943 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 2 + - uid: 22944 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 2 + - uid: 22945 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - uid: 22946 + components: + - type: Transform + pos: -28.5,-25.5 + parent: 2 + - uid: 22947 + components: + - type: Transform + pos: -25.5,-21.5 + parent: 2 + - uid: 22948 + components: + - type: Transform + pos: -24.5,-21.5 + parent: 2 + - uid: 22949 + components: + - type: Transform + pos: -34.5,-51.5 + parent: 2 + - uid: 22950 + components: + - type: Transform + pos: -35.5,-51.5 + parent: 2 + - uid: 22951 + components: + - type: Transform + pos: -28.5,-52.5 + parent: 2 + - uid: 22952 + components: + - type: Transform + pos: -28.5,-53.5 + parent: 2 + - uid: 22953 + components: + - type: Transform + pos: -28.5,-54.5 + parent: 2 + - uid: 22954 + components: + - type: Transform + pos: -28.5,-55.5 + parent: 2 + - uid: 22955 + components: + - type: Transform + pos: -10.5,-34.5 + parent: 2 + - uid: 22956 + components: + - type: Transform + pos: -8.5,-33.5 + parent: 2 + - uid: 22957 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 2 + - uid: 22958 + components: + - type: Transform + pos: -3.5,-45.5 + parent: 2 + - uid: 22959 + components: + - type: Transform + pos: -4.5,-45.5 + parent: 2 + - uid: 22960 + components: + - type: Transform + pos: 3.5,-43.5 + parent: 2 + - uid: 22961 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - uid: 22962 + components: + - type: Transform + pos: -30.5,23.5 + parent: 2 + - uid: 22963 + components: + - type: Transform + pos: -33.5,18.5 + parent: 2 + - uid: 22964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-31.5 + parent: 2 + - uid: 22965 + components: + - type: Transform + pos: 34.5,-52.5 + parent: 2 + - uid: 22966 + components: + - type: Transform + pos: 34.5,-53.5 + parent: 2 + - uid: 22967 + components: + - type: Transform + pos: 34.5,-54.5 + parent: 2 + - uid: 22968 + components: + - type: Transform + pos: 34.5,-45.5 + parent: 2 + - uid: 22969 + components: + - type: Transform + pos: 34.5,-48.5 + parent: 2 + - uid: 22970 + components: + - type: Transform + pos: 47.5,-68.5 + parent: 2 + - uid: 22971 + components: + - type: Transform + pos: 47.5,-67.5 + parent: 2 + - uid: 22972 + components: + - type: Transform + pos: 47.5,-66.5 + parent: 2 + - uid: 22973 + components: + - type: Transform + pos: 64.5,-23.5 + parent: 2 + - uid: 22974 + components: + - type: Transform + pos: 73.5,-16.5 + parent: 2 + - uid: 22975 + components: + - type: Transform + pos: 74.5,-16.5 + parent: 2 + - uid: 22976 + components: + - type: Transform + pos: 69.5,-29.5 + parent: 2 + - uid: 22977 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 2 + - uid: 22978 + components: + - type: Transform + pos: 57.5,-31.5 + parent: 2 + - uid: 22979 + components: + - type: Transform + pos: 42.5,0.5 + parent: 2 + - uid: 22980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-53.5 + parent: 2 + - uid: 22981 + components: + - type: Transform + pos: 80.5,-46.5 + parent: 2 + - uid: 22982 + components: + - type: Transform + pos: 80.5,-47.5 + parent: 2 + - uid: 22983 + components: + - type: Transform + pos: 78.5,-64.5 + parent: 2 + - uid: 22984 + components: + - type: Transform + pos: 78.5,-63.5 + parent: 2 + - uid: 22985 + components: + - type: Transform + pos: 78.5,-62.5 + parent: 2 + - uid: 22986 + components: + - type: Transform + pos: -19.5,14.5 + parent: 2 + - uid: 22987 + components: + - type: Transform + pos: -20.5,14.5 + parent: 2 + - uid: 22988 + components: + - type: Transform + pos: -21.5,-15.5 + parent: 2 + - uid: 22989 + components: + - type: Transform + pos: 32.5,-88.5 + parent: 2 + - uid: 22990 + components: + - type: Transform + pos: 33.5,-88.5 + parent: 2 + - uid: 22991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,30.5 + parent: 2 + - uid: 22992 + components: + - type: Transform + pos: -40.5,4.5 + parent: 2 + - uid: 22993 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 2 + - uid: 22994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-24.5 + parent: 2 + - uid: 22995 + components: + - type: Transform + pos: 15.5,33.5 + parent: 2 + - uid: 22996 + components: + - type: Transform + pos: 15.5,32.5 + parent: 2 + - uid: 22997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 2 + - uid: 22998 + components: + - type: Transform + pos: 80.5,-45.5 + parent: 2 + - uid: 22999 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 2 + - uid: 23000 + components: + - type: Transform + pos: 42.5,-0.5 + parent: 2 + - uid: 23001 + components: + - type: Transform + pos: -58.5,5.5 + parent: 2 + - uid: 23002 + components: + - type: Transform + pos: -57.5,5.5 + parent: 2 + - uid: 23003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,30.5 + parent: 2 + - uid: 23004 + components: + - type: Transform + pos: -27.5,-29.5 + parent: 2 + - uid: 23005 + components: + - type: Transform + pos: -26.5,-29.5 + parent: 2 + - uid: 23006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-24.5 + parent: 2 + - uid: 23007 + components: + - type: Transform + pos: 9.5,34.5 + parent: 2 + - uid: 23008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-31.5 + parent: 2 + - uid: 23009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-30.5 + parent: 2 + - uid: 23010 + components: + - type: Transform + pos: 12.5,32.5 + parent: 2 + - uid: 23011 + components: + - type: Transform + pos: 8.5,23.5 + parent: 2 + - uid: 23012 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - uid: 23013 + components: + - type: Transform + pos: -17.5,30.5 + parent: 2 + - uid: 23014 + components: + - type: Transform + pos: -17.5,31.5 + parent: 2 + - uid: 23015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,34.5 + parent: 2 + - uid: 23016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,36.5 + parent: 2 + - uid: 23017 + components: + - type: Transform + pos: 19.5,32.5 + parent: 2 + - uid: 23018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,35.5 + parent: 2 + - uid: 23019 + components: + - type: Transform + pos: 18.5,32.5 + parent: 2 + - uid: 23020 + components: + - type: Transform + pos: -41.5,4.5 + parent: 2 + - uid: 23021 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - uid: 23022 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 2 + - uid: 23023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-24.5 + parent: 2 + - uid: 23024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-73.5 + parent: 2 + - uid: 23025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-74.5 + parent: 2 + - uid: 23026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-65.5 + parent: 2 + - uid: 23027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-65.5 + parent: 2 + - uid: 23028 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 2 + - uid: 23029 + components: + - type: Transform + pos: 12.5,-42.5 + parent: 2 + - uid: 28091 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 2 + - uid: 28092 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 + - uid: 28093 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 2 + - uid: 28094 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 2 +- proto: TableCarpet + entities: + - uid: 22153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,0.5 + parent: 2 + - uid: 22154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,1.5 + parent: 2 + - uid: 23030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,0.5 + parent: 2 + - uid: 23031 + components: + - type: Transform + pos: 63.5,-5.5 + parent: 2 + - uid: 23032 + components: + - type: Transform + pos: 58.5,16.5 + parent: 2 + - uid: 23033 + components: + - type: Transform + pos: 58.5,15.5 + parent: 2 + - uid: 23034 + components: + - type: Transform + pos: 57.5,15.5 + parent: 2 + - uid: 23035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,1.5 + parent: 2 +- proto: TableCounterMetal + entities: + - uid: 23036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-16.5 + parent: 2 + - uid: 23037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-10.5 + parent: 2 + - uid: 23038 + components: + - type: Transform + pos: -13.5,38.5 + parent: 2 + - uid: 23039 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 2 +- proto: TableCounterWood + entities: + - uid: 23040 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 + - uid: 23041 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 23042 + components: + - type: Transform + pos: -36.5,18.5 + parent: 2 + - uid: 23043 + components: + - type: Transform + pos: -36.5,22.5 + parent: 2 + - uid: 23044 + components: + - type: Transform + pos: -36.5,19.5 + parent: 2 + - uid: 23045 + components: + - type: Transform + pos: -37.5,23.5 + parent: 2 + - uid: 23046 + components: + - type: Transform + pos: -36.5,21.5 + parent: 2 + - uid: 23047 + components: + - type: Transform + pos: -36.5,20.5 + parent: 2 + - uid: 23048 + components: + - type: Transform + pos: -36.5,23.5 + parent: 2 +- proto: TableFrame + entities: + - uid: 20440 + components: + - type: Transform + pos: 46.5,-31.5 + parent: 2 + - uid: 23766 + components: + - type: Transform + pos: 46.5,-32.5 + parent: 2 +- proto: TableGlass + entities: + - uid: 23049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-26.5 + parent: 2 + - uid: 23050 + components: + - type: Transform + pos: 46.5,-25.5 + parent: 2 + - uid: 23051 + components: + - type: Transform + pos: 69.5,6.5 + parent: 2 + - uid: 23052 + components: + - type: Transform + pos: 74.5,3.5 + parent: 2 + - uid: 23053 + components: + - type: Transform + pos: 74.5,2.5 + parent: 2 + - uid: 23054 + components: + - type: Transform + pos: 74.5,1.5 + parent: 2 + - uid: 23055 + components: + - type: Transform + pos: 74.5,0.5 + parent: 2 + - uid: 23056 + components: + - type: Transform + pos: 41.5,-57.5 + parent: 2 + - uid: 23057 + components: + - type: Transform + pos: 38.5,-58.5 + parent: 2 + - uid: 23058 + components: + - type: Transform + pos: 38.5,-59.5 + parent: 2 + - uid: 23059 + components: + - type: Transform + pos: 38.5,-60.5 + parent: 2 + - uid: 23060 + components: + - type: Transform + pos: 74.5,-18.5 + parent: 2 + - uid: 23061 + components: + - type: Transform + pos: 74.5,-19.5 + parent: 2 + - uid: 23062 + components: + - type: Transform + pos: 74.5,-20.5 + parent: 2 + - uid: 23063 + components: + - type: Transform + pos: 71.5,-15.5 + parent: 2 + - uid: 23064 + components: + - type: Transform + pos: 61.5,-15.5 + parent: 2 +- proto: TablePlasmaGlass + entities: + - uid: 23065 + components: + - type: Transform + pos: 68.5,-51.5 + parent: 2 + - uid: 23066 + components: + - type: Transform + pos: 47.5,-60.5 + parent: 2 + - uid: 23067 + components: + - type: Transform + pos: 44.5,-60.5 + parent: 2 + - uid: 23068 + components: + - type: Transform + pos: 46.5,-60.5 + parent: 2 + - uid: 23069 + components: + - type: Transform + pos: 43.5,-60.5 + parent: 2 + - uid: 23070 + components: + - type: Transform + pos: 68.5,-50.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 23071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,24.5 + parent: 2 + - uid: 23072 + components: + - type: Transform + pos: 3.5,33.5 + parent: 2 + - uid: 23073 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 + - uid: 23074 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 2 + - uid: 23075 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 2 + - uid: 23076 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 + - uid: 23077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,24.5 + parent: 2 + - uid: 23078 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 2 + - uid: 23079 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 23080 + components: + - type: Transform + pos: -0.5,37.5 + parent: 2 + - uid: 23081 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 2 + - uid: 23082 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - uid: 23083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,4.5 + parent: 2 + - uid: 23084 + components: + - type: Transform + pos: -16.5,24.5 + parent: 2 + - uid: 23085 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 + - uid: 23086 + components: + - type: Transform + pos: 2.5,29.5 + parent: 2 + - uid: 23087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-30.5 + parent: 2 + - uid: 23088 + components: + - type: Transform + pos: -58.5,2.5 + parent: 2 + - uid: 23089 + components: + - type: Transform + pos: 26.5,-105.5 + parent: 2 + - uid: 23090 + components: + - type: Transform + pos: 26.5,-106.5 + parent: 2 + - uid: 23091 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 2 + - uid: 23092 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 2 + - uid: 23093 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 2 + - uid: 23094 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 2 + - uid: 23095 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 2 + - uid: 23096 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 2 + - uid: 23097 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 2 + - uid: 23098 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 2 + - uid: 23099 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 2 + - uid: 23100 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 2 + - uid: 23101 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 2 + - uid: 23102 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 2 + - uid: 23103 + components: + - type: Transform + pos: 38.5,-7.5 + parent: 2 + - uid: 23104 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - uid: 23105 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 + - uid: 23106 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 23107 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 2 + - uid: 23108 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - uid: 23109 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 + - uid: 23110 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - uid: 23111 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 2 + - uid: 23112 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 2 + - uid: 23113 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 23114 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 23115 + components: + - type: Transform + pos: 1.5,22.5 + parent: 2 + - uid: 23116 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 23117 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 + - uid: 23118 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 + - uid: 23119 + components: + - type: Transform + pos: 5.5,37.5 + parent: 2 + - uid: 23120 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 2 + - uid: 23121 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 2 + - uid: 23122 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 2 + - uid: 23123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-32.5 + parent: 2 + - uid: 23124 + components: + - type: Transform + pos: 70.5,-16.5 + parent: 2 + - uid: 23125 + components: + - type: Transform + pos: 62.5,-16.5 + parent: 2 + - uid: 23126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-21.5 + parent: 2 + - uid: 23127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,37.5 + parent: 2 + - uid: 23128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,24.5 + parent: 2 + - uid: 23129 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 + - uid: 23130 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 2 + - uid: 23131 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 23132 + components: + - type: Transform + pos: -2.5,36.5 + parent: 2 + - uid: 23133 + components: + - type: Transform + pos: -2.5,37.5 + parent: 2 + - uid: 23134 + components: + - type: Transform + pos: -0.5,38.5 + parent: 2 + - uid: 23135 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 2 + - uid: 23136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,37.5 + parent: 2 + - uid: 23137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-30.5 + parent: 2 + - uid: 23138 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 2 + - uid: 23139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,5.5 + parent: 2 + - uid: 23140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,31.5 + parent: 2 + - uid: 23141 + components: + - type: Transform + pos: -16.5,25.5 + parent: 2 +- proto: TableReinforcedGlass + entities: + - uid: 23142 + components: + - type: Transform + pos: 37.5,-35.5 + parent: 2 + - uid: 23143 + components: + - type: Transform + pos: 36.5,-36.5 + parent: 2 + - uid: 23144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-23.5 + parent: 2 + - uid: 23145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-36.5 + parent: 2 + - uid: 23146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-22.5 + parent: 2 + - uid: 23147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-33.5 + parent: 2 + - uid: 23148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-26.5 + parent: 2 + - uid: 23149 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 + - uid: 23150 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 2 + - uid: 23151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-27.5 + parent: 2 + - uid: 23152 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 2 + - uid: 23153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-22.5 + parent: 2 + - uid: 23154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-32.5 + parent: 2 + - uid: 23155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 2 + - uid: 23156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-32.5 + parent: 2 + - uid: 23157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-36.5 + parent: 2 + - uid: 23158 + components: + - type: Transform + pos: 63.5,12.5 + parent: 2 + - uid: 23159 + components: + - type: Transform + pos: 37.5,-36.5 + parent: 2 + - uid: 23160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-27.5 + parent: 2 + - uid: 23161 + components: + - type: Transform + pos: 35.5,-43.5 + parent: 2 + - uid: 23162 + components: + - type: Transform + pos: 34.5,-43.5 + parent: 2 + - uid: 23163 + components: + - type: Transform + pos: 34.5,-41.5 + parent: 2 + - uid: 23164 + components: + - type: Transform + pos: 34.5,-42.5 + parent: 2 +- proto: TableWood + entities: + - uid: 1173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,0.5 + parent: 2 + - uid: 22112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-2.5 + parent: 2 + - uid: 23165 + components: + - type: Transform + pos: 61.5,-43.5 + parent: 2 + - uid: 23166 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 23167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-34.5 + parent: 2 + - uid: 23168 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 23169 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 23170 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 23171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-44.5 + parent: 2 + - uid: 23172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-44.5 + parent: 2 + - uid: 23173 + components: + - type: Transform + pos: 22.5,5.5 + parent: 2 + - uid: 23174 + components: + - type: Transform + pos: 22.5,3.5 + parent: 2 + - uid: 23175 + components: + - type: Transform + pos: -14.5,48.5 + parent: 2 + - uid: 23176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,53.5 + parent: 2 + - uid: 23177 + components: + - type: Transform + pos: 77.5,-2.5 + parent: 2 + - uid: 23178 + components: + - type: Transform + pos: 70.5,-34.5 + parent: 2 + - uid: 23179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-44.5 + parent: 2 + - uid: 23180 + components: + - type: Transform + pos: 69.5,-34.5 + parent: 2 + - uid: 23181 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 + - uid: 23182 + components: + - type: Transform + pos: 45.5,-62.5 + parent: 2 + - uid: 23183 + components: + - type: Transform + pos: 57.5,-7.5 + parent: 2 + - uid: 23184 + components: + - type: Transform + pos: 60.5,-6.5 + parent: 2 + - uid: 23185 + components: + - type: Transform + pos: 60.5,-7.5 + parent: 2 + - uid: 23186 + components: + - type: Transform + pos: 61.5,-7.5 + parent: 2 + - uid: 23187 + components: + - type: Transform + pos: 62.5,-7.5 + parent: 2 + - uid: 23188 + components: + - type: Transform + pos: 63.5,-7.5 + parent: 2 + - uid: 23191 + components: + - type: Transform + pos: 61.5,-2.5 + parent: 2 + - uid: 23194 + components: + - type: Transform + pos: 62.5,-2.5 + parent: 2 + - uid: 23195 + components: + - type: Transform + pos: 63.5,-2.5 + parent: 2 + - uid: 23196 + components: + - type: Transform + pos: 63.5,1.5 + parent: 2 + - uid: 23197 + components: + - type: Transform + pos: 64.5,1.5 + parent: 2 + - uid: 23198 + components: + - type: Transform + pos: 65.5,1.5 + parent: 2 + - uid: 23199 + components: + - type: Transform + pos: 65.5,2.5 + parent: 2 + - uid: 23200 + components: + - type: Transform + pos: 57.5,-10.5 + parent: 2 + - uid: 23201 + components: + - type: Transform + pos: 61.5,-10.5 + parent: 2 + - uid: 23202 + components: + - type: Transform + pos: 56.5,3.5 + parent: 2 + - uid: 23203 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - uid: 23204 + components: + - type: Transform + pos: 55.5,15.5 + parent: 2 + - uid: 23205 + components: + - type: Transform + pos: 55.5,18.5 + parent: 2 + - uid: 23206 + components: + - type: Transform + pos: 55.5,17.5 + parent: 2 + - uid: 23207 + components: + - type: Transform + pos: -59.5,-7.5 + parent: 2 + - uid: 23208 + components: + - type: Transform + pos: -59.5,-8.5 + parent: 2 + - uid: 23209 + components: + - type: Transform + pos: -60.5,-8.5 + parent: 2 + - uid: 23210 + components: + - type: Transform + pos: -57.5,-7.5 + parent: 2 + - uid: 23211 + components: + - type: Transform + pos: -57.5,-8.5 + parent: 2 + - uid: 23212 + components: + - type: Transform + pos: -56.5,-8.5 + parent: 2 + - uid: 23213 + components: + - type: Transform + pos: -54.5,-7.5 + parent: 2 + - uid: 23214 + components: + - type: Transform + pos: -54.5,-11.5 + parent: 2 + - uid: 23215 + components: + - type: Transform + pos: -55.5,-11.5 + parent: 2 + - uid: 23216 + components: + - type: Transform + pos: -56.5,-11.5 + parent: 2 + - uid: 23217 + components: + - type: Transform + pos: -61.5,-11.5 + parent: 2 + - uid: 23218 + components: + - type: Transform + pos: -60.5,-11.5 + parent: 2 + - uid: 23219 + components: + - type: Transform + pos: -59.5,-11.5 + parent: 2 + - uid: 23220 + components: + - type: Transform + pos: 45.5,-63.5 + parent: 2 + - uid: 23221 + components: + - type: Transform + pos: 44.5,-62.5 + parent: 2 + - uid: 23222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,15.5 + parent: 2 +- proto: TargetDarts + entities: + - uid: 23223 + components: + - type: Transform + pos: -11.5,47.5 + parent: 2 +- proto: TargetHuman + entities: + - uid: 23224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,-31.5 + parent: 2 + - uid: 23225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-31.5 + parent: 2 + - uid: 23226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,40.5 + parent: 2 + - uid: 23227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-30.5 + parent: 2 + - uid: 23228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,39.5 + parent: 2 + - uid: 23229 + components: + - type: Transform + pos: 119.5,-38.5 + parent: 2 +- proto: TargetStrange + entities: + - uid: 23230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,41.5 + parent: 2 +- proto: TechnologyDisk + entities: + - uid: 23231 + components: + - type: MetaData + desc: Старинный способ хранить информацию, который дожил до наших дней... На лицевой стороне есть этикетка с текстом "Отпуск 2507" + name: компакт-диск (Отпуск 2507) + - type: Transform + rot: 3.141592653589793 rad + pos: 39.470284,10.525583 + parent: 2 + - type: Label + originalName: компакт-диск + currentLabel: Отпуск 2507 + missingComponents: + - TechnologyDisk +- proto: TelecomServer + entities: + - uid: 13251 + components: + - type: Transform + pos: -12.5,-52.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 13253 + - 13252 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 13254 + components: + - type: Transform + pos: -12.5,-54.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 13255 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 13256 + components: + - type: Transform + pos: -15.5,-50.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 13257 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 13258 + components: + - type: Transform + pos: -12.5,-56.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 13259 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 13260 + components: + - type: Transform + pos: -15.5,-56.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 13261 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 13262 + components: + - type: Transform + pos: -15.5,-52.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 13263 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 13264 + components: + - type: Transform + pos: -12.5,-50.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 13265 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 13266 + components: + - type: Transform + pos: -15.5,-54.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 13267 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] +- proto: TelescopicShield + entities: + - uid: 23232 + components: + - type: Transform + pos: 10.748687,23.458878 + parent: 2 + - uid: 23233 + components: + - type: Transform + pos: 10.748687,23.693253 + parent: 2 +- proto: Thruster + entities: + - uid: 23234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,16.5 + parent: 2 + - uid: 23235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,14.5 + parent: 2 +- proto: TimerTrigger + entities: + - uid: 23236 + components: + - type: Transform + pos: 80.77511,-46.958733 + parent: 2 + - uid: 23237 + components: + - type: Transform + pos: 80.77511,-47.255608 + parent: 2 + - uid: 23238 + components: + - type: Transform + pos: 80.77511,-47.536858 + parent: 2 +- proto: TintedWindow + entities: + - uid: 23239 + components: + - type: Transform + pos: 38.5,-48.5 + parent: 2 + - uid: 23240 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 2 + - uid: 23241 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 2 + - uid: 23242 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 2 + - uid: 23243 + components: + - type: Transform + pos: 74.5,-2.5 + parent: 2 + - uid: 23244 + components: + - type: Transform + pos: 38.5,-45.5 + parent: 2 +- proto: ToiletDirtyWater + entities: + - uid: 23245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-59.5 + parent: 2 + - uid: 23246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,41.5 + parent: 2 + - uid: 23247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,13.5 + parent: 2 + - uid: 23248 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 23249 + components: + - type: Transform + pos: 16.5,3.5 + parent: 2 + - uid: 23250 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 23251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-54.5 + parent: 2 + - uid: 23252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-56.5 + parent: 2 + - uid: 23253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-58.5 + parent: 2 +- proto: ToiletEmpty + entities: + - uid: 21797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,40.5 + parent: 2 + - type: DisposalUnit + nextFlush: 0 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + disposals: !type:Container + showEnts: False + occludes: True + ents: + - 21798 + - uid: 23254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-33.5 + parent: 2 + - uid: 23255 + components: + - type: Transform + pos: 47.5,-42.5 + parent: 2 + - uid: 23256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-14.5 + parent: 2 + - uid: 23257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-10.5 + parent: 2 + - uid: 23258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-12.5 + parent: 2 + - uid: 23259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-16.5 + parent: 2 + - uid: 23260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-33.5 + parent: 2 + - uid: 23261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-21.5 + parent: 2 +- proto: ToolboxElectrical + entities: + - uid: 23262 + components: + - type: Transform + pos: -40.507515,4.7750854 + parent: 2 + - uid: 23263 + components: + - type: Transform + pos: 60.389908,-24.503658 + parent: 2 + - uid: 23264 + components: + - type: Transform + pos: 0.51476336,-24.251953 + parent: 2 +- proto: ToolboxElectricalFilled + entities: + - uid: 23265 + components: + - type: Transform + pos: -5.5027246,-53.406967 + parent: 2 + - uid: 23266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.289746,6.6306086 + parent: 2 + - uid: 23267 + components: + - type: Transform + pos: 7.4780474,-24.460793 + parent: 2 + - uid: 23268 + components: + - type: Transform + pos: 5.48841,-53.982124 + parent: 2 + - uid: 23269 + components: + - type: Transform + pos: 79.57198,-47.505608 + parent: 2 + - uid: 23270 + components: + - type: Transform + pos: -10.612171,-34.04283 + parent: 2 + - uid: 23271 + components: + - type: Transform + pos: -1.2264957,-61.212532 + parent: 2 + - uid: 23272 + components: + - type: Transform + pos: -26.502972,-67.43327 + parent: 2 + - uid: 23273 + components: + - type: Transform + pos: 46.499603,-51.474937 + parent: 2 + - uid: 23274 + components: + - type: Transform + pos: 43.497356,5.7166862 + parent: 2 + - uid: 23275 + components: + - type: Transform + pos: 49.5,16.5 + parent: 2 + - uid: 23276 + components: + - type: Transform + pos: 48.5,11.5 + parent: 2 + - uid: 23277 + components: + - type: Transform + pos: -45.5,22.5 + parent: 2 + - uid: 23278 + components: + - type: Transform + rot: 0.0005229588132351637 rad + pos: -29.737185,-45.684746 + parent: 2 + - uid: 23279 + components: + - type: Transform + pos: 78.5,-62.5 + parent: 2 + - uid: 23280 + components: + - type: Transform + pos: 34.60652,-90.48169 + parent: 2 +- proto: ToolboxEmergencyFilled + entities: + - uid: 23281 + components: + - type: Transform + pos: 15.609795,10.658219 + parent: 2 + - uid: 23282 + components: + - type: Transform + pos: -22.503447,-5.4030414 + parent: 2 + - uid: 23283 + components: + - type: Transform + pos: 43.489185,-72.69064 + parent: 2 + - uid: 23765 + components: + - type: Transform + parent: 23284 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ToolboxMechanicalFilled + entities: + - uid: 23285 + components: + - type: Transform + pos: -12.497822,4.1046987 + parent: 2 + - uid: 23286 + components: + - type: Transform + pos: 43.434647,-40.278 + parent: 2 + - uid: 23287 + components: + - type: Transform + pos: 72.48569,-55.440987 + parent: 2 + - uid: 23288 + components: + - type: Transform + pos: 7.6811724,-24.242043 + parent: 2 + - uid: 23289 + components: + - type: Transform + pos: 47.45738,-68.39625 + parent: 2 + - uid: 23290 + components: + - type: Transform + pos: -19.497643,16.661657 + parent: 2 + - uid: 23291 + components: + - type: Transform + pos: -1.5702453,-61.462532 + parent: 2 + - uid: 23292 + components: + - type: Transform + pos: 79.46261,-47.302483 + parent: 2 + - uid: 23293 + components: + - type: Transform + pos: -40.726265,4.5094604 + parent: 2 + - uid: 23294 + components: + - type: Transform + pos: -10.502796,-34.38658 + parent: 2 + - uid: 23295 + components: + - type: Transform + pos: -23.505941,-13.3975115 + parent: 2 + - uid: 23296 + components: + - type: Transform + pos: 3.820313,33.76277 + parent: 2 + - uid: 23297 + components: + - type: Transform + pos: 60.530533,-24.238033 + parent: 2 + - uid: 23298 + components: + - type: Transform + pos: -25.501219,-15.454613 + parent: 2 + - uid: 23299 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 23300 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 23301 + components: + - type: Transform + pos: -46.5,22.5 + parent: 2 + - uid: 23302 + components: + - type: Transform + pos: -34.5,-63.5 + parent: 2 + - uid: 23303 + components: + - type: Transform + pos: -29.300238,-45.38687 + parent: 2 + - uid: 23304 + components: + - type: Transform + pos: 73.5,-16.5 + parent: 2 + - uid: 23305 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 2 + - uid: 23306 + components: + - type: Transform + pos: 34.48152,-90.32544 + parent: 2 + - uid: 23307 + components: + - type: Transform + pos: -16.454494,25.694464 + parent: 2 + - uid: 23308 + components: + - type: Transform + pos: 2.3709395,-65.372505 + parent: 2 + - uid: 23309 + components: + - type: Transform + pos: 7.4929595,-48.27919 + parent: 2 +- proto: TorsoBorgEngineer + entities: + - uid: 23310 + components: + - type: Transform + pos: 60.775352,-21.269283 + parent: 2 +- proto: ToyAi + entities: + - uid: 23311 + components: + - type: Transform + pos: 28.512953,-111.38849 + parent: 2 +- proto: ToyFigurineCaptain + entities: + - uid: 23312 + components: + - type: Transform + pos: 5.421543,-18.3803 + parent: 2 +- proto: ToyFigurineChiefEngineer + entities: + - uid: 23313 + components: + - type: Transform + pos: 1.3483944,-61.141052 + parent: 2 +- proto: ToyFigurineChiefMedicalOfficer + entities: + - uid: 23314 + components: + - type: Transform + pos: 45.493732,-43.100136 + parent: 2 +- proto: ToyFigurineDetective + entities: + - uid: 23315 + components: + - type: Transform + pos: -8.47323,17.86644 + parent: 2 +- proto: ToyFigurineHeadOfPersonnel + entities: + - uid: 23316 + components: + - type: Transform + pos: -11.296887,-21.008507 + parent: 2 +- proto: ToyFigurineHeadOfSecurity + entities: + - uid: 23317 + components: + - type: Transform + pos: 16.358595,39.860268 + parent: 2 +- proto: ToyFigurineMime + entities: + - uid: 23318 + components: + - type: Transform + pos: 20.49449,6.050417 + parent: 2 +- proto: ToyFigurineMusician + entities: + - uid: 23319 + components: + - type: Transform + pos: 23.485893,0.72244716 + parent: 2 +- proto: ToyFigurinePassenger + entities: + - uid: 23320 + components: + - type: Transform + pos: 45.487507,-73.57517 + parent: 2 +- proto: ToyFigurineQuartermaster + entities: + - uid: 23321 + components: + - type: Transform + pos: -32.41591,-33.013084 + parent: 2 +- proto: ToyFigurineResearchDirector + entities: + - uid: 23322 + components: + - type: Transform + pos: 4.269394,-4.3336926 + parent: 2 + - uid: 23323 + components: + - type: Transform + pos: 73.542336,-35.227448 + parent: 2 +- proto: ToyFigurineScientist + entities: + - uid: 23324 + components: + - type: Transform + pos: 16.453545,10.548844 + parent: 2 +- proto: ToyFigurineWarden + entities: + - uid: 23325 + components: + - type: Transform + pos: -2.6601887,31.080256 + parent: 2 +- proto: ToyRubberDuck + entities: + - uid: 23326 + components: + - type: Transform + pos: 13.509433,28.595297 + parent: 2 + - uid: 23327 + components: + - type: Transform + pos: 10.494166,-22.655447 + parent: 2 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} + - uid: 23328 + components: + - type: Transform + pos: 18.588121,6.795981 + parent: 2 + - type: ContainerContainer + containers: + item: !type:ContainerSlot {} +- proto: ToySpawner + entities: + - uid: 23329 + components: + - type: Transform + pos: 58.5,17.5 + parent: 2 + - uid: 23330 + components: + - type: Transform + pos: -28.5,-55.5 + parent: 2 +- proto: TrashBag + entities: + - uid: 11071 + components: + - type: Transform + parent: 11069 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23331 + components: + - type: Transform + pos: 23.275124,30.544249 + parent: 2 + - uid: 23332 + components: + - type: Transform + pos: 2.7334309,-35.128174 + parent: 2 + - uid: 23333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.56768,-5.4014354 + parent: 2 + - uid: 23334 + components: + - type: Transform + pos: -23.561554,51.44249 + parent: 2 + - uid: 23335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.43297,-4.709831 + parent: 2 + - uid: 23336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.43297,-4.553581 + parent: 2 +- proto: trayScanner + entities: + - uid: 1276 + components: + - type: Transform + parent: 1270 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1284 + components: + - type: Transform + parent: 1278 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1292 + components: + - type: Transform + parent: 1286 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 17577 + components: + - type: Transform + parent: 17573 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17582 + components: + - type: Transform + parent: 17578 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17587 + components: + - type: Transform + parent: 17583 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23337 + components: + - type: Transform + pos: -19.331963,-6.918666 + parent: 2 + - uid: 23338 + components: + - type: Transform + pos: -37.621784,3.2282104 + parent: 2 + - uid: 23339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.402306,-42.595757 + parent: 2 +- proto: Truncheon + entities: + - uid: 19172 + components: + - type: Transform + parent: 19171 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: TwoWayLever + entities: + - uid: 23340 + components: + - type: Transform + pos: 59.5,-19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11566: + - Left: Forward + - Right: Reverse + - Middle: Off + 11572: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 23341 + components: + - type: Transform + pos: 55.5,-16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 21877: + - Left: Open + - Right: Open + - Middle: Close + 21876: + - Left: Open + - Right: Open + - Middle: Close + 21875: + - Left: Open + - Right: Open + - Middle: Close + - uid: 23342 + components: + - type: Transform + pos: 27.495308,28.585827 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 21033: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 23343 + components: + - type: Transform + pos: 27.255724,28.585827 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11548: + - Left: Forward + - Right: Reverse + - Middle: Off + 11576: + - Left: Forward + - Right: Reverse + - Middle: Off + 11574: + - Left: Forward + - Right: Reverse + - Middle: Off + 11575: + - Left: Forward + - Right: Reverse + - Middle: Off + 11577: + - Left: Forward + - Right: Reverse + - Middle: Off + 11547: + - Left: Forward + - Right: Reverse + - Middle: Off + 11573: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 23344 + components: + - type: Transform + pos: -39.5,-31.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11565: + - Left: Forward + - Right: Reverse + - Middle: Off + 11569: + - Left: Forward + - Right: Reverse + - Middle: Off + 11570: + - Left: Forward + - Right: Reverse + - Middle: Off + 11543: + - Left: Forward + - Right: Reverse + - Middle: Off + 11571: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 23345 + components: + - type: Transform + pos: -39.5,-27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11564: + - Left: Forward + - Right: Reverse + - Middle: Off + 11568: + - Left: Forward + - Right: Reverse + - Middle: Off + 11546: + - Left: Forward + - Right: Reverse + - Middle: Off + 11545: + - Left: Forward + - Right: Reverse + - Middle: Off + 11544: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 23346 + components: + - type: Transform + pos: -59.5,-18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11555: + - Left: Forward + - Right: Reverse + - Middle: Off + 11554: + - Left: Forward + - Right: Reverse + - Middle: Off + 11553: + - Left: Forward + - Right: Reverse + - Middle: Off + 11552: + - Left: Forward + - Right: Reverse + - Middle: Off + 11551: + - Left: Forward + - Right: Reverse + - Middle: Off + 11550: + - Left: Forward + - Right: Reverse + - Middle: Off + 11549: + - Left: Forward + - Right: Reverse + - Middle: Off + 11556: + - Left: Forward + - Right: Reverse + - Middle: Off + 11557: + - Left: Forward + - Right: Reverse + - Middle: Off + 11558: + - Left: Forward + - Right: Reverse + - Middle: Off + 11559: + - Left: Forward + - Right: Reverse + - Middle: Off + 11561: + - Left: Forward + - Right: Reverse + - Middle: Off + 11563: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 23347 + components: + - type: Transform + pos: 63.5,-19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11560: + - Left: Forward + - Right: Reverse + - Middle: Off + 11567: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: UnfinishedMachineFrame + entities: + - uid: 23348 + components: + - type: Transform + pos: 25.5,18.5 + parent: 2 +- proto: UniformJabroni + entities: + - uid: 19169 + components: + - type: Transform + parent: 19168 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: UniformPrinter + entities: + - uid: 23349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-24.5 + parent: 2 +- proto: UniformScrubsColorBlue + entities: + - uid: 23350 + components: + - type: Transform + pos: 22.28945,-33.480553 + parent: 2 +- proto: UniformShortsRed + entities: + - uid: 11065 + components: + - type: Transform + parent: 11048 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11066 + components: + - type: Transform + parent: 11048 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11067 + components: + - type: Transform + parent: 11048 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11068 + components: + - type: Transform + parent: 11048 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Vaccinator + entities: + - uid: 23351 + components: + - type: Transform + pos: 41.5,-59.5 + parent: 2 +- proto: VariantCubeBox + entities: + - uid: 23352 + components: + - type: Transform + pos: 44.155552,-52.54586 + parent: 2 + - uid: 23353 + components: + - type: Transform + pos: 44.308304,-25.410011 + parent: 2 + - uid: 23354 + components: + - type: Transform + pos: 44.683304,-25.425636 + parent: 2 +- proto: VendingBarDrobe + entities: + - uid: 23355 + components: + - type: Transform + pos: 29.5,1.5 + parent: 2 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 23356 + components: + - type: Transform + pos: 7.5,-45.5 + parent: 2 +- proto: VendingMachineBooze + entities: + - uid: 23357 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 23358 + components: + - type: Transform + pos: -39.5,-43.5 + parent: 2 + - uid: 23359 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 2 + - uid: 23360 + components: + - type: Transform + pos: -38.5,18.5 + parent: 2 +- proto: VendingMachineCargoDrobe + entities: + - uid: 23361 + components: + - type: Transform + pos: -35.5,-18.5 + parent: 2 +- proto: VendingMachineCart + entities: + - uid: 23362 + components: + - type: Transform + pos: -11.5,-24.5 + parent: 2 +- proto: VendingMachineChapel + entities: + - uid: 23363 + components: + - type: Transform + pos: 63.5,3.5 + parent: 2 +- proto: VendingMachineChefDrobe + entities: + - uid: 23364 + components: + - type: Transform + pos: 40.5,-2.5 + parent: 2 +- proto: VendingMachineChefvend + entities: + - uid: 23365 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 2 +- proto: VendingMachineChemDrobe + entities: + - uid: 23366 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 2 +- proto: VendingMachineChemicals + entities: + - uid: 23367 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 2 +- proto: VendingMachineCigs + entities: + - uid: 23368 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 2 + - uid: 23369 + components: + - type: Transform + pos: 9.5,-55.5 + parent: 2 + - uid: 23370 + components: + - type: Transform + pos: 78.5,-1.5 + parent: 2 + - uid: 23371 + components: + - type: Transform + pos: -35.5,-46.5 + parent: 2 + - uid: 23372 + components: + - type: MetaData + name: cigarette machine + - type: Transform + pos: 68.5,-47.5 + parent: 2 + - uid: 23373 + components: + - type: MetaData + name: cigarette machine + - type: Transform + pos: -54.5,-8.5 + parent: 2 +- proto: VendingMachineClothing + entities: + - uid: 23374 + components: + - type: Transform + pos: -39.5,-8.5 + parent: 2 + - uid: 23375 + components: + - type: Transform + pos: -9.5,51.5 + parent: 2 +- proto: VendingMachineCoffee + entities: + - uid: 23376 + components: + - type: Transform + pos: -39.5,-7.5 + parent: 2 + - uid: 23377 + components: + - type: Transform + pos: 42.5,-24.5 + parent: 2 + - uid: 23378 + components: + - type: Transform + pos: -8.5,-18.5 + parent: 2 + - uid: 23379 + components: + - type: Transform + pos: -14.5,26.5 + parent: 2 + - uid: 23380 + components: + - type: MetaData + name: Hot drinks machine + - type: Transform + pos: 68.5,-43.5 + parent: 2 + - uid: 23381 + components: + - type: MetaData + name: Hot drinks machine + - type: Transform + pos: 55.5,-10.5 + parent: 2 + - uid: 23382 + components: + - type: MetaData + name: Hot drinks machine + - type: Transform + pos: -32.5,-72.5 + parent: 2 +- proto: VendingMachineCondiments + entities: + - uid: 23383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-10.5 + parent: 2 + - uid: 23384 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 2 + - uid: 23385 + components: + - type: Transform + pos: -5.5,52.5 + parent: 2 + - uid: 23386 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 +- proto: VendingMachineCourierDrobe + entities: + - uid: 23387 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 2 +- proto: VendingMachineCuraDrobe + entities: + - uid: 23388 + components: + - type: MetaData + desc: Торговый автомат, способный продавать только одежду для кураторов и библиотекарей. + name: БиблиоДроб + - type: Transform + pos: 61.5,-3.5 + parent: 2 +- proto: VendingMachineDinnerware + entities: + - uid: 23389 + components: + - type: Transform + pos: 37.5,-4.5 + parent: 2 +- proto: VendingMachineEngiDrobe + entities: + - uid: 23390 + components: + - type: Transform + pos: -15.5,-72.5 + parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 23391 + components: + - type: Transform + pos: -15.5,-71.5 + parent: 2 +- proto: VendingMachineFitness + entities: + - uid: 23392 + components: + - type: Transform + pos: 15.5,19.5 + parent: 2 +- proto: VendingMachineGames + entities: + - uid: 23393 + components: + - type: Transform + pos: -15.5,49.5 + parent: 2 + - uid: 23394 + components: + - type: Transform + pos: 53.5,2.5 + parent: 2 +- proto: VendingMachineGeneDrobe + entities: + - uid: 23395 + components: + - type: Transform + pos: 43.5,-29.5 + parent: 2 +- proto: VendingMachineHydrobe + entities: + - uid: 23396 + components: + - type: Transform + pos: 45.5,1.5 + parent: 2 +- proto: VendingMachineJaniDrobe + entities: + - uid: 23397 + components: + - type: Transform + pos: -52.5,-7.5 + parent: 2 +- proto: VendingMachineLawDrobe + entities: + - uid: 23398 + components: + - type: Transform + pos: -14.5,13.5 + parent: 2 +- proto: VendingMachineMedical + entities: + - uid: 23399 + components: + - type: Transform + pos: 37.5,-43.5 + parent: 2 + - uid: 23400 + components: + - type: Transform + pos: -7.5,29.5 + parent: 2 + - uid: 23401 + components: + - type: Transform + pos: 28.5,-32.5 + parent: 2 + - uid: 23402 + components: + - type: Transform + pos: 41.5,-31.5 + parent: 2 + - uid: 23403 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 2 + - uid: 23404 + components: + - type: Transform + pos: 47.5,-55.5 + parent: 2 +- proto: VendingMachineMediDrobe + entities: + - uid: 23405 + components: + - type: Transform + pos: 36.5,-43.5 + parent: 2 +- proto: VendingMachineMNKDrobe + entities: + - uid: 23406 + components: + - type: Transform + pos: -37.5,-4.5 + parent: 2 + - uid: 23407 + components: + - type: Transform + pos: 14.5,25.5 + parent: 2 +- proto: VendingMachineNutri + entities: + - uid: 23408 + components: + - type: Transform + pos: 46.5,-10.5 + parent: 2 +- proto: VendingMachineRoboDrobe + entities: + - uid: 23409 + components: + - type: Transform + pos: 56.5,-24.5 + parent: 2 +- proto: VendingMachineRobotics + entities: + - uid: 23410 + components: + - type: Transform + pos: 59.5,-16.5 + parent: 2 +- proto: VendingMachineSalvage + entities: + - uid: 23411 + components: + - type: Transform + pos: -28.5,-29.5 + parent: 2 +- proto: VendingMachineSciDrobe + entities: + - uid: 23412 + components: + - type: Transform + pos: 69.5,-27.5 + parent: 2 +- proto: VendingMachineSec + entities: + - uid: 23413 + components: + - type: Transform + pos: 10.5,37.5 + parent: 2 +- proto: VendingMachineSecDrobe + entities: + - uid: 23414 + components: + - type: Transform + pos: 10.5,38.5 + parent: 2 +- proto: VendingMachineSeeds + entities: + - uid: 23415 + components: + - type: Transform + pos: 47.5,-10.5 + parent: 2 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 23416 + components: + - type: Transform + pos: -2.5,51.5 + parent: 2 +- proto: VendingMachineSnack + entities: + - uid: 23417 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 +- proto: VendingMachineSovietSoda + entities: + - uid: 23418 + components: + - type: Transform + pos: 61.5,19.5 + parent: 2 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 23419 + components: + - type: Transform + pos: -2.5,-61.5 + parent: 2 + - uid: 23420 + components: + - type: Transform + pos: 14.5,-43.5 + parent: 2 + - uid: 23421 + components: + - type: Transform + pos: 63.5,-33.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 23422 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 23423 + components: + - type: Transform + pos: -16.5,27.5 + parent: 2 + - uid: 23424 + components: + - type: Transform + pos: 1.5,37.5 + parent: 2 + - uid: 23425 + components: + - type: Transform + pos: 61.5,-41.5 + parent: 2 + - uid: 23426 + components: + - type: Transform + pos: -12.5,-74.5 + parent: 2 + - uid: 23428 + components: + - type: MetaData + name: tank dispenser + - type: Transform + pos: 75.5,-43.5 + parent: 2 + - uid: 23429 + components: + - type: MetaData + name: tank dispenser + - type: Transform + pos: 3.5,-45.5 + parent: 2 + - uid: 23430 + components: + - type: Transform + pos: -24.5,-32.5 + parent: 2 + - uid: 23431 + components: + - type: Transform + pos: 5.5,-49.5 + parent: 2 +- proto: VendingMachineTheater + entities: + - uid: 23432 + components: + - type: Transform + pos: 20.5,4.5 + parent: 2 +- proto: VendingMachineVendomat + entities: + - uid: 23433 + components: + - type: Transform + pos: -9.5,-39.5 + parent: 2 + - uid: 23434 + components: + - type: Transform + pos: 57.5,-16.5 + parent: 2 + - uid: 23435 + components: + - type: Transform + pos: -39.5,1.5 + parent: 2 + - uid: 23436 + components: + - type: Transform + pos: 72.5,-43.5 + parent: 2 +- proto: VendingMachineViroDrobe + entities: + - uid: 23437 + components: + - type: Transform + pos: 37.5,-53.5 + parent: 2 +- proto: VendingMachineWallMedical + entities: + - uid: 23438 + components: + - type: Transform + pos: 45.5,-44.5 + parent: 2 + - uid: 23439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-33.5 + parent: 2 + - uid: 23440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,29.5 + parent: 2 + - uid: 23441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,2.5 + parent: 2 + - uid: 23442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-40.5 + parent: 2 +- proto: VendingMachineYouTool + entities: + - uid: 23443 + components: + - type: Transform + pos: -0.5,-63.5 + parent: 2 + - uid: 23444 + components: + - type: Transform + pos: -41.5,1.5 + parent: 2 + - uid: 23445 + components: + - type: Transform + pos: -10.5,-35.5 + parent: 2 +- proto: WallmountTelescreen + entities: + - uid: 23446 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 +- proto: WallmountTelevision + entities: + - uid: 23447 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 2510 + components: + - type: Transform + pos: 45.5,21.5 + parent: 2 + - uid: 2512 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 3725 + components: + - type: Transform + pos: -22.5,-46.5 + parent: 2 + - uid: 3726 + components: + - type: Transform + pos: -22.5,-44.5 + parent: 2 + - uid: 3770 + components: + - type: Transform + pos: -13.5,-43.5 + parent: 2 + - uid: 17699 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 + - uid: 17700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-43.5 + parent: 2 + - uid: 17851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-70.5 + parent: 2 + - uid: 18072 + components: + - type: Transform + pos: -0.5,-68.5 + parent: 2 + - uid: 23448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-56.5 + parent: 2 + - uid: 23449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-54.5 + parent: 2 + - uid: 23450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-57.5 + parent: 2 + - uid: 23451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-53.5 + parent: 2 + - uid: 23452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-55.5 + parent: 2 + - uid: 23453 + components: + - type: Transform + pos: 59.5,-43.5 + parent: 2 + - uid: 23454 + components: + - type: Transform + pos: 59.5,-44.5 + parent: 2 + - uid: 23455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-58.5 + parent: 2 + - uid: 23456 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - uid: 23457 + components: + - type: Transform + pos: 50.5,-40.5 + parent: 2 + - uid: 23458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-54.5 + parent: 2 + - uid: 23459 + components: + - type: Transform + pos: -22.5,15.5 + parent: 2 + - uid: 23460 + components: + - type: Transform + pos: 10.5,-73.5 + parent: 2 + - uid: 23461 + components: + - type: Transform + pos: -76.5,-18.5 + parent: 2 + - uid: 23462 + components: + - type: Transform + pos: -74.5,-18.5 + parent: 2 + - uid: 23463 + components: + - type: Transform + pos: -20.5,27.5 + parent: 2 + - uid: 23464 + components: + - type: Transform + pos: -22.5,19.5 + parent: 2 + - uid: 23465 + components: + - type: Transform + pos: 64.5,-28.5 + parent: 2 + - uid: 23466 + components: + - type: Transform + pos: 58.5,-15.5 + parent: 2 + - uid: 23467 + components: + - type: Transform + pos: 66.5,-20.5 + parent: 2 + - uid: 23468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-52.5 + parent: 2 + - uid: 23469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-52.5 + parent: 2 + - uid: 23470 + components: + - type: Transform + pos: -11.5,-71.5 + parent: 2 + - uid: 23472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-61.5 + parent: 2 + - uid: 23473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-60.5 + parent: 2 + - uid: 23474 + components: + - type: Transform + pos: -18.5,-70.5 + parent: 2 + - uid: 23475 + components: + - type: Transform + pos: -17.5,-70.5 + parent: 2 + - uid: 23476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 2 + - uid: 23477 + components: + - type: Transform + pos: -15.5,-70.5 + parent: 2 + - uid: 23478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,40.5 + parent: 2 + - uid: 23479 + components: + - type: Transform + pos: 8.5,42.5 + parent: 2 + - uid: 23480 + components: + - type: Transform + pos: 9.5,41.5 + parent: 2 + - uid: 23481 + components: + - type: Transform + pos: 47.5,-54.5 + parent: 2 + - uid: 23482 + components: + - type: Transform + pos: 46.5,-54.5 + parent: 2 + - uid: 23483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,42.5 + parent: 2 + - uid: 23484 + components: + - type: Transform + pos: -10.5,14.5 + parent: 2 + - uid: 23485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,33.5 + parent: 2 + - uid: 23486 + components: + - type: Transform + pos: 22.5,28.5 + parent: 2 + - uid: 23487 + components: + - type: Transform + pos: 26.5,27.5 + parent: 2 + - uid: 23488 + components: + - type: Transform + pos: 25.5,27.5 + parent: 2 + - uid: 23489 + components: + - type: Transform + pos: 22.5,30.5 + parent: 2 + - uid: 23490 + components: + - type: Transform + pos: 24.5,27.5 + parent: 2 + - uid: 23491 + components: + - type: Transform + pos: -0.5,29.5 + parent: 2 + - uid: 23492 + components: + - type: Transform + pos: -13.5,37.5 + parent: 2 + - uid: 23493 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 2 + - uid: 23494 + components: + - type: Transform + pos: 11.5,37.5 + parent: 2 + - uid: 23495 + components: + - type: Transform + pos: 11.5,38.5 + parent: 2 + - uid: 23496 + components: + - type: Transform + pos: 11.5,40.5 + parent: 2 + - uid: 23497 + components: + - type: Transform + pos: 19.5,36.5 + parent: 2 + - uid: 23498 + components: + - type: Transform + pos: 18.5,36.5 + parent: 2 + - uid: 23499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,30.5 + parent: 2 + - uid: 23500 + components: + - type: Transform + pos: 5.5,30.5 + parent: 2 + - uid: 23501 + components: + - type: Transform + pos: 5.5,32.5 + parent: 2 + - uid: 23502 + components: + - type: Transform + pos: 27.5,27.5 + parent: 2 + - uid: 23503 + components: + - type: Transform + pos: 37.5,16.5 + parent: 2 + - uid: 23504 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 23505 + components: + - type: Transform + pos: 28.5,7.5 + parent: 2 + - uid: 23506 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - uid: 23507 + components: + - type: Transform + pos: -3.5,32.5 + parent: 2 + - uid: 23508 + components: + - type: Transform + pos: -66.5,-16.5 + parent: 2 + - uid: 23509 + components: + - type: Transform + pos: -82.5,-12.5 + parent: 2 + - uid: 23510 + components: + - type: Transform + pos: -59.5,2.5 + parent: 2 + - uid: 23511 + components: + - type: Transform + pos: -24.5,8.5 + parent: 2 + - uid: 23512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,14.5 + parent: 2 + - uid: 23513 + components: + - type: Transform + pos: -41.5,-26.5 + parent: 2 + - uid: 23514 + components: + - type: Transform + pos: -41.5,-22.5 + parent: 2 + - uid: 23515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,14.5 + parent: 2 + - uid: 23516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,14.5 + parent: 2 + - uid: 23517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,17.5 + parent: 2 + - uid: 23518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,15.5 + parent: 2 + - uid: 23519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,12.5 + parent: 2 + - uid: 23520 + components: + - type: Transform + pos: -35.5,9.5 + parent: 2 + - uid: 23521 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - uid: 23522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-33.5 + parent: 2 + - uid: 23523 + components: + - type: Transform + pos: -22.5,9.5 + parent: 2 + - uid: 23524 + components: + - type: Transform + pos: -21.5,9.5 + parent: 2 + - uid: 23525 + components: + - type: Transform + pos: -84.5,-6.5 + parent: 2 + - uid: 23526 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 2 + - uid: 23529 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 2 + - uid: 23531 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 2 + - uid: 23534 + components: + - type: Transform + pos: -14.5,-77.5 + parent: 2 + - uid: 23535 + components: + - type: Transform + pos: -14.5,-78.5 + parent: 2 + - uid: 23536 + components: + - type: Transform + pos: -11.5,-77.5 + parent: 2 + - uid: 23537 + components: + - type: Transform + pos: -11.5,-78.5 + parent: 2 + - uid: 23538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 2 + - uid: 23539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-6.5 + parent: 2 + - uid: 23540 + components: + - type: Transform + pos: -35.5,-42.5 + parent: 2 + - uid: 23541 + components: + - type: Transform + pos: -3.5,30.5 + parent: 2 + - uid: 23542 + components: + - type: Transform + pos: -15.5,37.5 + parent: 2 + - uid: 23543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 2 + - uid: 23544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-44.5 + parent: 2 + - uid: 23545 + components: + - type: Transform + pos: 48.5,-46.5 + parent: 2 + - uid: 23546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-42.5 + parent: 2 + - uid: 23547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-43.5 + parent: 2 + - uid: 23548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-44.5 + parent: 2 + - uid: 23549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-66.5 + parent: 2 + - uid: 23550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-67.5 + parent: 2 + - uid: 23551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-68.5 + parent: 2 + - uid: 23552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-60.5 + parent: 2 + - uid: 23553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-58.5 + parent: 2 + - uid: 23554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-46.5 + parent: 2 + - uid: 23555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,-22.5 + parent: 2 + - uid: 23556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,-23.5 + parent: 2 + - uid: 23557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,-22.5 + parent: 2 + - uid: 23558 + components: + - type: Transform + pos: 55.5,-41.5 + parent: 2 + - uid: 23559 + components: + - type: Transform + pos: -15.5,40.5 + parent: 2 + - uid: 23560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-39.5 + parent: 2 + - uid: 23561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-39.5 + parent: 2 + - uid: 23562 + components: + - type: Transform + pos: 55.5,-39.5 + parent: 2 + - uid: 23563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-41.5 + parent: 2 + - uid: 23564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-36.5 + parent: 2 + - uid: 23565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-49.5 + parent: 2 + - uid: 23566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-42.5 + parent: 2 + - uid: 23567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-49.5 + parent: 2 + - uid: 23568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-53.5 + parent: 2 + - uid: 23569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-35.5 + parent: 2 + - uid: 23570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-42.5 + parent: 2 + - uid: 23571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-42.5 + parent: 2 + - uid: 23572 + components: + - type: Transform + pos: 76.5,-54.5 + parent: 2 + - uid: 23573 + components: + - type: Transform + pos: 76.5,-53.5 + parent: 2 + - uid: 23574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-54.5 + parent: 2 + - uid: 23575 + components: + - type: Transform + pos: 68.5,-35.5 + parent: 2 + - uid: 23576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-58.5 + parent: 2 + - uid: 23577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-58.5 + parent: 2 + - uid: 23578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-58.5 + parent: 2 + - uid: 23579 + components: + - type: Transform + pos: -40.5,-42.5 + parent: 2 + - uid: 23580 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 2 + - uid: 23581 + components: + - type: Transform + pos: -12.5,39.5 + parent: 2 + - uid: 23582 + components: + - type: Transform + pos: -16.5,38.5 + parent: 2 + - uid: 23583 + components: + - type: Transform + pos: -15.5,42.5 + parent: 2 + - uid: 23584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-35.5 + parent: 2 + - uid: 23585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-35.5 + parent: 2 + - uid: 23586 + components: + - type: Transform + pos: -2.5,46.5 + parent: 2 + - uid: 23587 + components: + - type: Transform + pos: 4.5,46.5 + parent: 2 + - uid: 23588 + components: + - type: Transform + pos: -0.5,40.5 + parent: 2 + - uid: 23589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-44.5 + parent: 2 + - uid: 23590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-41.5 + parent: 2 + - uid: 23591 + components: + - type: Transform + pos: 46.5,-50.5 + parent: 2 + - uid: 23592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-39.5 + parent: 2 + - uid: 23593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-38.5 + parent: 2 + - uid: 23594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-38.5 + parent: 2 + - uid: 23595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-55.5 + parent: 2 + - uid: 23596 + components: + - type: Transform + pos: -3.5,44.5 + parent: 2 + - uid: 23597 + components: + - type: Transform + pos: -24.5,9.5 + parent: 2 + - uid: 23598 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 23599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,32.5 + parent: 2 + - uid: 23600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,21.5 + parent: 2 + - uid: 23601 + components: + - type: Transform + pos: -20.5,37.5 + parent: 2 + - uid: 23602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-57.5 + parent: 2 + - uid: 23603 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 2 + - uid: 23604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,37.5 + parent: 2 + - uid: 23605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-15.5 + parent: 2 + - uid: 23606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,39.5 + parent: 2 + - uid: 23607 + components: + - type: Transform + pos: 72.5,-35.5 + parent: 2 + - uid: 23608 + components: + - type: Transform + pos: 72.5,-34.5 + parent: 2 + - uid: 23609 + components: + - type: Transform + pos: 72.5,-37.5 + parent: 2 + - uid: 23610 + components: + - type: Transform + pos: -11.5,-73.5 + parent: 2 + - uid: 23611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-37.5 + parent: 2 + - uid: 23612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,27.5 + parent: 2 + - uid: 23613 + components: + - type: Transform + pos: 15.5,42.5 + parent: 2 + - uid: 23614 + components: + - type: Transform + pos: 60.5,-46.5 + parent: 2 + - uid: 23615 + components: + - type: Transform + pos: 83.5,-10.5 + parent: 2 + - uid: 23616 + components: + - type: Transform + pos: -8.5,14.5 + parent: 2 + - uid: 23617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-56.5 + parent: 2 + - uid: 23618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-57.5 + parent: 2 + - uid: 23619 + components: + - type: Transform + pos: -79.5,-3.5 + parent: 2 + - uid: 23620 + components: + - type: Transform + pos: -81.5,-3.5 + parent: 2 + - uid: 23621 + components: + - type: Transform + pos: -20.5,28.5 + parent: 2 + - uid: 23622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,13.5 + parent: 2 + - uid: 23623 + components: + - type: Transform + pos: -5.5,18.5 + parent: 2 + - uid: 23624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-23.5 + parent: 2 + - uid: 23625 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 2 + - uid: 23626 + components: + - type: Transform + pos: -13.5,40.5 + parent: 2 + - uid: 23627 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 2 + - uid: 23628 + components: + - type: Transform + pos: 0.5,37.5 + parent: 2 + - uid: 23629 + components: + - type: Transform + pos: 0.5,40.5 + parent: 2 + - uid: 23630 + components: + - type: Transform + pos: -11.5,12.5 + parent: 2 + - uid: 23631 + components: + - type: Transform + pos: -12.5,12.5 + parent: 2 + - uid: 23632 + components: + - type: Transform + pos: 46.5,-52.5 + parent: 2 + - uid: 23633 + components: + - type: Transform + pos: 46.5,-53.5 + parent: 2 + - uid: 23634 + components: + - type: Transform + pos: 9.5,39.5 + parent: 2 + - uid: 23635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,12.5 + parent: 2 + - uid: 23636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-41.5 + parent: 2 + - uid: 23637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 2 + - uid: 23638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,9.5 + parent: 2 + - uid: 23639 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 23640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,40.5 + parent: 2 + - uid: 23641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-26.5 + parent: 2 + - uid: 23642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,14.5 + parent: 2 + - uid: 23643 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 + - uid: 23644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,15.5 + parent: 2 + - uid: 23645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-43.5 + parent: 2 + - uid: 23646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,32.5 + parent: 2 + - uid: 23647 + components: + - type: Transform + pos: 15.5,36.5 + parent: 2 + - uid: 23648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-27.5 + parent: 2 + - uid: 23649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,29.5 + parent: 2 + - uid: 23650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-44.5 + parent: 2 + - uid: 23651 + components: + - type: Transform + pos: 83.5,-6.5 + parent: 2 + - uid: 23652 + components: + - type: Transform + pos: -66.5,-9.5 + parent: 2 + - uid: 23653 + components: + - type: Transform + pos: -72.5,-12.5 + parent: 2 + - uid: 23654 + components: + - type: Transform + pos: -67.5,-16.5 + parent: 2 + - uid: 23655 + components: + - type: Transform + pos: -79.5,-15.5 + parent: 2 + - uid: 23656 + components: + - type: Transform + pos: -77.5,-15.5 + parent: 2 + - uid: 23657 + components: + - type: Transform + pos: -79.5,-13.5 + parent: 2 + - uid: 23658 + components: + - type: Transform + pos: -81.5,-5.5 + parent: 2 + - uid: 23659 + components: + - type: Transform + pos: -79.5,-5.5 + parent: 2 + - uid: 23660 + components: + - type: Transform + pos: -77.5,-13.5 + parent: 2 + - uid: 23661 + components: + - type: Transform + pos: -69.5,-16.5 + parent: 2 + - uid: 23662 + components: + - type: Transform + pos: -74.5,-16.5 + parent: 2 + - uid: 23663 + components: + - type: Transform + pos: -81.5,-2.5 + parent: 2 + - uid: 23664 + components: + - type: Transform + pos: -72.5,-6.5 + parent: 2 + - uid: 23665 + components: + - type: Transform + pos: -76.5,-16.5 + parent: 2 + - uid: 23666 + components: + - type: Transform + pos: -67.5,-18.5 + parent: 2 + - uid: 23667 + components: + - type: Transform + pos: -69.5,-18.5 + parent: 2 + - uid: 23668 + components: + - type: Transform + pos: -59.5,5.5 + parent: 2 + - uid: 23669 + components: + - type: Transform + pos: 0.5,38.5 + parent: 2 + - uid: 23670 + components: + - type: Transform + pos: 0.5,35.5 + parent: 2 + - uid: 23671 + components: + - type: Transform + pos: -11.5,-70.5 + parent: 2 + - uid: 23672 + components: + - type: Transform + pos: 60.5,-58.5 + parent: 2 + - uid: 23673 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 2 + - uid: 23675 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 2 + - uid: 23676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-54.5 + parent: 2 + - uid: 23677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-17.5 + parent: 2 + - uid: 23678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-38.5 + parent: 2 + - uid: 23679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-49.5 + parent: 2 + - uid: 23680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-51.5 + parent: 2 + - uid: 23681 + components: + - type: Transform + pos: -20.5,16.5 + parent: 2 + - uid: 23682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-56.5 + parent: 2 + - uid: 23683 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 + - uid: 23684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-35.5 + parent: 2 + - uid: 23685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-41.5 + parent: 2 + - uid: 23686 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - uid: 23687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-57.5 + parent: 2 + - uid: 23688 + components: + - type: Transform + pos: 9.5,40.5 + parent: 2 + - uid: 23689 + components: + - type: Transform + pos: -3.5,-25.5 + parent: 2 + - uid: 23690 + components: + - type: Transform + pos: 1.5,34.5 + parent: 2 + - uid: 23691 + components: + - type: Transform + pos: -22.5,16.5 + parent: 2 + - uid: 23692 + components: + - type: Transform + pos: -25.5,20.5 + parent: 2 + - uid: 23693 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 + - uid: 23694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-54.5 + parent: 2 + - uid: 23695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-50.5 + parent: 2 + - uid: 23696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-50.5 + parent: 2 + - uid: 23697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-54.5 + parent: 2 + - uid: 23698 + components: + - type: Transform + pos: 72.5,-48.5 + parent: 2 + - uid: 23699 + components: + - type: Transform + pos: 70.5,-48.5 + parent: 2 + - uid: 23700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,-25.5 + parent: 2 + - uid: 23701 + components: + - type: Transform + pos: 83.5,-0.5 + parent: 2 + - uid: 23702 + components: + - type: Transform + pos: -20.5,24.5 + parent: 2 + - uid: 23703 + components: + - type: Transform + pos: 31.5,-53.5 + parent: 2 + - uid: 23704 + components: + - type: Transform + pos: -30.5,1.5 + parent: 2 + - uid: 23705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-33.5 + parent: 2 + - uid: 23706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-34.5 + parent: 2 + - uid: 23707 + components: + - type: Transform + pos: -41.5,-23.5 + parent: 2 + - uid: 23708 + components: + - type: Transform + pos: -41.5,-32.5 + parent: 2 + - uid: 23709 + components: + - type: Transform + pos: 38.5,16.5 + parent: 2 + - uid: 23710 + components: + - type: Transform + pos: 29.5,6.5 + parent: 2 + - uid: 23711 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - uid: 23712 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - uid: 23713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,34.5 + parent: 2 + - uid: 23714 + components: + - type: Transform + pos: 10.5,34.5 + parent: 2 + - uid: 23715 + components: + - type: Transform + pos: -42.5,-32.5 + parent: 2 + - uid: 23716 + components: + - type: Transform + pos: 83.5,-40.5 + parent: 2 + - uid: 23717 + components: + - type: Transform + pos: 83.5,-42.5 + parent: 2 + - uid: 23718 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 23719 + components: + - type: Transform + pos: -43.5,-32.5 + parent: 2 + - uid: 23720 + components: + - type: Transform + pos: -44.5,-26.5 + parent: 2 + - uid: 23721 + components: + - type: Transform + pos: 71.5,-48.5 + parent: 2 + - uid: 23722 + components: + - type: Transform + pos: 75.5,-48.5 + parent: 2 + - uid: 23723 + components: + - type: Transform + pos: 7.5,-78.5 + parent: 2 + - uid: 23724 + components: + - type: Transform + pos: -7.5,-78.5 + parent: 2 + - uid: 23725 + components: + - type: Transform + pos: -8.5,-78.5 + parent: 2 + - uid: 23726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-50.5 + parent: 2 + - uid: 23727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-50.5 + parent: 2 + - uid: 23728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-32.5 + parent: 2 + - uid: 23729 + components: + - type: Transform + pos: 56.5,-54.5 + parent: 2 + - uid: 23730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-54.5 + parent: 2 + - uid: 23731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-63.5 + parent: 2 + - uid: 23732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-54.5 + parent: 2 + - uid: 23733 + components: + - type: Transform + pos: 76.5,-50.5 + parent: 2 + - uid: 23734 + components: + - type: Transform + pos: 76.5,-48.5 + parent: 2 + - uid: 23735 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - uid: 23736 + components: + - type: Transform + pos: -18.5,7.5 + parent: 2 + - uid: 23737 + components: + - type: Transform + pos: -39.5,-44.5 + parent: 2 + - uid: 23738 + components: + - type: Transform + pos: -25.5,39.5 + parent: 2 + - uid: 23739 + components: + - type: Transform + pos: 2.5,-75.5 + parent: 2 + - uid: 23740 + components: + - type: Transform + pos: -39.5,-46.5 + parent: 2 + - uid: 23741 + components: + - type: Transform + pos: -3.5,-75.5 + parent: 2 + - uid: 23742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,6.5 + parent: 2 + - uid: 23743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-45.5 + parent: 2 + - uid: 23744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-49.5 + parent: 2 + - uid: 23745 + components: + - type: Transform + pos: 78.5,-0.5 + parent: 2 + - uid: 23746 + components: + - type: Transform + pos: 13.5,-78.5 + parent: 2 + - uid: 23747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-32.5 + parent: 2 + - uid: 23748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,12.5 + parent: 2 + - uid: 23749 + components: + - type: Transform + pos: -20.5,33.5 + parent: 2 + - uid: 23750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-53.5 + parent: 2 + - uid: 23751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-61.5 + parent: 2 + - uid: 23752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,34.5 + parent: 2 + - uid: 23753 + components: + - type: Transform + pos: -2.5,29.5 + parent: 2 + - uid: 23754 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 23755 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 23756 + components: + - type: Transform + pos: -20.5,9.5 + parent: 2 + - uid: 23757 + components: + - type: Transform + pos: 0.5,39.5 + parent: 2 + - uid: 23758 + components: + - type: Transform + pos: -3.5,-78.5 + parent: 2 + - uid: 23759 + components: + - type: Transform + pos: -19.5,9.5 + parent: 2 + - uid: 23760 + components: + - type: Transform + pos: 6.5,-75.5 + parent: 2 + - uid: 23761 + components: + - type: Transform + pos: 2.5,-78.5 + parent: 2 + - uid: 23762 + components: + - type: Transform + pos: 6.5,-78.5 + parent: 2 + - uid: 23763 + components: + - type: Transform + pos: -7.5,-75.5 + parent: 2 + - uid: 23764 + components: + - type: Transform + pos: 48.5,-43.5 + parent: 2 + - uid: 23767 + components: + - type: Transform + pos: -17.5,37.5 + parent: 2 + - uid: 23768 + components: + - type: Transform + pos: -18.5,37.5 + parent: 2 + - uid: 23769 + components: + - type: Transform + pos: -19.5,37.5 + parent: 2 + - uid: 23770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-58.5 + parent: 2 + - uid: 23771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-61.5 + parent: 2 + - uid: 23772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-41.5 + parent: 2 + - uid: 23773 + components: + - type: Transform + pos: 10.5,39.5 + parent: 2 + - uid: 23774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,6.5 + parent: 2 + - uid: 23775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-50.5 + parent: 2 + - uid: 23776 + components: + - type: Transform + pos: -13.5,42.5 + parent: 2 + - uid: 23777 + components: + - type: Transform + pos: 66.5,-16.5 + parent: 2 + - uid: 23778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-52.5 + parent: 2 + - uid: 23779 + components: + - type: Transform + pos: 68.5,-37.5 + parent: 2 + - uid: 23780 + components: + - type: Transform + pos: 73.5,-34.5 + parent: 2 + - uid: 23781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-52.5 + parent: 2 + - uid: 23782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,13.5 + parent: 2 + - uid: 23783 + components: + - type: Transform + pos: 77.5,-48.5 + parent: 2 + - uid: 23784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-34.5 + parent: 2 + - uid: 23785 + components: + - type: Transform + pos: 19.5,31.5 + parent: 2 + - uid: 23786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-34.5 + parent: 2 + - uid: 23787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-34.5 + parent: 2 + - uid: 23788 + components: + - type: Transform + pos: -21.5,16.5 + parent: 2 + - uid: 23789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-39.5 + parent: 2 + - uid: 23790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-55.5 + parent: 2 + - uid: 23791 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - uid: 23792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-35.5 + parent: 2 + - uid: 23793 + components: + - type: Transform + pos: 29.5,16.5 + parent: 2 + - uid: 23794 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - uid: 23795 + components: + - type: Transform + pos: -42.5,-26.5 + parent: 2 + - uid: 23796 + components: + - type: Transform + pos: -44.5,-32.5 + parent: 2 + - uid: 23797 + components: + - type: Transform + pos: 2.5,-58.5 + parent: 2 + - uid: 23798 + components: + - type: Transform + pos: 53.5,-28.5 + parent: 2 + - uid: 23799 + components: + - type: Transform + pos: -20.5,25.5 + parent: 2 + - uid: 23800 + components: + - type: Transform + pos: 16.5,36.5 + parent: 2 + - uid: 23801 + components: + - type: Transform + pos: -43.5,-26.5 + parent: 2 + - uid: 23802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-38.5 + parent: 2 + - uid: 23803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 88.5,-22.5 + parent: 2 + - uid: 23804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,-30.5 + parent: 2 + - uid: 23805 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 + - uid: 23806 + components: + - type: Transform + pos: 10.5,33.5 + parent: 2 + - uid: 23807 + components: + - type: Transform + pos: -10.5,-61.5 + parent: 2 + - uid: 23808 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 23809 + components: + - type: Transform + pos: -27.5,9.5 + parent: 2 + - uid: 23810 + components: + - type: Transform + pos: 76.5,-51.5 + parent: 2 + - uid: 23811 + components: + - type: Transform + pos: 76.5,-49.5 + parent: 2 + - uid: 23812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-32.5 + parent: 2 + - uid: 23813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-32.5 + parent: 2 + - uid: 23814 + components: + - type: Transform + pos: -18.5,-31.5 + parent: 2 + - uid: 23815 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 2 + - uid: 23816 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 23817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-23.5 + parent: 2 + - uid: 23818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 2 + - uid: 23819 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 + - uid: 23820 + components: + - type: Transform + pos: 31.5,-59.5 + parent: 2 + - uid: 23822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-54.5 + parent: 2 + - uid: 23823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-54.5 + parent: 2 + - uid: 23824 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 + - uid: 23825 + components: + - type: Transform + pos: -22.5,17.5 + parent: 2 + - uid: 23826 + components: + - type: Transform + pos: -25.5,16.5 + parent: 2 + - uid: 23827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-46.5 + parent: 2 + - uid: 23828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-58.5 + parent: 2 + - uid: 23829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-50.5 + parent: 2 + - uid: 23830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-50.5 + parent: 2 + - uid: 23831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-54.5 + parent: 2 + - uid: 23832 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 23833 + components: + - type: Transform + pos: 31.5,-45.5 + parent: 2 + - uid: 23834 + components: + - type: Transform + pos: 10.5,-78.5 + parent: 2 + - uid: 23835 + components: + - type: Transform + pos: 13.5,-77.5 + parent: 2 + - uid: 23836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-23.5 + parent: 2 + - uid: 23837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-34.5 + parent: 2 + - uid: 23838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-34.5 + parent: 2 + - uid: 23839 + components: + - type: Transform + pos: -12.5,42.5 + parent: 2 + - uid: 23840 + components: + - type: Transform + pos: -25.5,41.5 + parent: 2 + - uid: 23841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-23.5 + parent: 2 + - uid: 23842 + components: + - type: Transform + pos: 28.5,6.5 + parent: 2 + - uid: 23843 + components: + - type: Transform + pos: -25.5,40.5 + parent: 2 + - uid: 23844 + components: + - type: Transform + pos: -24.5,5.5 + parent: 2 + - uid: 23845 + components: + - type: Transform + pos: -24.5,6.5 + parent: 2 + - uid: 23846 + components: + - type: Transform + pos: -62.5,2.5 + parent: 2 + - uid: 23847 + components: + - type: Transform + pos: -82.5,-16.5 + parent: 2 + - uid: 23848 + components: + - type: Transform + pos: -84.5,7.5 + parent: 2 + - uid: 23849 + components: + - type: Transform + pos: -22.5,-32.5 + parent: 2 + - uid: 23851 + components: + - type: Transform + pos: -24.5,4.5 + parent: 2 + - uid: 23852 + components: + - type: Transform + pos: -84.5,-2.5 + parent: 2 + - uid: 23853 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 23854 + components: + - type: Transform + pos: -84.5,11.5 + parent: 2 + - uid: 23855 + components: + - type: Transform + pos: -18.5,-28.5 + parent: 2 + - uid: 23856 + components: + - type: Transform + pos: 11.5,24.5 + parent: 2 + - uid: 23857 + components: + - type: Transform + pos: -18.5,-32.5 + parent: 2 + - uid: 23858 + components: + - type: Transform + pos: -19.5,-32.5 + parent: 2 + - uid: 23859 + components: + - type: Transform + pos: -20.5,-32.5 + parent: 2 + - uid: 23860 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 2 + - uid: 23861 + components: + - type: Transform + pos: -21.5,-32.5 + parent: 2 + - uid: 23862 + components: + - type: Transform + pos: -23.5,-28.5 + parent: 2 + - uid: 23863 + components: + - type: Transform + pos: -23.5,-32.5 + parent: 2 + - uid: 23864 + components: + - type: Transform + pos: -16.5,42.5 + parent: 2 + - uid: 23865 + components: + - type: Transform + pos: -16.5,40.5 + parent: 2 + - uid: 23866 + components: + - type: Transform + pos: -16.5,41.5 + parent: 2 + - uid: 23867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-52.5 + parent: 2 + - uid: 23868 + components: + - type: Transform + pos: -11.5,-72.5 + parent: 2 + - uid: 23869 + components: + - type: Transform + pos: 79.5,-0.5 + parent: 2 + - uid: 23870 + components: + - type: Transform + pos: -19.5,33.5 + parent: 2 + - uid: 23871 + components: + - type: Transform + pos: -23.5,-30.5 + parent: 2 + - uid: 23872 + components: + - type: Transform + pos: -1.5,29.5 + parent: 2 + - uid: 23873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,21.5 + parent: 2 + - uid: 23874 + components: + - type: Transform + pos: -22.5,14.5 + parent: 2 + - uid: 23875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-57.5 + parent: 2 + - uid: 23876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,21.5 + parent: 2 + - uid: 23877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-39.5 + parent: 2 + - uid: 23878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-33.5 + parent: 2 + - uid: 23879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-35.5 + parent: 2 + - uid: 23880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-61.5 + parent: 2 + - uid: 23881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,34.5 + parent: 2 + - uid: 23882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-35.5 + parent: 2 + - uid: 23883 + components: + - type: Transform + pos: 63.5,-28.5 + parent: 2 + - uid: 23884 + components: + - type: Transform + pos: 5.5,-50.5 + parent: 2 + - uid: 23885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-16.5 + parent: 2 + - uid: 23886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-39.5 + parent: 2 + - uid: 23887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-39.5 + parent: 2 + - uid: 23888 + components: + - type: Transform + pos: 6.5,33.5 + parent: 2 + - uid: 23889 + components: + - type: Transform + pos: 45.5,-51.5 + parent: 2 + - uid: 23890 + components: + - type: Transform + pos: 48.5,-52.5 + parent: 2 + - uid: 23891 + components: + - type: Transform + pos: 48.5,-50.5 + parent: 2 + - uid: 23892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-35.5 + parent: 2 + - uid: 23893 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - uid: 23894 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - uid: 23895 + components: + - type: Transform + pos: -7.5,3.5 + parent: 2 + - uid: 23896 + components: + - type: Transform + pos: -15.5,4.5 + parent: 2 + - uid: 23897 + components: + - type: Transform + pos: -15.5,6.5 + parent: 2 + - uid: 23898 + components: + - type: Transform + pos: -15.5,9.5 + parent: 2 + - uid: 23899 + components: + - type: Transform + pos: -14.5,10.5 + parent: 2 + - uid: 23900 + components: + - type: Transform + pos: -10.5,10.5 + parent: 2 + - uid: 23901 + components: + - type: Transform + pos: -8.5,10.5 + parent: 2 + - uid: 23902 + components: + - type: Transform + pos: -28.5,4.5 + parent: 2 + - uid: 23903 + components: + - type: Transform + pos: -25.5,11.5 + parent: 2 + - uid: 23904 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - uid: 23905 + components: + - type: Transform + pos: -30.5,11.5 + parent: 2 + - uid: 23906 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 + - uid: 23907 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - uid: 23908 + components: + - type: Transform + pos: -8.5,0.5 + parent: 2 + - uid: 23909 + components: + - type: Transform + pos: -7.5,2.5 + parent: 2 + - uid: 23910 + components: + - type: Transform + pos: -15.5,5.5 + parent: 2 + - uid: 23911 + components: + - type: Transform + pos: -15.5,7.5 + parent: 2 + - uid: 23912 + components: + - type: Transform + pos: -15.5,10.5 + parent: 2 + - uid: 23913 + components: + - type: Transform + pos: -13.5,10.5 + parent: 2 + - uid: 23914 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 + - uid: 23915 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - uid: 23916 + components: + - type: Transform + pos: -9.5,10.5 + parent: 2 + - uid: 23917 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - uid: 23918 + components: + - type: Transform + pos: -7.5,4.5 + parent: 2 + - uid: 23919 + components: + - type: Transform + pos: -7.5,5.5 + parent: 2 + - uid: 23920 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - uid: 23921 + components: + - type: Transform + pos: -26.5,2.5 + parent: 2 + - uid: 23922 + components: + - type: Transform + pos: -26.5,3.5 + parent: 2 + - uid: 23923 + components: + - type: Transform + pos: -26.5,4.5 + parent: 2 + - uid: 23924 + components: + - type: Transform + pos: -26.5,6.5 + parent: 2 + - uid: 23925 + components: + - type: Transform + pos: -26.5,8.5 + parent: 2 + - uid: 23926 + components: + - type: Transform + pos: -26.5,9.5 + parent: 2 + - uid: 23927 + components: + - type: Transform + pos: -36.5,9.5 + parent: 2 + - uid: 23928 + components: + - type: Transform + pos: -36.5,7.5 + parent: 2 + - uid: 23929 + components: + - type: Transform + pos: -36.5,5.5 + parent: 2 + - uid: 23930 + components: + - type: Transform + pos: -36.5,4.5 + parent: 2 + - uid: 23931 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 23932 + components: + - type: Transform + pos: -36.5,1.5 + parent: 2 + - uid: 23933 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 + - uid: 23934 + components: + - type: Transform + pos: -34.5,2.5 + parent: 2 + - uid: 23935 + components: + - type: Transform + pos: -34.5,4.5 + parent: 2 + - uid: 23936 + components: + - type: Transform + pos: -34.5,6.5 + parent: 2 + - uid: 23937 + components: + - type: Transform + pos: -33.5,7.5 + parent: 2 + - uid: 23938 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - uid: 23939 + components: + - type: Transform + pos: -29.5,7.5 + parent: 2 + - uid: 23940 + components: + - type: Transform + pos: -28.5,6.5 + parent: 2 + - uid: 23941 + components: + - type: Transform + pos: -28.5,3.5 + parent: 2 + - uid: 23942 + components: + - type: Transform + pos: -29.5,2.5 + parent: 2 + - uid: 23943 + components: + - type: Transform + pos: -26.5,1.5 + parent: 2 + - uid: 23944 + components: + - type: Transform + pos: -26.5,5.5 + parent: 2 + - uid: 23945 + components: + - type: Transform + pos: -26.5,7.5 + parent: 2 + - uid: 23946 + components: + - type: Transform + pos: -36.5,8.5 + parent: 2 + - uid: 23947 + components: + - type: Transform + pos: -36.5,6.5 + parent: 2 + - uid: 23948 + components: + - type: Transform + pos: -36.5,3.5 + parent: 2 + - uid: 23949 + components: + - type: Transform + pos: -36.5,0.5 + parent: 2 + - uid: 23950 + components: + - type: Transform + pos: -33.5,2.5 + parent: 2 + - uid: 23951 + components: + - type: Transform + pos: -34.5,3.5 + parent: 2 + - uid: 23952 + components: + - type: Transform + pos: -34.5,5.5 + parent: 2 + - uid: 23953 + components: + - type: Transform + pos: -34.5,7.5 + parent: 2 + - uid: 23954 + components: + - type: Transform + pos: -32.5,7.5 + parent: 2 + - uid: 23955 + components: + - type: Transform + pos: -30.5,7.5 + parent: 2 + - uid: 23956 + components: + - type: Transform + pos: -28.5,7.5 + parent: 2 + - uid: 23957 + components: + - type: Transform + pos: -28.5,5.5 + parent: 2 + - uid: 23958 + components: + - type: Transform + pos: -28.5,2.5 + parent: 2 + - uid: 23959 + components: + - type: Transform + pos: -30.5,2.5 + parent: 2 + - uid: 23960 + components: + - type: Transform + pos: -47.5,23.5 + parent: 2 + - uid: 23961 + components: + - type: Transform + pos: -47.5,20.5 + parent: 2 + - uid: 23962 + components: + - type: Transform + pos: -47.5,22.5 + parent: 2 + - uid: 23963 + components: + - type: Transform + pos: -47.5,21.5 + parent: 2 + - uid: 23964 + components: + - type: Transform + pos: -50.5,20.5 + parent: 2 + - uid: 23965 + components: + - type: Transform + pos: -51.5,21.5 + parent: 2 + - uid: 23966 + components: + - type: Transform + pos: -48.5,24.5 + parent: 2 + - uid: 23967 + components: + - type: Transform + pos: -51.5,23.5 + parent: 2 + - uid: 23968 + components: + - type: Transform + pos: -51.5,22.5 + parent: 2 + - uid: 23969 + components: + - type: Transform + pos: -51.5,20.5 + parent: 2 + - uid: 23970 + components: + - type: Transform + pos: -47.5,24.5 + parent: 2 + - uid: 23971 + components: + - type: Transform + pos: -48.5,20.5 + parent: 2 + - uid: 23972 + components: + - type: Transform + pos: -48.5,25.5 + parent: 2 + - uid: 23973 + components: + - type: Transform + pos: -20.5,39.5 + parent: 2 + - uid: 23974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,-2.5 + parent: 2 + - uid: 23975 + components: + - type: Transform + pos: 30.5,-83.5 + parent: 2 + - uid: 23976 + components: + - type: Transform + pos: -80.5,11.5 + parent: 2 + - uid: 23977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,7.5 + parent: 2 + - uid: 23978 + components: + - type: Transform + pos: -65.5,5.5 + parent: 2 + - uid: 23979 + components: + - type: Transform + pos: -65.5,6.5 + parent: 2 + - uid: 23980 + components: + - type: Transform + pos: -65.5,7.5 + parent: 2 + - uid: 23981 + components: + - type: Transform + pos: 34.5,-84.5 + parent: 2 + - uid: 23982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-2.5 + parent: 2 + - uid: 23983 + components: + - type: Transform + pos: -79.5,11.5 + parent: 2 + - uid: 23984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,11.5 + parent: 2 + - uid: 23985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,7.5 + parent: 2 + - uid: 23986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,-6.5 + parent: 2 + - uid: 23987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,-6.5 + parent: 2 + - uid: 23988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,7.5 + parent: 2 + - uid: 23989 + components: + - type: Transform + pos: -65.5,-0.5 + parent: 2 + - uid: 23990 + components: + - type: Transform + pos: -65.5,-1.5 + parent: 2 + - uid: 23991 + components: + - type: Transform + pos: -65.5,-2.5 + parent: 2 + - uid: 23992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-6.5 + parent: 2 + - uid: 23993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,8.5 + parent: 2 + - uid: 23994 + components: + - type: Transform + pos: -66.5,-2.5 + parent: 2 + - uid: 23995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,7.5 + parent: 2 + - uid: 23996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,10.5 + parent: 2 + - uid: 23997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-2.5 + parent: 2 + - uid: 23998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,7.5 + parent: 2 + - uid: 23999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-6.5 + parent: 2 + - uid: 24000 + components: + - type: Transform + pos: 45.5,16.5 + parent: 2 + - uid: 24001 + components: + - type: Transform + pos: 30.5,-92.5 + parent: 2 + - uid: 24002 + components: + - type: Transform + pos: 26.5,-92.5 + parent: 2 + - uid: 24003 + components: + - type: Transform + pos: 45.5,12.5 + parent: 2 + - uid: 24004 + components: + - type: Transform + pos: 45.5,14.5 + parent: 2 + - uid: 24005 + components: + - type: Transform + pos: 45.5,15.5 + parent: 2 + - uid: 24006 + components: + - type: Transform + pos: 4.5,41.5 + parent: 2 + - uid: 24007 + components: + - type: Transform + pos: -2.5,41.5 + parent: 2 + - uid: 24008 + components: + - type: Transform + pos: -26.5,11.5 + parent: 2 + - uid: 24009 + components: + - type: Transform + pos: 45.5,17.5 + parent: 2 + - uid: 24010 + components: + - type: Transform + pos: 49.5,18.5 + parent: 2 + - uid: 24011 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 24012 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 24013 + components: + - type: Transform + pos: 49.5,21.5 + parent: 2 + - uid: 24014 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 24015 + components: + - type: Transform + pos: 45.5,18.5 + parent: 2 + - uid: 24016 + components: + - type: Transform + pos: 45.5,19.5 + parent: 2 + - uid: 24017 + components: + - type: Transform + pos: 45.5,20.5 + parent: 2 + - uid: 24018 + components: + - type: Transform + pos: 48.5,22.5 + parent: 2 + - uid: 24019 + components: + - type: Transform + pos: 53.5,18.5 + parent: 2 + - uid: 24020 + components: + - type: Transform + pos: 52.5,18.5 + parent: 2 + - uid: 24021 + components: + - type: Transform + pos: 51.5,18.5 + parent: 2 + - uid: 24022 + components: + - type: Transform + pos: 50.5,18.5 + parent: 2 + - uid: 24023 + components: + - type: Transform + pos: 48.5,17.5 + parent: 2 + - uid: 24024 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - uid: 24025 + components: + - type: Transform + pos: -24.5,11.5 + parent: 2 + - uid: 24026 + components: + - type: Transform + pos: -32.5,17.5 + parent: 2 + - uid: 24027 + components: + - type: Transform + pos: -29.5,21.5 + parent: 2 + - uid: 24028 + components: + - type: Transform + pos: -30.5,25.5 + parent: 2 + - uid: 24029 + components: + - type: Transform + pos: -36.5,25.5 + parent: 2 + - uid: 24030 + components: + - type: Transform + pos: -30.5,17.5 + parent: 2 + - uid: 24031 + components: + - type: Transform + pos: -29.5,17.5 + parent: 2 + - uid: 24032 + components: + - type: Transform + pos: -31.5,25.5 + parent: 2 + - uid: 24033 + components: + - type: Transform + pos: -16.5,37.5 + parent: 2 + - uid: 24034 + components: + - type: Transform + pos: -38.5,25.5 + parent: 2 + - uid: 24035 + components: + - type: Transform + pos: -39.5,25.5 + parent: 2 + - uid: 24036 + components: + - type: Transform + pos: -39.5,24.5 + parent: 2 + - uid: 24037 + components: + - type: Transform + pos: -37.5,25.5 + parent: 2 + - uid: 24038 + components: + - type: Transform + pos: -40.5,23.5 + parent: 2 + - uid: 24039 + components: + - type: Transform + pos: -40.5,19.5 + parent: 2 + - uid: 24040 + components: + - type: Transform + pos: -39.5,19.5 + parent: 2 + - uid: 24041 + components: + - type: Transform + pos: -42.5,16.5 + parent: 2 + - uid: 24042 + components: + - type: Transform + pos: -39.5,18.5 + parent: 2 + - uid: 24043 + components: + - type: Transform + pos: -39.5,23.5 + parent: 2 + - uid: 24044 + components: + - type: Transform + pos: -41.5,23.5 + parent: 2 + - uid: 24045 + components: + - type: Transform + pos: -42.5,23.5 + parent: 2 + - uid: 24046 + components: + - type: Transform + pos: -43.5,23.5 + parent: 2 + - uid: 24047 + components: + - type: Transform + pos: -44.5,23.5 + parent: 2 + - uid: 24048 + components: + - type: Transform + pos: -44.5,19.5 + parent: 2 + - uid: 24049 + components: + - type: Transform + pos: -41.5,19.5 + parent: 2 + - uid: 24050 + components: + - type: Transform + pos: -46.5,23.5 + parent: 2 + - uid: 24051 + components: + - type: Transform + pos: -45.5,23.5 + parent: 2 + - uid: 24052 + components: + - type: Transform + pos: -43.5,17.5 + parent: 2 + - uid: 24053 + components: + - type: Transform + pos: 49.5,17.5 + parent: 2 + - uid: 24054 + components: + - type: Transform + pos: -41.5,13.5 + parent: 2 + - uid: 24055 + components: + - type: Transform + pos: -42.5,14.5 + parent: 2 + - uid: 24056 + components: + - type: Transform + pos: 46.5,17.5 + parent: 2 + - uid: 24057 + components: + - type: Transform + pos: -42.5,17.5 + parent: 2 + - uid: 24058 + components: + - type: Transform + pos: -45.5,19.5 + parent: 2 + - uid: 24059 + components: + - type: Transform + pos: -45.5,18.5 + parent: 2 + - uid: 24060 + components: + - type: Transform + pos: -67.5,-6.5 + parent: 2 + - uid: 24061 + components: + - type: Transform + pos: -66.5,-6.5 + parent: 2 + - uid: 24062 + components: + - type: Transform + pos: -66.5,-12.5 + parent: 2 + - uid: 24063 + components: + - type: Transform + pos: -67.5,-12.5 + parent: 2 + - uid: 24064 + components: + - type: Transform + pos: -77.5,-12.5 + parent: 2 + - uid: 24065 + components: + - type: Transform + pos: -63.5,-16.5 + parent: 2 + - uid: 24066 + components: + - type: Transform + pos: -77.5,-16.5 + parent: 2 + - uid: 24067 + components: + - type: Transform + pos: -45.5,17.5 + parent: 2 + - uid: 24068 + components: + - type: Transform + pos: -51.5,19.5 + parent: 2 + - uid: 24069 + components: + - type: Transform + pos: -33.5,17.5 + parent: 2 + - uid: 24070 + components: + - type: Transform + pos: -39.5,17.5 + parent: 2 + - uid: 24071 + components: + - type: Transform + pos: -35.5,17.5 + parent: 2 + - uid: 24072 + components: + - type: Transform + pos: -44.5,17.5 + parent: 2 + - uid: 24073 + components: + - type: Transform + pos: -42.5,13.5 + parent: 2 + - uid: 24074 + components: + - type: Transform + pos: -39.5,13.5 + parent: 2 + - uid: 24075 + components: + - type: Transform + pos: -33.5,13.5 + parent: 2 + - uid: 24076 + components: + - type: Transform + pos: -34.5,13.5 + parent: 2 + - uid: 24077 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 + - uid: 24078 + components: + - type: Transform + pos: -40.5,13.5 + parent: 2 + - uid: 24079 + components: + - type: Transform + pos: -52.5,19.5 + parent: 2 + - uid: 24080 + components: + - type: Transform + pos: -57.5,19.5 + parent: 2 + - uid: 24081 + components: + - type: Transform + pos: -56.5,19.5 + parent: 2 + - uid: 24082 + components: + - type: Transform + pos: -58.5,19.5 + parent: 2 + - uid: 24083 + components: + - type: Transform + pos: -59.5,19.5 + parent: 2 + - uid: 24084 + components: + - type: Transform + pos: -55.5,19.5 + parent: 2 + - uid: 24085 + components: + - type: Transform + pos: -51.5,-19.5 + parent: 2 + - uid: 24086 + components: + - type: Transform + pos: -50.5,-19.5 + parent: 2 + - uid: 24087 + components: + - type: Transform + pos: -49.5,-19.5 + parent: 2 + - uid: 24088 + components: + - type: Transform + pos: -48.5,-19.5 + parent: 2 + - uid: 24089 + components: + - type: Transform + pos: -47.5,-19.5 + parent: 2 + - uid: 24090 + components: + - type: Transform + pos: -46.5,-19.5 + parent: 2 + - uid: 24091 + components: + - type: Transform + pos: -45.5,-19.5 + parent: 2 + - uid: 24092 + components: + - type: Transform + pos: -62.5,17.5 + parent: 2 + - uid: 24093 + components: + - type: Transform + pos: -62.5,16.5 + parent: 2 + - uid: 24094 + components: + - type: Transform + pos: 1.5,-58.5 + parent: 2 + - uid: 24095 + components: + - type: Transform + pos: -62.5,15.5 + parent: 2 + - uid: 24096 + components: + - type: Transform + pos: -63.5,15.5 + parent: 2 + - uid: 24097 + components: + - type: Transform + pos: -64.5,15.5 + parent: 2 + - uid: 24098 + components: + - type: Transform + pos: -60.5,18.5 + parent: 2 + - uid: 24099 + components: + - type: Transform + pos: -29.5,-28.5 + parent: 2 + - uid: 24100 + components: + - type: Transform + pos: -60.5,17.5 + parent: 2 + - uid: 24101 + components: + - type: Transform + pos: -54.5,19.5 + parent: 2 + - uid: 24102 + components: + - type: Transform + pos: -75.5,11.5 + parent: 2 + - uid: 24103 + components: + - type: Transform + pos: -74.5,11.5 + parent: 2 + - uid: 24104 + components: + - type: Transform + pos: -73.5,11.5 + parent: 2 + - uid: 24105 + components: + - type: Transform + pos: -69.5,11.5 + parent: 2 + - uid: 24106 + components: + - type: Transform + pos: -68.5,11.5 + parent: 2 + - uid: 24107 + components: + - type: Transform + pos: -68.5,19.5 + parent: 2 + - uid: 24108 + components: + - type: Transform + pos: -64.5,19.5 + parent: 2 + - uid: 24109 + components: + - type: Transform + pos: -64.5,18.5 + parent: 2 + - uid: 24110 + components: + - type: Transform + pos: -64.5,17.5 + parent: 2 + - uid: 24111 + components: + - type: Transform + pos: -64.5,16.5 + parent: 2 + - uid: 24112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,-2.5 + parent: 2 + - uid: 24113 + components: + - type: Transform + pos: -53.5,19.5 + parent: 2 + - uid: 24114 + components: + - type: Transform + pos: -60.5,19.5 + parent: 2 + - uid: 24115 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - uid: 24116 + components: + - type: Transform + pos: 43.5,12.5 + parent: 2 + - uid: 24117 + components: + - type: Transform + pos: 38.5,5.5 + parent: 2 + - uid: 24118 + components: + - type: Transform + pos: 38.5,6.5 + parent: 2 + - uid: 24119 + components: + - type: Transform + pos: 34.5,4.5 + parent: 2 + - uid: 24120 + components: + - type: Transform + pos: 32.5,4.5 + parent: 2 + - uid: 24121 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 + - uid: 24122 + components: + - type: Transform + pos: 29.5,4.5 + parent: 2 + - uid: 24123 + components: + - type: Transform + pos: 28.5,4.5 + parent: 2 + - uid: 24124 + components: + - type: Transform + pos: 27.5,6.5 + parent: 2 + - uid: 24125 + components: + - type: Transform + pos: 27.5,5.5 + parent: 2 + - uid: 24126 + components: + - type: Transform + pos: 27.5,4.5 + parent: 2 + - uid: 24127 + components: + - type: Transform + pos: 0.5,-58.5 + parent: 2 + - uid: 24128 + components: + - type: Transform + pos: -4.5,-57.5 + parent: 2 + - uid: 24129 + components: + - type: Transform + pos: -4.5,-58.5 + parent: 2 + - uid: 24130 + components: + - type: Transform + pos: -4.5,-55.5 + parent: 2 + - uid: 24131 + components: + - type: Transform + pos: -4.5,-54.5 + parent: 2 + - uid: 24132 + components: + - type: Transform + pos: 8.5,-33.5 + parent: 2 + - uid: 24133 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 2 + - uid: 24134 + components: + - type: Transform + pos: 8.5,-35.5 + parent: 2 + - uid: 24135 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 2 + - uid: 24136 + components: + - type: Transform + pos: 8.5,-37.5 + parent: 2 + - uid: 24137 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 2 + - uid: 24138 + components: + - type: Transform + pos: 2.5,-46.5 + parent: 2 + - uid: 24139 + components: + - type: Transform + pos: 2.5,-47.5 + parent: 2 + - uid: 24140 + components: + - type: Transform + pos: 2.5,-48.5 + parent: 2 + - uid: 24141 + components: + - type: Transform + pos: 2.5,-49.5 + parent: 2 + - uid: 24142 + components: + - type: Transform + pos: 2.5,-50.5 + parent: 2 + - uid: 24143 + components: + - type: Transform + pos: 1.5,-36.5 + parent: 2 + - uid: 24144 + components: + - type: Transform + pos: 1.5,-35.5 + parent: 2 + - uid: 24145 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 2 + - uid: 24146 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 2 + - uid: 24147 + components: + - type: Transform + pos: 2.5,-39.5 + parent: 2 + - uid: 24148 + components: + - type: Transform + pos: 3.5,-39.5 + parent: 2 + - uid: 24149 + components: + - type: Transform + pos: 4.5,-39.5 + parent: 2 + - uid: 24150 + components: + - type: Transform + pos: 5.5,-39.5 + parent: 2 + - uid: 24151 + components: + - type: Transform + pos: 6.5,-39.5 + parent: 2 + - uid: 24152 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 2 + - uid: 24153 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 2 + - uid: 24154 + components: + - type: Transform + pos: 47.5,6.5 + parent: 2 + - uid: 24155 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 2 + - uid: 24156 + components: + - type: Transform + pos: 48.5,6.5 + parent: 2 + - uid: 24157 + components: + - type: Transform + pos: 49.5,6.5 + parent: 2 + - uid: 24158 + components: + - type: Transform + pos: 54.5,21.5 + parent: 2 + - uid: 24159 + components: + - type: Transform + pos: 54.5,20.5 + parent: 2 + - uid: 24160 + components: + - type: Transform + pos: 54.5,19.5 + parent: 2 + - uid: 24161 + components: + - type: Transform + pos: 54.5,18.5 + parent: 2 + - uid: 24162 + components: + - type: Transform + pos: 58.5,21.5 + parent: 2 + - uid: 24163 + components: + - type: Transform + pos: 58.5,20.5 + parent: 2 + - uid: 24164 + components: + - type: Transform + pos: 64.5,21.5 + parent: 2 + - uid: 24165 + components: + - type: Transform + pos: 64.5,20.5 + parent: 2 + - uid: 24166 + components: + - type: Transform + pos: 63.5,20.5 + parent: 2 + - uid: 24167 + components: + - type: Transform + pos: 61.5,20.5 + parent: 2 + - uid: 24168 + components: + - type: Transform + pos: 59.5,20.5 + parent: 2 + - uid: 24169 + components: + - type: Transform + pos: 64.5,22.5 + parent: 2 + - uid: 24170 + components: + - type: Transform + pos: 64.5,24.5 + parent: 2 + - uid: 24171 + components: + - type: Transform + pos: 64.5,23.5 + parent: 2 + - uid: 24172 + components: + - type: Transform + pos: 66.5,24.5 + parent: 2 + - uid: 24173 + components: + - type: Transform + pos: 66.5,23.5 + parent: 2 + - uid: 24174 + components: + - type: Transform + pos: 66.5,22.5 + parent: 2 + - uid: 24175 + components: + - type: Transform + pos: 48.5,-51.5 + parent: 2 + - uid: 24176 + components: + - type: Transform + pos: 48.5,-53.5 + parent: 2 + - uid: 24177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-42.5 + parent: 2 + - uid: 24178 + components: + - type: Transform + pos: 48.5,-44.5 + parent: 2 + - uid: 24179 + components: + - type: Transform + pos: 42.5,-54.5 + parent: 2 + - uid: 24180 + components: + - type: Transform + pos: 42.5,-53.5 + parent: 2 + - uid: 24181 + components: + - type: Transform + pos: 42.5,-52.5 + parent: 2 + - uid: 24182 + components: + - type: Transform + pos: 42.5,-51.5 + parent: 2 + - uid: 24183 + components: + - type: Transform + pos: 42.5,-50.5 + parent: 2 + - uid: 24184 + components: + - type: Transform + pos: 43.5,-50.5 + parent: 2 + - uid: 24185 + components: + - type: Transform + pos: 44.5,-50.5 + parent: 2 + - uid: 24186 + components: + - type: Transform + pos: 45.5,-50.5 + parent: 2 + - uid: 24187 + components: + - type: Transform + pos: 45.5,-52.5 + parent: 2 + - uid: 24188 + components: + - type: Transform + pos: 9.5,42.5 + parent: 2 + - uid: 24189 + components: + - type: Transform + pos: 48.5,-54.5 + parent: 2 + - uid: 24190 + components: + - type: Transform + pos: 48.5,-55.5 + parent: 2 + - uid: 24191 + components: + - type: Transform + pos: 48.5,-56.5 + parent: 2 + - uid: 24192 + components: + - type: Transform + pos: 48.5,-57.5 + parent: 2 + - uid: 24193 + components: + - type: Transform + pos: 48.5,-58.5 + parent: 2 + - uid: 24194 + components: + - type: Transform + pos: 48.5,-59.5 + parent: 2 + - uid: 24195 + components: + - type: Transform + pos: 48.5,-60.5 + parent: 2 + - uid: 24196 + components: + - type: Transform + pos: 48.5,-61.5 + parent: 2 + - uid: 24197 + components: + - type: Transform + pos: 47.5,-61.5 + parent: 2 + - uid: 24198 + components: + - type: Transform + pos: 46.5,-61.5 + parent: 2 + - uid: 24199 + components: + - type: Transform + pos: 45.5,-61.5 + parent: 2 + - uid: 24200 + components: + - type: Transform + pos: 44.5,-61.5 + parent: 2 + - uid: 24201 + components: + - type: Transform + pos: 43.5,-61.5 + parent: 2 + - uid: 24202 + components: + - type: Transform + pos: 42.5,-61.5 + parent: 2 + - uid: 24203 + components: + - type: Transform + pos: 41.5,-61.5 + parent: 2 + - uid: 24204 + components: + - type: Transform + pos: 40.5,-61.5 + parent: 2 + - uid: 24205 + components: + - type: Transform + pos: 39.5,-61.5 + parent: 2 + - uid: 24206 + components: + - type: Transform + pos: 38.5,-61.5 + parent: 2 + - uid: 24207 + components: + - type: Transform + pos: 37.5,-61.5 + parent: 2 + - uid: 24208 + components: + - type: Transform + pos: 37.5,-60.5 + parent: 2 + - uid: 24209 + components: + - type: Transform + pos: 37.5,-59.5 + parent: 2 + - uid: 24210 + components: + - type: Transform + pos: 37.5,-58.5 + parent: 2 + - uid: 24211 + components: + - type: Transform + pos: 37.5,-57.5 + parent: 2 + - uid: 24212 + components: + - type: Transform + pos: 37.5,-56.5 + parent: 2 + - uid: 24213 + components: + - type: Transform + pos: 36.5,-56.5 + parent: 2 + - uid: 24214 + components: + - type: Transform + pos: 35.5,-56.5 + parent: 2 + - uid: 24215 + components: + - type: Transform + pos: 34.5,-56.5 + parent: 2 + - uid: 24216 + components: + - type: Transform + pos: 33.5,-56.5 + parent: 2 + - uid: 24217 + components: + - type: Transform + pos: 33.5,-55.5 + parent: 2 + - uid: 24218 + components: + - type: Transform + pos: 33.5,-54.5 + parent: 2 + - uid: 24219 + components: + - type: Transform + pos: 33.5,-53.5 + parent: 2 + - uid: 24220 + components: + - type: Transform + pos: 33.5,-52.5 + parent: 2 + - uid: 24221 + components: + - type: Transform + pos: 33.5,-51.5 + parent: 2 + - uid: 24222 + components: + - type: Transform + pos: 33.5,-50.5 + parent: 2 + - uid: 24223 + components: + - type: Transform + pos: 34.5,-50.5 + parent: 2 + - uid: 24224 + components: + - type: Transform + pos: 35.5,-50.5 + parent: 2 + - uid: 24225 + components: + - type: Transform + pos: 36.5,-50.5 + parent: 2 + - uid: 24226 + components: + - type: Transform + pos: 37.5,-50.5 + parent: 2 + - uid: 24227 + components: + - type: Transform + pos: 38.5,-50.5 + parent: 2 + - uid: 24228 + components: + - type: Transform + pos: 38.5,-51.5 + parent: 2 + - uid: 24229 + components: + - type: Transform + pos: 38.5,-52.5 + parent: 2 + - uid: 24230 + components: + - type: Transform + pos: 38.5,-53.5 + parent: 2 + - uid: 24231 + components: + - type: Transform + pos: 38.5,-54.5 + parent: 2 + - uid: 24232 + components: + - type: Transform + pos: 41.5,-54.5 + parent: 2 + - uid: 24233 + components: + - type: Transform + pos: 39.5,-54.5 + parent: 2 + - uid: 24234 + components: + - type: Transform + pos: 50.5,-58.5 + parent: 2 + - uid: 24235 + components: + - type: Transform + pos: 64.5,-55.5 + parent: 2 + - uid: 24236 + components: + - type: Transform + pos: 64.5,-53.5 + parent: 2 + - uid: 24237 + components: + - type: Transform + pos: 64.5,-52.5 + parent: 2 + - uid: 24238 + components: + - type: Transform + pos: 64.5,-51.5 + parent: 2 + - uid: 24239 + components: + - type: Transform + pos: 64.5,-50.5 + parent: 2 + - uid: 24240 + components: + - type: Transform + pos: 50.5,-54.5 + parent: 2 + - uid: 24241 + components: + - type: Transform + pos: 50.5,-53.5 + parent: 2 + - uid: 24242 + components: + - type: Transform + pos: 50.5,-52.5 + parent: 2 + - uid: 24243 + components: + - type: Transform + pos: 50.5,-51.5 + parent: 2 + - uid: 24244 + components: + - type: Transform + pos: 50.5,-50.5 + parent: 2 + - uid: 24245 + components: + - type: Transform + pos: 50.5,-49.5 + parent: 2 + - uid: 24246 + components: + - type: Transform + pos: 50.5,-48.5 + parent: 2 + - uid: 24247 + components: + - type: Transform + pos: 50.5,-47.5 + parent: 2 + - uid: 24248 + components: + - type: Transform + pos: 50.5,-46.5 + parent: 2 + - uid: 24249 + components: + - type: Transform + pos: 50.5,-45.5 + parent: 2 + - uid: 24250 + components: + - type: Transform + pos: 50.5,-44.5 + parent: 2 + - uid: 24251 + components: + - type: Transform + pos: 50.5,-43.5 + parent: 2 + - uid: 24252 + components: + - type: Transform + pos: 50.5,-42.5 + parent: 2 + - uid: 24253 + components: + - type: Transform + pos: 58.5,-36.5 + parent: 2 + - uid: 24254 + components: + - type: Transform + pos: 58.5,-35.5 + parent: 2 + - uid: 24255 + components: + - type: Transform + pos: 58.5,-34.5 + parent: 2 + - uid: 24256 + components: + - type: Transform + pos: 58.5,-33.5 + parent: 2 + - uid: 24257 + components: + - type: Transform + pos: 58.5,-32.5 + parent: 2 + - uid: 24258 + components: + - type: Transform + pos: 57.5,-32.5 + parent: 2 + - uid: 24259 + components: + - type: Transform + pos: 56.5,-32.5 + parent: 2 + - uid: 24260 + components: + - type: Transform + pos: 55.5,-32.5 + parent: 2 + - uid: 24261 + components: + - type: Transform + pos: 54.5,-32.5 + parent: 2 + - uid: 24262 + components: + - type: Transform + pos: 52.5,-32.5 + parent: 2 + - uid: 24263 + components: + - type: Transform + pos: 51.5,-32.5 + parent: 2 + - uid: 24264 + components: + - type: Transform + pos: 51.5,-31.5 + parent: 2 + - uid: 24265 + components: + - type: Transform + pos: 51.5,-30.5 + parent: 2 + - uid: 24266 + components: + - type: Transform + pos: 51.5,-29.5 + parent: 2 + - uid: 24267 + components: + - type: Transform + pos: 51.5,-28.5 + parent: 2 + - uid: 24268 + components: + - type: Transform + pos: 52.5,-28.5 + parent: 2 + - uid: 24269 + components: + - type: Transform + pos: 54.5,-28.5 + parent: 2 + - uid: 24270 + components: + - type: Transform + pos: 56.5,-28.5 + parent: 2 + - uid: 24271 + components: + - type: Transform + pos: 57.5,-28.5 + parent: 2 + - uid: 24272 + components: + - type: Transform + pos: 58.5,-28.5 + parent: 2 + - uid: 24273 + components: + - type: Transform + pos: 58.5,-29.5 + parent: 2 + - uid: 24274 + components: + - type: Transform + pos: 58.5,-30.5 + parent: 2 + - uid: 24275 + components: + - type: Transform + pos: 58.5,-31.5 + parent: 2 + - uid: 24276 + components: + - type: Transform + pos: 56.5,-15.5 + parent: 2 + - uid: 24277 + components: + - type: Transform + pos: 57.5,-15.5 + parent: 2 + - uid: 24278 + components: + - type: Transform + pos: 59.5,-15.5 + parent: 2 + - uid: 24279 + components: + - type: Transform + pos: 60.5,-15.5 + parent: 2 + - uid: 24280 + components: + - type: Transform + pos: 60.5,-16.5 + parent: 2 + - uid: 24281 + components: + - type: Transform + pos: 64.5,-16.5 + parent: 2 + - uid: 24282 + components: + - type: Transform + pos: 64.5,-17.5 + parent: 2 + - uid: 24283 + components: + - type: Transform + pos: 64.5,-18.5 + parent: 2 + - uid: 24284 + components: + - type: Transform + pos: 64.5,-19.5 + parent: 2 + - uid: 24285 + components: + - type: Transform + pos: 64.5,-20.5 + parent: 2 + - uid: 24286 + components: + - type: Transform + pos: 68.5,-16.5 + parent: 2 + - uid: 24287 + components: + - type: Transform + pos: 68.5,-17.5 + parent: 2 + - uid: 24288 + components: + - type: Transform + pos: 68.5,-18.5 + parent: 2 + - uid: 24289 + components: + - type: Transform + pos: 68.5,-19.5 + parent: 2 + - uid: 24290 + components: + - type: Transform + pos: 68.5,-20.5 + parent: 2 + - uid: 24291 + components: + - type: Transform + pos: 72.5,-16.5 + parent: 2 + - uid: 24292 + components: + - type: Transform + pos: 72.5,-15.5 + parent: 2 + - uid: 24293 + components: + - type: Transform + pos: 73.5,-15.5 + parent: 2 + - uid: 24294 + components: + - type: Transform + pos: 74.5,-15.5 + parent: 2 + - uid: 24295 + components: + - type: Transform + pos: 75.5,-15.5 + parent: 2 + - uid: 24296 + components: + - type: Transform + pos: 75.5,-16.5 + parent: 2 + - uid: 24297 + components: + - type: Transform + pos: 75.5,-17.5 + parent: 2 + - uid: 24298 + components: + - type: Transform + pos: 75.5,-18.5 + parent: 2 + - uid: 24299 + components: + - type: Transform + pos: 75.5,-19.5 + parent: 2 + - uid: 24300 + components: + - type: Transform + pos: 75.5,-20.5 + parent: 2 + - uid: 24301 + components: + - type: Transform + pos: 76.5,-20.5 + parent: 2 + - uid: 24302 + components: + - type: Transform + pos: 77.5,-20.5 + parent: 2 + - uid: 24303 + components: + - type: Transform + pos: 77.5,-22.5 + parent: 2 + - uid: 24304 + components: + - type: Transform + pos: 76.5,-22.5 + parent: 2 + - uid: 24305 + components: + - type: Transform + pos: 75.5,-22.5 + parent: 2 + - uid: 24306 + components: + - type: Transform + pos: 78.5,-22.5 + parent: 2 + - uid: 24307 + components: + - type: Transform + pos: 79.5,-22.5 + parent: 2 + - uid: 24308 + components: + - type: Transform + pos: 80.5,-22.5 + parent: 2 + - uid: 24309 + components: + - type: Transform + pos: 81.5,-22.5 + parent: 2 + - uid: 24310 + components: + - type: Transform + pos: 82.5,-22.5 + parent: 2 + - uid: 24311 + components: + - type: Transform + pos: 83.5,-22.5 + parent: 2 + - uid: 24312 + components: + - type: Transform + pos: 83.5,-24.5 + parent: 2 + - uid: 24313 + components: + - type: Transform + pos: 83.5,-25.5 + parent: 2 + - uid: 24314 + components: + - type: Transform + pos: 83.5,-26.5 + parent: 2 + - uid: 24315 + components: + - type: Transform + pos: 83.5,-27.5 + parent: 2 + - uid: 24316 + components: + - type: Transform + pos: 83.5,-28.5 + parent: 2 + - uid: 24317 + components: + - type: Transform + pos: 83.5,-29.5 + parent: 2 + - uid: 24318 + components: + - type: Transform + pos: 83.5,-30.5 + parent: 2 + - uid: 24319 + components: + - type: Transform + pos: 83.5,-31.5 + parent: 2 + - uid: 24320 + components: + - type: Transform + pos: 82.5,-31.5 + parent: 2 + - uid: 24321 + components: + - type: Transform + pos: 81.5,-31.5 + parent: 2 + - uid: 24322 + components: + - type: Transform + pos: 80.5,-31.5 + parent: 2 + - uid: 24323 + components: + - type: Transform + pos: 79.5,-31.5 + parent: 2 + - uid: 24324 + components: + - type: Transform + pos: 78.5,-31.5 + parent: 2 + - uid: 24325 + components: + - type: Transform + pos: 77.5,-31.5 + parent: 2 + - uid: 24326 + components: + - type: Transform + pos: 76.5,-31.5 + parent: 2 + - uid: 24327 + components: + - type: Transform + pos: 75.5,-32.5 + parent: 2 + - uid: 24328 + components: + - type: Transform + pos: 75.5,-31.5 + parent: 2 + - uid: 24329 + components: + - type: Transform + pos: 75.5,-30.5 + parent: 2 + - uid: 24330 + components: + - type: Transform + pos: 75.5,-29.5 + parent: 2 + - uid: 24331 + components: + - type: Transform + pos: 75.5,-28.5 + parent: 2 + - uid: 24332 + components: + - type: Transform + pos: 75.5,-27.5 + parent: 2 + - uid: 24333 + components: + - type: Transform + pos: 78.5,-27.5 + parent: 2 + - uid: 24334 + components: + - type: Transform + pos: 81.5,-27.5 + parent: 2 + - uid: 24335 + components: + - type: Transform + pos: 79.5,-32.5 + parent: 2 + - uid: 24336 + components: + - type: Transform + pos: 79.5,-33.5 + parent: 2 + - uid: 24337 + components: + - type: Transform + pos: 79.5,-34.5 + parent: 2 + - uid: 24338 + components: + - type: Transform + pos: 79.5,-35.5 + parent: 2 + - uid: 24339 + components: + - type: Transform + pos: 79.5,-37.5 + parent: 2 + - uid: 24340 + components: + - type: Transform + pos: 79.5,-38.5 + parent: 2 + - uid: 24341 + components: + - type: Transform + pos: 79.5,-39.5 + parent: 2 + - uid: 24342 + components: + - type: Transform + pos: 79.5,-40.5 + parent: 2 + - uid: 24343 + components: + - type: Transform + pos: 79.5,-41.5 + parent: 2 + - uid: 24344 + components: + - type: Transform + pos: 79.5,-42.5 + parent: 2 + - uid: 24345 + components: + - type: Transform + pos: 80.5,-42.5 + parent: 2 + - uid: 24346 + components: + - type: Transform + pos: 81.5,-42.5 + parent: 2 + - uid: 24347 + components: + - type: Transform + pos: 81.5,-43.5 + parent: 2 + - uid: 24348 + components: + - type: Transform + pos: 81.5,-44.5 + parent: 2 + - uid: 24349 + components: + - type: Transform + pos: 81.5,-45.5 + parent: 2 + - uid: 24350 + components: + - type: Transform + pos: 81.5,-46.5 + parent: 2 + - uid: 24351 + components: + - type: Transform + pos: 81.5,-47.5 + parent: 2 + - uid: 24352 + components: + - type: Transform + pos: 81.5,-48.5 + parent: 2 + - uid: 24353 + components: + - type: Transform + pos: 80.5,-55.5 + parent: 2 + - uid: 24354 + components: + - type: Transform + pos: 79.5,-55.5 + parent: 2 + - uid: 24355 + components: + - type: Transform + pos: 78.5,-55.5 + parent: 2 + - uid: 24356 + components: + - type: Transform + pos: 77.5,-55.5 + parent: 2 + - uid: 24357 + components: + - type: Transform + pos: 75.5,-55.5 + parent: 2 + - uid: 24358 + components: + - type: Transform + pos: 80.5,-48.5 + parent: 2 + - uid: 24359 + components: + - type: Transform + pos: 79.5,-48.5 + parent: 2 + - uid: 24360 + components: + - type: Transform + pos: 78.5,-48.5 + parent: 2 + - uid: 24361 + components: + - type: Transform + pos: 74.5,-48.5 + parent: 2 + - uid: 24362 + components: + - type: Transform + pos: 73.5,-48.5 + parent: 2 + - uid: 24363 + components: + - type: Transform + pos: 69.5,-48.5 + parent: 2 + - uid: 24364 + components: + - type: Transform + pos: 75.5,-56.5 + parent: 2 + - uid: 24365 + components: + - type: Transform + pos: 75.5,-57.5 + parent: 2 + - uid: 24366 + components: + - type: Transform + pos: 75.5,-58.5 + parent: 2 + - uid: 24367 + components: + - type: Transform + pos: 74.5,-58.5 + parent: 2 + - uid: 24368 + components: + - type: Transform + pos: 73.5,-58.5 + parent: 2 + - uid: 24369 + components: + - type: Transform + pos: 72.5,-58.5 + parent: 2 + - uid: 24370 + components: + - type: Transform + pos: 71.5,-58.5 + parent: 2 + - uid: 24371 + components: + - type: Transform + pos: 71.5,-57.5 + parent: 2 + - uid: 24372 + components: + - type: Transform + pos: 71.5,-56.5 + parent: 2 + - uid: 24373 + components: + - type: Transform + pos: 71.5,-55.5 + parent: 2 + - uid: 24374 + components: + - type: Transform + pos: 70.5,-54.5 + parent: 2 + - uid: 24375 + components: + - type: Transform + pos: 69.5,-54.5 + parent: 2 + - uid: 24376 + components: + - type: Transform + pos: 68.5,-54.5 + parent: 2 + - uid: 24377 + components: + - type: Transform + pos: 67.5,-54.5 + parent: 2 + - uid: 24378 + components: + - type: Transform + pos: 66.5,21.5 + parent: 2 + - uid: 24379 + components: + - type: Transform + pos: 68.5,20.5 + parent: 2 + - uid: 24380 + components: + - type: Transform + pos: 43.5,-48.5 + parent: 2 + - uid: 24381 + components: + - type: Transform + pos: 45.5,-48.5 + parent: 2 + - uid: 24382 + components: + - type: Transform + pos: 47.5,-48.5 + parent: 2 + - uid: 24383 + components: + - type: Transform + pos: 48.5,-47.5 + parent: 2 + - uid: 24384 + components: + - type: Transform + pos: 66.5,20.5 + parent: 2 + - uid: 24385 + components: + - type: Transform + pos: 67.5,20.5 + parent: 2 + - uid: 24386 + components: + - type: Transform + pos: 64.5,-49.5 + parent: 2 + - uid: 24387 + components: + - type: Transform + pos: 64.5,-46.5 + parent: 2 + - uid: 24388 + components: + - type: Transform + pos: 64.5,-43.5 + parent: 2 + - uid: 24389 + components: + - type: Transform + pos: 64.5,-42.5 + parent: 2 + - uid: 24390 + components: + - type: Transform + pos: 58.5,-37.5 + parent: 2 + - uid: 24391 + components: + - type: Transform + pos: 71.5,14.5 + parent: 2 + - uid: 24392 + components: + - type: Transform + pos: 71.5,13.5 + parent: 2 + - uid: 24393 + components: + - type: Transform + pos: 70.5,-42.5 + parent: 2 + - uid: 24394 + components: + - type: Transform + pos: 73.5,-42.5 + parent: 2 + - uid: 24395 + components: + - type: Transform + pos: 74.5,-42.5 + parent: 2 + - uid: 24396 + components: + - type: Transform + pos: 75.5,-42.5 + parent: 2 + - uid: 24397 + components: + - type: Transform + pos: 75.5,-41.5 + parent: 2 + - uid: 24398 + components: + - type: Transform + pos: 73.5,-41.5 + parent: 2 + - uid: 24399 + components: + - type: Transform + pos: 73.5,-39.5 + parent: 2 + - uid: 24400 + components: + - type: Transform + pos: 75.5,-39.5 + parent: 2 + - uid: 24401 + components: + - type: Transform + pos: 75.5,-38.5 + parent: 2 + - uid: 24402 + components: + - type: Transform + pos: 74.5,-38.5 + parent: 2 + - uid: 24403 + components: + - type: Transform + pos: 73.5,-38.5 + parent: 2 + - uid: 24404 + components: + - type: Transform + pos: 72.5,-38.5 + parent: 2 + - uid: 24405 + components: + - type: Transform + pos: 71.5,-38.5 + parent: 2 + - uid: 24406 + components: + - type: Transform + pos: 70.5,-38.5 + parent: 2 + - uid: 24407 + components: + - type: Transform + pos: 71.5,15.5 + parent: 2 + - uid: 24408 + components: + - type: Transform + pos: 75.5,-25.5 + parent: 2 + - uid: 24409 + components: + - type: Transform + pos: 75.5,-26.5 + parent: 2 + - uid: 24410 + components: + - type: Transform + pos: 71.5,16.5 + parent: 2 + - uid: 24411 + components: + - type: Transform + pos: 71.5,17.5 + parent: 2 + - uid: 24412 + components: + - type: Transform + pos: 71.5,18.5 + parent: 2 + - uid: 24413 + components: + - type: Transform + pos: 71.5,19.5 + parent: 2 + - uid: 24414 + components: + - type: Transform + pos: 71.5,20.5 + parent: 2 + - uid: 24415 + components: + - type: Transform + pos: 70.5,20.5 + parent: 2 + - uid: 24416 + components: + - type: Transform + pos: 69.5,20.5 + parent: 2 + - uid: 24417 + components: + - type: Transform + pos: 72.5,13.5 + parent: 2 + - uid: 24418 + components: + - type: Transform + pos: 73.5,13.5 + parent: 2 + - uid: 24419 + components: + - type: Transform + pos: 76.5,13.5 + parent: 2 + - uid: 24420 + components: + - type: Transform + pos: 74.5,13.5 + parent: 2 + - uid: 24421 + components: + - type: Transform + pos: 75.5,13.5 + parent: 2 + - uid: 24422 + components: + - type: Transform + pos: 76.5,12.5 + parent: 2 + - uid: 24423 + components: + - type: Transform + pos: 76.5,11.5 + parent: 2 + - uid: 24424 + components: + - type: Transform + pos: 76.5,10.5 + parent: 2 + - uid: 24425 + components: + - type: Transform + pos: 76.5,9.5 + parent: 2 + - uid: 24426 + components: + - type: Transform + pos: 76.5,8.5 + parent: 2 + - uid: 24427 + components: + - type: Transform + pos: 76.5,7.5 + parent: 2 + - uid: 24428 + components: + - type: Transform + pos: 75.5,7.5 + parent: 2 + - uid: 24429 + components: + - type: Transform + pos: 75.5,6.5 + parent: 2 + - uid: 24430 + components: + - type: Transform + pos: -74.5,-17.5 + parent: 2 + - uid: 24431 + components: + - type: Transform + pos: -69.5,-17.5 + parent: 2 + - uid: 24432 + components: + - type: Transform + pos: -56.5,-21.5 + parent: 2 + - uid: 24433 + components: + - type: Transform + pos: 42.5,-48.5 + parent: 2 + - uid: 24434 + components: + - type: Transform + pos: 44.5,-48.5 + parent: 2 + - uid: 24435 + components: + - type: Transform + pos: 46.5,-48.5 + parent: 2 + - uid: 24436 + components: + - type: Transform + pos: 48.5,-45.5 + parent: 2 + - uid: 24437 + components: + - type: Transform + pos: 64.5,-54.5 + parent: 2 + - uid: 24438 + components: + - type: Transform + pos: 65.5,-54.5 + parent: 2 + - uid: 24439 + components: + - type: Transform + pos: -62.5,-18.5 + parent: 2 + - uid: 24440 + components: + - type: Transform + pos: -62.5,-19.5 + parent: 2 + - uid: 24441 + components: + - type: Transform + pos: -62.5,-20.5 + parent: 2 + - uid: 24442 + components: + - type: Transform + pos: -62.5,-21.5 + parent: 2 + - uid: 24443 + components: + - type: Transform + pos: -57.5,-21.5 + parent: 2 + - uid: 24444 + components: + - type: Transform + pos: -52.5,-19.5 + parent: 2 + - uid: 24445 + components: + - type: Transform + pos: -55.5,-21.5 + parent: 2 + - uid: 24446 + components: + - type: Transform + pos: -62.5,-16.5 + parent: 2 + - uid: 24447 + components: + - type: Transform + pos: -44.5,-19.5 + parent: 2 + - uid: 24448 + components: + - type: Transform + pos: -43.5,-19.5 + parent: 2 + - uid: 24449 + components: + - type: Transform + pos: -42.5,-19.5 + parent: 2 + - uid: 24450 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 2 + - uid: 24451 + components: + - type: Transform + pos: 86.5,-43.5 + parent: 2 + - uid: 24452 + components: + - type: Transform + pos: 85.5,-43.5 + parent: 2 + - uid: 24453 + components: + - type: Transform + pos: 84.5,-43.5 + parent: 2 + - uid: 24454 + components: + - type: Transform + pos: 83.5,-43.5 + parent: 2 + - uid: 24455 + components: + - type: Transform + pos: 85.5,-46.5 + parent: 2 + - uid: 24456 + components: + - type: Transform + pos: 84.5,-46.5 + parent: 2 + - uid: 24457 + components: + - type: Transform + pos: 83.5,-46.5 + parent: 2 + - uid: 24458 + components: + - type: Transform + pos: 87.5,-46.5 + parent: 2 + - uid: 24459 + components: + - type: Transform + pos: 86.5,-46.5 + parent: 2 + - uid: 24460 + components: + - type: Transform + pos: 87.5,-49.5 + parent: 2 + - uid: 24461 + components: + - type: Transform + pos: 83.5,-48.5 + parent: 2 + - uid: 24462 + components: + - type: Transform + pos: 83.5,-61.5 + parent: 2 + - uid: 24463 + components: + - type: Transform + pos: 79.5,-61.5 + parent: 2 + - uid: 24464 + components: + - type: Transform + pos: 79.5,-62.5 + parent: 2 + - uid: 24465 + components: + - type: Transform + pos: 79.5,-63.5 + parent: 2 + - uid: 24466 + components: + - type: Transform + pos: 79.5,-64.5 + parent: 2 + - uid: 24467 + components: + - type: Transform + pos: 83.5,-62.5 + parent: 2 + - uid: 24468 + components: + - type: Transform + pos: 83.5,-63.5 + parent: 2 + - uid: 24469 + components: + - type: Transform + pos: 83.5,-64.5 + parent: 2 + - uid: 24470 + components: + - type: Transform + pos: 79.5,-65.5 + parent: 2 + - uid: 24471 + components: + - type: Transform + pos: 80.5,-68.5 + parent: 2 + - uid: 24472 + components: + - type: Transform + pos: 79.5,-66.5 + parent: 2 + - uid: 24473 + components: + - type: Transform + pos: 80.5,-67.5 + parent: 2 + - uid: 24474 + components: + - type: Transform + pos: 80.5,-62.5 + parent: 2 + - uid: 24475 + components: + - type: Transform + pos: 82.5,-62.5 + parent: 2 + - uid: 24476 + components: + - type: Transform + pos: 83.5,-65.5 + parent: 2 + - uid: 24477 + components: + - type: Transform + pos: 80.5,-66.5 + parent: 2 + - uid: 24478 + components: + - type: Transform + pos: 8.5,-39.5 + parent: 2 + - uid: 24479 + components: + - type: Transform + pos: 9.5,-39.5 + parent: 2 + - uid: 24480 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 2 + - uid: 24481 + components: + - type: Transform + pos: 11.5,-39.5 + parent: 2 + - uid: 24482 + components: + - type: Transform + pos: 12.5,-39.5 + parent: 2 + - uid: 24483 + components: + - type: Transform + pos: 14.5,-39.5 + parent: 2 + - uid: 24484 + components: + - type: Transform + pos: 15.5,-39.5 + parent: 2 + - uid: 24485 + components: + - type: Transform + pos: 16.5,-39.5 + parent: 2 + - uid: 24486 + components: + - type: Transform + pos: 17.5,-39.5 + parent: 2 + - uid: 24487 + components: + - type: Transform + pos: 18.5,-39.5 + parent: 2 + - uid: 24488 + components: + - type: Transform + pos: 19.5,-39.5 + parent: 2 + - uid: 24489 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 2 + - uid: 24490 + components: + - type: Transform + pos: 21.5,-39.5 + parent: 2 + - uid: 24491 + components: + - type: Transform + pos: 22.5,-39.5 + parent: 2 + - uid: 24492 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 2 + - uid: 24493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-39.5 + parent: 2 + - uid: 24494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-39.5 + parent: 2 + - uid: 24495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-39.5 + parent: 2 + - uid: 24496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-39.5 + parent: 2 + - uid: 24497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-39.5 + parent: 2 + - uid: 24498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-39.5 + parent: 2 + - uid: 24499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-39.5 + parent: 2 + - uid: 24500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-39.5 + parent: 2 + - uid: 24501 + components: + - type: Transform + pos: -35.5,-32.5 + parent: 2 + - uid: 24502 + components: + - type: Transform + pos: -29.5,-32.5 + parent: 2 + - uid: 24503 + components: + - type: Transform + pos: -29.5,-34.5 + parent: 2 + - uid: 24504 + components: + - type: Transform + pos: -24.5,-42.5 + parent: 2 + - uid: 24505 + components: + - type: Transform + pos: -23.5,-42.5 + parent: 2 + - uid: 24506 + components: + - type: Transform + pos: -22.5,-42.5 + parent: 2 + - uid: 24507 + components: + - type: Transform + pos: -22.5,-41.5 + parent: 2 + - uid: 24508 + components: + - type: Transform + pos: -22.5,-39.5 + parent: 2 + - uid: 24509 + components: + - type: Transform + pos: -19.5,-43.5 + parent: 2 + - uid: 24510 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 2 + - uid: 24511 + components: + - type: Transform + pos: -11.5,-39.5 + parent: 2 + - uid: 24512 + components: + - type: Transform + pos: -11.5,-32.5 + parent: 2 + - uid: 24513 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 2 + - uid: 24514 + components: + - type: Transform + pos: -18.5,-46.5 + parent: 2 + - uid: 24515 + components: + - type: Transform + pos: 93.5,-24.5 + parent: 2 + - uid: 24516 + components: + - type: Transform + pos: 92.5,-24.5 + parent: 2 + - uid: 24517 + components: + - type: Transform + pos: 2.5,-41.5 + parent: 2 + - uid: 24518 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 2 + - uid: 24519 + components: + - type: Transform + pos: 87.5,-37.5 + parent: 2 + - uid: 24520 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 2 + - uid: 24521 + components: + - type: Transform + pos: -39.5,-47.5 + parent: 2 + - uid: 24522 + components: + - type: Transform + pos: -11.5,-37.5 + parent: 2 + - uid: 24523 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 2 + - uid: 24524 + components: + - type: Transform + pos: 69.5,-38.5 + parent: 2 + - uid: 24525 + components: + - type: Transform + pos: 68.5,-38.5 + parent: 2 + - uid: 24526 + components: + - type: Transform + pos: 69.5,-42.5 + parent: 2 + - uid: 24527 + components: + - type: Transform + pos: 68.5,-42.5 + parent: 2 + - uid: 24528 + components: + - type: Transform + pos: 87.5,-39.5 + parent: 2 + - uid: 24529 + components: + - type: Transform + pos: 89.5,-32.5 + parent: 2 + - uid: 24530 + components: + - type: Transform + pos: 90.5,-32.5 + parent: 2 + - uid: 24531 + components: + - type: Transform + pos: -4.5,-53.5 + parent: 2 + - uid: 24532 + components: + - type: Transform + pos: -4.5,-52.5 + parent: 2 + - uid: 24533 + components: + - type: Transform + pos: -4.5,-51.5 + parent: 2 + - uid: 24534 + components: + - type: Transform + pos: -4.5,-50.5 + parent: 2 + - uid: 24535 + components: + - type: Transform + pos: -4.5,-49.5 + parent: 2 + - uid: 24536 + components: + - type: Transform + pos: -5.5,-49.5 + parent: 2 + - uid: 24537 + components: + - type: Transform + pos: -5.5,-48.5 + parent: 2 + - uid: 24538 + components: + - type: Transform + pos: -6.5,-48.5 + parent: 2 + - uid: 24539 + components: + - type: Transform + pos: -7.5,-48.5 + parent: 2 + - uid: 24540 + components: + - type: Transform + pos: -8.5,-48.5 + parent: 2 + - uid: 24541 + components: + - type: Transform + pos: -9.5,-48.5 + parent: 2 + - uid: 24542 + components: + - type: Transform + pos: -10.5,-48.5 + parent: 2 + - uid: 24543 + components: + - type: Transform + pos: -11.5,-48.5 + parent: 2 + - uid: 24544 + components: + - type: Transform + pos: -12.5,-48.5 + parent: 2 + - uid: 24545 + components: + - type: Transform + pos: -13.5,-48.5 + parent: 2 + - uid: 24546 + components: + - type: Transform + pos: -14.5,-48.5 + parent: 2 + - uid: 24547 + components: + - type: Transform + pos: -15.5,-48.5 + parent: 2 + - uid: 24548 + components: + - type: Transform + pos: -16.5,-48.5 + parent: 2 + - uid: 24549 + components: + - type: Transform + pos: -17.5,-48.5 + parent: 2 + - uid: 24550 + components: + - type: Transform + pos: -5.5,-58.5 + parent: 2 + - uid: 24551 + components: + - type: Transform + pos: -6.5,-58.5 + parent: 2 + - uid: 24552 + components: + - type: Transform + pos: -7.5,-58.5 + parent: 2 + - uid: 24553 + components: + - type: Transform + pos: -8.5,-58.5 + parent: 2 + - uid: 24554 + components: + - type: Transform + pos: -9.5,-58.5 + parent: 2 + - uid: 24555 + components: + - type: Transform + pos: -10.5,-58.5 + parent: 2 + - uid: 24556 + components: + - type: Transform + pos: -11.5,-58.5 + parent: 2 + - uid: 24557 + components: + - type: Transform + pos: -12.5,-58.5 + parent: 2 + - uid: 24558 + components: + - type: Transform + pos: -13.5,-58.5 + parent: 2 + - uid: 24559 + components: + - type: Transform + pos: -14.5,-58.5 + parent: 2 + - uid: 24560 + components: + - type: Transform + pos: -15.5,-58.5 + parent: 2 + - uid: 24561 + components: + - type: Transform + pos: -16.5,-58.5 + parent: 2 + - uid: 24562 + components: + - type: Transform + pos: -17.5,-58.5 + parent: 2 + - uid: 24563 + components: + - type: Transform + pos: -17.5,-56.5 + parent: 2 + - uid: 24564 + components: + - type: Transform + pos: -17.5,-55.5 + parent: 2 + - uid: 24565 + components: + - type: Transform + pos: -17.5,-54.5 + parent: 2 + - uid: 24566 + components: + - type: Transform + pos: -17.5,-53.5 + parent: 2 + - uid: 24567 + components: + - type: Transform + pos: -17.5,-52.5 + parent: 2 + - uid: 24568 + components: + - type: Transform + pos: -17.5,-51.5 + parent: 2 + - uid: 24569 + components: + - type: Transform + pos: -17.5,-50.5 + parent: 2 + - uid: 24570 + components: + - type: Transform + pos: -17.5,-49.5 + parent: 2 + - uid: 24571 + components: + - type: Transform + pos: -17.5,-57.5 + parent: 2 + - uid: 24572 + components: + - type: Transform + pos: 91.5,-32.5 + parent: 2 + - uid: 24573 + components: + - type: Transform + pos: -14.5,-60.5 + parent: 2 + - uid: 24574 + components: + - type: Transform + pos: -13.5,-60.5 + parent: 2 + - uid: 24575 + components: + - type: Transform + pos: -12.5,-60.5 + parent: 2 + - uid: 24576 + components: + - type: Transform + pos: -11.5,-60.5 + parent: 2 + - uid: 24577 + components: + - type: Transform + pos: -10.5,-60.5 + parent: 2 + - uid: 24578 + components: + - type: Transform + pos: -9.5,-60.5 + parent: 2 + - uid: 24579 + components: + - type: Transform + pos: -8.5,-60.5 + parent: 2 + - uid: 24580 + components: + - type: Transform + pos: -7.5,-60.5 + parent: 2 + - uid: 24581 + components: + - type: Transform + pos: -6.5,-60.5 + parent: 2 + - uid: 24582 + components: + - type: Transform + pos: -5.5,-60.5 + parent: 2 + - uid: 24583 + components: + - type: Transform + pos: -4.5,-60.5 + parent: 2 + - uid: 24584 + components: + - type: Transform + pos: -3.5,-60.5 + parent: 2 + - uid: 24585 + components: + - type: Transform + pos: -2.5,-60.5 + parent: 2 + - uid: 24586 + components: + - type: Transform + pos: -1.5,-60.5 + parent: 2 + - uid: 24587 + components: + - type: Transform + pos: -0.5,-60.5 + parent: 2 + - uid: 24588 + components: + - type: Transform + pos: 0.5,-60.5 + parent: 2 + - uid: 24589 + components: + - type: Transform + pos: 0.5,-59.5 + parent: 2 + - uid: 24590 + components: + - type: Transform + pos: 91.5,-31.5 + parent: 2 + - uid: 24591 + components: + - type: Transform + pos: 92.5,-31.5 + parent: 2 + - uid: 24592 + components: + - type: Transform + pos: 93.5,-31.5 + parent: 2 + - uid: 24593 + components: + - type: Transform + pos: -14.5,-66.5 + parent: 2 + - uid: 24594 + components: + - type: Transform + pos: -14.5,-65.5 + parent: 2 + - uid: 24595 + components: + - type: Transform + pos: -14.5,-64.5 + parent: 2 + - uid: 24596 + components: + - type: Transform + pos: -14.5,-63.5 + parent: 2 + - uid: 24597 + components: + - type: Transform + pos: -14.5,-62.5 + parent: 2 + - uid: 24598 + components: + - type: Transform + pos: -14.5,-61.5 + parent: 2 + - uid: 24599 + components: + - type: Transform + pos: -18.5,-67.5 + parent: 2 + - uid: 24600 + components: + - type: Transform + pos: -19.5,-67.5 + parent: 2 + - uid: 24601 + components: + - type: Transform + pos: -16.5,-67.5 + parent: 2 + - uid: 24602 + components: + - type: Transform + pos: -14.5,-67.5 + parent: 2 + - uid: 24603 + components: + - type: Transform + pos: 87.5,-22.5 + parent: 2 + - uid: 24604 + components: + - type: Transform + pos: 87.5,-21.5 + parent: 2 + - uid: 24605 + components: + - type: Transform + pos: 87.5,-20.5 + parent: 2 + - uid: 24606 + components: + - type: Transform + pos: 86.5,-20.5 + parent: 2 + - uid: 24607 + components: + - type: Transform + pos: 82.5,-20.5 + parent: 2 + - uid: 24608 + components: + - type: Transform + pos: 85.5,-20.5 + parent: 2 + - uid: 24609 + components: + - type: Transform + pos: 84.5,-20.5 + parent: 2 + - uid: 24610 + components: + - type: Transform + pos: -35.5,-59.5 + parent: 2 + - uid: 24611 + components: + - type: Transform + pos: -39.5,-51.5 + parent: 2 + - uid: 24612 + components: + - type: Transform + pos: -40.5,-50.5 + parent: 2 + - uid: 24613 + components: + - type: Transform + pos: -41.5,-51.5 + parent: 2 + - uid: 24614 + components: + - type: Transform + pos: -38.5,-50.5 + parent: 2 + - uid: 24615 + components: + - type: Transform + pos: 83.5,-20.5 + parent: 2 + - uid: 24616 + components: + - type: Transform + pos: 82.5,-18.5 + parent: 2 + - uid: 24617 + components: + - type: Transform + pos: -36.5,-59.5 + parent: 2 + - uid: 24618 + components: + - type: Transform + pos: -37.5,-59.5 + parent: 2 + - uid: 24619 + components: + - type: Transform + pos: -38.5,-59.5 + parent: 2 + - uid: 24620 + components: + - type: Transform + pos: -39.5,-59.5 + parent: 2 + - uid: 24621 + components: + - type: Transform + pos: -35.5,-62.5 + parent: 2 + - uid: 24622 + components: + - type: Transform + pos: -35.5,-63.5 + parent: 2 + - uid: 24623 + components: + - type: Transform + pos: -36.5,-63.5 + parent: 2 + - uid: 24624 + components: + - type: Transform + pos: -37.5,-63.5 + parent: 2 + - uid: 24625 + components: + - type: Transform + pos: -38.5,-63.5 + parent: 2 + - uid: 24626 + components: + - type: Transform + pos: -39.5,-60.5 + parent: 2 + - uid: 24627 + components: + - type: Transform + pos: -40.5,-60.5 + parent: 2 + - uid: 24628 + components: + - type: Transform + pos: -41.5,-60.5 + parent: 2 + - uid: 24629 + components: + - type: Transform + pos: -40.5,-51.5 + parent: 2 + - uid: 24630 + components: + - type: Transform + pos: 81.5,-18.5 + parent: 2 + - uid: 24631 + components: + - type: Transform + pos: -35.5,-60.5 + parent: 2 + - uid: 24632 + components: + - type: Transform + pos: 80.5,-18.5 + parent: 2 + - uid: 24633 + components: + - type: Transform + pos: 79.5,-18.5 + parent: 2 + - uid: 24634 + components: + - type: Transform + pos: 78.5,-18.5 + parent: 2 + - uid: 24635 + components: + - type: Transform + pos: 77.5,-18.5 + parent: 2 + - uid: 24636 + components: + - type: Transform + pos: 77.5,-17.5 + parent: 2 + - uid: 24637 + components: + - type: Transform + pos: 77.5,-16.5 + parent: 2 + - uid: 24638 + components: + - type: Transform + pos: 77.5,-0.5 + parent: 2 + - uid: 24639 + components: + - type: Transform + pos: 76.5,-0.5 + parent: 2 + - uid: 24640 + components: + - type: Transform + pos: 75.5,-0.5 + parent: 2 + - uid: 24641 + components: + - type: Transform + pos: -27.5,-63.5 + parent: 2 + - uid: 24642 + components: + - type: Transform + pos: -27.5,-64.5 + parent: 2 + - uid: 24643 + components: + - type: Transform + pos: 75.5,4.5 + parent: 2 + - uid: 24644 + components: + - type: Transform + pos: -27.5,-66.5 + parent: 2 + - uid: 24645 + components: + - type: Transform + pos: -27.5,-67.5 + parent: 2 + - uid: 24646 + components: + - type: Transform + pos: -27.5,-68.5 + parent: 2 + - uid: 24647 + components: + - type: Transform + pos: -27.5,-69.5 + parent: 2 + - uid: 24648 + components: + - type: Transform + pos: -27.5,-70.5 + parent: 2 + - uid: 24649 + components: + - type: Transform + pos: -27.5,-71.5 + parent: 2 + - uid: 24650 + components: + - type: Transform + pos: -27.5,-72.5 + parent: 2 + - uid: 24651 + components: + - type: Transform + pos: -26.5,-72.5 + parent: 2 + - uid: 24652 + components: + - type: Transform + pos: -25.5,-72.5 + parent: 2 + - uid: 24653 + components: + - type: Transform + pos: -24.5,-72.5 + parent: 2 + - uid: 24654 + components: + - type: Transform + pos: -23.5,-72.5 + parent: 2 + - uid: 24655 + components: + - type: Transform + pos: -22.5,-72.5 + parent: 2 + - uid: 24656 + components: + - type: Transform + pos: -21.5,-72.5 + parent: 2 + - uid: 24657 + components: + - type: Transform + pos: -21.5,-71.5 + parent: 2 + - uid: 24658 + components: + - type: Transform + pos: -21.5,-70.5 + parent: 2 + - uid: 24659 + components: + - type: Transform + pos: -20.5,-71.5 + parent: 2 + - uid: 24660 + components: + - type: Transform + pos: -18.5,-71.5 + parent: 2 + - uid: 24661 + components: + - type: Transform + pos: -18.5,-68.5 + parent: 2 + - uid: 24662 + components: + - type: Transform + pos: -20.5,-65.5 + parent: 2 + - uid: 24663 + components: + - type: Transform + pos: -21.5,-67.5 + parent: 2 + - uid: 24664 + components: + - type: Transform + pos: -21.5,-68.5 + parent: 2 + - uid: 24665 + components: + - type: Transform + pos: -21.5,-66.5 + parent: 2 + - uid: 24666 + components: + - type: Transform + pos: -21.5,-65.5 + parent: 2 + - uid: 24667 + components: + - type: Transform + pos: -21.5,-64.5 + parent: 2 + - uid: 24668 + components: + - type: Transform + pos: -26.5,-63.5 + parent: 2 + - uid: 24669 + components: + - type: Transform + pos: -25.5,-63.5 + parent: 2 + - uid: 24670 + components: + - type: Transform + pos: -24.5,-63.5 + parent: 2 + - uid: 24671 + components: + - type: Transform + pos: -23.5,-63.5 + parent: 2 + - uid: 24672 + components: + - type: Transform + pos: -22.5,-63.5 + parent: 2 + - uid: 24673 + components: + - type: Transform + pos: -21.5,-63.5 + parent: 2 + - uid: 24674 + components: + - type: Transform + pos: -20.5,-74.5 + parent: 2 + - uid: 24675 + components: + - type: Transform + pos: -21.5,-73.5 + parent: 2 + - uid: 24676 + components: + - type: Transform + pos: -19.5,-74.5 + parent: 2 + - uid: 24677 + components: + - type: Transform + pos: 87.5,-43.5 + parent: 2 + - uid: 24678 + components: + - type: Transform + pos: 87.5,-50.5 + parent: 2 + - uid: 24679 + components: + - type: Transform + pos: 87.5,-54.5 + parent: 2 + - uid: 24680 + components: + - type: Transform + pos: 83.5,-60.5 + parent: 2 + - uid: 24681 + components: + - type: Transform + pos: -21.5,-74.5 + parent: 2 + - uid: 24682 + components: + - type: Transform + pos: -18.5,-72.5 + parent: 2 + - uid: 24683 + components: + - type: Transform + pos: -18.5,-73.5 + parent: 2 + - uid: 24684 + components: + - type: Transform + pos: -18.5,-74.5 + parent: 2 + - uid: 24685 + components: + - type: Transform + pos: -10.5,-67.5 + parent: 2 + - uid: 24686 + components: + - type: Transform + pos: -11.5,-67.5 + parent: 2 + - uid: 24687 + components: + - type: Transform + pos: -12.5,-67.5 + parent: 2 + - uid: 24688 + components: + - type: Transform + pos: -13.5,-67.5 + parent: 2 + - uid: 24689 + components: + - type: Transform + pos: -10.5,-66.5 + parent: 2 + - uid: 24690 + components: + - type: Transform + pos: -10.5,-65.5 + parent: 2 + - uid: 24691 + components: + - type: Transform + pos: -10.5,-64.5 + parent: 2 + - uid: 24692 + components: + - type: Transform + pos: 84.5,-60.5 + parent: 2 + - uid: 24693 + components: + - type: Transform + pos: 0.5,-61.5 + parent: 2 + - uid: 24694 + components: + - type: Transform + pos: 0.5,-62.5 + parent: 2 + - uid: 24695 + components: + - type: Transform + pos: 0.5,-63.5 + parent: 2 + - uid: 24696 + components: + - type: Transform + pos: 0.5,-65.5 + parent: 2 + - uid: 24697 + components: + - type: Transform + pos: 6.5,-58.5 + parent: 2 + - uid: 24698 + components: + - type: Transform + pos: 6.5,-59.5 + parent: 2 + - uid: 24699 + components: + - type: Transform + pos: 6.5,-62.5 + parent: 2 + - uid: 24700 + components: + - type: Transform + pos: 6.5,-63.5 + parent: 2 + - uid: 24701 + components: + - type: Transform + pos: 6.5,-64.5 + parent: 2 + - uid: 24702 + components: + - type: Transform + pos: 2.5,-64.5 + parent: 2 + - uid: 24703 + components: + - type: Transform + pos: 0.5,-64.5 + parent: 2 + - uid: 24704 + components: + - type: Transform + pos: 1.5,-64.5 + parent: 2 + - uid: 24705 + components: + - type: Transform + pos: 85.5,-60.5 + parent: 2 + - uid: 24706 + components: + - type: Transform + pos: 7.5,-63.5 + parent: 2 + - uid: 24707 + components: + - type: Transform + pos: 9.5,-63.5 + parent: 2 + - uid: 24708 + components: + - type: Transform + pos: 10.5,-63.5 + parent: 2 + - uid: 24709 + components: + - type: Transform + pos: 10.5,-62.5 + parent: 2 + - uid: 24710 + components: + - type: Transform + pos: 10.5,-61.5 + parent: 2 + - uid: 24711 + components: + - type: Transform + pos: 10.5,-60.5 + parent: 2 + - uid: 24712 + components: + - type: Transform + pos: 10.5,-59.5 + parent: 2 + - uid: 24713 + components: + - type: Transform + pos: 10.5,-58.5 + parent: 2 + - uid: 24714 + components: + - type: Transform + pos: -12.5,-75.5 + parent: 2 + - uid: 24715 + components: + - type: Transform + pos: -13.5,-75.5 + parent: 2 + - uid: 24716 + components: + - type: Transform + pos: -11.5,-74.5 + parent: 2 + - uid: 24717 + components: + - type: Transform + pos: 86.5,-60.5 + parent: 2 + - uid: 24718 + components: + - type: Transform + pos: -6.5,-68.5 + parent: 2 + - uid: 24719 + components: + - type: Transform + pos: -3.5,-68.5 + parent: 2 + - uid: 24720 + components: + - type: Transform + pos: -2.5,-68.5 + parent: 2 + - uid: 24721 + components: + - type: Transform + pos: 1.5,-68.5 + parent: 2 + - uid: 24722 + components: + - type: Transform + pos: 2.5,-68.5 + parent: 2 + - uid: 24723 + components: + - type: Transform + pos: 5.5,-68.5 + parent: 2 + - uid: 24724 + components: + - type: Transform + pos: 10.5,-64.5 + parent: 2 + - uid: 24725 + components: + - type: Transform + pos: 10.5,-65.5 + parent: 2 + - uid: 24726 + components: + - type: Transform + pos: 10.5,-66.5 + parent: 2 + - uid: 24727 + components: + - type: Transform + pos: 10.5,-67.5 + parent: 2 + - uid: 24728 + components: + - type: Transform + pos: 87.5,-60.5 + parent: 2 + - uid: 24729 + components: + - type: Transform + pos: 87.5,-59.5 + parent: 2 + - uid: 24730 + components: + - type: Transform + pos: 87.5,-58.5 + parent: 2 + - uid: 24731 + components: + - type: Transform + pos: 18.5,-74.5 + parent: 2 + - uid: 24732 + components: + - type: Transform + pos: 87.5,-56.5 + parent: 2 + - uid: 24733 + components: + - type: Transform + pos: 11.5,-69.5 + parent: 2 + - uid: 24734 + components: + - type: Transform + pos: 10.5,-74.5 + parent: 2 + - uid: 24735 + components: + - type: Transform + pos: 10.5,-75.5 + parent: 2 + - uid: 24736 + components: + - type: Transform + pos: 10.5,-77.5 + parent: 2 + - uid: 24737 + components: + - type: Transform + pos: -8.5,-73.5 + parent: 2 + - uid: 24738 + components: + - type: Transform + pos: 87.5,-55.5 + parent: 2 + - uid: 24739 + components: + - type: Transform + pos: 89.5,-56.5 + parent: 2 + - uid: 24740 + components: + - type: Transform + pos: 15.5,-74.5 + parent: 2 + - uid: 24741 + components: + - type: Transform + pos: 14.5,-74.5 + parent: 2 + - uid: 24742 + components: + - type: Transform + pos: 13.5,-74.5 + parent: 2 + - uid: 24743 + components: + - type: Transform + pos: 13.5,-75.5 + parent: 2 + - uid: 24744 + components: + - type: Transform + pos: 88.5,-56.5 + parent: 2 + - uid: 24745 + components: + - type: Transform + pos: 89.5,-58.5 + parent: 2 + - uid: 24746 + components: + - type: Transform + pos: 88.5,-58.5 + parent: 2 + - uid: 24747 + components: + - type: Transform + pos: 31.5,-61.5 + parent: 2 + - uid: 24748 + components: + - type: Transform + pos: 31.5,-62.5 + parent: 2 + - uid: 24749 + components: + - type: Transform + pos: -14.5,-74.5 + parent: 2 + - uid: 24750 + components: + - type: Transform + pos: -14.5,-75.5 + parent: 2 + - uid: 24751 + components: + - type: Transform + pos: -7.5,-73.5 + parent: 2 + - uid: 24752 + components: + - type: Transform + pos: 37.5,-70.5 + parent: 2 + - uid: 24753 + components: + - type: Transform + pos: 31.5,-65.5 + parent: 2 + - uid: 24754 + components: + - type: Transform + pos: 32.5,-68.5 + parent: 2 + - uid: 24755 + components: + - type: Transform + pos: 37.5,-71.5 + parent: 2 + - uid: 24756 + components: + - type: Transform + pos: -7.5,-69.5 + parent: 2 + - uid: 24757 + components: + - type: Transform + pos: -7.5,-68.5 + parent: 2 + - uid: 24758 + components: + - type: Transform + pos: 9.5,-77.5 + parent: 2 + - uid: 24759 + components: + - type: Transform + pos: 39.5,-72.5 + parent: 2 + - uid: 24760 + components: + - type: Transform + pos: 39.5,-73.5 + parent: 2 + - uid: 24761 + components: + - type: Transform + pos: 11.5,-85.5 + parent: 2 + - uid: 24762 + components: + - type: Transform + pos: -8.5,-69.5 + parent: 2 + - uid: 24763 + components: + - type: Transform + pos: 11.5,-86.5 + parent: 2 + - uid: 24764 + components: + - type: Transform + pos: 40.5,-73.5 + parent: 2 + - uid: 24765 + components: + - type: Transform + pos: 40.5,-74.5 + parent: 2 + - uid: 24766 + components: + - type: Transform + pos: 45.5,-74.5 + parent: 2 + - uid: 24767 + components: + - type: Transform + pos: 41.5,-74.5 + parent: 2 + - uid: 24768 + components: + - type: Transform + pos: 46.5,-74.5 + parent: 2 + - uid: 24769 + components: + - type: Transform + pos: 48.5,-69.5 + parent: 2 + - uid: 24770 + components: + - type: Transform + pos: 46.5,-73.5 + parent: 2 + - uid: 24771 + components: + - type: Transform + pos: 47.5,-73.5 + parent: 2 + - uid: 24772 + components: + - type: Transform + pos: 48.5,-70.5 + parent: 2 + - uid: 24773 + components: + - type: Transform + pos: 48.5,-71.5 + parent: 2 + - uid: 24774 + components: + - type: Transform + pos: 48.5,-73.5 + parent: 2 + - uid: 24775 + components: + - type: Transform + pos: 48.5,-72.5 + parent: 2 + - uid: 24776 + components: + - type: Transform + pos: 48.5,-68.5 + parent: 2 + - uid: 24777 + components: + - type: Transform + pos: 54.5,-63.5 + parent: 2 + - uid: 24778 + components: + - type: Transform + pos: 64.5,-60.5 + parent: 2 + - uid: 24779 + components: + - type: Transform + pos: 59.5,-60.5 + parent: 2 + - uid: 24780 + components: + - type: Transform + pos: 60.5,-63.5 + parent: 2 + - uid: 24781 + components: + - type: Transform + pos: 64.5,-63.5 + parent: 2 + - uid: 24782 + components: + - type: Transform + pos: 64.5,-64.5 + parent: 2 + - uid: 24783 + components: + - type: Transform + pos: 64.5,-65.5 + parent: 2 + - uid: 24784 + components: + - type: Transform + pos: 64.5,-66.5 + parent: 2 + - uid: 24785 + components: + - type: Transform + pos: -38.5,-48.5 + parent: 2 + - uid: 24786 + components: + - type: Transform + pos: 64.5,-67.5 + parent: 2 + - uid: 24787 + components: + - type: Transform + pos: 63.5,-67.5 + parent: 2 + - uid: 24788 + components: + - type: Transform + pos: -38.5,-47.5 + parent: 2 + - uid: 24789 + components: + - type: Transform + pos: 63.5,-68.5 + parent: 2 + - uid: 24790 + components: + - type: Transform + pos: 63.5,-69.5 + parent: 2 + - uid: 24791 + components: + - type: Transform + pos: 62.5,-69.5 + parent: 2 + - uid: 24792 + components: + - type: Transform + pos: 66.5,-73.5 + parent: 2 + - uid: 24793 + components: + - type: Transform + pos: 66.5,-72.5 + parent: 2 + - uid: 24794 + components: + - type: Transform + pos: 66.5,-71.5 + parent: 2 + - uid: 24795 + components: + - type: Transform + pos: 66.5,-70.5 + parent: 2 + - uid: 24796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-42.5 + parent: 2 + - uid: 24797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-45.5 + parent: 2 + - uid: 24798 + components: + - type: Transform + pos: 67.5,-70.5 + parent: 2 + - uid: 24799 + components: + - type: Transform + pos: 23.5,-59.5 + parent: 2 + - uid: 24800 + components: + - type: Transform + pos: 23.5,-61.5 + parent: 2 + - uid: 24801 + components: + - type: Transform + pos: 10.5,-57.5 + parent: 2 + - uid: 24802 + components: + - type: Transform + pos: 10.5,-56.5 + parent: 2 + - uid: 24803 + components: + - type: Transform + pos: 10.5,-55.5 + parent: 2 + - uid: 24804 + components: + - type: Transform + pos: 10.5,-54.5 + parent: 2 + - uid: 24805 + components: + - type: Transform + pos: 10.5,-53.5 + parent: 2 + - uid: 24806 + components: + - type: Transform + pos: 10.5,-52.5 + parent: 2 + - uid: 24807 + components: + - type: Transform + pos: 67.5,-69.5 + parent: 2 + - uid: 24808 + components: + - type: Transform + pos: 10.5,-50.5 + parent: 2 + - uid: 24809 + components: + - type: Transform + pos: 10.5,-49.5 + parent: 2 + - uid: 24810 + components: + - type: Transform + pos: 9.5,-49.5 + parent: 2 + - uid: 24811 + components: + - type: Transform + pos: 8.5,-49.5 + parent: 2 + - uid: 24812 + components: + - type: Transform + pos: 7.5,-49.5 + parent: 2 + - uid: 24813 + components: + - type: Transform + pos: 6.5,-49.5 + parent: 2 + - uid: 24814 + components: + - type: Transform + pos: 6.5,-50.5 + parent: 2 + - uid: 24815 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 2 + - uid: 24816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-46.5 + parent: 2 + - uid: 24817 + components: + - type: Transform + pos: 28.5,-57.5 + parent: 2 + - uid: 24818 + components: + - type: Transform + pos: 27.5,-57.5 + parent: 2 + - uid: 24819 + components: + - type: Transform + pos: 26.5,-57.5 + parent: 2 + - uid: 24820 + components: + - type: Transform + pos: 25.5,-57.5 + parent: 2 + - uid: 24821 + components: + - type: Transform + pos: 15.5,-63.5 + parent: 2 + - uid: 24822 + components: + - type: Transform + pos: 19.5,-64.5 + parent: 2 + - uid: 24823 + components: + - type: Transform + pos: 19.5,-65.5 + parent: 2 + - uid: 24824 + components: + - type: Transform + pos: 19.5,-66.5 + parent: 2 + - uid: 24825 + components: + - type: Transform + pos: 23.5,-63.5 + parent: 2 + - uid: 24826 + components: + - type: Transform + pos: 22.5,-67.5 + parent: 2 + - uid: 24827 + components: + - type: Transform + pos: 21.5,-67.5 + parent: 2 + - uid: 24828 + components: + - type: Transform + pos: 20.5,-67.5 + parent: 2 + - uid: 24829 + components: + - type: Transform + pos: 19.5,-67.5 + parent: 2 + - uid: 24830 + components: + - type: Transform + pos: 11.5,-63.5 + parent: 2 + - uid: 24831 + components: + - type: Transform + pos: 11.5,-64.5 + parent: 2 + - uid: 24832 + components: + - type: Transform + pos: 11.5,-65.5 + parent: 2 + - uid: 24833 + components: + - type: Transform + pos: 11.5,-66.5 + parent: 2 + - uid: 24834 + components: + - type: Transform + pos: 11.5,-67.5 + parent: 2 + - uid: 24835 + components: + - type: Transform + pos: 12.5,-67.5 + parent: 2 + - uid: 24836 + components: + - type: Transform + pos: 13.5,-67.5 + parent: 2 + - uid: 24837 + components: + - type: Transform + pos: 14.5,-67.5 + parent: 2 + - uid: 24838 + components: + - type: Transform + pos: 15.5,-67.5 + parent: 2 + - uid: 24839 + components: + - type: Transform + pos: 23.5,-67.5 + parent: 2 + - uid: 24840 + components: + - type: Transform + pos: 19.5,-63.5 + parent: 2 + - uid: 24841 + components: + - type: Transform + pos: 29.5,-54.5 + parent: 2 + - uid: 24842 + components: + - type: Transform + pos: 29.5,-55.5 + parent: 2 + - uid: 24843 + components: + - type: Transform + pos: 29.5,-56.5 + parent: 2 + - uid: 24844 + components: + - type: Transform + pos: 29.5,-57.5 + parent: 2 + - uid: 24845 + components: + - type: Transform + pos: 15.5,-64.5 + parent: 2 + - uid: 24846 + components: + - type: Transform + pos: 15.5,-65.5 + parent: 2 + - uid: 24847 + components: + - type: Transform + pos: 15.5,-66.5 + parent: 2 + - uid: 24848 + components: + - type: Transform + pos: 23.5,-64.5 + parent: 2 + - uid: 24849 + components: + - type: Transform + pos: 23.5,-65.5 + parent: 2 + - uid: 24850 + components: + - type: Transform + pos: 23.5,-66.5 + parent: 2 + - uid: 24851 + components: + - type: Transform + pos: 18.5,-67.5 + parent: 2 + - uid: 24852 + components: + - type: Transform + pos: 17.5,-67.5 + parent: 2 + - uid: 24853 + components: + - type: Transform + pos: 16.5,-67.5 + parent: 2 + - uid: 24854 + components: + - type: Transform + pos: 29.5,-49.5 + parent: 2 + - uid: 24855 + components: + - type: Transform + pos: 29.5,-45.5 + parent: 2 + - uid: 24856 + components: + - type: Transform + pos: 25.5,-41.5 + parent: 2 + - uid: 24857 + components: + - type: Transform + pos: 26.5,-41.5 + parent: 2 + - uid: 24858 + components: + - type: Transform + pos: 28.5,-41.5 + parent: 2 + - uid: 24859 + components: + - type: Transform + pos: 29.5,-41.5 + parent: 2 + - uid: 24860 + components: + - type: Transform + pos: 29.5,-42.5 + parent: 2 + - uid: 24861 + components: + - type: Transform + pos: 29.5,-43.5 + parent: 2 + - uid: 24862 + components: + - type: Transform + pos: 29.5,-44.5 + parent: 2 + - uid: 24863 + components: + - type: Transform + pos: 25.5,-45.5 + parent: 2 + - uid: 24864 + components: + - type: Transform + pos: 29.5,-46.5 + parent: 2 + - uid: 24865 + components: + - type: Transform + pos: 29.5,-47.5 + parent: 2 + - uid: 24866 + components: + - type: Transform + pos: 29.5,-48.5 + parent: 2 + - uid: 24867 + components: + - type: Transform + pos: 25.5,-49.5 + parent: 2 + - uid: 24868 + components: + - type: Transform + pos: 29.5,-50.5 + parent: 2 + - uid: 24869 + components: + - type: Transform + pos: 26.5,-53.5 + parent: 2 + - uid: 24870 + components: + - type: Transform + pos: 29.5,-51.5 + parent: 2 + - uid: 24871 + components: + - type: Transform + pos: 25.5,-53.5 + parent: 2 + - uid: 24872 + components: + - type: Transform + pos: 27.5,-53.5 + parent: 2 + - uid: 24873 + components: + - type: Transform + pos: 28.5,-53.5 + parent: 2 + - uid: 24874 + components: + - type: Transform + pos: 29.5,-53.5 + parent: 2 + - uid: 24875 + components: + - type: Transform + pos: 28.5,-49.5 + parent: 2 + - uid: 24876 + components: + - type: Transform + pos: 26.5,-49.5 + parent: 2 + - uid: 24877 + components: + - type: Transform + pos: 27.5,-49.5 + parent: 2 + - uid: 24878 + components: + - type: Transform + pos: 28.5,-45.5 + parent: 2 + - uid: 24879 + components: + - type: Transform + pos: 27.5,-45.5 + parent: 2 + - uid: 24880 + components: + - type: Transform + pos: 26.5,-45.5 + parent: 2 + - uid: 24881 + components: + - type: Transform + pos: 68.5,-69.5 + parent: 2 + - uid: 24882 + components: + - type: Transform + pos: 71.5,-69.5 + parent: 2 + - uid: 24883 + components: + - type: Transform + pos: 72.5,-69.5 + parent: 2 + - uid: 24884 + components: + - type: Transform + pos: 73.5,-69.5 + parent: 2 + - uid: 24885 + components: + - type: Transform + pos: 73.5,-68.5 + parent: 2 + - uid: 24886 + components: + - type: Transform + pos: 73.5,-67.5 + parent: 2 + - uid: 24887 + components: + - type: Transform + pos: 73.5,-66.5 + parent: 2 + - uid: 24888 + components: + - type: Transform + pos: 73.5,-65.5 + parent: 2 + - uid: 24889 + components: + - type: Transform + pos: 75.5,-65.5 + parent: 2 + - uid: 24890 + components: + - type: Transform + pos: 74.5,-65.5 + parent: 2 + - uid: 24891 + components: + - type: Transform + pos: 78.5,-65.5 + parent: 2 + - uid: 24892 + components: + - type: Transform + pos: 25.5,-87.5 + parent: 2 + - uid: 24893 + components: + - type: Transform + pos: 25.5,-88.5 + parent: 2 + - uid: 24894 + components: + - type: Transform + pos: 26.5,-88.5 + parent: 2 + - uid: 24895 + components: + - type: Transform + pos: 27.5,-88.5 + parent: 2 + - uid: 24896 + components: + - type: Transform + pos: 29.5,-88.5 + parent: 2 + - uid: 24897 + components: + - type: Transform + pos: 30.5,-88.5 + parent: 2 + - uid: 24898 + components: + - type: Transform + pos: 31.5,-88.5 + parent: 2 + - uid: 24899 + components: + - type: Transform + pos: 31.5,-87.5 + parent: 2 + - uid: 24900 + components: + - type: Transform + pos: 32.5,-87.5 + parent: 2 + - uid: 24901 + components: + - type: Transform + pos: 33.5,-87.5 + parent: 2 + - uid: 24902 + components: + - type: Transform + pos: 34.5,-87.5 + parent: 2 + - uid: 24903 + components: + - type: Transform + pos: -55.5,-19.5 + parent: 2 + - uid: 24904 + components: + - type: Transform + pos: 64.5,-57.5 + parent: 2 + - uid: 24905 + components: + - type: Transform + pos: 64.5,-58.5 + parent: 2 + - uid: 24906 + components: + - type: Transform + pos: 22.5,-88.5 + parent: 2 + - uid: 24907 + components: + - type: Transform + pos: 22.5,-87.5 + parent: 2 + - uid: 24908 + components: + - type: Transform + pos: 23.5,-87.5 + parent: 2 + - uid: 24909 + components: + - type: Transform + pos: 24.5,-87.5 + parent: 2 + - uid: 24910 + components: + - type: Transform + pos: 21.5,-89.5 + parent: 2 + - uid: 24911 + components: + - type: Transform + pos: 21.5,-90.5 + parent: 2 + - uid: 24912 + components: + - type: Transform + pos: 21.5,-91.5 + parent: 2 + - uid: 24913 + components: + - type: Transform + pos: 26.5,-94.5 + parent: 2 + - uid: 24914 + components: + - type: Transform + pos: 22.5,-93.5 + parent: 2 + - uid: 24915 + components: + - type: Transform + pos: 22.5,-94.5 + parent: 2 + - uid: 24916 + components: + - type: Transform + pos: 21.5,-92.5 + parent: 2 + - uid: 24917 + components: + - type: Transform + pos: 21.5,-93.5 + parent: 2 + - uid: 24918 + components: + - type: Transform + pos: 26.5,-90.5 + parent: 2 + - uid: 24919 + components: + - type: Transform + pos: 26.5,-89.5 + parent: 2 + - uid: 24920 + components: + - type: Transform + pos: 26.5,-93.5 + parent: 2 + - uid: 24921 + components: + - type: Transform + pos: 21.5,-88.5 + parent: 2 + - uid: 24922 + components: + - type: Transform + pos: 34.5,-88.5 + parent: 2 + - uid: 24923 + components: + - type: Transform + pos: 35.5,-88.5 + parent: 2 + - uid: 24924 + components: + - type: Transform + pos: 35.5,-89.5 + parent: 2 + - uid: 24925 + components: + - type: Transform + pos: 35.5,-90.5 + parent: 2 + - uid: 24926 + components: + - type: Transform + pos: 35.5,-91.5 + parent: 2 + - uid: 24927 + components: + - type: Transform + pos: 35.5,-92.5 + parent: 2 + - uid: 24928 + components: + - type: Transform + pos: 35.5,-93.5 + parent: 2 + - uid: 24929 + components: + - type: Transform + pos: 34.5,-93.5 + parent: 2 + - uid: 24930 + components: + - type: Transform + pos: 34.5,-94.5 + parent: 2 + - uid: 24931 + components: + - type: Transform + pos: 30.5,-89.5 + parent: 2 + - uid: 24932 + components: + - type: Transform + pos: 30.5,-90.5 + parent: 2 + - uid: 24933 + components: + - type: Transform + pos: 30.5,-94.5 + parent: 2 + - uid: 24934 + components: + - type: Transform + pos: 30.5,-93.5 + parent: 2 + - uid: 24935 + components: + - type: Transform + pos: 29.5,-94.5 + parent: 2 + - uid: 24936 + components: + - type: Transform + pos: 27.5,-94.5 + parent: 2 + - uid: 24937 + components: + - type: Transform + pos: 32.5,-118.5 + parent: 2 + - uid: 24938 + components: + - type: Transform + pos: 32.5,-117.5 + parent: 2 + - uid: 24939 + components: + - type: Transform + pos: 32.5,-116.5 + parent: 2 + - uid: 24940 + components: + - type: Transform + pos: 31.5,-118.5 + parent: 2 + - uid: 24941 + components: + - type: Transform + pos: 31.5,-117.5 + parent: 2 + - uid: 24942 + components: + - type: Transform + pos: 31.5,-116.5 + parent: 2 + - uid: 24943 + components: + - type: Transform + pos: 30.5,-118.5 + parent: 2 + - uid: 24944 + components: + - type: Transform + pos: 30.5,-117.5 + parent: 2 + - uid: 24945 + components: + - type: Transform + pos: 30.5,-116.5 + parent: 2 + - uid: 24946 + components: + - type: Transform + pos: 29.5,-118.5 + parent: 2 + - uid: 24947 + components: + - type: Transform + pos: 29.5,-117.5 + parent: 2 + - uid: 24948 + components: + - type: Transform + pos: 29.5,-116.5 + parent: 2 + - uid: 24949 + components: + - type: Transform + pos: 28.5,-118.5 + parent: 2 + - uid: 24950 + components: + - type: Transform + pos: 28.5,-117.5 + parent: 2 + - uid: 24951 + components: + - type: Transform + pos: 28.5,-116.5 + parent: 2 + - uid: 24952 + components: + - type: Transform + pos: 27.5,-118.5 + parent: 2 + - uid: 24953 + components: + - type: Transform + pos: 27.5,-117.5 + parent: 2 + - uid: 24954 + components: + - type: Transform + pos: 27.5,-116.5 + parent: 2 + - uid: 24955 + components: + - type: Transform + pos: 26.5,-118.5 + parent: 2 + - uid: 24956 + components: + - type: Transform + pos: 26.5,-117.5 + parent: 2 + - uid: 24957 + components: + - type: Transform + pos: 26.5,-116.5 + parent: 2 + - uid: 24958 + components: + - type: Transform + pos: 25.5,-118.5 + parent: 2 + - uid: 24959 + components: + - type: Transform + pos: 25.5,-117.5 + parent: 2 + - uid: 24960 + components: + - type: Transform + pos: 25.5,-116.5 + parent: 2 + - uid: 24961 + components: + - type: Transform + pos: 24.5,-118.5 + parent: 2 + - uid: 24962 + components: + - type: Transform + pos: 24.5,-117.5 + parent: 2 + - uid: 24963 + components: + - type: Transform + pos: 24.5,-116.5 + parent: 2 + - uid: 24964 + components: + - type: Transform + pos: 33.5,-117.5 + parent: 2 + - uid: 24965 + components: + - type: Transform + pos: 33.5,-116.5 + parent: 2 + - uid: 24966 + components: + - type: Transform + pos: 33.5,-115.5 + parent: 2 + - uid: 24967 + components: + - type: Transform + pos: 33.5,-114.5 + parent: 2 + - uid: 24968 + components: + - type: Transform + pos: 33.5,-113.5 + parent: 2 + - uid: 24969 + components: + - type: Transform + pos: 33.5,-112.5 + parent: 2 + - uid: 24970 + components: + - type: Transform + pos: 33.5,-111.5 + parent: 2 + - uid: 24971 + components: + - type: Transform + pos: 33.5,-110.5 + parent: 2 + - uid: 24972 + components: + - type: Transform + pos: 33.5,-109.5 + parent: 2 + - uid: 24973 + components: + - type: Transform + pos: 34.5,-116.5 + parent: 2 + - uid: 24974 + components: + - type: Transform + pos: 34.5,-115.5 + parent: 2 + - uid: 24975 + components: + - type: Transform + pos: 34.5,-114.5 + parent: 2 + - uid: 24976 + components: + - type: Transform + pos: 34.5,-113.5 + parent: 2 + - uid: 24977 + components: + - type: Transform + pos: 34.5,-112.5 + parent: 2 + - uid: 24978 + components: + - type: Transform + pos: 34.5,-111.5 + parent: 2 + - uid: 24979 + components: + - type: Transform + pos: 34.5,-110.5 + parent: 2 + - uid: 24980 + components: + - type: Transform + pos: 34.5,-109.5 + parent: 2 + - uid: 24981 + components: + - type: Transform + pos: 34.5,-108.5 + parent: 2 + - uid: 24982 + components: + - type: Transform + pos: 34.5,-107.5 + parent: 2 + - uid: 24983 + components: + - type: Transform + pos: 34.5,-106.5 + parent: 2 + - uid: 24984 + components: + - type: Transform + pos: 34.5,-105.5 + parent: 2 + - uid: 24985 + components: + - type: Transform + pos: 34.5,-104.5 + parent: 2 + - uid: 24986 + components: + - type: Transform + pos: 34.5,-103.5 + parent: 2 + - uid: 24987 + components: + - type: Transform + pos: 34.5,-102.5 + parent: 2 + - uid: 24988 + components: + - type: Transform + pos: 33.5,-102.5 + parent: 2 + - uid: 24989 + components: + - type: Transform + pos: 33.5,-101.5 + parent: 2 + - uid: 24990 + components: + - type: Transform + pos: 33.5,-100.5 + parent: 2 + - uid: 24991 + components: + - type: Transform + pos: 33.5,-99.5 + parent: 2 + - uid: 24992 + components: + - type: Transform + pos: 33.5,-98.5 + parent: 2 + - uid: 24993 + components: + - type: Transform + pos: 33.5,-97.5 + parent: 2 + - uid: 24994 + components: + - type: Transform + pos: 34.5,-97.5 + parent: 2 + - uid: 24995 + components: + - type: Transform + pos: 34.5,-96.5 + parent: 2 + - uid: 24996 + components: + - type: Transform + pos: 34.5,-95.5 + parent: 2 + - uid: 24997 + components: + - type: Transform + pos: 32.5,-115.5 + parent: 2 + - uid: 24998 + components: + - type: Transform + pos: 32.5,-114.5 + parent: 2 + - uid: 24999 + components: + - type: Transform + pos: 32.5,-113.5 + parent: 2 + - uid: 25000 + components: + - type: Transform + pos: 24.5,-115.5 + parent: 2 + - uid: 25001 + components: + - type: Transform + pos: 24.5,-114.5 + parent: 2 + - uid: 25002 + components: + - type: Transform + pos: 24.5,-113.5 + parent: 2 + - uid: 25003 + components: + - type: Transform + pos: 23.5,-117.5 + parent: 2 + - uid: 25004 + components: + - type: Transform + pos: 23.5,-116.5 + parent: 2 + - uid: 25005 + components: + - type: Transform + pos: 23.5,-115.5 + parent: 2 + - uid: 25006 + components: + - type: Transform + pos: 23.5,-114.5 + parent: 2 + - uid: 25007 + components: + - type: Transform + pos: 23.5,-113.5 + parent: 2 + - uid: 25008 + components: + - type: Transform + pos: 23.5,-112.5 + parent: 2 + - uid: 25009 + components: + - type: Transform + pos: 23.5,-111.5 + parent: 2 + - uid: 25010 + components: + - type: Transform + pos: 23.5,-110.5 + parent: 2 + - uid: 25011 + components: + - type: Transform + pos: 23.5,-109.5 + parent: 2 + - uid: 25012 + components: + - type: Transform + pos: 22.5,-116.5 + parent: 2 + - uid: 25013 + components: + - type: Transform + pos: 22.5,-115.5 + parent: 2 + - uid: 25014 + components: + - type: Transform + pos: 22.5,-114.5 + parent: 2 + - uid: 25015 + components: + - type: Transform + pos: 22.5,-113.5 + parent: 2 + - uid: 25016 + components: + - type: Transform + pos: 22.5,-112.5 + parent: 2 + - uid: 25017 + components: + - type: Transform + pos: 22.5,-111.5 + parent: 2 + - uid: 25018 + components: + - type: Transform + pos: 22.5,-110.5 + parent: 2 + - uid: 25019 + components: + - type: Transform + pos: 22.5,-109.5 + parent: 2 + - uid: 25020 + components: + - type: Transform + pos: 22.5,-108.5 + parent: 2 + - uid: 25021 + components: + - type: Transform + pos: 22.5,-107.5 + parent: 2 + - uid: 25022 + components: + - type: Transform + pos: 22.5,-106.5 + parent: 2 + - uid: 25023 + components: + - type: Transform + pos: 22.5,-105.5 + parent: 2 + - uid: 25024 + components: + - type: Transform + pos: 22.5,-104.5 + parent: 2 + - uid: 25025 + components: + - type: Transform + pos: 22.5,-103.5 + parent: 2 + - uid: 25026 + components: + - type: Transform + pos: 22.5,-102.5 + parent: 2 + - uid: 25027 + components: + - type: Transform + pos: 23.5,-102.5 + parent: 2 + - uid: 25028 + components: + - type: Transform + pos: 23.5,-101.5 + parent: 2 + - uid: 25029 + components: + - type: Transform + pos: 23.5,-100.5 + parent: 2 + - uid: 25030 + components: + - type: Transform + pos: 23.5,-99.5 + parent: 2 + - uid: 25031 + components: + - type: Transform + pos: 23.5,-98.5 + parent: 2 + - uid: 25032 + components: + - type: Transform + pos: 23.5,-97.5 + parent: 2 + - uid: 25033 + components: + - type: Transform + pos: 22.5,-97.5 + parent: 2 + - uid: 25034 + components: + - type: Transform + pos: 22.5,-96.5 + parent: 2 + - uid: 25035 + components: + - type: Transform + pos: 22.5,-95.5 + parent: 2 + - uid: 25036 + components: + - type: Transform + pos: 31.5,-95.5 + parent: 2 + - uid: 25037 + components: + - type: Transform + pos: 31.5,-96.5 + parent: 2 + - uid: 25038 + components: + - type: Transform + pos: 31.5,-97.5 + parent: 2 + - uid: 25039 + components: + - type: Transform + pos: 31.5,-98.5 + parent: 2 + - uid: 25040 + components: + - type: Transform + pos: 64.5,-59.5 + parent: 2 + - uid: 25041 + components: + - type: Transform + pos: 31.5,-100.5 + parent: 2 + - uid: 25042 + components: + - type: Transform + pos: 31.5,-101.5 + parent: 2 + - uid: 25043 + components: + - type: Transform + pos: 31.5,-102.5 + parent: 2 + - uid: 25044 + components: + - type: Transform + pos: 31.5,-103.5 + parent: 2 + - uid: 25045 + components: + - type: Transform + pos: 31.5,-104.5 + parent: 2 + - uid: 25046 + components: + - type: Transform + pos: 31.5,-105.5 + parent: 2 + - uid: 25047 + components: + - type: Transform + pos: 31.5,-106.5 + parent: 2 + - uid: 25048 + components: + - type: Transform + pos: 31.5,-107.5 + parent: 2 + - uid: 25049 + components: + - type: Transform + pos: 32.5,-104.5 + parent: 2 + - uid: 25050 + components: + - type: Transform + pos: 32.5,-105.5 + parent: 2 + - uid: 25051 + components: + - type: Transform + pos: 32.5,-106.5 + parent: 2 + - uid: 25052 + components: + - type: Transform + pos: 32.5,-107.5 + parent: 2 + - uid: 25053 + components: + - type: Transform + pos: 32.5,-108.5 + parent: 2 + - uid: 25054 + components: + - type: Transform + pos: 24.5,-104.5 + parent: 2 + - uid: 25055 + components: + - type: Transform + pos: 24.5,-105.5 + parent: 2 + - uid: 25056 + components: + - type: Transform + pos: 24.5,-106.5 + parent: 2 + - uid: 25057 + components: + - type: Transform + pos: 24.5,-107.5 + parent: 2 + - uid: 25058 + components: + - type: Transform + pos: 24.5,-108.5 + parent: 2 + - uid: 25059 + components: + - type: Transform + pos: 25.5,-107.5 + parent: 2 + - uid: 25060 + components: + - type: Transform + pos: 25.5,-106.5 + parent: 2 + - uid: 25061 + components: + - type: Transform + pos: 25.5,-105.5 + parent: 2 + - uid: 25062 + components: + - type: Transform + pos: 25.5,-104.5 + parent: 2 + - uid: 25063 + components: + - type: Transform + pos: 25.5,-103.5 + parent: 2 + - uid: 25064 + components: + - type: Transform + pos: 25.5,-102.5 + parent: 2 + - uid: 25065 + components: + - type: Transform + pos: 25.5,-101.5 + parent: 2 + - uid: 25066 + components: + - type: Transform + pos: 25.5,-100.5 + parent: 2 + - uid: 25067 + components: + - type: Transform + pos: 59.5,-63.5 + parent: 2 + - uid: 25068 + components: + - type: Transform + pos: 25.5,-98.5 + parent: 2 + - uid: 25069 + components: + - type: Transform + pos: 25.5,-97.5 + parent: 2 + - uid: 25070 + components: + - type: Transform + pos: 25.5,-96.5 + parent: 2 + - uid: 25071 + components: + - type: Transform + pos: 25.5,-95.5 + parent: 2 + - uid: 25072 + components: + - type: Transform + pos: 30.5,-104.5 + parent: 2 + - uid: 25073 + components: + - type: Transform + pos: 29.5,-104.5 + parent: 2 + - uid: 25074 + components: + - type: Transform + pos: 27.5,-104.5 + parent: 2 + - uid: 25075 + components: + - type: Transform + pos: 26.5,-104.5 + parent: 2 + - uid: 25076 + components: + - type: Transform + pos: 29.5,-111.5 + parent: 2 + - uid: 25077 + components: + - type: Transform + pos: 29.5,-112.5 + parent: 2 + - uid: 25078 + components: + - type: Transform + pos: 29.5,-113.5 + parent: 2 + - uid: 25079 + components: + - type: Transform + pos: 27.5,-111.5 + parent: 2 + - uid: 25080 + components: + - type: Transform + pos: 27.5,-112.5 + parent: 2 + - uid: 25081 + components: + - type: Transform + pos: 27.5,-113.5 + parent: 2 + - uid: 25082 + components: + - type: Transform + pos: 28.5,-112.5 + parent: 2 + - uid: 25083 + components: + - type: Transform + pos: 32.5,-111.5 + parent: 2 + - uid: 25084 + components: + - type: Transform + pos: 32.5,-110.5 + parent: 2 + - uid: 25085 + components: + - type: Transform + pos: 32.5,-109.5 + parent: 2 + - uid: 25086 + components: + - type: Transform + pos: 24.5,-111.5 + parent: 2 + - uid: 25087 + components: + - type: Transform + pos: 24.5,-110.5 + parent: 2 + - uid: 25088 + components: + - type: Transform + pos: 24.5,-109.5 + parent: 2 + - uid: 25089 + components: + - type: Transform + pos: 6.5,-68.5 + parent: 2 + - uid: 25090 + components: + - type: Transform + pos: 11.5,-87.5 + parent: 2 + - uid: 25091 + components: + - type: Transform + pos: 10.5,-87.5 + parent: 2 + - uid: 25092 + components: + - type: Transform + pos: 55.5,-60.5 + parent: 2 + - uid: 25093 + components: + - type: Transform + pos: 6.5,-69.5 + parent: 2 + - uid: 25094 + components: + - type: Transform + pos: 7.5,-69.5 + parent: 2 + - uid: 25095 + components: + - type: Transform + pos: -11.5,-87.5 + parent: 2 + - uid: 25096 + components: + - type: Transform + pos: -12.5,-87.5 + parent: 2 + - uid: 25097 + components: + - type: Transform + pos: -13.5,-87.5 + parent: 2 + - uid: 25098 + components: + - type: Transform + pos: -14.5,-87.5 + parent: 2 + - uid: 25099 + components: + - type: Transform + pos: -15.5,-87.5 + parent: 2 + - uid: 25100 + components: + - type: Transform + pos: -16.5,-87.5 + parent: 2 + - uid: 25101 + components: + - type: Transform + pos: -21.5,-87.5 + parent: 2 + - uid: 25102 + components: + - type: Transform + pos: -20.5,-87.5 + parent: 2 + - uid: 25103 + components: + - type: Transform + pos: -20.5,-88.5 + parent: 2 + - uid: 25104 + components: + - type: Transform + pos: -20.5,-77.5 + parent: 2 + - uid: 25105 + components: + - type: Transform + pos: -20.5,-78.5 + parent: 2 + - uid: 25106 + components: + - type: Transform + pos: -20.5,-79.5 + parent: 2 + - uid: 25107 + components: + - type: Transform + pos: -20.5,-80.5 + parent: 2 + - uid: 25108 + components: + - type: Transform + pos: -20.5,-81.5 + parent: 2 + - uid: 25109 + components: + - type: Transform + pos: -20.5,-82.5 + parent: 2 + - uid: 25110 + components: + - type: Transform + pos: -20.5,-83.5 + parent: 2 + - uid: 25111 + components: + - type: Transform + pos: 51.5,-60.5 + parent: 2 + - uid: 25112 + components: + - type: Transform + pos: 50.5,-60.5 + parent: 2 + - uid: 25113 + components: + - type: Transform + pos: 55.5,-63.5 + parent: 2 + - uid: 25114 + components: + - type: Transform + pos: 50.5,-59.5 + parent: 2 + - uid: 25115 + components: + - type: Transform + pos: 31.5,-64.5 + parent: 2 + - uid: 25116 + components: + - type: Transform + pos: 31.5,-63.5 + parent: 2 + - uid: 25117 + components: + - type: Transform + pos: -16.5,-34.5 + parent: 2 + - uid: 25118 + components: + - type: Transform + pos: -9.5,-77.5 + parent: 2 + - uid: 25119 + components: + - type: Transform + pos: -10.5,-77.5 + parent: 2 + - uid: 25120 + components: + - type: Transform + pos: -9.5,-78.5 + parent: 2 + - uid: 25121 + components: + - type: Transform + pos: 8.5,-77.5 + parent: 2 + - uid: 25122 + components: + - type: Transform + pos: -11.5,-75.5 + parent: 2 + - uid: 25123 + components: + - type: Transform + pos: 8.5,-78.5 + parent: 2 + - uid: 25124 + components: + - type: Transform + pos: -11.5,37.5 + parent: 2 + - uid: 25125 + components: + - type: Transform + pos: -12.5,37.5 + parent: 2 + - uid: 25126 + components: + - type: Transform + pos: -14.5,-45.5 + parent: 2 + - uid: 25127 + components: + - type: Transform + pos: -13.5,-45.5 + parent: 2 + - uid: 25128 + components: + - type: Transform + pos: -16.5,-45.5 + parent: 2 + - uid: 25129 + components: + - type: Transform + pos: -15.5,-45.5 + parent: 2 + - uid: 25130 + components: + - type: Transform + pos: -11.5,-41.5 + parent: 2 + - uid: 25131 + components: + - type: Transform + pos: -11.5,-42.5 + parent: 2 + - uid: 25132 + components: + - type: Transform + pos: -11.5,-43.5 + parent: 2 + - uid: 25133 + components: + - type: Transform + pos: -19.5,-62.5 + parent: 2 + - uid: 25134 + components: + - type: Transform + pos: -19.5,-63.5 + parent: 2 + - uid: 25135 + components: + - type: Transform + pos: -19.5,-65.5 + parent: 2 + - uid: 25136 + components: + - type: Transform + pos: -19.5,-64.5 + parent: 2 + - uid: 25137 + components: + - type: Transform + pos: -19.5,-61.5 + parent: 2 + - uid: 25138 + components: + - type: Transform + pos: -20.5,-61.5 + parent: 2 + - uid: 25139 + components: + - type: Transform + pos: -29.5,-66.5 + parent: 2 + - uid: 25140 + components: + - type: Transform + pos: -36.5,-52.5 + parent: 2 + - uid: 25141 + components: + - type: Transform + pos: -37.5,-53.5 + parent: 2 + - uid: 25142 + components: + - type: Transform + pos: -36.5,-53.5 + parent: 2 + - uid: 25143 + components: + - type: Transform + pos: -38.5,-53.5 + parent: 2 + - uid: 25144 + components: + - type: Transform + pos: -39.5,-53.5 + parent: 2 + - uid: 25145 + components: + - type: Transform + pos: -39.5,-54.5 + parent: 2 + - uid: 25146 + components: + - type: Transform + pos: -39.5,-55.5 + parent: 2 + - uid: 25147 + components: + - type: Transform + pos: -39.5,-56.5 + parent: 2 + - uid: 25148 + components: + - type: Transform + pos: -39.5,-57.5 + parent: 2 + - uid: 25149 + components: + - type: Transform + pos: -39.5,-58.5 + parent: 2 + - uid: 25150 + components: + - type: Transform + pos: -32.5,-66.5 + parent: 2 + - uid: 25151 + components: + - type: Transform + pos: -33.5,-66.5 + parent: 2 + - uid: 25152 + components: + - type: Transform + pos: -34.5,-66.5 + parent: 2 + - uid: 25153 + components: + - type: Transform + pos: -35.5,-66.5 + parent: 2 + - uid: 25154 + components: + - type: Transform + pos: -35.5,-64.5 + parent: 2 + - uid: 25155 + components: + - type: Transform + pos: -29.5,-63.5 + parent: 2 + - uid: 25156 + components: + - type: Transform + pos: -30.5,-66.5 + parent: 2 + - uid: 25157 + components: + - type: Transform + pos: -30.5,-61.5 + parent: 2 + - uid: 25158 + components: + - type: Transform + pos: -28.5,-66.5 + parent: 2 + - uid: 25159 + components: + - type: Transform + pos: -30.5,-62.5 + parent: 2 + - uid: 25160 + components: + - type: Transform + pos: -30.5,-63.5 + parent: 2 + - uid: 25161 + components: + - type: Transform + pos: -32.5,-71.5 + parent: 2 + - uid: 25162 + components: + - type: Transform + pos: -33.5,-71.5 + parent: 2 + - uid: 25163 + components: + - type: Transform + pos: -41.5,-47.5 + parent: 2 + - uid: 25164 + components: + - type: Transform + pos: -42.5,-47.5 + parent: 2 + - uid: 25165 + components: + - type: Transform + pos: -33.5,-72.5 + parent: 2 + - uid: 25166 + components: + - type: Transform + pos: -30.5,-71.5 + parent: 2 + - uid: 25167 + components: + - type: Transform + pos: -29.5,-71.5 + parent: 2 + - uid: 25168 + components: + - type: Transform + pos: -29.5,-72.5 + parent: 2 + - uid: 25169 + components: + - type: Transform + pos: -29.5,-73.5 + parent: 2 + - uid: 25170 + components: + - type: Transform + pos: -29.5,-75.5 + parent: 2 + - uid: 25171 + components: + - type: Transform + pos: -28.5,-74.5 + parent: 2 + - uid: 25172 + components: + - type: Transform + pos: -29.5,-74.5 + parent: 2 + - uid: 25173 + components: + - type: Transform + pos: 10.5,-68.5 + parent: 2 + - uid: 25174 + components: + - type: Transform + pos: -20.5,-44.5 + parent: 2 + - uid: 25175 + components: + - type: Transform + pos: -29.5,-42.5 + parent: 2 + - uid: 25176 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 2 + - uid: 25177 + components: + - type: Transform + pos: -30.5,-42.5 + parent: 2 + - uid: 25178 + components: + - type: Transform + pos: -18.5,-43.5 + parent: 2 + - uid: 25179 + components: + - type: Transform + pos: -31.5,-42.5 + parent: 2 + - uid: 25180 + components: + - type: Transform + pos: -32.5,-42.5 + parent: 2 + - uid: 25181 + components: + - type: Transform + pos: -33.5,-42.5 + parent: 2 + - uid: 25182 + components: + - type: Transform + pos: -34.5,-42.5 + parent: 2 + - uid: 25183 + components: + - type: Transform + pos: -19.5,-46.5 + parent: 2 + - uid: 25184 + components: + - type: Transform + pos: -20.5,-43.5 + parent: 2 + - uid: 25185 + components: + - type: Transform + pos: -39.5,-42.5 + parent: 2 + - uid: 25186 + components: + - type: Transform + pos: 33.5,-83.5 + parent: 2 + - uid: 25187 + components: + - type: Transform + pos: 32.5,-83.5 + parent: 2 + - uid: 25188 + components: + - type: Transform + pos: 31.5,-83.5 + parent: 2 + - uid: 25189 + components: + - type: Transform + pos: 30.5,-82.5 + parent: 2 + - uid: 25190 + components: + - type: Transform + pos: 29.5,-82.5 + parent: 2 + - uid: 25191 + components: + - type: Transform + pos: 27.5,-82.5 + parent: 2 + - uid: 25192 + components: + - type: Transform + pos: 26.5,-82.5 + parent: 2 + - uid: 25193 + components: + - type: Transform + pos: 34.5,-86.5 + parent: 2 + - uid: 25194 + components: + - type: Transform + pos: 34.5,-83.5 + parent: 2 + - uid: 25195 + components: + - type: Transform + pos: 34.5,-86.5 + parent: 2 + - uid: 25196 + components: + - type: Transform + pos: 21.5,39.5 + parent: 2 + - uid: 25197 + components: + - type: Transform + pos: 26.5,34.5 + parent: 2 + - uid: 25198 + components: + - type: Transform + pos: 34.5,-85.5 + parent: 2 + - uid: 25199 + components: + - type: Transform + pos: 25.5,-86.5 + parent: 2 + - uid: 25200 + components: + - type: Transform + pos: 25.5,-85.5 + parent: 2 + - uid: 25201 + components: + - type: Transform + pos: 25.5,-84.5 + parent: 2 + - uid: 25202 + components: + - type: Transform + pos: 25.5,-83.5 + parent: 2 + - uid: 25203 + components: + - type: Transform + pos: 25.5,-82.5 + parent: 2 + - uid: 25204 + components: + - type: Transform + pos: 24.5,-82.5 + parent: 2 + - uid: 25205 + components: + - type: Transform + pos: 38.5,-71.5 + parent: 2 + - uid: 25206 + components: + - type: Transform + pos: 33.5,-70.5 + parent: 2 + - uid: 25207 + components: + - type: Transform + pos: 33.5,-69.5 + parent: 2 + - uid: 25208 + components: + - type: Transform + pos: 33.5,-68.5 + parent: 2 + - uid: 25209 + components: + - type: Transform + pos: 31.5,-68.5 + parent: 2 + - uid: 25210 + components: + - type: Transform + pos: 31.5,-66.5 + parent: 2 + - uid: 25211 + components: + - type: Transform + pos: 31.5,-67.5 + parent: 2 + - uid: 25212 + components: + - type: Transform + pos: 39.5,-71.5 + parent: 2 + - uid: 25213 + components: + - type: Transform + pos: 34.5,-70.5 + parent: 2 + - uid: 25214 + components: + - type: Transform + pos: 35.5,-70.5 + parent: 2 + - uid: 25215 + components: + - type: Transform + pos: 36.5,-70.5 + parent: 2 + - uid: 25216 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 + - uid: 25217 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 2 + - uid: 25218 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 2 + - uid: 25219 + components: + - type: Transform + pos: 17.5,39.5 + parent: 2 + - uid: 25220 + components: + - type: Transform + pos: 30.5,25.5 + parent: 2 + - uid: 25221 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 2 + - uid: 25222 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 + - uid: 25223 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 2 + - uid: 25224 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 2 + - uid: 25225 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 2 + - uid: 25226 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 + - uid: 25227 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 2 + - uid: 25228 + components: + - type: Transform + pos: -15.5,3.5 + parent: 2 + - uid: 25229 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 2 + - uid: 25230 + components: + - type: Transform + pos: -15.5,2.5 + parent: 2 + - uid: 25231 + components: + - type: Transform + pos: -15.5,1.5 + parent: 2 + - uid: 25232 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - uid: 25233 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 2 + - uid: 25234 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 2 + - uid: 25235 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 2 + - uid: 25236 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 25237 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 25238 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 25239 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 + - uid: 25240 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 2 + - uid: 25241 + components: + - type: Transform + pos: -2.5,-27.5 + parent: 2 + - uid: 25242 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 25243 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 2 + - uid: 25244 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 2 + - uid: 25245 + components: + - type: Transform + pos: -5.5,-20.5 + parent: 2 + - uid: 25246 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 2 + - uid: 25247 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 + - uid: 25248 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 2 + - uid: 25249 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 2 + - uid: 25250 + components: + - type: Transform + pos: -44.5,-29.5 + parent: 2 + - uid: 25251 + components: + - type: Transform + pos: -43.5,-29.5 + parent: 2 + - uid: 25252 + components: + - type: Transform + pos: -42.5,-29.5 + parent: 2 + - uid: 25253 + components: + - type: Transform + pos: 27.5,16.5 + parent: 2 + - uid: 25254 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 25255 + components: + - type: Transform + pos: 26.5,16.5 + parent: 2 + - uid: 25256 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 25257 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 25258 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 + - uid: 25259 + components: + - type: Transform + pos: -40.5,-32.5 + parent: 2 + - uid: 25260 + components: + - type: Transform + pos: 45.5,13.5 + parent: 2 + - uid: 25261 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 2 + - uid: 25262 + components: + - type: Transform + pos: 81.5,-55.5 + parent: 2 + - uid: 25263 + components: + - type: Transform + pos: -55.5,-20.5 + parent: 2 + - uid: 25264 + components: + - type: Transform + pos: -8.5,42.5 + parent: 2 + - uid: 25265 + components: + - type: Transform + pos: -7.5,38.5 + parent: 2 + - uid: 25266 + components: + - type: Transform + pos: -7.5,39.5 + parent: 2 + - uid: 25267 + components: + - type: Transform + pos: -12.5,40.5 + parent: 2 + - uid: 25268 + components: + - type: Transform + pos: -11.5,42.5 + parent: 2 + - uid: 25269 + components: + - type: Transform + pos: -3.5,43.5 + parent: 2 + - uid: 25270 + components: + - type: Transform + pos: -3.5,42.5 + parent: 2 + - uid: 25271 + components: + - type: Transform + pos: -3.5,41.5 + parent: 2 + - uid: 25272 + components: + - type: Transform + pos: -20.5,22.5 + parent: 2 + - uid: 25273 + components: + - type: Transform + pos: -20.5,21.5 + parent: 2 + - uid: 25274 + components: + - type: Transform + pos: 27.5,7.5 + parent: 2 + - uid: 25275 + components: + - type: Transform + pos: 42.5,12.5 + parent: 2 + - uid: 25276 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - uid: 25277 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 + - uid: 25278 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 + - uid: 25279 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 25280 + components: + - type: Transform + pos: 38.5,14.5 + parent: 2 + - uid: 25281 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 + - uid: 25282 + components: + - type: Transform + pos: 28.5,22.5 + parent: 2 + - uid: 25283 + components: + - type: Transform + pos: 28.5,21.5 + parent: 2 + - uid: 25284 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 25285 + components: + - type: Transform + pos: 28.5,24.5 + parent: 2 + - uid: 25286 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 + - uid: 25287 + components: + - type: Transform + pos: 20.5,31.5 + parent: 2 + - uid: 25288 + components: + - type: Transform + pos: 24.5,43.5 + parent: 2 + - uid: 25289 + components: + - type: Transform + pos: 26.5,31.5 + parent: 2 + - uid: 25290 + components: + - type: Transform + pos: 25.5,43.5 + parent: 2 + - uid: 25291 + components: + - type: Transform + pos: 21.5,38.5 + parent: 2 + - uid: 25292 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 + - uid: 25293 + components: + - type: Transform + pos: 26.5,35.5 + parent: 2 + - uid: 25294 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 + - uid: 25295 + components: + - type: Transform + pos: 23.5,43.5 + parent: 2 + - uid: 25296 + components: + - type: Transform + pos: 21.5,31.5 + parent: 2 + - uid: 25297 + components: + - type: Transform + pos: 22.5,31.5 + parent: 2 + - uid: 25298 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - uid: 25299 + components: + - type: Transform + pos: 25.5,38.5 + parent: 2 + - uid: 25300 + components: + - type: Transform + pos: 26.5,33.5 + parent: 2 + - uid: 25301 + components: + - type: Transform + pos: 26.5,32.5 + parent: 2 + - uid: 25302 + components: + - type: Transform + pos: 37.5,4.5 + parent: 2 + - uid: 25303 + components: + - type: Transform + pos: 25.5,37.5 + parent: 2 + - uid: 25304 + components: + - type: Transform + pos: 4.5,34.5 + parent: 2 + - uid: 25305 + components: + - type: Transform + pos: 5.5,33.5 + parent: 2 + - uid: 25306 + components: + - type: Transform + pos: 5.5,34.5 + parent: 2 + - uid: 25307 + components: + - type: Transform + pos: 5.5,35.5 + parent: 2 + - uid: 25308 + components: + - type: Transform + pos: -3.5,31.5 + parent: 2 + - uid: 25309 + components: + - type: Transform + pos: -1.5,34.5 + parent: 2 + - uid: 25310 + components: + - type: Transform + pos: -2.5,34.5 + parent: 2 + - uid: 25311 + components: + - type: Transform + pos: -3.5,33.5 + parent: 2 + - uid: 25312 + components: + - type: Transform + pos: -3.5,34.5 + parent: 2 + - uid: 25313 + components: + - type: Transform + pos: -3.5,35.5 + parent: 2 + - uid: 25314 + components: + - type: Transform + pos: -3.5,36.5 + parent: 2 + - uid: 25315 + components: + - type: Transform + pos: -3.5,37.5 + parent: 2 + - uid: 25316 + components: + - type: Transform + pos: -3.5,38.5 + parent: 2 + - uid: 25317 + components: + - type: Transform + pos: -3.5,39.5 + parent: 2 + - uid: 25318 + components: + - type: Transform + pos: -3.5,40.5 + parent: 2 + - uid: 25319 + components: + - type: Transform + pos: -2.5,40.5 + parent: 2 + - uid: 25320 + components: + - type: Transform + pos: -1.5,40.5 + parent: 2 + - uid: 25321 + components: + - type: Transform + pos: 4.5,40.5 + parent: 2 + - uid: 25322 + components: + - type: Transform + pos: 5.5,38.5 + parent: 2 + - uid: 25323 + components: + - type: Transform + pos: 5.5,39.5 + parent: 2 + - uid: 25324 + components: + - type: Transform + pos: 5.5,40.5 + parent: 2 + - uid: 25325 + components: + - type: Transform + pos: 5.5,41.5 + parent: 2 + - uid: 25326 + components: + - type: Transform + pos: 5.5,42.5 + parent: 2 + - uid: 25327 + components: + - type: Transform + pos: 29.5,27.5 + parent: 2 + - uid: 25328 + components: + - type: Transform + pos: 27.5,20.5 + parent: 2 + - uid: 25329 + components: + - type: Transform + pos: 16.5,42.5 + parent: 2 + - uid: 25330 + components: + - type: Transform + pos: 11.5,41.5 + parent: 2 + - uid: 25331 + components: + - type: Transform + pos: 11.5,39.5 + parent: 2 + - uid: 25332 + components: + - type: Transform + pos: 6.5,42.5 + parent: 2 + - uid: 25333 + components: + - type: Transform + pos: 11.5,42.5 + parent: 2 + - uid: 25334 + components: + - type: Transform + pos: 17.5,42.5 + parent: 2 + - uid: 25335 + components: + - type: Transform + pos: 17.5,41.5 + parent: 2 + - uid: 25336 + components: + - type: Transform + pos: 17.5,40.5 + parent: 2 + - uid: 25337 + components: + - type: Transform + pos: 10.5,29.5 + parent: 2 + - uid: 25338 + components: + - type: Transform + pos: 9.5,29.5 + parent: 2 + - uid: 25339 + components: + - type: Transform + pos: 5.5,29.5 + parent: 2 + - uid: 25340 + components: + - type: Transform + pos: 4.5,29.5 + parent: 2 + - uid: 25341 + components: + - type: Transform + pos: -20.5,26.5 + parent: 2 + - uid: 25342 + components: + - type: Transform + pos: 11.5,28.5 + parent: 2 + - uid: 25343 + components: + - type: Transform + pos: 11.5,26.5 + parent: 2 + - uid: 25344 + components: + - type: Transform + pos: 11.5,25.5 + parent: 2 + - uid: 25345 + components: + - type: Transform + pos: 11.5,23.5 + parent: 2 + - uid: 25346 + components: + - type: Transform + pos: -3.5,22.5 + parent: 2 + - uid: 25347 + components: + - type: Transform + pos: 11.5,22.5 + parent: 2 + - uid: 25348 + components: + - type: Transform + pos: 10.5,22.5 + parent: 2 + - uid: 25349 + components: + - type: Transform + pos: 9.5,22.5 + parent: 2 + - uid: 25350 + components: + - type: Transform + pos: 8.5,22.5 + parent: 2 + - uid: 25351 + components: + - type: Transform + pos: 7.5,22.5 + parent: 2 + - uid: 25352 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - uid: 25353 + components: + - type: Transform + pos: -7.5,22.5 + parent: 2 + - uid: 25354 + components: + - type: Transform + pos: -11.5,22.5 + parent: 2 + - uid: 25355 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - uid: 25356 + components: + - type: Transform + pos: -12.5,21.5 + parent: 2 + - uid: 25357 + components: + - type: Transform + pos: -13.5,21.5 + parent: 2 + - uid: 25358 + components: + - type: Transform + pos: -14.5,21.5 + parent: 2 + - uid: 25359 + components: + - type: Transform + pos: -15.5,21.5 + parent: 2 + - uid: 25360 + components: + - type: Transform + pos: 17.5,37.5 + parent: 2 + - uid: 25361 + components: + - type: Transform + pos: 17.5,36.5 + parent: 2 + - uid: 25362 + components: + - type: Transform + pos: 21.5,37.5 + parent: 2 + - uid: 25363 + components: + - type: Transform + pos: 20.5,37.5 + parent: 2 + - uid: 25364 + components: + - type: Transform + pos: 11.5,36.5 + parent: 2 + - uid: 25365 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 2 + - uid: 25366 + components: + - type: Transform + pos: 1.5,-37.5 + parent: 2 + - uid: 25367 + components: + - type: Transform + pos: 2.5,-37.5 + parent: 2 + - uid: 25368 + components: + - type: Transform + pos: 3.5,-37.5 + parent: 2 + - uid: 25369 + components: + - type: Transform + pos: 4.5,-37.5 + parent: 2 + - uid: 25370 + components: + - type: Transform + pos: 5.5,-37.5 + parent: 2 + - uid: 25371 + components: + - type: Transform + pos: -15.5,-32.5 + parent: 2 + - uid: 25372 + components: + - type: Transform + pos: -16.5,-32.5 + parent: 2 + - uid: 25373 + components: + - type: Transform + pos: -16.5,-33.5 + parent: 2 + - uid: 25374 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 2 + - uid: 25375 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - uid: 25376 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 2 + - uid: 25377 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 2 + - uid: 25378 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 2 + - uid: 25379 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 25380 + components: + - type: Transform + pos: -12.5,-27.5 + parent: 2 + - uid: 25381 + components: + - type: Transform + pos: -8.5,-28.5 + parent: 2 + - uid: 25382 + components: + - type: Transform + pos: -9.5,-28.5 + parent: 2 + - uid: 25383 + components: + - type: Transform + pos: -10.5,-28.5 + parent: 2 + - uid: 25384 + components: + - type: Transform + pos: -11.5,-28.5 + parent: 2 + - uid: 25385 + components: + - type: Transform + pos: -12.5,-28.5 + parent: 2 + - uid: 25386 + components: + - type: Transform + pos: 20.5,27.5 + parent: 2 + - uid: 25387 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 2 + - uid: 25388 + components: + - type: Transform + pos: -14.5,-21.5 + parent: 2 + - uid: 25389 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 2 + - uid: 25390 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 2 + - uid: 25391 + components: + - type: Transform + pos: -14.5,-17.5 + parent: 2 + - uid: 25392 + components: + - type: Transform + pos: -14.5,-16.5 + parent: 2 + - uid: 25393 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 2 + - uid: 25394 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 2 + - uid: 25395 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 2 + - uid: 25396 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 2 + - uid: 25397 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 2 + - uid: 25398 + components: + - type: Transform + pos: -6.5,-20.5 + parent: 2 + - uid: 25399 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 2 + - uid: 25400 + components: + - type: Transform + pos: -6.5,-24.5 + parent: 2 + - uid: 25401 + components: + - type: Transform + pos: -6.5,-25.5 + parent: 2 + - uid: 25402 + components: + - type: Transform + pos: -6.5,-26.5 + parent: 2 + - uid: 25403 + components: + - type: Transform + pos: -6.5,-27.5 + parent: 2 + - uid: 25404 + components: + - type: Transform + pos: -6.5,-28.5 + parent: 2 + - uid: 25405 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 2 + - uid: 25406 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 2 + - uid: 25407 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - uid: 25408 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 2 + - uid: 25409 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 + - uid: 25410 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 2 + - uid: 25411 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 2 + - uid: 25412 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 2 + - uid: 25413 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 2 + - uid: 25414 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - uid: 25415 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 25416 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 + - uid: 25417 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 + - uid: 25418 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 25419 + components: + - type: Transform + pos: 31.5,-58.5 + parent: 2 + - uid: 25420 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 2 + - uid: 25421 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 25422 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 2 + - uid: 25423 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 25424 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 2 + - uid: 25425 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 25426 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 2 + - uid: 25427 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 + - uid: 25428 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 + - uid: 25429 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 2 + - uid: 25430 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 2 + - uid: 25431 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 2 + - uid: 25432 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 2 + - uid: 25433 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 2 + - uid: 25434 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 2 + - uid: 25435 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 2 + - uid: 25436 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 2 + - uid: 25437 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 2 + - uid: 25438 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 2 + - uid: 25439 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 2 + - uid: 25440 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 2 + - uid: 25441 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 2 + - uid: 25442 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 2 + - uid: 25443 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 2 + - uid: 25444 + components: + - type: Transform + pos: 13.5,-20.5 + parent: 2 + - uid: 25445 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 2 + - uid: 25446 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 2 + - uid: 25447 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 + - uid: 25448 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 + - uid: 25449 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - uid: 25450 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 25451 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 2 + - uid: 25452 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - uid: 25453 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 25454 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 25455 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 2 + - uid: 25456 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 25457 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 25458 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - uid: 25459 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - uid: 25460 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - uid: 25461 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 25462 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 25463 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 2 + - uid: 25464 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 2 + - uid: 25465 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 25466 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 25467 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 2 + - uid: 25468 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - uid: 25469 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 + - uid: 25470 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 + - uid: 25471 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 + - uid: 25472 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 2 + - uid: 25473 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 2 + - uid: 25474 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 2 + - uid: 25475 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 2 + - uid: 25476 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 2 + - uid: 25477 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 2 + - uid: 25478 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 2 + - uid: 25479 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 2 + - uid: 25480 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 2 + - uid: 25481 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 25482 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 25483 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 + - uid: 25484 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 25485 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 2 + - uid: 25486 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 2 + - uid: 25487 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 2 + - uid: 25488 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 2 + - uid: 25489 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 + - uid: 25490 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 25491 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 2 + - uid: 25492 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - uid: 25493 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 25494 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 25495 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 25496 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 25497 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 25498 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 + - uid: 25499 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 25500 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 25501 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 2 + - uid: 25502 + components: + - type: Transform + pos: -21.5,52.5 + parent: 2 + - uid: 25503 + components: + - type: Transform + pos: -20.5,52.5 + parent: 2 + - uid: 25504 + components: + - type: Transform + pos: -10.5,53.5 + parent: 2 + - uid: 25505 + components: + - type: Transform + pos: -9.5,54.5 + parent: 2 + - uid: 25506 + components: + - type: Transform + pos: -8.5,54.5 + parent: 2 + - uid: 25507 + components: + - type: Transform + pos: -7.5,54.5 + parent: 2 + - uid: 25508 + components: + - type: Transform + pos: -7.5,53.5 + parent: 2 + - uid: 25509 + components: + - type: Transform + pos: -6.5,53.5 + parent: 2 + - uid: 25510 + components: + - type: Transform + pos: -5.5,53.5 + parent: 2 + - uid: 25511 + components: + - type: Transform + pos: -4.5,53.5 + parent: 2 + - uid: 25512 + components: + - type: Transform + pos: 5.5,46.5 + parent: 2 + - uid: 25513 + components: + - type: Transform + pos: -12.5,41.5 + parent: 2 + - uid: 25514 + components: + - type: Transform + pos: -9.5,42.5 + parent: 2 + - uid: 25515 + components: + - type: Transform + pos: -23.5,52.5 + parent: 2 + - uid: 25516 + components: + - type: Transform + pos: -22.5,52.5 + parent: 2 + - uid: 25517 + components: + - type: Transform + pos: -24.5,42.5 + parent: 2 + - uid: 25518 + components: + - type: Transform + pos: 5.5,47.5 + parent: 2 + - uid: 25519 + components: + - type: Transform + pos: -16.5,39.5 + parent: 2 + - uid: 25520 + components: + - type: Transform + pos: -10.5,54.5 + parent: 2 + - uid: 25521 + components: + - type: Transform + pos: 5.5,48.5 + parent: 2 + - uid: 25522 + components: + - type: Transform + pos: 5.5,51.5 + parent: 2 + - uid: 25523 + components: + - type: Transform + pos: 5.5,52.5 + parent: 2 + - uid: 25524 + components: + - type: Transform + pos: 5.5,49.5 + parent: 2 + - uid: 25525 + components: + - type: Transform + pos: -23.5,39.5 + parent: 2 + - uid: 25526 + components: + - type: Transform + pos: -16.5,54.5 + parent: 2 + - uid: 25527 + components: + - type: Transform + pos: -24.5,39.5 + parent: 2 + - uid: 25528 + components: + - type: Transform + pos: -13.5,54.5 + parent: 2 + - uid: 25529 + components: + - type: Transform + pos: 5.5,50.5 + parent: 2 + - uid: 25530 + components: + - type: Transform + pos: -17.5,39.5 + parent: 2 + - uid: 25531 + components: + - type: Transform + pos: -22.5,39.5 + parent: 2 + - uid: 25532 + components: + - type: Transform + pos: -24.5,46.5 + parent: 2 + - uid: 25533 + components: + - type: Transform + pos: -24.5,49.5 + parent: 2 + - uid: 25534 + components: + - type: Transform + pos: -12.5,38.5 + parent: 2 + - uid: 25535 + components: + - type: Transform + pos: -3.5,52.5 + parent: 2 + - uid: 25536 + components: + - type: Transform + pos: -2.5,52.5 + parent: 2 + - uid: 25537 + components: + - type: Transform + pos: 4.5,52.5 + parent: 2 + - uid: 25538 + components: + - type: Transform + pos: 0.5,52.5 + parent: 2 + - uid: 25539 + components: + - type: Transform + pos: -0.5,52.5 + parent: 2 + - uid: 25540 + components: + - type: Transform + pos: -19.5,39.5 + parent: 2 + - uid: 25541 + components: + - type: Transform + pos: -19.5,52.5 + parent: 2 + - uid: 25542 + components: + - type: Transform + pos: -18.5,52.5 + parent: 2 + - uid: 25543 + components: + - type: Transform + pos: -16.5,52.5 + parent: 2 + - uid: 25544 + components: + - type: Transform + pos: 17.5,38.5 + parent: 2 + - uid: 25545 + components: + - type: Transform + pos: 26.5,37.5 + parent: 2 + - uid: 25546 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 + - uid: 25547 + components: + - type: Transform + pos: 29.5,25.5 + parent: 2 + - uid: 25548 + components: + - type: Transform + pos: 22.5,43.5 + parent: 2 + - uid: 25549 + components: + - type: Transform + pos: 26.5,36.5 + parent: 2 + - uid: 25550 + components: + - type: Transform + pos: -1.5,52.5 + parent: 2 + - uid: 25551 + components: + - type: Transform + pos: 23.5,31.5 + parent: 2 + - uid: 25552 + components: + - type: Transform + pos: 21.5,43.5 + parent: 2 + - uid: 25553 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 + - uid: 25554 + components: + - type: Transform + pos: 61.5,-70.5 + parent: 2 + - uid: 25555 + components: + - type: Transform + pos: 25.5,39.5 + parent: 2 + - uid: 25556 + components: + - type: Transform + pos: 28.5,31.5 + parent: 2 + - uid: 25557 + components: + - type: Transform + pos: 3.5,52.5 + parent: 2 + - uid: 25558 + components: + - type: Transform + pos: 20.5,32.5 + parent: 2 + - uid: 25559 + components: + - type: Transform + pos: 2.5,52.5 + parent: 2 + - uid: 25560 + components: + - type: Transform + pos: 1.5,52.5 + parent: 2 + - uid: 25561 + components: + - type: Transform + pos: -3.5,53.5 + parent: 2 + - uid: 25562 + components: + - type: Transform + pos: -24.5,50.5 + parent: 2 + - uid: 25563 + components: + - type: Transform + pos: -24.5,51.5 + parent: 2 + - uid: 25564 + components: + - type: Transform + pos: -3.5,46.5 + parent: 2 + - uid: 25565 + components: + - type: Transform + pos: -3.5,45.5 + parent: 2 + - uid: 25566 + components: + - type: Transform + pos: -24.5,47.5 + parent: 2 + - uid: 25567 + components: + - type: Transform + pos: -24.5,48.5 + parent: 2 + - uid: 25568 + components: + - type: Transform + pos: -25.5,42.5 + parent: 2 + - uid: 25569 + components: + - type: Transform + pos: -25.5,46.5 + parent: 2 + - uid: 25570 + components: + - type: Transform + pos: 41.5,12.5 + parent: 2 + - uid: 25571 + components: + - type: Transform + pos: 85.5,-4.5 + parent: 2 + - uid: 25572 + components: + - type: Transform + pos: 85.5,-12.5 + parent: 2 + - uid: 25573 + components: + - type: Transform + pos: -68.5,15.5 + parent: 2 + - uid: 25574 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - uid: 25575 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 25576 + components: + - type: Transform + pos: -9.5,5.5 + parent: 2 + - uid: 25577 + components: + - type: Transform + pos: -14.5,5.5 + parent: 2 + - uid: 25578 + components: + - type: Transform + pos: -22.5,12.5 + parent: 2 + - uid: 25579 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 + - uid: 25580 + components: + - type: Transform + pos: -42.5,15.5 + parent: 2 + - uid: 25581 + components: + - type: Transform + pos: -29.5,25.5 + parent: 2 + - uid: 25582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,7.5 + parent: 2 + - uid: 25583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,-2.5 + parent: 2 + - uid: 25584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,8.5 + parent: 2 + - uid: 25585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,10.5 + parent: 2 + - uid: 25586 + components: + - type: Transform + pos: -79.5,-16.5 + parent: 2 + - uid: 25587 + components: + - type: Transform + pos: -79.5,-12.5 + parent: 2 + - uid: 25588 + components: + - type: Transform + pos: 6.5,-37.5 + parent: 2 + - uid: 25589 + components: + - type: Transform + pos: -22.5,13.5 + parent: 2 + - uid: 25590 + components: + - type: Transform + pos: -22.5,11.5 + parent: 2 + - uid: 25591 + components: + - type: Transform + pos: -62.5,-17.5 + parent: 2 + - uid: 25592 + components: + - type: Transform + pos: -36.5,-32.5 + parent: 2 + - uid: 25593 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 + - uid: 25594 + components: + - type: Transform + pos: -17.5,-67.5 + parent: 2 + - uid: 25595 + components: + - type: Transform + pos: -35.5,-28.5 + parent: 2 + - uid: 25596 + components: + - type: Transform + pos: -19.5,-66.5 + parent: 2 + - uid: 25597 + components: + - type: Transform + pos: -40.5,-48.5 + parent: 2 + - uid: 25598 + components: + - type: Transform + pos: -38.5,-51.5 + parent: 2 + - uid: 25599 + components: + - type: Transform + pos: -40.5,-47.5 + parent: 2 + - uid: 25600 + components: + - type: Transform + pos: -42.5,-51.5 + parent: 2 + - uid: 25601 + components: + - type: Transform + pos: 24.5,-59.5 + parent: 2 + - uid: 25602 + components: + - type: Transform + pos: 25.5,-59.5 + parent: 2 + - uid: 25603 + components: + - type: Transform + pos: 25.5,-59.5 + parent: 2 + - uid: 25604 + components: + - type: Transform + pos: 25.5,-61.5 + parent: 2 + - uid: 25605 + components: + - type: Transform + pos: 24.5,-61.5 + parent: 2 + - uid: 25606 + components: + - type: Transform + pos: 29.5,-52.5 + parent: 2 + - uid: 25607 + components: + - type: Transform + pos: -6.5,-101.5 + parent: 2 + - uid: 25608 + components: + - type: Transform + pos: -4.5,-101.5 + parent: 2 + - uid: 25609 + components: + - type: Transform + pos: -2.5,-101.5 + parent: 2 + - uid: 25610 + components: + - type: Transform + pos: -0.5,-101.5 + parent: 2 + - uid: 25611 + components: + - type: Transform + pos: 1.5,-101.5 + parent: 2 + - uid: 25612 + components: + - type: Transform + pos: 3.5,-101.5 + parent: 2 + - uid: 25613 + components: + - type: Transform + pos: 5.5,-101.5 + parent: 2 + - uid: 25614 + components: + - type: Transform + pos: 6.5,-73.5 + parent: 2 + - uid: 25615 + components: + - type: Transform + pos: -5.5,-101.5 + parent: 2 + - uid: 25616 + components: + - type: Transform + pos: -3.5,-101.5 + parent: 2 + - uid: 25617 + components: + - type: Transform + pos: -1.5,-101.5 + parent: 2 + - uid: 25618 + components: + - type: Transform + pos: 2.5,-101.5 + parent: 2 + - uid: 25619 + components: + - type: Transform + pos: 4.5,-101.5 + parent: 2 + - uid: 25620 + components: + - type: Transform + pos: 6.5,-101.5 + parent: 2 + - uid: 25621 + components: + - type: Transform + pos: -7.5,-101.5 + parent: 2 + - uid: 25622 + components: + - type: Transform + pos: 0.5,-101.5 + parent: 2 + - uid: 25623 + components: + - type: Transform + pos: 11.5,-75.5 + parent: 2 + - uid: 25624 + components: + - type: Transform + pos: 12.5,-75.5 + parent: 2 + - uid: 25625 + components: + - type: Transform + pos: 7.5,-73.5 + parent: 2 + - uid: 25626 + components: + - type: Transform + pos: 19.5,-74.5 + parent: 2 + - uid: 25627 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 2 + - uid: 25628 + components: + - type: Transform + pos: 18.5,-69.5 + parent: 2 + - uid: 25629 + components: + - type: Transform + pos: 17.5,-69.5 + parent: 2 + - uid: 25630 + components: + - type: Transform + pos: 16.5,-69.5 + parent: 2 + - uid: 25631 + components: + - type: Transform + pos: 15.5,-69.5 + parent: 2 + - uid: 25632 + components: + - type: Transform + pos: 14.5,-69.5 + parent: 2 + - uid: 25633 + components: + - type: Transform + pos: 13.5,-69.5 + parent: 2 + - uid: 25634 + components: + - type: Transform + pos: 12.5,-69.5 + parent: 2 + - uid: 25635 + components: + - type: Transform + pos: 16.5,-74.5 + parent: 2 + - uid: 25636 + components: + - type: Transform + pos: 17.5,-74.5 + parent: 2 + - uid: 25637 + components: + - type: Transform + pos: 10.5,-69.5 + parent: 2 + - uid: 25638 + components: + - type: Transform + pos: 83.5,-44.5 + parent: 2 + - uid: 25639 + components: + - type: Transform + pos: 86.5,-44.5 + parent: 2 + - uid: 25640 + components: + - type: Transform + pos: 86.5,-45.5 + parent: 2 + - uid: 25641 + components: + - type: Transform + pos: 87.5,-47.5 + parent: 2 + - uid: 25642 + components: + - type: Transform + pos: 87.5,-48.5 + parent: 2 + - uid: 25643 + components: + - type: Transform + pos: 86.5,-49.5 + parent: 2 + - uid: 25644 + components: + - type: Transform + pos: 85.5,-49.5 + parent: 2 + - uid: 25645 + components: + - type: Transform + pos: 84.5,-49.5 + parent: 2 + - uid: 25646 + components: + - type: Transform + pos: 83.5,-49.5 + parent: 2 + - uid: 25647 + components: + - type: Transform + pos: 82.5,-19.5 + parent: 2 + - uid: 25648 + components: + - type: Transform + pos: 87.5,-32.5 + parent: 2 + - uid: 25649 + components: + - type: Transform + pos: 88.5,-32.5 + parent: 2 + - uid: 25650 + components: + - type: Transform + pos: -8.5,38.5 + parent: 2 + - uid: 25651 + components: + - type: Transform + pos: 87.5,-33.5 + parent: 2 + - uid: 25652 + components: + - type: Transform + pos: -24.5,52.5 + parent: 2 + - uid: 25653 + components: + - type: Transform + pos: -7.5,41.5 + parent: 2 + - uid: 25654 + components: + - type: Transform + pos: -6.5,42.5 + parent: 2 + - uid: 25655 + components: + - type: Transform + pos: -7.5,42.5 + parent: 2 + - uid: 25656 + components: + - type: Transform + pos: -4.5,42.5 + parent: 2 + - uid: 25657 + components: + - type: Transform + pos: 61.5,-42.5 + parent: 2 + - uid: 25658 + components: + - type: Transform + pos: 62.5,-42.5 + parent: 2 + - uid: 25659 + components: + - type: Transform + pos: 63.5,-42.5 + parent: 2 + - uid: 25660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-55.5 + parent: 2 + - uid: 25661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-58.5 + parent: 2 + - uid: 25662 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 2 + - uid: 25663 + components: + - type: Transform + pos: 7.5,-33.5 + parent: 2 + - uid: 25664 + components: + - type: Transform + pos: 6.5,-33.5 + parent: 2 + - uid: 25665 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 2 + - uid: 25666 + components: + - type: Transform + pos: 2.5,-33.5 + parent: 2 + - uid: 25667 + components: + - type: Transform + pos: -80.5,12.5 + parent: 2 + - uid: 25668 + components: + - type: Transform + pos: -74.5,12.5 + parent: 2 + - uid: 25669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-40.5 + parent: 2 + - uid: 25670 + components: + - type: Transform + pos: -17.5,52.5 + parent: 2 + - uid: 25671 + components: + - type: Transform + pos: -7.5,40.5 + parent: 2 + - uid: 25672 + components: + - type: Transform + pos: -8.5,37.5 + parent: 2 + - uid: 25673 + components: + - type: Transform + pos: -16.5,53.5 + parent: 2 + - uid: 25674 + components: + - type: Transform + pos: 5.5,44.5 + parent: 2 + - uid: 25675 + components: + - type: Transform + pos: 5.5,45.5 + parent: 2 + - uid: 25676 + components: + - type: Transform + pos: 5.5,43.5 + parent: 2 + - uid: 25677 + components: + - type: Transform + pos: -40.5,-44.5 + parent: 2 + - uid: 25678 + components: + - type: Transform + pos: -40.5,-43.5 + parent: 2 + - uid: 25679 + components: + - type: Transform + pos: -39.5,-45.5 + parent: 2 + - uid: 25680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 2 + - uid: 25681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,16.5 + parent: 2 + - uid: 25682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,18.5 + parent: 2 + - uid: 25683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,18.5 + parent: 2 + - uid: 25684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,15.5 + parent: 2 + - uid: 25685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,12.5 + parent: 2 + - uid: 25686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,12.5 + parent: 2 + - uid: 25687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 2 + - uid: 25688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,12.5 + parent: 2 + - uid: 25689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,13.5 + parent: 2 + - uid: 25690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,15.5 + parent: 2 + - uid: 25691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,17.5 + parent: 2 + - uid: 25692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,18.5 + parent: 2 + - uid: 25693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,17.5 + parent: 2 + - uid: 25694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,16.5 + parent: 2 + - uid: 25695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,13.5 + parent: 2 + - uid: 25696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,12.5 + parent: 2 + - uid: 25697 + components: + - type: Transform + pos: -57.5,6.5 + parent: 2 + - uid: 25698 + components: + - type: Transform + pos: -58.5,6.5 + parent: 2 + - uid: 25699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,14.5 + parent: 2 + - uid: 25700 + components: + - type: Transform + pos: -56.5,2.5 + parent: 2 + - uid: 25701 + components: + - type: Transform + pos: -55.5,6.5 + parent: 2 + - uid: 25702 + components: + - type: Transform + pos: -55.5,4.5 + parent: 2 + - uid: 25703 + components: + - type: Transform + pos: -55.5,5.5 + parent: 2 + - uid: 25704 + components: + - type: Transform + pos: -55.5,2.5 + parent: 2 + - uid: 25705 + components: + - type: Transform + pos: -62.5,5.5 + parent: 2 + - uid: 25706 + components: + - type: Transform + pos: -62.5,4.5 + parent: 2 + - uid: 25707 + components: + - type: Transform + pos: -62.5,3.5 + parent: 2 + - uid: 25708 + components: + - type: Transform + pos: -61.5,2.5 + parent: 2 + - uid: 25709 + components: + - type: Transform + pos: -62.5,6.5 + parent: 2 + - uid: 25710 + components: + - type: Transform + pos: -60.5,6.5 + parent: 2 + - uid: 25711 + components: + - type: Transform + pos: -61.5,6.5 + parent: 2 + - uid: 25712 + components: + - type: Transform + pos: -59.5,6.5 + parent: 2 + - uid: 25713 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 25714 + components: + - type: Transform + pos: -55.5,3.5 + parent: 2 + - uid: 25715 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 + - uid: 25716 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - uid: 25717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-54.5 + parent: 2 + - uid: 25718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-38.5 + parent: 2 + - uid: 25719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-20.5 + parent: 2 + - uid: 25720 + components: + - type: Transform + pos: 59.5,-32.5 + parent: 2 + - uid: 25721 + components: + - type: Transform + pos: 60.5,-32.5 + parent: 2 + - uid: 25722 + components: + - type: Transform + pos: 61.5,-32.5 + parent: 2 + - uid: 25723 + components: + - type: Transform + pos: 62.5,-32.5 + parent: 2 + - uid: 25724 + components: + - type: Transform + pos: 63.5,-32.5 + parent: 2 + - uid: 25725 + components: + - type: Transform + pos: 64.5,-32.5 + parent: 2 + - uid: 25726 + components: + - type: Transform + pos: 59.5,-28.5 + parent: 2 + - uid: 25727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-34.5 + parent: 2 + - uid: 25728 + components: + - type: Transform + pos: 50.5,-41.5 + parent: 2 + - uid: 25729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-37.5 + parent: 2 + - uid: 25730 + components: + - type: Transform + pos: 19.5,27.5 + parent: 2 + - uid: 25731 + components: + - type: Transform + pos: 19.5,28.5 + parent: 2 + - uid: 25732 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 + - uid: 25733 + components: + - type: Transform + pos: 18.5,29.5 + parent: 2 + - uid: 25734 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 25735 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 + - uid: 25736 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 25737 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - uid: 25738 + components: + - type: Transform + pos: 12.5,29.5 + parent: 2 + - uid: 25739 + components: + - type: Transform + pos: 16.5,29.5 + parent: 2 + - uid: 25740 + components: + - type: Transform + pos: 18.5,31.5 + parent: 2 + - uid: 25741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,18.5 + parent: 2 + - uid: 25742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-36.5 + parent: 2 + - uid: 25743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,18.5 + parent: 2 + - uid: 25744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,14.5 + parent: 2 + - uid: 25745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,18.5 + parent: 2 + - uid: 25746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,18.5 + parent: 2 + - uid: 25747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,18.5 + parent: 2 + - uid: 25748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,12.5 + parent: 2 + - uid: 25749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,12.5 + parent: 2 + - uid: 25750 + components: + - type: Transform + pos: 31.5,-41.5 + parent: 2 + - uid: 25751 + components: + - type: Transform + pos: 31.5,-60.5 + parent: 2 + - uid: 25752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-36.5 + parent: 2 + - uid: 25753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,17.5 + parent: 2 + - uid: 25754 + components: + - type: Transform + pos: -18.5,5.5 + parent: 2 + - uid: 25755 + components: + - type: Transform + pos: -18.5,6.5 + parent: 2 + - uid: 25756 + components: + - type: Transform + pos: -18.5,8.5 + parent: 2 + - uid: 25757 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - uid: 25758 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - uid: 25759 + components: + - type: Transform + pos: -18.5,9.5 + parent: 2 + - uid: 25760 + components: + - type: Transform + pos: -24.5,3.5 + parent: 2 + - uid: 25761 + components: + - type: Transform + pos: -24.5,2.5 + parent: 2 + - uid: 25762 + components: + - type: Transform + pos: -24.5,1.5 + parent: 2 + - uid: 25763 + components: + - type: Transform + pos: 50.5,-39.5 + parent: 2 + - uid: 25764 + components: + - type: Transform + pos: -18.5,4.5 + parent: 2 + - uid: 25765 + components: + - type: Transform + pos: -24.5,7.5 + parent: 2 + - uid: 25766 + components: + - type: Transform + pos: 75.5,-33.5 + parent: 2 + - uid: 25767 + components: + - type: Transform + pos: 75.5,-35.5 + parent: 2 + - uid: 25768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,18.5 + parent: 2 + - uid: 25769 + components: + - type: Transform + pos: 75.5,-34.5 + parent: 2 + - uid: 25770 + components: + - type: Transform + pos: 75.5,-36.5 + parent: 2 + - uid: 25771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-35.5 + parent: 2 + - uid: 25772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-37.5 + parent: 2 + - uid: 25773 + components: + - type: Transform + pos: 75.5,-37.5 + parent: 2 + - uid: 25774 + components: + - type: Transform + pos: 74.5,-34.5 + parent: 2 + - uid: 25775 + components: + - type: Transform + pos: 73.5,-32.5 + parent: 2 + - uid: 25776 + components: + - type: Transform + pos: 74.5,-32.5 + parent: 2 + - uid: 25777 + components: + - type: Transform + pos: 72.5,-32.5 + parent: 2 + - uid: 25778 + components: + - type: Transform + pos: 71.5,-32.5 + parent: 2 + - uid: 25779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-37.5 + parent: 2 + - uid: 25780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-37.5 + parent: 2 + - uid: 25781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-41.5 + parent: 2 + - uid: 25782 + components: + - type: Transform + pos: 70.5,-32.5 + parent: 2 + - uid: 25783 + components: + - type: Transform + pos: 69.5,-32.5 + parent: 2 + - uid: 25784 + components: + - type: Transform + pos: 68.5,-32.5 + parent: 2 + - uid: 25785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-34.5 + parent: 2 + - uid: 25786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-36.5 + parent: 2 + - uid: 25787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-38.5 + parent: 2 + - uid: 25788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-38.5 + parent: 2 + - uid: 25789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-38.5 + parent: 2 + - uid: 25790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-37.5 + parent: 2 + - uid: 25791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-38.5 + parent: 2 + - uid: 25792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-34.5 + parent: 2 + - uid: 25793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-34.5 + parent: 2 + - uid: 25794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-34.5 + parent: 2 + - uid: 25795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-38.5 + parent: 2 + - uid: 25796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-38.5 + parent: 2 + - uid: 25797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-33.5 + parent: 2 + - uid: 25798 + components: + - type: Transform + pos: -16.5,-38.5 + parent: 2 + - uid: 25799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-35.5 + parent: 2 + - uid: 25800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-32.5 + parent: 2 + - uid: 25801 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 2 + - uid: 25802 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 + - uid: 25803 + components: + - type: Transform + pos: 28.5,27.5 + parent: 2 + - uid: 25804 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 + - uid: 25805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-39.5 + parent: 2 + - uid: 25806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-42.5 + parent: 2 + - uid: 25807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-41.5 + parent: 2 + - uid: 25808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-41.5 + parent: 2 + - uid: 25809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-41.5 + parent: 2 + - uid: 25813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,36.5 + parent: 2 + - uid: 25814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,35.5 + parent: 2 + - uid: 25815 + components: + - type: Transform + pos: 7.5,25.5 + parent: 2 + - uid: 25816 + components: + - type: Transform + pos: 7.5,23.5 + parent: 2 + - uid: 25817 + components: + - type: Transform + pos: 7.5,24.5 + parent: 2 + - uid: 25818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,29.5 + parent: 2 + - uid: 25819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,21.5 + parent: 2 + - uid: 25820 + components: + - type: Transform + pos: 20.5,36.5 + parent: 2 + - uid: 25828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-41.5 + parent: 2 + - uid: 25829 + components: + - type: Transform + pos: -19.5,28.5 + parent: 2 + - uid: 25830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-22.5 + parent: 2 + - uid: 25831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-21.5 + parent: 2 + - uid: 25832 + components: + - type: Transform + pos: 31.5,-57.5 + parent: 2 + - uid: 25833 + components: + - type: Transform + pos: 22.5,27.5 + parent: 2 + - uid: 25834 + components: + - type: Transform + pos: 112.5,-39.5 + parent: 2 + - uid: 25835 + components: + - type: Transform + pos: 113.5,-39.5 + parent: 2 + - uid: 25836 + components: + - type: Transform + pos: 113.5,-40.5 + parent: 2 + - uid: 25837 + components: + - type: Transform + pos: 115.5,-41.5 + parent: 2 + - uid: 25838 + components: + - type: Transform + pos: 115.5,-42.5 + parent: 2 + - uid: 25839 + components: + - type: Transform + pos: 117.5,-42.5 + parent: 2 + - uid: 25840 + components: + - type: Transform + pos: 117.5,-41.5 + parent: 2 + - uid: 25841 + components: + - type: Transform + pos: 118.5,-41.5 + parent: 2 + - uid: 25842 + components: + - type: Transform + pos: 118.5,-40.5 + parent: 2 + - uid: 25843 + components: + - type: Transform + pos: 120.5,-39.5 + parent: 2 + - uid: 25844 + components: + - type: Transform + pos: 120.5,-37.5 + parent: 2 + - uid: 25845 + components: + - type: Transform + pos: 119.5,-37.5 + parent: 2 + - uid: 25846 + components: + - type: Transform + pos: 119.5,-36.5 + parent: 2 + - uid: 25847 + components: + - type: Transform + pos: 117.5,-35.5 + parent: 2 + - uid: 25848 + components: + - type: Transform + pos: 117.5,-34.5 + parent: 2 + - uid: 25849 + components: + - type: Transform + pos: 115.5,-34.5 + parent: 2 + - uid: 25850 + components: + - type: Transform + pos: 115.5,-35.5 + parent: 2 + - uid: 25851 + components: + - type: Transform + pos: 113.5,-36.5 + parent: 2 + - uid: 25852 + components: + - type: Transform + pos: 113.5,-37.5 + parent: 2 + - uid: 25853 + components: + - type: Transform + pos: 112.5,-37.5 + parent: 2 + - uid: 25854 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 25855 + components: + - type: Transform + pos: 83.5,-39.5 + parent: 2 + - uid: 25856 + components: + - type: Transform + pos: 84.5,-39.5 + parent: 2 + - uid: 25857 + components: + - type: Transform + pos: 85.5,-39.5 + parent: 2 + - uid: 25858 + components: + - type: Transform + pos: 86.5,-39.5 + parent: 2 + - uid: 25859 + components: + - type: Transform + pos: 83.5,-38.5 + parent: 2 + - uid: 25860 + components: + - type: Transform + pos: 83.5,-37.5 + parent: 2 + - uid: 25861 + components: + - type: Transform + pos: 11.5,29.5 + parent: 2 + - uid: 25862 + components: + - type: Transform + pos: 23.5,27.5 + parent: 2 + - uid: 25863 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 25864 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 25865 + components: + - type: Transform + pos: 31.5,-49.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 44 + components: + - type: Transform + pos: 48.5,-35.5 + parent: 2 + - uid: 20009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-33.5 + parent: 2 + - uid: 22061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-33.5 + parent: 2 + - uid: 23850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-32.5 + parent: 2 + - uid: 25810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-33.5 + parent: 2 + - uid: 25811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-30.5 + parent: 2 + - uid: 25812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-31.5 + parent: 2 + - uid: 25822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-30.5 + parent: 2 + - uid: 25823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-30.5 + parent: 2 + - uid: 25824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-33.5 + parent: 2 + - uid: 25825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-30.5 + parent: 2 + - uid: 25826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-33.5 + parent: 2 + - uid: 25827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-32.5 + parent: 2 + - uid: 25866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-50.5 + parent: 2 + - uid: 25867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-45.5 + parent: 2 + - uid: 25868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-46.5 + parent: 2 + - uid: 25869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-45.5 + parent: 2 + - uid: 25870 + components: + - type: Transform + pos: 64.5,-44.5 + parent: 2 + - uid: 25871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-42.5 + parent: 2 + - uid: 25872 + components: + - type: Transform + pos: 60.5,-48.5 + parent: 2 + - uid: 25873 + components: + - type: Transform + pos: 62.5,-46.5 + parent: 2 + - uid: 25874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-46.5 + parent: 2 + - uid: 25875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-42.5 + parent: 2 + - uid: 25876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-9.5 + parent: 2 + - uid: 25877 + components: + - type: Transform + pos: 17.5,8.5 + parent: 2 + - uid: 25878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,26.5 + parent: 2 + - uid: 25879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,16.5 + parent: 2 + - uid: 25880 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 25881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-35.5 + parent: 2 + - uid: 25882 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 2 + - uid: 25883 + components: + - type: Transform + pos: -27.5,-28.5 + parent: 2 + - uid: 25884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-30.5 + parent: 2 + - uid: 25885 + components: + - type: Transform + pos: 1.5,-51.5 + parent: 2 + - uid: 25886 + components: + - type: Transform + pos: 58.5,-25.5 + parent: 2 + - uid: 25887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,32.5 + parent: 2 + - uid: 25888 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 2 + - uid: 25889 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 25890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-24.5 + parent: 2 + - uid: 25891 + components: + - type: Transform + pos: 68.5,-26.5 + parent: 2 + - uid: 25892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,18.5 + parent: 2 + - uid: 25893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,18.5 + parent: 2 + - uid: 25894 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 2 + - uid: 25895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-63.5 + parent: 2 + - uid: 25896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,28.5 + parent: 2 + - uid: 25897 + components: + - type: Transform + pos: -11.5,28.5 + parent: 2 + - uid: 25898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,10.5 + parent: 2 + - uid: 25899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-8.5 + parent: 2 + - uid: 25900 + components: + - type: Transform + pos: 36.5,-17.5 + parent: 2 + - uid: 25901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,25.5 + parent: 2 + - uid: 25902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,27.5 + parent: 2 + - uid: 25903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,28.5 + parent: 2 + - uid: 25904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,26.5 + parent: 2 + - uid: 25905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,31.5 + parent: 2 + - uid: 25906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-35.5 + parent: 2 + - uid: 25907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-16.5 + parent: 2 + - uid: 25908 + components: + - type: Transform + pos: 45.5,-11.5 + parent: 2 + - uid: 25909 + components: + - type: Transform + pos: 45.5,-10.5 + parent: 2 + - uid: 25910 + components: + - type: Transform + pos: 49.5,-11.5 + parent: 2 + - uid: 25911 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 + - uid: 25912 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 + - uid: 25913 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - uid: 25914 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 25915 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 25916 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 25917 + components: + - type: Transform + pos: -26.5,-18.5 + parent: 2 + - uid: 25918 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 25919 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 25920 + components: + - type: Transform + pos: 6.5,-53.5 + parent: 2 + - uid: 25921 + components: + - type: Transform + pos: 6.5,-54.5 + parent: 2 + - uid: 25922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-26.5 + parent: 2 + - uid: 25923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-27.5 + parent: 2 + - uid: 25924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-25.5 + parent: 2 + - uid: 25925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-25.5 + parent: 2 + - uid: 25926 + components: + - type: Transform + pos: 46.5,-40.5 + parent: 2 + - uid: 25927 + components: + - type: Transform + pos: 80.5,-53.5 + parent: 2 + - uid: 25928 + components: + - type: Transform + pos: 80.5,-54.5 + parent: 2 + - uid: 25929 + components: + - type: Transform + pos: 79.5,-52.5 + parent: 2 + - uid: 25930 + components: + - type: Transform + pos: 80.5,-52.5 + parent: 2 + - uid: 25931 + components: + - type: Transform + pos: 81.5,-49.5 + parent: 2 + - uid: 25932 + components: + - type: Transform + pos: 81.5,-50.5 + parent: 2 + - uid: 25933 + components: + - type: Transform + pos: 23.5,5.5 + parent: 2 + - uid: 25934 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 2 + - uid: 25935 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - uid: 25937 + components: + - type: Transform + pos: 36.5,-18.5 + parent: 2 + - uid: 25938 + components: + - type: Transform + pos: 36.5,-19.5 + parent: 2 + - uid: 25939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,5.5 + parent: 2 + - uid: 25940 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 25941 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 25942 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - uid: 25943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,22.5 + parent: 2 + - uid: 25944 + components: + - type: Transform + pos: 41.5,-21.5 + parent: 2 + - uid: 25945 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 2 + - uid: 25946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-23.5 + parent: 2 + - uid: 25947 + components: + - type: Transform + pos: 2.5,-60.5 + parent: 2 + - uid: 25948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-21.5 + parent: 2 + - uid: 25949 + components: + - type: Transform + pos: 2.5,-61.5 + parent: 2 + - uid: 25950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-35.5 + parent: 2 + - uid: 25951 + components: + - type: Transform + pos: 40.5,-16.5 + parent: 2 + - uid: 25952 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 2 + - uid: 25953 + components: + - type: Transform + pos: 40.5,-18.5 + parent: 2 + - uid: 25954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-31.5 + parent: 2 + - uid: 25955 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 2 + - uid: 25956 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 2 + - uid: 25957 + components: + - type: Transform + pos: -12.5,32.5 + parent: 2 + - uid: 25958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,4.5 + parent: 2 + - uid: 25959 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 2 + - uid: 25960 + components: + - type: Transform + pos: 26.5,24.5 + parent: 2 + - uid: 25961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,2.5 + parent: 2 + - uid: 25962 + components: + - type: Transform + pos: 12.5,22.5 + parent: 2 + - uid: 25963 + components: + - type: Transform + pos: 11.5,-36.5 + parent: 2 + - uid: 25964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-27.5 + parent: 2 + - uid: 25965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-9.5 + parent: 2 + - uid: 25966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-36.5 + parent: 2 + - uid: 25967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-20.5 + parent: 2 + - uid: 25968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-20.5 + parent: 2 + - uid: 25969 + components: + - type: Transform + pos: -12.5,29.5 + parent: 2 + - uid: 25970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,22.5 + parent: 2 + - uid: 25971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-7.5 + parent: 2 + - uid: 25972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,-28.5 + parent: 2 + - uid: 25973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-9.5 + parent: 2 + - uid: 25974 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - uid: 25975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-9.5 + parent: 2 + - uid: 25976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,29.5 + parent: 2 + - uid: 25977 + components: + - type: Transform + pos: -12.5,30.5 + parent: 2 + - uid: 25978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,11.5 + parent: 2 + - uid: 25979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,24.5 + parent: 2 + - uid: 25980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,6.5 + parent: 2 + - uid: 25981 + components: + - type: Transform + pos: 46.5,-11.5 + parent: 2 + - uid: 25982 + components: + - type: Transform + pos: 45.5,-40.5 + parent: 2 + - uid: 25983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-21.5 + parent: 2 + - uid: 25984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,26.5 + parent: 2 + - uid: 25985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,23.5 + parent: 2 + - uid: 25986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,2.5 + parent: 2 + - uid: 25987 + components: + - type: Transform + pos: -7.5,52.5 + parent: 2 + - uid: 25988 + components: + - type: Transform + pos: 44.5,-11.5 + parent: 2 + - uid: 25989 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 25990 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 25991 + components: + - type: Transform + pos: 39.5,9.5 + parent: 2 + - uid: 25992 + components: + - type: Transform + pos: -29.5,-31.5 + parent: 2 + - uid: 25993 + components: + - type: Transform + pos: -35.5,-30.5 + parent: 2 + - uid: 25994 + components: + - type: Transform + pos: 79.5,-1.5 + parent: 2 + - uid: 25995 + components: + - type: Transform + pos: 79.5,-9.5 + parent: 2 + - uid: 25996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,11.5 + parent: 2 + - uid: 25997 + components: + - type: Transform + pos: 41.5,-30.5 + parent: 2 + - uid: 25998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-14.5 + parent: 2 + - uid: 25999 + components: + - type: Transform + pos: 40.5,-30.5 + parent: 2 + - uid: 26000 + components: + - type: Transform + pos: 42.5,-29.5 + parent: 2 + - uid: 26001 + components: + - type: Transform + pos: 49.5,2.5 + parent: 2 + - uid: 26002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-25.5 + parent: 2 + - uid: 26003 + components: + - type: Transform + pos: 39.5,-20.5 + parent: 2 + - uid: 26004 + components: + - type: Transform + pos: 37.5,-20.5 + parent: 2 + - uid: 26005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-7.5 + parent: 2 + - uid: 26006 + components: + - type: Transform + pos: -47.5,1.5 + parent: 2 + - uid: 26007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-11.5 + parent: 2 + - uid: 26008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-9.5 + parent: 2 + - uid: 26009 + components: + - type: Transform + pos: 48.5,2.5 + parent: 2 + - uid: 26010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-35.5 + parent: 2 + - uid: 26011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-18.5 + parent: 2 + - uid: 26012 + components: + - type: Transform + pos: -7.5,51.5 + parent: 2 + - uid: 26013 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 26014 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 2 + - uid: 26015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-37.5 + parent: 2 + - uid: 26016 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 2 + - uid: 26017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-37.5 + parent: 2 + - uid: 26018 + components: + - type: Transform + pos: -37.5,5.5 + parent: 2 + - uid: 26019 + components: + - type: Transform + pos: -18.5,-21.5 + parent: 2 + - uid: 26020 + components: + - type: Transform + pos: -15.5,29.5 + parent: 2 + - uid: 26021 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 2 + - uid: 26022 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 2 + - uid: 26023 + components: + - type: Transform + pos: 36.5,-16.5 + parent: 2 + - uid: 26024 + components: + - type: Transform + pos: -18.5,46.5 + parent: 2 + - uid: 26025 + components: + - type: Transform + pos: -20.5,42.5 + parent: 2 + - uid: 26026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-15.5 + parent: 2 + - uid: 26027 + components: + - type: Transform + pos: -16.5,34.5 + parent: 2 + - uid: 26028 + components: + - type: Transform + pos: 79.5,-4.5 + parent: 2 + - uid: 26029 + components: + - type: Transform + pos: -17.5,42.5 + parent: 2 + - uid: 26030 + components: + - type: Transform + pos: -21.5,46.5 + parent: 2 + - uid: 26031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-9.5 + parent: 2 + - uid: 26032 + components: + - type: Transform + pos: -49.5,15.5 + parent: 2 + - uid: 26033 + components: + - type: Transform + pos: 47.5,-37.5 + parent: 2 + - uid: 26034 + components: + - type: Transform + pos: 48.5,-37.5 + parent: 2 + - uid: 26035 + components: + - type: Transform + pos: 48.5,-38.5 + parent: 2 + - uid: 26036 + components: + - type: Transform + pos: 48.5,-39.5 + parent: 2 + - uid: 26037 + components: + - type: Transform + pos: -49.5,-16.5 + parent: 2 + - uid: 26038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 2 + - uid: 26039 + components: + - type: Transform + pos: 47.5,2.5 + parent: 2 + - uid: 26040 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 26041 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 26042 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - uid: 26043 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 26044 + components: + - type: Transform + pos: -2.5,4.5 + parent: 2 + - uid: 26045 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 26046 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - uid: 26047 + components: + - type: Transform + pos: 45.5,2.5 + parent: 2 + - uid: 26048 + components: + - type: Transform + pos: 45.5,-37.5 + parent: 2 + - uid: 26049 + components: + - type: Transform + pos: 46.5,-37.5 + parent: 2 + - uid: 26050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-28.5 + parent: 2 + - uid: 26051 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 26052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-23.5 + parent: 2 + - uid: 26053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-23.5 + parent: 2 + - uid: 26054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-22.5 + parent: 2 + - uid: 26055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-16.5 + parent: 2 + - uid: 26056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-15.5 + parent: 2 + - uid: 26057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-15.5 + parent: 2 + - uid: 26058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-20.5 + parent: 2 + - uid: 26059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-23.5 + parent: 2 + - uid: 26060 + components: + - type: Transform + pos: -12.5,31.5 + parent: 2 + - uid: 26061 + components: + - type: Transform + pos: -10.5,30.5 + parent: 2 + - uid: 26062 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 + - uid: 26063 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 26064 + components: + - type: Transform + pos: -6.5,10.5 + parent: 2 + - uid: 26065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-23.5 + parent: 2 + - uid: 26066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 2 + - uid: 26067 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 + - uid: 26068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-21.5 + parent: 2 + - uid: 26069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-15.5 + parent: 2 + - uid: 26070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-20.5 + parent: 2 + - uid: 26071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-16.5 + parent: 2 + - uid: 26072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-15.5 + parent: 2 + - uid: 26073 + components: + - type: Transform + pos: 46.5,2.5 + parent: 2 + - uid: 26074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-17.5 + parent: 2 + - uid: 26075 + components: + - type: Transform + pos: -3.5,10.5 + parent: 2 + - uid: 26076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 2 + - uid: 26077 + components: + - type: Transform + pos: 23.5,-28.5 + parent: 2 + - uid: 26078 + components: + - type: Transform + pos: 50.5,1.5 + parent: 2 + - uid: 26079 + components: + - type: Transform + pos: 50.5,-5.5 + parent: 2 + - uid: 26080 + components: + - type: Transform + pos: 50.5,-0.5 + parent: 2 + - uid: 26081 + components: + - type: Transform + pos: 50.5,-1.5 + parent: 2 + - uid: 26082 + components: + - type: Transform + pos: 50.5,-2.5 + parent: 2 + - uid: 26083 + components: + - type: Transform + pos: 50.5,-3.5 + parent: 2 + - uid: 26084 + components: + - type: Transform + pos: 50.5,-4.5 + parent: 2 + - uid: 26085 + components: + - type: Transform + pos: 50.5,-6.5 + parent: 2 + - uid: 26086 + components: + - type: Transform + pos: 50.5,-7.5 + parent: 2 + - uid: 26087 + components: + - type: Transform + pos: 52.5,-7.5 + parent: 2 + - uid: 26088 + components: + - type: Transform + pos: 52.5,-6.5 + parent: 2 + - uid: 26089 + components: + - type: Transform + pos: 52.5,-5.5 + parent: 2 + - uid: 26090 + components: + - type: Transform + pos: 52.5,-4.5 + parent: 2 + - uid: 26091 + components: + - type: Transform + pos: 52.5,-3.5 + parent: 2 + - uid: 26092 + components: + - type: Transform + pos: 52.5,-2.5 + parent: 2 + - uid: 26093 + components: + - type: Transform + pos: 52.5,-1.5 + parent: 2 + - uid: 26094 + components: + - type: Transform + pos: 52.5,-0.5 + parent: 2 + - uid: 26095 + components: + - type: Transform + pos: 52.5,2.5 + parent: 2 + - uid: 26096 + components: + - type: Transform + pos: 52.5,0.5 + parent: 2 + - uid: 26097 + components: + - type: Transform + pos: 52.5,1.5 + parent: 2 + - uid: 26098 + components: + - type: Transform + pos: -62.5,7.5 + parent: 2 + - uid: 26099 + components: + - type: Transform + pos: -32.5,11.5 + parent: 2 + - uid: 26100 + components: + - type: Transform + pos: -37.5,9.5 + parent: 2 + - uid: 26101 + components: + - type: Transform + pos: -44.5,22.5 + parent: 2 + - uid: 26102 + components: + - type: Transform + pos: -44.5,13.5 + parent: 2 + - uid: 26103 + components: + - type: Transform + pos: -39.5,20.5 + parent: 2 + - uid: 26104 + components: + - type: Transform + pos: -45.5,13.5 + parent: 2 + - uid: 26105 + components: + - type: Transform + pos: -39.5,22.5 + parent: 2 + - uid: 26106 + components: + - type: Transform + pos: -51.5,16.5 + parent: 2 + - uid: 26107 + components: + - type: Transform + pos: -42.5,11.5 + parent: 2 + - uid: 26108 + components: + - type: Transform + pos: -42.5,9.5 + parent: 2 + - uid: 26109 + components: + - type: Transform + pos: -45.5,16.5 + parent: 2 + - uid: 26110 + components: + - type: Transform + pos: -44.5,11.5 + parent: 2 + - uid: 26111 + components: + - type: Transform + pos: -42.5,10.5 + parent: 2 + - uid: 26112 + components: + - type: Transform + pos: -45.5,11.5 + parent: 2 + - uid: 26113 + components: + - type: Transform + pos: -45.5,15.5 + parent: 2 + - uid: 26114 + components: + - type: Transform + pos: -45.5,10.5 + parent: 2 + - uid: 26115 + components: + - type: Transform + pos: -45.5,14.5 + parent: 2 + - uid: 26116 + components: + - type: Transform + pos: -38.5,11.5 + parent: 2 + - uid: 26117 + components: + - type: Transform + pos: -39.5,11.5 + parent: 2 + - uid: 26118 + components: + - type: Transform + pos: -39.5,8.5 + parent: 2 + - uid: 26119 + components: + - type: Transform + pos: -39.5,9.5 + parent: 2 + - uid: 26120 + components: + - type: Transform + pos: -45.5,8.5 + parent: 2 + - uid: 26121 + components: + - type: Transform + pos: -44.5,8.5 + parent: 2 + - uid: 26122 + components: + - type: Transform + pos: -43.5,8.5 + parent: 2 + - uid: 26123 + components: + - type: Transform + pos: -42.5,8.5 + parent: 2 + - uid: 26124 + components: + - type: Transform + pos: -41.5,8.5 + parent: 2 + - uid: 26125 + components: + - type: Transform + pos: -40.5,8.5 + parent: 2 + - uid: 26126 + components: + - type: Transform + pos: -45.5,9.5 + parent: 2 + - uid: 26127 + components: + - type: Transform + pos: -50.5,12.5 + parent: 2 + - uid: 26128 + components: + - type: Transform + pos: -50.5,16.5 + parent: 2 + - uid: 26129 + components: + - type: Transform + pos: -42.5,6.5 + parent: 2 + - uid: 26130 + components: + - type: Transform + pos: -43.5,6.5 + parent: 2 + - uid: 26131 + components: + - type: Transform + pos: -44.5,6.5 + parent: 2 + - uid: 26132 + components: + - type: Transform + pos: -46.5,6.5 + parent: 2 + - uid: 26133 + components: + - type: Transform + pos: -47.5,6.5 + parent: 2 + - uid: 26134 + components: + - type: Transform + pos: -47.5,4.5 + parent: 2 + - uid: 26135 + components: + - type: Transform + pos: -60.5,10.5 + parent: 2 + - uid: 26136 + components: + - type: Transform + pos: -60.5,16.5 + parent: 2 + - uid: 26137 + components: + - type: Transform + pos: -55.5,9.5 + parent: 2 + - uid: 26138 + components: + - type: Transform + pos: -58.5,9.5 + parent: 2 + - uid: 26139 + components: + - type: Transform + pos: -56.5,9.5 + parent: 2 + - uid: 26140 + components: + - type: Transform + pos: -57.5,9.5 + parent: 2 + - uid: 26141 + components: + - type: Transform + pos: -60.5,9.5 + parent: 2 + - uid: 26142 + components: + - type: Transform + pos: -64.5,14.5 + parent: 2 + - uid: 26143 + components: + - type: Transform + pos: -64.5,13.5 + parent: 2 + - uid: 26144 + components: + - type: Transform + pos: -64.5,12.5 + parent: 2 + - uid: 26145 + components: + - type: Transform + pos: -64.5,11.5 + parent: 2 + - uid: 26146 + components: + - type: Transform + pos: -50.5,0.5 + parent: 2 + - uid: 26147 + components: + - type: Transform + pos: -62.5,11.5 + parent: 2 + - uid: 26148 + components: + - type: Transform + pos: -60.5,12.5 + parent: 2 + - uid: 26149 + components: + - type: Transform + pos: -60.5,11.5 + parent: 2 + - uid: 26150 + components: + - type: Transform + pos: -60.5,15.5 + parent: 2 + - uid: 26151 + components: + - type: Transform + pos: -59.5,9.5 + parent: 2 + - uid: 26152 + components: + - type: Transform + pos: -55.5,8.5 + parent: 2 + - uid: 26153 + components: + - type: Transform + pos: -62.5,8.5 + parent: 2 + - uid: 26154 + components: + - type: Transform + pos: -62.5,9.5 + parent: 2 + - uid: 26155 + components: + - type: Transform + pos: -62.5,10.5 + parent: 2 + - uid: 26156 + components: + - type: Transform + pos: -65.5,11.5 + parent: 2 + - uid: 26157 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - uid: 26158 + components: + - type: Transform + pos: -60.5,13.5 + parent: 2 + - uid: 26159 + components: + - type: Transform + pos: -52.5,2.5 + parent: 2 + - uid: 26160 + components: + - type: Transform + pos: -54.5,2.5 + parent: 2 + - uid: 26161 + components: + - type: Transform + pos: -47.5,5.5 + parent: 2 + - uid: 26162 + components: + - type: Transform + pos: -47.5,3.5 + parent: 2 + - uid: 26163 + components: + - type: Transform + pos: -47.5,2.5 + parent: 2 + - uid: 26164 + components: + - type: Transform + pos: -52.5,0.5 + parent: 2 + - uid: 26165 + components: + - type: Transform + pos: -53.5,2.5 + parent: 2 + - uid: 26166 + components: + - type: Transform + pos: -48.5,0.5 + parent: 2 + - uid: 26167 + components: + - type: Transform + pos: -43.5,0.5 + parent: 2 + - uid: 26168 + components: + - type: Transform + pos: -42.5,0.5 + parent: 2 + - uid: 26169 + components: + - type: Transform + pos: -41.5,0.5 + parent: 2 + - uid: 26170 + components: + - type: Transform + pos: -47.5,0.5 + parent: 2 + - uid: 26171 + components: + - type: Transform + pos: -40.5,0.5 + parent: 2 + - uid: 26172 + components: + - type: Transform + pos: 50.5,11.5 + parent: 2 + - uid: 26173 + components: + - type: Transform + pos: 41.5,8.5 + parent: 2 + - uid: 26174 + components: + - type: Transform + pos: 41.5,4.5 + parent: 2 + - uid: 26175 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 26176 + components: + - type: Transform + pos: 43.5,4.5 + parent: 2 + - uid: 26177 + components: + - type: Transform + pos: 44.5,4.5 + parent: 2 + - uid: 26178 + components: + - type: Transform + pos: 42.5,8.5 + parent: 2 + - uid: 26179 + components: + - type: Transform + pos: 44.5,7.5 + parent: 2 + - uid: 26180 + components: + - type: Transform + pos: 44.5,6.5 + parent: 2 + - uid: 26181 + components: + - type: Transform + pos: 43.5,8.5 + parent: 2 + - uid: 26182 + components: + - type: Transform + pos: 44.5,5.5 + parent: 2 + - uid: 26183 + components: + - type: Transform + pos: 44.5,8.5 + parent: 2 + - uid: 26184 + components: + - type: Transform + pos: 41.5,7.5 + parent: 2 + - uid: 26185 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 + - uid: 26186 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 + - uid: 26187 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 + - uid: 26188 + components: + - type: Transform + pos: 22.5,1.5 + parent: 2 + - uid: 26189 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 + - uid: 26190 + components: + - type: Transform + pos: 20.5,1.5 + parent: 2 + - uid: 26191 + components: + - type: Transform + pos: 24.5,1.5 + parent: 2 + - uid: 26192 + components: + - type: Transform + pos: 25.5,1.5 + parent: 2 + - uid: 26193 + components: + - type: Transform + pos: 28.5,1.5 + parent: 2 + - uid: 26194 + components: + - type: Transform + pos: 28.5,2.5 + parent: 2 + - uid: 26195 + components: + - type: Transform + pos: 29.5,2.5 + parent: 2 + - uid: 26196 + components: + - type: Transform + pos: 32.5,2.5 + parent: 2 + - uid: 26197 + components: + - type: Transform + pos: 34.5,2.5 + parent: 2 + - uid: 26198 + components: + - type: Transform + pos: 34.5,1.5 + parent: 2 + - uid: 26199 + components: + - type: Transform + pos: 35.5,1.5 + parent: 2 + - uid: 26200 + components: + - type: Transform + pos: 34.5,0.5 + parent: 2 + - uid: 26201 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 2 + - uid: 26202 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 2 + - uid: 26203 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 26204 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 2 + - uid: 26205 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 2 + - uid: 26206 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 2 + - uid: 26207 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 2 + - uid: 26208 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 2 + - uid: 26209 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 2 + - uid: 26210 + components: + - type: Transform + pos: 37.5,1.5 + parent: 2 + - uid: 26211 + components: + - type: Transform + pos: 39.5,1.5 + parent: 2 + - uid: 26212 + components: + - type: Transform + pos: 41.5,1.5 + parent: 2 + - uid: 26213 + components: + - type: Transform + pos: 42.5,1.5 + parent: 2 + - uid: 26214 + components: + - type: Transform + pos: 44.5,2.5 + parent: 2 + - uid: 26215 + components: + - type: Transform + pos: 47.5,7.5 + parent: 2 + - uid: 26216 + components: + - type: Transform + pos: 47.5,8.5 + parent: 2 + - uid: 26217 + components: + - type: Transform + pos: 47.5,9.5 + parent: 2 + - uid: 26218 + components: + - type: Transform + pos: 48.5,9.5 + parent: 2 + - uid: 26219 + components: + - type: Transform + pos: 50.5,7.5 + parent: 2 + - uid: 26220 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - uid: 26221 + components: + - type: Transform + pos: 50.5,9.5 + parent: 2 + - uid: 26222 + components: + - type: Transform + pos: 51.5,6.5 + parent: 2 + - uid: 26223 + components: + - type: Transform + pos: 52.5,6.5 + parent: 2 + - uid: 26224 + components: + - type: Transform + pos: 53.5,6.5 + parent: 2 + - uid: 26225 + components: + - type: Transform + pos: 53.5,7.5 + parent: 2 + - uid: 26226 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 + - uid: 26227 + components: + - type: Transform + pos: 51.5,9.5 + parent: 2 + - uid: 26228 + components: + - type: Transform + pos: 50.5,2.5 + parent: 2 + - uid: 26229 + components: + - type: Transform + pos: 53.5,12.5 + parent: 2 + - uid: 26230 + components: + - type: Transform + pos: 64.5,11.5 + parent: 2 + - uid: 26231 + components: + - type: Transform + pos: 61.5,10.5 + parent: 2 + - uid: 26232 + components: + - type: Transform + pos: 63.5,10.5 + parent: 2 + - uid: 26233 + components: + - type: Transform + pos: 56.5,9.5 + parent: 2 + - uid: 26234 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - uid: 26235 + components: + - type: Transform + pos: 54.5,11.5 + parent: 2 + - uid: 26236 + components: + - type: Transform + pos: 64.5,10.5 + parent: 2 + - uid: 26237 + components: + - type: Transform + pos: 58.5,9.5 + parent: 2 + - uid: 26238 + components: + - type: Transform + pos: 70.5,13.5 + parent: 2 + - uid: 26239 + components: + - type: Transform + pos: 71.5,9.5 + parent: 2 + - uid: 26240 + components: + - type: Transform + pos: 72.5,9.5 + parent: 2 + - uid: 26241 + components: + - type: Transform + pos: 75.5,9.5 + parent: 2 + - uid: 26242 + components: + - type: Transform + pos: 71.5,12.5 + parent: 2 + - uid: 26243 + components: + - type: Transform + pos: 71.5,10.5 + parent: 2 + - uid: 26244 + components: + - type: Transform + pos: 69.5,13.5 + parent: 2 + - uid: 26245 + components: + - type: Transform + pos: 74.5,9.5 + parent: 2 + - uid: 26246 + components: + - type: Transform + pos: 70.5,15.5 + parent: 2 + - uid: 26247 + components: + - type: Transform + pos: 64.5,12.5 + parent: 2 + - uid: 26248 + components: + - type: Transform + pos: 67.5,13.5 + parent: 2 + - uid: 26249 + components: + - type: Transform + pos: 66.5,13.5 + parent: 2 + - uid: 26250 + components: + - type: Transform + pos: 58.5,11.5 + parent: 2 + - uid: 26251 + components: + - type: Transform + pos: 59.5,9.5 + parent: 2 + - uid: 26252 + components: + - type: Transform + pos: 55.5,11.5 + parent: 2 + - uid: 26253 + components: + - type: Transform + pos: 63.5,18.5 + parent: 2 + - uid: 26254 + components: + - type: Transform + pos: 59.5,16.5 + parent: 2 + - uid: 26255 + components: + - type: Transform + pos: 59.5,15.5 + parent: 2 + - uid: 26256 + components: + - type: Transform + pos: 54.5,15.5 + parent: 2 + - uid: 26257 + components: + - type: Transform + pos: 63.5,19.5 + parent: 2 + - uid: 26258 + components: + - type: Transform + pos: 64.5,15.5 + parent: 2 + - uid: 26259 + components: + - type: Transform + pos: 59.5,18.5 + parent: 2 + - uid: 26260 + components: + - type: Transform + pos: 68.5,15.5 + parent: 2 + - uid: 26261 + components: + - type: Transform + pos: 69.5,15.5 + parent: 2 + - uid: 26262 + components: + - type: Transform + pos: 66.5,15.5 + parent: 2 + - uid: 26263 + components: + - type: Transform + pos: 63.5,15.5 + parent: 2 + - uid: 26264 + components: + - type: Transform + pos: 59.5,17.5 + parent: 2 + - uid: 26265 + components: + - type: Transform + pos: 62.5,15.5 + parent: 2 + - uid: 26266 + components: + - type: Transform + pos: 60.5,15.5 + parent: 2 + - uid: 26267 + components: + - type: Transform + pos: 73.5,7.5 + parent: 2 + - uid: 26268 + components: + - type: Transform + pos: 72.5,7.5 + parent: 2 + - uid: 26269 + components: + - type: Transform + pos: 71.5,7.5 + parent: 2 + - uid: 26270 + components: + - type: Transform + pos: 70.5,7.5 + parent: 2 + - uid: 26271 + components: + - type: Transform + pos: 69.5,7.5 + parent: 2 + - uid: 26272 + components: + - type: Transform + pos: 66.5,7.5 + parent: 2 + - uid: 26273 + components: + - type: Transform + pos: 65.5,7.5 + parent: 2 + - uid: 26274 + components: + - type: Transform + pos: 65.5,8.5 + parent: 2 + - uid: 26275 + components: + - type: Transform + pos: 78.5,11.5 + parent: 2 + - uid: 26276 + components: + - type: Transform + pos: 79.5,11.5 + parent: 2 + - uid: 26277 + components: + - type: Transform + pos: 80.5,11.5 + parent: 2 + - uid: 26278 + components: + - type: Transform + pos: 81.5,11.5 + parent: 2 + - uid: 26279 + components: + - type: Transform + pos: 77.5,7.5 + parent: 2 + - uid: 26280 + components: + - type: Transform + pos: 78.5,7.5 + parent: 2 + - uid: 26281 + components: + - type: Transform + pos: 74.5,6.5 + parent: 2 + - uid: 26282 + components: + - type: Transform + pos: 73.5,6.5 + parent: 2 + - uid: 26283 + components: + - type: Transform + pos: 67.5,15.5 + parent: 2 + - uid: 26284 + components: + - type: Transform + pos: 59.5,14.5 + parent: 2 + - uid: 26285 + components: + - type: Transform + pos: 54.5,14.5 + parent: 2 + - uid: 26286 + components: + - type: Transform + pos: 54.5,16.5 + parent: 2 + - uid: 26287 + components: + - type: Transform + pos: 61.5,11.5 + parent: 2 + - uid: 26288 + components: + - type: Transform + pos: 59.5,7.5 + parent: 2 + - uid: 26289 + components: + - type: Transform + pos: 59.5,8.5 + parent: 2 + - uid: 26290 + components: + - type: Transform + pos: 58.5,6.5 + parent: 2 + - uid: 26291 + components: + - type: Transform + pos: 57.5,6.5 + parent: 2 + - uid: 26292 + components: + - type: Transform + pos: 56.5,6.5 + parent: 2 + - uid: 26293 + components: + - type: Transform + pos: 56.5,7.5 + parent: 2 + - uid: 26294 + components: + - type: Transform + pos: 56.5,8.5 + parent: 2 + - uid: 26295 + components: + - type: Transform + pos: 64.5,13.5 + parent: 2 + - uid: 26296 + components: + - type: Transform + pos: 63.5,13.5 + parent: 2 + - uid: 26297 + components: + - type: Transform + pos: 68.5,6.5 + parent: 2 + - uid: 26298 + components: + - type: Transform + pos: 68.5,4.5 + parent: 2 + - uid: 26299 + components: + - type: Transform + pos: 67.5,4.5 + parent: 2 + - uid: 26300 + components: + - type: Transform + pos: 66.5,4.5 + parent: 2 + - uid: 26301 + components: + - type: Transform + pos: 65.5,4.5 + parent: 2 + - uid: 26302 + components: + - type: Transform + pos: 64.5,4.5 + parent: 2 + - uid: 26303 + components: + - type: Transform + pos: 63.5,4.5 + parent: 2 + - uid: 26304 + components: + - type: Transform + pos: 62.5,4.5 + parent: 2 + - uid: 26305 + components: + - type: Transform + pos: 62.5,3.5 + parent: 2 + - uid: 26306 + components: + - type: Transform + pos: 60.5,3.5 + parent: 2 + - uid: 26307 + components: + - type: Transform + pos: 59.5,3.5 + parent: 2 + - uid: 26308 + components: + - type: Transform + pos: 59.5,4.5 + parent: 2 + - uid: 26309 + components: + - type: Transform + pos: 58.5,4.5 + parent: 2 + - uid: 26310 + components: + - type: Transform + pos: 57.5,4.5 + parent: 2 + - uid: 26311 + components: + - type: Transform + pos: 56.5,4.5 + parent: 2 + - uid: 26312 + components: + - type: Transform + pos: 55.5,4.5 + parent: 2 + - uid: 26313 + components: + - type: Transform + pos: 53.5,3.5 + parent: 2 + - uid: 26314 + components: + - type: Transform + pos: 55.5,3.5 + parent: 2 + - uid: 26315 + components: + - type: Transform + pos: 52.5,3.5 + parent: 2 + - uid: 26316 + components: + - type: Transform + pos: 61.5,12.5 + parent: 2 + - uid: 26317 + components: + - type: Transform + pos: 66.5,10.5 + parent: 2 + - uid: 26318 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 2 + - uid: 26319 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - uid: 26320 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 26321 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 + - uid: 26322 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - uid: 26323 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 26324 + components: + - type: Transform + pos: -65.5,-12.5 + parent: 2 + - uid: 26325 + components: + - type: Transform + pos: -62.5,-15.5 + parent: 2 + - uid: 26326 + components: + - type: Transform + pos: -62.5,-14.5 + parent: 2 + - uid: 26327 + components: + - type: Transform + pos: -62.5,-12.5 + parent: 2 + - uid: 26328 + components: + - type: Transform + pos: -62.5,-11.5 + parent: 2 + - uid: 26329 + components: + - type: Transform + pos: -62.5,-8.5 + parent: 2 + - uid: 26330 + components: + - type: Transform + pos: -62.5,-7.5 + parent: 2 + - uid: 26331 + components: + - type: Transform + pos: -62.5,-6.5 + parent: 2 + - uid: 26332 + components: + - type: Transform + pos: -62.5,-9.5 + parent: 2 + - uid: 26333 + components: + - type: Transform + pos: -65.5,-6.5 + parent: 2 + - uid: 26334 + components: + - type: Transform + pos: -61.5,-6.5 + parent: 2 + - uid: 26335 + components: + - type: Transform + pos: -60.5,-6.5 + parent: 2 + - uid: 26336 + components: + - type: Transform + pos: -59.5,-6.5 + parent: 2 + - uid: 26337 + components: + - type: Transform + pos: -57.5,-6.5 + parent: 2 + - uid: 26338 + components: + - type: Transform + pos: -56.5,-6.5 + parent: 2 + - uid: 26339 + components: + - type: Transform + pos: -55.5,-6.5 + parent: 2 + - uid: 26340 + components: + - type: Transform + pos: -54.5,-6.5 + parent: 2 + - uid: 26341 + components: + - type: Transform + pos: -53.5,-6.5 + parent: 2 + - uid: 26342 + components: + - type: Transform + pos: -52.5,-6.5 + parent: 2 + - uid: 26343 + components: + - type: Transform + pos: -52.5,-5.5 + parent: 2 + - uid: 26344 + components: + - type: Transform + pos: -52.5,-4.5 + parent: 2 + - uid: 26345 + components: + - type: Transform + pos: -52.5,-3.5 + parent: 2 + - uid: 26346 + components: + - type: Transform + pos: -49.5,-3.5 + parent: 2 + - uid: 26347 + components: + - type: Transform + pos: -53.5,-7.5 + parent: 2 + - uid: 26348 + components: + - type: Transform + pos: -53.5,-8.5 + parent: 2 + - uid: 26349 + components: + - type: Transform + pos: -53.5,-9.5 + parent: 2 + - uid: 26350 + components: + - type: Transform + pos: -53.5,-10.5 + parent: 2 + - uid: 26351 + components: + - type: Transform + pos: -53.5,-11.5 + parent: 2 + - uid: 26352 + components: + - type: Transform + pos: -53.5,-12.5 + parent: 2 + - uid: 26353 + components: + - type: Transform + pos: -53.5,-13.5 + parent: 2 + - uid: 26354 + components: + - type: Transform + pos: -53.5,-14.5 + parent: 2 + - uid: 26355 + components: + - type: Transform + pos: -52.5,-14.5 + parent: 2 + - uid: 26356 + components: + - type: Transform + pos: -54.5,-12.5 + parent: 2 + - uid: 26357 + components: + - type: Transform + pos: -55.5,-12.5 + parent: 2 + - uid: 26358 + components: + - type: Transform + pos: -56.5,-12.5 + parent: 2 + - uid: 26359 + components: + - type: Transform + pos: -58.5,-12.5 + parent: 2 + - uid: 26360 + components: + - type: Transform + pos: -59.5,-12.5 + parent: 2 + - uid: 26361 + components: + - type: Transform + pos: -60.5,-12.5 + parent: 2 + - uid: 26362 + components: + - type: Transform + pos: -61.5,-12.5 + parent: 2 + - uid: 26363 + components: + - type: Transform + pos: -61.5,-14.5 + parent: 2 + - uid: 26364 + components: + - type: Transform + pos: -59.5,-14.5 + parent: 2 + - uid: 26365 + components: + - type: Transform + pos: -58.5,-14.5 + parent: 2 + - uid: 26366 + components: + - type: Transform + pos: -57.5,-14.5 + parent: 2 + - uid: 26367 + components: + - type: Transform + pos: -56.5,-14.5 + parent: 2 + - uid: 26368 + components: + - type: Transform + pos: -56.5,-15.5 + parent: 2 + - uid: 26369 + components: + - type: Transform + pos: -56.5,-17.5 + parent: 2 + - uid: 26370 + components: + - type: Transform + pos: -55.5,-17.5 + parent: 2 + - uid: 26371 + components: + - type: Transform + pos: -49.5,-9.5 + parent: 2 + - uid: 26372 + components: + - type: Transform + pos: -49.5,-10.5 + parent: 2 + - uid: 26373 + components: + - type: Transform + pos: -49.5,-11.5 + parent: 2 + - uid: 26374 + components: + - type: Transform + pos: -49.5,-12.5 + parent: 2 + - uid: 26375 + components: + - type: Transform + pos: -49.5,-13.5 + parent: 2 + - uid: 26376 + components: + - type: Transform + pos: -49.5,-14.5 + parent: 2 + - uid: 26377 + components: + - type: Transform + pos: -49.5,-15.5 + parent: 2 + - uid: 26378 + components: + - type: Transform + pos: -49.5,-17.5 + parent: 2 + - uid: 26379 + components: + - type: Transform + pos: -48.5,-17.5 + parent: 2 + - uid: 26380 + components: + - type: Transform + pos: -47.5,-17.5 + parent: 2 + - uid: 26381 + components: + - type: Transform + pos: -46.5,-17.5 + parent: 2 + - uid: 26382 + components: + - type: Transform + pos: -44.5,-17.5 + parent: 2 + - uid: 26383 + components: + - type: Transform + pos: -44.5,-16.5 + parent: 2 + - uid: 26384 + components: + - type: Transform + pos: -44.5,-15.5 + parent: 2 + - uid: 26385 + components: + - type: Transform + pos: -44.5,-13.5 + parent: 2 + - uid: 26386 + components: + - type: Transform + pos: -44.5,-12.5 + parent: 2 + - uid: 26387 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 2 + - uid: 26388 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 2 + - uid: 26389 + components: + - type: Transform + pos: -47.5,-9.5 + parent: 2 + - uid: 26390 + components: + - type: Transform + pos: -48.5,-9.5 + parent: 2 + - uid: 26391 + components: + - type: Transform + pos: -47.5,-11.5 + parent: 2 + - uid: 26392 + components: + - type: Transform + pos: -48.5,-11.5 + parent: 2 + - uid: 26393 + components: + - type: Transform + pos: -48.5,-13.5 + parent: 2 + - uid: 26394 + components: + - type: Transform + pos: -47.5,-13.5 + parent: 2 + - uid: 26395 + components: + - type: Transform + pos: -47.5,-15.5 + parent: 2 + - uid: 26396 + components: + - type: Transform + pos: -48.5,-15.5 + parent: 2 + - uid: 26397 + components: + - type: Transform + pos: -48.5,-8.5 + parent: 2 + - uid: 26398 + components: + - type: Transform + pos: -48.5,-7.5 + parent: 2 + - uid: 26399 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 2 + - uid: 26400 + components: + - type: Transform + pos: -48.5,-5.5 + parent: 2 + - uid: 26401 + components: + - type: Transform + pos: -48.5,-4.5 + parent: 2 + - uid: 26402 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 2 + - uid: 26403 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 2 + - uid: 26404 + components: + - type: Transform + pos: -46.5,-3.5 + parent: 2 + - uid: 26405 + components: + - type: Transform + pos: -45.5,-3.5 + parent: 2 + - uid: 26406 + components: + - type: Transform + pos: -44.5,-3.5 + parent: 2 + - uid: 26407 + components: + - type: Transform + pos: -52.5,-18.5 + parent: 2 + - uid: 26408 + components: + - type: Transform + pos: -60.5,-19.5 + parent: 2 + - uid: 26409 + components: + - type: Transform + pos: -60.5,-17.5 + parent: 2 + - uid: 26410 + components: + - type: Transform + pos: -19.5,-41.5 + parent: 2 + - uid: 26411 + components: + - type: Transform + pos: -41.5,-19.5 + parent: 2 + - uid: 26412 + components: + - type: Transform + pos: -43.5,-13.5 + parent: 2 + - uid: 26413 + components: + - type: Transform + pos: -42.5,-13.5 + parent: 2 + - uid: 26414 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 2 + - uid: 26415 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 2 + - uid: 26416 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 2 + - uid: 26417 + components: + - type: Transform + pos: -40.5,-12.5 + parent: 2 + - uid: 26418 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 2 + - uid: 26419 + components: + - type: Transform + pos: -34.5,-7.5 + parent: 2 + - uid: 26420 + components: + - type: Transform + pos: -35.5,-3.5 + parent: 2 + - uid: 26421 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 2 + - uid: 26422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-20.5 + parent: 2 + - uid: 26423 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 2 + - uid: 26424 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 + - uid: 26425 + components: + - type: Transform + pos: -31.5,-7.5 + parent: 2 + - uid: 26426 + components: + - type: Transform + pos: -31.5,-6.5 + parent: 2 + - uid: 26427 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 2 + - uid: 26428 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 2 + - uid: 26429 + components: + - type: Transform + pos: -31.5,-3.5 + parent: 2 + - uid: 26430 + components: + - type: Transform + pos: -40.5,-10.5 + parent: 2 + - uid: 26431 + components: + - type: Transform + pos: -40.5,-11.5 + parent: 2 + - uid: 26432 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - uid: 26433 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 2 + - uid: 26434 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 2 + - uid: 26435 + components: + - type: Transform + pos: -29.5,-6.5 + parent: 2 + - uid: 26436 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 2 + - uid: 26437 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 2 + - uid: 26438 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 2 + - uid: 26439 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 2 + - uid: 26440 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 2 + - uid: 26441 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - uid: 26442 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - uid: 26443 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 2 + - uid: 26444 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 2 + - uid: 26445 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 2 + - uid: 26446 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 2 + - uid: 26447 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 2 + - uid: 26448 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 2 + - uid: 26449 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 2 + - uid: 26450 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 2 + - uid: 26451 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 + - uid: 26452 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 26453 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 26454 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 26455 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 26456 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 26457 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 2 + - uid: 26458 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 2 + - uid: 26459 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 2 + - uid: 26460 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 2 + - uid: 26461 + components: + - type: Transform + pos: -25.5,-14.5 + parent: 2 + - uid: 26462 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 2 + - uid: 26463 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 2 + - uid: 26464 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - uid: 26465 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 + - uid: 26466 + components: + - type: Transform + pos: -21.5,-14.5 + parent: 2 + - uid: 26467 + components: + - type: Transform + pos: -20.5,-14.5 + parent: 2 + - uid: 26468 + components: + - type: Transform + pos: -19.5,-14.5 + parent: 2 + - uid: 26469 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 2 + - uid: 26470 + components: + - type: Transform + pos: -27.5,-14.5 + parent: 2 + - uid: 26471 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 26472 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - uid: 26473 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 26474 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 2 + - uid: 26475 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - uid: 26476 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - uid: 26477 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 2 + - uid: 26478 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 2 + - uid: 26479 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 2 + - uid: 26480 + components: + - type: Transform + pos: -33.5,-9.5 + parent: 2 + - uid: 26481 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - uid: 26482 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 2 + - uid: 26483 + components: + - type: Transform + pos: -33.5,-12.5 + parent: 2 + - uid: 26484 + components: + - type: Transform + pos: -33.5,-13.5 + parent: 2 + - uid: 26485 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 2 + - uid: 26486 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 2 + - uid: 26487 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 2 + - uid: 26488 + components: + - type: Transform + pos: -33.5,-17.5 + parent: 2 + - uid: 26489 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 2 + - uid: 26490 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 2 + - uid: 26491 + components: + - type: Transform + pos: -30.5,-17.5 + parent: 2 + - uid: 26492 + components: + - type: Transform + pos: -28.5,-17.5 + parent: 2 + - uid: 26493 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 2 + - uid: 26494 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 26495 + components: + - type: Transform + pos: -40.5,-19.5 + parent: 2 + - uid: 26496 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 2 + - uid: 26497 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 2 + - uid: 26498 + components: + - type: Transform + pos: -38.5,-17.5 + parent: 2 + - uid: 26499 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 2 + - uid: 26500 + components: + - type: Transform + pos: -36.5,-17.5 + parent: 2 + - uid: 26501 + components: + - type: Transform + pos: -35.5,-17.5 + parent: 2 + - uid: 26502 + components: + - type: Transform + pos: -34.5,-17.5 + parent: 2 + - uid: 26503 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 2 + - uid: 26504 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 2 + - uid: 26505 + components: + - type: Transform + pos: -27.5,-18.5 + parent: 2 + - uid: 26506 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 + - uid: 26507 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 2 + - uid: 26508 + components: + - type: Transform + pos: -19.5,-20.5 + parent: 2 + - uid: 26509 + components: + - type: Transform + pos: -20.5,-20.5 + parent: 2 + - uid: 26510 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 2 + - uid: 26511 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 2 + - uid: 26512 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 2 + - uid: 26513 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 2 + - uid: 26514 + components: + - type: Transform + pos: -29.5,-24.5 + parent: 2 + - uid: 26515 + components: + - type: Transform + pos: -29.5,-25.5 + parent: 2 + - uid: 26516 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 2 + - uid: 26517 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 2 + - uid: 26518 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 2 + - uid: 26519 + components: + - type: Transform + pos: -28.5,-28.5 + parent: 2 + - uid: 26520 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 2 + - uid: 26521 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 2 + - uid: 26522 + components: + - type: Transform + pos: 48.5,12.5 + parent: 2 + - uid: 26523 + components: + - type: Transform + pos: 50.5,12.5 + parent: 2 + - uid: 26524 + components: + - type: Transform + pos: 51.5,12.5 + parent: 2 + - uid: 26525 + components: + - type: Transform + pos: 52.5,12.5 + parent: 2 + - uid: 26526 + components: + - type: Transform + pos: 39.5,-15.5 + parent: 2 + - uid: 26527 + components: + - type: Transform + pos: -20.5,-41.5 + parent: 2 + - uid: 26528 + components: + - type: Transform + pos: 40.5,-15.5 + parent: 2 + - uid: 26529 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 2 + - uid: 26530 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 2 + - uid: 26531 + components: + - type: Transform + pos: -16.5,-46.5 + parent: 2 + - uid: 26532 + components: + - type: Transform + pos: -3.5,-54.5 + parent: 2 + - uid: 26533 + components: + - type: Transform + pos: -2.5,-54.5 + parent: 2 + - uid: 26534 + components: + - type: Transform + pos: -2.5,-44.5 + parent: 2 + - uid: 26535 + components: + - type: Transform + pos: -2.5,-45.5 + parent: 2 + - uid: 26536 + components: + - type: Transform + pos: -2.5,-46.5 + parent: 2 + - uid: 26537 + components: + - type: Transform + pos: -2.5,-47.5 + parent: 2 + - uid: 26538 + components: + - type: Transform + pos: -2.5,-48.5 + parent: 2 + - uid: 26539 + components: + - type: Transform + pos: -2.5,-49.5 + parent: 2 + - uid: 26540 + components: + - type: Transform + pos: -2.5,-50.5 + parent: 2 + - uid: 26541 + components: + - type: Transform + pos: -2.5,-51.5 + parent: 2 + - uid: 26542 + components: + - type: Transform + pos: -2.5,-52.5 + parent: 2 + - uid: 26543 + components: + - type: Transform + pos: -2.5,-42.5 + parent: 2 + - uid: 26544 + components: + - type: Transform + pos: -2.5,-41.5 + parent: 2 + - uid: 26545 + components: + - type: Transform + pos: -2.5,-40.5 + parent: 2 + - uid: 26546 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 2 + - uid: 26547 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 2 + - uid: 26548 + components: + - type: Transform + pos: -2.5,-37.5 + parent: 2 + - uid: 26549 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 2 + - uid: 26550 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 2 + - uid: 26551 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 2 + - uid: 26552 + components: + - type: Transform + pos: 1.5,-50.5 + parent: 2 + - uid: 26553 + components: + - type: Transform + pos: -19.5,-40.5 + parent: 2 + - uid: 26554 + components: + - type: Transform + pos: 1.5,-52.5 + parent: 2 + - uid: 26555 + components: + - type: Transform + pos: 1.5,-53.5 + parent: 2 + - uid: 26556 + components: + - type: Transform + pos: 1.5,-54.5 + parent: 2 + - uid: 26557 + components: + - type: Transform + pos: 2.5,-54.5 + parent: 2 + - uid: 26558 + components: + - type: Transform + pos: 47.5,12.5 + parent: 2 + - uid: 26559 + components: + - type: Transform + pos: 46.5,12.5 + parent: 2 + - uid: 26560 + components: + - type: Transform + pos: 44.5,1.5 + parent: 2 + - uid: 26561 + components: + - type: Transform + pos: 43.5,-21.5 + parent: 2 + - uid: 26562 + components: + - type: Transform + pos: 48.5,-25.5 + parent: 2 + - uid: 26563 + components: + - type: Transform + pos: 47.5,-25.5 + parent: 2 + - uid: 26564 + components: + - type: Transform + pos: 80.5,15.5 + parent: 2 + - uid: 26565 + components: + - type: Transform + pos: 78.5,15.5 + parent: 2 + - uid: 26566 + components: + - type: Transform + pos: 44.5,-21.5 + parent: 2 + - uid: 26567 + components: + - type: Transform + pos: 77.5,15.5 + parent: 2 + - uid: 26568 + components: + - type: Transform + pos: 75.5,15.5 + parent: 2 + - uid: 26569 + components: + - type: Transform + pos: 51.5,-15.5 + parent: 2 + - uid: 26570 + components: + - type: Transform + pos: 50.5,-15.5 + parent: 2 + - uid: 26571 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 2 + - uid: 26572 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 2 + - uid: 26573 + components: + - type: Transform + pos: 76.5,15.5 + parent: 2 + - uid: 26574 + components: + - type: Transform + pos: 74.5,15.5 + parent: 2 + - uid: 26575 + components: + - type: Transform + pos: 42.5,-15.5 + parent: 2 + - uid: 26576 + components: + - type: Transform + pos: 43.5,-15.5 + parent: 2 + - uid: 26577 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 2 + - uid: 26578 + components: + - type: Transform + pos: 48.5,-15.5 + parent: 2 + - uid: 26579 + components: + - type: Transform + pos: 40.5,-21.5 + parent: 2 + - uid: 26580 + components: + - type: Transform + pos: 46.5,-21.5 + parent: 2 + - uid: 26581 + components: + - type: Transform + pos: 47.5,-21.5 + parent: 2 + - uid: 26582 + components: + - type: Transform + pos: 42.5,-21.5 + parent: 2 + - uid: 26583 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 2 + - uid: 26584 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 2 + - uid: 26585 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 2 + - uid: 26586 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 2 + - uid: 26587 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 2 + - uid: 26588 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 2 + - uid: 26589 + components: + - type: Transform + pos: 23.5,-36.5 + parent: 2 + - uid: 26590 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 2 + - uid: 26591 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 2 + - uid: 26592 + components: + - type: Transform + pos: -44.5,21.5 + parent: 2 + - uid: 26593 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 2 + - uid: 26594 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 2 + - uid: 26595 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 2 + - uid: 26596 + components: + - type: Transform + pos: 17.5,-37.5 + parent: 2 + - uid: 26597 + components: + - type: Transform + pos: 18.5,-37.5 + parent: 2 + - uid: 26598 + components: + - type: Transform + pos: 20.5,-37.5 + parent: 2 + - uid: 26599 + components: + - type: Transform + pos: 21.5,-37.5 + parent: 2 + - uid: 26600 + components: + - type: Transform + pos: 22.5,-37.5 + parent: 2 + - uid: 26601 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 2 + - uid: 26602 + components: + - type: Transform + pos: 24.5,-37.5 + parent: 2 + - uid: 26603 + components: + - type: Transform + pos: 26.5,-37.5 + parent: 2 + - uid: 26604 + components: + - type: Transform + pos: 27.5,-37.5 + parent: 2 + - uid: 26605 + components: + - type: Transform + pos: 28.5,-37.5 + parent: 2 + - uid: 26606 + components: + - type: Transform + pos: 29.5,-37.5 + parent: 2 + - uid: 26607 + components: + - type: Transform + pos: 30.5,-37.5 + parent: 2 + - uid: 26608 + components: + - type: Transform + pos: 31.5,-37.5 + parent: 2 + - uid: 26609 + components: + - type: Transform + pos: 32.5,-37.5 + parent: 2 + - uid: 26610 + components: + - type: Transform + pos: 33.5,-37.5 + parent: 2 + - uid: 26611 + components: + - type: Transform + pos: 34.5,-37.5 + parent: 2 + - uid: 26612 + components: + - type: Transform + pos: 35.5,-37.5 + parent: 2 + - uid: 26613 + components: + - type: Transform + pos: 36.5,-37.5 + parent: 2 + - uid: 26614 + components: + - type: Transform + pos: 37.5,-37.5 + parent: 2 + - uid: 26615 + components: + - type: Transform + pos: 38.5,-37.5 + parent: 2 + - uid: 26616 + components: + - type: Transform + pos: 38.5,-41.5 + parent: 2 + - uid: 26617 + components: + - type: Transform + pos: 38.5,-42.5 + parent: 2 + - uid: 26618 + components: + - type: Transform + pos: 38.5,-43.5 + parent: 2 + - uid: 26619 + components: + - type: Transform + pos: 38.5,-44.5 + parent: 2 + - uid: 26620 + components: + - type: Transform + pos: 37.5,-44.5 + parent: 2 + - uid: 26621 + components: + - type: Transform + pos: 36.5,-44.5 + parent: 2 + - uid: 26622 + components: + - type: Transform + pos: 35.5,-44.5 + parent: 2 + - uid: 26623 + components: + - type: Transform + pos: 34.5,-44.5 + parent: 2 + - uid: 26624 + components: + - type: Transform + pos: 33.5,-44.5 + parent: 2 + - uid: 26625 + components: + - type: Transform + pos: 38.5,-47.5 + parent: 2 + - uid: 26626 + components: + - type: Transform + pos: 33.5,-40.5 + parent: 2 + - uid: 26627 + components: + - type: Transform + pos: 33.5,-41.5 + parent: 2 + - uid: 26628 + components: + - type: Transform + pos: 33.5,-42.5 + parent: 2 + - uid: 26629 + components: + - type: Transform + pos: 33.5,-43.5 + parent: 2 + - uid: 26630 + components: + - type: Transform + pos: 37.5,-47.5 + parent: 2 + - uid: 26631 + components: + - type: Transform + pos: 36.5,-47.5 + parent: 2 + - uid: 26632 + components: + - type: Transform + pos: 35.5,-47.5 + parent: 2 + - uid: 26633 + components: + - type: Transform + pos: 34.5,-47.5 + parent: 2 + - uid: 26634 + components: + - type: Transform + pos: 33.5,-47.5 + parent: 2 + - uid: 26635 + components: + - type: Transform + pos: 33.5,-46.5 + parent: 2 + - uid: 26636 + components: + - type: Transform + pos: 33.5,-45.5 + parent: 2 + - uid: 26637 + components: + - type: Transform + pos: 33.5,-49.5 + parent: 2 + - uid: 26638 + components: + - type: Transform + pos: 39.5,-50.5 + parent: 2 + - uid: 26639 + components: + - type: Transform + pos: 33.5,-48.5 + parent: 2 + - uid: 26640 + components: + - type: Transform + pos: 41.5,-50.5 + parent: 2 + - uid: 26641 + components: + - type: Transform + pos: 48.5,-48.5 + parent: 2 + - uid: 26642 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 2 + - uid: 26643 + components: + - type: Transform + pos: 37.5,-54.5 + parent: 2 + - uid: 26644 + components: + - type: Transform + pos: 43.5,-36.5 + parent: 2 + - uid: 26645 + components: + - type: Transform + pos: 50.5,-22.5 + parent: 2 + - uid: 26646 + components: + - type: Transform + pos: 50.5,-23.5 + parent: 2 + - uid: 26647 + components: + - type: Transform + pos: 50.5,-24.5 + parent: 2 + - uid: 26648 + components: + - type: Transform + pos: 50.5,-25.5 + parent: 2 + - uid: 26649 + components: + - type: Transform + pos: 51.5,-25.5 + parent: 2 + - uid: 26650 + components: + - type: Transform + pos: 51.5,-26.5 + parent: 2 + - uid: 26651 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 2 + - uid: 26652 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 2 + - uid: 26653 + components: + - type: Transform + pos: 33.5,-38.5 + parent: 2 + - uid: 26654 + components: + - type: Transform + pos: 68.5,-49.5 + parent: 2 + - uid: 26655 + components: + - type: Transform + pos: 68.5,-48.5 + parent: 2 + - uid: 26656 + components: + - type: Transform + pos: 71.5,-54.5 + parent: 2 + - uid: 26657 + components: + - type: Transform + pos: 69.5,-47.5 + parent: 2 + - uid: 26658 + components: + - type: Transform + pos: 69.5,-43.5 + parent: 2 + - uid: 26659 + components: + - type: Transform + pos: 68.5,-31.5 + parent: 2 + - uid: 26660 + components: + - type: Transform + pos: 68.5,-27.5 + parent: 2 + - uid: 26661 + components: + - type: Transform + pos: 78.5,-26.5 + parent: 2 + - uid: 26662 + components: + - type: Transform + pos: 81.5,-26.5 + parent: 2 + - uid: 26663 + components: + - type: Transform + pos: 64.5,-36.5 + parent: 2 + - uid: 26664 + components: + - type: Transform + pos: 64.5,-37.5 + parent: 2 + - uid: 26665 + components: + - type: Transform + pos: 64.5,-34.5 + parent: 2 + - uid: 26666 + components: + - type: Transform + pos: 64.5,-33.5 + parent: 2 + - uid: 26667 + components: + - type: Transform + pos: 82.5,-38.5 + parent: 2 + - uid: 26668 + components: + - type: Transform + pos: 83.5,-35.5 + parent: 2 + - uid: 26669 + components: + - type: Transform + pos: 80.5,-38.5 + parent: 2 + - uid: 26670 + components: + - type: Transform + pos: 83.5,-34.5 + parent: 2 + - uid: 26671 + components: + - type: Transform + pos: 82.5,-34.5 + parent: 2 + - uid: 26672 + components: + - type: Transform + pos: 80.5,-34.5 + parent: 2 + - uid: 26673 + components: + - type: Transform + pos: 84.5,-34.5 + parent: 2 + - uid: 26674 + components: + - type: Transform + pos: 86.5,-33.5 + parent: 2 + - uid: 26675 + components: + - type: Transform + pos: 85.5,-33.5 + parent: 2 + - uid: 26676 + components: + - type: Transform + pos: 87.5,-31.5 + parent: 2 + - uid: 26677 + components: + - type: Transform + pos: 87.5,-30.5 + parent: 2 + - uid: 26678 + components: + - type: Transform + pos: 86.5,-30.5 + parent: 2 + - uid: 26679 + components: + - type: Transform + pos: 84.5,-30.5 + parent: 2 + - uid: 26680 + components: + - type: Transform + pos: 87.5,-27.5 + parent: 2 + - uid: 26681 + components: + - type: Transform + pos: 87.5,-26.5 + parent: 2 + - uid: 26682 + components: + - type: Transform + pos: 87.5,-25.5 + parent: 2 + - uid: 26683 + components: + - type: Transform + pos: 68.5,-21.5 + parent: 2 + - uid: 26684 + components: + - type: Transform + pos: 64.5,-21.5 + parent: 2 + - uid: 26685 + components: + - type: Transform + pos: 64.5,-24.5 + parent: 2 + - uid: 26686 + components: + - type: Transform + pos: 64.5,-25.5 + parent: 2 + - uid: 26687 + components: + - type: Transform + pos: 60.5,-25.5 + parent: 2 + - uid: 26688 + components: + - type: Transform + pos: 59.5,-25.5 + parent: 2 + - uid: 26689 + components: + - type: Transform + pos: 57.5,-25.5 + parent: 2 + - uid: 26690 + components: + - type: Transform + pos: 56.5,-25.5 + parent: 2 + - uid: 26691 + components: + - type: Transform + pos: 55.5,-25.5 + parent: 2 + - uid: 26692 + components: + - type: Transform + pos: 54.5,-25.5 + parent: 2 + - uid: 26693 + components: + - type: Transform + pos: 52.5,-25.5 + parent: 2 + - uid: 26694 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 + - uid: 26695 + components: + - type: Transform + pos: 56.5,-21.5 + parent: 2 + - uid: 26696 + components: + - type: Transform + pos: 55.5,-21.5 + parent: 2 + - uid: 26697 + components: + - type: Transform + pos: 54.5,-21.5 + parent: 2 + - uid: 26698 + components: + - type: Transform + pos: 53.5,-21.5 + parent: 2 + - uid: 26699 + components: + - type: Transform + pos: 52.5,-21.5 + parent: 2 + - uid: 26700 + components: + - type: Transform + pos: 51.5,-21.5 + parent: 2 + - uid: 26701 + components: + - type: Transform + pos: 50.5,-20.5 + parent: 2 + - uid: 26702 + components: + - type: Transform + pos: 50.5,-19.5 + parent: 2 + - uid: 26703 + components: + - type: Transform + pos: 50.5,-18.5 + parent: 2 + - uid: 26704 + components: + - type: Transform + pos: 56.5,-16.5 + parent: 2 + - uid: 26705 + components: + - type: Transform + pos: 17.5,-36.5 + parent: 2 + - uid: 26706 + components: + - type: Transform + pos: 48.5,-16.5 + parent: 2 + - uid: 26707 + components: + - type: Transform + pos: 46.5,-15.5 + parent: 2 + - uid: 26708 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 2 + - uid: 26709 + components: + - type: Transform + pos: 48.5,-19.5 + parent: 2 + - uid: 26710 + components: + - type: Transform + pos: 36.5,-21.5 + parent: 2 + - uid: 26711 + components: + - type: Transform + pos: 73.5,15.5 + parent: 2 + - uid: 26712 + components: + - type: Transform + pos: 6.5,-51.5 + parent: 2 + - uid: 26713 + components: + - type: Transform + pos: 47.5,-19.5 + parent: 2 + - uid: 26714 + components: + - type: Transform + pos: 47.5,-15.5 + parent: 2 + - uid: 26715 + components: + - type: Transform + pos: 45.5,-15.5 + parent: 2 + - uid: 26716 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 2 + - uid: 26717 + components: + - type: Transform + pos: 27.5,-36.5 + parent: 2 + - uid: 26718 + components: + - type: Transform + pos: -51.5,-3.5 + parent: 2 + - uid: 26719 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 2 + - uid: 26720 + components: + - type: Transform + pos: 48.5,-17.5 + parent: 2 + - uid: 26721 + components: + - type: Transform + pos: 81.5,-20.5 + parent: 2 + - uid: 26722 + components: + - type: Transform + pos: 80.5,-20.5 + parent: 2 + - uid: 26723 + components: + - type: Transform + pos: 84.5,-4.5 + parent: 2 + - uid: 26724 + components: + - type: Transform + pos: 83.5,-4.5 + parent: 2 + - uid: 26725 + components: + - type: Transform + pos: 84.5,-12.5 + parent: 2 + - uid: 26726 + components: + - type: Transform + pos: 83.5,-12.5 + parent: 2 + - uid: 26727 + components: + - type: Transform + pos: 75.5,-4.5 + parent: 2 + - uid: 26728 + components: + - type: Transform + pos: 75.5,-3.5 + parent: 2 + - uid: 26729 + components: + - type: Transform + pos: 75.5,-2.5 + parent: 2 + - uid: 26730 + components: + - type: Transform + pos: 75.5,-1.5 + parent: 2 + - uid: 26731 + components: + - type: Transform + pos: 79.5,-8.5 + parent: 2 + - uid: 26732 + components: + - type: Transform + pos: 53.5,-7.5 + parent: 2 + - uid: 26733 + components: + - type: Transform + pos: 54.5,-7.5 + parent: 2 + - uid: 26734 + components: + - type: Transform + pos: 54.5,-10.5 + parent: 2 + - uid: 26735 + components: + - type: Transform + pos: 54.5,-11.5 + parent: 2 + - uid: 26736 + components: + - type: Transform + pos: 56.5,-11.5 + parent: 2 + - uid: 26737 + components: + - type: Transform + pos: 55.5,-11.5 + parent: 2 + - uid: 26738 + components: + - type: Transform + pos: 58.5,-11.5 + parent: 2 + - uid: 26739 + components: + - type: Transform + pos: 60.5,-11.5 + parent: 2 + - uid: 26740 + components: + - type: Transform + pos: 62.5,-11.5 + parent: 2 + - uid: 26741 + components: + - type: Transform + pos: 63.5,-11.5 + parent: 2 + - uid: 26742 + components: + - type: Transform + pos: 64.5,-11.5 + parent: 2 + - uid: 26743 + components: + - type: Transform + pos: 65.5,-11.5 + parent: 2 + - uid: 26744 + components: + - type: Transform + pos: 64.5,-10.5 + parent: 2 + - uid: 26745 + components: + - type: Transform + pos: 73.5,-11.5 + parent: 2 + - uid: 26746 + components: + - type: Transform + pos: 74.5,-11.5 + parent: 2 + - uid: 26747 + components: + - type: Transform + pos: 74.5,-10.5 + parent: 2 + - uid: 26748 + components: + - type: Transform + pos: 74.5,-6.5 + parent: 2 + - uid: 26749 + components: + - type: Transform + pos: 74.5,-5.5 + parent: 2 + - uid: 26750 + components: + - type: Transform + pos: 73.5,-4.5 + parent: 2 + - uid: 26751 + components: + - type: Transform + pos: 74.5,-4.5 + parent: 2 + - uid: 26752 + components: + - type: Transform + pos: 73.5,-2.5 + parent: 2 + - uid: 26753 + components: + - type: Transform + pos: 73.5,-0.5 + parent: 2 + - uid: 26754 + components: + - type: Transform + pos: 74.5,-0.5 + parent: 2 + - uid: 26755 + components: + - type: Transform + pos: 74.5,4.5 + parent: 2 + - uid: 26756 + components: + - type: Transform + pos: 73.5,4.5 + parent: 2 + - uid: 26757 + components: + - type: Transform + pos: 67.5,-0.5 + parent: 2 + - uid: 26758 + components: + - type: Transform + pos: 67.5,-1.5 + parent: 2 + - uid: 26759 + components: + - type: Transform + pos: 65.5,-1.5 + parent: 2 + - uid: 26760 + components: + - type: Transform + pos: 64.5,-1.5 + parent: 2 + - uid: 26761 + components: + - type: Transform + pos: 63.5,-1.5 + parent: 2 + - uid: 26762 + components: + - type: Transform + pos: 62.5,-1.5 + parent: 2 + - uid: 26763 + components: + - type: Transform + pos: 61.5,-1.5 + parent: 2 + - uid: 26764 + components: + - type: Transform + pos: 60.5,-1.5 + parent: 2 + - uid: 26765 + components: + - type: Transform + pos: 59.5,-1.5 + parent: 2 + - uid: 26766 + components: + - type: Transform + pos: 59.5,-0.5 + parent: 2 + - uid: 26767 + components: + - type: Transform + pos: 59.5,1.5 + parent: 2 + - uid: 26768 + components: + - type: Transform + pos: 59.5,2.5 + parent: 2 + - uid: 26769 + components: + - type: Transform + pos: 62.5,2.5 + parent: 2 + - uid: 26770 + components: + - type: Transform + pos: 62.5,1.5 + parent: 2 + - uid: 26771 + components: + - type: Transform + pos: 62.5,-0.5 + parent: 2 + - uid: 26772 + components: + - type: Transform + pos: 64.5,-2.5 + parent: 2 + - uid: 26773 + components: + - type: Transform + pos: 64.5,-3.5 + parent: 2 + - uid: 26774 + components: + - type: Transform + pos: 64.5,-4.5 + parent: 2 + - uid: 26775 + components: + - type: Transform + pos: 63.5,-4.5 + parent: 2 + - uid: 26776 + components: + - type: Transform + pos: 61.5,-4.5 + parent: 2 + - uid: 26777 + components: + - type: Transform + pos: 60.5,-4.5 + parent: 2 + - uid: 26778 + components: + - type: Transform + pos: 60.5,-3.5 + parent: 2 + - uid: 26779 + components: + - type: Transform + pos: 60.5,-2.5 + parent: 2 + - uid: 26780 + components: + - type: Transform + pos: 64.5,-5.5 + parent: 2 + - uid: 26781 + components: + - type: Transform + pos: 64.5,-6.5 + parent: 2 + - uid: 26782 + components: + - type: Transform + pos: 50.5,-11.5 + parent: 2 + - uid: 26783 + components: + - type: Transform + pos: 64.5,-7.5 + parent: 2 + - uid: 26784 + components: + - type: Transform + pos: 50.5,-10.5 + parent: 2 + - uid: 26785 + components: + - type: Transform + pos: 50.5,-9.5 + parent: 2 + - uid: 26786 + components: + - type: Transform + pos: 50.5,-8.5 + parent: 2 + - uid: 26787 + components: + - type: Transform + pos: 46.5,-1.5 + parent: 2 + - uid: 26788 + components: + - type: Transform + pos: 45.5,-1.5 + parent: 2 + - uid: 26789 + components: + - type: Transform + pos: 44.5,-1.5 + parent: 2 + - uid: 26790 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - uid: 26791 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 2 + - uid: 26792 + components: + - type: Transform + pos: 41.5,-1.5 + parent: 2 + - uid: 26793 + components: + - type: Transform + pos: 41.5,-2.5 + parent: 2 + - uid: 26794 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 2 + - uid: 26795 + components: + - type: Transform + pos: 41.5,-7.5 + parent: 2 + - uid: 26796 + components: + - type: Transform + pos: 41.5,-8.5 + parent: 2 + - uid: 26797 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 2 + - uid: 26798 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 2 + - uid: 26799 + components: + - type: Transform + pos: 40.5,-10.5 + parent: 2 + - uid: 26800 + components: + - type: Transform + pos: 39.5,-10.5 + parent: 2 + - uid: 26801 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 2 + - uid: 26802 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 26803 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 2 + - uid: 26804 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 26805 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 2 + - uid: 26806 + components: + - type: Transform + pos: 41.5,0.5 + parent: 2 + - uid: 26807 + components: + - type: Transform + pos: 40.5,1.5 + parent: 2 + - uid: 26808 + components: + - type: Transform + pos: 40.5,-3.5 + parent: 2 + - uid: 26809 + components: + - type: Transform + pos: 39.5,-3.5 + parent: 2 + - uid: 26810 + components: + - type: Transform + pos: 38.5,-3.5 + parent: 2 + - uid: 26811 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - uid: 26812 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 2 + - uid: 26813 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 2 + - uid: 26814 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - uid: 26815 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - uid: 26816 + components: + - type: Transform + pos: 54.5,12.5 + parent: 2 + - uid: 26817 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - uid: 26818 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - uid: 26819 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 26820 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 + - uid: 26821 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 26822 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 2 + - uid: 26823 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - uid: 26824 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 26825 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 + - uid: 26826 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 2 + - uid: 26827 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 2 + - uid: 26828 + components: + - type: Transform + pos: 86.5,-54.5 + parent: 2 + - uid: 26829 + components: + - type: Transform + pos: 85.5,-54.5 + parent: 2 + - uid: 26830 + components: + - type: Transform + pos: 84.5,-54.5 + parent: 2 + - uid: 26831 + components: + - type: Transform + pos: 83.5,-54.5 + parent: 2 + - uid: 26832 + components: + - type: Transform + pos: 83.5,-55.5 + parent: 2 + - uid: 26833 + components: + - type: Transform + pos: 83.5,-53.5 + parent: 2 + - uid: 26834 + components: + - type: Transform + pos: 81.5,-56.5 + parent: 2 + - uid: 26835 + components: + - type: Transform + pos: 81.5,-57.5 + parent: 2 + - uid: 26836 + components: + - type: Transform + pos: 81.5,-58.5 + parent: 2 + - uid: 26837 + components: + - type: Transform + pos: 81.5,-59.5 + parent: 2 + - uid: 26838 + components: + - type: Transform + pos: 80.5,-59.5 + parent: 2 + - uid: 26839 + components: + - type: Transform + pos: 78.5,-59.5 + parent: 2 + - uid: 26840 + components: + - type: Transform + pos: 77.5,-59.5 + parent: 2 + - uid: 26841 + components: + - type: Transform + pos: 77.5,-58.5 + parent: 2 + - uid: 26842 + components: + - type: Transform + pos: 77.5,-56.5 + parent: 2 + - uid: 26843 + components: + - type: Transform + pos: 76.5,-59.5 + parent: 2 + - uid: 26844 + components: + - type: Transform + pos: 83.5,-59.5 + parent: 2 + - uid: 26845 + components: + - type: Transform + pos: 83.5,-56.5 + parent: 2 + - uid: 26846 + components: + - type: Transform + pos: -35.5,-29.5 + parent: 2 + - uid: 26847 + components: + - type: Transform + pos: 48.5,-67.5 + parent: 2 + - uid: 26848 + components: + - type: Transform + pos: 48.5,-66.5 + parent: 2 + - uid: 26849 + components: + - type: Transform + pos: 37.5,-63.5 + parent: 2 + - uid: 26850 + components: + - type: Transform + pos: 36.5,-63.5 + parent: 2 + - uid: 26851 + components: + - type: Transform + pos: 75.5,-61.5 + parent: 2 + - uid: 26852 + components: + - type: Transform + pos: 75.5,-62.5 + parent: 2 + - uid: 26853 + components: + - type: Transform + pos: 75.5,-63.5 + parent: 2 + - uid: 26854 + components: + - type: Transform + pos: 72.5,-62.5 + parent: 2 + - uid: 26855 + components: + - type: Transform + pos: 72.5,-63.5 + parent: 2 + - uid: 26856 + components: + - type: Transform + pos: 72.5,-59.5 + parent: 2 + - uid: 26857 + components: + - type: Transform + pos: 71.5,-63.5 + parent: 2 + - uid: 26858 + components: + - type: Transform + pos: 70.5,-63.5 + parent: 2 + - uid: 26859 + components: + - type: Transform + pos: 69.5,-63.5 + parent: 2 + - uid: 26860 + components: + - type: Transform + pos: 67.5,-66.5 + parent: 2 + - uid: 26861 + components: + - type: Transform + pos: 70.5,-67.5 + parent: 2 + - uid: 26862 + components: + - type: Transform + pos: 69.5,-67.5 + parent: 2 + - uid: 26863 + components: + - type: Transform + pos: 68.5,-67.5 + parent: 2 + - uid: 26864 + components: + - type: Transform + pos: 67.5,-67.5 + parent: 2 + - uid: 26865 + components: + - type: Transform + pos: 71.5,-67.5 + parent: 2 + - uid: 26866 + components: + - type: Transform + pos: 66.5,-63.5 + parent: 2 + - uid: 26867 + components: + - type: Transform + pos: 67.5,-63.5 + parent: 2 + - uid: 26868 + components: + - type: Transform + pos: 71.5,-66.5 + parent: 2 + - uid: 26869 + components: + - type: Transform + pos: 71.5,-64.5 + parent: 2 + - uid: 26870 + components: + - type: Transform + pos: 70.5,-58.5 + parent: 2 + - uid: 26871 + components: + - type: Transform + pos: 66.5,-58.5 + parent: 2 + - uid: 26872 + components: + - type: Transform + pos: 66.5,-59.5 + parent: 2 + - uid: 26873 + components: + - type: Transform + pos: 66.5,-62.5 + parent: 2 + - uid: 26874 + components: + - type: Transform + pos: 66.5,-61.5 + parent: 2 + - uid: 26875 + components: + - type: Transform + pos: 49.5,-63.5 + parent: 2 + - uid: 26876 + components: + - type: Transform + pos: 46.5,-62.5 + parent: 2 + - uid: 26877 + components: + - type: Transform + pos: 46.5,-64.5 + parent: 2 + - uid: 26878 + components: + - type: Transform + pos: 45.5,-64.5 + parent: 2 + - uid: 26879 + components: + - type: Transform + pos: 43.5,-64.5 + parent: 2 + - uid: 26880 + components: + - type: Transform + pos: 42.5,-64.5 + parent: 2 + - uid: 26881 + components: + - type: Transform + pos: 42.5,-63.5 + parent: 2 + - uid: 26882 + components: + - type: Transform + pos: 42.5,-62.5 + parent: 2 + - uid: 26883 + components: + - type: Transform + pos: 41.5,-63.5 + parent: 2 + - uid: 26884 + components: + - type: Transform + pos: 39.5,-63.5 + parent: 2 + - uid: 26885 + components: + - type: Transform + pos: 38.5,-63.5 + parent: 2 + - uid: 26886 + components: + - type: Transform + pos: 44.5,-67.5 + parent: 2 + - uid: 26887 + components: + - type: Transform + pos: 44.5,-69.5 + parent: 2 + - uid: 26888 + components: + - type: Transform + pos: 45.5,-69.5 + parent: 2 + - uid: 26889 + components: + - type: Transform + pos: 46.5,-69.5 + parent: 2 + - uid: 26890 + components: + - type: Transform + pos: 47.5,-69.5 + parent: 2 + - uid: 26891 + components: + - type: Transform + pos: 42.5,-67.5 + parent: 2 + - uid: 26892 + components: + - type: Transform + pos: 42.5,-66.5 + parent: 2 + - uid: 26893 + components: + - type: Transform + pos: 42.5,-69.5 + parent: 2 + - uid: 26894 + components: + - type: Transform + pos: 39.5,-69.5 + parent: 2 + - uid: 26895 + components: + - type: Transform + pos: 34.5,-65.5 + parent: 2 + - uid: 26896 + components: + - type: Transform + pos: 34.5,-68.5 + parent: 2 + - uid: 26897 + components: + - type: Transform + pos: 34.5,-66.5 + parent: 2 + - uid: 26898 + components: + - type: Transform + pos: 34.5,-67.5 + parent: 2 + - uid: 26899 + components: + - type: Transform + pos: 38.5,-67.5 + parent: 2 + - uid: 26900 + components: + - type: Transform + pos: 41.5,-67.5 + parent: 2 + - uid: 26901 + components: + - type: Transform + pos: 32.5,-61.5 + parent: 2 + - uid: 26902 + components: + - type: Transform + pos: 33.5,-61.5 + parent: 2 + - uid: 26903 + components: + - type: Transform + pos: 33.5,-58.5 + parent: 2 + - uid: 26904 + components: + - type: Transform + pos: 34.5,-58.5 + parent: 2 + - uid: 26905 + components: + - type: Transform + pos: -34.5,-47.5 + parent: 2 + - uid: 26906 + components: + - type: Transform + pos: -35.5,-47.5 + parent: 2 + - uid: 26907 + components: + - type: Transform + pos: -3.5,-40.5 + parent: 2 + - uid: 26908 + components: + - type: Transform + pos: -4.5,-40.5 + parent: 2 + - uid: 26909 + components: + - type: Transform + pos: -5.5,-40.5 + parent: 2 + - uid: 26910 + components: + - type: Transform + pos: -6.5,-40.5 + parent: 2 + - uid: 26911 + components: + - type: Transform + pos: -7.5,-40.5 + parent: 2 + - uid: 26912 + components: + - type: Transform + pos: -8.5,-40.5 + parent: 2 + - uid: 26913 + components: + - type: Transform + pos: -9.5,-40.5 + parent: 2 + - uid: 26914 + components: + - type: Transform + pos: -10.5,-40.5 + parent: 2 + - uid: 26915 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 2 + - uid: 26916 + components: + - type: Transform + pos: -4.5,-46.5 + parent: 2 + - uid: 26917 + components: + - type: Transform + pos: -5.5,-46.5 + parent: 2 + - uid: 26918 + components: + - type: Transform + pos: -6.5,-46.5 + parent: 2 + - uid: 26919 + components: + - type: Transform + pos: -7.5,-46.5 + parent: 2 + - uid: 26920 + components: + - type: Transform + pos: -8.5,-46.5 + parent: 2 + - uid: 26921 + components: + - type: Transform + pos: -10.5,-46.5 + parent: 2 + - uid: 26922 + components: + - type: Transform + pos: -11.5,-46.5 + parent: 2 + - uid: 26923 + components: + - type: Transform + pos: -11.5,-45.5 + parent: 2 + - uid: 26924 + components: + - type: Transform + pos: -13.5,-46.5 + parent: 2 + - uid: 26925 + components: + - type: Transform + pos: -8.5,-54.5 + parent: 2 + - uid: 26926 + components: + - type: Transform + pos: -17.5,-59.5 + parent: 2 + - uid: 26927 + components: + - type: Transform + pos: -17.5,-63.5 + parent: 2 + - uid: 26928 + components: + - type: Transform + pos: -19.5,-59.5 + parent: 2 + - uid: 26929 + components: + - type: Transform + pos: -30.5,-59.5 + parent: 2 + - uid: 26930 + components: + - type: Transform + pos: -29.5,-59.5 + parent: 2 + - uid: 26931 + components: + - type: Transform + pos: -27.5,-59.5 + parent: 2 + - uid: 26932 + components: + - type: Transform + pos: -25.5,-59.5 + parent: 2 + - uid: 26933 + components: + - type: Transform + pos: -24.5,-59.5 + parent: 2 + - uid: 26934 + components: + - type: Transform + pos: -23.5,-59.5 + parent: 2 + - uid: 26935 + components: + - type: Transform + pos: -22.5,-59.5 + parent: 2 + - uid: 26936 + components: + - type: Transform + pos: -21.5,-59.5 + parent: 2 + - uid: 26937 + components: + - type: Transform + pos: -30.5,-58.5 + parent: 2 + - uid: 26938 + components: + - type: Transform + pos: -30.5,-57.5 + parent: 2 + - uid: 26939 + components: + - type: Transform + pos: -30.5,-56.5 + parent: 2 + - uid: 26940 + components: + - type: Transform + pos: -31.5,-55.5 + parent: 2 + - uid: 26941 + components: + - type: Transform + pos: -32.5,-55.5 + parent: 2 + - uid: 26942 + components: + - type: Transform + pos: -30.5,-52.5 + parent: 2 + - uid: 26943 + components: + - type: Transform + pos: -30.5,-51.5 + parent: 2 + - uid: 26944 + components: + - type: Transform + pos: -30.5,-50.5 + parent: 2 + - uid: 26945 + components: + - type: Transform + pos: -30.5,-49.5 + parent: 2 + - uid: 26946 + components: + - type: Transform + pos: -29.5,-48.5 + parent: 2 + - uid: 26947 + components: + - type: Transform + pos: -28.5,-48.5 + parent: 2 + - uid: 26948 + components: + - type: Transform + pos: -27.5,-48.5 + parent: 2 + - uid: 26949 + components: + - type: Transform + pos: -25.5,-48.5 + parent: 2 + - uid: 26950 + components: + - type: Transform + pos: -24.5,-48.5 + parent: 2 + - uid: 26951 + components: + - type: Transform + pos: -19.5,-48.5 + parent: 2 + - uid: 26952 + components: + - type: Transform + pos: -19.5,-49.5 + parent: 2 + - uid: 26953 + components: + - type: Transform + pos: -19.5,-50.5 + parent: 2 + - uid: 26954 + components: + - type: Transform + pos: -19.5,-51.5 + parent: 2 + - uid: 26955 + components: + - type: Transform + pos: -19.5,-52.5 + parent: 2 + - uid: 26956 + components: + - type: Transform + pos: -34.5,-55.5 + parent: 2 + - uid: 26957 + components: + - type: Transform + pos: -19.5,-54.5 + parent: 2 + - uid: 26958 + components: + - type: Transform + pos: -19.5,-55.5 + parent: 2 + - uid: 26959 + components: + - type: Transform + pos: -19.5,-56.5 + parent: 2 + - uid: 26960 + components: + - type: Transform + pos: -19.5,-58.5 + parent: 2 + - uid: 26961 + components: + - type: Transform + pos: -35.5,-55.5 + parent: 2 + - uid: 26962 + components: + - type: Transform + pos: -35.5,-54.5 + parent: 2 + - uid: 26963 + components: + - type: Transform + pos: -35.5,-53.5 + parent: 2 + - uid: 26964 + components: + - type: Transform + pos: -35.5,-52.5 + parent: 2 + - uid: 26965 + components: + - type: Transform + pos: -32.5,-52.5 + parent: 2 + - uid: 26966 + components: + - type: Transform + pos: -31.5,-52.5 + parent: 2 + - uid: 26967 + components: + - type: Transform + pos: -34.5,-59.5 + parent: 2 + - uid: 26968 + components: + - type: Transform + pos: -35.5,-58.5 + parent: 2 + - uid: 26969 + components: + - type: Transform + pos: -35.5,-57.5 + parent: 2 + - uid: 26970 + components: + - type: Transform + pos: -30.5,-48.5 + parent: 2 + - uid: 26971 + components: + - type: Transform + pos: -37.5,-47.5 + parent: 2 + - uid: 26972 + components: + - type: Transform + pos: -34.5,-64.5 + parent: 2 + - uid: 26973 + components: + - type: Transform + pos: -33.5,-64.5 + parent: 2 + - uid: 26974 + components: + - type: Transform + pos: -30.5,-64.5 + parent: 2 + - uid: 26975 + components: + - type: Transform + pos: -9.5,-65.5 + parent: 2 + - uid: 26976 + components: + - type: Transform + pos: -3.5,-65.5 + parent: 2 + - uid: 26977 + components: + - type: Transform + pos: -3.5,-64.5 + parent: 2 + - uid: 26978 + components: + - type: Transform + pos: -3.5,-61.5 + parent: 2 + - uid: 26979 + components: + - type: Transform + pos: 7.5,-59.5 + parent: 2 + - uid: 26980 + components: + - type: Transform + pos: 9.5,-59.5 + parent: 2 + - uid: 26981 + components: + - type: Transform + pos: -31.5,-46.5 + parent: 2 + - uid: 26982 + components: + - type: Transform + pos: -21.5,-41.5 + parent: 2 + - uid: 26983 + components: + - type: Transform + pos: -30.5,-43.5 + parent: 2 + - uid: 26984 + components: + - type: Transform + pos: -30.5,-45.5 + parent: 2 + - uid: 26985 + components: + - type: Transform + pos: -27.5,-46.5 + parent: 2 + - uid: 26986 + components: + - type: Transform + pos: -25.5,-46.5 + parent: 2 + - uid: 26987 + components: + - type: Transform + pos: -24.5,-46.5 + parent: 2 + - uid: 26988 + components: + - type: Transform + pos: -23.5,-46.5 + parent: 2 + - uid: 26989 + components: + - type: Transform + pos: -32.5,-46.5 + parent: 2 + - uid: 26990 + components: + - type: Transform + pos: -33.5,-46.5 + parent: 2 + - uid: 26991 + components: + - type: Transform + pos: -34.5,-46.5 + parent: 2 + - uid: 26992 + components: + - type: Transform + pos: -19.5,-38.5 + parent: 2 + - uid: 26993 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 2 + - uid: 26994 + components: + - type: Transform + pos: 3.5,-46.5 + parent: 2 + - uid: 26995 + components: + - type: Transform + pos: 15.5,-49.5 + parent: 2 + - uid: 26996 + components: + - type: Transform + pos: 14.5,-49.5 + parent: 2 + - uid: 26997 + components: + - type: Transform + pos: 13.5,-49.5 + parent: 2 + - uid: 26998 + components: + - type: Transform + pos: 14.5,-50.5 + parent: 2 + - uid: 26999 + components: + - type: Transform + pos: 14.5,-51.5 + parent: 2 + - uid: 27000 + components: + - type: Transform + pos: 14.5,-52.5 + parent: 2 + - uid: 27001 + components: + - type: Transform + pos: 14.5,-53.5 + parent: 2 + - uid: 27002 + components: + - type: Transform + pos: 13.5,-53.5 + parent: 2 + - uid: 27003 + components: + - type: Transform + pos: 15.5,-53.5 + parent: 2 + - uid: 27004 + components: + - type: Transform + pos: 26.5,-83.5 + parent: 2 + - uid: 27005 + components: + - type: Transform + pos: 31.5,-86.5 + parent: 2 + - uid: 27006 + components: + - type: Transform + pos: 25.5,-94.5 + parent: 2 + - uid: 27007 + components: + - type: Transform + pos: 23.5,-94.5 + parent: 2 + - uid: 27008 + components: + - type: Transform + pos: 33.5,-94.5 + parent: 2 + - uid: 27009 + components: + - type: Transform + pos: 31.5,-94.5 + parent: 2 + - uid: 27010 + components: + - type: Transform + pos: 1.5,-60.5 + parent: 2 + - uid: 27011 + components: + - type: Transform + pos: -17.5,14.5 + parent: 2 + - uid: 27012 + components: + - type: Transform + pos: -17.5,13.5 + parent: 2 + - uid: 27013 + components: + - type: Transform + pos: -17.5,12.5 + parent: 2 + - uid: 27014 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 + - uid: 27015 + components: + - type: Transform + pos: 24.5,20.5 + parent: 2 + - uid: 27016 + components: + - type: Transform + pos: 41.5,6.5 + parent: 2 + - uid: 27017 + components: + - type: Transform + pos: 41.5,5.5 + parent: 2 + - uid: 27018 + components: + - type: Transform + pos: 55.5,-15.5 + parent: 2 + - uid: 27019 + components: + - type: Transform + pos: 18.5,13.5 + parent: 2 + - uid: 27020 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - uid: 27021 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 2 + - uid: 27022 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 + - uid: 27023 + components: + - type: Transform + pos: -7.5,33.5 + parent: 2 + - uid: 27024 + components: + - type: Transform + pos: -8.5,33.5 + parent: 2 + - uid: 27025 + components: + - type: Transform + pos: -9.5,33.5 + parent: 2 + - uid: 27026 + components: + - type: Transform + pos: -10.5,33.5 + parent: 2 + - uid: 27027 + components: + - type: Transform + pos: -11.5,33.5 + parent: 2 + - uid: 27028 + components: + - type: Transform + pos: -15.5,33.5 + parent: 2 + - uid: 27029 + components: + - type: Transform + pos: -6.5,34.5 + parent: 2 + - uid: 27030 + components: + - type: Transform + pos: -6.5,33.5 + parent: 2 + - uid: 27031 + components: + - type: Transform + pos: 38.5,7.5 + parent: 2 + - uid: 27032 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 + - uid: 27033 + components: + - type: Transform + pos: 38.5,9.5 + parent: 2 + - uid: 27034 + components: + - type: Transform + pos: 40.5,9.5 + parent: 2 + - uid: 27035 + components: + - type: Transform + pos: 41.5,9.5 + parent: 2 + - uid: 27036 + components: + - type: Transform + pos: 41.5,10.5 + parent: 2 + - uid: 27037 + components: + - type: Transform + pos: 50.5,0.5 + parent: 2 + - uid: 27038 + components: + - type: Transform + pos: 23.5,7.5 + parent: 2 + - uid: 27039 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 27040 + components: + - type: Transform + pos: 21.5,7.5 + parent: 2 + - uid: 27041 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - uid: 27042 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 27043 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 27044 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 27045 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 27046 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 27047 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 + - uid: 27048 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 + - uid: 27049 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - uid: 27050 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 + - uid: 27051 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 27052 + components: + - type: Transform + pos: 7.5,12.5 + parent: 2 + - uid: 27053 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - uid: 27054 + components: + - type: Transform + pos: 6.5,13.5 + parent: 2 + - uid: 27055 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 27056 + components: + - type: Transform + pos: 7.5,15.5 + parent: 2 + - uid: 27057 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 + - uid: 27058 + components: + - type: Transform + pos: 18.5,14.5 + parent: 2 + - uid: 27059 + components: + - type: Transform + pos: 18.5,15.5 + parent: 2 + - uid: 27060 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 + - uid: 27061 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - uid: 27062 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 27063 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 + - uid: 27064 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 + - uid: 27065 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - uid: 27066 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 + - uid: 27067 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 + - uid: 27068 + components: + - type: Transform + pos: 15.5,2.5 + parent: 2 + - uid: 27069 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - uid: 27070 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 + - uid: 27071 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 27072 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 27073 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 27074 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 27075 + components: + - type: Transform + pos: 16.5,4.5 + parent: 2 + - uid: 27076 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 27077 + components: + - type: Transform + pos: 17.5,4.5 + parent: 2 + - uid: 27078 + components: + - type: Transform + pos: 17.5,3.5 + parent: 2 + - uid: 27079 + components: + - type: Transform + pos: 17.5,2.5 + parent: 2 + - uid: 27080 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 27081 + components: + - type: Transform + pos: 19.5,1.5 + parent: 2 + - uid: 27082 + components: + - type: Transform + pos: 19.5,2.5 + parent: 2 + - uid: 27083 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - uid: 27084 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 27085 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - uid: 27086 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - uid: 27087 + components: + - type: Transform + pos: 19.5,7.5 + parent: 2 + - uid: 27088 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - uid: 27089 + components: + - type: Transform + pos: 18.5,8.5 + parent: 2 + - uid: 27090 + components: + - type: Transform + pos: 16.5,8.5 + parent: 2 + - uid: 27091 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 27092 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 + - uid: 27093 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 27094 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 + - uid: 27095 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 27096 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 27097 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 27098 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 27099 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 27100 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 27101 + components: + - type: Transform + pos: 10.5,15.5 + parent: 2 + - uid: 27102 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 27103 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 27104 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 27105 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - uid: 27106 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 27107 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 27108 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 27109 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 27110 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - uid: 27111 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - uid: 27112 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 27113 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 27114 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 27115 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 27116 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 27117 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 + - uid: 27118 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 27119 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 27120 + components: + - type: Transform + pos: 3.5,14.5 + parent: 2 + - uid: 27121 + components: + - type: Transform + pos: 3.5,15.5 + parent: 2 + - uid: 27122 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - uid: 27123 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - uid: 27124 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 27125 + components: + - type: Transform + pos: 6.5,16.5 + parent: 2 + - uid: 27126 + components: + - type: Transform + pos: 7.5,16.5 + parent: 2 + - uid: 27127 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 27128 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 27129 + components: + - type: Transform + pos: 12.5,16.5 + parent: 2 + - uid: 27130 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 27131 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 27132 + components: + - type: Transform + pos: 15.5,16.5 + parent: 2 + - uid: 27133 + components: + - type: Transform + pos: 16.5,16.5 + parent: 2 + - uid: 27134 + components: + - type: Transform + pos: 17.5,16.5 + parent: 2 + - uid: 27135 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - uid: 27136 + components: + - type: Transform + pos: 20.5,16.5 + parent: 2 + - uid: 27137 + components: + - type: Transform + pos: 21.5,16.5 + parent: 2 + - uid: 27138 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 + - uid: 27139 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - uid: 27140 + components: + - type: Transform + pos: 22.5,18.5 + parent: 2 + - uid: 27141 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 + - uid: 27142 + components: + - type: Transform + pos: 22.5,21.5 + parent: 2 + - uid: 27143 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 + - uid: 27144 + components: + - type: Transform + pos: 23.5,20.5 + parent: 2 + - uid: 27145 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 + - uid: 27146 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - uid: 27147 + components: + - type: Transform + pos: 25.5,21.5 + parent: 2 + - uid: 27148 + components: + - type: Transform + pos: 25.5,24.5 + parent: 2 + - uid: 27149 + components: + - type: Transform + pos: 24.5,24.5 + parent: 2 + - uid: 27150 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 + - uid: 27151 + components: + - type: Transform + pos: 20.5,35.5 + parent: 2 + - uid: 27152 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 2 + - uid: 27153 + components: + - type: Transform + pos: -6.5,28.5 + parent: 2 + - uid: 27154 + components: + - type: Transform + pos: -9.5,28.5 + parent: 2 + - uid: 27155 + components: + - type: Transform + pos: -12.5,25.5 + parent: 2 + - uid: 27156 + components: + - type: Transform + pos: -14.5,25.5 + parent: 2 + - uid: 27157 + components: + - type: Transform + pos: -11.5,25.5 + parent: 2 + - uid: 27158 + components: + - type: Transform + pos: -11.5,24.5 + parent: 2 + - uid: 27159 + components: + - type: Transform + pos: -11.5,23.5 + parent: 2 + - uid: 27160 + components: + - type: Transform + pos: -7.5,25.5 + parent: 2 + - uid: 27161 + components: + - type: Transform + pos: -7.5,24.5 + parent: 2 + - uid: 27162 + components: + - type: Transform + pos: -7.5,23.5 + parent: 2 + - uid: 27163 + components: + - type: Transform + pos: -3.5,25.5 + parent: 2 + - uid: 27164 + components: + - type: Transform + pos: -3.5,24.5 + parent: 2 + - uid: 27165 + components: + - type: Transform + pos: -3.5,23.5 + parent: 2 + - uid: 27166 + components: + - type: Transform + pos: 0.5,25.5 + parent: 2 + - uid: 27167 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - uid: 27168 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 27169 + components: + - type: Transform + pos: 3.5,25.5 + parent: 2 + - uid: 27170 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - uid: 27171 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 27172 + components: + - type: Transform + pos: 17.5,18.5 + parent: 2 + - uid: 27173 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 + - uid: 27174 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 27175 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 + - uid: 27176 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 27177 + components: + - type: Transform + pos: 19.5,19.5 + parent: 2 + - uid: 27178 + components: + - type: Transform + pos: 19.5,21.5 + parent: 2 + - uid: 27179 + components: + - type: Transform + pos: 19.5,23.5 + parent: 2 + - uid: 27180 + components: + - type: Transform + pos: 19.5,24.5 + parent: 2 + - uid: 27181 + components: + - type: Transform + pos: 19.5,25.5 + parent: 2 + - uid: 27182 + components: + - type: Transform + pos: 19.5,26.5 + parent: 2 + - uid: 27183 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 27184 + components: + - type: Transform + pos: 10.5,18.5 + parent: 2 + - uid: 27185 + components: + - type: Transform + pos: 7.5,18.5 + parent: 2 + - uid: 27186 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - uid: 27187 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 27188 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 27189 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 27190 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 27191 + components: + - type: Transform + pos: 1.5,18.5 + parent: 2 + - uid: 27192 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - uid: 27193 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 27194 + components: + - type: Transform + pos: 1.5,15.5 + parent: 2 + - uid: 27195 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 27196 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 27197 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 + - uid: 27198 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - uid: 27199 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 + - uid: 27200 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 + - uid: 27201 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 27202 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 27203 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 27204 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - uid: 27205 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - uid: 27206 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 2 + - uid: 27207 + components: + - type: Transform + pos: -9.5,-32.5 + parent: 2 + - uid: 27208 + components: + - type: Transform + pos: -8.5,-32.5 + parent: 2 + - uid: 27209 + components: + - type: Transform + pos: -7.5,-32.5 + parent: 2 + - uid: 27210 + components: + - type: Transform + pos: -6.5,-32.5 + parent: 2 + - uid: 27211 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 2 + - uid: 27212 + components: + - type: Transform + pos: -4.5,-32.5 + parent: 2 + - uid: 27213 + components: + - type: Transform + pos: -3.5,-32.5 + parent: 2 + - uid: 27214 + components: + - type: Transform + pos: -2.5,-32.5 + parent: 2 + - uid: 27215 + components: + - type: Transform + pos: 14.5,-36.5 + parent: 2 + - uid: 27216 + components: + - type: Transform + pos: 9.5,-37.5 + parent: 2 + - uid: 27217 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 2 + - uid: 27218 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 2 + - uid: 27219 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 2 + - uid: 27220 + components: + - type: Transform + pos: 17.5,-31.5 + parent: 2 + - uid: 27221 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 2 + - uid: 27222 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 2 + - uid: 27223 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 2 + - uid: 27224 + components: + - type: Transform + pos: 14.5,-33.5 + parent: 2 + - uid: 27225 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 2 + - uid: 27226 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 27227 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 2 + - uid: 27228 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 2 + - uid: 27229 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 2 + - uid: 27230 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 2 + - uid: 27231 + components: + - type: Transform + pos: 17.5,0.5 + parent: 2 + - uid: 27232 + components: + - type: Transform + pos: 16.5,0.5 + parent: 2 + - uid: 27233 + components: + - type: Transform + pos: 15.5,0.5 + parent: 2 + - uid: 27234 + components: + - type: Transform + pos: 14.5,0.5 + parent: 2 + - uid: 27235 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 + - uid: 27236 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 27237 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 27238 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 27239 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 2 + - uid: 27240 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 2 + - uid: 27241 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 2 + - uid: 27242 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 27243 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 + - uid: 27244 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 2 + - uid: 27245 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 2 + - uid: 27246 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 2 + - uid: 27247 + components: + - type: Transform + pos: -18.5,-14.5 + parent: 2 + - uid: 27248 + components: + - type: Transform + pos: -18.5,-15.5 + parent: 2 + - uid: 27249 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 2 + - uid: 27250 + components: + - type: Transform + pos: -18.5,-20.5 + parent: 2 + - uid: 27251 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 2 + - uid: 27252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-8.5 + parent: 2 + - uid: 27253 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 2 + - uid: 27254 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 2 + - uid: 27255 + components: + - type: Transform + pos: -8.5,-20.5 + parent: 2 + - uid: 27256 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 2 + - uid: 27257 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 2 + - uid: 27258 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 2 + - uid: 27259 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 2 + - uid: 27260 + components: + - type: Transform + pos: -14.5,-28.5 + parent: 2 + - uid: 27261 + components: + - type: Transform + pos: -13.5,-28.5 + parent: 2 + - uid: 27262 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 2 + - uid: 27263 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 2 + - uid: 27264 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 2 + - uid: 27265 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 2 + - uid: 27266 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 2 + - uid: 27267 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 2 + - uid: 27268 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 27269 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 + - uid: 27270 + components: + - type: Transform + pos: 15.5,18.5 + parent: 2 + - uid: 27271 + components: + - type: Transform + pos: -10.5,52.5 + parent: 2 + - uid: 27272 + components: + - type: Transform + pos: -5.5,46.5 + parent: 2 + - uid: 27273 + components: + - type: Transform + pos: -3.5,47.5 + parent: 2 + - uid: 27274 + components: + - type: Transform + pos: -10.5,49.5 + parent: 2 + - uid: 27275 + components: + - type: Transform + pos: -10.5,47.5 + parent: 2 + - uid: 27276 + components: + - type: Transform + pos: -10.5,46.5 + parent: 2 + - uid: 27277 + components: + - type: Transform + pos: -11.5,46.5 + parent: 2 + - uid: 27278 + components: + - type: Transform + pos: -3.5,48.5 + parent: 2 + - uid: 27279 + components: + - type: Transform + pos: -10.5,51.5 + parent: 2 + - uid: 27280 + components: + - type: Transform + pos: -10.5,50.5 + parent: 2 + - uid: 27281 + components: + - type: Transform + pos: -9.5,46.5 + parent: 2 + - uid: 27282 + components: + - type: Transform + pos: -4.5,46.5 + parent: 2 + - uid: 27283 + components: + - type: Transform + pos: -3.5,49.5 + parent: 2 + - uid: 27284 + components: + - type: Transform + pos: -19.5,48.5 + parent: 2 + - uid: 27285 + components: + - type: Transform + pos: -19.5,47.5 + parent: 2 + - uid: 27286 + components: + - type: Transform + pos: -19.5,46.5 + parent: 2 + - uid: 27287 + components: + - type: Transform + pos: -22.5,47.5 + parent: 2 + - uid: 27288 + components: + - type: Transform + pos: -22.5,46.5 + parent: 2 + - uid: 27289 + components: + - type: Transform + pos: -22.5,48.5 + parent: 2 + - uid: 27290 + components: + - type: Transform + pos: -18.5,49.5 + parent: 2 + - uid: 27291 + components: + - type: Transform + pos: -19.5,49.5 + parent: 2 + - uid: 27292 + components: + - type: Transform + pos: -22.5,42.5 + parent: 2 + - uid: 27293 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - uid: 27294 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 + - uid: 27295 + components: + - type: Transform + pos: 38.5,1.5 + parent: 2 + - uid: 27296 + components: + - type: Transform + pos: 33.5,2.5 + parent: 2 + - uid: 27297 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2 + - uid: 27298 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 2 + - uid: 27299 + components: + - type: Transform + pos: 71.5,-0.5 + parent: 2 + - uid: 27300 + components: + - type: Transform + pos: 72.5,-0.5 + parent: 2 + - uid: 27301 + components: + - type: Transform + pos: 44.5,9.5 + parent: 2 + - uid: 27302 + components: + - type: Transform + pos: 59.5,0.5 + parent: 2 + - uid: 27303 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 2 + - uid: 27304 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 27305 + components: + - type: Transform + pos: -49.5,13.5 + parent: 2 + - uid: 27306 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 + - uid: 27307 + components: + - type: Transform + pos: -51.5,12.5 + parent: 2 + - uid: 27308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-3.5 + parent: 2 + - uid: 27309 + components: + - type: Transform + pos: -54.5,8.5 + parent: 2 + - uid: 27310 + components: + - type: Transform + pos: -17.5,11.5 + parent: 2 + - uid: 27311 + components: + - type: Transform + pos: -18.5,11.5 + parent: 2 + - uid: 27312 + components: + - type: Transform + pos: -19.5,11.5 + parent: 2 + - uid: 27313 + components: + - type: Transform + pos: -21.5,11.5 + parent: 2 + - uid: 27314 + components: + - type: Transform + pos: -49.5,12.5 + parent: 2 + - uid: 27315 + components: + - type: Transform + pos: -49.5,16.5 + parent: 2 + - uid: 27316 + components: + - type: Transform + pos: -53.5,8.5 + parent: 2 + - uid: 27317 + components: + - type: Transform + pos: -52.5,8.5 + parent: 2 + - uid: 27318 + components: + - type: Transform + pos: -51.5,8.5 + parent: 2 + - uid: 27319 + components: + - type: Transform + pos: -50.5,8.5 + parent: 2 + - uid: 27320 + components: + - type: Transform + pos: -50.5,7.5 + parent: 2 + - uid: 27321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-14.5 + parent: 2 + - uid: 27322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-13.5 + parent: 2 + - uid: 27323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-12.5 + parent: 2 + - uid: 27324 + components: + - type: Transform + pos: -35.5,-31.5 + parent: 2 + - uid: 27325 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 2 + - uid: 27326 + components: + - type: Transform + pos: -52.5,-9.5 + parent: 2 + - uid: 27327 + components: + - type: Transform + pos: -51.5,-9.5 + parent: 2 + - uid: 27328 + components: + - type: Transform + pos: 62.5,13.5 + parent: 2 + - uid: 27329 + components: + - type: Transform + pos: -34.5,-44.5 + parent: 2 + - uid: 27330 + components: + - type: Transform + pos: -38.5,-55.5 + parent: 2 + - uid: 27331 + components: + - type: Transform + pos: -37.5,-55.5 + parent: 2 + - uid: 27332 + components: + - type: Transform + pos: -38.5,-57.5 + parent: 2 + - uid: 27333 + components: + - type: Transform + pos: -37.5,-57.5 + parent: 2 + - uid: 27334 + components: + - type: Transform + pos: 27.5,-35.5 + parent: 2 + - uid: 27335 + components: + - type: Transform + pos: 27.5,-31.5 + parent: 2 + - uid: 27336 + components: + - type: Transform + pos: 28.5,-31.5 + parent: 2 + - uid: 27337 + components: + - type: Transform + pos: 28.5,-30.5 + parent: 2 + - uid: 27338 + components: + - type: Transform + pos: 28.5,-27.5 + parent: 2 + - uid: 27339 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 2 + - uid: 27340 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 2 + - uid: 27341 + components: + - type: Transform + pos: 32.5,-26.5 + parent: 2 + - uid: 27342 + components: + - type: Transform + pos: 34.5,-26.5 + parent: 2 + - uid: 27343 + components: + - type: Transform + pos: 34.5,-27.5 + parent: 2 + - uid: 27344 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 2 + - uid: 27345 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 2 + - uid: 27346 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 2 + - uid: 27347 + components: + - type: Transform + pos: 32.5,-31.5 + parent: 2 + - uid: 27348 + components: + - type: Transform + pos: 31.5,-31.5 + parent: 2 + - uid: 27349 + components: + - type: Transform + pos: 30.5,-31.5 + parent: 2 + - uid: 27350 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 2 + - uid: 27351 + components: + - type: Transform + pos: 43.5,-25.5 + parent: 2 + - uid: 27352 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 2 + - uid: 27353 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 2 + - uid: 27354 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 2 + - uid: 27355 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 2 + - uid: 27356 + components: + - type: Transform + pos: 38.5,-30.5 + parent: 2 + - uid: 27357 + components: + - type: Transform + pos: 42.5,-30.5 + parent: 2 + - uid: 27358 + components: + - type: Transform + pos: 47.5,-29.5 + parent: 2 + - uid: 27359 + components: + - type: Transform + pos: 47.5,-26.5 + parent: 2 + - uid: 27360 + components: + - type: Transform + pos: 48.5,-36.5 + parent: 2 + - uid: 27361 + components: + - type: Transform + pos: 48.5,-34.5 + parent: 2 + - uid: 27362 + components: + - type: Transform + pos: 48.5,-18.5 + parent: 2 + - uid: 27363 + components: + - type: Transform + pos: 42.5,-25.5 + parent: 2 + - uid: 27364 + components: + - type: Transform + pos: 34.5,-33.5 + parent: 2 + - uid: 27365 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 2 + - uid: 27366 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 2 + - uid: 27367 + components: + - type: Transform + pos: 14.5,-34.5 + parent: 2 + - uid: 27368 + components: + - type: Transform + pos: 27.5,-34.5 + parent: 2 + - uid: 27369 + components: + - type: Transform + pos: 37.5,-69.5 + parent: 2 + - uid: 27370 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 2 + - uid: 27371 + components: + - type: Transform + pos: 38.5,-33.5 + parent: 2 + - uid: 27372 + components: + - type: Transform + pos: 67.5,-57.5 + parent: 2 + - uid: 27373 + components: + - type: Transform + pos: 50.5,-61.5 + parent: 2 + - uid: 27374 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 2 + - uid: 27375 + components: + - type: Transform + pos: 13.5,-37.5 + parent: 2 + - uid: 27376 + components: + - type: Transform + pos: 14.5,-37.5 + parent: 2 + - uid: 27377 + components: + - type: Transform + pos: -16.5,48.5 + parent: 2 + - uid: 27378 + components: + - type: Transform + pos: 47.5,-28.5 + parent: 2 + - uid: 27379 + components: + - type: Transform + pos: 41.5,-15.5 + parent: 2 + - uid: 27380 + components: + - type: Transform + pos: -19.5,42.5 + parent: 2 + - uid: 27381 + components: + - type: Transform + pos: -14.5,46.5 + parent: 2 + - uid: 27382 + components: + - type: Transform + pos: -16.5,46.5 + parent: 2 + - uid: 27383 + components: + - type: Transform + pos: -16.5,47.5 + parent: 2 + - uid: 27384 + components: + - type: Transform + pos: -19.5,40.5 + parent: 2 + - uid: 27385 + components: + - type: Transform + pos: -19.5,41.5 + parent: 2 + - uid: 27386 + components: + - type: Transform + pos: -16.5,49.5 + parent: 2 + - uid: 27387 + components: + - type: Transform + pos: -12.5,46.5 + parent: 2 + - uid: 27388 + components: + - type: Transform + pos: -16.5,51.5 + parent: 2 + - uid: 27389 + components: + - type: Transform + pos: -17.5,49.5 + parent: 2 + - uid: 27390 + components: + - type: Transform + pos: -15.5,46.5 + parent: 2 + - uid: 27391 + components: + - type: Transform + pos: -22.5,40.5 + parent: 2 + - uid: 27392 + components: + - type: Transform + pos: -22.5,41.5 + parent: 2 + - uid: 27393 + components: + - type: Transform + pos: -21.5,49.5 + parent: 2 + - uid: 27394 + components: + - type: Transform + pos: -22.5,49.5 + parent: 2 + - uid: 27395 + components: + - type: Transform + pos: -20.5,49.5 + parent: 2 + - uid: 27396 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 + - uid: 27397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-10.5 + parent: 2 + - uid: 27398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-5.5 + parent: 2 + - uid: 27399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-6.5 + parent: 2 + - uid: 27400 + components: + - type: Transform + pos: 67.5,-55.5 + parent: 2 + - uid: 27401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-8.5 + parent: 2 + - uid: 27402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-7.5 + parent: 2 + - uid: 27403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-4.5 + parent: 2 + - uid: 27404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-3.5 + parent: 2 + - uid: 27405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-3.5 + parent: 2 + - uid: 27406 + components: + - type: Transform + pos: 47.5,-40.5 + parent: 2 + - uid: 27407 + components: + - type: Transform + pos: -52.5,1.5 + parent: 2 + - uid: 27408 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 2 + - uid: 27409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-3.5 + parent: 2 + - uid: 27410 + components: + - type: Transform + pos: 68.5,-25.5 + parent: 2 + - uid: 27411 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 2 + - uid: 27412 + components: + - type: Transform + pos: 85.5,-34.5 + parent: 2 + - uid: 27413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-22.5 + parent: 2 + - uid: 27414 + components: + - type: Transform + pos: 68.5,-58.5 + parent: 2 + - uid: 27415 + components: + - type: Transform + pos: 67.5,-58.5 + parent: 2 + - uid: 27416 + components: + - type: Transform + pos: 69.5,-58.5 + parent: 2 + - uid: 27417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-35.5 + parent: 2 + - uid: 27418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-23.5 + parent: 2 + - uid: 27419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-25.5 + parent: 2 + - uid: 27420 + components: + - type: Transform + pos: -17.5,9.5 + parent: 2 + - uid: 27421 + components: + - type: Transform + pos: 48.5,-40.5 + parent: 2 + - uid: 27422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-40.5 + parent: 2 + - uid: 27423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-37.5 + parent: 2 + - uid: 27424 + components: + - type: Transform + pos: -15.5,26.5 + parent: 2 + - uid: 27425 + components: + - type: Transform + pos: -15.5,27.5 + parent: 2 + - uid: 27426 + components: + - type: Transform + pos: -15.5,28.5 + parent: 2 + - uid: 27427 + components: + - type: Transform + pos: 17.5,-34.5 + parent: 2 + - uid: 27428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,13.5 + parent: 2 + - uid: 27429 + components: + - type: Transform + pos: -16.5,36.5 + parent: 2 + - uid: 27430 + components: + - type: Transform + pos: -38.5,5.5 + parent: 2 + - uid: 27431 + components: + - type: Transform + pos: -39.5,5.5 + parent: 2 + - uid: 27432 + components: + - type: Transform + pos: -40.5,5.5 + parent: 2 + - uid: 27433 + components: + - type: Transform + pos: 39.5,-30.5 + parent: 2 + - uid: 27434 + components: + - type: Transform + pos: -41.5,5.5 + parent: 2 + - uid: 27435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,5.5 + parent: 2 + - uid: 27436 + components: + - type: Transform + pos: -16.5,33.5 + parent: 2 + - uid: 27437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,15.5 + parent: 2 + - uid: 27438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,15.5 + parent: 2 + - uid: 27439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-7.5 + parent: 2 + - uid: 27440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-20.5 + parent: 2 + - uid: 27441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,16.5 + parent: 2 + - uid: 27442 + components: + - type: Transform + pos: -18.5,33.5 + parent: 2 + - uid: 27443 + components: + - type: Transform + pos: 50.5,-21.5 + parent: 2 + - uid: 27444 + components: + - type: Transform + pos: -18.5,28.5 + parent: 2 + - uid: 27445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,15.5 + parent: 2 + - uid: 27446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,15.5 + parent: 2 + - uid: 27447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,11.5 + parent: 2 + - uid: 27448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,11.5 + parent: 2 + - uid: 27449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,11.5 + parent: 2 + - uid: 27450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,11.5 + parent: 2 + - uid: 27451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,11.5 + parent: 2 + - uid: 27452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,11.5 + parent: 2 + - uid: 27453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,11.5 + parent: 2 + - uid: 27454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,11.5 + parent: 2 + - uid: 27455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,11.5 + parent: 2 + - uid: 27456 + components: + - type: Transform + pos: -15.5,24.5 + parent: 2 + - uid: 27457 + components: + - type: Transform + pos: -15.5,25.5 + parent: 2 + - uid: 27458 + components: + - type: Transform + pos: -15.5,22.5 + parent: 2 + - uid: 27459 + components: + - type: Transform + pos: -17.5,28.5 + parent: 2 + - uid: 27460 + components: + - type: Transform + pos: -16.5,28.5 + parent: 2 + - uid: 27461 + components: + - type: Transform + pos: -17.5,33.5 + parent: 2 + - uid: 27462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,33.5 + parent: 2 + - uid: 27463 + components: + - type: Transform + pos: -12.5,33.5 + parent: 2 + - uid: 27464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,28.5 + parent: 2 + - uid: 27465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,28.5 + parent: 2 + - uid: 27466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,28.5 + parent: 2 + - uid: 27467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,31.5 + parent: 2 + - uid: 27468 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - uid: 27469 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 27470 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 27471 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 + - uid: 27472 + components: + - type: Transform + pos: 60.5,-47.5 + parent: 2 + - uid: 28172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-30.5 + parent: 2 + - uid: 28173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-33.5 + parent: 2 +- proto: WallSolidRust + entities: + - uid: 27473 + components: + - type: Transform + pos: 50.5,6.5 + parent: 2 + - uid: 27474 + components: + - type: Transform + pos: 53.5,8.5 + parent: 2 + - uid: 27475 + components: + - type: Transform + pos: 57.5,11.5 + parent: 2 + - uid: 27476 + components: + - type: Transform + pos: 59.5,19.5 + parent: 2 + - uid: 27477 + components: + - type: Transform + pos: 61.5,13.5 + parent: 2 + - uid: 27478 + components: + - type: Transform + pos: 54.5,17.5 + parent: 2 + - uid: 27479 + components: + - type: Transform + pos: 63.5,17.5 + parent: 2 + - uid: 27480 + components: + - type: Transform + pos: 63.5,16.5 + parent: 2 + - uid: 27481 + components: + - type: Transform + pos: 67.5,7.5 + parent: 2 + - uid: 27482 + components: + - type: Transform + pos: 68.5,7.5 + parent: 2 + - uid: 27483 + components: + - type: Transform + pos: 66.5,12.5 + parent: 2 + - uid: 27484 + components: + - type: Transform + pos: -54.5,-14.5 + parent: 2 + - uid: 27485 + components: + - type: Transform + pos: -56.5,-16.5 + parent: 2 + - uid: 27486 + components: + - type: Transform + pos: -60.5,-14.5 + parent: 2 + - uid: 27487 + components: + - type: Transform + pos: -40.5,-16.5 + parent: 2 + - uid: 27488 + components: + - type: Transform + pos: 87.5,-29.5 + parent: 2 + - uid: 27489 + components: + - type: Transform + pos: 87.5,-24.5 + parent: 2 + - uid: 27490 + components: + - type: Transform + pos: 75.5,-59.5 + parent: 2 + - uid: 27491 + components: + - type: Transform + pos: 72.5,-61.5 + parent: 2 + - uid: 27492 + components: + - type: Transform + pos: 37.5,-67.5 + parent: 2 + - uid: 27493 + components: + - type: Transform + pos: 41.5,-69.5 + parent: 2 + - uid: 27494 + components: + - type: Transform + pos: 46.5,-63.5 + parent: 2 + - uid: 27495 + components: + - type: Transform + pos: 33.5,-60.5 + parent: 2 + - uid: 27496 + components: + - type: Transform + pos: 35.5,-58.5 + parent: 2 + - uid: 27497 + components: + - type: Transform + pos: 40.5,-69.5 + parent: 2 + - uid: 27498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-43.5 + parent: 2 + - uid: 27499 + components: + - type: Transform + pos: -9.5,-46.5 + parent: 2 + - uid: 27500 + components: + - type: Transform + pos: -18.5,-63.5 + parent: 2 + - uid: 27501 + components: + - type: Transform + pos: -17.5,-62.5 + parent: 2 + - uid: 27502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-59.5 + parent: 2 + - uid: 27503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-59.5 + parent: 2 + - uid: 27504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-59.5 + parent: 2 + - uid: 27505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-48.5 + parent: 2 + - uid: 27506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-48.5 + parent: 2 + - uid: 27507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-48.5 + parent: 2 + - uid: 27508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-48.5 + parent: 2 + - uid: 27509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-48.5 + parent: 2 + - uid: 27510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-57.5 + parent: 2 + - uid: 27511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-52.5 + parent: 2 + - uid: 27512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-55.5 + parent: 2 + - uid: 27513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-46.5 + parent: 2 + - uid: 27514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-46.5 + parent: 2 + - uid: 27515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-46.5 + parent: 2 + - uid: 27516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-47.5 + parent: 2 + - uid: 27517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-41.5 + parent: 2 + - uid: 27518 + components: + - type: Transform + pos: 67.5,-64.5 + parent: 2 + - uid: 27519 + components: + - type: Transform + pos: 49.5,12.5 + parent: 2 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 27520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,39.5 + parent: 2 +- proto: WardrobeAtmospherics + entities: + - uid: 18960 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 2.146141 + - 8.073578 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18961 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WardrobeBlueFilled + entities: + - uid: 27521 + components: + - type: Transform + pos: -37.5,-7.5 + parent: 2 +- proto: WardrobeCargoFilled + entities: + - uid: 27522 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 2 + - uid: 27523 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 2 + - uid: 27524 + components: + - type: Transform + pos: -36.5,-18.5 + parent: 2 +- proto: WardrobeChapelFilled + entities: + - uid: 27525 + components: + - type: Transform + pos: 63.5,-0.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WardrobeGreen + entities: + - uid: 27526 + components: + - type: Transform + pos: -45.5,-7.5 + parent: 2 + - uid: 27527 + components: + - type: Transform + pos: -45.5,-8.5 + parent: 2 + - uid: 27528 + components: + - type: Transform + pos: -45.5,-4.5 + parent: 2 +- proto: WardrobeGreyFilled + entities: + - uid: 27529 + components: + - type: Transform + pos: -9.5,53.5 + parent: 2 + - uid: 27530 + components: + - type: Transform + pos: 41.5,-73.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: WardrobeMixedFilled + entities: + - uid: 27531 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 2 + - uid: 27532 + components: + - type: Transform + pos: -9.5,52.5 + parent: 2 +- proto: WardrobePrisonFilled + entities: + - uid: 27533 + components: + - type: Transform + pos: -0.5,23.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 27534 + components: + - type: Transform + pos: -4.5,23.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 27535 + components: + - type: Transform + pos: -8.5,23.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: WardrobeScienceFilled + entities: + - uid: 27536 + components: + - type: Transform + pos: 74.5,-26.5 + parent: 2 +- proto: WardrobeYellowFilled + entities: + - uid: 27537 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 2 +- proto: WarningAir + entities: + - uid: 27538 + components: + - type: Transform + pos: 19.5,-63.5 + parent: 2 +- proto: WarningCO2 + entities: + - uid: 27539 + components: + - type: Transform + pos: 25.5,-53.5 + parent: 2 +- proto: WarningN2 + entities: + - uid: 27540 + components: + - type: Transform + pos: 11.5,-63.5 + parent: 2 +- proto: WarningO2 + entities: + - uid: 27541 + components: + - type: Transform + pos: 15.5,-63.5 + parent: 2 +- proto: WarningPlasma + entities: + - uid: 27542 + components: + - type: Transform + pos: 25.5,-45.5 + parent: 2 +- proto: WarningWaste + entities: + - uid: 27543 + components: + - type: Transform + pos: 25.5,-49.5 + parent: 2 + - uid: 27544 + components: + - type: Transform + pos: 25.5,-41.5 + parent: 2 +- proto: WarpPoint + entities: + - uid: 27545 + components: + - type: Transform + pos: 71.5,-35.5 + parent: 2 + - type: WarpPoint + location: research director + - uid: 27546 + components: + - type: Transform + pos: 57.5,-48.5 + parent: 2 + - type: WarpPoint + location: xenobiology laboratory + - uid: 27547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,11.5 + parent: 2 + - type: WarpPoint + location: holodeck + - uid: 27548 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - type: WarpPoint + location: bridge + - uid: 27549 + components: + - type: Transform + pos: 66.5,-23.5 + parent: 2 + - type: WarpPoint + location: science + - uid: 27550 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 2 + - type: WarpPoint + location: medbay + - uid: 27551 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 2 + - type: WarpPoint + location: engineering + - uid: 27552 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 2 + - type: WarpPoint + location: cargo + - uid: 27553 + components: + - type: Transform + pos: 5.5,27.5 + parent: 2 + - type: WarpPoint + location: security + - uid: 27554 + components: + - type: Transform + pos: -49.5,18.5 + parent: 2 + - type: WarpPoint + location: port bow + - uid: 27555 + components: + - type: Transform + pos: -33.5,-63.5 + parent: 2 + - type: WarpPoint + location: port quarter + - uid: 27556 + components: + - type: Transform + pos: 67.5,11.5 + parent: 2 + - type: WarpPoint + location: starboard bow + - uid: 27557 + components: + - type: Transform + pos: 76.5,-62.5 + parent: 2 + - type: WarpPoint + location: starboard quarter + - uid: 27558 + components: + - type: Transform + pos: -64.5,-4.5 + parent: 2 + - type: WarpPoint + location: arrivals + - uid: 27559 + components: + - type: Transform + pos: 79.5,-11.5 + parent: 2 + - type: WarpPoint + location: departure + - uid: 27560 + components: + - type: MetaData + name: gate + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,4.5 + parent: 2 + - type: WarpPoint + location: gate +- proto: WashingMachine + entities: + - uid: 27561 + components: + - type: Transform + pos: -42.5,-12.5 + parent: 2 +- proto: WashingMachineFilledClothes + entities: + - uid: 27562 + components: + - type: Transform + pos: -41.5,-12.5 + parent: 2 + - uid: 27563 + components: + - type: Transform + pos: -43.5,-12.5 + parent: 2 +- proto: WaterCooler + entities: + - uid: 27564 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 2 + - uid: 27565 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 2 + - uid: 27566 + components: + - type: Transform + pos: -14.5,17.5 + parent: 2 + - uid: 27567 + components: + - type: Transform + pos: -9.5,47.5 + parent: 2 + - uid: 27568 + components: + - type: Transform + pos: 15.5,30.5 + parent: 2 + - uid: 27569 + components: + - type: Transform + pos: 9.5,-50.5 + parent: 2 +- proto: WaterTankFull + entities: + - uid: 27570 + components: + - type: Transform + pos: 4.5,51.5 + parent: 2 + - uid: 27571 + components: + - type: Transform + pos: 54.5,-39.5 + parent: 2 + - uid: 27572 + components: + - type: Transform + pos: 46.5,-0.5 + parent: 2 + - uid: 27573 + components: + - type: Transform + pos: 59.5,-41.5 + parent: 2 + - uid: 27574 + components: + - type: Transform + pos: 49.5,-5.5 + parent: 2 + - uid: 27575 + components: + - type: Transform + pos: 23.5,-96.5 + parent: 2 + - uid: 27576 + components: + - type: Transform + pos: 14.5,-48.5 + parent: 2 +- proto: WaterTankHighCapacity + entities: + - uid: 27577 + components: + - type: Transform + pos: 44.5,-10.5 + parent: 2 + - uid: 27578 + components: + - type: Transform + pos: -52.5,-8.5 + parent: 2 +- proto: WaterVaporCanister + entities: + - uid: 27579 + components: + - type: Transform + pos: 60.5,-37.5 + parent: 2 + - uid: 27580 + components: + - type: Transform + pos: 5.5,-40.5 + parent: 2 +- proto: WeaponCapacitorRecharger + entities: + - uid: 27581 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 2 + - uid: 27582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-11.5 + parent: 2 + - uid: 27583 + components: + - type: Transform + pos: -13.5,38.5 + parent: 2 + - uid: 27584 + components: + - type: Transform + pos: 9.5,34.5 + parent: 2 + - uid: 27585 + components: + - type: Transform + pos: 15.5,32.5 + parent: 2 + - uid: 27586 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - uid: 27587 + components: + - type: Transform + pos: 80.5,-1.5 + parent: 2 +- proto: WeaponDisabler + entities: + - uid: 11101 + components: + - type: Transform + parent: 11089 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11114 + components: + - type: Transform + parent: 11102 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11126 + components: + - type: Transform + parent: 11115 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11153 + components: + - type: Transform + parent: 11140 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: WeaponDisablerSMG + entities: + - uid: 18947 + components: + - type: Transform + parent: 18946 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: WeaponEnergyGun + entities: + - uid: 18948 + components: + - type: Transform + parent: 18946 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: WeaponEnergyGunMini + entities: + - uid: 1226 + components: + - type: Transform + parent: 1209 + - type: EnergyGun + currentFireMode: + state: disabler + name: disable + fireCost: 50 + proto: BulletDisabler + - type: Item + heldPrefix: disabler + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11139 + components: + - type: Transform + parent: 11127 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11167 + components: + - type: Transform + parent: 11154 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: WeaponLaserCarbine + entities: + - uid: 27588 + components: + - type: Transform + pos: -0.5155313,39.42321 + parent: 2 + - uid: 27589 + components: + - type: Transform + pos: -0.5155313,39.67321 + parent: 2 +- proto: WeaponPistolMk58 + entities: + - uid: 27590 + components: + - type: Transform + pos: 22.750496,37.64686 + parent: 2 +- proto: WeaponRevolverDeckard + entities: + - uid: 11250 + components: + - type: Transform + parent: 11245 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: WeaponRifleBB + entities: + - uid: 27591 + components: + - type: MetaData + desc: Не целься в глаза! + name: игрушечное ружьё + - type: Transform + pos: 15.448204,11.497886 + parent: 2 +- proto: WeaponShotgunEnforcer + entities: + - uid: 27592 + components: + - type: Transform + pos: -0.5311549,35.563835 + parent: 2 +- proto: WeaponShotgunKammerer + entities: + - uid: 27593 + components: + - type: Transform + pos: -0.5311551,35.720085 + parent: 2 + - uid: 27594 + components: + - type: Transform + pos: -0.5311549,35.407585 + parent: 2 +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 27595 + components: + - type: Transform + pos: -2.4999063,39.67321 + parent: 2 + - uid: 27596 + components: + - type: Transform + pos: -2.4999063,39.39196 + parent: 2 + - uid: 27597 + components: + - type: Transform + pos: -2.4999063,39.532585 + parent: 2 +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 27598 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 2 + - uid: 27599 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 27600 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 2 + - uid: 27601 + components: + - type: Transform + pos: 23.5,-93.5 + parent: 2 + - uid: 27602 + components: + - type: Transform + pos: 27.5,-93.5 + parent: 2 + - uid: 27603 + components: + - type: Transform + pos: 29.5,-93.5 + parent: 2 + - uid: 27604 + components: + - type: Transform + pos: 33.5,-93.5 + parent: 2 + - uid: 27605 + components: + - type: Transform + pos: 26.5,-97.5 + parent: 2 + - uid: 27606 + components: + - type: Transform + pos: 30.5,-97.5 + parent: 2 + - uid: 27607 + components: + - type: Transform + pos: 30.5,-101.5 + parent: 2 + - uid: 27608 + components: + - type: Transform + pos: 26.5,-101.5 + parent: 2 + - uid: 27609 + components: + - type: Transform + pos: 25.5,-113.5 + parent: 2 + - uid: 27610 + components: + - type: Transform + pos: 31.5,-113.5 + parent: 2 + - uid: 27611 + components: + - type: Transform + pos: 31.5,-110.5 + parent: 2 + - uid: 27612 + components: + - type: Transform + pos: 25.5,-110.5 + parent: 2 + - uid: 27613 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 +- proto: WeedSpray + entities: + - uid: 27614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.506317,-3.2913675 + parent: 2 + - uid: 27615 + components: + - type: Transform + pos: 42.40452,0.33878517 + parent: 2 +- proto: Welder + entities: + - uid: 27616 + components: + - type: Transform + pos: 8.565657,-27.382668 + parent: 2 +- proto: WelderIndustrial + entities: + - uid: 1277 + components: + - type: Transform + parent: 1270 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 1285 + components: + - type: Transform + parent: 1278 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1293 + components: + - type: Transform + parent: 1286 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 27617 + components: + - type: Transform + pos: 63.405533,-24.425533 + parent: 2 +- proto: WeldingFuelTank + entities: + - uid: 27618 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 2 +- proto: WeldingFuelTankFull + entities: + - uid: 27619 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 + - uid: 27620 + components: + - type: Transform + pos: -24.5,-9.5 + parent: 2 + - uid: 27621 + components: + - type: Transform + pos: -14.5,9.5 + parent: 2 + - uid: 27622 + components: + - type: Transform + pos: -65.5,18.5 + parent: 2 + - uid: 27623 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 2 + - uid: 27624 + components: + - type: Transform + pos: -10.5,-39.5 + parent: 2 + - uid: 27625 + components: + - type: Transform + pos: 33.5,-96.5 + parent: 2 + - uid: 27626 + components: + - type: Transform + pos: 13.5,-48.5 + parent: 2 + - uid: 27627 + components: + - type: Transform + pos: 52.5,-20.5 + parent: 2 +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 27628 + components: + - type: Transform + pos: 58.5,-16.5 + parent: 2 +- proto: WetFloorSign + entities: + - uid: 27629 + components: + - type: Transform + pos: -49.62047,-4.209831 + parent: 2 + - uid: 27630 + components: + - type: Transform + pos: -49.417343,-4.209831 + parent: 2 + - uid: 27631 + components: + - type: Transform + pos: -49.198593,-4.209831 + parent: 2 +- proto: Windoor + entities: + - uid: 23532 + components: + - type: Transform + pos: -8.5,51.5 + parent: 2 + - uid: 23533 + components: + - type: Transform + pos: -41.5,-8.5 + parent: 2 + - uid: 27632 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 2 + - uid: 27633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,41.5 + parent: 2 + - uid: 27634 + components: + - type: Transform + pos: -35.5,-44.5 + parent: 2 + - uid: 27635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-17.5 + parent: 2 + - uid: 27636 + components: + - type: MetaData + name: Theatre Stage + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-2.5 + parent: 2 + - uid: 27637 + components: + - type: MetaData + name: Fitness Ring + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,13.5 + parent: 2 + - uid: 27638 + components: + - type: MetaData + name: Fitness Ring + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,10.5 + parent: 2 + - uid: 27639 + components: + - type: MetaData + name: Theatre Stage + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-2.5 + parent: 2 + - uid: 27640 + components: + - type: MetaData + name: Reception Desk + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 27641 + components: + - type: MetaData + name: Reception Desk + - type: Transform + pos: 1.5,22.5 + parent: 2 + - uid: 27642 + components: + - type: MetaData + name: Brig Desk + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,23.5 + parent: 2 + - uid: 27643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,24.5 + parent: 2 + - uid: 27644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,12.5 + parent: 2 + - uid: 27645 + components: + - type: MetaData + name: Library Desk + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-5.5 + parent: 2 + - uid: 27646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,16.5 + parent: 2 + - uid: 27647 + components: + - type: MetaData + name: Reception Desk + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-16.5 + parent: 2 + - uid: 27648 + components: + - type: MetaData + name: Reception Desk + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-16.5 + parent: 2 + - uid: 27649 + components: + - type: MetaData + name: Reception Desk + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-23.5 + parent: 2 + - uid: 27650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-19.5 + parent: 2 + - uid: 27970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-17.5 + parent: 2 +- proto: WindoorAssembly + entities: + - uid: 27651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,23.5 + parent: 2 +- proto: WindoorCargoLocked + entities: + - uid: 27652 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 2 + - uid: 27653 + components: + - type: MetaData + name: Cargo Desk + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-22.5 + parent: 2 + - uid: 27654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-28.5 + parent: 2 +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 27655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-6.5 + parent: 2 + - uid: 27656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-6.5 + parent: 2 +- proto: WindoorKitchenLocked + entities: + - uid: 27657 + components: + - type: MetaData + name: Kitchen's Desk + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-7.5 + parent: 2 +- proto: WindoorMailLocked + entities: + - uid: 27658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-18.5 + parent: 2 +- proto: WindoorSecure + entities: + - uid: 27659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,2.5 + parent: 2 + - uid: 27660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,2.5 + parent: 2 + - uid: 27661 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 2 + - uid: 27662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-26.5 + parent: 2 + - uid: 27663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 21973 + - uid: 27664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 21974 + - uid: 27666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-44.5 + parent: 2 + - uid: 27667 + components: + - type: Transform + pos: -58.5,2.5 + parent: 2 + - uid: 27668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 21975 + - uid: 27670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 21976 + - uid: 27671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,7.5 + parent: 2 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 27672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,29.5 + parent: 2 + - uid: 27673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,37.5 + parent: 2 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 27674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-17.5 + parent: 2 + - uid: 27675 + components: + - type: MetaData + name: Chemistry Desk + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-23.5 + parent: 2 + - uid: 27676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-19.5 + parent: 2 +- proto: WindoorSecureCommandLocked + entities: + - uid: 27677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-15.5 + parent: 2 + - uid: 27678 + components: + - type: Transform + pos: -21.5,4.5 + parent: 2 + - uid: 27679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-22.5 + parent: 2 + - uid: 27680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,3.5 + parent: 2 + - uid: 27681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,4.5 + parent: 2 + - uid: 27682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-110.5 + parent: 2 + - uid: 27683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,4.5 + parent: 2 + - uid: 27684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,5.5 + parent: 2 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 27685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-73.5 + parent: 2 + - uid: 27686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-25.5 + parent: 2 + - uid: 27687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-42.5 + parent: 2 + - uid: 27688 + components: + - type: MetaData + name: Atmospherics Desk + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-44.5 + parent: 2 + - uid: 27689 + components: + - type: Transform + pos: -20.5,-67.5 + parent: 2 + - uid: 27690 + components: + - type: Transform + pos: -23.5,-68.5 + parent: 2 + - uid: 27691 + components: + - type: Transform + pos: -25.5,-68.5 + parent: 2 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 27692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-26.5 + parent: 2 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 27693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-25.5 + parent: 2 + - uid: 27694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-35.5 + parent: 2 + - uid: 27695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,32.5 + parent: 2 + - uid: 27696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-35.5 + parent: 2 + - uid: 27697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-19.5 + parent: 2 + - uid: 27698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-19.5 + parent: 2 + - uid: 27699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-19.5 + parent: 2 +- proto: WindoorSecureScienceLocked + entities: + - uid: 27700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-48.5 + parent: 2 + - uid: 27701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-48.5 + parent: 2 + - uid: 27702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-52.5 + parent: 2 + - uid: 27703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-52.5 + parent: 2 + - uid: 27704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-30.5 + parent: 2 + - uid: 27705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-52.5 + parent: 2 + - uid: 27706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-52.5 + parent: 2 + - uid: 27707 + components: + - type: MetaData + name: Research Delivery + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-21.5 + parent: 2 + - uid: 27708 + components: + - type: MetaData + name: Robotics Desk + - type: Transform + pos: 62.5,-16.5 + parent: 2 + - uid: 27709 + components: + - type: MetaData + name: Robotics Desk + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-23.5 + parent: 2 + - uid: 27710 + components: + - type: MetaData + name: Research And Development Desk + - type: Transform + pos: 70.5,-16.5 + parent: 2 + - uid: 27711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,-37.5 + parent: 2 + - uid: 27712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-23.5 + parent: 2 + - uid: 27713 + components: + - type: Transform + pos: 84.5,-37.5 + parent: 2 +- proto: WindoorSecureSecurityLawyerLocked + entities: + - uid: 27714 + components: + - type: Transform + pos: 2.5,29.5 + parent: 2 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 27715 + components: + - type: Transform + pos: 25.5,30.5 + parent: 2 + - uid: 27716 + components: + - type: MetaData + name: Brig Desk + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,22.5 + parent: 2 + - uid: 27717 + components: + - type: MetaData + name: Brig Desk + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,22.5 + parent: 2 + - uid: 27718 + components: + - type: MetaData + name: Cell 3 + - type: Transform + pos: -1.5,25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1357 + - uid: 27719 + components: + - type: MetaData + name: Cell 2 + - type: Transform + pos: -5.5,25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1358 + - uid: 27720 + components: + - type: MetaData + name: Cell 1 + - type: Transform + pos: -9.5,25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1359 + - uid: 27721 + components: + - type: MetaData + name: Armory Desk + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,37.5 + parent: 2 + - uid: 27722 + components: + - type: MetaData + name: Security Checkpoint Desk + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,2.5 + parent: 2 +- proto: Window + entities: + - uid: 27723 + components: + - type: Transform + pos: -16.5,44.5 + parent: 2 + - uid: 27724 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 2 + - uid: 27728 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 27730 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 27731 + components: + - type: Transform + pos: 74.5,-9.5 + parent: 2 + - uid: 27732 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 2 + - uid: 27733 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 2 + - uid: 27734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,16.5 + parent: 2 + - uid: 27735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-3.5 + parent: 2 + - uid: 27736 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - uid: 27737 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 2 + - uid: 27738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-2.5 + parent: 2 + - uid: 27739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,21.5 + parent: 2 + - uid: 27740 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 2 + - uid: 27741 + components: + - type: Transform + pos: 43.5,-23.5 + parent: 2 + - uid: 27742 + components: + - type: Transform + pos: 65.5,-49.5 + parent: 2 + - uid: 27743 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 2 + - uid: 27744 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 27745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,30.5 + parent: 2 + - uid: 27746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-2.5 + parent: 2 + - uid: 27747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-38.5 + parent: 2 + - uid: 27749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,1.5 + parent: 2 + - uid: 27750 + components: + - type: Transform + pos: 64.5,-9.5 + parent: 2 + - uid: 27753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-2.5 + parent: 2 + - uid: 27754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-1.5 + parent: 2 + - uid: 27755 + components: + - type: Transform + pos: -15.5,19.5 + parent: 2 + - uid: 27756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-1.5 + parent: 2 + - uid: 27757 + components: + - type: Transform + pos: 35.5,-33.5 + parent: 2 + - uid: 27758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-6.5 + parent: 2 + - uid: 27759 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 2 + - uid: 27760 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 2 + - uid: 27762 + components: + - type: Transform + pos: -44.5,-6.5 + parent: 2 + - uid: 27763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-4.5 + parent: 2 + - uid: 27765 + components: + - type: Transform + pos: 7.5,-54.5 + parent: 2 + - uid: 27768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-4.5 + parent: 2 + - uid: 27770 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 2 + - uid: 27771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-17.5 + parent: 2 + - uid: 27772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-19.5 + parent: 2 + - uid: 27773 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 2 + - uid: 27774 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 27775 + components: + - type: Transform + pos: -24.5,-17.5 + parent: 2 + - uid: 27776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,4.5 + parent: 2 + - uid: 27777 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 2 + - uid: 27778 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 2 + - uid: 27779 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 + - uid: 27780 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 2 + - uid: 27781 + components: + - type: Transform + pos: 43.5,-24.5 + parent: 2 + - uid: 27782 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 2 + - uid: 27783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-31.5 + parent: 2 + - uid: 27784 + components: + - type: Transform + pos: 31.5,-22.5 + parent: 2 + - uid: 27785 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 2 + - uid: 27786 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 2 + - uid: 27787 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 2 + - uid: 27788 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 2 + - uid: 27789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-31.5 + parent: 2 + - uid: 27790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-31.5 + parent: 2 + - uid: 27791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-31.5 + parent: 2 + - uid: 27792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-38.5 + parent: 2 + - uid: 27793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-40.5 + parent: 2 + - uid: 27794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-34.5 + parent: 2 + - uid: 27795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-35.5 + parent: 2 + - uid: 27796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-32.5 + parent: 2 + - uid: 27797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-32.5 + parent: 2 + - uid: 27798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-33.5 + parent: 2 + - uid: 27799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-36.5 + parent: 2 + - uid: 27800 + components: + - type: Transform + pos: 9.5,-54.5 + parent: 2 + - uid: 27801 + components: + - type: Transform + pos: 8.5,-54.5 + parent: 2 + - uid: 27802 + components: + - type: Transform + pos: -46.5,0.5 + parent: 2 + - uid: 27803 + components: + - type: Transform + pos: -67.5,11.5 + parent: 2 + - uid: 27804 + components: + - type: Transform + pos: -44.5,0.5 + parent: 2 + - uid: 27805 + components: + - type: Transform + pos: -37.5,0.5 + parent: 2 + - uid: 27806 + components: + - type: Transform + pos: -39.5,0.5 + parent: 2 + - uid: 27807 + components: + - type: Transform + pos: 64.5,8.5 + parent: 2 + - uid: 27808 + components: + - type: Transform + pos: 61.5,8.5 + parent: 2 + - uid: 27809 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - uid: 27810 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 + - uid: 27811 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - uid: 27812 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 2 + - uid: 27813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-34.5 + parent: 2 + - uid: 27814 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - uid: 27815 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 2 + - uid: 27816 + components: + - type: Transform + pos: 64.5,-22.5 + parent: 2 + - uid: 27817 + components: + - type: Transform + pos: 63.5,-25.5 + parent: 2 + - uid: 27818 + components: + - type: Transform + pos: 61.5,-25.5 + parent: 2 + - uid: 27819 + components: + - type: Transform + pos: 68.5,-28.5 + parent: 2 + - uid: 27820 + components: + - type: Transform + pos: 68.5,-29.5 + parent: 2 + - uid: 27821 + components: + - type: Transform + pos: 68.5,-30.5 + parent: 2 + - uid: 27822 + components: + - type: Transform + pos: 67.5,-49.5 + parent: 2 + - uid: 27823 + components: + - type: Transform + pos: 24.5,-31.5 + parent: 2 + - uid: 27824 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 2 + - uid: 27825 + components: + - type: Transform + pos: 57.5,-11.5 + parent: 2 + - uid: 27826 + components: + - type: Transform + pos: 59.5,-11.5 + parent: 2 + - uid: 27827 + components: + - type: Transform + pos: 61.5,-11.5 + parent: 2 + - uid: 27828 + components: + - type: Transform + pos: 66.5,-11.5 + parent: 2 + - uid: 27829 + components: + - type: Transform + pos: 67.5,-11.5 + parent: 2 + - uid: 27830 + components: + - type: Transform + pos: 68.5,-11.5 + parent: 2 + - uid: 27831 + components: + - type: Transform + pos: 69.5,-11.5 + parent: 2 + - uid: 27832 + components: + - type: Transform + pos: 70.5,-11.5 + parent: 2 + - uid: 27833 + components: + - type: Transform + pos: 71.5,-11.5 + parent: 2 + - uid: 27834 + components: + - type: Transform + pos: 72.5,-11.5 + parent: 2 + - uid: 27835 + components: + - type: Transform + pos: 74.5,-7.5 + parent: 2 + - uid: 27836 + components: + - type: Transform + pos: 78.5,-61.5 + parent: 2 + - uid: 27837 + components: + - type: Transform + pos: 35.5,-61.5 + parent: 2 + - uid: 27838 + components: + - type: Transform + pos: 34.5,-61.5 + parent: 2 + - uid: 27839 + components: + - type: Transform + pos: 49.5,-1.5 + parent: 2 + - uid: 27840 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 27841 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 27842 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 27843 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 2 + - uid: 27844 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 2 + - uid: 27845 + components: + - type: Transform + pos: 47.5,-1.5 + parent: 2 + - uid: 27846 + components: + - type: Transform + pos: 70.5,-0.5 + parent: 2 + - uid: 27847 + components: + - type: Transform + pos: 68.5,-0.5 + parent: 2 + - uid: 27848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-25.5 + parent: 2 + - uid: 27849 + components: + - type: Transform + pos: 38.5,-25.5 + parent: 2 + - uid: 27850 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 2 + - uid: 27851 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 27852 + components: + - type: Transform + pos: -6.5,46.5 + parent: 2 + - uid: 27853 + components: + - type: Transform + pos: -8.5,46.5 + parent: 2 + - uid: 27854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-37.5 + parent: 2 + - uid: 27855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-26.5 + parent: 2 + - uid: 27856 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 27857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,31.5 + parent: 2 + - uid: 27858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,16.5 + parent: 2 + - uid: 27860 + components: + - type: Transform + pos: -14.5,-25.5 + parent: 2 + - uid: 27861 + components: + - type: Transform + pos: -14.5,-26.5 + parent: 2 + - uid: 27862 + components: + - type: Transform + pos: -14.5,-23.5 + parent: 2 + - uid: 27863 + components: + - type: Transform + pos: -14.5,-24.5 + parent: 2 + - uid: 27864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-21.5 + parent: 2 + - uid: 27865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-25.5 + parent: 2 + - uid: 27866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-19.5 + parent: 2 + - uid: 27867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-17.5 + parent: 2 + - uid: 27868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,13.5 + parent: 2 + - uid: 27869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,9.5 + parent: 2 + - uid: 27870 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 + - uid: 27871 + components: + - type: Transform + pos: 54.5,-8.5 + parent: 2 +- proto: WindowDirectional + entities: + - uid: 27769 + components: + - type: Transform + pos: -9.5,51.5 + parent: 2 + - uid: 27859 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 2 + - uid: 27872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-20.5 + parent: 2 + - uid: 27873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-0.5 + parent: 2 + - uid: 27874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 2 + - uid: 27875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 2 + - uid: 27876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 2 + - uid: 27877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-9.5 + parent: 2 + - uid: 27878 + components: + - type: Transform + pos: -43.5,-8.5 + parent: 2 + - uid: 27879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-1.5 + parent: 2 + - uid: 27880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-8.5 + parent: 2 + - uid: 27881 + components: + - type: Transform + pos: -45.5,-6.5 + parent: 2 + - uid: 27882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 27883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-1.5 + parent: 2 + - uid: 27884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-44.5 + parent: 2 + - uid: 27885 + components: + - type: Transform + pos: 44.5,-2.5 + parent: 2 + - uid: 27886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-50.5 + parent: 2 + - uid: 27887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-6.5 + parent: 2 + - uid: 27888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-38.5 + parent: 2 + - uid: 27889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-36.5 + parent: 2 + - uid: 27890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-30.5 + parent: 2 + - uid: 27891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-36.5 + parent: 2 + - uid: 27892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-41.5 + parent: 2 + - uid: 27893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-20.5 + parent: 2 + - uid: 27894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 2 + - uid: 27895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-19.5 + parent: 2 + - uid: 27896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-19.5 + parent: 2 + - uid: 27897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-20.5 + parent: 2 + - uid: 27898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-19.5 + parent: 2 + - uid: 27899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-19.5 + parent: 2 + - uid: 27900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-19.5 + parent: 2 + - uid: 27901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-19.5 + parent: 2 + - uid: 27902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-27.5 + parent: 2 + - uid: 27903 + components: + - type: Transform + pos: -42.5,-8.5 + parent: 2 + - uid: 27904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-36.5 + parent: 2 + - uid: 27905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-9.5 + parent: 2 + - uid: 27906 + components: + - type: Transform + pos: 47.5,-2.5 + parent: 2 + - uid: 27907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-51.5 + parent: 2 + - uid: 27908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,1.5 + parent: 2 + - uid: 27909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 2 + - uid: 27910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 2 + - uid: 27911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 2 + - uid: 27912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - uid: 27913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-2.5 + parent: 2 + - uid: 27914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-2.5 + parent: 2 + - uid: 27915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-2.5 + parent: 2 + - uid: 27916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-2.5 + parent: 2 + - uid: 27917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 2 + - uid: 27918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,0.5 + parent: 2 + - uid: 27919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 2 + - uid: 27920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-0.5 + parent: 2 + - uid: 27921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-1.5 + parent: 2 + - uid: 27922 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 2 + - uid: 27923 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 2 + - uid: 27924 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - uid: 27925 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - uid: 27926 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 2 + - uid: 27927 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 27928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,19.5 + parent: 2 + - uid: 27929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,16.5 + parent: 2 + - uid: 27930 + components: + - type: Transform + pos: -43.5,-17.5 + parent: 2 + - uid: 27931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-17.5 + parent: 2 + - uid: 27932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-22.5 + parent: 2 + - uid: 27933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-24.5 + parent: 2 + - uid: 27934 + components: + - type: Transform + pos: -41.5,-17.5 + parent: 2 + - uid: 27935 + components: + - type: Transform + pos: -42.5,-17.5 + parent: 2 + - uid: 27936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-17.5 + parent: 2 + - uid: 27937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 2 + - uid: 27951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-20.5 + parent: 2 + - uid: 27973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-18.5 + parent: 2 + - uid: 27974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-17.5 + parent: 2 + - uid: 27975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-16.5 + parent: 2 + - uid: 27976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-17.5 + parent: 2 + - uid: 27986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-16.5 + parent: 2 + - uid: 27987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,48.5 + parent: 2 + - uid: 27988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,47.5 + parent: 2 + - uid: 27989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-18.5 + parent: 2 + - uid: 27992 + components: + - type: Transform + pos: 1.5,-46.5 + parent: 2 + - uid: 27996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-17.5 + parent: 2 + - uid: 28005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-17.5 + parent: 2 + - uid: 28006 + components: + - type: Transform + pos: 18.5,-17.5 + parent: 2 +- proto: WindowReinforcedDirectional + entities: + - uid: 27938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,7.5 + parent: 2 + - uid: 27939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 2 + - uid: 27940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,3.5 + parent: 2 + - uid: 27941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,4.5 + parent: 2 + - uid: 27942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,6.5 + parent: 2 + - uid: 27943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,4.5 + parent: 2 + - uid: 27944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,3.5 + parent: 2 + - uid: 27945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,1.5 + parent: 2 + - uid: 27946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-25.5 + parent: 2 + - uid: 27947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-31.5 + parent: 2 + - uid: 27948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-26.5 + parent: 2 + - uid: 27949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-71.5 + parent: 2 + - uid: 27950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-72.5 + parent: 2 + - uid: 27953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,40.5 + parent: 2 + - uid: 27954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-27.5 + parent: 2 + - uid: 27955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-15.5 + parent: 2 + - uid: 27956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-24.5 + parent: 2 + - uid: 27957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,30.5 + parent: 2 + - uid: 27958 + components: + - type: Transform + pos: 27.5,29.5 + parent: 2 + - uid: 27962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-35.5 + parent: 2 + - uid: 27977 + components: + - type: Transform + pos: 59.5,-51.5 + parent: 2 + - uid: 27978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-49.5 + parent: 2 + - uid: 27979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-53.5 + parent: 2 + - uid: 27980 + components: + - type: Transform + pos: 55.5,-51.5 + parent: 2 + - uid: 27981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-53.5 + parent: 2 + - uid: 27982 + components: + - type: Transform + pos: 24.5,30.5 + parent: 2 + - uid: 27983 + components: + - type: Transform + pos: 55.5,-43.5 + parent: 2 + - uid: 27984 + components: + - type: Transform + pos: 59.5,-47.5 + parent: 2 + - uid: 27985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-49.5 + parent: 2 + - uid: 27993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-25.5 + parent: 2 + - uid: 27994 + components: + - type: Transform + pos: 116.5,-35.5 + parent: 2 + - uid: 27995 + components: + - type: Transform + pos: -29.5,4.5 + parent: 2 + - uid: 27997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-54.5 + parent: 2 + - uid: 27998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-29.5 + parent: 2 + - uid: 27999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-35.5 + parent: 2 + - uid: 28000 + components: + - type: Transform + pos: 8.5,39.5 + parent: 2 + - uid: 28001 + components: + - type: Transform + pos: 6.5,39.5 + parent: 2 + - uid: 28002 + components: + - type: Transform + pos: -19.5,4.5 + parent: 2 + - uid: 28003 + components: + - type: Transform + pos: -22.5,4.5 + parent: 2 + - uid: 28004 + components: + - type: Transform + pos: -20.5,4.5 + parent: 2 + - uid: 28007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,4.5 + parent: 2 + - uid: 28008 + components: + - type: Transform + pos: -23.5,4.5 + parent: 2 + - uid: 28009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,13.5 + parent: 2 + - uid: 28010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,14.5 + parent: 2 + - uid: 28011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,16.5 + parent: 2 + - uid: 28012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,16.5 + parent: 2 + - uid: 28013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,13.5 + parent: 2 + - uid: 28014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,12.5 + parent: 2 + - uid: 28015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,16.5 + parent: 2 + - uid: 28016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-110.5 + parent: 2 + - uid: 28017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-110.5 + parent: 2 + - uid: 28018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-110.5 + parent: 2 + - uid: 28019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-110.5 + parent: 2 + - uid: 28020 + components: + - type: Transform + pos: 35.5,-68.5 + parent: 2 + - uid: 28022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,13.5 + parent: 2 + - uid: 28023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,13.5 + parent: 2 + - uid: 28024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,12.5 + parent: 2 + - uid: 28025 + components: + - type: Transform + pos: 23.5,10.5 + parent: 2 + - uid: 28026 + components: + - type: Transform + pos: 24.5,10.5 + parent: 2 + - uid: 28027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,10.5 + parent: 2 + - uid: 28028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,11.5 + parent: 2 + - uid: 28029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,13.5 + parent: 2 + - uid: 28030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,13.5 + parent: 2 + - uid: 28031 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - uid: 28032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,13.5 + parent: 2 + - uid: 28033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,12.5 + parent: 2 + - uid: 28034 + components: + - type: Transform + pos: 22.5,10.5 + parent: 2 + - uid: 28035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,11.5 + parent: 2 + - uid: 28036 + components: + - type: Transform + pos: 50.5,17.5 + parent: 2 + - uid: 28037 + components: + - type: Transform + pos: -54.5,12.5 + parent: 2 + - uid: 28038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,16.5 + parent: 2 + - uid: 28039 + components: + - type: Transform + pos: -53.5,12.5 + parent: 2 + - uid: 28040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,16.5 + parent: 2 + - uid: 28041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,15.5 + parent: 2 + - uid: 28042 + components: + - type: Transform + pos: -55.5,12.5 + parent: 2 + - uid: 28043 + components: + - type: Transform + pos: -56.5,12.5 + parent: 2 + - uid: 28044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,9.5 + parent: 2 + - uid: 28047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-23.5 + parent: 2 + - uid: 28048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-62.5 + parent: 2 + - uid: 28049 + components: + - type: Transform + pos: -26.5,-68.5 + parent: 2 + - uid: 28050 + components: + - type: Transform + pos: -24.5,-68.5 + parent: 2 + - uid: 28051 + components: + - type: Transform + pos: -22.5,-68.5 + parent: 2 + - uid: 28052 + components: + - type: Transform + pos: 71.5,-59.5 + parent: 2 + - uid: 28053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,42.5 + parent: 2 + - uid: 28054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,42.5 + parent: 2 + - uid: 28055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,41.5 + parent: 2 + - uid: 28056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,40.5 + parent: 2 + - uid: 28057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,41.5 + parent: 2 + - uid: 28058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,42.5 + parent: 2 + - uid: 28060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,5.5 + parent: 2 + - uid: 28061 + components: + - type: Transform + pos: -33.5,3.5 + parent: 2 + - uid: 28062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-54.5 + parent: 2 + - uid: 28063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,29.5 + parent: 2 + - uid: 28064 + components: + - type: Transform + pos: 26.5,30.5 + parent: 2 +- proto: WindowTintedDirectional + entities: + - uid: 28065 + components: + - type: Transform + pos: -24.5,41.5 + parent: 2 + - uid: 28066 + components: + - type: Transform + pos: 16.5,6.5 + parent: 2 + - uid: 28067 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 + - uid: 28068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,3.5 + parent: 2 + - uid: 28069 + components: + - type: Transform + pos: 20.5,5.5 + parent: 2 + - uid: 28070 + components: + - type: Transform + pos: 22.5,5.5 + parent: 2 + - uid: 28071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,3.5 + parent: 2 + - uid: 28072 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 28073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,6.5 + parent: 2 + - uid: 28074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,6.5 + parent: 2 +- proto: Wirecutter + entities: + - uid: 11072 + components: + - type: Transform + parent: 11069 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.26241,3.0563354 + parent: 2 + - uid: 28076 + components: + - type: Transform + pos: 70.5,12.5 + parent: 2 +- proto: WoodDoor + entities: + - uid: 28077 + components: + - type: Transform + pos: 73.5,-3.5 + parent: 2 + - uid: 28078 + components: + - type: Transform + pos: 73.5,-1.5 + parent: 2 +- proto: Wrench + entities: + - uid: 28079 + components: + - type: Transform + pos: 47.473003,-67.8025 + parent: 2 + - uid: 28080 + components: + - type: Transform + pos: -19.503838,-6.434291 + parent: 2 + - uid: 28081 + components: + - type: Transform + pos: -4.483353,6.4502025 + parent: 2 + - uid: 28082 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 + - uid: 28083 + components: + - type: Transform + pos: 27.472874,22.499187 + parent: 2 + - uid: 28084 + components: + - type: Transform + pos: -44.5,14.5 + parent: 2 + - uid: 28085 + components: + - type: Transform + pos: -52.517487,-13.387003 + parent: 2 + - uid: 28086 + components: + - type: Transform + pos: -25.576,-43.60518 + parent: 2 + - uid: 28087 + components: + - type: Transform + pos: 84.626945,-48.5344 + parent: 2 + - uid: 28088 + components: + - type: Transform + pos: 33.549847,-95.50195 + parent: 2 + - uid: 28089 + components: + - type: Transform + pos: 80.43646,-35.430176 + parent: 2 + - uid: 28090 + components: + - type: Transform + pos: 68.57319,-55.533707 + parent: 2 +... diff --git a/Resources/Maps/arena.yml b/Resources/Maps/arena.yml index 563011f75f..ab548d14f2 100644 --- a/Resources/Maps/arena.yml +++ b/Resources/Maps/arena.yml @@ -174553,13 +174553,6 @@ entities: - type: Transform pos: -31.493519,10.543685 parent: 6747 -- proto: WeaponRifleM90GrenadeLauncher - entities: - - uid: 8311 - components: - - type: Transform - pos: -14.458499,-2.5063553 - parent: 6747 - proto: WeaponShotgunKammerer entities: - uid: 1624 diff --git a/Resources/Maps/core.yml b/Resources/Maps/core.yml index 0f31cea837..fcea47a9e3 100644 --- a/Resources/Maps/core.yml +++ b/Resources/Maps/core.yml @@ -97,11 +97,11 @@ entities: version: 6 0,-2: ind: 0,-2 - tiles: aAAAAAAAaAAAAAAAXQAAAAADXQAAAAADaAAAAAACXQAAAAABXQAAAAADXQAAAAABaAAAAAABXQAAAAADaAAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADTgAAAAABTgAAAAABaAAAAAACaAAAAAACaAAAAAABaAAAAAAAaAAAAAABaAAAAAACaAAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAaAAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAAAJAAAAAAAJAAAAAABJAAAAAACJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAACJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAJAAAAAADegAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAJAAAAAADfgAAAAAAHwAAAAADJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAAHwAAAAACJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADJAAAAAABJAAAAAAAJAAAAAADJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACaAAAAAABXQAAAAABHwAAAAABfgAAAAAAHwAAAAACJAAAAAABJAAAAAACJAAAAAAAJAAAAAABXQAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAJAAAAAACaAAAAAADaAAAAAAAaAAAAAACXQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAATgAAAAACTgAAAAADJAAAAAABfgAAAAAAaAAAAAADaAAAAAAAaAAAAAABaAAAAAACXQAAAAACHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADXQAAAAAAXQAAAAABXQAAAAABaAAAAAADaAAAAAADaAAAAAACaAAAAAADaAAAAAACXQAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAABXQAAAAADXQAAAAADaAAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAaAAAAAACaAAAAAADaAAAAAACaAAAAAADXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAABaAAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAABaAAAAAABaAAAAAABXQAAAAABfgAAAAAAJAAAAAACJAAAAAAAJAAAAAABXQAAAAABXQAAAAADaAAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAJAAAAAACHwAAAAACHwAAAAACXQAAAAAAXQAAAAADaAAAAAADXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJAAAAAAAHwAAAAADHwAAAAABXQAAAAADXQAAAAAAaAAAAAAD + tiles: aAAAAAAAaAAAAAAAXQAAAAADXQAAAAADaAAAAAACXQAAAAABXQAAAAADXQAAAAABaAAAAAABXQAAAAADaAAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADTgAAAAABTgAAAAABaAAAAAACaAAAAAACaAAAAAABaAAAAAAAaAAAAAABaAAAAAACaAAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAaAAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAJAAAAAADegAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAJAAAAAADfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADJAAAAAABJAAAAAAAJAAAAAADJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACaAAAAAABXQAAAAABHwAAAAABfgAAAAAAHwAAAAACJAAAAAABJAAAAAACJAAAAAAAJAAAAAABXQAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAJAAAAAACaAAAAAADaAAAAAAAaAAAAAACXQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAATgAAAAACTgAAAAADJAAAAAABfgAAAAAAaAAAAAADaAAAAAAAaAAAAAABaAAAAAACXQAAAAACHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADXQAAAAAAXQAAAAABXQAAAAABaAAAAAADaAAAAAADaAAAAAACaAAAAAADaAAAAAACXQAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAABXQAAAAADXQAAAAADaAAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAaAAAAAACaAAAAAADaAAAAAACaAAAAAADXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAABaAAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACaAAAAAABaAAAAAABaAAAAAABXQAAAAABfgAAAAAAJAAAAAACJAAAAAAAJAAAAAABXQAAAAABXQAAAAADaAAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAJAAAAAACHwAAAAACHwAAAAACXQAAAAAAXQAAAAADaAAAAAADXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJAAAAAAAHwAAAAADHwAAAAABXQAAAAADXQAAAAAAaAAAAAAD version: 6 1,-2: ind: 1,-2 - tiles: XQAAAAAAXQAAAAABaAAAAAAAXQAAAAAAaAAAAAAAXQAAAAACfgAAAAAAHwAAAAACaAAAAAADaAAAAAABaAAAAAABaAAAAAADaAAAAAABHwAAAAABfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAABXQAAAAABfgAAAAAAHwAAAAAAaAAAAAADaAAAAAAAaAAAAAADaAAAAAABaAAAAAABHwAAAAAAfgAAAAAAHwAAAAAAJAAAAAABHwAAAAACfgAAAAAAXQAAAAABaAAAAAACXQAAAAACfgAAAAAAHwAAAAAAaAAAAAAAaAAAAAABaAAAAAABXQAAAAADaAAAAAACHwAAAAADHwAAAAACHwAAAAACJAAAAAAAHwAAAAADfgAAAAAAXQAAAAADaAAAAAAAXQAAAAABfgAAAAAAHwAAAAADaAAAAAABaAAAAAABaAAAAAABaAAAAAADaAAAAAADHwAAAAABfgAAAAAAHwAAAAAAJAAAAAACHwAAAAABfgAAAAAAaAAAAAAAaAAAAAABaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABJAAAAAADHwAAAAAAfgAAAAAAXQAAAAADaAAAAAACXQAAAAAAJAAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAJAAAAAADHwAAAAABfgAAAAAAXQAAAAACaAAAAAACaAAAAAAAaAAAAAABaAAAAAACaAAAAAACaAAAAAABaAAAAAADaAAAAAABaAAAAAADXQAAAAACfgAAAAAAHwAAAAABJAAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABaAAAAAAAXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAACfgAAAAAAAwAAAAAAAwAAAAAAXQAAAAACaAAAAAADXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAHwAAAAAAHwAAAAACXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAAwAAAAAAAwAAAAAAXQAAAAABaAAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAAwAAAAAAAwAAAAAAXQAAAAABaAAAAAAAXQAAAAACfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAJAAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAHwAAAAABfgAAAAAAAwAAAAAAAwAAAAAAXQAAAAAAaAAAAAABXQAAAAAAaAAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAABaAAAAAABaAAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACaAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAA + tiles: XQAAAAAAXQAAAAABaAAAAAAAXQAAAAAAaAAAAAAAXQAAAAACfgAAAAAAHwAAAAACaAAAAAADaAAAAAABaAAAAAABaAAAAAADaAAAAAABHwAAAAABfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAABXQAAAAABfgAAAAAAHwAAAAAAaAAAAAADaAAAAAAAaAAAAAADaAAAAAABaAAAAAABHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAABaAAAAAACXQAAAAACfgAAAAAAHwAAAAAAaAAAAAAAaAAAAAABaAAAAAABXQAAAAADaAAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAXQAAAAADaAAAAAAAXQAAAAABfgAAAAAAHwAAAAADaAAAAAABaAAAAAABaAAAAAABaAAAAAADaAAAAAADHwAAAAABfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAaAAAAAAAaAAAAAABaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAADaAAAAAACXQAAAAAAJAAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAJAAAAAADHwAAAAABfgAAAAAAXQAAAAACaAAAAAACaAAAAAAAaAAAAAABaAAAAAACaAAAAAACaAAAAAABaAAAAAADaAAAAAABaAAAAAADXQAAAAACfgAAAAAAHwAAAAABJAAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABaAAAAAAAXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAACfgAAAAAAAwAAAAAAAwAAAAAAXQAAAAACaAAAAAADXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAHwAAAAAAHwAAAAACXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAAwAAAAAAAwAAAAAAXQAAAAABaAAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAAwAAAAAAAwAAAAAAXQAAAAABaAAAAAAAXQAAAAACfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAJAAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAHwAAAAABfgAAAAAAAwAAAAAAAwAAAAAAXQAAAAAAaAAAAAABXQAAAAAAaAAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAABaAAAAAABaAAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACaAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAA version: 6 1,-1: ind: 1,-1 @@ -3793,7 +3793,6 @@ entities: 5754: 12,-22 5755: 15,-26 5756: 12,-26 - 5757: 12,-29 5758: 7,-30 5759: 8,-32 5760: 7,-32 @@ -3860,15 +3859,6 @@ entities: 6417: 39,-3 6418: 37,-3 6419: 37,-3 - - node: - cleanable: True - color: '#FFFFFF47' - id: Dirt - decals: - 6314: 15,-30 - 6315: 15,-30 - 6316: 16,-27 - 6317: 16,-27 - node: cleanable: True color: '#FFFFFFFF' @@ -5194,7 +5184,6 @@ entities: 4911: 13,-17 4912: 11,-30 4913: 11,-28 - 4914: 11,-27 4915: 11,-26 4916: 17,-26 4917: 17,-28 @@ -5955,15 +5944,12 @@ entities: 3363: 10,-16 3364: 10,-18 3365: 10,-18 - 3366: 12,-29 - 3367: 12,-28 3368: 12,-26 3369: 13,-25 3370: 14,-25 3371: 14,-26 3372: 15,-25 3373: 16,-26 - 3374: 16,-29 3375: -4,-36 3376: -4,-37 3377: -6,-37 @@ -6482,10 +6468,6 @@ entities: id: DirtHeavyMonotile decals: 2847: -44,17 - 6310: 13,-30 - 6311: 16,-30 - 6312: 12,-30 - 6313: 12,-30 - node: cleanable: True angle: -6.283185307179586 rad @@ -8333,12 +8315,6 @@ entities: decals: 6401: 49,-11 6402: 52,-11 - - node: - color: '#EFB34118' - id: WarnCornerSmallNE - decals: - 6325: 12,-30 - 6326: 12,-30 - node: color: '#EFB34131' id: WarnCornerSmallNE @@ -8347,11 +8323,6 @@ entities: 6471: 14,39 6472: 14,39 6473: 14,39 - - node: - color: '#EFB3416C' - id: WarnCornerSmallNE - decals: - 6324: 12,-30 - node: color: '#EFB34196' id: WarnCornerSmallNE @@ -8368,12 +8339,6 @@ entities: 6071: 51,-11 6748: 46,15 6846: 57,-5 - - node: - color: '#EFB34118' - id: WarnCornerSmallNW - decals: - 6327: 16,-30 - 6328: 16,-30 - node: color: '#EFB34131' id: WarnCornerSmallNW @@ -8382,11 +8347,6 @@ entities: 6467: 16,39 6468: 16,39 6469: 16,39 - - node: - color: '#EFB3416C' - id: WarnCornerSmallNW - decals: - 6323: 16,-30 - node: color: '#EFB34196' id: WarnCornerSmallNW @@ -8469,9 +8429,6 @@ entities: 85: -4,-19 116: -4,-16 119: -2,-15 - 189: 12,-27 - 190: 12,-28 - 191: 12,-29 265: 25,-16 266: 25,-15 276: 29,-13 @@ -8648,9 +8605,6 @@ entities: 88: -10,-17 89: -10,-16 128: 0,-21 - 186: 16,-27 - 187: 16,-28 - 188: 16,-29 194: 13,-21 195: 13,-20 196: 13,-19 @@ -8677,16 +8631,6 @@ entities: 6370: -33,-11 6743: 46,16 6824: 61,-4 - - node: - color: '#EFB34118' - id: WarnLineW - decals: - 6329: 13,-30 - 6330: 13,-30 - 6331: 14,-30 - 6332: 14,-30 - 6333: 15,-30 - 6334: 15,-30 - node: color: '#EFB34131' id: WarnLineW @@ -8695,13 +8639,6 @@ entities: 6451: 15,39 6452: 15,39 6453: 15,39 - - node: - color: '#EFB3416C' - id: WarnLineW - decals: - 6320: 13,-30 - 6321: 14,-30 - 6322: 15,-30 - node: color: '#EFB34196' id: WarnLineW @@ -17945,10 +17882,15 @@ entities: parent: 2 - proto: AmeJar entities: - - uid: 94 + - uid: 695 components: - type: Transform - pos: 17.51151,-27.35627 + pos: 15.659197,-24.407036 + parent: 2 + - uid: 1534 + components: + - type: Transform + pos: 15.346697,-24.39141 parent: 2 - proto: AmePartFlatpack entities: @@ -17997,6 +17939,61 @@ entities: - type: Transform pos: 16.69675,-24.555443 parent: 2 + - uid: 693 + components: + - type: Transform + pos: 16.299822,-24.36016 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: 17.768572,-25.313286 + parent: 2 + - uid: 6126 + components: + - type: Transform + pos: 16.299822,-24.20391 + parent: 2 + - uid: 10573 + components: + - type: Transform + pos: 16.299822,-24.563286 + parent: 2 + - uid: 22532 + components: + - type: Transform + pos: 17.768572,-25.563286 + parent: 2 + - uid: 22533 + components: + - type: Transform + pos: 17.768572,-25.73516 + parent: 2 + - uid: 22534 + components: + - type: Transform + pos: 17.284197,-25.70391 + parent: 2 + - uid: 22535 + components: + - type: Transform + pos: 17.284197,-25.48516 + parent: 2 + - uid: 22536 + components: + - type: Transform + pos: 17.284197,-25.26641 + parent: 2 + - uid: 22538 + components: + - type: Transform + pos: 17.737322,-26.20391 + parent: 2 + - uid: 22539 + components: + - type: Transform + pos: 17.518572,-26.344536 + parent: 2 - proto: AmmoniaCanister entities: - uid: 22510 @@ -51029,50 +51026,37 @@ entities: - uid: 641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-26.5 - parent: 2 - - uid: 642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-27.5 + pos: 12.5,-28.5 parent: 2 - uid: 643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-28.5 + pos: 12.5,-27.5 parent: 2 - uid: 647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-26.5 + pos: 13.5,-29.5 parent: 2 - uid: 648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-27.5 + pos: 12.5,-29.5 parent: 2 - uid: 650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-27.5 + pos: 13.5,-27.5 parent: 2 - uid: 651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-28.5 + pos: 14.5,-26.5 parent: 2 - uid: 652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-26.5 + pos: 13.5,-28.5 parent: 2 - uid: 653 components: @@ -51212,6 +51196,11 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,-13.5 parent: 2 + - uid: 692 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 2 - uid: 753 components: - type: Transform @@ -51400,6 +51389,11 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,25.5 parent: 2 + - uid: 2189 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 2 - uid: 2199 components: - type: Transform @@ -51660,11 +51654,6 @@ entities: - type: Transform pos: 40.5,21.5 parent: 2 - - uid: 6126 - components: - - type: Transform - pos: 14.5,-28.5 - parent: 2 - uid: 6203 components: - type: Transform @@ -56376,6 +56365,61 @@ entities: - type: Transform pos: -6.5,-12.5 parent: 2 + - uid: 22521 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 2 + - uid: 22522 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 2 + - uid: 22523 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 2 + - uid: 22524 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 2 + - uid: 22525 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 2 + - uid: 22526 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 2 + - uid: 22527 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 2 + - uid: 22528 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 2 + - uid: 22529 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 2 + - uid: 22530 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 2 + - uid: 22531 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 2 - proto: Chair entities: - uid: 678 @@ -56452,28 +56496,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-24.5 parent: 2 - - uid: 692 - components: - - type: Transform - pos: 11.5,-26.5 - parent: 2 - - uid: 693 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-28.5 - parent: 2 - - uid: 694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-28.5 - parent: 2 - - uid: 695 - components: - - type: Transform - pos: 17.5,-26.5 - parent: 2 - uid: 696 components: - type: Transform @@ -62611,10 +62633,10 @@ entities: parent: 2 - proto: DefaultStationBeaconAME entities: - - uid: 10573 + - uid: 642 components: - type: Transform - pos: 14.5,-27.5 + pos: 13.5,-25.5 parent: 2 - proto: DefaultStationBeaconAnomalyGenerator entities: @@ -68953,7 +68975,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 50 name: null @@ -105392,7 +105413,7 @@ entities: - type: Transform pos: 14.5,32.5 parent: 2 -- proto: Oracle +- proto: OracleSpawner entities: - uid: 22459 components: @@ -105879,13 +105900,6 @@ entities: - type: Transform pos: -5.47442,23.570398 parent: 2 -- proto: PaperWrittenAMEScribbles - entities: - - uid: 1534 - components: - - type: Transform - pos: 11.480261,-27.434395 - parent: 2 - proto: ParticleAcceleratorComputerCircuitboard entities: - uid: 5471 @@ -110183,6 +110197,11 @@ entities: parent: 2 - proto: Rack entities: + - uid: 94 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 2 - uid: 1605 components: - type: Transform @@ -110242,6 +110261,11 @@ entities: - type: Transform pos: -40.5,-33.5 parent: 2 + - uid: 2190 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 2 - uid: 3526 components: - type: Transform @@ -110615,6 +110639,11 @@ entities: - type: Transform pos: 3.5,-4.5 parent: 2 + - uid: 22537 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 2 - proto: RadiationCollectorNoTank entities: - uid: 607 @@ -121356,7 +121385,7 @@ entities: - type: Transform pos: -35.5,-42.5 parent: 2 -- proto: SophicScribe +- proto: SophicScribeSpawner entities: - uid: 16214 components: @@ -125063,18 +125092,6 @@ entities: - type: Transform pos: 5.5,-23.5 parent: 2 - - uid: 2189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-27.5 - parent: 2 - - uid: 2190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-27.5 - parent: 2 - uid: 2191 components: - type: Transform @@ -146796,13 +146813,6 @@ entities: - type: Transform pos: 2.553135,33.488186 parent: 2 -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 5081 - components: - - type: Transform - pos: -11.600864,32.694817 - parent: 2 - proto: WeaponTurretSyndicateBroken entities: - uid: 853 diff --git a/Resources/Maps/gaxstation.yml b/Resources/Maps/gaxstation.yml new file mode 100644 index 0000000000..1e2d999ab2 --- /dev/null +++ b/Resources/Maps/gaxstation.yml @@ -0,0 +1,127301 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 10: FloorAsteroidSandUnvariantized + 11: FloorAsteroidTile + 6: FloorAstroGrass + 17: FloorBlueCircuit + 20: FloorCarpetClown + 25: FloorClown + 4: FloorDark + 34: FloorDarkMono + 1: FloorDarkPavementVertical + 38: FloorDarkPlastic + 40: FloorDirt + 44: FloorFreezer + 5: FloorGlass + 50: FloorGrassLight + 51: FloorGrayConcrete + 54: FloorGreenCircuit + 58: FloorHydro + 60: FloorKitchen + 62: FloorLino + 64: FloorMetalDiamond + 74: FloorPlanetGrass + 75: FloorPlastic + 77: FloorReinforced + 89: FloorSteel + 90: FloorSteelBurnt + 92: FloorSteelCheckerLight + 93: FloorSteelDamaged + 104: FloorTechMaint + 3: FloorTechMaint2 + 117: FloorWhitePlastic + 118: FloorWood + 119: FloorWoodTile + 120: Lattice + 121: Plating + 2: PlatingBurnt + 124: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: NTEB14 'GaxStation' TG-182 + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 2 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.52690125,-0.4910388 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAQAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAQAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAQAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAQAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: WQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAQAAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAQAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAQAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAQAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: JgAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: WQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAJgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAJgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAJgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAASgAAAAAASgAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAASgAAAAAASgAAAAAASgAAAAAAeQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAASgAAAAAASgAAAAAASgAAAAAAeQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: JgAAAAAAJgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAASgAAAAAASgAAAAAAeQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAASgAAAAAASgAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: WQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAASgAAAAAASgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAIgAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAIgAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAEQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAEQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAdQAAAAAAdQAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: WQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAFAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAeQAAAAAAGQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAeQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: WQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAJgAAAAAAEQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: WQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: WQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAASwAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAALAAAAAAALAAAAAAAeQAAAAAASwAAAAAASwAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAALAAAAAAALAAAAAAAeQAAAAAASwAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAeQAAAAAASwAAAAAASwAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA + version: 6 + 2,3: + ind: 2,3 + tiles: WQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -2,2: + ind: -2,2 + tiles: eQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAEQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAANgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAANgAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAEQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAEQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAATQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAATQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAA + version: 6 + -3,2: + ind: -3,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAEQAAAAAAJgAAAAAAEQAAAAAABAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAEQAAAAAAJgAAAAAAEQAAAAAAJgAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAEQAAAAAAJgAAAAAAEQAAAAAAJgAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAEQAAAAAAJgAAAAAAEQAAAAAAJgAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,1: + ind: -3,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -3,0: + ind: -3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAA + version: 6 + -2,3: + ind: -2,3 + tiles: AAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAASwAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAA + version: 6 + -1,4: + ind: -1,4 + tiles: eQAAAAAAIgAAAAAAIgAAAAAASwAAAAAASwAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAALAAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAMgAAAAAAMgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAMgAAAAAAMgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAMgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAMgAAAAAACgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAMgAAAAAAMgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAMgAAAAAAMgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA + version: 6 + -2,4: + ind: -2,4 + tiles: WQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABgAAAAAABgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAA + version: 6 + -3,3: + ind: -3,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAAA + version: 6 + -3,4: + ind: -3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAALAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAANgAAAAAANgAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAANgAAAAAANgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + 0,4: + ind: 0,4 + tiles: WQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAXAAAAAAAXAAAAAAAeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAXAAAAAAAXAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAXAAAAAAAXAAAAAAAeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAXAAAAAAAXAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAMgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAMgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAACgAAAAAACgAAAAAACgAAAAAAKAAAAAAACgAAAAAACgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAACgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACgAAAAAACgAAAAAAMgAAAAAAMgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACgAAAAAACgAAAAAAMgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAACgAAAAAACgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 1,4: + ind: 1,4 + tiles: JgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + 0,5: + ind: 0,5 + tiles: eAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAANgAAAAAAEQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAANgAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAANgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAANgAAAAAAeQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAANgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAANgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAANgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAANgAAAAAAeQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAANgAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: eQAAAAAATQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAdQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: dQAAAAAAdQAAAAAAeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: dQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAMgAAAAAAMgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAWQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 3,-1: + ind: 3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAdQAAAAAAdQAAAAAATQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAdQAAAAAAdQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA + version: 6 + 4,2: + ind: 4,2 + tiles: WQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAMgAAAAAAMgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAMgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAMgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAMgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 4,1: + ind: 4,1 + tiles: WQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAABQAAAAAABQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAALAAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAABQAAAAAABQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAALAAAAAAALAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAABQAAAAAABQAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAABQAAAAAABQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAdwAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAABQAAAAAABQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAABQAAAAAABQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAA + version: 6 + 4,0: + ind: 4,0 + tiles: WQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-1: + ind: 4,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-2: + ind: 3,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + 2,4: + ind: 2,4 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAaAAAAAAAfAAAAAAAfAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAgAAAAAAAgAAAAAAaAAAAAAAeQAAAAAAfAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,5: + ind: 2,5 + tiles: AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-2: + ind: -2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-2: + ind: -3,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA + version: 6 + 1,5: + ind: 1,5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,3: + ind: 3,3 + tiles: OgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAeQAAAAAA + version: 6 + 4,3: + ind: 4,3 + tiles: WQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAMgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 3,4: + ind: 3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,4: + ind: 4,4 + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,3: + ind: 5,3 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,2: + ind: 5,2 + tiles: JgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,1: + ind: 5,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,0: + ind: 5,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,5: + ind: -2,5 + tiles: eAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,5: + ind: -1,5 + tiles: eAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA + version: 6 + 5,-1: + ind: 5,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,5: + ind: -3,5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 4702: 34,0 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 4701: 33,-2 + - node: + angle: -3.141592653589793 rad + color: '#4B709CFF' + id: ArrowsGreyscale + decals: + 4863: -6,20 + 4864: -5,20 + - node: + angle: -1.5707963267948966 rad + color: '#4B709CFF' + id: ArrowsGreyscale + decals: + 4867: -4,21 + 4868: -3,21 + - node: + angle: -1.5707963267948966 rad + color: '#9C2020FF' + id: ArrowsGreyscale + decals: + 4865: -4,19 + 4866: -3,19 + - node: + color: '#9C2020FF' + id: ArrowsGreyscale + decals: + 4861: -6,20 + 4862: -5,20 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 0: -14,9 + 1649: -14,11 + 1650: -13,11 + 1651: -14,14 + 1652: -14,14 + 1653: -13,14 + 1654: -13,13 + 1655: -14,13 + 1656: -10,14 + 1657: -10,13 + 1658: -9,13 + 1659: -9,14 + 1691: -20,20 + 1692: -20,21 + 1693: -20,22 + 1694: -21,22 + 1695: -21,21 + 1696: -21,23 + 1697: -20,23 + 1698: -18,23 + 1699: -18,22 + 1700: -18,21 + 1701: -18,20 + 1704: -4,3 + 1705: -4,4 + 1706: -4,5 + 1707: 0,3 + 1708: 0,4 + 1709: 0,5 + 1710: 4,3 + 1711: 4,4 + 1712: 4,5 + 1750: -26,66 + 1751: -26,67 + 1752: -26,69 + 1753: -26,70 + 1754: -26,71 + 1755: -23,71 + 1926: 43,19 + 1927: 44,20 + 1928: 44,21 + 1934: 40,19 + 1935: 40,20 + 1938: 32,16 + 1939: 33,15 + 1940: 32,15 + 1941: 33,16 + 1942: 35,13 + 1943: 36,13 + 1944: 36,17 + 1945: 35,17 + 1946: 36,14 + 1947: 34,13 + 1948: 34,14 + 1949: 34,16 + 1950: 32,14 + 2003: 57,0 + 2004: 57,-3 + 2005: 57,3 + 2210: 21,66 + 2211: 21,65 + 2225: 39,54 + 2226: 40,54 + 2227: 41,54 + 2231: 42,51 + 2232: 42,52 + 2281: 73,59 + 2282: 74,59 + 2283: 73,59 + 2284: 74,59 + 2434: 72,37 + 2435: 72,38 + 2436: 72,39 + 2450: 74,42 + 2451: 74,45 + 2951: -20,67 + 2952: -20,68 + 3852: 51,-6 + 4181: 33,54 + 4182: 34,55 + 4183: 35,54 + 4184: 34,53 + 4247: -33,19 + 4256: -27,7 + 4257: -27,7 + 4303: -36,27 + 4309: -26,31 + 4310: -26,33 + 4311: -26,35 + 4312: -26,37 + 4313: -15,37 + 4698: 33,-6 + 4699: 33,0 + 4772: 27,3 + 4773: 24,2 + 4795: 35,-1 + 4796: 35,-2 + 4797: 37,-2 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Bot + decals: + 1724: -1,8 + 1725: 0,8 + 1726: 1,8 + 1727: -2,10 + 1728: -1,10 + 1729: 0,10 + 1730: 1,10 + 1731: 2,10 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 642: -21,46 + 643: -21,44 + 644: -20,45 + 645: -22,45 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 2957: -26,68 + 4177: 33,55 + 4178: 35,53 + 4346: -21,37 + 4347: -21,36 + 4348: -22,35 + 4349: -23,35 + 4350: -19,32 + 4351: -19,31 + 4774: 23,2 + - node: + color: '#FFFFFFFF' + id: BotLeftGreyscale + decals: + 638: -22,46 + 639: -20,44 + 640: -22,44 + 641: -20,46 + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 2953: -10,62 + 2954: -10,64 + 2958: -22,69 + 2959: -22,70 + 4179: 35,55 + 4180: 33,53 + 4248: -28,10 + 4344: -19,36 + 4345: -19,37 + 4352: -21,31 + 4353: -21,32 + 4354: -22,33 + 4355: -23,33 + 4775: 25,2 + - node: + color: '#9C2020FF' + id: Box + decals: + 4859: -6,19 + 4860: -5,19 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 1713: 0,3 + 1714: 0,4 + 1715: 0,5 + 1716: 4,3 + 1717: 4,4 + 1718: 4,5 + 1719: -4,5 + 1720: -4,4 + 1721: -4,3 + 1748: -21,63 + 1749: -21,64 + 2006: 45,-1 + 2007: 45,0 + 2008: 45,1 + 2433: 76,40 + 2446: 75,45 + 2447: 76,45 + 2448: 76,42 + 2449: 75,42 + 3853: 49,-7 + 4225: -34,17 + 4226: -32,17 + 4227: -30,18 + 4228: -31,19 + 4229: -32,20 + 4230: -34,21 + 4231: -27,19 + 4232: -27,19 + 4233: -25,19 + 4234: -26,18 + 4235: -27,16 + 4236: -27,16 + 4237: -28,16 + 4238: -29,16 + 4239: -31,13 + 4240: -34,13 + 4241: -34,9 + 4242: -32,7 + 4243: -29,10 + 4244: -28,7 + 4245: -26,10 + 4246: -26,14 + 4301: -34,26 + 4302: -35,27 + 4308: -28,28 + 4335: -21,35 + 4336: -20,35 + 4337: -19,35 + 4338: -19,33 + 4339: -20,33 + 4340: -21,33 + 4341: -22,34 + 4342: -20,36 + 4343: -20,32 + 4768: 27,1 + 4769: 27,2 + 4770: 28,3 + 4771: 28,3 + 4776: 25,1 + 4794: 34,1 + 4798: 36,-2 + 4799: 77,40 + 4800: 78,40 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Box + decals: + 1732: -1,8 + 1733: 0,8 + 1734: 1,8 + 1735: 1,10 + 1736: 2,10 + 1737: 0,10 + 1738: -1,10 + 1739: -2,10 + - node: + color: '#4B709CFF' + id: BoxGreyscale + decals: + 4857: -6,21 + 4858: -5,21 + - node: + color: '#FFFFFFFF' + id: BoxGreyscale + decals: + 646: -21,45 + 2955: -33,52 + 4327: -14,35 + 4328: -14,33 + 4329: -14,29 + 4330: -14,27 + - node: + color: '#DE3A3A96' + id: BrickCornerOverlayNE + decals: + 2946: -17,68 + - node: + color: '#DE3A3A96' + id: BrickCornerOverlaySE + decals: + 2947: -17,67 + - node: + color: '#DE3A3A96' + id: BrickCornerOverlaySW + decals: + 2948: -18,67 + - node: + color: '#52B4E996' + id: BrickLineOverlayN + decals: + 3736: 21,21 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 4766: 25,1 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 4764: 23,1 + 4765: 24,1 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 659: -1,71 + 678: 2,77 + 713: 9,79 + 4826: 70,29 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 660: 2,71 + 681: 7,77 + 4827: 69,29 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 657: -1,74 + 683: 9,78 + 684: 8,77 + 685: 7,75 + 686: 6,74 + 699: 11,71 + 703: 8,70 + 4833: 70,24 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 658: 2,74 + 4832: 69,24 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndN + decals: + 707: 2,77 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndW + decals: + 705: 1,70 + 706: 1,75 + 710: 7,79 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNe + decals: + 654: 4,75 + 672: -1,70 + 673: -2,71 + 679: 2,76 + 719: 5,71 + 4848: 69,24 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNw + decals: + 653: 6,75 + 666: 3,71 + 667: 2,70 + 680: 7,76 + 682: 8,77 + 709: 2,75 + 720: 11,71 + 4849: 70,24 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSe + decals: + 651: 4,77 + 668: -2,74 + 669: -1,75 + 688: 7,77 + 689: 8,78 + 693: 5,74 + 702: 8,71 + 774: 6,75 + 4847: 69,29 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSw + decals: + 652: 6,77 + 670: 2,75 + 671: 3,74 + 711: 8,79 + 4846: 70,29 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 647: 4,76 + 655: -2,72 + 656: -2,73 + 687: 7,76 + 691: 5,73 + 692: 5,72 + 4834: 70,25 + 4835: 70,26 + 4836: 70,27 + 4837: 70,28 + 4842: 69,28 + 4843: 69,27 + 4844: 69,26 + 4845: 69,25 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 648: 5,75 + 661: 0,70 + 675: 3,76 + 676: 4,76 + 677: 6,76 + 694: 6,71 + 695: 7,71 + 696: 8,71 + 697: 9,71 + 698: 10,71 + 712: 8,79 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 650: 5,77 + 662: 0,75 + 663: 1,75 + 700: 10,71 + 701: 9,71 + 704: 7,70 + 714: 2,70 + 715: 3,70 + 716: 4,70 + 717: 6,70 + 718: 5,70 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 649: 6,76 + 664: 3,72 + 665: 3,73 + 674: 1,75 + 690: 8,78 + 708: 2,76 + 4828: 69,28 + 4829: 69,27 + 4830: 69,26 + 4831: 69,25 + 4838: 70,27 + 4839: 70,28 + 4840: 70,26 + 4841: 70,25 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 886: -18,55 + 1339: -3,27 + 1399: 73,35 + 1457: 78,40 + 1480: 77,35 + 1508: 71,46 + 1517: 78,45 + 1524: 83,44 + 1531: 82,40 + 1560: 83,35 + 1616: 20,40 + 1632: 1,17 + 4683: 21,-17 + 4743: 28,3 + 4782: 36,1 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 227: 2,23 + 331: 8,45 + 342: 9,41 + 372: 18,45 + 446: 24,45 + 452: 28,45 + 454: 29,44 + 517: 23,28 + 530: 29,29 + 572: 29,36 + 1090: -4,60 + 4292: 5,35 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNe + decals: + 2587: 50,48 + 2662: 42,49 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerNe + decals: + 7: -9,14 + 35: -10,7 + 87: 12,13 + 90: 8,13 + 104: 4,17 + 124: 12,17 + 1567: 86,38 + 4162: -6,8 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNe + decals: + 1899: 40,13 + 2023: 48,31 + 2032: 50,27 + 2062: 50,11 + 2151: 60,22 + 2174: 59,17 + 3798: 54,-1 + 3802: 54,2 + 3812: 52,7 + 4714: 36,5 + - node: + color: '#D4D4D496' + id: BrickTileWhiteCornerNe + decals: + 2740: 72,21 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 868: -15,52 + 912: -27,55 + 987: -23,71 + 988: -22,70 + 998: -23,64 + 1002: -22,61 + 1035: -10,68 + 1042: -6,68 + 1067: -8,60 + 1101: 0,55 + 1569: 87,37 + 1679: -3,31 + 1980: 46,14 + 2410: 62,57 + 4271: -4,17 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNe + decals: + 1159: -25,13 + 1189: -31,21 + 1204: -22,19 + 1215: -15,20 + 1314: -3,36 + 1325: -8,25 + 1389: -31,28 + 1393: -34,30 + - node: + zIndex: 100 + color: '#FA750096' + id: BrickTileWhiteCornerNe + decals: + 2869: 14,26 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 897: -21,55 + 1411: 68,40 + 1451: 80,40 + 1476: 79,35 + 1481: 75,35 + 1507: 70,46 + 1522: 80,44 + 1617: 19,40 + 1621: 16,39 + 1635: -2,17 + 4662: 39,-16 + 4670: 32,-17 + 4742: 27,3 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 180: 7,35 + 188: 3,41 + 197: 4,45 + 274: 30,22 + 321: 10,45 + 357: 11,41 + 369: 15,45 + 412: 14,32 + 433: 21,35 + 440: 22,41 + 445: 23,45 + 449: 26,45 + 464: 25,41 + 512: 20,26 + 515: 21,28 + 526: 25,29 + 1088: -6,60 + 4294: 3,35 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNw + decals: + 2590: 46,48 + 2602: 44,45 + 2608: 43,40 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerNw + decals: + 2: -14,14 + 89: 10,13 + 95: 6,13 + 112: 6,17 + 146: -2,12 + 546: -16,9 + 1566: 84,38 + 4164: -8,8 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNw + decals: + 1886: 35,8 + 1892: 38,11 + 1995: 45,18 + 2012: 46,22 + 2021: 46,31 + 2050: 48,11 + 2056: 47,7 + 2073: 52,27 + 3783: 48,2 + 3787: 48,-1 + 4721: 30,5 + - node: + color: '#D4D4D496' + id: BrickTileWhiteCornerNw + decals: + 2535: 62,11 + 2542: 63,16 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 800: -17,49 + 851: -8,64 + 929: -30,55 + 947: -36,58 + 973: -26,64 + 984: -26,71 + 1030: -13,64 + 1039: -8,68 + 1064: -10,60 + 1986: 43,14 + 2423: 59,62 + 2757: 69,15 + 2945: -18,68 + 4260: 3,29 + 4274: -7,17 + 4875: -12,68 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNw + decals: + 585: -6,21 + 591: -2,23 + 1185: -34,21 + 1208: -20,19 + 1213: -17,20 + 1218: -13,20 + 1226: -11,25 + 1233: -12,29 + 1281: -12,37 + 1287: -12,41 + 1354: -7,36 + - node: + zIndex: 100 + angle: 3.141592653589793 rad + color: '#FA750096' + id: BrickTileWhiteCornerNw + decals: + 2841: 14,24 + - node: + zIndex: 100 + angle: 7.853981633974483 rad + color: '#FA750096' + id: BrickTileWhiteCornerNw + decals: + 2840: 15,28 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + decals: + 890: -18,51 + 1341: -3,25 + 1344: -4,23 + 1429: 68,42 + 1434: 71,42 + 1443: 78,42 + 1469: 78,37 + 1526: 83,42 + 1538: 82,29 + 1558: 83,33 + 1586: 77,33 + 1593: 73,33 + 1613: 20,37 + 1641: 1,14 + 4695: 21,-7 + 4811: 71,23 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 207: 2,45 + 260: 23,23 + 332: 8,43 + 375: 18,42 + 377: 17,41 + 396: 14,37 + 471: 24,43 + 490: 29,31 + 495: 23,30 + 505: 19,28 + 1579: 86,30 + 2272: 9,39 + 4300: 5,31 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerSe + decals: + 2586: 50,47 + 2616: 48,37 + 2661: 42,47 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerSe + decals: + 32: -10,4 + 48: -10,9 + 70: 4,3 + 84: 12,10 + 126: 12,15 + 560: 8,9 + 4171: -6,3 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSe + decals: + 1961: 41,15 + 2035: 50,24 + 2061: 50,9 + 2106: 56,24 + 2152: 60,20 + 2172: 59,15 + 3797: 54,-2 + 3801: 54,1 + 4715: 36,3 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 160: -4,13 + 165: 8,28 + 167: 7,26 + 869: -15,51 + 939: -32,55 + 993: -22,66 + 1003: -22,60 + 1044: -6,66 + 1051: -10,66 + 1069: -8,58 + 1102: 0,54 + 1677: -3,29 + 1982: 46,12 + 2409: 62,56 + 2751: 73,13 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSe + decals: + 1129: -8,19 + 1134: -12,18 + 1139: -15,18 + 1143: -18,17 + 1149: -22,17 + 1154: -25,17 + 1162: -25,10 + 1167: -27,7 + 1307: -3,38 + 1381: -31,23 + 1577: 87,31 + - node: + zIndex: 100 + angle: 3.141592653589793 rad + color: '#FA750096' + id: BrickTileWhiteCornerSe + decals: + 2843: 10,28 + 2844: 9,26 + - node: + zIndex: 100 + angle: 6.283185307179586 rad + color: '#FA750096' + id: BrickTileWhiteCornerSe + decals: + 2845: 10,23 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + decals: + 893: -21,51 + 1346: -6,23 + 1414: 68,37 + 1433: 70,42 + 1438: 73,42 + 1447: 80,42 + 1465: 74,37 + 1543: 80,29 + 1582: 79,33 + 1588: 75,33 + 1623: 16,37 + 1638: -2,14 + 4644: 32,-7 + 4652: 39,-8 + 4740: 27,1 + 4788: 35,-2 + 4808: 68,23 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 254: 25,23 + 263: 20,23 + 298: 30,46 + 353: 11,37 + 364: 10,43 + 380: 15,43 + 489: 25,31 + 497: 21,30 + 1581: 84,30 + 4298: 3,31 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerSw + decals: + 2594: 46,47 + 2611: 43,37 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerSw + decals: + 22: -16,5 + 31: -12,4 + 60: -4,3 + 111: 6,15 + 543: -14,11 + 559: 6,9 + 4169: -8,3 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSw + decals: + 1916: 38,15 + 1969: 48,13 + 2010: 46,20 + 2016: 46,24 + 2051: 48,9 + 2057: 47,6 + 2070: 52,24 + 3784: 48,1 + 3788: 48,-2 + - node: + color: '#D4D4D496' + id: BrickTileWhiteCornerSw + decals: + 2539: 63,13 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 161: -7,13 + 166: 6,26 + 849: -8,62 + 870: -16,51 + 918: -30,51 + 941: -34,55 + 944: -36,56 + 968: -26,60 + 979: -26,66 + 1047: -8,66 + 1071: -10,58 + 1674: -6,29 + 2406: 59,56 + 2427: 59,59 + 2755: 69,13 + 4262: 3,27 + 4877: -12,66 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSw + decals: + 619: -2,45 + 636: -17,47 + 1135: -13,18 + 1145: -20,17 + 1173: -34,7 + 1231: -12,27 + 1237: -12,31 + 1285: -12,39 + - node: + zIndex: 100 + angle: 3.141592653589793 rad + color: '#FA750096' + id: BrickTileWhiteCornerSw + decals: + 2842: 13,28 + - node: + color: '#334E6DC8' + id: BrickTileWhiteEndE + decals: + 4786: 37,-2 + - node: + color: '#D381C996' + id: BrickTileWhiteEndE + decals: + 3794: 54,-4 + 3803: 54,4 + - node: + color: '#334E6DC8' + id: BrickTileWhiteEndN + decals: + 4733: 31,2 + 4780: 35,2 + 4813: 71,25 + 4824: 68,29 + - node: + color: '#EFB34196' + id: BrickTileWhiteEndN + decals: + 1197: -25,20 + - node: + color: '#D381C996' + id: BrickTileWhiteEndS + decals: + 1906: 40,6 + - node: + color: '#52B4E996' + id: BrickTileWhiteEndW + decals: + 194: 3,43 + - node: + color: '#D381C996' + id: BrickTileWhiteEndW + decals: + 3780: 48,4 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNe + decals: + 404: 16,35 + 407: 18,35 + 900: -19,55 + 1334: -8,27 + 1402: 70,35 + 1420: 66,35 + 1455: 78,38 + 1479: 77,34 + 1487: 68,43 + 1495: 71,43 + 1504: 68,45 + 1509: 71,45 + 1519: 78,43 + 1530: 81,40 + 1534: 82,37 + 1555: 81,32 + 1562: 81,35 + 1591: 73,34 + 1631: 1,16 + 1999: 49,17 + 2002: 49,15 + 2218: 30,49 + 2224: 28,49 + 2777: 66,27 + 2783: 66,22 + 4682: 21,-18 + 4684: 20,-17 + 4745: 28,1 + 4781: 35,1 + 4785: 36,-2 + 4818: 68,23 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerNe + decals: + 226: 1,23 + 229: 2,21 + 245: 16,22 + 329: 6,45 + 337: 5,41 + 345: 8,35 + 366: 13,44 + 390: 13,41 + 400: 13,35 + 411: 19,33 + 427: 12,31 + 447: 24,44 + 453: 28,44 + 483: 23,33 + 509: 18,25 + 520: 23,25 + 533: 29,26 + 534: 26,21 + 566: 23,36 + 573: 29,35 + 1093: -4,57 + 2904: -38,37 + - node: + zIndex: 100 + color: '#52B4E996' + id: BrickTileWhiteInnerNe + decals: + 2877: 18,21 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerNe + decals: + 2565: 57,35 + 2573: 50,40 + 2582: 48,45 + 2639: 33,35 + 2643: 33,39 + 2648: 33,45 + 2666: 40,49 + 2670: 37,49 + 2674: 24,49 + 2689: 10,49 + 2693: 6,49 + 2697: 6,53 + - node: + zIndex: 100 + color: '#9FED5896' + id: BrickTileWhiteInnerNe + decals: + 2895: -32,37 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerNe + decals: + 10: -9,11 + 39: -14,7 + 42: -11,7 + 92: 8,12 + 105: 4,16 + 122: 11,17 + 148: -3,11 + 4161: -6,7 + 4484: 8,17 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerNe + decals: + 1898: 39,13 + 1920: 38,17 + 1991: 41,17 + 2024: 48,30 + 2030: 48,27 + 2039: 48,22 + 2045: 48,18 + 2063: 49,11 + 2099: 56,30 + 3796: 53,-4 + 3800: 53,-1 + 3804: 53,2 + 3808: 52,4 + 3811: 52,6 + 3815: 49,7 + 4711: 35,5 + - node: + color: '#D4D4D496' + id: BrickTileWhiteInnerNe + decals: + 2725: -2,64 + 2734: 66,21 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + decals: + 153: -7,11 + 154: -5,11 + 807: -12,49 + 855: -7,64 + 867: -16,52 + 911: -28,55 + 924: -32,52 + 925: -32,51 + 953: -33,58 + 960: -29,58 + 989: -23,70 + 997: -24,64 + 1001: -23,61 + 1007: -24,58 + 1015: -18,58 + 1021: -16,58 + 1034: -11,68 + 1037: -10,67 + 1041: -7,68 + 1055: -12,64 + 1060: -12,62 + 1062: -12,59 + 1077: -12,56 + 1095: -4,56 + 1100: -1,55 + 1568: 86,37 + 1573: 87,34 + 1669: -8,30 + 1671: -8,29 + 1682: -6,31 + 1978: 44,14 + 2412: 60,57 + 2420: 60,60 + 2747: 71,15 + 2770: 67,11 + 2926: -36,37 + 3753: 70,39 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerNe + decals: + 1160: -26,13 + 1188: -32,21 + 1191: -31,19 + 1200: -25,18 + 1205: -22,18 + 1210: -19,19 + 1216: -15,19 + 1291: -11,41 + 1312: -5,36 + 1317: -3,33 + 1324: -10,25 + 1330: -8,20 + 1369: -9,31 + 1388: -31,27 + 1391: -34,28 + 2933: -34,37 + 4197: 33,49 + - node: + zIndex: 100 + color: '#FA750096' + id: BrickTileWhiteInnerNe + decals: + 2868: 13,26 + 2872: 12,22 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNw + decals: + 406: 18,35 + 408: 19,35 + 899: -19,55 + 1417: 69,35 + 1450: 81,40 + 1453: 80,38 + 1475: 80,35 + 1477: 79,34 + 1484: 75,34 + 1493: 70,43 + 1494: 73,43 + 1506: 70,45 + 1521: 80,43 + 1535: 84,37 + 1545: 80,30 + 1553: 84,32 + 1618: 19,39 + 1629: 3,16 + 1647: 3,14 + 2221: 30,49 + 2944: 32,49 + 4661: 40,-16 + 4663: 39,-17 + 4671: 32,-18 + 4748: 31,1 + 4793: 35,1 + 4802: 68,27 + 4815: 71,23 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerNw + decals: + 181: 8,35 + 190: 5,41 + 195: 4,43 + 199: 6,45 + 237: 12,21 + 239: 16,22 + 251: 26,21 + 273: 30,21 + 275: 31,22 + 320: 11,45 + 350: 13,35 + 359: 13,41 + 368: 15,44 + 385: 16,41 + 403: 16,35 + 416: 18,32 + 429: 14,31 + 431: 21,33 + 434: 22,35 + 441: 23,41 + 450: 26,44 + 465: 26,41 + 484: 25,33 + 511: 20,25 + 513: 21,26 + 522: 25,25 + 575: 31,35 + 1084: -6,57 + 2901: -36,37 + - node: + zIndex: 100 + color: '#52B4E996' + id: BrickTileWhiteInnerNw + decals: + 2878: 18,22 + - node: + color: '#5E7C16A1' + id: BrickTileWhiteInnerNw + decals: + 536: 16,23 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerNw + decals: + 2558: 64,35 + 2567: 50,35 + 2598: 48,45 + 2607: 44,40 + 2667: 40,49 + 2672: 27,49 + 2675: 23,49 + 2690: 9,49 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerNw + decals: + 12: -7,11 + 16: -12,9 + 41: -11,7 + 93: 10,12 + 97: 6,11 + 99: 3,12 + 109: 6,16 + 117: 10,17 + 133: 7,17 + 147: -2,11 + 1702: -4,7 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerNw + decals: + 1889: 38,8 + 1893: 39,11 + 1918: 38,16 + 1925: 41,17 + 1994: 45,17 + 1997: 47,18 + 2013: 47,22 + 2046: 49,18 + 2049: 49,11 + 2054: 49,7 + 2075: 54,27 + 2081: 54,30 + 2122: 64,30 + 3779: 49,4 + 3781: 49,2 + 3785: 49,-1 + 4725: 35,5 + - node: + color: '#D4D4D496' + id: BrickTileWhiteInnerNw + decals: + 2537: 64,11 + 2543: 64,16 + 2715: 4,67 + 2719: 4,64 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNw + decals: + 152: -3,11 + 155: -5,11 + 175: 8,29 + 799: -17,48 + 804: -13,49 + 823: 4,49 + 833: 4,58 + 852: -7,64 + 922: -30,52 + 931: -28,55 + 946: -36,57 + 950: -33,58 + 957: -29,58 + 965: -24,58 + 975: -24,64 + 1013: -18,58 + 1018: -16,58 + 1024: -13,58 + 1031: -12,64 + 1033: -11,68 + 1038: -8,67 + 1040: -7,68 + 1065: -10,59 + 1083: -6,56 + 1098: -1,56 + 1409: 71,39 + 1687: -6,30 + 1987: 44,14 + 2414: 60,57 + 2424: 60,62 + 2726: -2,64 + 2759: 71,15 + 2773: 70,11 + 2924: -34,37 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerNw + decals: + 584: -6,20 + 589: -2,21 + 592: -1,23 + 605: -1,33 + 616: -1,43 + 1187: -32,21 + 1198: -25,19 + 1202: -23,18 + 1207: -20,18 + 1209: -19,19 + 1212: -17,19 + 1219: -13,19 + 1221: -11,20 + 1227: -10,25 + 1234: -11,29 + 1280: -12,36 + 1282: -11,37 + 1288: -11,41 + 1356: -5,36 + 2932: -32,37 + 4195: 35,49 + 4196: 37,49 + 4265: -6,19 + - node: + zIndex: 100 + color: '#FA750096' + id: BrickTileWhiteInnerNw + decals: + 2864: 16,25 + 2871: 14,22 + 2887: 9,24 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSe + decals: + 880: -21,57 + 883: -19,57 + 1333: -9,27 + 1342: -4,25 + 1405: 70,38 + 1427: 66,42 + 1430: 68,43 + 1435: 71,43 + 1444: 78,43 + 1470: 78,38 + 1489: 68,45 + 1498: 71,45 + 1528: 81,42 + 1537: 82,31 + 1539: 81,29 + 1556: 81,33 + 1563: 81,36 + 1585: 77,34 + 1592: 73,34 + 1600: 66,33 + 1611: 18,37 + 1643: 1,16 + 1661: -8,29 + 2000: 49,17 + 2240: 41,33 + 2243: 39,33 + 2778: 66,27 + 2913: -38,36 + 4694: 20,-7 + 4696: 21,-6 + 4732: 30,3 + 4791: 34,0 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSe + decals: + 205: 2,47 + 208: 1,45 + 258: 23,25 + 267: 18,25 + 316: 13,47 + 328: 6,47 + 336: 5,43 + 376: 17,42 + 391: 13,44 + 393: 14,41 + 399: 13,37 + 424: 12,34 + 470: 24,44 + 472: 23,43 + 479: 29,33 + 485: 23,32 + 501: 19,32 + 506: 18,28 + 579: 23,36 + 2271: 8,39 + - node: + zIndex: 100 + color: '#52B4E996' + id: BrickTileWhiteInnerSe + decals: + 2879: 16,24 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerSe + decals: + 2566: 57,36 + 2579: 50,45 + 2584: 48,47 + 2620: 48,42 + 2642: 33,38 + 2647: 33,43 + 2650: 33,47 + 2655: 37,47 + 2660: 41,47 + 2696: 6,52 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerSe + decals: + 23: -15,5 + 40: -14,9 + 45: -11,9 + 49: -10,10 + 64: 1,3 + 65: -1,3 + 77: 4,10 + 80: 8,10 + 106: 4,16 + 118: 8,19 + 121: 11,19 + 2938: -34,36 + 4174: -6,6 + 4268: -6,19 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSe + decals: + 1913: 35,8 + 1960: 39,15 + 1962: 41,16 + 1964: 46,16 + 2027: 48,30 + 2037: 48,24 + 2040: 48,22 + 2060: 49,9 + 2067: 49,15 + 2095: 43,33 + 2096: 56,33 + 2100: 56,30 + 2109: 53,24 + 2153: 59,20 + 2250: 33,33 + 3790: 49,-4 + 3793: 52,-4 + 3795: 53,-4 + 3799: 53,-2 + 3805: 53,1 + 3806: 53,4 + 3810: 52,6 + 4718: 32,3 + - node: + zIndex: 100 + color: '#D381C996' + id: BrickTileWhiteInnerSe + decals: + 2936: -36,36 + - node: + color: '#D4D4D496' + id: BrickTileWhiteInnerSe + decals: + 2713: 6,67 + - node: + zIndex: 100 + color: '#D4D4D496' + id: BrickTileWhiteInnerSe + decals: + 2902: -32,36 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe + decals: + 159: -5,13 + 172: 7,28 + 537: 8,31 + 540: 7,31 + 865: -16,54 + 877: -17,57 + 904: -24,57 + 909: -28,57 + 923: -32,52 + 926: -32,53 + 937: -32,57 + 952: -33,59 + 959: -29,59 + 995: -24,66 + 1005: -24,60 + 1016: -18,59 + 1019: -16,59 + 1045: -7,66 + 1046: -7,66 + 1052: -10,67 + 1058: -12,62 + 1059: -12,64 + 1074: -12,59 + 1094: -4,57 + 1103: -1,54 + 1104: -5,54 + 1105: -9,54 + 1123: -12,54 + 1664: -7,33 + 1670: -8,31 + 1672: -8,30 + 1684: -6,33 + 1970: 42,16 + 1974: 44,16 + 2417: 60,60 + 2745: 71,17 + 2765: 67,17 + 4870: 43,12 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerSe + decals: + 1128: -8,20 + 1133: -12,19 + 1138: -15,19 + 1142: -18,18 + 1148: -22,18 + 1153: -25,18 + 1155: -26,17 + 1164: -27,10 + 1269: -15,42 + 1290: -11,42 + 1310: -5,38 + 1321: -10,27 + 1362: -9,38 + 1380: -32,23 + 1385: -31,27 + 1574: 87,34 + 1578: 86,31 + 1663: -5,33 + 3859: -37,25 + 3860: -37,25 + - node: + zIndex: 100 + angle: 29.845130209103036 rad + color: '#FA750096' + id: BrickTileWhiteInnerSe + decals: + 2854: 12,30 + - node: + zIndex: 100 + angle: 31.41592653589793 rad + color: '#FA750096' + id: BrickTileWhiteInnerSe + decals: + 2855: 12,30 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSw + decals: + 879: -17,57 + 882: -19,57 + 1350: -6,27 + 1406: 71,38 + 1415: 69,37 + 1432: 70,43 + 1437: 73,43 + 1446: 80,43 + 1448: 81,42 + 1463: 74,40 + 1464: 74,40 + 1472: 80,38 + 1491: 70,45 + 1496: 73,45 + 1497: 73,45 + 1536: 84,31 + 1542: 81,29 + 1544: 80,30 + 1548: 80,33 + 1549: 84,36 + 1583: 79,34 + 1589: 75,34 + 1625: 18,37 + 1628: 3,17 + 1646: 3,16 + 1864: 32,3 + 2239: 43,33 + 2241: 41,33 + 2912: -36,36 + 4643: 32,-6 + 4651: 39,-7 + 4653: 40,-8 + 4739: 28,1 + 4779: 23,1 + 4790: 35,0 + 4805: 68,27 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSw + decals: + 192: 5,43 + 201: 6,47 + 244: 18,24 + 253: 26,23 + 256: 25,25 + 265: 20,25 + 286: 31,33 + 297: 31,46 + 299: 30,47 + 323: 11,47 + 351: 13,37 + 361: 13,43 + 386: 16,43 + 387: 15,44 + 418: 18,34 + 468: 26,44 + 486: 25,32 + 499: 21,32 + 577: 25,36 + 2268: 8,37 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerSw + decals: + 2596: 48,47 + 2622: 50,42 + 2654: 37,47 + 2659: 41,47 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerSw + decals: + 15: -12,11 + 17: -12,9 + 24: -15,5 + 29: -12,5 + 46: -11,9 + 55: -4,10 + 63: -1,3 + 66: 1,3 + 79: 6,10 + 110: 6,16 + 119: 10,19 + 1127: 13,19 + 1648: 3,14 + 1703: -4,6 + 2937: -32,36 + 4485: 7,19 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSw + decals: + 1908: 40,8 + 1915: 39,15 + 1917: 38,16 + 1963: 42,16 + 1966: 48,16 + 2009: 47,20 + 2015: 47,24 + 2047: 49,13 + 2052: 49,9 + 2069: 53,24 + 2080: 54,30 + 2084: 54,33 + 2119: 64,33 + 2123: 64,30 + 2160: 55,21 + 2245: 39,33 + 3777: 49,6 + 3782: 49,4 + 3786: 49,1 + 3789: 49,-2 + 3791: 50,-4 + 3792: 53,-4 + - node: + zIndex: 100 + color: '#D381C996' + id: BrickTileWhiteInnerSw + decals: + 2935: -34,36 + - node: + color: '#D4D4D496' + id: BrickTileWhiteInnerSw + decals: + 2538: 64,13 + 2716: 4,67 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSw + decals: + 158: -5,13 + 171: 6,27 + 539: 10,31 + 541: 8,31 + 832: 4,58 + 837: 4,62 + 862: -13,54 + 876: -16,57 + 901: -21,57 + 905: -24,57 + 917: -29,51 + 919: -30,52 + 933: -28,57 + 942: -34,56 + 945: -36,57 + 951: -33,59 + 958: -29,59 + 967: -24,60 + 977: -24,66 + 1014: -18,59 + 1020: -16,59 + 1048: -7,66 + 1049: -8,67 + 1072: -10,59 + 1085: -6,57 + 1108: -1,54 + 1109: -5,54 + 1110: -9,54 + 1665: -6,33 + 1685: -5,33 + 1686: -6,30 + 1972: 44,16 + 1977: 46,16 + 2428: 60,59 + 2761: 71,17 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerSw + decals: + 581: -6,20 + 602: -1,33 + 615: -1,43 + 618: -1,45 + 621: -2,47 + 637: -17,48 + 1136: -13,19 + 1146: -20,18 + 1151: -23,18 + 1229: -10,27 + 1236: -11,31 + 1241: -12,36 + 1268: -15,42 + 1284: -11,39 + 1289: -11,42 + 1320: -9,27 + 1358: -5,38 + 1377: -32,23 + - node: + zIndex: 100 + color: '#FA750096' + id: BrickTileWhiteInnerSw + decals: + 2859: 15,30 + 2865: 16,28 + 2866: 16,25 + - node: + zIndex: 100 + angle: 14.137166941154069 rad + color: '#FA750096' + id: BrickTileWhiteInnerSw + decals: + 2853: 10,24 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 884: -19,56 + 887: -18,54 + 888: -18,53 + 889: -18,52 + 1331: -8,28 + 1340: -3,26 + 1343: -4,24 + 1403: 70,36 + 1404: 70,37 + 1421: 66,36 + 1422: 66,37 + 1423: 66,38 + 1424: 66,39 + 1425: 66,40 + 1426: 66,41 + 1456: 78,39 + 1488: 68,44 + 1500: 71,44 + 1503: 68,46 + 1518: 78,44 + 1525: 83,43 + 1529: 81,41 + 1532: 82,39 + 1533: 82,38 + 1540: 81,28 + 1559: 83,34 + 1601: 66,32 + 1602: 66,31 + 1610: 18,36 + 1614: 20,38 + 1615: 20,39 + 1642: 1,15 + 1998: 49,18 + 2001: 49,16 + 2219: 30,50 + 2220: 30,51 + 2774: 66,30 + 2775: 66,29 + 2776: 66,28 + 2779: 66,26 + 2780: 66,24 + 2781: 66,25 + 2782: 66,23 + 2916: -38,35 + 2917: -38,34 + 4685: 20,-16 + 4686: 20,-15 + 4687: 20,-14 + 4688: 20,-13 + 4689: 20,-12 + 4690: 20,-11 + 4691: 20,-10 + 4692: 20,-9 + 4693: 20,-8 + 4734: 31,1 + 4735: 31,0 + 4744: 28,2 + 4783: 36,0 + 4784: 36,-1 + 4812: 71,24 + 4819: 68,24 + 4820: 68,25 + 4821: 68,27 + 4822: 68,26 + 4823: 68,28 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 206: 2,46 + 209: 1,44 + 210: 1,42 + 211: 1,43 + 212: 1,41 + 213: 1,40 + 214: 1,39 + 215: 1,38 + 216: 1,36 + 217: 1,37 + 218: 1,32 + 219: 1,31 + 220: 1,30 + 221: 1,29 + 222: 1,28 + 223: 1,27 + 224: 1,26 + 225: 1,24 + 228: 2,22 + 241: 16,23 + 246: 18,23 + 259: 23,24 + 268: 18,24 + 317: 13,46 + 318: 13,45 + 327: 6,46 + 333: 8,44 + 338: 5,42 + 343: 9,40 + 344: 8,36 + 373: 18,44 + 374: 18,43 + 388: 13,43 + 389: 13,42 + 392: 14,40 + 394: 14,39 + 395: 14,38 + 398: 13,36 + 409: 19,35 + 410: 19,34 + 425: 12,33 + 426: 12,32 + 455: 29,43 + 456: 29,42 + 457: 29,41 + 458: 29,40 + 459: 29,39 + 460: 29,38 + 473: 23,42 + 474: 23,41 + 475: 23,40 + 476: 23,39 + 477: 23,38 + 478: 23,37 + 480: 23,34 + 488: 23,31 + 494: 29,32 + 502: 19,31 + 503: 19,30 + 504: 19,29 + 507: 18,27 + 508: 18,26 + 518: 23,27 + 519: 23,26 + 531: 29,28 + 532: 29,27 + 535: 26,22 + 565: 23,35 + 1091: -4,59 + 1092: -4,58 + 2269: 8,37 + 2270: 8,38 + 2899: -38,39 + 2900: -38,38 + 4286: 1,35 + 4287: 1,34 + 4288: 1,33 + 4289: 5,32 + 4290: 5,33 + 4291: 5,34 + - node: + zIndex: 100 + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 2876: 18,22 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineE + decals: + 2575: 50,41 + 2576: 50,42 + 2577: 50,43 + 2578: 50,44 + 2583: 48,46 + 2617: 48,39 + 2618: 48,40 + 2619: 48,41 + 2640: 33,36 + 2641: 33,37 + 2644: 33,40 + 2645: 33,41 + 2646: 33,42 + 2649: 33,46 + 2694: 6,50 + 2695: 6,51 + 2698: 6,54 + 2699: 6,55 + 2700: 6,56 + 2701: 6,57 + 2702: 6,59 + 2703: 6,58 + 2704: 6,60 + 2705: 6,61 + 2706: 6,62 + 2707: 6,63 + - node: + zIndex: 100 + color: '#9FED5896' + id: BrickTileWhiteLineE + decals: + 2892: -32,39 + 2893: -32,38 + - node: + color: '#A4610696' + id: BrickTileWhiteLineE + decals: + 8: -9,13 + 9: -9,12 + 25: -15,4 + 33: -10,5 + 34: -10,6 + 38: -14,8 + 43: -11,8 + 71: 4,4 + 72: 4,5 + 73: 4,6 + 74: 4,7 + 75: 4,9 + 76: 4,8 + 85: 12,11 + 86: 12,12 + 100: 4,12 + 101: 4,13 + 102: 4,14 + 103: 4,15 + 114: 8,18 + 120: 11,18 + 125: 12,16 + 2943: -34,34 + 4172: -6,4 + 4173: -6,5 + - node: + zIndex: 100 + color: '#A4610696' + id: BrickTileWhiteLineE + decals: + 2929: -34,35 + - node: + color: '#D381C996' + id: BrickTileWhiteLineE + decals: + 1897: 39,14 + 1900: 40,12 + 1901: 40,11 + 1902: 40,10 + 1903: 40,9 + 1904: 40,8 + 1905: 40,7 + 1914: 35,7 + 1989: 41,18 + 2028: 48,29 + 2029: 48,28 + 2033: 50,26 + 2034: 50,25 + 2038: 48,23 + 2041: 48,21 + 2042: 48,20 + 2043: 48,19 + 2059: 49,8 + 2064: 49,12 + 2065: 49,13 + 2066: 49,14 + 2097: 56,32 + 2098: 56,31 + 2101: 56,29 + 2102: 56,28 + 2103: 56,27 + 2104: 56,26 + 2105: 56,25 + 2110: 53,23 + 2173: 59,16 + 2251: 33,32 + 2252: 33,30 + 2253: 33,31 + 2254: 33,29 + 2255: 33,28 + 2256: 33,27 + 2257: 33,26 + 2258: 33,25 + 2259: 33,24 + 2260: 33,23 + 2261: 33,22 + 2262: 33,21 + 3809: 52,5 + 4713: 35,6 + - node: + zIndex: 100 + color: '#D381C996' + id: BrickTileWhiteLineE + decals: + 2922: -36,35 + 2923: -36,34 + - node: + color: '#D4D4D496' + id: BrickTileWhiteLineE + decals: + 2710: 6,65 + 2712: 6,66 + 2741: 72,20 + 2742: 72,19 + - node: + zIndex: 100 + color: '#D4D4D496' + id: BrickTileWhiteLineE + decals: + 2896: -32,35 + 2897: -32,34 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 156: -5,12 + 162: -4,14 + 170: 7,27 + 173: 8,29 + 174: 8,30 + 806: -12,50 + 854: -7,65 + 866: -16,53 + 910: -28,56 + 913: -27,54 + 914: -27,53 + 915: -27,52 + 916: -27,51 + 938: -32,56 + 990: -22,69 + 991: -22,68 + 992: -22,67 + 996: -24,65 + 999: -23,63 + 1000: -23,62 + 1006: -24,59 + 1043: -6,67 + 1054: -12,65 + 1056: -12,63 + 1057: -12,61 + 1061: -12,60 + 1068: -8,59 + 1075: -12,58 + 1076: -12,57 + 1099: -1,56 + 1106: -1,53 + 1113: -9,53 + 1114: -5,53 + 1124: -12,53 + 1125: -12,52 + 1126: -12,51 + 1570: 87,36 + 1571: 87,35 + 1572: 87,35 + 1678: -3,30 + 1683: -6,32 + 1975: 44,15 + 1981: 46,13 + 2415: 60,58 + 2416: 60,59 + 2421: 60,61 + 2422: 60,62 + 2746: 71,16 + 2750: 73,14 + 2766: 67,16 + 2767: 67,15 + 2768: 67,14 + 2769: 67,13 + 2920: -36,38 + 2921: -36,39 + 3752: 70,40 + 4269: -4,15 + 4270: -4,16 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 1156: -26,16 + 1157: -26,15 + 1158: -26,14 + 1161: -25,12 + 1165: -27,9 + 1166: -27,8 + 1190: -31,20 + 1199: -25,19 + 1311: -5,37 + 1315: -3,35 + 1316: -3,34 + 1322: -10,26 + 1326: -8,24 + 1327: -8,23 + 1328: -8,22 + 1329: -8,21 + 1363: -9,37 + 1364: -9,35 + 1365: -9,36 + 1366: -9,34 + 1367: -9,33 + 1368: -9,32 + 1379: -32,22 + 1382: -31,24 + 1383: -31,25 + 1384: -31,26 + 1392: -34,29 + 1575: 87,33 + 1576: 87,32 + 2930: -34,39 + 2931: -34,38 + 4188: 35,51 + 4189: 35,50 + 4190: 35,52 + - node: + zIndex: 100 + color: '#FA750096' + id: BrickTileWhiteLineE + decals: + 2867: 13,27 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 405: 17,35 + 898: -20,55 + 1335: -7,27 + 1336: -6,27 + 1337: -5,27 + 1338: -4,27 + 1400: 71,35 + 1401: 72,35 + 1410: 69,40 + 1418: 68,35 + 1419: 67,35 + 1454: 79,38 + 1458: 77,40 + 1459: 75,40 + 1460: 74,40 + 1478: 78,34 + 1482: 76,35 + 1483: 74,34 + 1485: 69,43 + 1486: 69,43 + 1499: 72,43 + 1505: 69,45 + 1510: 72,45 + 1511: 72,45 + 1512: 73,45 + 1513: 74,45 + 1514: 75,45 + 1515: 76,45 + 1516: 77,45 + 1520: 79,43 + 1523: 82,44 + 1554: 82,32 + 1561: 82,35 + 1619: 18,39 + 1620: 17,39 + 1630: 2,16 + 1633: 0,17 + 1634: -1,17 + 2216: 29,49 + 2217: 31,49 + 2432: 76,40 + 4664: 38,-17 + 4665: 37,-17 + 4666: 36,-17 + 4667: 35,-17 + 4668: 34,-17 + 4669: 33,-17 + 4672: 31,-18 + 4673: 30,-18 + 4674: 29,-18 + 4675: 28,-18 + 4676: 27,-18 + 4677: 26,-18 + 4678: 25,-18 + 4679: 24,-18 + 4680: 23,-18 + 4681: 22,-18 + 4746: 29,1 + 4747: 30,1 + 4792: 34,1 + 4803: 67,27 + 4816: 70,23 + 4817: 69,23 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 189: 4,41 + 198: 5,45 + 230: 3,21 + 231: 5,21 + 232: 6,21 + 233: 7,21 + 234: 8,21 + 235: 9,21 + 236: 11,21 + 238: 15,22 + 240: 17,22 + 247: 20,21 + 248: 22,21 + 249: 23,21 + 250: 24,21 + 269: 25,21 + 270: 27,21 + 271: 28,21 + 272: 29,21 + 330: 7,45 + 339: 6,41 + 340: 7,41 + 341: 8,41 + 346: 10,35 + 347: 9,35 + 348: 11,35 + 349: 12,35 + 358: 12,41 + 367: 14,44 + 370: 16,45 + 371: 17,45 + 382: 14,41 + 383: 15,41 + 401: 14,35 + 402: 15,35 + 413: 15,32 + 414: 16,32 + 415: 17,32 + 428: 13,31 + 430: 20,33 + 448: 25,44 + 451: 27,45 + 481: 24,33 + 510: 19,25 + 516: 22,28 + 521: 24,25 + 527: 26,29 + 528: 27,29 + 529: 28,29 + 567: 24,36 + 568: 25,36 + 569: 26,36 + 570: 27,36 + 571: 28,36 + 574: 30,35 + 1089: -5,60 + 2903: -37,37 + 4293: 4,35 + 4703: 4,21 + - node: + zIndex: 100 + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 2874: 10,21 + 2875: 19,21 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 2559: 63,35 + 2560: 62,35 + 2561: 61,35 + 2562: 59,35 + 2563: 60,35 + 2564: 58,35 + 2574: 49,35 + 2580: 50,45 + 2581: 49,45 + 2588: 49,48 + 2589: 48,48 + 2599: 47,45 + 2600: 46,45 + 2601: 45,45 + 2624: 48,35 + 2625: 47,35 + 2626: 46,35 + 2627: 45,35 + 2628: 44,35 + 2629: 43,35 + 2630: 42,35 + 2631: 41,35 + 2632: 40,35 + 2633: 39,35 + 2634: 38,35 + 2635: 37,35 + 2636: 35,35 + 2637: 36,35 + 2638: 34,35 + 2665: 41,49 + 2668: 39,49 + 2669: 38,49 + 2671: 26,49 + 2673: 25,49 + 2676: 22,49 + 2677: 21,49 + 2678: 21,49 + 2679: 20,49 + 2680: 19,49 + 2681: 18,49 + 2682: 17,49 + 2683: 16,49 + 2684: 15,49 + 2685: 14,49 + 2686: 13,49 + 2687: 12,49 + 2688: 11,49 + 2691: 8,49 + 2692: 7,49 + - node: + zIndex: 100 + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 2894: -31,37 + - node: + color: '#A4610696' + id: BrickTileWhiteLineN + decals: + 3: -13,14 + 4: -12,14 + 5: -11,14 + 6: -10,14 + 11: -8,11 + 18: -13,9 + 20: -14,9 + 36: -13,7 + 37: -12,7 + 88: 11,13 + 91: 9,12 + 94: 7,13 + 98: 5,11 + 107: 5,16 + 113: 9,17 + 142: -1,12 + 143: 0,12 + 144: 1,12 + 145: 2,12 + 545: -15,9 + 1565: 85,38 + 1627: 3,17 + 4163: -7,8 + 4176: -5,7 + - node: + color: '#D381C996' + id: BrickTileWhiteLineN + decals: + 1887: 36,8 + 1888: 37,8 + 1921: 39,17 + 1924: 40,17 + 1988: 42,17 + 1992: 43,17 + 1993: 44,17 + 1996: 46,18 + 2022: 47,31 + 2025: 49,30 + 2031: 49,27 + 2055: 48,7 + 2074: 53,27 + 2079: 53,30 + 2148: 57,22 + 2149: 58,22 + 2150: 59,22 + 2162: 54,21 + 3807: 53,4 + 3813: 51,7 + 3814: 50,7 + 4722: 32,5 + 4723: 33,5 + 4724: 34,5 + - node: + color: '#D4D4D496' + id: BrickTileWhiteLineN + decals: + 2536: 63,11 + 2720: 3,64 + 2721: 2,64 + 2722: 1,64 + 2723: 0,64 + 2724: -1,64 + 2735: 67,21 + 2736: 68,21 + 2737: 70,21 + 2738: 69,21 + 2739: 71,21 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 150: -6,11 + 151: -4,11 + 168: 6,29 + 169: 7,29 + 801: -16,49 + 802: -15,49 + 803: -14,49 + 808: -11,49 + 809: -10,49 + 810: -9,49 + 811: -8,49 + 812: -7,49 + 813: -6,49 + 814: -5,49 + 815: -4,49 + 816: -3,49 + 817: -2,49 + 818: -1,49 + 819: 0,49 + 820: 1,49 + 821: 2,49 + 822: 3,49 + 856: -6,64 + 857: -5,64 + 858: -3,64 + 921: -31,52 + 930: -29,55 + 948: -35,58 + 949: -34,58 + 954: -32,58 + 955: -31,58 + 956: -30,58 + 961: -28,58 + 962: -27,58 + 963: -26,58 + 964: -25,58 + 974: -25,64 + 985: -25,71 + 986: -24,71 + 1008: -22,58 + 1009: -23,58 + 1010: -21,58 + 1011: -20,58 + 1012: -19,58 + 1017: -17,58 + 1022: -15,58 + 1023: -14,58 + 1036: -9,67 + 1063: -11,59 + 1066: -9,60 + 1078: -11,56 + 1079: -10,56 + 1080: -9,56 + 1081: -8,56 + 1082: -7,56 + 1096: -3,56 + 1097: -2,56 + 1668: -7,30 + 1680: -4,31 + 1681: -5,31 + 1979: 45,14 + 2411: 61,57 + 2413: 59,57 + 2419: 61,60 + 2748: 72,15 + 2749: 73,15 + 2758: 70,15 + 2771: 68,11 + 2772: 69,11 + 2927: -35,37 + 4258: 4,29 + 4259: 5,29 + 4272: -6,17 + 4273: -5,17 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineN + decals: + 583: -7,20 + 586: -5,21 + 587: -4,21 + 588: -3,21 + 604: -2,33 + 1186: -33,21 + 1192: -30,19 + 1193: -29,19 + 1194: -28,19 + 1195: -27,19 + 1196: -26,19 + 1201: -24,18 + 1206: -21,18 + 1211: -18,19 + 1214: -16,20 + 1217: -14,19 + 1220: -12,20 + 1279: -13,36 + 1301: -7,40 + 1302: -6,40 + 1303: -5,40 + 1304: -4,40 + 1313: -4,36 + 1323: -9,25 + 1355: -6,36 + 1387: -30,27 + 1390: -33,28 + 1660: -8,31 + 2934: -33,37 + 4186: 36,49 + 4187: 34,49 + - node: + zIndex: 100 + color: '#FA750096' + id: BrickTileWhiteLineN + decals: + 2870: 13,22 + 2882: 8,24 + 2883: 7,24 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 878: -18,57 + 881: -20,57 + 891: -19,51 + 892: -20,51 + 1332: -8,27 + 1345: -5,23 + 1351: -7,27 + 1428: 67,42 + 1431: 69,43 + 1436: 72,43 + 1439: 74,42 + 1440: 75,42 + 1441: 76,42 + 1442: 77,42 + 1445: 79,43 + 1466: 75,37 + 1467: 76,37 + 1468: 77,37 + 1471: 79,38 + 1490: 69,45 + 1501: 72,45 + 1527: 82,42 + 1557: 82,33 + 1564: 82,36 + 1584: 78,34 + 1587: 76,33 + 1590: 74,34 + 1594: 72,33 + 1595: 71,33 + 1596: 70,33 + 1597: 69,33 + 1598: 68,33 + 1599: 67,33 + 1612: 19,37 + 1624: 17,37 + 1639: -1,14 + 1640: 0,14 + 1644: 2,16 + 1863: 31,3 + 2238: 42,33 + 2242: 40,33 + 2915: -37,36 + 4633: 23,-6 + 4634: 24,-6 + 4635: 25,-6 + 4637: 26,-6 + 4638: 27,-6 + 4639: 28,-6 + 4640: 29,-6 + 4641: 30,-6 + 4642: 31,-6 + 4645: 33,-7 + 4646: 34,-7 + 4647: 35,-7 + 4648: 36,-7 + 4649: 37,-7 + 4650: 38,-7 + 4697: 22,-6 + 4736: 29,-1 + 4737: 28,-1 + 4787: 36,-2 + 4804: 67,27 + 4809: 69,23 + 4810: 70,23 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 183: 7,37 + 184: 6,37 + 193: 4,43 + 202: 5,47 + 203: 4,47 + 204: 3,47 + 242: 17,24 + 257: 24,25 + 261: 22,23 + 262: 21,23 + 266: 19,25 + 287: 30,33 + 300: 29,47 + 301: 28,47 + 302: 27,47 + 303: 26,47 + 304: 25,47 + 305: 24,47 + 306: 23,47 + 307: 22,47 + 309: 20,47 + 310: 19,47 + 311: 18,47 + 312: 17,47 + 313: 16,47 + 314: 15,47 + 315: 14,47 + 322: 10,47 + 324: 9,47 + 325: 8,47 + 326: 7,47 + 334: 7,43 + 335: 6,43 + 352: 12,37 + 362: 12,43 + 363: 11,43 + 378: 16,41 + 379: 15,41 + 381: 14,44 + 419: 17,34 + 420: 15,34 + 421: 16,34 + 422: 14,34 + 423: 13,34 + 469: 25,44 + 487: 24,32 + 491: 26,31 + 492: 27,31 + 493: 28,31 + 496: 22,30 + 500: 20,32 + 578: 24,36 + 1580: 85,30 + 4299: 4,31 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineS + decals: + 2585: 49,47 + 2595: 47,47 + 2612: 44,37 + 2613: 45,37 + 2614: 46,37 + 2615: 47,37 + 2621: 49,42 + 2651: 34,47 + 2652: 35,47 + 2653: 36,47 + 2656: 38,47 + 2657: 39,47 + 2658: 40,47 + - node: + color: '#A4610696' + id: BrickTileWhiteLineS + decals: + 13: -13,11 + 19: -13,9 + 27: -14,5 + 28: -13,5 + 30: -11,4 + 47: -12,9 + 50: -9,10 + 51: -8,10 + 52: -6,10 + 53: -7,10 + 54: -5,10 + 61: -3,3 + 62: -2,3 + 67: 0,3 + 68: 2,3 + 69: 3,3 + 78: 5,10 + 81: 9,10 + 82: 10,10 + 83: 11,10 + 108: 5,16 + 115: 9,19 + 123: 12,19 + 127: 11,15 + 128: 10,15 + 129: 9,15 + 130: 8,15 + 131: 7,15 + 134: 6,19 + 135: 5,19 + 136: 3,19 + 137: 1,19 + 138: 2,19 + 139: 0,19 + 140: -1,19 + 141: -2,19 + 580: -3,19 + 4170: -7,3 + 4175: -5,6 + 4266: -4,19 + 4267: -5,19 + 4704: 4,19 + - node: + zIndex: 100 + color: '#A4610696' + id: BrickTileWhiteLineS + decals: + 2928: -33,36 + - node: + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 1909: 39,8 + 1910: 38,8 + 1911: 37,8 + 1912: 36,8 + 1959: 40,15 + 1965: 47,16 + 2026: 49,30 + 2036: 49,24 + 2058: 48,6 + 2078: 53,30 + 2085: 53,33 + 2086: 51,33 + 2087: 52,33 + 2088: 50,33 + 2089: 49,33 + 2090: 48,33 + 2091: 47,33 + 2092: 46,33 + 2093: 45,33 + 2094: 44,33 + 2107: 55,24 + 2108: 54,24 + 2111: 58,33 + 2112: 58,33 + 2113: 57,33 + 2114: 59,33 + 2115: 60,33 + 2116: 62,33 + 2117: 61,33 + 2118: 63,33 + 2161: 54,21 + 2171: 58,15 + 2244: 38,33 + 2246: 37,33 + 2247: 36,33 + 2248: 35,33 + 2249: 34,33 + 4716: 34,3 + 4717: 33,3 + - node: + zIndex: 100 + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 2925: -35,36 + - node: + zIndex: 100 + color: '#D4D4D496' + id: BrickTileWhiteLineS + decals: + 2898: -31,36 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + decals: + 163: -6,13 + 538: 9,31 + 838: 3,62 + 839: 2,62 + 840: 1,62 + 841: 0,62 + 842: -1,62 + 843: -2,62 + 844: -3,62 + 845: -4,62 + 846: -5,62 + 847: -6,62 + 848: -7,62 + 863: -14,54 + 864: -15,54 + 902: -22,57 + 903: -23,57 + 906: -25,57 + 907: -26,57 + 908: -27,57 + 920: -31,52 + 934: -29,57 + 935: -30,57 + 936: -31,57 + 940: -33,55 + 943: -35,56 + 969: -25,60 + 978: -25,66 + 994: -23,66 + 1004: -23,60 + 1050: -9,67 + 1053: -11,66 + 1070: -9,58 + 1073: -11,59 + 1115: -4,54 + 1116: -2,54 + 1117: -3,54 + 1118: -6,54 + 1119: -7,54 + 1120: -8,54 + 1121: -10,54 + 1122: -11,54 + 1673: -7,30 + 1675: -5,29 + 1676: -4,29 + 1971: 43,16 + 1976: 45,16 + 1983: 44,12 + 1984: 45,12 + 2407: 60,56 + 2408: 61,56 + 2418: 61,60 + 2744: 72,17 + 2752: 72,13 + 2753: 71,13 + 2754: 70,13 + 2762: 70,17 + 2763: 69,17 + 2764: 68,17 + 4263: 4,27 + 4264: 5,27 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 582: -7,20 + 603: -2,33 + 622: -3,47 + 623: -4,47 + 624: -5,47 + 625: -7,47 + 626: -6,47 + 627: -8,47 + 628: -9,47 + 629: -10,47 + 630: -11,47 + 631: -12,47 + 632: -13,47 + 633: -14,47 + 634: -15,47 + 635: -16,47 + 1130: -9,19 + 1131: -10,19 + 1132: -11,19 + 1137: -14,19 + 1140: -16,18 + 1141: -17,18 + 1144: -19,17 + 1147: -21,18 + 1152: -24,18 + 1163: -26,10 + 1168: -28,7 + 1169: -29,7 + 1170: -30,7 + 1171: -31,7 + 1172: -33,7 + 1230: -11,27 + 1242: -13,36 + 1309: -4,38 + 1318: -3,33 + 1319: -4,33 + 1359: -6,38 + 1360: -7,38 + 1361: -8,38 + 1373: -33,23 + 1374: -35,25 + 1386: -30,27 + 1394: -36,25 + 4224: -32,7 + - node: + zIndex: 100 + color: '#FA750096' + id: BrickTileWhiteLineS + decals: + 2880: 10,30 + 2884: 7,23 + 2885: 8,23 + 2886: 9,23 + - node: + zIndex: 100 + angle: 31.41592653589793 rad + color: '#FA750096' + id: BrickTileWhiteLineS + decals: + 2856: 11,30 + 2857: 13,30 + 2858: 14,30 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 885: -19,56 + 894: -21,52 + 895: -21,53 + 896: -21,54 + 1347: -6,24 + 1348: -6,25 + 1349: -6,26 + 1407: 71,37 + 1412: 68,39 + 1413: 68,38 + 1416: 69,36 + 1449: 81,41 + 1452: 80,39 + 1461: 74,39 + 1462: 74,38 + 1473: 80,37 + 1474: 80,36 + 1492: 70,44 + 1502: 73,44 + 1541: 81,28 + 1546: 80,31 + 1547: 80,32 + 1550: 84,35 + 1551: 84,34 + 1552: 84,33 + 1622: 16,38 + 1626: 18,36 + 1636: -2,16 + 1637: -2,15 + 1645: 3,15 + 2222: 30,50 + 2223: 30,51 + 2911: -36,34 + 2939: -36,35 + 4654: 40,-9 + 4655: 40,-10 + 4656: 40,-11 + 4657: 40,-12 + 4658: 40,-13 + 4659: 40,-14 + 4660: 40,-15 + 4738: 28,0 + 4741: 27,2 + 4777: 23,-1 + 4778: 23,0 + 4789: 35,-1 + 4801: 68,28 + 4806: 68,25 + 4807: 68,24 + 4814: 71,24 + 4825: 68,26 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 177: 7,32 + 178: 7,33 + 179: 7,34 + 182: 8,36 + 185: 3,38 + 186: 3,40 + 187: 3,39 + 191: 5,42 + 196: 4,44 + 200: 6,46 + 243: 18,23 + 252: 26,22 + 255: 25,24 + 264: 20,24 + 276: 31,23 + 277: 31,24 + 278: 31,25 + 279: 31,26 + 280: 31,27 + 281: 31,29 + 282: 31,28 + 283: 31,30 + 284: 31,31 + 285: 31,32 + 288: 31,37 + 289: 31,38 + 290: 31,39 + 291: 31,40 + 292: 31,42 + 293: 31,41 + 294: 31,43 + 295: 31,44 + 296: 31,45 + 319: 11,46 + 354: 11,38 + 355: 11,39 + 356: 11,40 + 360: 13,42 + 365: 10,44 + 384: 16,42 + 397: 13,36 + 417: 18,33 + 432: 21,34 + 435: 22,37 + 436: 22,36 + 437: 22,38 + 438: 22,39 + 439: 22,40 + 442: 23,42 + 443: 23,43 + 444: 23,44 + 461: 25,38 + 462: 25,39 + 463: 25,40 + 466: 26,42 + 467: 26,43 + 482: 25,34 + 498: 21,31 + 514: 21,27 + 523: 25,26 + 524: 25,27 + 525: 25,28 + 542: 7,31 + 564: 25,35 + 576: 31,36 + 1086: -6,58 + 1087: -6,59 + 2905: -36,38 + 2906: -36,39 + 4295: 3,34 + 4296: 3,33 + 4297: 3,32 + - node: + zIndex: 100 + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 2873: 12,22 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 2546: 64,46 + 2548: 64,45 + 2549: 64,44 + 2550: 64,43 + 2551: 64,42 + 2552: 64,41 + 2553: 64,40 + 2554: 64,39 + 2555: 64,38 + 2556: 64,37 + 2557: 64,36 + 2568: 50,36 + 2569: 50,37 + 2570: 50,39 + 2571: 50,40 + 2572: 50,38 + 2597: 48,46 + 2603: 44,44 + 2604: 44,43 + 2605: 44,42 + 2606: 44,41 + 2609: 43,39 + 2610: 43,38 + 2623: 50,41 + - node: + color: '#A4610696' + id: BrickTileWhiteLineW + decals: + 14: -12,10 + 21: -16,6 + 26: -15,4 + 44: -11,8 + 56: -4,9 + 57: -4,8 + 58: -4,5 + 59: -4,4 + 96: 6,12 + 116: 10,18 + 132: 7,18 + 149: 3,13 + 544: -14,13 + 547: -16,7 + 4165: -8,7 + 4166: -8,6 + 4167: -8,5 + 4168: -8,4 + - node: + zIndex: 100 + color: '#A4610696' + id: BrickTileWhiteLineW + decals: + 2909: -32,35 + 2910: -32,34 + - node: + color: '#D381C996' + id: BrickTileWhiteLineW + decals: + 1885: 35,7 + 1890: 38,9 + 1891: 38,10 + 1894: 39,12 + 1895: 39,13 + 1896: 39,14 + 1907: 40,7 + 1919: 38,17 + 1967: 48,15 + 1968: 48,14 + 1990: 41,18 + 2011: 46,21 + 2014: 47,23 + 2017: 46,28 + 2018: 46,27 + 2019: 46,29 + 2020: 46,30 + 2044: 47,19 + 2048: 49,12 + 2053: 49,8 + 2068: 53,23 + 2071: 52,25 + 2072: 52,26 + 2076: 54,28 + 2077: 54,29 + 2082: 54,31 + 2083: 54,32 + 2120: 64,32 + 2121: 64,31 + 2124: 64,29 + 2125: 64,28 + 2126: 64,27 + 2127: 64,26 + 2128: 64,25 + 2129: 64,24 + 2130: 64,23 + 2131: 64,22 + 2132: 64,21 + 2133: 64,20 + 2134: 64,19 + 2159: 55,20 + 2942: -34,34 + 3778: 49,5 + 4712: 35,6 + 4719: 30,3 + 4720: 30,4 + - node: + zIndex: 100 + color: '#D381C996' + id: BrickTileWhiteLineW + decals: + 2914: -34,35 + - node: + color: '#D4D4D496' + id: BrickTileWhiteLineW + decals: + 2533: 62,9 + 2534: 62,10 + 2540: 63,14 + 2541: 63,15 + 2544: 64,17 + 2714: 4,68 + 2717: 4,66 + 2718: 4,65 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 157: -5,12 + 164: -7,14 + 176: 8,30 + 805: -13,50 + 824: 4,50 + 825: 4,51 + 826: 4,52 + 827: 4,53 + 828: 4,54 + 829: 4,55 + 830: 4,56 + 831: 4,57 + 834: 4,59 + 835: 4,60 + 836: 4,61 + 850: -8,63 + 853: -7,65 + 859: -13,51 + 860: -13,52 + 861: -13,53 + 871: -16,52 + 872: -16,53 + 873: -16,54 + 874: -16,55 + 875: -16,56 + 927: -30,53 + 928: -30,54 + 932: -28,56 + 966: -24,59 + 970: -26,61 + 971: -26,62 + 972: -26,63 + 976: -24,65 + 980: -26,67 + 981: -26,68 + 982: -26,69 + 983: -26,70 + 1025: -13,59 + 1026: -13,61 + 1027: -13,60 + 1028: -13,62 + 1029: -13,63 + 1032: -12,65 + 1107: -1,53 + 1111: -9,53 + 1112: -5,53 + 1408: 71,40 + 1666: -6,32 + 1667: -6,31 + 1973: 44,15 + 1985: 43,13 + 2425: 59,61 + 2426: 59,60 + 2429: 60,58 + 2756: 69,14 + 2760: 71,16 + 4261: 3,28 + 4275: -7,16 + 4276: -7,15 + 4869: 43,12 + 4876: -12,67 + - node: + zIndex: 100 + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 2881: 10,30 + 2918: -34,39 + 2919: -34,38 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 590: -2,22 + 593: -1,24 + 594: -1,25 + 595: -1,26 + 596: -1,27 + 597: -1,28 + 598: -1,29 + 599: -1,30 + 600: -1,32 + 601: -1,31 + 606: -1,34 + 607: -1,35 + 608: -1,36 + 609: -1,37 + 610: -1,38 + 611: -1,39 + 612: -1,40 + 613: -1,41 + 614: -1,42 + 617: -1,44 + 620: -2,46 + 1150: -23,17 + 1174: -34,10 + 1175: -34,11 + 1176: -34,12 + 1177: -34,13 + 1178: -34,14 + 1179: -34,15 + 1180: -34,16 + 1181: -34,18 + 1182: -34,17 + 1183: -34,19 + 1184: -34,20 + 1203: -23,19 + 1222: -11,21 + 1223: -11,22 + 1224: -11,23 + 1225: -11,24 + 1228: -10,26 + 1232: -12,28 + 1235: -11,30 + 1238: -12,33 + 1239: -12,34 + 1240: -12,35 + 1283: -11,38 + 1286: -12,40 + 1352: -7,34 + 1353: -7,35 + 1357: -5,37 + 1378: -32,22 + 1662: -7,33 + 4191: 35,52 + 4192: 35,52 + 4193: 35,51 + 4194: 35,50 + 4222: -34,8 + 4223: -34,9 + - node: + zIndex: 100 + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 2907: -32,39 + 2908: -32,38 + - node: + zIndex: 100 + color: '#FA750096' + id: BrickTileWhiteLineW + decals: + 2860: 15,29 + 2861: 16,24 + 2862: 16,27 + 2863: 16,26 + - node: + zIndex: 100 + angle: 6.283185307179586 rad + color: '#FA750096' + id: BrickTileWhiteLineW + decals: + 2846: 9,25 + 2847: 10,27 + - node: + zIndex: 100 + angle: 10.995574287564276 rad + color: '#FA750096' + id: BrickTileWhiteLineW + decals: + 2848: 11,28 + 2849: 12,28 + - node: + zIndex: 100 + angle: 14.137166941154069 rad + color: '#FA750096' + id: BrickTileWhiteLineW + decals: + 2850: 13,24 + 2851: 12,24 + 2852: 11,24 + - node: + color: '#FFFFFFFF' + id: BushDThree + decals: + 724: -2,72 + 725: -1,74 + 726: 0,75 + 727: 7,72 + 728: 9,74 + 729: 8,73 + - node: + color: '#FFFFFFFF' + id: Busha1 + decals: + 775: 6.9581475,77.98995 + 776: 9.035699,76.69938 + 777: 9.891987,76.657295 + 778: 9.442786,76.13826 + - node: + color: '#FFFFFFFF' + id: Bushb2 + decals: + 721: 0,70 + 722: -1,71 + 723: -2,75 + 2940: 33,18 + - node: + color: '#FFFFFFFF' + id: Bushd4 + decals: + 2941: 32,18 + - node: + color: '#FFFFFFFF' + id: Bushf1 + decals: + 743: 8.701018,72.975945 + 744: 8.097405,73.84567 + 745: 9.304631,72.83566 + 746: 8.300048,72.33791 + 747: 8.987885,71.73471 + 748: 9.437085,71.98721 + 749: 9.830135,78.25876 + 750: 10.321448,77.9782 + 751: 9.984549,77.43111 + - node: + color: '#FFFFFFFF' + id: Bushh1 + decals: + 730: 6.1860366,72.687935 + 731: 7.196737,73.31919 + 732: 6.8387804,72.87731 + 733: 6.988714,72.370224 + 734: 6.2306886,72.054596 + 735: -0.7916156,70.24648 + 736: -1.240816,70.372734 + 737: -0.84776556,69.79759 + 738: -2.1251793,74.06045 + 739: -1.3110031,74.38309 + 740: 2.0526922,78.32553 + 741: 2.3053677,78.14317 + 742: 2.4597797,78.059006 + 779: 9.063538,70.10648 + 780: 9.990012,70.232735 + 781: 9.147762,69.7137 + 782: 9.428513,70.17662 + - node: + color: '#FFFFFFFF' + id: Bushi2 + decals: + 755: 8.80135,75.70484 + 756: 9.826087,75.46636 + - node: + color: '#FFFFFFFF' + id: Bushi3 + decals: + 752: 8.313764,75.95757 + 753: 8.9173765,75.045525 + 754: 8.103201,75.6347 + - node: + color: '#FFFFFFFF' + id: Bushi4 + decals: + 757: 9.741834,74.371445 + 758: 9.854134,73.249214 + 759: 3.192065,77.86268 + 760: 3.22014,77.3298 + 761: 3.7254906,77.30172 + 762: 3.8097153,78.04227 + 763: -1.864522,70.719055 + 764: -1.9347098,70.10183 + 765: -1.9768219,69.86335 + 766: -2.1171975,73.178085 + 767: -2.10316,72.81336 + - node: + color: '#FFFFFFFF' + id: Bushm1 + decals: + 794: 11.070395,70.46965 + 795: 11.870534,70.91241 + 796: 12.389921,70.85629 + 797: 11.828421,70.81421 + 798: 12.067059,71.24908 + - node: + color: '#FFFFFFFF' + id: Bushm2 + decals: + 768: -0.9441774,75.07202 + 769: 5.5321712,71.8456 + 770: 5.7146583,72.65922 + 771: 6.739396,74.076035 + 772: 7.4693475,74.062004 + 773: 8.916599,73.92723 + - node: + color: '#FFFFFFFF' + id: Bushn1 + decals: + 783: 12.320795,69.86638 + 784: 12.054083,70.24513 + 785: 11.661032,69.922485 + 786: 7.817417,72.18015 + 787: 8.912344,73.62502 + 788: 8.336805,74.71921 + 789: -2.2574775,71.69938 + 790: -1.5696402,71.096176 + 791: -2.0328777,74.126205 + 792: 10.204514,75.144905 + 793: 10.747977,69.92256 + 4987: -33.747612,71.87493 + 4988: -30.082,72.072716 + 4989: -29.936958,75.06785 + 4990: -33.912235,74.93599 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Caution + decals: + 3843: 49,-3 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 3842: 50,-4 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Caution + decals: + 3844: 51,-3 + - node: + color: '#DE3A3A96' + id: Delivery + decals: + 2949: -18,65 + 2950: -17,65 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 1951: 32,13 + 1952: 33,13 + 1953: 33,14 + 2228: 39,54 + 2229: 40,54 + 2230: 41,54 + 2437: 72,40 + 2452: 78,45 + 4185: 34,54 + 4249: -28,12 + 4250: -28,14 + 4251: -34,6 + 4252: -35,7 + 4253: -30,6 + 4254: -35,11 + 4255: -35,15 + 4304: -37,25 + 4305: -37,27 + 4306: -31,24 + 4307: -36,28 + 4314: -22,28 + 4315: -21,28 + 4316: -20,25 + 4317: -21,25 + 4318: -19,25 + 4319: -18,25 + 4320: -18,28 + 4321: -19,29 + 4322: -16,30 + 4323: -16,31 + 4324: -15,34 + 4325: -17,35 + 4326: -17,33 + 4331: -17,31 + 4332: -17,30 + 4333: -17,37 + 4334: -17,38 + - node: + color: '#951710FF' + id: Dirt + decals: + 2799: 27,65 + 2800: 28,65 + 2801: 28,64 + 2802: 28,64 + 2803: 28,65 + 2804: 27,65 + 2805: 28,65 + 2806: 28,65 + 2807: 28,65 + 2808: 29,65 + 2809: 29,65 + 2810: 29,65 + 2814: 27,63 + 2815: 27,63 + 2816: 27,62 + 2817: 26,62 + 2818: 26,62 + 2819: 27,62 + 2820: 28,62 + 2821: 28,61 + 2822: 28,61 + 2823: 26,65 + 2824: 27,64 + 2825: 27,64 + 2826: 26,64 + 2827: 26,64 + 2828: 29,64 + 2829: 29,63 + 2830: 29,63 + 2831: 29,62 + 2832: 29,62 + 2833: 28,62 + 2834: 28,63 + 2835: 29,64 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 1756: 15,5 + 1757: 15,4 + 1758: 14,3 + 1759: 14,3 + 1760: 15,1 + 1761: 15,1 + 1762: 16,2 + 1763: 16,3 + 1764: 16,2 + 1765: 16,2 + 1766: 14,6 + 1767: 13,6 + 1768: 13,7 + 1769: 15,7 + 1770: 15,8 + 1771: 12,8 + 1772: 11,8 + 1773: 11,7 + 1774: 10,8 + 1775: 8,7 + 1776: 7,7 + 1777: 7,7 + 1778: 7,7 + 1779: 6,7 + 1780: 6,6 + 1781: 7,4 + 1782: 8,4 + 1783: 9,4 + 3021: 42,21 + 3022: 42,21 + 3023: 40,21 + 3024: 40,21 + 3025: 40,20 + 3026: 41,20 + 3027: 41,19 + 3028: 40,19 + 3029: 43,19 + 3030: 43,20 + 3090: 49,11 + 3091: 50,11 + 3092: 50,10 + 3123: 60,38 + 3230: 68,52 + 3231: 68,50 + 3232: 69,50 + 3233: 70,51 + 3234: 69,51 + 3235: 70,50 + 3236: 70,50 + 3441: -19,68 + 3442: -19,67 + 3443: -15,68 + 3444: -16,69 + 3445: -18,69 + 3446: -17,67 + 3447: -16,66 + 3553: 16,44 + 3554: 15,43 + 3564: 26,42 + 3565: 28,42 + 3566: 29,42 + 3567: 29,40 + 3568: 27,44 + 3569: 28,45 + 3590: 27,27 + 3591: 28,27 + 3592: 28,26 + 3593: 28,26 + 3594: 29,27 + 3595: 26,29 + 3596: 26,27 + 3597: 26,26 + 3598: 27,28 + 3599: 26,25 + 3600: 26,24 + 3601: 25,24 + 3602: 25,24 + 3603: 26,23 + 3604: 23,25 + 3605: 23,27 + 3606: 23,27 + 3607: 21,25 + 3608: 22,24 + 3609: 22,24 + 3610: 22,24 + 3611: 19,24 + 3612: 20,24 + 3613: 21,26 + 3614: 22,27 + 3615: 23,25 + 3616: 23,25 + 3617: 23,24 + 4080: -15,-1 + 4081: -15,-1 + 4082: -17,0 + 4083: -15,1 + 4084: -15,2 + 4085: -15,-1 + 4086: -17,-2 + 4087: -14,-2 + 4088: -14,-2 + 4089: -14,0 + 4090: -16,0 + 4091: -16,-2 + 4092: -17,-1 + 4093: -18,1 + 4094: -18,2 + 4095: -18,0 + 4096: -17,-1 + 4097: -18,-2 + 4098: -15,2 + 4099: -15,3 + 4100: -14,3 + 4101: -15,2 + 4102: -15,4 + 4103: -15,5 + 4104: -15,6 + 4105: -15,6 + 4106: -16,5 + 4107: -16,7 + 4108: -15,9 + 4109: -14,9 + 4110: -14,6 + 4111: -13,6 + 4112: -15,7 + 4113: -15,6 + 4114: -15,7 + 4115: -18,8 + 4116: -18,8 + 4117: -18,7 + 4118: -19,7 + 4119: -18,7 + 4120: -18,6 + 4121: -18,6 + 4122: -15,7 + 4123: -15,8 + 4124: -15,8 + 4125: -13,5 + 4126: -12,4 + 4127: -11,6 + 4128: -11,5 + 4129: -11,4 + 4130: -10,4 + 4131: -11,6 + 4132: -11,7 + 4133: -11,8 + 4134: -11,9 + 4135: -11,10 + 4136: -11,11 + 4137: -13,12 + 4138: -13,12 + 4139: -10,9 + 4140: -11,12 + 4141: -12,13 + 4142: -12,13 + 4143: -12,11 + 4144: -13,12 + 4145: -8,12 + 4146: -11,12 + 4147: -12,12 + 4148: -9,11 + 4149: -8,10 + 4150: -11,11 + 4151: -12,11 + 4152: -10,10 + 4153: -7,10 + 4154: -11,13 + 4155: -12,14 + 4156: -11,12 + 4157: -10,12 + 4158: -10,11 + 4159: -10,12 + 4160: -10,11 + - node: + color: '#951710FF' + id: DirtHeavy + decals: + 2785: 28,64 + 2786: 28,64 + 2787: 28,64 + 2788: 28,64 + 2789: 28,63 + 2790: 28,63 + 2811: 27,63 + 2812: 27,63 + 2813: 27,63 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 3737: 69,61 + 3738: 73,61 + 3739: 75,60 + 3740: 75,59 + 3741: 78,60 + 3742: 78,61 + 3743: 75,61 + 3744: 75,62 + 3745: 74,61 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 1784: 6,4 + 1785: 7,3 + 1786: 7,3 + 1787: 6,3 + 1788: 6,4 + 1789: 7,4 + 1790: 9,4 + 1791: 9,3 + 1792: 9,4 + 1793: 6,2 + 1794: 6,2 + 1795: 7,3 + 1796: 7,3 + 1797: 12,7 + 1798: 12,6 + 1799: 13,7 + 1800: 14,8 + 1801: 13,7 + 1802: 14,6 + 1803: 14,7 + 1804: 13,7 + 1805: 16,5 + 1806: 16,6 + 1807: 13,6 + 1808: 13,5 + 1809: 15,6 + 1810: 15,3 + 1811: 14,2 + 1812: 15,2 + 1813: 15,2 + 1814: 15,1 + 1815: 14,1 + 1816: 15,2 + 1817: 12,4 + 1818: 12,4 + 1819: 12,5 + 1820: 13,6 + 1821: 14,7 + 3031: 42,20 + 3032: 42,20 + 3033: 42,19 + 3034: 42,20 + 3035: 43,21 + 3036: 43,21 + 3037: 44,21 + 3038: 44,20 + 3039: 44,20 + 3055: 34,15 + 3103: 57,19 + 3120: 60,42 + 3121: 61,42 + 3122: 61,43 + 3154: 44,42 + 3155: 44,42 + 3227: 63,50 + 3228: 66,52 + 3229: 64,53 + 3340: -2,47 + 3341: 4,47 + 3342: 3,47 + 3343: -6,47 + 3344: -7,47 + 3345: -11,49 + 3346: -13,47 + 3347: -13,47 + 3348: 0,40 + 3349: -2,36 + 3350: -2,33 + 3351: 0,31 + 3352: 0,31 + 3353: 1,30 + 3354: -1,27 + 3355: -1,27 + 3356: 1,26 + 3357: -2,24 + 3358: -1,19 + 3359: -2,19 + 3360: -7,20 + 3361: -6,21 + 3362: 1,19 + 3363: 9,18 + 3364: 12,19 + 3365: 22,19 + 3366: 25,20 + 3367: 28,20 + 3368: 30,19 + 3369: 30,19 + 3370: 28,19 + 3371: 26,18 + 3372: 23,17 + 3373: 24,16 + 3374: 23,14 + 3375: 25,13 + 3376: 26,13 + 3377: 26,15 + 3378: 23,14 + 3379: 28,14 + 3380: 21,12 + 3381: 22,10 + 3382: 21,9 + 3383: 22,8 + 3384: 27,10 + 3385: 35,47 + 3386: 39,48 + 3387: 39,49 + 3388: 15,47 + 3389: 14,49 + 3408: -2,52 + 3409: -2,51 + 3410: -1,51 + 3411: -1,52 + 3412: -1,51 + 3413: -1,54 + 3414: -3,56 + 3415: -5,55 + 3416: -5,54 + 3417: -2,55 + 3418: 0,55 + 3419: -8,56 + 3420: -9,55 + 3421: -11,55 + 3422: -12,55 + 3423: -13,54 + 3424: -13,53 + 3425: -11,57 + 3426: -12,58 + 3427: -16,57 + 3428: -16,55 + 3429: -15,55 + 3430: -13,57 + 3431: -12,60 + 3432: -12,61 + 3433: -12,63 + 3434: -13,64 + 3435: -18,62 + 3436: -19,61 + 3437: -20,60 + 3438: -20,64 + 3439: -17,64 + 3440: -17,64 + 3448: -23,69 + 3449: -23,69 + 3450: -23,70 + 3451: -25,71 + 3452: -25,70 + 3453: -24,68 + 3485: -33,53 + 3486: -33,53 + 3487: -32,51 + 3488: -29,52 + 3489: -28,53 + 3490: -28,54 + 3491: -29,55 + 3492: -27,51 + 3493: -27,51 + 3494: -20,54 + 3495: -19,55 + 3496: -15,49 + 3497: -18,38 + 3498: -15,38 + 3499: -17,36 + 3500: -18,37 + 3501: -26,30 + 3502: -26,28 + 3503: -26,28 + 3504: -24,28 + 3505: -23,28 + 3506: -20,27 + 3507: -20,28 + 3508: -23,26 + 3509: -31,27 + 3510: -32,26 + 3511: -32,25 + 3512: -33,24 + 3513: -30,24 + 3514: -32,23 + 3515: -33,24 + 3516: -33,25 + 3517: -31,25 + 3518: -32,26 + 3519: -33,27 + 3520: -34,28 + 3521: -32,28 + 3522: -31,28 + 3523: -34,29 + 3524: -34,26 + 3525: -34,25 + 3526: -38,26 + 3527: -36,25 + 3528: -35,28 + 3529: -28,20 + 3530: -27,22 + 3531: -22,18 + 3532: -23,17 + 3533: -21,19 + 3534: -18,18 + 3535: -19,18 + 3536: -18,17 + 3537: -15,19 + 3538: -14,20 + 3539: -15,19 + 3540: -12,19 + 3541: -11,20 + 3542: -9,20 + 3543: -1,25 + 3544: 1,30 + 3545: -2,32 + 3546: 12,44 + 3547: 13,40 + 3548: 17,43 + 3549: 15,42 + 3550: 18,44 + 3551: 17,45 + 3552: 18,45 + 3712: 17,38 + 3713: 17,39 + 3714: 23,43 + 3715: 24,43 + 3716: 36,44 + 3717: 37,45 + 3718: 38,44 + 3719: 36,43 + 3720: 35,43 + 3721: 40,47 + 3722: 40,47 + 3723: 38,47 + 3724: 37,47 + 3725: 40,49 + 3726: 41,48 + 3727: 42,47 + 3728: 42,52 + 3729: 41,51 + 3730: 41,50 + 3731: 41,51 + 3732: 40,53 + 3733: 39,54 + 3734: 42,53 + 3735: 44,54 + 3971: -15,-7 + 3972: -15,-7 + 3973: -16,-5 + 3974: -16,-5 + 3975: -17,-6 + 3976: -16,-8 + 3977: -17,-7 + 3978: -17,-5 + 3979: -17,-5 + 3980: -17,-7 + 3981: -17,-8 + 3982: -16,-6 + 3983: -17,-4 + 3984: -17,-6 + 3985: -15,-6 + 3986: -15,-5 + 3987: -15,-4 + 3988: -16,-5 + 3989: -17,-2 + 3990: -17,-1 + 3991: -17,-2 + 3992: -18,-1 + 3993: -17,0 + 3994: -17,1 + 3995: -16,-2 + 3996: -15,-1 + 3997: -15,-1 + 3998: -14,0 + 3999: -14,-2 + 4000: -15,-1 + 4001: -14,1 + 4002: -15,2 + 4003: -17,1 + 4004: -15,2 + 4005: -15,3 + 4006: -17,0 + 4007: -17,-1 + 4008: -15,1 + 4009: -16,-1 + 4010: -16,0 + 4011: -15,3 + 4012: -15,6 + 4013: -13,7 + 4014: -13,6 + 4015: -14,6 + 4016: -14,5 + 4017: -12,5 + 4018: -15,5 + 4019: -15,5 + 4020: -15,5 + 4021: -16,5 + 4022: -16,6 + 4023: -16,6 + 4024: -16,8 + 4025: -15,8 + 4026: -14,9 + 4027: -14,8 + 4028: -14,8 + 4029: -15,9 + 4030: -14,9 + 4031: -13,10 + 4032: -13,9 + 4033: -12,9 + 4034: -12,10 + 4035: -12,10 + 4036: -12,9 + 4037: -12,10 + 4038: -11,10 + 4039: -11,9 + 4040: -11,11 + 4041: -11,11 + 4042: -10,10 + 4043: -10,9 + 4044: -11,11 + 4045: -13,11 + 4046: -13,12 + 4047: -13,12 + 4048: -13,12 + 4049: -11,11 + 4050: -11,11 + 4051: -12,13 + 4052: -9,10 + 4053: -8,10 + 4054: -10,6 + 4055: -10,6 + 4056: -11,6 + 4057: -11,5 + 4058: -12,5 + 4059: -10,4 + 4060: -10,4 + 4061: -12,4 + 4062: -11,5 + 4063: -12,4 + 4064: -10,5 + 4065: -12,6 + 4066: -11,5 + 4067: -13,6 + 4068: -14,5 + 4069: -11,5 + 4070: -11,5 + 4071: -14,5 + 4072: -12,5 + 4073: -13,5 + 4074: -15,1 + 4075: -15,1 + 4076: -14,0 + 4077: -14,0 + 4078: -14,-1 + 4079: -14,-1 + - node: + color: '#951710FF' + id: DirtHeavyMonotile + decals: + 2791: 28,62 + 2792: 28,62 + 2793: 28,62 + 2794: 28,61 + 2795: 28,61 + 2796: 29,63 + 2797: 29,63 + 2798: 29,63 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 3746: 69,58 + 3747: 63,60 + 3748: 70,56 + 3749: 67,55 + 3750: 67,45 + 3751: 68,43 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 1822: 14,7 + 1823: 14,7 + 1824: 14,8 + 1825: 13,8 + 1826: 13,7 + 1827: 14,7 + 1828: 16,6 + 1829: 17,5 + 1830: 18,5 + 1831: 16,6 + 1832: 16,6 + 1833: 18,6 + 1834: 17,5 + 1835: 17,5 + 1836: 18,6 + 1837: 18,6 + 1838: 18,6 + 1839: 17,6 + 1840: 18,6 + 1841: 18,6 + 1842: 18,7 + 1843: 18,8 + 1844: 18,9 + 1845: 18,9 + 1846: 17,9 + 1847: 9,7 + 1848: 8,7 + 1849: 9,7 + 1850: 7,7 + 1851: 6,7 + 1852: 9,4 + 1853: 9,4 + 1854: 8,4 + 1855: 9,4 + 1856: 9,3 + 3008: 53,25 + 3009: 56,29 + 3010: 54,30 + 3011: 50,27 + 3012: 50,26 + 3013: 50,25 + 3014: 50,24 + 3015: 48,26 + 3016: 47,26 + 3017: 47,25 + 3018: 49,24 + 3019: 49,24 + 3020: 47,24 + 3056: 35,10 + 3057: 35,10 + 3058: 36,11 + 3059: 38,11 + 3060: 39,9 + 3061: 41,7 + 3062: 36,7 + 3093: 49,10 + 3094: 48,9 + 3095: 57,17 + 3096: 58,17 + 3097: 58,16 + 3098: 59,16 + 3099: 59,17 + 3100: 59,21 + 3101: 60,20 + 3102: 60,21 + 3109: 62,30 + 3110: 61,29 + 3111: 57,38 + 3112: 57,39 + 3113: 58,40 + 3114: 58,40 + 3115: 60,40 + 3116: 62,40 + 3117: 62,37 + 3118: 62,37 + 3119: 60,37 + 3124: 56,43 + 3125: 56,44 + 3126: 57,45 + 3127: 57,45 + 3128: 56,46 + 3129: 56,46 + 3130: 55,46 + 3131: 55,46 + 3132: 57,46 + 3133: 57,46 + 3134: 54,46 + 3135: 54,46 + 3136: 53,46 + 3137: 53,46 + 3138: 53,46 + 3139: 52,45 + 3140: 52,44 + 3141: 52,44 + 3142: 53,43 + 3143: 54,42 + 3144: 54,42 + 3145: 55,42 + 3146: 45,40 + 3147: 47,42 + 3148: 49,43 + 3149: 47,43 + 3150: 46,44 + 3151: 46,42 + 3152: 49,41 + 3153: 50,42 + 3195: 46,33 + 3196: 43,35 + 3197: 43,35 + 3198: 49,33 + 3199: 58,33 + 3200: 56,33 + 3201: 54,33 + 3202: 59,35 + 3203: 62,35 + 3204: 64,35 + 3205: 70,33 + 3206: 70,33 + 3207: 71,35 + 3208: 73,35 + 3209: 72,33 + 3210: 69,36 + 3211: 71,39 + 3212: 71,38 + 3213: 72,37 + 3214: 72,40 + 3215: 63,38 + 3216: 65,39 + 3217: 66,40 + 3218: 66,41 + 3219: 64,42 + 3220: 63,42 + 3221: 65,43 + 3222: 65,44 + 3223: 65,47 + 3224: 64,47 + 3225: 64,47 + 3226: 66,47 + 3237: 68,50 + 3238: 69,49 + 3239: 69,49 + 3240: 70,49 + 3241: 69,49 + 3242: 68,48 + 3243: 68,48 + 3244: 70,48 + 3245: 69,50 + 3246: 68,49 + 3247: 68,52 + 3248: 69,52 + 3249: 70,52 + 3250: 73,44 + 3251: 73,43 + 3252: 74,43 + 3253: 77,44 + 3254: 76,44 + 3255: 75,43 + 3256: 77,42 + 3257: 78,42 + 3258: 77,44 + 3259: 35,37 + 3260: 37,38 + 3261: 37,40 + 3262: 35,38 + 3263: 37,38 + 3264: 40,37 + 3265: 41,38 + 3283: 21,34 + 3284: 22,34 + 3285: 22,32 + 3286: 22,31 + 3287: 24,31 + 3288: 22,30 + 3289: 22,30 + 3290: 18,31 + 3291: 17,30 + 3292: 16,29 + 3293: 15,29 + 3294: 16,28 + 3295: 17,28 + 3296: 19,28 + 3297: 17,30 + 3298: 11,31 + 3299: 12,30 + 3300: 11,31 + 3301: 11,33 + 3302: 12,33 + 3303: 13,34 + 3304: 17,35 + 3305: 19,35 + 3306: 18,34 + 3390: 5,56 + 3391: 5,58 + 3392: 5,58 + 3393: 6,58 + 3394: -1,63 + 3395: -2,62 + 3396: -2,62 + 3397: -2,62 + 3398: 3,62 + 3399: -6,64 + 3555: 23,39 + 3556: 22,40 + 3557: 22,38 + 3558: 22,37 + 3559: 27,40 + 3560: 26,40 + 3561: 26,39 + 3562: 26,38 + 3563: 29,39 + 3618: 22,26 + 3619: 22,25 + 3620: 22,25 + 3621: 23,26 + 3622: 22,25 + 3623: 22,24 + 3624: 23,24 + 3625: 20,24 + 3626: 25,25 + 3627: 26,26 + 3628: 26,27 + 3629: 27,28 + 3630: 27,28 + 3631: 26,28 + 3632: 25,28 + 3633: 25,27 + 3634: 25,26 + 3635: 22,19 + 3636: 25,25 + 3637: 24,19 + 3638: 15,18 + 3639: 14,18 + 3640: 9,15 + 3641: 9,15 + 3642: 13,15 + 3643: 11,15 + 3644: 12,16 + 3645: 9,13 + 3646: 12,10 + 3647: 12,10 + 3648: 9,10 + 3649: 8,9 + 3650: 8,9 + 3651: 7,12 + 3652: 6,13 + 3653: 0,11 + 3654: 0,8 + 3655: 1,8 + 3656: 1,8 + 3657: 1,4 + 3658: 2,4 + 3659: 4,4 + 3660: 3,3 + 3661: 3,7 + 3662: 3,9 + 3663: 4,9 + 3664: 4,12 + 3665: 3,13 + 3666: 1,11 + 3667: 1,11 + 3668: -2,7 + 3669: -4,5 + 3670: -4,3 + 3671: -4,3 + 3672: -3,8 + 3673: -3,10 + 3674: -2,10 + 3675: -1,9 + 3676: -1,8 + 3677: 2,11 + 3678: -3,10 + 3679: -4,11 + 3680: -4,6 + 3681: -7,2 + 3682: -7,9 + 3683: -7,12 + 3684: -9,11 + 3685: -10,10 + 3686: -11,9 + 3687: -11,12 + 3688: -11,12 + 3689: -13,13 + 3690: -12,14 + 3691: -11,14 + 3692: -11,14 + 3693: -10,13 + 3694: -14,12 + 3695: -14,11 + 3696: -13,10 + 3697: -12,8 + 3698: -15,7 + 3699: -15,6 + 3700: -13,5 + 3701: -11,5 + 3702: -11,6 + 3703: -14,6 + 3704: -14,5 + 3705: -14,9 + 3706: -14,9 + 3707: -15,8 + 3708: -17,3 + 3709: -15,3 + 3710: -15,3 + 3711: -15,2 + 3861: -18,-2 + 3862: -14,-1 + 3863: -15,1 + 3864: -15,0 + 3865: -17,0 + 3866: -17,0 + 3867: -17,1 + 3868: -16,-1 + 3869: -17,-2 + 3870: -16,1 + 3871: -14,1 + 3872: -14,2 + 3873: -14,2 + 3874: -16,3 + 3875: -16,3 + 3876: -15,2 + 3877: -13,6 + 3878: -12,6 + 3879: -14,7 + 3880: -15,8 + 3881: -15,7 + 3882: -15,7 + 3883: -15,7 + 3884: -14,6 + 3885: -12,5 + 3886: -12,6 + 3887: -11,7 + 3888: -11,9 + 3889: -11,9 + 3890: -11,9 + 3891: -11,9 + 3892: -11,9 + 3893: -11,9 + 3894: -11,7 + 3895: -11,7 + 3896: -12,9 + 3897: -12,11 + 3898: -12,11 + 3899: -12,11 + 3900: -12,10 + 3901: -12,9 + 3902: -10,10 + 3903: -10,10 + 3904: -10,9 + 3905: -11,9 + 3906: -12,9 + 3907: -11,9 + 3908: -11,6 + 3909: -10,5 + 3910: -11,4 + 3911: -10,4 + 3912: -11,5 + 3913: -12,5 + 3914: -12,5 + 3915: -11,6 + 3916: -12,6 + 3917: -13,7 + 3918: -15,6 + 3919: -14,6 + 3920: -14,3 + 3921: -14,2 + 3922: -16,2 + 3923: -16,2 + 3924: -18,1 + 3925: -18,1 + 3926: -18,2 + 3927: -18,2 + 3928: -17,2 + 3929: -17,2 + 3930: -17,1 + 3931: -17,1 + 3932: -17,1 + 3933: -18,0 + 3934: -17,0 + 3935: -16,-1 + 3936: -18,-2 + 3937: -16,0 + 3938: -16,-1 + 3939: -16,-4 + 3940: -15,-5 + 3941: -16,-4 + 3942: -18,-5 + 3943: -16,-5 + 3944: -16,-5 + 3945: -16,-5 + 3946: -16,-5 + 3947: -17,-5 + 3948: -16,-7 + 3949: -16,-8 + 3950: -15,-6 + 3951: -17,-5 + 3952: -17,-7 + 3953: -17,-8 + 3954: -16,-7 + 3955: -16,-6 + 3956: -18,-4 + 3957: -17,-6 + 3958: -16,-7 + 3959: -16,-8 + 3960: -17,-9 + 3961: -16,-10 + 3962: -16,-10 + 3963: -16,-10 + 3964: -16,-10 + 3965: -16,-7 + 3966: -16,-7 + 3967: -18,-8 + 3968: -18,-7 + 3969: -17,-6 + 3970: -17,-6 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 2960: 66,58 + 2961: 65,60 + 2962: 65,60 + 2963: 62,61 + 2964: 66,49 + 2965: 62,47 + 2966: 65,46 + 2967: 66,46 + 2968: 69,43 + 2969: 67,42 + 2970: 70,37 + 2971: 72,35 + 2972: 69,34 + 2973: 70,33 + 2974: 72,33 + 2975: 73,33 + 2976: 76,34 + 2977: 76,34 + 2978: 75,34 + 2979: 77,35 + 2980: 81,34 + 2981: 81,38 + 2982: 85,37 + 2983: 86,37 + 2984: 86,34 + 2985: 85,33 + 2986: 85,32 + 2987: 86,31 + 2988: 82,26 + 2989: 81,26 + 2990: 81,25 + 2991: 80,24 + 2992: 80,23 + 2993: 80,22 + 2994: 82,21 + 2995: 82,21 + 2996: 83,21 + 2997: 76,28 + 2998: 77,29 + 2999: 77,30 + 3000: 75,30 + 3001: 74,30 + 3002: 74,29 + 3003: 58,29 + 3004: 59,30 + 3005: 62,30 + 3006: 62,29 + 3007: 62,28 + 3040: 34,14 + 3041: 34,14 + 3042: 32,14 + 3043: 34,16 + 3044: 34,16 + 3045: 35,16 + 3046: 36,16 + 3047: 37,15 + 3048: 36,14 + 3049: 35,14 + 3050: 35,14 + 3051: 36,13 + 3052: 33,13 + 3053: 32,14 + 3054: 32,15 + 3063: 38,11 + 3064: 38,11 + 3065: 38,9 + 3066: 38,9 + 3067: 40,12 + 3068: 40,13 + 3069: 39,13 + 3070: 40,12 + 3071: 29,1 + 3072: 28,0 + 3073: 28,0 + 3074: 28,-1 + 3075: 31,0 + 3076: 31,1 + 3077: 31,1 + 3078: 28,3 + 3079: 29,3 + 3080: 28,2 + 3081: 27,2 + 3082: 26,0 + 3083: 26,0 + 3084: 25,-1 + 3085: 24,1 + 3086: 50,9 + 3087: 48,10 + 3088: 49,10 + 3089: 48,11 + 3104: 58,19 + 3105: 59,20 + 3106: 59,19 + 3107: 58,29 + 3108: 58,29 + 3156: 48,42 + 3157: 47,42 + 3158: 44,41 + 3159: 44,41 + 3160: 44,39 + 3161: 45,39 + 3162: 45,38 + 3163: 45,38 + 3164: 46,39 + 3165: 48,41 + 3166: 49,42 + 3167: 50,43 + 3168: 50,44 + 3169: 51,37 + 3170: 52,38 + 3171: 55,39 + 3172: 54,39 + 3173: 52,39 + 3174: 51,39 + 3175: 50,38 + 3176: 36,35 + 3177: 37,33 + 3178: 38,33 + 3179: 46,33 + 3180: 48,33 + 3181: 52,33 + 3182: 63,35 + 3183: 60,33 + 3184: 57,33 + 3185: 62,35 + 3186: 61,32 + 3187: 60,33 + 3188: 56,33 + 3189: 56,33 + 3190: 50,35 + 3191: 49,35 + 3192: 49,36 + 3193: 47,33 + 3194: 45,33 + 3266: 38,38 + 3267: 36,38 + 3268: 36,39 + 3269: 36,39 + 3270: 36,40 + 3271: 37,40 + 3272: 38,40 + 3273: 40,40 + 3274: 39,40 + 3275: 29,35 + 3276: 27,34 + 3277: 27,33 + 3278: 29,33 + 3279: 26,32 + 3280: 26,31 + 3281: 29,32 + 3282: 29,32 + 3307: 11,34 + 3308: 10,33 + 3309: 9,32 + 3310: 10,32 + 3311: 11,31 + 3312: 10,31 + 3313: 12,31 + 3314: 12,32 + 3315: 12,38 + 3316: 12,38 + 3317: 13,39 + 3318: 14,40 + 3319: 13,41 + 3320: 12,40 + 3321: 14,38 + 3322: 14,37 + 3323: 12,37 + 3324: 5,39 + 3325: 4,39 + 3326: 4,38 + 3327: 5,39 + 3328: 6,38 + 3329: 7,38 + 3330: 9,39 + 3331: 6,40 + 3332: 5,40 + 3333: 8,39 + 3334: 8,38 + 3335: 4,43 + 3336: 5,43 + 3337: 7,44 + 3338: 7,44 + 3339: 6,44 + 3400: -8,51 + 3401: -9,52 + 3402: -9,52 + 3403: -9,51 + 3404: -9,51 + 3405: -5,52 + 3406: -5,52 + 3407: -5,51 + 3454: -24,67 + 3455: -24,67 + 3456: -23,67 + 3457: -23,68 + 3458: -24,70 + 3459: -25,69 + 3460: -25,63 + 3461: -24,63 + 3462: -24,62 + 3463: -25,61 + 3464: -24,61 + 3465: -23,60 + 3466: -24,61 + 3467: -25,60 + 3468: -25,60 + 3469: -23,61 + 3470: -30,58 + 3471: -30,57 + 3472: -32,57 + 3473: -33,57 + 3474: -33,56 + 3475: -33,55 + 3476: -32,55 + 3477: -33,55 + 3478: -35,58 + 3479: -35,58 + 3480: -35,56 + 3481: -36,56 + 3482: -35,56 + 3483: -34,56 + 3484: -34,57 + 3570: 26,27 + 3571: 25,27 + 3572: 24,25 + 3573: 25,24 + 3574: 25,23 + 3575: 27,23 + 3576: 28,24 + 3577: 28,25 + 3578: 28,27 + 3579: 28,27 + 3580: 28,28 + 3581: 28,28 + 3582: 28,28 + 3583: 29,26 + 3584: 29,26 + 3585: 27,26 + 3586: 26,26 + 3587: 26,24 + 3588: 26,24 + 3589: 26,23 + 3754: 32,40 + 3755: 31,43 + 3756: 32,43 + 3757: 33,38 + 3758: 32,37 + 3759: 32,35 + 3760: 16,20 + 3761: 19,20 + 3762: 5,52 + 3763: 5,63 + 3764: 6,67 + 3765: 7,67 + 3766: 2,63 + 3767: 22,48 + 3768: 16,48 + 3769: 20,56 + 3770: 22,58 + 3771: 18,56 + 3772: 18,56 + 3773: 16,55 + 3774: 12,55 + 3775: 8,55 + 3776: 8,57 + - node: + color: '#951710FF' + id: Donk + decals: + 2784: 27,64 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 4958: -32.740227,71.75434 + 4959: -33.87947,72.741684 + 4960: -30.176937,72.779655 + 4961: -31.52504,74.5075 + 4962: -32.056686,75.24801 + 4963: -32.455418,76.14042 + 4964: -29.968077,76.0075 + 4965: -28.259216,72.13409 + 4966: -28.544025,73.3113 + 4967: -34.582,71.10877 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 4948: -33.898457,75.34295 + 4949: -32.569344,76.23535 + 4950: -31.619976,75.95054 + 4951: -31.01238,74.71636 + 4952: -30.347824,72.13409 + 4953: -33.30985,72.874596 + 4954: -33.082,70.99484 + 4955: -30.879469,71.260666 + 4956: -28.563015,71.260666 + 4957: -28.297192,73.444214 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 4937: -33.233902,71.69738 + 4938: -32.208584,72.64674 + 4939: -30.936432,72.058136 + 4940: -29.759216,71.127754 + 4941: -27.822506,71.279655 + 4942: -33.10099,75.077126 + 4943: -30.44276,74.39358 + 4944: -28.316177,73.67206 + 4945: -30.556684,76.02649 + 4946: -31.487064,76.72903 + 4947: -33.328835,76.4632 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 4926: -34.069344,71.31763 + 4927: -30.328836,71.03282 + 4928: -31.259216,72.39991 + 4929: -32.702255,73.02649 + 4930: -30.195925,74.58345 + 4931: -33.063015,75.4189 + 4932: -29.835167,75.64674 + 4933: -30.879469,76.95687 + 4934: -32.96808,76.99484 + 4935: -27.80352,71.67839 + 4936: -28.316177,73.63409 + - node: + color: '#00000077' + id: FullTileOverlayGreyscale + decals: + 4206: -35,7 + 4207: -35,8 + 4208: -35,9 + - node: + color: '#3EB38896' + id: FullTileOverlayGreyscale + decals: + 4209: -34,6 + 4210: -33,6 + 4211: -32,6 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 4216: -35,15 + 4217: -35,16 + 4218: -35,17 + - node: + color: '#8C347F96' + id: FullTileOverlayGreyscale + decals: + 4203: -28,6 + 4204: -29,6 + 4205: -30,6 + - node: + color: '#D4D4D496' + id: FullTileOverlayGreyscale + decals: + 4219: -35,19 + 4220: -35,20 + 4221: -35,21 + - node: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 4212: -35,11 + 4213: -35,12 + 4214: -35,12 + 4215: -35,13 + - node: + color: '#FFFFFFFF' + id: Grassa1 + decals: + 4974: -29.436432,70.59611 + 4975: -31.657951,70.86193 + - node: + color: '#FFFFFFFF' + id: Grassa3 + decals: + 4972: -31.904785,70.27332 + - node: + color: '#FFFFFFFF' + id: Grassa4 + decals: + 4971: -33.974407,70.27332 + - node: + color: '#FFFFFFFF' + id: Grassa5 + decals: + 4970: -32.645294,70.6151 + 4973: -30.822506,70.71004 + 4993: -27.37387,73.70472 + 4994: -27.358047,73.08763 + - node: + color: '#FFFFFFFF' + id: Grassb1 + decals: + 4978: -28.695925,70.06446 + 4979: -32.94909,70.08345 + 4980: -35.36048,69.95054 + 4981: -30.860481,69.798645 + 4982: -33.480736,70.84295 + - node: + color: '#FFFFFFFF' + id: Grassb2 + decals: + 4983: -34.08833,70.88092 + 4984: -35.056686,70.93788 + 4985: -29.94909,71.03282 + 4986: -27.974407,70.9189 + - node: + color: '#FFFFFFFF' + id: Grassb4 + decals: + 4969: -30.082,70.3113 + - node: + color: '#FFFFFFFF' + id: Grassb5 + decals: + 4968: -34.94276,70.34927 + 4976: -28.44909,70.69105 + 4977: -28.031368,70.3113 + 4991: -27.24729,74.10029 + 4992: -27.13653,73.055984 + - node: + angle: -3.141592653589793 rad + color: '#DE3A3A96' + id: LoadingArea + decals: + 2733: 74,9 + - node: + angle: -1.5707963267948966 rad + color: '#DE3A3A96' + id: LoadingArea + decals: + 2732: 70,11 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 4362: -21,29 + 4363: -20,29 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 1936: 41,19 + 2438: 71,40 + 3845: 48,-3 + 3846: 48,0 + 3847: 48,3 + 4364: -17,34 + 4365: -19,34 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 1722: 1,3 + 1741: 2,7 + 3851: 51,-5 + 4356: -21,39 + 4357: -20,39 + 4358: -19,39 + 4700: 33,-1 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 1: -12,9 + 3848: 54,3 + 3849: 54,0 + 3850: 54,-3 + 4359: -25,33 + 4360: -25,34 + 4361: -25,35 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 1723: -1,3 + 1740: -2,7 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerNe + decals: + 2519: 63,5 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerNw + decals: + 2523: 67,5 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerSw + decals: + 2517: 69,9 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineE + decals: + 2518: 63,6 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineN + decals: + 2520: 64,5 + 2521: 65,5 + 2522: 66,5 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineS + decals: + 2510: 68,9 + 2511: 66,9 + 2512: 67,9 + 2513: 65,9 + 2514: 64,9 + 2515: 63,9 + 2516: 62,9 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineW + decals: + 2524: 67,6 + - node: + color: '#951710FF' + id: Omni + decals: + 2839: 27.985142,61.999886 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign1 + decals: + 1603: 65,20 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign2 + decals: + 1604: 66,20 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign3 + decals: + 1605: 67,20 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign4 + decals: + 1606: 68,20 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign5 + decals: + 1607: 69,20 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign6 + decals: + 1608: 70,20 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign7 + decals: + 1609: 71,20 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 4762: 25,-1 + 4763: 27,-1 + - node: + color: '#951710FF' + id: Waffle + decals: + 2836: 28,65 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 1278: -17,43 + 2285: 77,59 + 2286: 76,59 + 3828: 48,-4 + 3829: 50,-3 + 3830: 49,-5 + 3831: 53,-5 + - node: + color: '#D381C996' + id: WarnCornerGreyscaleNW + decals: + 2146: 55,22 + 2168: 58,17 + - node: + color: '#DE3A3A96' + id: WarnCornerNE + decals: + 2345: 71,57 + 2727: 74,11 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 1875: 39,7 + 1932: 43,21 + 2163: 53,22 + 2177: 52,31 + 2188: 48,26 + 2276: 21,45 + 2469: 76,5 + 3837: 52,1 + 4624: 40,-8 + 4626: 39,-7 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 1872: 36,7 + 2175: 50,31 + 2186: 46,26 + 2274: 9,38 + 2275: 20,45 + 2500: 69,4 + 3839: 50,1 + 3854: -36,29 + 3856: -37,28 + 4581: 21,-6 + 4583: 20,-7 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 1869: 37,9 + 1883: 38,12 + 1931: 43,20 + 2180: 52,29 + 2189: 48,25 + 2277: 21,43 + 2472: 76,2 + 2479: 74,-2 + 3834: 52,-2 + 4606: 32,-18 + 4614: 39,-17 + 4616: 40,-16 + - node: + color: '#DE3A3A96' + id: WarnCornerSW + decals: + 2314: 62,59 + 2351: 68,54 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 2182: 50,29 + 2185: 46,25 + 2278: 20,43 + 2482: 72,-2 + 2489: 69,2 + 3832: 50,-2 + 4593: 20,-17 + 4595: 21,-18 + - node: + color: '#D381C996' + id: WarnCornerSmallGreyscaleNW + decals: + 2145: 55,21 + - node: + color: '#DE3A3A96' + id: WarnCornerSmallNE + decals: + 2301: 70,60 + 2309: 62,62 + 2333: 68,62 + 2339: 66,56 + 2344: 70,57 + 2363: 66,46 + 2730: 70,11 + 2731: 74,9 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 555: -16,11 + 556: -18,7 + 1248: -23,43 + 1264: -25,10 + 1294: -11,39 + 1300: -4,38 + 1397: -33,28 + 1933: 42,21 + 2166: 51,22 + 2167: 53,20 + 2178: 52,30 + 2196: -5,64 + 2206: 15,63 + 2265: 33,19 + 2371: 74,57 + 2376: 62,46 + 2385: 59,44 + 2389: 51,52 + 2396: 47,51 + 2403: 57,56 + 2441: 80,44 + 2460: 72,17 + 2461: 73,14 + 2464: 74,7 + 2467: 74,5 + 2476: 74,0 + 2494: 67,1 + 2497: 67,3 + 2593: 46,48 + 2663: 42,47 + 2709: 6,63 + 4284: 1,24 + 4625: 39,-8 + 4631: 34,-7 + 4726: 36,3 + 4727: 30,5 + 4925: -28,72 + - node: + zIndex: 100 + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 2891: 5,23 + - node: + color: '#DE3A3A96' + id: WarnCornerSmallNW + decals: + 2298: 70,62 + 2312: 62,60 + 2332: 68,62 + 2341: 68,56 + 2365: 68,46 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 552: -14,11 + 558: -16,7 + 1249: -19,43 + 1253: -12,31 + 1256: -22,19 + 1260: -22,15 + 1266: -23,10 + 1275: -12,43 + 1298: -7,39 + 1398: -31,28 + 1689: -34,29 + 1923: 39,17 + 1937: 44,21 + 2143: 62,20 + 2184: 50,30 + 2195: -3,64 + 2203: 21,60 + 2205: 17,63 + 2234: 43,54 + 2369: 73,53 + 2382: 57,48 + 2384: 61,44 + 2392: 49,51 + 2401: 44,47 + 2431: 59,56 + 2440: 82,44 + 2455: 74,17 + 2499: 69,3 + 2503: 72,4 + 2528: 63,1 + 2545: 64,17 + 2547: 64,46 + 2592: 48,48 + 3855: -36,28 + 4198: 35,19 + 4281: -7,15 + 4582: 21,-7 + 4728: 32,5 + 4874: 44,10 + - node: + zIndex: 100 + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 2889: 7,23 + - node: + color: '#DE3A3A96' + id: WarnCornerSmallSE + decals: + 2304: 70,60 + 2335: 66,60 + 2354: 66,55 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 554: -16,13 + 563: 6,9 + 1263: -25,12 + 1376: -35,25 + 1861: 30,7 + 1930: 42,20 + 1955: 37,19 + 1956: 42,23 + 2136: 61,28 + 2140: 62,19 + 2179: 52,30 + 2208: 15,65 + 2237: 41,56 + 2264: 33,21 + 2291: 74,59 + 2367: 71,55 + 2375: 62,48 + 2379: 59,46 + 2390: 51,54 + 2395: 47,53 + 2398: 46,50 + 2404: 57,58 + 2444: 80,21 + 2462: 74,9 + 2465: 74,7 + 2474: 74,2 + 2477: 74,0 + 2480: 73,-2 + 2492: 67,3 + 2495: 67,5 + 2509: 71,9 + 2664: 42,49 + 2711: 6,65 + 2743: 72,19 + 4279: -9,17 + 4283: 1,26 + 4607: 32,-17 + 4615: 39,-16 + 4729: 34,3 + 4730: 36,5 + 4751: 29,0 + 4755: 27,3 + 4767: 24,0 + - node: + color: '#DE3A3A96' + id: WarnCornerSmallSW + decals: + 2313: 62,60 + 2316: 64,59 + 2331: 68,60 + 2352: 68,55 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 553: -14,13 + 557: -16,9 + 562: 8,9 + 1254: -12,33 + 1258: -22,17 + 1267: -23,12 + 1371: -33,25 + 1860: 32,7 + 1958: 44,23 + 2138: 64,19 + 2142: 62,22 + 2183: 50,30 + 2209: 17,65 + 2236: 43,56 + 2267: 35,21 + 2373: 64,48 + 2378: 61,46 + 2381: 57,50 + 2387: 53,54 + 2393: 49,53 + 2400: 44,49 + 2443: 82,21 + 2456: 74,19 + 2457: 75,16 + 2481: 73,-2 + 2486: 72,2 + 2490: 69,3 + 2508: 72,9 + 2532: 63,5 + 4280: -7,17 + 4594: 21,-17 + 4731: 36,3 + 4761: 28,0 + 4872: 44,12 + - node: + color: '#FFFFFFFF' + id: WarnEndE + decals: + 4879: -11,70 + 4880: -6,70 + - node: + color: '#FFFFFFFF' + id: WarnEndW + decals: + 4878: -12,70 + 4881: -7,70 + - node: + color: '#DE3A3A96' + id: WarnLineE + decals: + 2299: 70,62 + 2300: 70,61 + 2336: 66,59 + 2337: 66,58 + 2338: 66,57 + 2342: 70,59 + 2343: 70,58 + 2346: 71,56 + 2347: 71,55 + 2355: 66,54 + 2356: 66,53 + 2357: 66,52 + 2358: 66,51 + 2359: 66,50 + 2360: 66,49 + 2361: 66,48 + 2362: 66,47 + 2445: 82,30 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 549: -18,8 + 550: -16,12 + 1246: -23,44 + 1247: -23,45 + 1262: -25,11 + 1292: -11,41 + 1293: -11,40 + 1299: -4,39 + 1306: -4,40 + 1858: 36,4 + 1866: 34,7 + 1867: 37,11 + 1868: 37,10 + 1876: 39,6 + 1884: 38,13 + 1929: 42,19 + 2139: 62,18 + 2165: 53,21 + 2199: 21,63 + 2200: 21,62 + 2214: 20,65 + 2215: 20,66 + 2263: 33,20 + 2279: 21,44 + 2292: 81,62 + 2293: 81,61 + 2294: 81,60 + 2295: 81,59 + 2366: 71,54 + 2374: 62,47 + 2388: 51,53 + 2394: 47,52 + 2402: 42,48 + 2405: 57,57 + 2458: 73,15 + 2459: 72,18 + 2463: 74,8 + 2466: 74,6 + 2470: 76,4 + 2471: 76,3 + 2475: 74,1 + 2478: 74,-1 + 2493: 67,2 + 2496: 67,4 + 2708: 6,64 + 3817: 48,3 + 3818: 48,0 + 3819: 48,-3 + 3825: 53,-3 + 3826: 53,0 + 3827: 53,3 + 3835: 52,-1 + 3836: 52,0 + 4278: -9,16 + 4282: 1,25 + 4381: -3,49 + 4382: -3,48 + 4383: -3,47 + 4384: 7,49 + 4385: 7,48 + 4386: 7,47 + 4408: 3,62 + 4409: 3,63 + 4410: 3,64 + 4423: 18,49 + 4424: 18,48 + 4425: 18,47 + 4426: 27,49 + 4427: 27,48 + 4428: 27,47 + 4443: 37,49 + 4444: 37,48 + 4445: 37,47 + 4473: 20,21 + 4474: 20,19 + 4475: 20,20 + 4489: 43,35 + 4490: 43,34 + 4491: 43,33 + 4492: 49,35 + 4493: 49,34 + 4494: 49,33 + 4516: 63,35 + 4517: 63,34 + 4518: 63,33 + 4519: 67,35 + 4520: 67,34 + 4521: 67,33 + 4551: 79,59 + 4552: 79,60 + 4553: 79,61 + 4554: 79,62 + 4565: 70,11 + 4566: 70,10 + 4567: 70,10 + 4568: 70,9 + 4617: 40,-15 + 4618: 40,-14 + 4619: 40,-13 + 4620: 40,-12 + 4621: 40,-11 + 4622: 40,-10 + 4623: 40,-9 + 4632: 34,-6 + 4708: 4,21 + 4709: 4,20 + 4710: 4,19 + 4752: 29,-1 + 4753: 27,1 + 4754: 27,2 + 4759: 24,-1 + 4760: 26,-1 + 4919: -27,74 + 4920: -27,73 + 4921: -28,74 + 4922: -28,73 + - node: + zIndex: 100 + color: '#FFFFFFFF' + id: WarnLineE + decals: + 2890: 5,24 + - node: + color: '#D381C996' + id: WarnLineGreyscaleN + decals: + 2147: 56,22 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleN + decals: + 2956: -15,65 + - node: + color: '#D381C996' + id: WarnLineGreyscaleW + decals: + 2169: 58,16 + 2170: 58,15 + - node: + color: '#DE3A3A96' + id: WarnLineN + decals: + 2303: 71,60 + 2315: 63,59 + 2334: 67,60 + 2348: 71,54 + 2349: 69,54 + 2350: 70,54 + 2353: 67,55 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 308: 21,47 + 561: 7,9 + 1257: -23,17 + 1261: -23,21 + 1372: -34,25 + 1859: 31,7 + 1862: 35,3 + 1870: 36,9 + 1871: 35,9 + 1954: 38,19 + 1957: 43,23 + 2135: 62,28 + 2181: 51,29 + 2190: 47,25 + 2201: 20,62 + 2207: 16,65 + 2235: 42,56 + 2290: 75,59 + 2377: 60,46 + 2397: 47,50 + 2442: 81,21 + 2473: 75,2 + 2487: 71,2 + 2488: 70,2 + 2491: 68,3 + 2525: 64,0 + 2526: 65,0 + 2527: 66,0 + 3833: 51,-2 + 4201: -16,26 + 4202: -15,26 + 4366: -1,24 + 4367: 0,24 + 4368: 1,24 + 4372: -1,44 + 4373: 0,44 + 4374: 1,44 + 4390: 6,54 + 4391: 5,54 + 4392: 4,54 + 4402: 6,61 + 4403: 5,61 + 4404: 4,61 + 4405: 4,65 + 4406: 5,65 + 4407: 6,65 + 4414: 11,46 + 4415: 12,46 + 4416: 13,46 + 4432: 30,46 + 4433: 31,46 + 4434: 32,46 + 4435: 33,46 + 4446: 31,36 + 4447: 32,36 + 4448: 33,36 + 4455: 31,32 + 4456: 32,32 + 4457: 33,32 + 4458: 30,22 + 4459: 31,22 + 4460: 32,22 + 4461: 33,22 + 4468: 23,18 + 4469: 25,18 + 4476: 7,18 + 4477: 8,18 + 4478: 11,18 + 4479: 10,18 + 4498: 50,36 + 4499: 51,36 + 4500: 52,36 + 4501: 55,36 + 4502: 56,36 + 4503: 57,36 + 4504: 56,32 + 4505: 55,32 + 4506: 54,32 + 4525: 66,32 + 4526: 65,32 + 4527: 64,32 + 4534: 65,36 + 4535: 66,36 + 4536: 64,36 + 4537: 70,36 + 4538: 69,36 + 4544: 64,52 + 4545: 65,52 + 4546: 66,52 + 4555: 64,22 + 4556: 65,22 + 4557: 66,22 + 4596: 22,-18 + 4597: 23,-18 + 4598: 24,-18 + 4599: 25,-18 + 4600: 26,-18 + 4601: 27,-18 + 4602: 28,-18 + 4603: 29,-18 + 4604: 30,-18 + 4605: 31,-18 + 4608: 33,-17 + 4609: 34,-17 + 4610: 35,-17 + 4611: 36,-17 + 4612: 37,-17 + 4613: 38,-17 + 4749: 31,0 + 4750: 30,0 + 4756: 28,3 + 4871: 43,12 + 4891: -35,71 + 4892: -34,71 + 4893: -33,71 + 4894: -32,71 + 4895: -31,71 + 4896: -30,71 + 4897: -29,71 + 4898: -28,71 + 4899: -28,70 + 4900: -29,70 + 4901: -30,70 + 4902: -31,70 + 4903: -32,70 + 4904: -33,70 + 4905: -34,70 + 4906: -35,70 + 4907: -36,70 + - node: + color: '#DE3A3A96' + id: WarnLineS + decals: + 2310: 62,62 + 2311: 62,61 + 2317: 64,58 + 2318: 64,57 + 2319: 64,56 + 2320: 64,55 + 2321: 64,54 + 2322: 64,53 + 2323: 64,52 + 2324: 64,51 + 2325: 64,50 + 2326: 64,49 + 2327: 64,48 + 2328: 68,57 + 2329: 68,58 + 2330: 68,59 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 548: -16,8 + 551: -14,12 + 1250: -19,44 + 1251: -19,45 + 1252: -12,32 + 1265: -23,11 + 1276: -12,44 + 1277: -12,45 + 1305: -7,40 + 1370: -33,24 + 1375: -33,23 + 1395: -37,26 + 1690: -34,30 + 1865: 38,4 + 1877: 41,7 + 1878: 41,8 + 1879: 41,9 + 1880: 41,11 + 1881: 41,12 + 1882: 41,13 + 2137: 64,18 + 2141: 62,21 + 2197: 21,63 + 2198: 21,62 + 2212: 22,65 + 2213: 22,66 + 2266: 35,20 + 2273: 9,37 + 2280: 20,44 + 2287: 76,60 + 2288: 76,61 + 2289: 76,62 + 2368: 73,54 + 2372: 64,47 + 2380: 57,49 + 2386: 53,53 + 2391: 49,52 + 2399: 44,48 + 2430: 59,57 + 2453: 75,15 + 2454: 74,18 + 2483: 72,-1 + 2484: 72,0 + 2485: 72,1 + 2504: 72,5 + 2505: 72,6 + 2506: 72,7 + 2507: 72,8 + 2529: 63,2 + 2530: 63,3 + 2531: 63,4 + 3816: 49,3 + 3820: 49,-3 + 3821: 49,0 + 3822: 54,0 + 3823: 54,3 + 3824: 54,-3 + 3840: 50,0 + 3841: 50,-1 + 3857: -37,27 + 3858: -37,25 + 4277: -7,16 + 4285: 3,25 + 4378: -3,47 + 4379: -3,48 + 4380: -3,49 + 4387: 7,47 + 4388: 7,48 + 4389: 7,49 + 4411: 3,62 + 4412: 3,63 + 4413: 3,64 + 4420: 18,47 + 4421: 18,48 + 4422: 18,49 + 4429: 27,49 + 4430: 27,48 + 4431: 27,47 + 4440: 37,47 + 4441: 37,48 + 4442: 37,49 + 4470: 20,19 + 4471: 20,20 + 4472: 20,21 + 4486: 43,33 + 4487: 43,34 + 4488: 43,35 + 4495: 49,33 + 4496: 49,34 + 4497: 49,35 + 4513: 63,33 + 4514: 63,34 + 4515: 63,35 + 4522: 67,35 + 4523: 67,34 + 4524: 67,33 + 4547: 81,59 + 4548: 81,60 + 4549: 81,61 + 4550: 81,62 + 4561: 70,11 + 4562: 70,9 + 4563: 70,10 + 4564: 70,11 + 4584: 20,-8 + 4585: 20,-10 + 4586: 20,-9 + 4587: 20,-11 + 4588: 20,-12 + 4589: 20,-13 + 4590: 20,-14 + 4591: 20,-15 + 4592: 20,-16 + 4705: 4,19 + 4706: 4,20 + 4707: 4,21 + 4757: 28,-1 + 4758: 26,-1 + 4917: -27,74 + 4918: -27,73 + 4923: -26,74 + 4924: -26,73 + - node: + zIndex: 100 + color: '#FFFFFFFF' + id: WarnLineS + decals: + 2888: 7,24 + - node: + color: '#DE3A3A96' + id: WarnLineW + decals: + 2296: 67,62 + 2297: 69,62 + 2302: 71,60 + 2305: 66,62 + 2306: 65,62 + 2307: 64,62 + 2308: 63,62 + 2340: 67,56 + 2364: 67,46 + 2728: 73,11 + 2729: 72,11 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 1243: -22,43 + 1244: -21,43 + 1245: -20,43 + 1255: -23,19 + 1259: -23,15 + 1270: -17,43 + 1271: -16,43 + 1272: -15,43 + 1273: -14,43 + 1274: -13,43 + 1295: -10,39 + 1296: -9,39 + 1297: -8,39 + 1308: -3,38 + 1396: -32,28 + 1688: -35,29 + 1742: -20,62 + 1743: -19,62 + 1744: -18,62 + 1745: -17,62 + 1746: -16,62 + 1747: -15,62 + 1857: 31,5 + 1873: 37,7 + 1874: 38,7 + 1922: 38,17 + 2144: 62,26 + 2154: 55,19 + 2155: 56,19 + 2156: 57,19 + 2157: 58,19 + 2158: 59,19 + 2164: 52,22 + 2176: 51,31 + 2187: 47,26 + 2191: -29,50 + 2192: -28,50 + 2193: -27,50 + 2194: -4,64 + 2202: 20,60 + 2204: 16,63 + 2233: 42,54 + 2370: 75,57 + 2383: 60,44 + 2439: 81,44 + 2468: 75,5 + 2498: 68,3 + 2501: 70,4 + 2502: 71,4 + 2591: 47,48 + 3838: 51,1 + 4199: -16,26 + 4200: -15,26 + 4369: 1,24 + 4370: 0,24 + 4371: -1,24 + 4375: 1,44 + 4376: 0,44 + 4377: -1,44 + 4393: 4,54 + 4394: 5,54 + 4395: 6,54 + 4396: 6,61 + 4397: 5,61 + 4398: 4,61 + 4399: 4,65 + 4400: 5,65 + 4401: 6,65 + 4417: 11,46 + 4418: 12,46 + 4419: 13,46 + 4436: 30,46 + 4437: 31,46 + 4438: 32,46 + 4439: 33,46 + 4449: 31,36 + 4450: 32,36 + 4451: 33,36 + 4452: 33,32 + 4453: 32,32 + 4454: 31,32 + 4462: 30,22 + 4463: 31,22 + 4464: 32,22 + 4465: 33,22 + 4466: 23,18 + 4467: 25,18 + 4480: 7,18 + 4481: 8,18 + 4482: 11,18 + 4483: 10,18 + 4507: 50,36 + 4508: 52,36 + 4509: 51,36 + 4510: 55,36 + 4511: 56,36 + 4512: 57,36 + 4528: 64,32 + 4529: 65,32 + 4530: 66,32 + 4531: 66,36 + 4532: 64,36 + 4533: 65,36 + 4539: 70,36 + 4540: 69,36 + 4541: 66,52 + 4542: 65,52 + 4543: 64,52 + 4558: 64,22 + 4559: 65,22 + 4560: 66,22 + 4569: 34,-6 + 4570: 33,-6 + 4571: 32,-6 + 4572: 30,-6 + 4573: 31,-6 + 4574: 29,-6 + 4575: 28,-6 + 4576: 25,-6 + 4577: 24,-6 + 4578: 27,-6 + 4579: 23,-6 + 4580: 22,-6 + 4627: 38,-7 + 4628: 37,-7 + 4629: 36,-7 + 4630: 35,-7 + 4636: 26,-6 + 4873: 43,10 + 4882: -36,70 + 4883: -35,70 + 4884: -34,70 + 4885: -32,70 + 4886: -33,70 + 4887: -31,70 + 4888: -30,70 + 4889: -29,70 + 4890: -28,70 + 4908: -36,69 + 4909: -35,69 + 4910: -34,69 + 4911: -33,69 + 4912: -32,69 + 4913: -31,69 + 4914: -30,69 + 4915: -29,69 + 4916: -28,69 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 4851: 71,31 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndS + decals: + 4850: 71,30 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 4852: 72,31 + 4853: 73,31 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 4854: 72,31 + 4856: 73,30 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 4855: 73,30 + - node: + color: '#951710FF' + id: prolizard + decals: + 2838: 27.004784,64.98674 + - node: + color: '#951710FF' + id: star + decals: + 2837: 28,64 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 62050 + -1,0: + 0: 63688 + 1: 17 + 0,1: + 0: 65535 + -1,1: + 0: 65535 + 0,2: + 0: 65535 + -1,2: + 0: 65535 + 0,3: + 0: 48015 + -1,3: + 0: 56604 + 0,4: + 0: 61631 + 1,0: + 1: 31 + 0: 56320 + 1,1: + 0: 54749 + 1,2: + 0: 65497 + 1,3: + 0: 55773 + 1,4: + 0: 63711 + 1,-1: + 1: 52416 + 2,1: + 0: 61559 + 2,2: + 0: 65308 + 2,3: + 0: 63711 + 2,-1: + 1: 65280 + 2,0: + 0: 26144 + 2,4: + 0: 65023 + 3,0: + 0: 56785 + 3,1: + 0: 65529 + 3,2: + 0: 56719 + 3,3: + 0: 56541 + 3,-1: + 1: 62208 + 3,4: + 0: 64729 + 4,0: + 0: 37136 + 4,1: + 0: 20444 + 4,2: + 0: 22374 + 4,3: + 0: 60933 + -4,0: + 0: 30583 + -4,-1: + 0: 30483 + 1: 8 + -5,0: + 0: 3276 + 1: 273 + -4,1: + 0: 65522 + -4,2: + 0: 53495 + -5,2: + 0: 63022 + -4,3: + 0: 7647 + -5,3: + 0: 62463 + -4,4: + 0: 64271 + -3,0: + 1: 2001 + -3,1: + 0: 30583 + -3,2: + 0: 65394 + -3,3: + 0: 4095 + -3,-1: + 1: 4369 + -3,4: + 0: 61903 + -2,0: + 1: 240 + 0: 28672 + -2,1: + 0: 65399 + -2,2: + 0: 65287 + -2,3: + 0: 61160 + -2,4: + 0: 53487 + -1,4: + 0: 61917 + -8,0: + 2: 4368 + 3: 52416 + -9,0: + 2: 52416 + 1: 4369 + -8,1: + 0: 64848 + 1: 160 + -9,1: + 1: 433 + 0: 64576 + -8,2: + 0: 65535 + -9,2: + 0: 64766 + 1: 257 + -8,3: + 0: 65535 + -9,3: + 0: 64766 + 1: 257 + -8,4: + 0: 65535 + -8,-1: + 1: 58030 + -7,0: + 3: 4368 + 1: 17476 + -7,1: + 0: 45328 + 1: 100 + -7,2: + 0: 65339 + -7,3: + 0: 65535 + -7,-1: + 1: 61695 + -7,4: + 0: 65535 + -6,1: + 0: 61986 + -6,2: + 0: 62191 + -6,0: + 1: 32563 + -6,-1: + 1: 12847 + -6,3: + 0: 61102 + -6,4: + 0: 28514 + -5,-1: + 1: 4369 + 0: 52364 + -5,1: + 0: 26182 + -5,4: + 0: 65392 + -4,5: + 0: 65291 + -5,5: + 0: 30591 + -4,6: + 0: 29695 + -4,7: + 0: 30583 + -5,6: + 0: 63344 + -5,7: + 0: 47359 + -4,8: + 0: 26478 + -3,5: + 0: 61167 + -3,6: + 0: 62702 + -3,7: + 0: 65279 + -3,8: + 0: 65535 + -2,5: + 0: 53727 + -2,6: + 0: 64733 + -2,7: + 0: 57297 + -2,8: + 0: 61156 + -1,5: + 0: 56575 + -1,6: + 0: 48057 + -1,7: + 0: 49080 + 0,5: + 0: 30719 + 0,6: + 0: 46067 + 0,7: + 0: 46075 + -1,8: + 0: 64504 + 0,8: + 0: 48059 + 1,5: + 0: 45311 + 1,6: + 0: 64543 + 1,7: + 0: 45311 + 1,8: + 0: 48127 + 2,5: + 0: 28927 + 2,6: + 0: 52975 + 2,7: + 0: 64797 + 2,8: + 0: 65535 + 3,5: + 0: 28671 + 3,6: + 0: 14327 + 3,7: + 0: 65467 + 3,8: + 0: 65309 + 4,4: + 0: 62384 + 4,5: + 0: 22527 + 4,6: + 0: 30711 + 4,7: + 0: 65535 + 0,9: + 0: 48051 + -1,9: + 0: 48011 + 0,10: + 0: 46011 + -1,10: + 0: 64395 + 0,11: + 0: 63347 + -1,11: + 0: 64729 + 0,12: + 0: 56575 + 1,9: + 0: 65520 + 1,10: + 0: 62207 + 1,11: + 0: 64767 + 1,12: + 0: 30719 + 2,9: + 0: 48049 + 2,10: + 0: 53435 + 2,11: + 0: 63709 + 2,12: + 0: 63231 + 3,9: + 0: 30582 + 3,10: + 0: 45815 + 3,11: + 0: 62399 + 3,12: + 0: 28927 + 4,8: + 0: 65487 + 4,9: + 0: 65524 + 4,10: + 0: 30520 + 4,11: + 0: 61559 + -5,8: + 0: 49075 + -4,9: + 0: 30590 + -5,9: + 0: 63667 + -4,10: + 0: 62071 + -5,10: + 0: 45311 + -4,11: + 0: 61695 + -5,11: + 0: 33211 + -4,12: + 0: 64511 + -3,9: + 0: 65279 + -3,10: + 0: 45823 + -3,11: + 0: 61627 + -3,12: + 0: 53759 + -2,9: + 0: 65422 + -2,10: + 0: 56351 + -2,11: + 0: 61661 + -2,12: + 0: 53503 + -1,12: + 0: 53503 + 5,4: + 0: 63740 + 5,5: + 0: 61695 + 5,6: + 0: 61439 + 5,3: + 0: 65263 + 5,7: + 0: 60942 + 5,8: + 0: 61183 + 6,4: + 0: 62199 + 6,5: + 0: 58623 + 6,6: + 0: 61182 + 6,3: + 0: 32631 + 6,7: + 0: 57582 + 6,8: + 0: 61183 + 7,4: + 0: 61559 + 7,5: + 0: 40191 + 7,6: + 0: 48059 + 7,7: + 0: 47295 + 7,8: + 0: 65531 + 8,4: + 0: 45967 + 8,5: + 0: 13247 + 1: 32768 + 8,6: + 0: 13107 + 1: 32776 + 8,7: + 0: 13107 + 1: 2056 + 4,12: + 0: 61695 + 5,9: + 0: 56796 + 5,10: + 0: 47309 + 5,11: + 0: 62139 + 5,12: + 0: 63743 + 6,9: + 0: 60943 + 6,10: + 0: 56558 + 6,11: + 0: 61663 + 6,12: + 0: 12799 + 1: 32768 + 7,9: + 0: 48011 + 7,10: + 0: 48059 + 7,11: + 0: 64667 + 7,12: + 0: 16639 + 1: 4096 + 8,8: + 0: 65531 + 8,9: + 0: 65459 + 8,10: + 0: 46011 + 8,11: + 0: 62395 + 8,3: + 0: 65520 + 9,4: + 0: 29919 + 9,5: + 0: 58999 + 9,3: + 0: 55772 + 9,6: + 1: 176 + 0: 57344 + 9,7: + 0: 1774 + 9,8: + 0: 65523 + 10,4: + 0: 62207 + 10,5: + 0: 63743 + 10,6: + 0: 28688 + 1: 160 + 10,7: + 0: 28791 + 10,3: + 0: 14523 + 11,4: + 0: 36607 + 11,5: + 0: 40157 + 11,6: + 1: 272 + 0: 52428 + 11,7: + 1: 257 + 0: 52428 + 11,3: + 0: 6007 + 12,4: + 0: 7163 + 12,5: + 0: 8157 + 12,6: + 0: 30711 + 12,7: + 0: 57297 + 8,12: + 0: 35071 + 1: 12288 + 9,9: + 0: 65520 + 9,10: + 0: 28735 + 9,11: + 0: 62071 + 9,12: + 0: 33023 + 10,8: + 0: 65520 + 10,9: + 0: 48048 + 10,10: + 0: 30507 + 10,11: + 0: 29303 + 10,12: + 0: 29055 + 11,8: + 0: 65520 + 11,9: + 0: 65522 + 11,10: + 0: 65535 + 11,11: + 0: 53503 + 11,12: + 0: 65437 + 12,8: + 0: 65520 + 12,9: + 0: 65500 + 12,10: + 0: 63325 + 12,11: + 0: 29183 + 4,13: + 0: 65535 + 3,13: + 0: 20991 + 4,14: + 0: 30511 + 4,15: + 0: 63344 + 3,15: + 0: 35571 + 4,16: + 0: 30705 + 5,13: + 0: 65535 + 5,14: + 0: 2047 + 5,15: + 0: 48031 + 6,13: + 0: 13107 + 1: 34952 + 6,14: + 0: 12595 + 1: 2184 + 6,15: + 0: 56735 + 6,16: + 0: 4317 + 1: 24576 + 7,14: + 1: 3328 + 0: 14 + 7,15: + 0: 45983 + 7,13: + 0: 61152 + 7,16: + 0: 825 + 1: 2048 + 8,15: + 0: 62207 + 0,13: + 0: 20941 + -1,13: + 0: 65421 + -1,14: + 0: 56735 + 0,14: + 0: 32608 + 0,15: + 0: 65287 + -1,15: + 0: 65293 + 0,16: + 0: 59151 + 1,13: + 0: 30719 + 1,14: + 0: 30583 + 1,15: + 0: 30583 + 1,16: + 0: 65407 + 2,13: + 0: 65535 + 2,14: + 0: 62719 + 2,15: + 0: 61695 + 2,16: + 0: 64783 + 3,14: + 0: 28753 + 3,16: + 0: 28387 + -5,12: + 0: 28808 + 1: 35 + -4,13: + 0: 65439 + -4,14: + 0: 40959 + -5,14: + 0: 20466 + -4,15: + 0: 35771 + -5,15: + 0: 65535 + -4,16: + 0: 13098 + -3,13: + 0: 65437 + -3,14: + 0: 64799 + -3,15: + 0: 5405 + -3,16: + 0: 63253 + -2,13: + 0: 65421 + -2,14: + 0: 56783 + -2,15: + 0: 65293 + -2,16: + 0: 30511 + -1,16: + 0: 15135 + 8,13: + 0: 61160 + 8,14: + 1: 672 + 0: 32768 + 8,16: + 0: 8751 + 1: 2048 + 9,14: + 1: 18 + 0: 63624 + 9,15: + 0: 36559 + 9,13: + 1: 514 + 0: 2184 + 9,16: + 0: 3822 + 10,13: + 0: 20471 + 10,14: + 0: 61247 + 10,15: + 0: 36654 + 10,16: + 0: 3003 + 11,13: + 0: 52700 + 11,14: + 0: 45967 + 11,15: + 0: 13195 + 1: 32768 + 11,16: + 0: 819 + 1: 32904 + 12,12: + 0: 26119 + 12,13: + 0: 3823 + 12,14: + 0: 47615 + 12,15: + 0: 51 + 1: 30848 + -9,4: + 0: 64766 + 1: 257 + -8,5: + 0: 12603 + 1: 128 + 2: 32768 + -9,5: + 0: 49406 + 1: 4353 + -8,6: + 0: 62259 + 2: 136 + -9,6: + 0: 65532 + -8,7: + 0: 4363 + 1: 52224 + -9,7: + 0: 1919 + -8,8: + 0: 13057 + 1: 2188 + -7,5: + 0: 34827 + 1: 48 + 2: 12288 + -7,6: + 2: 51 + 0: 63616 + -7,7: + 0: 61167 + -7,8: + 0: 61166 + -6,5: + 0: 48034 + -6,6: + 0: 65521 + -6,7: + 0: 46079 + -6,8: + 0: 61160 + -9,8: + 0: 65280 + 1: 7 + -8,9: + 0: 13107 + 1: 34824 + -9,9: + 0: 65535 + -8,10: + 1: 19640 + -9,10: + 1: 240 + -8,11: + 1: 4 + 0: 3072 + -8,12: + 1: 12 + 0: 55296 + -7,11: + 0: 4079 + -7,9: + 0: 61166 + -7,10: + 0: 58606 + -7,12: + 1: 10 + 0: 45824 + -6,9: + 0: 62392 + -6,10: + 1: 15 + 0: 57584 + -6,11: + 0: 3310 + -6,12: + 1: 250 + 0: 45056 + -11,9: + 1: 3080 + -11,10: + 1: 8 + -10,8: + 1: 4383 + 0: 52224 + -10,9: + 1: 4369 + 0: 52428 + -10,10: + 1: 241 + -11,6: + 1: 30583 + -11,7: + 1: 3815 + -11,4: + 1: 17440 + -11,5: + 1: 57444 + -10,4: + 4: 119 + 2: 28672 + -10,5: + 2: 119 + 1: 45056 + -10,6: + 2: 13104 + 0: 34944 + -10,7: + 1: 16 + 0: 4008 + -10,3: + 4: 28672 + 5: 119 + -11,1: + 1: 26304 + -11,2: + 1: 24644 + -11,3: + 1: 17476 + -10,1: + 1: 242 + 2: 28672 + -10,2: + 2: 119 + 5: 28672 + -10,0: + 1: 2048 + -9,-1: + 1: 61696 + -9,-4: + 1: 34952 + -9,-5: + 1: 34944 + -8,-4: + 1: 53487 + -8,-3: + 1: 45535 + -8,-5: + 1: 57584 + -8,-2: + 1: 41646 + -7,-4: + 1: 28735 + -7,-3: + 1: 61567 + -7,-2: + 1: 61695 + -7,-5: + 1: 12532 + -6,-4: + 1: 6559 + -6,-3: + 1: 8751 + -6,-2: + 1: 8751 + -6,-5: + 1: 39413 + -5,-4: + 1: 65280 + -5,-3: + 1: 6143 + 0: 34816 + -5,-2: + 1: 4369 + 0: 52428 + -4,-4: + 1: 65280 + -4,-3: + 1: 36607 + 0: 4352 + -4,-2: + 0: 13107 + 1: 34952 + -8,13: + 0: 56543 + -9,12: + 0: 32768 + 1: 768 + -9,13: + 0: 49288 + 1: 275 + -8,14: + 0: 36849 + -9,14: + 0: 36863 + -8,15: + 0: 63709 + -9,15: + 0: 63965 + -8,16: + 0: 65535 + -7,13: + 0: 48059 + -7,14: + 0: 4081 + -7,15: + 0: 56541 + -7,16: + 0: 56605 + -6,13: + 0: 48059 + -6,14: + 0: 8177 + -6,15: + 0: 45943 + -6,16: + 0: 30491 + -5,13: + 0: 30583 + -5,16: + 0: 65487 + -4,17: + 0: 819 + -5,17: + 0: 4095 + -4,18: + 1: 1792 + -5,18: + 1: 3840 + -4,19: + 1: 25207 + -5,19: + 1: 43775 + -3,17: + 0: 8999 + 1: 34816 + -2,17: + 0: 9767 + 1: 34816 + -1,17: + 0: 52235 + 1: 4352 + -1,18: + 0: 52428 + -1,19: + 0: 224 + 0,17: + 0: 65287 + 0,18: + 0: 65535 + 0,19: + 0: 4095 + -9,16: + 0: 65487 + -8,17: + 0: 65535 + -9,17: + 0: 61439 + -8,18: + 0: 65535 + -9,18: + 0: 61166 + -8,19: + 0: 55 + 1: 63488 + -9,19: + 0: 140 + 1: 62224 + -8,20: + 1: 5 + -7,17: + 0: 56797 + -7,18: + 0: 4081 + -7,19: + 1: 4028 + -6,17: + 0: 14199 + -6,18: + 0: 1904 + -6,19: + 1: 47871 + -6,20: + 1: 12 + -5,20: + 1: 90 + -11,13: + 1: 24816 + -11,12: + 1: 49152 + -11,14: + 1: 64 + -10,12: + 1: 65280 + -10,13: + 1: 287 + 0: 17472 + -10,14: + 0: 759 + -10,17: + 1: 25700 + -10,18: + 1: 51404 + -10,16: + 1: 17408 + -10,19: + 1: 35016 + -9,20: + 1: 5 + 0,20: + 1: 39 + 1,17: + 0: 65535 + 1,18: + 0: 65535 + 1,19: + 0: 36863 + 1,20: + 1: 1123 + 2,17: + 0: 65309 + 2,18: + 0: 65535 + 2,19: + 0: 14199 + 3,17: + 0: 21958 + 3,18: + 0: 24533 + 3,19: + 1: 272 + 0: 1220 + 2,20: + 1: 744 + 4,17: + 0: 4470 + 4,18: + 0: 273 + 5,16: + 0: 2032 + 5,17: + 1: 2 + 6,17: + 1: 44706 + 6,18: + 1: 44706 + 6,19: + 1: 44706 + 6,20: + 1: 226 + 7,17: + 1: 65522 + 7,18: + 1: 65522 + 7,19: + 1: 65522 + 7,20: + 1: 35058 + 8,17: + 1: 45047 + 8,18: + 1: 44962 + 8,19: + 1: 44962 + 4,-1: + 1: 4980 + 5,1: + 0: 4049 + 5,2: + 0: 65535 + 5,0: + 6: 2184 + 5,-1: + 6: 32768 + 1: 57 + 6,0: + 6: 817 + 0: 34944 + 6,1: + 0: 61424 + 6,2: + 0: 30578 + 6,-1: + 6: 4096 + 0: 57344 + 1: 138 + 7,0: + 0: 55807 + 7,1: + 0: 63964 + 7,2: + 1: 4368 + 0: 52416 + 7,3: + 0: 1904 + 7,-1: + 0: 61440 + 1: 170 + 8,0: + 0: 63694 + 8,1: + 0: 55551 + 8,2: + 0: 44968 + 4,-2: + 1: 18684 + 4,-4: + 1: 51436 + 4,-3: + 1: 59592 + 4,-5: + 1: 64740 + 5,-4: + 0: 39185 + 5,-3: + 0: 6553 + 5,-2: + 0: 3633 + 1: 61696 + 5,-5: + 0: 15872 + 1: 510 + 6,-4: + 0: 20464 + 6,-3: + 0: 65350 + 6,-2: + 0: 3840 + 1: 61440 + 7,-4: + 0: 45872 + 7,-3: + 0: 13235 + 7,-2: + 0: 3840 + 1: 61440 + 8,-4: + 0: 65280 + 8,-3: + 0: 4095 + 8,-2: + 0: 63474 + 1: 2048 + 8,-1: + 0: 43527 + 1: 8 + 8,-5: + 0: 61696 + 1: 3829 + 9,-4: + 0: 13064 + 9,-3: + 0: 819 + 9,-2: + 0: 12536 + 1: 36608 + 9,-1: + 1: 34821 + 0: 4866 + 9,-5: + 0: 61440 + 1: 3921 + 9,0: + 0: 4113 + 1: 3276 + 10,-4: + 0: 4369 + 1: 43690 + 10,-3: + 0: 4369 + 1: 41642 + 10,-2: + 0: 1 + 1: 52498 + 10,-5: + 1: 48058 + 10,-1: + 1: 558 + 0: 34944 + 10,0: + 0: 20206 + 11,-4: + 1: 61416 + 11,-3: + 1: 35720 + 11,-2: + 1: 4047 + 11,-1: + 0: 61166 + 11,0: + 0: 61166 + 11,-5: + 1: 61416 + 12,-4: + 1: 49080 + 12,-3: + 1: 248 + 0: 57344 + 12,-1: + 0: 65535 + 9,1: + 0: 64543 + 9,2: + 0: 65535 + 10,1: + 0: 47567 + 10,2: + 0: 47547 + 11,1: + 0: 47886 + 11,2: + 0: 3955 + 12,0: + 0: 65535 + 12,1: + 0: 65519 + 12,2: + 0: 32626 + 12,3: + 0: 48050 + 13,4: + 0: 35771 + 13,5: + 0: 44027 + 13,6: + 0: 65535 + 13,7: + 0: 57308 + 13,3: + 0: 46008 + 13,8: + 0: 65532 + 14,4: + 0: 65535 + 14,5: + 0: 4095 + 14,6: + 0: 7645 + 14,7: + 0: 57309 + 14,3: + 0: 61695 + 14,8: + 0: 65521 + 15,5: + 0: 17781 + 15,6: + 0: 17781 + 15,7: + 0: 32631 + 15,4: + 0: 20010 + 15,3: + 0: 43697 + 16,4: + 0: 65535 + 16,5: + 0: 30719 + 16,6: + 0: 63351 + 16,7: + 0: 30583 + 13,0: + 0: 65535 + 13,1: + 0: 4895 + 6: 52224 + 13,2: + 0: 65520 + 13,-1: + 0: 65535 + 14,0: + 0: 13107 + 1: 34952 + 14,1: + 0: 3 + 1: 61064 + 14,-1: + 0: 13107 + 1: 34952 + 14,2: + 1: 142 + 0: 8736 + 15,0: + 1: 12291 + 0: 34944 + 15,1: + 1: 48 + 0: 2184 + 15,2: + 1: 272 + 0: 52428 + 16,0: + 0: 65527 + 16,1: + 0: 12287 + 16,2: + 0: 65535 + 16,3: + 0: 65527 + 13,9: + 0: 65535 + 13,10: + 0: 65455 + 13,11: + 0: 20479 + 13,12: + 6: 61439 + 14,9: + 0: 65523 + 14,10: + 0: 47927 + 14,11: + 0: 35643 + 14,12: + 0: 9854 + 15,8: + 0: 65520 + 15,9: + 0: 30576 + 15,10: + 0: 30567 + 15,11: + 0: 63255 + 15,12: + 0: 30471 + 16,8: + 0: 65527 + 16,9: + 0: 65535 + 16,10: + 0: 65399 + 16,11: + 0: 32767 + 12,-2: + 0: 43246 + 12,-5: + 1: 49080 + 13,-4: + 1: 61416 + 13,-3: + 1: 35064 + 0: 12288 + 13,-2: + 0: 8243 + 1: 2184 + 13,-5: + 1: 61416 + 14,-4: + 1: 49080 + 14,-2: + 1: 36857 + 14,-3: + 1: 17032 + 14,-5: + 1: 49080 + 15,-2: + 1: 16 + 0: 4096 + 15,-1: + 1: 245 + 16,-1: + 1: 1533 + 16,12: + 0: 30583 + 17,8: + 0: 65520 + 17,9: + 0: 65527 + 17,10: + 0: 56591 + 17,11: + 0: 3581 + 17,7: + 0: 65535 + 17,12: + 0: 32631 + 18,8: + 0: 49072 + 18,9: + 0: 56784 + 18,10: + 0: 60943 + 18,11: + 0: 57598 + 18,7: + 0: 65535 + 18,12: + 0: 40959 + 19,8: + 0: 49072 + 19,9: + 0: 32624 + 19,10: + 0: 63239 + 19,11: + 0: 61559 + 19,7: + 0: 32631 + 20,8: + 0: 65535 + 20,9: + 0: 30719 + 20,10: + 0: 65319 + 20,11: + 0: 16175 + 17,4: + 0: 65528 + 17,5: + 0: 61695 + 17,6: + 0: 65535 + 17,3: + 0: 61152 + 18,4: + 0: 57304 + 18,5: + 0: 20573 + 18,6: + 0: 61909 + 18,3: + 0: 64433 + 19,4: + 0: 53523 + 19,5: + 0: 7 + 1: 1792 + 19,6: + 0: 10103 + 19,3: + 0: 4112 + 1: 204 + 20,4: + 0: 12288 + 1: 34816 + 20,5: + 0: 65522 + 20,6: + 0: 32767 + 20,7: + 0: 63346 + 17,0: + 0: 65024 + 1: 4 + 17,2: + 0: 65521 + 17,1: + 0: 14 + 1: 17408 + 17,-1: + 1: 17532 + 18,0: + 0: 65407 + 18,1: + 0: 63487 + 18,2: + 0: 30583 + 18,-1: + 0: 30498 + 1: 8 + 19,0: + 0: 4355 + 19,1: + 0: 12305 + 19,2: + 1: 12592 + 20,3: + 1: 2288 + 17,-4: + 1: 17476 + 17,-3: + 1: 17476 + 17,-2: + 1: 50244 + 18,-2: + 0: 8192 + 1: 32768 + 19,-2: + 1: 8091 + 19,-1: + 1: 785 + 19,-4: + 1: 4369 + 19,-3: + 1: 47889 + 20,-2: + 1: 3978 + 12,-7: + 1: 64224 + 11,-7: + 1: 61440 + 12,-6: + 1: 49080 + 11,-6: + 1: 61416 + 13,-7: + 1: 62000 + 13,-6: + 1: 61416 + 14,-7: + 1: 61440 + 14,-6: + 1: 49080 + 8,-6: + 1: 20736 + 7,-5: + 1: 253 + 0: 3840 + 10,-7: + 1: 32768 + 10,-6: + 1: 34952 + 8,20: + 1: 64242 + 9,17: + 1: 65522 + 9,18: + 1: 65522 + 9,19: + 1: 65522 + 9,20: + 1: 242 + 10,17: + 1: 9006 + 10,18: + 1: 8994 + 10,19: + 1: 8994 + 10,20: + 1: 50 + 11,17: + 1: 71 + 12,16: + 1: 4368 + -7,-6: + 1: 49152 + -6,-6: + 1: 28672 + 13,13: + 0: 12016 + 13,14: + 0: 7419 + 13,15: + 1: 4400 + 14,13: + 0: 6014 + 14,14: + 0: 37883 + 14,15: + 0: 2184 + 15,13: + 0: 1911 + 15,14: + 0: 53623 + 15,15: + 0: 24031 + 15,16: + 0: 85 + 16,13: + 0: 63351 + 16,14: + 0: 32639 + 16,15: + 0: 4095 + 16,16: + 1: 39 + 17,13: + 0: 65287 + 17,14: + 0: 30719 + 17,15: + 0: 22399 + 17,16: + 0: 85 + 18,13: + 0: 36847 + 18,14: + 0: 63726 + 18,15: + 0: 4095 + 18,16: + 1: 143 + 19,12: + 0: 52688 + 19,13: + 0: 58617 + 19,14: + 0: 61679 + 19,15: + 0: 4095 + 19,16: + 1: 47 + 20,12: + 0: 4368 + 20,13: + 0: 16 + 1: 25668 + 20,14: + 1: 34 + 0: 8192 + 20,15: + 0: 546 + 21,8: + 0: 65535 + 21,9: + 0: 2047 + 21,10: + 1: 26351 + 21,7: + 0: 63232 + 1: 15 + 21,11: + 1: 9830 + 22,9: + 1: 13926 + 22,10: + 1: 1 + 22,8: + 1: 26214 + 22,7: + 1: 26161 + 21,4: + 1: 35320 + 21,5: + 1: 26350 + 21,6: + 1: 58982 + 21,3: + 1: 63604 + 21,0: + 1: 17612 + 21,-1: + 1: 17604 + 21,1: + 1: 19652 + 21,2: + 1: 19652 + 22,0: + 1: 4368 + 22,1: + 1: 273 + 22,2: + 1: 771 + 22,3: + 1: 1799 + -4,20: + 1: 1 + 5,-6: + 1: 41472 + 6,-5: + 1: 242 + 0: 3840 + 7,-6: + 1: 16384 + 20,-3: + 1: 40960 + 21,-2: + 1: 18314 + 21,-3: + 1: 43520 + 22,-2: + 1: 28785 + 22,-1: + 1: 12336 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: NavMap + - type: BecomesStation + id: Gaxstation +- proto: AirAlarm + entities: + - uid: 3 + components: + - type: Transform + pos: 75.5,63.5 + parent: 2 + - type: DeviceList + devices: + - 11851 + - 8552 + - 8549 + - 8550 + - 8551 + - 8554 + - 8553 + - 8555 + - 11849 + - 11850 + - 11848 + - 422 + - 421 + - 8915 + - 8916 + - 8917 + - 8919 + - 8920 + - 8918 + - 8922 + - uid: 4 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,40.5 + parent: 2 + - type: DeviceList + devices: + - 464 + - 8923 + - 8924 + - 11831 + - 11680 + - 8551 + - 8550 + - 8549 + - 8570 + - 8571 + - 8572 + - 8597 + - 8599 + - 8598 + - 11694 + - 11841 + - 429 + - 8564 + - 8565 + - 8566 + - 8575 + - 8574 + - 8573 + - 8569 + - 8568 + - 8567 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 423 + - 11683 + - 11834 + - 11837 + - 11686 + - 8582 + - 8583 + - 8581 + - 8580 + - 8562 + - 8563 + - 8559 + - 8586 + - 8584 + - 428 + - 426 + - 8585 + - 424 + - 8576 + - 8588 + - 8578 + - 425 + - 11687 + - 8589 + - 11838 + - 427 + - 8577 + - 304 + - 18618 + - 18619 + - uid: 6 + components: + - type: Transform + pos: 74.5,46.5 + parent: 2 + - type: DeviceList + devices: + - 423 + - 8557 + - 8558 + - 8559 + - 365 + - 11833 + - 11832 + - 11834 + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,25.5 + parent: 2 + - type: DeviceList + devices: + - 11838 + - 11687 + - 11688 + - 11839 + - 428 + - 425 + - 8590 + - 8588 + - uid: 8 + components: + - type: Transform + pos: 71.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 11695 + - 11843 + - 11694 + - 11841 + - 429 + - 364 + - 11696 + - 8579 + - 8594 + - 8593 + - 8592 + - 8599 + - 8598 + - 8597 + - 8596 + - 8595 + - 11844 + - 8872 + - uid: 9 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 435 + - 11845 + - 8601 + - 8600 + - 8594 + - 8593 + - 8592 + - 11847 + - 11699 + - 11846 + - 11698 + - 434 + - 8604 + - 8603 + - 8602 + - uid: 10 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 11808 + - 11653 + - 436 + - 11805 + - 11652 + - 420 + - 419 + - 11810 + - 8610 + - 8609 + - 8608 + - 8607 + - 8606 + - 8605 + - 8619 + - 8618 + - 8617 + - 8627 + - 8628 + - 8629 + - 8573 + - 8574 + - 8575 + - 8612 + - 8611 + - 8641 + - 8640 + - 8623 + - 8925 + - uid: 11 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 366 + - 11802 + - 11649 + - 8622 + - 8621 + - 8623 + - 8613 + - 8624 + - 418 + - 11803 + - uid: 12 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,42.5 + parent: 2 + - type: DeviceList + devices: + - 11637 + - 11795 + - 11645 + - 11789 + - 370 + - 369 + - 368 + - 8638 + - 8642 + - 8636 + - 8637 + - 11791 + - 11638 + - 8643 + - 8645 + - 8644 + - 8639 + - uid: 13 + components: + - type: Transform + pos: 55.5,52.5 + parent: 2 + - type: DeviceList + devices: + - 367 + - 8625 + - 8626 + - 11807 + - uid: 14 + components: + - type: Transform + pos: 34.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 8646 + - 8647 + - 8648 + - 8651 + - 8652 + - 8653 + - 437 + - 11788 + - 11646 + - 8633 + - 8649 + - 8650 + - 8656 + - 8654 + - 8655 + - 412 + - 11640 + - 11790 + - 11786 + - 411 + - 8670 + - 8669 + - 8635 + - 8634 + - 8660 + - 413 + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,46.5 + parent: 2 + - type: DeviceList + devices: + - 8662 + - 8661 + - 8663 + - 8664 + - 8665 + - 8556 + - 8666 + - 8667 + - 8659 + - 8658 + - 8657 + - 8927 + - 8676 + - uid: 16 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,51.5 + parent: 2 + - type: DeviceList + devices: + - 8693 + - 8694 + - 8695 + - 8696 + - 8697 + - 8698 + - 11750 + - 11611 + - 414 + - 8699 + - 8700 + - 416 + - 8702 + - 8701 + - 11752 + - 415 + - uid: 17 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,46.5 + parent: 2 + - type: DeviceList + devices: + - 8686 + - 8687 + - 8689 + - 11727 + - 11583 + - 387 + - 8716 + - 8715 + - 8714 + - 8713 + - 8712 + - 8709 + - 8708 + - 8710 + - 8711 + - uid: 18 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 11565 + - 11716 + - 11564 + - 8770 + - 8771 + - 8772 + - 8768 + - 8692 + - 8691 + - 8690 + - 8769 + - 11717 + - 386 + - uid: 19 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,10.5 + parent: 2 + - uid: 20 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 8824 + - 8823 + - 8805 + - 8806 + - 8804 + - 8803 + - 8807 + - 11573 + - 11776 + - 372 + - uid: 21 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 8824 + - 8823 + - 8809 + - 8810 + - 383 + - 11712 + - 11559 + - 8812 + - 8811 + - 8813 + - 8814 + - uid: 22 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,50.5 + parent: 2 + - type: DeviceList + devices: + - 406 + - 11796 + - 11625 + - 8678 + - 8679 + - 8680 + - 397 + - 8686 + - 8687 + - 8689 + - 11582 + - 8692 + - 8691 + - 8690 + - 8684 + - 8682 + - 8681 + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,52.5 + parent: 2 + - type: DeviceList + devices: + - 8704 + - 8703 + - 8705 + - 8706 + - 8707 + - 8697 + - 8698 + - 417 + - 11632 + - uid: 24 + components: + - type: Transform + pos: -7.5,57.5 + parent: 2 + - type: DeviceList + devices: + - 8723 + - 8724 + - 8725 + - 8523 + - 8522 + - 8524 + - 8521 + - 8525 + - 8526 + - 11732 + - 11588 + - 11731 + - 11587 + - 11730 + - 11586 + - 395 + - 8717 + - 8527 + - 396 + - uid: 25 + components: + - type: Transform + pos: -13.5,59.5 + parent: 2 + - type: DeviceList + devices: + - 8720 + - 8719 + - 8723 + - 8724 + - 8725 + - 8711 + - 8710 + - 8712 + - 8721 + - 8722 + - 8726 + - 388 + - 11590 + - 11736 + - 390 + - 395 + - 393 + - 8736 + - uid: 26 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,68.5 + parent: 2 + - type: DeviceList + devices: + - 13233 + - 11605 + - 394 + - 441 + - 393 + - 11603 + - 11737 + - 11741 + - 11742 + - 8732 + - 8730 + - 8731 + - uid: 27 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,62.5 + parent: 2 + - type: DeviceList + devices: + - 11592 + - 11740 + - 442 + - 443 + - 8736 + - 11738 + - 8732 + - 8737 + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,62.5 + parent: 2 + - type: DeviceList + devices: + - 392 + - 11773 + - 11599 + - 11774 + - 11601 + - 11772 + - 11598 + - 8746 + - 8745 + - 8744 + - 8743 + - 8747 + - 8539 + - 8541 + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,56.5 + parent: 2 + - type: DeviceList + devices: + - 11602 + - 11775 + - 446 + - 8739 + - 8738 + - 8748 + - 8743 + - 8744 + - 8542 + - 8540 + - 11597 + - 11772 + - 11774 + - uid: 30 + components: + - type: Transform + pos: -25.5,65.5 + parent: 2 + - type: DeviceList + devices: + - 11746 + - 11596 + - 11595 + - 11745 + - 445 + - 444 + - 8741 + - 8740 + - 8738 + - 8739 + - 8722 + - 8721 + - 8742 + - 390 + - uid: 31 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,49.5 + parent: 2 + - uid: 32 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,54.5 + parent: 2 + - type: DeviceList + devices: + - 391 + - 8742 + - 11594 + - uid: 33 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,53.5 + parent: 2 + - type: DeviceList + devices: + - 8726 + - 389 + - 11739 + - 11593 + - uid: 34 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,57.5 + parent: 2 + - type: DeviceList + devices: + - 8717 + - 8718 + - 11734 + - 11589 + - 447 + - uid: 35 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,66.5 + parent: 2 + - type: DeviceList + devices: + - 399 + - 448 + - 398 + - 8750 + - 8749 + - 8757 + - 8758 + - 8756 + - 8751 + - 8755 + - 8754 + - 8753 + - 8759 + - 8760 + - 8761 + - 11748 + - 11610 + - 401 + - 11608 + - 11747 + - 8763 + - 8762 + - 8752 + - 8729 + - 8766 + - 11743 + - 11606 + - 8794 + - 8795 + - 8793 + - uid: 36 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,69.5 + parent: 2 + - type: DeviceList + devices: + - 8759 + - 8760 + - 8761 + - 11749 + - 11609 + - 400 + - 8767 + - uid: 37 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 8769 + - 11566 + - 11718 + - 8773 + - 8774 + - 8546 + - 8928 + - 8548 + - uid: 38 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 8776 + - 8792 + - 8775 + - 449 + - 11721 + - 11569 + - 8774 + - 8780 + - 8778 + - 8777 + - uid: 39 + components: + - type: Transform + pos: -8.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 8791 + - 8790 + - 8792 + - 379 + - 11563 + - 11715 + - uid: 40 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,25.5 + parent: 2 + - uid: 41 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 377 + - 11714 + - 11562 + - 8787 + - 8543 + - 8790 + - uid: 42 + components: + - type: Transform + pos: -29.5,20.5 + parent: 2 + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,24.5 + parent: 2 + - type: DeviceList + devices: + - 11720 + - 11567 + - 450 + - 8776 + - uid: 44 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 11560 + - 376 + - 8786 + - 8788 + - 8787 + - 8789 + - 8785 + - 374 + - 11703 + - 11856 + - 11857 + - uid: 45 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,24.5 + parent: 2 + - type: DeviceList + devices: + - 375 + - 8782 + - 8785 + - 8545 + - uid: 46 + components: + - type: Transform + pos: -26.5,47.5 + parent: 2 + - type: DeviceList + devices: + - 8935 + - 11551 + - 11711 + - 471 + - uid: 47 + components: + - type: Transform + pos: -31.5,40.5 + parent: 2 + - type: DeviceList + devices: + - 451 + - 8784 + - 8783 + - uid: 48 + components: + - type: Transform + pos: -18.5,46.5 + parent: 2 + - type: DeviceList + devices: + - 378 + - 11570 + - 11723 + - 8796 + - uid: 49 + components: + - type: Transform + pos: -11.5,46.5 + parent: 2 + - type: DeviceList + devices: + - 11571 + - 11722 + - 8780 + - 8779 + - 452 + - uid: 50 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,18.5 + parent: 2 + - type: DeviceList + devices: + - 8772 + - 8771 + - 8770 + - 8797 + - 8798 + - 8799 + - 384 + - 8800 + - 8801 + - 8802 + - uid: 51 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 8817 + - 8818 + - 11579 + - 11782 + - 381 + - 8827 + - 8802 + - 467 + - 11701 + - 11853 + - 466 + - 11700 + - 11852 + - 8932 + - 8933 + - uid: 52 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 8815 + - 8816 + - 11577 + - 11779 + - 468 + - uid: 53 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 8809 + - 8810 + - 8815 + - 8816 + - 8807 + - 8825 + - 8826 + - 382 + - 11778 + - 11575 + - 8808 + - 11578 + - 11781 + - uid: 54 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 11777 + - 11574 + - 8808 + - 453 + - uid: 55 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 410 + - 11642 + - 8830 + - 8831 + - 8832 + - 8829 + - 8828 + - 8670 + - 8669 + - 8635 + - 8634 + - 11553 + - 11785 + - 11783 + - 8675 + - uid: 56 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 438 + - 11784 + - 11641 + - 8833 + - 8829 + - 8828 + - 8837 + - 8836 + - 8835 + - 8834 + - uid: 57 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 8839 + - 8838 + - 8822 + - 8875 + - 8846 + - 8840 + - 8841 + - 8842 + - 11814 + - 11661 + - 454 + - uid: 58 + components: + - type: Transform + pos: 47.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 430 + - 8847 + - 8848 + - 8845 + - 8840 + - 11813 + - 11660 + - uid: 59 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,19.5 + parent: 2 + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,14.5 + parent: 2 + - type: DeviceList + devices: + - 11662 + - 11815 + - 458 + - 8844 + - 8842 + - 8871 + - 8677 + - uid: 61 + components: + - type: Transform + pos: 44.5,18.5 + parent: 2 + - type: DeviceList + devices: + - 8849 + - 8851 + - 8870 + - 8869 + - 8868 + - 431 + - 8862 + - 8859 + - 8852 + - 8843 + - 8847 + - 8848 + - uid: 62 + components: + - type: Transform + pos: 48.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 11666 + - 11820 + - 433 + - 8859 + - 8861 + - 8858 + - 8860 + - 19347 + - 19358 + - 19348 + - 19357 + - 19349 + - 19356 + - 19355 + - 19354 + - 19361 + - 19350 + - 19360 + - 19351 + - 19359 + - 19352 + - 19353 + - 19362 + - uid: 63 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 8852 + - 455 + - 11665 + - 11818 + - uid: 64 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 11828 + - 11676 + - 457 + - 8857 + - 8864 + - uid: 65 + components: + - type: Transform + pos: 36.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 11672 + - 432 + - 11824 + - 8853 + - 8863 + - 8867 + - 8849 + - uid: 66 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 11825 + - 11675 + - 8854 + - 8855 + - 8853 + - 8857 + - 8856 + - 456 + - 8865 + - 8866 + - uid: 67 + components: + - type: Transform + pos: 11.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 11760 + - 404 + - 11619 + - 8892 + - 8894 + - 11620 + - 11757 + - 11617 + - 8891 + - 8890 + - 8885 + - 8886 + - 403 + - 465 + - 8931 + - 8930 + - 11702 + - 11854 + - uid: 68 + components: + - type: Transform + pos: 7.5,42.5 + parent: 2 + - type: DeviceList + devices: + - 8876 + - 8910 + - 8909 + - 11614 + - 463 + - 8908 + - 11615 + - 11754 + - uid: 69 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,39.5 + parent: 2 + - type: DeviceList + devices: + - 11756 + - 11624 + - 462 + - 8883 + - 8881 + - 8882 + - uid: 70 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,43.5 + parent: 2 + - type: DeviceList + devices: + - 402 + - 11627 + - 11769 + - 8882 + - 8880 + - 8879 + - 8878 + - 8877 + - 11770 + - 11626 + - 8881 + - uid: 71 + components: + - type: Transform + pos: 18.5,40.5 + parent: 2 + - type: DeviceList + devices: + - 8884 + - 11766 + - 11628 + - 405 + - uid: 72 + components: + - type: Transform + pos: 24.5,46.5 + parent: 2 + - type: DeviceList + devices: + - 8903 + - 11768 + - 11630 + - 461 + - 11556 + - 11557 + - 11555 + - 11554 + - 11767 + - 408 + - 8911 + - uid: 73 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,40.5 + parent: 2 + - uid: 74 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,24.5 + parent: 2 + - uid: 75 + components: + - type: Transform + pos: 20.5,27.5 + parent: 2 + - uid: 76 + components: + - type: Transform + pos: 9.5,28.5 + parent: 2 + - type: DeviceList + devices: + - 11758 + - 11618 + - 459 + - 8899 + - 8895 + - 8893 + - 8904 + - 11755 + - 11616 + - 385 + - 8546 + - uid: 77 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,37.5 + parent: 2 + - type: DeviceList + devices: + - 8886 + - 11762 + - 11621 + - 409 + - 8889 + - 8887 + - 8888 + - 8902 + - 11765 + - 11629 + - 460 + - 8633 + - 8650 + - 8649 + - uid: 78 + components: + - type: Transform + pos: 40.5,55.5 + parent: 2 + - type: DeviceList + devices: + - 440 + - 11794 + - 11636 + - 8668 + - 8674 + - 8913 + - 8912 + - 8914 + - 8915 + - 8917 + - 8916 + - 371 + - uid: 79 + components: + - type: Transform + pos: 78.5,41.5 + parent: 2 + - uid: 80 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 8546 + - 8928 + - 8548 + - 8547 + - 380 + - 8821 + - 8929 + - 11780 + - 11576 + - uid: 81 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,36.5 + parent: 2 + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,44.5 + parent: 2 + - type: DeviceList + devices: + - 8934 + - 8768 + - 470 + - 469 + - 11581 + - 11725 + - 11724 + - 11580 + - uid: 83 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 8939 + - 8936 + - 472 + - 11705 + - 11859 + - 8937 + - 8938 + - 473 + - 11704 + - 11858 + - 8940 + - 8941 + - 8854 + - 11674 + - 11826 + - uid: 18626 + components: + - type: Transform + pos: 74.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 18628 + - 11678 + - 11842 + - 8579 + - 18625 + - 18624 + - 18623 + - 8588 + - 8578 + - 11838 + - 11687 + - 11688 + - 428 + - 11839 + - 8590 + - uid: 19588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,67.5 + parent: 2 + - type: DeviceList + devices: + - 11774 + - 11601 + - 8745 + - 8746 + - 11598 + - 11772 + - 392 + - 19592 + - 19591 + - 11773 + - 19382 + - 19383 + - 11599 + - 19593 + - 19594 + - 19595 + - 19596 + - 19597 + - 19598 + - 19599 + - 8539 + - 8541 + - uid: 19589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,74.5 + parent: 2 + - type: DeviceList + devices: + - 19557 + - 19558 + - 19559 + - 19561 + - 19560 + - 19562 + - 19563 + - 19564 + - 19565 + - 19566 + - 19567 + - 19571 + - 19568 + - 19570 + - 19569 + - 19573 + - 19401 + - 19400 + - 19493 + - 19574 + - 19575 + - 19576 + - 19577 + - 19578 + - 19579 + - 19580 + - 19584 + - 19583 + - uid: 19590 + components: + - type: Transform + pos: -21.5,75.5 + parent: 2 + - type: DeviceList + devices: + - 19582 + - 19581 + - 19403 + - 19402 + - 19585 +- proto: AirCanister + entities: + - uid: 84 + components: + - type: Transform + pos: -38.5,20.5 + parent: 2 + - uid: 18642 + components: + - type: Transform + pos: -5.5,21.5 + parent: 2 + - uid: 18643 + components: + - type: Transform + pos: -4.5,21.5 + parent: 2 +- proto: AirlockArmoryGlassLocked + entities: + - uid: 85 + components: + - type: Transform + pos: -17.5,59.5 + parent: 2 +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 86 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - uid: 87 + components: + - type: Transform + pos: -13.5,19.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: -9.5,26.5 + parent: 2 + - uid: 89 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,18.5 + parent: 2 + - uid: 90 + components: + - type: Transform + pos: -29.5,27.5 + parent: 2 + - uid: 91 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,22.5 + parent: 2 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 92 + components: + - type: Transform + pos: 21.5,46.5 + parent: 2 + - uid: 93 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 +- proto: AirlockBarGlassLocked + entities: + - uid: 94 + components: + - type: Transform + pos: 59.5,37.5 + parent: 2 +- proto: AirlockBarLocked + entities: + - uid: 95 + components: + - type: Transform + pos: 60.5,45.5 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: 61.5,41.5 + parent: 2 +- proto: AirlockCaptainLocked + entities: + - uid: 97 + components: + - type: Transform + pos: 77.5,27.5 + parent: 2 + - uid: 98 + components: + - type: Transform + pos: 79.5,30.5 + parent: 2 + - uid: 109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,27.5 + parent: 2 +- proto: AirlockCargoGlassLocked + entities: + - uid: 99 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 +- proto: AirlockChapelGlassLocked + entities: + - uid: 100 + components: + - type: Transform + pos: 10.5,58.5 + parent: 2 +- proto: AirlockChapelLocked + entities: + - uid: 101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,61.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: 14.5,61.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: 16.5,64.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: 19.5,63.5 + parent: 2 +- proto: AirlockChemistryGlassLocked + entities: + - uid: 105 + components: + - type: Transform + pos: 15.5,25.5 + parent: 2 +- proto: AirlockChiefEngineerLocked + entities: + - uid: 106 + components: + - type: Transform + pos: -6.5,27.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 107 + components: + - type: Transform + pos: 18.5,36.5 + parent: 2 +- proto: AirlockCommandGlassLocked + entities: + - uid: 4405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,47.5 + parent: 2 +- proto: AirlockCommandLocked + entities: + - uid: 108 + components: + - type: Transform + pos: 81.5,28.5 + parent: 2 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,41.5 + parent: 2 + - uid: 111 + components: + - type: Transform + pos: 78.5,34.5 + parent: 2 + - uid: 112 + components: + - type: Transform + pos: 74.5,34.5 + parent: 2 +- proto: AirlockDetectiveLocked + entities: + - uid: 113 + components: + - type: Transform + pos: -0.5,57.5 + parent: 2 + - uid: 114 + components: + - type: Transform + pos: 3.5,58.5 + parent: 2 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 115 + components: + - type: Transform + pos: -1.5,33.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: -10.5,42.5 + parent: 2 + - uid: 117 + components: + - type: Transform + pos: 35.5,50.5 + parent: 2 + - uid: 118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,34.5 + parent: 2 + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,34.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: -4.5,37.5 + parent: 2 + - uid: 121 + components: + - type: Transform + pos: -12.5,36.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: -14.5,42.5 + parent: 2 + - uid: 123 + components: + - type: Transform + pos: -12.5,32.5 + parent: 2 +- proto: AirlockEngineeringLocked + entities: + - uid: 124 + components: + - type: Transform + pos: -22.5,10.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: -3.5,65.5 + parent: 2 + - uid: 126 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: 35.5,52.5 + parent: 2 + - uid: 128 + components: + - type: Transform + pos: -23.5,24.5 + parent: 2 + - uid: 129 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 130 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: -1.5,43.5 + parent: 2 + - uid: 132 + components: + - type: Transform + pos: 75.5,14.5 + parent: 2 + - uid: 133 + components: + - type: Transform + pos: 82.5,46.5 + parent: 2 + - uid: 134 + components: + - type: Transform + pos: 51.5,58.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: 33.5,62.5 + parent: 2 + - uid: 136 + components: + - type: Transform + pos: -25.5,42.5 + parent: 2 +- proto: AirlockEVAGlassLocked + entities: + - uid: 137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,45.5 + parent: 2 + - uid: 138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,45.5 + parent: 2 + - uid: 139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,43.5 + parent: 2 +- proto: AirlockExternal + entities: + - uid: 140 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 +- proto: AirlockExternalAtmosphericsLocked + entities: + - uid: 142 + components: + - type: Transform + pos: -39.5,30.5 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: -37.5,30.5 + parent: 2 +- proto: AirlockExternalEngineeringLocked + entities: + - uid: 144 + components: + - type: Transform + pos: -22.5,6.5 + parent: 2 + - uid: 145 + components: + - type: Transform + pos: -22.5,4.5 + parent: 2 +- proto: AirlockExternalGlass + entities: + - uid: 146 + components: + - type: Transform + pos: -2.5,77.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: -0.5,77.5 + parent: 2 + - uid: 148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,0.5 + parent: 2 + - uid: 149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,7.5 + parent: 2 + - uid: 150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-2.5 + parent: 2 + - uid: 151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-4.5 + parent: 2 + - uid: 152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,63.5 + parent: 2 + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,63.5 + parent: 2 + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,63.5 + parent: 2 + - uid: 155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,63.5 + parent: 2 +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 156 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,46.5 + parent: 2 + - uid: 159 + components: + - type: Transform + pos: 33.5,65.5 + parent: 2 + - uid: 160 + components: + - type: Transform + pos: 33.5,67.5 + parent: 2 + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,9.5 + parent: 2 + - uid: 162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-2.5 + parent: 2 + - uid: 163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-0.5 + parent: 2 + - uid: 164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,11.5 + parent: 2 +- proto: AirlockExternalGlassLocked + entities: + - uid: 165 + components: + - type: Transform + pos: -6.5,69.5 + parent: 2 + - uid: 166 + components: + - type: Transform + pos: -10.5,69.5 + parent: 2 +- proto: AirlockExternalGlassSalvageLocked + entities: + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-8.5 + parent: 2 + - uid: 168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-8.5 + parent: 2 +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,7.5 + parent: 2 + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,0.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,65.5 + parent: 2 + - uid: 172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,65.5 + parent: 2 + - uid: 173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,65.5 + parent: 2 + - uid: 174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,65.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,58.5 + parent: 2 + - uid: 176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,77.5 + parent: 2 + - uid: 177 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - uid: 178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,16.5 + parent: 2 + - uid: 16848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,59.5 + parent: 2 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 179 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 +- proto: AirlockExternalLocked + entities: + - uid: 181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,53.5 + parent: 2 + - uid: 182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,57.5 + parent: 2 + - uid: 183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,55.5 + parent: 2 +- proto: AirlockFreezerKitchenHydroLocked + entities: + - uid: 184 + components: + - type: Transform + pos: 51.5,45.5 + parent: 2 +- proto: AirlockFreezerLocked + entities: + - uid: 185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,47.5 + parent: 2 + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,49.5 + parent: 2 +- proto: AirlockGlass + entities: + - uid: 187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,60.5 + parent: 2 + - uid: 188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,50.5 + parent: 2 + - uid: 189 + components: + - type: Transform + pos: 57.5,30.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: 63.5,30.5 + parent: 2 + - uid: 191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,62.5 + parent: 2 + - uid: 192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,62.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: 7.5,52.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: 9.5,50.5 + parent: 2 + - uid: 195 + components: + - type: Transform + pos: 15.5,52.5 + parent: 2 + - uid: 196 + components: + - type: Transform + pos: 15.5,53.5 + parent: 2 + - uid: 197 + components: + - type: Transform + pos: 23.5,50.5 + parent: 2 + - uid: 198 + components: + - type: Transform + pos: 24.5,50.5 + parent: 2 + - uid: 199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,53.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: 34.5,38.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: 34.5,39.5 + parent: 2 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,35.5 + parent: 2 + - uid: 203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,34.5 + parent: 2 + - uid: 204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,33.5 + parent: 2 + - uid: 205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,33.5 + parent: 2 + - uid: 206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,34.5 + parent: 2 + - uid: 207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,35.5 + parent: 2 + - uid: 208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,7.5 + parent: 2 + - uid: 209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,3.5 + parent: 2 + - uid: 237 + components: + - type: Transform + pos: 63.5,34.5 + parent: 2 + - uid: 238 + components: + - type: Transform + pos: 63.5,35.5 + parent: 2 + - uid: 305 + components: + - type: Transform + pos: 18.5,47.5 + parent: 2 + - uid: 4409 + components: + - type: Transform + pos: 49.5,34.5 + parent: 2 + - uid: 4410 + components: + - type: Transform + pos: 49.5,33.5 + parent: 2 + - uid: 6324 + components: + - type: Transform + pos: 49.5,35.5 + parent: 2 + - uid: 9953 + components: + - type: Transform + pos: 63.5,33.5 + parent: 2 + - uid: 10775 + components: + - type: Transform + pos: 64.5,22.5 + parent: 2 + - uid: 10776 + components: + - type: Transform + pos: 65.5,22.5 + parent: 2 + - uid: 10777 + components: + - type: Transform + pos: 66.5,22.5 + parent: 2 + - uid: 10778 + components: + - type: Transform + pos: 18.5,49.5 + parent: 2 + - uid: 11420 + components: + - type: Transform + pos: 66.5,52.5 + parent: 2 + - uid: 11827 + components: + - type: Transform + pos: 18.5,48.5 + parent: 2 + - uid: 12136 + components: + - type: Transform + pos: 64.5,52.5 + parent: 2 + - uid: 14031 + components: + - type: Transform + pos: 65.5,52.5 + parent: 2 + - uid: 18533 + components: + - type: Transform + pos: 25.5,18.5 + parent: 2 + - uid: 18534 + components: + - type: Transform + pos: 23.5,18.5 + parent: 2 + - uid: 18535 + components: + - type: Transform + pos: -0.5,24.5 + parent: 2 + - uid: 18536 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - uid: 18537 + components: + - type: Transform + pos: 1.5,24.5 + parent: 2 + - uid: 18538 + components: + - type: Transform + pos: 4.5,21.5 + parent: 2 + - uid: 18539 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 18540 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 18541 + components: + - type: Transform + pos: 20.5,21.5 + parent: 2 + - uid: 18542 + components: + - type: Transform + pos: 20.5,20.5 + parent: 2 + - uid: 18543 + components: + - type: Transform + pos: 20.5,19.5 + parent: 2 + - uid: 18544 + components: + - type: Transform + pos: -0.5,44.5 + parent: 2 + - uid: 18545 + components: + - type: Transform + pos: 0.5,44.5 + parent: 2 + - uid: 18546 + components: + - type: Transform + pos: 1.5,44.5 + parent: 2 + - uid: 18547 + components: + - type: Transform + pos: 4.5,54.5 + parent: 2 + - uid: 18548 + components: + - type: Transform + pos: 5.5,54.5 + parent: 2 + - uid: 18549 + components: + - type: Transform + pos: 6.5,54.5 + parent: 2 + - uid: 18550 + components: + - type: Transform + pos: -2.5,49.5 + parent: 2 + - uid: 18551 + components: + - type: Transform + pos: -2.5,48.5 + parent: 2 + - uid: 18552 + components: + - type: Transform + pos: -2.5,47.5 + parent: 2 + - uid: 18946 + components: + - type: Transform + pos: 4.5,65.5 + parent: 2 + - uid: 18947 + components: + - type: Transform + pos: 5.5,65.5 + parent: 2 + - uid: 18948 + components: + - type: Transform + pos: 6.5,65.5 + parent: 2 +- proto: AirlockGlassShuttle + entities: + - uid: 210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,71.5 + parent: 2 + - uid: 211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,71.5 + parent: 2 + - uid: 212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,46.5 + parent: 2 +- proto: AirlockHatchMaintenance + entities: + - uid: 213 + components: + - type: Transform + pos: 27.5,61.5 + parent: 2 +- proto: AirlockHeadOfPersonnelGlassLocked + entities: + - uid: 214 + components: + - type: Transform + pos: 79.5,38.5 + parent: 2 +- proto: AirlockHeadOfSecurityLocked + entities: + - uid: 215 + components: + - type: Transform + pos: -18.5,56.5 + parent: 2 +- proto: AirlockHydroGlassLocked + entities: + - uid: 216 + components: + - type: Transform + pos: 48.5,46.5 + parent: 2 + - uid: 217 + components: + - type: Transform + pos: 50.5,41.5 + parent: 2 +- proto: AirlockHydroponicsLocked + entities: + - uid: 218 + components: + - type: Transform + pos: 47.5,49.5 + parent: 2 +- proto: AirlockJanitorLocked + entities: + - uid: 219 + components: + - type: Transform + pos: 42.5,55.5 + parent: 2 + - uid: 220 + components: + - type: Transform + pos: 40.5,50.5 + parent: 2 +- proto: AirlockKitchenGlassLocked + entities: + - uid: 221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,41.5 + parent: 2 +- proto: AirlockLawyerGlassLocked + entities: + - uid: 222 + components: + - type: Transform + pos: -23.5,56.5 + parent: 2 +- proto: AirlockMailGlassLocked + entities: + - uid: 223 + components: + - type: Transform + pos: -4.5,7.5 + parent: 2 +- proto: AirlockMaint + entities: + - uid: 224 + components: + - type: Transform + pos: 20.5,15.5 + parent: 2 + - uid: 225 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: 27.5,17.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: 27.5,14.5 + parent: 2 + - uid: 228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,62.5 + parent: 2 + - uid: 229 + components: + - type: Transform + pos: 0.5,66.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: 0.5,68.5 + parent: 2 + - uid: 231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,67.5 + parent: 2 + - uid: 232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,67.5 + parent: 2 + - uid: 233 + components: + - type: Transform + pos: 14.5,75.5 + parent: 2 + - uid: 234 + components: + - type: Transform + pos: 48.5,52.5 + parent: 2 + - uid: 235 + components: + - type: Transform + pos: 52.5,53.5 + parent: 2 + - uid: 236 + components: + - type: Transform + pos: 34.5,20.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: 71.5,50.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: 78.5,54.5 + parent: 2 + - uid: 241 + components: + - type: Transform + pos: 76.5,56.5 + parent: 2 + - uid: 242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,25.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: 59.5,52.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: 48.5,58.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: 42.5,62.5 + parent: 2 + - uid: 247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,63.5 + parent: 2 + - uid: 248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,16.5 + parent: 2 + - uid: 4408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,52.5 + parent: 2 + - uid: 17248 + components: + - type: Transform + pos: 43.5,11.5 + parent: 2 +- proto: AirlockMaintAtmoLocked + entities: + - uid: 249 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: -22.5,16.5 + parent: 2 +- proto: AirlockMaintCargoLocked + entities: + - uid: 251 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - uid: 252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,9.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: -14.5,12.5 + parent: 2 +- proto: AirlockMaintChemLocked + entities: + - uid: 254 + components: + - type: Transform + pos: 6.5,24.5 + parent: 2 +- proto: AirlockMaintCommandLocked + entities: + - uid: 256 + components: + - type: Transform + pos: 81.5,45.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: 81.5,20.5 + parent: 2 +- proto: AirlockMaintGlass + entities: + - uid: 259 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 +- proto: AirlockMaintGlassLocked + entities: + - uid: 260 + components: + - type: Transform + pos: 37.5,46.5 + parent: 2 +- proto: AirlockMaintLocked + entities: + - uid: 261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,65.5 + parent: 2 + - uid: 262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,48.5 + parent: 2 + - uid: 263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,18.5 + parent: 2 + - uid: 264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,18.5 + parent: 2 + - uid: 265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,10.5 + parent: 2 + - uid: 266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,16.5 + parent: 2 + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,64.5 + parent: 2 + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,54.5 + parent: 2 + - uid: 269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,58.5 + parent: 2 + - uid: 270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,65.5 + parent: 2 + - uid: 271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,47.5 + parent: 2 + - uid: 272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,27.5 + parent: 2 + - uid: 273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,10.5 + parent: 2 + - uid: 274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,8.5 + parent: 2 + - uid: 275 + components: + - type: Transform + pos: 24.5,58.5 + parent: 2 + - uid: 276 + components: + - type: Transform + pos: 2.5,25.5 + parent: 2 + - uid: 277 + components: + - type: Transform + pos: 13.5,74.5 + parent: 2 +- proto: AirlockMaintRnDLocked + entities: + - uid: 278 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2 + - uid: 279 + components: + - type: Transform + pos: 43.5,22.5 + parent: 2 + - uid: 280 + components: + - type: Transform + pos: 37.5,4.5 + parent: 2 + - uid: 281 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 282 + components: + - type: Transform + pos: 61.5,21.5 + parent: 2 +- proto: AirlockMaintSalvageLocked + entities: + - uid: 283 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 +- proto: AirlockMaintSecLocked + entities: + - uid: 284 + components: + - type: Transform + pos: 58.5,57.5 + parent: 2 + - uid: 285 + components: + - type: Transform + pos: 74.5,15.5 + parent: 2 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 286 + components: + - type: Transform + pos: 16.5,23.5 + parent: 2 + - uid: 287 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 + - uid: 288 + components: + - type: Transform + pos: 13.5,36.5 + parent: 2 + - uid: 289 + components: + - type: Transform + pos: 24.5,33.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: 5.5,42.5 + parent: 2 + - uid: 291 + components: + - type: Transform + pos: 6.5,46.5 + parent: 2 + - uid: 292 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - uid: 293 + components: + - type: Transform + pos: 24.5,32.5 + parent: 2 + - uid: 294 + components: + - type: Transform + pos: 6.5,32.5 + parent: 2 + - uid: 295 + components: + - type: Transform + pos: 6.5,33.5 + parent: 2 +- proto: AirlockMedicalLocked + entities: + - uid: 296 + components: + - type: Transform + pos: 14.5,44.5 + parent: 2 + - uid: 297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,36.5 + parent: 2 + - uid: 298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,41.5 + parent: 2 + - uid: 299 + components: + - type: Transform + pos: 8.5,36.5 + parent: 2 + - uid: 300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,25.5 + parent: 2 +- proto: AirlockMedicalScienceGlassLocked + entities: + - uid: 301 + components: + - type: Transform + pos: 26.5,22.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: 24.5,25.5 + parent: 2 +- proto: AirlockQuartermasterLocked + entities: + - uid: 303 + components: + - type: Transform + pos: 2.5,16.5 + parent: 2 +- proto: AirlockResearchDirectorGlassLocked + entities: + - uid: 306 + components: + - type: Transform + pos: 50.5,17.5 + parent: 2 + - uid: 9951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-0.5 + parent: 2 + - uid: 9952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-0.5 + parent: 2 +- proto: AirlockResearchDirectorLocked + entities: + - uid: 307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,2.5 + parent: 2 + - uid: 308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-10.5 + parent: 2 + - uid: 309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-12.5 + parent: 2 + - uid: 310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-7.5 + parent: 2 +- proto: AirlockSalvageGlassLocked + entities: + - uid: 311 + components: + - type: Transform + pos: -14.5,4.5 + parent: 2 + - uid: 312 + components: + - type: Transform + pos: -10.5,8.5 + parent: 2 + - uid: 313 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - uid: 314 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 +- proto: AirlockScienceGlassLocked + entities: + - uid: 315 + components: + - type: Transform + pos: 37.5,16.5 + parent: 2 + - uid: 316 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 317 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - uid: 318 + components: + - type: Transform + pos: 32.5,10.5 + parent: 2 +- proto: AirlockScienceLocked + entities: + - uid: 320 + components: + - type: Transform + pos: 49.5,8.5 + parent: 2 + - uid: 321 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: 41.5,18.5 + parent: 2 + - uid: 324 + components: + - type: Transform + pos: 49.5,12.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: 53.5,23.5 + parent: 2 + - uid: 326 + components: + - type: Transform + pos: 49.5,22.5 + parent: 2 + - uid: 327 + components: + - type: Transform + pos: 54.5,21.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: 53.5,30.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: 49.5,30.5 + parent: 2 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 330 + components: + - type: Transform + pos: -3.5,18.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: -26.5,58.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: -26.5,57.5 + parent: 2 + - uid: 333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,32.5 + parent: 2 + - uid: 334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,30.5 + parent: 2 + - uid: 335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,15.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: 60.5,58.5 + parent: 2 + - uid: 337 + components: + - type: Transform + pos: 61.5,60.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: -8.5,67.5 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: -23.5,65.5 + parent: 2 + - uid: 340 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - uid: 341 + components: + - type: Transform + pos: 2.5,29.5 + parent: 2 + - uid: 342 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - uid: 343 + components: + - type: Transform + pos: -1.5,30.5 + parent: 2 +- proto: AirlockSecurityLawyerGlassLocked + entities: + - uid: 344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,53.5 + parent: 2 + - uid: 345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,53.5 + parent: 2 + - uid: 346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,50.5 + parent: 2 + - uid: 347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,50.5 + parent: 2 +- proto: AirlockSecurityLawyerLocked + entities: + - uid: 348 + components: + - type: Transform + pos: -10.5,59.5 + parent: 2 +- proto: AirlockSecurityLocked + entities: + - uid: 349 + components: + - type: Transform + pos: -6.5,65.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: -11.5,65.5 + parent: 2 + - uid: 351 + components: + - type: Transform + pos: -15.5,53.5 + parent: 2 + - uid: 352 + components: + - type: Transform + pos: -23.5,59.5 + parent: 2 + - uid: 353 + components: + - type: Transform + pos: -28.5,59.5 + parent: 2 + - uid: 354 + components: + - type: Transform + pos: -32.5,59.5 + parent: 2 + - uid: 355 + components: + - type: Transform + pos: -27.5,56.5 + parent: 2 + - uid: 356 + components: + - type: Transform + pos: 71.5,16.5 + parent: 2 +- proto: AirlockServiceCaptainLocked + entities: + - uid: 357 + components: + - type: Transform + pos: 75.5,25.5 + parent: 2 +- proto: AirlockServiceLocked + entities: + - uid: 359 + components: + - type: Transform + pos: 17.5,57.5 + parent: 2 +- proto: AirlockTheatreLocked + entities: + - uid: 360 + components: + - type: Transform + pos: 41.5,41.5 + parent: 2 + - uid: 361 + components: + - type: Transform + pos: 41.5,46.5 + parent: 2 +- proto: AirlockVirologyLocked + entities: + - uid: 362 + components: + - type: Transform + pos: 23.5,42.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 363 + - type: DeviceLinkSource + linkedPorts: + 363: + - DoorStatus: DoorBolt + - uid: 363 + components: + - type: Transform + pos: 25.5,44.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 362 + - type: DeviceLinkSource + linkedPorts: + 362: + - DoorStatus: DoorBolt +- proto: AirSensor + entities: + - uid: 364 + components: + - type: Transform + pos: 70.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8 + - uid: 365 + components: + - type: Transform + pos: 74.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6 + - uid: 366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11 + - uid: 367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 + - uid: 368 + components: + - type: Transform + pos: 37.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12 + - uid: 369 + components: + - type: Transform + pos: 37.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12 + - uid: 370 + components: + - type: Transform + pos: 41.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12 + - uid: 371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 78 + - uid: 372 + components: + - type: Transform + pos: 12.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20 + - uid: 373 + components: + - type: Transform + pos: 1.5,39.5 + parent: 2 + - uid: 374 + components: + - type: Transform + pos: -29.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 44 + - uid: 375 + components: + - type: Transform + pos: -32.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 45 + - uid: 376 + components: + - type: Transform + pos: -21.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 44 + - uid: 377 + components: + - type: Transform + pos: -14.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 41 + - uid: 378 + components: + - type: Transform + pos: -18.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 48 + - uid: 379 + components: + - type: Transform + pos: -7.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 39 + - uid: 380 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 80 + - uid: 381 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 + - uid: 382 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 53 + - uid: 383 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - uid: 384 + components: + - type: Transform + pos: -1.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 50 + - uid: 385 + components: + - type: Transform + pos: 5.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 76 + - uid: 386 + components: + - type: Transform + pos: 1.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18 + - uid: 387 + components: + - type: Transform + pos: -10.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17 + - uid: 388 + components: + - type: Transform + pos: -13.5,58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25 + - uid: 389 + components: + - type: Transform + pos: -19.5,55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 33 + - uid: 390 + components: + - type: Transform + pos: -26.5,58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25 + - 30 + - uid: 391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - uid: 392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 28 + - 19588 + - 8512 + - uid: 393 + components: + - type: Transform + pos: -12.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25 + - 26 + - uid: 394 + components: + - type: Transform + pos: -7.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 26 + - uid: 395 + components: + - type: Transform + pos: -2.5,56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - 25 + - uid: 396 + components: + - type: Transform + pos: -4.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - uid: 397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - uid: 398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 399 + components: + - type: Transform + pos: 0.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 36 + - uid: 401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 402 + components: + - type: Transform + pos: 17.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 70 + - uid: 403 + components: + - type: Transform + pos: 16.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 404 + components: + - type: Transform + pos: 18.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 405 + components: + - type: Transform + pos: 18.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 71 + - uid: 406 + components: + - type: Transform + pos: 14.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - uid: 407 + components: + - type: Transform + pos: 26.5,49.5 + parent: 2 + - uid: 408 + components: + - type: Transform + pos: 27.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 72 + - uid: 409 + components: + - type: Transform + pos: 21.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 77 + - uid: 410 + components: + - type: Transform + pos: 24.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 55 + - uid: 411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - uid: 412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - uid: 413 + components: + - type: Transform + pos: 32.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - uid: 414 + components: + - type: Transform + pos: 11.5,57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16 + - uid: 415 + components: + - type: Transform + pos: 11.5,61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16 + - uid: 416 + components: + - type: Transform + pos: 17.5,63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16 + - uid: 417 + components: + - type: Transform + pos: 21.5,58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23 + - uid: 418 + components: + - type: Transform + pos: 48.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11 + - uid: 419 + components: + - type: Transform + pos: 60.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - uid: 420 + components: + - type: Transform + pos: 54.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - uid: 421 + components: + - type: Transform + pos: 61.5,57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3 + - uid: 422 + components: + - type: Transform + pos: 65.5,62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3 + - uid: 423 + components: + - type: Transform + pos: 83.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6 + - 5 + - uid: 424 + components: + - type: Transform + pos: 74.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - uid: 425 + components: + - type: Transform + pos: 76.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7 + - 5 + - uid: 426 + components: + - type: Transform + pos: 80.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - uid: 427 + components: + - type: Transform + pos: 83.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - uid: 428 + components: + - type: Transform + pos: 76.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7 + - 5 + - 18626 + - 18627 + - uid: 429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - 8 + - uid: 430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 58 + - uid: 431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 61 + - uid: 432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 65 + - uid: 433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - uid: 434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9 + - uid: 435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9 + - uid: 436 + components: + - type: Transform + pos: 58.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - uid: 437 + components: + - type: Transform + pos: 38.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - uid: 438 + components: + - type: Transform + pos: 24.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 56 + - uid: 439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,40.5 + parent: 2 + - uid: 440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 78 + - uid: 441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 26 + - uid: 442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 27 + - uid: 443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 27 + - uid: 444 + components: + - type: Transform + pos: -23.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 30 + - uid: 445 + components: + - type: Transform + pos: -23.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 30 + - uid: 446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29 + - uid: 447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 34 + - uid: 448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 449 + components: + - type: Transform + pos: -10.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 38 + - uid: 450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 43 + - uid: 451 + components: + - type: Transform + pos: -31.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 47 + - uid: 452 + components: + - type: Transform + pos: -15.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 49 + - uid: 453 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 54 + - uid: 454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 57 + - uid: 455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 63 + - uid: 456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 66 + - uid: 457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 64 + - uid: 458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 60 + - uid: 459 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 76 + - uid: 460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 77 + - uid: 461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 72 + - uid: 462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 69 + - uid: 463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 68 + - uid: 464 + components: + - type: Transform + pos: 65.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - uid: 465 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8494 + - 67 + - uid: 466 + components: + - type: Transform + pos: -15.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 + - uid: 467 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 + - uid: 468 + components: + - type: Transform + pos: -6.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 52 + - uid: 469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 + - uid: 470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 + - uid: 471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 46 + - uid: 472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 8517 + - uid: 473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 8517 + - uid: 18628 + components: + - type: Transform + pos: 70.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18626 + - 18627 + - uid: 19573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,75.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19589 + - 19586 + - uid: 19585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,74.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19587 + - 19590 + - uid: 19591 + components: + - type: Transform + pos: -31.5,61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19588 + - 8512 + - uid: 19592 + components: + - type: Transform + pos: -27.5,61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19588 + - 8512 +- proto: AltarConvertMaint + entities: + - uid: 474 + components: + - type: Transform + pos: 15.5,2.5 + parent: 2 +- proto: AltarTechnology + entities: + - uid: 475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,56.5 + parent: 2 + - uid: 14743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,56.5 + parent: 2 + - uid: 18770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,56.5 + parent: 2 +- proto: AmeController + entities: + - uid: 12701 + components: + - type: Transform + pos: -15.5,26.5 + parent: 2 +- proto: AmeShielding + entities: + - uid: 18735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,23.5 + parent: 2 + - uid: 18736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,23.5 + parent: 2 + - uid: 18737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,22.5 + parent: 2 + - uid: 18738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,25.5 + parent: 2 + - uid: 18739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,23.5 + parent: 2 + - uid: 18740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,22.5 + parent: 2 + - uid: 18741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,22.5 + parent: 2 + - uid: 18742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,22.5 + parent: 2 + - uid: 18743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,23.5 + parent: 2 + - uid: 18744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,24.5 + parent: 2 + - uid: 18745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,25.5 + parent: 2 + - uid: 18746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,25.5 + parent: 2 + - uid: 18747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,24.5 + parent: 2 + - uid: 18748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,25.5 + parent: 2 + - uid: 18749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,24.5 + parent: 2 + - uid: 18750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,24.5 + parent: 2 +- proto: AmmoniaCanister + entities: + - uid: 489 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 +- proto: AmmoTechFabCircuitboard + entities: + - uid: 490 + components: + - type: Transform + pos: 29.35275,54.417416 + parent: 2 +- proto: AnomalyScanner + entities: + - uid: 491 + components: + - type: Transform + pos: 50.361633,-0.18300986 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: 50.70237,-0.36222148 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: 50.379566,-0.5414331 + parent: 2 +- proto: AnomalyVesselCircuitboard + entities: + - uid: 494 + components: + - type: Transform + pos: 52.549507,-0.46974826 + parent: 2 +- proto: AntiAnomalyZone + entities: + - uid: 482 + components: + - type: Transform + pos: 71.5,3.5 + parent: 2 + - uid: 485 + components: + - type: Transform + pos: 65.5,62.5 + parent: 2 +- proto: APCBasic + entities: + - uid: 495 + components: + - type: Transform + pos: 34.5,56.5 + parent: 2 + - uid: 496 + components: + - type: Transform + pos: 27.5,30.5 + parent: 2 + - uid: 497 + components: + - type: Transform + pos: 19.5,41.5 + parent: 2 + - uid: 498 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - uid: 499 + components: + - type: Transform + pos: 6.5,30.5 + parent: 2 + - uid: 500 + components: + - type: Transform + pos: 4.5,46.5 + parent: 2 + - uid: 501 + components: + - type: Transform + pos: -24.5,47.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: -31.5,54.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: -22.5,46.5 + parent: 2 + - uid: 504 + components: + - type: Transform + pos: -10.5,46.5 + parent: 2 + - uid: 505 + components: + - type: Transform + pos: -8.5,46.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: -2.5,37.5 + parent: 2 + - uid: 507 + components: + - type: Transform + pos: -3.5,28.5 + parent: 2 + - uid: 508 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - uid: 509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,15.5 + parent: 2 + - uid: 510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,6.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: 11.5,76.5 + parent: 2 + - uid: 513 + components: + - type: Transform + pos: -17.5,56.5 + parent: 2 + - uid: 514 + components: + - type: Transform + pos: -25.5,72.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: -17.5,71.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: -30.5,59.5 + parent: 2 + - uid: 517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,64.5 + parent: 2 + - uid: 518 + components: + - type: Transform + pos: 18.5,60.5 + parent: 2 + - uid: 519 + components: + - type: Transform + pos: 13.5,63.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: -3.5,69.5 + parent: 2 + - type: Apc + hasAccess: True + lastExternalState: Good + lastChargeState: Full + - uid: 521 + components: + - type: Transform + pos: -0.5,18.5 + parent: 2 + - uid: 522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,13.5 + parent: 2 + - uid: 523 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 525 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 526 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 + - uid: 527 + components: + - type: Transform + pos: 29.5,2.5 + parent: 2 + - uid: 528 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - uid: 529 + components: + - type: Transform + pos: 37.5,15.5 + parent: 2 + - uid: 530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,11.5 + parent: 2 + - uid: 531 + components: + - type: Transform + pos: 43.5,18.5 + parent: 2 + - uid: 532 + components: + - type: Transform + pos: 42.5,22.5 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: 54.5,5.5 + parent: 2 + - uid: 534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,24.5 + parent: 2 + - uid: 535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,38.5 + parent: 2 + - uid: 536 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 537 + components: + - type: Transform + pos: 54.5,18.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: -8.5,57.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: -2.5,59.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: 3.5,65.5 + parent: 2 + - uid: 541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,29.5 + parent: 2 + - uid: 542 + components: + - type: Transform + pos: 60.5,27.5 + parent: 2 + - uid: 543 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 + - uid: 544 + components: + - type: Transform + pos: 49.5,49.5 + parent: 2 + - uid: 545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,51.5 + parent: 2 + - uid: 546 + components: + - type: Transform + pos: 54.5,52.5 + parent: 2 + - uid: 547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,43.5 + parent: 2 + - uid: 548 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,53.5 + parent: 2 + - uid: 550 + components: + - type: Transform + pos: 31.5,57.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: 39.5,55.5 + parent: 2 + - uid: 552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,42.5 + parent: 2 + - uid: 553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,31.5 + parent: 2 + - uid: 554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,44.5 + parent: 2 + - uid: 555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,42.5 + parent: 2 + - uid: 556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,38.5 + parent: 2 + - uid: 557 + components: + - type: Transform + pos: 26.5,37.5 + parent: 2 + - uid: 558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,40.5 + parent: 2 + - uid: 559 + components: + - type: Transform + pos: 77.5,46.5 + parent: 2 + - uid: 561 + components: + - type: Transform + pos: 75.5,32.5 + parent: 2 + - uid: 562 + components: + - type: Transform + pos: 78.5,27.5 + parent: 2 + - uid: 563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,24.5 + parent: 2 + - uid: 564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,39.5 + parent: 2 + - uid: 565 + components: + - type: Transform + pos: 79.5,36.5 + parent: 2 + - uid: 566 + components: + - type: Transform + pos: 59.5,58.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: 70.5,22.5 + parent: 2 + - uid: 568 + components: + - type: Transform + pos: 73.5,16.5 + parent: 2 + - uid: 569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,6.5 + parent: 2 + - uid: 570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,24.5 + parent: 2 + - uid: 571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,27.5 + parent: 2 + - uid: 572 + components: + - type: Transform + pos: -32.5,40.5 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: -6.5,18.5 + parent: 2 + - uid: 574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-11.5 + parent: 2 + - uid: 13429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,68.5 + parent: 2 +- proto: APCElectronics + entities: + - uid: 575 + components: + - type: Transform + pos: 26.682535,62.301582 + parent: 2 + - uid: 576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.562979,62.480793 + parent: 2 +- proto: APECircuitboard + entities: + - uid: 577 + components: + - type: Transform + pos: 52.49136,-0.61347103 + parent: 2 +- proto: ArrivalsShuttleTimer + entities: + - uid: 578 + components: + - type: Transform + pos: 67.5,12.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: 68.5,5.5 + parent: 2 + - uid: 580 + components: + - type: Transform + pos: 75.5,6.5 + parent: 2 + - uid: 581 + components: + - type: Transform + pos: 67.5,22.5 + parent: 2 +- proto: Ashtray + entities: + - uid: 582 + components: + - type: Transform + pos: 70.50509,21.587791 + parent: 2 +- proto: AtmosDeviceFanTiny + entities: + - uid: 583 + components: + - type: Transform + pos: -29.5,46.5 + parent: 2 + - uid: 584 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,58.5 + parent: 2 + - uid: 587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,71.5 + parent: 2 + - uid: 588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,71.5 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: 15.5,77.5 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 + - uid: 592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,16.5 + parent: 2 + - uid: 593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,7.5 + parent: 2 + - uid: 594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,0.5 + parent: 2 + - uid: 595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,65.5 + parent: 2 + - uid: 596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,65.5 + parent: 2 + - uid: 597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,65.5 + parent: 2 + - uid: 598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,65.5 + parent: 2 + - uid: 599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,62.5 + parent: 2 + - uid: 600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,61.5 + parent: 2 + - uid: 601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,60.5 + parent: 2 + - uid: 602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,59.5 + parent: 2 + - uid: 603 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 + - uid: 604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,49.5 + parent: 2 + - uid: 605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,47.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 2 + - uid: 607 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 + - uid: 9910 + components: + - type: Transform + pos: 53.5,6.5 + parent: 2 +- proto: AtmosFixBlockerMarker + entities: + - uid: 608 + components: + - type: Transform + pos: -27.5,25.5 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: -27.5,24.5 + parent: 2 + - uid: 610 + components: + - type: Transform + pos: -27.5,23.5 + parent: 2 + - uid: 611 + components: + - type: Transform + pos: -26.5,24.5 + parent: 2 + - uid: 612 + components: + - type: Transform + pos: -26.5,25.5 + parent: 2 + - uid: 613 + components: + - type: Transform + pos: -38.5,26.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: -40.5,27.5 + parent: 2 + - uid: 615 + components: + - type: Transform + pos: -39.5,26.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: -39.5,25.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: -26.5,23.5 + parent: 2 + - uid: 618 + components: + - type: Transform + pos: -28.5,25.5 + parent: 2 + - uid: 619 + components: + - type: Transform + pos: -28.5,24.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: -28.5,23.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: -40.5,25.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: -40.5,26.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: -38.5,25.5 + parent: 2 + - uid: 624 + components: + - type: Transform + pos: -39.5,27.5 + parent: 2 + - uid: 625 + components: + - type: Transform + pos: -38.5,27.5 + parent: 2 + - uid: 626 + components: + - type: Transform + pos: -39.5,21.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: -39.5,20.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: -39.5,19.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: -38.5,21.5 + parent: 2 + - uid: 630 + components: + - type: Transform + pos: -38.5,20.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: -38.5,19.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: -37.5,21.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: -37.5,20.5 + parent: 2 + - uid: 634 + components: + - type: Transform + pos: -37.5,19.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: -31.5,1.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: -31.5,1.5 + parent: 2 + - uid: 637 + components: + - type: Transform + pos: -31.5,2.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: -31.5,3.5 + parent: 2 + - uid: 639 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 640 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 + - uid: 641 + components: + - type: Transform + pos: -32.5,3.5 + parent: 2 + - uid: 642 + components: + - type: Transform + pos: -33.5,1.5 + parent: 2 + - uid: 643 + components: + - type: Transform + pos: -33.5,2.5 + parent: 2 + - uid: 644 + components: + - type: Transform + pos: -33.5,3.5 + parent: 2 + - uid: 645 + components: + - type: Transform + pos: -39.5,9.5 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: -39.5,8.5 + parent: 2 + - uid: 647 + components: + - type: Transform + pos: -39.5,7.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: -38.5,9.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: -38.5,8.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: -38.5,7.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: -37.5,9.5 + parent: 2 + - uid: 652 + components: + - type: Transform + pos: -37.5,8.5 + parent: 2 + - uid: 653 + components: + - type: Transform + pos: -37.5,7.5 + parent: 2 + - uid: 654 + components: + - type: Transform + pos: -37.5,7.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 655 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: 24.5,1.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: 24.5,2.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 661 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 + - uid: 662 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 + - uid: 663 + components: + - type: Transform + pos: 25.5,2.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: 25.5,1.5 + parent: 2 + - uid: 665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,48.5 + parent: 2 + - uid: 666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,49.5 + parent: 2 + - uid: 667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,50.5 + parent: 2 + - uid: 668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,48.5 + parent: 2 + - uid: 669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,49.5 + parent: 2 + - uid: 670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,51.5 + parent: 2 + - uid: 671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,50.5 + parent: 2 + - uid: 672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,51.5 + parent: 2 + - uid: 673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,48.5 + parent: 2 + - uid: 674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,49.5 + parent: 2 + - uid: 675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,50.5 + parent: 2 + - uid: 676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,51.5 + parent: 2 + - uid: 677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,50.5 + parent: 2 + - uid: 678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,49.5 + parent: 2 + - uid: 679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,48.5 + parent: 2 + - uid: 9911 + components: + - type: Transform + pos: 54.5,7.5 + parent: 2 + - uid: 9912 + components: + - type: Transform + pos: 54.5,6.5 + parent: 2 + - uid: 9913 + components: + - type: Transform + pos: 55.5,7.5 + parent: 2 + - uid: 11668 + components: + - type: Transform + pos: 55.5,6.5 + parent: 2 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 680 + components: + - type: Transform + pos: -39.5,13.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: -39.5,12.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: -39.5,11.5 + parent: 2 + - uid: 683 + components: + - type: Transform + pos: -38.5,13.5 + parent: 2 + - uid: 684 + components: + - type: Transform + pos: -38.5,12.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: -38.5,11.5 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: -37.5,13.5 + parent: 2 + - uid: 687 + components: + - type: Transform + pos: -37.5,12.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: -37.5,11.5 + parent: 2 +- proto: AtmosFixOxygenMarker + entities: + - uid: 689 + components: + - type: Transform + pos: -39.5,17.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: -39.5,16.5 + parent: 2 + - uid: 691 + components: + - type: Transform + pos: -39.5,15.5 + parent: 2 + - uid: 692 + components: + - type: Transform + pos: -38.5,17.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: -38.5,16.5 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: -38.5,15.5 + parent: 2 + - uid: 695 + components: + - type: Transform + pos: -37.5,17.5 + parent: 2 + - uid: 696 + components: + - type: Transform + pos: -37.5,16.5 + parent: 2 + - uid: 697 + components: + - type: Transform + pos: -37.5,15.5 + parent: 2 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 698 + components: + - type: Transform + pos: -29.5,3.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: -29.5,2.5 + parent: 2 + - uid: 700 + components: + - type: Transform + pos: -29.5,1.5 + parent: 2 + - uid: 701 + components: + - type: Transform + pos: -28.5,3.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: -28.5,2.5 + parent: 2 + - uid: 703 + components: + - type: Transform + pos: -28.5,1.5 + parent: 2 + - uid: 704 + components: + - type: Transform + pos: -27.5,3.5 + parent: 2 + - uid: 705 + components: + - type: Transform + pos: -27.5,2.5 + parent: 2 + - uid: 706 + components: + - type: Transform + pos: -27.5,1.5 + parent: 2 + - uid: 707 + components: + - type: Transform + pos: -27.5,1.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 708 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 + - uid: 709 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 2 +- proto: AutolatheMachineCircuitboard + entities: + - uid: 711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.982067,53.66527 + parent: 2 +- proto: BananaPhoneInstrument + entities: + - uid: 712 + components: + - type: Transform + pos: 40.525475,43.56165 + parent: 2 +- proto: BananaSeeds + entities: + - uid: 12079 + components: + - type: Transform + pos: -30.504583,76.46657 + parent: 2 + - uid: 12083 + components: + - type: Transform + pos: -30.504583,77.4729 + parent: 2 + - uid: 13975 + components: + - type: Transform + pos: -29.479267,76.4286 + parent: 2 +- proto: BannerNanotrasen + entities: + - uid: 18019 + components: + - type: Transform + pos: 79.5,35.5 + parent: 2 + - uid: 18128 + components: + - type: Transform + pos: 79.5,33.5 + parent: 2 +- proto: BarricadeBlock + entities: + - uid: 716 + components: + - type: Transform + pos: 61.5,25.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: 27.5,61.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: 48.5,58.5 + parent: 2 + - uid: 719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,63.5 + parent: 2 +- proto: BarricadeDirectional + entities: + - uid: 720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,25.5 + parent: 2 + - uid: 721 + components: + - type: Transform + pos: 48.5,59.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: 39.5,64.5 + parent: 2 +- proto: BarSignSpacebucks + entities: + - uid: 723 + components: + - type: Transform + pos: 59.5,36.5 + parent: 2 +- proto: BaseBallBat + entities: + - uid: 724 + components: + - type: Transform + pos: -26.319265,53.646645 + parent: 2 +- proto: BaseComputer + entities: + - uid: 725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,27.5 + parent: 2 + - uid: 726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,29.5 + parent: 2 +- proto: BaseGasCondenser + entities: + - uid: 727 + components: + - type: Transform + pos: 38.5,13.5 + parent: 2 + - uid: 728 + components: + - type: Transform + pos: 9.5,26.5 + parent: 2 +- proto: Beaker + entities: + - uid: 19512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.199577,74.62238 + parent: 2 +- proto: Bed + entities: + - uid: 729 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - uid: 730 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - uid: 731 + components: + - type: Transform + pos: 19.5,14.5 + parent: 2 + - uid: 733 + components: + - type: Transform + pos: -33.5,61.5 + parent: 2 + - uid: 734 + components: + - type: Transform + pos: -29.5,61.5 + parent: 2 + - uid: 735 + components: + - type: Transform + pos: -7.5,51.5 + parent: 2 + - uid: 736 + components: + - type: Transform + pos: -3.5,51.5 + parent: 2 + - uid: 737 + components: + - type: Transform + pos: 0.5,51.5 + parent: 2 + - uid: 738 + components: + - type: Transform + pos: 76.5,26.5 + parent: 2 +- proto: BedsheetBrigmedic + entities: + - uid: 739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,58.5 + parent: 2 +- proto: BedsheetCaptain + entities: + - uid: 741 + components: + - type: Transform + pos: 76.5,26.5 + parent: 2 +- proto: BedsheetClown + entities: + - uid: 743 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: BedsheetCult + entities: + - uid: 768 + components: + - type: Transform + pos: 13.5,62.5 + parent: 2 +- proto: BedsheetMedical + entities: + - uid: 769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,35.5 + parent: 2 + - uid: 770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,35.5 + parent: 2 + - uid: 771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,35.5 + parent: 2 +- proto: BedsheetMime + entities: + - uid: 773 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: BedsheetOrange + entities: + - uid: 796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,40.5 + parent: 2 + - uid: 797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,42.5 + parent: 2 +- proto: BedsheetSpawner + entities: + - uid: 798 + components: + - type: Transform + pos: 19.5,14.5 + parent: 2 + - uid: 799 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - uid: 800 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - uid: 801 + components: + - type: Transform + pos: -7.5,51.5 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: -3.5,51.5 + parent: 2 + - uid: 803 + components: + - type: Transform + pos: 0.5,51.5 + parent: 2 +- proto: BedsheetSyndie + entities: + - uid: 804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,61.5 + parent: 2 + - uid: 805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,61.5 + parent: 2 +- proto: BenchSofaCorpLeft + entities: + - uid: 13645 + components: + - type: Transform + pos: 70.5,31.5 + parent: 2 +- proto: BenchSofaCorpMiddle + entities: + - uid: 5665 + components: + - type: Transform + pos: 69.5,31.5 + parent: 2 +- proto: BenchSofaCorpRight + entities: + - uid: 12613 + components: + - type: Transform + pos: 68.5,31.5 + parent: 2 +- proto: BenchSofaLeft + entities: + - uid: 560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,23.5 + parent: 2 +- proto: BenchSofaMiddle + entities: + - uid: 16998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,24.5 + parent: 2 +- proto: BenchSofaRight + entities: + - uid: 5986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,25.5 + parent: 2 +- proto: BiomassReclaimer + entities: + - uid: 18529 + components: + - type: Transform + pos: 20.5,23.5 + parent: 2 +- proto: BlastDoor + entities: + - uid: 806 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14460 + - uid: 807 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14461 + - uid: 808 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14460 + - uid: 809 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14456 + - uid: 810 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14456 + - uid: 811 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14459 + - uid: 812 + components: + - type: Transform + pos: -40.5,25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14457 + - uid: 813 + components: + - type: Transform + pos: -40.5,26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14457 + - uid: 814 + components: + - type: Transform + pos: -40.5,27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14457 + - uid: 815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,64.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14462 + - uid: 816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,67.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14462 + - uid: 817 + components: + - type: Transform + pos: 80.5,62.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14470 + - uid: 818 + components: + - type: Transform + pos: 80.5,61.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14470 + - uid: 819 + components: + - type: Transform + pos: 80.5,60.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14470 + - uid: 820 + components: + - type: Transform + pos: 80.5,59.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14470 +- proto: BlastDoorExterior3 + entities: + - uid: 821 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 + - uid: 822 + components: + - type: Transform + pos: 29.5,10.5 + parent: 2 + - uid: 823 + components: + - type: Transform + pos: 29.5,11.5 + parent: 2 +- proto: BlastDoorOpen + entities: + - uid: 824 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14467 + - uid: 825 + components: + - type: Transform + pos: 14.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14467 + - uid: 826 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14467 + - uid: 827 + components: + - type: Transform + pos: 12.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14467 + - uid: 828 + components: + - type: Transform + pos: 7.5,46.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14469 +- proto: BlockGameArcade + entities: + - uid: 831 + components: + - type: Transform + pos: -27.5,68.5 + parent: 2 + - type: SpamEmitSound + enabled: False +- proto: BodyBag + entities: + - uid: 832 + components: + - type: Transform + pos: 29.499334,63.573135 + parent: 2 +- proto: BookAtmosAirAlarms + entities: + - uid: 833 + components: + - type: Transform + pos: -7.5243444,23.902966 + parent: 2 +- proto: BookAtmosDistro + entities: + - uid: 834 + components: + - type: Transform + pos: -7.355895,23.776714 + parent: 2 +- proto: BookAtmosVentsMore + entities: + - uid: 835 + components: + - type: Transform + pos: -7.6506824,23.629421 + parent: 2 +- proto: BookAtmosWaste + entities: + - uid: 836 + components: + - type: Transform + pos: -7.27167,23.50317 + parent: 2 +- proto: BookBartendersManual + entities: + - uid: 837 + components: + - type: Transform + pos: 59.54428,38.528282 + parent: 2 +- proto: BookChefGaming + entities: + - uid: 838 + components: + - type: Transform + pos: 54.416607,44.586376 + parent: 2 +- proto: BookEngineersHandbook + entities: + - uid: 839 + components: + - type: Transform + pos: -11.444434,33.764362 + parent: 2 +- proto: BookSecurity + entities: + - uid: 840 + components: + - type: Transform + pos: 5.5,27.5 + parent: 2 +- proto: BookshelfFilled + entities: + - uid: 841 + components: + - type: Transform + pos: 23.5,57.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: 25.5,57.5 + parent: 2 + - uid: 843 + components: + - type: Transform + pos: 23.5,55.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: 22.5,55.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: 25.5,55.5 + parent: 2 + - uid: 846 + components: + - type: Transform + pos: 23.5,53.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: 25.5,53.5 + parent: 2 + - uid: 848 + components: + - type: Transform + pos: 16.5,59.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: 22.5,53.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: 22.5,57.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: 24.5,55.5 + parent: 2 + - uid: 852 + components: + - type: Transform + pos: 24.5,53.5 + parent: 2 +- proto: BoozeDispenser + entities: + - uid: 853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,37.5 + parent: 2 + - uid: 854 + components: + - type: Transform + pos: 59.5,26.5 + parent: 2 + - uid: 855 + components: + - type: Transform + pos: 47.5,61.5 + parent: 2 +- proto: BorgCharger + entities: + - uid: 856 + components: + - type: Transform + pos: 53.5,20.5 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: -0.5,66.5 + parent: 2 + - uid: 858 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 + - uid: 859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,16.5 + parent: 2 + - uid: 860 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 861 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 2 +- proto: BorgModuleClowning + entities: + - uid: 744 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: BoxBeaker + entities: + - uid: 862 + components: + - type: Transform + pos: 25.604435,41.674557 + parent: 2 + - uid: 863 + components: + - type: Transform + pos: 3.362266,38.704063 + parent: 2 +- proto: BoxBodyBag + entities: + - uid: 864 + components: + - type: Transform + pos: -28.070541,50.583153 + parent: 2 + - uid: 865 + components: + - type: Transform + pos: -5.4911914,57.617535 + parent: 2 + - uid: 866 + components: + - type: Transform + pos: 23.459993,23.461582 + parent: 2 + - uid: 867 + components: + - type: Transform + pos: 23.656519,23.629917 + parent: 2 + - uid: 868 + components: + - type: Transform + pos: 17.488485,41.597794 + parent: 2 + - uid: 869 + components: + - type: Transform + pos: 3.673111,38.745247 + parent: 2 +- proto: BoxBottle + entities: + - uid: 870 + components: + - type: Transform + pos: 25.590397,41.59039 + parent: 2 + - uid: 871 + components: + - type: Transform + pos: 3.7089782,38.48901 + parent: 2 +- proto: BoxCartridgeCap + entities: + - uid: 872 + components: + - type: Transform + pos: 40.402996,38.55928 + parent: 2 +- proto: BoxFolderBlue + entities: + - uid: 873 + components: + - type: Transform + pos: 36.64572,11.392298 + parent: 2 + - uid: 874 + components: + - type: Transform + pos: 1.4076779,15.600878 + parent: 2 + - uid: 875 + components: + - type: Transform + pos: -17.656897,54.815556 + parent: 2 + - uid: 876 + components: + - type: Transform + pos: 36.556053,11.589432 + parent: 2 + - uid: 877 + components: + - type: Transform + pos: 36.34085,11.768642 + parent: 2 + - uid: 878 + components: + - type: Transform + pos: 53.74968,14.408739 + parent: 2 + - uid: 879 + components: + - type: Transform + pos: 76.22655,37.437874 + parent: 2 + - uid: 880 + components: + - type: Transform + pos: 82.71409,23.572166 + parent: 2 + - uid: 881 + components: + - type: Transform + pos: 82.570625,23.715534 + parent: 2 + - uid: 884 + components: + - type: Transform + parent: 883 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 885 + components: + - type: Transform + parent: 883 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 886 + components: + - type: Transform + parent: 883 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: BoxFolderGreen + entities: + - uid: 887 + components: + - type: Transform + parent: 883 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 888 + components: + - type: Transform + parent: 883 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 895 + components: + - type: Transform + pos: 9.432186,12.429024 + parent: 2 + - uid: 896 + components: + - type: Transform + pos: 9.593586,12.429024 + parent: 2 + - uid: 897 + components: + - type: Transform + pos: 12.498117,12.370186 + parent: 2 + - uid: 898 + components: + - type: Transform + pos: 1.3538773,15.672562 + parent: 2 +- proto: BoxFolderRed + entities: + - uid: 889 + components: + - type: Transform + parent: 883 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 890 + components: + - type: Transform + parent: 883 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 891 + components: + - type: Transform + parent: 883 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 899 + components: + - type: Transform + pos: -17.40583,54.696083 + parent: 2 + - uid: 900 + components: + - type: Transform + pos: -17.561253,54.576607 + parent: 2 + - uid: 901 + components: + - type: Transform + pos: -24.330013,51.6445 + parent: 2 + - uid: 902 + components: + - type: Transform + pos: -24.557169,51.763977 + parent: 2 + - uid: 903 + components: + - type: Transform + pos: -24.526747,55.209854 + parent: 2 + - uid: 904 + components: + - type: Transform + pos: -21.339342,60.47898 + parent: 2 + - uid: 905 + components: + - type: Transform + pos: -21.554543,60.60443 + parent: 2 + - uid: 906 + components: + - type: Transform + pos: 46.763573,12.463495 + parent: 2 + - uid: 907 + components: + - type: Transform + pos: 46.512505,12.481417 + parent: 2 +- proto: BoxFolderWhite + entities: + - uid: 909 + components: + - type: Transform + pos: 18.613544,39.495056 + parent: 2 + - uid: 910 + components: + - type: Transform + pos: 18.774944,39.620502 + parent: 2 +- proto: BoxFolderYellow + entities: + - uid: 911 + components: + - type: Transform + pos: -5.715718,26.000225 + parent: 2 + - uid: 912 + components: + - type: Transform + pos: -5.603417,25.537304 + parent: 2 + - uid: 913 + components: + - type: Transform + pos: -5.53323,25.705639 + parent: 2 +- proto: BoxLightMixed + entities: + - uid: 914 + components: + - type: Transform + pos: 44.48078,54.628574 + parent: 2 +- proto: BoxMagazinePistol + entities: + - uid: 915 + components: + - type: Transform + pos: -14.526857,70.690544 + parent: 2 +- proto: BoxMagazinePistolSubMachineGun + entities: + - uid: 916 + components: + - type: Transform + pos: -14.272904,70.80773 + parent: 2 +- proto: BoxMagazineRifle + entities: + - uid: 917 + components: + - type: Transform + pos: -14.780811,70.49523 + parent: 2 +- proto: BoxSyringe + entities: + - uid: 918 + components: + - type: Transform + pos: 25.379835,41.50622 + parent: 2 + - uid: 919 + components: + - type: Transform + pos: 3.4579105,38.524853 + parent: 2 +- proto: BriefcaseBrownFilled + entities: + - uid: 920 + components: + - type: Transform + pos: -24.485435,51.51308 + parent: 2 + - uid: 921 + components: + - type: Transform + pos: 0.45231438,59.847607 + parent: 2 +- proto: BrigTimer + entities: + - uid: 922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,53.5 + parent: 2 + - uid: 923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,53.5 + parent: 2 + - uid: 924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,53.5 + parent: 2 +- proto: Bucket + entities: + - uid: 925 + components: + - type: Transform + pos: 55.549828,19.621422 + parent: 2 + - uid: 926 + components: + - type: Transform + pos: 39.50665,52.551533 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 927 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 928 + components: + - type: Transform + pos: -14.5,38.5 + parent: 2 + - uid: 929 + components: + - type: Transform + pos: -13.5,38.5 + parent: 2 + - uid: 930 + components: + - type: Transform + pos: -28.5,1.5 + parent: 2 + - uid: 931 + components: + - type: Transform + pos: -34.5,69.5 + parent: 2 + - uid: 932 + components: + - type: Transform + pos: -34.5,30.5 + parent: 2 + - uid: 933 + components: + - type: Transform + pos: -28.5,21.5 + parent: 2 + - uid: 934 + components: + - type: Transform + pos: 34.5,56.5 + parent: 2 + - uid: 935 + components: + - type: Transform + pos: 34.5,53.5 + parent: 2 + - uid: 936 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 937 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - uid: 938 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 939 + components: + - type: Transform + pos: 15.5,2.5 + parent: 2 + - uid: 940 + components: + - type: Transform + pos: -23.5,15.5 + parent: 2 + - uid: 941 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 + - uid: 942 + components: + - type: Transform + pos: -24.5,13.5 + parent: 2 + - uid: 943 + components: + - type: Transform + pos: -24.5,12.5 + parent: 2 + - uid: 944 + components: + - type: Transform + pos: -24.5,11.5 + parent: 2 + - uid: 945 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 946 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: -26.5,10.5 + parent: 2 + - uid: 948 + components: + - type: Transform + pos: -24.5,14.5 + parent: 2 + - uid: 949 + components: + - type: Transform + pos: -26.5,9.5 + parent: 2 + - uid: 950 + components: + - type: Transform + pos: -41.5,28.5 + parent: 2 + - uid: 951 + components: + - type: Transform + pos: -31.5,27.5 + parent: 2 + - uid: 952 + components: + - type: Transform + pos: -32.5,27.5 + parent: 2 + - uid: 953 + components: + - type: Transform + pos: -33.5,27.5 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: -34.5,27.5 + parent: 2 + - uid: 955 + components: + - type: Transform + pos: -34.5,28.5 + parent: 2 + - uid: 956 + components: + - type: Transform + pos: -34.5,29.5 + parent: 2 + - uid: 957 + components: + - type: Transform + pos: -34.5,26.5 + parent: 2 + - uid: 958 + components: + - type: Transform + pos: -31.5,26.5 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: -31.5,25.5 + parent: 2 + - uid: 960 + components: + - type: Transform + pos: -31.5,24.5 + parent: 2 + - uid: 961 + components: + - type: Transform + pos: -31.5,23.5 + parent: 2 + - uid: 962 + components: + - type: Transform + pos: -26.5,8.5 + parent: 2 + - uid: 963 + components: + - type: Transform + pos: -26.5,7.5 + parent: 2 + - uid: 964 + components: + - type: Transform + pos: -27.5,7.5 + parent: 2 + - uid: 965 + components: + - type: Transform + pos: -27.5,6.5 + parent: 2 + - uid: 966 + components: + - type: Transform + pos: -28.5,6.5 + parent: 2 + - uid: 967 + components: + - type: Transform + pos: -29.5,6.5 + parent: 2 + - uid: 968 + components: + - type: Transform + pos: -30.5,6.5 + parent: 2 + - uid: 969 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - uid: 970 + components: + - type: Transform + pos: -32.5,6.5 + parent: 2 + - uid: 971 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - uid: 972 + components: + - type: Transform + pos: -33.5,7.5 + parent: 2 + - uid: 973 + components: + - type: Transform + pos: -34.5,7.5 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: -34.5,8.5 + parent: 2 + - uid: 975 + components: + - type: Transform + pos: -34.5,9.5 + parent: 2 + - uid: 976 + components: + - type: Transform + pos: -34.5,10.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: -34.5,11.5 + parent: 2 + - uid: 978 + components: + - type: Transform + pos: -34.5,12.5 + parent: 2 + - uid: 979 + components: + - type: Transform + pos: -34.5,13.5 + parent: 2 + - uid: 980 + components: + - type: Transform + pos: -34.5,14.5 + parent: 2 + - uid: 981 + components: + - type: Transform + pos: -34.5,15.5 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: -34.5,16.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 + - uid: 984 + components: + - type: Transform + pos: -34.5,18.5 + parent: 2 + - uid: 985 + components: + - type: Transform + pos: -34.5,19.5 + parent: 2 + - uid: 986 + components: + - type: Transform + pos: -34.5,20.5 + parent: 2 + - uid: 987 + components: + - type: Transform + pos: -34.5,21.5 + parent: 2 + - uid: 988 + components: + - type: Transform + pos: -33.5,21.5 + parent: 2 + - uid: 989 + components: + - type: Transform + pos: -32.5,21.5 + parent: 2 + - uid: 990 + components: + - type: Transform + pos: -31.5,21.5 + parent: 2 + - uid: 991 + components: + - type: Transform + pos: -30.5,21.5 + parent: 2 + - uid: 992 + components: + - type: Transform + pos: -30.5,20.5 + parent: 2 + - uid: 993 + components: + - type: Transform + pos: -30.5,19.5 + parent: 2 + - uid: 994 + components: + - type: Transform + pos: -29.5,19.5 + parent: 2 + - uid: 995 + components: + - type: Transform + pos: -28.5,19.5 + parent: 2 + - uid: 996 + components: + - type: Transform + pos: -28.5,20.5 + parent: 2 + - uid: 997 + components: + - type: Transform + pos: -27.5,20.5 + parent: 2 + - uid: 998 + components: + - type: Transform + pos: -26.5,20.5 + parent: 2 + - uid: 999 + components: + - type: Transform + pos: -26.5,19.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: -25.5,19.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + pos: -24.5,19.5 + parent: 2 + - uid: 1002 + components: + - type: Transform + pos: -24.5,18.5 + parent: 2 + - uid: 1003 + components: + - type: Transform + pos: -24.5,17.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + pos: -24.5,16.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + pos: -23.5,18.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + pos: -22.5,18.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + pos: -21.5,18.5 + parent: 2 + - uid: 1008 + components: + - type: Transform + pos: -22.5,17.5 + parent: 2 + - uid: 1009 + components: + - type: Transform + pos: -22.5,19.5 + parent: 2 + - uid: 1010 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 + - uid: 1011 + components: + - type: Transform + pos: -22.5,21.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: -22.5,22.5 + parent: 2 + - uid: 1013 + components: + - type: Transform + pos: -22.5,23.5 + parent: 2 + - uid: 1014 + components: + - type: Transform + pos: -23.5,23.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + pos: -24.5,23.5 + parent: 2 + - uid: 1016 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - uid: 1017 + components: + - type: Transform + pos: -11.5,20.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: -11.5,19.5 + parent: 2 + - uid: 1019 + components: + - type: Transform + pos: -12.5,19.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + pos: -13.5,19.5 + parent: 2 + - uid: 1021 + components: + - type: Transform + pos: -14.5,19.5 + parent: 2 + - uid: 1022 + components: + - type: Transform + pos: -15.5,19.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + pos: -16.5,19.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: -16.5,18.5 + parent: 2 + - uid: 1025 + components: + - type: Transform + pos: -17.5,18.5 + parent: 2 + - uid: 1026 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + pos: -19.5,18.5 + parent: 2 + - uid: 1028 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + pos: -18.5,19.5 + parent: 2 + - uid: 1030 + components: + - type: Transform + pos: -18.5,20.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + pos: -18.5,21.5 + parent: 2 + - uid: 1032 + components: + - type: Transform + pos: -18.5,22.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + pos: -19.5,22.5 + parent: 2 + - uid: 1034 + components: + - type: Transform + pos: -18.5,17.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: -10.5,20.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + pos: -9.5,20.5 + parent: 2 + - uid: 1037 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 + - uid: 1038 + components: + - type: Transform + pos: -7.5,20.5 + parent: 2 + - uid: 1039 + components: + - type: Transform + pos: -9.5,21.5 + parent: 2 + - uid: 1040 + components: + - type: Transform + pos: -9.5,22.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: -9.5,23.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + pos: -9.5,24.5 + parent: 2 + - uid: 1043 + components: + - type: Transform + pos: -9.5,25.5 + parent: 2 + - uid: 1044 + components: + - type: Transform + pos: -3.5,28.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + pos: -3.5,27.5 + parent: 2 + - uid: 1046 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 + - uid: 1047 + components: + - type: Transform + pos: -4.5,26.5 + parent: 2 + - uid: 1048 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - uid: 1049 + components: + - type: Transform + pos: -4.5,24.5 + parent: 2 + - uid: 1050 + components: + - type: Transform + pos: -4.5,23.5 + parent: 2 + - uid: 1051 + components: + - type: Transform + pos: -3.5,25.5 + parent: 2 + - uid: 1052 + components: + - type: Transform + pos: -2.5,25.5 + parent: 2 + - uid: 1053 + components: + - type: Transform + pos: -5.5,27.5 + parent: 2 + - uid: 1054 + components: + - type: Transform + pos: -6.5,27.5 + parent: 2 + - uid: 1055 + components: + - type: Transform + pos: -2.5,37.5 + parent: 2 + - uid: 1056 + components: + - type: Transform + pos: -2.5,36.5 + parent: 2 + - uid: 1057 + components: + - type: Transform + pos: -2.5,35.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + pos: -3.5,35.5 + parent: 2 + - uid: 1059 + components: + - type: Transform + pos: -4.5,35.5 + parent: 2 + - uid: 1060 + components: + - type: Transform + pos: -5.5,35.5 + parent: 2 + - uid: 1061 + components: + - type: Transform + pos: -2.5,34.5 + parent: 2 + - uid: 1062 + components: + - type: Transform + pos: -2.5,33.5 + parent: 2 + - uid: 1063 + components: + - type: Transform + pos: -3.5,33.5 + parent: 2 + - uid: 1064 + components: + - type: Transform + pos: -4.5,33.5 + parent: 2 + - uid: 1065 + components: + - type: Transform + pos: -5.5,33.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + pos: -5.5,32.5 + parent: 2 + - uid: 1067 + components: + - type: Transform + pos: -5.5,31.5 + parent: 2 + - uid: 1068 + components: + - type: Transform + pos: -5.5,30.5 + parent: 2 + - uid: 1069 + components: + - type: Transform + pos: -4.5,30.5 + parent: 2 + - uid: 1070 + components: + - type: Transform + pos: -3.5,30.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + pos: -2.5,30.5 + parent: 2 + - uid: 1072 + components: + - type: Transform + pos: -4.5,36.5 + parent: 2 + - uid: 1073 + components: + - type: Transform + pos: -4.5,37.5 + parent: 2 + - uid: 1074 + components: + - type: Transform + pos: -4.5,38.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + pos: -4.5,39.5 + parent: 2 + - uid: 1076 + components: + - type: Transform + pos: -3.5,39.5 + parent: 2 + - uid: 1077 + components: + - type: Transform + pos: -2.5,39.5 + parent: 2 + - uid: 1078 + components: + - type: Transform + pos: -5.5,39.5 + parent: 2 + - uid: 1079 + components: + - type: Transform + pos: -6.5,39.5 + parent: 2 + - uid: 1080 + components: + - type: Transform + pos: -7.5,39.5 + parent: 2 + - uid: 1081 + components: + - type: Transform + pos: -8.5,39.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + pos: -9.5,39.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + pos: -8.5,40.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + pos: -10.5,39.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + pos: -10.5,40.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + pos: -9.5,38.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + pos: -9.5,37.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + pos: -9.5,36.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + pos: -9.5,35.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + pos: -9.5,34.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + pos: -9.5,33.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: -9.5,32.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: -9.5,31.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: -9.5,30.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + pos: -9.5,29.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + pos: -9.5,28.5 + parent: 2 + - uid: 1097 + components: + - type: Transform + pos: -9.5,27.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + pos: -8.5,28.5 + parent: 2 + - uid: 1099 + components: + - type: Transform + pos: -10.5,28.5 + parent: 2 + - uid: 1100 + components: + - type: Transform + pos: -8.5,30.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + pos: -10.5,30.5 + parent: 2 + - uid: 1102 + components: + - type: Transform + pos: -10.5,32.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + pos: -11.5,32.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: -12.5,38.5 + parent: 2 + - uid: 1105 + components: + - type: Transform + pos: -41.5,27.5 + parent: 2 + - uid: 1106 + components: + - type: Transform + pos: -42.5,27.5 + parent: 2 + - uid: 1107 + components: + - type: Transform + pos: -40.5,30.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + pos: -41.5,29.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: -43.5,27.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: -8.5,32.5 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: -10.5,35.5 + parent: 2 + - uid: 1112 + components: + - type: Transform + pos: -10.5,46.5 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: -10.5,45.5 + parent: 2 + - uid: 1114 + components: + - type: Transform + pos: -10.5,44.5 + parent: 2 + - uid: 1115 + components: + - type: Transform + pos: -10.5,43.5 + parent: 2 + - uid: 1116 + components: + - type: Transform + pos: -10.5,41.5 + parent: 2 + - uid: 1117 + components: + - type: Transform + pos: -8.5,41.5 + parent: 2 + - uid: 1118 + components: + - type: Transform + pos: -11.5,44.5 + parent: 2 + - uid: 1119 + components: + - type: Transform + pos: -12.5,44.5 + parent: 2 + - uid: 1120 + components: + - type: Transform + pos: -13.5,44.5 + parent: 2 + - uid: 1121 + components: + - type: Transform + pos: -14.5,44.5 + parent: 2 + - uid: 1122 + components: + - type: Transform + pos: -15.5,44.5 + parent: 2 + - uid: 1123 + components: + - type: Transform + pos: -14.5,43.5 + parent: 2 + - uid: 1124 + components: + - type: Transform + pos: -43.5,26.5 + parent: 2 + - uid: 1125 + components: + - type: Transform + pos: -40.5,29.5 + parent: 2 + - uid: 1126 + components: + - type: Transform + pos: -43.5,25.5 + parent: 2 + - uid: 1127 + components: + - type: Transform + pos: -22.5,46.5 + parent: 2 + - uid: 1128 + components: + - type: Transform + pos: -22.5,45.5 + parent: 2 + - uid: 1129 + components: + - type: Transform + pos: -22.5,44.5 + parent: 2 + - uid: 1130 + components: + - type: Transform + pos: -22.5,43.5 + parent: 2 + - uid: 1131 + components: + - type: Transform + pos: -21.5,43.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + pos: -20.5,43.5 + parent: 2 + - uid: 1133 + components: + - type: Transform + pos: -19.5,43.5 + parent: 2 + - uid: 1134 + components: + - type: Transform + pos: -18.5,43.5 + parent: 2 + - uid: 1135 + components: + - type: Transform + pos: -21.5,45.5 + parent: 2 + - uid: 1136 + components: + - type: Transform + pos: -20.5,45.5 + parent: 2 + - uid: 1137 + components: + - type: Transform + pos: -19.5,45.5 + parent: 2 + - uid: 1138 + components: + - type: Transform + pos: -18.5,45.5 + parent: 2 + - uid: 1139 + components: + - type: Transform + pos: -24.5,47.5 + parent: 2 + - uid: 1140 + components: + - type: Transform + pos: -24.5,46.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + pos: -25.5,46.5 + parent: 2 + - uid: 1142 + components: + - type: Transform + pos: -26.5,46.5 + parent: 2 + - uid: 1143 + components: + - type: Transform + pos: -28.5,46.5 + parent: 2 + - uid: 1144 + components: + - type: Transform + pos: -27.5,46.5 + parent: 2 + - uid: 1145 + components: + - type: Transform + pos: -25.5,45.5 + parent: 2 + - uid: 1146 + components: + - type: Transform + pos: -25.5,44.5 + parent: 2 + - uid: 1147 + components: + - type: Transform + pos: -25.5,43.5 + parent: 2 + - uid: 1148 + components: + - type: Transform + pos: -26.5,44.5 + parent: 2 + - uid: 1149 + components: + - type: Transform + pos: -27.5,44.5 + parent: 2 + - uid: 1150 + components: + - type: Transform + pos: -24.5,44.5 + parent: 2 + - uid: 1151 + components: + - type: Transform + pos: -42.5,25.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + pos: -35.5,30.5 + parent: 2 + - uid: 1153 + components: + - type: Transform + pos: -34.5,24.5 + parent: 2 + - uid: 1154 + components: + - type: Transform + pos: -8.5,46.5 + parent: 2 + - uid: 1155 + components: + - type: Transform + pos: -8.5,45.5 + parent: 2 + - uid: 1156 + components: + - type: Transform + pos: -8.5,44.5 + parent: 2 + - uid: 1157 + components: + - type: Transform + pos: -8.5,43.5 + parent: 2 + - uid: 1158 + components: + - type: Transform + pos: -7.5,44.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + pos: -6.5,44.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: -5.5,44.5 + parent: 2 + - uid: 1161 + components: + - type: Transform + pos: -4.5,44.5 + parent: 2 + - uid: 1162 + components: + - type: Transform + pos: -3.5,44.5 + parent: 2 + - uid: 1163 + components: + - type: Transform + pos: -4.5,43.5 + parent: 2 + - uid: 1164 + components: + - type: Transform + pos: -4.5,42.5 + parent: 2 + - uid: 1165 + components: + - type: Transform + pos: -3.5,42.5 + parent: 2 + - uid: 1166 + components: + - type: Transform + pos: -2.5,42.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + pos: -2.5,43.5 + parent: 2 + - uid: 1168 + components: + - type: Transform + pos: -1.5,43.5 + parent: 2 + - uid: 1169 + components: + - type: Transform + pos: -21.5,6.5 + parent: 2 + - uid: 1170 + components: + - type: Transform + pos: -21.5,7.5 + parent: 2 + - uid: 1171 + components: + - type: Transform + pos: -22.5,7.5 + parent: 2 + - uid: 1172 + components: + - type: Transform + pos: -23.5,7.5 + parent: 2 + - uid: 1173 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 + - uid: 1174 + components: + - type: Transform + pos: -22.5,8.5 + parent: 2 + - uid: 1175 + components: + - type: Transform + pos: -22.5,9.5 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: -21.5,9.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: -22.5,10.5 + parent: 2 + - uid: 1178 + components: + - type: Transform + pos: -22.5,11.5 + parent: 2 + - uid: 1179 + components: + - type: Transform + pos: -22.5,12.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: -22.5,13.5 + parent: 2 + - uid: 1181 + components: + - type: Transform + pos: -22.5,14.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + pos: -21.5,14.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: -20.5,14.5 + parent: 2 + - uid: 1184 + components: + - type: Transform + pos: -19.5,14.5 + parent: 2 + - uid: 1185 + components: + - type: Transform + pos: -19.5,13.5 + parent: 2 + - uid: 1186 + components: + - type: Transform + pos: -19.5,12.5 + parent: 2 + - uid: 1187 + components: + - type: Transform + pos: -18.5,12.5 + parent: 2 + - uid: 1188 + components: + - type: Transform + pos: -17.5,12.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 1190 + components: + - type: Transform + pos: -18.5,11.5 + parent: 2 + - uid: 1191 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + pos: -18.5,9.5 + parent: 2 + - uid: 1193 + components: + - type: Transform + pos: -18.5,8.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: -18.5,7.5 + parent: 2 + - uid: 1195 + components: + - type: Transform + pos: -18.5,6.5 + parent: 2 + - uid: 1196 + components: + - type: Transform + pos: -17.5,6.5 + parent: 2 + - uid: 1197 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: -15.5,12.5 + parent: 2 + - uid: 1200 + components: + - type: Transform + pos: -15.5,13.5 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: -15.5,14.5 + parent: 2 + - uid: 1202 + components: + - type: Transform + pos: -15.5,15.5 + parent: 2 + - uid: 1203 + components: + - type: Transform + pos: -15.5,16.5 + parent: 2 + - uid: 1204 + components: + - type: Transform + pos: -14.5,16.5 + parent: 2 + - uid: 1205 + components: + - type: Transform + pos: -13.5,16.5 + parent: 2 + - uid: 1206 + components: + - type: Transform + pos: -12.5,16.5 + parent: 2 + - uid: 1207 + components: + - type: Transform + pos: -11.5,16.5 + parent: 2 + - uid: 1208 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 + - uid: 1209 + components: + - type: Transform + pos: -9.5,16.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + pos: -9.5,17.5 + parent: 2 + - uid: 1211 + components: + - type: Transform + pos: -8.5,17.5 + parent: 2 + - uid: 1212 + components: + - type: Transform + pos: -7.5,17.5 + parent: 2 + - uid: 1213 + components: + - type: Transform + pos: -6.5,17.5 + parent: 2 + - uid: 1214 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - uid: 1215 + components: + - type: Transform + pos: -5.5,17.5 + parent: 2 + - uid: 1216 + components: + - type: Transform + pos: -3.5,17.5 + parent: 2 + - uid: 1217 + components: + - type: Transform + pos: -19.5,15.5 + parent: 2 + - uid: 1218 + components: + - type: Transform + pos: -18.5,15.5 + parent: 2 + - uid: 1219 + components: + - type: Transform + pos: -22.5,6.5 + parent: 2 + - uid: 1220 + components: + - type: Transform + pos: -22.5,5.5 + parent: 2 + - uid: 1221 + components: + - type: Transform + pos: -22.5,4.5 + parent: 2 + - uid: 1222 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: -11.5,7.5 + parent: 2 + - uid: 1224 + components: + - type: Transform + pos: -11.5,6.5 + parent: 2 + - uid: 1225 + components: + - type: Transform + pos: -10.5,6.5 + parent: 2 + - uid: 1226 + components: + - type: Transform + pos: -9.5,6.5 + parent: 2 + - uid: 1227 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 + - uid: 1228 + components: + - type: Transform + pos: -10.5,4.5 + parent: 2 + - uid: 1229 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: -13.5,6.5 + parent: 2 + - uid: 1231 + components: + - type: Transform + pos: -14.5,6.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + pos: -15.5,6.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: -14.5,5.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + pos: -14.5,4.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + pos: -14.5,2.5 + parent: 2 + - uid: 1237 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + pos: -14.5,9.5 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: -13.5,9.5 + parent: 2 + - uid: 1241 + components: + - type: Transform + pos: -15.5,9.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + pos: -11.5,9.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - uid: 1244 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - uid: 1245 + components: + - type: Transform + pos: -11.5,12.5 + parent: 2 + - uid: 1246 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 + - uid: 1247 + components: + - type: Transform + pos: -11.5,14.5 + parent: 2 + - uid: 1248 + components: + - type: Transform + pos: -12.5,14.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + pos: -13.5,14.5 + parent: 2 + - uid: 1250 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: -10.5,14.5 + parent: 2 + - uid: 1253 + components: + - type: Transform + pos: -9.5,14.5 + parent: 2 + - uid: 1254 + components: + - type: Transform + pos: -8.5,14.5 + parent: 2 + - uid: 1255 + components: + - type: Transform + pos: -10.5,11.5 + parent: 2 + - uid: 1256 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 + - uid: 1257 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: -5.5,15.5 + parent: 2 + - uid: 1260 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - uid: 1261 + components: + - type: Transform + pos: -5.5,13.5 + parent: 2 + - uid: 1262 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 1263 + components: + - type: Transform + pos: -6.5,14.5 + parent: 2 + - uid: 1264 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: -0.5,18.5 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: -0.5,17.5 + parent: 2 + - uid: 1267 + components: + - type: Transform + pos: -0.5,16.5 + parent: 2 + - uid: 1268 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 1269 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 1270 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 1271 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - uid: 1272 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 1273 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 1274 + components: + - type: Transform + pos: -1.5,14.5 + parent: 2 + - uid: 1275 + components: + - type: Transform + pos: -1.5,17.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 1277 + components: + - type: Transform + pos: 1.5,15.5 + parent: 2 + - uid: 1278 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - uid: 1279 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2 + - uid: 1280 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 1282 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 + - uid: 1287 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 + - uid: 1288 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 1289 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 1290 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 + - uid: 1291 + components: + - type: Transform + pos: 8.5,10.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + pos: 10.5,15.5 + parent: 2 + - uid: 1295 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - uid: 1296 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 1297 + components: + - type: Transform + pos: 7.5,15.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 + - uid: 1300 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 + - uid: 1301 + components: + - type: Transform + pos: 7.5,17.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 + - uid: 1303 + components: + - type: Transform + pos: 9.5,13.5 + parent: 2 + - uid: 1304 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 1305 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - uid: 1306 + components: + - type: Transform + pos: 7.5,11.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: 7.5,12.5 + parent: 2 + - uid: 1308 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 + - uid: 1309 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 + - uid: 1310 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 + - uid: 1311 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - uid: 1313 + components: + - type: Transform + pos: 4.5,14.5 + parent: 2 + - uid: 1314 + components: + - type: Transform + pos: 4.5,15.5 + parent: 2 + - uid: 1315 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - uid: 1316 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 1317 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 + - uid: 1318 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - uid: 1319 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - uid: 1320 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 1322 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 1323 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 1324 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - uid: 1328 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 1329 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + pos: -1.5,3.5 + parent: 2 + - uid: 1331 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + pos: -3.5,3.5 + parent: 2 + - uid: 1333 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 1334 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 1335 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 1336 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: -1.5,6.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 + - uid: 1340 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 1341 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 + - uid: 1343 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - uid: 1344 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - uid: 1345 + components: + - type: Transform + pos: -1.5,9.5 + parent: 2 + - uid: 1346 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 + - uid: 1347 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 1348 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 1349 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 + - uid: 1350 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + pos: -1.5,11.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + pos: -2.5,11.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + pos: -3.5,11.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 1357 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - uid: 1358 + components: + - type: Transform + pos: -6.5,11.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 1363 + components: + - type: Transform + pos: -2.5,4.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + pos: -3.5,6.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 + - uid: 1366 + components: + - type: Transform + pos: -5.5,6.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + pos: -6.5,6.5 + parent: 2 + - uid: 1368 + components: + - type: Transform + pos: -6.5,7.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + pos: -6.5,8.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 1377 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 1378 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - uid: 1379 + components: + - type: Transform + pos: -34.5,25.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + pos: -35.5,26.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + pos: -36.5,26.5 + parent: 2 + - uid: 1382 + components: + - type: Transform + pos: -37.5,26.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 1387 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - uid: 1388 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 1389 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 + - uid: 1390 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - uid: 1391 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 1392 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 1393 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 1394 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 1395 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 1397 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 1398 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 1400 + components: + - type: Transform + pos: 12.5,6.5 + parent: 2 + - uid: 1401 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 1402 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 1403 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 1404 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 1405 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 1406 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 1407 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 + - uid: 1408 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 1409 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 1410 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 1412 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + pos: 15.5,12.5 + parent: 2 + - uid: 1414 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 + - uid: 1415 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 1418 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 1419 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 1420 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 1421 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 1422 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 1423 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 1424 + components: + - type: Transform + pos: 18.5,8.5 + parent: 2 + - uid: 1425 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 1427 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - uid: 1428 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + pos: 16.5,6.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 1431 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - uid: 1433 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - uid: 1435 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 + - uid: 1436 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 1437 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 + - uid: 1438 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 1439 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 1441 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 1442 + components: + - type: Transform + pos: 27.5,7.5 + parent: 2 + - uid: 1443 + components: + - type: Transform + pos: 27.5,6.5 + parent: 2 + - uid: 1444 + components: + - type: Transform + pos: 28.5,7.5 + parent: 2 + - uid: 1445 + components: + - type: Transform + pos: 29.5,7.5 + parent: 2 + - uid: 1446 + components: + - type: Transform + pos: 30.5,7.5 + parent: 2 + - uid: 1447 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - uid: 1448 + components: + - type: Transform + pos: 32.5,7.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 1450 + components: + - type: Transform + pos: -35.5,8.5 + parent: 2 + - uid: 1451 + components: + - type: Transform + pos: -36.5,8.5 + parent: 2 + - uid: 1452 + components: + - type: Transform + pos: -37.5,8.5 + parent: 2 + - uid: 1453 + components: + - type: Transform + pos: -38.5,8.5 + parent: 2 + - uid: 1454 + components: + - type: Transform + pos: -39.5,8.5 + parent: 2 + - uid: 1455 + components: + - type: Transform + pos: -35.5,12.5 + parent: 2 + - uid: 1456 + components: + - type: Transform + pos: -36.5,12.5 + parent: 2 + - uid: 1457 + components: + - type: Transform + pos: -37.5,12.5 + parent: 2 + - uid: 1458 + components: + - type: Transform + pos: -38.5,12.5 + parent: 2 + - uid: 1459 + components: + - type: Transform + pos: -39.5,12.5 + parent: 2 + - uid: 1460 + components: + - type: Transform + pos: -35.5,16.5 + parent: 2 + - uid: 1461 + components: + - type: Transform + pos: -36.5,16.5 + parent: 2 + - uid: 1462 + components: + - type: Transform + pos: -37.5,16.5 + parent: 2 + - uid: 1463 + components: + - type: Transform + pos: -38.5,16.5 + parent: 2 + - uid: 1464 + components: + - type: Transform + pos: -39.5,16.5 + parent: 2 + - uid: 1465 + components: + - type: Transform + pos: -35.5,20.5 + parent: 2 + - uid: 1466 + components: + - type: Transform + pos: -36.5,20.5 + parent: 2 + - uid: 1467 + components: + - type: Transform + pos: -37.5,20.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + pos: -38.5,20.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + pos: -39.5,20.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + pos: -32.5,5.5 + parent: 2 + - uid: 1471 + components: + - type: Transform + pos: -32.5,4.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + pos: -32.5,3.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 + - uid: 1474 + components: + - type: Transform + pos: -28.5,4.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + pos: -28.5,3.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + pos: -28.5,2.5 + parent: 2 + - uid: 1477 + components: + - type: Transform + pos: -17.5,71.5 + parent: 2 + - uid: 1478 + components: + - type: Transform + pos: -17.5,70.5 + parent: 2 + - uid: 1479 + components: + - type: Transform + pos: -17.5,69.5 + parent: 2 + - uid: 1480 + components: + - type: Transform + pos: -17.5,68.5 + parent: 2 + - uid: 1481 + components: + - type: Transform + pos: -17.5,67.5 + parent: 2 + - uid: 1482 + components: + - type: Transform + pos: -17.5,66.5 + parent: 2 + - uid: 1483 + components: + - type: Transform + pos: -17.5,65.5 + parent: 2 + - uid: 1484 + components: + - type: Transform + pos: -17.5,64.5 + parent: 2 + - uid: 1485 + components: + - type: Transform + pos: -17.5,63.5 + parent: 2 + - uid: 1486 + components: + - type: Transform + pos: -17.5,62.5 + parent: 2 + - uid: 1487 + components: + - type: Transform + pos: -17.5,61.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: -17.5,60.5 + parent: 2 + - uid: 1489 + components: + - type: Transform + pos: -16.5,69.5 + parent: 2 + - uid: 1490 + components: + - type: Transform + pos: -15.5,69.5 + parent: 2 + - uid: 1491 + components: + - type: Transform + pos: -18.5,69.5 + parent: 2 + - uid: 1492 + components: + - type: Transform + pos: -18.5,67.5 + parent: 2 + - uid: 1493 + components: + - type: Transform + pos: -16.5,67.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + pos: -15.5,67.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + pos: -14.5,67.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: -14.5,66.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + pos: -14.5,65.5 + parent: 2 + - uid: 1498 + components: + - type: Transform + pos: -14.5,64.5 + parent: 2 + - uid: 1499 + components: + - type: Transform + pos: -18.5,63.5 + parent: 2 + - uid: 1500 + components: + - type: Transform + pos: -19.5,63.5 + parent: 2 + - uid: 1501 + components: + - type: Transform + pos: -16.5,63.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + pos: -18.5,61.5 + parent: 2 + - uid: 1503 + components: + - type: Transform + pos: -19.5,61.5 + parent: 2 + - uid: 1504 + components: + - type: Transform + pos: -16.5,61.5 + parent: 2 + - uid: 1505 + components: + - type: Transform + pos: -15.5,61.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + pos: -14.5,61.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + pos: -25.5,72.5 + parent: 2 + - uid: 1508 + components: + - type: Transform + pos: -25.5,71.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + pos: -25.5,70.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: -25.5,69.5 + parent: 2 + - uid: 1511 + components: + - type: Transform + pos: -25.5,68.5 + parent: 2 + - uid: 1512 + components: + - type: Transform + pos: -25.5,67.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + pos: -25.5,66.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + pos: -24.5,66.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: -23.5,66.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + pos: -22.5,66.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + pos: -21.5,66.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + pos: -24.5,69.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + pos: -23.5,69.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + pos: -22.5,69.5 + parent: 2 + - uid: 1521 + components: + - type: Transform + pos: -21.5,69.5 + parent: 2 + - uid: 1522 + components: + - type: Transform + pos: -24.5,71.5 + parent: 2 + - uid: 1523 + components: + - type: Transform + pos: -22.5,71.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + pos: -23.5,65.5 + parent: 2 + - uid: 1525 + components: + - type: Transform + pos: -23.5,71.5 + parent: 2 + - uid: 1526 + components: + - type: Transform + pos: -23.5,64.5 + parent: 2 + - uid: 1527 + components: + - type: Transform + pos: -23.5,63.5 + parent: 2 + - uid: 1528 + components: + - type: Transform + pos: -23.5,62.5 + parent: 2 + - uid: 1529 + components: + - type: Transform + pos: -23.5,61.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + pos: -23.5,60.5 + parent: 2 + - uid: 1531 + components: + - type: Transform + pos: -22.5,60.5 + parent: 2 + - uid: 1532 + components: + - type: Transform + pos: -21.5,60.5 + parent: 2 + - uid: 1533 + components: + - type: Transform + pos: -24.5,60.5 + parent: 2 + - uid: 1534 + components: + - type: Transform + pos: -25.5,60.5 + parent: 2 + - uid: 1535 + components: + - type: Transform + pos: -24.5,63.5 + parent: 2 + - uid: 1536 + components: + - type: Transform + pos: -25.5,63.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + pos: -22.5,63.5 + parent: 2 + - uid: 1538 + components: + - type: Transform + pos: -17.5,56.5 + parent: 2 + - uid: 1539 + components: + - type: Transform + pos: -17.5,55.5 + parent: 2 + - uid: 1540 + components: + - type: Transform + pos: -17.5,54.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + pos: -17.5,53.5 + parent: 2 + - uid: 1542 + components: + - type: Transform + pos: -17.5,52.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + pos: -17.5,51.5 + parent: 2 + - uid: 1544 + components: + - type: Transform + pos: -18.5,52.5 + parent: 2 + - uid: 1545 + components: + - type: Transform + pos: -19.5,52.5 + parent: 2 + - uid: 1546 + components: + - type: Transform + pos: -18.5,55.5 + parent: 2 + - uid: 1547 + components: + - type: Transform + pos: -19.5,55.5 + parent: 2 + - uid: 1548 + components: + - type: Transform + pos: -20.5,55.5 + parent: 2 + - uid: 1549 + components: + - type: Transform + pos: -21.5,55.5 + parent: 2 + - uid: 1550 + components: + - type: Transform + pos: -22.5,55.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: -23.5,55.5 + parent: 2 + - uid: 1552 + components: + - type: Transform + pos: -24.5,55.5 + parent: 2 + - uid: 1553 + components: + - type: Transform + pos: -23.5,54.5 + parent: 2 + - uid: 1554 + components: + - type: Transform + pos: -23.5,53.5 + parent: 2 + - uid: 1555 + components: + - type: Transform + pos: -23.5,52.5 + parent: 2 + - uid: 1556 + components: + - type: Transform + pos: -23.5,51.5 + parent: 2 + - uid: 1557 + components: + - type: Transform + pos: -25.5,72.5 + parent: 2 + - uid: 1558 + components: + - type: Transform + pos: -25.5,72.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + pos: -25.5,71.5 + parent: 2 + - uid: 1560 + components: + - type: Transform + pos: -25.5,70.5 + parent: 2 + - uid: 1561 + components: + - type: Transform + pos: -25.5,69.5 + parent: 2 + - uid: 1562 + components: + - type: Transform + pos: -25.5,68.5 + parent: 2 + - uid: 1563 + components: + - type: Transform + pos: -25.5,67.5 + parent: 2 + - uid: 1564 + components: + - type: Transform + pos: -25.5,66.5 + parent: 2 + - uid: 1565 + components: + - type: Transform + pos: -24.5,66.5 + parent: 2 + - uid: 1566 + components: + - type: Transform + pos: -23.5,66.5 + parent: 2 + - uid: 1567 + components: + - type: Transform + pos: -22.5,66.5 + parent: 2 + - uid: 1568 + components: + - type: Transform + pos: -21.5,66.5 + parent: 2 + - uid: 1569 + components: + - type: Transform + pos: -17.5,57.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + pos: -17.5,58.5 + parent: 2 + - uid: 1571 + components: + - type: Transform + pos: -16.5,58.5 + parent: 2 + - uid: 1572 + components: + - type: Transform + pos: -15.5,58.5 + parent: 2 + - uid: 1573 + components: + - type: Transform + pos: -14.5,58.5 + parent: 2 + - uid: 1574 + components: + - type: Transform + pos: -13.5,58.5 + parent: 2 + - uid: 1575 + components: + - type: Transform + pos: -10.5,59.5 + parent: 2 + - uid: 1576 + components: + - type: Transform + pos: -11.5,58.5 + parent: 2 + - uid: 1577 + components: + - type: Transform + pos: -11.5,59.5 + parent: 2 + - uid: 1578 + components: + - type: Transform + pos: -11.5,60.5 + parent: 2 + - uid: 1579 + components: + - type: Transform + pos: -11.5,61.5 + parent: 2 + - uid: 1580 + components: + - type: Transform + pos: -11.5,62.5 + parent: 2 + - uid: 1581 + components: + - type: Transform + pos: -11.5,63.5 + parent: 2 + - uid: 1582 + components: + - type: Transform + pos: -11.5,64.5 + parent: 2 + - uid: 1583 + components: + - type: Transform + pos: -9.5,59.5 + parent: 2 + - uid: 1584 + components: + - type: Transform + pos: -8.5,59.5 + parent: 2 + - uid: 1585 + components: + - type: Transform + pos: -7.5,59.5 + parent: 2 + - uid: 1586 + components: + - type: Transform + pos: -10.5,62.5 + parent: 2 + - uid: 1587 + components: + - type: Transform + pos: -9.5,62.5 + parent: 2 + - uid: 1588 + components: + - type: Transform + pos: -10.5,64.5 + parent: 2 + - uid: 1589 + components: + - type: Transform + pos: -9.5,64.5 + parent: 2 + - uid: 1590 + components: + - type: Transform + pos: -11.5,65.5 + parent: 2 + - uid: 1591 + components: + - type: Transform + pos: -11.5,66.5 + parent: 2 + - uid: 1592 + components: + - type: Transform + pos: -11.5,67.5 + parent: 2 + - uid: 1593 + components: + - type: Transform + pos: -11.5,68.5 + parent: 2 + - uid: 1594 + components: + - type: Transform + pos: -12.5,68.5 + parent: 2 + - uid: 1596 + components: + - type: Transform + pos: -10.5,68.5 + parent: 2 + - uid: 1597 + components: + - type: Transform + pos: -9.5,68.5 + parent: 2 + - uid: 1598 + components: + - type: Transform + pos: -10.5,66.5 + parent: 2 + - uid: 1599 + components: + - type: Transform + pos: -9.5,66.5 + parent: 2 + - uid: 1600 + components: + - type: Transform + pos: -9.5,67.5 + parent: 2 + - uid: 1601 + components: + - type: Transform + pos: -3.5,69.5 + parent: 2 + - uid: 1602 + components: + - type: Transform + pos: -3.5,68.5 + parent: 2 + - uid: 1603 + components: + - type: Transform + pos: -3.5,67.5 + parent: 2 + - uid: 1604 + components: + - type: Transform + pos: -3.5,66.5 + parent: 2 + - uid: 1605 + components: + - type: Transform + pos: -3.5,65.5 + parent: 2 + - uid: 1606 + components: + - type: Transform + pos: -3.5,64.5 + parent: 2 + - uid: 1607 + components: + - type: Transform + pos: -3.5,63.5 + parent: 2 + - uid: 1608 + components: + - type: Transform + pos: -4.5,67.5 + parent: 2 + - uid: 1609 + components: + - type: Transform + pos: -5.5,67.5 + parent: 2 + - uid: 1610 + components: + - type: Transform + pos: -6.5,67.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + pos: -6.5,68.5 + parent: 2 + - uid: 1612 + components: + - type: Transform + pos: -6.5,66.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + pos: -7.5,67.5 + parent: 2 + - uid: 1614 + components: + - type: Transform + pos: -6.5,65.5 + parent: 2 + - uid: 1615 + components: + - type: Transform + pos: -6.5,64.5 + parent: 2 + - uid: 1616 + components: + - type: Transform + pos: -6.5,63.5 + parent: 2 + - uid: 1617 + components: + - type: Transform + pos: -5.5,63.5 + parent: 2 + - uid: 1618 + components: + - type: Transform + pos: -4.5,63.5 + parent: 2 + - uid: 1619 + components: + - type: Transform + pos: -2.5,63.5 + parent: 2 + - uid: 1620 + components: + - type: Transform + pos: -1.5,63.5 + parent: 2 + - uid: 1621 + components: + - type: Transform + pos: -0.5,63.5 + parent: 2 + - uid: 1622 + components: + - type: Transform + pos: 0.5,63.5 + parent: 2 + - uid: 1623 + components: + - type: Transform + pos: 1.5,63.5 + parent: 2 + - uid: 1624 + components: + - type: Transform + pos: 29.5,2.5 + parent: 2 + - uid: 1625 + components: + - type: Transform + pos: 29.5,1.5 + parent: 2 + - uid: 1626 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - uid: 1627 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 2 + - uid: 1628 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 1629 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 1630 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - uid: 1631 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 2 + - uid: 1632 + components: + - type: Transform + pos: 28.5,1.5 + parent: 2 + - uid: 1633 + components: + - type: Transform + pos: 28.5,2.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 1635 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 1636 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 + - uid: 1637 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 2 + - uid: 1638 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 1639 + components: + - type: Transform + pos: 24.5,1.5 + parent: 2 + - uid: 1640 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - uid: 1641 + components: + - type: Transform + pos: 35.5,8.5 + parent: 2 + - uid: 1642 + components: + - type: Transform + pos: 36.5,8.5 + parent: 2 + - uid: 1643 + components: + - type: Transform + pos: 37.5,8.5 + parent: 2 + - uid: 1644 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 + - uid: 1645 + components: + - type: Transform + pos: 39.5,8.5 + parent: 2 + - uid: 1646 + components: + - type: Transform + pos: 37.5,9.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + pos: 37.5,10.5 + parent: 2 + - uid: 1648 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 + - uid: 1649 + components: + - type: Transform + pos: 35.5,10.5 + parent: 2 + - uid: 1650 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - uid: 1651 + components: + - type: Transform + pos: 33.5,10.5 + parent: 2 + - uid: 1652 + components: + - type: Transform + pos: 32.5,10.5 + parent: 2 + - uid: 1653 + components: + - type: Transform + pos: 31.5,10.5 + parent: 2 + - uid: 1654 + components: + - type: Transform + pos: 38.5,10.5 + parent: 2 + - uid: 1655 + components: + - type: Transform + pos: 39.5,10.5 + parent: 2 + - uid: 1656 + components: + - type: Transform + pos: 40.5,10.5 + parent: 2 + - uid: 1657 + components: + - type: Transform + pos: 39.5,11.5 + parent: 2 + - uid: 1658 + components: + - type: Transform + pos: 39.5,12.5 + parent: 2 + - uid: 1659 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 + - uid: 1660 + components: + - type: Transform + pos: 39.5,9.5 + parent: 2 + - uid: 1661 + components: + - type: Transform + pos: 39.5,7.5 + parent: 2 + - uid: 1662 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 + - uid: 1663 + components: + - type: Transform + pos: 40.5,7.5 + parent: 2 + - uid: 1664 + components: + - type: Transform + pos: 35.5,7.5 + parent: 2 + - uid: 1665 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 + - uid: 1666 + components: + - type: Transform + pos: 35.5,5.5 + parent: 2 + - uid: 1667 + components: + - type: Transform + pos: 35.5,4.5 + parent: 2 + - uid: 1668 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 + - uid: 1669 + components: + - type: Transform + pos: 34.5,4.5 + parent: 2 + - uid: 1670 + components: + - type: Transform + pos: 33.5,4.5 + parent: 2 + - uid: 1671 + components: + - type: Transform + pos: 32.5,4.5 + parent: 2 + - uid: 1672 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - uid: 1673 + components: + - type: Transform + pos: 35.5,2.5 + parent: 2 + - uid: 1674 + components: + - type: Transform + pos: 35.5,1.5 + parent: 2 + - uid: 1675 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - uid: 1676 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 2 + - uid: 1677 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 2 + - uid: 1678 + components: + - type: Transform + pos: 34.5,0.5 + parent: 2 + - uid: 1679 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 2 + - uid: 1680 + components: + - type: Transform + pos: 32.5,15.5 + parent: 2 + - uid: 1681 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 + - uid: 1682 + components: + - type: Transform + pos: 34.5,15.5 + parent: 2 + - uid: 1683 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 + - uid: 1684 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 + - uid: 1685 + components: + - type: Transform + pos: 37.5,15.5 + parent: 2 + - uid: 1686 + components: + - type: Transform + pos: 34.5,14.5 + parent: 2 + - uid: 1687 + components: + - type: Transform + pos: 34.5,13.5 + parent: 2 + - uid: 1688 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 1689 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 + - uid: 1690 + components: + - type: Transform + pos: 32.5,14.5 + parent: 2 + - uid: 1691 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 1692 + components: + - type: Transform + pos: 44.5,11.5 + parent: 2 + - uid: 1693 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - uid: 1694 + components: + - type: Transform + pos: 44.5,13.5 + parent: 2 + - uid: 1695 + components: + - type: Transform + pos: 44.5,14.5 + parent: 2 + - uid: 1696 + components: + - type: Transform + pos: 43.5,13.5 + parent: 2 + - uid: 1697 + components: + - type: Transform + pos: 45.5,13.5 + parent: 2 + - uid: 1698 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 1699 + components: + - type: Transform + pos: 42.5,22.5 + parent: 2 + - uid: 1700 + components: + - type: Transform + pos: 42.5,21.5 + parent: 2 + - uid: 1701 + components: + - type: Transform + pos: 42.5,20.5 + parent: 2 + - uid: 1702 + components: + - type: Transform + pos: 42.5,19.5 + parent: 2 + - uid: 1703 + components: + - type: Transform + pos: 41.5,20.5 + parent: 2 + - uid: 1704 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 + - uid: 1705 + components: + - type: Transform + pos: 43.5,18.5 + parent: 2 + - uid: 1706 + components: + - type: Transform + pos: 43.5,17.5 + parent: 2 + - uid: 1707 + components: + - type: Transform + pos: 43.5,16.5 + parent: 2 + - uid: 1708 + components: + - type: Transform + pos: 42.5,16.5 + parent: 2 + - uid: 1709 + components: + - type: Transform + pos: 41.5,16.5 + parent: 2 + - uid: 1710 + components: + - type: Transform + pos: 40.5,16.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + pos: 39.5,16.5 + parent: 2 + - uid: 1712 + components: + - type: Transform + pos: 44.5,16.5 + parent: 2 + - uid: 1713 + components: + - type: Transform + pos: 46.5,16.5 + parent: 2 + - uid: 1714 + components: + - type: Transform + pos: 45.5,16.5 + parent: 2 + - uid: 1715 + components: + - type: Transform + pos: 46.5,17.5 + parent: 2 + - uid: 1716 + components: + - type: Transform + pos: 47.5,17.5 + parent: 2 + - uid: 1717 + components: + - type: Transform + pos: 48.5,17.5 + parent: 2 + - uid: 1718 + components: + - type: Transform + pos: 49.5,17.5 + parent: 2 + - uid: 1719 + components: + - type: Transform + pos: 48.5,16.5 + parent: 2 + - uid: 1720 + components: + - type: Transform + pos: 48.5,15.5 + parent: 2 + - uid: 1721 + components: + - type: Transform + pos: 48.5,14.5 + parent: 2 + - uid: 1722 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 + - uid: 1723 + components: + - type: Transform + pos: 48.5,18.5 + parent: 2 + - uid: 1724 + components: + - type: Transform + pos: 54.5,5.5 + parent: 2 + - uid: 1725 + components: + - type: Transform + pos: 54.5,4.5 + parent: 2 + - uid: 1726 + components: + - type: Transform + pos: 53.5,4.5 + parent: 2 + - uid: 1727 + components: + - type: Transform + pos: 52.5,4.5 + parent: 2 + - uid: 1728 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - uid: 1729 + components: + - type: Transform + pos: 51.5,3.5 + parent: 2 + - uid: 1730 + components: + - type: Transform + pos: 51.5,2.5 + parent: 2 + - uid: 1731 + components: + - type: Transform + pos: 51.5,1.5 + parent: 2 + - uid: 1732 + components: + - type: Transform + pos: 51.5,0.5 + parent: 2 + - uid: 1733 + components: + - type: Transform + pos: 51.5,-0.5 + parent: 2 + - uid: 1734 + components: + - type: Transform + pos: 51.5,-1.5 + parent: 2 + - uid: 1735 + components: + - type: Transform + pos: 51.5,-2.5 + parent: 2 + - uid: 1736 + components: + - type: Transform + pos: 51.5,-3.5 + parent: 2 + - uid: 1737 + components: + - type: Transform + pos: 51.5,-4.5 + parent: 2 + - uid: 1738 + components: + - type: Transform + pos: 51.5,-5.5 + parent: 2 + - uid: 1739 + components: + - type: Transform + pos: 51.5,-6.5 + parent: 2 + - uid: 1740 + components: + - type: Transform + pos: 51.5,-7.5 + parent: 2 + - uid: 1741 + components: + - type: Transform + pos: 51.5,-8.5 + parent: 2 + - uid: 1742 + components: + - type: Transform + pos: 52.5,-7.5 + parent: 2 + - uid: 1743 + components: + - type: Transform + pos: 50.5,-7.5 + parent: 2 + - uid: 1744 + components: + - type: Transform + pos: 50.5,-3.5 + parent: 2 + - uid: 1745 + components: + - type: Transform + pos: 49.5,-3.5 + parent: 2 + - uid: 1746 + components: + - type: Transform + pos: 48.5,-3.5 + parent: 2 + - uid: 1747 + components: + - type: Transform + pos: 47.5,-3.5 + parent: 2 + - uid: 1748 + components: + - type: Transform + pos: 46.5,-3.5 + parent: 2 + - uid: 1749 + components: + - type: Transform + pos: 52.5,-3.5 + parent: 2 + - uid: 1750 + components: + - type: Transform + pos: 53.5,-3.5 + parent: 2 + - uid: 1751 + components: + - type: Transform + pos: 54.5,-3.5 + parent: 2 + - uid: 1752 + components: + - type: Transform + pos: 55.5,-3.5 + parent: 2 + - uid: 1753 + components: + - type: Transform + pos: 56.5,-3.5 + parent: 2 + - uid: 1754 + components: + - type: Transform + pos: 52.5,-0.5 + parent: 2 + - uid: 1755 + components: + - type: Transform + pos: 53.5,-0.5 + parent: 2 + - uid: 1756 + components: + - type: Transform + pos: 54.5,-0.5 + parent: 2 + - uid: 1757 + components: + - type: Transform + pos: 55.5,-0.5 + parent: 2 + - uid: 1758 + components: + - type: Transform + pos: 56.5,-0.5 + parent: 2 + - uid: 1759 + components: + - type: Transform + pos: 52.5,2.5 + parent: 2 + - uid: 1760 + components: + - type: Transform + pos: 53.5,2.5 + parent: 2 + - uid: 1761 + components: + - type: Transform + pos: 54.5,2.5 + parent: 2 + - uid: 1762 + components: + - type: Transform + pos: 55.5,2.5 + parent: 2 + - uid: 1763 + components: + - type: Transform + pos: 56.5,2.5 + parent: 2 + - uid: 1764 + components: + - type: Transform + pos: 50.5,2.5 + parent: 2 + - uid: 1765 + components: + - type: Transform + pos: 49.5,2.5 + parent: 2 + - uid: 1766 + components: + - type: Transform + pos: 48.5,2.5 + parent: 2 + - uid: 1767 + components: + - type: Transform + pos: 47.5,2.5 + parent: 2 + - uid: 1768 + components: + - type: Transform + pos: 46.5,2.5 + parent: 2 + - uid: 1769 + components: + - type: Transform + pos: 50.5,-0.5 + parent: 2 + - uid: 1770 + components: + - type: Transform + pos: 49.5,-0.5 + parent: 2 + - uid: 1771 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 2 + - uid: 1772 + components: + - type: Transform + pos: 47.5,-0.5 + parent: 2 + - uid: 1773 + components: + - type: Transform + pos: 46.5,-0.5 + parent: 2 + - uid: 1774 + components: + - type: Transform + pos: 50.5,4.5 + parent: 2 + - uid: 1775 + components: + - type: Transform + pos: 49.5,4.5 + parent: 2 + - uid: 1776 + components: + - type: Transform + pos: 48.5,4.5 + parent: 2 + - uid: 1777 + components: + - type: Transform + pos: 47.5,4.5 + parent: 2 + - uid: 1778 + components: + - type: Transform + pos: 46.5,4.5 + parent: 2 + - uid: 1779 + components: + - type: Transform + pos: 55.5,4.5 + parent: 2 + - uid: 1780 + components: + - type: Transform + pos: 56.5,4.5 + parent: 2 + - uid: 1781 + components: + - type: Transform + pos: 57.5,4.5 + parent: 2 + - uid: 1782 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 + - uid: 1783 + components: + - type: Transform + pos: 50.5,5.5 + parent: 2 + - uid: 1784 + components: + - type: Transform + pos: 50.5,6.5 + parent: 2 + - uid: 1785 + components: + - type: Transform + pos: 51.5,6.5 + parent: 2 + - uid: 1786 + components: + - type: Transform + pos: 52.5,6.5 + parent: 2 + - uid: 1787 + components: + - type: Transform + pos: 53.5,6.5 + parent: 2 + - uid: 1788 + components: + - type: Transform + pos: 54.5,6.5 + parent: 2 + - uid: 1789 + components: + - type: Transform + pos: 49.5,6.5 + parent: 2 + - uid: 1790 + components: + - type: Transform + pos: 48.5,6.5 + parent: 2 + - uid: 1791 + components: + - type: Transform + pos: 47.5,6.5 + parent: 2 + - uid: 1792 + components: + - type: Transform + pos: 49.5,7.5 + parent: 2 + - uid: 1793 + components: + - type: Transform + pos: 49.5,8.5 + parent: 2 + - uid: 1794 + components: + - type: Transform + pos: 49.5,9.5 + parent: 2 + - uid: 1795 + components: + - type: Transform + pos: 49.5,10.5 + parent: 2 + - uid: 1796 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 1797 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - uid: 1798 + components: + - type: Transform + pos: 48.5,10.5 + parent: 2 + - uid: 1799 + components: + - type: Transform + pos: -41.5,25.5 + parent: 2 + - uid: 1800 + components: + - type: Transform + pos: -41.5,25.5 + parent: 2 + - uid: 1801 + components: + - type: Transform + pos: -36.5,30.5 + parent: 2 + - uid: 1802 + components: + - type: Transform + pos: -37.5,30.5 + parent: 2 + - uid: 1803 + components: + - type: Transform + pos: -38.5,30.5 + parent: 2 + - uid: 1804 + components: + - type: Transform + pos: 68.5,62.5 + parent: 2 + - uid: 1805 + components: + - type: Transform + pos: 65.5,62.5 + parent: 2 + - uid: 1806 + components: + - type: Transform + pos: 70.5,59.5 + parent: 2 + - uid: 1807 + components: + - type: Transform + pos: 70.5,57.5 + parent: 2 + - uid: 1808 + components: + - type: Transform + pos: 70.5,55.5 + parent: 2 + - uid: 1809 + components: + - type: Transform + pos: 70.5,56.5 + parent: 2 + - uid: 1810 + components: + - type: Transform + pos: -41.5,24.5 + parent: 2 + - uid: 1811 + components: + - type: Transform + pos: -39.5,30.5 + parent: 2 + - uid: 1813 + components: + - type: Transform + pos: -35.5,69.5 + parent: 2 + - uid: 1814 + components: + - type: Transform + pos: -33.5,69.5 + parent: 2 + - uid: 1815 + components: + - type: Transform + pos: -31.5,69.5 + parent: 2 + - uid: 1816 + components: + - type: Transform + pos: -32.5,69.5 + parent: 2 + - uid: 1817 + components: + - type: Transform + pos: -30.5,69.5 + parent: 2 + - uid: 1818 + components: + - type: Transform + pos: -27.5,69.5 + parent: 2 + - uid: 1820 + components: + - type: Transform + pos: -29.5,69.5 + parent: 2 + - uid: 1821 + components: + - type: Transform + pos: -28.5,69.5 + parent: 2 + - uid: 1824 + components: + - type: Transform + pos: -28.5,22.5 + parent: 2 + - uid: 1825 + components: + - type: Transform + pos: -26.5,22.5 + parent: 2 + - uid: 1826 + components: + - type: Transform + pos: -27.5,22.5 + parent: 2 + - uid: 1828 + components: + - type: Transform + pos: 35.5,51.5 + parent: 2 + - uid: 1829 + components: + - type: Transform + pos: 35.5,53.5 + parent: 2 + - uid: 1830 + components: + - type: Transform + pos: 35.5,52.5 + parent: 2 + - uid: 1831 + components: + - type: Transform + pos: 34.5,54.5 + parent: 2 + - uid: 1832 + components: + - type: Transform + pos: 34.5,55.5 + parent: 2 + - uid: 1833 + components: + - type: Transform + pos: -26.5,21.5 + parent: 2 + - uid: 1834 + components: + - type: Transform + pos: -0.5,47.5 + parent: 2 + - uid: 1835 + components: + - type: Transform + pos: -9.5,50.5 + parent: 2 + - uid: 1836 + components: + - type: Transform + pos: -7.5,50.5 + parent: 2 + - uid: 1837 + components: + - type: Transform + pos: -5.5,50.5 + parent: 2 + - uid: 1838 + components: + - type: Transform + pos: -8.5,51.5 + parent: 2 + - uid: 1839 + components: + - type: Transform + pos: 37.5,44.5 + parent: 2 + - uid: 1840 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 1841 + components: + - type: Transform + pos: 51.5,13.5 + parent: 2 + - uid: 1842 + components: + - type: Transform + pos: 52.5,13.5 + parent: 2 + - uid: 1843 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 1844 + components: + - type: Transform + pos: 52.5,14.5 + parent: 2 + - uid: 1845 + components: + - type: Transform + pos: 52.5,15.5 + parent: 2 + - uid: 1846 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 + - uid: 1847 + components: + - type: Transform + pos: 52.5,17.5 + parent: 2 + - uid: 1848 + components: + - type: Transform + pos: 52.5,18.5 + parent: 2 + - uid: 1849 + components: + - type: Transform + pos: 51.5,17.5 + parent: 2 + - uid: 1850 + components: + - type: Transform + pos: 53.5,17.5 + parent: 2 + - uid: 1851 + components: + - type: Transform + pos: 54.5,18.5 + parent: 2 + - uid: 1852 + components: + - type: Transform + pos: 55.5,18.5 + parent: 2 + - uid: 1853 + components: + - type: Transform + pos: 56.5,18.5 + parent: 2 + - uid: 1854 + components: + - type: Transform + pos: 57.5,18.5 + parent: 2 + - uid: 1855 + components: + - type: Transform + pos: 58.5,18.5 + parent: 2 + - uid: 1856 + components: + - type: Transform + pos: 59.5,18.5 + parent: 2 + - uid: 1857 + components: + - type: Transform + pos: 57.5,17.5 + parent: 2 + - uid: 1858 + components: + - type: Transform + pos: 57.5,16.5 + parent: 2 + - uid: 1859 + components: + - type: Transform + pos: 57.5,15.5 + parent: 2 + - uid: 1860 + components: + - type: Transform + pos: 56.5,16.5 + parent: 2 + - uid: 1861 + components: + - type: Transform + pos: 58.5,16.5 + parent: 2 + - uid: 1862 + components: + - type: Transform + pos: 57.5,19.5 + parent: 2 + - uid: 1863 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - uid: 1864 + components: + - type: Transform + pos: 57.5,21.5 + parent: 2 + - uid: 1865 + components: + - type: Transform + pos: 57.5,22.5 + parent: 2 + - uid: 1866 + components: + - type: Transform + pos: 58.5,21.5 + parent: 2 + - uid: 1867 + components: + - type: Transform + pos: 59.5,21.5 + parent: 2 + - uid: 1868 + components: + - type: Transform + pos: 60.5,21.5 + parent: 2 + - uid: 1869 + components: + - type: Transform + pos: 56.5,21.5 + parent: 2 + - uid: 1870 + components: + - type: Transform + pos: 55.5,21.5 + parent: 2 + - uid: 1871 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 1872 + components: + - type: Transform + pos: 25.5,18.5 + parent: 2 + - uid: 1873 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 + - uid: 1874 + components: + - type: Transform + pos: 24.5,17.5 + parent: 2 + - uid: 1875 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 + - uid: 1876 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 + - uid: 1877 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - uid: 1878 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 1879 + components: + - type: Transform + pos: 20.5,17.5 + parent: 2 + - uid: 1880 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 1881 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 1882 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 1883 + components: + - type: Transform + pos: 27.5,17.5 + parent: 2 + - uid: 1884 + components: + - type: Transform + pos: 28.5,17.5 + parent: 2 + - uid: 1885 + components: + - type: Transform + pos: 29.5,17.5 + parent: 2 + - uid: 1886 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 1887 + components: + - type: Transform + pos: 24.5,15.5 + parent: 2 + - uid: 1888 + components: + - type: Transform + pos: 24.5,14.5 + parent: 2 + - uid: 1889 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 + - uid: 1890 + components: + - type: Transform + pos: 24.5,12.5 + parent: 2 + - uid: 1891 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 + - uid: 1892 + components: + - type: Transform + pos: 24.5,10.5 + parent: 2 + - uid: 1893 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - uid: 1894 + components: + - type: Transform + pos: 23.5,10.5 + parent: 2 + - uid: 1895 + components: + - type: Transform + pos: 22.5,10.5 + parent: 2 + - uid: 1896 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - uid: 1897 + components: + - type: Transform + pos: 21.5,9.5 + parent: 2 + - uid: 1898 + components: + - type: Transform + pos: 21.5,11.5 + parent: 2 + - uid: 1899 + components: + - type: Transform + pos: 23.5,13.5 + parent: 2 + - uid: 1900 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 1901 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 1902 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - uid: 1903 + components: + - type: Transform + pos: 27.5,14.5 + parent: 2 + - uid: 1904 + components: + - type: Transform + pos: 29.5,14.5 + parent: 2 + - uid: 1905 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 1906 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - uid: 1907 + components: + - type: Transform + pos: 23.5,15.5 + parent: 2 + - uid: 1908 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 1909 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - uid: 1910 + components: + - type: Transform + pos: 20.5,15.5 + parent: 2 + - uid: 1911 + components: + - type: Transform + pos: 19.5,15.5 + parent: 2 + - uid: 1912 + components: + - type: Transform + pos: 18.5,15.5 + parent: 2 + - uid: 1913 + components: + - type: Transform + pos: 17.5,15.5 + parent: 2 + - uid: 1914 + components: + - type: Transform + pos: -31.5,54.5 + parent: 2 + - uid: 1915 + components: + - type: Transform + pos: -31.5,53.5 + parent: 2 + - uid: 1916 + components: + - type: Transform + pos: -31.5,52.5 + parent: 2 + - uid: 1917 + components: + - type: Transform + pos: -31.5,51.5 + parent: 2 + - uid: 1918 + components: + - type: Transform + pos: -32.5,52.5 + parent: 2 + - uid: 1919 + components: + - type: Transform + pos: -30.5,52.5 + parent: 2 + - uid: 1920 + components: + - type: Transform + pos: -29.5,52.5 + parent: 2 + - uid: 1921 + components: + - type: Transform + pos: -28.5,52.5 + parent: 2 + - uid: 1922 + components: + - type: Transform + pos: -27.5,52.5 + parent: 2 + - uid: 1923 + components: + - type: Transform + pos: -27.5,51.5 + parent: 2 + - uid: 1924 + components: + - type: Transform + pos: -27.5,53.5 + parent: 2 + - uid: 1925 + components: + - type: Transform + pos: -27.5,54.5 + parent: 2 + - uid: 1926 + components: + - type: Transform + pos: -27.5,55.5 + parent: 2 + - uid: 1927 + components: + - type: Transform + pos: -28.5,54.5 + parent: 2 + - uid: 1928 + components: + - type: Transform + pos: -26.5,54.5 + parent: 2 + - uid: 1929 + components: + - type: Transform + pos: -30.5,59.5 + parent: 2 + - uid: 1930 + components: + - type: Transform + pos: -30.5,58.5 + parent: 2 + - uid: 1931 + components: + - type: Transform + pos: -30.5,57.5 + parent: 2 + - uid: 1932 + components: + - type: Transform + pos: -31.5,57.5 + parent: 2 + - uid: 1933 + components: + - type: Transform + pos: -32.5,57.5 + parent: 2 + - uid: 1934 + components: + - type: Transform + pos: -33.5,57.5 + parent: 2 + - uid: 1935 + components: + - type: Transform + pos: -34.5,57.5 + parent: 2 + - uid: 1936 + components: + - type: Transform + pos: -35.5,57.5 + parent: 2 + - uid: 1937 + components: + - type: Transform + pos: -32.5,56.5 + parent: 2 + - uid: 1938 + components: + - type: Transform + pos: -32.5,55.5 + parent: 2 + - uid: 1939 + components: + - type: Transform + pos: -36.5,57.5 + parent: 2 + - uid: 1940 + components: + - type: Transform + pos: -37.5,57.5 + parent: 2 + - uid: 1941 + components: + - type: Transform + pos: -38.5,57.5 + parent: 2 + - uid: 1942 + components: + - type: Transform + pos: -37.5,56.5 + parent: 2 + - uid: 1943 + components: + - type: Transform + pos: -37.5,55.5 + parent: 2 + - uid: 1944 + components: + - type: Transform + pos: -37.5,54.5 + parent: 2 + - uid: 1945 + components: + - type: Transform + pos: -37.5,53.5 + parent: 2 + - uid: 1946 + components: + - type: Transform + pos: -32.5,58.5 + parent: 2 + - uid: 1947 + components: + - type: Transform + pos: -32.5,59.5 + parent: 2 + - uid: 1948 + components: + - type: Transform + pos: -32.5,60.5 + parent: 2 + - uid: 1949 + components: + - type: Transform + pos: -32.5,61.5 + parent: 2 + - uid: 1950 + components: + - type: Transform + pos: -32.5,62.5 + parent: 2 + - uid: 1951 + components: + - type: Transform + pos: -32.5,63.5 + parent: 2 + - uid: 1952 + components: + - type: Transform + pos: -29.5,57.5 + parent: 2 + - uid: 1953 + components: + - type: Transform + pos: -28.5,57.5 + parent: 2 + - uid: 1954 + components: + - type: Transform + pos: -27.5,57.5 + parent: 2 + - uid: 1955 + components: + - type: Transform + pos: -26.5,57.5 + parent: 2 + - uid: 1956 + components: + - type: Transform + pos: -28.5,58.5 + parent: 2 + - uid: 1957 + components: + - type: Transform + pos: -28.5,59.5 + parent: 2 + - uid: 1958 + components: + - type: Transform + pos: -28.5,60.5 + parent: 2 + - uid: 1959 + components: + - type: Transform + pos: -28.5,61.5 + parent: 2 + - uid: 1960 + components: + - type: Transform + pos: -28.5,62.5 + parent: 2 + - uid: 1961 + components: + - type: Transform + pos: -28.5,63.5 + parent: 2 + - uid: 1962 + components: + - type: Transform + pos: -29.5,63.5 + parent: 2 + - uid: 1963 + components: + - type: Transform + pos: -30.5,63.5 + parent: 2 + - uid: 1964 + components: + - type: Transform + pos: -31.5,63.5 + parent: 2 + - uid: 1965 + components: + - type: Transform + pos: -33.5,63.5 + parent: 2 + - uid: 1966 + components: + - type: Transform + pos: -34.5,63.5 + parent: 2 + - uid: 1967 + components: + - type: Transform + pos: -35.5,63.5 + parent: 2 + - uid: 1968 + components: + - type: Transform + pos: -35.5,61.5 + parent: 2 + - uid: 1969 + components: + - type: Transform + pos: -35.5,62.5 + parent: 2 + - uid: 1970 + components: + - type: Transform + pos: -30.5,64.5 + parent: 2 + - uid: 1971 + components: + - type: Transform + pos: -30.5,65.5 + parent: 2 + - uid: 1972 + components: + - type: Transform + pos: -30.5,66.5 + parent: 2 + - uid: 1973 + components: + - type: Transform + pos: -30.5,67.5 + parent: 2 + - uid: 1974 + components: + - type: Transform + pos: -30.5,68.5 + parent: 2 + - uid: 1975 + components: + - type: Transform + pos: -31.5,66.5 + parent: 2 + - uid: 1976 + components: + - type: Transform + pos: -32.5,66.5 + parent: 2 + - uid: 1977 + components: + - type: Transform + pos: -33.5,66.5 + parent: 2 + - uid: 1978 + components: + - type: Transform + pos: -34.5,66.5 + parent: 2 + - uid: 1979 + components: + - type: Transform + pos: -29.5,66.5 + parent: 2 + - uid: 1980 + components: + - type: Transform + pos: -28.5,66.5 + parent: 2 + - uid: 1981 + components: + - type: Transform + pos: -27.5,66.5 + parent: 2 + - uid: 1982 + components: + - type: Transform + pos: -8.5,57.5 + parent: 2 + - uid: 1983 + components: + - type: Transform + pos: -8.5,56.5 + parent: 2 + - uid: 1984 + components: + - type: Transform + pos: -8.5,55.5 + parent: 2 + - uid: 1985 + components: + - type: Transform + pos: -8.5,54.5 + parent: 2 + - uid: 1986 + components: + - type: Transform + pos: -9.5,55.5 + parent: 2 + - uid: 1987 + components: + - type: Transform + pos: -10.5,55.5 + parent: 2 + - uid: 1988 + components: + - type: Transform + pos: -11.5,55.5 + parent: 2 + - uid: 1989 + components: + - type: Transform + pos: -12.5,55.5 + parent: 2 + - uid: 1990 + components: + - type: Transform + pos: -13.5,55.5 + parent: 2 + - uid: 1991 + components: + - type: Transform + pos: -14.5,55.5 + parent: 2 + - uid: 1992 + components: + - type: Transform + pos: -15.5,55.5 + parent: 2 + - uid: 1993 + components: + - type: Transform + pos: -15.5,54.5 + parent: 2 + - uid: 1994 + components: + - type: Transform + pos: -15.5,53.5 + parent: 2 + - uid: 1995 + components: + - type: Transform + pos: -15.5,52.5 + parent: 2 + - uid: 1996 + components: + - type: Transform + pos: -15.5,51.5 + parent: 2 + - uid: 1997 + components: + - type: Transform + pos: -12.5,54.5 + parent: 2 + - uid: 1998 + components: + - type: Transform + pos: -12.5,53.5 + parent: 2 + - uid: 1999 + components: + - type: Transform + pos: -12.5,52.5 + parent: 2 + - uid: 2000 + components: + - type: Transform + pos: -12.5,51.5 + parent: 2 + - uid: 2001 + components: + - type: Transform + pos: -14.5,56.5 + parent: 2 + - uid: 2002 + components: + - type: Transform + pos: -7.5,55.5 + parent: 2 + - uid: 2003 + components: + - type: Transform + pos: -6.5,55.5 + parent: 2 + - uid: 2004 + components: + - type: Transform + pos: -5.5,55.5 + parent: 2 + - uid: 2005 + components: + - type: Transform + pos: -4.5,55.5 + parent: 2 + - uid: 2006 + components: + - type: Transform + pos: -3.5,55.5 + parent: 2 + - uid: 2007 + components: + - type: Transform + pos: -2.5,55.5 + parent: 2 + - uid: 2008 + components: + - type: Transform + pos: -1.5,55.5 + parent: 2 + - uid: 2009 + components: + - type: Transform + pos: -0.5,55.5 + parent: 2 + - uid: 2010 + components: + - type: Transform + pos: 0.5,55.5 + parent: 2 + - uid: 2011 + components: + - type: Transform + pos: -8.5,53.5 + parent: 2 + - uid: 2012 + components: + - type: Transform + pos: -8.5,52.5 + parent: 2 + - uid: 2013 + components: + - type: Transform + pos: -4.5,53.5 + parent: 2 + - uid: 2014 + components: + - type: Transform + pos: -4.5,52.5 + parent: 2 + - uid: 2015 + components: + - type: Transform + pos: -4.5,54.5 + parent: 2 + - uid: 2016 + components: + - type: Transform + pos: -0.5,54.5 + parent: 2 + - uid: 2017 + components: + - type: Transform + pos: -0.5,53.5 + parent: 2 + - uid: 2018 + components: + - type: Transform + pos: -0.5,52.5 + parent: 2 + - uid: 2019 + components: + - type: Transform + pos: -4.5,56.5 + parent: 2 + - uid: 2020 + components: + - type: Transform + pos: -4.5,57.5 + parent: 2 + - uid: 2021 + components: + - type: Transform + pos: -4.5,58.5 + parent: 2 + - uid: 2022 + components: + - type: Transform + pos: -4.5,59.5 + parent: 2 + - uid: 2023 + components: + - type: Transform + pos: -2.5,59.5 + parent: 2 + - uid: 2024 + components: + - type: Transform + pos: -1.5,59.5 + parent: 2 + - uid: 2025 + components: + - type: Transform + pos: -0.5,59.5 + parent: 2 + - uid: 2026 + components: + - type: Transform + pos: 0.5,59.5 + parent: 2 + - uid: 2027 + components: + - type: Transform + pos: 1.5,59.5 + parent: 2 + - uid: 2028 + components: + - type: Transform + pos: 2.5,59.5 + parent: 2 + - uid: 2029 + components: + - type: Transform + pos: 2.5,58.5 + parent: 2 + - uid: 2030 + components: + - type: Transform + pos: 3.5,65.5 + parent: 2 + - uid: 2031 + components: + - type: Transform + pos: 3.5,64.5 + parent: 2 + - uid: 2032 + components: + - type: Transform + pos: 3.5,63.5 + parent: 2 + - uid: 2033 + components: + - type: Transform + pos: 3.5,62.5 + parent: 2 + - uid: 2034 + components: + - type: Transform + pos: 4.5,63.5 + parent: 2 + - uid: 2035 + components: + - type: Transform + pos: 5.5,63.5 + parent: 2 + - uid: 2036 + components: + - type: Transform + pos: 5.5,64.5 + parent: 2 + - uid: 2037 + components: + - type: Transform + pos: 6.5,64.5 + parent: 2 + - uid: 2038 + components: + - type: Transform + pos: 5.5,65.5 + parent: 2 + - uid: 2039 + components: + - type: Transform + pos: 5.5,66.5 + parent: 2 + - uid: 2040 + components: + - type: Transform + pos: 5.5,67.5 + parent: 2 + - uid: 2041 + components: + - type: Transform + pos: 4.5,67.5 + parent: 2 + - uid: 2042 + components: + - type: Transform + pos: 3.5,67.5 + parent: 2 + - uid: 2043 + components: + - type: Transform + pos: 2.5,67.5 + parent: 2 + - uid: 2044 + components: + - type: Transform + pos: 1.5,67.5 + parent: 2 + - uid: 2045 + components: + - type: Transform + pos: 0.5,67.5 + parent: 2 + - uid: 2046 + components: + - type: Transform + pos: -0.5,67.5 + parent: 2 + - uid: 2047 + components: + - type: Transform + pos: 6.5,67.5 + parent: 2 + - uid: 2048 + components: + - type: Transform + pos: 7.5,67.5 + parent: 2 + - uid: 2049 + components: + - type: Transform + pos: 8.5,67.5 + parent: 2 + - uid: 2050 + components: + - type: Transform + pos: 9.5,67.5 + parent: 2 + - uid: 2051 + components: + - type: Transform + pos: 10.5,67.5 + parent: 2 + - uid: 2052 + components: + - type: Transform + pos: 11.5,67.5 + parent: 2 + - uid: 2053 + components: + - type: Transform + pos: 5.5,62.5 + parent: 2 + - uid: 2054 + components: + - type: Transform + pos: 5.5,61.5 + parent: 2 + - uid: 2055 + components: + - type: Transform + pos: 5.5,60.5 + parent: 2 + - uid: 2056 + components: + - type: Transform + pos: 5.5,59.5 + parent: 2 + - uid: 2057 + components: + - type: Transform + pos: 5.5,58.5 + parent: 2 + - uid: 2058 + components: + - type: Transform + pos: 5.5,57.5 + parent: 2 + - uid: 2059 + components: + - type: Transform + pos: 5.5,56.5 + parent: 2 + - uid: 2060 + components: + - type: Transform + pos: 5.5,55.5 + parent: 2 + - uid: 2061 + components: + - type: Transform + pos: 5.5,54.5 + parent: 2 + - uid: 2062 + components: + - type: Transform + pos: 5.5,53.5 + parent: 2 + - uid: 2063 + components: + - type: Transform + pos: 5.5,52.5 + parent: 2 + - uid: 2064 + components: + - type: Transform + pos: 5.5,51.5 + parent: 2 + - uid: 2065 + components: + - type: Transform + pos: 3.5,51.5 + parent: 2 + - uid: 2066 + components: + - type: Transform + pos: 4.5,51.5 + parent: 2 + - uid: 2067 + components: + - type: Transform + pos: 5.5,50.5 + parent: 2 + - uid: 2068 + components: + - type: Transform + pos: 6.5,51.5 + parent: 2 + - uid: 2069 + components: + - type: Transform + pos: 11.5,76.5 + parent: 2 + - uid: 2070 + components: + - type: Transform + pos: 11.5,75.5 + parent: 2 + - uid: 2071 + components: + - type: Transform + pos: 11.5,74.5 + parent: 2 + - uid: 2072 + components: + - type: Transform + pos: 11.5,73.5 + parent: 2 + - uid: 2073 + components: + - type: Transform + pos: 11.5,72.5 + parent: 2 + - uid: 2074 + components: + - type: Transform + pos: 12.5,72.5 + parent: 2 + - uid: 2075 + components: + - type: Transform + pos: 12.5,71.5 + parent: 2 + - uid: 2076 + components: + - type: Transform + pos: 12.5,70.5 + parent: 2 + - uid: 2077 + components: + - type: Transform + pos: 11.5,70.5 + parent: 2 + - uid: 2078 + components: + - type: Transform + pos: 10.5,70.5 + parent: 2 + - uid: 2079 + components: + - type: Transform + pos: 11.5,77.5 + parent: 2 + - uid: 2080 + components: + - type: Transform + pos: 11.5,78.5 + parent: 2 + - uid: 2081 + components: + - type: Transform + pos: 11.5,79.5 + parent: 2 + - uid: 2082 + components: + - type: Transform + pos: 10.5,79.5 + parent: 2 + - uid: 2083 + components: + - type: Transform + pos: 10.5,80.5 + parent: 2 + - uid: 2084 + components: + - type: Transform + pos: 6.5,80.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: 6.5,79.5 + parent: 2 + - uid: 2086 + components: + - type: Transform + pos: 5.5,79.5 + parent: 2 + - uid: 2087 + components: + - type: Transform + pos: 4.5,79.5 + parent: 2 + - uid: 2088 + components: + - type: Transform + pos: 3.5,79.5 + parent: 2 + - uid: 2089 + components: + - type: Transform + pos: 2.5,79.5 + parent: 2 + - uid: 2090 + components: + - type: Transform + pos: 1.5,79.5 + parent: 2 + - uid: 2091 + components: + - type: Transform + pos: 0.5,79.5 + parent: 2 + - uid: 2092 + components: + - type: Transform + pos: -0.5,78.5 + parent: 2 + - uid: 2093 + components: + - type: Transform + pos: -0.5,77.5 + parent: 2 + - uid: 2094 + components: + - type: Transform + pos: -1.5,77.5 + parent: 2 + - uid: 2095 + components: + - type: Transform + pos: -1.5,76.5 + parent: 2 + - uid: 2096 + components: + - type: Transform + pos: -2.5,76.5 + parent: 2 + - uid: 2097 + components: + - type: Transform + pos: -2.5,75.5 + parent: 2 + - uid: 2098 + components: + - type: Transform + pos: -2.5,74.5 + parent: 2 + - uid: 2099 + components: + - type: Transform + pos: -2.5,73.5 + parent: 2 + - uid: 2100 + components: + - type: Transform + pos: -2.5,72.5 + parent: 2 + - uid: 2101 + components: + - type: Transform + pos: -2.5,71.5 + parent: 2 + - uid: 2102 + components: + - type: Transform + pos: -2.5,70.5 + parent: 2 + - uid: 2103 + components: + - type: Transform + pos: -2.5,69.5 + parent: 2 + - uid: 2104 + components: + - type: Transform + pos: -1.5,69.5 + parent: 2 + - uid: 2105 + components: + - type: Transform + pos: -0.5,69.5 + parent: 2 + - uid: 2106 + components: + - type: Transform + pos: 0.5,69.5 + parent: 2 + - uid: 2107 + components: + - type: Transform + pos: 1.5,69.5 + parent: 2 + - uid: 2108 + components: + - type: Transform + pos: 2.5,69.5 + parent: 2 + - uid: 2109 + components: + - type: Transform + pos: 3.5,69.5 + parent: 2 + - uid: 2110 + components: + - type: Transform + pos: 4.5,69.5 + parent: 2 + - uid: 2111 + components: + - type: Transform + pos: 5.5,69.5 + parent: 2 + - uid: 2112 + components: + - type: Transform + pos: 6.5,69.5 + parent: 2 + - uid: 2113 + components: + - type: Transform + pos: 7.5,69.5 + parent: 2 + - uid: 2114 + components: + - type: Transform + pos: 8.5,69.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + pos: 9.5,69.5 + parent: 2 + - uid: 2116 + components: + - type: Transform + pos: 10.5,69.5 + parent: 2 + - uid: 2117 + components: + - type: Transform + pos: 18.5,60.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + pos: -8.5,50.5 + parent: 2 + - uid: 2119 + components: + - type: Transform + pos: 13.5,59.5 + parent: 2 + - uid: 2120 + components: + - type: Transform + pos: 13.5,60.5 + parent: 2 + - uid: 2121 + components: + - type: Transform + pos: 13.5,61.5 + parent: 2 + - uid: 2122 + components: + - type: Transform + pos: 13.5,62.5 + parent: 2 + - uid: 2123 + components: + - type: Transform + pos: 13.5,63.5 + parent: 2 + - uid: 2124 + components: + - type: Transform + pos: 14.5,61.5 + parent: 2 + - uid: 2125 + components: + - type: Transform + pos: 15.5,61.5 + parent: 2 + - uid: 2126 + components: + - type: Transform + pos: 16.5,61.5 + parent: 2 + - uid: 2127 + components: + - type: Transform + pos: 17.5,61.5 + parent: 2 + - uid: 2128 + components: + - type: Transform + pos: 17.5,62.5 + parent: 2 + - uid: 2129 + components: + - type: Transform + pos: 17.5,63.5 + parent: 2 + - uid: 2130 + components: + - type: Transform + pos: 18.5,63.5 + parent: 2 + - uid: 2131 + components: + - type: Transform + pos: 19.5,63.5 + parent: 2 + - uid: 2132 + components: + - type: Transform + pos: 20.5,63.5 + parent: 2 + - uid: 2133 + components: + - type: Transform + pos: 21.5,63.5 + parent: 2 + - uid: 2134 + components: + - type: Transform + pos: 21.5,64.5 + parent: 2 + - uid: 2135 + components: + - type: Transform + pos: 21.5,65.5 + parent: 2 + - uid: 2136 + components: + - type: Transform + pos: 21.5,66.5 + parent: 2 + - uid: 2137 + components: + - type: Transform + pos: 21.5,62.5 + parent: 2 + - uid: 2138 + components: + - type: Transform + pos: 12.5,60.5 + parent: 2 + - uid: 2139 + components: + - type: Transform + pos: 11.5,60.5 + parent: 2 + - uid: 2140 + components: + - type: Transform + pos: 10.5,60.5 + parent: 2 + - uid: 2141 + components: + - type: Transform + pos: 9.5,60.5 + parent: 2 + - uid: 2142 + components: + - type: Transform + pos: 8.5,60.5 + parent: 2 + - uid: 2143 + components: + - type: Transform + pos: 10.5,59.5 + parent: 2 + - uid: 2144 + components: + - type: Transform + pos: 10.5,58.5 + parent: 2 + - uid: 2145 + components: + - type: Transform + pos: 10.5,57.5 + parent: 2 + - uid: 2146 + components: + - type: Transform + pos: 10.5,56.5 + parent: 2 + - uid: 2147 + components: + - type: Transform + pos: 10.5,55.5 + parent: 2 + - uid: 2148 + components: + - type: Transform + pos: 10.5,54.5 + parent: 2 + - uid: 2149 + components: + - type: Transform + pos: 10.5,53.5 + parent: 2 + - uid: 2150 + components: + - type: Transform + pos: 10.5,52.5 + parent: 2 + - uid: 2151 + components: + - type: Transform + pos: 10.5,51.5 + parent: 2 + - uid: 2152 + components: + - type: Transform + pos: 9.5,52.5 + parent: 2 + - uid: 2153 + components: + - type: Transform + pos: 8.5,52.5 + parent: 2 + - uid: 2154 + components: + - type: Transform + pos: 11.5,52.5 + parent: 2 + - uid: 2155 + components: + - type: Transform + pos: 12.5,52.5 + parent: 2 + - uid: 2156 + components: + - type: Transform + pos: 13.5,52.5 + parent: 2 + - uid: 2157 + components: + - type: Transform + pos: 14.5,52.5 + parent: 2 + - uid: 2158 + components: + - type: Transform + pos: 11.5,56.5 + parent: 2 + - uid: 2159 + components: + - type: Transform + pos: 12.5,56.5 + parent: 2 + - uid: 2160 + components: + - type: Transform + pos: 13.5,56.5 + parent: 2 + - uid: 2161 + components: + - type: Transform + pos: 14.5,56.5 + parent: 2 + - uid: 2162 + components: + - type: Transform + pos: 8.5,56.5 + parent: 2 + - uid: 2163 + components: + - type: Transform + pos: 18.5,59.5 + parent: 2 + - uid: 2164 + components: + - type: Transform + pos: 18.5,58.5 + parent: 2 + - uid: 2165 + components: + - type: Transform + pos: 17.5,59.5 + parent: 2 + - uid: 2166 + components: + - type: Transform + pos: 17.5,58.5 + parent: 2 + - uid: 2167 + components: + - type: Transform + pos: 17.5,57.5 + parent: 2 + - uid: 2168 + components: + - type: Transform + pos: 17.5,56.5 + parent: 2 + - uid: 2169 + components: + - type: Transform + pos: 17.5,55.5 + parent: 2 + - uid: 2170 + components: + - type: Transform + pos: 17.5,54.5 + parent: 2 + - uid: 2171 + components: + - type: Transform + pos: 17.5,53.5 + parent: 2 + - uid: 2172 + components: + - type: Transform + pos: 17.5,52.5 + parent: 2 + - uid: 2173 + components: + - type: Transform + pos: 17.5,51.5 + parent: 2 + - uid: 2174 + components: + - type: Transform + pos: 18.5,51.5 + parent: 2 + - uid: 2175 + components: + - type: Transform + pos: 19.5,51.5 + parent: 2 + - uid: 2176 + components: + - type: Transform + pos: 20.5,51.5 + parent: 2 + - uid: 2177 + components: + - type: Transform + pos: 21.5,51.5 + parent: 2 + - uid: 2178 + components: + - type: Transform + pos: 22.5,51.5 + parent: 2 + - uid: 2179 + components: + - type: Transform + pos: 23.5,51.5 + parent: 2 + - uid: 2180 + components: + - type: Transform + pos: 24.5,51.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + pos: 25.5,51.5 + parent: 2 + - uid: 2182 + components: + - type: Transform + pos: 17.5,56.5 + parent: 2 + - uid: 2183 + components: + - type: Transform + pos: 18.5,56.5 + parent: 2 + - uid: 2184 + components: + - type: Transform + pos: 19.5,56.5 + parent: 2 + - uid: 2185 + components: + - type: Transform + pos: 20.5,56.5 + parent: 2 + - uid: 2186 + components: + - type: Transform + pos: 21.5,56.5 + parent: 2 + - uid: 2187 + components: + - type: Transform + pos: 22.5,56.5 + parent: 2 + - uid: 2188 + components: + - type: Transform + pos: 23.5,56.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: 24.5,56.5 + parent: 2 + - uid: 2190 + components: + - type: Transform + pos: 25.5,56.5 + parent: 2 + - uid: 2191 + components: + - type: Transform + pos: 21.5,55.5 + parent: 2 + - uid: 2192 + components: + - type: Transform + pos: 21.5,54.5 + parent: 2 + - uid: 2193 + components: + - type: Transform + pos: 21.5,53.5 + parent: 2 + - uid: 2194 + components: + - type: Transform + pos: 21.5,52.5 + parent: 2 + - uid: 2195 + components: + - type: Transform + pos: 25.5,55.5 + parent: 2 + - uid: 2196 + components: + - type: Transform + pos: 25.5,54.5 + parent: 2 + - uid: 2197 + components: + - type: Transform + pos: 25.5,53.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + pos: 25.5,52.5 + parent: 2 + - uid: 2199 + components: + - type: Transform + pos: 24.5,58.5 + parent: 2 + - uid: 2200 + components: + - type: Transform + pos: 24.5,57.5 + parent: 2 + - uid: 2201 + components: + - type: Transform + pos: 21.5,58.5 + parent: 2 + - uid: 2202 + components: + - type: Transform + pos: 21.5,57.5 + parent: 2 + - uid: 2203 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 2205 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 2206 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: 48.5,29.5 + parent: 2 + - uid: 2208 + components: + - type: Transform + pos: 47.5,30.5 + parent: 2 + - uid: 2209 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - uid: 2210 + components: + - type: Transform + pos: 47.5,28.5 + parent: 2 + - uid: 2211 + components: + - type: Transform + pos: 47.5,27.5 + parent: 2 + - uid: 2212 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 2213 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 2214 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 2215 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 2216 + components: + - type: Transform + pos: 47.5,22.5 + parent: 2 + - uid: 2217 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 + - uid: 2218 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 2219 + components: + - type: Transform + pos: 48.5,22.5 + parent: 2 + - uid: 2220 + components: + - type: Transform + pos: 49.5,22.5 + parent: 2 + - uid: 2221 + components: + - type: Transform + pos: 50.5,22.5 + parent: 2 + - uid: 2222 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - uid: 2223 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + pos: 53.5,22.5 + parent: 2 + - uid: 2225 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 2226 + components: + - type: Transform + pos: 53.5,21.5 + parent: 2 + - uid: 2227 + components: + - type: Transform + pos: 53.5,20.5 + parent: 2 + - uid: 2228 + components: + - type: Transform + pos: 48.5,26.5 + parent: 2 + - uid: 2229 + components: + - type: Transform + pos: 49.5,26.5 + parent: 2 + - uid: 2230 + components: + - type: Transform + pos: 50.5,26.5 + parent: 2 + - uid: 2231 + components: + - type: Transform + pos: 48.5,30.5 + parent: 2 + - uid: 2232 + components: + - type: Transform + pos: 49.5,30.5 + parent: 2 + - uid: 2233 + components: + - type: Transform + pos: 50.5,30.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + pos: 51.5,30.5 + parent: 2 + - uid: 2235 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - uid: 2236 + components: + - type: Transform + pos: 53.5,30.5 + parent: 2 + - uid: 2237 + components: + - type: Transform + pos: 54.5,30.5 + parent: 2 + - uid: 2238 + components: + - type: Transform + pos: 56.5,30.5 + parent: 2 + - uid: 2239 + components: + - type: Transform + pos: 55.5,30.5 + parent: 2 + - uid: 2240 + components: + - type: Transform + pos: 55.5,31.5 + parent: 2 + - uid: 2241 + components: + - type: Transform + pos: 55.5,32.5 + parent: 2 + - uid: 2242 + components: + - type: Transform + pos: 55.5,29.5 + parent: 2 + - uid: 2243 + components: + - type: Transform + pos: 55.5,28.5 + parent: 2 + - uid: 2244 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 + - uid: 2245 + components: + - type: Transform + pos: 55.5,26.5 + parent: 2 + - uid: 2246 + components: + - type: Transform + pos: 55.5,25.5 + parent: 2 + - uid: 2247 + components: + - type: Transform + pos: 55.5,24.5 + parent: 2 + - uid: 2248 + components: + - type: Transform + pos: 54.5,26.5 + parent: 2 + - uid: 2249 + components: + - type: Transform + pos: 53.5,26.5 + parent: 2 + - uid: 2250 + components: + - type: Transform + pos: 60.5,27.5 + parent: 2 + - uid: 2251 + components: + - type: Transform + pos: 60.5,26.5 + parent: 2 + - uid: 2252 + components: + - type: Transform + pos: 60.5,25.5 + parent: 2 + - uid: 2253 + components: + - type: Transform + pos: 60.5,24.5 + parent: 2 + - uid: 2254 + components: + - type: Transform + pos: 59.5,25.5 + parent: 2 + - uid: 2255 + components: + - type: Transform + pos: 61.5,25.5 + parent: 2 + - uid: 2256 + components: + - type: Transform + pos: 62.5,25.5 + parent: 2 + - uid: 2257 + components: + - type: Transform + pos: 62.5,26.5 + parent: 2 + - uid: 2258 + components: + - type: Transform + pos: 62.5,27.5 + parent: 2 + - uid: 2259 + components: + - type: Transform + pos: 62.5,28.5 + parent: 2 + - uid: 2260 + components: + - type: Transform + pos: 62.5,29.5 + parent: 2 + - uid: 2261 + components: + - type: Transform + pos: 62.5,30.5 + parent: 2 + - uid: 2262 + components: + - type: Transform + pos: 61.5,30.5 + parent: 2 + - uid: 2263 + components: + - type: Transform + pos: 60.5,30.5 + parent: 2 + - uid: 2264 + components: + - type: Transform + pos: 59.5,30.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: 58.5,30.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + pos: 62.5,24.5 + parent: 2 + - uid: 2267 + components: + - type: Transform + pos: 62.5,23.5 + parent: 2 + - uid: 2268 + components: + - type: Transform + pos: 62.5,22.5 + parent: 2 + - uid: 2269 + components: + - type: Transform + pos: 62.5,21.5 + parent: 2 + - uid: 2270 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 2271 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 + - uid: 2272 + components: + - type: Transform + pos: 62.5,18.5 + parent: 2 + - uid: 2273 + components: + - type: Transform + pos: 61.5,18.5 + parent: 2 + - uid: 2274 + components: + - type: Transform + pos: 61.5,17.5 + parent: 2 + - uid: 2275 + components: + - type: Transform + pos: 61.5,16.5 + parent: 2 + - uid: 2276 + components: + - type: Transform + pos: 61.5,15.5 + parent: 2 + - uid: 2277 + components: + - type: Transform + pos: 61.5,14.5 + parent: 2 + - uid: 2278 + components: + - type: Transform + pos: 61.5,13.5 + parent: 2 + - uid: 2279 + components: + - type: Transform + pos: 59.5,13.5 + parent: 2 + - uid: 2280 + components: + - type: Transform + pos: 58.5,13.5 + parent: 2 + - uid: 2281 + components: + - type: Transform + pos: 57.5,13.5 + parent: 2 + - uid: 2282 + components: + - type: Transform + pos: 56.5,13.5 + parent: 2 + - uid: 2283 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - uid: 2284 + components: + - type: Transform + pos: 57.5,12.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + pos: 57.5,11.5 + parent: 2 + - uid: 2286 + components: + - type: Transform + pos: 57.5,10.5 + parent: 2 + - uid: 2287 + components: + - type: Transform + pos: 57.5,9.5 + parent: 2 + - uid: 2288 + components: + - type: Transform + pos: 57.5,8.5 + parent: 2 + - uid: 2289 + components: + - type: Transform + pos: 58.5,8.5 + parent: 2 + - uid: 2290 + components: + - type: Transform + pos: 59.5,8.5 + parent: 2 + - uid: 2291 + components: + - type: Transform + pos: 59.5,7.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + pos: 59.5,6.5 + parent: 2 + - uid: 2293 + components: + - type: Transform + pos: 59.5,5.5 + parent: 2 + - uid: 2294 + components: + - type: Transform + pos: 59.5,4.5 + parent: 2 + - uid: 2295 + components: + - type: Transform + pos: 59.5,3.5 + parent: 2 + - uid: 2296 + components: + - type: Transform + pos: 59.5,2.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + pos: 59.5,1.5 + parent: 2 + - uid: 2298 + components: + - type: Transform + pos: 59.5,0.5 + parent: 2 + - uid: 2299 + components: + - type: Transform + pos: 59.5,-0.5 + parent: 2 + - uid: 2300 + components: + - type: Transform + pos: 59.5,-1.5 + parent: 2 + - uid: 2301 + components: + - type: Transform + pos: 59.5,-2.5 + parent: 2 + - uid: 2302 + components: + - type: Transform + pos: 59.5,-3.5 + parent: 2 + - uid: 2303 + components: + - type: Transform + pos: 59.5,-4.5 + parent: 2 + - uid: 2304 + components: + - type: Transform + pos: 59.5,-5.5 + parent: 2 + - uid: 2305 + components: + - type: Transform + pos: 55.5,12.5 + parent: 2 + - uid: 2306 + components: + - type: Transform + pos: 55.5,11.5 + parent: 2 + - uid: 2307 + components: + - type: Transform + pos: 54.5,11.5 + parent: 2 + - uid: 2308 + components: + - type: Transform + pos: 53.5,11.5 + parent: 2 + - uid: 2309 + components: + - type: Transform + pos: 52.5,11.5 + parent: 2 + - uid: 2310 + components: + - type: Transform + pos: 52.5,10.5 + parent: 2 + - uid: 2311 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 + - uid: 2312 + components: + - type: Transform + pos: 43.5,2.5 + parent: 2 + - uid: 2313 + components: + - type: Transform + pos: 43.5,1.5 + parent: 2 + - uid: 2314 + components: + - type: Transform + pos: 43.5,0.5 + parent: 2 + - uid: 2315 + components: + - type: Transform + pos: 43.5,-0.5 + parent: 2 + - uid: 2316 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - uid: 2317 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 2 + - uid: 2318 + components: + - type: Transform + pos: 42.5,1.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 2 + - uid: 2320 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - uid: 2321 + components: + - type: Transform + pos: 43.5,-5.5 + parent: 2 + - uid: 2322 + components: + - type: Transform + pos: 44.5,-5.5 + parent: 2 + - uid: 2323 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 2 + - uid: 2324 + components: + - type: Transform + pos: 46.5,-5.5 + parent: 2 + - uid: 2325 + components: + - type: Transform + pos: 47.5,-5.5 + parent: 2 + - uid: 2326 + components: + - type: Transform + pos: 47.5,-6.5 + parent: 2 + - uid: 2327 + components: + - type: Transform + pos: 47.5,-7.5 + parent: 2 + - uid: 2328 + components: + - type: Transform + pos: 47.5,-8.5 + parent: 2 + - uid: 2329 + components: + - type: Transform + pos: 47.5,-9.5 + parent: 2 + - uid: 2330 + components: + - type: Transform + pos: 47.5,-10.5 + parent: 2 + - uid: 2331 + components: + - type: Transform + pos: 48.5,-10.5 + parent: 2 + - uid: 2332 + components: + - type: Transform + pos: 49.5,-10.5 + parent: 2 + - uid: 2333 + components: + - type: Transform + pos: 50.5,-10.5 + parent: 2 + - uid: 2334 + components: + - type: Transform + pos: 51.5,-10.5 + parent: 2 + - uid: 2335 + components: + - type: Transform + pos: 33.5,66.5 + parent: 2 + - uid: 2336 + components: + - type: Transform + pos: 43.5,4.5 + parent: 2 + - uid: 2337 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 2338 + components: + - type: Transform + pos: 41.5,4.5 + parent: 2 + - uid: 2339 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 2340 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 2341 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: 43.5,5.5 + parent: 2 + - uid: 2343 + components: + - type: Transform + pos: 43.5,6.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + pos: 43.5,7.5 + parent: 2 + - uid: 2345 + components: + - type: Transform + pos: 43.5,8.5 + parent: 2 + - uid: 2346 + components: + - type: Transform + pos: 43.5,9.5 + parent: 2 + - uid: 2347 + components: + - type: Transform + pos: 43.5,10.5 + parent: 2 + - uid: 2348 + components: + - type: Transform + pos: 44.5,10.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + pos: 45.5,10.5 + parent: 2 + - uid: 2350 + components: + - type: Transform + pos: 46.5,10.5 + parent: 2 + - uid: 2351 + components: + - type: Transform + pos: 44.5,7.5 + parent: 2 + - uid: 2352 + components: + - type: Transform + pos: 49.5,48.5 + parent: 2 + - uid: 2353 + components: + - type: Transform + pos: 48.5,45.5 + parent: 2 + - uid: 2354 + components: + - type: Transform + pos: 50.5,48.5 + parent: 2 + - uid: 2355 + components: + - type: Transform + pos: 48.5,48.5 + parent: 2 + - uid: 2356 + components: + - type: Transform + pos: 47.5,48.5 + parent: 2 + - uid: 2357 + components: + - type: Transform + pos: 46.5,48.5 + parent: 2 + - uid: 2358 + components: + - type: Transform + pos: 49.5,49.5 + parent: 2 + - uid: 2359 + components: + - type: Transform + pos: 48.5,47.5 + parent: 2 + - uid: 2360 + components: + - type: Transform + pos: 48.5,46.5 + parent: 2 + - uid: 2361 + components: + - type: Transform + pos: 48.5,44.5 + parent: 2 + - uid: 2362 + components: + - type: Transform + pos: 48.5,43.5 + parent: 2 + - uid: 2363 + components: + - type: Transform + pos: 48.5,42.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + pos: 48.5,41.5 + parent: 2 + - uid: 2365 + components: + - type: Transform + pos: 48.5,40.5 + parent: 2 + - uid: 2366 + components: + - type: Transform + pos: 48.5,39.5 + parent: 2 + - uid: 2367 + components: + - type: Transform + pos: 48.5,38.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + pos: 48.5,37.5 + parent: 2 + - uid: 2369 + components: + - type: Transform + pos: 47.5,37.5 + parent: 2 + - uid: 2370 + components: + - type: Transform + pos: 46.5,37.5 + parent: 2 + - uid: 2371 + components: + - type: Transform + pos: 45.5,37.5 + parent: 2 + - uid: 2372 + components: + - type: Transform + pos: 44.5,37.5 + parent: 2 + - uid: 2373 + components: + - type: Transform + pos: 43.5,37.5 + parent: 2 + - uid: 2374 + components: + - type: Transform + pos: 47.5,41.5 + parent: 2 + - uid: 2375 + components: + - type: Transform + pos: 46.5,41.5 + parent: 2 + - uid: 2376 + components: + - type: Transform + pos: 45.5,41.5 + parent: 2 + - uid: 2377 + components: + - type: Transform + pos: 44.5,41.5 + parent: 2 + - uid: 2378 + components: + - type: Transform + pos: 47.5,45.5 + parent: 2 + - uid: 2379 + components: + - type: Transform + pos: 46.5,45.5 + parent: 2 + - uid: 2380 + components: + - type: Transform + pos: 45.5,45.5 + parent: 2 + - uid: 2381 + components: + - type: Transform + pos: 44.5,45.5 + parent: 2 + - uid: 2382 + components: + - type: Transform + pos: 49.5,45.5 + parent: 2 + - uid: 2383 + components: + - type: Transform + pos: 50.5,45.5 + parent: 2 + - uid: 2384 + components: + - type: Transform + pos: 51.5,51.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + pos: 50.5,51.5 + parent: 2 + - uid: 2386 + components: + - type: Transform + pos: 49.5,51.5 + parent: 2 + - uid: 2387 + components: + - type: Transform + pos: 50.5,50.5 + parent: 2 + - uid: 2388 + components: + - type: Transform + pos: 50.5,52.5 + parent: 2 + - uid: 2389 + components: + - type: Transform + pos: 50.5,53.5 + parent: 2 + - uid: 2390 + components: + - type: Transform + pos: 50.5,54.5 + parent: 2 + - uid: 2391 + components: + - type: Transform + pos: 54.5,52.5 + parent: 2 + - uid: 2392 + components: + - type: Transform + pos: 54.5,51.5 + parent: 2 + - uid: 2393 + components: + - type: Transform + pos: 54.5,50.5 + parent: 2 + - uid: 2394 + components: + - type: Transform + pos: 54.5,49.5 + parent: 2 + - uid: 2395 + components: + - type: Transform + pos: 54.5,48.5 + parent: 2 + - uid: 2396 + components: + - type: Transform + pos: 53.5,50.5 + parent: 2 + - uid: 2397 + components: + - type: Transform + pos: 52.5,50.5 + parent: 2 + - uid: 2398 + components: + - type: Transform + pos: 55.5,50.5 + parent: 2 + - uid: 2399 + components: + - type: Transform + pos: 54.5,47.5 + parent: 2 + - uid: 2400 + components: + - type: Transform + pos: 54.5,46.5 + parent: 2 + - uid: 2401 + components: + - type: Transform + pos: 54.5,45.5 + parent: 2 + - uid: 2402 + components: + - type: Transform + pos: 54.5,44.5 + parent: 2 + - uid: 2403 + components: + - type: Transform + pos: 54.5,43.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + pos: 54.5,42.5 + parent: 2 + - uid: 2405 + components: + - type: Transform + pos: 53.5,42.5 + parent: 2 + - uid: 2406 + components: + - type: Transform + pos: 52.5,42.5 + parent: 2 + - uid: 2407 + components: + - type: Transform + pos: 55.5,42.5 + parent: 2 + - uid: 2408 + components: + - type: Transform + pos: 56.5,42.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + pos: 57.5,42.5 + parent: 2 + - uid: 2410 + components: + - type: Transform + pos: 55.5,45.5 + parent: 2 + - uid: 2411 + components: + - type: Transform + pos: 56.5,45.5 + parent: 2 + - uid: 2412 + components: + - type: Transform + pos: 57.5,45.5 + parent: 2 + - uid: 2413 + components: + - type: Transform + pos: 53.5,45.5 + parent: 2 + - uid: 2414 + components: + - type: Transform + pos: 52.5,45.5 + parent: 2 + - uid: 2415 + components: + - type: Transform + pos: 63.5,43.5 + parent: 2 + - uid: 2416 + components: + - type: Transform + pos: 62.5,43.5 + parent: 2 + - uid: 2417 + components: + - type: Transform + pos: 61.5,43.5 + parent: 2 + - uid: 2418 + components: + - type: Transform + pos: 60.5,43.5 + parent: 2 + - uid: 2419 + components: + - type: Transform + pos: 59.5,43.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + pos: 61.5,42.5 + parent: 2 + - uid: 2421 + components: + - type: Transform + pos: 61.5,41.5 + parent: 2 + - uid: 2422 + components: + - type: Transform + pos: 61.5,40.5 + parent: 2 + - uid: 2423 + components: + - type: Transform + pos: 61.5,39.5 + parent: 2 + - uid: 2424 + components: + - type: Transform + pos: 61.5,38.5 + parent: 2 + - uid: 2425 + components: + - type: Transform + pos: 61.5,37.5 + parent: 2 + - uid: 2426 + components: + - type: Transform + pos: 60.5,38.5 + parent: 2 + - uid: 2427 + components: + - type: Transform + pos: 59.5,38.5 + parent: 2 + - uid: 2428 + components: + - type: Transform + pos: 57.5,38.5 + parent: 2 + - uid: 2429 + components: + - type: Transform + pos: 56.5,38.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + pos: 55.5,38.5 + parent: 2 + - uid: 2431 + components: + - type: Transform + pos: 54.5,38.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + pos: 53.5,38.5 + parent: 2 + - uid: 2433 + components: + - type: Transform + pos: 52.5,38.5 + parent: 2 + - uid: 2434 + components: + - type: Transform + pos: 51.5,38.5 + parent: 2 + - uid: 2435 + components: + - type: Transform + pos: 50.5,38.5 + parent: 2 + - uid: 2436 + components: + - type: Transform + pos: 50.5,39.5 + parent: 2 + - uid: 2437 + components: + - type: Transform + pos: 50.5,40.5 + parent: 2 + - uid: 2438 + components: + - type: Transform + pos: 50.5,37.5 + parent: 2 + - uid: 2439 + components: + - type: Transform + pos: 50.5,36.5 + parent: 2 + - uid: 2440 + components: + - type: Transform + pos: 57.5,35.5 + parent: 2 + - uid: 2441 + components: + - type: Transform + pos: 57.5,39.5 + parent: 2 + - uid: 2442 + components: + - type: Transform + pos: 57.5,40.5 + parent: 2 + - uid: 2443 + components: + - type: Transform + pos: 57.5,34.5 + parent: 2 + - uid: 2444 + components: + - type: Transform + pos: 57.5,36.5 + parent: 2 + - uid: 2445 + components: + - type: Transform + pos: 57.5,37.5 + parent: 2 + - uid: 2446 + components: + - type: Transform + pos: 56.5,34.5 + parent: 2 + - uid: 2447 + components: + - type: Transform + pos: 55.5,34.5 + parent: 2 + - uid: 2448 + components: + - type: Transform + pos: 54.5,34.5 + parent: 2 + - uid: 2449 + components: + - type: Transform + pos: 53.5,34.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: 52.5,34.5 + parent: 2 + - uid: 2451 + components: + - type: Transform + pos: 51.5,34.5 + parent: 2 + - uid: 2452 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 + - uid: 2453 + components: + - type: Transform + pos: 49.5,34.5 + parent: 2 + - uid: 2454 + components: + - type: Transform + pos: 48.5,34.5 + parent: 2 + - uid: 2455 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 + - uid: 2456 + components: + - type: Transform + pos: 46.5,34.5 + parent: 2 + - uid: 2457 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 + - uid: 2458 + components: + - type: Transform + pos: 44.5,34.5 + parent: 2 + - uid: 2459 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - uid: 2460 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 + - uid: 2461 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - uid: 2462 + components: + - type: Transform + pos: 40.5,34.5 + parent: 2 + - uid: 2463 + components: + - type: Transform + pos: 39.5,34.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + pos: 38.5,34.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + pos: 37.5,34.5 + parent: 2 + - uid: 2466 + components: + - type: Transform + pos: 36.5,34.5 + parent: 2 + - uid: 2467 + components: + - type: Transform + pos: 35.5,34.5 + parent: 2 + - uid: 2468 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + pos: 58.5,34.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + pos: 59.5,34.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + pos: 60.5,34.5 + parent: 2 + - uid: 2472 + components: + - type: Transform + pos: 61.5,34.5 + parent: 2 + - uid: 2473 + components: + - type: Transform + pos: 62.5,34.5 + parent: 2 + - uid: 2474 + components: + - type: Transform + pos: 63.5,34.5 + parent: 2 + - uid: 2475 + components: + - type: Transform + pos: 64.5,34.5 + parent: 2 + - uid: 2476 + components: + - type: Transform + pos: 65.5,34.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + pos: 45.5,53.5 + parent: 2 + - uid: 2478 + components: + - type: Transform + pos: 46.5,53.5 + parent: 2 + - uid: 2479 + components: + - type: Transform + pos: 46.5,52.5 + parent: 2 + - uid: 2480 + components: + - type: Transform + pos: 46.5,51.5 + parent: 2 + - uid: 2481 + components: + - type: Transform + pos: 45.5,51.5 + parent: 2 + - uid: 2482 + components: + - type: Transform + pos: 44.5,51.5 + parent: 2 + - uid: 2483 + components: + - type: Transform + pos: 44.5,50.5 + parent: 2 + - uid: 2484 + components: + - type: Transform + pos: 44.5,49.5 + parent: 2 + - uid: 2485 + components: + - type: Transform + pos: 44.5,48.5 + parent: 2 + - uid: 2486 + components: + - type: Transform + pos: 44.5,47.5 + parent: 2 + - uid: 2487 + components: + - type: Transform + pos: 46.5,54.5 + parent: 2 + - uid: 2488 + components: + - type: Transform + pos: 46.5,55.5 + parent: 2 + - uid: 2489 + components: + - type: Transform + pos: 46.5,56.5 + parent: 2 + - uid: 2490 + components: + - type: Transform + pos: 47.5,56.5 + parent: 2 + - uid: 2491 + components: + - type: Transform + pos: 48.5,56.5 + parent: 2 + - uid: 2492 + components: + - type: Transform + pos: 49.5,56.5 + parent: 2 + - uid: 2493 + components: + - type: Transform + pos: 50.5,56.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + pos: 51.5,56.5 + parent: 2 + - uid: 2495 + components: + - type: Transform + pos: 52.5,56.5 + parent: 2 + - uid: 2496 + components: + - type: Transform + pos: 53.5,56.5 + parent: 2 + - uid: 2497 + components: + - type: Transform + pos: 51.5,57.5 + parent: 2 + - uid: 2498 + components: + - type: Transform + pos: 51.5,58.5 + parent: 2 + - uid: 2499 + components: + - type: Transform + pos: 51.5,59.5 + parent: 2 + - uid: 2500 + components: + - type: Transform + pos: 48.5,57.5 + parent: 2 + - uid: 2501 + components: + - type: Transform + pos: 48.5,58.5 + parent: 2 + - uid: 2502 + components: + - type: Transform + pos: 48.5,59.5 + parent: 2 + - uid: 2503 + components: + - type: Transform + pos: 48.5,60.5 + parent: 2 + - uid: 2504 + components: + - type: Transform + pos: 48.5,61.5 + parent: 2 + - uid: 2505 + components: + - type: Transform + pos: 53.5,57.5 + parent: 2 + - uid: 2506 + components: + - type: Transform + pos: 54.5,57.5 + parent: 2 + - uid: 2507 + components: + - type: Transform + pos: 55.5,57.5 + parent: 2 + - uid: 2508 + components: + - type: Transform + pos: 56.5,57.5 + parent: 2 + - uid: 2509 + components: + - type: Transform + pos: 57.5,57.5 + parent: 2 + - uid: 2510 + components: + - type: Transform + pos: 56.5,56.5 + parent: 2 + - uid: 2511 + components: + - type: Transform + pos: 56.5,55.5 + parent: 2 + - uid: 2512 + components: + - type: Transform + pos: 53.5,55.5 + parent: 2 + - uid: 2513 + components: + - type: Transform + pos: 53.5,54.5 + parent: 2 + - uid: 2514 + components: + - type: Transform + pos: 53.5,53.5 + parent: 2 + - uid: 2515 + components: + - type: Transform + pos: 54.5,53.5 + parent: 2 + - uid: 2516 + components: + - type: Transform + pos: 55.5,53.5 + parent: 2 + - uid: 2517 + components: + - type: Transform + pos: 56.5,53.5 + parent: 2 + - uid: 2518 + components: + - type: Transform + pos: 57.5,53.5 + parent: 2 + - uid: 2519 + components: + - type: Transform + pos: 58.5,53.5 + parent: 2 + - uid: 2520 + components: + - type: Transform + pos: 59.5,52.5 + parent: 2 + - uid: 2521 + components: + - type: Transform + pos: 58.5,52.5 + parent: 2 + - uid: 2522 + components: + - type: Transform + pos: 60.5,52.5 + parent: 2 + - uid: 2523 + components: + - type: Transform + pos: 61.5,52.5 + parent: 2 + - uid: 2524 + components: + - type: Transform + pos: 62.5,52.5 + parent: 2 + - uid: 2525 + components: + - type: Transform + pos: 61.5,53.5 + parent: 2 + - uid: 2526 + components: + - type: Transform + pos: 61.5,51.5 + parent: 2 + - uid: 2527 + components: + - type: Transform + pos: 61.5,50.5 + parent: 2 + - uid: 2528 + components: + - type: Transform + pos: 61.5,54.5 + parent: 2 + - uid: 2529 + components: + - type: Transform + pos: 57.5,52.5 + parent: 2 + - uid: 2530 + components: + - type: Transform + pos: 57.5,51.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + pos: 57.5,50.5 + parent: 2 + - uid: 2532 + components: + - type: Transform + pos: 57.5,49.5 + parent: 2 + - uid: 2533 + components: + - type: Transform + pos: 57.5,48.5 + parent: 2 + - uid: 2534 + components: + - type: Transform + pos: 58.5,48.5 + parent: 2 + - uid: 2535 + components: + - type: Transform + pos: 59.5,48.5 + parent: 2 + - uid: 2536 + components: + - type: Transform + pos: 59.5,47.5 + parent: 2 + - uid: 2537 + components: + - type: Transform + pos: 60.5,47.5 + parent: 2 + - uid: 2538 + components: + - type: Transform + pos: 61.5,47.5 + parent: 2 + - uid: 2539 + components: + - type: Transform + pos: 62.5,47.5 + parent: 2 + - uid: 2540 + components: + - type: Transform + pos: 45.5,56.5 + parent: 2 + - uid: 2541 + components: + - type: Transform + pos: 44.5,56.5 + parent: 2 + - uid: 2542 + components: + - type: Transform + pos: 43.5,56.5 + parent: 2 + - uid: 2543 + components: + - type: Transform + pos: 42.5,56.5 + parent: 2 + - uid: 2544 + components: + - type: Transform + pos: 41.5,56.5 + parent: 2 + - uid: 2545 + components: + - type: Transform + pos: 40.5,56.5 + parent: 2 + - uid: 2546 + components: + - type: Transform + pos: 40.5,57.5 + parent: 2 + - uid: 2547 + components: + - type: Transform + pos: 39.5,52.5 + parent: 2 + - uid: 2548 + components: + - type: Transform + pos: 39.5,58.5 + parent: 2 + - uid: 2549 + components: + - type: Transform + pos: 39.5,59.5 + parent: 2 + - uid: 2550 + components: + - type: Transform + pos: 36.5,64.5 + parent: 2 + - uid: 2551 + components: + - type: Transform + pos: 35.5,64.5 + parent: 2 + - uid: 2552 + components: + - type: Transform + pos: 40.5,58.5 + parent: 2 + - uid: 2553 + components: + - type: Transform + pos: 41.5,58.5 + parent: 2 + - uid: 2554 + components: + - type: Transform + pos: 41.5,59.5 + parent: 2 + - uid: 2555 + components: + - type: Transform + pos: 41.5,60.5 + parent: 2 + - uid: 2556 + components: + - type: Transform + pos: 41.5,61.5 + parent: 2 + - uid: 2557 + components: + - type: Transform + pos: 41.5,62.5 + parent: 2 + - uid: 2558 + components: + - type: Transform + pos: 42.5,59.5 + parent: 2 + - uid: 2559 + components: + - type: Transform + pos: 43.5,59.5 + parent: 2 + - uid: 2560 + components: + - type: Transform + pos: 44.5,59.5 + parent: 2 + - uid: 2561 + components: + - type: Transform + pos: 45.5,59.5 + parent: 2 + - uid: 2562 + components: + - type: Transform + pos: 42.5,62.5 + parent: 2 + - uid: 2563 + components: + - type: Transform + pos: 43.5,62.5 + parent: 2 + - uid: 2564 + components: + - type: Transform + pos: 44.5,62.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + pos: 45.5,62.5 + parent: 2 + - uid: 2566 + components: + - type: Transform + pos: 44.5,63.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + pos: 44.5,64.5 + parent: 2 + - uid: 2568 + components: + - type: Transform + pos: 44.5,65.5 + parent: 2 + - uid: 2569 + components: + - type: Transform + pos: 44.5,66.5 + parent: 2 + - uid: 2570 + components: + - type: Transform + pos: 40.5,62.5 + parent: 2 + - uid: 2571 + components: + - type: Transform + pos: 39.5,62.5 + parent: 2 + - uid: 2572 + components: + - type: Transform + pos: 39.5,63.5 + parent: 2 + - uid: 2573 + components: + - type: Transform + pos: 39.5,64.5 + parent: 2 + - uid: 2574 + components: + - type: Transform + pos: 39.5,65.5 + parent: 2 + - uid: 2575 + components: + - type: Transform + pos: 39.5,66.5 + parent: 2 + - uid: 2576 + components: + - type: Transform + pos: 38.5,65.5 + parent: 2 + - uid: 2577 + components: + - type: Transform + pos: 40.5,65.5 + parent: 2 + - uid: 2578 + components: + - type: Transform + pos: 39.5,61.5 + parent: 2 + - uid: 2579 + components: + - type: Transform + pos: 39.5,60.5 + parent: 2 + - uid: 2580 + components: + - type: Transform + pos: 39.5,59.5 + parent: 2 + - uid: 2581 + components: + - type: Transform + pos: 34.5,64.5 + parent: 2 + - uid: 2582 + components: + - type: Transform + pos: 33.5,64.5 + parent: 2 + - uid: 2583 + components: + - type: Transform + pos: 32.5,64.5 + parent: 2 + - uid: 2584 + components: + - type: Transform + pos: 31.5,64.5 + parent: 2 + - uid: 2585 + components: + - type: Transform + pos: 33.5,67.5 + parent: 2 + - uid: 2586 + components: + - type: Transform + pos: 33.5,68.5 + parent: 2 + - uid: 2587 + components: + - type: Transform + pos: 33.5,69.5 + parent: 2 + - uid: 2588 + components: + - type: Transform + pos: 33.5,63.5 + parent: 2 + - uid: 2589 + components: + - type: Transform + pos: 33.5,62.5 + parent: 2 + - uid: 2590 + components: + - type: Transform + pos: 33.5,61.5 + parent: 2 + - uid: 2591 + components: + - type: Transform + pos: 33.5,60.5 + parent: 2 + - uid: 2592 + components: + - type: Transform + pos: 34.5,60.5 + parent: 2 + - uid: 2593 + components: + - type: Transform + pos: 35.5,60.5 + parent: 2 + - uid: 2594 + components: + - type: Transform + pos: 35.5,59.5 + parent: 2 + - uid: 2595 + components: + - type: Transform + pos: 37.5,59.5 + parent: 2 + - uid: 2596 + components: + - type: Transform + pos: 36.5,59.5 + parent: 2 + - uid: 2597 + components: + - type: Transform + pos: 32.5,60.5 + parent: 2 + - uid: 2598 + components: + - type: Transform + pos: 31.5,60.5 + parent: 2 + - uid: 2599 + components: + - type: Transform + pos: 30.5,60.5 + parent: 2 + - uid: 2600 + components: + - type: Transform + pos: 29.5,60.5 + parent: 2 + - uid: 2601 + components: + - type: Transform + pos: 28.5,60.5 + parent: 2 + - uid: 2602 + components: + - type: Transform + pos: 27.5,60.5 + parent: 2 + - uid: 2603 + components: + - type: Transform + pos: 26.5,60.5 + parent: 2 + - uid: 2604 + components: + - type: Transform + pos: 28.5,61.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + pos: 28.5,62.5 + parent: 2 + - uid: 2606 + components: + - type: Transform + pos: 28.5,63.5 + parent: 2 + - uid: 2607 + components: + - type: Transform + pos: 28.5,64.5 + parent: 2 + - uid: 2608 + components: + - type: Transform + pos: 28.5,65.5 + parent: 2 + - uid: 2609 + components: + - type: Transform + pos: 28.5,66.5 + parent: 2 + - uid: 2610 + components: + - type: Transform + pos: 27.5,64.5 + parent: 2 + - uid: 2611 + components: + - type: Transform + pos: 26.5,64.5 + parent: 2 + - uid: 2612 + components: + - type: Transform + pos: 26.5,65.5 + parent: 2 + - uid: 2613 + components: + - type: Transform + pos: 26.5,66.5 + parent: 2 + - uid: 2614 + components: + - type: Transform + pos: 26.5,67.5 + parent: 2 + - uid: 2615 + components: + - type: Transform + pos: 25.5,67.5 + parent: 2 + - uid: 2616 + components: + - type: Transform + pos: 24.5,67.5 + parent: 2 + - uid: 2617 + components: + - type: Transform + pos: 25.5,60.5 + parent: 2 + - uid: 2618 + components: + - type: Transform + pos: 24.5,60.5 + parent: 2 + - uid: 2619 + components: + - type: Transform + pos: 23.5,60.5 + parent: 2 + - uid: 2620 + components: + - type: Transform + pos: 22.5,60.5 + parent: 2 + - uid: 2621 + components: + - type: Transform + pos: 21.5,60.5 + parent: 2 + - uid: 2622 + components: + - type: Transform + pos: 20.5,60.5 + parent: 2 + - uid: 2623 + components: + - type: Transform + pos: 24.5,61.5 + parent: 2 + - uid: 2624 + components: + - type: Transform + pos: 24.5,62.5 + parent: 2 + - uid: 2625 + components: + - type: Transform + pos: 24.5,63.5 + parent: 2 + - uid: 2626 + components: + - type: Transform + pos: 24.5,64.5 + parent: 2 + - uid: 2627 + components: + - type: Transform + pos: 24.5,65.5 + parent: 2 + - uid: 2628 + components: + - type: Transform + pos: 12.5,74.5 + parent: 2 + - uid: 2629 + components: + - type: Transform + pos: 13.5,74.5 + parent: 2 + - uid: 2630 + components: + - type: Transform + pos: 14.5,74.5 + parent: 2 + - uid: 2631 + components: + - type: Transform + pos: 15.5,74.5 + parent: 2 + - uid: 2632 + components: + - type: Transform + pos: 16.5,74.5 + parent: 2 + - uid: 2633 + components: + - type: Transform + pos: 14.5,75.5 + parent: 2 + - uid: 2634 + components: + - type: Transform + pos: 14.5,76.5 + parent: 2 + - uid: 2635 + components: + - type: Transform + pos: 14.5,77.5 + parent: 2 + - uid: 2636 + components: + - type: Transform + pos: 14.5,78.5 + parent: 2 + - uid: 2637 + components: + - type: Transform + pos: 14.5,73.5 + parent: 2 + - uid: 2638 + components: + - type: Transform + pos: 14.5,72.5 + parent: 2 + - uid: 2639 + components: + - type: Transform + pos: 14.5,71.5 + parent: 2 + - uid: 2640 + components: + - type: Transform + pos: 14.5,70.5 + parent: 2 + - uid: 2641 + components: + - type: Transform + pos: 14.5,69.5 + parent: 2 + - uid: 2642 + components: + - type: Transform + pos: 14.5,68.5 + parent: 2 + - uid: 2643 + components: + - type: Transform + pos: 13.5,68.5 + parent: 2 + - uid: 2644 + components: + - type: Transform + pos: 13.5,67.5 + parent: 2 + - uid: 2645 + components: + - type: Transform + pos: 13.5,66.5 + parent: 2 + - uid: 2646 + components: + - type: Transform + pos: 14.5,66.5 + parent: 2 + - uid: 2647 + components: + - type: Transform + pos: 13.5,64.5 + parent: 2 + - uid: 2648 + components: + - type: Transform + pos: 12.5,64.5 + parent: 2 + - uid: 2649 + components: + - type: Transform + pos: 11.5,64.5 + parent: 2 + - uid: 2650 + components: + - type: Transform + pos: 10.5,64.5 + parent: 2 + - uid: 2651 + components: + - type: Transform + pos: 9.5,64.5 + parent: 2 + - uid: 2652 + components: + - type: Transform + pos: 8.5,64.5 + parent: 2 + - uid: 2653 + components: + - type: Transform + pos: 14.5,65.5 + parent: 2 + - uid: 2654 + components: + - type: Transform + pos: 15.5,65.5 + parent: 2 + - uid: 2655 + components: + - type: Transform + pos: 16.5,65.5 + parent: 2 + - uid: 2656 + components: + - type: Transform + pos: 17.5,65.5 + parent: 2 + - uid: 2657 + components: + - type: Transform + pos: 18.5,65.5 + parent: 2 + - uid: 2658 + components: + - type: Transform + pos: 17.5,66.5 + parent: 2 + - uid: 2659 + components: + - type: Transform + pos: 17.5,67.5 + parent: 2 + - uid: 2660 + components: + - type: Transform + pos: 17.5,68.5 + parent: 2 + - uid: 2661 + components: + - type: Transform + pos: 17.5,69.5 + parent: 2 + - uid: 2662 + components: + - type: Transform + pos: 16.5,69.5 + parent: 2 + - uid: 2663 + components: + - type: Transform + pos: 16.5,70.5 + parent: 2 + - uid: 2664 + components: + - type: Transform + pos: 16.5,71.5 + parent: 2 + - uid: 2665 + components: + - type: Transform + pos: 16.5,72.5 + parent: 2 + - uid: 2666 + components: + - type: Transform + pos: 16.5,73.5 + parent: 2 + - uid: 2667 + components: + - type: Transform + pos: 16.5,74.5 + parent: 2 + - uid: 2668 + components: + - type: Transform + pos: 23.5,49.5 + parent: 2 + - uid: 2669 + components: + - type: Transform + pos: 23.5,50.5 + parent: 2 + - uid: 2670 + components: + - type: Transform + pos: 23.5,48.5 + parent: 2 + - uid: 2671 + components: + - type: Transform + pos: 22.5,48.5 + parent: 2 + - uid: 2672 + components: + - type: Transform + pos: 21.5,48.5 + parent: 2 + - uid: 2673 + components: + - type: Transform + pos: 20.5,48.5 + parent: 2 + - uid: 2674 + components: + - type: Transform + pos: 19.5,48.5 + parent: 2 + - uid: 2675 + components: + - type: Transform + pos: 18.5,48.5 + parent: 2 + - uid: 2676 + components: + - type: Transform + pos: 17.5,48.5 + parent: 2 + - uid: 2677 + components: + - type: Transform + pos: 16.5,48.5 + parent: 2 + - uid: 2678 + components: + - type: Transform + pos: 15.5,48.5 + parent: 2 + - uid: 2679 + components: + - type: Transform + pos: 14.5,48.5 + parent: 2 + - uid: 2680 + components: + - type: Transform + pos: 13.5,48.5 + parent: 2 + - uid: 2681 + components: + - type: Transform + pos: 12.5,48.5 + parent: 2 + - uid: 2682 + components: + - type: Transform + pos: 11.5,48.5 + parent: 2 + - uid: 2683 + components: + - type: Transform + pos: 10.5,48.5 + parent: 2 + - uid: 2684 + components: + - type: Transform + pos: 9.5,48.5 + parent: 2 + - uid: 2685 + components: + - type: Transform + pos: 8.5,48.5 + parent: 2 + - uid: 2686 + components: + - type: Transform + pos: 7.5,48.5 + parent: 2 + - uid: 2687 + components: + - type: Transform + pos: 6.5,48.5 + parent: 2 + - uid: 2688 + components: + - type: Transform + pos: 5.5,48.5 + parent: 2 + - uid: 2689 + components: + - type: Transform + pos: 24.5,48.5 + parent: 2 + - uid: 2690 + components: + - type: Transform + pos: 25.5,48.5 + parent: 2 + - uid: 2691 + components: + - type: Transform + pos: 26.5,48.5 + parent: 2 + - uid: 2692 + components: + - type: Transform + pos: 27.5,48.5 + parent: 2 + - uid: 2693 + components: + - type: Transform + pos: 28.5,48.5 + parent: 2 + - uid: 2694 + components: + - type: Transform + pos: 29.5,48.5 + parent: 2 + - uid: 2695 + components: + - type: Transform + pos: 30.5,48.5 + parent: 2 + - uid: 2696 + components: + - type: Transform + pos: 31.5,48.5 + parent: 2 + - uid: 2697 + components: + - type: Transform + pos: 32.5,48.5 + parent: 2 + - uid: 2698 + components: + - type: Transform + pos: 33.5,48.5 + parent: 2 + - uid: 2699 + components: + - type: Transform + pos: 34.5,48.5 + parent: 2 + - uid: 2700 + components: + - type: Transform + pos: 35.5,48.5 + parent: 2 + - uid: 2701 + components: + - type: Transform + pos: 36.5,48.5 + parent: 2 + - uid: 2702 + components: + - type: Transform + pos: 37.5,48.5 + parent: 2 + - uid: 2703 + components: + - type: Transform + pos: 38.5,48.5 + parent: 2 + - uid: 2704 + components: + - type: Transform + pos: 39.5,48.5 + parent: 2 + - uid: 2705 + components: + - type: Transform + pos: 40.5,48.5 + parent: 2 + - uid: 2706 + components: + - type: Transform + pos: 41.5,48.5 + parent: 2 + - uid: 2707 + components: + - type: Transform + pos: 42.5,48.5 + parent: 2 + - uid: 2708 + components: + - type: Transform + pos: -6.5,50.5 + parent: 2 + - uid: 2709 + components: + - type: Transform + pos: -4.5,50.5 + parent: 2 + - uid: 2710 + components: + - type: Transform + pos: -3.5,50.5 + parent: 2 + - uid: 2711 + components: + - type: Transform + pos: -2.5,50.5 + parent: 2 + - uid: 2712 + components: + - type: Transform + pos: -1.5,50.5 + parent: 2 + - uid: 2713 + components: + - type: Transform + pos: -0.5,50.5 + parent: 2 + - uid: 2714 + components: + - type: Transform + pos: 0.5,50.5 + parent: 2 + - uid: 2715 + components: + - type: Transform + pos: -0.5,51.5 + parent: 2 + - uid: 2716 + components: + - type: Transform + pos: -4.5,51.5 + parent: 2 + - uid: 2717 + components: + - type: Transform + pos: 31.5,57.5 + parent: 2 + - uid: 2718 + components: + - type: Transform + pos: 31.5,56.5 + parent: 2 + - uid: 2719 + components: + - type: Transform + pos: 31.5,55.5 + parent: 2 + - uid: 2720 + components: + - type: Transform + pos: 31.5,54.5 + parent: 2 + - uid: 2721 + components: + - type: Transform + pos: 31.5,53.5 + parent: 2 + - uid: 2722 + components: + - type: Transform + pos: 30.5,53.5 + parent: 2 + - uid: 2723 + components: + - type: Transform + pos: 29.5,53.5 + parent: 2 + - uid: 2724 + components: + - type: Transform + pos: 29.5,54.5 + parent: 2 + - uid: 2725 + components: + - type: Transform + pos: 29.5,55.5 + parent: 2 + - uid: 2726 + components: + - type: Transform + pos: 29.5,56.5 + parent: 2 + - uid: 2727 + components: + - type: Transform + pos: 30.5,56.5 + parent: 2 + - uid: 2728 + components: + - type: Transform + pos: 30.5,52.5 + parent: 2 + - uid: 2729 + components: + - type: Transform + pos: 30.5,51.5 + parent: 2 + - uid: 2730 + components: + - type: Transform + pos: 30.5,50.5 + parent: 2 + - uid: 2731 + components: + - type: Transform + pos: 37.5,45.5 + parent: 2 + - uid: 2732 + components: + - type: Transform + pos: 37.5,42.5 + parent: 2 + - uid: 2733 + components: + - type: Transform + pos: 37.5,43.5 + parent: 2 + - uid: 2734 + components: + - type: Transform + pos: 38.5,44.5 + parent: 2 + - uid: 2735 + components: + - type: Transform + pos: 36.5,44.5 + parent: 2 + - uid: 2736 + components: + - type: Transform + pos: 35.5,44.5 + parent: 2 + - uid: 2737 + components: + - type: Transform + pos: 37.5,41.5 + parent: 2 + - uid: 2738 + components: + - type: Transform + pos: 37.5,40.5 + parent: 2 + - uid: 2739 + components: + - type: Transform + pos: 37.5,39.5 + parent: 2 + - uid: 2740 + components: + - type: Transform + pos: 37.5,38.5 + parent: 2 + - uid: 2741 + components: + - type: Transform + pos: 37.5,37.5 + parent: 2 + - uid: 2742 + components: + - type: Transform + pos: 38.5,40.5 + parent: 2 + - uid: 2743 + components: + - type: Transform + pos: 39.5,40.5 + parent: 2 + - uid: 2744 + components: + - type: Transform + pos: 40.5,40.5 + parent: 2 + - uid: 2745 + components: + - type: Transform + pos: 41.5,40.5 + parent: 2 + - uid: 2746 + components: + - type: Transform + pos: 36.5,40.5 + parent: 2 + - uid: 2747 + components: + - type: Transform + pos: 35.5,40.5 + parent: 2 + - uid: 2748 + components: + - type: Transform + pos: 38.5,37.5 + parent: 2 + - uid: 2749 + components: + - type: Transform + pos: 39.5,37.5 + parent: 2 + - uid: 2750 + components: + - type: Transform + pos: 40.5,37.5 + parent: 2 + - uid: 2751 + components: + - type: Transform + pos: 41.5,37.5 + parent: 2 + - uid: 2752 + components: + - type: Transform + pos: 41.5,41.5 + parent: 2 + - uid: 2753 + components: + - type: Transform + pos: 41.5,42.5 + parent: 2 + - uid: 2754 + components: + - type: Transform + pos: 41.5,43.5 + parent: 2 + - uid: 2755 + components: + - type: Transform + pos: 41.5,44.5 + parent: 2 + - uid: 2756 + components: + - type: Transform + pos: 41.5,45.5 + parent: 2 + - uid: 2757 + components: + - type: Transform + pos: 34.5,44.5 + parent: 2 + - uid: 2758 + components: + - type: Transform + pos: 33.5,44.5 + parent: 2 + - uid: 2759 + components: + - type: Transform + pos: 32.5,44.5 + parent: 2 + - uid: 2760 + components: + - type: Transform + pos: 32.5,45.5 + parent: 2 + - uid: 2761 + components: + - type: Transform + pos: 32.5,46.5 + parent: 2 + - uid: 2762 + components: + - type: Transform + pos: 32.5,43.5 + parent: 2 + - uid: 2763 + components: + - type: Transform + pos: 32.5,42.5 + parent: 2 + - uid: 2764 + components: + - type: Transform + pos: 32.5,41.5 + parent: 2 + - uid: 2765 + components: + - type: Transform + pos: 32.5,40.5 + parent: 2 + - uid: 2766 + components: + - type: Transform + pos: 32.5,39.5 + parent: 2 + - uid: 2767 + components: + - type: Transform + pos: 32.5,38.5 + parent: 2 + - uid: 2768 + components: + - type: Transform + pos: 32.5,37.5 + parent: 2 + - uid: 2769 + components: + - type: Transform + pos: 32.5,36.5 + parent: 2 + - uid: 2770 + components: + - type: Transform + pos: 32.5,35.5 + parent: 2 + - uid: 2771 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 2772 + components: + - type: Transform + pos: 32.5,33.5 + parent: 2 + - uid: 2773 + components: + - type: Transform + pos: 32.5,32.5 + parent: 2 + - uid: 2774 + components: + - type: Transform + pos: 32.5,31.5 + parent: 2 + - uid: 2775 + components: + - type: Transform + pos: 32.5,30.5 + parent: 2 + - uid: 2776 + components: + - type: Transform + pos: 32.5,29.5 + parent: 2 + - uid: 2777 + components: + - type: Transform + pos: 32.5,28.5 + parent: 2 + - uid: 2778 + components: + - type: Transform + pos: 32.5,27.5 + parent: 2 + - uid: 2779 + components: + - type: Transform + pos: 32.5,26.5 + parent: 2 + - uid: 2780 + components: + - type: Transform + pos: 32.5,25.5 + parent: 2 + - uid: 2781 + components: + - type: Transform + pos: 32.5,24.5 + parent: 2 + - uid: 2782 + components: + - type: Transform + pos: 40.5,53.5 + parent: 2 + - uid: 2783 + components: + - type: Transform + pos: 39.5,53.5 + parent: 2 + - uid: 2784 + components: + - type: Transform + pos: 39.5,54.5 + parent: 2 + - uid: 2785 + components: + - type: Transform + pos: 39.5,55.5 + parent: 2 + - uid: 2786 + components: + - type: Transform + pos: 39.5,51.5 + parent: 2 + - uid: 2787 + components: + - type: Transform + pos: 40.5,51.5 + parent: 2 + - uid: 2788 + components: + - type: Transform + pos: 41.5,51.5 + parent: 2 + - uid: 2789 + components: + - type: Transform + pos: 42.5,51.5 + parent: 2 + - uid: 2790 + components: + - type: Transform + pos: 41.5,53.5 + parent: 2 + - uid: 2791 + components: + - type: Transform + pos: 42.5,53.5 + parent: 2 + - uid: 2792 + components: + - type: Transform + pos: 43.5,53.5 + parent: 2 + - uid: 2793 + components: + - type: Transform + pos: 41.5,33.5 + parent: 2 + - uid: 2794 + components: + - type: Transform + pos: 41.5,32.5 + parent: 2 + - uid: 2795 + components: + - type: Transform + pos: 41.5,31.5 + parent: 2 + - uid: 2796 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 2797 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 2798 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 2799 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 2800 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 2801 + components: + - type: Transform + pos: 38.5,28.5 + parent: 2 + - uid: 2802 + components: + - type: Transform + pos: 38.5,27.5 + parent: 2 + - uid: 2803 + components: + - type: Transform + pos: 39.5,28.5 + parent: 2 + - uid: 2804 + components: + - type: Transform + pos: 40.5,28.5 + parent: 2 + - uid: 2805 + components: + - type: Transform + pos: 41.5,28.5 + parent: 2 + - uid: 2806 + components: + - type: Transform + pos: 42.5,28.5 + parent: 2 + - uid: 2807 + components: + - type: Transform + pos: -10.5,47.5 + parent: 2 + - uid: 2808 + components: + - type: Transform + pos: -10.5,48.5 + parent: 2 + - uid: 2809 + components: + - type: Transform + pos: -11.5,48.5 + parent: 2 + - uid: 2810 + components: + - type: Transform + pos: -12.5,48.5 + parent: 2 + - uid: 2811 + components: + - type: Transform + pos: -13.5,48.5 + parent: 2 + - uid: 2812 + components: + - type: Transform + pos: -14.5,48.5 + parent: 2 + - uid: 2813 + components: + - type: Transform + pos: -15.5,48.5 + parent: 2 + - uid: 2814 + components: + - type: Transform + pos: -16.5,48.5 + parent: 2 + - uid: 2815 + components: + - type: Transform + pos: -9.5,48.5 + parent: 2 + - uid: 2816 + components: + - type: Transform + pos: -8.5,48.5 + parent: 2 + - uid: 2817 + components: + - type: Transform + pos: -7.5,48.5 + parent: 2 + - uid: 2818 + components: + - type: Transform + pos: -6.5,48.5 + parent: 2 + - uid: 2819 + components: + - type: Transform + pos: -5.5,48.5 + parent: 2 + - uid: 2820 + components: + - type: Transform + pos: -4.5,48.5 + parent: 2 + - uid: 2821 + components: + - type: Transform + pos: -3.5,48.5 + parent: 2 + - uid: 2822 + components: + - type: Transform + pos: -2.5,48.5 + parent: 2 + - uid: 2823 + components: + - type: Transform + pos: -1.5,48.5 + parent: 2 + - uid: 2824 + components: + - type: Transform + pos: -0.5,48.5 + parent: 2 + - uid: 2825 + components: + - type: Transform + pos: 0.5,48.5 + parent: 2 + - uid: 2826 + components: + - type: Transform + pos: 1.5,48.5 + parent: 2 + - uid: 2827 + components: + - type: Transform + pos: 2.5,48.5 + parent: 2 + - uid: 2828 + components: + - type: Transform + pos: 3.5,48.5 + parent: 2 + - uid: 2829 + components: + - type: Transform + pos: 0.5,47.5 + parent: 2 + - uid: 2830 + components: + - type: Transform + pos: 0.5,46.5 + parent: 2 + - uid: 2831 + components: + - type: Transform + pos: 0.5,45.5 + parent: 2 + - uid: 2832 + components: + - type: Transform + pos: -1.5,33.5 + parent: 2 + - uid: 2833 + components: + - type: Transform + pos: -0.5,33.5 + parent: 2 + - uid: 2834 + components: + - type: Transform + pos: 0.5,33.5 + parent: 2 + - uid: 2835 + components: + - type: Transform + pos: 0.5,34.5 + parent: 2 + - uid: 2836 + components: + - type: Transform + pos: 0.5,35.5 + parent: 2 + - uid: 2837 + components: + - type: Transform + pos: 0.5,36.5 + parent: 2 + - uid: 2838 + components: + - type: Transform + pos: 0.5,37.5 + parent: 2 + - uid: 2839 + components: + - type: Transform + pos: 0.5,38.5 + parent: 2 + - uid: 2840 + components: + - type: Transform + pos: 0.5,39.5 + parent: 2 + - uid: 2841 + components: + - type: Transform + pos: 0.5,40.5 + parent: 2 + - uid: 2842 + components: + - type: Transform + pos: 0.5,41.5 + parent: 2 + - uid: 2843 + components: + - type: Transform + pos: 0.5,42.5 + parent: 2 + - uid: 2844 + components: + - type: Transform + pos: 0.5,43.5 + parent: 2 + - uid: 2845 + components: + - type: Transform + pos: 0.5,32.5 + parent: 2 + - uid: 2846 + components: + - type: Transform + pos: 0.5,31.5 + parent: 2 + - uid: 2847 + components: + - type: Transform + pos: 0.5,30.5 + parent: 2 + - uid: 2848 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - uid: 2849 + components: + - type: Transform + pos: 0.5,28.5 + parent: 2 + - uid: 2850 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - uid: 2851 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - uid: 2852 + components: + - type: Transform + pos: 0.5,25.5 + parent: 2 + - uid: 2853 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - uid: 2854 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 2855 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - uid: 2856 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 2857 + components: + - type: Transform + pos: -5.5,20.5 + parent: 2 + - uid: 2858 + components: + - type: Transform + pos: -6.5,20.5 + parent: 2 + - uid: 2859 + components: + - type: Transform + pos: -4.5,20.5 + parent: 2 + - uid: 2860 + components: + - type: Transform + pos: -3.5,20.5 + parent: 2 + - uid: 2861 + components: + - type: Transform + pos: -2.5,20.5 + parent: 2 + - uid: 2862 + components: + - type: Transform + pos: -1.5,20.5 + parent: 2 + - uid: 2863 + components: + - type: Transform + pos: -0.5,20.5 + parent: 2 + - uid: 2864 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 + - uid: 2865 + components: + - type: Transform + pos: 1.5,20.5 + parent: 2 + - uid: 2866 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - uid: 2867 + components: + - type: Transform + pos: 3.5,20.5 + parent: 2 + - uid: 2868 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 2869 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 + - uid: 2870 + components: + - type: Transform + pos: 9.5,20.5 + parent: 2 + - uid: 2871 + components: + - type: Transform + pos: 8.5,20.5 + parent: 2 + - uid: 2872 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 + - uid: 2873 + components: + - type: Transform + pos: 6.5,20.5 + parent: 2 + - uid: 2874 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 + - uid: 2875 + components: + - type: Transform + pos: 12.5,20.5 + parent: 2 + - uid: 2876 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 2877 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 + - uid: 2878 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 + - uid: 2879 + components: + - type: Transform + pos: 16.5,20.5 + parent: 2 + - uid: 2880 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 2881 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 2882 + components: + - type: Transform + pos: 19.5,20.5 + parent: 2 + - uid: 2883 + components: + - type: Transform + pos: 15.5,19.5 + parent: 2 + - uid: 2884 + components: + - type: Transform + pos: 15.5,18.5 + parent: 2 + - uid: 2885 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 2887 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 2888 + components: + - type: Transform + pos: 15.5,21.5 + parent: 2 + - uid: 2889 + components: + - type: Transform + pos: 15.5,22.5 + parent: 2 + - uid: 2890 + components: + - type: Transform + pos: 16.5,22.5 + parent: 2 + - uid: 2891 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - uid: 2892 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - uid: 2893 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 2894 + components: + - type: Transform + pos: 24.5,19.5 + parent: 2 + - uid: 2895 + components: + - type: Transform + pos: 24.5,20.5 + parent: 2 + - uid: 2896 + components: + - type: Transform + pos: 24.5,21.5 + parent: 2 + - uid: 2897 + components: + - type: Transform + pos: 23.5,20.5 + parent: 2 + - uid: 2898 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 + - uid: 2899 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 2900 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - uid: 2901 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 + - uid: 2902 + components: + - type: Transform + pos: 27.5,20.5 + parent: 2 + - uid: 2903 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 2904 + components: + - type: Transform + pos: 29.5,20.5 + parent: 2 + - uid: 2905 + components: + - type: Transform + pos: 30.5,20.5 + parent: 2 + - uid: 2906 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 2907 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - uid: 2908 + components: + - type: Transform + pos: 32.5,21.5 + parent: 2 + - uid: 2909 + components: + - type: Transform + pos: 32.5,22.5 + parent: 2 + - uid: 2910 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - uid: 2911 + components: + - type: Transform + pos: 19.5,41.5 + parent: 2 + - uid: 2912 + components: + - type: Transform + pos: 19.5,40.5 + parent: 2 + - uid: 2913 + components: + - type: Transform + pos: 19.5,39.5 + parent: 2 + - uid: 2914 + components: + - type: Transform + pos: 19.5,38.5 + parent: 2 + - uid: 2915 + components: + - type: Transform + pos: 19.5,37.5 + parent: 2 + - uid: 2916 + components: + - type: Transform + pos: 20.5,38.5 + parent: 2 + - uid: 2917 + components: + - type: Transform + pos: 18.5,38.5 + parent: 2 + - uid: 2918 + components: + - type: Transform + pos: 17.5,38.5 + parent: 2 + - uid: 2919 + components: + - type: Transform + pos: 15.5,38.5 + parent: 2 + - uid: 2920 + components: + - type: Transform + pos: 19.5,44.5 + parent: 2 + - uid: 2921 + components: + - type: Transform + pos: 20.5,44.5 + parent: 2 + - uid: 2922 + components: + - type: Transform + pos: 21.5,44.5 + parent: 2 + - uid: 2923 + components: + - type: Transform + pos: 21.5,45.5 + parent: 2 + - uid: 2924 + components: + - type: Transform + pos: 21.5,43.5 + parent: 2 + - uid: 2925 + components: + - type: Transform + pos: 22.5,44.5 + parent: 2 + - uid: 2926 + components: + - type: Transform + pos: 23.5,44.5 + parent: 2 + - uid: 2927 + components: + - type: Transform + pos: 24.5,44.5 + parent: 2 + - uid: 2928 + components: + - type: Transform + pos: 25.5,44.5 + parent: 2 + - uid: 2929 + components: + - type: Transform + pos: 26.5,44.5 + parent: 2 + - uid: 2930 + components: + - type: Transform + pos: 27.5,44.5 + parent: 2 + - uid: 2931 + components: + - type: Transform + pos: 28.5,44.5 + parent: 2 + - uid: 2932 + components: + - type: Transform + pos: 27.5,43.5 + parent: 2 + - uid: 2933 + components: + - type: Transform + pos: 27.5,42.5 + parent: 2 + - uid: 2934 + components: + - type: Transform + pos: 27.5,41.5 + parent: 2 + - uid: 2935 + components: + - type: Transform + pos: 27.5,40.5 + parent: 2 + - uid: 2936 + components: + - type: Transform + pos: 27.5,39.5 + parent: 2 + - uid: 2937 + components: + - type: Transform + pos: 27.5,38.5 + parent: 2 + - uid: 2938 + components: + - type: Transform + pos: 23.5,43.5 + parent: 2 + - uid: 2939 + components: + - type: Transform + pos: 23.5,42.5 + parent: 2 + - uid: 2940 + components: + - type: Transform + pos: 23.5,41.5 + parent: 2 + - uid: 2941 + components: + - type: Transform + pos: 23.5,40.5 + parent: 2 + - uid: 2942 + components: + - type: Transform + pos: 23.5,39.5 + parent: 2 + - uid: 2943 + components: + - type: Transform + pos: 23.5,38.5 + parent: 2 + - uid: 2944 + components: + - type: Transform + pos: 15.5,42.5 + parent: 2 + - uid: 2945 + components: + - type: Transform + pos: 16.5,42.5 + parent: 2 + - uid: 2946 + components: + - type: Transform + pos: 17.5,42.5 + parent: 2 + - uid: 2947 + components: + - type: Transform + pos: 17.5,43.5 + parent: 2 + - uid: 2948 + components: + - type: Transform + pos: 17.5,44.5 + parent: 2 + - uid: 2949 + components: + - type: Transform + pos: 17.5,45.5 + parent: 2 + - uid: 2950 + components: + - type: Transform + pos: 16.5,44.5 + parent: 2 + - uid: 2951 + components: + - type: Transform + pos: 17.5,41.5 + parent: 2 + - uid: 2952 + components: + - type: Transform + pos: 15.5,44.5 + parent: 2 + - uid: 2953 + components: + - type: Transform + pos: 14.5,44.5 + parent: 2 + - uid: 2954 + components: + - type: Transform + pos: 13.5,44.5 + parent: 2 + - uid: 2955 + components: + - type: Transform + pos: 12.5,44.5 + parent: 2 + - uid: 2956 + components: + - type: Transform + pos: 11.5,44.5 + parent: 2 + - uid: 2957 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 + - uid: 2958 + components: + - type: Transform + pos: 13.5,38.5 + parent: 2 + - uid: 2959 + components: + - type: Transform + pos: 12.5,38.5 + parent: 2 + - uid: 2960 + components: + - type: Transform + pos: 11.5,38.5 + parent: 2 + - uid: 2961 + components: + - type: Transform + pos: 12.5,39.5 + parent: 2 + - uid: 2962 + components: + - type: Transform + pos: 12.5,40.5 + parent: 2 + - uid: 2963 + components: + - type: Transform + pos: 12.5,41.5 + parent: 2 + - uid: 2964 + components: + - type: Transform + pos: 12.5,37.5 + parent: 2 + - uid: 2965 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - uid: 2966 + components: + - type: Transform + pos: 14.5,40.5 + parent: 2 + - uid: 2967 + components: + - type: Transform + pos: 14.5,41.5 + parent: 2 + - uid: 2968 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - uid: 2969 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - uid: 2970 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 + - uid: 2971 + components: + - type: Transform + pos: 14.5,30.5 + parent: 2 + - uid: 2972 + components: + - type: Transform + pos: 15.5,31.5 + parent: 2 + - uid: 2973 + components: + - type: Transform + pos: 16.5,31.5 + parent: 2 + - uid: 2974 + components: + - type: Transform + pos: 17.5,31.5 + parent: 2 + - uid: 2975 + components: + - type: Transform + pos: 18.5,31.5 + parent: 2 + - uid: 2976 + components: + - type: Transform + pos: 17.5,30.5 + parent: 2 + - uid: 2977 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 2978 + components: + - type: Transform + pos: 17.5,28.5 + parent: 2 + - uid: 2979 + components: + - type: Transform + pos: 17.5,27.5 + parent: 2 + - uid: 2980 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 2981 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 + - uid: 2982 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 2983 + components: + - type: Transform + pos: 18.5,32.5 + parent: 2 + - uid: 2984 + components: + - type: Transform + pos: 18.5,33.5 + parent: 2 + - uid: 2985 + components: + - type: Transform + pos: 18.5,34.5 + parent: 2 + - uid: 2986 + components: + - type: Transform + pos: 18.5,35.5 + parent: 2 + - uid: 2987 + components: + - type: Transform + pos: 17.5,35.5 + parent: 2 + - uid: 2988 + components: + - type: Transform + pos: 16.5,35.5 + parent: 2 + - uid: 2989 + components: + - type: Transform + pos: 15.5,35.5 + parent: 2 + - uid: 2990 + components: + - type: Transform + pos: 14.5,35.5 + parent: 2 + - uid: 2991 + components: + - type: Transform + pos: 13.5,35.5 + parent: 2 + - uid: 2992 + components: + - type: Transform + pos: 12.5,35.5 + parent: 2 + - uid: 2993 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 + - uid: 2994 + components: + - type: Transform + pos: 10.5,35.5 + parent: 2 + - uid: 2995 + components: + - type: Transform + pos: 9.5,35.5 + parent: 2 + - uid: 2996 + components: + - type: Transform + pos: 8.5,35.5 + parent: 2 + - uid: 2997 + components: + - type: Transform + pos: 13.5,31.5 + parent: 2 + - uid: 2998 + components: + - type: Transform + pos: 12.5,31.5 + parent: 2 + - uid: 2999 + components: + - type: Transform + pos: 11.5,31.5 + parent: 2 + - uid: 3000 + components: + - type: Transform + pos: 10.5,31.5 + parent: 2 + - uid: 3001 + components: + - type: Transform + pos: 9.5,31.5 + parent: 2 + - uid: 3002 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - uid: 3003 + components: + - type: Transform + pos: 8.5,32.5 + parent: 2 + - uid: 3004 + components: + - type: Transform + pos: 8.5,33.5 + parent: 2 + - uid: 3005 + components: + - type: Transform + pos: 8.5,34.5 + parent: 2 + - uid: 3006 + components: + - type: Transform + pos: 9.5,33.5 + parent: 2 + - uid: 3007 + components: + - type: Transform + pos: 10.5,33.5 + parent: 2 + - uid: 3008 + components: + - type: Transform + pos: 11.5,33.5 + parent: 2 + - uid: 3009 + components: + - type: Transform + pos: 12.5,33.5 + parent: 2 + - uid: 3010 + components: + - type: Transform + pos: 19.5,33.5 + parent: 2 + - uid: 3011 + components: + - type: Transform + pos: 20.5,33.5 + parent: 2 + - uid: 3012 + components: + - type: Transform + pos: 21.5,33.5 + parent: 2 + - uid: 3013 + components: + - type: Transform + pos: 22.5,33.5 + parent: 2 + - uid: 3014 + components: + - type: Transform + pos: 23.5,33.5 + parent: 2 + - uid: 3015 + components: + - type: Transform + pos: 22.5,32.5 + parent: 2 + - uid: 3016 + components: + - type: Transform + pos: 22.5,31.5 + parent: 2 + - uid: 3017 + components: + - type: Transform + pos: 22.5,30.5 + parent: 2 + - uid: 3018 + components: + - type: Transform + pos: 22.5,34.5 + parent: 2 + - uid: 3019 + components: + - type: Transform + pos: 22.5,35.5 + parent: 2 + - uid: 3020 + components: + - type: Transform + pos: 22.5,36.5 + parent: 2 + - uid: 3021 + components: + - type: Transform + pos: 22.5,37.5 + parent: 2 + - uid: 3022 + components: + - type: Transform + pos: 26.5,37.5 + parent: 2 + - uid: 3023 + components: + - type: Transform + pos: 26.5,36.5 + parent: 2 + - uid: 3024 + components: + - type: Transform + pos: 26.5,35.5 + parent: 2 + - uid: 3025 + components: + - type: Transform + pos: 26.5,34.5 + parent: 2 + - uid: 3026 + components: + - type: Transform + pos: 26.5,33.5 + parent: 2 + - uid: 3027 + components: + - type: Transform + pos: 26.5,32.5 + parent: 2 + - uid: 3028 + components: + - type: Transform + pos: 26.5,31.5 + parent: 2 + - uid: 3029 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 + - uid: 3030 + components: + - type: Transform + pos: 28.5,31.5 + parent: 2 + - uid: 3031 + components: + - type: Transform + pos: 29.5,31.5 + parent: 2 + - uid: 3032 + components: + - type: Transform + pos: 27.5,36.5 + parent: 2 + - uid: 3033 + components: + - type: Transform + pos: 28.5,36.5 + parent: 2 + - uid: 3034 + components: + - type: Transform + pos: 29.5,36.5 + parent: 2 + - uid: 3035 + components: + - type: Transform + pos: 27.5,34.5 + parent: 2 + - uid: 3036 + components: + - type: Transform + pos: 28.5,34.5 + parent: 2 + - uid: 3037 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 3038 + components: + - type: Transform + pos: 10.5,40.5 + parent: 2 + - uid: 3039 + components: + - type: Transform + pos: 9.5,40.5 + parent: 2 + - uid: 3040 + components: + - type: Transform + pos: 8.5,40.5 + parent: 2 + - uid: 3041 + components: + - type: Transform + pos: 7.5,40.5 + parent: 2 + - uid: 3042 + components: + - type: Transform + pos: 6.5,40.5 + parent: 2 + - uid: 3043 + components: + - type: Transform + pos: 5.5,40.5 + parent: 2 + - uid: 3044 + components: + - type: Transform + pos: 4.5,40.5 + parent: 2 + - uid: 3045 + components: + - type: Transform + pos: 3.5,40.5 + parent: 2 + - uid: 3046 + components: + - type: Transform + pos: 4.5,39.5 + parent: 2 + - uid: 3047 + components: + - type: Transform + pos: 4.5,38.5 + parent: 2 + - uid: 3048 + components: + - type: Transform + pos: 4.5,37.5 + parent: 2 + - uid: 3049 + components: + - type: Transform + pos: 8.5,39.5 + parent: 2 + - uid: 3050 + components: + - type: Transform + pos: 8.5,38.5 + parent: 2 + - uid: 3051 + components: + - type: Transform + pos: 8.5,37.5 + parent: 2 + - uid: 3052 + components: + - type: Transform + pos: 6.5,39.5 + parent: 2 + - uid: 3053 + components: + - type: Transform + pos: 6.5,38.5 + parent: 2 + - uid: 3054 + components: + - type: Transform + pos: 6.5,37.5 + parent: 2 + - uid: 3055 + components: + - type: Transform + pos: 5.5,41.5 + parent: 2 + - uid: 3056 + components: + - type: Transform + pos: 5.5,42.5 + parent: 2 + - uid: 3057 + components: + - type: Transform + pos: 5.5,43.5 + parent: 2 + - uid: 3058 + components: + - type: Transform + pos: 5.5,44.5 + parent: 2 + - uid: 3059 + components: + - type: Transform + pos: 5.5,45.5 + parent: 2 + - uid: 3060 + components: + - type: Transform + pos: 4.5,44.5 + parent: 2 + - uid: 3061 + components: + - type: Transform + pos: 6.5,44.5 + parent: 2 + - uid: 3062 + components: + - type: Transform + pos: 7.5,44.5 + parent: 2 + - uid: 3063 + components: + - type: Transform + pos: 8.5,44.5 + parent: 2 + - uid: 3064 + components: + - type: Transform + pos: 6.5,30.5 + parent: 2 + - uid: 3065 + components: + - type: Transform + pos: 6.5,29.5 + parent: 2 + - uid: 3066 + components: + - type: Transform + pos: 6.5,28.5 + parent: 2 + - uid: 3067 + components: + - type: Transform + pos: 6.5,27.5 + parent: 2 + - uid: 3068 + components: + - type: Transform + pos: 6.5,26.5 + parent: 2 + - uid: 3069 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - uid: 3070 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 + - uid: 3071 + components: + - type: Transform + pos: 13.5,27.5 + parent: 2 + - uid: 3072 + components: + - type: Transform + pos: 12.5,27.5 + parent: 2 + - uid: 3073 + components: + - type: Transform + pos: 11.5,27.5 + parent: 2 + - uid: 3074 + components: + - type: Transform + pos: 10.5,27.5 + parent: 2 + - uid: 3075 + components: + - type: Transform + pos: 12.5,28.5 + parent: 2 + - uid: 3076 + components: + - type: Transform + pos: 10.5,26.5 + parent: 2 + - uid: 3077 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 3078 + components: + - type: Transform + pos: 10.5,24.5 + parent: 2 + - uid: 3079 + components: + - type: Transform + pos: 10.5,23.5 + parent: 2 + - uid: 3080 + components: + - type: Transform + pos: 11.5,25.5 + parent: 2 + - uid: 3081 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 + - uid: 3082 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 3083 + components: + - type: Transform + pos: 14.5,25.5 + parent: 2 + - uid: 3084 + components: + - type: Transform + pos: 9.5,24.5 + parent: 2 + - uid: 3085 + components: + - type: Transform + pos: 8.5,24.5 + parent: 2 + - uid: 3086 + components: + - type: Transform + pos: 7.5,24.5 + parent: 2 + - uid: 3087 + components: + - type: Transform + pos: 6.5,24.5 + parent: 2 + - uid: 3088 + components: + - type: Transform + pos: 5.5,24.5 + parent: 2 + - uid: 3089 + components: + - type: Transform + pos: 4.5,24.5 + parent: 2 + - uid: 3090 + components: + - type: Transform + pos: 4.5,25.5 + parent: 2 + - uid: 3091 + components: + - type: Transform + pos: 3.5,25.5 + parent: 2 + - uid: 3092 + components: + - type: Transform + pos: 77.5,46.5 + parent: 2 + - uid: 3093 + components: + - type: Transform + pos: 77.5,45.5 + parent: 2 + - uid: 3094 + components: + - type: Transform + pos: 77.5,44.5 + parent: 2 + - uid: 3095 + components: + - type: Transform + pos: 77.5,43.5 + parent: 2 + - uid: 3096 + components: + - type: Transform + pos: 77.5,42.5 + parent: 2 + - uid: 3097 + components: + - type: Transform + pos: 76.5,44.5 + parent: 2 + - uid: 3098 + components: + - type: Transform + pos: 75.5,44.5 + parent: 2 + - uid: 3099 + components: + - type: Transform + pos: 74.5,44.5 + parent: 2 + - uid: 3100 + components: + - type: Transform + pos: 73.5,44.5 + parent: 2 + - uid: 3101 + components: + - type: Transform + pos: 72.5,44.5 + parent: 2 + - uid: 3102 + components: + - type: Transform + pos: 71.5,44.5 + parent: 2 + - uid: 3103 + components: + - type: Transform + pos: 70.5,44.5 + parent: 2 + - uid: 3104 + components: + - type: Transform + pos: 69.5,44.5 + parent: 2 + - uid: 3105 + components: + - type: Transform + pos: 68.5,44.5 + parent: 2 + - uid: 3106 + components: + - type: Transform + pos: 67.5,44.5 + parent: 2 + - uid: 3107 + components: + - type: Transform + pos: 70.5,43.5 + parent: 2 + - uid: 3108 + components: + - type: Transform + pos: 70.5,42.5 + parent: 2 + - uid: 3109 + components: + - type: Transform + pos: 70.5,45.5 + parent: 2 + - uid: 3110 + components: + - type: Transform + pos: 70.5,46.5 + parent: 2 + - uid: 3111 + components: + - type: Transform + pos: 78.5,43.5 + parent: 2 + - uid: 3112 + components: + - type: Transform + pos: 79.5,43.5 + parent: 2 + - uid: 3113 + components: + - type: Transform + pos: 80.5,43.5 + parent: 2 + - uid: 3114 + components: + - type: Transform + pos: 81.5,43.5 + parent: 2 + - uid: 3115 + components: + - type: Transform + pos: 82.5,43.5 + parent: 2 + - uid: 3116 + components: + - type: Transform + pos: 83.5,43.5 + parent: 2 + - uid: 3117 + components: + - type: Transform + pos: 81.5,23.5 + parent: 2 + - uid: 3118 + components: + - type: Transform + pos: 79.5,39.5 + parent: 2 + - uid: 3119 + components: + - type: Transform + pos: 78.5,39.5 + parent: 2 + - uid: 3120 + components: + - type: Transform + pos: 77.5,39.5 + parent: 2 + - uid: 3121 + components: + - type: Transform + pos: 76.5,39.5 + parent: 2 + - uid: 3122 + components: + - type: Transform + pos: 75.5,39.5 + parent: 2 + - uid: 3123 + components: + - type: Transform + pos: 74.5,39.5 + parent: 2 + - uid: 3124 + components: + - type: Transform + pos: 76.5,38.5 + parent: 2 + - uid: 3125 + components: + - type: Transform + pos: 76.5,40.5 + parent: 2 + - uid: 3126 + components: + - type: Transform + pos: 73.5,39.5 + parent: 2 + - uid: 3127 + components: + - type: Transform + pos: 72.5,39.5 + parent: 2 + - uid: 3128 + components: + - type: Transform + pos: 71.5,39.5 + parent: 2 + - uid: 3129 + components: + - type: Transform + pos: 70.5,39.5 + parent: 2 + - uid: 3130 + components: + - type: Transform + pos: 69.5,39.5 + parent: 2 + - uid: 3131 + components: + - type: Transform + pos: 69.5,38.5 + parent: 2 + - uid: 3132 + components: + - type: Transform + pos: 69.5,37.5 + parent: 2 + - uid: 3133 + components: + - type: Transform + pos: 78.5,38.5 + parent: 2 + - uid: 3134 + components: + - type: Transform + pos: 79.5,36.5 + parent: 2 + - uid: 3135 + components: + - type: Transform + pos: 79.5,35.5 + parent: 2 + - uid: 3136 + components: + - type: Transform + pos: 79.5,34.5 + parent: 2 + - uid: 3137 + components: + - type: Transform + pos: 79.5,33.5 + parent: 2 + - uid: 3138 + components: + - type: Transform + pos: 78.5,34.5 + parent: 2 + - uid: 3139 + components: + - type: Transform + pos: 77.5,34.5 + parent: 2 + - uid: 3140 + components: + - type: Transform + pos: 76.5,34.5 + parent: 2 + - uid: 3141 + components: + - type: Transform + pos: 75.5,34.5 + parent: 2 + - uid: 3142 + components: + - type: Transform + pos: 74.5,34.5 + parent: 2 + - uid: 3143 + components: + - type: Transform + pos: 73.5,34.5 + parent: 2 + - uid: 3144 + components: + - type: Transform + pos: 72.5,34.5 + parent: 2 + - uid: 3145 + components: + - type: Transform + pos: 71.5,34.5 + parent: 2 + - uid: 3146 + components: + - type: Transform + pos: 70.5,34.5 + parent: 2 + - uid: 3147 + components: + - type: Transform + pos: 69.5,34.5 + parent: 2 + - uid: 3148 + components: + - type: Transform + pos: 68.5,34.5 + parent: 2 + - uid: 3149 + components: + - type: Transform + pos: 67.5,34.5 + parent: 2 + - uid: 3150 + components: + - type: Transform + pos: 80.5,34.5 + parent: 2 + - uid: 3151 + components: + - type: Transform + pos: 81.5,34.5 + parent: 2 + - uid: 3152 + components: + - type: Transform + pos: 82.5,34.5 + parent: 2 + - uid: 3153 + components: + - type: Transform + pos: 83.5,34.5 + parent: 2 + - uid: 3154 + components: + - type: Transform + pos: 84.5,34.5 + parent: 2 + - uid: 3155 + components: + - type: Transform + pos: 85.5,34.5 + parent: 2 + - uid: 3156 + components: + - type: Transform + pos: 86.5,34.5 + parent: 2 + - uid: 3157 + components: + - type: Transform + pos: 87.5,34.5 + parent: 2 + - uid: 3158 + components: + - type: Transform + pos: 85.5,35.5 + parent: 2 + - uid: 3159 + components: + - type: Transform + pos: 85.5,36.5 + parent: 2 + - uid: 3160 + components: + - type: Transform + pos: 85.5,37.5 + parent: 2 + - uid: 3161 + components: + - type: Transform + pos: 85.5,38.5 + parent: 2 + - uid: 3162 + components: + - type: Transform + pos: 85.5,33.5 + parent: 2 + - uid: 3163 + components: + - type: Transform + pos: 85.5,32.5 + parent: 2 + - uid: 3164 + components: + - type: Transform + pos: 85.5,31.5 + parent: 2 + - uid: 3165 + components: + - type: Transform + pos: 85.5,30.5 + parent: 2 + - uid: 3166 + components: + - type: Transform + pos: 81.5,33.5 + parent: 2 + - uid: 3167 + components: + - type: Transform + pos: 81.5,32.5 + parent: 2 + - uid: 3168 + components: + - type: Transform + pos: 81.5,31.5 + parent: 2 + - uid: 3169 + components: + - type: Transform + pos: 81.5,30.5 + parent: 2 + - uid: 3170 + components: + - type: Transform + pos: 81.5,29.5 + parent: 2 + - uid: 3171 + components: + - type: Transform + pos: 81.5,35.5 + parent: 2 + - uid: 3172 + components: + - type: Transform + pos: 81.5,36.5 + parent: 2 + - uid: 3173 + components: + - type: Transform + pos: 81.5,37.5 + parent: 2 + - uid: 3174 + components: + - type: Transform + pos: 81.5,38.5 + parent: 2 + - uid: 3175 + components: + - type: Transform + pos: 81.5,39.5 + parent: 2 + - uid: 3176 + components: + - type: Transform + pos: 81.5,40.5 + parent: 2 + - uid: 3177 + components: + - type: Transform + pos: 79.5,24.5 + parent: 2 + - uid: 3178 + components: + - type: Transform + pos: 80.5,24.5 + parent: 2 + - uid: 3179 + components: + - type: Transform + pos: 81.5,24.5 + parent: 2 + - uid: 3180 + components: + - type: Transform + pos: 82.5,24.5 + parent: 2 + - uid: 3181 + components: + - type: Transform + pos: 83.5,24.5 + parent: 2 + - uid: 3182 + components: + - type: Transform + pos: 81.5,25.5 + parent: 2 + - uid: 3183 + components: + - type: Transform + pos: 81.5,26.5 + parent: 2 + - uid: 3184 + components: + - type: Transform + pos: 81.5,27.5 + parent: 2 + - uid: 3185 + components: + - type: Transform + pos: 81.5,22.5 + parent: 2 + - uid: 3186 + components: + - type: Transform + pos: 81.5,21.5 + parent: 2 + - uid: 3187 + components: + - type: Transform + pos: 81.5,20.5 + parent: 2 + - uid: 3188 + components: + - type: Transform + pos: 81.5,19.5 + parent: 2 + - uid: 3189 + components: + - type: Transform + pos: 80.5,19.5 + parent: 2 + - uid: 3190 + components: + - type: Transform + pos: 79.5,19.5 + parent: 2 + - uid: 3191 + components: + - type: Transform + pos: 78.5,19.5 + parent: 2 + - uid: 3192 + components: + - type: Transform + pos: 78.5,20.5 + parent: 2 + - uid: 3193 + components: + - type: Transform + pos: 77.5,20.5 + parent: 2 + - uid: 3194 + components: + - type: Transform + pos: 76.5,20.5 + parent: 2 + - uid: 3195 + components: + - type: Transform + pos: 75.5,20.5 + parent: 2 + - uid: 3196 + components: + - type: Transform + pos: 74.5,20.5 + parent: 2 + - uid: 3197 + components: + - type: Transform + pos: 74.5,19.5 + parent: 2 + - uid: 3198 + components: + - type: Transform + pos: 74.5,18.5 + parent: 2 + - uid: 3199 + components: + - type: Transform + pos: 74.5,17.5 + parent: 2 + - uid: 3200 + components: + - type: Transform + pos: 75.5,17.5 + parent: 2 + - uid: 3201 + components: + - type: Transform + pos: 75.5,16.5 + parent: 2 + - uid: 3202 + components: + - type: Transform + pos: 75.5,15.5 + parent: 2 + - uid: 3203 + components: + - type: Transform + pos: 75.5,14.5 + parent: 2 + - uid: 3204 + components: + - type: Transform + pos: 75.5,13.5 + parent: 2 + - uid: 3205 + components: + - type: Transform + pos: 76.5,16.5 + parent: 2 + - uid: 3206 + components: + - type: Transform + pos: 75.5,32.5 + parent: 2 + - uid: 3207 + components: + - type: Transform + pos: 75.5,31.5 + parent: 2 + - uid: 3208 + components: + - type: Transform + pos: 75.5,30.5 + parent: 2 + - uid: 3209 + components: + - type: Transform + pos: 75.5,29.5 + parent: 2 + - uid: 3210 + components: + - type: Transform + pos: 75.5,28.5 + parent: 2 + - uid: 3211 + components: + - type: Transform + pos: 76.5,30.5 + parent: 2 + - uid: 3212 + components: + - type: Transform + pos: 77.5,30.5 + parent: 2 + - uid: 3213 + components: + - type: Transform + pos: 78.5,30.5 + parent: 2 + - uid: 3214 + components: + - type: Transform + pos: 74.5,30.5 + parent: 2 + - uid: 3215 + components: + - type: Transform + pos: 73.5,30.5 + parent: 2 + - uid: 3216 + components: + - type: Transform + pos: 74.5,28.5 + parent: 2 + - uid: 3217 + components: + - type: Transform + pos: 74.5,27.5 + parent: 2 + - uid: 3218 + components: + - type: Transform + pos: 78.5,27.5 + parent: 2 + - uid: 3219 + components: + - type: Transform + pos: 78.5,26.5 + parent: 2 + - uid: 3220 + components: + - type: Transform + pos: 78.5,25.5 + parent: 2 + - uid: 3221 + components: + - type: Transform + pos: 74.5,24.5 + parent: 2 + - uid: 3222 + components: + - type: Transform + pos: 77.5,25.5 + parent: 2 + - uid: 3223 + components: + - type: Transform + pos: 76.5,25.5 + parent: 2 + - uid: 3224 + components: + - type: Transform + pos: 75.5,25.5 + parent: 2 + - uid: 3225 + components: + - type: Transform + pos: 74.5,25.5 + parent: 2 + - uid: 3226 + components: + - type: Transform + pos: 74.5,23.5 + parent: 2 + - uid: 3227 + components: + - type: Transform + pos: 69.5,30.5 + parent: 2 + - uid: 3228 + components: + - type: Transform + pos: 69.5,29.5 + parent: 2 + - uid: 3229 + components: + - type: Transform + pos: 69.5,28.5 + parent: 2 + - uid: 3230 + components: + - type: Transform + pos: 69.5,27.5 + parent: 2 + - uid: 3231 + components: + - type: Transform + pos: 69.5,26.5 + parent: 2 + - uid: 3232 + components: + - type: Transform + pos: 69.5,25.5 + parent: 2 + - uid: 3233 + components: + - type: Transform + pos: 69.5,24.5 + parent: 2 + - uid: 3234 + components: + - type: Transform + pos: 69.5,23.5 + parent: 2 + - uid: 3235 + components: + - type: Transform + pos: 70.5,24.5 + parent: 2 + - uid: 3238 + components: + - type: Transform + pos: 70.5,28.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + pos: 71.5,28.5 + parent: 2 + - uid: 3240 + components: + - type: Transform + pos: 69.5,31.5 + parent: 2 + - uid: 3241 + components: + - type: Transform + pos: 68.5,31.5 + parent: 2 + - uid: 3242 + components: + - type: Transform + pos: 70.5,31.5 + parent: 2 + - uid: 3243 + components: + - type: Transform + pos: 71.5,31.5 + parent: 2 + - uid: 3244 + components: + - type: Transform + pos: 72.5,31.5 + parent: 2 + - uid: 3245 + components: + - type: Transform + pos: 59.5,58.5 + parent: 2 + - uid: 3246 + components: + - type: Transform + pos: 59.5,57.5 + parent: 2 + - uid: 3247 + components: + - type: Transform + pos: 59.5,56.5 + parent: 2 + - uid: 3248 + components: + - type: Transform + pos: 60.5,57.5 + parent: 2 + - uid: 3249 + components: + - type: Transform + pos: 61.5,57.5 + parent: 2 + - uid: 3250 + components: + - type: Transform + pos: 62.5,57.5 + parent: 2 + - uid: 3251 + components: + - type: Transform + pos: 60.5,58.5 + parent: 2 + - uid: 3252 + components: + - type: Transform + pos: 60.5,59.5 + parent: 2 + - uid: 3253 + components: + - type: Transform + pos: 60.5,60.5 + parent: 2 + - uid: 3254 + components: + - type: Transform + pos: 60.5,61.5 + parent: 2 + - uid: 3255 + components: + - type: Transform + pos: 60.5,62.5 + parent: 2 + - uid: 3256 + components: + - type: Transform + pos: 61.5,60.5 + parent: 2 + - uid: 3257 + components: + - type: Transform + pos: 62.5,60.5 + parent: 2 + - uid: 3258 + components: + - type: Transform + pos: 63.5,60.5 + parent: 2 + - uid: 3259 + components: + - type: Transform + pos: 64.5,60.5 + parent: 2 + - uid: 3260 + components: + - type: Transform + pos: 65.5,60.5 + parent: 2 + - uid: 3261 + components: + - type: Transform + pos: 66.5,60.5 + parent: 2 + - uid: 3262 + components: + - type: Transform + pos: 67.5,60.5 + parent: 2 + - uid: 3263 + components: + - type: Transform + pos: 68.5,60.5 + parent: 2 + - uid: 3264 + components: + - type: Transform + pos: 69.5,60.5 + parent: 2 + - uid: 3265 + components: + - type: Transform + pos: 70.5,60.5 + parent: 2 + - uid: 3266 + components: + - type: Transform + pos: 65.5,59.5 + parent: 2 + - uid: 3267 + components: + - type: Transform + pos: 65.5,58.5 + parent: 2 + - uid: 3268 + components: + - type: Transform + pos: 65.5,57.5 + parent: 2 + - uid: 3269 + components: + - type: Transform + pos: 65.5,56.5 + parent: 2 + - uid: 3270 + components: + - type: Transform + pos: 65.5,55.5 + parent: 2 + - uid: 3271 + components: + - type: Transform + pos: 65.5,54.5 + parent: 2 + - uid: 3272 + components: + - type: Transform + pos: 65.5,53.5 + parent: 2 + - uid: 3273 + components: + - type: Transform + pos: 65.5,52.5 + parent: 2 + - uid: 3274 + components: + - type: Transform + pos: 69.5,56.5 + parent: 2 + - uid: 3275 + components: + - type: Transform + pos: 71.5,56.5 + parent: 2 + - uid: 3276 + components: + - type: Transform + pos: 70.5,54.5 + parent: 2 + - uid: 3277 + components: + - type: Transform + pos: 70.5,58.5 + parent: 2 + - uid: 3278 + components: + - type: Transform + pos: 65.5,61.5 + parent: 2 + - uid: 3279 + components: + - type: Transform + pos: 68.5,61.5 + parent: 2 + - uid: 3280 + components: + - type: Transform + pos: 65.5,45.5 + parent: 2 + - uid: 3281 + components: + - type: Transform + pos: 65.5,44.5 + parent: 2 + - uid: 3282 + components: + - type: Transform + pos: 65.5,43.5 + parent: 2 + - uid: 3283 + components: + - type: Transform + pos: 65.5,42.5 + parent: 2 + - uid: 3284 + components: + - type: Transform + pos: 65.5,41.5 + parent: 2 + - uid: 3285 + components: + - type: Transform + pos: 65.5,40.5 + parent: 2 + - uid: 3286 + components: + - type: Transform + pos: 65.5,39.5 + parent: 2 + - uid: 3287 + components: + - type: Transform + pos: 65.5,38.5 + parent: 2 + - uid: 3288 + components: + - type: Transform + pos: 65.5,37.5 + parent: 2 + - uid: 3289 + components: + - type: Transform + pos: 65.5,36.5 + parent: 2 + - uid: 3290 + components: + - type: Transform + pos: 67.5,56.5 + parent: 2 + - uid: 3291 + components: + - type: Transform + pos: 66.5,56.5 + parent: 2 + - uid: 3292 + components: + - type: Transform + pos: 65.5,46.5 + parent: 2 + - uid: 3293 + components: + - type: Transform + pos: 65.5,47.5 + parent: 2 + - uid: 3294 + components: + - type: Transform + pos: 65.5,48.5 + parent: 2 + - uid: 3295 + components: + - type: Transform + pos: 65.5,49.5 + parent: 2 + - uid: 3296 + components: + - type: Transform + pos: 65.5,50.5 + parent: 2 + - uid: 3297 + components: + - type: Transform + pos: 65.5,51.5 + parent: 2 + - uid: 3298 + components: + - type: Transform + pos: 68.5,56.5 + parent: 2 + - uid: 3299 + components: + - type: Transform + pos: 68.5,63.5 + parent: 2 + - uid: 3300 + components: + - type: Transform + pos: 68.5,64.5 + parent: 2 + - uid: 3301 + components: + - type: Transform + pos: 70.5,61.5 + parent: 2 + - uid: 3302 + components: + - type: Transform + pos: 70.5,62.5 + parent: 2 + - uid: 3303 + components: + - type: Transform + pos: 70.5,63.5 + parent: 2 + - uid: 3304 + components: + - type: Transform + pos: 70.5,64.5 + parent: 2 + - uid: 3305 + components: + - type: Transform + pos: 62.5,61.5 + parent: 2 + - uid: 3306 + components: + - type: Transform + pos: 62.5,62.5 + parent: 2 + - uid: 3307 + components: + - type: Transform + pos: 62.5,63.5 + parent: 2 + - uid: 3308 + components: + - type: Transform + pos: 62.5,64.5 + parent: 2 + - uid: 3309 + components: + - type: Transform + pos: 60.5,63.5 + parent: 2 + - uid: 3310 + components: + - type: Transform + pos: 60.5,64.5 + parent: 2 + - uid: 3311 + components: + - type: Transform + pos: 71.5,60.5 + parent: 2 + - uid: 3312 + components: + - type: Transform + pos: 72.5,60.5 + parent: 2 + - uid: 3313 + components: + - type: Transform + pos: 73.5,60.5 + parent: 2 + - uid: 3314 + components: + - type: Transform + pos: 74.5,60.5 + parent: 2 + - uid: 3315 + components: + - type: Transform + pos: 75.5,60.5 + parent: 2 + - uid: 3316 + components: + - type: Transform + pos: 76.5,60.5 + parent: 2 + - uid: 3317 + components: + - type: Transform + pos: 77.5,60.5 + parent: 2 + - uid: 3318 + components: + - type: Transform + pos: 78.5,60.5 + parent: 2 + - uid: 3319 + components: + - type: Transform + pos: 79.5,60.5 + parent: 2 + - uid: 3320 + components: + - type: Transform + pos: 80.5,60.5 + parent: 2 + - uid: 3321 + components: + - type: Transform + pos: 74.5,61.5 + parent: 2 + - uid: 3322 + components: + - type: Transform + pos: 74.5,59.5 + parent: 2 + - uid: 3323 + components: + - type: Transform + pos: 70.5,22.5 + parent: 2 + - uid: 3324 + components: + - type: Transform + pos: 70.5,21.5 + parent: 2 + - uid: 3325 + components: + - type: Transform + pos: 70.5,20.5 + parent: 2 + - uid: 3326 + components: + - type: Transform + pos: 70.5,19.5 + parent: 2 + - uid: 3327 + components: + - type: Transform + pos: 70.5,18.5 + parent: 2 + - uid: 3328 + components: + - type: Transform + pos: 70.5,17.5 + parent: 2 + - uid: 3329 + components: + - type: Transform + pos: 71.5,19.5 + parent: 2 + - uid: 3330 + components: + - type: Transform + pos: 72.5,19.5 + parent: 2 + - uid: 3331 + components: + - type: Transform + pos: 69.5,19.5 + parent: 2 + - uid: 3332 + components: + - type: Transform + pos: 68.5,19.5 + parent: 2 + - uid: 3333 + components: + - type: Transform + pos: 67.5,19.5 + parent: 2 + - uid: 3334 + components: + - type: Transform + pos: 66.5,19.5 + parent: 2 + - uid: 3335 + components: + - type: Transform + pos: 65.5,19.5 + parent: 2 + - uid: 3336 + components: + - type: Transform + pos: 64.5,19.5 + parent: 2 + - uid: 3337 + components: + - type: Transform + pos: 65.5,20.5 + parent: 2 + - uid: 3338 + components: + - type: Transform + pos: 65.5,21.5 + parent: 2 + - uid: 3339 + components: + - type: Transform + pos: 65.5,22.5 + parent: 2 + - uid: 3340 + components: + - type: Transform + pos: 65.5,23.5 + parent: 2 + - uid: 3341 + components: + - type: Transform + pos: 65.5,24.5 + parent: 2 + - uid: 3342 + components: + - type: Transform + pos: 65.5,25.5 + parent: 2 + - uid: 3343 + components: + - type: Transform + pos: 65.5,26.5 + parent: 2 + - uid: 3344 + components: + - type: Transform + pos: 65.5,27.5 + parent: 2 + - uid: 3345 + components: + - type: Transform + pos: 65.5,28.5 + parent: 2 + - uid: 3346 + components: + - type: Transform + pos: 65.5,29.5 + parent: 2 + - uid: 3347 + components: + - type: Transform + pos: 65.5,30.5 + parent: 2 + - uid: 3348 + components: + - type: Transform + pos: 65.5,31.5 + parent: 2 + - uid: 3349 + components: + - type: Transform + pos: 65.5,32.5 + parent: 2 + - uid: 3350 + components: + - type: Transform + pos: 65.5,18.5 + parent: 2 + - uid: 3351 + components: + - type: Transform + pos: 65.5,17.5 + parent: 2 + - uid: 3352 + components: + - type: Transform + pos: 65.5,16.5 + parent: 2 + - uid: 3353 + components: + - type: Transform + pos: 65.5,15.5 + parent: 2 + - uid: 3354 + components: + - type: Transform + pos: 65.5,14.5 + parent: 2 + - uid: 3355 + components: + - type: Transform + pos: 65.5,13.5 + parent: 2 + - uid: 3356 + components: + - type: Transform + pos: 64.5,15.5 + parent: 2 + - uid: 3357 + components: + - type: Transform + pos: 66.5,15.5 + parent: 2 + - uid: 3358 + components: + - type: Transform + pos: 67.5,15.5 + parent: 2 + - uid: 3359 + components: + - type: Transform + pos: 73.5,16.5 + parent: 2 + - uid: 3360 + components: + - type: Transform + pos: 73.5,15.5 + parent: 2 + - uid: 3361 + components: + - type: Transform + pos: 73.5,14.5 + parent: 2 + - uid: 3362 + components: + - type: Transform + pos: 73.5,13.5 + parent: 2 + - uid: 3363 + components: + - type: Transform + pos: 72.5,14.5 + parent: 2 + - uid: 3364 + components: + - type: Transform + pos: 71.5,14.5 + parent: 2 + - uid: 3365 + components: + - type: Transform + pos: 70.5,14.5 + parent: 2 + - uid: 3366 + components: + - type: Transform + pos: 69.5,14.5 + parent: 2 + - uid: 3367 + components: + - type: Transform + pos: 62.5,6.5 + parent: 2 + - uid: 3368 + components: + - type: Transform + pos: 63.5,6.5 + parent: 2 + - uid: 3369 + components: + - type: Transform + pos: 64.5,6.5 + parent: 2 + - uid: 3370 + components: + - type: Transform + pos: 65.5,6.5 + parent: 2 + - uid: 3371 + components: + - type: Transform + pos: 66.5,6.5 + parent: 2 + - uid: 3372 + components: + - type: Transform + pos: 67.5,6.5 + parent: 2 + - uid: 3373 + components: + - type: Transform + pos: 65.5,5.5 + parent: 2 + - uid: 3374 + components: + - type: Transform + pos: 65.5,4.5 + parent: 2 + - uid: 3375 + components: + - type: Transform + pos: 65.5,3.5 + parent: 2 + - uid: 3376 + components: + - type: Transform + pos: 65.5,2.5 + parent: 2 + - uid: 3377 + components: + - type: Transform + pos: 65.5,1.5 + parent: 2 + - uid: 3378 + components: + - type: Transform + pos: 65.5,0.5 + parent: 2 + - uid: 3379 + components: + - type: Transform + pos: 66.5,3.5 + parent: 2 + - uid: 3380 + components: + - type: Transform + pos: 67.5,3.5 + parent: 2 + - uid: 3381 + components: + - type: Transform + pos: 68.5,3.5 + parent: 2 + - uid: 3382 + components: + - type: Transform + pos: 69.5,3.5 + parent: 2 + - uid: 3383 + components: + - type: Transform + pos: 70.5,3.5 + parent: 2 + - uid: 3384 + components: + - type: Transform + pos: 71.5,3.5 + parent: 2 + - uid: 3385 + components: + - type: Transform + pos: 72.5,3.5 + parent: 2 + - uid: 3386 + components: + - type: Transform + pos: 73.5,3.5 + parent: 2 + - uid: 3387 + components: + - type: Transform + pos: 74.5,3.5 + parent: 2 + - uid: 3388 + components: + - type: Transform + pos: 75.5,3.5 + parent: 2 + - uid: 3389 + components: + - type: Transform + pos: 73.5,2.5 + parent: 2 + - uid: 3390 + components: + - type: Transform + pos: 73.5,1.5 + parent: 2 + - uid: 3391 + components: + - type: Transform + pos: 73.5,0.5 + parent: 2 + - uid: 3392 + components: + - type: Transform + pos: 73.5,-0.5 + parent: 2 + - uid: 3393 + components: + - type: Transform + pos: 73.5,-1.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + pos: 73.5,-2.5 + parent: 2 + - uid: 3395 + components: + - type: Transform + pos: 73.5,-3.5 + parent: 2 + - uid: 3396 + components: + - type: Transform + pos: 73.5,-4.5 + parent: 2 + - uid: 3397 + components: + - type: Transform + pos: 76.5,0.5 + parent: 2 + - uid: 3398 + components: + - type: Transform + pos: 77.5,0.5 + parent: 2 + - uid: 3399 + components: + - type: Transform + pos: 75.5,0.5 + parent: 2 + - uid: 3400 + components: + - type: Transform + pos: 74.5,0.5 + parent: 2 + - uid: 3401 + components: + - type: Transform + pos: 73.5,4.5 + parent: 2 + - uid: 3402 + components: + - type: Transform + pos: 73.5,5.5 + parent: 2 + - uid: 3403 + components: + - type: Transform + pos: 73.5,6.5 + parent: 2 + - uid: 3404 + components: + - type: Transform + pos: 73.5,7.5 + parent: 2 + - uid: 3405 + components: + - type: Transform + pos: 73.5,8.5 + parent: 2 + - uid: 3406 + components: + - type: Transform + pos: 74.5,7.5 + parent: 2 + - uid: 3407 + components: + - type: Transform + pos: 75.5,7.5 + parent: 2 + - uid: 3408 + components: + - type: Transform + pos: 76.5,7.5 + parent: 2 + - uid: 3409 + components: + - type: Transform + pos: 77.5,7.5 + parent: 2 + - uid: 3410 + components: + - type: Transform + pos: 75.5,4.5 + parent: 2 + - uid: 3411 + components: + - type: Transform + pos: 65.5,7.5 + parent: 2 + - uid: 3412 + components: + - type: Transform + pos: 65.5,8.5 + parent: 2 + - uid: 3413 + components: + - type: Transform + pos: 65.5,9.5 + parent: 2 + - uid: 3414 + components: + - type: Transform + pos: 65.5,10.5 + parent: 2 + - uid: 3415 + components: + - type: Transform + pos: 65.5,11.5 + parent: 2 + - uid: 3416 + components: + - type: Transform + pos: 64.5,10.5 + parent: 2 + - uid: 3417 + components: + - type: Transform + pos: 63.5,10.5 + parent: 2 + - uid: 3418 + components: + - type: Transform + pos: 62.5,10.5 + parent: 2 + - uid: 3419 + components: + - type: Transform + pos: 66.5,10.5 + parent: 2 + - uid: 3420 + components: + - type: Transform + pos: 67.5,10.5 + parent: 2 + - uid: 3421 + components: + - type: Transform + pos: 68.5,10.5 + parent: 2 + - uid: 3422 + components: + - type: Transform + pos: 69.5,10.5 + parent: 2 + - uid: 3423 + components: + - type: Transform + pos: 70.5,10.5 + parent: 2 + - uid: 3424 + components: + - type: Transform + pos: 71.5,10.5 + parent: 2 + - uid: 3425 + components: + - type: Transform + pos: 72.5,10.5 + parent: 2 + - uid: 3426 + components: + - type: Transform + pos: 73.5,10.5 + parent: 2 + - uid: 3427 + components: + - type: Transform + pos: 73.5,9.5 + parent: 2 + - uid: 3428 + components: + - type: Transform + pos: 19.5,24.5 + parent: 2 + - uid: 3429 + components: + - type: Transform + pos: 20.5,24.5 + parent: 2 + - uid: 3430 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 3431 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 + - uid: 3432 + components: + - type: Transform + pos: 23.5,24.5 + parent: 2 + - uid: 3433 + components: + - type: Transform + pos: 23.5,24.5 + parent: 2 + - uid: 3434 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - uid: 3435 + components: + - type: Transform + pos: 22.5,26.5 + parent: 2 + - uid: 3436 + components: + - type: Transform + pos: 22.5,27.5 + parent: 2 + - uid: 3437 + components: + - type: Transform + pos: 22.5,28.5 + parent: 2 + - uid: 3438 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 + - uid: 3439 + components: + - type: Transform + pos: 24.5,27.5 + parent: 2 + - uid: 3440 + components: + - type: Transform + pos: 25.5,27.5 + parent: 2 + - uid: 3441 + components: + - type: Transform + pos: 26.5,27.5 + parent: 2 + - uid: 3442 + components: + - type: Transform + pos: 27.5,27.5 + parent: 2 + - uid: 3443 + components: + - type: Transform + pos: 28.5,27.5 + parent: 2 + - uid: 3444 + components: + - type: Transform + pos: 29.5,27.5 + parent: 2 + - uid: 3445 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 3446 + components: + - type: Transform + pos: 27.5,25.5 + parent: 2 + - uid: 3447 + components: + - type: Transform + pos: 27.5,24.5 + parent: 2 + - uid: 3448 + components: + - type: Transform + pos: 27.5,23.5 + parent: 2 + - uid: 3449 + components: + - type: Transform + pos: 27.5,28.5 + parent: 2 + - uid: 3450 + components: + - type: Transform + pos: 27.5,29.5 + parent: 2 + - uid: 3451 + components: + - type: Transform + pos: -32.5,40.5 + parent: 2 + - uid: 3452 + components: + - type: Transform + pos: -32.5,39.5 + parent: 2 + - uid: 3453 + components: + - type: Transform + pos: -32.5,38.5 + parent: 2 + - uid: 3454 + components: + - type: Transform + pos: -32.5,37.5 + parent: 2 + - uid: 3455 + components: + - type: Transform + pos: -32.5,36.5 + parent: 2 + - uid: 3456 + components: + - type: Transform + pos: -32.5,35.5 + parent: 2 + - uid: 3457 + components: + - type: Transform + pos: -32.5,34.5 + parent: 2 + - uid: 3458 + components: + - type: Transform + pos: -31.5,37.5 + parent: 2 + - uid: 3459 + components: + - type: Transform + pos: -30.5,37.5 + parent: 2 + - uid: 3460 + components: + - type: Transform + pos: -32.5,34.5 + parent: 2 + - uid: 3461 + components: + - type: Transform + pos: -31.5,34.5 + parent: 2 + - uid: 3462 + components: + - type: Transform + pos: -31.5,33.5 + parent: 2 + - uid: 3463 + components: + - type: Transform + pos: -31.5,32.5 + parent: 2 + - uid: 3464 + components: + - type: Transform + pos: -31.5,31.5 + parent: 2 + - uid: 3465 + components: + - type: Transform + pos: -31.5,30.5 + parent: 2 + - uid: 3466 + components: + - type: Transform + pos: -31.5,29.5 + parent: 2 + - uid: 3467 + components: + - type: Transform + pos: -33.5,34.5 + parent: 2 + - uid: 3468 + components: + - type: Transform + pos: -34.5,34.5 + parent: 2 + - uid: 3469 + components: + - type: Transform + pos: -35.5,34.5 + parent: 2 + - uid: 3470 + components: + - type: Transform + pos: -36.5,34.5 + parent: 2 + - uid: 3471 + components: + - type: Transform + pos: -33.5,37.5 + parent: 2 + - uid: 3472 + components: + - type: Transform + pos: -34.5,37.5 + parent: 2 + - uid: 3473 + components: + - type: Transform + pos: -35.5,37.5 + parent: 2 + - uid: 3474 + components: + - type: Transform + pos: -36.5,37.5 + parent: 2 + - uid: 3475 + components: + - type: Transform + pos: -31.5,39.5 + parent: 2 + - uid: 3476 + components: + - type: Transform + pos: -30.5,39.5 + parent: 2 + - uid: 3477 + components: + - type: Transform + pos: -33.5,39.5 + parent: 2 + - uid: 3478 + components: + - type: Transform + pos: -34.5,39.5 + parent: 2 + - uid: 3479 + components: + - type: Transform + pos: -35.5,39.5 + parent: 2 + - uid: 3480 + components: + - type: Transform + pos: -36.5,39.5 + parent: 2 + - uid: 3481 + components: + - type: Transform + pos: -37.5,34.5 + parent: 2 + - uid: 3482 + components: + - type: Transform + pos: -37.5,35.5 + parent: 2 + - uid: 3483 + components: + - type: Transform + pos: -37.5,36.5 + parent: 2 + - uid: 3484 + components: + - type: Transform + pos: -37.5,37.5 + parent: 2 + - uid: 3485 + components: + - type: Transform + pos: -37.5,38.5 + parent: 2 + - uid: 3486 + components: + - type: Transform + pos: -37.5,39.5 + parent: 2 + - uid: 3487 + components: + - type: Transform + pos: -30.5,7.5 + parent: 2 + - uid: 3488 + components: + - type: Transform + pos: -30.5,8.5 + parent: 2 + - uid: 3489 + components: + - type: Transform + pos: -30.5,9.5 + parent: 2 + - uid: 3490 + components: + - type: Transform + pos: -30.5,10.5 + parent: 2 + - uid: 3491 + components: + - type: Transform + pos: -30.5,11.5 + parent: 2 + - uid: 3492 + components: + - type: Transform + pos: -30.5,12.5 + parent: 2 + - uid: 3493 + components: + - type: Transform + pos: -30.5,13.5 + parent: 2 + - uid: 3494 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 + - uid: 3495 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 + - uid: 3496 + components: + - type: Transform + pos: -30.5,16.5 + parent: 2 + - uid: 3497 + components: + - type: Transform + pos: -30.5,17.5 + parent: 2 + - uid: 3498 + components: + - type: Transform + pos: -30.5,18.5 + parent: 2 + - uid: 3499 + components: + - type: Transform + pos: -29.5,14.5 + parent: 2 + - uid: 3500 + components: + - type: Transform + pos: -28.5,14.5 + parent: 2 + - uid: 3501 + components: + - type: Transform + pos: -27.5,14.5 + parent: 2 + - uid: 3502 + components: + - type: Transform + pos: -26.5,14.5 + parent: 2 + - uid: 3503 + components: + - type: Transform + pos: -25.5,14.5 + parent: 2 + - uid: 3504 + components: + - type: Transform + pos: -29.5,10.5 + parent: 2 + - uid: 3505 + components: + - type: Transform + pos: -28.5,10.5 + parent: 2 + - uid: 3506 + components: + - type: Transform + pos: -27.5,10.5 + parent: 2 + - uid: 3507 + components: + - type: Transform + pos: -31.5,10.5 + parent: 2 + - uid: 3508 + components: + - type: Transform + pos: -32.5,10.5 + parent: 2 + - uid: 3509 + components: + - type: Transform + pos: -33.5,10.5 + parent: 2 + - uid: 3510 + components: + - type: Transform + pos: -31.5,14.5 + parent: 2 + - uid: 3511 + components: + - type: Transform + pos: -32.5,14.5 + parent: 2 + - uid: 3512 + components: + - type: Transform + pos: -33.5,14.5 + parent: 2 + - uid: 3513 + components: + - type: Transform + pos: 7.5,80.5 + parent: 2 + - uid: 3514 + components: + - type: Transform + pos: 8.5,80.5 + parent: 2 + - uid: 3515 + components: + - type: Transform + pos: 9.5,80.5 + parent: 2 + - uid: 3516 + components: + - type: Transform + pos: -15.5,38.5 + parent: 2 + - uid: 3517 + components: + - type: Transform + pos: -14.5,36.5 + parent: 2 + - uid: 3518 + components: + - type: Transform + pos: -16.5,38.5 + parent: 2 + - uid: 3519 + components: + - type: Transform + pos: -14.5,37.5 + parent: 2 + - uid: 3520 + components: + - type: Transform + pos: -14.5,34.5 + parent: 2 + - uid: 3521 + components: + - type: Transform + pos: -14.5,35.5 + parent: 2 + - uid: 3522 + components: + - type: Transform + pos: -14.5,33.5 + parent: 2 + - uid: 3523 + components: + - type: Transform + pos: -14.5,32.5 + parent: 2 + - uid: 3524 + components: + - type: Transform + pos: -15.5,38.5 + parent: 2 + - uid: 3525 + components: + - type: Transform + pos: -14.5,31.5 + parent: 2 + - uid: 3526 + components: + - type: Transform + pos: -14.5,30.5 + parent: 2 + - uid: 3527 + components: + - type: Transform + pos: -14.5,30.5 + parent: 2 + - uid: 3528 + components: + - type: Transform + pos: -14.5,30.5 + parent: 2 + - uid: 3529 + components: + - type: Transform + pos: -15.5,30.5 + parent: 2 + - uid: 3530 + components: + - type: Transform + pos: -16.5,30.5 + parent: 2 + - uid: 3531 + components: + - type: Transform + pos: -16.5,30.5 + parent: 2 + - uid: 3532 + components: + - type: Transform + pos: -13.5,30.5 + parent: 2 + - uid: 3533 + components: + - type: Transform + pos: -13.5,30.5 + parent: 2 + - uid: 3534 + components: + - type: Transform + pos: -15.5,34.5 + parent: 2 + - uid: 3535 + components: + - type: Transform + pos: -16.5,34.5 + parent: 2 + - uid: 3536 + components: + - type: Transform + pos: -17.5,34.5 + parent: 2 + - uid: 3537 + components: + - type: Transform + pos: -18.5,34.5 + parent: 2 + - uid: 3538 + components: + - type: Transform + pos: -19.5,34.5 + parent: 2 + - uid: 3539 + components: + - type: Transform + pos: -20.5,34.5 + parent: 2 + - uid: 3540 + components: + - type: Transform + pos: -21.5,34.5 + parent: 2 + - uid: 3541 + components: + - type: Transform + pos: -22.5,34.5 + parent: 2 + - uid: 3542 + components: + - type: Transform + pos: -23.5,34.5 + parent: 2 + - uid: 3543 + components: + - type: Transform + pos: -24.5,34.5 + parent: 2 + - uid: 3544 + components: + - type: Transform + pos: -25.5,34.5 + parent: 2 + - uid: 3545 + components: + - type: Transform + pos: -26.5,34.5 + parent: 2 + - uid: 3546 + components: + - type: Transform + pos: -26.5,35.5 + parent: 2 + - uid: 3547 + components: + - type: Transform + pos: -26.5,36.5 + parent: 2 + - uid: 3548 + components: + - type: Transform + pos: -26.5,37.5 + parent: 2 + - uid: 3549 + components: + - type: Transform + pos: -26.5,38.5 + parent: 2 + - uid: 3550 + components: + - type: Transform + pos: -26.5,39.5 + parent: 2 + - uid: 3551 + components: + - type: Transform + pos: -26.5,40.5 + parent: 2 + - uid: 3552 + components: + - type: Transform + pos: -26.5,41.5 + parent: 2 + - uid: 3553 + components: + - type: Transform + pos: -26.5,41.5 + parent: 2 + - uid: 3554 + components: + - type: Transform + pos: -25.5,41.5 + parent: 2 + - uid: 3555 + components: + - type: Transform + pos: -24.5,41.5 + parent: 2 + - uid: 3556 + components: + - type: Transform + pos: -23.5,41.5 + parent: 2 + - uid: 3557 + components: + - type: Transform + pos: -22.5,41.5 + parent: 2 + - uid: 3558 + components: + - type: Transform + pos: -21.5,41.5 + parent: 2 + - uid: 3559 + components: + - type: Transform + pos: -20.5,41.5 + parent: 2 + - uid: 3560 + components: + - type: Transform + pos: -19.5,41.5 + parent: 2 + - uid: 3561 + components: + - type: Transform + pos: -18.5,41.5 + parent: 2 + - uid: 3562 + components: + - type: Transform + pos: -17.5,41.5 + parent: 2 + - uid: 3563 + components: + - type: Transform + pos: -16.5,41.5 + parent: 2 + - uid: 3564 + components: + - type: Transform + pos: -15.5,41.5 + parent: 2 + - uid: 3565 + components: + - type: Transform + pos: -14.5,41.5 + parent: 2 + - uid: 3566 + components: + - type: Transform + pos: -13.5,41.5 + parent: 2 + - uid: 3567 + components: + - type: Transform + pos: -14.5,40.5 + parent: 2 + - uid: 3568 + components: + - type: Transform + pos: -14.5,39.5 + parent: 2 + - uid: 3569 + components: + - type: Transform + pos: -25.5,38.5 + parent: 2 + - uid: 3570 + components: + - type: Transform + pos: -24.5,38.5 + parent: 2 + - uid: 3571 + components: + - type: Transform + pos: -23.5,38.5 + parent: 2 + - uid: 3572 + components: + - type: Transform + pos: -22.5,38.5 + parent: 2 + - uid: 3573 + components: + - type: Transform + pos: -26.5,33.5 + parent: 2 + - uid: 3574 + components: + - type: Transform + pos: -26.5,32.5 + parent: 2 + - uid: 3575 + components: + - type: Transform + pos: -26.5,31.5 + parent: 2 + - uid: 3576 + components: + - type: Transform + pos: -26.5,30.5 + parent: 2 + - uid: 3577 + components: + - type: Transform + pos: -26.5,29.5 + parent: 2 + - uid: 3578 + components: + - type: Transform + pos: -26.5,28.5 + parent: 2 + - uid: 3579 + components: + - type: Transform + pos: -26.5,27.5 + parent: 2 + - uid: 3580 + components: + - type: Transform + pos: -26.5,27.5 + parent: 2 + - uid: 3581 + components: + - type: Transform + pos: -27.5,27.5 + parent: 2 + - uid: 3582 + components: + - type: Transform + pos: -27.5,27.5 + parent: 2 + - uid: 3583 + components: + - type: Transform + pos: -25.5,27.5 + parent: 2 + - uid: 3584 + components: + - type: Transform + pos: -24.5,27.5 + parent: 2 + - uid: 3585 + components: + - type: Transform + pos: -23.5,27.5 + parent: 2 + - uid: 3586 + components: + - type: Transform + pos: -22.5,27.5 + parent: 2 + - uid: 3587 + components: + - type: Transform + pos: -21.5,27.5 + parent: 2 + - uid: 3588 + components: + - type: Transform + pos: -20.5,27.5 + parent: 2 + - uid: 3589 + components: + - type: Transform + pos: -19.5,27.5 + parent: 2 + - uid: 3590 + components: + - type: Transform + pos: -18.5,27.5 + parent: 2 + - uid: 3591 + components: + - type: Transform + pos: -17.5,27.5 + parent: 2 + - uid: 3592 + components: + - type: Transform + pos: -16.5,27.5 + parent: 2 + - uid: 3593 + components: + - type: Transform + pos: -15.5,27.5 + parent: 2 + - uid: 3594 + components: + - type: Transform + pos: -14.5,27.5 + parent: 2 + - uid: 3595 + components: + - type: Transform + pos: -13.5,27.5 + parent: 2 + - uid: 3596 + components: + - type: Transform + pos: -24.5,26.5 + parent: 2 + - uid: 3597 + components: + - type: Transform + pos: -24.5,25.5 + parent: 2 + - uid: 3598 + components: + - type: Transform + pos: -23.5,25.5 + parent: 2 + - uid: 3599 + components: + - type: Transform + pos: -22.5,25.5 + parent: 2 + - uid: 3600 + components: + - type: Transform + pos: -21.5,25.5 + parent: 2 + - uid: 3601 + components: + - type: Transform + pos: -20.5,25.5 + parent: 2 + - uid: 3602 + components: + - type: Transform + pos: -19.5,25.5 + parent: 2 + - uid: 3603 + components: + - type: Transform + pos: -18.5,25.5 + parent: 2 + - uid: 3604 + components: + - type: Transform + pos: -17.5,25.5 + parent: 2 + - uid: 3605 + components: + - type: Transform + pos: -17.5,25.5 + parent: 2 + - uid: 3606 + components: + - type: Transform + pos: -17.5,26.5 + parent: 2 + - uid: 3607 + components: + - type: Transform + pos: -14.5,28.5 + parent: 2 + - uid: 3608 + components: + - type: Transform + pos: -14.5,29.5 + parent: 2 + - uid: 3609 + components: + - type: Transform + pos: -19.5,28.5 + parent: 2 + - uid: 3610 + components: + - type: Transform + pos: -19.5,29.5 + parent: 2 + - uid: 3611 + components: + - type: Transform + pos: -19.5,30.5 + parent: 2 + - uid: 3612 + components: + - type: Transform + pos: -19.5,31.5 + parent: 2 + - uid: 3613 + components: + - type: Transform + pos: -25.5,30.5 + parent: 2 + - uid: 3614 + components: + - type: Transform + pos: -24.5,30.5 + parent: 2 + - uid: 3615 + components: + - type: Transform + pos: -23.5,30.5 + parent: 2 + - uid: 3616 + components: + - type: Transform + pos: -22.5,30.5 + parent: 2 + - uid: 3617 + components: + - type: Transform + pos: -22.5,30.5 + parent: 2 + - uid: 3618 + components: + - type: Transform + pos: -22.5,30.5 + parent: 2 + - uid: 3619 + components: + - type: Transform + pos: -19.5,40.5 + parent: 2 + - uid: 3620 + components: + - type: Transform + pos: -19.5,39.5 + parent: 2 + - uid: 3621 + components: + - type: Transform + pos: -19.5,38.5 + parent: 2 + - uid: 3622 + components: + - type: Transform + pos: -19.5,37.5 + parent: 2 + - uid: 3623 + components: + - type: Transform + pos: -14.5,25.5 + parent: 2 + - uid: 3624 + components: + - type: Transform + pos: -14.5,24.5 + parent: 2 + - uid: 3625 + components: + - type: Transform + pos: -14.5,23.5 + parent: 2 + - uid: 3626 + components: + - type: Transform + pos: -14.5,22.5 + parent: 2 + - uid: 3627 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - uid: 3628 + components: + - type: Transform + pos: -12.5,24.5 + parent: 2 + - uid: 3629 + components: + - type: Transform + pos: -14.5,26.5 + parent: 2 + - uid: 3630 + components: + - type: Transform + pos: -14.5,1.5 + parent: 2 + - uid: 3631 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 + - uid: 3632 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 2 + - uid: 3633 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 + - uid: 3634 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 2 + - uid: 3635 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 2 + - uid: 3636 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - uid: 3637 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 + - uid: 3638 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 2 + - uid: 3639 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 + - uid: 3640 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - uid: 3641 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 3642 + components: + - type: Transform + pos: -15.5,2.5 + parent: 2 + - uid: 3643 + components: + - type: Transform + pos: -16.5,2.5 + parent: 2 + - uid: 3644 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 2 + - uid: 3645 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 2 + - uid: 3646 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - uid: 3647 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 3648 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - uid: 3649 + components: + - type: Transform + pos: -17.5,1.5 + parent: 2 + - uid: 3650 + components: + - type: Transform + pos: -17.5,2.5 + parent: 2 + - uid: 3651 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 2 + - uid: 3652 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - uid: 3653 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 2 + - uid: 3654 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 2 + - uid: 3655 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - uid: 3656 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 2 + - uid: 3657 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 2 + - uid: 3658 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 2 + - uid: 3659 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 2 + - uid: 3660 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 2 + - uid: 3661 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 2 + - uid: 3662 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 2 + - uid: 3663 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 2 + - uid: 3664 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 2 + - uid: 3665 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 2 + - uid: 3666 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 + - uid: 3667 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 2 + - uid: 3668 + components: + - type: Transform + pos: -6.5,18.5 + parent: 2 + - uid: 3669 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 3670 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 2 + - uid: 3671 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - uid: 3672 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 2 + - uid: 3673 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 2 + - uid: 3674 + components: + - type: Transform + pos: 26.5,-8.5 + parent: 2 + - uid: 3675 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 2 + - uid: 3676 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 2 + - uid: 3677 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 2 + - uid: 3678 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 2 + - uid: 3679 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 2 + - uid: 3680 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 3681 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 3682 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 2 + - uid: 3683 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 + - uid: 3684 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 + - uid: 3685 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 2 + - uid: 3686 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 2 + - uid: 3687 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 3688 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 3689 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 2 + - uid: 3690 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 3691 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 2 + - uid: 3692 + components: + - type: Transform + pos: 29.5,-12.5 + parent: 2 + - uid: 3693 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - uid: 3694 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - uid: 3695 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 2 + - uid: 3696 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 2 + - uid: 3697 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 2 + - uid: 3698 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 + - uid: 3699 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 2 + - uid: 3700 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 2 + - uid: 3701 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 2 + - uid: 3702 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 2 + - uid: 3703 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - uid: 3704 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 2 + - uid: 3705 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 2 + - uid: 3706 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 2 + - uid: 3707 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 2 + - uid: 3708 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 2 + - uid: 3709 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 2 + - uid: 3710 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 + - uid: 3711 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - uid: 3712 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 3713 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 2 + - uid: 3714 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 2 + - uid: 3715 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 2 + - uid: 3716 + components: + - type: Transform + pos: 40.5,-7.5 + parent: 2 + - uid: 3717 + components: + - type: Transform + pos: 40.5,-8.5 + parent: 2 + - uid: 3718 + components: + - type: Transform + pos: 40.5,-9.5 + parent: 2 + - uid: 3719 + components: + - type: Transform + pos: 40.5,-10.5 + parent: 2 + - uid: 3720 + components: + - type: Transform + pos: 40.5,-11.5 + parent: 2 + - uid: 3721 + components: + - type: Transform + pos: 40.5,-12.5 + parent: 2 + - uid: 3722 + components: + - type: Transform + pos: 40.5,-13.5 + parent: 2 + - uid: 3723 + components: + - type: Transform + pos: 40.5,-14.5 + parent: 2 + - uid: 3724 + components: + - type: Transform + pos: 40.5,-15.5 + parent: 2 + - uid: 3725 + components: + - type: Transform + pos: 39.5,-15.5 + parent: 2 + - uid: 3726 + components: + - type: Transform + pos: 39.5,-16.5 + parent: 2 + - uid: 3727 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 2 + - uid: 3728 + components: + - type: Transform + pos: 37.5,-16.5 + parent: 2 + - uid: 3729 + components: + - type: Transform + pos: 36.5,-16.5 + parent: 2 + - uid: 3730 + components: + - type: Transform + pos: 35.5,-16.5 + parent: 2 + - uid: 3731 + components: + - type: Transform + pos: 34.5,-16.5 + parent: 2 + - uid: 3732 + components: + - type: Transform + pos: 33.5,-16.5 + parent: 2 + - uid: 3733 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 2 + - uid: 3734 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 2 + - uid: 3735 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 2 + - uid: 3736 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 2 + - uid: 3737 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 2 + - uid: 3738 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 2 + - uid: 3739 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 2 + - uid: 3740 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 2 + - uid: 3741 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 2 + - uid: 3742 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 2 + - uid: 3743 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 2 + - uid: 3744 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 2 + - uid: 3745 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 2 + - uid: 3746 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 2 + - uid: 3747 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 2 + - uid: 3748 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 2 + - uid: 3749 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 2 + - uid: 3750 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 + - uid: 3751 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 2 + - uid: 3752 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 + - uid: 3753 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 2 + - uid: 3754 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 2 + - uid: 3755 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 3756 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 + - uid: 3757 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 3758 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 + - uid: 3759 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 3760 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 2 + - uid: 3761 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 2 + - uid: 3762 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 2 + - uid: 3763 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - uid: 3764 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 + - uid: 3765 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 3766 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - uid: 3767 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 2 + - uid: 3768 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 + - uid: 3769 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 2 + - uid: 3770 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 2 + - uid: 13018 + components: + - type: Transform + pos: 73.5,24.5 + parent: 2 + - uid: 13758 + components: + - type: Transform + pos: 72.5,24.5 + parent: 2 + - uid: 18794 + components: + - type: Transform + pos: 77.5,47.5 + parent: 2 + - uid: 18795 + components: + - type: Transform + pos: 76.5,47.5 + parent: 2 + - uid: 18796 + components: + - type: Transform + pos: 75.5,47.5 + parent: 2 + - uid: 18797 + components: + - type: Transform + pos: 74.5,47.5 + parent: 2 + - uid: 18798 + components: + - type: Transform + pos: 73.5,47.5 + parent: 2 + - uid: 18799 + components: + - type: Transform + pos: 75.5,48.5 + parent: 2 + - uid: 18800 + components: + - type: Transform + pos: 75.5,49.5 + parent: 2 + - uid: 18801 + components: + - type: Transform + pos: 75.5,50.5 + parent: 2 + - uid: 18802 + components: + - type: Transform + pos: 75.5,51.5 + parent: 2 + - uid: 18803 + components: + - type: Transform + pos: 75.5,52.5 + parent: 2 + - uid: 18804 + components: + - type: Transform + pos: 75.5,53.5 + parent: 2 + - uid: 18805 + components: + - type: Transform + pos: 74.5,53.5 + parent: 2 + - uid: 18806 + components: + - type: Transform + pos: 73.5,53.5 + parent: 2 + - uid: 18807 + components: + - type: Transform + pos: 73.5,54.5 + parent: 2 + - uid: 18808 + components: + - type: Transform + pos: 74.5,50.5 + parent: 2 + - uid: 18809 + components: + - type: Transform + pos: 73.5,50.5 + parent: 2 + - uid: 18810 + components: + - type: Transform + pos: 72.5,50.5 + parent: 2 + - uid: 18811 + components: + - type: Transform + pos: 71.5,50.5 + parent: 2 + - uid: 18812 + components: + - type: Transform + pos: 70.5,50.5 + parent: 2 + - uid: 18813 + components: + - type: Transform + pos: 69.5,50.5 + parent: 2 + - uid: 18814 + components: + - type: Transform + pos: 69.5,51.5 + parent: 2 + - uid: 18815 + components: + - type: Transform + pos: 69.5,49.5 + parent: 2 + - uid: 18816 + components: + - type: Transform + pos: 76.5,53.5 + parent: 2 + - uid: 18817 + components: + - type: Transform + pos: 77.5,53.5 + parent: 2 + - uid: 18818 + components: + - type: Transform + pos: 78.5,53.5 + parent: 2 + - uid: 18819 + components: + - type: Transform + pos: 79.5,53.5 + parent: 2 + - uid: 18820 + components: + - type: Transform + pos: 79.5,52.5 + parent: 2 + - uid: 18821 + components: + - type: Transform + pos: 79.5,51.5 + parent: 2 + - uid: 18822 + components: + - type: Transform + pos: 79.5,50.5 + parent: 2 + - uid: 18823 + components: + - type: Transform + pos: 79.5,49.5 + parent: 2 + - uid: 18824 + components: + - type: Transform + pos: 78.5,54.5 + parent: 2 + - uid: 18825 + components: + - type: Transform + pos: 78.5,55.5 + parent: 2 + - uid: 18826 + components: + - type: Transform + pos: 78.5,56.5 + parent: 2 + - uid: 18827 + components: + - type: Transform + pos: 78.5,57.5 + parent: 2 + - uid: 18828 + components: + - type: Transform + pos: 77.5,56.5 + parent: 2 + - uid: 18829 + components: + - type: Transform + pos: 79.5,56.5 + parent: 2 + - uid: 18830 + components: + - type: Transform + pos: 76.5,56.5 + parent: 2 + - uid: 18831 + components: + - type: Transform + pos: 75.5,56.5 + parent: 2 + - uid: 18832 + components: + - type: Transform + pos: 75.5,55.5 + parent: 2 + - uid: 18833 + components: + - type: Transform + pos: 75.5,54.5 + parent: 2 + - uid: 18834 + components: + - type: Transform + pos: 75.5,57.5 + parent: 2 + - uid: 19431 + components: + - type: Transform + pos: -36.5,69.5 + parent: 2 + - uid: 19442 + components: + - type: Transform + pos: -36.5,70.5 + parent: 2 + - uid: 19443 + components: + - type: Transform + pos: -36.5,71.5 + parent: 2 + - uid: 19444 + components: + - type: Transform + pos: -35.5,71.5 + parent: 2 + - uid: 19445 + components: + - type: Transform + pos: -35.5,72.5 + parent: 2 + - uid: 19446 + components: + - type: Transform + pos: -35.5,73.5 + parent: 2 + - uid: 19447 + components: + - type: Transform + pos: -35.5,74.5 + parent: 2 + - uid: 19448 + components: + - type: Transform + pos: -35.5,75.5 + parent: 2 + - uid: 19449 + components: + - type: Transform + pos: -35.5,76.5 + parent: 2 + - uid: 19450 + components: + - type: Transform + pos: -34.5,76.5 + parent: 2 + - uid: 19451 + components: + - type: Transform + pos: -34.5,77.5 + parent: 2 + - uid: 19452 + components: + - type: Transform + pos: -33.5,77.5 + parent: 2 + - uid: 19453 + components: + - type: Transform + pos: -33.5,78.5 + parent: 2 + - uid: 19454 + components: + - type: Transform + pos: -32.5,78.5 + parent: 2 + - uid: 19455 + components: + - type: Transform + pos: -31.5,78.5 + parent: 2 + - uid: 19456 + components: + - type: Transform + pos: -30.5,78.5 + parent: 2 + - uid: 19457 + components: + - type: Transform + pos: -29.5,78.5 + parent: 2 + - uid: 19458 + components: + - type: Transform + pos: -29.5,77.5 + parent: 2 + - uid: 19459 + components: + - type: Transform + pos: -28.5,77.5 + parent: 2 + - uid: 19460 + components: + - type: Transform + pos: -28.5,76.5 + parent: 2 + - uid: 19461 + components: + - type: Transform + pos: -27.5,76.5 + parent: 2 + - uid: 19462 + components: + - type: Transform + pos: -27.5,75.5 + parent: 2 + - uid: 19463 + components: + - type: Transform + pos: -26.5,75.5 + parent: 2 + - uid: 19464 + components: + - type: Transform + pos: -25.5,75.5 + parent: 2 + - uid: 19465 + components: + - type: Transform + pos: -25.5,74.5 + parent: 2 + - uid: 19467 + components: + - type: Transform + pos: -24.5,74.5 + parent: 2 + - uid: 19468 + components: + - type: Transform + pos: -23.5,74.5 + parent: 2 + - uid: 19469 + components: + - type: Transform + pos: -22.5,74.5 + parent: 2 + - uid: 19470 + components: + - type: Transform + pos: -21.5,74.5 + parent: 2 +- proto: CableApcStack + entities: + - uid: 3771 + components: + - type: Transform + pos: -7.469557,28.649622 + parent: 2 + - uid: 3772 + components: + - type: Transform + pos: 48.691536,31.712133 + parent: 2 + - uid: 3773 + components: + - type: Transform + pos: 48.601868,31.479158 + parent: 2 + - uid: 3774 + components: + - type: Transform + pos: 60.434174,28.366611 + parent: 2 + - uid: 3775 + components: + - type: Transform + pos: 60.77491,28.599586 + parent: 2 +- proto: CableApcStack1 + entities: + - uid: 3776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.308266,50.298573 + parent: 2 + - uid: 3777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.79256,50.782536 + parent: 2 + - uid: 3778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.2451,53.87569 + parent: 2 +- proto: Cablecuffs + entities: + - uid: 3779 + components: + - type: Transform + pos: -26.328623,55.189487 + parent: 2 + - uid: 3780 + components: + - type: Transform + pos: -26.515789,55.32977 + parent: 2 +- proto: CableHV + entities: + - uid: 3781 + components: + - type: Transform + pos: -3.5,17.5 + parent: 2 + - uid: 3782 + components: + - type: Transform + pos: -22.5,33.5 + parent: 2 + - uid: 3783 + components: + - type: Transform + pos: -25.5,26.5 + parent: 2 + - uid: 3784 + components: + - type: Transform + pos: -21.5,36.5 + parent: 2 + - uid: 3785 + components: + - type: Transform + pos: -17.5,36.5 + parent: 2 + - uid: 3786 + components: + - type: Transform + pos: -19.5,36.5 + parent: 2 + - uid: 3787 + components: + - type: Transform + pos: -20.5,31.5 + parent: 2 + - uid: 3788 + components: + - type: Transform + pos: -20.5,32.5 + parent: 2 + - uid: 3789 + components: + - type: Transform + pos: -24.5,24.5 + parent: 2 + - uid: 3790 + components: + - type: Transform + pos: -25.5,24.5 + parent: 2 + - uid: 3791 + components: + - type: Transform + pos: -25.5,24.5 + parent: 2 + - uid: 3792 + components: + - type: Transform + pos: -25.5,25.5 + parent: 2 + - uid: 3793 + components: + - type: Transform + pos: -26.5,26.5 + parent: 2 + - uid: 3794 + components: + - type: Transform + pos: -27.5,26.5 + parent: 2 + - uid: 3795 + components: + - type: Transform + pos: -22.5,-0.5 + parent: 2 + - uid: 3796 + components: + - type: Transform + pos: -22.5,1.5 + parent: 2 + - uid: 3797 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 + - uid: 3798 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 2 + - uid: 3799 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 2 + - uid: 3800 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 2 + - uid: 3801 + components: + - type: Transform + pos: -28.5,26.5 + parent: 2 + - uid: 3802 + components: + - type: Transform + pos: -29.5,26.5 + parent: 2 + - uid: 3803 + components: + - type: Transform + pos: -31.5,27.5 + parent: 2 + - uid: 3804 + components: + - type: Transform + pos: 45.5,-20.5 + parent: 2 + - uid: 3805 + components: + - type: Transform + pos: 46.5,-20.5 + parent: 2 + - uid: 3806 + components: + - type: Transform + pos: 47.5,-20.5 + parent: 2 + - uid: 3807 + components: + - type: Transform + pos: 48.5,-20.5 + parent: 2 + - uid: 3808 + components: + - type: Transform + pos: 49.5,-20.5 + parent: 2 + - uid: 3809 + components: + - type: Transform + pos: 45.5,-22.5 + parent: 2 + - uid: 3810 + components: + - type: Transform + pos: 46.5,-22.5 + parent: 2 + - uid: 3811 + components: + - type: Transform + pos: 47.5,-22.5 + parent: 2 + - uid: 3812 + components: + - type: Transform + pos: 48.5,-22.5 + parent: 2 + - uid: 3813 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 3814 + components: + - type: Transform + pos: 49.5,-21.5 + parent: 2 + - uid: 3815 + components: + - type: Transform + pos: 45.5,-21.5 + parent: 2 + - uid: 3816 + components: + - type: Transform + pos: 50.5,-21.5 + parent: 2 + - uid: 3817 + components: + - type: Transform + pos: 52.5,-21.5 + parent: 2 + - uid: 3818 + components: + - type: Transform + pos: 53.5,-21.5 + parent: 2 + - uid: 3819 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 2 + - uid: 3820 + components: + - type: Transform + pos: 53.5,-22.5 + parent: 2 + - uid: 3821 + components: + - type: Transform + pos: 54.5,-20.5 + parent: 2 + - uid: 3822 + components: + - type: Transform + pos: 55.5,-20.5 + parent: 2 + - uid: 3823 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 + - uid: 3824 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 2 + - uid: 3825 + components: + - type: Transform + pos: 57.5,-22.5 + parent: 2 + - uid: 3826 + components: + - type: Transform + pos: 56.5,-22.5 + parent: 2 + - uid: 3827 + components: + - type: Transform + pos: 55.5,-22.5 + parent: 2 + - uid: 3828 + components: + - type: Transform + pos: 54.5,-22.5 + parent: 2 + - uid: 3829 + components: + - type: Transform + pos: 57.5,-21.5 + parent: 2 + - uid: 3830 + components: + - type: Transform + pos: 51.5,-24.5 + parent: 2 + - uid: 3831 + components: + - type: Transform + pos: 51.5,-23.5 + parent: 2 + - uid: 3832 + components: + - type: Transform + pos: 49.5,-18.5 + parent: 2 + - uid: 3833 + components: + - type: Transform + pos: 49.5,-17.5 + parent: 2 + - uid: 3834 + components: + - type: Transform + pos: 49.5,-16.5 + parent: 2 + - uid: 3835 + components: + - type: Transform + pos: 48.5,-16.5 + parent: 2 + - uid: 3836 + components: + - type: Transform + pos: 47.5,-16.5 + parent: 2 + - uid: 3837 + components: + - type: Transform + pos: 46.5,-16.5 + parent: 2 + - uid: 3838 + components: + - type: Transform + pos: 45.5,-16.5 + parent: 2 + - uid: 3839 + components: + - type: Transform + pos: 45.5,-17.5 + parent: 2 + - uid: 3840 + components: + - type: Transform + pos: 45.5,-18.5 + parent: 2 + - uid: 3841 + components: + - type: Transform + pos: 46.5,-18.5 + parent: 2 + - uid: 3842 + components: + - type: Transform + pos: 47.5,-18.5 + parent: 2 + - uid: 3843 + components: + - type: Transform + pos: 48.5,-18.5 + parent: 2 + - uid: 3844 + components: + - type: Transform + pos: 53.5,-18.5 + parent: 2 + - uid: 3845 + components: + - type: Transform + pos: 54.5,-18.5 + parent: 2 + - uid: 3846 + components: + - type: Transform + pos: 55.5,-18.5 + parent: 2 + - uid: 3847 + components: + - type: Transform + pos: 56.5,-18.5 + parent: 2 + - uid: 3848 + components: + - type: Transform + pos: 57.5,-18.5 + parent: 2 + - uid: 3849 + components: + - type: Transform + pos: 57.5,-17.5 + parent: 2 + - uid: 3850 + components: + - type: Transform + pos: 57.5,-16.5 + parent: 2 + - uid: 3851 + components: + - type: Transform + pos: 56.5,-16.5 + parent: 2 + - uid: 3852 + components: + - type: Transform + pos: 55.5,-16.5 + parent: 2 + - uid: 3853 + components: + - type: Transform + pos: 54.5,-16.5 + parent: 2 + - uid: 3854 + components: + - type: Transform + pos: 53.5,-16.5 + parent: 2 + - uid: 3855 + components: + - type: Transform + pos: 53.5,-17.5 + parent: 2 + - uid: 3856 + components: + - type: Transform + pos: 52.5,-17.5 + parent: 2 + - uid: 3857 + components: + - type: Transform + pos: 50.5,-17.5 + parent: 2 + - uid: 3858 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 2 + - uid: 3859 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 2 + - uid: 3860 + components: + - type: Transform + pos: 49.5,-12.5 + parent: 2 + - uid: 3861 + components: + - type: Transform + pos: 48.5,-12.5 + parent: 2 + - uid: 3862 + components: + - type: Transform + pos: 47.5,-12.5 + parent: 2 + - uid: 3863 + components: + - type: Transform + pos: 46.5,-12.5 + parent: 2 + - uid: 3864 + components: + - type: Transform + pos: 45.5,-12.5 + parent: 2 + - uid: 3865 + components: + - type: Transform + pos: 45.5,-13.5 + parent: 2 + - uid: 3866 + components: + - type: Transform + pos: 45.5,-14.5 + parent: 2 + - uid: 3867 + components: + - type: Transform + pos: 46.5,-14.5 + parent: 2 + - uid: 3868 + components: + - type: Transform + pos: 47.5,-14.5 + parent: 2 + - uid: 3869 + components: + - type: Transform + pos: 48.5,-14.5 + parent: 2 + - uid: 3870 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 2 + - uid: 3871 + components: + - type: Transform + pos: 52.5,-13.5 + parent: 2 + - uid: 3872 + components: + - type: Transform + pos: 53.5,-13.5 + parent: 2 + - uid: 3873 + components: + - type: Transform + pos: 53.5,-12.5 + parent: 2 + - uid: 3874 + components: + - type: Transform + pos: 54.5,-12.5 + parent: 2 + - uid: 3875 + components: + - type: Transform + pos: 55.5,-12.5 + parent: 2 + - uid: 3876 + components: + - type: Transform + pos: 56.5,-12.5 + parent: 2 + - uid: 3877 + components: + - type: Transform + pos: 57.5,-12.5 + parent: 2 + - uid: 3878 + components: + - type: Transform + pos: 57.5,-13.5 + parent: 2 + - uid: 3879 + components: + - type: Transform + pos: 57.5,-14.5 + parent: 2 + - uid: 3880 + components: + - type: Transform + pos: 56.5,-14.5 + parent: 2 + - uid: 3881 + components: + - type: Transform + pos: 55.5,-14.5 + parent: 2 + - uid: 3882 + components: + - type: Transform + pos: 54.5,-14.5 + parent: 2 + - uid: 3883 + components: + - type: Transform + pos: 53.5,-14.5 + parent: 2 + - uid: 3884 + components: + - type: Transform + pos: -26.5,-16.5 + parent: 2 + - uid: 3885 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 2 + - uid: 3886 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 2 + - uid: 3887 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 2 + - uid: 3888 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 2 + - uid: 3889 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 2 + - uid: 3890 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 + - uid: 3891 + components: + - type: Transform + pos: -30.5,-14.5 + parent: 2 + - uid: 3892 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 2 + - uid: 3893 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 3894 + components: + - type: Transform + pos: -27.5,-14.5 + parent: 2 + - uid: 3895 + components: + - type: Transform + pos: -26.5,-14.5 + parent: 2 + - uid: 3896 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 2 + - uid: 3897 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 2 + - uid: 3898 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - uid: 3899 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 2 + - uid: 3900 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 3901 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 2 + - uid: 3902 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 + - uid: 3903 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 + - uid: 3904 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 2 + - uid: 3905 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 2 + - uid: 3906 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 2 + - uid: 3907 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - uid: 3908 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 2 + - uid: 3909 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 + - uid: 3910 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 2 + - uid: 3911 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 2 + - uid: 3912 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 3913 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 3914 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 3915 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 3916 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 3917 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 2 + - uid: 3918 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 2 + - uid: 3919 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 2 + - uid: 3920 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - uid: 3921 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 3922 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 2 + - uid: 3923 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - uid: 3924 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 2 + - uid: 3925 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - uid: 3926 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 2 + - uid: 3927 + components: + - type: Transform + pos: 27.5,79.5 + parent: 2 + - uid: 3928 + components: + - type: Transform + pos: 28.5,79.5 + parent: 2 + - uid: 3929 + components: + - type: Transform + pos: 29.5,79.5 + parent: 2 + - uid: 3930 + components: + - type: Transform + pos: 30.5,79.5 + parent: 2 + - uid: 3931 + components: + - type: Transform + pos: 31.5,79.5 + parent: 2 + - uid: 3932 + components: + - type: Transform + pos: 31.5,78.5 + parent: 2 + - uid: 3933 + components: + - type: Transform + pos: 31.5,77.5 + parent: 2 + - uid: 3934 + components: + - type: Transform + pos: 30.5,77.5 + parent: 2 + - uid: 3935 + components: + - type: Transform + pos: 29.5,77.5 + parent: 2 + - uid: 3936 + components: + - type: Transform + pos: 28.5,77.5 + parent: 2 + - uid: 3937 + components: + - type: Transform + pos: 27.5,77.5 + parent: 2 + - uid: 3938 + components: + - type: Transform + pos: 27.5,78.5 + parent: 2 + - uid: 3939 + components: + - type: Transform + pos: 32.5,78.5 + parent: 2 + - uid: 3940 + components: + - type: Transform + pos: 33.5,81.5 + parent: 2 + - uid: 3941 + components: + - type: Transform + pos: 34.5,74.5 + parent: 2 + - uid: 3942 + components: + - type: Transform + pos: 35.5,79.5 + parent: 2 + - uid: 3943 + components: + - type: Transform + pos: 36.5,79.5 + parent: 2 + - uid: 3944 + components: + - type: Transform + pos: 37.5,79.5 + parent: 2 + - uid: 3945 + components: + - type: Transform + pos: 38.5,79.5 + parent: 2 + - uid: 3946 + components: + - type: Transform + pos: 39.5,79.5 + parent: 2 + - uid: 3947 + components: + - type: Transform + pos: 39.5,77.5 + parent: 2 + - uid: 3948 + components: + - type: Transform + pos: 38.5,77.5 + parent: 2 + - uid: 3949 + components: + - type: Transform + pos: 37.5,77.5 + parent: 2 + - uid: 3950 + components: + - type: Transform + pos: 36.5,77.5 + parent: 2 + - uid: 3951 + components: + - type: Transform + pos: 35.5,77.5 + parent: 2 + - uid: 3952 + components: + - type: Transform + pos: 35.5,78.5 + parent: 2 + - uid: 3953 + components: + - type: Transform + pos: 39.5,78.5 + parent: 2 + - uid: 3954 + components: + - type: Transform + pos: 34.5,78.5 + parent: 2 + - uid: 3955 + components: + - type: Transform + pos: 35.5,74.5 + parent: 2 + - uid: 3956 + components: + - type: Transform + pos: 35.5,75.5 + parent: 2 + - uid: 3957 + components: + - type: Transform + pos: 36.5,75.5 + parent: 2 + - uid: 3958 + components: + - type: Transform + pos: 37.5,75.5 + parent: 2 + - uid: 3959 + components: + - type: Transform + pos: 38.5,75.5 + parent: 2 + - uid: 3960 + components: + - type: Transform + pos: 39.5,75.5 + parent: 2 + - uid: 3961 + components: + - type: Transform + pos: 39.5,74.5 + parent: 2 + - uid: 3962 + components: + - type: Transform + pos: 39.5,73.5 + parent: 2 + - uid: 3963 + components: + - type: Transform + pos: 38.5,73.5 + parent: 2 + - uid: 3964 + components: + - type: Transform + pos: 37.5,73.5 + parent: 2 + - uid: 3965 + components: + - type: Transform + pos: 36.5,73.5 + parent: 2 + - uid: 3966 + components: + - type: Transform + pos: 35.5,73.5 + parent: 2 + - uid: 3967 + components: + - type: Transform + pos: 34.5,70.5 + parent: 2 + - uid: 3968 + components: + - type: Transform + pos: 35.5,70.5 + parent: 2 + - uid: 3969 + components: + - type: Transform + pos: 35.5,71.5 + parent: 2 + - uid: 3970 + components: + - type: Transform + pos: 36.5,71.5 + parent: 2 + - uid: 3971 + components: + - type: Transform + pos: 37.5,71.5 + parent: 2 + - uid: 3972 + components: + - type: Transform + pos: 38.5,71.5 + parent: 2 + - uid: 3973 + components: + - type: Transform + pos: 39.5,71.5 + parent: 2 + - uid: 3974 + components: + - type: Transform + pos: 39.5,70.5 + parent: 2 + - uid: 3975 + components: + - type: Transform + pos: 39.5,69.5 + parent: 2 + - uid: 3976 + components: + - type: Transform + pos: 38.5,69.5 + parent: 2 + - uid: 3977 + components: + - type: Transform + pos: 37.5,69.5 + parent: 2 + - uid: 3978 + components: + - type: Transform + pos: 36.5,69.5 + parent: 2 + - uid: 3979 + components: + - type: Transform + pos: 35.5,69.5 + parent: 2 + - uid: 3980 + components: + - type: Transform + pos: 32.5,70.5 + parent: 2 + - uid: 3981 + components: + - type: Transform + pos: 31.5,70.5 + parent: 2 + - uid: 3982 + components: + - type: Transform + pos: 31.5,69.5 + parent: 2 + - uid: 3983 + components: + - type: Transform + pos: 30.5,69.5 + parent: 2 + - uid: 3984 + components: + - type: Transform + pos: 29.5,69.5 + parent: 2 + - uid: 3985 + components: + - type: Transform + pos: 28.5,69.5 + parent: 2 + - uid: 3986 + components: + - type: Transform + pos: 27.5,69.5 + parent: 2 + - uid: 3987 + components: + - type: Transform + pos: 27.5,70.5 + parent: 2 + - uid: 3988 + components: + - type: Transform + pos: 27.5,71.5 + parent: 2 + - uid: 3989 + components: + - type: Transform + pos: 28.5,71.5 + parent: 2 + - uid: 3990 + components: + - type: Transform + pos: 29.5,71.5 + parent: 2 + - uid: 3991 + components: + - type: Transform + pos: 30.5,71.5 + parent: 2 + - uid: 3992 + components: + - type: Transform + pos: 31.5,71.5 + parent: 2 + - uid: 3993 + components: + - type: Transform + pos: 31.5,73.5 + parent: 2 + - uid: 3994 + components: + - type: Transform + pos: 30.5,73.5 + parent: 2 + - uid: 3995 + components: + - type: Transform + pos: 29.5,73.5 + parent: 2 + - uid: 3996 + components: + - type: Transform + pos: 28.5,73.5 + parent: 2 + - uid: 3997 + components: + - type: Transform + pos: 27.5,73.5 + parent: 2 + - uid: 3998 + components: + - type: Transform + pos: 27.5,74.5 + parent: 2 + - uid: 3999 + components: + - type: Transform + pos: 27.5,75.5 + parent: 2 + - uid: 4000 + components: + - type: Transform + pos: 28.5,75.5 + parent: 2 + - uid: 4001 + components: + - type: Transform + pos: 29.5,75.5 + parent: 2 + - uid: 4002 + components: + - type: Transform + pos: 30.5,75.5 + parent: 2 + - uid: 4003 + components: + - type: Transform + pos: 31.5,75.5 + parent: 2 + - uid: 4004 + components: + - type: Transform + pos: 31.5,74.5 + parent: 2 + - uid: 4005 + components: + - type: Transform + pos: 32.5,74.5 + parent: 2 + - uid: 4006 + components: + - type: Transform + pos: 48.5,-10.5 + parent: 2 + - uid: 4007 + components: + - type: Transform + pos: 14.5,48.5 + parent: 2 + - uid: 4008 + components: + - type: Transform + pos: 16.5,48.5 + parent: 2 + - uid: 4009 + components: + - type: Transform + pos: 15.5,48.5 + parent: 2 + - uid: 4010 + components: + - type: Transform + pos: -11.5,33.5 + parent: 2 + - uid: 4011 + components: + - type: Transform + pos: -11.5,34.5 + parent: 2 + - uid: 4012 + components: + - type: Transform + pos: -11.5,35.5 + parent: 2 + - uid: 4013 + components: + - type: Transform + pos: -11.5,36.5 + parent: 2 + - uid: 4014 + components: + - type: Transform + pos: -12.5,36.5 + parent: 2 + - uid: 4015 + components: + - type: Transform + pos: -13.5,42.5 + parent: 2 + - uid: 4016 + components: + - type: Transform + pos: -13.5,43.5 + parent: 2 + - uid: 4017 + components: + - type: Transform + pos: -13.5,44.5 + parent: 2 + - uid: 4018 + components: + - type: Transform + pos: -14.5,44.5 + parent: 2 + - uid: 4019 + components: + - type: Transform + pos: -12.5,44.5 + parent: 2 + - uid: 4020 + components: + - type: Transform + pos: -12.5,45.5 + parent: 2 + - uid: 4021 + components: + - type: Transform + pos: -13.5,45.5 + parent: 2 + - uid: 4022 + components: + - type: Transform + pos: -14.5,45.5 + parent: 2 + - uid: 4023 + components: + - type: Transform + pos: -15.5,45.5 + parent: 2 + - uid: 4024 + components: + - type: Transform + pos: -16.5,45.5 + parent: 2 + - uid: 4025 + components: + - type: Transform + pos: -16.5,44.5 + parent: 2 + - uid: 4026 + components: + - type: Transform + pos: -16.5,43.5 + parent: 2 + - uid: 4027 + components: + - type: Transform + pos: -13.5,46.5 + parent: 2 + - uid: 4028 + components: + - type: Transform + pos: -13.5,47.5 + parent: 2 + - uid: 4029 + components: + - type: Transform + pos: -13.5,48.5 + parent: 2 + - uid: 4030 + components: + - type: Transform + pos: -12.5,48.5 + parent: 2 + - uid: 4031 + components: + - type: Transform + pos: -11.5,48.5 + parent: 2 + - uid: 4032 + components: + - type: Transform + pos: -10.5,48.5 + parent: 2 + - uid: 4033 + components: + - type: Transform + pos: -9.5,48.5 + parent: 2 + - uid: 4034 + components: + - type: Transform + pos: -8.5,48.5 + parent: 2 + - uid: 4035 + components: + - type: Transform + pos: -7.5,48.5 + parent: 2 + - uid: 4036 + components: + - type: Transform + pos: -6.5,48.5 + parent: 2 + - uid: 4037 + components: + - type: Transform + pos: -5.5,48.5 + parent: 2 + - uid: 4038 + components: + - type: Transform + pos: -4.5,48.5 + parent: 2 + - uid: 4039 + components: + - type: Transform + pos: -3.5,48.5 + parent: 2 + - uid: 4040 + components: + - type: Transform + pos: -2.5,48.5 + parent: 2 + - uid: 4041 + components: + - type: Transform + pos: -1.5,48.5 + parent: 2 + - uid: 4042 + components: + - type: Transform + pos: -0.5,48.5 + parent: 2 + - uid: 4043 + components: + - type: Transform + pos: 0.5,48.5 + parent: 2 + - uid: 4044 + components: + - type: Transform + pos: 1.5,48.5 + parent: 2 + - uid: 4045 + components: + - type: Transform + pos: 2.5,48.5 + parent: 2 + - uid: 4046 + components: + - type: Transform + pos: 3.5,48.5 + parent: 2 + - uid: 4047 + components: + - type: Transform + pos: 4.5,48.5 + parent: 2 + - uid: 4048 + components: + - type: Transform + pos: 5.5,48.5 + parent: 2 + - uid: 4049 + components: + - type: Transform + pos: 5.5,49.5 + parent: 2 + - uid: 4050 + components: + - type: Transform + pos: 5.5,50.5 + parent: 2 + - uid: 4051 + components: + - type: Transform + pos: 5.5,51.5 + parent: 2 + - uid: 4052 + components: + - type: Transform + pos: 5.5,52.5 + parent: 2 + - uid: 4053 + components: + - type: Transform + pos: 5.5,53.5 + parent: 2 + - uid: 4054 + components: + - type: Transform + pos: 5.5,54.5 + parent: 2 + - uid: 4055 + components: + - type: Transform + pos: 5.5,55.5 + parent: 2 + - uid: 4056 + components: + - type: Transform + pos: 5.5,56.5 + parent: 2 + - uid: 4057 + components: + - type: Transform + pos: 5.5,57.5 + parent: 2 + - uid: 4058 + components: + - type: Transform + pos: 5.5,58.5 + parent: 2 + - uid: 4059 + components: + - type: Transform + pos: 5.5,59.5 + parent: 2 + - uid: 4060 + components: + - type: Transform + pos: 5.5,60.5 + parent: 2 + - uid: 4061 + components: + - type: Transform + pos: 5.5,61.5 + parent: 2 + - uid: 4062 + components: + - type: Transform + pos: 5.5,62.5 + parent: 2 + - uid: 4063 + components: + - type: Transform + pos: 5.5,63.5 + parent: 2 + - uid: 4064 + components: + - type: Transform + pos: 4.5,63.5 + parent: 2 + - uid: 4065 + components: + - type: Transform + pos: 3.5,63.5 + parent: 2 + - uid: 4066 + components: + - type: Transform + pos: 2.5,63.5 + parent: 2 + - uid: 4067 + components: + - type: Transform + pos: 1.5,63.5 + parent: 2 + - uid: 4068 + components: + - type: Transform + pos: 0.5,63.5 + parent: 2 + - uid: 4069 + components: + - type: Transform + pos: -0.5,63.5 + parent: 2 + - uid: 4070 + components: + - type: Transform + pos: -1.5,63.5 + parent: 2 + - uid: 4071 + components: + - type: Transform + pos: -2.5,63.5 + parent: 2 + - uid: 4072 + components: + - type: Transform + pos: -3.5,63.5 + parent: 2 + - uid: 4073 + components: + - type: Transform + pos: -3.5,64.5 + parent: 2 + - uid: 4074 + components: + - type: Transform + pos: -3.5,65.5 + parent: 2 + - uid: 4075 + components: + - type: Transform + pos: -3.5,66.5 + parent: 2 + - uid: 4076 + components: + - type: Transform + pos: -3.5,67.5 + parent: 2 + - uid: 4077 + components: + - type: Transform + pos: -3.5,68.5 + parent: 2 + - uid: 4078 + components: + - type: Transform + pos: -2.5,68.5 + parent: 2 + - uid: 4079 + components: + - type: Transform + pos: 5.5,64.5 + parent: 2 + - uid: 4080 + components: + - type: Transform + pos: 6.5,64.5 + parent: 2 + - uid: 4081 + components: + - type: Transform + pos: 7.5,64.5 + parent: 2 + - uid: 4082 + components: + - type: Transform + pos: 8.5,64.5 + parent: 2 + - uid: 4083 + components: + - type: Transform + pos: 9.5,64.5 + parent: 2 + - uid: 4084 + components: + - type: Transform + pos: 10.5,64.5 + parent: 2 + - uid: 4085 + components: + - type: Transform + pos: 11.5,64.5 + parent: 2 + - uid: 4086 + components: + - type: Transform + pos: 12.5,64.5 + parent: 2 + - uid: 4087 + components: + - type: Transform + pos: 13.5,64.5 + parent: 2 + - uid: 4088 + components: + - type: Transform + pos: 13.5,65.5 + parent: 2 + - uid: 4089 + components: + - type: Transform + pos: 14.5,65.5 + parent: 2 + - uid: 4090 + components: + - type: Transform + pos: 15.5,65.5 + parent: 2 + - uid: 4091 + components: + - type: Transform + pos: 16.5,65.5 + parent: 2 + - uid: 4092 + components: + - type: Transform + pos: 17.5,65.5 + parent: 2 + - uid: 4093 + components: + - type: Transform + pos: 18.5,65.5 + parent: 2 + - uid: 4094 + components: + - type: Transform + pos: 19.5,65.5 + parent: 2 + - uid: 4095 + components: + - type: Transform + pos: 20.5,65.5 + parent: 2 + - uid: 4096 + components: + - type: Transform + pos: 21.5,65.5 + parent: 2 + - uid: 4097 + components: + - type: Transform + pos: 22.5,65.5 + parent: 2 + - uid: 4098 + components: + - type: Transform + pos: 23.5,65.5 + parent: 2 + - uid: 4099 + components: + - type: Transform + pos: 24.5,65.5 + parent: 2 + - uid: 4100 + components: + - type: Transform + pos: 24.5,64.5 + parent: 2 + - uid: 4101 + components: + - type: Transform + pos: 24.5,63.5 + parent: 2 + - uid: 4102 + components: + - type: Transform + pos: 24.5,62.5 + parent: 2 + - uid: 4103 + components: + - type: Transform + pos: 24.5,61.5 + parent: 2 + - uid: 4104 + components: + - type: Transform + pos: 24.5,60.5 + parent: 2 + - uid: 4105 + components: + - type: Transform + pos: 25.5,60.5 + parent: 2 + - uid: 4106 + components: + - type: Transform + pos: 26.5,60.5 + parent: 2 + - uid: 4107 + components: + - type: Transform + pos: 27.5,60.5 + parent: 2 + - uid: 4108 + components: + - type: Transform + pos: 28.5,60.5 + parent: 2 + - uid: 4109 + components: + - type: Transform + pos: 29.5,60.5 + parent: 2 + - uid: 4110 + components: + - type: Transform + pos: 30.5,60.5 + parent: 2 + - uid: 4111 + components: + - type: Transform + pos: 31.5,60.5 + parent: 2 + - uid: 4112 + components: + - type: Transform + pos: 31.5,61.5 + parent: 2 + - uid: 4113 + components: + - type: Transform + pos: 32.5,61.5 + parent: 2 + - uid: 4114 + components: + - type: Transform + pos: 33.5,61.5 + parent: 2 + - uid: 4115 + components: + - type: Transform + pos: 35.5,61.5 + parent: 2 + - uid: 4116 + components: + - type: Transform + pos: 31.5,62.5 + parent: 2 + - uid: 4117 + components: + - type: Transform + pos: 35.5,63.5 + parent: 2 + - uid: 4118 + components: + - type: Transform + pos: 34.5,61.5 + parent: 2 + - uid: 4119 + components: + - type: Transform + pos: 33.5,65.5 + parent: 2 + - uid: 4120 + components: + - type: Transform + pos: 31.5,63.5 + parent: 2 + - uid: 4121 + components: + - type: Transform + pos: 31.5,64.5 + parent: 2 + - uid: 4122 + components: + - type: Transform + pos: 32.5,64.5 + parent: 2 + - uid: 4123 + components: + - type: Transform + pos: 33.5,64.5 + parent: 2 + - uid: 4124 + components: + - type: Transform + pos: 35.5,63.5 + parent: 2 + - uid: 4125 + components: + - type: Transform + pos: 33.5,67.5 + parent: 2 + - uid: 4126 + components: + - type: Transform + pos: 33.5,66.5 + parent: 2 + - uid: 4127 + components: + - type: Transform + pos: 33.5,68.5 + parent: 2 + - uid: 4128 + components: + - type: Transform + pos: 0.5,47.5 + parent: 2 + - uid: 4129 + components: + - type: Transform + pos: 0.5,46.5 + parent: 2 + - uid: 4130 + components: + - type: Transform + pos: 0.5,45.5 + parent: 2 + - uid: 4131 + components: + - type: Transform + pos: 0.5,44.5 + parent: 2 + - uid: 4132 + components: + - type: Transform + pos: 0.5,43.5 + parent: 2 + - uid: 4133 + components: + - type: Transform + pos: 0.5,42.5 + parent: 2 + - uid: 4134 + components: + - type: Transform + pos: 0.5,41.5 + parent: 2 + - uid: 4135 + components: + - type: Transform + pos: 0.5,40.5 + parent: 2 + - uid: 4136 + components: + - type: Transform + pos: 0.5,39.5 + parent: 2 + - uid: 4137 + components: + - type: Transform + pos: 0.5,38.5 + parent: 2 + - uid: 4138 + components: + - type: Transform + pos: 0.5,37.5 + parent: 2 + - uid: 4139 + components: + - type: Transform + pos: 0.5,36.5 + parent: 2 + - uid: 4140 + components: + - type: Transform + pos: 0.5,35.5 + parent: 2 + - uid: 4141 + components: + - type: Transform + pos: 0.5,34.5 + parent: 2 + - uid: 4142 + components: + - type: Transform + pos: 0.5,33.5 + parent: 2 + - uid: 4143 + components: + - type: Transform + pos: 0.5,32.5 + parent: 2 + - uid: 4144 + components: + - type: Transform + pos: 6.5,48.5 + parent: 2 + - uid: 4145 + components: + - type: Transform + pos: 7.5,48.5 + parent: 2 + - uid: 4146 + components: + - type: Transform + pos: 8.5,48.5 + parent: 2 + - uid: 4147 + components: + - type: Transform + pos: 9.5,48.5 + parent: 2 + - uid: 4148 + components: + - type: Transform + pos: 10.5,48.5 + parent: 2 + - uid: 4149 + components: + - type: Transform + pos: 11.5,48.5 + parent: 2 + - uid: 4150 + components: + - type: Transform + pos: 12.5,48.5 + parent: 2 + - uid: 4151 + components: + - type: Transform + pos: 13.5,48.5 + parent: 2 + - uid: 4152 + components: + - type: Transform + pos: 0.5,31.5 + parent: 2 + - uid: 4153 + components: + - type: Transform + pos: 0.5,30.5 + parent: 2 + - uid: 4154 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - uid: 4155 + components: + - type: Transform + pos: 0.5,28.5 + parent: 2 + - uid: 4156 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - uid: 4157 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - uid: 4158 + components: + - type: Transform + pos: 0.5,25.5 + parent: 2 + - uid: 4159 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - uid: 4160 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 4161 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - uid: 4162 + components: + - type: Transform + pos: 0.5,21.5 + parent: 2 + - uid: 4163 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 + - uid: 4164 + components: + - type: Transform + pos: -22.5,4.5 + parent: 2 + - uid: 4165 + components: + - type: Transform + pos: -22.5,5.5 + parent: 2 + - uid: 4166 + components: + - type: Transform + pos: -22.5,6.5 + parent: 2 + - uid: 4167 + components: + - type: Transform + pos: -22.5,7.5 + parent: 2 + - uid: 4168 + components: + - type: Transform + pos: -21.5,7.5 + parent: 2 + - uid: 4169 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 + - uid: 4170 + components: + - type: Transform + pos: -20.5,8.5 + parent: 2 + - uid: 4171 + components: + - type: Transform + pos: -20.5,9.5 + parent: 2 + - uid: 4172 + components: + - type: Transform + pos: -21.5,9.5 + parent: 2 + - uid: 4173 + components: + - type: Transform + pos: -22.5,9.5 + parent: 2 + - uid: 4174 + components: + - type: Transform + pos: -22.5,10.5 + parent: 2 + - uid: 4175 + components: + - type: Transform + pos: -22.5,11.5 + parent: 2 + - uid: 4176 + components: + - type: Transform + pos: -22.5,12.5 + parent: 2 + - uid: 4177 + components: + - type: Transform + pos: -22.5,13.5 + parent: 2 + - uid: 4178 + components: + - type: Transform + pos: -22.5,14.5 + parent: 2 + - uid: 4179 + components: + - type: Transform + pos: -21.5,14.5 + parent: 2 + - uid: 4180 + components: + - type: Transform + pos: -20.5,14.5 + parent: 2 + - uid: 4181 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - uid: 4182 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 4183 + components: + - type: Transform + pos: -20.5,11.5 + parent: 2 + - uid: 4184 + components: + - type: Transform + pos: -19.5,11.5 + parent: 2 + - uid: 4185 + components: + - type: Transform + pos: -18.5,11.5 + parent: 2 + - uid: 4186 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 4187 + components: + - type: Transform + pos: -18.5,9.5 + parent: 2 + - uid: 4188 + components: + - type: Transform + pos: -18.5,8.5 + parent: 2 + - uid: 4189 + components: + - type: Transform + pos: -18.5,7.5 + parent: 2 + - uid: 4190 + components: + - type: Transform + pos: -18.5,6.5 + parent: 2 + - uid: 4191 + components: + - type: Transform + pos: -17.5,6.5 + parent: 2 + - uid: 4192 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 4193 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 + - uid: 4194 + components: + - type: Transform + pos: -18.5,4.5 + parent: 2 + - uid: 4195 + components: + - type: Transform + pos: -17.5,11.5 + parent: 2 + - uid: 4196 + components: + - type: Transform + pos: -16.5,11.5 + parent: 2 + - uid: 4197 + components: + - type: Transform + pos: -15.5,11.5 + parent: 2 + - uid: 4198 + components: + - type: Transform + pos: -15.5,12.5 + parent: 2 + - uid: 4199 + components: + - type: Transform + pos: -15.5,13.5 + parent: 2 + - uid: 4200 + components: + - type: Transform + pos: -15.5,14.5 + parent: 2 + - uid: 4201 + components: + - type: Transform + pos: -15.5,15.5 + parent: 2 + - uid: 4202 + components: + - type: Transform + pos: -15.5,16.5 + parent: 2 + - uid: 4203 + components: + - type: Transform + pos: -14.5,16.5 + parent: 2 + - uid: 4204 + components: + - type: Transform + pos: -13.5,16.5 + parent: 2 + - uid: 4205 + components: + - type: Transform + pos: -12.5,16.5 + parent: 2 + - uid: 4206 + components: + - type: Transform + pos: -11.5,16.5 + parent: 2 + - uid: 4207 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 + - uid: 4208 + components: + - type: Transform + pos: -9.5,16.5 + parent: 2 + - uid: 4209 + components: + - type: Transform + pos: -8.5,16.5 + parent: 2 + - uid: 4210 + components: + - type: Transform + pos: -8.5,17.5 + parent: 2 + - uid: 4211 + components: + - type: Transform + pos: -7.5,17.5 + parent: 2 + - uid: 4212 + components: + - type: Transform + pos: -6.5,17.5 + parent: 2 + - uid: 4213 + components: + - type: Transform + pos: -5.5,17.5 + parent: 2 + - uid: 4214 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - uid: 4215 + components: + - type: Transform + pos: -4.5,20.5 + parent: 2 + - uid: 4216 + components: + - type: Transform + pos: -3.5,20.5 + parent: 2 + - uid: 4217 + components: + - type: Transform + pos: -2.5,20.5 + parent: 2 + - uid: 4218 + components: + - type: Transform + pos: -1.5,20.5 + parent: 2 + - uid: 4219 + components: + - type: Transform + pos: -0.5,20.5 + parent: 2 + - uid: 4220 + components: + - type: Transform + pos: 1.5,20.5 + parent: 2 + - uid: 4221 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - uid: 4222 + components: + - type: Transform + pos: 3.5,20.5 + parent: 2 + - uid: 4223 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 4224 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 + - uid: 4225 + components: + - type: Transform + pos: 6.5,20.5 + parent: 2 + - uid: 4226 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 + - uid: 4227 + components: + - type: Transform + pos: 8.5,20.5 + parent: 2 + - uid: 4228 + components: + - type: Transform + pos: 9.5,20.5 + parent: 2 + - uid: 4229 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 + - uid: 4230 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 4231 + components: + - type: Transform + pos: 12.5,20.5 + parent: 2 + - uid: 4232 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 4233 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 + - uid: 4234 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 + - uid: 4235 + components: + - type: Transform + pos: 15.5,19.5 + parent: 2 + - uid: 4236 + components: + - type: Transform + pos: 15.5,18.5 + parent: 2 + - uid: 4237 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - uid: 4238 + components: + - type: Transform + pos: 15.5,16.5 + parent: 2 + - uid: 4239 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - uid: 4240 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 4241 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 + - uid: 4242 + components: + - type: Transform + pos: 15.5,12.5 + parent: 2 + - uid: 4243 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 4244 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 4245 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 4246 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 4247 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 4248 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 4249 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 4250 + components: + - type: Transform + pos: 41.5,0.5 + parent: 2 + - uid: 4251 + components: + - type: Transform + pos: 41.5,1.5 + parent: 2 + - uid: 4252 + components: + - type: Transform + pos: 41.5,2.5 + parent: 2 + - uid: 4253 + components: + - type: Transform + pos: 42.5,0.5 + parent: 2 + - uid: 4254 + components: + - type: Transform + pos: 43.5,0.5 + parent: 2 + - uid: 4255 + components: + - type: Transform + pos: 43.5,-0.5 + parent: 2 + - uid: 4256 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - uid: 4257 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 2 + - uid: 4258 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 2 + - uid: 4259 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - uid: 4260 + components: + - type: Transform + pos: 43.5,-5.5 + parent: 2 + - uid: 4261 + components: + - type: Transform + pos: 44.5,-5.5 + parent: 2 + - uid: 4262 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 2 + - uid: 4263 + components: + - type: Transform + pos: 46.5,-5.5 + parent: 2 + - uid: 4264 + components: + - type: Transform + pos: 47.5,-5.5 + parent: 2 + - uid: 4265 + components: + - type: Transform + pos: 47.5,-6.5 + parent: 2 + - uid: 4266 + components: + - type: Transform + pos: 47.5,-7.5 + parent: 2 + - uid: 4267 + components: + - type: Transform + pos: 47.5,-8.5 + parent: 2 + - uid: 4268 + components: + - type: Transform + pos: 47.5,-9.5 + parent: 2 + - uid: 4269 + components: + - type: Transform + pos: 47.5,-10.5 + parent: 2 + - uid: 4270 + components: + - type: Transform + pos: 49.5,-10.5 + parent: 2 + - uid: 4271 + components: + - type: Transform + pos: 50.5,-10.5 + parent: 2 + - uid: 4272 + components: + - type: Transform + pos: 51.5,-10.5 + parent: 2 + - uid: 4273 + components: + - type: Transform + pos: 51.5,-11.5 + parent: 2 + - uid: 4274 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 4275 + components: + - type: Transform + pos: 18.5,8.5 + parent: 2 + - uid: 4276 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - uid: 4277 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 4278 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - uid: 4279 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - uid: 4280 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 + - uid: 4281 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 4282 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 + - uid: 4283 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 4284 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 + - uid: 4285 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 4286 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 4287 + components: + - type: Transform + pos: 27.5,7.5 + parent: 2 + - uid: 4288 + components: + - type: Transform + pos: 28.5,7.5 + parent: 2 + - uid: 4289 + components: + - type: Transform + pos: 29.5,7.5 + parent: 2 + - uid: 4290 + components: + - type: Transform + pos: 30.5,7.5 + parent: 2 + - uid: 4291 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - uid: 4292 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 4293 + components: + - type: Transform + pos: 31.5,5.5 + parent: 2 + - uid: 4294 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - uid: 4295 + components: + - type: Transform + pos: 32.5,4.5 + parent: 2 + - uid: 4296 + components: + - type: Transform + pos: 33.5,4.5 + parent: 2 + - uid: 4297 + components: + - type: Transform + pos: 34.5,4.5 + parent: 2 + - uid: 4298 + components: + - type: Transform + pos: 35.5,4.5 + parent: 2 + - uid: 4299 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - uid: 4300 + components: + - type: Transform + pos: 37.5,4.5 + parent: 2 + - uid: 4301 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - uid: 4302 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 4303 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 4304 + components: + - type: Transform + pos: 41.5,4.5 + parent: 2 + - uid: 4305 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 4306 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 4307 + components: + - type: Transform + pos: 42.5,2.5 + parent: 2 + - uid: 4308 + components: + - type: Transform + pos: 43.5,4.5 + parent: 2 + - uid: 4309 + components: + - type: Transform + pos: 43.5,5.5 + parent: 2 + - uid: 4310 + components: + - type: Transform + pos: 43.5,6.5 + parent: 2 + - uid: 4311 + components: + - type: Transform + pos: 43.5,7.5 + parent: 2 + - uid: 4312 + components: + - type: Transform + pos: 43.5,8.5 + parent: 2 + - uid: 4313 + components: + - type: Transform + pos: 43.5,9.5 + parent: 2 + - uid: 4314 + components: + - type: Transform + pos: 43.5,10.5 + parent: 2 + - uid: 4315 + components: + - type: Transform + pos: 44.5,10.5 + parent: 2 + - uid: 4316 + components: + - type: Transform + pos: 45.5,10.5 + parent: 2 + - uid: 4317 + components: + - type: Transform + pos: 46.5,10.5 + parent: 2 + - uid: 4318 + components: + - type: Transform + pos: 47.5,10.5 + parent: 2 + - uid: 4319 + components: + - type: Transform + pos: 48.5,10.5 + parent: 2 + - uid: 4320 + components: + - type: Transform + pos: 49.5,10.5 + parent: 2 + - uid: 4321 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - uid: 4322 + components: + - type: Transform + pos: 51.5,10.5 + parent: 2 + - uid: 4323 + components: + - type: Transform + pos: 52.5,10.5 + parent: 2 + - uid: 4324 + components: + - type: Transform + pos: 52.5,11.5 + parent: 2 + - uid: 4325 + components: + - type: Transform + pos: 53.5,11.5 + parent: 2 + - uid: 4326 + components: + - type: Transform + pos: 54.5,11.5 + parent: 2 + - uid: 4327 + components: + - type: Transform + pos: 55.5,11.5 + parent: 2 + - uid: 4328 + components: + - type: Transform + pos: 55.5,12.5 + parent: 2 + - uid: 4329 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - uid: 4330 + components: + - type: Transform + pos: 56.5,13.5 + parent: 2 + - uid: 4331 + components: + - type: Transform + pos: 57.5,13.5 + parent: 2 + - uid: 4332 + components: + - type: Transform + pos: 58.5,13.5 + parent: 2 + - uid: 4333 + components: + - type: Transform + pos: 59.5,13.5 + parent: 2 + - uid: 4334 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 + - uid: 4335 + components: + - type: Transform + pos: 61.5,13.5 + parent: 2 + - uid: 4336 + components: + - type: Transform + pos: 61.5,14.5 + parent: 2 + - uid: 4337 + components: + - type: Transform + pos: 61.5,15.5 + parent: 2 + - uid: 4338 + components: + - type: Transform + pos: 61.5,16.5 + parent: 2 + - uid: 4339 + components: + - type: Transform + pos: 61.5,17.5 + parent: 2 + - uid: 4340 + components: + - type: Transform + pos: 61.5,18.5 + parent: 2 + - uid: 4341 + components: + - type: Transform + pos: 62.5,18.5 + parent: 2 + - uid: 4342 + components: + - type: Transform + pos: 63.5,18.5 + parent: 2 + - uid: 4343 + components: + - type: Transform + pos: 64.5,18.5 + parent: 2 + - uid: 4344 + components: + - type: Transform + pos: 65.5,18.5 + parent: 2 + - uid: 4345 + components: + - type: Transform + pos: 65.5,19.5 + parent: 2 + - uid: 4346 + components: + - type: Transform + pos: 65.5,20.5 + parent: 2 + - uid: 4347 + components: + - type: Transform + pos: 65.5,21.5 + parent: 2 + - uid: 4348 + components: + - type: Transform + pos: 65.5,22.5 + parent: 2 + - uid: 4349 + components: + - type: Transform + pos: 65.5,23.5 + parent: 2 + - uid: 4350 + components: + - type: Transform + pos: 65.5,24.5 + parent: 2 + - uid: 4351 + components: + - type: Transform + pos: 65.5,25.5 + parent: 2 + - uid: 4352 + components: + - type: Transform + pos: 65.5,26.5 + parent: 2 + - uid: 4353 + components: + - type: Transform + pos: 65.5,27.5 + parent: 2 + - uid: 4354 + components: + - type: Transform + pos: 65.5,28.5 + parent: 2 + - uid: 4355 + components: + - type: Transform + pos: 65.5,29.5 + parent: 2 + - uid: 4356 + components: + - type: Transform + pos: 65.5,30.5 + parent: 2 + - uid: 4357 + components: + - type: Transform + pos: 65.5,31.5 + parent: 2 + - uid: 4358 + components: + - type: Transform + pos: 65.5,32.5 + parent: 2 + - uid: 4359 + components: + - type: Transform + pos: 65.5,33.5 + parent: 2 + - uid: 4360 + components: + - type: Transform + pos: 66.5,18.5 + parent: 2 + - uid: 4361 + components: + - type: Transform + pos: 67.5,18.5 + parent: 2 + - uid: 4362 + components: + - type: Transform + pos: 68.5,18.5 + parent: 2 + - uid: 4363 + components: + - type: Transform + pos: 69.5,18.5 + parent: 2 + - uid: 4364 + components: + - type: Transform + pos: 70.5,18.5 + parent: 2 + - uid: 4365 + components: + - type: Transform + pos: 71.5,18.5 + parent: 2 + - uid: 4366 + components: + - type: Transform + pos: 72.5,18.5 + parent: 2 + - uid: 4367 + components: + - type: Transform + pos: 73.5,18.5 + parent: 2 + - uid: 4368 + components: + - type: Transform + pos: 74.5,18.5 + parent: 2 + - uid: 4369 + components: + - type: Transform + pos: 74.5,17.5 + parent: 2 + - uid: 4370 + components: + - type: Transform + pos: 75.5,17.5 + parent: 2 + - uid: 4371 + components: + - type: Transform + pos: 75.5,16.5 + parent: 2 + - uid: 4372 + components: + - type: Transform + pos: 75.5,15.5 + parent: 2 + - uid: 4373 + components: + - type: Transform + pos: 75.5,14.5 + parent: 2 + - uid: 4374 + components: + - type: Transform + pos: 75.5,13.5 + parent: 2 + - uid: 4375 + components: + - type: Transform + pos: 76.5,13.5 + parent: 2 + - uid: 4376 + components: + - type: Transform + pos: 65.5,34.5 + parent: 2 + - uid: 4377 + components: + - type: Transform + pos: 65.5,35.5 + parent: 2 + - uid: 4378 + components: + - type: Transform + pos: 65.5,36.5 + parent: 2 + - uid: 4379 + components: + - type: Transform + pos: 65.5,37.5 + parent: 2 + - uid: 4380 + components: + - type: Transform + pos: 65.5,38.5 + parent: 2 + - uid: 4381 + components: + - type: Transform + pos: 65.5,39.5 + parent: 2 + - uid: 4382 + components: + - type: Transform + pos: 65.5,40.5 + parent: 2 + - uid: 4383 + components: + - type: Transform + pos: 65.5,41.5 + parent: 2 + - uid: 4384 + components: + - type: Transform + pos: 65.5,42.5 + parent: 2 + - uid: 4385 + components: + - type: Transform + pos: 65.5,43.5 + parent: 2 + - uid: 4386 + components: + - type: Transform + pos: 65.5,44.5 + parent: 2 + - uid: 4387 + components: + - type: Transform + pos: 65.5,45.5 + parent: 2 + - uid: 4388 + components: + - type: Transform + pos: 65.5,52.5 + parent: 2 + - uid: 4389 + components: + - type: Transform + pos: 65.5,53.5 + parent: 2 + - uid: 4390 + components: + - type: Transform + pos: 65.5,54.5 + parent: 2 + - uid: 4391 + components: + - type: Transform + pos: 65.5,55.5 + parent: 2 + - uid: 4393 + components: + - type: Transform + pos: 66.5,55.5 + parent: 2 + - uid: 4394 + components: + - type: Transform + pos: 67.5,55.5 + parent: 2 + - uid: 4395 + components: + - type: Transform + pos: 68.5,55.5 + parent: 2 + - uid: 4396 + components: + - type: Transform + pos: 68.5,54.5 + parent: 2 + - uid: 4397 + components: + - type: Transform + pos: 69.5,54.5 + parent: 2 + - uid: 4398 + components: + - type: Transform + pos: 70.5,54.5 + parent: 2 + - uid: 4399 + components: + - type: Transform + pos: 71.5,54.5 + parent: 2 + - uid: 4400 + components: + - type: Transform + pos: 72.5,54.5 + parent: 2 + - uid: 4401 + components: + - type: Transform + pos: 73.5,54.5 + parent: 2 + - uid: 4402 + components: + - type: Transform + pos: 73.5,53.5 + parent: 2 + - uid: 4403 + components: + - type: Transform + pos: 74.5,53.5 + parent: 2 + - uid: 4404 + components: + - type: Transform + pos: 75.5,53.5 + parent: 2 + - uid: 4414 + components: + - type: Transform + pos: 80.5,47.5 + parent: 2 + - uid: 4415 + components: + - type: Transform + pos: 79.5,47.5 + parent: 2 + - uid: 4416 + components: + - type: Transform + pos: 81.5,47.5 + parent: 2 + - uid: 4417 + components: + - type: Transform + pos: 81.5,46.5 + parent: 2 + - uid: 4418 + components: + - type: Transform + pos: 82.5,46.5 + parent: 2 + - uid: 4419 + components: + - type: Transform + pos: 83.5,46.5 + parent: 2 + - uid: 4420 + components: + - type: Transform + pos: 35.5,60.5 + parent: 2 + - uid: 4421 + components: + - type: Transform + pos: 35.5,59.5 + parent: 2 + - uid: 4422 + components: + - type: Transform + pos: 36.5,59.5 + parent: 2 + - uid: 4423 + components: + - type: Transform + pos: 37.5,59.5 + parent: 2 + - uid: 4424 + components: + - type: Transform + pos: 38.5,59.5 + parent: 2 + - uid: 4425 + components: + - type: Transform + pos: 39.5,59.5 + parent: 2 + - uid: 4426 + components: + - type: Transform + pos: 39.5,58.5 + parent: 2 + - uid: 4427 + components: + - type: Transform + pos: 39.5,57.5 + parent: 2 + - uid: 4428 + components: + - type: Transform + pos: 39.5,56.5 + parent: 2 + - uid: 4429 + components: + - type: Transform + pos: 40.5,56.5 + parent: 2 + - uid: 4430 + components: + - type: Transform + pos: 41.5,56.5 + parent: 2 + - uid: 4431 + components: + - type: Transform + pos: 42.5,56.5 + parent: 2 + - uid: 4432 + components: + - type: Transform + pos: 43.5,56.5 + parent: 2 + - uid: 4433 + components: + - type: Transform + pos: 44.5,56.5 + parent: 2 + - uid: 4435 + components: + - type: Transform + pos: 46.5,56.5 + parent: 2 + - uid: 4436 + components: + - type: Transform + pos: 47.5,56.5 + parent: 2 + - uid: 4437 + components: + - type: Transform + pos: 48.5,56.5 + parent: 2 + - uid: 4438 + components: + - type: Transform + pos: 49.5,56.5 + parent: 2 + - uid: 4439 + components: + - type: Transform + pos: 50.5,56.5 + parent: 2 + - uid: 4440 + components: + - type: Transform + pos: 51.5,56.5 + parent: 2 + - uid: 4441 + components: + - type: Transform + pos: 51.5,57.5 + parent: 2 + - uid: 4442 + components: + - type: Transform + pos: 51.5,58.5 + parent: 2 + - uid: 4443 + components: + - type: Transform + pos: 51.5,59.5 + parent: 2 + - uid: 4444 + components: + - type: Transform + pos: 52.5,59.5 + parent: 2 + - uid: 4445 + components: + - type: Transform + pos: 52.5,56.5 + parent: 2 + - uid: 4446 + components: + - type: Transform + pos: 53.5,56.5 + parent: 2 + - uid: 4447 + components: + - type: Transform + pos: 53.5,55.5 + parent: 2 + - uid: 4448 + components: + - type: Transform + pos: 53.5,54.5 + parent: 2 + - uid: 4449 + components: + - type: Transform + pos: 53.5,53.5 + parent: 2 + - uid: 4450 + components: + - type: Transform + pos: 54.5,53.5 + parent: 2 + - uid: 4451 + components: + - type: Transform + pos: 55.5,53.5 + parent: 2 + - uid: 4452 + components: + - type: Transform + pos: 56.5,53.5 + parent: 2 + - uid: 4453 + components: + - type: Transform + pos: 57.5,53.5 + parent: 2 + - uid: 4454 + components: + - type: Transform + pos: 57.5,52.5 + parent: 2 + - uid: 4455 + components: + - type: Transform + pos: 57.5,51.5 + parent: 2 + - uid: 4456 + components: + - type: Transform + pos: 57.5,50.5 + parent: 2 + - uid: 4457 + components: + - type: Transform + pos: 57.5,49.5 + parent: 2 + - uid: 4458 + components: + - type: Transform + pos: 57.5,48.5 + parent: 2 + - uid: 4459 + components: + - type: Transform + pos: 58.5,48.5 + parent: 2 + - uid: 4460 + components: + - type: Transform + pos: 59.5,48.5 + parent: 2 + - uid: 4461 + components: + - type: Transform + pos: 59.5,47.5 + parent: 2 + - uid: 4462 + components: + - type: Transform + pos: 60.5,47.5 + parent: 2 + - uid: 4463 + components: + - type: Transform + pos: 61.5,47.5 + parent: 2 + - uid: 4464 + components: + - type: Transform + pos: 62.5,47.5 + parent: 2 + - uid: 4465 + components: + - type: Transform + pos: 63.5,47.5 + parent: 2 + - uid: 4466 + components: + - type: Transform + pos: 64.5,47.5 + parent: 2 + - uid: 4467 + components: + - type: Transform + pos: 17.5,48.5 + parent: 2 + - uid: 4468 + components: + - type: Transform + pos: 18.5,48.5 + parent: 2 + - uid: 4469 + components: + - type: Transform + pos: 19.5,48.5 + parent: 2 + - uid: 4470 + components: + - type: Transform + pos: 20.5,48.5 + parent: 2 + - uid: 4471 + components: + - type: Transform + pos: 21.5,48.5 + parent: 2 + - uid: 4472 + components: + - type: Transform + pos: 21.5,47.5 + parent: 2 + - uid: 4473 + components: + - type: Transform + pos: 21.5,46.5 + parent: 2 + - uid: 4474 + components: + - type: Transform + pos: 21.5,45.5 + parent: 2 + - uid: 4475 + components: + - type: Transform + pos: 21.5,44.5 + parent: 2 + - uid: 4476 + components: + - type: Transform + pos: 21.5,43.5 + parent: 2 + - uid: 4477 + components: + - type: Transform + pos: 20.5,43.5 + parent: 2 + - uid: 4478 + components: + - type: Transform + pos: 22.5,48.5 + parent: 2 + - uid: 4479 + components: + - type: Transform + pos: 23.5,48.5 + parent: 2 + - uid: 4480 + components: + - type: Transform + pos: 24.5,48.5 + parent: 2 + - uid: 4481 + components: + - type: Transform + pos: 25.5,48.5 + parent: 2 + - uid: 4482 + components: + - type: Transform + pos: 26.5,48.5 + parent: 2 + - uid: 4483 + components: + - type: Transform + pos: 27.5,48.5 + parent: 2 + - uid: 4484 + components: + - type: Transform + pos: 28.5,48.5 + parent: 2 + - uid: 4485 + components: + - type: Transform + pos: 29.5,48.5 + parent: 2 + - uid: 4486 + components: + - type: Transform + pos: 30.5,48.5 + parent: 2 + - uid: 4487 + components: + - type: Transform + pos: 31.5,48.5 + parent: 2 + - uid: 4488 + components: + - type: Transform + pos: 32.5,48.5 + parent: 2 + - uid: 4489 + components: + - type: Transform + pos: 33.5,48.5 + parent: 2 + - uid: 4490 + components: + - type: Transform + pos: 34.5,48.5 + parent: 2 + - uid: 4491 + components: + - type: Transform + pos: 35.5,48.5 + parent: 2 + - uid: 4492 + components: + - type: Transform + pos: 36.5,48.5 + parent: 2 + - uid: 4493 + components: + - type: Transform + pos: 37.5,48.5 + parent: 2 + - uid: 4494 + components: + - type: Transform + pos: 38.5,48.5 + parent: 2 + - uid: 4495 + components: + - type: Transform + pos: 39.5,48.5 + parent: 2 + - uid: 4496 + components: + - type: Transform + pos: 40.5,48.5 + parent: 2 + - uid: 4497 + components: + - type: Transform + pos: 41.5,48.5 + parent: 2 + - uid: 4498 + components: + - type: Transform + pos: 42.5,48.5 + parent: 2 + - uid: 4499 + components: + - type: Transform + pos: 43.5,48.5 + parent: 2 + - uid: 4500 + components: + - type: Transform + pos: 44.5,48.5 + parent: 2 + - uid: 4501 + components: + - type: Transform + pos: 44.5,49.5 + parent: 2 + - uid: 4502 + components: + - type: Transform + pos: 44.5,50.5 + parent: 2 + - uid: 4503 + components: + - type: Transform + pos: 44.5,51.5 + parent: 2 + - uid: 4504 + components: + - type: Transform + pos: 45.5,51.5 + parent: 2 + - uid: 4505 + components: + - type: Transform + pos: 46.5,51.5 + parent: 2 + - uid: 4506 + components: + - type: Transform + pos: 46.5,52.5 + parent: 2 + - uid: 4507 + components: + - type: Transform + pos: 46.5,53.5 + parent: 2 + - uid: 4508 + components: + - type: Transform + pos: 46.5,54.5 + parent: 2 + - uid: 4509 + components: + - type: Transform + pos: 46.5,55.5 + parent: 2 + - uid: 4510 + components: + - type: Transform + pos: 32.5,47.5 + parent: 2 + - uid: 4511 + components: + - type: Transform + pos: 32.5,46.5 + parent: 2 + - uid: 4512 + components: + - type: Transform + pos: 32.5,45.5 + parent: 2 + - uid: 4513 + components: + - type: Transform + pos: 32.5,44.5 + parent: 2 + - uid: 4514 + components: + - type: Transform + pos: 32.5,43.5 + parent: 2 + - uid: 4515 + components: + - type: Transform + pos: 32.5,42.5 + parent: 2 + - uid: 4516 + components: + - type: Transform + pos: 32.5,41.5 + parent: 2 + - uid: 4517 + components: + - type: Transform + pos: 32.5,40.5 + parent: 2 + - uid: 4518 + components: + - type: Transform + pos: 32.5,39.5 + parent: 2 + - uid: 4519 + components: + - type: Transform + pos: 32.5,38.5 + parent: 2 + - uid: 4520 + components: + - type: Transform + pos: 32.5,37.5 + parent: 2 + - uid: 4521 + components: + - type: Transform + pos: 32.5,36.5 + parent: 2 + - uid: 4522 + components: + - type: Transform + pos: 32.5,35.5 + parent: 2 + - uid: 4523 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 4524 + components: + - type: Transform + pos: 32.5,33.5 + parent: 2 + - uid: 4525 + components: + - type: Transform + pos: 32.5,32.5 + parent: 2 + - uid: 4526 + components: + - type: Transform + pos: 32.5,31.5 + parent: 2 + - uid: 4527 + components: + - type: Transform + pos: 32.5,30.5 + parent: 2 + - uid: 4528 + components: + - type: Transform + pos: 32.5,29.5 + parent: 2 + - uid: 4529 + components: + - type: Transform + pos: 32.5,28.5 + parent: 2 + - uid: 4530 + components: + - type: Transform + pos: 32.5,27.5 + parent: 2 + - uid: 4531 + components: + - type: Transform + pos: 32.5,26.5 + parent: 2 + - uid: 4532 + components: + - type: Transform + pos: 32.5,25.5 + parent: 2 + - uid: 4533 + components: + - type: Transform + pos: 32.5,24.5 + parent: 2 + - uid: 4534 + components: + - type: Transform + pos: 32.5,23.5 + parent: 2 + - uid: 4535 + components: + - type: Transform + pos: 32.5,22.5 + parent: 2 + - uid: 4536 + components: + - type: Transform + pos: 32.5,21.5 + parent: 2 + - uid: 4537 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - uid: 4538 + components: + - type: Transform + pos: 16.5,20.5 + parent: 2 + - uid: 4539 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 4540 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 4541 + components: + - type: Transform + pos: 19.5,20.5 + parent: 2 + - uid: 4542 + components: + - type: Transform + pos: 20.5,20.5 + parent: 2 + - uid: 4543 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 4544 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 + - uid: 4545 + components: + - type: Transform + pos: 23.5,20.5 + parent: 2 + - uid: 4546 + components: + - type: Transform + pos: 24.5,20.5 + parent: 2 + - uid: 4547 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - uid: 4548 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 + - uid: 4549 + components: + - type: Transform + pos: 27.5,20.5 + parent: 2 + - uid: 4550 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 4551 + components: + - type: Transform + pos: 29.5,20.5 + parent: 2 + - uid: 4552 + components: + - type: Transform + pos: 30.5,20.5 + parent: 2 + - uid: 4553 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 4554 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 + - uid: 4555 + components: + - type: Transform + pos: 34.5,34.5 + parent: 2 + - uid: 4556 + components: + - type: Transform + pos: 35.5,34.5 + parent: 2 + - uid: 4557 + components: + - type: Transform + pos: 36.5,34.5 + parent: 2 + - uid: 4558 + components: + - type: Transform + pos: 37.5,34.5 + parent: 2 + - uid: 4559 + components: + - type: Transform + pos: 38.5,34.5 + parent: 2 + - uid: 4560 + components: + - type: Transform + pos: 39.5,34.5 + parent: 2 + - uid: 4561 + components: + - type: Transform + pos: 40.5,34.5 + parent: 2 + - uid: 4562 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - uid: 4563 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 + - uid: 4564 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - uid: 4565 + components: + - type: Transform + pos: 44.5,34.5 + parent: 2 + - uid: 4566 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 + - uid: 4567 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 + - uid: 4568 + components: + - type: Transform + pos: 48.5,34.5 + parent: 2 + - uid: 4569 + components: + - type: Transform + pos: 49.5,34.5 + parent: 2 + - uid: 4570 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 + - uid: 4571 + components: + - type: Transform + pos: 51.5,34.5 + parent: 2 + - uid: 4572 + components: + - type: Transform + pos: 52.5,34.5 + parent: 2 + - uid: 4573 + components: + - type: Transform + pos: 53.5,34.5 + parent: 2 + - uid: 4574 + components: + - type: Transform + pos: 54.5,34.5 + parent: 2 + - uid: 4575 + components: + - type: Transform + pos: 55.5,34.5 + parent: 2 + - uid: 4576 + components: + - type: Transform + pos: 56.5,34.5 + parent: 2 + - uid: 4577 + components: + - type: Transform + pos: 57.5,34.5 + parent: 2 + - uid: 4578 + components: + - type: Transform + pos: 58.5,34.5 + parent: 2 + - uid: 4579 + components: + - type: Transform + pos: 59.5,34.5 + parent: 2 + - uid: 4580 + components: + - type: Transform + pos: 60.5,34.5 + parent: 2 + - uid: 4581 + components: + - type: Transform + pos: 61.5,34.5 + parent: 2 + - uid: 4582 + components: + - type: Transform + pos: 62.5,34.5 + parent: 2 + - uid: 4583 + components: + - type: Transform + pos: 63.5,34.5 + parent: 2 + - uid: 4584 + components: + - type: Transform + pos: 64.5,34.5 + parent: 2 + - uid: 4585 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 2 + - uid: 4586 + components: + - type: Transform + pos: 33.5,69.5 + parent: 2 + - uid: 4587 + components: + - type: Transform + pos: 33.5,80.5 + parent: 2 + - uid: 4588 + components: + - type: Transform + pos: -43.5,26.5 + parent: 2 + - uid: 4589 + components: + - type: Transform + pos: -30.5,27.5 + parent: 2 + - uid: 4590 + components: + - type: Transform + pos: -29.5,27.5 + parent: 2 + - uid: 4591 + components: + - type: Transform + pos: -5.5,20.5 + parent: 2 + - uid: 4592 + components: + - type: Transform + pos: -6.5,20.5 + parent: 2 + - uid: 4593 + components: + - type: Transform + pos: -7.5,20.5 + parent: 2 + - uid: 4594 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 + - uid: 4595 + components: + - type: Transform + pos: -9.5,20.5 + parent: 2 + - uid: 4596 + components: + - type: Transform + pos: -10.5,20.5 + parent: 2 + - uid: 4597 + components: + - type: Transform + pos: -11.5,20.5 + parent: 2 + - uid: 4598 + components: + - type: Transform + pos: -11.5,19.5 + parent: 2 + - uid: 4599 + components: + - type: Transform + pos: -12.5,19.5 + parent: 2 + - uid: 4600 + components: + - type: Transform + pos: -13.5,19.5 + parent: 2 + - uid: 4601 + components: + - type: Transform + pos: -14.5,19.5 + parent: 2 + - uid: 4602 + components: + - type: Transform + pos: -15.5,19.5 + parent: 2 + - uid: 4603 + components: + - type: Transform + pos: -16.5,19.5 + parent: 2 + - uid: 4604 + components: + - type: Transform + pos: -17.5,19.5 + parent: 2 + - uid: 4605 + components: + - type: Transform + pos: -18.5,19.5 + parent: 2 + - uid: 4606 + components: + - type: Transform + pos: -19.5,19.5 + parent: 2 + - uid: 4607 + components: + - type: Transform + pos: -19.5,18.5 + parent: 2 + - uid: 4608 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - uid: 4609 + components: + - type: Transform + pos: -21.5,18.5 + parent: 2 + - uid: 4610 + components: + - type: Transform + pos: -22.5,18.5 + parent: 2 + - uid: 4611 + components: + - type: Transform + pos: -22.5,19.5 + parent: 2 + - uid: 4612 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 + - uid: 4613 + components: + - type: Transform + pos: -22.5,21.5 + parent: 2 + - uid: 4614 + components: + - type: Transform + pos: -22.5,22.5 + parent: 2 + - uid: 4615 + components: + - type: Transform + pos: -23.5,22.5 + parent: 2 + - uid: 4616 + components: + - type: Transform + pos: -24.5,22.5 + parent: 2 + - uid: 4617 + components: + - type: Transform + pos: -23.5,23.5 + parent: 2 + - uid: 4618 + components: + - type: Transform + pos: -23.5,24.5 + parent: 2 + - uid: 4619 + components: + - type: Transform + pos: -18.5,31.5 + parent: 2 + - uid: 4620 + components: + - type: Transform + pos: 31.5,1.5 + parent: 2 + - uid: 4621 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - uid: 4622 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - uid: 4623 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 4624 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 2 + - uid: 4625 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 2 + - uid: 4626 + components: + - type: Transform + pos: -11.5,43.5 + parent: 2 + - uid: 4627 + components: + - type: Transform + pos: 35.5,62.5 + parent: 2 + - uid: 4628 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 4629 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 + - uid: 4630 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 2 + - uid: 4631 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 2 + - uid: 4632 + components: + - type: Transform + pos: -22.5,3.5 + parent: 2 + - uid: 4633 + components: + - type: Transform + pos: -22.5,2.5 + parent: 2 + - uid: 4634 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - uid: 4635 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 2 + - uid: 4636 + components: + - type: Transform + pos: -29.5,-11.5 + parent: 2 + - uid: 4637 + components: + - type: Transform + pos: -21.5,33.5 + parent: 2 + - uid: 4638 + components: + - type: Transform + pos: -10.5,42.5 + parent: 2 + - uid: 4639 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 2 + - uid: 4640 + components: + - type: Transform + pos: -15.5,42.5 + parent: 2 + - uid: 4641 + components: + - type: Transform + pos: -10.5,43.5 + parent: 2 + - uid: 4642 + components: + - type: Transform + pos: -30.5,36.5 + parent: 2 + - uid: 4643 + components: + - type: Transform + pos: -30.5,37.5 + parent: 2 + - uid: 4644 + components: + - type: Transform + pos: 65.5,46.5 + parent: 2 + - uid: 4645 + components: + - type: Transform + pos: 65.5,48.5 + parent: 2 + - uid: 4646 + components: + - type: Transform + pos: 65.5,50.5 + parent: 2 + - uid: 4647 + components: + - type: Transform + pos: -18.5,32.5 + parent: 2 + - uid: 4648 + components: + - type: Transform + pos: -14.5,46.5 + parent: 2 + - uid: 4649 + components: + - type: Transform + pos: -10.5,40.5 + parent: 2 + - uid: 4650 + components: + - type: Transform + pos: -21.5,35.5 + parent: 2 + - uid: 4651 + components: + - type: Transform + pos: -22.5,35.5 + parent: 2 + - uid: 4652 + components: + - type: Transform + pos: -10.5,38.5 + parent: 2 + - uid: 4653 + components: + - type: Transform + pos: -16.5,42.5 + parent: 2 + - uid: 4654 + components: + - type: Transform + pos: -14.5,43.5 + parent: 2 + - uid: 4655 + components: + - type: Transform + pos: -10.5,36.5 + parent: 2 + - uid: 4656 + components: + - type: Transform + pos: -14.5,36.5 + parent: 2 + - uid: 4657 + components: + - type: Transform + pos: -10.5,39.5 + parent: 2 + - uid: 4658 + components: + - type: Transform + pos: -12.5,46.5 + parent: 2 + - uid: 4659 + components: + - type: Transform + pos: -13.5,36.5 + parent: 2 + - uid: 4660 + components: + - type: Transform + pos: -10.5,37.5 + parent: 2 + - uid: 4661 + components: + - type: Transform + pos: -12.5,43.5 + parent: 2 + - uid: 4662 + components: + - type: Transform + pos: -18.5,36.5 + parent: 2 + - uid: 4663 + components: + - type: Transform + pos: -20.5,37.5 + parent: 2 + - uid: 4664 + components: + - type: Transform + pos: -21.5,32.5 + parent: 2 + - uid: 4665 + components: + - type: Transform + pos: -21.5,36.5 + parent: 2 + - uid: 4666 + components: + - type: Transform + pos: -21.5,34.5 + parent: 2 + - uid: 4667 + components: + - type: Transform + pos: -20.5,36.5 + parent: 2 + - uid: 4668 + components: + - type: Transform + pos: -19.5,32.5 + parent: 2 + - uid: 4669 + components: + - type: Transform + pos: -18.5,37.5 + parent: 2 + - uid: 4670 + components: + - type: Transform + pos: -10.5,41.5 + parent: 2 + - uid: 4671 + components: + - type: Transform + pos: -16.5,36.5 + parent: 2 + - uid: 4672 + components: + - type: Transform + pos: -15.5,36.5 + parent: 2 + - uid: 4673 + components: + - type: Transform + pos: -14.5,42.5 + parent: 2 + - uid: 4674 + components: + - type: Transform + pos: 46.5,34.5 + parent: 2 + - uid: 4675 + components: + - type: Transform + pos: 84.5,44.5 + parent: 2 + - uid: 4676 + components: + - type: Transform + pos: 84.5,46.5 + parent: 2 + - uid: 4677 + components: + - type: Transform + pos: 84.5,45.5 + parent: 2 + - uid: 4678 + components: + - type: Transform + pos: 84.5,43.5 + parent: 2 + - uid: 4679 + components: + - type: Transform + pos: 84.5,42.5 + parent: 2 + - uid: 4680 + components: + - type: Transform + pos: 84.5,41.5 + parent: 2 + - uid: 4681 + components: + - type: Transform + pos: 83.5,41.5 + parent: 2 + - uid: 4682 + components: + - type: Transform + pos: 83.5,40.5 + parent: 2 + - uid: 4683 + components: + - type: Transform + pos: 83.5,39.5 + parent: 2 + - uid: 4684 + components: + - type: Transform + pos: 84.5,39.5 + parent: 2 + - uid: 4685 + components: + - type: Transform + pos: 85.5,39.5 + parent: 2 + - uid: 4686 + components: + - type: Transform + pos: 86.5,39.5 + parent: 2 + - uid: 4687 + components: + - type: Transform + pos: 87.5,39.5 + parent: 2 + - uid: 4688 + components: + - type: Transform + pos: 87.5,38.5 + parent: 2 + - uid: 4689 + components: + - type: Transform + pos: 88.5,38.5 + parent: 2 + - uid: 4690 + components: + - type: Transform + pos: 88.5,37.5 + parent: 2 + - uid: 4691 + components: + - type: Transform + pos: 88.5,36.5 + parent: 2 + - uid: 4692 + components: + - type: Transform + pos: 88.5,35.5 + parent: 2 + - uid: 4693 + components: + - type: Transform + pos: 88.5,34.5 + parent: 2 + - uid: 4694 + components: + - type: Transform + pos: 88.5,33.5 + parent: 2 + - uid: 4695 + components: + - type: Transform + pos: 88.5,32.5 + parent: 2 + - uid: 4696 + components: + - type: Transform + pos: 88.5,31.5 + parent: 2 + - uid: 4697 + components: + - type: Transform + pos: 88.5,30.5 + parent: 2 + - uid: 4698 + components: + - type: Transform + pos: 87.5,30.5 + parent: 2 + - uid: 4699 + components: + - type: Transform + pos: 87.5,29.5 + parent: 2 + - uid: 4700 + components: + - type: Transform + pos: 86.5,29.5 + parent: 2 + - uid: 4701 + components: + - type: Transform + pos: 85.5,29.5 + parent: 2 + - uid: 4702 + components: + - type: Transform + pos: 84.5,29.5 + parent: 2 + - uid: 4703 + components: + - type: Transform + pos: 83.5,29.5 + parent: 2 + - uid: 4704 + components: + - type: Transform + pos: 83.5,28.5 + parent: 2 + - uid: 4705 + components: + - type: Transform + pos: 83.5,27.5 + parent: 2 + - uid: 4706 + components: + - type: Transform + pos: 84.5,27.5 + parent: 2 + - uid: 4707 + components: + - type: Transform + pos: 84.5,26.5 + parent: 2 + - uid: 4708 + components: + - type: Transform + pos: 84.5,25.5 + parent: 2 + - uid: 4709 + components: + - type: Transform + pos: 84.5,24.5 + parent: 2 + - uid: 4710 + components: + - type: Transform + pos: 84.5,23.5 + parent: 2 + - uid: 4711 + components: + - type: Transform + pos: 84.5,22.5 + parent: 2 + - uid: 4712 + components: + - type: Transform + pos: 84.5,21.5 + parent: 2 + - uid: 4713 + components: + - type: Transform + pos: 65.5,51.5 + parent: 2 + - uid: 4714 + components: + - type: Transform + pos: 65.5,49.5 + parent: 2 + - uid: 4715 + components: + - type: Transform + pos: 65.5,47.5 + parent: 2 + - uid: 4716 + components: + - type: Transform + pos: -31.5,35.5 + parent: 2 + - uid: 4717 + components: + - type: Transform + pos: -31.5,36.5 + parent: 2 + - uid: 4718 + components: + - type: Transform + pos: -31.5,28.5 + parent: 2 + - uid: 4719 + components: + - type: Transform + pos: -31.5,29.5 + parent: 2 + - uid: 4720 + components: + - type: Transform + pos: -31.5,30.5 + parent: 2 + - uid: 4721 + components: + - type: Transform + pos: -31.5,31.5 + parent: 2 + - uid: 4722 + components: + - type: Transform + pos: -31.5,32.5 + parent: 2 + - uid: 4723 + components: + - type: Transform + pos: -31.5,33.5 + parent: 2 + - uid: 4724 + components: + - type: Transform + pos: -31.5,34.5 + parent: 2 + - uid: 4728 + components: + - type: Transform + pos: -13.5,23.5 + parent: 2 + - uid: 4729 + components: + - type: Transform + pos: -14.5,23.5 + parent: 2 + - uid: 4731 + components: + - type: Transform + pos: -13.5,25.5 + parent: 2 + - uid: 4732 + components: + - type: Transform + pos: -14.5,26.5 + parent: 2 + - uid: 4733 + components: + - type: Transform + pos: -14.5,27.5 + parent: 2 + - uid: 4734 + components: + - type: Transform + pos: -14.5,25.5 + parent: 2 + - uid: 4735 + components: + - type: Transform + pos: -13.5,27.5 + parent: 2 + - uid: 4736 + components: + - type: Transform + pos: -13.5,28.5 + parent: 2 + - uid: 4737 + components: + - type: Transform + pos: -13.5,29.5 + parent: 2 + - uid: 4738 + components: + - type: Transform + pos: -13.5,30.5 + parent: 2 + - uid: 4739 + components: + - type: Transform + pos: -13.5,31.5 + parent: 2 + - uid: 4740 + components: + - type: Transform + pos: -13.5,32.5 + parent: 2 + - uid: 4741 + components: + - type: Transform + pos: -13.5,33.5 + parent: 2 + - uid: 4742 + components: + - type: Transform + pos: -13.5,34.5 + parent: 2 + - uid: 4743 + components: + - type: Transform + pos: -13.5,35.5 + parent: 2 + - uid: 4744 + components: + - type: Transform + pos: -3.5,19.5 + parent: 2 + - uid: 4745 + components: + - type: Transform + pos: -3.5,18.5 + parent: 2 + - uid: 4746 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 2 + - uid: 4747 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 2 + - uid: 4748 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 2 + - uid: 4749 + components: + - type: Transform + pos: 36.5,-12.5 + parent: 2 + - uid: 4750 + components: + - type: Transform + pos: 36.5,-13.5 + parent: 2 + - uid: 4751 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - uid: 4752 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 + - uid: 4753 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 2 + - uid: 4754 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 4755 + components: + - type: Transform + pos: 37.5,-13.5 + parent: 2 + - uid: 4756 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 + - uid: 4757 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 2 + - uid: 4758 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 2 + - uid: 4759 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 2 + - uid: 4760 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - uid: 4761 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - uid: 4762 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 4763 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 + - uid: 4764 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 4765 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 2 + - uid: 4766 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - uid: 4767 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 2 + - uid: 4768 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 + - uid: 4769 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 4770 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 6323 + components: + - type: Transform + pos: -14.5,24.5 + parent: 2 + - uid: 7021 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - uid: 18778 + components: + - type: Transform + pos: 75.5,52.5 + parent: 2 + - uid: 18779 + components: + - type: Transform + pos: 75.5,51.5 + parent: 2 + - uid: 18780 + components: + - type: Transform + pos: 75.5,50.5 + parent: 2 + - uid: 18781 + components: + - type: Transform + pos: 75.5,49.5 + parent: 2 + - uid: 18782 + components: + - type: Transform + pos: 75.5,48.5 + parent: 2 + - uid: 18783 + components: + - type: Transform + pos: 75.5,47.5 + parent: 2 + - uid: 18784 + components: + - type: Transform + pos: 76.5,47.5 + parent: 2 + - uid: 18788 + components: + - type: Transform + pos: 77.5,47.5 + parent: 2 + - uid: 18789 + components: + - type: Transform + pos: 78.5,47.5 + parent: 2 +- proto: CableHVStack + entities: + - uid: 4771 + components: + - type: Transform + pos: -7.609933,28.761845 + parent: 2 +- proto: CableMV + entities: + - uid: 1812 + components: + - type: Transform + pos: -36.5,70.5 + parent: 2 + - uid: 1819 + components: + - type: Transform + pos: -36.5,69.5 + parent: 2 + - uid: 3236 + components: + - type: Transform + pos: 69.5,32.5 + parent: 2 + - uid: 4772 + components: + - type: Transform + pos: -19.5,41.5 + parent: 2 + - uid: 4773 + components: + - type: Transform + pos: -13.5,36.5 + parent: 2 + - uid: 4774 + components: + - type: Transform + pos: -13.5,36.5 + parent: 2 + - uid: 4775 + components: + - type: Transform + pos: -13.5,36.5 + parent: 2 + - uid: 4776 + components: + - type: Transform + pos: -13.5,39.5 + parent: 2 + - uid: 4777 + components: + - type: Transform + pos: -13.5,40.5 + parent: 2 + - uid: 4778 + components: + - type: Transform + pos: -13.5,41.5 + parent: 2 + - uid: 4779 + components: + - type: Transform + pos: -20.5,41.5 + parent: 2 + - uid: 4780 + components: + - type: Transform + pos: -21.5,41.5 + parent: 2 + - uid: 4781 + components: + - type: Transform + pos: -12.5,68.5 + parent: 2 + - uid: 4782 + components: + - type: Transform + pos: -19.5,36.5 + parent: 2 + - uid: 4783 + components: + - type: Transform + pos: 32.5,57.5 + parent: 2 + - uid: 4784 + components: + - type: Transform + pos: 33.5,57.5 + parent: 2 + - uid: 4785 + components: + - type: Transform + pos: 33.5,56.5 + parent: 2 + - uid: 4786 + components: + - type: Transform + pos: 34.5,56.5 + parent: 2 + - uid: 4787 + components: + - type: Transform + pos: -34.5,24.5 + parent: 2 + - uid: 4788 + components: + - type: Transform + pos: -3.5,66.5 + parent: 2 + - uid: 4789 + components: + - type: Transform + pos: -3.5,65.5 + parent: 2 + - uid: 4790 + components: + - type: Transform + pos: -16.5,36.5 + parent: 2 + - uid: 4791 + components: + - type: Transform + pos: -21.5,35.5 + parent: 2 + - uid: 4792 + components: + - type: Transform + pos: -14.5,36.5 + parent: 2 + - uid: 4793 + components: + - type: Transform + pos: -17.5,36.5 + parent: 2 + - uid: 4794 + components: + - type: Transform + pos: -15.5,36.5 + parent: 2 + - uid: 4795 + components: + - type: Transform + pos: -20.5,36.5 + parent: 2 + - uid: 4796 + components: + - type: Transform + pos: -18.5,36.5 + parent: 2 + - uid: 4797 + components: + - type: Transform + pos: -21.5,36.5 + parent: 2 + - uid: 4798 + components: + - type: Transform + pos: -34.5,25.5 + parent: 2 + - uid: 4799 + components: + - type: Transform + pos: -16.5,43.5 + parent: 2 + - uid: 4800 + components: + - type: Transform + pos: -15.5,43.5 + parent: 2 + - uid: 4801 + components: + - type: Transform + pos: -14.5,43.5 + parent: 2 + - uid: 4802 + components: + - type: Transform + pos: -13.5,43.5 + parent: 2 + - uid: 4803 + components: + - type: Transform + pos: -12.5,43.5 + parent: 2 + - uid: 4804 + components: + - type: Transform + pos: -11.5,43.5 + parent: 2 + - uid: 4805 + components: + - type: Transform + pos: -10.5,43.5 + parent: 2 + - uid: 4806 + components: + - type: Transform + pos: -10.5,44.5 + parent: 2 + - uid: 4807 + components: + - type: Transform + pos: -10.5,45.5 + parent: 2 + - uid: 4808 + components: + - type: Transform + pos: -10.5,46.5 + parent: 2 + - uid: 4809 + components: + - type: Transform + pos: -14.5,42.5 + parent: 2 + - uid: 4810 + components: + - type: Transform + pos: -25.5,41.5 + parent: 2 + - uid: 4811 + components: + - type: Transform + pos: -25.5,42.5 + parent: 2 + - uid: 4812 + components: + - type: Transform + pos: -25.5,43.5 + parent: 2 + - uid: 4813 + components: + - type: Transform + pos: -25.5,44.5 + parent: 2 + - uid: 4814 + components: + - type: Transform + pos: -25.5,45.5 + parent: 2 + - uid: 4815 + components: + - type: Transform + pos: -25.5,46.5 + parent: 2 + - uid: 4816 + components: + - type: Transform + pos: -24.5,46.5 + parent: 2 + - uid: 4817 + components: + - type: Transform + pos: -24.5,47.5 + parent: 2 + - uid: 4818 + components: + - type: Transform + pos: -18.5,42.5 + parent: 2 + - uid: 4819 + components: + - type: Transform + pos: -18.5,43.5 + parent: 2 + - uid: 4820 + components: + - type: Transform + pos: -19.5,43.5 + parent: 2 + - uid: 4821 + components: + - type: Transform + pos: -20.5,43.5 + parent: 2 + - uid: 4822 + components: + - type: Transform + pos: -21.5,43.5 + parent: 2 + - uid: 4823 + components: + - type: Transform + pos: -22.5,43.5 + parent: 2 + - uid: 4824 + components: + - type: Transform + pos: -22.5,44.5 + parent: 2 + - uid: 4825 + components: + - type: Transform + pos: -22.5,45.5 + parent: 2 + - uid: 4826 + components: + - type: Transform + pos: -22.5,46.5 + parent: 2 + - uid: 4827 + components: + - type: Transform + pos: -12.5,36.5 + parent: 2 + - uid: 4828 + components: + - type: Transform + pos: -11.5,36.5 + parent: 2 + - uid: 4829 + components: + - type: Transform + pos: -10.5,36.5 + parent: 2 + - uid: 4830 + components: + - type: Transform + pos: -9.5,36.5 + parent: 2 + - uid: 4831 + components: + - type: Transform + pos: -8.5,36.5 + parent: 2 + - uid: 4832 + components: + - type: Transform + pos: -7.5,36.5 + parent: 2 + - uid: 4833 + components: + - type: Transform + pos: -6.5,36.5 + parent: 2 + - uid: 4834 + components: + - type: Transform + pos: -5.5,36.5 + parent: 2 + - uid: 4835 + components: + - type: Transform + pos: -4.5,36.5 + parent: 2 + - uid: 4836 + components: + - type: Transform + pos: -3.5,36.5 + parent: 2 + - uid: 4837 + components: + - type: Transform + pos: -2.5,36.5 + parent: 2 + - uid: 4838 + components: + - type: Transform + pos: -2.5,37.5 + parent: 2 + - uid: 4839 + components: + - type: Transform + pos: -10.5,21.5 + parent: 2 + - uid: 4840 + components: + - type: Transform + pos: -9.5,21.5 + parent: 2 + - uid: 4841 + components: + - type: Transform + pos: -9.5,22.5 + parent: 2 + - uid: 4842 + components: + - type: Transform + pos: -9.5,23.5 + parent: 2 + - uid: 4843 + components: + - type: Transform + pos: -9.5,24.5 + parent: 2 + - uid: 4844 + components: + - type: Transform + pos: -9.5,25.5 + parent: 2 + - uid: 4845 + components: + - type: Transform + pos: -9.5,26.5 + parent: 2 + - uid: 4846 + components: + - type: Transform + pos: -9.5,27.5 + parent: 2 + - uid: 4847 + components: + - type: Transform + pos: -8.5,27.5 + parent: 2 + - uid: 4848 + components: + - type: Transform + pos: -7.5,27.5 + parent: 2 + - uid: 4849 + components: + - type: Transform + pos: -6.5,27.5 + parent: 2 + - uid: 4850 + components: + - type: Transform + pos: -5.5,27.5 + parent: 2 + - uid: 4851 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 + - uid: 4852 + components: + - type: Transform + pos: -3.5,27.5 + parent: 2 + - uid: 4853 + components: + - type: Transform + pos: -3.5,28.5 + parent: 2 + - uid: 4854 + components: + - type: Transform + pos: -11.5,20.5 + parent: 2 + - uid: 4855 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - uid: 4856 + components: + - type: Transform + pos: -11.5,19.5 + parent: 2 + - uid: 4857 + components: + - type: Transform + pos: -12.5,19.5 + parent: 2 + - uid: 4858 + components: + - type: Transform + pos: -13.5,19.5 + parent: 2 + - uid: 4859 + components: + - type: Transform + pos: -14.5,19.5 + parent: 2 + - uid: 4860 + components: + - type: Transform + pos: -15.5,19.5 + parent: 2 + - uid: 4861 + components: + - type: Transform + pos: -16.5,19.5 + parent: 2 + - uid: 4862 + components: + - type: Transform + pos: -17.5,19.5 + parent: 2 + - uid: 4863 + components: + - type: Transform + pos: -18.5,19.5 + parent: 2 + - uid: 4864 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 + - uid: 4865 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 + - uid: 4866 + components: + - type: Transform + pos: -19.5,18.5 + parent: 2 + - uid: 4867 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - uid: 4868 + components: + - type: Transform + pos: -21.5,18.5 + parent: 2 + - uid: 4869 + components: + - type: Transform + pos: -22.5,18.5 + parent: 2 + - uid: 4870 + components: + - type: Transform + pos: -23.5,18.5 + parent: 2 + - uid: 4871 + components: + - type: Transform + pos: -23.5,16.5 + parent: 2 + - uid: 4872 + components: + - type: Transform + pos: -23.5,16.5 + parent: 2 + - uid: 4873 + components: + - type: Transform + pos: -23.5,17.5 + parent: 2 + - uid: 4874 + components: + - type: Transform + pos: -23.5,15.5 + parent: 2 + - uid: 4875 + components: + - type: Transform + pos: -22.5,19.5 + parent: 2 + - uid: 4876 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 + - uid: 4877 + components: + - type: Transform + pos: -22.5,21.5 + parent: 2 + - uid: 4878 + components: + - type: Transform + pos: -22.5,22.5 + parent: 2 + - uid: 4879 + components: + - type: Transform + pos: -23.5,24.5 + parent: 2 + - uid: 4880 + components: + - type: Transform + pos: -23.5,23.5 + parent: 2 + - uid: 4881 + components: + - type: Transform + pos: -23.5,22.5 + parent: 2 + - uid: 4882 + components: + - type: Transform + pos: -24.5,22.5 + parent: 2 + - uid: 4883 + components: + - type: Transform + pos: -9.5,45.5 + parent: 2 + - uid: 4884 + components: + - type: Transform + pos: -8.5,45.5 + parent: 2 + - uid: 4885 + components: + - type: Transform + pos: -8.5,46.5 + parent: 2 + - uid: 4886 + components: + - type: Transform + pos: -20.5,9.5 + parent: 2 + - uid: 4887 + components: + - type: Transform + pos: -21.5,9.5 + parent: 2 + - uid: 4888 + components: + - type: Transform + pos: -21.5,8.5 + parent: 2 + - uid: 4889 + components: + - type: Transform + pos: -21.5,7.5 + parent: 2 + - uid: 4890 + components: + - type: Transform + pos: -21.5,6.5 + parent: 2 + - uid: 4891 + components: + - type: Transform + pos: -18.5,4.5 + parent: 2 + - uid: 4892 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 + - uid: 4893 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 4894 + components: + - type: Transform + pos: -17.5,6.5 + parent: 2 + - uid: 4895 + components: + - type: Transform + pos: -17.5,7.5 + parent: 2 + - uid: 4896 + components: + - type: Transform + pos: -17.5,8.5 + parent: 2 + - uid: 4897 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 + - uid: 4898 + components: + - type: Transform + pos: -15.5,8.5 + parent: 2 + - uid: 4899 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 + - uid: 4900 + components: + - type: Transform + pos: -13.5,8.5 + parent: 2 + - uid: 4901 + components: + - type: Transform + pos: -13.5,7.5 + parent: 2 + - uid: 4902 + components: + - type: Transform + pos: -13.5,7.5 + parent: 2 + - uid: 4903 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 + - uid: 4904 + components: + - type: Transform + pos: -11.5,7.5 + parent: 2 + - uid: 4905 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 + - uid: 4906 + components: + - type: Transform + pos: -11.5,9.5 + parent: 2 + - uid: 4907 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - uid: 4908 + components: + - type: Transform + pos: -10.5,10.5 + parent: 2 + - uid: 4909 + components: + - type: Transform + pos: -9.5,10.5 + parent: 2 + - uid: 4910 + components: + - type: Transform + pos: -8.5,10.5 + parent: 2 + - uid: 4911 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - uid: 4912 + components: + - type: Transform + pos: -6.5,10.5 + parent: 2 + - uid: 4913 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 + - uid: 4914 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 + - uid: 4915 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - uid: 4916 + components: + - type: Transform + pos: -5.5,12.5 + parent: 2 + - uid: 4917 + components: + - type: Transform + pos: -5.5,13.5 + parent: 2 + - uid: 4918 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - uid: 4919 + components: + - type: Transform + pos: -5.5,15.5 + parent: 2 + - uid: 4920 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 + - uid: 4921 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 + - uid: 4922 + components: + - type: Transform + pos: -3.5,10.5 + parent: 2 + - uid: 4923 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 4924 + components: + - type: Transform + pos: -1.5,10.5 + parent: 2 + - uid: 4925 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 + - uid: 4926 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 4927 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - uid: 4928 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 + - uid: 4929 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 4930 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 + - uid: 4931 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 + - uid: 4932 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - uid: 4933 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - uid: 4934 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 4935 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 4936 + components: + - type: Transform + pos: 7.5,12.5 + parent: 2 + - uid: 4937 + components: + - type: Transform + pos: 8.5,12.5 + parent: 2 + - uid: 4938 + components: + - type: Transform + pos: 9.5,12.5 + parent: 2 + - uid: 4939 + components: + - type: Transform + pos: 10.5,12.5 + parent: 2 + - uid: 4940 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 + - uid: 4941 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - uid: 4942 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2 + - uid: 4943 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - uid: 4944 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - uid: 4945 + components: + - type: Transform + pos: 4.5,14.5 + parent: 2 + - uid: 4946 + components: + - type: Transform + pos: 4.5,15.5 + parent: 2 + - uid: 4947 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - uid: 4948 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - uid: 4949 + components: + - type: Transform + pos: 2.5,16.5 + parent: 2 + - uid: 4950 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 4951 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - uid: 4952 + components: + - type: Transform + pos: -0.5,16.5 + parent: 2 + - uid: 4953 + components: + - type: Transform + pos: -0.5,17.5 + parent: 2 + - uid: 4954 + components: + - type: Transform + pos: -0.5,18.5 + parent: 2 + - uid: 4955 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 4956 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - uid: 4957 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 + - uid: 4958 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 + - uid: 4959 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - uid: 4960 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 4961 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 4962 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 4963 + components: + - type: Transform + pos: 2.5,15.5 + parent: 2 + - uid: 4964 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 4965 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 4966 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 4967 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 4968 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 4969 + components: + - type: Transform + pos: -2.5,68.5 + parent: 2 + - uid: 4970 + components: + - type: Transform + pos: -3.5,68.5 + parent: 2 + - uid: 4971 + components: + - type: Transform + pos: -3.5,69.5 + parent: 2 + - uid: 4972 + components: + - type: Transform + pos: -3.5,67.5 + parent: 2 + - uid: 4973 + components: + - type: Transform + pos: -4.5,67.5 + parent: 2 + - uid: 4974 + components: + - type: Transform + pos: -5.5,67.5 + parent: 2 + - uid: 4975 + components: + - type: Transform + pos: -6.5,67.5 + parent: 2 + - uid: 4976 + components: + - type: Transform + pos: -7.5,67.5 + parent: 2 + - uid: 4977 + components: + - type: Transform + pos: -8.5,67.5 + parent: 2 + - uid: 4978 + components: + - type: Transform + pos: -9.5,67.5 + parent: 2 + - uid: 4979 + components: + - type: Transform + pos: -10.5,67.5 + parent: 2 + - uid: 4980 + components: + - type: Transform + pos: -11.5,67.5 + parent: 2 + - uid: 4981 + components: + - type: Transform + pos: -11.5,66.5 + parent: 2 + - uid: 4982 + components: + - type: Transform + pos: -11.5,65.5 + parent: 2 + - uid: 4983 + components: + - type: Transform + pos: -11.5,64.5 + parent: 2 + - uid: 4984 + components: + - type: Transform + pos: -11.5,63.5 + parent: 2 + - uid: 4985 + components: + - type: Transform + pos: -11.5,62.5 + parent: 2 + - uid: 4986 + components: + - type: Transform + pos: -11.5,61.5 + parent: 2 + - uid: 4987 + components: + - type: Transform + pos: -11.5,60.5 + parent: 2 + - uid: 4988 + components: + - type: Transform + pos: -11.5,59.5 + parent: 2 + - uid: 4989 + components: + - type: Transform + pos: -11.5,58.5 + parent: 2 + - uid: 4990 + components: + - type: Transform + pos: -12.5,64.5 + parent: 2 + - uid: 4991 + components: + - type: Transform + pos: -13.5,64.5 + parent: 2 + - uid: 4992 + components: + - type: Transform + pos: -14.5,64.5 + parent: 2 + - uid: 4993 + components: + - type: Transform + pos: -14.5,65.5 + parent: 2 + - uid: 4994 + components: + - type: Transform + pos: -15.5,66.5 + parent: 2 + - uid: 4995 + components: + - type: Transform + pos: -14.5,66.5 + parent: 2 + - uid: 4996 + components: + - type: Transform + pos: -16.5,66.5 + parent: 2 + - uid: 4997 + components: + - type: Transform + pos: -17.5,66.5 + parent: 2 + - uid: 4998 + components: + - type: Transform + pos: -17.5,67.5 + parent: 2 + - uid: 4999 + components: + - type: Transform + pos: -17.5,68.5 + parent: 2 + - uid: 5000 + components: + - type: Transform + pos: -17.5,69.5 + parent: 2 + - uid: 5001 + components: + - type: Transform + pos: -17.5,70.5 + parent: 2 + - uid: 5002 + components: + - type: Transform + pos: -17.5,71.5 + parent: 2 + - uid: 5003 + components: + - type: Transform + pos: -12.5,58.5 + parent: 2 + - uid: 5004 + components: + - type: Transform + pos: -13.5,58.5 + parent: 2 + - uid: 5005 + components: + - type: Transform + pos: -14.5,58.5 + parent: 2 + - uid: 5006 + components: + - type: Transform + pos: -15.5,58.5 + parent: 2 + - uid: 5007 + components: + - type: Transform + pos: -16.5,58.5 + parent: 2 + - uid: 5008 + components: + - type: Transform + pos: -17.5,58.5 + parent: 2 + - uid: 5009 + components: + - type: Transform + pos: -18.5,58.5 + parent: 2 + - uid: 5010 + components: + - type: Transform + pos: -19.5,58.5 + parent: 2 + - uid: 5011 + components: + - type: Transform + pos: -17.5,57.5 + parent: 2 + - uid: 5012 + components: + - type: Transform + pos: -17.5,56.5 + parent: 2 + - uid: 5013 + components: + - type: Transform + pos: -20.5,58.5 + parent: 2 + - uid: 5014 + components: + - type: Transform + pos: -21.5,58.5 + parent: 2 + - uid: 5015 + components: + - type: Transform + pos: -22.5,58.5 + parent: 2 + - uid: 5016 + components: + - type: Transform + pos: -23.5,58.5 + parent: 2 + - uid: 5017 + components: + - type: Transform + pos: -24.5,58.5 + parent: 2 + - uid: 5018 + components: + - type: Transform + pos: -25.5,58.5 + parent: 2 + - uid: 5019 + components: + - type: Transform + pos: -23.5,59.5 + parent: 2 + - uid: 5020 + components: + - type: Transform + pos: -23.5,60.5 + parent: 2 + - uid: 5021 + components: + - type: Transform + pos: -23.5,61.5 + parent: 2 + - uid: 5022 + components: + - type: Transform + pos: -23.5,62.5 + parent: 2 + - uid: 5023 + components: + - type: Transform + pos: -23.5,63.5 + parent: 2 + - uid: 5024 + components: + - type: Transform + pos: -23.5,64.5 + parent: 2 + - uid: 5025 + components: + - type: Transform + pos: -23.5,65.5 + parent: 2 + - uid: 5026 + components: + - type: Transform + pos: -23.5,66.5 + parent: 2 + - uid: 5027 + components: + - type: Transform + pos: -23.5,67.5 + parent: 2 + - uid: 5028 + components: + - type: Transform + pos: -23.5,68.5 + parent: 2 + - uid: 5029 + components: + - type: Transform + pos: -24.5,68.5 + parent: 2 + - uid: 5030 + components: + - type: Transform + pos: -25.5,68.5 + parent: 2 + - uid: 5031 + components: + - type: Transform + pos: -25.5,69.5 + parent: 2 + - uid: 5032 + components: + - type: Transform + pos: -25.5,70.5 + parent: 2 + - uid: 5033 + components: + - type: Transform + pos: -25.5,71.5 + parent: 2 + - uid: 5034 + components: + - type: Transform + pos: -25.5,72.5 + parent: 2 + - uid: 5035 + components: + - type: Transform + pos: -26.5,58.5 + parent: 2 + - uid: 5036 + components: + - type: Transform + pos: -27.5,58.5 + parent: 2 + - uid: 5037 + components: + - type: Transform + pos: -27.5,57.5 + parent: 2 + - uid: 5038 + components: + - type: Transform + pos: -27.5,56.5 + parent: 2 + - uid: 5039 + components: + - type: Transform + pos: -27.5,55.5 + parent: 2 + - uid: 5040 + components: + - type: Transform + pos: -27.5,54.5 + parent: 2 + - uid: 5041 + components: + - type: Transform + pos: -27.5,53.5 + parent: 2 + - uid: 5042 + components: + - type: Transform + pos: -27.5,52.5 + parent: 2 + - uid: 5043 + components: + - type: Transform + pos: -28.5,52.5 + parent: 2 + - uid: 5044 + components: + - type: Transform + pos: -29.5,52.5 + parent: 2 + - uid: 5045 + components: + - type: Transform + pos: -30.5,52.5 + parent: 2 + - uid: 5046 + components: + - type: Transform + pos: -31.5,52.5 + parent: 2 + - uid: 5047 + components: + - type: Transform + pos: -31.5,53.5 + parent: 2 + - uid: 5048 + components: + - type: Transform + pos: -31.5,54.5 + parent: 2 + - uid: 5049 + components: + - type: Transform + pos: -28.5,58.5 + parent: 2 + - uid: 5050 + components: + - type: Transform + pos: -29.5,58.5 + parent: 2 + - uid: 5051 + components: + - type: Transform + pos: -30.5,58.5 + parent: 2 + - uid: 5052 + components: + - type: Transform + pos: -30.5,59.5 + parent: 2 + - uid: 5053 + components: + - type: Transform + pos: -30.5,59.5 + parent: 2 + - uid: 5054 + components: + - type: Transform + pos: -30.5,60.5 + parent: 2 + - uid: 5055 + components: + - type: Transform + pos: -30.5,61.5 + parent: 2 + - uid: 5056 + components: + - type: Transform + pos: -30.5,62.5 + parent: 2 + - uid: 5057 + components: + - type: Transform + pos: -30.5,63.5 + parent: 2 + - uid: 5058 + components: + - type: Transform + pos: -30.5,64.5 + parent: 2 + - uid: 5059 + components: + - type: Transform + pos: -30.5,65.5 + parent: 2 + - uid: 5060 + components: + - type: Transform + pos: -30.5,66.5 + parent: 2 + - uid: 5061 + components: + - type: Transform + pos: -30.5,67.5 + parent: 2 + - uid: 5062 + components: + - type: Transform + pos: -30.5,68.5 + parent: 2 + - uid: 5063 + components: + - type: Transform + pos: -34.5,68.5 + parent: 2 + - uid: 5067 + components: + - type: Transform + pos: -22.5,75.5 + parent: 2 + - uid: 5070 + components: + - type: Transform + pos: -32.5,68.5 + parent: 2 + - uid: 5071 + components: + - type: Transform + pos: -33.5,68.5 + parent: 2 + - uid: 5072 + components: + - type: Transform + pos: -35.5,68.5 + parent: 2 + - uid: 5073 + components: + - type: Transform + pos: -36.5,68.5 + parent: 2 + - uid: 5074 + components: + - type: Transform + pos: -36.5,67.5 + parent: 2 + - uid: 5075 + components: + - type: Transform + pos: -24.5,72.5 + parent: 2 + - uid: 5076 + components: + - type: Transform + pos: -23.5,72.5 + parent: 2 + - uid: 5077 + components: + - type: Transform + pos: -22.5,72.5 + parent: 2 + - uid: 5078 + components: + - type: Transform + pos: -11.5,68.5 + parent: 2 + - uid: 5079 + components: + - type: Transform + pos: -11.5,69.5 + parent: 2 + - uid: 5081 + components: + - type: Transform + pos: -11.5,71.5 + parent: 2 + - uid: 5083 + components: + - type: Transform + pos: -10.5,71.5 + parent: 2 + - uid: 5084 + components: + - type: Transform + pos: -9.5,71.5 + parent: 2 + - uid: 5085 + components: + - type: Transform + pos: -8.5,71.5 + parent: 2 + - uid: 5086 + components: + - type: Transform + pos: -7.5,71.5 + parent: 2 + - uid: 5087 + components: + - type: Transform + pos: -6.5,71.5 + parent: 2 + - uid: 5088 + components: + - type: Transform + pos: -5.5,71.5 + parent: 2 + - uid: 5089 + components: + - type: Transform + pos: -5.5,70.5 + parent: 2 + - uid: 5090 + components: + - type: Transform + pos: -5.5,69.5 + parent: 2 + - uid: 5091 + components: + - type: Transform + pos: -14.5,63.5 + parent: 2 + - uid: 5092 + components: + - type: Transform + pos: -13.5,63.5 + parent: 2 + - uid: 5093 + components: + - type: Transform + pos: -13.5,62.5 + parent: 2 + - uid: 5094 + components: + - type: Transform + pos: -13.5,61.5 + parent: 2 + - uid: 5095 + components: + - type: Transform + pos: -13.5,60.5 + parent: 2 + - uid: 5096 + components: + - type: Transform + pos: -13.5,59.5 + parent: 2 + - uid: 5097 + components: + - type: Transform + pos: -14.5,59.5 + parent: 2 + - uid: 5098 + components: + - type: Transform + pos: -16.5,59.5 + parent: 2 + - uid: 5099 + components: + - type: Transform + pos: -18.5,59.5 + parent: 2 + - uid: 5100 + components: + - type: Transform + pos: -17.5,65.5 + parent: 2 + - uid: 5101 + components: + - type: Transform + pos: -18.5,65.5 + parent: 2 + - uid: 5102 + components: + - type: Transform + pos: -19.5,65.5 + parent: 2 + - uid: 5103 + components: + - type: Transform + pos: -16.5,56.5 + parent: 2 + - uid: 5104 + components: + - type: Transform + pos: -16.5,55.5 + parent: 2 + - uid: 5105 + components: + - type: Transform + pos: -16.5,54.5 + parent: 2 + - uid: 5106 + components: + - type: Transform + pos: -20.5,57.5 + parent: 2 + - uid: 5107 + components: + - type: Transform + pos: -20.5,56.5 + parent: 2 + - uid: 5108 + components: + - type: Transform + pos: -17.5,55.5 + parent: 2 + - uid: 5109 + components: + - type: Transform + pos: -17.5,54.5 + parent: 2 + - uid: 5110 + components: + - type: Transform + pos: -17.5,53.5 + parent: 2 + - uid: 5111 + components: + - type: Transform + pos: -17.5,52.5 + parent: 2 + - uid: 5112 + components: + - type: Transform + pos: -17.5,51.5 + parent: 2 + - uid: 5113 + components: + - type: Transform + pos: -17.5,50.5 + parent: 2 + - uid: 5114 + components: + - type: Transform + pos: -18.5,50.5 + parent: 2 + - uid: 5115 + components: + - type: Transform + pos: -19.5,50.5 + parent: 2 + - uid: 5116 + components: + - type: Transform + pos: -20.5,50.5 + parent: 2 + - uid: 5117 + components: + - type: Transform + pos: -21.5,50.5 + parent: 2 + - uid: 5118 + components: + - type: Transform + pos: -22.5,50.5 + parent: 2 + - uid: 5119 + components: + - type: Transform + pos: -23.5,50.5 + parent: 2 + - uid: 5120 + components: + - type: Transform + pos: -24.5,50.5 + parent: 2 + - uid: 5121 + components: + - type: Transform + pos: -32.5,52.5 + parent: 2 + - uid: 5122 + components: + - type: Transform + pos: -33.5,52.5 + parent: 2 + - uid: 5123 + components: + - type: Transform + pos: -31.5,58.5 + parent: 2 + - uid: 5124 + components: + - type: Transform + pos: -32.5,58.5 + parent: 2 + - uid: 5125 + components: + - type: Transform + pos: -33.5,58.5 + parent: 2 + - uid: 5126 + components: + - type: Transform + pos: -34.5,58.5 + parent: 2 + - uid: 5127 + components: + - type: Transform + pos: -35.5,58.5 + parent: 2 + - uid: 5128 + components: + - type: Transform + pos: -35.5,57.5 + parent: 2 + - uid: 5129 + components: + - type: Transform + pos: -35.5,56.5 + parent: 2 + - uid: 5130 + components: + - type: Transform + pos: -35.5,55.5 + parent: 2 + - uid: 5131 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 2 + - uid: 5132 + components: + - type: Transform + pos: 29.5,1.5 + parent: 2 + - uid: 5133 + components: + - type: Transform + pos: 29.5,2.5 + parent: 2 + - uid: 5134 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - uid: 5135 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 2 + - uid: 5136 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - uid: 5137 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 + - uid: 5138 + components: + - type: Transform + pos: 41.5,2.5 + parent: 2 + - uid: 5139 + components: + - type: Transform + pos: 42.5,2.5 + parent: 2 + - uid: 5140 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 5141 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 5142 + components: + - type: Transform + pos: 41.5,4.5 + parent: 2 + - uid: 5143 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 5144 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 5145 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - uid: 5146 + components: + - type: Transform + pos: 37.5,4.5 + parent: 2 + - uid: 5147 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - uid: 5148 + components: + - type: Transform + pos: 35.5,4.5 + parent: 2 + - uid: 5149 + components: + - type: Transform + pos: 35.5,5.5 + parent: 2 + - uid: 5150 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 + - uid: 5151 + components: + - type: Transform + pos: 35.5,7.5 + parent: 2 + - uid: 5152 + components: + - type: Transform + pos: 35.5,8.5 + parent: 2 + - uid: 5153 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - uid: 5154 + components: + - type: Transform + pos: 39.5,9.5 + parent: 2 + - uid: 5155 + components: + - type: Transform + pos: 39.5,8.5 + parent: 2 + - uid: 5156 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 + - uid: 5157 + components: + - type: Transform + pos: 37.5,8.5 + parent: 2 + - uid: 5158 + components: + - type: Transform + pos: 36.5,8.5 + parent: 2 + - uid: 5159 + components: + - type: Transform + pos: 39.5,10.5 + parent: 2 + - uid: 5160 + components: + - type: Transform + pos: 39.5,11.5 + parent: 2 + - uid: 5161 + components: + - type: Transform + pos: 39.5,12.5 + parent: 2 + - uid: 5162 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 + - uid: 5163 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 5164 + components: + - type: Transform + pos: 39.5,15.5 + parent: 2 + - uid: 5165 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - uid: 5166 + components: + - type: Transform + pos: 37.5,15.5 + parent: 2 + - uid: 5167 + components: + - type: Transform + pos: 43.5,4.5 + parent: 2 + - uid: 5168 + components: + - type: Transform + pos: 43.5,5.5 + parent: 2 + - uid: 5169 + components: + - type: Transform + pos: 43.5,6.5 + parent: 2 + - uid: 5170 + components: + - type: Transform + pos: 43.5,7.5 + parent: 2 + - uid: 5171 + components: + - type: Transform + pos: 43.5,8.5 + parent: 2 + - uid: 5172 + components: + - type: Transform + pos: 43.5,9.5 + parent: 2 + - uid: 5173 + components: + - type: Transform + pos: 43.5,10.5 + parent: 2 + - uid: 5174 + components: + - type: Transform + pos: 44.5,10.5 + parent: 2 + - uid: 5175 + components: + - type: Transform + pos: 44.5,11.5 + parent: 2 + - uid: 5176 + components: + - type: Transform + pos: 40.5,15.5 + parent: 2 + - uid: 5177 + components: + - type: Transform + pos: 41.5,15.5 + parent: 2 + - uid: 5178 + components: + - type: Transform + pos: 41.5,16.5 + parent: 2 + - uid: 5179 + components: + - type: Transform + pos: 41.5,17.5 + parent: 2 + - uid: 5180 + components: + - type: Transform + pos: 42.5,17.5 + parent: 2 + - uid: 5181 + components: + - type: Transform + pos: 43.5,17.5 + parent: 2 + - uid: 5182 + components: + - type: Transform + pos: 43.5,18.5 + parent: 2 + - uid: 5183 + components: + - type: Transform + pos: 41.5,18.5 + parent: 2 + - uid: 5184 + components: + - type: Transform + pos: 41.5,19.5 + parent: 2 + - uid: 5185 + components: + - type: Transform + pos: 41.5,20.5 + parent: 2 + - uid: 5186 + components: + - type: Transform + pos: 42.5,20.5 + parent: 2 + - uid: 5187 + components: + - type: Transform + pos: 42.5,21.5 + parent: 2 + - uid: 5188 + components: + - type: Transform + pos: 42.5,22.5 + parent: 2 + - uid: 5189 + components: + - type: Transform + pos: 45.5,10.5 + parent: 2 + - uid: 5190 + components: + - type: Transform + pos: 46.5,10.5 + parent: 2 + - uid: 5191 + components: + - type: Transform + pos: 47.5,10.5 + parent: 2 + - uid: 5192 + components: + - type: Transform + pos: 48.5,10.5 + parent: 2 + - uid: 5193 + components: + - type: Transform + pos: 49.5,10.5 + parent: 2 + - uid: 5194 + components: + - type: Transform + pos: 49.5,9.5 + parent: 2 + - uid: 5195 + components: + - type: Transform + pos: 49.5,8.5 + parent: 2 + - uid: 5196 + components: + - type: Transform + pos: 49.5,7.5 + parent: 2 + - uid: 5197 + components: + - type: Transform + pos: 49.5,6.5 + parent: 2 + - uid: 5198 + components: + - type: Transform + pos: 50.5,6.5 + parent: 2 + - uid: 5199 + components: + - type: Transform + pos: 51.5,6.5 + parent: 2 + - uid: 5200 + components: + - type: Transform + pos: 51.5,5.5 + parent: 2 + - uid: 5201 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - uid: 5202 + components: + - type: Transform + pos: 52.5,4.5 + parent: 2 + - uid: 5203 + components: + - type: Transform + pos: 53.5,4.5 + parent: 2 + - uid: 5204 + components: + - type: Transform + pos: 54.5,4.5 + parent: 2 + - uid: 5205 + components: + - type: Transform + pos: 54.5,5.5 + parent: 2 + - uid: 5207 + components: + - type: Transform + pos: -32.5,26.5 + parent: 2 + - uid: 5208 + components: + - type: Transform + pos: -30.5,26.5 + parent: 2 + - uid: 5209 + components: + - type: Transform + pos: -29.5,26.5 + parent: 2 + - uid: 5210 + components: + - type: Transform + pos: -31.5,26.5 + parent: 2 + - uid: 5211 + components: + - type: Transform + pos: -33.5,26.5 + parent: 2 + - uid: 5212 + components: + - type: Transform + pos: -34.5,26.5 + parent: 2 + - uid: 5213 + components: + - type: Transform + pos: -28.5,26.5 + parent: 2 + - uid: 5214 + components: + - type: Transform + pos: -26.5,26.5 + parent: 2 + - uid: 5215 + components: + - type: Transform + pos: -25.5,26.5 + parent: 2 + - uid: 5216 + components: + - type: Transform + pos: -25.5,25.5 + parent: 2 + - uid: 5217 + components: + - type: Transform + pos: -13.5,38.5 + parent: 2 + - uid: 5218 + components: + - type: Transform + pos: -12.5,38.5 + parent: 2 + - uid: 5219 + components: + - type: Transform + pos: -21.5,33.5 + parent: 2 + - uid: 5220 + components: + - type: Transform + pos: -27.5,26.5 + parent: 2 + - uid: 5221 + components: + - type: Transform + pos: -25.5,24.5 + parent: 2 + - uid: 5222 + components: + - type: Transform + pos: -20.5,32.5 + parent: 2 + - uid: 5223 + components: + - type: Transform + pos: -21.5,34.5 + parent: 2 + - uid: 5224 + components: + - type: Transform + pos: -19.5,32.5 + parent: 2 + - uid: 5225 + components: + - type: Transform + pos: -17.5,32.5 + parent: 2 + - uid: 5226 + components: + - type: Transform + pos: -24.5,24.5 + parent: 2 + - uid: 5227 + components: + - type: Transform + pos: -18.5,32.5 + parent: 2 + - uid: 5228 + components: + - type: Transform + pos: -21.5,32.5 + parent: 2 + - uid: 5229 + components: + - type: Transform + pos: -14.5,41.5 + parent: 2 + - uid: 5230 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 5231 + components: + - type: Transform + pos: 49.5,12.5 + parent: 2 + - uid: 5232 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 + - uid: 5233 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 5234 + components: + - type: Transform + pos: 51.5,13.5 + parent: 2 + - uid: 5235 + components: + - type: Transform + pos: 52.5,13.5 + parent: 2 + - uid: 5236 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 5237 + components: + - type: Transform + pos: 54.5,13.5 + parent: 2 + - uid: 5238 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - uid: 5239 + components: + - type: Transform + pos: 55.5,14.5 + parent: 2 + - uid: 5240 + components: + - type: Transform + pos: 55.5,15.5 + parent: 2 + - uid: 5241 + components: + - type: Transform + pos: 55.5,16.5 + parent: 2 + - uid: 5242 + components: + - type: Transform + pos: 55.5,17.5 + parent: 2 + - uid: 5243 + components: + - type: Transform + pos: 55.5,18.5 + parent: 2 + - uid: 5244 + components: + - type: Transform + pos: 54.5,18.5 + parent: 2 + - uid: 5245 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 5246 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 5247 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 5248 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 5249 + components: + - type: Transform + pos: 18.5,8.5 + parent: 2 + - uid: 5250 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - uid: 5251 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 5252 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - uid: 5253 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - uid: 5254 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 + - uid: 5255 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 5256 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 + - uid: 5257 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 5258 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 + - uid: 5259 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 5260 + components: + - type: Transform + pos: 25.5,8.5 + parent: 2 + - uid: 5261 + components: + - type: Transform + pos: 25.5,9.5 + parent: 2 + - uid: 5262 + components: + - type: Transform + pos: 25.5,10.5 + parent: 2 + - uid: 5263 + components: + - type: Transform + pos: 25.5,11.5 + parent: 2 + - uid: 5264 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 5265 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 5266 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 5267 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 + - uid: 5268 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 5269 + components: + - type: Transform + pos: 26.5,16.5 + parent: 2 + - uid: 5270 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 + - uid: 5271 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 5272 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 5273 + components: + - type: Transform + pos: -11.5,57.5 + parent: 2 + - uid: 5274 + components: + - type: Transform + pos: -11.5,56.5 + parent: 2 + - uid: 5275 + components: + - type: Transform + pos: -10.5,56.5 + parent: 2 + - uid: 5276 + components: + - type: Transform + pos: -9.5,56.5 + parent: 2 + - uid: 5277 + components: + - type: Transform + pos: -8.5,56.5 + parent: 2 + - uid: 5278 + components: + - type: Transform + pos: -8.5,57.5 + parent: 2 + - uid: 5279 + components: + - type: Transform + pos: -7.5,56.5 + parent: 2 + - uid: 5280 + components: + - type: Transform + pos: -6.5,56.5 + parent: 2 + - uid: 5281 + components: + - type: Transform + pos: -5.5,56.5 + parent: 2 + - uid: 5282 + components: + - type: Transform + pos: -4.5,56.5 + parent: 2 + - uid: 5283 + components: + - type: Transform + pos: -3.5,56.5 + parent: 2 + - uid: 5284 + components: + - type: Transform + pos: -2.5,56.5 + parent: 2 + - uid: 5285 + components: + - type: Transform + pos: -1.5,56.5 + parent: 2 + - uid: 5286 + components: + - type: Transform + pos: -0.5,56.5 + parent: 2 + - uid: 5287 + components: + - type: Transform + pos: -0.5,57.5 + parent: 2 + - uid: 5288 + components: + - type: Transform + pos: -0.5,58.5 + parent: 2 + - uid: 5289 + components: + - type: Transform + pos: -0.5,59.5 + parent: 2 + - uid: 5290 + components: + - type: Transform + pos: -1.5,59.5 + parent: 2 + - uid: 5291 + components: + - type: Transform + pos: -2.5,59.5 + parent: 2 + - uid: 5292 + components: + - type: Transform + pos: -3.5,64.5 + parent: 2 + - uid: 5293 + components: + - type: Transform + pos: -3.5,63.5 + parent: 2 + - uid: 5294 + components: + - type: Transform + pos: -2.5,63.5 + parent: 2 + - uid: 5295 + components: + - type: Transform + pos: -1.5,63.5 + parent: 2 + - uid: 5296 + components: + - type: Transform + pos: -0.5,63.5 + parent: 2 + - uid: 5297 + components: + - type: Transform + pos: 0.5,63.5 + parent: 2 + - uid: 5298 + components: + - type: Transform + pos: 1.5,63.5 + parent: 2 + - uid: 5299 + components: + - type: Transform + pos: 2.5,63.5 + parent: 2 + - uid: 5300 + components: + - type: Transform + pos: 3.5,63.5 + parent: 2 + - uid: 5301 + components: + - type: Transform + pos: 3.5,65.5 + parent: 2 + - uid: 5302 + components: + - type: Transform + pos: 3.5,64.5 + parent: 2 + - uid: 5303 + components: + - type: Transform + pos: 3.5,65.5 + parent: 2 + - uid: 5304 + components: + - type: Transform + pos: 4.5,64.5 + parent: 2 + - uid: 5305 + components: + - type: Transform + pos: 5.5,64.5 + parent: 2 + - uid: 5306 + components: + - type: Transform + pos: 6.5,64.5 + parent: 2 + - uid: 5307 + components: + - type: Transform + pos: 7.5,64.5 + parent: 2 + - uid: 5308 + components: + - type: Transform + pos: 8.5,64.5 + parent: 2 + - uid: 5309 + components: + - type: Transform + pos: 9.5,64.5 + parent: 2 + - uid: 5310 + components: + - type: Transform + pos: 10.5,64.5 + parent: 2 + - uid: 5311 + components: + - type: Transform + pos: 11.5,64.5 + parent: 2 + - uid: 5312 + components: + - type: Transform + pos: 12.5,64.5 + parent: 2 + - uid: 5313 + components: + - type: Transform + pos: 13.5,64.5 + parent: 2 + - uid: 5314 + components: + - type: Transform + pos: 13.5,65.5 + parent: 2 + - uid: 5315 + components: + - type: Transform + pos: 13.5,66.5 + parent: 2 + - uid: 5316 + components: + - type: Transform + pos: 13.5,67.5 + parent: 2 + - uid: 5317 + components: + - type: Transform + pos: 13.5,68.5 + parent: 2 + - uid: 5318 + components: + - type: Transform + pos: 14.5,68.5 + parent: 2 + - uid: 5319 + components: + - type: Transform + pos: 14.5,69.5 + parent: 2 + - uid: 5320 + components: + - type: Transform + pos: 14.5,70.5 + parent: 2 + - uid: 5321 + components: + - type: Transform + pos: 14.5,71.5 + parent: 2 + - uid: 5322 + components: + - type: Transform + pos: 14.5,72.5 + parent: 2 + - uid: 5323 + components: + - type: Transform + pos: 14.5,73.5 + parent: 2 + - uid: 5324 + components: + - type: Transform + pos: 14.5,74.5 + parent: 2 + - uid: 5325 + components: + - type: Transform + pos: 13.5,74.5 + parent: 2 + - uid: 5326 + components: + - type: Transform + pos: 12.5,74.5 + parent: 2 + - uid: 5327 + components: + - type: Transform + pos: 11.5,74.5 + parent: 2 + - uid: 5328 + components: + - type: Transform + pos: 11.5,75.5 + parent: 2 + - uid: 5329 + components: + - type: Transform + pos: 11.5,76.5 + parent: 2 + - uid: 5330 + components: + - type: Transform + pos: 13.5,63.5 + parent: 2 + - uid: 5331 + components: + - type: Transform + pos: 18.5,60.5 + parent: 2 + - uid: 5332 + components: + - type: Transform + pos: 19.5,60.5 + parent: 2 + - uid: 5333 + components: + - type: Transform + pos: 20.5,60.5 + parent: 2 + - uid: 5334 + components: + - type: Transform + pos: 21.5,60.5 + parent: 2 + - uid: 5335 + components: + - type: Transform + pos: 22.5,60.5 + parent: 2 + - uid: 5336 + components: + - type: Transform + pos: 23.5,60.5 + parent: 2 + - uid: 5337 + components: + - type: Transform + pos: 24.5,60.5 + parent: 2 + - uid: 5338 + components: + - type: Transform + pos: 25.5,60.5 + parent: 2 + - uid: 5339 + components: + - type: Transform + pos: 26.5,60.5 + parent: 2 + - uid: 5340 + components: + - type: Transform + pos: 27.5,60.5 + parent: 2 + - uid: 5341 + components: + - type: Transform + pos: 28.5,60.5 + parent: 2 + - uid: 5342 + components: + - type: Transform + pos: 29.5,60.5 + parent: 2 + - uid: 5343 + components: + - type: Transform + pos: 30.5,60.5 + parent: 2 + - uid: 5344 + components: + - type: Transform + pos: 31.5,60.5 + parent: 2 + - uid: 5345 + components: + - type: Transform + pos: 31.5,61.5 + parent: 2 + - uid: 5346 + components: + - type: Transform + pos: 32.5,61.5 + parent: 2 + - uid: 5347 + components: + - type: Transform + pos: 33.5,61.5 + parent: 2 + - uid: 5348 + components: + - type: Transform + pos: 33.5,62.5 + parent: 2 + - uid: 5349 + components: + - type: Transform + pos: 33.5,63.5 + parent: 2 + - uid: 5350 + components: + - type: Transform + pos: 34.5,63.5 + parent: 2 + - uid: 5351 + components: + - type: Transform + pos: 35.5,63.5 + parent: 2 + - uid: 5352 + components: + - type: Transform + pos: 44.5,17.5 + parent: 2 + - uid: 5353 + components: + - type: Transform + pos: 45.5,17.5 + parent: 2 + - uid: 5354 + components: + - type: Transform + pos: 46.5,17.5 + parent: 2 + - uid: 5355 + components: + - type: Transform + pos: 47.5,17.5 + parent: 2 + - uid: 5356 + components: + - type: Transform + pos: 47.5,18.5 + parent: 2 + - uid: 5357 + components: + - type: Transform + pos: 47.5,19.5 + parent: 2 + - uid: 5358 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 5359 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 + - uid: 5360 + components: + - type: Transform + pos: 47.5,22.5 + parent: 2 + - uid: 5361 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 5362 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 5363 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 5364 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 5365 + components: + - type: Transform + pos: 47.5,27.5 + parent: 2 + - uid: 5366 + components: + - type: Transform + pos: 47.5,28.5 + parent: 2 + - uid: 5367 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 5368 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 5369 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 5370 + components: + - type: Transform + pos: 56.5,13.5 + parent: 2 + - uid: 5371 + components: + - type: Transform + pos: 57.5,13.5 + parent: 2 + - uid: 5372 + components: + - type: Transform + pos: 58.5,13.5 + parent: 2 + - uid: 5373 + components: + - type: Transform + pos: 59.5,13.5 + parent: 2 + - uid: 5374 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 + - uid: 5375 + components: + - type: Transform + pos: 61.5,13.5 + parent: 2 + - uid: 5376 + components: + - type: Transform + pos: 61.5,14.5 + parent: 2 + - uid: 5377 + components: + - type: Transform + pos: 61.5,15.5 + parent: 2 + - uid: 5378 + components: + - type: Transform + pos: 61.5,16.5 + parent: 2 + - uid: 5379 + components: + - type: Transform + pos: 61.5,17.5 + parent: 2 + - uid: 5380 + components: + - type: Transform + pos: 61.5,18.5 + parent: 2 + - uid: 5381 + components: + - type: Transform + pos: 62.5,18.5 + parent: 2 + - uid: 5382 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 + - uid: 5383 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 5384 + components: + - type: Transform + pos: 62.5,21.5 + parent: 2 + - uid: 5385 + components: + - type: Transform + pos: 62.5,22.5 + parent: 2 + - uid: 5386 + components: + - type: Transform + pos: 62.5,23.5 + parent: 2 + - uid: 5387 + components: + - type: Transform + pos: 62.5,24.5 + parent: 2 + - uid: 5388 + components: + - type: Transform + pos: 62.5,25.5 + parent: 2 + - uid: 5389 + components: + - type: Transform + pos: 61.5,25.5 + parent: 2 + - uid: 5390 + components: + - type: Transform + pos: 60.5,25.5 + parent: 2 + - uid: 5391 + components: + - type: Transform + pos: 60.5,26.5 + parent: 2 + - uid: 5392 + components: + - type: Transform + pos: 60.5,27.5 + parent: 2 + - uid: 5393 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 + - uid: 5394 + components: + - type: Transform + pos: 52.5,59.5 + parent: 2 + - uid: 5395 + components: + - type: Transform + pos: 51.5,59.5 + parent: 2 + - uid: 5396 + components: + - type: Transform + pos: 51.5,58.5 + parent: 2 + - uid: 5397 + components: + - type: Transform + pos: 51.5,57.5 + parent: 2 + - uid: 5398 + components: + - type: Transform + pos: 51.5,56.5 + parent: 2 + - uid: 5399 + components: + - type: Transform + pos: 50.5,56.5 + parent: 2 + - uid: 5400 + components: + - type: Transform + pos: 49.5,56.5 + parent: 2 + - uid: 5401 + components: + - type: Transform + pos: 48.5,56.5 + parent: 2 + - uid: 5402 + components: + - type: Transform + pos: 47.5,56.5 + parent: 2 + - uid: 5403 + components: + - type: Transform + pos: 46.5,56.5 + parent: 2 + - uid: 5404 + components: + - type: Transform + pos: 46.5,55.5 + parent: 2 + - uid: 5405 + components: + - type: Transform + pos: 46.5,54.5 + parent: 2 + - uid: 5406 + components: + - type: Transform + pos: 46.5,53.5 + parent: 2 + - uid: 5407 + components: + - type: Transform + pos: 46.5,52.5 + parent: 2 + - uid: 5408 + components: + - type: Transform + pos: 46.5,51.5 + parent: 2 + - uid: 5409 + components: + - type: Transform + pos: 47.5,51.5 + parent: 2 + - uid: 5410 + components: + - type: Transform + pos: 47.5,50.5 + parent: 2 + - uid: 5411 + components: + - type: Transform + pos: 47.5,49.5 + parent: 2 + - uid: 5412 + components: + - type: Transform + pos: 47.5,48.5 + parent: 2 + - uid: 5413 + components: + - type: Transform + pos: 48.5,48.5 + parent: 2 + - uid: 5414 + components: + - type: Transform + pos: 49.5,48.5 + parent: 2 + - uid: 5415 + components: + - type: Transform + pos: 49.5,49.5 + parent: 2 + - uid: 5416 + components: + - type: Transform + pos: 47.5,52.5 + parent: 2 + - uid: 5417 + components: + - type: Transform + pos: 48.5,52.5 + parent: 2 + - uid: 5418 + components: + - type: Transform + pos: 49.5,52.5 + parent: 2 + - uid: 5419 + components: + - type: Transform + pos: 50.5,52.5 + parent: 2 + - uid: 5420 + components: + - type: Transform + pos: 51.5,52.5 + parent: 2 + - uid: 5421 + components: + - type: Transform + pos: 51.5,51.5 + parent: 2 + - uid: 5422 + components: + - type: Transform + pos: 52.5,56.5 + parent: 2 + - uid: 5423 + components: + - type: Transform + pos: 53.5,56.5 + parent: 2 + - uid: 5424 + components: + - type: Transform + pos: 53.5,55.5 + parent: 2 + - uid: 5425 + components: + - type: Transform + pos: 53.5,54.5 + parent: 2 + - uid: 5426 + components: + - type: Transform + pos: 53.5,53.5 + parent: 2 + - uid: 5427 + components: + - type: Transform + pos: 54.5,53.5 + parent: 2 + - uid: 5428 + components: + - type: Transform + pos: 54.5,52.5 + parent: 2 + - uid: 5429 + components: + - type: Transform + pos: 55.5,53.5 + parent: 2 + - uid: 5430 + components: + - type: Transform + pos: 56.5,53.5 + parent: 2 + - uid: 5431 + components: + - type: Transform + pos: 57.5,53.5 + parent: 2 + - uid: 5432 + components: + - type: Transform + pos: 57.5,52.5 + parent: 2 + - uid: 5433 + components: + - type: Transform + pos: 57.5,51.5 + parent: 2 + - uid: 5434 + components: + - type: Transform + pos: 57.5,50.5 + parent: 2 + - uid: 5435 + components: + - type: Transform + pos: 57.5,49.5 + parent: 2 + - uid: 5436 + components: + - type: Transform + pos: 57.5,48.5 + parent: 2 + - uid: 5437 + components: + - type: Transform + pos: 58.5,48.5 + parent: 2 + - uid: 5438 + components: + - type: Transform + pos: 59.5,48.5 + parent: 2 + - uid: 5439 + components: + - type: Transform + pos: 59.5,47.5 + parent: 2 + - uid: 5440 + components: + - type: Transform + pos: 60.5,47.5 + parent: 2 + - uid: 5441 + components: + - type: Transform + pos: 60.5,46.5 + parent: 2 + - uid: 5442 + components: + - type: Transform + pos: 60.5,45.5 + parent: 2 + - uid: 5443 + components: + - type: Transform + pos: 60.5,44.5 + parent: 2 + - uid: 5444 + components: + - type: Transform + pos: 60.5,43.5 + parent: 2 + - uid: 5445 + components: + - type: Transform + pos: 61.5,43.5 + parent: 2 + - uid: 5446 + components: + - type: Transform + pos: 62.5,43.5 + parent: 2 + - uid: 5447 + components: + - type: Transform + pos: 63.5,43.5 + parent: 2 + - uid: 5448 + components: + - type: Transform + pos: 45.5,53.5 + parent: 2 + - uid: 5449 + components: + - type: Transform + pos: 35.5,64.5 + parent: 2 + - uid: 5450 + components: + - type: Transform + pos: 36.5,64.5 + parent: 2 + - uid: 5451 + components: + - type: Transform + pos: 31.5,59.5 + parent: 2 + - uid: 5452 + components: + - type: Transform + pos: 31.5,58.5 + parent: 2 + - uid: 5453 + components: + - type: Transform + pos: 31.5,57.5 + parent: 2 + - uid: 5454 + components: + - type: Transform + pos: 30.5,59.5 + parent: 2 + - uid: 5455 + components: + - type: Transform + pos: 29.5,59.5 + parent: 2 + - uid: 5456 + components: + - type: Transform + pos: 34.5,61.5 + parent: 2 + - uid: 5457 + components: + - type: Transform + pos: 35.5,61.5 + parent: 2 + - uid: 5458 + components: + - type: Transform + pos: 35.5,60.5 + parent: 2 + - uid: 5459 + components: + - type: Transform + pos: 35.5,59.5 + parent: 2 + - uid: 5460 + components: + - type: Transform + pos: 35.5,58.5 + parent: 2 + - uid: 5461 + components: + - type: Transform + pos: 36.5,58.5 + parent: 2 + - uid: 5462 + components: + - type: Transform + pos: 37.5,58.5 + parent: 2 + - uid: 5463 + components: + - type: Transform + pos: 35.5,50.5 + parent: 2 + - uid: 5464 + components: + - type: Transform + pos: 36.5,50.5 + parent: 2 + - uid: 5465 + components: + - type: Transform + pos: 37.5,50.5 + parent: 2 + - uid: 5466 + components: + - type: Transform + pos: 34.5,50.5 + parent: 2 + - uid: 5467 + components: + - type: Transform + pos: 33.5,50.5 + parent: 2 + - uid: 5468 + components: + - type: Transform + pos: 32.5,50.5 + parent: 2 + - uid: 5469 + components: + - type: Transform + pos: 31.5,50.5 + parent: 2 + - uid: 5470 + components: + - type: Transform + pos: 31.5,51.5 + parent: 2 + - uid: 5471 + components: + - type: Transform + pos: 30.5,50.5 + parent: 2 + - uid: 5472 + components: + - type: Transform + pos: 29.5,50.5 + parent: 2 + - uid: 5473 + components: + - type: Transform + pos: 27.5,50.5 + parent: 2 + - uid: 5474 + components: + - type: Transform + pos: 28.5,50.5 + parent: 2 + - uid: 5475 + components: + - type: Transform + pos: 29.5,51.5 + parent: 2 + - uid: 5476 + components: + - type: Transform + pos: 45.5,51.5 + parent: 2 + - uid: 5477 + components: + - type: Transform + pos: 44.5,51.5 + parent: 2 + - uid: 5478 + components: + - type: Transform + pos: 44.5,50.5 + parent: 2 + - uid: 5479 + components: + - type: Transform + pos: 44.5,49.5 + parent: 2 + - uid: 5480 + components: + - type: Transform + pos: 44.5,48.5 + parent: 2 + - uid: 5481 + components: + - type: Transform + pos: 43.5,48.5 + parent: 2 + - uid: 5482 + components: + - type: Transform + pos: 42.5,48.5 + parent: 2 + - uid: 5483 + components: + - type: Transform + pos: 41.5,48.5 + parent: 2 + - uid: 5484 + components: + - type: Transform + pos: 40.5,48.5 + parent: 2 + - uid: 5485 + components: + - type: Transform + pos: 39.5,48.5 + parent: 2 + - uid: 5486 + components: + - type: Transform + pos: 38.5,48.5 + parent: 2 + - uid: 5487 + components: + - type: Transform + pos: 37.5,48.5 + parent: 2 + - uid: 5488 + components: + - type: Transform + pos: 37.5,42.5 + parent: 2 + - uid: 5489 + components: + - type: Transform + pos: 37.5,43.5 + parent: 2 + - uid: 5490 + components: + - type: Transform + pos: 37.5,46.5 + parent: 2 + - uid: 5491 + components: + - type: Transform + pos: 37.5,45.5 + parent: 2 + - uid: 5492 + components: + - type: Transform + pos: 37.5,47.5 + parent: 2 + - uid: 5493 + components: + - type: Transform + pos: 37.5,44.5 + parent: 2 + - uid: 5494 + components: + - type: Transform + pos: 45.5,56.5 + parent: 2 + - uid: 5495 + components: + - type: Transform + pos: 44.5,56.5 + parent: 2 + - uid: 5496 + components: + - type: Transform + pos: 43.5,56.5 + parent: 2 + - uid: 5497 + components: + - type: Transform + pos: 42.5,56.5 + parent: 2 + - uid: 5498 + components: + - type: Transform + pos: 41.5,56.5 + parent: 2 + - uid: 5499 + components: + - type: Transform + pos: 40.5,56.5 + parent: 2 + - uid: 5500 + components: + - type: Transform + pos: 39.5,56.5 + parent: 2 + - uid: 5501 + components: + - type: Transform + pos: 39.5,55.5 + parent: 2 + - uid: 5502 + components: + - type: Transform + pos: 42.5,23.5 + parent: 2 + - uid: 5503 + components: + - type: Transform + pos: 41.5,23.5 + parent: 2 + - uid: 5504 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 + - uid: 5505 + components: + - type: Transform + pos: 40.5,24.5 + parent: 2 + - uid: 5506 + components: + - type: Transform + pos: 40.5,25.5 + parent: 2 + - uid: 5507 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - uid: 5508 + components: + - type: Transform + pos: 41.5,24.5 + parent: 2 + - uid: 5509 + components: + - type: Transform + pos: 40.5,26.5 + parent: 2 + - uid: 5510 + components: + - type: Transform + pos: 40.5,27.5 + parent: 2 + - uid: 5511 + components: + - type: Transform + pos: 40.5,28.5 + parent: 2 + - uid: 5512 + components: + - type: Transform + pos: 40.5,29.5 + parent: 2 + - uid: 5513 + components: + - type: Transform + pos: 40.5,30.5 + parent: 2 + - uid: 5514 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 + - uid: 5515 + components: + - type: Transform + pos: 41.5,31.5 + parent: 2 + - uid: 5516 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 5517 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 5518 + components: + - type: Transform + pos: 39.5,30.5 + parent: 2 + - uid: 5519 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 5520 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 5521 + components: + - type: Transform + pos: 20.5,43.5 + parent: 2 + - uid: 5522 + components: + - type: Transform + pos: 21.5,43.5 + parent: 2 + - uid: 5523 + components: + - type: Transform + pos: 21.5,44.5 + parent: 2 + - uid: 5524 + components: + - type: Transform + pos: 22.5,44.5 + parent: 2 + - uid: 5525 + components: + - type: Transform + pos: 23.5,44.5 + parent: 2 + - uid: 5526 + components: + - type: Transform + pos: 23.5,43.5 + parent: 2 + - uid: 5527 + components: + - type: Transform + pos: 23.5,42.5 + parent: 2 + - uid: 5528 + components: + - type: Transform + pos: 23.5,41.5 + parent: 2 + - uid: 5529 + components: + - type: Transform + pos: 23.5,40.5 + parent: 2 + - uid: 5530 + components: + - type: Transform + pos: 23.5,39.5 + parent: 2 + - uid: 5531 + components: + - type: Transform + pos: 23.5,38.5 + parent: 2 + - uid: 5532 + components: + - type: Transform + pos: 23.5,37.5 + parent: 2 + - uid: 5533 + components: + - type: Transform + pos: 23.5,36.5 + parent: 2 + - uid: 5534 + components: + - type: Transform + pos: 23.5,35.5 + parent: 2 + - uid: 5535 + components: + - type: Transform + pos: 23.5,34.5 + parent: 2 + - uid: 5536 + components: + - type: Transform + pos: 23.5,33.5 + parent: 2 + - uid: 5537 + components: + - type: Transform + pos: 22.5,33.5 + parent: 2 + - uid: 5538 + components: + - type: Transform + pos: 21.5,33.5 + parent: 2 + - uid: 5539 + components: + - type: Transform + pos: 20.5,33.5 + parent: 2 + - uid: 5540 + components: + - type: Transform + pos: 19.5,33.5 + parent: 2 + - uid: 5541 + components: + - type: Transform + pos: 18.5,33.5 + parent: 2 + - uid: 5542 + components: + - type: Transform + pos: 18.5,34.5 + parent: 2 + - uid: 5543 + components: + - type: Transform + pos: 18.5,35.5 + parent: 2 + - uid: 5544 + components: + - type: Transform + pos: 18.5,36.5 + parent: 2 + - uid: 5545 + components: + - type: Transform + pos: 18.5,37.5 + parent: 2 + - uid: 5546 + components: + - type: Transform + pos: 18.5,38.5 + parent: 2 + - uid: 5547 + components: + - type: Transform + pos: 19.5,38.5 + parent: 2 + - uid: 5548 + components: + - type: Transform + pos: 19.5,39.5 + parent: 2 + - uid: 5549 + components: + - type: Transform + pos: 19.5,40.5 + parent: 2 + - uid: 5550 + components: + - type: Transform + pos: 19.5,41.5 + parent: 2 + - uid: 5551 + components: + - type: Transform + pos: 20.5,44.5 + parent: 2 + - uid: 5552 + components: + - type: Transform + pos: 19.5,44.5 + parent: 2 + - uid: 5553 + components: + - type: Transform + pos: 17.5,35.5 + parent: 2 + - uid: 5554 + components: + - type: Transform + pos: 16.5,35.5 + parent: 2 + - uid: 5555 + components: + - type: Transform + pos: 15.5,35.5 + parent: 2 + - uid: 5556 + components: + - type: Transform + pos: 14.5,35.5 + parent: 2 + - uid: 5557 + components: + - type: Transform + pos: 14.5,36.5 + parent: 2 + - uid: 5558 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - uid: 5559 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 + - uid: 5560 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - uid: 5561 + components: + - type: Transform + pos: 14.5,40.5 + parent: 2 + - uid: 5562 + components: + - type: Transform + pos: 14.5,41.5 + parent: 2 + - uid: 5563 + components: + - type: Transform + pos: 15.5,41.5 + parent: 2 + - uid: 5564 + components: + - type: Transform + pos: 15.5,42.5 + parent: 2 + - uid: 5565 + components: + - type: Transform + pos: 15.5,38.5 + parent: 2 + - uid: 5566 + components: + - type: Transform + pos: 14.5,34.5 + parent: 2 + - uid: 5567 + components: + - type: Transform + pos: 24.5,36.5 + parent: 2 + - uid: 5568 + components: + - type: Transform + pos: 25.5,36.5 + parent: 2 + - uid: 5569 + components: + - type: Transform + pos: 26.5,36.5 + parent: 2 + - uid: 5570 + components: + - type: Transform + pos: 26.5,37.5 + parent: 2 + - uid: 5571 + components: + - type: Transform + pos: 13.5,40.5 + parent: 2 + - uid: 5572 + components: + - type: Transform + pos: 12.5,40.5 + parent: 2 + - uid: 5573 + components: + - type: Transform + pos: 11.5,40.5 + parent: 2 + - uid: 5574 + components: + - type: Transform + pos: 10.5,40.5 + parent: 2 + - uid: 5575 + components: + - type: Transform + pos: 14.5,34.5 + parent: 2 + - uid: 5576 + components: + - type: Transform + pos: 13.5,34.5 + parent: 2 + - uid: 5577 + components: + - type: Transform + pos: 12.5,34.5 + parent: 2 + - uid: 5578 + components: + - type: Transform + pos: 11.5,34.5 + parent: 2 + - uid: 5579 + components: + - type: Transform + pos: 10.5,34.5 + parent: 2 + - uid: 5580 + components: + - type: Transform + pos: 9.5,34.5 + parent: 2 + - uid: 5581 + components: + - type: Transform + pos: 8.5,34.5 + parent: 2 + - uid: 5582 + components: + - type: Transform + pos: 8.5,33.5 + parent: 2 + - uid: 5583 + components: + - type: Transform + pos: 8.5,32.5 + parent: 2 + - uid: 5584 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - uid: 5585 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - uid: 5586 + components: + - type: Transform + pos: 8.5,29.5 + parent: 2 + - uid: 5587 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 + - uid: 5588 + components: + - type: Transform + pos: 6.5,29.5 + parent: 2 + - uid: 5589 + components: + - type: Transform + pos: 6.5,30.5 + parent: 2 + - uid: 5590 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - uid: 5591 + components: + - type: Transform + pos: 9.5,31.5 + parent: 2 + - uid: 5592 + components: + - type: Transform + pos: 10.5,31.5 + parent: 2 + - uid: 5593 + components: + - type: Transform + pos: 11.5,31.5 + parent: 2 + - uid: 5594 + components: + - type: Transform + pos: 12.5,31.5 + parent: 2 + - uid: 5595 + components: + - type: Transform + pos: 13.5,31.5 + parent: 2 + - uid: 5596 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 + - uid: 5597 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - uid: 5598 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 + - uid: 5599 + components: + - type: Transform + pos: 13.5,27.5 + parent: 2 + - uid: 5600 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 + - uid: 5601 + components: + - type: Transform + pos: 83.5,46.5 + parent: 2 + - uid: 5602 + components: + - type: Transform + pos: 82.5,46.5 + parent: 2 + - uid: 5603 + components: + - type: Transform + pos: 81.5,46.5 + parent: 2 + - uid: 5604 + components: + - type: Transform + pos: 81.5,47.5 + parent: 2 + - uid: 5605 + components: + - type: Transform + pos: 80.5,47.5 + parent: 2 + - uid: 5606 + components: + - type: Transform + pos: 79.5,47.5 + parent: 2 + - uid: 5607 + components: + - type: Transform + pos: 78.5,47.5 + parent: 2 + - uid: 5608 + components: + - type: Transform + pos: 77.5,47.5 + parent: 2 + - uid: 5609 + components: + - type: Transform + pos: 77.5,46.5 + parent: 2 + - uid: 5610 + components: + - type: Transform + pos: 81.5,45.5 + parent: 2 + - uid: 5611 + components: + - type: Transform + pos: 81.5,44.5 + parent: 2 + - uid: 5612 + components: + - type: Transform + pos: 81.5,43.5 + parent: 2 + - uid: 5613 + components: + - type: Transform + pos: 81.5,42.5 + parent: 2 + - uid: 5614 + components: + - type: Transform + pos: 81.5,41.5 + parent: 2 + - uid: 5615 + components: + - type: Transform + pos: 81.5,40.5 + parent: 2 + - uid: 5616 + components: + - type: Transform + pos: 81.5,39.5 + parent: 2 + - uid: 5617 + components: + - type: Transform + pos: 80.5,39.5 + parent: 2 + - uid: 5618 + components: + - type: Transform + pos: 79.5,39.5 + parent: 2 + - uid: 5619 + components: + - type: Transform + pos: 81.5,38.5 + parent: 2 + - uid: 5620 + components: + - type: Transform + pos: 81.5,37.5 + parent: 2 + - uid: 5621 + components: + - type: Transform + pos: 81.5,36.5 + parent: 2 + - uid: 5622 + components: + - type: Transform + pos: 80.5,36.5 + parent: 2 + - uid: 5623 + components: + - type: Transform + pos: 79.5,36.5 + parent: 2 + - uid: 5624 + components: + - type: Transform + pos: 78.5,36.5 + parent: 2 + - uid: 5625 + components: + - type: Transform + pos: 78.5,35.5 + parent: 2 + - uid: 5626 + components: + - type: Transform + pos: 78.5,34.5 + parent: 2 + - uid: 5627 + components: + - type: Transform + pos: 78.5,33.5 + parent: 2 + - uid: 5628 + components: + - type: Transform + pos: 77.5,34.5 + parent: 2 + - uid: 5629 + components: + - type: Transform + pos: 76.5,34.5 + parent: 2 + - uid: 5630 + components: + - type: Transform + pos: 75.5,34.5 + parent: 2 + - uid: 5631 + components: + - type: Transform + pos: 74.5,34.5 + parent: 2 + - uid: 5632 + components: + - type: Transform + pos: 74.5,35.5 + parent: 2 + - uid: 5633 + components: + - type: Transform + pos: 74.5,33.5 + parent: 2 + - uid: 5634 + components: + - type: Transform + pos: 81.5,35.5 + parent: 2 + - uid: 5635 + components: + - type: Transform + pos: 81.5,34.5 + parent: 2 + - uid: 5636 + components: + - type: Transform + pos: 81.5,33.5 + parent: 2 + - uid: 5637 + components: + - type: Transform + pos: 81.5,32.5 + parent: 2 + - uid: 5638 + components: + - type: Transform + pos: 81.5,31.5 + parent: 2 + - uid: 5639 + components: + - type: Transform + pos: 81.5,30.5 + parent: 2 + - uid: 5640 + components: + - type: Transform + pos: 81.5,29.5 + parent: 2 + - uid: 5641 + components: + - type: Transform + pos: 81.5,28.5 + parent: 2 + - uid: 5642 + components: + - type: Transform + pos: 81.5,27.5 + parent: 2 + - uid: 5643 + components: + - type: Transform + pos: 81.5,26.5 + parent: 2 + - uid: 5644 + components: + - type: Transform + pos: 81.5,25.5 + parent: 2 + - uid: 5645 + components: + - type: Transform + pos: 81.5,24.5 + parent: 2 + - uid: 5646 + components: + - type: Transform + pos: 80.5,24.5 + parent: 2 + - uid: 5647 + components: + - type: Transform + pos: 79.5,24.5 + parent: 2 + - uid: 5648 + components: + - type: Transform + pos: 80.5,30.5 + parent: 2 + - uid: 5649 + components: + - type: Transform + pos: 79.5,30.5 + parent: 2 + - uid: 5650 + components: + - type: Transform + pos: 78.5,30.5 + parent: 2 + - uid: 5651 + components: + - type: Transform + pos: 77.5,30.5 + parent: 2 + - uid: 5652 + components: + - type: Transform + pos: 76.5,30.5 + parent: 2 + - uid: 5653 + components: + - type: Transform + pos: 75.5,30.5 + parent: 2 + - uid: 5654 + components: + - type: Transform + pos: 75.5,31.5 + parent: 2 + - uid: 5655 + components: + - type: Transform + pos: 75.5,32.5 + parent: 2 + - uid: 5656 + components: + - type: Transform + pos: 78.5,29.5 + parent: 2 + - uid: 5657 + components: + - type: Transform + pos: 78.5,28.5 + parent: 2 + - uid: 5658 + components: + - type: Transform + pos: 78.5,27.5 + parent: 2 + - uid: 5659 + components: + - type: Transform + pos: 74.5,31.5 + parent: 2 + - uid: 5660 + components: + - type: Transform + pos: 73.5,31.5 + parent: 2 + - uid: 5661 + components: + - type: Transform + pos: 72.5,31.5 + parent: 2 + - uid: 5662 + components: + - type: Transform + pos: 71.5,31.5 + parent: 2 + - uid: 5663 + components: + - type: Transform + pos: 70.5,31.5 + parent: 2 + - uid: 5664 + components: + - type: Transform + pos: 69.5,31.5 + parent: 2 + - uid: 5666 + components: + - type: Transform + pos: 79.5,23.5 + parent: 2 + - uid: 5667 + components: + - type: Transform + pos: 78.5,23.5 + parent: 2 + - uid: 5668 + components: + - type: Transform + pos: 77.5,23.5 + parent: 2 + - uid: 5669 + components: + - type: Transform + pos: 53.5,57.5 + parent: 2 + - uid: 5670 + components: + - type: Transform + pos: 54.5,57.5 + parent: 2 + - uid: 5671 + components: + - type: Transform + pos: 55.5,57.5 + parent: 2 + - uid: 5672 + components: + - type: Transform + pos: 56.5,57.5 + parent: 2 + - uid: 5673 + components: + - type: Transform + pos: 57.5,57.5 + parent: 2 + - uid: 5674 + components: + - type: Transform + pos: 58.5,57.5 + parent: 2 + - uid: 5675 + components: + - type: Transform + pos: 59.5,57.5 + parent: 2 + - uid: 5676 + components: + - type: Transform + pos: 59.5,58.5 + parent: 2 + - uid: 5677 + components: + - type: Transform + pos: 76.5,13.5 + parent: 2 + - uid: 5678 + components: + - type: Transform + pos: 75.5,13.5 + parent: 2 + - uid: 5679 + components: + - type: Transform + pos: 75.5,14.5 + parent: 2 + - uid: 5680 + components: + - type: Transform + pos: 75.5,15.5 + parent: 2 + - uid: 5681 + components: + - type: Transform + pos: 75.5,16.5 + parent: 2 + - uid: 5682 + components: + - type: Transform + pos: 75.5,17.5 + parent: 2 + - uid: 5683 + components: + - type: Transform + pos: 74.5,17.5 + parent: 2 + - uid: 5684 + components: + - type: Transform + pos: 74.5,18.5 + parent: 2 + - uid: 5685 + components: + - type: Transform + pos: 73.5,18.5 + parent: 2 + - uid: 5686 + components: + - type: Transform + pos: 72.5,18.5 + parent: 2 + - uid: 5687 + components: + - type: Transform + pos: 70.5,18.5 + parent: 2 + - uid: 5688 + components: + - type: Transform + pos: 71.5,18.5 + parent: 2 + - uid: 5689 + components: + - type: Transform + pos: 70.5,19.5 + parent: 2 + - uid: 5690 + components: + - type: Transform + pos: 70.5,20.5 + parent: 2 + - uid: 5691 + components: + - type: Transform + pos: 70.5,21.5 + parent: 2 + - uid: 5692 + components: + - type: Transform + pos: 70.5,22.5 + parent: 2 + - uid: 5693 + components: + - type: Transform + pos: 74.5,16.5 + parent: 2 + - uid: 5694 + components: + - type: Transform + pos: 73.5,16.5 + parent: 2 + - uid: 5695 + components: + - type: Transform + pos: 69.5,18.5 + parent: 2 + - uid: 5696 + components: + - type: Transform + pos: 68.5,18.5 + parent: 2 + - uid: 5697 + components: + - type: Transform + pos: 67.5,18.5 + parent: 2 + - uid: 5698 + components: + - type: Transform + pos: 66.5,18.5 + parent: 2 + - uid: 5699 + components: + - type: Transform + pos: 65.5,18.5 + parent: 2 + - uid: 5700 + components: + - type: Transform + pos: 65.5,17.5 + parent: 2 + - uid: 5701 + components: + - type: Transform + pos: 65.5,16.5 + parent: 2 + - uid: 5702 + components: + - type: Transform + pos: 65.5,15.5 + parent: 2 + - uid: 5703 + components: + - type: Transform + pos: 65.5,14.5 + parent: 2 + - uid: 5704 + components: + - type: Transform + pos: 65.5,13.5 + parent: 2 + - uid: 5705 + components: + - type: Transform + pos: 65.5,12.5 + parent: 2 + - uid: 5706 + components: + - type: Transform + pos: 65.5,11.5 + parent: 2 + - uid: 5707 + components: + - type: Transform + pos: 65.5,10.5 + parent: 2 + - uid: 5708 + components: + - type: Transform + pos: 65.5,9.5 + parent: 2 + - uid: 5709 + components: + - type: Transform + pos: 65.5,8.5 + parent: 2 + - uid: 5710 + components: + - type: Transform + pos: 65.5,7.5 + parent: 2 + - uid: 5711 + components: + - type: Transform + pos: 65.5,6.5 + parent: 2 + - uid: 5712 + components: + - type: Transform + pos: 64.5,6.5 + parent: 2 + - uid: 5713 + components: + - type: Transform + pos: 63.5,6.5 + parent: 2 + - uid: 5714 + components: + - type: Transform + pos: 62.5,6.5 + parent: 2 + - uid: 5715 + components: + - type: Transform + pos: 15.5,30.5 + parent: 2 + - uid: 5716 + components: + - type: Transform + pos: 14.5,30.5 + parent: 2 + - uid: 5717 + components: + - type: Transform + pos: 16.5,30.5 + parent: 2 + - uid: 5718 + components: + - type: Transform + pos: 17.5,30.5 + parent: 2 + - uid: 5719 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 5720 + components: + - type: Transform + pos: 17.5,28.5 + parent: 2 + - uid: 5721 + components: + - type: Transform + pos: 17.5,27.5 + parent: 2 + - uid: 5722 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 5723 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 + - uid: 5724 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 5725 + components: + - type: Transform + pos: 18.5,24.5 + parent: 2 + - uid: 5726 + components: + - type: Transform + pos: 19.5,24.5 + parent: 2 + - uid: 5727 + components: + - type: Transform + pos: 20.5,24.5 + parent: 2 + - uid: 5728 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 5729 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 + - uid: 5730 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - uid: 5731 + components: + - type: Transform + pos: 22.5,26.5 + parent: 2 + - uid: 5732 + components: + - type: Transform + pos: 22.5,27.5 + parent: 2 + - uid: 5733 + components: + - type: Transform + pos: 23.5,27.5 + parent: 2 + - uid: 5734 + components: + - type: Transform + pos: 24.5,27.5 + parent: 2 + - uid: 5735 + components: + - type: Transform + pos: -30.5,37.5 + parent: 2 + - uid: 5736 + components: + - type: Transform + pos: -31.5,37.5 + parent: 2 + - uid: 5737 + components: + - type: Transform + pos: -32.5,37.5 + parent: 2 + - uid: 5738 + components: + - type: Transform + pos: -32.5,38.5 + parent: 2 + - uid: 5739 + components: + - type: Transform + pos: -32.5,39.5 + parent: 2 + - uid: 5740 + components: + - type: Transform + pos: -32.5,40.5 + parent: 2 + - uid: 5741 + components: + - type: Transform + pos: -17.5,72.5 + parent: 2 + - uid: 5742 + components: + - type: Transform + pos: -22.5,41.5 + parent: 2 + - uid: 5743 + components: + - type: Transform + pos: -16.5,41.5 + parent: 2 + - uid: 5744 + components: + - type: Transform + pos: -15.5,41.5 + parent: 2 + - uid: 5745 + components: + - type: Transform + pos: -18.5,41.5 + parent: 2 + - uid: 5746 + components: + - type: Transform + pos: -17.5,41.5 + parent: 2 + - uid: 5747 + components: + - type: Transform + pos: -23.5,41.5 + parent: 2 + - uid: 5748 + components: + - type: Transform + pos: -24.5,41.5 + parent: 2 + - uid: 5749 + components: + - type: Transform + pos: -24.5,41.5 + parent: 2 + - uid: 5757 + components: + - type: Transform + pos: -17.5,73.5 + parent: 2 + - uid: 5760 + components: + - type: Transform + pos: -19.5,74.5 + parent: 2 + - uid: 5761 + components: + - type: Transform + pos: -18.5,74.5 + parent: 2 + - uid: 5762 + components: + - type: Transform + pos: -17.5,74.5 + parent: 2 + - uid: 5763 + components: + - type: Transform + pos: -16.5,74.5 + parent: 2 + - uid: 5764 + components: + - type: Transform + pos: -15.5,74.5 + parent: 2 + - uid: 5765 + components: + - type: Transform + pos: -14.5,74.5 + parent: 2 + - uid: 5766 + components: + - type: Transform + pos: -13.5,74.5 + parent: 2 + - uid: 5767 + components: + - type: Transform + pos: -13.5,76.5 + parent: 2 + - uid: 5768 + components: + - type: Transform + pos: -14.5,76.5 + parent: 2 + - uid: 5769 + components: + - type: Transform + pos: -15.5,76.5 + parent: 2 + - uid: 5770 + components: + - type: Transform + pos: -16.5,76.5 + parent: 2 + - uid: 5771 + components: + - type: Transform + pos: -17.5,76.5 + parent: 2 + - uid: 5772 + components: + - type: Transform + pos: -18.5,76.5 + parent: 2 + - uid: 5773 + components: + - type: Transform + pos: -19.5,76.5 + parent: 2 + - uid: 5774 + components: + - type: Transform + pos: -20.5,76.5 + parent: 2 + - uid: 5775 + components: + - type: Transform + pos: -21.5,76.5 + parent: 2 + - uid: 5776 + components: + - type: Transform + pos: -17.5,75.5 + parent: 2 + - uid: 5777 + components: + - type: Transform + pos: -12.5,37.5 + parent: 2 + - uid: 5778 + components: + - type: Transform + pos: -6.5,16.5 + parent: 2 + - uid: 5779 + components: + - type: Transform + pos: -6.5,17.5 + parent: 2 + - uid: 5780 + components: + - type: Transform + pos: -6.5,18.5 + parent: 2 + - uid: 5781 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - uid: 5782 + components: + - type: Transform + pos: 36.5,59.5 + parent: 2 + - uid: 5783 + components: + - type: Transform + pos: 37.5,59.5 + parent: 2 + - uid: 5784 + components: + - type: Transform + pos: 38.5,59.5 + parent: 2 + - uid: 5785 + components: + - type: Transform + pos: 39.5,59.5 + parent: 2 + - uid: 5786 + components: + - type: Transform + pos: 39.5,58.5 + parent: 2 + - uid: 5787 + components: + - type: Transform + pos: 39.5,57.5 + parent: 2 + - uid: 5788 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 + - uid: 5789 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 5790 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 5791 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 2 + - uid: 5792 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 2 + - uid: 5793 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 + - uid: 5794 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 + - uid: 5795 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 2 + - uid: 5796 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 2 + - uid: 5797 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 2 + - uid: 5798 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 5799 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 2 + - uid: 6656 + components: + - type: Transform + pos: -24.5,75.5 + parent: 2 + - uid: 6657 + components: + - type: Transform + pos: -23.5,74.5 + parent: 2 + - uid: 12073 + components: + - type: Transform + pos: -31.5,68.5 + parent: 2 + - uid: 12538 + components: + - type: Transform + pos: -11.5,70.5 + parent: 2 + - uid: 13971 + components: + - type: Transform + pos: -23.5,75.5 + parent: 2 + - uid: 15141 + components: + - type: Transform + pos: -23.5,73.5 + parent: 2 + - uid: 19420 + components: + - type: Transform + pos: -36.5,71.5 + parent: 2 + - uid: 19421 + components: + - type: Transform + pos: -35.5,71.5 + parent: 2 + - uid: 19422 + components: + - type: Transform + pos: -35.5,72.5 + parent: 2 + - uid: 19423 + components: + - type: Transform + pos: -35.5,73.5 + parent: 2 + - uid: 19424 + components: + - type: Transform + pos: -35.5,74.5 + parent: 2 + - uid: 19425 + components: + - type: Transform + pos: -35.5,75.5 + parent: 2 + - uid: 19426 + components: + - type: Transform + pos: -35.5,76.5 + parent: 2 + - uid: 19427 + components: + - type: Transform + pos: -34.5,76.5 + parent: 2 + - uid: 19428 + components: + - type: Transform + pos: -34.5,77.5 + parent: 2 + - uid: 19429 + components: + - type: Transform + pos: -33.5,77.5 + parent: 2 + - uid: 19430 + components: + - type: Transform + pos: -33.5,78.5 + parent: 2 + - uid: 19432 + components: + - type: Transform + pos: -32.5,78.5 + parent: 2 + - uid: 19433 + components: + - type: Transform + pos: -32.5,78.5 + parent: 2 + - uid: 19434 + components: + - type: Transform + pos: -31.5,78.5 + parent: 2 + - uid: 19435 + components: + - type: Transform + pos: -30.5,78.5 + parent: 2 + - uid: 19436 + components: + - type: Transform + pos: -29.5,78.5 + parent: 2 + - uid: 19437 + components: + - type: Transform + pos: -29.5,77.5 + parent: 2 + - uid: 19438 + components: + - type: Transform + pos: -28.5,77.5 + parent: 2 + - uid: 19439 + components: + - type: Transform + pos: -28.5,76.5 + parent: 2 + - uid: 19440 + components: + - type: Transform + pos: -27.5,76.5 + parent: 2 + - uid: 19441 + components: + - type: Transform + pos: -27.5,75.5 + parent: 2 +- proto: CableMVStack + entities: + - uid: 5800 + components: + - type: Transform + pos: -7.483595,28.481287 + parent: 2 +- proto: CableTerminal + entities: + - uid: 5801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,44.5 + parent: 2 + - uid: 5802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,44.5 + parent: 2 + - uid: 5803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,44.5 + parent: 2 + - uid: 5804 + components: + - type: Transform + pos: 31.5,64.5 + parent: 2 + - uid: 5805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,7.5 + parent: 2 + - uid: 5806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,0.5 + parent: 2 + - uid: 5807 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 5808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,36.5 + parent: 2 + - uid: 5809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-11.5 + parent: 2 +- proto: CandleBlueInfinite + entities: + - uid: 4413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.57869,50.655235 + parent: 2 + - uid: 4725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.43365,50.747536 + parent: 2 +- proto: CandleBlueSmallInfinite + entities: + - uid: 4412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.48639,50.61568 + parent: 2 +- proto: CannabisSeeds + entities: + - uid: 13976 + components: + - type: Transform + pos: -33.485596,76.50455 + parent: 2 + - uid: 13977 + components: + - type: Transform + pos: -32.479267,77.51087 + parent: 2 + - uid: 17246 + components: + - type: Transform + pos: -32.498253,76.50455 + parent: 2 +- proto: CarbonDioxideCanister + entities: + - uid: 5812 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 + - uid: 5813 + components: + - type: Transform + pos: 36.5,13.5 + parent: 2 + - uid: 5814 + components: + - type: Transform + pos: -38.5,8.5 + parent: 2 + - uid: 14284 + components: + - type: Transform + pos: -19.5,21.5 + parent: 2 + - uid: 14285 + components: + - type: Transform + pos: -20.5,21.5 + parent: 2 +- proto: CargoBountyComputerCircuitboard + entities: + - uid: 5815 + components: + - type: Transform + pos: -8.2761965,43.516277 + parent: 2 +- proto: CargoRequestComputerCircuitboard + entities: + - uid: 5816 + components: + - type: Transform + pos: -8.570984,43.670586 + parent: 2 +- proto: CargoShuttleConsoleCircuitboard + entities: + - uid: 5817 + components: + - type: Transform + pos: -8.613097,43.404053 + parent: 2 +- proto: Carpet + entities: + - uid: 5818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,53.5 + parent: 2 + - uid: 5819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,52.5 + parent: 2 + - uid: 5820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,51.5 + parent: 2 + - uid: 5821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,53.5 + parent: 2 + - uid: 5822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,52.5 + parent: 2 + - uid: 5823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,51.5 + parent: 2 + - uid: 5824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,53.5 + parent: 2 + - uid: 5825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,52.5 + parent: 2 + - uid: 5826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,51.5 + parent: 2 + - uid: 5827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,53.5 + parent: 2 + - uid: 5828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,52.5 + parent: 2 + - uid: 5829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,51.5 + parent: 2 + - uid: 5830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,59.5 + parent: 2 + - uid: 5831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,60.5 + parent: 2 + - uid: 5832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,59.5 + parent: 2 + - uid: 5833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,60.5 + parent: 2 + - uid: 5834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,59.5 + parent: 2 + - uid: 5835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,60.5 + parent: 2 + - uid: 5836 + components: + - type: Transform + pos: 16.5,52.5 + parent: 2 + - uid: 5837 + components: + - type: Transform + pos: 17.5,53.5 + parent: 2 + - uid: 5838 + components: + - type: Transform + pos: 17.5,52.5 + parent: 2 + - uid: 5839 + components: + - type: Transform + pos: 16.5,53.5 + parent: 2 + - uid: 5840 + components: + - type: Transform + pos: 18.5,53.5 + parent: 2 + - uid: 5841 + components: + - type: Transform + pos: 18.5,52.5 + parent: 2 + - uid: 5842 + components: + - type: Transform + pos: 19.5,53.5 + parent: 2 + - uid: 5843 + components: + - type: Transform + pos: 19.5,52.5 + parent: 2 + - uid: 5844 + components: + - type: Transform + pos: 20.5,53.5 + parent: 2 + - uid: 5845 + components: + - type: Transform + pos: 20.5,52.5 + parent: 2 + - uid: 5846 + components: + - type: Transform + pos: 21.5,53.5 + parent: 2 + - uid: 5847 + components: + - type: Transform + pos: 21.5,52.5 + parent: 2 + - uid: 5848 + components: + - type: Transform + pos: 22.5,53.5 + parent: 2 + - uid: 5849 + components: + - type: Transform + pos: 22.5,52.5 + parent: 2 + - uid: 5850 + components: + - type: Transform + pos: 23.5,53.5 + parent: 2 + - uid: 5851 + components: + - type: Transform + pos: 23.5,52.5 + parent: 2 + - uid: 5852 + components: + - type: Transform + pos: 24.5,53.5 + parent: 2 + - uid: 5853 + components: + - type: Transform + pos: 24.5,52.5 + parent: 2 + - uid: 5854 + components: + - type: Transform + pos: 25.5,53.5 + parent: 2 + - uid: 5855 + components: + - type: Transform + pos: 25.5,52.5 + parent: 2 + - uid: 5856 + components: + - type: Transform + pos: 23.5,51.5 + parent: 2 + - uid: 5857 + components: + - type: Transform + pos: 24.5,51.5 + parent: 2 + - uid: 5858 + components: + - type: Transform + pos: 24.5,50.5 + parent: 2 + - uid: 5859 + components: + - type: Transform + pos: 23.5,50.5 + parent: 2 + - uid: 5860 + components: + - type: Transform + pos: 21.5,54.5 + parent: 2 + - uid: 5861 + components: + - type: Transform + pos: 21.5,55.5 + parent: 2 + - uid: 5862 + components: + - type: Transform + pos: 21.5,56.5 + parent: 2 + - uid: 5863 + components: + - type: Transform + pos: 21.5,57.5 + parent: 2 + - uid: 5864 + components: + - type: Transform + pos: 22.5,54.5 + parent: 2 + - uid: 5865 + components: + - type: Transform + pos: 22.5,55.5 + parent: 2 + - uid: 5866 + components: + - type: Transform + pos: 22.5,56.5 + parent: 2 + - uid: 5867 + components: + - type: Transform + pos: 22.5,57.5 + parent: 2 + - uid: 5868 + components: + - type: Transform + pos: 23.5,54.5 + parent: 2 + - uid: 5869 + components: + - type: Transform + pos: 23.5,55.5 + parent: 2 + - uid: 5870 + components: + - type: Transform + pos: 23.5,56.5 + parent: 2 + - uid: 5871 + components: + - type: Transform + pos: 23.5,57.5 + parent: 2 + - uid: 5872 + components: + - type: Transform + pos: 24.5,54.5 + parent: 2 + - uid: 5873 + components: + - type: Transform + pos: 24.5,55.5 + parent: 2 + - uid: 5874 + components: + - type: Transform + pos: 24.5,56.5 + parent: 2 + - uid: 5875 + components: + - type: Transform + pos: 24.5,57.5 + parent: 2 + - uid: 5876 + components: + - type: Transform + pos: 25.5,54.5 + parent: 2 + - uid: 5877 + components: + - type: Transform + pos: 25.5,55.5 + parent: 2 + - uid: 5878 + components: + - type: Transform + pos: 25.5,56.5 + parent: 2 + - uid: 5879 + components: + - type: Transform + pos: 25.5,57.5 + parent: 2 + - uid: 5880 + components: + - type: Transform + pos: 63.5,13.5 + parent: 2 + - uid: 5881 + components: + - type: Transform + pos: 63.5,14.5 + parent: 2 + - uid: 5882 + components: + - type: Transform + pos: 63.5,15.5 + parent: 2 + - uid: 5883 + components: + - type: Transform + pos: 63.5,16.5 + parent: 2 +- proto: CarpetBlack + entities: + - uid: 740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,30.5 + parent: 2 + - uid: 5884 + components: + - type: Transform + pos: 74.5,31.5 + parent: 2 + - uid: 5885 + components: + - type: Transform + pos: 74.5,30.5 + parent: 2 + - uid: 5886 + components: + - type: Transform + pos: 75.5,31.5 + parent: 2 + - uid: 5887 + components: + - type: Transform + pos: 75.5,30.5 + parent: 2 + - uid: 5888 + components: + - type: Transform + pos: 76.5,31.5 + parent: 2 + - uid: 5889 + components: + - type: Transform + pos: 76.5,30.5 + parent: 2 + - uid: 8449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,31.5 + parent: 2 + - uid: 8587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,30.5 + parent: 2 + - uid: 12650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,31.5 + parent: 2 + - uid: 12991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,29.5 + parent: 2 + - uid: 13130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,28.5 + parent: 2 + - uid: 13682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,31.5 + parent: 2 + - uid: 16997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,30.5 + parent: 2 + - uid: 17003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,28.5 + parent: 2 + - uid: 17004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,27.5 + parent: 2 + - uid: 17005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,29.5 + parent: 2 + - uid: 17006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,27.5 + parent: 2 +- proto: CarpetBlue + entities: + - uid: 5890 + components: + - type: Transform + pos: 74.5,40.5 + parent: 2 + - uid: 5891 + components: + - type: Transform + pos: 74.5,39.5 + parent: 2 + - uid: 5892 + components: + - type: Transform + pos: 74.5,38.5 + parent: 2 + - uid: 5893 + components: + - type: Transform + pos: 74.5,37.5 + parent: 2 + - uid: 5894 + components: + - type: Transform + pos: 75.5,40.5 + parent: 2 + - uid: 5895 + components: + - type: Transform + pos: 75.5,39.5 + parent: 2 + - uid: 5896 + components: + - type: Transform + pos: 75.5,38.5 + parent: 2 + - uid: 5897 + components: + - type: Transform + pos: 75.5,37.5 + parent: 2 +- proto: CarpetChapel + entities: + - uid: 5898 + components: + - type: Transform + pos: 8.5,54.5 + parent: 2 + - uid: 5899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,54.5 + parent: 2 + - uid: 5900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,55.5 + parent: 2 + - uid: 5901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,55.5 + parent: 2 + - uid: 5902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,57.5 + parent: 2 + - uid: 5903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,57.5 + parent: 2 + - uid: 5904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,55.5 + parent: 2 + - uid: 5905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,56.5 + parent: 2 + - uid: 5906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,56.5 + parent: 2 + - uid: 5907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,54.5 + parent: 2 + - uid: 5908 + components: + - type: Transform + pos: 11.5,54.5 + parent: 2 + - uid: 5909 + components: + - type: Transform + pos: 8.5,56.5 + parent: 2 + - uid: 5910 + components: + - type: Transform + pos: 11.5,56.5 + parent: 2 + - uid: 5911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,55.5 + parent: 2 + - uid: 5912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,57.5 + parent: 2 + - uid: 5913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,57.5 + parent: 2 +- proto: CarpetCyan + entities: + - uid: 8591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,23.5 + parent: 2 + - uid: 8985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,24.5 + parent: 2 + - uid: 13665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,25.5 + parent: 2 +- proto: CarpetOrange + entities: + - uid: 5914 + components: + - type: Transform + pos: -3.5,24.5 + parent: 2 + - uid: 5915 + components: + - type: Transform + pos: -3.5,25.5 + parent: 2 + - uid: 5916 + components: + - type: Transform + pos: -4.5,24.5 + parent: 2 + - uid: 5917 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - uid: 5918 + components: + - type: Transform + pos: -5.5,24.5 + parent: 2 + - uid: 5919 + components: + - type: Transform + pos: -5.5,25.5 + parent: 2 +- proto: CarpetPurple + entities: + - uid: 5920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,53.5 + parent: 2 + - uid: 5921 + components: + - type: Transform + pos: 53.5,16.5 + parent: 2 + - uid: 5922 + components: + - type: Transform + pos: 53.5,15.5 + parent: 2 + - uid: 5923 + components: + - type: Transform + pos: 53.5,14.5 + parent: 2 + - uid: 5924 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 + - uid: 5925 + components: + - type: Transform + pos: 52.5,15.5 + parent: 2 + - uid: 5926 + components: + - type: Transform + pos: 52.5,14.5 + parent: 2 + - uid: 5927 + components: + - type: Transform + pos: 10.5,57.5 + parent: 2 + - uid: 5928 + components: + - type: Transform + pos: 10.5,56.5 + parent: 2 + - uid: 5929 + components: + - type: Transform + pos: 10.5,55.5 + parent: 2 + - uid: 5930 + components: + - type: Transform + pos: 10.5,54.5 + parent: 2 + - uid: 5931 + components: + - type: Transform + pos: 10.5,53.5 + parent: 2 + - uid: 5932 + components: + - type: Transform + pos: 10.5,51.5 + parent: 2 + - uid: 5933 + components: + - type: Transform + pos: 7.5,52.5 + parent: 2 + - uid: 5934 + components: + - type: Transform + pos: 8.5,52.5 + parent: 2 + - uid: 5935 + components: + - type: Transform + pos: 9.5,52.5 + parent: 2 + - uid: 5936 + components: + - type: Transform + pos: 11.5,51.5 + parent: 2 + - uid: 5937 + components: + - type: Transform + pos: 12.5,51.5 + parent: 2 + - uid: 5938 + components: + - type: Transform + pos: 11.5,53.5 + parent: 2 + - uid: 5939 + components: + - type: Transform + pos: 11.5,52.5 + parent: 2 + - uid: 5940 + components: + - type: Transform + pos: 12.5,53.5 + parent: 2 + - uid: 5941 + components: + - type: Transform + pos: 12.5,52.5 + parent: 2 + - uid: 5942 + components: + - type: Transform + pos: 13.5,53.5 + parent: 2 + - uid: 5943 + components: + - type: Transform + pos: 13.5,52.5 + parent: 2 + - uid: 5944 + components: + - type: Transform + pos: 14.5,53.5 + parent: 2 + - uid: 5945 + components: + - type: Transform + pos: 14.5,52.5 + parent: 2 + - uid: 5946 + components: + - type: Transform + pos: 15.5,53.5 + parent: 2 + - uid: 5947 + components: + - type: Transform + pos: 15.5,52.5 + parent: 2 + - uid: 5948 + components: + - type: Transform + pos: 8.5,51.5 + parent: 2 + - uid: 5949 + components: + - type: Transform + pos: 9.5,51.5 + parent: 2 + - uid: 5950 + components: + - type: Transform + pos: 13.5,51.5 + parent: 2 + - uid: 5951 + components: + - type: Transform + pos: 14.5,51.5 + parent: 2 + - uid: 5952 + components: + - type: Transform + pos: 10.5,50.5 + parent: 2 + - uid: 5953 + components: + - type: Transform + pos: 9.5,50.5 + parent: 2 + - uid: 5954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,53.5 + parent: 2 + - uid: 5955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,53.5 + parent: 2 + - uid: 5956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,52.5 + parent: 2 +- proto: CarpetSBlue + entities: + - uid: 5958 + components: + - type: Transform + pos: 18.5,39.5 + parent: 2 + - uid: 5959 + components: + - type: Transform + pos: 18.5,38.5 + parent: 2 + - uid: 5960 + components: + - type: Transform + pos: 19.5,39.5 + parent: 2 + - uid: 5961 + components: + - type: Transform + pos: 19.5,38.5 + parent: 2 + - uid: 5962 + components: + - type: Transform + pos: 20.5,39.5 + parent: 2 + - uid: 5963 + components: + - type: Transform + pos: 20.5,38.5 + parent: 2 + - uid: 5964 + components: + - type: Transform + pos: 77.5,27.5 + parent: 2 + - uid: 5965 + components: + - type: Transform + pos: 76.5,26.5 + parent: 2 + - uid: 5966 + components: + - type: Transform + pos: 76.5,25.5 + parent: 2 + - uid: 5967 + components: + - type: Transform + pos: 76.5,24.5 + parent: 2 + - uid: 5968 + components: + - type: Transform + pos: 77.5,26.5 + parent: 2 + - uid: 5969 + components: + - type: Transform + pos: 77.5,25.5 + parent: 2 + - uid: 5970 + components: + - type: Transform + pos: 77.5,24.5 + parent: 2 + - uid: 5971 + components: + - type: Transform + pos: 78.5,26.5 + parent: 2 + - uid: 5972 + components: + - type: Transform + pos: 78.5,25.5 + parent: 2 + - uid: 5973 + components: + - type: Transform + pos: 78.5,24.5 + parent: 2 + - uid: 5974 + components: + - type: Transform + pos: 83.5,25.5 + parent: 2 + - uid: 5975 + components: + - type: Transform + pos: 83.5,24.5 + parent: 2 + - uid: 5976 + components: + - type: Transform + pos: 83.5,23.5 + parent: 2 + - uid: 5977 + components: + - type: Transform + pos: 83.5,22.5 + parent: 2 + - uid: 5978 + components: + - type: Transform + pos: 82.5,25.5 + parent: 2 + - uid: 5979 + components: + - type: Transform + pos: 82.5,24.5 + parent: 2 + - uid: 5980 + components: + - type: Transform + pos: 82.5,23.5 + parent: 2 + - uid: 5981 + components: + - type: Transform + pos: 82.5,22.5 + parent: 2 + - uid: 5982 + components: + - type: Transform + pos: 81.5,25.5 + parent: 2 + - uid: 5983 + components: + - type: Transform + pos: 81.5,24.5 + parent: 2 + - uid: 5984 + components: + - type: Transform + pos: 81.5,23.5 + parent: 2 + - uid: 5985 + components: + - type: Transform + pos: 81.5,22.5 + parent: 2 +- proto: Catwalk + entities: + - uid: 4406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,53.5 + parent: 2 + - uid: 4407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,53.5 + parent: 2 + - uid: 4434 + components: + - type: Transform + pos: 45.5,56.5 + parent: 2 + - uid: 4726 + components: + - type: Transform + pos: -15.5,23.5 + parent: 2 + - uid: 4727 + components: + - type: Transform + pos: -12.5,24.5 + parent: 2 + - uid: 4730 + components: + - type: Transform + pos: -12.5,23.5 + parent: 2 + - uid: 5068 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - uid: 5989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,5.5 + parent: 2 + - uid: 5990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,30.5 + parent: 2 + - uid: 5991 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 2 + - uid: 5992 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 2 + - uid: 5993 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 2 + - uid: 5995 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 2 + - uid: 5996 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - uid: 6003 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 2 + - uid: 6004 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 2 + - uid: 6005 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 2 + - uid: 6006 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 2 + - uid: 6007 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 2 + - uid: 6008 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 2 + - uid: 6009 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 6010 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 2 + - uid: 6011 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 2 + - uid: 6012 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - uid: 6013 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - uid: 6017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,25.5 + parent: 2 + - uid: 6018 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 2 + - uid: 6019 + components: + - type: Transform + pos: 33.5,79.5 + parent: 2 + - uid: 6020 + components: + - type: Transform + pos: -29.5,-11.5 + parent: 2 + - uid: 6021 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 2 + - uid: 6022 + components: + - type: Transform + pos: 33.5,77.5 + parent: 2 + - uid: 6023 + components: + - type: Transform + pos: -26.5,21.5 + parent: 2 + - uid: 6024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,21.5 + parent: 2 + - uid: 6025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,19.5 + parent: 2 + - uid: 6026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,17.5 + parent: 2 + - uid: 6027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,15.5 + parent: 2 + - uid: 6028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,13.5 + parent: 2 + - uid: 6029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,11.5 + parent: 2 + - uid: 6030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,9.5 + parent: 2 + - uid: 6031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,7.5 + parent: 2 + - uid: 6032 + components: + - type: Transform + pos: -33.5,5.5 + parent: 2 + - uid: 6033 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - uid: 6034 + components: + - type: Transform + pos: -29.5,5.5 + parent: 2 + - uid: 6035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,3.5 + parent: 2 + - uid: 6036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,2.5 + parent: 2 + - uid: 6037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,3.5 + parent: 2 + - uid: 6038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,2.5 + parent: 2 + - uid: 6039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,48.5 + parent: 2 + - uid: 6040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,52.5 + parent: 2 + - uid: 6041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,51.5 + parent: 2 + - uid: 6042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,52.5 + parent: 2 + - uid: 6043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,51.5 + parent: 2 + - uid: 6044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,52.5 + parent: 2 + - uid: 6045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,51.5 + parent: 2 + - uid: 6046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,50.5 + parent: 2 + - uid: 6055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,71.5 + parent: 2 + - uid: 6057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,71.5 + parent: 2 + - uid: 6058 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 6059 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 6060 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - uid: 6063 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 2 + - uid: 6064 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 6065 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 + - uid: 6066 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 6067 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - uid: 6068 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - uid: 6069 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 2 + - uid: 6070 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - uid: 6071 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 6072 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 + - uid: 6074 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 6075 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 6076 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 6077 + components: + - type: Transform + pos: 57.5,8.5 + parent: 2 + - uid: 6078 + components: + - type: Transform + pos: 58.5,8.5 + parent: 2 + - uid: 6079 + components: + - type: Transform + pos: 59.5,8.5 + parent: 2 + - uid: 6080 + components: + - type: Transform + pos: 59.5,7.5 + parent: 2 + - uid: 6081 + components: + - type: Transform + pos: 59.5,6.5 + parent: 2 + - uid: 6082 + components: + - type: Transform + pos: 59.5,5.5 + parent: 2 + - uid: 6083 + components: + - type: Transform + pos: 59.5,4.5 + parent: 2 + - uid: 6084 + components: + - type: Transform + pos: 59.5,3.5 + parent: 2 + - uid: 6085 + components: + - type: Transform + pos: 59.5,2.5 + parent: 2 + - uid: 6086 + components: + - type: Transform + pos: 59.5,1.5 + parent: 2 + - uid: 6087 + components: + - type: Transform + pos: 59.5,0.5 + parent: 2 + - uid: 6088 + components: + - type: Transform + pos: 59.5,-0.5 + parent: 2 + - uid: 6089 + components: + - type: Transform + pos: 59.5,-1.5 + parent: 2 + - uid: 6090 + components: + - type: Transform + pos: 59.5,-3.5 + parent: 2 + - uid: 6091 + components: + - type: Transform + pos: 59.5,-4.5 + parent: 2 + - uid: 6092 + components: + - type: Transform + pos: 59.5,-5.5 + parent: 2 + - uid: 6093 + components: + - type: Transform + pos: 58.5,-5.5 + parent: 2 + - uid: 6094 + components: + - type: Transform + pos: 57.5,-5.5 + parent: 2 + - uid: 6095 + components: + - type: Transform + pos: 55.5,-7.5 + parent: 2 + - uid: 6096 + components: + - type: Transform + pos: 55.5,-8.5 + parent: 2 + - uid: 6097 + components: + - type: Transform + pos: 55.5,-9.5 + parent: 2 + - uid: 6098 + components: + - type: Transform + pos: 55.5,-10.5 + parent: 2 + - uid: 6099 + components: + - type: Transform + pos: 54.5,-10.5 + parent: 2 + - uid: 6100 + components: + - type: Transform + pos: 53.5,-10.5 + parent: 2 + - uid: 6101 + components: + - type: Transform + pos: 52.5,-10.5 + parent: 2 + - uid: 6102 + components: + - type: Transform + pos: 51.5,-10.5 + parent: 2 + - uid: 6103 + components: + - type: Transform + pos: 50.5,-10.5 + parent: 2 + - uid: 6104 + components: + - type: Transform + pos: 49.5,-10.5 + parent: 2 + - uid: 6105 + components: + - type: Transform + pos: 48.5,-10.5 + parent: 2 + - uid: 6106 + components: + - type: Transform + pos: 47.5,-10.5 + parent: 2 + - uid: 6107 + components: + - type: Transform + pos: 47.5,-9.5 + parent: 2 + - uid: 6108 + components: + - type: Transform + pos: 47.5,-8.5 + parent: 2 + - uid: 6109 + components: + - type: Transform + pos: 47.5,-7.5 + parent: 2 + - uid: 6110 + components: + - type: Transform + pos: 47.5,-6.5 + parent: 2 + - uid: 6111 + components: + - type: Transform + pos: 47.5,-5.5 + parent: 2 + - uid: 6112 + components: + - type: Transform + pos: 46.5,-5.5 + parent: 2 + - uid: 6113 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 2 + - uid: 6114 + components: + - type: Transform + pos: 44.5,-5.5 + parent: 2 + - uid: 6115 + components: + - type: Transform + pos: 43.5,-5.5 + parent: 2 + - uid: 6116 + components: + - type: Transform + pos: 42.5,-5.5 + parent: 2 + - uid: 6117 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - uid: 6118 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 2 + - uid: 6119 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 2 + - uid: 6120 + components: + - type: Transform + pos: 42.5,-4.5 + parent: 2 + - uid: 6121 + components: + - type: Transform + pos: 52.5,-13.5 + parent: 2 + - uid: 6122 + components: + - type: Transform + pos: 51.5,-11.5 + parent: 2 + - uid: 6123 + components: + - type: Transform + pos: 51.5,-22.5 + parent: 2 + - uid: 6124 + components: + - type: Transform + pos: 51.5,-21.5 + parent: 2 + - uid: 6125 + components: + - type: Transform + pos: 51.5,-20.5 + parent: 2 + - uid: 6126 + components: + - type: Transform + pos: 51.5,-19.5 + parent: 2 + - uid: 6127 + components: + - type: Transform + pos: 51.5,-18.5 + parent: 2 + - uid: 6128 + components: + - type: Transform + pos: 51.5,-17.5 + parent: 2 + - uid: 6129 + components: + - type: Transform + pos: 51.5,-16.5 + parent: 2 + - uid: 6130 + components: + - type: Transform + pos: 51.5,-15.5 + parent: 2 + - uid: 6131 + components: + - type: Transform + pos: 51.5,-13.5 + parent: 2 + - uid: 6132 + components: + - type: Transform + pos: 51.5,-12.5 + parent: 2 + - uid: 6133 + components: + - type: Transform + pos: 51.5,-14.5 + parent: 2 + - uid: 6134 + components: + - type: Transform + pos: 51.5,-23.5 + parent: 2 + - uid: 6135 + components: + - type: Transform + pos: 50.5,-21.5 + parent: 2 + - uid: 6136 + components: + - type: Transform + pos: 49.5,-21.5 + parent: 2 + - uid: 6137 + components: + - type: Transform + pos: 48.5,-21.5 + parent: 2 + - uid: 6138 + components: + - type: Transform + pos: 47.5,-21.5 + parent: 2 + - uid: 6139 + components: + - type: Transform + pos: 46.5,-21.5 + parent: 2 + - uid: 6140 + components: + - type: Transform + pos: 45.5,-21.5 + parent: 2 + - uid: 6141 + components: + - type: Transform + pos: 52.5,-21.5 + parent: 2 + - uid: 6142 + components: + - type: Transform + pos: 53.5,-21.5 + parent: 2 + - uid: 6143 + components: + - type: Transform + pos: 54.5,-21.5 + parent: 2 + - uid: 6144 + components: + - type: Transform + pos: 55.5,-21.5 + parent: 2 + - uid: 6145 + components: + - type: Transform + pos: 56.5,-21.5 + parent: 2 + - uid: 6146 + components: + - type: Transform + pos: 57.5,-21.5 + parent: 2 + - uid: 6147 + components: + - type: Transform + pos: 52.5,-17.5 + parent: 2 + - uid: 6148 + components: + - type: Transform + pos: 53.5,-17.5 + parent: 2 + - uid: 6149 + components: + - type: Transform + pos: 54.5,-17.5 + parent: 2 + - uid: 6150 + components: + - type: Transform + pos: 55.5,-17.5 + parent: 2 + - uid: 6151 + components: + - type: Transform + pos: 56.5,-17.5 + parent: 2 + - uid: 6152 + components: + - type: Transform + pos: 57.5,-17.5 + parent: 2 + - uid: 6153 + components: + - type: Transform + pos: 50.5,-17.5 + parent: 2 + - uid: 6154 + components: + - type: Transform + pos: 49.5,-17.5 + parent: 2 + - uid: 6155 + components: + - type: Transform + pos: 48.5,-17.5 + parent: 2 + - uid: 6156 + components: + - type: Transform + pos: 47.5,-17.5 + parent: 2 + - uid: 6157 + components: + - type: Transform + pos: 46.5,-17.5 + parent: 2 + - uid: 6158 + components: + - type: Transform + pos: 45.5,-17.5 + parent: 2 + - uid: 6159 + components: + - type: Transform + pos: 53.5,-13.5 + parent: 2 + - uid: 6160 + components: + - type: Transform + pos: 54.5,-13.5 + parent: 2 + - uid: 6161 + components: + - type: Transform + pos: 55.5,-13.5 + parent: 2 + - uid: 6162 + components: + - type: Transform + pos: 56.5,-13.5 + parent: 2 + - uid: 6163 + components: + - type: Transform + pos: 57.5,-13.5 + parent: 2 + - uid: 6164 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 2 + - uid: 6165 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 2 + - uid: 6166 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 2 + - uid: 6167 + components: + - type: Transform + pos: 47.5,-13.5 + parent: 2 + - uid: 6168 + components: + - type: Transform + pos: 46.5,-13.5 + parent: 2 + - uid: 6169 + components: + - type: Transform + pos: 45.5,-13.5 + parent: 2 + - uid: 6170 + components: + - type: Transform + pos: 61.5,-2.5 + parent: 2 + - uid: 6171 + components: + - type: Transform + pos: 62.5,-2.5 + parent: 2 + - uid: 6172 + components: + - type: Transform + pos: 63.5,-2.5 + parent: 2 + - uid: 6173 + components: + - type: Transform + pos: 64.5,-2.5 + parent: 2 + - uid: 6174 + components: + - type: Transform + pos: 65.5,-2.5 + parent: 2 + - uid: 6175 + components: + - type: Transform + pos: 66.5,-2.5 + parent: 2 + - uid: 6176 + components: + - type: Transform + pos: 67.5,-2.5 + parent: 2 + - uid: 6177 + components: + - type: Transform + pos: 68.5,-2.5 + parent: 2 + - uid: 6178 + components: + - type: Transform + pos: 69.5,-2.5 + parent: 2 + - uid: 6179 + components: + - type: Transform + pos: 70.5,-2.5 + parent: 2 + - uid: 6180 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 2 + - uid: 6181 + components: + - type: Transform + pos: -22.5,3.5 + parent: 2 + - uid: 6182 + components: + - type: Transform + pos: -22.5,-0.5 + parent: 2 + - uid: 6183 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 + - uid: 6184 + components: + - type: Transform + pos: -22.5,1.5 + parent: 2 + - uid: 6185 + components: + - type: Transform + pos: -22.5,2.5 + parent: 2 + - uid: 6186 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 2 + - uid: 6187 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 2 + - uid: 6188 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 2 + - uid: 6189 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 2 + - uid: 6190 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 2 + - uid: 6191 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 2 + - uid: 6194 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 2 + - uid: 6195 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 2 + - uid: 6196 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 2 + - uid: 6197 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 2 + - uid: 6198 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 + - uid: 6199 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 2 + - uid: 6200 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 2 + - uid: 6201 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 + - uid: 6202 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 2 + - uid: 6203 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 6204 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - uid: 6205 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 2 + - uid: 6206 + components: + - type: Transform + pos: 33.5,80.5 + parent: 2 + - uid: 6207 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 + - uid: 6208 + components: + - type: Transform + pos: 33.5,68.5 + parent: 2 + - uid: 6209 + components: + - type: Transform + pos: 33.5,78.5 + parent: 2 + - uid: 6210 + components: + - type: Transform + pos: 33.5,69.5 + parent: 2 + - uid: 6211 + components: + - type: Transform + pos: 33.5,76.5 + parent: 2 + - uid: 6212 + components: + - type: Transform + pos: 33.5,75.5 + parent: 2 + - uid: 6213 + components: + - type: Transform + pos: 33.5,74.5 + parent: 2 + - uid: 6214 + components: + - type: Transform + pos: 33.5,73.5 + parent: 2 + - uid: 6215 + components: + - type: Transform + pos: 33.5,72.5 + parent: 2 + - uid: 6216 + components: + - type: Transform + pos: 33.5,71.5 + parent: 2 + - uid: 6217 + components: + - type: Transform + pos: 33.5,70.5 + parent: 2 + - uid: 6218 + components: + - type: Transform + pos: 27.5,78.5 + parent: 2 + - uid: 6219 + components: + - type: Transform + pos: 28.5,78.5 + parent: 2 + - uid: 6220 + components: + - type: Transform + pos: 29.5,78.5 + parent: 2 + - uid: 6221 + components: + - type: Transform + pos: 30.5,78.5 + parent: 2 + - uid: 6222 + components: + - type: Transform + pos: 31.5,78.5 + parent: 2 + - uid: 6223 + components: + - type: Transform + pos: 32.5,78.5 + parent: 2 + - uid: 6224 + components: + - type: Transform + pos: 34.5,78.5 + parent: 2 + - uid: 6225 + components: + - type: Transform + pos: 35.5,78.5 + parent: 2 + - uid: 6226 + components: + - type: Transform + pos: 36.5,78.5 + parent: 2 + - uid: 6227 + components: + - type: Transform + pos: 37.5,78.5 + parent: 2 + - uid: 6228 + components: + - type: Transform + pos: 38.5,78.5 + parent: 2 + - uid: 6229 + components: + - type: Transform + pos: 39.5,78.5 + parent: 2 + - uid: 6230 + components: + - type: Transform + pos: 27.5,74.5 + parent: 2 + - uid: 6231 + components: + - type: Transform + pos: 28.5,74.5 + parent: 2 + - uid: 6232 + components: + - type: Transform + pos: 29.5,74.5 + parent: 2 + - uid: 6233 + components: + - type: Transform + pos: 30.5,74.5 + parent: 2 + - uid: 6234 + components: + - type: Transform + pos: 31.5,74.5 + parent: 2 + - uid: 6235 + components: + - type: Transform + pos: 32.5,74.5 + parent: 2 + - uid: 6236 + components: + - type: Transform + pos: 32.5,70.5 + parent: 2 + - uid: 6237 + components: + - type: Transform + pos: 34.5,74.5 + parent: 2 + - uid: 6238 + components: + - type: Transform + pos: 35.5,74.5 + parent: 2 + - uid: 6239 + components: + - type: Transform + pos: 36.5,74.5 + parent: 2 + - uid: 6240 + components: + - type: Transform + pos: 37.5,74.5 + parent: 2 + - uid: 6241 + components: + - type: Transform + pos: 38.5,74.5 + parent: 2 + - uid: 6242 + components: + - type: Transform + pos: 39.5,74.5 + parent: 2 + - uid: 6243 + components: + - type: Transform + pos: 31.5,70.5 + parent: 2 + - uid: 6244 + components: + - type: Transform + pos: 30.5,70.5 + parent: 2 + - uid: 6245 + components: + - type: Transform + pos: 29.5,70.5 + parent: 2 + - uid: 6246 + components: + - type: Transform + pos: 28.5,70.5 + parent: 2 + - uid: 6247 + components: + - type: Transform + pos: 27.5,70.5 + parent: 2 + - uid: 6248 + components: + - type: Transform + pos: 34.5,70.5 + parent: 2 + - uid: 6249 + components: + - type: Transform + pos: 35.5,70.5 + parent: 2 + - uid: 6250 + components: + - type: Transform + pos: 36.5,70.5 + parent: 2 + - uid: 6251 + components: + - type: Transform + pos: 37.5,70.5 + parent: 2 + - uid: 6252 + components: + - type: Transform + pos: 38.5,70.5 + parent: 2 + - uid: 6253 + components: + - type: Transform + pos: 39.5,70.5 + parent: 2 + - uid: 6254 + components: + - type: Transform + pos: 32.5,68.5 + parent: 2 + - uid: 6255 + components: + - type: Transform + pos: 34.5,68.5 + parent: 2 + - uid: 6256 + components: + - type: Transform + pos: 34.5,69.5 + parent: 2 + - uid: 6257 + components: + - type: Transform + pos: 32.5,69.5 + parent: 2 + - uid: 6258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-4.5 + parent: 2 + - uid: 6259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-3.5 + parent: 2 + - uid: 6260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-2.5 + parent: 2 + - uid: 6261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-1.5 + parent: 2 + - uid: 6262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-4.5 + parent: 2 + - uid: 6263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-5.5 + parent: 2 + - uid: 6264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-3.5 + parent: 2 + - uid: 6265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-4.5 + parent: 2 + - uid: 6266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-4.5 + parent: 2 + - uid: 6267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-6.5 + parent: 2 + - uid: 6268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-5.5 + parent: 2 + - uid: 6269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-6.5 + parent: 2 + - uid: 6270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-8.5 + parent: 2 + - uid: 6271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-8.5 + parent: 2 + - uid: 6272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-11.5 + parent: 2 + - uid: 6273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-11.5 + parent: 2 + - uid: 6274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-15.5 + parent: 2 + - uid: 6275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-15.5 + parent: 2 + - uid: 6276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,44.5 + parent: 2 + - uid: 6277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,45.5 + parent: 2 + - uid: 6278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,44.5 + parent: 2 + - uid: 6279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,45.5 + parent: 2 + - uid: 6280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,45.5 + parent: 2 + - uid: 6281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,45.5 + parent: 2 + - uid: 6282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,45.5 + parent: 2 + - uid: 6283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,25.5 + parent: 2 + - uid: 6284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,27.5 + parent: 2 + - uid: 6285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,28.5 + parent: 2 + - uid: 6286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,27.5 + parent: 2 + - uid: 6287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,25.5 + parent: 2 + - uid: 6288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,24.5 + parent: 2 + - uid: 6289 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - uid: 6290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,26.5 + parent: 2 + - uid: 6291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,27.5 + parent: 2 + - uid: 6292 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - uid: 6293 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 2 + - uid: 6294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,29.5 + parent: 2 + - uid: 6295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,29.5 + parent: 2 + - uid: 6296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-2.5 + parent: 2 + - uid: 6297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-5.5 + parent: 2 + - uid: 6298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-5.5 + parent: 2 + - uid: 6299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-6.5 + parent: 2 + - uid: 6300 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 2 + - uid: 6301 + components: + - type: Transform + pos: -31.5,30.5 + parent: 2 + - uid: 6302 + components: + - type: Transform + pos: 74.5,18.5 + parent: 2 + - uid: 6303 + components: + - type: Transform + pos: 74.5,17.5 + parent: 2 + - uid: 6304 + components: + - type: Transform + pos: 75.5,17.5 + parent: 2 + - uid: 6305 + components: + - type: Transform + pos: 75.5,16.5 + parent: 2 + - uid: 6306 + components: + - type: Transform + pos: 75.5,15.5 + parent: 2 + - uid: 6307 + components: + - type: Transform + pos: 74.5,19.5 + parent: 2 + - uid: 6308 + components: + - type: Transform + pos: 74.5,20.5 + parent: 2 + - uid: 6309 + components: + - type: Transform + pos: 75.5,20.5 + parent: 2 + - uid: 6310 + components: + - type: Transform + pos: 76.5,20.5 + parent: 2 + - uid: 6311 + components: + - type: Transform + pos: 77.5,20.5 + parent: 2 + - uid: 6312 + components: + - type: Transform + pos: 78.5,20.5 + parent: 2 + - uid: 6313 + components: + - type: Transform + pos: 78.5,19.5 + parent: 2 + - uid: 6314 + components: + - type: Transform + pos: 79.5,19.5 + parent: 2 + - uid: 6315 + components: + - type: Transform + pos: 80.5,19.5 + parent: 2 + - uid: 6316 + components: + - type: Transform + pos: 81.5,19.5 + parent: 2 + - uid: 6317 + components: + - type: Transform + pos: 81.5,46.5 + parent: 2 + - uid: 6318 + components: + - type: Transform + pos: 76.5,47.5 + parent: 2 + - uid: 6319 + components: + - type: Transform + pos: 74.5,47.5 + parent: 2 + - uid: 6320 + components: + - type: Transform + pos: 75.5,47.5 + parent: 2 + - uid: 6321 + components: + - type: Transform + pos: 78.5,47.5 + parent: 2 + - uid: 6322 + components: + - type: Transform + pos: 77.5,47.5 + parent: 2 + - uid: 6326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,53.5 + parent: 2 + - uid: 6327 + components: + - type: Transform + pos: 75.5,53.5 + parent: 2 + - uid: 6328 + components: + - type: Transform + pos: 74.5,53.5 + parent: 2 + - uid: 6329 + components: + - type: Transform + pos: 73.5,53.5 + parent: 2 + - uid: 6330 + components: + - type: Transform + pos: 73.5,54.5 + parent: 2 + - uid: 6332 + components: + - type: Transform + pos: 62.5,26.5 + parent: 2 + - uid: 6333 + components: + - type: Transform + pos: 62.5,25.5 + parent: 2 + - uid: 6334 + components: + - type: Transform + pos: 62.5,24.5 + parent: 2 + - uid: 6335 + components: + - type: Transform + pos: 62.5,23.5 + parent: 2 + - uid: 6336 + components: + - type: Transform + pos: 62.5,22.5 + parent: 2 + - uid: 6337 + components: + - type: Transform + pos: 62.5,21.5 + parent: 2 + - uid: 6338 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 6339 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 + - uid: 6340 + components: + - type: Transform + pos: 62.5,18.5 + parent: 2 + - uid: 6341 + components: + - type: Transform + pos: 61.5,18.5 + parent: 2 + - uid: 6342 + components: + - type: Transform + pos: 61.5,17.5 + parent: 2 + - uid: 6343 + components: + - type: Transform + pos: 61.5,16.5 + parent: 2 + - uid: 6344 + components: + - type: Transform + pos: 61.5,15.5 + parent: 2 + - uid: 6345 + components: + - type: Transform + pos: 61.5,14.5 + parent: 2 + - uid: 6346 + components: + - type: Transform + pos: 61.5,13.5 + parent: 2 + - uid: 6347 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 + - uid: 6348 + components: + - type: Transform + pos: 59.5,13.5 + parent: 2 + - uid: 6349 + components: + - type: Transform + pos: 58.5,13.5 + parent: 2 + - uid: 6350 + components: + - type: Transform + pos: 57.5,13.5 + parent: 2 + - uid: 6351 + components: + - type: Transform + pos: 56.5,13.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - uid: 6353 + components: + - type: Transform + pos: 55.5,12.5 + parent: 2 + - uid: 6354 + components: + - type: Transform + pos: 55.5,11.5 + parent: 2 + - uid: 6355 + components: + - type: Transform + pos: 54.5,11.5 + parent: 2 + - uid: 6356 + components: + - type: Transform + pos: 53.5,11.5 + parent: 2 + - uid: 6357 + components: + - type: Transform + pos: 52.5,11.5 + parent: 2 + - uid: 6358 + components: + - type: Transform + pos: 52.5,10.5 + parent: 2 + - uid: 6359 + components: + - type: Transform + pos: 57.5,12.5 + parent: 2 + - uid: 6360 + components: + - type: Transform + pos: 46.5,10.5 + parent: 2 + - uid: 6361 + components: + - type: Transform + pos: 45.5,10.5 + parent: 2 + - uid: 6362 + components: + - type: Transform + pos: 44.5,10.5 + parent: 2 + - uid: 6363 + components: + - type: Transform + pos: 43.5,10.5 + parent: 2 + - uid: 6364 + components: + - type: Transform + pos: 43.5,9.5 + parent: 2 + - uid: 6365 + components: + - type: Transform + pos: 43.5,8.5 + parent: 2 + - uid: 6366 + components: + - type: Transform + pos: 43.5,7.5 + parent: 2 + - uid: 6367 + components: + - type: Transform + pos: 43.5,6.5 + parent: 2 + - uid: 6368 + components: + - type: Transform + pos: 43.5,5.5 + parent: 2 + - uid: 6369 + components: + - type: Transform + pos: 43.5,4.5 + parent: 2 + - uid: 6370 + components: + - type: Transform + pos: 44.5,7.5 + parent: 2 + - uid: 6371 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 6372 + components: + - type: Transform + pos: 41.5,4.5 + parent: 2 + - uid: 6373 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 6374 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 6375 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - uid: 6376 + components: + - type: Transform + pos: 32.5,7.5 + parent: 2 + - uid: 6377 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - uid: 6378 + components: + - type: Transform + pos: 30.5,7.5 + parent: 2 + - uid: 6379 + components: + - type: Transform + pos: 29.5,7.5 + parent: 2 + - uid: 6380 + components: + - type: Transform + pos: 28.5,7.5 + parent: 2 + - uid: 6381 + components: + - type: Transform + pos: 27.5,7.5 + parent: 2 + - uid: 6382 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 6383 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 6384 + components: + - type: Transform + pos: 27.5,6.5 + parent: 2 + - uid: 6385 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 + - uid: 6386 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 6387 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 + - uid: 6388 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 6389 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - uid: 6390 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - uid: 6391 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 6392 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - uid: 6393 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 6394 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 6395 + components: + - type: Transform + pos: 16.5,6.5 + parent: 2 + - uid: 6396 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 + - uid: 6397 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 6398 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 6399 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 6400 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 6401 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 6402 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 6403 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 6404 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 6405 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 6406 + components: + - type: Transform + pos: 18.5,8.5 + parent: 2 + - uid: 6407 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 6408 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 6409 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 6410 + components: + - type: Transform + pos: 15.5,12.5 + parent: 2 + - uid: 6411 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 + - uid: 6412 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 6413 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - uid: 6414 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 6415 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 6416 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 6417 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 6418 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 6419 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 6420 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 6421 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 + - uid: 6422 + components: + - type: Transform + pos: 12.5,6.5 + parent: 2 + - uid: 6423 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 6424 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 6425 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 6426 + components: + - type: Transform + pos: -18.5,8.5 + parent: 2 + - uid: 6427 + components: + - type: Transform + pos: -18.5,7.5 + parent: 2 + - uid: 6428 + components: + - type: Transform + pos: -18.5,6.5 + parent: 2 + - uid: 6429 + components: + - type: Transform + pos: -17.5,6.5 + parent: 2 + - uid: 6430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,10.5 + parent: 2 + - uid: 6431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,11.5 + parent: 2 + - uid: 6432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,11.5 + parent: 2 + - uid: 6433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,11.5 + parent: 2 + - uid: 6434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,11.5 + parent: 2 + - uid: 6435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,11.5 + parent: 2 + - uid: 6436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,11.5 + parent: 2 + - uid: 6437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,14.5 + parent: 2 + - uid: 6438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,14.5 + parent: 2 + - uid: 6439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,13.5 + parent: 2 + - uid: 6440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,12.5 + parent: 2 + - uid: 6441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,15.5 + parent: 2 + - uid: 6442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,15.5 + parent: 2 + - uid: 6443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,14.5 + parent: 2 + - uid: 6444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,14.5 + parent: 2 + - uid: 6445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,13.5 + parent: 2 + - uid: 6446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,12.5 + parent: 2 + - uid: 6447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,11.5 + parent: 2 + - uid: 6448 + components: + - type: Transform + pos: -15.5,12.5 + parent: 2 + - uid: 6449 + components: + - type: Transform + pos: -15.5,13.5 + parent: 2 + - uid: 6450 + components: + - type: Transform + pos: -15.5,14.5 + parent: 2 + - uid: 6451 + components: + - type: Transform + pos: -15.5,15.5 + parent: 2 + - uid: 6452 + components: + - type: Transform + pos: -15.5,16.5 + parent: 2 + - uid: 6453 + components: + - type: Transform + pos: -14.5,16.5 + parent: 2 + - uid: 6454 + components: + - type: Transform + pos: -13.5,16.5 + parent: 2 + - uid: 6455 + components: + - type: Transform + pos: -12.5,16.5 + parent: 2 + - uid: 6456 + components: + - type: Transform + pos: -11.5,16.5 + parent: 2 + - uid: 6457 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 + - uid: 6458 + components: + - type: Transform + pos: -9.5,16.5 + parent: 2 + - uid: 6459 + components: + - type: Transform + pos: -8.5,16.5 + parent: 2 + - uid: 6460 + components: + - type: Transform + pos: -8.5,17.5 + parent: 2 + - uid: 6462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,69.5 + parent: 2 + - uid: 6463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,68.5 + parent: 2 + - uid: 6464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,67.5 + parent: 2 + - uid: 6465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,66.5 + parent: 2 + - uid: 6466 + components: + - type: Transform + pos: 8.5,64.5 + parent: 2 + - uid: 6467 + components: + - type: Transform + pos: 9.5,64.5 + parent: 2 + - uid: 6468 + components: + - type: Transform + pos: 10.5,64.5 + parent: 2 + - uid: 6469 + components: + - type: Transform + pos: 11.5,64.5 + parent: 2 + - uid: 6470 + components: + - type: Transform + pos: 12.5,64.5 + parent: 2 + - uid: 6471 + components: + - type: Transform + pos: 13.5,64.5 + parent: 2 + - uid: 6472 + components: + - type: Transform + pos: 13.5,65.5 + parent: 2 + - uid: 6473 + components: + - type: Transform + pos: 13.5,66.5 + parent: 2 + - uid: 6474 + components: + - type: Transform + pos: 13.5,67.5 + parent: 2 + - uid: 6475 + components: + - type: Transform + pos: 13.5,68.5 + parent: 2 + - uid: 6476 + components: + - type: Transform + pos: 14.5,65.5 + parent: 2 + - uid: 6477 + components: + - type: Transform + pos: 15.5,65.5 + parent: 2 + - uid: 6478 + components: + - type: Transform + pos: 16.5,65.5 + parent: 2 + - uid: 6479 + components: + - type: Transform + pos: 17.5,65.5 + parent: 2 + - uid: 6480 + components: + - type: Transform + pos: 18.5,65.5 + parent: 2 + - uid: 6481 + components: + - type: Transform + pos: 14.5,68.5 + parent: 2 + - uid: 6482 + components: + - type: Transform + pos: 14.5,69.5 + parent: 2 + - uid: 6483 + components: + - type: Transform + pos: 14.5,70.5 + parent: 2 + - uid: 6484 + components: + - type: Transform + pos: 14.5,71.5 + parent: 2 + - uid: 6485 + components: + - type: Transform + pos: 14.5,72.5 + parent: 2 + - uid: 6486 + components: + - type: Transform + pos: 14.5,73.5 + parent: 2 + - uid: 6487 + components: + - type: Transform + pos: 14.5,74.5 + parent: 2 + - uid: 6488 + components: + - type: Transform + pos: 20.5,62.5 + parent: 2 + - uid: 6489 + components: + - type: Transform + pos: 20.5,63.5 + parent: 2 + - uid: 6490 + components: + - type: Transform + pos: 24.5,65.5 + parent: 2 + - uid: 6491 + components: + - type: Transform + pos: 24.5,64.5 + parent: 2 + - uid: 6492 + components: + - type: Transform + pos: 24.5,63.5 + parent: 2 + - uid: 6493 + components: + - type: Transform + pos: 24.5,62.5 + parent: 2 + - uid: 6494 + components: + - type: Transform + pos: 24.5,61.5 + parent: 2 + - uid: 6495 + components: + - type: Transform + pos: 24.5,60.5 + parent: 2 + - uid: 6496 + components: + - type: Transform + pos: 23.5,60.5 + parent: 2 + - uid: 6497 + components: + - type: Transform + pos: 22.5,60.5 + parent: 2 + - uid: 6498 + components: + - type: Transform + pos: 21.5,60.5 + parent: 2 + - uid: 6499 + components: + - type: Transform + pos: 20.5,60.5 + parent: 2 + - uid: 6500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,60.5 + parent: 2 + - uid: 6501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,60.5 + parent: 2 + - uid: 6502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,60.5 + parent: 2 + - uid: 6503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,60.5 + parent: 2 + - uid: 6504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,60.5 + parent: 2 + - uid: 6505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,60.5 + parent: 2 + - uid: 6506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,60.5 + parent: 2 + - uid: 6507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,61.5 + parent: 2 + - uid: 6508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,61.5 + parent: 2 + - uid: 6509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,61.5 + parent: 2 + - uid: 6510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,61.5 + parent: 2 + - uid: 6511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,61.5 + parent: 2 + - uid: 6512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,60.5 + parent: 2 + - uid: 6513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,59.5 + parent: 2 + - uid: 6514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,59.5 + parent: 2 + - uid: 6515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,59.5 + parent: 2 + - uid: 6516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,59.5 + parent: 2 + - uid: 6517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,59.5 + parent: 2 + - uid: 6518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,58.5 + parent: 2 + - uid: 6519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,57.5 + parent: 2 + - uid: 6520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,56.5 + parent: 2 + - uid: 6521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,56.5 + parent: 2 + - uid: 6522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,56.5 + parent: 2 + - uid: 6523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,56.5 + parent: 2 + - uid: 6524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,56.5 + parent: 2 + - uid: 6525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,56.5 + parent: 2 + - uid: 6526 + components: + - type: Transform + pos: 46.5,56.5 + parent: 2 + - uid: 6528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,55.5 + parent: 2 + - uid: 6529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,54.5 + parent: 2 + - uid: 6530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,53.5 + parent: 2 + - uid: 6531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,52.5 + parent: 2 + - uid: 6532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,51.5 + parent: 2 + - uid: 6533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,52.5 + parent: 2 + - uid: 6534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,51.5 + parent: 2 + - uid: 6535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,50.5 + parent: 2 + - uid: 6536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,51.5 + parent: 2 + - uid: 6537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,51.5 + parent: 2 + - uid: 6538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,50.5 + parent: 2 + - uid: 6539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,49.5 + parent: 2 + - uid: 6540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,48.5 + parent: 2 + - uid: 6541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,56.5 + parent: 2 + - uid: 6542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,56.5 + parent: 2 + - uid: 6543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,56.5 + parent: 2 + - uid: 6544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,56.5 + parent: 2 + - uid: 6545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,56.5 + parent: 2 + - uid: 6546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,57.5 + parent: 2 + - uid: 6547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,56.5 + parent: 2 + - uid: 6548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,56.5 + parent: 2 + - uid: 6549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,55.5 + parent: 2 + - uid: 6550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,54.5 + parent: 2 + - uid: 6551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,53.5 + parent: 2 + - uid: 6552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,53.5 + parent: 2 + - uid: 6553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,53.5 + parent: 2 + - uid: 6554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,53.5 + parent: 2 + - uid: 6555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,53.5 + parent: 2 + - uid: 6556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,57.5 + parent: 2 + - uid: 6557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,57.5 + parent: 2 + - uid: 6558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,57.5 + parent: 2 + - uid: 6559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,57.5 + parent: 2 + - uid: 6560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,57.5 + parent: 2 + - uid: 6561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,52.5 + parent: 2 + - uid: 6562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,51.5 + parent: 2 + - uid: 6563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,50.5 + parent: 2 + - uid: 6564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,49.5 + parent: 2 + - uid: 6565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,48.5 + parent: 2 + - uid: 6566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,48.5 + parent: 2 + - uid: 6567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,47.5 + parent: 2 + - uid: 6568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,48.5 + parent: 2 + - uid: 6569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,47.5 + parent: 2 + - uid: 6570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,47.5 + parent: 2 + - uid: 6571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,47.5 + parent: 2 + - uid: 6572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,46.5 + parent: 2 + - uid: 6573 + components: + - type: Transform + pos: 33.5,63.5 + parent: 2 + - uid: 6574 + components: + - type: Transform + pos: 34.5,63.5 + parent: 2 + - uid: 6575 + components: + - type: Transform + pos: 35.5,64.5 + parent: 2 + - uid: 6576 + components: + - type: Transform + pos: -31.5,33.5 + parent: 2 + - uid: 6577 + components: + - type: Transform + pos: -31.5,31.5 + parent: 2 + - uid: 6578 + components: + - type: Transform + pos: -31.5,29.5 + parent: 2 + - uid: 6579 + components: + - type: Transform + pos: -31.5,32.5 + parent: 2 + - uid: 6580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,19.5 + parent: 2 + - uid: 6581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,20.5 + parent: 2 + - uid: 6582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,21.5 + parent: 2 + - uid: 6583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,22.5 + parent: 2 + - uid: 6584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,23.5 + parent: 2 + - uid: 6585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,20.5 + parent: 2 + - uid: 6586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,20.5 + parent: 2 + - uid: 6587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,20.5 + parent: 2 + - uid: 6588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,23.5 + parent: 2 + - uid: 6589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,23.5 + parent: 2 + - uid: 6590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,23.5 + parent: 2 + - uid: 6591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,23.5 + parent: 2 + - uid: 6592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,23.5 + parent: 2 + - uid: 6593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,24.5 + parent: 2 + - uid: 6594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,24.5 + parent: 2 + - uid: 6595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,25.5 + parent: 2 + - uid: 6596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,25.5 + parent: 2 + - uid: 6597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,68.5 + parent: 2 + - uid: 6598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,67.5 + parent: 2 + - uid: 6599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,66.5 + parent: 2 + - uid: 6600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,53.5 + parent: 2 + - uid: 6601 + components: + - type: Transform + pos: -15.5,25.5 + parent: 2 + - uid: 6602 + components: + - type: Transform + pos: -12.5,25.5 + parent: 2 + - uid: 6603 + components: + - type: Transform + pos: -15.5,24.5 + parent: 2 + - uid: 6604 + components: + - type: Transform + pos: -13.5,25.5 + parent: 2 + - uid: 6605 + components: + - type: Transform + pos: -12.5,22.5 + parent: 2 + - uid: 6606 + components: + - type: Transform + pos: -14.5,25.5 + parent: 2 + - uid: 6607 + components: + - type: Transform + pos: -14.5,22.5 + parent: 2 + - uid: 6608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 2 + - uid: 6609 + components: + - type: Transform + pos: -13.5,22.5 + parent: 2 + - uid: 6610 + components: + - type: Transform + pos: -15.5,22.5 + parent: 2 + - uid: 6611 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 2 + - uid: 6612 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 2 + - uid: 6613 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 2 + - uid: 6614 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 2 + - uid: 6615 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 2 + - uid: 6616 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 2 + - uid: 6617 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 2 + - uid: 6618 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 2 + - uid: 6619 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 2 + - uid: 6620 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 2 + - uid: 6621 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - uid: 6622 + components: + - type: Transform + pos: -15.5,-10.5 + parent: 2 + - uid: 6623 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 + - uid: 6624 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 2 + - uid: 6625 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 2 + - uid: 6626 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 2 + - uid: 6627 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 2 + - uid: 6628 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 2 + - uid: 6629 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 2 + - uid: 6630 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 2 + - uid: 6631 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 2 + - uid: 6632 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 2 + - uid: 6633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 2 + - uid: 6634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 2 + - uid: 6635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 2 + - uid: 6636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 2 + - uid: 6637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 2 + - uid: 6638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,1.5 + parent: 2 + - uid: 6639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 2 + - uid: 6640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,2.5 + parent: 2 + - uid: 6641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,2.5 + parent: 2 + - uid: 6642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,2.5 + parent: 2 + - uid: 6643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,1.5 + parent: 2 + - uid: 6644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,0.5 + parent: 2 + - uid: 6645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 2 + - uid: 6646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 2 + - uid: 6647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 2 + - uid: 6648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 2 + - uid: 6649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-3.5 + parent: 2 + - uid: 6650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-4.5 + parent: 2 + - uid: 6651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 2 + - uid: 6652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-6.5 + parent: 2 + - uid: 6653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-7.5 + parent: 2 + - uid: 6654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-8.5 + parent: 2 + - uid: 6658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,76.5 + parent: 2 + - uid: 6659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,77.5 + parent: 2 + - uid: 6660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,77.5 + parent: 2 + - uid: 6661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,77.5 + parent: 2 + - uid: 6662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,77.5 + parent: 2 + - uid: 6663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,77.5 + parent: 2 + - uid: 6664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,77.5 + parent: 2 + - uid: 6665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,77.5 + parent: 2 + - uid: 6666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,77.5 + parent: 2 + - uid: 6667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,77.5 + parent: 2 + - uid: 6668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,77.5 + parent: 2 + - uid: 6669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,21.5 + parent: 2 + - uid: 6670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-9.5 + parent: 2 + - uid: 6671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-9.5 + parent: 2 + - uid: 6672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-9.5 + parent: 2 + - uid: 6673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-9.5 + parent: 2 + - uid: 6674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-9.5 + parent: 2 + - uid: 6675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-10.5 + parent: 2 + - uid: 6676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-11.5 + parent: 2 + - uid: 6677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-12.5 + parent: 2 + - uid: 6678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-13.5 + parent: 2 + - uid: 6679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-13.5 + parent: 2 + - uid: 6680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-13.5 + parent: 2 + - uid: 6681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-13.5 + parent: 2 + - uid: 6682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-13.5 + parent: 2 + - uid: 6683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-11.5 + parent: 2 + - uid: 6684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-11.5 + parent: 2 + - uid: 6685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-11.5 + parent: 2 + - uid: 6686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-11.5 + parent: 2 + - uid: 6687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-9.5 + parent: 2 + - uid: 6688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-10.5 + parent: 2 + - uid: 6689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-11.5 + parent: 2 + - uid: 6690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-12.5 + parent: 2 + - uid: 6691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-13.5 + parent: 2 + - uid: 6692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-9.5 + parent: 2 + - uid: 6693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-10.5 + parent: 2 + - uid: 6694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-11.5 + parent: 2 + - uid: 6695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-12.5 + parent: 2 + - uid: 6696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-13.5 + parent: 2 + - uid: 6697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-9.5 + parent: 2 + - uid: 6698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-10.5 + parent: 2 + - uid: 6699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-11.5 + parent: 2 + - uid: 6700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-12.5 + parent: 2 + - uid: 6701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-13.5 + parent: 2 + - uid: 6702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-6.5 + parent: 2 + - uid: 6703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-8.5 + parent: 2 + - uid: 6704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-10.5 + parent: 2 + - uid: 6705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-12.5 + parent: 2 + - uid: 6706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-14.5 + parent: 2 + - uid: 6707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-16.5 + parent: 2 + - uid: 6708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-18.5 + parent: 2 + - uid: 6709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-19.5 + parent: 2 + - uid: 6710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-21.5 + parent: 2 + - uid: 6711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-20.5 + parent: 2 + - uid: 6712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-19.5 + parent: 2 + - uid: 6713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-19.5 + parent: 2 + - uid: 6714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-20.5 + parent: 2 + - uid: 6715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-21.5 + parent: 2 + - uid: 6716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-20.5 + parent: 2 + - uid: 6717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-19.5 + parent: 2 + - uid: 6718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-18.5 + parent: 2 + - uid: 6719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-18.5 + parent: 2 + - uid: 6720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-19.5 + parent: 2 + - uid: 6721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-5.5 + parent: 2 + - uid: 6722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-6.5 + parent: 2 + - uid: 6723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-7.5 + parent: 2 + - uid: 6724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-8.5 + parent: 2 + - uid: 6725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-9.5 + parent: 2 + - uid: 6726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 2 + - uid: 6727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-11.5 + parent: 2 + - uid: 6728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-12.5 + parent: 2 + - uid: 6729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-13.5 + parent: 2 + - uid: 6730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-14.5 + parent: 2 + - uid: 6731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-15.5 + parent: 2 + - uid: 6732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-16.5 + parent: 2 + - uid: 6733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-17.5 + parent: 2 + - uid: 6734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-17.5 + parent: 2 + - uid: 6735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-18.5 + parent: 2 + - uid: 6736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-18.5 + parent: 2 + - uid: 6737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 2 + - uid: 6738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 2 + - uid: 6739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-18.5 + parent: 2 + - uid: 6740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-18.5 + parent: 2 + - uid: 6741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-18.5 + parent: 2 + - uid: 6742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-18.5 + parent: 2 + - uid: 6743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-18.5 + parent: 2 + - uid: 6744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-18.5 + parent: 2 + - uid: 6745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-18.5 + parent: 2 + - uid: 6746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-18.5 + parent: 2 + - uid: 6747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-18.5 + parent: 2 + - uid: 6748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-18.5 + parent: 2 + - uid: 6749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-17.5 + parent: 2 + - uid: 6750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-17.5 + parent: 2 + - uid: 6751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-17.5 + parent: 2 + - uid: 6752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-17.5 + parent: 2 + - uid: 6753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-17.5 + parent: 2 + - uid: 6754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-17.5 + parent: 2 + - uid: 6755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-17.5 + parent: 2 + - uid: 6756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-17.5 + parent: 2 + - uid: 6757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-16.5 + parent: 2 + - uid: 6758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-16.5 + parent: 2 + - uid: 6759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-15.5 + parent: 2 + - uid: 6760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-14.5 + parent: 2 + - uid: 6761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-13.5 + parent: 2 + - uid: 6762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-12.5 + parent: 2 + - uid: 6763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-11.5 + parent: 2 + - uid: 6764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-10.5 + parent: 2 + - uid: 6765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-9.5 + parent: 2 + - uid: 6766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-8.5 + parent: 2 + - uid: 6767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-7.5 + parent: 2 + - uid: 6768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-4.5 + parent: 2 + - uid: 6769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-4.5 + parent: 2 + - uid: 6770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 2 + - uid: 6771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-4.5 + parent: 2 + - uid: 6772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-4.5 + parent: 2 + - uid: 6773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-4.5 + parent: 2 + - uid: 6774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-4.5 + parent: 2 + - uid: 6775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-4.5 + parent: 2 + - uid: 6776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-4.5 + parent: 2 + - uid: 6777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-4.5 + parent: 2 + - uid: 6778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-4.5 + parent: 2 + - uid: 6779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 2 + - uid: 6780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-4.5 + parent: 2 + - uid: 6781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-4.5 + parent: 2 + - uid: 6782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-4.5 + parent: 2 + - uid: 6783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-4.5 + parent: 2 + - uid: 6784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-5.5 + parent: 2 + - uid: 6785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-5.5 + parent: 2 + - uid: 6786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-5.5 + parent: 2 + - uid: 6787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-5.5 + parent: 2 + - uid: 6788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-5.5 + parent: 2 + - uid: 6789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-5.5 + parent: 2 + - uid: 6790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-6.5 + parent: 2 + - uid: 6791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 2 + - uid: 6792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-3.5 + parent: 2 + - uid: 6793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 2 + - uid: 6794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-4.5 + parent: 2 + - uid: 6795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-4.5 + parent: 2 + - uid: 6796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 2 + - uid: 12071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,75.5 + parent: 2 + - uid: 18574 + components: + - type: Transform + pos: 86.5,17.5 + parent: 2 + - uid: 18575 + components: + - type: Transform + pos: 86.5,15.5 + parent: 2 + - uid: 18578 + components: + - type: Transform + pos: 83.5,19.5 + parent: 2 + - uid: 18579 + components: + - type: Transform + pos: 83.5,18.5 + parent: 2 + - uid: 18580 + components: + - type: Transform + pos: 83.5,14.5 + parent: 2 + - uid: 18582 + components: + - type: Transform + pos: 90.5,14.5 + parent: 2 + - uid: 18583 + components: + - type: Transform + pos: 90.5,12.5 + parent: 2 + - uid: 18584 + components: + - type: Transform + pos: 89.5,10.5 + parent: 2 + - uid: 18585 + components: + - type: Transform + pos: 89.5,8.5 + parent: 2 + - uid: 18589 + components: + - type: Transform + pos: 89.5,-0.5 + parent: 2 + - uid: 18590 + components: + - type: Transform + pos: 89.5,-2.5 + parent: 2 + - uid: 18591 + components: + - type: Transform + pos: 90.5,-4.5 + parent: 2 + - uid: 18592 + components: + - type: Transform + pos: 90.5,-6.5 + parent: 2 + - uid: 18593 + components: + - type: Transform + pos: 87.5,-9.5 + parent: 2 + - uid: 18599 + components: + - type: Transform + pos: 88.5,-7.5 + parent: 2 + - uid: 18600 + components: + - type: Transform + pos: 89.5,-6.5 + parent: 2 + - uid: 18601 + components: + - type: Transform + pos: 87.5,-8.5 + parent: 2 + - uid: 18604 + components: + - type: Transform + pos: 87.5,-2.5 + parent: 2 + - uid: 18605 + components: + - type: Transform + pos: 87.5,0.5 + parent: 2 + - uid: 18606 + components: + - type: Transform + pos: 87.5,1.5 + parent: 2 + - uid: 18607 + components: + - type: Transform + pos: 87.5,5.5 + parent: 2 + - uid: 18608 + components: + - type: Transform + pos: 87.5,6.5 + parent: 2 + - uid: 18609 + components: + - type: Transform + pos: 87.5,9.5 + parent: 2 + - uid: 18610 + components: + - type: Transform + pos: 87.5,10.5 + parent: 2 + - uid: 18611 + components: + - type: Transform + pos: 87.5,14.5 + parent: 2 + - uid: 18785 + components: + - type: Transform + pos: 79.5,47.5 + parent: 2 + - uid: 18786 + components: + - type: Transform + pos: 80.5,47.5 + parent: 2 + - uid: 18787 + components: + - type: Transform + pos: 81.5,47.5 + parent: 2 + - uid: 18790 + components: + - type: Transform + pos: 72.5,48.5 + parent: 2 + - uid: 18791 + components: + - type: Transform + pos: 72.5,49.5 + parent: 2 + - uid: 18792 + components: + - type: Transform + pos: 75.5,52.5 + parent: 2 + - uid: 18793 + components: + - type: Transform + pos: 75.5,51.5 + parent: 2 + - uid: 18835 + components: + - type: Transform + pos: 75.5,54.5 + parent: 2 + - uid: 18836 + components: + - type: Transform + pos: 75.5,55.5 + parent: 2 + - uid: 18837 + components: + - type: Transform + pos: 75.5,56.5 + parent: 2 + - uid: 18838 + components: + - type: Transform + pos: 75.5,57.5 + parent: 2 + - uid: 18849 + components: + - type: Transform + pos: 87.5,21.5 + parent: 2 + - uid: 18850 + components: + - type: Transform + pos: 87.5,20.5 + parent: 2 + - uid: 18851 + components: + - type: Transform + pos: 87.5,19.5 + parent: 2 + - uid: 18852 + components: + - type: Transform + pos: 87.5,18.5 + parent: 2 + - uid: 18853 + components: + - type: Transform + pos: 87.5,17.5 + parent: 2 + - uid: 18854 + components: + - type: Transform + pos: 87.5,16.5 + parent: 2 + - uid: 18855 + components: + - type: Transform + pos: 87.5,15.5 + parent: 2 + - uid: 18856 + components: + - type: Transform + pos: 86.5,20.5 + parent: 2 + - uid: 18857 + components: + - type: Transform + pos: 85.5,20.5 + parent: 2 + - uid: 18858 + components: + - type: Transform + pos: 85.5,21.5 + parent: 2 + - uid: 18859 + components: + - type: Transform + pos: 85.5,22.5 + parent: 2 + - uid: 18860 + components: + - type: Transform + pos: 85.5,23.5 + parent: 2 + - uid: 18861 + components: + - type: Transform + pos: 85.5,24.5 + parent: 2 + - uid: 18862 + components: + - type: Transform + pos: 85.5,25.5 + parent: 2 + - uid: 18863 + components: + - type: Transform + pos: 85.5,26.5 + parent: 2 + - uid: 18864 + components: + - type: Transform + pos: 85.5,27.5 + parent: 2 + - uid: 18865 + components: + - type: Transform + pos: 85.5,28.5 + parent: 2 + - uid: 18866 + components: + - type: Transform + pos: 84.5,28.5 + parent: 2 + - uid: 18867 + components: + - type: Transform + pos: 86.5,28.5 + parent: 2 + - uid: 18868 + components: + - type: Transform + pos: 87.5,28.5 + parent: 2 + - uid: 18869 + components: + - type: Transform + pos: 88.5,28.5 + parent: 2 + - uid: 18870 + components: + - type: Transform + pos: 88.5,29.5 + parent: 2 + - uid: 18871 + components: + - type: Transform + pos: 89.5,29.5 + parent: 2 + - uid: 18872 + components: + - type: Transform + pos: 89.5,30.5 + parent: 2 + - uid: 18873 + components: + - type: Transform + pos: 89.5,31.5 + parent: 2 + - uid: 18874 + components: + - type: Transform + pos: 89.5,32.5 + parent: 2 + - uid: 18875 + components: + - type: Transform + pos: 89.5,33.5 + parent: 2 + - uid: 18876 + components: + - type: Transform + pos: 89.5,34.5 + parent: 2 + - uid: 18877 + components: + - type: Transform + pos: 89.5,35.5 + parent: 2 + - uid: 18878 + components: + - type: Transform + pos: 89.5,36.5 + parent: 2 + - uid: 18879 + components: + - type: Transform + pos: 89.5,37.5 + parent: 2 + - uid: 18880 + components: + - type: Transform + pos: 89.5,38.5 + parent: 2 + - uid: 18881 + components: + - type: Transform + pos: 89.5,39.5 + parent: 2 + - uid: 18882 + components: + - type: Transform + pos: 88.5,39.5 + parent: 2 + - uid: 18883 + components: + - type: Transform + pos: 88.5,40.5 + parent: 2 + - uid: 18884 + components: + - type: Transform + pos: 87.5,40.5 + parent: 2 + - uid: 18885 + components: + - type: Transform + pos: 86.5,40.5 + parent: 2 + - uid: 18886 + components: + - type: Transform + pos: 85.5,40.5 + parent: 2 + - uid: 18887 + components: + - type: Transform + pos: 84.5,40.5 + parent: 2 + - uid: 18888 + components: + - type: Transform + pos: 85.5,41.5 + parent: 2 + - uid: 18889 + components: + - type: Transform + pos: 85.5,42.5 + parent: 2 + - uid: 18890 + components: + - type: Transform + pos: 85.5,43.5 + parent: 2 + - uid: 18891 + components: + - type: Transform + pos: 85.5,44.5 + parent: 2 + - uid: 18892 + components: + - type: Transform + pos: 85.5,45.5 + parent: 2 + - uid: 18893 + components: + - type: Transform + pos: 85.5,46.5 + parent: 2 + - uid: 18894 + components: + - type: Transform + pos: 85.5,47.5 + parent: 2 + - uid: 19540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,76.5 + parent: 2 + - uid: 19541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,77.5 + parent: 2 + - uid: 19542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,77.5 + parent: 2 + - uid: 19543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,74.5 + parent: 2 + - uid: 19544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,78.5 + parent: 2 + - uid: 19545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,78.5 + parent: 2 + - uid: 19546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,79.5 + parent: 2 + - uid: 19547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,79.5 + parent: 2 + - uid: 19548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,79.5 + parent: 2 + - uid: 19549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,79.5 + parent: 2 + - uid: 19550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,79.5 + parent: 2 + - uid: 19551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,79.5 + parent: 2 + - uid: 19552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,79.5 + parent: 2 + - uid: 19553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,78.5 + parent: 2 + - uid: 19554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,78.5 + parent: 2 + - uid: 19555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,77.5 + parent: 2 + - uid: 19556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,77.5 + parent: 2 +- proto: Chair + entities: + - uid: 6797 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 + - uid: 6798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,15.5 + parent: 2 + - uid: 6799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,58.5 + parent: 2 + - uid: 6800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,58.5 + parent: 2 + - uid: 6801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,67.5 + parent: 2 + - uid: 6802 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - uid: 6803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,24.5 + parent: 2 + - uid: 6804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,25.5 + parent: 2 + - uid: 6805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,26.5 + parent: 2 + - uid: 6806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,53.5 + parent: 2 + - uid: 6807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,54.5 + parent: 2 + - uid: 6808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,55.5 + parent: 2 + - uid: 6809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,52.5 + parent: 2 + - uid: 6810 + components: + - type: Transform + pos: -31.5,64.5 + parent: 2 + - uid: 6811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,68.5 + parent: 2 + - uid: 6812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,67.5 + parent: 2 + - uid: 6813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,59.5 + parent: 2 + - uid: 6814 + components: + - type: Transform + pos: 45.5,37.5 + parent: 2 + - uid: 6815 + components: + - type: Transform + pos: 53.5,38.5 + parent: 2 + - uid: 6816 + components: + - type: Transform + pos: 54.5,38.5 + parent: 2 + - uid: 6817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,44.5 + parent: 2 + - uid: 6818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,38.5 + parent: 2 + - uid: 6819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,37.5 + parent: 2 + - uid: 6820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,37.5 + parent: 2 + - uid: 6821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,38.5 + parent: 2 + - uid: 6822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,37.5 + parent: 2 + - uid: 6823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,37.5 + parent: 2 + - uid: 6824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,31.5 + parent: 2 + - uid: 6825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,31.5 + parent: 2 + - uid: 6826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,31.5 + parent: 2 + - uid: 6827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,31.5 + parent: 2 + - uid: 6828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,41.5 + parent: 2 + - uid: 6829 + components: + - type: Transform + pos: 12.5,43.5 + parent: 2 + - uid: 6830 + components: + - type: Transform + pos: 11.5,43.5 + parent: 2 + - uid: 6831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,59.5 + parent: 2 + - uid: 6832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,58.5 + parent: 2 + - uid: 6833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,57.5 + parent: 2 + - uid: 6834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,59.5 + parent: 2 + - uid: 6835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,58.5 + parent: 2 + - uid: 6836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,57.5 + parent: 2 + - uid: 6837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,57.5 + parent: 2 + - uid: 6838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,56.5 + parent: 2 + - uid: 6839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,55.5 + parent: 2 + - uid: 6840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,54.5 + parent: 2 + - uid: 6841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,54.5 + parent: 2 + - uid: 6842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,39.5 + parent: 2 + - uid: 6843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,38.5 + parent: 2 + - uid: 6844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,37.5 + parent: 2 + - uid: 6845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,62.5 + parent: 2 + - uid: 6846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,61.5 + parent: 2 + - uid: 6847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,60.5 + parent: 2 + - uid: 6848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,59.5 + parent: 2 + - uid: 6849 + components: + - type: Transform + pos: 70.5,4.5 + parent: 2 + - uid: 6850 + components: + - type: Transform + pos: 70.5,4.5 + parent: 2 + - uid: 6851 + components: + - type: Transform + pos: 69.5,4.5 + parent: 2 + - uid: 6852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,3.5 + parent: 2 + - uid: 6853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,2.5 + parent: 2 + - uid: 6854 + components: + - type: Transform + pos: 27.5,63.5 + parent: 2 + - uid: 6855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,65.5 + parent: 2 + - uid: 6856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,64.5 + parent: 2 + - uid: 6857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,63.5 + parent: 2 + - uid: 12628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,74.5 + parent: 2 + - uid: 19479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,68.5 + parent: 2 + - uid: 19480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,67.5 + parent: 2 + - uid: 19481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,67.5 + parent: 2 + - uid: 19482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,69.5 + parent: 2 + - uid: 19483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,68.5 + parent: 2 + - uid: 19485 + components: + - type: Transform + pos: -31.5,69.5 + parent: 2 + - uid: 19486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,66.5 + parent: 2 + - uid: 19521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,73.5 + parent: 2 + - uid: 19522 + components: + - type: Transform + pos: -24.5,74.5 + parent: 2 + - uid: 19523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,74.5 + parent: 2 + - uid: 19524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,74.5 + parent: 2 +- proto: ChairGreyscale + entities: + - uid: 6858 + components: + - type: Transform + pos: -27.5,61.5 + parent: 2 + - uid: 6859 + components: + - type: Transform + pos: -31.5,61.5 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 6860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,28.5 + parent: 2 + - uid: 6861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 2 + - uid: 6862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,13.5 + parent: 2 + - uid: 6863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,6.5 + parent: 2 + - uid: 6864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,14.5 + parent: 2 + - uid: 6865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,20.5 + parent: 2 + - uid: 6866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,28.5 + parent: 2 + - uid: 6867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,35.5 + parent: 2 + - uid: 6868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,45.5 + parent: 2 + - uid: 6869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,44.5 + parent: 2 + - uid: 6870 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 6871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,29.5 + parent: 2 + - uid: 6872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,64.5 + parent: 2 + - uid: 6873 + components: + - type: Transform + pos: -15.5,60.5 + parent: 2 + - uid: 6874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,52.5 + parent: 2 + - uid: 6875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,54.5 + parent: 2 + - uid: 6876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,64.5 + parent: 2 + - uid: 6877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,13.5 + parent: 2 + - uid: 6878 + components: + - type: Transform + pos: 74.54003,40.548847 + parent: 2 + - uid: 6879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,15.5 + parent: 2 + - uid: 6880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,22.5 + parent: 2 + - uid: 6881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,59.5 + parent: 2 + - uid: 6882 + components: + - type: Transform + pos: 17.5,55.5 + parent: 2 + - uid: 6883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,28.5 + parent: 2 + - uid: 6884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,28.5 + parent: 2 + - uid: 6885 + components: + - type: Transform + pos: 26.5,36.5 + parent: 2 + - uid: 6886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,44.5 + parent: 2 + - uid: 6887 + components: + - type: Transform + pos: 19.5,38.5 + parent: 2 + - uid: 6888 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 6889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,28.5 + parent: 2 + - uid: 6890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,44.5 + parent: 2 + - uid: 6891 + components: + - type: Transform + pos: 75.5,37.5 + parent: 2 + - uid: 6892 + components: + - type: Transform + pos: 77.5,37.5 + parent: 2 + - uid: 6893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,37.5 + parent: 2 + - uid: 6894 + components: + - type: Transform + pos: 85.5,31.5 + parent: 2 + - uid: 6895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,57.5 + parent: 2 + - uid: 6897 + components: + - type: Transform + pos: 72.5,13.5 + parent: 2 + - uid: 6898 + components: + - type: Transform + pos: 72.5,14.5 + parent: 2 + - uid: 6899 + components: + - type: Transform + pos: 71.5,39.5 + parent: 2 + - uid: 6900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,6.5 + parent: 2 + - uid: 6901 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 6902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-1.5 + parent: 2 + - uid: 13116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,28.5 + parent: 2 +- proto: ChairOfficeLight + entities: + - uid: 6903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,25.5 + parent: 2 + - uid: 6904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,2.5 + parent: 2 +- proto: ChairWood + entities: + - uid: 6905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,13.5 + parent: 2 + - uid: 6906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,16.5 + parent: 2 + - uid: 6907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,14.5 + parent: 2 + - uid: 6908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,17.5 + parent: 2 + - uid: 6909 + components: + - type: Transform + pos: 23.5,14.5 + parent: 2 + - uid: 6910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,13.5 + parent: 2 + - uid: 6911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,11.5 + parent: 2 + - uid: 6912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,10.5 + parent: 2 + - uid: 6913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,11.5 + parent: 2 + - uid: 6914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,13.5 + parent: 2 + - uid: 6915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,73.5 + parent: 2 + - uid: 6916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,79.5 + parent: 2 + - uid: 6917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,79.5 + parent: 2 + - uid: 6918 + components: + - type: Transform + pos: 9.5,61.5 + parent: 2 + - uid: 6919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,59.5 + parent: 2 + - uid: 6920 + components: + - type: Transform + pos: 14.5,57.5 + parent: 2 + - uid: 6921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,55.5 + parent: 2 + - uid: 6922 + components: + - type: Transform + pos: 80.5,51.5 + parent: 2 + - uid: 6923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,49.5 + parent: 2 + - uid: 6924 + components: + - type: Transform + pos: 62.5,51.5 + parent: 2 + - uid: 6925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,50.5 + parent: 2 + - uid: 6926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,54.5 + parent: 2 + - uid: 6927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,53.5 + parent: 2 +- proto: chem_master + entities: + - uid: 6928 + components: + - type: Transform + pos: 47.5,45.5 + parent: 2 + - uid: 6929 + components: + - type: Transform + pos: 59.5,42.5 + parent: 2 + - uid: 6930 + components: + - type: Transform + pos: 14.5,24.5 + parent: 2 + - uid: 6931 + components: + - type: Transform + pos: 13.5,27.5 + parent: 2 +- proto: ChemDispenser + entities: + - uid: 6932 + components: + - type: Transform + pos: 12.5,24.5 + parent: 2 + - uid: 6933 + components: + - type: Transform + pos: 11.5,28.5 + parent: 2 +- proto: ChemicalPayload + entities: + - uid: 6934 + components: + - type: Transform + pos: 41.33658,7.402665 + parent: 2 + - uid: 6935 + components: + - type: Transform + pos: 41.551777,7.3668227 + parent: 2 + - uid: 6936 + components: + - type: Transform + pos: 41.76698,7.3847437 + parent: 2 + - uid: 6937 + components: + - type: Transform + pos: 44.60328,53.38158 + parent: 2 + - uid: 6938 + components: + - type: Transform + pos: 44.28048,53.297947 + parent: 2 + - uid: 6939 + components: + - type: Transform + pos: 44.66306,53.656372 + parent: 2 +- proto: ChemistryHotplate + entities: + - uid: 6940 + components: + - type: Transform + pos: 43.5,39.5 + parent: 2 + - uid: 6941 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 +- proto: CigarGoldCase + entities: + - uid: 6942 + components: + - type: Transform + pos: 31.374626,53.571064 + parent: 2 + - uid: 6943 + components: + - type: Transform + pos: 84.33954,33.767384 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: CircuitImprinter + entities: + - uid: 6944 + components: + - type: Transform + pos: -6.5,34.5 + parent: 2 + - uid: 6945 + components: + - type: Transform + pos: 55.5,20.5 + parent: 2 + - uid: 6946 + components: + - type: Transform + pos: 46.5,25.5 + parent: 2 +- proto: CleanerDispenser + entities: + - uid: 6947 + components: + - type: Transform + pos: 43.5,55.5 + parent: 2 +- proto: ClosetBombFilled + entities: + - uid: 6949 + components: + - type: Transform + pos: -25.5,71.5 + parent: 2 +- proto: ClosetChefFilled + entities: + - uid: 6950 + components: + - type: Transform + pos: 55.5,46.5 + parent: 2 + - uid: 6951 + components: + - type: Transform + pos: 57.5,42.5 + parent: 2 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 5080 + components: + - type: Transform + pos: -11.5,70.5 + parent: 2 + - uid: 6952 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - uid: 6953 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 6954 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 6955 + components: + - type: Transform + pos: 20.5,4.5 + parent: 2 + - uid: 6956 + components: + - type: Transform + pos: -39.5,56.5 + parent: 2 + - uid: 6957 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 6958 + components: + - type: Transform + pos: 0.5,78.5 + parent: 2 + - uid: 6959 + components: + - type: Transform + pos: 11.5,75.5 + parent: 2 + - uid: 6960 + components: + - type: Transform + pos: 14.5,78.5 + parent: 2 + - uid: 6961 + components: + - type: Transform + pos: 77.5,59.5 + parent: 2 + - uid: 6962 + components: + - type: Transform + pos: 66.5,62.5 + parent: 2 + - uid: 6963 + components: + - type: Transform + pos: 64.5,62.5 + parent: 2 + - uid: 6964 + components: + - type: Transform + pos: 68.5,46.5 + parent: 2 + - uid: 6965 + components: + - type: Transform + pos: 75.5,35.5 + parent: 2 + - uid: 6966 + components: + - type: Transform + pos: 77.5,35.5 + parent: 2 + - uid: 6967 + components: + - type: Transform + pos: 67.5,5.5 + parent: 2 + - uid: 6968 + components: + - type: Transform + pos: 72.5,-1.5 + parent: 2 + - uid: 6969 + components: + - type: Transform + pos: 63.5,6.5 + parent: 2 + - uid: 6970 + components: + - type: Transform + pos: 62.5,11.5 + parent: 2 + - uid: 6971 + components: + - type: Transform + pos: 76.5,15.5 + parent: 2 + - uid: 6972 + components: + - type: Transform + pos: 59.5,12.5 + parent: 2 + - uid: 6973 + components: + - type: Transform + pos: 45.5,8.5 + parent: 2 + - uid: 6974 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 + - uid: 6975 + components: + - type: Transform + pos: -21.5,15.5 + parent: 2 + - uid: 6976 + components: + - type: Transform + pos: 18.5,69.5 + parent: 2 + - uid: 6977 + components: + - type: Transform + pos: 62.5,46.5 + parent: 2 + - uid: 6978 + components: + - type: Transform + pos: 58.5,49.5 + parent: 2 + - uid: 6979 + components: + - type: Transform + pos: 47.5,55.5 + parent: 2 + - uid: 6980 + components: + - type: Transform + pos: 47.5,53.5 + parent: 2 + - uid: 14312 + components: + - type: Transform + pos: 57.5,58.5 + parent: 2 + - uid: 14781 + components: + - type: Transform + pos: -5.5,70.5 + parent: 2 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 6981 + components: + - type: Transform + pos: 76.5,59.5 + parent: 2 + - uid: 12531 + components: + - type: Transform + pos: -11.5,70.5 + parent: 2 + - uid: 14313 + components: + - type: Transform + pos: 57.5,56.5 + parent: 2 + - uid: 14531 + components: + - type: Transform + pos: -5.5,70.5 + parent: 2 +- proto: ClosetFireFilled + entities: + - uid: 6982 + components: + - type: Transform + pos: 37.5,19.5 + parent: 2 + - uid: 6983 + components: + - type: Transform + pos: -39.5,57.5 + parent: 2 + - uid: 6984 + components: + - type: Transform + pos: -3.5,40.5 + parent: 2 + - uid: 6985 + components: + - type: Transform + pos: -7.5,62.5 + parent: 2 + - uid: 6986 + components: + - type: Transform + pos: 50.5,29.5 + parent: 2 + - uid: 6987 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 6988 + components: + - type: Transform + pos: 8.5,43.5 + parent: 2 + - uid: 6989 + components: + - type: Transform + pos: 68.5,42.5 + parent: 2 + - uid: 6990 + components: + - type: Transform + pos: 75.5,33.5 + parent: 2 + - uid: 6991 + components: + - type: Transform + pos: 77.5,33.5 + parent: 2 + - uid: 6992 + components: + - type: Transform + pos: 67.5,6.5 + parent: 2 + - uid: 6993 + components: + - type: Transform + pos: 72.5,-0.5 + parent: 2 + - uid: 6994 + components: + - type: Transform + pos: 63.5,11.5 + parent: 2 + - uid: 6995 + components: + - type: Transform + pos: 58.5,12.5 + parent: 2 + - uid: 6996 + components: + - type: Transform + pos: 45.5,9.5 + parent: 2 + - uid: 6997 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 + - uid: 6998 + components: + - type: Transform + pos: -20.5,15.5 + parent: 2 + - uid: 6999 + components: + - type: Transform + pos: 18.5,68.5 + parent: 2 + - uid: 7000 + components: + - type: Transform + pos: 61.5,46.5 + parent: 2 + - uid: 7001 + components: + - type: Transform + pos: 23.5,61.5 + parent: 2 + - uid: 7002 + components: + - type: Transform + pos: 47.5,54.5 + parent: 2 + - uid: 14121 + components: + - type: Transform + pos: 55.5,58.5 + parent: 2 + - uid: 18754 + components: + - type: Transform + pos: -24.5,14.5 + parent: 2 + - uid: 18755 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 +- proto: ClosetJanitorBombFilled + entities: + - uid: 7003 + components: + - type: Transform + pos: 42.5,52.5 + parent: 2 +- proto: ClosetJanitorFilled + entities: + - uid: 7004 + components: + - type: Transform + pos: 41.5,54.5 + parent: 2 +- proto: ClosetL3Filled + entities: + - uid: 7005 + components: + - type: Transform + pos: 29.5,63.5 + parent: 2 +- proto: ClosetL3JanitorFilled + entities: + - uid: 7006 + components: + - type: Transform + pos: 42.5,51.5 + parent: 2 +- proto: ClosetL3SecurityFilled + entities: + - uid: 7007 + components: + - type: Transform + pos: -22.5,71.5 + parent: 2 + - uid: 7008 + components: + - type: Transform + pos: 25.5,39.5 + parent: 2 +- proto: ClosetMaintenance + entities: + - uid: 7009 + components: + - type: Transform + pos: 20.5,8.5 + parent: 2 + - uid: 7010 + components: + - type: Transform + pos: 21.5,8.5 + parent: 2 + - uid: 7110 + components: + - type: Transform + pos: 78.5,50.5 + parent: 2 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 7011 + components: + - type: Transform + pos: 35.5,19.5 + parent: 2 + - uid: 7012 + components: + - type: Transform + pos: 46.5,9.5 + parent: 2 + - uid: 7013 + components: + - type: Transform + pos: 41.5,65.5 + parent: 2 + - uid: 7014 + components: + - type: Transform + pos: 41.5,66.5 + parent: 2 + - uid: 7015 + components: + - type: Transform + pos: 37.5,64.5 + parent: 2 + - uid: 7016 + components: + - type: Transform + pos: 37.5,66.5 + parent: 2 + - uid: 7017 + components: + - type: Transform + pos: 37.5,65.5 + parent: 2 + - uid: 7018 + components: + - type: Transform + pos: 41.5,64.5 + parent: 2 + - uid: 7019 + components: + - type: Transform + pos: 68.5,51.5 + parent: 2 + - uid: 7020 + components: + - type: Transform + pos: 72.5,48.5 + parent: 2 + - uid: 7022 + components: + - type: Transform + pos: 80.5,53.5 + parent: 2 + - uid: 7023 + components: + - type: Transform + pos: 79.5,57.5 + parent: 2 + - uid: 7024 + components: + - type: Transform + pos: 76.5,17.5 + parent: 2 + - uid: 7025 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - uid: 7026 + components: + - type: Transform + pos: 42.5,5.5 + parent: 2 + - uid: 7027 + components: + - type: Transform + pos: 28.5,6.5 + parent: 2 + - uid: 7028 + components: + - type: Transform + pos: 20.5,5.5 + parent: 2 + - uid: 7029 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - uid: 7030 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 7031 + components: + - type: Transform + pos: -18.5,14.5 + parent: 2 + - uid: 7032 + components: + - type: Transform + pos: -17.5,7.5 + parent: 2 + - uid: 7033 + components: + - type: Transform + pos: -9.5,17.5 + parent: 2 + - uid: 7034 + components: + - type: Transform + pos: 8.5,63.5 + parent: 2 + - uid: 7035 + components: + - type: Transform + pos: 16.5,67.5 + parent: 2 + - uid: 7036 + components: + - type: Transform + pos: 15.5,73.5 + parent: 2 + - uid: 7037 + components: + - type: Transform + pos: 25.5,59.5 + parent: 2 + - uid: 7038 + components: + - type: Transform + pos: 59.5,46.5 + parent: 2 + - uid: 7039 + components: + - type: Transform + pos: 58.5,50.5 + parent: 2 + - uid: 7040 + components: + - type: Transform + pos: 47.5,57.5 + parent: 2 + - uid: 7041 + components: + - type: Transform + pos: 44.5,47.5 + parent: 2 + - uid: 7042 + components: + - type: Transform + pos: 37.5,62.5 + parent: 2 + - uid: 7043 + components: + - type: Transform + pos: 36.5,60.5 + parent: 2 + - uid: 7044 + components: + - type: Transform + pos: 55.5,56.5 + parent: 2 + - uid: 7045 + components: + - type: Transform + pos: 44.5,23.5 + parent: 2 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 7046 + components: + - type: Transform + pos: -2.5,38.5 + parent: 2 + - uid: 7047 + components: + - type: Transform + pos: -33.5,23.5 + parent: 2 + - uid: 7048 + components: + - type: Transform + pos: -33.5,24.5 + parent: 2 + - uid: 7049 + components: + - type: Transform + pos: 6.5,37.5 + parent: 2 + - uid: 7050 + components: + - type: Transform + pos: -11.5,31.5 + parent: 2 + - uid: 7051 + components: + - type: Transform + pos: -11.5,31.5 + parent: 2 + - uid: 7052 + components: + - type: Transform + pos: -11.5,37.5 + parent: 2 + - uid: 7053 + components: + - type: Transform + pos: -11.5,37.5 + parent: 2 + - uid: 18670 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - uid: 18671 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 +- proto: ClosetSteelBase + entities: + - uid: 7054 + components: + - type: Transform + pos: -9.5,60.5 + parent: 2 + - uid: 7055 + components: + - type: Transform + pos: -8.5,60.5 + parent: 2 +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 7056 + components: + - type: Transform + pos: 74.5,55.5 + parent: 2 +- proto: ClothingBackpackClown + entities: + - uid: 745 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7057 + components: + - type: Transform + pos: 40.59282,43.67842 + parent: 2 +- proto: ClothingBackpackDuffelClown + entities: + - uid: 746 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackDuffelMime + entities: + - uid: 774 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Isso concede as seguintes proteções: + + - Dano de [color=orange]explosão[/color] [color=white]aos conteúdos[/color] reduzido em [color=lightblue]10%[/color]. + priority: 0 + component: Armor + - message: Diminui sua velocidade de corrida em [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + title: null + - type: InsideEntityStorage + - uid: 7058 + components: + - type: Transform + pos: 40.524685,45.87787 + parent: 2 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 7059 + components: + - type: Transform + pos: 59.48093,16.47347 + parent: 2 + - uid: 7060 + components: + - type: Transform + pos: -29.510458,54.469387 + parent: 2 + - uid: 7061 + components: + - type: Transform + pos: -3.5407438,59.420185 + parent: 2 + - uid: 7062 + components: + - type: Transform + pos: 11.418509,39.366848 + parent: 2 + - uid: 7063 + components: + - type: Transform + pos: 11.430464,39.904484 + parent: 2 +- proto: ClothingBackpackERTClown + entities: + - uid: 747 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackMime + entities: + - uid: 775 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackSatchelClown + entities: + - uid: 748 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackSatchelMime + entities: + - uid: 776 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltMantis + entities: + - uid: 480 + components: + - type: Transform + pos: 34.256275,5.674018 + parent: 2 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 7064 + components: + - type: Transform + pos: -4.599819,40.670532 + parent: 2 + - uid: 7065 + components: + - type: Transform + pos: -4.4173317,40.54428 + parent: 2 + - uid: 7066 + components: + - type: Transform + pos: 78.430534,42.512993 + parent: 2 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 7067 + components: + - type: Transform + pos: -21.469843,66.69192 + parent: 2 + - uid: 7068 + components: + - type: Transform + pos: 55.388428,17.467995 + parent: 2 + - uid: 7069 + components: + - type: Transform + pos: 55.603626,17.665127 + parent: 2 + - uid: 7070 + components: + - type: Transform + pos: 59.46577,28.456217 + parent: 2 + - uid: 7071 + components: + - type: Transform + pos: 59.680973,28.63543 + parent: 2 +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 7072 + components: + - type: Transform + pos: -17.443285,67.75773 + parent: 2 + - uid: 7073 + components: + - type: Transform + pos: 0.41975856,59.424564 + parent: 2 +- proto: ClothingHandsGlovesColorBlack + entities: + - uid: 7074 + components: + - type: Transform + pos: 29.53992,62.564426 + parent: 2 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 7075 + components: + - type: Transform + pos: -10.3801365,21.491434 + parent: 2 + - uid: 7076 + components: + - type: Transform + pos: -5.4825945,40.568024 + parent: 2 + - uid: 7077 + components: + - type: Transform + pos: 60.549847,31.581648 + parent: 2 +- proto: ClothingHandsGlovesLatex + entities: + - uid: 7078 + components: + - type: Transform + pos: 58.572304,15.51898 + parent: 2 +- proto: ClothingHandsTacticalMaidGloves + entities: + - uid: 7079 + components: + - type: Transform + pos: 39.8144,66.24514 + parent: 2 +- proto: ClothingHeadBandGold + entities: + - uid: 7080 + components: + - type: Transform + pos: 31.58519,54.286488 + parent: 2 +- proto: ClothingHeadCourier + entities: + - uid: 7081 + components: + - type: Transform + pos: -5.3823576,3.5615594 + parent: 2 +- proto: ClothingHeadCourierFlipped + entities: + - uid: 7082 + components: + - type: Transform + pos: -6.695648,3.798901 + parent: 2 +- proto: ClothingHeadHatCargosoftFlipped + entities: + - uid: 7083 + components: + - type: Transform + pos: 0.58671916,12.564867 + parent: 2 +- proto: ClothingHeadHatFezMantis + entities: + - uid: 477 + components: + - type: Transform + pos: 34.46197,5.7214866 + parent: 2 +- proto: ClothingHeadHatMimesoft + entities: + - uid: 777 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatMimesoftFlipped + entities: + - uid: 778 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatPaper + entities: + - uid: 7084 + components: + - type: Transform + pos: 27.29713,29.40831 + parent: 2 +- proto: ClothingHeadHatTacticalMaidHeadband + entities: + - uid: 7085 + components: + - type: Transform + pos: 39.21662,66.71109 + parent: 2 +- proto: ClothingHeadHelmetAtmosFire + entities: + - uid: 7086 + components: + - type: Transform + pos: -10.401194,21.55456 + parent: 2 +- proto: ClothingMaskBreathMedical + entities: + - uid: 7087 + components: + - type: Transform + pos: 41.48497,21.60299 + parent: 2 + - uid: 7088 + components: + - type: Transform + pos: 58.56035,15.51898 + parent: 2 +- proto: ClothingMaskClown + entities: + - uid: 749 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskClownBanana + entities: + - uid: 750 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskGas + entities: + - uid: 7089 + components: + - type: Transform + pos: -7.6801195,29.392736 + parent: 2 + - uid: 7090 + components: + - type: Transform + pos: -7.5397444,29.49093 + parent: 2 + - uid: 7091 + components: + - type: Transform + pos: -7.371295,29.589127 + parent: 2 +- proto: ClothingMaskGasAtmos + entities: + - uid: 7092 + components: + - type: Transform + pos: -10.422249,21.575602 + parent: 2 + - uid: 7093 + components: + - type: Transform + pos: -11.457145,18.53368 + parent: 2 +- proto: ClothingMaskMime + entities: + - uid: 779 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskSadMime + entities: + - uid: 780 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskSexyClown + entities: + - uid: 751 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskSexyMime + entities: + - uid: 781 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckClownmedal + entities: + - uid: 752 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckStoleChaplain + entities: + - uid: 7094 + components: + - type: Transform + pos: 14.541786,59.652855 + parent: 2 +- proto: ClothingOuterClownPriest + entities: + - uid: 753 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitClown + entities: + - uid: 754 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitMime + entities: + - uid: 782 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterSuitAtmosFire + entities: + - uid: 7095 + components: + - type: Transform + pos: -10.401194,21.65977 + parent: 2 +- proto: ClothingOuterSuitRad + entities: + - uid: 7096 + components: + - type: Transform + pos: -11.458471,35.630077 + parent: 2 +- proto: ClothingOuterWinterCoatMantis + entities: + - uid: 4392 + components: + - type: Transform + pos: 32.667603,5.6265497 + parent: 2 +- proto: ClothingOuterWinterMime + entities: + - uid: 783 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterMusician + entities: + - uid: 7097 + components: + - type: Transform + pos: 41.26708,39.659565 + parent: 2 +- proto: ClothingShoesBootsMag + entities: + - uid: 7098 + components: + - type: Transform + pos: 74.55618,42.616943 + parent: 2 + - uid: 7099 + components: + - type: Transform + pos: 74.55618,42.616943 + parent: 2 + - uid: 7100 + components: + - type: Transform + pos: 74.626366,45.703087 + parent: 2 + - uid: 7101 + components: + - type: Transform + pos: 74.626366,45.703087 + parent: 2 +- proto: ClothingShoesBootsWinterClown + entities: + - uid: 755 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsWinterMime + entities: + - uid: 784 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesClown + entities: + - uid: 756 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesClownBanana + entities: + - uid: 757 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesClownLarge + entities: + - uid: 758 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformCourier + entities: + - uid: 7102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.3551354,3.3736491 + parent: 2 +- proto: ClothingUniformJumpskirtJanimaid + entities: + - uid: 7103 + components: + - type: Transform + pos: 44.528,54.73264 + parent: 2 + - uid: 7104 + components: + - type: Transform + pos: 44.51665,54.718178 + parent: 2 +- proto: ClothingUniformJumpskirtMime + entities: + - uid: 785 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtTacticalMaid + entities: + - uid: 7105 + components: + - type: Transform + pos: 39.30031,66.41241 + parent: 2 +- proto: ClothingUniformJumpskirtTacticool + entities: + - uid: 7106 + components: + - type: Transform + pos: 39.587246,66.567726 + parent: 2 +- proto: ClothingUniformJumpsuitAtmos + entities: + - uid: 7107 + components: + - type: Transform + pos: -10.3801365,21.533518 + parent: 2 +- proto: ClothingUniformJumpsuitClown + entities: + - uid: 759 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitClownBanana + entities: + - uid: 760 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitMime + entities: + - uid: 786 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformSkirtCourier + entities: + - uid: 7108 + components: + - type: Transform + pos: -6.228554,3.7533958 + parent: 2 +- proto: ClownRecorder + entities: + - uid: 761 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ComfyChair + entities: + - uid: 479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,4.5 + parent: 2 + - uid: 6896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,28.5 + parent: 2 + - uid: 7109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,52.5 + parent: 2 + - uid: 7112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,59.5 + parent: 2 + - uid: 7113 + components: + - type: Transform + pos: 2.5,52.5 + parent: 2 + - uid: 7114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,50.5 + parent: 2 + - uid: 7115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,58.5 + parent: 2 + - uid: 7116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,51.5 + parent: 2 + - uid: 7117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,51.5 + parent: 2 + - uid: 7118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,51.5 + parent: 2 + - uid: 7119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,51.5 + parent: 2 + - uid: 7120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,39.5 + parent: 2 + - uid: 7121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,39.5 + parent: 2 + - uid: 7122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,34.5 + parent: 2 + - uid: 7123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,36.5 + parent: 2 + - uid: 7124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,32.5 + parent: 2 + - uid: 7125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,31.5 + parent: 2 + - uid: 7126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,31.5 + parent: 2 + - uid: 7128 + components: + - type: Transform + pos: 78.5,25.5 + parent: 2 + - uid: 7129 + components: + - type: Transform + pos: 83.5,25.5 + parent: 2 + - uid: 7130 + components: + - type: Transform + pos: 82.5,25.5 + parent: 2 + - uid: 7131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,23.5 + parent: 2 + - uid: 7132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,24.5 + parent: 2 + - uid: 7133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,22.5 + parent: 2 + - uid: 7134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,22.5 + parent: 2 + - uid: 7135 + components: + - type: Transform + pos: 63.5,16.5 + parent: 2 + - uid: 7136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,13.5 + parent: 2 +- proto: CommsComputerCircuitboard + entities: + - uid: 7137 + components: + - type: Transform + pos: -8.678612,45.68498 + parent: 2 + - uid: 7138 + components: + - type: Transform + pos: 29.689651,54.454826 + parent: 2 +- proto: ComputerAlert + entities: + - uid: 7139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,20.5 + parent: 2 + - uid: 7140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,16.5 + parent: 2 + - uid: 7141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,12.5 + parent: 2 + - uid: 7142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,8.5 + parent: 2 + - uid: 7143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,6.5 + parent: 2 + - uid: 7144 + components: + - type: Transform + pos: -7.5,21.5 + parent: 2 + - uid: 7145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,36.5 + parent: 2 + - uid: 7146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,23.5 + parent: 2 + - uid: 7147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,6.5 + parent: 2 + - uid: 7148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,16.5 + parent: 2 + - uid: 7149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,6.5 + parent: 2 + - uid: 7150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 2 +- proto: ComputerAnalysisConsole + entities: + - uid: 7151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,2.5 + parent: 2 + - uid: 7152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,1.5 + parent: 2 + - uid: 7153 + components: + - type: Transform + pos: 35.5,11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12782: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + - uid: 7154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,16.5 + parent: 2 +- proto: ComputerBroken + entities: + - uid: 7155 + components: + - type: Transform + pos: -9.5,68.5 + parent: 2 + - uid: 7156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,20.5 + parent: 2 +- proto: ComputerCargoBounty + entities: + - uid: 7157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 2 + - uid: 7158 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 7159 + components: + - type: Transform + pos: 86.5,38.5 + parent: 2 +- proto: ComputerCargoOrders + entities: + - uid: 7160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,13.5 + parent: 2 + - uid: 7161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,12.5 + parent: 2 + - uid: 7162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,15.5 + parent: 2 + - uid: 7163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,14.5 + parent: 2 + - uid: 7164 + components: + - type: Transform + pos: 85.5,38.5 + parent: 2 +- proto: ComputerCargoShuttle + entities: + - uid: 7165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,13.5 + parent: 2 + - uid: 7166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 2 +- proto: ComputerCloningConsole + entities: + - uid: 7167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,30.5 + parent: 2 + - uid: 7168 + components: + - type: Transform + pos: 22.5,28.5 + parent: 2 +- proto: ComputerComms + entities: + - uid: 7169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,34.5 + parent: 2 + - uid: 15256 + components: + - type: Transform + pos: 73.5,29.5 + parent: 2 +- proto: ComputerCrewMonitoring + entities: + - uid: 7171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,27.5 + parent: 2 + - uid: 7172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,61.5 + parent: 2 + - uid: 7173 + components: + - type: Transform + pos: -1.5,60.5 + parent: 2 + - uid: 7174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,37.5 + parent: 2 + - uid: 7175 + components: + - type: Transform + pos: 4.5,45.5 + parent: 2 + - uid: 7176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,37.5 + parent: 2 + - uid: 7177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,37.5 + parent: 2 + - uid: 7178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,30.5 + parent: 2 + - uid: 7179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,13.5 + parent: 2 + - uid: 7180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,58.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 7181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,28.5 + parent: 2 + - uid: 7182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,14.5 + parent: 2 + - uid: 7183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,29.5 + parent: 2 + - uid: 7184 + components: + - type: Transform + pos: -15.5,62.5 + parent: 2 + - uid: 7185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,51.5 + parent: 2 + - uid: 7186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,63.5 + parent: 2 + - uid: 7188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,12.5 + parent: 2 + - uid: 7189 + components: + - type: Transform + pos: -14.5,52.5 + parent: 2 + - uid: 7190 + components: + - type: Transform + pos: -0.5,60.5 + parent: 2 + - uid: 7191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,36.5 + parent: 2 + - uid: 7192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,57.5 + parent: 2 + - uid: 7193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,14.5 + parent: 2 + - uid: 19539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,66.5 + parent: 2 +- proto: ComputerId + entities: + - uid: 7196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,39.5 + parent: 2 + - uid: 7197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,33.5 + parent: 2 + - uid: 8114 + components: + - type: Transform + pos: 74.5,29.5 + parent: 2 +- proto: ComputerMedicalRecords + entities: + - uid: 7194 + components: + - type: Transform + pos: 29.5,29.5 + parent: 2 + - uid: 7195 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 + - uid: 7199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,17.5 + parent: 2 + - uid: 7200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,55.5 + parent: 2 + - uid: 7201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,38.5 + parent: 2 + - uid: 7202 + components: + - type: Transform + pos: 5.5,45.5 + parent: 2 + - uid: 7203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,37.5 + parent: 2 + - uid: 7204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,41.5 + parent: 2 + - uid: 7205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,30.5 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 7206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,19.5 + parent: 2 + - uid: 7207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,23.5 + parent: 2 + - uid: 7208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,28.5 + parent: 2 + - uid: 7209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,32.5 + parent: 2 + - uid: 7210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-1.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 7211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,19.5 + parent: 2 + - uid: 7212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,29.5 + parent: 2 + - uid: 7213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,44.5 + parent: 2 + - uid: 7214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,31.5 + parent: 2 + - uid: 7215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-11.5 + parent: 2 + - uid: 7216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 2 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 7217 + components: + - type: Transform + pos: 24.5,2.5 + parent: 2 + - uid: 7218 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 7219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,15.5 + parent: 2 + - uid: 7220 + components: + - type: Transform + pos: 56.5,22.5 + parent: 2 + - uid: 7221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,20.5 + parent: 2 + - uid: 7222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,26.5 + parent: 2 +- proto: ComputerSalvageExpedition + entities: + - uid: 7223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,6.5 + parent: 2 + - uid: 7224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,17.5 + parent: 2 + - uid: 7225 + components: + - type: Transform + pos: 84.5,38.5 + parent: 2 +- proto: ComputerShuttleCargo + entities: + - uid: 7226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 2 +- proto: ComputerShuttleSalvage + entities: + - uid: 7227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,5.5 + parent: 2 +- proto: ComputerSolarControl + entities: + - uid: 7228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,23.5 + parent: 2 + - uid: 7229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,27.5 + parent: 2 + - uid: 7230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,33.5 + parent: 2 + - uid: 7231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,64.5 + parent: 2 + - uid: 7232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,7.5 + parent: 2 + - uid: 7233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,1.5 + parent: 2 +- proto: ComputerStationRecords + entities: + - uid: 7234 + components: + - type: Transform + pos: -14.5,62.5 + parent: 2 + - uid: 7235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,51.5 + parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 7236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,13.5 + parent: 2 + - uid: 7237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,60.5 + parent: 2 + - uid: 7238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,51.5 + parent: 2 + - uid: 7239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,64.5 + parent: 2 + - uid: 7242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,15.5 + parent: 2 + - uid: 7243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,37.5 + parent: 2 + - uid: 7244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,35.5 + parent: 2 + - uid: 7245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,35.5 + parent: 2 + - uid: 7246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,13.5 + parent: 2 + - uid: 12090 + components: + - type: Transform + pos: -7.5,68.5 + parent: 2 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 7247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,55.5 + parent: 2 +- proto: ComputerTelevision + entities: + - uid: 5957 + components: + - type: Transform + pos: 72.5,30.5 + parent: 2 + - uid: 7248 + components: + - type: Transform + pos: -31.5,63.5 + parent: 2 +- proto: ContainmentFieldGenerator + entities: + - uid: 7249 + components: + - type: Transform + pos: 49.5,-4.5 + parent: 2 + - uid: 7250 + components: + - type: Transform + pos: 53.5,-4.5 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 7251 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15416 + - uid: 7252 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15416 + - uid: 7253 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15416 + - uid: 7254 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15415 + - uid: 7255 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15415 + - uid: 7256 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15415 + - uid: 7257 + components: + - type: Transform + pos: -1.5,3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15416 + - uid: 7258 + components: + - type: Transform + pos: -1.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15416 + - uid: 7259 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15416 + - uid: 7260 + components: + - type: Transform + pos: -1.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15416 + - uid: 7261 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15415 + - uid: 7262 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15415 + - uid: 7263 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15415 + - uid: 7264 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15415 + - uid: 7265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15414 + - uid: 7266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15414 + - uid: 7267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15414 + - uid: 7268 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15414 + - uid: 7269 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15414 + - uid: 7270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15414 + - uid: 7271 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15414 + - uid: 7272 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15414 + - uid: 7273 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15414 + - uid: 7274 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15414 + - 14459 +- proto: CourierBag + entities: + - uid: 7275 + components: + - type: Transform + pos: -5.6196995,3.751433 + parent: 2 +- proto: CrateArtifactContainer + entities: + - uid: 7276 + components: + - type: Transform + pos: 40.5,10.5 + parent: 2 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PhysShapeCircle + radius: 0.45 + position: 0,0 + mask: + - Impassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateCoffin + entities: + - uid: 7277 + components: + - type: Transform + pos: 15.5,62.5 + parent: 2 +- proto: CrateCommandSecure + entities: + - uid: 7278 + components: + - type: Transform + pos: 78.5,31.5 + parent: 2 +- proto: CrateEmptySpawner + entities: + - uid: 7279 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 + - uid: 7280 + components: + - type: Transform + pos: -13.5,13.5 + parent: 2 + - uid: 7281 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - uid: 7282 + components: + - type: Transform + pos: 14.5,1.5 + parent: 2 + - uid: 7283 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 +- proto: CrateEngineeringAMEJar + entities: + - uid: 18530 + components: + - type: Transform + pos: -14.5,26.5 + parent: 2 +- proto: CrateEngineeringCableHV + entities: + - uid: 7285 + components: + - type: Transform + pos: 35.5,64.5 + parent: 2 + - uid: 7286 + components: + - type: Transform + pos: -24.5,8.5 + parent: 2 +- proto: CrateEvaKit + entities: + - uid: 7287 + components: + - type: Transform + pos: 78.5,45.5 + parent: 2 +- proto: CrateFilledSpawner + entities: + - uid: 7288 + components: + - type: Transform + pos: -13.5,14.5 + parent: 2 + - uid: 7289 + components: + - type: Transform + pos: -12.5,14.5 + parent: 2 + - uid: 7290 + components: + - type: Transform + pos: -8.5,14.5 + parent: 2 + - uid: 7291 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 + - uid: 7292 + components: + - type: Transform + pos: -9.5,14.5 + parent: 2 + - uid: 7293 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 + - uid: 7294 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 +- proto: CrateFoodMRE + entities: + - uid: 7295 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 +- proto: CrateFreezer + entities: + - uid: 7296 + components: + - type: Transform + pos: 54.5,51.5 + parent: 2 +- proto: CrateFunInstrumentsVariety + entities: + - uid: 7297 + components: + - type: Transform + pos: 40.5,39.5 + parent: 2 +- proto: CrateGenericSteel + entities: + - uid: 7298 + components: + - type: Transform + pos: -7.5,25.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.147 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7299 + - 7303 + - 7300 + - 7304 + - 7305 + - 7308 + - 7302 + - 7306 + - 7307 + - 7301 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateHydroponicsSeeds + entities: + - uid: 5810 + components: + - type: Transform + pos: -28.5,75.5 + parent: 2 + - uid: 7310 + components: + - type: Transform + pos: 10.5,76.5 + parent: 2 +- proto: CrateHydroponicsSeedsMedicinal + entities: + - uid: 7311 + components: + - type: Transform + pos: 50.5,47.5 + parent: 2 +- proto: CrateInternals + entities: + - uid: 7312 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 +- proto: CrateMedical + entities: + - uid: 7313 + components: + - type: Transform + pos: 19.5,28.5 + parent: 2 +- proto: CrateMedicalSecure + entities: + - uid: 7314 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 +- proto: CrateMedicalSurgery + entities: + - uid: 7316 + components: + - type: Transform + pos: 14.5,40.5 + parent: 2 +- proto: CrateNPCCow + entities: + - uid: 7317 + components: + - type: Transform + pos: 52.5,42.5 + parent: 2 +- proto: CrateSecurityHelmet + entities: + - uid: 7318 + components: + - type: Transform + pos: -19.5,67.5 + parent: 2 +- proto: CrateSecurityRiot + entities: + - uid: 7319 + components: + - type: Transform + pos: -19.5,68.5 + parent: 2 +- proto: CrateSecurityTrackingMindshieldImplants + entities: + - uid: 7320 + components: + - type: Transform + pos: -16.5,67.5 + parent: 2 +- proto: CrateServiceBooks + entities: + - uid: 7321 + components: + - type: Transform + pos: 18.5,58.5 + parent: 2 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 7322 + components: + - type: Transform + pos: 43.5,53.5 + parent: 2 +- proto: CrateSlimepersonLifeSupport + entities: + - uid: 7323 + components: + - type: Transform + pos: -13.5,2.5 + parent: 2 +- proto: CrateTrashCartJani + entities: + - uid: 7324 + components: + - type: Transform + pos: 39.5,56.5 + parent: 2 +- proto: CrayonMime + entities: + - uid: 787 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 788 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 789 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7325 + components: + - type: Transform + pos: 40.83351,45.414948 + parent: 2 +- proto: Crematorium + entities: + - uid: 7326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,61.5 + parent: 2 +- proto: CrewMonitoringServer + entities: + - uid: 7327 + components: + - type: Transform + pos: 17.5,37.5 + parent: 2 + - type: SingletonDeviceNetServer + active: False + available: False +- proto: Crowbar + entities: + - uid: 7328 + components: + - type: Transform + pos: 36.297527,7.6566176 + parent: 2 +- proto: CrowbarRed + entities: + - uid: 7329 + components: + - type: Transform + pos: 73.59081,62.54297 + parent: 2 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 7330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,2.5 + parent: 2 + - uid: 7331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,3.5 + parent: 2 + - uid: 7332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,4.5 + parent: 2 + - uid: 7333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,0.5 + parent: 2 + - uid: 7334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,0.5 + parent: 2 +- proto: CryogenicSleepUnitSpawnerPrisoner + entities: + - uid: 15065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,66.5 + parent: 2 + - uid: 19472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,69.5 + parent: 2 +- proto: CryoPod + entities: + - uid: 7335 + components: + - type: Transform + pos: 10.5,35.5 + parent: 2 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 7336 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 +- proto: DawInstrumentMachineCircuitboard + entities: + - uid: 7337 + components: + - type: Transform + pos: 41.533226,39.5077 + parent: 2 +- proto: DefaultStationBeaconAI + entities: + - uid: 7338 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 +- proto: DefaultStationBeaconAICore + entities: + - uid: 7339 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 +- proto: DefaultStationBeaconAISatellite + entities: + - uid: 7340 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 7341 + components: + - type: Transform + pos: 51.5,3.5 + parent: 2 +- proto: DefaultStationBeaconArmory + entities: + - uid: 7342 + components: + - type: Transform + pos: -16.5,69.5 + parent: 2 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 7343 + components: + - type: Transform + pos: 73.5,3.5 + parent: 2 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 7344 + components: + - type: Transform + pos: 35.5,10.5 + parent: 2 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 7345 + components: + - type: Transform + pos: -27.5,19.5 + parent: 2 +- proto: DefaultStationBeaconBar + entities: + - uid: 7346 + components: + - type: Transform + pos: 60.5,38.5 + parent: 2 +- proto: DefaultStationBeaconBotany + entities: + - uid: 7347 + components: + - type: Transform + pos: 46.5,41.5 + parent: 2 +- proto: DefaultStationBeaconBridge + entities: + - uid: 7348 + components: + - type: Transform + pos: 80.5,34.5 + parent: 2 +- proto: DefaultStationBeaconBrig + entities: + - uid: 7349 + components: + - type: Transform + pos: -13.5,56.5 + parent: 2 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 7350 + components: + - type: Transform + pos: 77.5,29.5 + parent: 2 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 7351 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 7352 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 7353 + components: + - type: Transform + pos: -3.5,27.5 + parent: 2 +- proto: DefaultStationBeaconChapel + entities: + - uid: 7354 + components: + - type: Transform + pos: 9.5,55.5 + parent: 2 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 7355 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 7356 + components: + - type: Transform + pos: 17.5,38.5 + parent: 2 +- proto: DefaultStationBeaconCommand + entities: + - uid: 7357 + components: + - type: Transform + pos: 70.5,34.5 + parent: 2 +- proto: DefaultStationBeaconConferenceRoom + entities: + - uid: 18848 + components: + - type: Transform + pos: 82.5,24.5 + parent: 2 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 7358 + components: + - type: Transform + pos: 10.5,34.5 + parent: 2 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 7359 + components: + - type: Transform + pos: 65.5,3.5 + parent: 2 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 7360 + components: + - type: Transform + pos: 2.5,59.5 + parent: 2 + - uid: 7361 + components: + - type: Transform + pos: 0.5,58.5 + parent: 2 +- proto: DefaultStationBeaconDorms + entities: + - uid: 7362 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 7363 + components: + - type: Transform + pos: -8.5,39.5 + parent: 2 +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 7364 + components: + - type: Transform + pos: 76.5,16.5 + parent: 2 + - uid: 7365 + components: + - type: Transform + pos: -38.5,56.5 + parent: 2 + - uid: 7366 + components: + - type: Transform + pos: 14.5,77.5 + parent: 2 + - uid: 7367 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 +- proto: DefaultStationBeaconEvac + entities: + - uid: 7368 + components: + - type: Transform + pos: 65.5,61.5 + parent: 2 +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 7369 + components: + - type: Transform + pos: 76.5,43.5 + parent: 2 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 7370 + components: + - type: Transform + pos: -20.5,43.5 + parent: 2 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 7371 + components: + - type: Transform + pos: 77.5,39.5 + parent: 2 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 7372 + components: + - type: Transform + pos: -18.5,54.5 + parent: 2 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 7373 + components: + - type: Transform + pos: 40.5,53.5 + parent: 2 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 7374 + components: + - type: Transform + pos: 54.5,42.5 + parent: 2 +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 7375 + components: + - type: Transform + pos: -23.5,55.5 + parent: 2 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 7376 + components: + - type: Transform + pos: 17.5,56.5 + parent: 2 +- proto: DefaultStationBeaconMailroom + entities: + - uid: 7377 + components: + - type: Transform + pos: -6.5,6.5 + parent: 2 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 7378 + components: + - type: Transform + pos: 28.5,34.5 + parent: 2 +- proto: DefaultStationBeaconMedical + entities: + - uid: 7379 + components: + - type: Transform + pos: 16.5,31.5 + parent: 2 +- proto: DefaultStationBeaconMetempsychosis + entities: + - uid: 7380 + components: + - type: Transform + pos: 22.5,26.5 + parent: 2 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 7381 + components: + - type: Transform + pos: 17.5,44.5 + parent: 2 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 7382 + components: + - type: Transform + pos: -31.5,66.5 + parent: 2 +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 7383 + components: + - type: Transform + pos: -11.5,44.5 + parent: 2 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 7384 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 7385 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 +- proto: DefaultStationBeaconRND + entities: + - uid: 7386 + components: + - type: Transform + pos: 47.5,28.5 + parent: 2 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 7387 + components: + - type: Transform + pos: 58.5,21.5 + parent: 2 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 7388 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 +- proto: DefaultStationBeaconSecurity + entities: + - uid: 7389 + components: + - type: Transform + pos: -23.5,69.5 + parent: 2 +- proto: DefaultStationBeaconSecurityCheckpoint + entities: + - uid: 7390 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - uid: 7391 + components: + - type: Transform + pos: -4.5,30.5 + parent: 2 + - uid: 7392 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - uid: 7393 + components: + - type: Transform + pos: 44.5,13.5 + parent: 2 + - uid: 7394 + components: + - type: Transform + pos: 61.5,56.5 + parent: 2 + - uid: 7395 + components: + - type: Transform + pos: 71.5,14.5 + parent: 2 +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 7396 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 +- proto: DefaultStationBeaconService + entities: + - uid: 7397 + components: + - type: Transform + pos: 54.5,39.5 + parent: 2 +- proto: DefaultStationBeaconSolars + entities: + - uid: 7398 + components: + - type: Transform + pos: -22.5,8.5 + parent: 2 +- proto: DefaultStationBeaconSurgery + entities: + - uid: 7399 + components: + - type: Transform + pos: 13.5,39.5 + parent: 2 +- proto: DefaultStationBeaconTechVault + entities: + - uid: 7400 + components: + - type: Transform + pos: -7.5,44.5 + parent: 2 + - uid: 18660 + components: + - type: Transform + pos: -8.5,44.5 + parent: 2 +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 7401 + components: + - type: Transform + pos: -34.5,37.5 + parent: 2 +- proto: DefaultStationBeaconTheater + entities: + - uid: 7402 + components: + - type: Transform + pos: 37.5,40.5 + parent: 2 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 7403 + components: + - type: Transform + pos: 60.5,30.5 + parent: 2 +- proto: DefaultStationBeaconVault + entities: + - uid: 7404 + components: + - type: Transform + pos: 30.5,55.5 + parent: 2 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 7405 + components: + - type: Transform + pos: -15.5,61.5 + parent: 2 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 7406 + components: + - type: Transform + pos: 17.5,33.5 + parent: 2 + - uid: 7407 + components: + - type: Transform + pos: 34.5,25.5 + parent: 2 + - uid: 7408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,44.5 + parent: 2 + - uid: 7409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,39.5 + parent: 2 + - uid: 7410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,38.5 + parent: 2 + - uid: 7411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,27.5 + parent: 2 + - uid: 7412 + components: + - type: Transform + pos: 14.5,42.5 + parent: 2 + - uid: 7413 + components: + - type: Transform + pos: 8.5,46.5 + parent: 2 +- proto: DeskBell + entities: + - uid: 7414 + components: + - type: Transform + pos: -15.572306,50.576622 + parent: 2 + - uid: 7415 + components: + - type: Transform + pos: 17.974758,54.617676 + parent: 2 + - uid: 7416 + components: + - type: Transform + pos: 59.34066,39.685585 + parent: 2 + - uid: 7417 + components: + - type: Transform + pos: 13.298826,23.596142 + parent: 2 + - uid: 7418 + components: + - type: Transform + pos: 12.5114565,29.654684 + parent: 2 + - uid: 7419 + components: + - type: Transform + pos: 7.481876,46.649487 + parent: 2 +- proto: DiceBag + entities: + - uid: 7420 + components: + - type: Transform + pos: 23.747915,13.402235 + parent: 2 +- proto: DiseaseDiagnoser + entities: + - uid: 7421 + components: + - type: Transform + pos: 28.5,45.5 + parent: 2 +- proto: DisposalBend + entities: + - uid: 7422 + components: + - type: Transform + pos: -29.5,28.5 + parent: 2 + - uid: 7423 + components: + - type: Transform + pos: -25.5,21.5 + parent: 2 + - uid: 7424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,18.5 + parent: 2 + - uid: 7425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,38.5 + parent: 2 + - uid: 7426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,51.5 + parent: 2 + - uid: 7427 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - uid: 7428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,20.5 + parent: 2 + - uid: 7429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,18.5 + parent: 2 + - uid: 7430 + components: + - type: Transform + pos: 50.5,-3.5 + parent: 2 + - uid: 7431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-6.5 + parent: 2 + - uid: 7432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,6.5 + parent: 2 + - uid: 7433 + components: + - type: Transform + pos: 59.5,6.5 + parent: 2 + - uid: 7434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-4.5 + parent: 2 + - uid: 7435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,19.5 + parent: 2 + - uid: 7437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,45.5 + parent: 2 + - uid: 7438 + components: + - type: Transform + pos: 27.5,62.5 + parent: 2 + - uid: 7439 + components: + - type: Transform + pos: 26.5,67.5 + parent: 2 + - uid: 7440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,62.5 + parent: 2 + - uid: 7441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,57.5 + parent: 2 + - uid: 7442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,34.5 + parent: 2 + - uid: 7443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,33.5 + parent: 2 + - uid: 7444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,7.5 + parent: 2 + - uid: 7445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,10.5 + parent: 2 + - uid: 7446 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - uid: 7447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,6.5 + parent: 2 + - uid: 7448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,19.5 + parent: 2 + - uid: 7449 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 + - uid: 7450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,37.5 + parent: 2 + - uid: 7451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,48.5 + parent: 2 + - uid: 7452 + components: + - type: Transform + pos: 2.5,58.5 + parent: 2 + - uid: 7453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,58.5 + parent: 2 + - uid: 7454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,55.5 + parent: 2 + - uid: 7455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,55.5 + parent: 2 + - uid: 7456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,57.5 + parent: 2 + - uid: 7457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,51.5 + parent: 2 + - uid: 7458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,51.5 + parent: 2 + - uid: 7459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,63.5 + parent: 2 + - uid: 7460 + components: + - type: Transform + pos: -5.5,67.5 + parent: 2 + - uid: 7461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,52.5 + parent: 2 + - uid: 7462 + components: + - type: Transform + pos: 10.5,59.5 + parent: 2 + - uid: 7463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,67.5 + parent: 2 + - uid: 7464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,66.5 + parent: 2 + - uid: 7465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,48.5 + parent: 2 + - uid: 7466 + components: + - type: Transform + pos: 24.5,55.5 + parent: 2 + - uid: 7467 + components: + - type: Transform + pos: 18.5,37.5 + parent: 2 + - uid: 7468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,25.5 + parent: 2 + - uid: 7469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,34.5 + parent: 2 + - uid: 7470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,28.5 + parent: 2 + - uid: 7471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,28.5 + parent: 2 + - uid: 7472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,54.5 + parent: 2 + - uid: 7473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,43.5 + parent: 2 + - uid: 7474 + components: + - type: Transform + pos: 41.5,48.5 + parent: 2 + - uid: 7475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,48.5 + parent: 2 + - uid: 7476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,30.5 + parent: 2 + - uid: 7477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,27.5 + parent: 2 + - uid: 7478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,43.5 + parent: 2 + - uid: 7479 + components: + - type: Transform + pos: 70.5,55.5 + parent: 2 + - uid: 7480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,55.5 + parent: 2 + - uid: 7481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,8.5 + parent: 2 + - uid: 7482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,9.5 + parent: 2 + - uid: 7483 + components: + - type: Transform + pos: 25.5,9.5 + parent: 2 + - uid: 7484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,6.5 + parent: 2 + - uid: 7485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,4.5 + parent: 2 + - uid: 7486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,13.5 + parent: 2 + - uid: 7487 + components: + - type: Transform + pos: 52.5,17.5 + parent: 2 + - uid: 7488 + components: + - type: Transform + pos: 47.5,28.5 + parent: 2 + - uid: 7489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,15.5 + parent: 2 + - uid: 7490 + components: + - type: Transform + pos: 56.5,21.5 + parent: 2 + - uid: 7491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,17.5 + parent: 2 + - uid: 7492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,8.5 + parent: 2 + - uid: 7493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,8.5 + parent: 2 + - uid: 7494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,4.5 + parent: 2 + - uid: 7495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 2 + - uid: 7496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 2 + - uid: 7497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,28.5 + parent: 2 + - uid: 7498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,21.5 + parent: 2 +- proto: DisposalJunction + entities: + - uid: 7499 + components: + - type: Transform + pos: 81.5,38.5 + parent: 2 + - uid: 7500 + components: + - type: Transform + pos: -9.5,36.5 + parent: 2 + - uid: 7501 + components: + - type: Transform + pos: 53.5,40.5 + parent: 2 + - uid: 7502 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - uid: 7503 + components: + - type: Transform + pos: 0.5,46.5 + parent: 2 + - uid: 7504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,57.5 + parent: 2 + - uid: 7505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,57.5 + parent: 2 + - uid: 7506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,57.5 + parent: 2 + - uid: 7507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,48.5 + parent: 2 + - uid: 7508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,20.5 + parent: 2 + - uid: 7509 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 + - uid: 7510 + components: + - type: Transform + pos: 18.5,34.5 + parent: 2 + - uid: 7511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,48.5 + parent: 2 + - uid: 7512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,34.5 + parent: 2 + - uid: 7513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,34.5 + parent: 2 + - uid: 7514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,29.5 + parent: 2 + - uid: 7515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,33.5 + parent: 2 + - uid: 7516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,27.5 + parent: 2 + - uid: 7517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,17.5 + parent: 2 + - uid: 7518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,17.5 + parent: 2 + - uid: 7519 + components: + - type: Transform + pos: 35.5,7.5 + parent: 2 + - uid: 7520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 2 +- proto: DisposalJunctionFlipped + entities: + - uid: 7521 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 7522 + components: + - type: Transform + pos: -12.5,55.5 + parent: 2 + - uid: 7523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,18.5 + parent: 2 + - uid: 7524 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 7525 + components: + - type: Transform + pos: -9.5,27.5 + parent: 2 + - uid: 7526 + components: + - type: Transform + pos: 5.5,52.5 + parent: 2 + - uid: 7527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,10.5 + parent: 2 + - uid: 7528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,20.5 + parent: 2 + - uid: 7529 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 7530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,57.5 + parent: 2 + - uid: 7531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,57.5 + parent: 2 + - uid: 7532 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 7533 + components: + - type: Transform + pos: 53.5,39.5 + parent: 2 + - uid: 7534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,30.5 + parent: 2 + - uid: 7535 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 7536 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 +- proto: DisposalPipe + entities: + - uid: 7537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,25.5 + parent: 2 + - uid: 7538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,23.5 + parent: 2 + - uid: 7539 + components: + - type: Transform + pos: -17.5,62.5 + parent: 2 + - uid: 7540 + components: + - type: Transform + pos: -27.5,53.5 + parent: 2 + - uid: 7541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,21.5 + parent: 2 + - uid: 7542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,22.5 + parent: 2 + - uid: 7543 + components: + - type: Transform + pos: 46.5,36.5 + parent: 2 + - uid: 7544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,26.5 + parent: 2 + - uid: 7545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,26.5 + parent: 2 + - uid: 7546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,34.5 + parent: 2 + - uid: 7547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,34.5 + parent: 2 + - uid: 7548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,34.5 + parent: 2 + - uid: 7549 + components: + - type: Transform + pos: -22.5,58.5 + parent: 2 + - uid: 7550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,26.5 + parent: 2 + - uid: 7551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,9.5 + parent: 2 + - uid: 7552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,4.5 + parent: 2 + - uid: 7553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,28.5 + parent: 2 + - uid: 7554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,28.5 + parent: 2 + - uid: 7555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,52.5 + parent: 2 + - uid: 7556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,53.5 + parent: 2 + - uid: 7557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,52.5 + parent: 2 + - uid: 7558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 2 + - uid: 7559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,17.5 + parent: 2 + - uid: 7560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,58.5 + parent: 2 + - uid: 7561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,10.5 + parent: 2 + - uid: 7562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,17.5 + parent: 2 + - uid: 7563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 2 + - uid: 7564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 2 + - uid: 7565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,7.5 + parent: 2 + - uid: 7566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,7.5 + parent: 2 + - uid: 7567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,7.5 + parent: 2 + - uid: 7568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,8.5 + parent: 2 + - uid: 7569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,9.5 + parent: 2 + - uid: 7570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,10.5 + parent: 2 + - uid: 7571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,10.5 + parent: 2 + - uid: 7572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,10.5 + parent: 2 + - uid: 7573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 2 + - uid: 7574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-0.5 + parent: 2 + - uid: 7575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-1.5 + parent: 2 + - uid: 7576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-2.5 + parent: 2 + - uid: 7577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,48.5 + parent: 2 + - uid: 7578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,33.5 + parent: 2 + - uid: 7579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,32.5 + parent: 2 + - uid: 7580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,31.5 + parent: 2 + - uid: 7581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,30.5 + parent: 2 + - uid: 7582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,29.5 + parent: 2 + - uid: 7583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,28.5 + parent: 2 + - uid: 7584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,27.5 + parent: 2 + - uid: 7585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,26.5 + parent: 2 + - uid: 7586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,25.5 + parent: 2 + - uid: 7587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,24.5 + parent: 2 + - uid: 7588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,23.5 + parent: 2 + - uid: 7589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,22.5 + parent: 2 + - uid: 7590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,21.5 + parent: 2 + - uid: 7591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,20.5 + parent: 2 + - uid: 7592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,20.5 + parent: 2 + - uid: 7593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,20.5 + parent: 2 + - uid: 7594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,20.5 + parent: 2 + - uid: 7595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,20.5 + parent: 2 + - uid: 7596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,20.5 + parent: 2 + - uid: 7597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,20.5 + parent: 2 + - uid: 7598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,20.5 + parent: 2 + - uid: 7599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,20.5 + parent: 2 + - uid: 7600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,20.5 + parent: 2 + - uid: 7601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,20.5 + parent: 2 + - uid: 7602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,20.5 + parent: 2 + - uid: 7603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,20.5 + parent: 2 + - uid: 7604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,20.5 + parent: 2 + - uid: 7605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,19.5 + parent: 2 + - uid: 7606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-5.5 + parent: 2 + - uid: 7607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-4.5 + parent: 2 + - uid: 7608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-3.5 + parent: 2 + - uid: 7609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-3.5 + parent: 2 + - uid: 7610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-2.5 + parent: 2 + - uid: 7611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-1.5 + parent: 2 + - uid: 7612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,26.5 + parent: 2 + - uid: 7613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,8.5 + parent: 2 + - uid: 7614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-0.5 + parent: 2 + - uid: 7615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,0.5 + parent: 2 + - uid: 7616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,1.5 + parent: 2 + - uid: 7617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,2.5 + parent: 2 + - uid: 7618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,3.5 + parent: 2 + - uid: 7619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,4.5 + parent: 2 + - uid: 7620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,5.5 + parent: 2 + - uid: 7621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,6.5 + parent: 2 + - uid: 7622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,6.5 + parent: 2 + - uid: 7623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,6.5 + parent: 2 + - uid: 7624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,6.5 + parent: 2 + - uid: 7625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,6.5 + parent: 2 + - uid: 7626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,6.5 + parent: 2 + - uid: 7627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,6.5 + parent: 2 + - uid: 7628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,6.5 + parent: 2 + - uid: 7629 + components: + - type: Transform + pos: 50.5,5.5 + parent: 2 + - uid: 7630 + components: + - type: Transform + pos: 50.5,4.5 + parent: 2 + - uid: 7631 + components: + - type: Transform + pos: 50.5,3.5 + parent: 2 + - uid: 7632 + components: + - type: Transform + pos: 50.5,2.5 + parent: 2 + - uid: 7633 + components: + - type: Transform + pos: 50.5,1.5 + parent: 2 + - uid: 7634 + components: + - type: Transform + pos: 50.5,0.5 + parent: 2 + - uid: 7635 + components: + - type: Transform + pos: 50.5,-0.5 + parent: 2 + - uid: 7636 + components: + - type: Transform + pos: 50.5,-1.5 + parent: 2 + - uid: 7637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,24.5 + parent: 2 + - uid: 7638 + components: + - type: Transform + pos: 5.5,53.5 + parent: 2 + - uid: 7639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,34.5 + parent: 2 + - uid: 7640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,34.5 + parent: 2 + - uid: 7641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,45.5 + parent: 2 + - uid: 7642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,44.5 + parent: 2 + - uid: 7643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,63.5 + parent: 2 + - uid: 7644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,64.5 + parent: 2 + - uid: 7645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,65.5 + parent: 2 + - uid: 7646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,66.5 + parent: 2 + - uid: 7647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,67.5 + parent: 2 + - uid: 7648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,46.5 + parent: 2 + - uid: 7649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,47.5 + parent: 2 + - uid: 7650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,48.5 + parent: 2 + - uid: 7651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,49.5 + parent: 2 + - uid: 7652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,50.5 + parent: 2 + - uid: 7653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,51.5 + parent: 2 + - uid: 7654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,52.5 + parent: 2 + - uid: 7655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,53.5 + parent: 2 + - uid: 7656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,54.5 + parent: 2 + - uid: 7657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,55.5 + parent: 2 + - uid: 7658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,56.5 + parent: 2 + - uid: 7659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,57.5 + parent: 2 + - uid: 7660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,58.5 + parent: 2 + - uid: 7661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,59.5 + parent: 2 + - uid: 7662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,60.5 + parent: 2 + - uid: 7663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,61.5 + parent: 2 + - uid: 7664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,63.5 + parent: 2 + - uid: 7665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,64.5 + parent: 2 + - uid: 7666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,65.5 + parent: 2 + - uid: 7667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,66.5 + parent: 2 + - uid: 7668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,67.5 + parent: 2 + - uid: 7669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,52.5 + parent: 2 + - uid: 7670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,52.5 + parent: 2 + - uid: 7671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,52.5 + parent: 2 + - uid: 7672 + components: + - type: Transform + pos: -11.5,62.5 + parent: 2 + - uid: 7673 + components: + - type: Transform + pos: -11.5,66.5 + parent: 2 + - uid: 7674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,56.5 + parent: 2 + - uid: 7675 + components: + - type: Transform + pos: -11.5,58.5 + parent: 2 + - uid: 7676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,57.5 + parent: 2 + - uid: 7677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,57.5 + parent: 2 + - uid: 7678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,57.5 + parent: 2 + - uid: 7679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,57.5 + parent: 2 + - uid: 7680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,33.5 + parent: 2 + - uid: 7681 + components: + - type: Transform + pos: -11.5,60.5 + parent: 2 + - uid: 7682 + components: + - type: Transform + pos: -11.5,63.5 + parent: 2 + - uid: 7683 + components: + - type: Transform + pos: -11.5,65.5 + parent: 2 + - uid: 7684 + components: + - type: Transform + pos: -11.5,64.5 + parent: 2 + - uid: 7685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,58.5 + parent: 2 + - uid: 7686 + components: + - type: Transform + pos: -12.5,56.5 + parent: 2 + - uid: 7687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,57.5 + parent: 2 + - uid: 7688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,7.5 + parent: 2 + - uid: 7689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,7.5 + parent: 2 + - uid: 7690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,7.5 + parent: 2 + - uid: 7691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,7.5 + parent: 2 + - uid: 7692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,9.5 + parent: 2 + - uid: 7693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,10.5 + parent: 2 + - uid: 7694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,10.5 + parent: 2 + - uid: 7695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 2 + - uid: 7696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 2 + - uid: 7697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 2 + - uid: 7698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 2 + - uid: 7699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,10.5 + parent: 2 + - uid: 7700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,10.5 + parent: 2 + - uid: 7701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,10.5 + parent: 2 + - uid: 7702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,10.5 + parent: 2 + - uid: 7703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,10.5 + parent: 2 + - uid: 7704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,10.5 + parent: 2 + - uid: 7705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,10.5 + parent: 2 + - uid: 7706 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 + - uid: 7707 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 7708 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 7709 + components: + - type: Transform + pos: 3.5,14.5 + parent: 2 + - uid: 7710 + components: + - type: Transform + pos: 3.5,15.5 + parent: 2 + - uid: 7711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,16.5 + parent: 2 + - uid: 7712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,16.5 + parent: 2 + - uid: 7713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,16.5 + parent: 2 + - uid: 7714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,16.5 + parent: 2 + - uid: 7715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,7.5 + parent: 2 + - uid: 7716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,7.5 + parent: 2 + - uid: 7717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,7.5 + parent: 2 + - uid: 7718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,8.5 + parent: 2 + - uid: 7719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,9.5 + parent: 2 + - uid: 7720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,10.5 + parent: 2 + - uid: 7721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,11.5 + parent: 2 + - uid: 7722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,12.5 + parent: 2 + - uid: 7723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,13.5 + parent: 2 + - uid: 7724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,14.5 + parent: 2 + - uid: 7725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,15.5 + parent: 2 + - uid: 7726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,16.5 + parent: 2 + - uid: 7727 + components: + - type: Transform + pos: 15.5,18.5 + parent: 2 + - uid: 7728 + components: + - type: Transform + pos: 15.5,19.5 + parent: 2 + - uid: 7729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,20.5 + parent: 2 + - uid: 7730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,20.5 + parent: 2 + - uid: 7731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,20.5 + parent: 2 + - uid: 7732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,20.5 + parent: 2 + - uid: 7733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,20.5 + parent: 2 + - uid: 7734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,20.5 + parent: 2 + - uid: 7735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,20.5 + parent: 2 + - uid: 7736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,20.5 + parent: 2 + - uid: 7737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,20.5 + parent: 2 + - uid: 7738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,20.5 + parent: 2 + - uid: 7739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,20.5 + parent: 2 + - uid: 7740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,20.5 + parent: 2 + - uid: 7741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,20.5 + parent: 2 + - uid: 7742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,20.5 + parent: 2 + - uid: 7743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,20.5 + parent: 2 + - uid: 7744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,20.5 + parent: 2 + - uid: 7745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,20.5 + parent: 2 + - uid: 7746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,20.5 + parent: 2 + - uid: 7747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,20.5 + parent: 2 + - uid: 7748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,20.5 + parent: 2 + - uid: 7749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,20.5 + parent: 2 + - uid: 7750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,20.5 + parent: 2 + - uid: 7751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,20.5 + parent: 2 + - uid: 7752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,29.5 + parent: 2 + - uid: 7753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,28.5 + parent: 2 + - uid: 7754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,27.5 + parent: 2 + - uid: 7755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,26.5 + parent: 2 + - uid: 7756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,24.5 + parent: 2 + - uid: 7757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,21.5 + parent: 2 + - uid: 7758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,21.5 + parent: 2 + - uid: 7759 + components: + - type: Transform + pos: -25.5,20.5 + parent: 2 + - uid: 7760 + components: + - type: Transform + pos: -24.5,19.5 + parent: 2 + - uid: 7761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,18.5 + parent: 2 + - uid: 7762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,18.5 + parent: 2 + - uid: 7763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,18.5 + parent: 2 + - uid: 7764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,18.5 + parent: 2 + - uid: 7765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,18.5 + parent: 2 + - uid: 7766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,18.5 + parent: 2 + - uid: 7767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,19.5 + parent: 2 + - uid: 7768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,19.5 + parent: 2 + - uid: 7769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,19.5 + parent: 2 + - uid: 7770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,19.5 + parent: 2 + - uid: 7771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,19.5 + parent: 2 + - uid: 7772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,19.5 + parent: 2 + - uid: 7773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,19.5 + parent: 2 + - uid: 7774 + components: + - type: Transform + pos: -9.5,21.5 + parent: 2 + - uid: 7775 + components: + - type: Transform + pos: -9.5,22.5 + parent: 2 + - uid: 7776 + components: + - type: Transform + pos: -9.5,23.5 + parent: 2 + - uid: 7777 + components: + - type: Transform + pos: -9.5,24.5 + parent: 2 + - uid: 7778 + components: + - type: Transform + pos: -9.5,25.5 + parent: 2 + - uid: 7779 + components: + - type: Transform + pos: -9.5,26.5 + parent: 2 + - uid: 7780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,27.5 + parent: 2 + - uid: 7781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,27.5 + parent: 2 + - uid: 7782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,27.5 + parent: 2 + - uid: 7783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,27.5 + parent: 2 + - uid: 7784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,36.5 + parent: 2 + - uid: 7785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,36.5 + parent: 2 + - uid: 7786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,36.5 + parent: 2 + - uid: 7787 + components: + - type: Transform + pos: -9.5,35.5 + parent: 2 + - uid: 7788 + components: + - type: Transform + pos: -9.5,34.5 + parent: 2 + - uid: 7789 + components: + - type: Transform + pos: -9.5,33.5 + parent: 2 + - uid: 7790 + components: + - type: Transform + pos: -9.5,32.5 + parent: 2 + - uid: 7791 + components: + - type: Transform + pos: -9.5,31.5 + parent: 2 + - uid: 7792 + components: + - type: Transform + pos: -9.5,30.5 + parent: 2 + - uid: 7793 + components: + - type: Transform + pos: -9.5,29.5 + parent: 2 + - uid: 7794 + components: + - type: Transform + pos: -9.5,28.5 + parent: 2 + - uid: 7795 + components: + - type: Transform + pos: 0.5,21.5 + parent: 2 + - uid: 7796 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - uid: 7797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,23.5 + parent: 2 + - uid: 7798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,24.5 + parent: 2 + - uid: 7799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,25.5 + parent: 2 + - uid: 7800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,26.5 + parent: 2 + - uid: 7801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,27.5 + parent: 2 + - uid: 7802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,28.5 + parent: 2 + - uid: 7803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,29.5 + parent: 2 + - uid: 7804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,30.5 + parent: 2 + - uid: 7805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,31.5 + parent: 2 + - uid: 7806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,32.5 + parent: 2 + - uid: 7807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,33.5 + parent: 2 + - uid: 7808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,34.5 + parent: 2 + - uid: 7809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,35.5 + parent: 2 + - uid: 7810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,36.5 + parent: 2 + - uid: 7811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,37.5 + parent: 2 + - uid: 7812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,38.5 + parent: 2 + - uid: 7813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,39.5 + parent: 2 + - uid: 7814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,40.5 + parent: 2 + - uid: 7815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,41.5 + parent: 2 + - uid: 7816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,42.5 + parent: 2 + - uid: 7817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,43.5 + parent: 2 + - uid: 7818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,44.5 + parent: 2 + - uid: 7819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,45.5 + parent: 2 + - uid: 7820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,46.5 + parent: 2 + - uid: 7821 + components: + - type: Transform + pos: 0.5,47.5 + parent: 2 + - uid: 7822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,48.5 + parent: 2 + - uid: 7823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,48.5 + parent: 2 + - uid: 7824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,48.5 + parent: 2 + - uid: 7825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,48.5 + parent: 2 + - uid: 7826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,48.5 + parent: 2 + - uid: 7827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,48.5 + parent: 2 + - uid: 7828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,48.5 + parent: 2 + - uid: 7829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,48.5 + parent: 2 + - uid: 7830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,48.5 + parent: 2 + - uid: 7831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,48.5 + parent: 2 + - uid: 7832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,48.5 + parent: 2 + - uid: 7833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,48.5 + parent: 2 + - uid: 7834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,58.5 + parent: 2 + - uid: 7835 + components: + - type: Transform + pos: -0.5,57.5 + parent: 2 + - uid: 7836 + components: + - type: Transform + pos: -0.5,56.5 + parent: 2 + - uid: 7837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,55.5 + parent: 2 + - uid: 7838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,55.5 + parent: 2 + - uid: 7839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,55.5 + parent: 2 + - uid: 7840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,55.5 + parent: 2 + - uid: 7841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,55.5 + parent: 2 + - uid: 7842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,55.5 + parent: 2 + - uid: 7843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,55.5 + parent: 2 + - uid: 7844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,55.5 + parent: 2 + - uid: 7845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,55.5 + parent: 2 + - uid: 7846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,55.5 + parent: 2 + - uid: 7847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,55.5 + parent: 2 + - uid: 7848 + components: + - type: Transform + pos: -12.5,54.5 + parent: 2 + - uid: 7849 + components: + - type: Transform + pos: -12.5,53.5 + parent: 2 + - uid: 7850 + components: + - type: Transform + pos: -12.5,52.5 + parent: 2 + - uid: 7851 + components: + - type: Transform + pos: -12.5,51.5 + parent: 2 + - uid: 7852 + components: + - type: Transform + pos: -12.5,50.5 + parent: 2 + - uid: 7853 + components: + - type: Transform + pos: -12.5,49.5 + parent: 2 + - uid: 7854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,56.5 + parent: 2 + - uid: 7855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,51.5 + parent: 2 + - uid: 7856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,52.5 + parent: 2 + - uid: 7857 + components: + - type: Transform + pos: -27.5,54.5 + parent: 2 + - uid: 7858 + components: + - type: Transform + pos: -27.5,55.5 + parent: 2 + - uid: 7859 + components: + - type: Transform + pos: -27.5,56.5 + parent: 2 + - uid: 7860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,57.5 + parent: 2 + - uid: 7861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,57.5 + parent: 2 + - uid: 7862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,57.5 + parent: 2 + - uid: 7863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,57.5 + parent: 2 + - uid: 7864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,57.5 + parent: 2 + - uid: 7865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,57.5 + parent: 2 + - uid: 7866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,57.5 + parent: 2 + - uid: 7867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,52.5 + parent: 2 + - uid: 7868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,53.5 + parent: 2 + - uid: 7869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,54.5 + parent: 2 + - uid: 7870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,55.5 + parent: 2 + - uid: 7871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,56.5 + parent: 2 + - uid: 7872 + components: + - type: Transform + pos: -22.5,59.5 + parent: 2 + - uid: 7873 + components: + - type: Transform + pos: -22.5,60.5 + parent: 2 + - uid: 7874 + components: + - type: Transform + pos: -22.5,61.5 + parent: 2 + - uid: 7875 + components: + - type: Transform + pos: -22.5,62.5 + parent: 2 + - uid: 7876 + components: + - type: Transform + pos: -22.5,63.5 + parent: 2 + - uid: 7877 + components: + - type: Transform + pos: -17.5,61.5 + parent: 2 + - uid: 7878 + components: + - type: Transform + pos: -17.5,60.5 + parent: 2 + - uid: 7879 + components: + - type: Transform + pos: -17.5,59.5 + parent: 2 + - uid: 7880 + components: + - type: Transform + pos: -17.5,58.5 + parent: 2 + - uid: 7881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,57.5 + parent: 2 + - uid: 7882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,57.5 + parent: 2 + - uid: 7883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,57.5 + parent: 2 + - uid: 7884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,54.5 + parent: 2 + - uid: 7885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,55.5 + parent: 2 + - uid: 7886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,56.5 + parent: 2 + - uid: 7887 + components: + - type: Transform + pos: -11.5,61.5 + parent: 2 + - uid: 7888 + components: + - type: Transform + pos: -11.5,59.5 + parent: 2 + - uid: 7889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,55.5 + parent: 2 + - uid: 7890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,54.5 + parent: 2 + - uid: 7891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,59.5 + parent: 2 + - uid: 7892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,67.5 + parent: 2 + - uid: 7893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,53.5 + parent: 2 + - uid: 7894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,67.5 + parent: 2 + - uid: 7895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,67.5 + parent: 2 + - uid: 7896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,67.5 + parent: 2 + - uid: 7897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,67.5 + parent: 2 + - uid: 7898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,48.5 + parent: 2 + - uid: 7899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,48.5 + parent: 2 + - uid: 7900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,48.5 + parent: 2 + - uid: 7901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,48.5 + parent: 2 + - uid: 7902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,49.5 + parent: 2 + - uid: 7903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,50.5 + parent: 2 + - uid: 7904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,51.5 + parent: 2 + - uid: 7905 + components: + - type: Transform + pos: 5.5,54.5 + parent: 2 + - uid: 7906 + components: + - type: Transform + pos: 5.5,55.5 + parent: 2 + - uid: 7907 + components: + - type: Transform + pos: 5.5,56.5 + parent: 2 + - uid: 7908 + components: + - type: Transform + pos: 5.5,57.5 + parent: 2 + - uid: 7909 + components: + - type: Transform + pos: 5.5,58.5 + parent: 2 + - uid: 7910 + components: + - type: Transform + pos: 5.5,59.5 + parent: 2 + - uid: 7911 + components: + - type: Transform + pos: 5.5,60.5 + parent: 2 + - uid: 7912 + components: + - type: Transform + pos: 5.5,61.5 + parent: 2 + - uid: 7913 + components: + - type: Transform + pos: 5.5,62.5 + parent: 2 + - uid: 7914 + components: + - type: Transform + pos: 5.5,63.5 + parent: 2 + - uid: 7915 + components: + - type: Transform + pos: 5.5,64.5 + parent: 2 + - uid: 7916 + components: + - type: Transform + pos: 5.5,65.5 + parent: 2 + - uid: 7917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,66.5 + parent: 2 + - uid: 7918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,48.5 + parent: 2 + - uid: 7919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,48.5 + parent: 2 + - uid: 7920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,48.5 + parent: 2 + - uid: 7921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,48.5 + parent: 2 + - uid: 7922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,48.5 + parent: 2 + - uid: 7923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,48.5 + parent: 2 + - uid: 7924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,48.5 + parent: 2 + - uid: 7925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,48.5 + parent: 2 + - uid: 7926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,48.5 + parent: 2 + - uid: 7927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,48.5 + parent: 2 + - uid: 7928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,48.5 + parent: 2 + - uid: 7929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,48.5 + parent: 2 + - uid: 7930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,48.5 + parent: 2 + - uid: 7931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,48.5 + parent: 2 + - uid: 7932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,48.5 + parent: 2 + - uid: 7933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,48.5 + parent: 2 + - uid: 7934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,48.5 + parent: 2 + - uid: 7935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,48.5 + parent: 2 + - uid: 7936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,55.5 + parent: 2 + - uid: 7937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,55.5 + parent: 2 + - uid: 7938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,55.5 + parent: 2 + - uid: 7939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,49.5 + parent: 2 + - uid: 7940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,50.5 + parent: 2 + - uid: 7941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,51.5 + parent: 2 + - uid: 7942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,52.5 + parent: 2 + - uid: 7943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,53.5 + parent: 2 + - uid: 7944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,54.5 + parent: 2 + - uid: 7945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,37.5 + parent: 2 + - uid: 7946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,20.5 + parent: 2 + - uid: 7947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,21.5 + parent: 2 + - uid: 7948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,22.5 + parent: 2 + - uid: 7949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,23.5 + parent: 2 + - uid: 7950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,24.5 + parent: 2 + - uid: 7951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,26.5 + parent: 2 + - uid: 7952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,26.5 + parent: 2 + - uid: 7953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,26.5 + parent: 2 + - uid: 7954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,26.5 + parent: 2 + - uid: 7955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,26.5 + parent: 2 + - uid: 7956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,25.5 + parent: 2 + - uid: 7957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,25.5 + parent: 2 + - uid: 7958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,25.5 + parent: 2 + - uid: 7959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,25.5 + parent: 2 + - uid: 7960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,25.5 + parent: 2 + - uid: 7961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,25.5 + parent: 2 + - uid: 7962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,25.5 + parent: 2 + - uid: 7963 + components: + - type: Transform + pos: 9.5,40.5 + parent: 2 + - uid: 7964 + components: + - type: Transform + pos: 9.5,39.5 + parent: 2 + - uid: 7965 + components: + - type: Transform + pos: 9.5,38.5 + parent: 2 + - uid: 7966 + components: + - type: Transform + pos: 9.5,37.5 + parent: 2 + - uid: 7967 + components: + - type: Transform + pos: 9.5,36.5 + parent: 2 + - uid: 7968 + components: + - type: Transform + pos: 9.5,35.5 + parent: 2 + - uid: 7969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,34.5 + parent: 2 + - uid: 7970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,34.5 + parent: 2 + - uid: 7971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,34.5 + parent: 2 + - uid: 7972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,34.5 + parent: 2 + - uid: 7973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,34.5 + parent: 2 + - uid: 7974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,34.5 + parent: 2 + - uid: 7975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,34.5 + parent: 2 + - uid: 7976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,34.5 + parent: 2 + - uid: 7977 + components: + - type: Transform + pos: 18.5,36.5 + parent: 2 + - uid: 7978 + components: + - type: Transform + pos: 18.5,35.5 + parent: 2 + - uid: 7979 + components: + - type: Transform + pos: 18.5,33.5 + parent: 2 + - uid: 7980 + components: + - type: Transform + pos: 18.5,32.5 + parent: 2 + - uid: 7981 + components: + - type: Transform + pos: 18.5,31.5 + parent: 2 + - uid: 7982 + components: + - type: Transform + pos: 18.5,30.5 + parent: 2 + - uid: 7983 + components: + - type: Transform + pos: 18.5,29.5 + parent: 2 + - uid: 7984 + components: + - type: Transform + pos: 17.5,27.5 + parent: 2 + - uid: 7985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,54.5 + parent: 2 + - uid: 7986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,54.5 + parent: 2 + - uid: 7987 + components: + - type: Transform + pos: 40.5,53.5 + parent: 2 + - uid: 7988 + components: + - type: Transform + pos: 40.5,52.5 + parent: 2 + - uid: 7989 + components: + - type: Transform + pos: 40.5,51.5 + parent: 2 + - uid: 7990 + components: + - type: Transform + pos: 40.5,50.5 + parent: 2 + - uid: 7991 + components: + - type: Transform + pos: 40.5,49.5 + parent: 2 + - uid: 7992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,46.5 + parent: 2 + - uid: 7993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,47.5 + parent: 2 + - uid: 7994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,48.5 + parent: 2 + - uid: 7995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,48.5 + parent: 2 + - uid: 7996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,48.5 + parent: 2 + - uid: 7997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,48.5 + parent: 2 + - uid: 7998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,48.5 + parent: 2 + - uid: 7999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,48.5 + parent: 2 + - uid: 8000 + components: + - type: Transform + pos: 32.5,47.5 + parent: 2 + - uid: 8001 + components: + - type: Transform + pos: 32.5,46.5 + parent: 2 + - uid: 8002 + components: + - type: Transform + pos: 32.5,45.5 + parent: 2 + - uid: 8003 + components: + - type: Transform + pos: 32.5,44.5 + parent: 2 + - uid: 8004 + components: + - type: Transform + pos: 32.5,43.5 + parent: 2 + - uid: 8005 + components: + - type: Transform + pos: 32.5,42.5 + parent: 2 + - uid: 8006 + components: + - type: Transform + pos: 32.5,41.5 + parent: 2 + - uid: 8007 + components: + - type: Transform + pos: 32.5,40.5 + parent: 2 + - uid: 8008 + components: + - type: Transform + pos: 32.5,39.5 + parent: 2 + - uid: 8009 + components: + - type: Transform + pos: 32.5,38.5 + parent: 2 + - uid: 8010 + components: + - type: Transform + pos: 32.5,37.5 + parent: 2 + - uid: 8011 + components: + - type: Transform + pos: 32.5,36.5 + parent: 2 + - uid: 8012 + components: + - type: Transform + pos: 32.5,35.5 + parent: 2 + - uid: 8013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,34.5 + parent: 2 + - uid: 8014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,34.5 + parent: 2 + - uid: 8015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,34.5 + parent: 2 + - uid: 8016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,34.5 + parent: 2 + - uid: 8017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,34.5 + parent: 2 + - uid: 8018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,34.5 + parent: 2 + - uid: 8019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,34.5 + parent: 2 + - uid: 8020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,34.5 + parent: 2 + - uid: 8021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,34.5 + parent: 2 + - uid: 8022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,34.5 + parent: 2 + - uid: 8023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,34.5 + parent: 2 + - uid: 8024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,34.5 + parent: 2 + - uid: 8025 + components: + - type: Transform + pos: 46.5,35.5 + parent: 2 + - uid: 8026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,34.5 + parent: 2 + - uid: 8027 + components: + - type: Transform + pos: 53.5,45.5 + parent: 2 + - uid: 8028 + components: + - type: Transform + pos: 53.5,44.5 + parent: 2 + - uid: 8029 + components: + - type: Transform + pos: 53.5,43.5 + parent: 2 + - uid: 8030 + components: + - type: Transform + pos: 53.5,42.5 + parent: 2 + - uid: 8031 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,39.5 + parent: 2 + - uid: 8033 + components: + - type: Transform + pos: 53.5,38.5 + parent: 2 + - uid: 8034 + components: + - type: Transform + pos: 53.5,37.5 + parent: 2 + - uid: 8035 + components: + - type: Transform + pos: 53.5,36.5 + parent: 2 + - uid: 8036 + components: + - type: Transform + pos: 53.5,35.5 + parent: 2 + - uid: 8037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,39.5 + parent: 2 + - uid: 8038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,39.5 + parent: 2 + - uid: 8039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,39.5 + parent: 2 + - uid: 8040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,39.5 + parent: 2 + - uid: 8041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,39.5 + parent: 2 + - uid: 8042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,39.5 + parent: 2 + - uid: 8043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,39.5 + parent: 2 + - uid: 8044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,34.5 + parent: 2 + - uid: 8045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,34.5 + parent: 2 + - uid: 8046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,34.5 + parent: 2 + - uid: 8047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,34.5 + parent: 2 + - uid: 8048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,34.5 + parent: 2 + - uid: 8049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,34.5 + parent: 2 + - uid: 8050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,34.5 + parent: 2 + - uid: 8051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,34.5 + parent: 2 + - uid: 8052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,34.5 + parent: 2 + - uid: 8053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,34.5 + parent: 2 + - uid: 8054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,34.5 + parent: 2 + - uid: 8055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,34.5 + parent: 2 + - uid: 8056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,30.5 + parent: 2 + - uid: 8057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,30.5 + parent: 2 + - uid: 8058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,28.5 + parent: 2 + - uid: 8059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,44.5 + parent: 2 + - uid: 8060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,43.5 + parent: 2 + - uid: 8061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,43.5 + parent: 2 + - uid: 8062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,43.5 + parent: 2 + - uid: 8063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,43.5 + parent: 2 + - uid: 8064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,38.5 + parent: 2 + - uid: 8065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,38.5 + parent: 2 + - uid: 8066 + components: + - type: Transform + pos: 81.5,42.5 + parent: 2 + - uid: 8067 + components: + - type: Transform + pos: 81.5,41.5 + parent: 2 + - uid: 8068 + components: + - type: Transform + pos: 81.5,40.5 + parent: 2 + - uid: 8069 + components: + - type: Transform + pos: 81.5,39.5 + parent: 2 + - uid: 8070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,31.5 + parent: 2 + - uid: 8071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,32.5 + parent: 2 + - uid: 8072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,33.5 + parent: 2 + - uid: 8073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,35.5 + parent: 2 + - uid: 8074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,36.5 + parent: 2 + - uid: 8075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,37.5 + parent: 2 + - uid: 8076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,34.5 + parent: 2 + - uid: 8077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,34.5 + parent: 2 + - uid: 8078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,34.5 + parent: 2 + - uid: 8079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,34.5 + parent: 2 + - uid: 8080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,34.5 + parent: 2 + - uid: 8081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,34.5 + parent: 2 + - uid: 8082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,34.5 + parent: 2 + - uid: 8083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,34.5 + parent: 2 + - uid: 8084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,34.5 + parent: 2 + - uid: 8085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,34.5 + parent: 2 + - uid: 8086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,34.5 + parent: 2 + - uid: 8087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,34.5 + parent: 2 + - uid: 8088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,34.5 + parent: 2 + - uid: 8089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,55.5 + parent: 2 + - uid: 8090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,55.5 + parent: 2 + - uid: 8091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,55.5 + parent: 2 + - uid: 8092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,55.5 + parent: 2 + - uid: 8093 + components: + - type: Transform + pos: 65.5,54.5 + parent: 2 + - uid: 8094 + components: + - type: Transform + pos: 65.5,53.5 + parent: 2 + - uid: 8095 + components: + - type: Transform + pos: 65.5,52.5 + parent: 2 + - uid: 8096 + components: + - type: Transform + pos: 65.5,51.5 + parent: 2 + - uid: 8097 + components: + - type: Transform + pos: 65.5,50.5 + parent: 2 + - uid: 8098 + components: + - type: Transform + pos: 65.5,49.5 + parent: 2 + - uid: 8099 + components: + - type: Transform + pos: 65.5,48.5 + parent: 2 + - uid: 8100 + components: + - type: Transform + pos: 65.5,47.5 + parent: 2 + - uid: 8101 + components: + - type: Transform + pos: 65.5,46.5 + parent: 2 + - uid: 8102 + components: + - type: Transform + pos: 65.5,45.5 + parent: 2 + - uid: 8103 + components: + - type: Transform + pos: 65.5,44.5 + parent: 2 + - uid: 8104 + components: + - type: Transform + pos: 65.5,43.5 + parent: 2 + - uid: 8105 + components: + - type: Transform + pos: 65.5,42.5 + parent: 2 + - uid: 8106 + components: + - type: Transform + pos: 65.5,41.5 + parent: 2 + - uid: 8107 + components: + - type: Transform + pos: 65.5,40.5 + parent: 2 + - uid: 8108 + components: + - type: Transform + pos: 65.5,39.5 + parent: 2 + - uid: 8109 + components: + - type: Transform + pos: 65.5,38.5 + parent: 2 + - uid: 8110 + components: + - type: Transform + pos: 65.5,37.5 + parent: 2 + - uid: 8111 + components: + - type: Transform + pos: 65.5,36.5 + parent: 2 + - uid: 8112 + components: + - type: Transform + pos: 65.5,35.5 + parent: 2 + - uid: 8118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,27.5 + parent: 2 + - uid: 8119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,27.5 + parent: 2 + - uid: 8120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,28.5 + parent: 2 + - uid: 8121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,29.5 + parent: 2 + - uid: 8122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,30.5 + parent: 2 + - uid: 8123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,31.5 + parent: 2 + - uid: 8124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,32.5 + parent: 2 + - uid: 8125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,26.5 + parent: 2 + - uid: 8126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,25.5 + parent: 2 + - uid: 8127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,24.5 + parent: 2 + - uid: 8128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,23.5 + parent: 2 + - uid: 8129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,22.5 + parent: 2 + - uid: 8130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,21.5 + parent: 2 + - uid: 8131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,20.5 + parent: 2 + - uid: 8132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,19.5 + parent: 2 + - uid: 8133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,17.5 + parent: 2 + - uid: 8134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,17.5 + parent: 2 + - uid: 8135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,17.5 + parent: 2 + - uid: 8136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,17.5 + parent: 2 + - uid: 8137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,18.5 + parent: 2 + - uid: 8138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,9.5 + parent: 2 + - uid: 8139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,10.5 + parent: 2 + - uid: 8140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,11.5 + parent: 2 + - uid: 8141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,12.5 + parent: 2 + - uid: 8142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,13.5 + parent: 2 + - uid: 8143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,14.5 + parent: 2 + - uid: 8144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,15.5 + parent: 2 + - uid: 8145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,16.5 + parent: 2 + - uid: 8146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,6.5 + parent: 2 + - uid: 8147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,6.5 + parent: 2 + - uid: 8148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,6.5 + parent: 2 + - uid: 8149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,6.5 + parent: 2 + - uid: 8150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,6.5 + parent: 2 + - uid: 8151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,6.5 + parent: 2 + - uid: 8152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,6.5 + parent: 2 + - uid: 8153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,6.5 + parent: 2 + - uid: 8154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,6.5 + parent: 2 + - uid: 8155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,7.5 + parent: 2 + - uid: 8156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,7.5 + parent: 2 + - uid: 8157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,7.5 + parent: 2 + - uid: 8158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,7.5 + parent: 2 + - uid: 8159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,7.5 + parent: 2 + - uid: 8160 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 8161 + components: + - type: Transform + pos: 31.5,5.5 + parent: 2 + - uid: 8162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,4.5 + parent: 2 + - uid: 8163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,4.5 + parent: 2 + - uid: 8164 + components: + - type: Transform + pos: 52.5,14.5 + parent: 2 + - uid: 8165 + components: + - type: Transform + pos: 52.5,15.5 + parent: 2 + - uid: 8166 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 + - uid: 8167 + components: + - type: Transform + pos: 47.5,27.5 + parent: 2 + - uid: 8168 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 8169 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 8170 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 8171 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 8172 + components: + - type: Transform + pos: 56.5,16.5 + parent: 2 + - uid: 8173 + components: + - type: Transform + pos: 56.5,17.5 + parent: 2 + - uid: 8174 + components: + - type: Transform + pos: 56.5,18.5 + parent: 2 + - uid: 8175 + components: + - type: Transform + pos: 56.5,19.5 + parent: 2 + - uid: 8176 + components: + - type: Transform + pos: 56.5,20.5 + parent: 2 + - uid: 8177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,21.5 + parent: 2 + - uid: 8178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,21.5 + parent: 2 + - uid: 8179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,21.5 + parent: 2 + - uid: 8180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,21.5 + parent: 2 + - uid: 8181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,21.5 + parent: 2 + - uid: 8182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,21.5 + parent: 2 + - uid: 8183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,21.5 + parent: 2 + - uid: 8184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,21.5 + parent: 2 + - uid: 8185 + components: + - type: Transform + pos: 47.5,22.5 + parent: 2 + - uid: 8186 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 8187 + components: + - type: Transform + pos: 47.5,19.5 + parent: 2 + - uid: 8188 + components: + - type: Transform + pos: 47.5,18.5 + parent: 2 + - uid: 8189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,17.5 + parent: 2 + - uid: 8190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,17.5 + parent: 2 + - uid: 8191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,17.5 + parent: 2 + - uid: 8192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,17.5 + parent: 2 + - uid: 8193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,17.5 + parent: 2 + - uid: 8194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,17.5 + parent: 2 + - uid: 8195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,17.5 + parent: 2 + - uid: 8196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,17.5 + parent: 2 + - uid: 8197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,17.5 + parent: 2 + - uid: 8198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,17.5 + parent: 2 + - uid: 8199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,17.5 + parent: 2 + - uid: 8200 + components: + - type: Transform + pos: 39.5,16.5 + parent: 2 + - uid: 8201 + components: + - type: Transform + pos: 39.5,15.5 + parent: 2 + - uid: 8202 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 8203 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 + - uid: 8204 + components: + - type: Transform + pos: 39.5,12.5 + parent: 2 + - uid: 8205 + components: + - type: Transform + pos: 39.5,11.5 + parent: 2 + - uid: 8206 + components: + - type: Transform + pos: 39.5,10.5 + parent: 2 + - uid: 8207 + components: + - type: Transform + pos: 39.5,9.5 + parent: 2 + - uid: 8208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,8.5 + parent: 2 + - uid: 8209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,8.5 + parent: 2 + - uid: 8210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,8.5 + parent: 2 + - uid: 8211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,5.5 + parent: 2 + - uid: 8212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,6.5 + parent: 2 + - uid: 8213 + components: + - type: Transform + pos: -1.5,9.5 + parent: 2 + - uid: 8214 + components: + - type: Transform + pos: -1.5,8.5 + parent: 2 + - uid: 8215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,7.5 + parent: 2 + - uid: 8216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 2 + - uid: 8217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 2 + - uid: 8218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,7.5 + parent: 2 + - uid: 8219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 + - uid: 8220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,6.5 + parent: 2 + - uid: 8221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,5.5 + parent: 2 + - uid: 8222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,4.5 + parent: 2 + - uid: 8223 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 2 + - uid: 8224 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 8225 + components: + - type: Transform + pos: 46.5,37.5 + parent: 2 + - uid: 8226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,17.5 + parent: 2 + - uid: 8227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-4.5 + parent: 2 + - uid: 8228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 2 + - uid: 8229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,10.5 + parent: 2 + - uid: 8230 + components: + - type: Transform + pos: 33.5,0.5 + parent: 2 + - uid: 8231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-6.5 + parent: 2 + - uid: 8232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-3.5 + parent: 2 + - uid: 8233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,40.5 + parent: 2 + - uid: 8234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-2.5 + parent: 2 + - uid: 8235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,29.5 + parent: 2 + - uid: 8236 + components: + - type: Transform + pos: 21.5,68.5 + parent: 2 + - uid: 8237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,62.5 + parent: 2 + - uid: 8238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,45.5 + parent: 2 + - uid: 8239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,67.5 + parent: 2 + - uid: 8240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,55.5 + parent: 2 + - uid: 8241 + components: + - type: Transform + pos: -24.5,20.5 + parent: 2 + - uid: 8242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,7.5 + parent: 2 + - uid: 8243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,16.5 + parent: 2 + - uid: 8244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,17.5 + parent: 2 + - uid: 8245 + components: + - type: Transform + pos: -33.5,30.5 + parent: 2 + - uid: 8246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,26.5 + parent: 2 + - uid: 8247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,37.5 + parent: 2 + - uid: 8248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,23.5 + parent: 2 + - uid: 8249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,46.5 + parent: 2 + - uid: 8250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,57.5 + parent: 2 + - uid: 8251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,51.5 + parent: 2 + - uid: 8252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,51.5 + parent: 2 + - uid: 8253 + components: + - type: Transform + pos: -22.5,64.5 + parent: 2 + - uid: 8254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,63.5 + parent: 2 + - uid: 8255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,51.5 + parent: 2 + - uid: 8256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,66.5 + parent: 2 + - uid: 8257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,59.5 + parent: 2 + - uid: 8258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,66.5 + parent: 2 + - uid: 8259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,55.5 + parent: 2 + - uid: 8260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,37.5 + parent: 2 + - uid: 8261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,26.5 + parent: 2 + - uid: 8262 + components: + - type: Transform + pos: 9.5,41.5 + parent: 2 + - uid: 8263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,23.5 + parent: 2 + - uid: 8264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,54.5 + parent: 2 + - uid: 8265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,43.5 + parent: 2 + - uid: 8266 + components: + - type: Transform + pos: 53.5,46.5 + parent: 2 + - uid: 8267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,39.5 + parent: 2 + - uid: 8268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,29.5 + parent: 2 + - uid: 8269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,27.5 + parent: 2 + - uid: 8270 + components: + - type: Transform + pos: 77.5,45.5 + parent: 2 + - uid: 8271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,43.5 + parent: 2 + - uid: 8272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,37.5 + parent: 2 + - uid: 8273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,54.5 + parent: 2 + - uid: 8275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,8.5 + parent: 2 + - uid: 8276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,8.5 + parent: 2 + - uid: 8277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,7.5 + parent: 2 + - uid: 8278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,13.5 + parent: 2 + - uid: 8279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,28.5 + parent: 2 + - uid: 8280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,15.5 + parent: 2 + - uid: 8281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 2 + - uid: 8282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-5.5 + parent: 2 +- proto: DisposalUnit + entities: + - uid: 8283 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 8284 + components: + - type: Transform + pos: -4.5,26.5 + parent: 2 + - uid: 8285 + components: + - type: Transform + pos: -8.5,37.5 + parent: 2 + - uid: 8286 + components: + - type: Transform + pos: -1.5,16.5 + parent: 2 + - uid: 8287 + components: + - type: Transform + pos: -24.5,20.5 + parent: 2 + - uid: 8289 + components: + - type: Transform + pos: -17.5,51.5 + parent: 2 + - uid: 8290 + components: + - type: Transform + pos: -22.5,51.5 + parent: 2 + - uid: 8291 + components: + - type: Transform + pos: -22.5,64.5 + parent: 2 + - uid: 8292 + components: + - type: Transform + pos: 33.5,0.5 + parent: 2 + - uid: 8293 + components: + - type: Transform + pos: 34.5,7.5 + parent: 2 + - uid: 8294 + components: + - type: Transform + pos: 50.5,-2.5 + parent: 2 + - uid: 8295 + components: + - type: Transform + pos: 48.5,-3.5 + parent: 2 + - uid: 8296 + components: + - type: Transform + pos: 49.5,-6.5 + parent: 2 + - uid: 8297 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 8298 + components: + - type: Transform + pos: 55.5,15.5 + parent: 2 + - uid: 8299 + components: + - type: Transform + pos: 46.5,28.5 + parent: 2 + - uid: 8300 + components: + - type: Transform + pos: 23.5,8.5 + parent: 2 + - uid: 8301 + components: + - type: Transform + pos: 2.5,57.5 + parent: 2 + - uid: 8302 + components: + - type: Transform + pos: 7.5,66.5 + parent: 2 + - uid: 8303 + components: + - type: Transform + pos: 8.5,59.5 + parent: 2 + - uid: 8304 + components: + - type: Transform + pos: 21.5,62.5 + parent: 2 + - uid: 8305 + components: + - type: Transform + pos: 26.5,45.5 + parent: 2 + - uid: 8306 + components: + - type: Transform + pos: 24.5,67.5 + parent: 2 + - uid: 8307 + components: + - type: Transform + pos: 20.5,55.5 + parent: 2 + - uid: 8308 + components: + - type: Transform + pos: 46.5,37.5 + parent: 2 + - uid: 8309 + components: + - type: Transform + pos: 53.5,46.5 + parent: 2 + - uid: 8310 + components: + - type: Transform + pos: 52.5,40.5 + parent: 2 + - uid: 8311 + components: + - type: Transform + pos: 62.5,39.5 + parent: 2 + - uid: 8312 + components: + - type: Transform + pos: 43.5,54.5 + parent: 2 + - uid: 8313 + components: + - type: Transform + pos: 42.5,43.5 + parent: 2 + - uid: 8314 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 8315 + components: + - type: Transform + pos: 9.5,23.5 + parent: 2 + - uid: 8316 + components: + - type: Transform + pos: 9.5,41.5 + parent: 2 + - uid: 8317 + components: + - type: Transform + pos: 16.5,37.5 + parent: 2 + - uid: 8318 + components: + - type: Transform + pos: 78.5,37.5 + parent: 2 + - uid: 8319 + components: + - type: Transform + pos: 78.5,29.5 + parent: 2 + - uid: 8320 + components: + - type: Transform + pos: 80.5,27.5 + parent: 2 + - uid: 8322 + components: + - type: Transform + pos: 72.5,17.5 + parent: 2 + - uid: 8323 + components: + - type: Transform + pos: -1.5,46.5 + parent: 2 + - uid: 8324 + components: + - type: Transform + pos: 2.5,23.5 + parent: 2 + - uid: 8325 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 8326 + components: + - type: Transform + pos: -15.5,7.5 + parent: 2 + - uid: 8327 + components: + - type: Transform + pos: -33.5,30.5 + parent: 2 + - uid: 8328 + components: + - type: Transform + pos: -16.5,63.5 + parent: 2 + - uid: 8329 + components: + - type: Transform + pos: -29.5,51.5 + parent: 2 + - uid: 8330 + components: + - type: Transform + pos: -33.5,55.5 + parent: 2 + - uid: 8331 + components: + - type: Transform + pos: -5.5,66.5 + parent: 2 + - uid: 8332 + components: + - type: Transform + pos: 70.5,54.5 + parent: 2 + - uid: 8333 + components: + - type: Transform + pos: 83.5,43.5 + parent: 2 + - uid: 8334 + components: + - type: Transform + pos: 77.5,45.5 + parent: 2 + - uid: 8335 + components: + - type: Transform + pos: 82.5,29.5 + parent: 2 + - uid: 8336 + components: + - type: Transform + pos: 66.5,8.5 + parent: 2 + - uid: 8337 + components: + - type: Transform + pos: -7.5,3.5 + parent: 2 + - uid: 8338 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 2 + - uid: 15251 + components: + - type: Transform + pos: 72.5,27.5 + parent: 2 +- proto: DisposalYJunction + entities: + - uid: 8339 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 + - uid: 8340 + components: + - type: Transform + pos: -12.5,57.5 + parent: 2 + - uid: 8341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,7.5 + parent: 2 + - uid: 8342 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 + - uid: 8343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,20.5 + parent: 2 + - uid: 8344 + components: + - type: Transform + pos: 0.5,48.5 + parent: 2 + - uid: 8345 + components: + - type: Transform + pos: 81.5,43.5 + parent: 2 + - uid: 8346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,34.5 + parent: 2 + - uid: 8347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,34.5 + parent: 2 +- proto: DogBed + entities: + - uid: 8116 + components: + - type: Transform + pos: 74.5,28.5 + parent: 2 + - uid: 8348 + components: + - type: Transform + pos: 78.5,39.5 + parent: 2 + - uid: 8349 + components: + - type: Transform + pos: 52.5,13.5 + parent: 2 + - uid: 8350 + components: + - type: Transform + pos: -14.5,61.5 + parent: 2 + - uid: 8351 + components: + - type: Transform + pos: 20.5,38.5 + parent: 2 + - uid: 8353 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 + - uid: 12549 + components: + - type: Transform + pos: -3.5,23.5 + parent: 2 + - uid: 18751 + components: + - type: Transform + pos: -1.5,59.5 + parent: 2 + - uid: 19364 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 + - uid: 19366 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 19369 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 +- proto: DonkpocketBoxSpawner + entities: + - uid: 8354 + components: + - type: Transform + pos: -25.5,60.5 + parent: 2 + - uid: 8355 + components: + - type: Transform + pos: 55.5,43.5 + parent: 2 + - uid: 8356 + components: + - type: Transform + pos: 3.5,40.5 + parent: 2 + - uid: 8357 + components: + - type: Transform + pos: 44.5,66.5 + parent: 2 +- proto: DoubleEmergencyNitrogenTankFilled + entities: + - uid: 8358 + components: + - type: Transform + pos: -17.453373,-3.5452433 + parent: 2 +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 8359 + components: + - type: Transform + pos: -11.443108,18.449512 + parent: 2 + - uid: 8360 + components: + - type: Transform + pos: 28.578362,66.59765 + parent: 2 + - uid: 8361 + components: + - type: Transform + pos: -17.453373,-3.3395076 + parent: 2 +- proto: DresserCaptainFilled + entities: + - uid: 8362 + components: + - type: Transform + pos: 77.5,24.5 + parent: 2 +- proto: DresserChiefEngineerFilled + entities: + - uid: 8363 + components: + - type: Transform + pos: -2.5,25.5 + parent: 2 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 14264 + components: + - type: Transform + pos: 20.5,39.5 + parent: 2 +- proto: DresserFilled + entities: + - uid: 8364 + components: + - type: Transform + pos: 40.5,44.5 + parent: 2 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 18621 + components: + - type: Transform + pos: 76.5,40.5 + parent: 2 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 18622 + components: + - type: Transform + pos: -17.5,52.5 + parent: 2 +- proto: DresserQuarterMasterFilled + entities: + - uid: 8365 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 +- proto: DresserResearchDirectorFilled + entities: + - uid: 13598 + components: + - type: Transform + pos: 51.5,13.5 + parent: 2 +- proto: DrinkBeerBottleFull + entities: + - uid: 8366 + components: + - type: Transform + pos: 49.910133,60.460823 + parent: 2 + - uid: 8367 + components: + - type: Transform + pos: 49.748734,60.783405 + parent: 2 + - uid: 8368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.766666,60.3533 + parent: 2 +- proto: DrinkBlueCuracaoBottleFull + entities: + - uid: 8369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.56086,61.159748 + parent: 2 + - uid: 8370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.381527,60.926773 + parent: 2 + - uid: 8371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.66846,61.07014 + parent: 2 + - uid: 8372 + components: + - type: Transform + pos: 47.07666,61.267273 + parent: 2 +- proto: DrinkBottleCoffeeLiqueur + entities: + - uid: 8373 + components: + - type: Transform + pos: 48.923798,60.60419 + parent: 2 + - uid: 8374 + components: + - type: Transform + pos: 48.905865,60.12032 + parent: 2 +- proto: DrinkGoldenCup + entities: + - uid: 8375 + components: + - type: Transform + pos: 31.641338,54.32857 + parent: 2 +- proto: DrinkVermouthBottleFull + entities: + - uid: 8376 + components: + - type: Transform + pos: 31.767677,53.86565 + parent: 2 +- proto: DrinkWineBottleFull + entities: + - uid: 8377 + components: + - type: Transform + pos: 10.612774,60.678593 + parent: 2 + - uid: 18772 + components: + - type: Transform + pos: 9.289278,56.894657 + parent: 2 + - uid: 18773 + components: + - type: Transform + pos: 11.675882,56.894657 + parent: 2 +- proto: Dropper + entities: + - uid: 8378 + components: + - type: Transform + pos: 47.767334,31.689003 + parent: 2 +- proto: ElectricGuitarInstrument + entities: + - uid: 19499 + components: + - type: Transform + pos: -31.581257,67.58908 + parent: 2 +- proto: EmergencyRollerBedSpawnFolded + entities: + - uid: 8379 + components: + - type: Transform + pos: 7.3722377,37.43149 + parent: 2 + - uid: 8380 + components: + - type: Transform + pos: 7.6352606,37.682384 + parent: 2 + - uid: 8381 + components: + - type: Transform + pos: 7.3961487,37.65849 + parent: 2 +- proto: Emitter + entities: + - uid: 8382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,34.5 + parent: 2 + - uid: 8383 + components: + - type: Transform + pos: -19.5,36.5 + parent: 2 + - uid: 8384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,32.5 + parent: 2 +- proto: EncryptionKeyCargo + entities: + - uid: 8386 + components: + - type: Transform + parent: 8385 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommand + entities: + - uid: 8388 + components: + - type: Transform + parent: 8387 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommon + entities: + - uid: 8390 + components: + - type: Transform + parent: 8389 + - type: Physics + canCollide: False +- proto: EncryptionKeyEngineering + entities: + - uid: 8392 + components: + - type: Transform + parent: 8391 + - type: Physics + canCollide: False +- proto: EncryptionKeyMedical + entities: + - uid: 8394 + components: + - type: Transform + parent: 8393 + - type: Physics + canCollide: False +- proto: EncryptionKeyScience + entities: + - uid: 8396 + components: + - type: Transform + parent: 8395 + - type: Physics + canCollide: False +- proto: EncryptionKeySecurity + entities: + - uid: 8398 + components: + - type: Transform + parent: 8397 + - type: Physics + canCollide: False +- proto: EncryptionKeyService + entities: + - uid: 8400 + components: + - type: Transform + parent: 8399 + - type: Physics + canCollide: False +- proto: EpinephrineChemistryBottle + entities: + - uid: 8401 + components: + - type: Transform + pos: 15.344378,28.906837 + parent: 2 + - uid: 8402 + components: + - type: Transform + pos: 15.751467,28.850725 + parent: 2 + - uid: 8403 + components: + - type: Transform + pos: 27.41061,31.748636 + parent: 2 + - uid: 8404 + components: + - type: Transform + pos: 27.607136,31.538218 + parent: 2 + - uid: 8405 + components: + - type: Transform + pos: 14.622032,38.709717 + parent: 2 +- proto: ExosuitFabricator + entities: + - uid: 8406 + components: + - type: Transform + pos: 57.5,22.5 + parent: 2 + - uid: 8407 + components: + - type: Transform + pos: 58.5,22.5 + parent: 2 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 8408 + components: + - type: Transform + pos: 74.5,63.5 + parent: 2 + - uid: 8409 + components: + - type: Transform + pos: 72.5,57.5 + parent: 2 + - uid: 8410 + components: + - type: Transform + pos: 37.5,12.5 + parent: 2 + - uid: 8411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,11.5 + parent: 2 + - uid: 8412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,18.5 + parent: 2 + - uid: 8413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,36.5 + parent: 2 + - uid: 8414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,25.5 + parent: 2 + - uid: 8415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,13.5 + parent: 2 + - uid: 8416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,6.5 + parent: 2 + - uid: 8417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 2 + - uid: 8418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,9.5 + parent: 2 + - uid: 8419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,26.5 + parent: 2 + - uid: 8420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,32.5 + parent: 2 + - uid: 8421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,27.5 + parent: 2 + - uid: 8422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,25.5 + parent: 2 + - uid: 8423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,38.5 + parent: 2 + - uid: 8424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,41.5 + parent: 2 + - uid: 8425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,40.5 + parent: 2 + - uid: 8426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,50.5 + parent: 2 + - uid: 8427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,50.5 + parent: 2 + - uid: 8428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,50.5 + parent: 2 + - uid: 8429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,63.5 + parent: 2 + - uid: 8430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,72.5 + parent: 2 + - uid: 8431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,72.5 + parent: 2 + - uid: 8432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,59.5 + parent: 2 + - uid: 8433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,57.5 + parent: 2 + - uid: 8434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,56.5 + parent: 2 + - uid: 8435 + components: + - type: Transform + pos: 72.5,36.5 + parent: 2 + - uid: 8436 + components: + - type: Transform + pos: 79.5,29.5 + parent: 2 + - uid: 8437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,26.5 + parent: 2 + - uid: 18757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,14.5 + parent: 2 +- proto: FaxMachineBase + entities: + - uid: 1827 + components: + - type: Transform + pos: 76.5,28.5 + parent: 2 + - uid: 8438 + components: + - type: Transform + pos: -5.5,26.5 + parent: 2 + - uid: 8439 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 8440 + components: + - type: Transform + pos: -16.5,62.5 + parent: 2 + - uid: 8441 + components: + - type: Transform + pos: -17.5,53.5 + parent: 2 + - uid: 8442 + components: + - type: Transform + pos: -22.5,52.5 + parent: 2 + - uid: 8444 + components: + - type: Transform + pos: 51.5,14.5 + parent: 2 + - uid: 8445 + components: + - type: Transform + pos: 16.5,56.5 + parent: 2 + - uid: 8446 + components: + - type: Transform + pos: 16.5,39.5 + parent: 2 + - uid: 8447 + components: + - type: Transform + pos: 76.5,38.5 + parent: 2 + - uid: 8448 + components: + - type: Transform + pos: 82.5,35.5 + parent: 2 +- proto: filingCabinetDrawerRandom + entities: + - uid: 8450 + components: + - type: Transform + pos: 45.5,14.5 + parent: 2 + - uid: 8451 + components: + - type: Transform + pos: -1.5,58.5 + parent: 2 + - uid: 8452 + components: + - type: Transform + pos: 29.5,56.5 + parent: 2 + - uid: 8453 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - uid: 8454 + components: + - type: Transform + pos: 59.5,56.5 + parent: 2 + - uid: 8455 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 +- proto: filingCabinetRandom + entities: + - uid: 8456 + components: + - type: Transform + pos: -2.5,31.5 + parent: 2 +- proto: FireAlarm + entities: + - uid: 8457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,55.5 + parent: 2 + - type: DeviceList + devices: + - 8553 + - 8551 + - 8550 + - 8549 + - 8922 + - 8552 + - uid: 8458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,55.5 + parent: 2 + - type: DeviceList + devices: + - 8554 + - 8555 + - 8553 + - 8915 + - 8916 + - 8917 + - uid: 8459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,56.5 + parent: 2 + - type: DeviceList + devices: + - 8549 + - 8550 + - 8551 + - 8552 + - 8553 + - uid: 8460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,58.5 + parent: 2 + - type: DeviceList + devices: + - 8552 + - uid: 8461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 8585 + - 8584 + - 8561 + - 8560 + - uid: 8462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 8585 + - 8584 + - 8561 + - 8560 + - uid: 8463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,46.5 + parent: 2 + - type: DeviceList + devices: + - 8558 + - 8557 + - 8559 + - 8586 + - uid: 8464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 8567 + - 8568 + - 8569 + - 8573 + - 8574 + - 8575 + - 8566 + - 8565 + - 8564 + - 8572 + - 8571 + - 8570 + - 8874 + - 8607 + - 8606 + - 8605 + - 8619 + - 8618 + - 8617 + - 8627 + - 8628 + - 8629 + - 8822 + - 8838 + - 8839 + - uid: 8465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 8572 + - 8571 + - 8570 + - 8567 + - 8568 + - 8569 + - 8574 + - 8573 + - 8575 + - 8566 + - 8565 + - 8564 + - 8560 + - 8561 + - 8562 + - 8563 + - uid: 8466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 8607 + - 8606 + - 8605 + - 8619 + - 8618 + - 8617 + - 8611 + - 8612 + - 8925 + - 8609 + - 8608 + - 8610 + - 8623 + - 8622 + - 8616 + - uid: 8467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 8607 + - 8606 + - 8605 + - 8839 + - 8838 + - 8822 + - 8629 + - 8628 + - 8627 + - 8617 + - 8618 + - 8619 + - 8573 + - 8574 + - 8575 + - 8875 + - 8874 + - uid: 8468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 8839 + - 8838 + - 8822 + - 8846 + - 8840 + - 8841 + - 8842 + - 8875 + - uid: 8469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 8845 + - 8846 + - 8847 + - 8848 + - 8840 + - uid: 8470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 8845 + - 8846 + - 8847 + - 8848 + - 8840 + - 8862 + - 8849 + - 8850 + - 8859 + - 8852 + - 8843 + - uid: 8471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 8844 + - 8842 + - 8677 + - 8871 + - uid: 8472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 8849 + - 8853 + - 8867 + - 8863 + - uid: 8473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,5.5 + parent: 2 + - uid: 8474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 8855 + - 8853 + - 8854 + - 8857 + - 8864 + - uid: 8475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 8858 + - 8859 + - 8861 + - 8860 + - uid: 8476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 8630 + - 8631 + - 8632 + - 8656 + - 8654 + - 8655 + - uid: 8477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 8636 + - 8638 + - 8637 + - 8642 + - 8643 + - 8639 + - 8644 + - 8645 + - uid: 8478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,43.5 + parent: 2 + - type: DeviceList + devices: + - 8622 + - 8616 + - 8623 + - 8613 + - 8624 + - uid: 8479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,42.5 + parent: 2 + - uid: 8480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,47.5 + parent: 2 + - type: DeviceList + devices: + - 8610 + - 8608 + - 8609 + - 8614 + - 8625 + - uid: 8481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,40.5 + parent: 2 + - type: DeviceList + devices: + - 8925 + - 8641 + - 8640 + - uid: 8482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,36.5 + parent: 2 + - uid: 8483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,43.5 + parent: 2 + - uid: 8484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,50.5 + parent: 2 + - type: DeviceList + devices: + - 8676 + - 8927 + - 8657 + - 8658 + - 8659 + - 8667 + - 8666 + - 8556 + - 8665 + - 8664 + - 8663 + - 8661 + - 8662 + - 8660 + - uid: 8485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,50.5 + parent: 2 + - uid: 8486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,50.5 + parent: 2 + - uid: 8487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,45.5 + parent: 2 + - uid: 8488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,57.5 + parent: 2 + - uid: 8489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,69.5 + parent: 2 + - uid: 8490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,65.5 + parent: 2 + - uid: 8491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,61.5 + parent: 2 + - uid: 8492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,57.5 + parent: 2 + - type: DeviceList + devices: + - 8725 + - 8724 + - 8723 + - 8523 + - 8522 + - 8524 + - 8521 + - 8525 + - 8526 + - 8527 + - 8717 + - uid: 8493 + components: + - type: Transform + pos: 15.5,40.5 + parent: 2 + - type: DeviceList + devices: + - 8881 + - 8883 + - 8882 + - uid: 8494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,33.5 + parent: 2 + - type: DeviceList + devices: + - 8891 + - 8890 + - 8885 + - 8886 + - 8894 + - 8892 + - 8893 + - 8895 + - 8907 + - 8906 + - 8905 + - 8908 + - 8883 + - 465 + - 8931 + - 8930 + - uid: 8495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 8889 + - 8887 + - 8888 + - 8649 + - 8650 + - 8633 + - uid: 8496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,18.5 + parent: 2 + - type: DeviceList + devices: + - 8670 + - 8669 + - 8635 + - 8634 + - 8830 + - 8831 + - 8832 + - 8829 + - 8828 + - 8675 + - uid: 8497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 8833 + - 8836 + - 8837 + - 8829 + - 8828 + - 8835 + - uid: 8498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 8810 + - 8809 + - 8811 + - 8823 + - 8824 + - 8812 + - uid: 8499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 8810 + - 8809 + - 8807 + - 8815 + - 8816 + - 8826 + - 8825 + - 8821 + - 8808 + - uid: 8500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,28.5 + parent: 2 + - uid: 8501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 8826 + - 8825 + - 8817 + - 8819 + - 8820 + - 8827 + - 8802 + - 8932 + - 8933 + - uid: 8502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,33.5 + parent: 2 + - type: DeviceList + devices: + - 8774 + - 8773 + - 8769 + - uid: 8503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 8790 + - 8792 + - 8791 + - uid: 8504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 8790 + - 8787 + - 8789 + - 8786 + - 8788 + - uid: 8505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 8786 + - 8926 + - 8785 + - uid: 8506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,28.5 + parent: 2 + - type: DeviceList + devices: + - 8783 + - 8785 + - 8782 + - uid: 8507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,42.5 + parent: 2 + - type: DeviceList + devices: + - 8779 + - 8778 + - 8796 + - uid: 8508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,44.5 + parent: 2 + - type: DeviceList + devices: + - 8780 + - 8779 + - uid: 8509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,53.5 + parent: 2 + - type: DeviceList + devices: + - 8711 + - 8710 + - 8712 + - 8723 + - 8724 + - 8725 + - 8721 + - 8722 + - 8726 + - 8720 + - 8719 + - uid: 8510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,59.5 + parent: 2 + - type: DeviceList + devices: + - 8738 + - 8739 + - 8748 + - 8744 + - uid: 8511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,52.5 + parent: 2 + - type: DeviceList + devices: + - 8748 + - 8742 + - uid: 8512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,68.5 + parent: 2 + - type: DeviceList + devices: + - 8741 + - 8740 + - 11774 + - 11601 + - 8745 + - 8746 + - 11598 + - 11772 + - 392 + - 19592 + - 19591 + - 11773 + - 19382 + - 19383 + - 11599 + - 19593 + - 19594 + - 19595 + - 19596 + - 19597 + - 19598 + - 19599 + - 8539 + - 8541 + - uid: 8513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,64.5 + parent: 2 + - type: DeviceList + devices: + - 8732 + - 8734 + - 8735 + - 8733 + - 8736 + - 8737 + - uid: 8514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,66.5 + parent: 2 + - type: DeviceList + devices: + - 8727 + - 8729 + - uid: 8515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,60.5 + parent: 2 + - type: DeviceList + devices: + - 8700 + - 8699 + - 8701 + - 8702 + - uid: 8516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,57.5 + parent: 2 + - type: DeviceList + devices: + - 8705 + - 8706 + - 8707 + - 8703 + - 8704 + - uid: 8517 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 8939 + - 8936 + - 472 + - 11705 + - 11859 + - 8937 + - 8938 + - 473 + - 11704 + - 11858 + - 8940 + - 8941 + - 8854 + - 11674 + - 11826 + - uid: 8518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-10.5 + parent: 2 + - uid: 18620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 304 + - 18618 + - 18619 + - 8581 + - 8580 + - 8583 + - 8582 + - 8586 + - 8584 + - 8563 + - 8562 + - 8576 + - 8588 + - 8577 + - uid: 18627 + components: + - type: Transform + pos: 76.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 18628 + - 11678 + - 11842 + - 8579 + - 18625 + - 18624 + - 18623 + - 8588 + - 8578 + - 11838 + - 11687 + - 11688 + - 428 + - 11839 + - 8590 + - uid: 19586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,72.5 + parent: 2 + - type: DeviceList + devices: + - 19493 + - 19574 + - 19575 + - 19576 + - 19577 + - 19578 + - 19579 + - 19580 + - 19584 + - 19583 + - 19573 + - 19401 + - 19400 + - uid: 19587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,75.5 + parent: 2 + - type: DeviceList + devices: + - 19582 + - 19581 + - 19403 + - 19402 + - 19585 +- proto: FireAxeCabinetFilled + entities: + - uid: 8519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,21.5 + parent: 2 + - uid: 8520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,30.5 + parent: 2 +- proto: FirelockEdge + entities: + - uid: 304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - 18620 + - uid: 8521 + components: + - type: Transform + pos: -4.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - 8492 + - uid: 8522 + components: + - type: Transform + pos: -8.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - 8492 + - uid: 8523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - 8492 + - uid: 8524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - 8492 + - uid: 8525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - 8492 + - uid: 8526 + components: + - type: Transform + pos: -0.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - 8492 + - uid: 8527 + components: + - type: Transform + pos: -4.5,57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - 8492 + - uid: 8539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 28 + - 19588 + - 8512 + - uid: 8540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29 + - uid: 8541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,67.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 28 + - 19588 + - 8512 + - uid: 8542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29 + - uid: 8543 + components: + - type: Transform + pos: -18.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 41 + - uid: 8544 + components: + - type: Transform + pos: -14.5,5.5 + parent: 2 + - uid: 8545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 45 + - uid: 18618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - 18620 + - uid: 18619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - 18620 + - uid: 18623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18626 + - 18627 + - uid: 18624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18626 + - 18627 + - uid: 18625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18626 + - 18627 + - uid: 19493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19586 + - 19589 + - uid: 19557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,75.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19589 + - uid: 19558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,76.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19589 + - uid: 19559 + components: + - type: Transform + pos: -35.5,77.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19589 + - uid: 19560 + components: + - type: Transform + pos: -34.5,78.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19589 + - uid: 19561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,77.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19589 + - uid: 19562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,78.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19589 + - uid: 19563 + components: + - type: Transform + pos: -33.5,79.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19589 + - uid: 19564 + components: + - type: Transform + pos: -32.5,79.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19589 + - uid: 19565 + components: + - type: Transform + pos: -31.5,79.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19589 + - uid: 19566 + components: + - type: Transform + pos: -30.5,79.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19589 + - uid: 19567 + components: + - type: Transform + pos: -29.5,79.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19589 + - uid: 19568 + components: + - type: Transform + pos: -28.5,78.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19589 + - uid: 19569 + components: + - type: Transform + pos: -27.5,77.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19589 + - uid: 19570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,77.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19589 + - uid: 19571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,78.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19589 + - uid: 19574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19586 + - 19589 + - uid: 19575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19586 + - 19589 + - uid: 19576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19586 + - 19589 + - uid: 19577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19586 + - 19589 + - uid: 19578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19586 + - 19589 + - uid: 19579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19586 + - 19589 + - uid: 19580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19586 + - 19589 + - uid: 19581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,74.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19587 + - 19590 + - uid: 19582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,73.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19587 + - 19590 + - uid: 19583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,74.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19589 + - 19586 + - uid: 19584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,73.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19589 + - 19586 + - uid: 19593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19588 + - 8512 + - uid: 19594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19588 + - 8512 + - uid: 19595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19588 + - 8512 + - uid: 19596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19588 + - 8512 + - uid: 19597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19588 + - 8512 + - uid: 19598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19588 + - 8512 + - uid: 19599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19588 + - 8512 +- proto: FirelockGlass + entities: + - uid: 8546 + components: + - type: Transform + pos: 2.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 76 + - 37 + - 80 + - uid: 8547 + components: + - type: Transform + pos: -3.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 80 + - uid: 8548 + components: + - type: Transform + pos: -1.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 37 + - 80 + - uid: 8549 + components: + - type: Transform + pos: 66.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3 + - 8459 + - 8457 + - 4 + - uid: 8550 + components: + - type: Transform + pos: 65.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3 + - 8459 + - 8457 + - 4 + - uid: 8551 + components: + - type: Transform + pos: 64.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3 + - 8459 + - 8457 + - 4 + - uid: 8552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3 + - 8460 + - 8459 + - 8457 + - uid: 8553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3 + - 8459 + - 8458 + - 8457 + - uid: 8554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3 + - 8458 + - uid: 8555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3 + - 8458 + - uid: 8556 + components: + - type: Transform + pos: 27.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15 + - 8484 + - uid: 8557 + components: + - type: Transform + pos: 69.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6 + - 8463 + - uid: 8558 + components: + - type: Transform + pos: 72.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6 + - 8463 + - uid: 8559 + components: + - type: Transform + pos: 79.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6 + - 5 + - 8463 + - uid: 8560 + components: + - type: Transform + pos: 69.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8465 + - 8461 + - 8462 + - uid: 8561 + components: + - type: Transform + pos: 70.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8465 + - 8461 + - 8462 + - uid: 8562 + components: + - type: Transform + pos: 74.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8465 + - 5 + - 18620 + - uid: 8563 + components: + - type: Transform + pos: 78.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8465 + - 5 + - 18620 + - uid: 8564 + components: + - type: Transform + pos: 66.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - 8465 + - 8464 + - uid: 8565 + components: + - type: Transform + pos: 65.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - 8465 + - 8464 + - uid: 8566 + components: + - type: Transform + pos: 64.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - 8465 + - 8464 + - uid: 8567 + components: + - type: Transform + pos: 66.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - 8465 + - 8464 + - uid: 8568 + components: + - type: Transform + pos: 65.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - 8465 + - 8464 + - uid: 8569 + components: + - type: Transform + pos: 64.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - 8465 + - 8464 + - uid: 8570 + components: + - type: Transform + pos: 67.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - 8465 + - 8464 + - uid: 8571 + components: + - type: Transform + pos: 67.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - 8465 + - 8464 + - uid: 8572 + components: + - type: Transform + pos: 67.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - 8465 + - 8464 + - uid: 8573 + components: + - type: Transform + pos: 63.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - 10 + - 8465 + - 8464 + - 8467 + - uid: 8574 + components: + - type: Transform + pos: 63.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - 10 + - 8465 + - 8464 + - 8467 + - uid: 8575 + components: + - type: Transform + pos: 63.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - 10 + - 8465 + - 8464 + - 8467 + - uid: 8576 + components: + - type: Transform + pos: 81.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - 18620 + - uid: 8577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - 18620 + - uid: 8578 + components: + - type: Transform + pos: 77.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - 18626 + - 18627 + - uid: 8579 + components: + - type: Transform + pos: 67.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8 + - 18626 + - 18627 + - uid: 8580 + components: + - type: Transform + pos: 83.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - 18620 + - uid: 8581 + components: + - type: Transform + pos: 83.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - 18620 + - uid: 8582 + components: + - type: Transform + pos: 83.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - 18620 + - uid: 8583 + components: + - type: Transform + pos: 83.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - 18620 + - uid: 8584 + components: + - type: Transform + pos: 79.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - 8461 + - 8462 + - 18620 + - uid: 8585 + components: + - type: Transform + pos: 73.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - 8461 + - 8462 + - uid: 8586 + components: + - type: Transform + pos: 81.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - 8463 + - 18620 + - uid: 8588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7 + - 5 + - 18620 + - 18626 + - 18627 + - uid: 8589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - uid: 8590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7 + - 18626 + - 18627 + - uid: 8592 + components: + - type: Transform + pos: 64.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8 + - 9 + - uid: 8593 + components: + - type: Transform + pos: 65.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8 + - 9 + - uid: 8594 + components: + - type: Transform + pos: 66.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8 + - 9 + - uid: 8595 + components: + - type: Transform + pos: 71.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8 + - uid: 8596 + components: + - type: Transform + pos: 73.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8 + - uid: 8597 + components: + - type: Transform + pos: 66.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8 + - 4 + - uid: 8598 + components: + - type: Transform + pos: 65.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8 + - 4 + - uid: 8599 + components: + - type: Transform + pos: 64.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8 + - 4 + - uid: 8600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9 + - uid: 8601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9 + - uid: 8602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9 + - uid: 8603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9 + - uid: 8604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9 + - uid: 8605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - 8464 + - 8466 + - 8467 + - uid: 8606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - 8464 + - 8466 + - 8467 + - uid: 8607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - 8464 + - 8466 + - 8467 + - uid: 8608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - 8466 + - 8480 + - uid: 8609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - 8466 + - 8480 + - uid: 8610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - 8466 + - 8480 + - uid: 8611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - 8466 + - uid: 8612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - 8466 + - uid: 8613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11 + - 8478 + - uid: 8614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8480 + - uid: 8615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,39.5 + parent: 2 + - uid: 8616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8466 + - 8478 + - uid: 8617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - 8464 + - 8466 + - 8467 + - uid: 8618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - 8464 + - 8466 + - 8467 + - uid: 8619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - 8464 + - 8466 + - 8467 + - uid: 8620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,36.5 + parent: 2 + - uid: 8621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11 + - uid: 8622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11 + - 8466 + - 8478 + - uid: 8623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - 11 + - 8466 + - 8478 + - uid: 8624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11 + - 8478 + - uid: 8625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 + - 8480 + - uid: 8626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 + - uid: 8627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - 8464 + - 8467 + - uid: 8628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - 8464 + - 8467 + - uid: 8629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - 8464 + - 8467 + - uid: 8630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8476 + - uid: 8631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8476 + - uid: 8632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8476 + - uid: 8633 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - 77 + - 8495 + - uid: 8634 + components: + - type: Transform + pos: 33.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - 55 + - 8496 + - uid: 8635 + components: + - type: Transform + pos: 32.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - 55 + - 8496 + - uid: 8636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12 + - 8477 + - uid: 8637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12 + - 8477 + - uid: 8638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12 + - 8477 + - uid: 8639 + components: + - type: Transform + pos: 34.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12 + - 8477 + - uid: 8640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - 8481 + - uid: 8641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - 8481 + - uid: 8642 + components: + - type: Transform + pos: 41.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12 + - 8477 + - uid: 8643 + components: + - type: Transform + pos: 37.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12 + - 8477 + - uid: 8644 + components: + - type: Transform + pos: 34.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12 + - 8477 + - uid: 8645 + components: + - type: Transform + pos: 34.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12 + - 8477 + - uid: 8646 + components: + - type: Transform + pos: 33.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - uid: 8647 + components: + - type: Transform + pos: 32.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - uid: 8648 + components: + - type: Transform + pos: 31.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - uid: 8649 + components: + - type: Transform + pos: 30.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - 77 + - 8495 + - uid: 8650 + components: + - type: Transform + pos: 30.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - 77 + - 8495 + - uid: 8651 + components: + - type: Transform + pos: 33.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - uid: 8652 + components: + - type: Transform + pos: 32.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - uid: 8653 + components: + - type: Transform + pos: 31.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - uid: 8654 + components: + - type: Transform + pos: 34.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - 8476 + - uid: 8655 + components: + - type: Transform + pos: 34.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - 8476 + - uid: 8656 + components: + - type: Transform + pos: 34.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - 8476 + - uid: 8657 + components: + - type: Transform + pos: 33.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15 + - 8484 + - uid: 8658 + components: + - type: Transform + pos: 32.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15 + - 8484 + - uid: 8659 + components: + - type: Transform + pos: 31.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15 + - 8484 + - uid: 8660 + components: + - type: Transform + pos: 30.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8484 + - 14 + - uid: 8661 + components: + - type: Transform + pos: 30.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15 + - 8484 + - uid: 8662 + components: + - type: Transform + pos: 30.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15 + - 8484 + - uid: 8663 + components: + - type: Transform + pos: 37.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15 + - 8484 + - uid: 8664 + components: + - type: Transform + pos: 37.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15 + - 8484 + - uid: 8665 + components: + - type: Transform + pos: 37.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15 + - 8484 + - uid: 8666 + components: + - type: Transform + pos: 27.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15 + - 8484 + - uid: 8667 + components: + - type: Transform + pos: 27.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15 + - 8484 + - uid: 8668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 78 + - uid: 8669 + components: + - type: Transform + pos: 31.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - 55 + - 8496 + - uid: 8670 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - 55 + - 8496 + - uid: 8671 + components: + - type: Transform + pos: 18.5,49.5 + parent: 2 + - uid: 8672 + components: + - type: Transform + pos: 18.5,48.5 + parent: 2 + - uid: 8673 + components: + - type: Transform + pos: 18.5,47.5 + parent: 2 + - uid: 8674 + components: + - type: Transform + pos: 42.5,55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 78 + - uid: 8675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 55 + - 8496 + - uid: 8676 + components: + - type: Transform + pos: 35.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8484 + - 15 + - uid: 8677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 60 + - 8471 + - uid: 8678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - uid: 8679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - uid: 8680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - uid: 8681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - uid: 8682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - uid: 8683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,54.5 + parent: 2 + - uid: 8684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - uid: 8685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,49.5 + parent: 2 + - uid: 8686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - 17 + - uid: 8687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - 17 + - uid: 8688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,47.5 + parent: 2 + - uid: 8689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - 17 + - uid: 8690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - 18 + - uid: 8691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - 18 + - uid: 8692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - 18 + - uid: 8693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16 + - uid: 8694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16 + - uid: 8695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16 + - uid: 8696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16 + - uid: 8697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16 + - 23 + - uid: 8698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16 + - 23 + - uid: 8699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16 + - 8515 + - uid: 8700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16 + - 8515 + - uid: 8701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16 + - 8515 + - uid: 8702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16 + - 8515 + - uid: 8703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23 + - 8516 + - uid: 8704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23 + - 8516 + - uid: 8705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23 + - 8516 + - uid: 8706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23 + - 8516 + - uid: 8707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23 + - 8516 + - uid: 8708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17 + - uid: 8709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17 + - uid: 8710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17 + - 25 + - 8509 + - uid: 8711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17 + - 25 + - 8509 + - uid: 8712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17 + - 25 + - 8509 + - uid: 8713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17 + - uid: 8714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17 + - uid: 8715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17 + - uid: 8716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17 + - uid: 8717 + components: + - type: Transform + pos: -0.5,57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - 34 + - 8492 + - uid: 8718 + components: + - type: Transform + pos: 3.5,58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 34 + - uid: 8719 + components: + - type: Transform + pos: -11.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25 + - 8509 + - uid: 8720 + components: + - type: Transform + pos: -12.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25 + - 8509 + - uid: 8721 + components: + - type: Transform + pos: -20.5,58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25 + - 30 + - 8509 + - uid: 8722 + components: + - type: Transform + pos: -20.5,57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25 + - 30 + - 8509 + - uid: 8723 + components: + - type: Transform + pos: -10.5,56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - 25 + - 8509 + - 8492 + - uid: 8724 + components: + - type: Transform + pos: -10.5,55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - 25 + - 8509 + - 8492 + - uid: 8725 + components: + - type: Transform + pos: -10.5,54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - 25 + - 8509 + - 8492 + - uid: 8726 + components: + - type: Transform + pos: -18.5,56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25 + - 33 + - 8509 + - uid: 8727 + components: + - type: Transform + pos: -11.5,65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8514 + - uid: 8728 + components: + - type: Transform + pos: -8.5,67.5 + parent: 2 + - uid: 8729 + components: + - type: Transform + pos: -6.5,65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - 8514 + - uid: 8730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 26 + - uid: 8731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 26 + - uid: 8732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 26 + - 27 + - 8513 + - uid: 8733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8513 + - uid: 8734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8513 + - uid: 8735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8513 + - uid: 8736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 27 + - 25 + - 8513 + - uid: 8737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 27 + - 8513 + - uid: 8738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 30 + - 29 + - 8510 + - uid: 8739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 30 + - 29 + - 8510 + - uid: 8740 + components: + - type: Transform + pos: -23.5,59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 30 + - 8512 + - uid: 8741 + components: + - type: Transform + pos: -23.5,65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 30 + - 8512 + - uid: 8742 + components: + - type: Transform + pos: -23.5,56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 30 + - 32 + - 8511 + - uid: 8743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 28 + - 29 + - uid: 8744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 28 + - 29 + - 8510 + - uid: 8745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 28 + - 19588 + - 8512 + - uid: 8746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 28 + - 19588 + - 8512 + - uid: 8747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 28 + - uid: 8748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29 + - 8510 + - 8511 + - uid: 8749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 8750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 8751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 8752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 8753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 8754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 8755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 8756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 8757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 8758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 8759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - 36 + - uid: 8760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - 36 + - uid: 8761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - 36 + - uid: 8762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,67.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 8763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,67.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 8764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,68.5 + parent: 2 + - uid: 8765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,66.5 + parent: 2 + - uid: 8766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,65.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 8767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,74.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 36 + - uid: 8768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18 + - 82 + - uid: 8769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18 + - 37 + - 8502 + - uid: 8770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18 + - 50 + - uid: 8771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18 + - 50 + - uid: 8772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18 + - 50 + - uid: 8773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 37 + - 8502 + - uid: 8774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 37 + - 38 + - 8502 + - uid: 8775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 38 + - uid: 8776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 38 + - 43 + - uid: 8777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 38 + - uid: 8778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 38 + - 8507 + - uid: 8779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 49 + - 8507 + - 8508 + - uid: 8780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 38 + - 49 + - 8508 + - uid: 8781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,24.5 + parent: 2 + - uid: 8782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 45 + - 8506 + - uid: 8783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 47 + - 8506 + - uid: 8784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 47 + - uid: 8785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 44 + - 45 + - 8505 + - 8506 + - uid: 8786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 44 + - 8504 + - 8505 + - uid: 8787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 41 + - 44 + - 8504 + - uid: 8788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 44 + - 8504 + - uid: 8789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 44 + - 8504 + - uid: 8790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 39 + - 41 + - 8503 + - 8504 + - uid: 8791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 39 + - 8503 + - uid: 8792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 38 + - 39 + - 8503 + - uid: 8793 + components: + - type: Transform + pos: 12.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 8794 + components: + - type: Transform + pos: 14.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 8795 + components: + - type: Transform + pos: 16.5,70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 8796 + components: + - type: Transform + pos: -18.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 48 + - 8507 + - uid: 8797 + components: + - type: Transform + pos: 4.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 50 + - uid: 8798 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 50 + - uid: 8799 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 50 + - uid: 8800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 50 + - uid: 8801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 50 + - uid: 8802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 50 + - 51 + - 8501 + - uid: 8803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20 + - uid: 8804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20 + - uid: 8805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20 + - uid: 8806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20 + - uid: 8807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20 + - 53 + - 8499 + - uid: 8808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 53 + - 54 + - 8499 + - uid: 8809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - 53 + - 8498 + - 8499 + - uid: 8810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - 53 + - 8498 + - 8499 + - uid: 8811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - 8498 + - uid: 8812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - 8498 + - uid: 8813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - uid: 8814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - uid: 8815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 53 + - 8499 + - 52 + - uid: 8816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 53 + - 8499 + - 52 + - uid: 8817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 + - 8501 + - uid: 8818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 + - uid: 8819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8501 + - uid: 8820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8501 + - uid: 8821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 80 + - 8499 + - uid: 8822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 57 + - 8464 + - 8467 + - 8468 + - uid: 8823 + components: + - type: Transform + pos: 7.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20 + - 21 + - 8498 + - uid: 8824 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20 + - 21 + - 8498 + - uid: 8825 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 53 + - 8499 + - 8501 + - uid: 8826 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 53 + - 8499 + - 8501 + - uid: 8827 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 + - 8501 + - uid: 8828 + components: + - type: Transform + pos: 25.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 55 + - 56 + - 8496 + - 8497 + - uid: 8829 + components: + - type: Transform + pos: 23.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 55 + - 56 + - 8496 + - 8497 + - uid: 8830 + components: + - type: Transform + pos: 20.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 55 + - 8496 + - uid: 8831 + components: + - type: Transform + pos: 20.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 55 + - 8496 + - uid: 8832 + components: + - type: Transform + pos: 20.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 55 + - 8496 + - uid: 8833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 56 + - 8497 + - uid: 8834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 56 + - uid: 8835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 56 + - 8497 + - uid: 8836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 56 + - 8497 + - uid: 8837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 56 + - 8497 + - uid: 8838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 57 + - 8464 + - 8467 + - 8468 + - uid: 8839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 57 + - 8464 + - 8467 + - 8468 + - uid: 8840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 57 + - 58 + - 8468 + - 8469 + - 8470 + - uid: 8841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 57 + - 8468 + - uid: 8842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 60 + - 57 + - 8468 + - 8471 + - uid: 8843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 61 + - 8470 + - uid: 8844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 60 + - 8471 + - uid: 8845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 58 + - 8469 + - 8470 + - uid: 8846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 57 + - 8468 + - 8469 + - 8470 + - uid: 8847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 61 + - 58 + - 8469 + - 8470 + - uid: 8848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 61 + - 58 + - 8469 + - 8470 + - uid: 8849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 65 + - 61 + - 8470 + - 8472 + - uid: 8850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8470 + - uid: 8851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 61 + - uid: 8852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 61 + - 63 + - 8470 + - uid: 8853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 65 + - 66 + - 8472 + - 8474 + - uid: 8854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 66 + - 8474 + - 83 + - 8517 + - uid: 8855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 66 + - 8474 + - uid: 8856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 66 + - uid: 8857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 66 + - 64 + - 8474 + - uid: 8858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - 8475 + - uid: 8859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 61 + - 62 + - 8470 + - 8475 + - uid: 8860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - 8475 + - uid: 8861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - 8475 + - uid: 8862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 61 + - 8470 + - uid: 8863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 65 + - 8472 + - uid: 8864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 64 + - 8474 + - uid: 8865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 66 + - uid: 8866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 66 + - uid: 8867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 65 + - 8472 + - uid: 8868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 61 + - uid: 8869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 61 + - uid: 8870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 61 + - uid: 8871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 60 + - 8471 + - uid: 8872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8 + - uid: 8873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,27.5 + parent: 2 + - uid: 8874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8464 + - 8467 + - uid: 8875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 57 + - 8467 + - 8468 + - uid: 8876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 68 + - uid: 8877 + components: + - type: Transform + pos: 11.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 70 + - uid: 8878 + components: + - type: Transform + pos: 12.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 70 + - uid: 8879 + components: + - type: Transform + pos: 13.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 70 + - uid: 8880 + components: + - type: Transform + pos: 14.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 70 + - uid: 8881 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 70 + - 69 + - 8493 + - uid: 8882 + components: + - type: Transform + pos: 15.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 70 + - 69 + - 8493 + - uid: 8883 + components: + - type: Transform + pos: 13.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 69 + - 8493 + - 8494 + - uid: 8884 + components: + - type: Transform + pos: 18.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 71 + - uid: 8885 + components: + - type: Transform + pos: 20.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 + - 8494 + - uid: 8886 + components: + - type: Transform + pos: 20.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 + - 77 + - 8494 + - uid: 8887 + components: + - type: Transform + pos: 24.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 77 + - 8495 + - uid: 8888 + components: + - type: Transform + pos: 24.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 77 + - 8495 + - uid: 8889 + components: + - type: Transform + pos: 24.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 77 + - 8495 + - uid: 8890 + components: + - type: Transform + pos: 16.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 + - 8494 + - uid: 8891 + components: + - type: Transform + pos: 16.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 + - 8494 + - uid: 8892 + components: + - type: Transform + pos: 13.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 + - 8494 + - uid: 8893 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 76 + - 8494 + - uid: 8894 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 + - 8494 + - uid: 8895 + components: + - type: Transform + pos: 12.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 76 + - 8494 + - uid: 8896 + components: + - type: Transform + pos: 16.5,23.5 + parent: 2 + - uid: 8897 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - uid: 8898 + components: + - type: Transform + pos: 19.5,25.5 + parent: 2 + - uid: 8899 + components: + - type: Transform + pos: 15.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 76 + - uid: 8900 + components: + - type: Transform + pos: 26.5,22.5 + parent: 2 + - uid: 8901 + components: + - type: Transform + pos: 24.5,25.5 + parent: 2 + - uid: 8902 + components: + - type: Transform + pos: 23.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 77 + - uid: 8903 + components: + - type: Transform + pos: 25.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 72 + - uid: 8904 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 76 + - uid: 8905 + components: + - type: Transform + pos: 18.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8494 + - uid: 8906 + components: + - type: Transform + pos: 17.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8494 + - uid: 8907 + components: + - type: Transform + pos: 16.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8494 + - uid: 8908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 68 + - 8494 + - uid: 8909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 68 + - uid: 8910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 68 + - uid: 8911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 72 + - uid: 8912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 78 + - uid: 8913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 78 + - uid: 8914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 78 + - uid: 8915 + components: + - type: Transform + pos: 56.5,55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 78 + - 3 + - 8458 + - uid: 8916 + components: + - type: Transform + pos: 54.5,57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 78 + - 3 + - 8458 + - uid: 8917 + components: + - type: Transform + pos: 54.5,58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 78 + - 3 + - 8458 + - uid: 8918 + components: + - type: Transform + pos: 77.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3 + - uid: 8919 + components: + - type: Transform + pos: 75.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3 + - uid: 8920 + components: + - type: Transform + pos: 72.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3 + - uid: 8921 + components: + - type: Transform + pos: 76.5,47.5 + parent: 2 + - uid: 8922 + components: + - type: Transform + pos: 72.5,54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3 + - 8457 + - uid: 8923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - uid: 8924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - uid: 8925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8466 + - 10 + - 8481 + - uid: 8926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8505 + - uid: 8927 + components: + - type: Transform + pos: 35.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8484 + - 15 + - uid: 8928 + components: + - type: Transform + pos: -1.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 37 + - 80 + - uid: 8929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 80 + - uid: 8930 + components: + - type: Transform + pos: 6.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8494 + - 67 + - uid: 8931 + components: + - type: Transform + pos: 6.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8494 + - 67 + - uid: 8932 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 + - 8501 + - uid: 8933 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 + - 8501 + - uid: 8934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 + - uid: 8935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 46 + - uid: 8936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 8517 + - uid: 8937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 8517 + - uid: 8938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 8517 + - uid: 8939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 8517 + - uid: 8940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 8517 + - uid: 8941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 8517 +- proto: FitnessPunchingBagWizard + entities: + - uid: 19496 + components: + - type: Transform + pos: -27.5,66.5 + parent: 2 +- proto: Flash + entities: + - uid: 8942 + components: + - type: Transform + pos: -4.600379,15.522152 + parent: 2 + - uid: 8943 + components: + - type: Transform + pos: -5.0364122,45.794884 + parent: 2 + - uid: 8944 + components: + - type: Transform + pos: -4.8539248,45.68266 + parent: 2 + - uid: 8945 + components: + - type: Transform + pos: -4.427536,29.557364 + parent: 2 + - uid: 8946 + components: + - type: Transform + pos: -25.531055,61.412098 + parent: 2 + - uid: 8947 + components: + - type: Transform + pos: 46.781506,14.452742 + parent: 2 + - uid: 8948 + components: + - type: Transform + pos: 70.56277,13.657604 + parent: 2 + - uid: 8949 + components: + - type: Transform + pos: 3.3651924,27.537037 + parent: 2 +- proto: FlashlightLantern + entities: + - uid: 8950 + components: + - type: Transform + pos: -11.528659,34.74632 + parent: 2 + - uid: 8951 + components: + - type: Transform + pos: -11.374247,34.634094 + parent: 2 + - uid: 8952 + components: + - type: Transform + pos: -11.500584,34.563953 + parent: 2 + - uid: 8953 + components: + - type: Transform + pos: -11.654996,34.64812 + parent: 2 + - uid: 8954 + components: + - type: Transform + pos: -4.7837367,45.41613 + parent: 2 + - uid: 8955 + components: + - type: Transform + pos: -4.559137,45.62655 + parent: 2 + - uid: 8956 + components: + - type: Transform + pos: 78.50072,42.681328 + parent: 2 +- proto: FlashlightSeclite + entities: + - uid: 8957 + components: + - type: Transform + pos: 70.56277,13.567997 + parent: 2 +- proto: FloorDrain + entities: + - uid: 8958 + components: + - type: Transform + pos: 59.5,16.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 8959 + components: + - type: Transform + pos: 51.5,30.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 8960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,54.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 8961 + components: + - type: Transform + pos: 54.5,49.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 8962 + components: + - type: Transform + pos: 12.5,26.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 14759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,24.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 19371 + components: + - type: Transform + pos: 20.5,23.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloorTileItemCarpetClown + entities: + - uid: 762 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 763 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 764 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 765 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 766 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FloorTileItemMime + entities: + - uid: 790 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 791 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 792 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 793 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 794 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FloorWaterEntity + entities: + - uid: 8963 + components: + - type: Transform + pos: 2.5,72.5 + parent: 2 + - uid: 8964 + components: + - type: Transform + pos: 0.5,74.5 + parent: 2 + - uid: 8965 + components: + - type: Transform + pos: -0.5,72.5 + parent: 2 + - uid: 8966 + components: + - type: Transform + pos: 2.5,73.5 + parent: 2 + - uid: 8967 + components: + - type: Transform + pos: -0.5,73.5 + parent: 2 + - uid: 8968 + components: + - type: Transform + pos: 0.5,72.5 + parent: 2 + - uid: 8969 + components: + - type: Transform + pos: 0.5,73.5 + parent: 2 + - uid: 8970 + components: + - type: Transform + pos: 1.5,72.5 + parent: 2 + - uid: 8971 + components: + - type: Transform + pos: 1.5,73.5 + parent: 2 + - uid: 8972 + components: + - type: Transform + pos: 1.5,74.5 + parent: 2 + - uid: 8973 + components: + - type: Transform + pos: 1.5,71.5 + parent: 2 + - uid: 8974 + components: + - type: Transform + pos: 0.5,71.5 + parent: 2 + - uid: 8975 + components: + - type: Transform + pos: 29.5,38.5 + parent: 2 +- proto: FloraTree02 + entities: + - uid: 19601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,72.5 + parent: 2 +- proto: FloraTreeLarge02 + entities: + - uid: 8976 + components: + - type: Transform + pos: 5.502884,76.42747 + parent: 2 + - uid: 19600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,71.5 + parent: 2 +- proto: FolderSpawner + entities: + - uid: 8977 + components: + - type: Transform + pos: 53.713814,14.749241 + parent: 2 + - uid: 8978 + components: + - type: Transform + pos: 17.649437,59.56088 + parent: 2 + - uid: 8979 + components: + - type: Transform + pos: 17.452913,59.673103 + parent: 2 + - uid: 8980 + components: + - type: Transform + pos: 22.40718,23.68603 + parent: 2 + - uid: 8981 + components: + - type: Transform + pos: 22.379105,23.61589 + parent: 2 + - uid: 8982 + components: + - type: Transform + pos: 76.674515,37.92216 + parent: 2 + - uid: 8983 + components: + - type: Transform + pos: 76.43588,37.86605 + parent: 2 + - uid: 8984 + components: + - type: Transform + pos: 83.359695,24.396538 + parent: 2 +- proto: FoodAmbrosiaVulgaris + entities: + - uid: 8986 + components: + - type: Transform + pos: 46.18796,45.641068 + parent: 2 + - uid: 8987 + components: + - type: Transform + pos: 46.3143,45.493774 + parent: 2 + - uid: 8988 + components: + - type: Transform + pos: 46.20902,45.53586 + parent: 2 +- proto: FoodBanana + entities: + - uid: 8989 + components: + - type: Transform + pos: 40.776543,43.40036 + parent: 2 + - uid: 8990 + components: + - type: Transform + pos: 40.776543,43.40036 + parent: 2 + - uid: 8991 + components: + - type: Transform + pos: 40.776543,43.40036 + parent: 2 + - uid: 8992 + components: + - type: Transform + pos: 27.737072,24.792421 + parent: 2 + - uid: 8993 + components: + - type: Transform + pos: 28.558273,39.352062 + parent: 2 +- proto: FoodBreadPlain + entities: + - uid: 18771 + components: + - type: Transform + pos: 10.475987,56.739117 + parent: 2 +- proto: FoodBurgerBaseball + entities: + - uid: 8994 + components: + - type: Transform + pos: 23.550648,12.255281 + parent: 2 +- proto: FoodBurgerClown + entities: + - uid: 8995 + components: + - type: Transform + pos: 40.25592,43.60828 + parent: 2 +- proto: FoodBurgerMcrib + entities: + - uid: 19500 + components: + - type: Transform + pos: -30.47999,68.71875 + parent: 2 + - uid: 19501 + components: + - type: Transform + pos: -30.385054,68.58584 + parent: 2 +- proto: FoodBurgerMime + entities: + - uid: 8996 + components: + - type: Transform + pos: 40.201824,45.807728 + parent: 2 +- proto: FoodCondimentPacketBbq + entities: + - uid: 19502 + components: + - type: Transform + pos: -30.743881,68.58292 + parent: 2 +- proto: FoodFrozenSnowconeTrash + entities: + - uid: 8997 + components: + - type: Transform + pos: 27.535769,29.632755 + parent: 2 +- proto: FoodPieBananaCream + entities: + - uid: 8998 + components: + - type: Transform + pos: 40.686874,43.88423 + parent: 2 + - uid: 8999 + components: + - type: Transform + pos: 40.686874,43.88423 + parent: 2 + - uid: 9000 + components: + - type: Transform + pos: 40.686874,43.88423 + parent: 2 +- proto: FoodPoppy + entities: + - uid: 4411 + components: + - type: Transform + pos: 80.37502,50.538662 + parent: 2 +- proto: FoodSnackCnDs + entities: + - uid: 19503 + components: + - type: Transform + pos: -30.629957,67.80443 + parent: 2 +- proto: FoodTartMime + entities: + - uid: 795 + components: + - type: Transform + parent: 772 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 9001 + components: + - type: Transform + pos: 40.44046,45.443 + parent: 2 +- proto: FoodTartMimeSlice + entities: + - uid: 9002 + components: + - type: Transform + pos: 40.538723,45.569252 + parent: 2 +- proto: FoodTinPeachesMaint + entities: + - uid: 9003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.868546,49.227726 + parent: 2 + - uid: 9004 + components: + - type: Transform + pos: 68.33054,49.460705 + parent: 2 +- proto: GasAnalyzer + entities: + - uid: 9005 + components: + - type: Transform + pos: 36.983482,7.5447493 + parent: 2 +- proto: GasCanisterBrokenBase + entities: + - uid: 9006 + components: + - type: Transform + pos: 73.5,47.5 + parent: 2 +- proto: GasFilter + entities: + - uid: 9010 + components: + - type: Transform + pos: -25.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9011 + components: + - type: Transform + pos: -25.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9241 + components: + - type: Transform + pos: -25.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 10167 + components: + - type: Transform + pos: -25.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' +- proto: GasFilterFlipped + entities: + - uid: 9007 + components: + - type: Transform + pos: -14.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9012 + components: + - type: Transform + pos: 9.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9015 + components: + - type: Transform + pos: -34.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9016 + components: + - type: Transform + pos: -34.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9017 + components: + - type: Transform + pos: -34.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9018 + components: + - type: Transform + pos: -34.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasMinerAmmonia + entities: + - uid: 9020 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 +- proto: GasMinerCarbonDioxide + entities: + - uid: 9021 + components: + - type: Transform + pos: -39.5,8.5 + parent: 2 +- proto: GasMinerNitrogenStation + entities: + - uid: 9022 + components: + - type: Transform + pos: -39.5,12.5 + parent: 2 +- proto: GasMinerOxygenStation + entities: + - uid: 9023 + components: + - type: Transform + pos: -39.5,16.5 + parent: 2 +- proto: GasMixerFlipped + entities: + - uid: 9024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,19.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.78 + inletOneConcentration: 0.22 + - type: AtmosPipeColor + color: '#EAC300FF' +- proto: GasOutletInjector + entities: + - uid: 9025 + components: + - type: Transform + pos: -28.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9033 + components: + - type: Transform + pos: -28.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,25.5 + parent: 2 + - uid: 9036 + components: + - type: Transform + pos: -33.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9037 + components: + - type: Transform + pos: -33.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-7.5 + parent: 2 +- proto: GasPassiveVent + entities: + - uid: 9038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9040 + components: + - type: Transform + pos: -20.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9041 + components: + - type: Transform + pos: -18.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9042 + components: + - type: Transform + pos: -19.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,11.5 + parent: 2 + - uid: 9048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,9.5 + parent: 2 + - uid: 9049 + components: + - type: Transform + pos: -26.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' +- proto: GasPipeBend + entities: + - uid: 9008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9052 + components: + - type: Transform + pos: -14.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 9053 + components: + - type: Transform + pos: -23.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 9057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 9058 + components: + - type: Transform + pos: -17.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 9060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 9063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9065 + components: + - type: Transform + pos: -15.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9070 + components: + - type: Transform + pos: -8.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9078 + components: + - type: Transform + pos: -5.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9083 + components: + - type: Transform + pos: 7.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9087 + components: + - type: Transform + pos: 23.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9089 + components: + - type: Transform + pos: 42.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9092 + components: + - type: Transform + pos: 56.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9100 + components: + - type: Transform + pos: 72.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9109 + components: + - type: Transform + pos: -3.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9112 + components: + - type: Transform + pos: 0.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9118 + components: + - type: Transform + pos: 27.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9124 + components: + - type: Transform + pos: 24.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9129 + components: + - type: Transform + pos: 50.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9134 + components: + - type: Transform + pos: 76.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9136 + components: + - type: Transform + pos: 82.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9138 + components: + - type: Transform + pos: 71.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9139 + components: + - type: Transform + pos: 74.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9146 + components: + - type: Transform + pos: 13.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,34.5 + parent: 2 + - uid: 9151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9152 + components: + - type: Transform + pos: -10.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,6.5 + parent: 2 + - uid: 9163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9165 + components: + - type: Transform + pos: -31.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9166 + components: + - type: Transform + pos: -31.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9167 + components: + - type: Transform + pos: -27.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,11.5 + parent: 2 + - uid: 9169 + components: + - type: Transform + pos: -28.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9170 + components: + - type: Transform + pos: -27.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 9171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 9172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 9173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 9174 + components: + - type: Transform + pos: -24.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9176 + components: + - type: Transform + pos: -30.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9177 + components: + - type: Transform + pos: 37.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9320 + components: + - type: Transform + pos: -2.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9905 + components: + - type: Transform + pos: 52.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9907 + components: + - type: Transform + pos: 49.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,6.5 + parent: 2 + - uid: 10789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,7.5 + parent: 2 + - uid: 11159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,26.5 + parent: 2 + - uid: 11163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,26.5 + parent: 2 + - uid: 11286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19292 + components: + - type: Transform + pos: 54.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19298 + components: + - type: Transform + pos: 50.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeFourway + entities: + - uid: 9183 + components: + - type: Transform + pos: -15.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9184 + components: + - type: Transform + pos: 7.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9185 + components: + - type: Transform + pos: -3.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9186 + components: + - type: Transform + pos: -12.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9187 + components: + - type: Transform + pos: -12.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9188 + components: + - type: Transform + pos: -22.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9189 + components: + - type: Transform + pos: -31.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9190 + components: + - type: Transform + pos: 4.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9191 + components: + - type: Transform + pos: 4.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9192 + components: + - type: Transform + pos: 12.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9193 + components: + - type: Transform + pos: 56.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9194 + components: + - type: Transform + pos: 56.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9195 + components: + - type: Transform + pos: 56.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9196 + components: + - type: Transform + pos: 48.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9197 + components: + - type: Transform + pos: 64.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9198 + components: + - type: Transform + pos: -13.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9199 + components: + - type: Transform + pos: -13.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9200 + components: + - type: Transform + pos: -24.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9201 + components: + - type: Transform + pos: 6.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9202 + components: + - type: Transform + pos: 11.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9203 + components: + - type: Transform + pos: 23.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9204 + components: + - type: Transform + pos: 33.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9205 + components: + - type: Transform + pos: 31.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9206 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9207 + components: + - type: Transform + pos: 54.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9208 + components: + - type: Transform + pos: 66.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11160 + components: + - type: Transform + pos: -18.5,26.5 + parent: 2 + - uid: 11162 + components: + - type: Transform + pos: -19.5,26.5 + parent: 2 + - uid: 19319 + components: + - type: Transform + pos: 53.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19320 + components: + - type: Transform + pos: 53.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19325 + components: + - type: Transform + pos: 49.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19326 + components: + - type: Transform + pos: 49.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasPipeStraight + entities: + - uid: 714 + components: + - type: Transform + pos: -33.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 715 + components: + - type: Transform + pos: -31.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9054 + components: + - type: Transform + pos: -25.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9210 + components: + - type: Transform + pos: -26.5,17.5 + parent: 2 + - uid: 9211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9221 + components: + - type: Transform + pos: 66.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 9231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 9232 + components: + - type: Transform + pos: -14.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 9233 + components: + - type: Transform + pos: -14.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 9234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9238 + components: + - type: Transform + pos: -13.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9240 + components: + - type: Transform + pos: -25.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 9242 + components: + - type: Transform + pos: -13.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9244 + components: + - type: Transform + pos: -28.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9249 + components: + - type: Transform + pos: -25.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 9250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9251 + components: + - type: Transform + pos: -17.5,27.5 + parent: 2 + - uid: 9252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 9256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,27.5 + parent: 2 + - uid: 9257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9258 + components: + - type: Transform + pos: -13.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9259 + components: + - type: Transform + pos: -13.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9264 + components: + - type: Transform + pos: -13.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 9294 + components: + - type: Transform + pos: -28.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9295 + components: + - type: Transform + pos: -28.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9296 + components: + - type: Transform + pos: -26.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9297 + components: + - type: Transform + pos: -26.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 9298 + components: + - type: Transform + pos: -2.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9300 + components: + - type: Transform + pos: -2.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9306 + components: + - type: Transform + pos: -17.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9307 + components: + - type: Transform + pos: -17.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9341 + components: + - type: Transform + pos: -5.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9344 + components: + - type: Transform + pos: -8.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9345 + components: + - type: Transform + pos: -8.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9346 + components: + - type: Transform + pos: -8.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9363 + components: + - type: Transform + pos: -18.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9364 + components: + - type: Transform + pos: -18.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9365 + components: + - type: Transform + pos: -13.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9376 + components: + - type: Transform + pos: 7.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9377 + components: + - type: Transform + pos: 7.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9385 + components: + - type: Transform + pos: 3.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9386 + components: + - type: Transform + pos: 3.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9387 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9388 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9389 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9412 + components: + - type: Transform + pos: -10.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9413 + components: + - type: Transform + pos: -10.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9414 + components: + - type: Transform + pos: -10.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9415 + components: + - type: Transform + pos: -10.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9435 + components: + - type: Transform + pos: -0.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9454 + components: + - type: Transform + pos: -9.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9490 + components: + - type: Transform + pos: -15.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9491 + components: + - type: Transform + pos: -15.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9492 + components: + - type: Transform + pos: -15.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9500 + components: + - type: Transform + pos: -18.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9501 + components: + - type: Transform + pos: -18.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9502 + components: + - type: Transform + pos: -18.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9503 + components: + - type: Transform + pos: -18.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9510 + components: + - type: Transform + pos: -22.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9511 + components: + - type: Transform + pos: -22.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9512 + components: + - type: Transform + pos: -22.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9513 + components: + - type: Transform + pos: -22.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9514 + components: + - type: Transform + pos: -22.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9515 + components: + - type: Transform + pos: -22.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9516 + components: + - type: Transform + pos: -22.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9517 + components: + - type: Transform + pos: -22.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9527 + components: + - type: Transform + pos: -27.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9528 + components: + - type: Transform + pos: -27.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9529 + components: + - type: Transform + pos: -27.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9530 + components: + - type: Transform + pos: -27.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9531 + components: + - type: Transform + pos: -27.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9586 + components: + - type: Transform + pos: 4.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9587 + components: + - type: Transform + pos: 4.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9588 + components: + - type: Transform + pos: 4.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9589 + components: + - type: Transform + pos: 4.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9615 + components: + - type: Transform + pos: 6.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9616 + components: + - type: Transform + pos: 6.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9618 + components: + - type: Transform + pos: 6.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9619 + components: + - type: Transform + pos: 6.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9620 + components: + - type: Transform + pos: 6.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9621 + components: + - type: Transform + pos: 6.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9622 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9623 + components: + - type: Transform + pos: 7.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9624 + components: + - type: Transform + pos: 7.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9626 + components: + - type: Transform + pos: 7.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9627 + components: + - type: Transform + pos: 7.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9655 + components: + - type: Transform + pos: 12.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9656 + components: + - type: Transform + pos: 12.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9657 + components: + - type: Transform + pos: 12.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9658 + components: + - type: Transform + pos: 12.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9659 + components: + - type: Transform + pos: 12.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9670 + components: + - type: Transform + pos: 12.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9671 + components: + - type: Transform + pos: 12.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9675 + components: + - type: Transform + pos: 12.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9697 + components: + - type: Transform + pos: 26.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9716 + components: + - type: Transform + pos: 16.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9717 + components: + - type: Transform + pos: 16.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9718 + components: + - type: Transform + pos: 16.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9719 + components: + - type: Transform + pos: 16.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9720 + components: + - type: Transform + pos: 16.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9721 + components: + - type: Transform + pos: 16.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9728 + components: + - type: Transform + pos: 30.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9729 + components: + - type: Transform + pos: 30.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9730 + components: + - type: Transform + pos: 30.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9731 + components: + - type: Transform + pos: 30.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9732 + components: + - type: Transform + pos: 30.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9733 + components: + - type: Transform + pos: 30.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9765 + components: + - type: Transform + pos: 22.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9766 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9767 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9768 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9769 + components: + - type: Transform + pos: 22.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9806 + components: + - type: Transform + pos: 40.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9807 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9808 + components: + - type: Transform + pos: 40.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9809 + components: + - type: Transform + pos: 40.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9814 + components: + - type: Transform + pos: 46.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9815 + components: + - type: Transform + pos: 46.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9816 + components: + - type: Transform + pos: 46.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9817 + components: + - type: Transform + pos: 46.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9818 + components: + - type: Transform + pos: 46.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9819 + components: + - type: Transform + pos: 46.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9820 + components: + - type: Transform + pos: 46.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9821 + components: + - type: Transform + pos: 46.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9822 + components: + - type: Transform + pos: 46.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9823 + components: + - type: Transform + pos: 46.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9824 + components: + - type: Transform + pos: 46.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9833 + components: + - type: Transform + pos: 56.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9834 + components: + - type: Transform + pos: 56.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9835 + components: + - type: Transform + pos: 56.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9842 + components: + - type: Transform + pos: 62.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9843 + components: + - type: Transform + pos: 62.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9844 + components: + - type: Transform + pos: 62.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9845 + components: + - type: Transform + pos: 56.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9846 + components: + - type: Transform + pos: 56.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9847 + components: + - type: Transform + pos: 56.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9848 + components: + - type: Transform + pos: 56.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9849 + components: + - type: Transform + pos: 56.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9857 + components: + - type: Transform + pos: 56.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9858 + components: + - type: Transform + pos: 56.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9859 + components: + - type: Transform + pos: 56.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9869 + components: + - type: Transform + pos: 48.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9870 + components: + - type: Transform + pos: 48.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9871 + components: + - type: Transform + pos: 48.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9933 + components: + - type: Transform + pos: 40.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9934 + components: + - type: Transform + pos: 40.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9935 + components: + - type: Transform + pos: 40.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9938 + components: + - type: Transform + pos: 36.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9939 + components: + - type: Transform + pos: 36.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9947 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9948 + components: + - type: Transform + pos: 30.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9961 + components: + - type: Transform + pos: 64.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9962 + components: + - type: Transform + pos: 64.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9963 + components: + - type: Transform + pos: 64.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9964 + components: + - type: Transform + pos: 64.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9972 + components: + - type: Transform + pos: 64.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9973 + components: + - type: Transform + pos: 64.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9974 + components: + - type: Transform + pos: 64.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9975 + components: + - type: Transform + pos: 64.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9976 + components: + - type: Transform + pos: 64.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9977 + components: + - type: Transform + pos: 64.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9978 + components: + - type: Transform + pos: 64.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9979 + components: + - type: Transform + pos: 64.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9980 + components: + - type: Transform + pos: 64.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10020 + components: + - type: Transform + pos: 80.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10021 + components: + - type: Transform + pos: 80.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10026 + components: + - type: Transform + pos: 76.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10027 + components: + - type: Transform + pos: 76.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10028 + components: + - type: Transform + pos: 76.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10029 + components: + - type: Transform + pos: 76.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10030 + components: + - type: Transform + pos: 76.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10052 + components: + - type: Transform + pos: 64.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10053 + components: + - type: Transform + pos: 64.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10082 + components: + - type: Transform + pos: 69.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10083 + components: + - type: Transform + pos: 69.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10084 + components: + - type: Transform + pos: 69.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10085 + components: + - type: Transform + pos: 69.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10098 + components: + - type: Transform + pos: 64.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10099 + components: + - type: Transform + pos: 64.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10100 + components: + - type: Transform + pos: 64.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10101 + components: + - type: Transform + pos: 64.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10102 + components: + - type: Transform + pos: 72.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10103 + components: + - type: Transform + pos: 72.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10104 + components: + - type: Transform + pos: 72.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10105 + components: + - type: Transform + pos: 72.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10106 + components: + - type: Transform + pos: 72.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10107 + components: + - type: Transform + pos: 72.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10108 + components: + - type: Transform + pos: 72.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10109 + components: + - type: Transform + pos: 72.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10133 + components: + - type: Transform + pos: 1.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10134 + components: + - type: Transform + pos: 1.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10135 + components: + - type: Transform + pos: 1.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10136 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10137 + components: + - type: Transform + pos: 1.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10138 + components: + - type: Transform + pos: 1.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10139 + components: + - type: Transform + pos: 1.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10140 + components: + - type: Transform + pos: 1.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10141 + components: + - type: Transform + pos: 1.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10146 + components: + - type: Transform + pos: -2.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10147 + components: + - type: Transform + pos: -2.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10148 + components: + - type: Transform + pos: -2.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10152 + components: + - type: Transform + pos: -4.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10154 + components: + - type: Transform + pos: -9.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10156 + components: + - type: Transform + pos: -9.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10157 + components: + - type: Transform + pos: -9.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10158 + components: + - type: Transform + pos: -9.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10168 + components: + - type: Transform + pos: 1.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10169 + components: + - type: Transform + pos: 1.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10170 + components: + - type: Transform + pos: 1.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10171 + components: + - type: Transform + pos: 1.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10172 + components: + - type: Transform + pos: 1.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10173 + components: + - type: Transform + pos: 1.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10174 + components: + - type: Transform + pos: 1.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10202 + components: + - type: Transform + pos: -13.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10203 + components: + - type: Transform + pos: -13.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10204 + components: + - type: Transform + pos: -13.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10214 + components: + - type: Transform + pos: 0.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10215 + components: + - type: Transform + pos: 0.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10216 + components: + - type: Transform + pos: -3.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10223 + components: + - type: Transform + pos: -0.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10224 + components: + - type: Transform + pos: -0.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10233 + components: + - type: Transform + pos: -13.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10256 + components: + - type: Transform + pos: -11.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10257 + components: + - type: Transform + pos: -11.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10258 + components: + - type: Transform + pos: -11.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10259 + components: + - type: Transform + pos: -11.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10260 + components: + - type: Transform + pos: -11.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10266 + components: + - type: Transform + pos: -5.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10267 + components: + - type: Transform + pos: -5.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10268 + components: + - type: Transform + pos: -5.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10269 + components: + - type: Transform + pos: -5.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10287 + components: + - type: Transform + pos: -24.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10288 + components: + - type: Transform + pos: -24.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10289 + components: + - type: Transform + pos: -24.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10290 + components: + - type: Transform + pos: -24.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10291 + components: + - type: Transform + pos: -24.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10300 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10301 + components: + - type: Transform + pos: -3.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10305 + components: + - type: Transform + pos: 6.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10306 + components: + - type: Transform + pos: 6.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10307 + components: + - type: Transform + pos: 6.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10308 + components: + - type: Transform + pos: 6.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10309 + components: + - type: Transform + pos: 6.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10320 + components: + - type: Transform + pos: 6.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10321 + components: + - type: Transform + pos: 6.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10322 + components: + - type: Transform + pos: 6.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10323 + components: + - type: Transform + pos: 6.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10348 + components: + - type: Transform + pos: 7.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10349 + components: + - type: Transform + pos: 7.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10350 + components: + - type: Transform + pos: 7.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10351 + components: + - type: Transform + pos: 7.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10357 + components: + - type: Transform + pos: 9.5,36.5 + parent: 2 + - uid: 10358 + components: + - type: Transform + pos: 8.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10359 + components: + - type: Transform + pos: 8.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10360 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10361 + components: + - type: Transform + pos: 8.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10366 + components: + - type: Transform + pos: 11.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10367 + components: + - type: Transform + pos: 11.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10368 + components: + - type: Transform + pos: 11.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10369 + components: + - type: Transform + pos: 11.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10379 + components: + - type: Transform + pos: 18.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10380 + components: + - type: Transform + pos: 18.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10381 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10382 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10402 + components: + - type: Transform + pos: 23.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10403 + components: + - type: Transform + pos: 23.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10404 + components: + - type: Transform + pos: 23.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10405 + components: + - type: Transform + pos: 23.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10406 + components: + - type: Transform + pos: 23.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10407 + components: + - type: Transform + pos: 23.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10416 + components: + - type: Transform + pos: 23.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10417 + components: + - type: Transform + pos: 23.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10418 + components: + - type: Transform + pos: 23.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10419 + components: + - type: Transform + pos: 23.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10431 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10432 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10433 + components: + - type: Transform + pos: 14.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10451 + components: + - type: Transform + pos: -29.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10452 + components: + - type: Transform + pos: -29.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10453 + components: + - type: Transform + pos: -29.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10454 + components: + - type: Transform + pos: -29.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10455 + components: + - type: Transform + pos: -29.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10456 + components: + - type: Transform + pos: -29.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10457 + components: + - type: Transform + pos: -29.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10461 + components: + - type: Transform + pos: -33.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10463 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10464 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10465 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10476 + components: + - type: Transform + pos: 4.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10477 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10478 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10479 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10480 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10481 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10482 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10483 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10490 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10491 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10492 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10497 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10498 + components: + - type: Transform + pos: -5.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10499 + components: + - type: Transform + pos: -5.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10500 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10506 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10507 + components: + - type: Transform + pos: -11.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10508 + components: + - type: Transform + pos: -11.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10509 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10510 + components: + - type: Transform + pos: -11.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10515 + components: + - type: Transform + pos: -15.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10516 + components: + - type: Transform + pos: -15.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10524 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10525 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10526 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10527 + components: + - type: Transform + pos: 26.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10528 + components: + - type: Transform + pos: 26.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10529 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10541 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10542 + components: + - type: Transform + pos: 33.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10543 + components: + - type: Transform + pos: 33.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10544 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10545 + components: + - type: Transform + pos: 33.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10546 + components: + - type: Transform + pos: 33.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10547 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10562 + components: + - type: Transform + pos: 33.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10563 + components: + - type: Transform + pos: 33.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10573 + components: + - type: Transform + pos: 31.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10574 + components: + - type: Transform + pos: 31.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10575 + components: + - type: Transform + pos: 31.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10576 + components: + - type: Transform + pos: 31.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10624 + components: + - type: Transform + pos: -24.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10627 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10628 + components: + - type: Transform + pos: 42.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10629 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10630 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10631 + components: + - type: Transform + pos: 42.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10632 + components: + - type: Transform + pos: 42.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10679 + components: + - type: Transform + pos: 54.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10680 + components: + - type: Transform + pos: 54.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10681 + components: + - type: Transform + pos: 54.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10711 + components: + - type: Transform + pos: 46.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10712 + components: + - type: Transform + pos: 46.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10713 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10714 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10715 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10729 + components: + - type: Transform + pos: 49.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10730 + components: + - type: Transform + pos: 49.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10731 + components: + - type: Transform + pos: 49.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10732 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10733 + components: + - type: Transform + pos: 49.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10734 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10735 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10736 + components: + - type: Transform + pos: 50.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10745 + components: + - type: Transform + pos: 41.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10746 + components: + - type: Transform + pos: 41.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10747 + components: + - type: Transform + pos: 41.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10753 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10754 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10755 + components: + - type: Transform + pos: 41.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10756 + components: + - type: Transform + pos: 41.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10757 + components: + - type: Transform + pos: 41.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10763 + components: + - type: Transform + pos: 35.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10764 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10771 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10772 + components: + - type: Transform + pos: 31.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10773 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,9.5 + parent: 2 + - uid: 10780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,9.5 + parent: 2 + - uid: 10781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,9.5 + parent: 2 + - uid: 10782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,9.5 + parent: 2 + - uid: 10783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,11.5 + parent: 2 + - uid: 10784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,11.5 + parent: 2 + - uid: 10785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,11.5 + parent: 2 + - uid: 10786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,11.5 + parent: 2 + - uid: 10790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10822 + components: + - type: Transform + pos: 70.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10836 + components: + - type: Transform + pos: 82.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10837 + components: + - type: Transform + pos: 82.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10872 + components: + - type: Transform + pos: 66.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10873 + components: + - type: Transform + pos: 66.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10874 + components: + - type: Transform + pos: 66.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10875 + components: + - type: Transform + pos: 66.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10886 + components: + - type: Transform + pos: 71.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10887 + components: + - type: Transform + pos: 71.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10888 + components: + - type: Transform + pos: 71.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10889 + components: + - type: Transform + pos: 71.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10904 + components: + - type: Transform + pos: 66.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10905 + components: + - type: Transform + pos: 66.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10906 + components: + - type: Transform + pos: 66.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10907 + components: + - type: Transform + pos: 66.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10908 + components: + - type: Transform + pos: 66.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10909 + components: + - type: Transform + pos: 66.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10910 + components: + - type: Transform + pos: 66.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10921 + components: + - type: Transform + pos: 66.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10922 + components: + - type: Transform + pos: 66.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10923 + components: + - type: Transform + pos: 66.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 10952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10956 + components: + - type: Transform + pos: 66.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10957 + components: + - type: Transform + pos: 66.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10966 + components: + - type: Transform + pos: -10.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10967 + components: + - type: Transform + pos: -10.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10968 + components: + - type: Transform + pos: -10.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10969 + components: + - type: Transform + pos: -10.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10970 + components: + - type: Transform + pos: -10.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10971 + components: + - type: Transform + pos: -10.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10972 + components: + - type: Transform + pos: -10.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10973 + components: + - type: Transform + pos: -10.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10975 + components: + - type: Transform + pos: -15.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10976 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10977 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 10990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11001 + components: + - type: Transform + pos: -28.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11023 + components: + - type: Transform + pos: -32.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11024 + components: + - type: Transform + pos: -31.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11025 + components: + - type: Transform + pos: -31.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11026 + components: + - type: Transform + pos: -31.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11027 + components: + - type: Transform + pos: -31.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11028 + components: + - type: Transform + pos: -31.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11031 + components: + - type: Transform + pos: -29.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11032 + components: + - type: Transform + pos: -29.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11033 + components: + - type: Transform + pos: -29.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11044 + components: + - type: Transform + pos: -31.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11045 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,13.5 + parent: 2 + - uid: 11053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,12.5 + parent: 2 + - uid: 11055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,13.5 + parent: 2 + - uid: 11056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11068 + components: + - type: Transform + pos: -29.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11069 + components: + - type: Transform + pos: -29.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11070 + components: + - type: Transform + pos: -29.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11071 + components: + - type: Transform + pos: -29.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11072 + components: + - type: Transform + pos: -29.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11073 + components: + - type: Transform + pos: -29.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11074 + components: + - type: Transform + pos: -26.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11083 + components: + - type: Transform + pos: -24.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11095 + components: + - type: Transform + pos: -30.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#9D00E0FF' + - uid: 11096 + components: + - type: Transform + pos: -30.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#9D00E0FF' + - uid: 11097 + components: + - type: Transform + pos: -30.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#9D00E0FF' + - uid: 11098 + components: + - type: Transform + pos: -30.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#9D00E0FF' + - uid: 11099 + components: + - type: Transform + pos: -30.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#9D00E0FF' + - uid: 11100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,25.5 + parent: 2 + - uid: 11106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11110 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11111 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11112 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11113 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11116 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11117 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11118 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11119 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11120 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11121 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11123 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11124 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11125 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11126 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11127 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11128 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11129 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11133 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11134 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11135 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11279 + components: + - type: Transform + pos: 50.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11322 + components: + - type: Transform + pos: -25.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,6.5 + parent: 2 + - uid: 12629 + components: + - type: Transform + pos: -33.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12630 + components: + - type: Transform + pos: -33.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13257 + components: + - type: Transform + pos: -33.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13428 + components: + - type: Transform + pos: -33.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 16307 + components: + - type: Transform + pos: -33.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18931 + components: + - type: Transform + pos: -26.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18932 + components: + - type: Transform + pos: -26.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18933 + components: + - type: Transform + pos: -26.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18934 + components: + - type: Transform + pos: -26.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18935 + components: + - type: Transform + pos: -26.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19299 + components: + - type: Transform + pos: 50.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19300 + components: + - type: Transform + pos: 50.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19301 + components: + - type: Transform + pos: 50.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19302 + components: + - type: Transform + pos: 52.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19303 + components: + - type: Transform + pos: 52.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19304 + components: + - type: Transform + pos: 52.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19305 + components: + - type: Transform + pos: 51.5,-6.5 + parent: 2 + - uid: 19306 + components: + - type: Transform + pos: 51.5,-5.5 + parent: 2 + - uid: 19307 + components: + - type: Transform + pos: 51.5,-4.5 + parent: 2 + - uid: 19312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19377 + components: + - type: Transform + pos: -31.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19378 + components: + - type: Transform + pos: -31.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19379 + components: + - type: Transform + pos: -31.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19380 + components: + - type: Transform + pos: -31.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19381 + components: + - type: Transform + pos: -31.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeTJunction + entities: + - uid: 9009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10125 + components: + - type: Transform + pos: -3.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,6.5 + parent: 2 + - uid: 11140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,18.5 + parent: 2 + - uid: 11141 + components: + - type: Transform + pos: -21.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11142 + components: + - type: Transform + pos: -19.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11151 + components: + - type: Transform + pos: -17.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11152 + components: + - type: Transform + pos: 33.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11155 + components: + - type: Transform + pos: -20.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11161 + components: + - type: Transform + pos: -19.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11165 + components: + - type: Transform + pos: -18.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11167 + components: + - type: Transform + pos: 10.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,34.5 + parent: 2 + - uid: 11170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11172 + components: + - type: Transform + pos: 26.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,34.5 + parent: 2 + - uid: 11178 + components: + - type: Transform + pos: -4.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11192 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11193 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11194 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11201 + components: + - type: Transform + pos: -0.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11204 + components: + - type: Transform + pos: -5.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11205 + components: + - type: Transform + pos: -9.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11207 + components: + - type: Transform + pos: -3.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11211 + components: + - type: Transform + pos: -18.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11213 + components: + - type: Transform + pos: -26.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11226 + components: + - type: Transform + pos: 6.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11232 + components: + - type: Transform + pos: 16.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11235 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11246 + components: + - type: Transform + pos: 31.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11254 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11255 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11262 + components: + - type: Transform + pos: 40.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11282 + components: + - type: Transform + pos: 40.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11293 + components: + - type: Transform + pos: 80.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11301 + components: + - type: Transform + pos: 76.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11304 + components: + - type: Transform + pos: 64.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11307 + components: + - type: Transform + pos: 69.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11308 + components: + - type: Transform + pos: 69.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11318 + components: + - type: Transform + pos: -2.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11324 + components: + - type: Transform + pos: -4.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11326 + components: + - type: Transform + pos: 1.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11327 + components: + - type: Transform + pos: -7.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11329 + components: + - type: Transform + pos: -7.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11334 + components: + - type: Transform + pos: -13.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11337 + components: + - type: Transform + pos: -19.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11349 + components: + - type: Transform + pos: 7.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11351 + components: + - type: Transform + pos: 8.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11357 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11365 + components: + - type: Transform + pos: 14.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11367 + components: + - type: Transform + pos: -28.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11373 + components: + - type: Transform + pos: 4.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11375 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11379 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11384 + components: + - type: Transform + pos: 39.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11389 + components: + - type: Transform + pos: 13.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11390 + components: + - type: Transform + pos: 22.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11392 + components: + - type: Transform + pos: 23.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11393 + components: + - type: Transform + pos: 42.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11397 + components: + - type: Transform + pos: 53.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11402 + components: + - type: Transform + pos: 54.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11403 + components: + - type: Transform + pos: 50.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11404 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11411 + components: + - type: Transform + pos: 49.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11421 + components: + - type: Transform + pos: 68.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11424 + components: + - type: Transform + pos: 70.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11425 + components: + - type: Transform + pos: 75.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11428 + components: + - type: Transform + pos: 76.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11429 + components: + - type: Transform + pos: 75.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11434 + components: + - type: Transform + pos: 78.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11440 + components: + - type: Transform + pos: 68.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11443 + components: + - type: Transform + pos: 66.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11449 + components: + - type: Transform + pos: -22.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,11.5 + parent: 2 + - uid: 11451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11453 + components: + - type: Transform + pos: -27.5,11.5 + parent: 2 + - uid: 11454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,14.5 + parent: 2 + - uid: 11455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,12.5 + parent: 2 + - uid: 11457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11464 + components: + - type: Transform + pos: -29.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11465 + components: + - type: Transform + pos: -22.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11466 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,15.5 + parent: 2 + - uid: 11469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,15.5 + parent: 2 + - uid: 11470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,15.5 + parent: 2 + - uid: 11471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,14.5 + parent: 2 + - uid: 11472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,6.5 + parent: 2 + - uid: 16718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19315 + components: + - type: Transform + pos: 53.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPort + entities: + - uid: 319 + components: + - type: Transform + pos: 51.5,7.5 + parent: 2 + - uid: 11479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,10.5 + parent: 2 + - uid: 11480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11486 + components: + - type: Transform + pos: 20.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,9.5 + parent: 2 + - uid: 11488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,11.5 + parent: 2 + - uid: 11489 + components: + - type: Transform + pos: 38.5,7.5 + parent: 2 + - uid: 11490 + components: + - type: Transform + pos: 39.5,7.5 + parent: 2 + - uid: 11491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,12.5 + parent: 2 + - uid: 11492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,31.5 + parent: 2 + - uid: 11493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,30.5 + parent: 2 + - uid: 11494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,25.5 + parent: 2 + - uid: 11495 + components: + - type: Transform + pos: 9.5,38.5 + parent: 2 + - uid: 11496 + components: + - type: Transform + pos: -35.5,28.5 + parent: 2 + - uid: 18635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18638 + components: + - type: Transform + pos: -4.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18639 + components: + - type: Transform + pos: -5.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18926 + components: + - type: Transform + pos: -18.5,28.5 + parent: 2 + - uid: 18927 + components: + - type: Transform + pos: -19.5,28.5 + parent: 2 + - uid: 19309 + components: + - type: Transform + pos: 51.5,-2.5 + parent: 2 +- proto: GasPressurePump + entities: + - uid: 11505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,37.5 + parent: 2 + - uid: 11510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,9.5 + parent: 2 + - uid: 11511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,11.5 + parent: 2 + - uid: 11512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#9D00E0FF' + - uid: 11516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11521 + components: + - type: Transform + pos: -28.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11527 + components: + - type: Transform + pos: -28.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11528 + components: + - type: Transform + pos: -26.5,16.5 + parent: 2 + - uid: 11529 + components: + - type: MetaData + name: supermatter loop pump + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11531 + components: + - type: Transform + pos: -26.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11534 + components: + - type: Transform + pos: -24.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#EAC300FF' + - uid: 11537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,27.5 + parent: 2 + - uid: 11709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 18928 + components: + - type: Transform + pos: -19.5,27.5 + parent: 2 + - uid: 18929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,27.5 + parent: 2 + - uid: 19308 + components: + - type: Transform + pos: 51.5,-3.5 + parent: 2 +- proto: GasThermoMachineFreezer + entities: + - uid: 11481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,25.5 + parent: 2 + - uid: 11538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,25.5 + parent: 2 + - uid: 11540 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 + - uid: 11541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,6.5 + parent: 2 + - uid: 11542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,12.5 + parent: 2 +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 10303 + components: + - type: Transform + pos: 52.5,7.5 + parent: 2 +- proto: GasThermoMachineHeater + entities: + - uid: 11543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,6.5 + parent: 2 + - uid: 11544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,14.5 + parent: 2 +- proto: GasValve + entities: + - uid: 11499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11549 + components: + - type: Transform + pos: -33.5,26.5 + parent: 2 +- proto: GasVentPump + entities: + - uid: 11550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11551 + components: + - type: Transform + pos: -25.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 46 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 55 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 72 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11555 + components: + - type: Transform + pos: 28.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 72 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 72 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11557 + components: + - type: Transform + pos: 28.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 72 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11558 + components: + - type: Transform + pos: -4.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11560 + components: + - type: Transform + pos: -21.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 44 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11561 + components: + - type: Transform + pos: -17.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11562 + components: + - type: Transform + pos: -16.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 41 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11563 + components: + - type: Transform + pos: -9.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 39 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11566 + components: + - type: Transform + pos: -4.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 37 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 43 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 38 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11570 + components: + - type: Transform + pos: -18.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 48 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 49 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11574 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 54 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 53 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11576 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 80 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11577 + components: + - type: Transform + pos: -5.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 52 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11578 + components: + - type: Transform + pos: -10.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 53 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11580 + components: + - type: Transform + pos: -4.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11583 + components: + - type: Transform + pos: -8.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11589 + components: + - type: Transform + pos: -1.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 34 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11592 + components: + - type: Transform + pos: -14.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 27 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 33 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11596 + components: + - type: Transform + pos: -22.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 28 + - 19588 + - 8512 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11599 + components: + - type: Transform + pos: -27.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 28 + - 19588 + - 8512 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 28 + - 19588 + - 8512 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 26 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11605 + components: + - type: Transform + pos: -7.5,67.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 26 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11609 + components: + - type: Transform + pos: 4.5,71.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 36 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 68 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 68 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 76 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 76 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 77 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 69 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11625 + components: + - type: Transform + pos: 12.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 70 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 70 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 71 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 77 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11630 + components: + - type: Transform + pos: 23.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 72 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11631 + components: + - type: Transform + pos: 16.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11632 + components: + - type: Transform + pos: 20.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11633 + components: + - type: Transform + pos: 30.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11634 + components: + - type: Transform + pos: 32.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11636 + components: + - type: Transform + pos: 39.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 78 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 56 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11642 + components: + - type: Transform + pos: 24.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 55 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11644 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11646 + components: + - type: Transform + pos: 38.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11648 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11650 + components: + - type: Transform + pos: 46.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11651 + components: + - type: Transform + pos: 52.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11652 + components: + - type: Transform + pos: 52.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11655 + components: + - type: Transform + pos: 62.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11657 + components: + - type: Transform + pos: 50.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11659 + components: + - type: Transform + pos: 51.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11660 + components: + - type: Transform + pos: 48.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 58 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11661 + components: + - type: Transform + pos: 54.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 57 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 60 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 63 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11670 + components: + - type: Transform + pos: 42.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 65 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 8517 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11675 + components: + - type: Transform + pos: 34.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 66 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 64 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18626 + - 18627 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11679 + components: + - type: Transform + pos: 67.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11681 + components: + - type: Transform + pos: 70.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11682 + components: + - type: Transform + pos: 75.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11684 + components: + - type: Transform + pos: 76.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11685 + components: + - type: Transform + pos: 76.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7 + - 5 + - 18626 + - 18627 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7 + - 18626 + - 18627 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - 8 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11697 + components: + - type: Transform + pos: 69.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 44 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 8517 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 8517 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,7.5 + parent: 2 + - uid: 13233 + components: + - type: Transform + pos: -9.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 26 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,6.5 + parent: 2 + - uid: 19355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19383 + components: + - type: Transform + pos: -31.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19588 + - 8512 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19400 + components: + - type: Transform + pos: -28.5,75.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19589 + - 19586 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,74.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19587 + - 19590 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasVentScrubber + entities: + - uid: 11706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 46 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11713 + components: + - type: Transform + pos: -19.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11714 + components: + - type: Transform + pos: -15.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 41 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11715 + components: + - type: Transform + pos: -10.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 39 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 37 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 43 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11721 + components: + - type: Transform + pos: -9.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 38 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 49 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11723 + components: + - type: Transform + pos: -22.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 48 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11733 + components: + - type: Transform + pos: -5.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11734 + components: + - type: Transform + pos: -0.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 34 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 26 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 27 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 33 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11740 + components: + - type: Transform + pos: -17.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 27 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11741 + components: + - type: Transform + pos: -11.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 26 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11742 + components: + - type: Transform + pos: -5.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 26 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11746 + components: + - type: Transform + pos: -24.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11749 + components: + - type: Transform + pos: 6.5,71.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 36 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 68 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 76 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 69 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11757 + components: + - type: Transform + pos: 11.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 76 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11759 + components: + - type: Transform + pos: 15.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11761 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 77 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 77 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11766 + components: + - type: Transform + pos: 18.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 71 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 72 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 72 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 70 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 70 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 28 + - 29 + - 19588 + - 8512 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11773 + components: + - type: Transform + pos: -29.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 28 + - 19588 + - 8512 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 28 + - 29 + - 19588 + - 8512 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 54 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 53 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 52 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11780 + components: + - type: Transform + pos: -5.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 80 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11781 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 53 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 55 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 56 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 55 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11793 + components: + - type: Transform + pos: 31.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11794 + components: + - type: Transform + pos: 41.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 78 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11799 + components: + - type: Transform + pos: 18.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11803 + components: + - type: Transform + pos: 47.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11804 + components: + - type: Transform + pos: 49.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11807 + components: + - type: Transform + pos: 52.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11810 + components: + - type: Transform + pos: 60.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 58 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11814 + components: + - type: Transform + pos: 55.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 57 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 60 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 63 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11822 + components: + - type: Transform + pos: 41.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 65 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 66 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 8517 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11828 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 64 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6 + - 5 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7 + - 5 + - 18626 + - 18627 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7 + - 18626 + - 18627 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4 + - 8 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18626 + - 18627 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,27.5 + parent: 2 + - uid: 11856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 44 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 44 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 8517 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 8517 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19382 + components: + - type: Transform + pos: -33.5,68.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19588 + - 8512 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19401 + components: + - type: Transform + pos: -32.5,75.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19589 + - 19586 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 19402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,73.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19587 + - 19590 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasVolumePump + entities: + - uid: 9059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 9247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#BFA200FF' + - uid: 11498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11503 + components: + - type: Transform + pos: -20.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' + - uid: 11506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#17D8D2FF' +- proto: Gateway + entities: + - uid: 11860 + components: + - type: Transform + pos: 34.5,54.5 + parent: 2 +- proto: GeigerCounterWallMount + entities: + - uid: 8529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,9.5 + parent: 2 + - uid: 11861 + components: + - type: Transform + pos: -17.5,35.5 + parent: 2 +- proto: GeneratorBasic15kW + entities: + - uid: 11862 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - uid: 11863 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 2 + - uid: 11864 + components: + - type: Transform + pos: 37.5,-13.5 + parent: 2 + - uid: 11865 + components: + - type: Transform + pos: 36.5,-13.5 + parent: 2 +- proto: GeneratorRTG + entities: + - uid: 11866 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 2 + - uid: 11867 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 2 +- proto: Girder + entities: + - uid: 11868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,7.5 + parent: 2 + - uid: 11869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,64.5 + parent: 2 +- proto: GlimmerProber + entities: + - uid: 11870 + components: + - type: Transform + pos: 25.5,1.5 + parent: 2 +- proto: GravityGenerator + entities: + - uid: 11871 + components: + - type: Transform + pos: -20.5,45.5 + parent: 2 +- proto: GrenadeFlashBang + entities: + - uid: 11872 + components: + - type: Transform + pos: -17.658485,67.52475 + parent: 2 + - uid: 11873 + components: + - type: Transform + pos: -17.497086,67.48891 + parent: 2 + - uid: 11874 + components: + - type: Transform + pos: -17.443285,67.50683 + parent: 2 + - uid: 11875 + components: + - type: Transform + pos: -17.281885,67.50683 + parent: 2 + - uid: 11876 + components: + - type: Transform + pos: -17.192219,67.50683 + parent: 2 +- proto: Grille + entities: + - uid: 908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,29.5 + parent: 2 + - uid: 5994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,77.5 + parent: 2 + - uid: 6000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,76.5 + parent: 2 + - uid: 6001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,76.5 + parent: 2 + - uid: 6016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,75.5 + parent: 2 + - uid: 6047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,78.5 + parent: 2 + - uid: 6048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,78.5 + parent: 2 + - uid: 6049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,78.5 + parent: 2 + - uid: 6050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,78.5 + parent: 2 + - uid: 6051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,77.5 + parent: 2 + - uid: 6052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,77.5 + parent: 2 + - uid: 6193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,77.5 + parent: 2 + - uid: 6655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,78.5 + parent: 2 + - uid: 9299 + components: + - type: Transform + pos: 53.5,7.5 + parent: 2 + - uid: 9950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,1.5 + parent: 2 + - uid: 11877 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - uid: 11878 + components: + - type: Transform + pos: 17.5,33.5 + parent: 2 + - uid: 11879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,27.5 + parent: 2 + - uid: 11880 + components: + - type: Transform + pos: 6.5,31.5 + parent: 2 + - uid: 11881 + components: + - type: Transform + pos: 2.5,34.5 + parent: 2 + - uid: 11882 + components: + - type: Transform + pos: 2.5,33.5 + parent: 2 + - uid: 11883 + components: + - type: Transform + pos: 2.5,32.5 + parent: 2 + - uid: 11884 + components: + - type: Transform + pos: -5.5,18.5 + parent: 2 + - uid: 11885 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 + - uid: 11886 + components: + - type: Transform + pos: 6.5,35.5 + parent: 2 + - uid: 11887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,22.5 + parent: 2 + - uid: 11888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,17.5 + parent: 2 + - uid: 11889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,22.5 + parent: 2 + - uid: 11890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,31.5 + parent: 2 + - uid: 11891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,22.5 + parent: 2 + - uid: 11892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,22.5 + parent: 2 + - uid: 11893 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 11894 + components: + - type: Transform + pos: -36.5,11.5 + parent: 2 + - uid: 11895 + components: + - type: Transform + pos: -36.5,9.5 + parent: 2 + - uid: 11896 + components: + - type: Transform + pos: -36.5,21.5 + parent: 2 + - uid: 11897 + components: + - type: Transform + pos: 34.5,51.5 + parent: 2 + - uid: 11898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,4.5 + parent: 2 + - uid: 11899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,4.5 + parent: 2 + - uid: 11900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,27.5 + parent: 2 + - uid: 11901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,26.5 + parent: 2 + - uid: 11902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,25.5 + parent: 2 + - uid: 11903 + components: + - type: Transform + pos: 36.5,51.5 + parent: 2 + - uid: 11904 + components: + - type: Transform + pos: -36.5,13.5 + parent: 2 + - uid: 11905 + components: + - type: Transform + pos: -36.5,7.5 + parent: 2 + - uid: 11906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,19.5 + parent: 2 + - uid: 11907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,4.5 + parent: 2 + - uid: 11908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,4.5 + parent: 2 + - uid: 11909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,15.5 + parent: 2 + - uid: 11910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,17.5 + parent: 2 + - uid: 11911 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 11912 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 11913 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 11914 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 11915 + components: + - type: Transform + pos: -20.5,47.5 + parent: 2 + - uid: 11916 + components: + - type: Transform + pos: 34.5,50.5 + parent: 2 + - uid: 11917 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 11918 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 11919 + components: + - type: Transform + pos: -2.5,0.5 + parent: 2 + - uid: 11920 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 11921 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 11922 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 + - uid: 11923 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 11924 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 11925 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 11926 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 11927 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 11928 + components: + - type: Transform + pos: -10.5,3.5 + parent: 2 + - uid: 11929 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 + - uid: 11930 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 11931 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 11932 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - uid: 11933 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 + - uid: 11934 + components: + - type: Transform + pos: 12.5,14.5 + parent: 2 + - uid: 11935 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 11936 + components: + - type: Transform + pos: 9.5,13.5 + parent: 2 + - uid: 11937 + components: + - type: Transform + pos: -7.5,13.5 + parent: 2 + - uid: 11938 + components: + - type: Transform + pos: -7.5,12.5 + parent: 2 + - uid: 11939 + components: + - type: Transform + pos: -6.5,12.5 + parent: 2 + - uid: 11940 + components: + - type: Transform + pos: -5.5,12.5 + parent: 2 + - uid: 11941 + components: + - type: Transform + pos: -3.5,12.5 + parent: 2 + - uid: 11942 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 11943 + components: + - type: Transform + pos: 2.5,15.5 + parent: 2 + - uid: 11944 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 11945 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 11946 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 11947 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 11948 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - uid: 11949 + components: + - type: Transform + pos: 9.5,18.5 + parent: 2 + - uid: 11950 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - uid: 11951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,23.5 + parent: 2 + - uid: 11952 + components: + - type: Transform + pos: -1.5,25.5 + parent: 2 + - uid: 11953 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - uid: 11954 + components: + - type: Transform + pos: 8.5,26.5 + parent: 2 + - uid: 11955 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 + - uid: 11956 + components: + - type: Transform + pos: 9.5,27.5 + parent: 2 + - uid: 11957 + components: + - type: Transform + pos: 9.5,29.5 + parent: 2 + - uid: 11958 + components: + - type: Transform + pos: 9.5,30.5 + parent: 2 + - uid: 11959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,24.5 + parent: 2 + - uid: 11960 + components: + - type: Transform + pos: 10.5,29.5 + parent: 2 + - uid: 11961 + components: + - type: Transform + pos: 11.5,29.5 + parent: 2 + - uid: 11962 + components: + - type: Transform + pos: -6.5,21.5 + parent: 2 + - uid: 11963 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - uid: 11964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,29.5 + parent: 2 + - uid: 11965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,29.5 + parent: 2 + - uid: 11966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,22.5 + parent: 2 + - uid: 11967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,27.5 + parent: 2 + - uid: 11968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,29.5 + parent: 2 + - uid: 11969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,31.5 + parent: 2 + - uid: 11970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,34.5 + parent: 2 + - uid: 11971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,30.5 + parent: 2 + - uid: 11972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,31.5 + parent: 2 + - uid: 11973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,34.5 + parent: 2 + - uid: 11974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,35.5 + parent: 2 + - uid: 11975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,36.5 + parent: 2 + - uid: 11976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,37.5 + parent: 2 + - uid: 11977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,38.5 + parent: 2 + - uid: 11978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,39.5 + parent: 2 + - uid: 11979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,33.5 + parent: 2 + - uid: 11980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,36.5 + parent: 2 + - uid: 11981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,36.5 + parent: 2 + - uid: 11982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,42.5 + parent: 2 + - uid: 11983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,42.5 + parent: 2 + - uid: 11984 + components: + - type: Transform + pos: 8.5,42.5 + parent: 2 + - uid: 11985 + components: + - type: Transform + pos: 2.5,38.5 + parent: 2 + - uid: 11986 + components: + - type: Transform + pos: 2.5,40.5 + parent: 2 + - uid: 11988 + components: + - type: Transform + pos: -6.5,24.5 + parent: 2 + - uid: 11989 + components: + - type: Transform + pos: -13.5,20.5 + parent: 2 + - uid: 11990 + components: + - type: Transform + pos: -13.5,18.5 + parent: 2 + - uid: 11991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,16.5 + parent: 2 + - uid: 11992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,20.5 + parent: 2 + - uid: 11993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,12.5 + parent: 2 + - uid: 11994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,6.5 + parent: 2 + - uid: 11995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,6.5 + parent: 2 + - uid: 11996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,5.5 + parent: 2 + - uid: 11997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,4.5 + parent: 2 + - uid: 11998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,5.5 + parent: 2 + - uid: 11999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,4.5 + parent: 2 + - uid: 12000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,19.5 + parent: 2 + - uid: 12001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,17.5 + parent: 2 + - uid: 12002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,19.5 + parent: 2 + - uid: 12003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,15.5 + parent: 2 + - uid: 12004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,12.5 + parent: 2 + - uid: 12005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,11.5 + parent: 2 + - uid: 12006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,4.5 + parent: 2 + - uid: 12007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,4.5 + parent: 2 + - uid: 12008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,8.5 + parent: 2 + - uid: 12009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,28.5 + parent: 2 + - uid: 12010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,34.5 + parent: 2 + - uid: 12011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,34.5 + parent: 2 + - uid: 12012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,36.5 + parent: 2 + - uid: 12013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,32.5 + parent: 2 + - uid: 12014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,31.5 + parent: 2 + - uid: 12015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,29.5 + parent: 2 + - uid: 12016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,27.5 + parent: 2 + - uid: 12017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,28.5 + parent: 2 + - uid: 12018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,29.5 + parent: 2 + - uid: 12019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,33.5 + parent: 2 + - uid: 12020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,35.5 + parent: 2 + - uid: 12021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,37.5 + parent: 2 + - uid: 12022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,42.5 + parent: 2 + - uid: 12023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,42.5 + parent: 2 + - uid: 12024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,48.5 + parent: 2 + - uid: 12025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,44.5 + parent: 2 + - uid: 12026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,47.5 + parent: 2 + - uid: 12027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,31.5 + parent: 2 + - uid: 12028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,31.5 + parent: 2 + - uid: 12029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,31.5 + parent: 2 + - uid: 12030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,29.5 + parent: 2 + - uid: 12031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,33.5 + parent: 2 + - uid: 12032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,39.5 + parent: 2 + - uid: 12033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,40.5 + parent: 2 + - uid: 12034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,41.5 + parent: 2 + - uid: 12035 + components: + - type: Transform + pos: -18.5,50.5 + parent: 2 + - uid: 12036 + components: + - type: Transform + pos: -19.5,50.5 + parent: 2 + - uid: 12037 + components: + - type: Transform + pos: -13.5,50.5 + parent: 2 + - uid: 12038 + components: + - type: Transform + pos: -16.5,54.5 + parent: 2 + - uid: 12039 + components: + - type: Transform + pos: -16.5,55.5 + parent: 2 + - uid: 12040 + components: + - type: Transform + pos: -20.5,56.5 + parent: 2 + - uid: 12041 + components: + - type: Transform + pos: -14.5,53.5 + parent: 2 + - uid: 12042 + components: + - type: Transform + pos: -9.5,50.5 + parent: 2 + - uid: 12043 + components: + - type: Transform + pos: -8.5,50.5 + parent: 2 + - uid: 12044 + components: + - type: Transform + pos: -7.5,50.5 + parent: 2 + - uid: 12045 + components: + - type: Transform + pos: -5.5,50.5 + parent: 2 + - uid: 12046 + components: + - type: Transform + pos: -4.5,50.5 + parent: 2 + - uid: 12047 + components: + - type: Transform + pos: -3.5,50.5 + parent: 2 + - uid: 12048 + components: + - type: Transform + pos: -1.5,50.5 + parent: 2 + - uid: 12049 + components: + - type: Transform + pos: -0.5,50.5 + parent: 2 + - uid: 12050 + components: + - type: Transform + pos: 0.5,50.5 + parent: 2 + - uid: 12051 + components: + - type: Transform + pos: 0.5,53.5 + parent: 2 + - uid: 12052 + components: + - type: Transform + pos: -1.5,53.5 + parent: 2 + - uid: 12053 + components: + - type: Transform + pos: -3.5,53.5 + parent: 2 + - uid: 12054 + components: + - type: Transform + pos: -5.5,53.5 + parent: 2 + - uid: 12055 + components: + - type: Transform + pos: -7.5,53.5 + parent: 2 + - uid: 12056 + components: + - type: Transform + pos: -9.5,53.5 + parent: 2 + - uid: 12057 + components: + - type: Transform + pos: -24.5,50.5 + parent: 2 + - uid: 12058 + components: + - type: Transform + pos: -23.5,50.5 + parent: 2 + - uid: 12059 + components: + - type: Transform + pos: -22.5,50.5 + parent: 2 + - uid: 12060 + components: + - type: Transform + pos: -21.5,47.5 + parent: 2 + - uid: 12061 + components: + - type: Transform + pos: -19.5,47.5 + parent: 2 + - uid: 12062 + components: + - type: Transform + pos: -24.5,56.5 + parent: 2 + - uid: 12063 + components: + - type: Transform + pos: -22.5,56.5 + parent: 2 + - uid: 12064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,51.5 + parent: 2 + - uid: 12065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,53.5 + parent: 2 + - uid: 12066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,52.5 + parent: 2 + - uid: 12067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,55.5 + parent: 2 + - uid: 12068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,58.5 + parent: 2 + - uid: 12069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,58.5 + parent: 2 + - uid: 12077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,67.5 + parent: 2 + - uid: 12078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,68.5 + parent: 2 + - uid: 12080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,72.5 + parent: 2 + - uid: 12081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,72.5 + parent: 2 + - uid: 12082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,72.5 + parent: 2 + - uid: 12084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,69.5 + parent: 2 + - uid: 12086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,71.5 + parent: 2 + - uid: 12087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,71.5 + parent: 2 + - uid: 12088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,71.5 + parent: 2 + - uid: 12089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,71.5 + parent: 2 + - uid: 12091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,69.5 + parent: 2 + - uid: 12092 + components: + - type: Transform + pos: 4.5,79.5 + parent: 2 + - uid: 12093 + components: + - type: Transform + pos: 2.5,79.5 + parent: 2 + - uid: 12094 + components: + - type: Transform + pos: 3.5,79.5 + parent: 2 + - uid: 12095 + components: + - type: Transform + pos: 1.5,79.5 + parent: 2 + - uid: 12096 + components: + - type: Transform + pos: 8.5,80.5 + parent: 2 + - uid: 12097 + components: + - type: Transform + pos: 7.5,80.5 + parent: 2 + - uid: 12098 + components: + - type: Transform + pos: 9.5,80.5 + parent: 2 + - uid: 12099 + components: + - type: Transform + pos: -2.5,74.5 + parent: 2 + - uid: 12100 + components: + - type: Transform + pos: -2.5,75.5 + parent: 2 + - uid: 12101 + components: + - type: Transform + pos: -2.5,73.5 + parent: 2 + - uid: 12102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,65.5 + parent: 2 + - uid: 12103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,65.5 + parent: 2 + - uid: 12104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,59.5 + parent: 2 + - uid: 12105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,59.5 + parent: 2 + - uid: 12106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,65.5 + parent: 2 + - uid: 12107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,65.5 + parent: 2 + - uid: 12108 + components: + - type: Transform + pos: -14.5,63.5 + parent: 2 + - uid: 12109 + components: + - type: Transform + pos: -13.5,60.5 + parent: 2 + - uid: 12110 + components: + - type: Transform + pos: -13.5,61.5 + parent: 2 + - uid: 12111 + components: + - type: Transform + pos: -16.5,59.5 + parent: 2 + - uid: 12112 + components: + - type: Transform + pos: -14.5,59.5 + parent: 2 + - uid: 12113 + components: + - type: Transform + pos: -18.5,59.5 + parent: 2 + - uid: 12114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,61.5 + parent: 2 + - uid: 12115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,57.5 + parent: 2 + - uid: 12116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,59.5 + parent: 2 + - uid: 12117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,57.5 + parent: 2 + - uid: 12118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,75.5 + parent: 2 + - uid: 12119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,75.5 + parent: 2 + - uid: 12120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,76.5 + parent: 2 + - uid: 12121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,78.5 + parent: 2 + - uid: 12122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,72.5 + parent: 2 + - uid: 12123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,73.5 + parent: 2 + - uid: 12124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,55.5 + parent: 2 + - uid: 12125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,56.5 + parent: 2 + - uid: 12126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,18.5 + parent: 2 + - uid: 12127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,18.5 + parent: 2 + - uid: 12128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,18.5 + parent: 2 + - uid: 12129 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 12130 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - uid: 12131 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - uid: 12132 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 12133 + components: + - type: Transform + pos: 15.5,0.5 + parent: 2 + - uid: 12134 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 12135 + components: + - type: Transform + pos: 20.5,3.5 + parent: 2 + - uid: 12137 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - uid: 12138 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 + - uid: 12139 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 2 + - uid: 12140 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 2 + - uid: 12141 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 12142 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 2 + - uid: 12143 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 2 + - uid: 12144 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 + - uid: 12145 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - uid: 12146 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 2 + - uid: 12147 + components: + - type: Transform + pos: 42.5,-0.5 + parent: 2 + - uid: 12148 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 2 + - uid: 12149 + components: + - type: Transform + pos: 42.5,-2.5 + parent: 2 + - uid: 12150 + components: + - type: Transform + pos: 38.5,14.5 + parent: 2 + - uid: 12151 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 + - uid: 12152 + components: + - type: Transform + pos: 40.5,18.5 + parent: 2 + - uid: 12153 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 + - uid: 12154 + components: + - type: Transform + pos: 45.5,15.5 + parent: 2 + - uid: 12155 + components: + - type: Transform + pos: 46.5,15.5 + parent: 2 + - uid: 12156 + components: + - type: Transform + pos: 47.5,15.5 + parent: 2 + - uid: 12157 + components: + - type: Transform + pos: 47.5,14.5 + parent: 2 + - uid: 12158 + components: + - type: Transform + pos: 47.5,13.5 + parent: 2 + - uid: 12159 + components: + - type: Transform + pos: 50.5,14.5 + parent: 2 + - uid: 12160 + components: + - type: Transform + pos: 50.5,18.5 + parent: 2 + - uid: 12161 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - uid: 12162 + components: + - type: Transform + pos: 40.5,24.5 + parent: 2 + - uid: 12163 + components: + - type: Transform + pos: 41.5,24.5 + parent: 2 + - uid: 12164 + components: + - type: Transform + pos: 36.5,27.5 + parent: 2 + - uid: 12165 + components: + - type: Transform + pos: 36.5,29.5 + parent: 2 + - uid: 12166 + components: + - type: Transform + pos: 40.5,26.5 + parent: 2 + - uid: 12167 + components: + - type: Transform + pos: 43.5,28.5 + parent: 2 + - uid: 12168 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - uid: 12169 + components: + - type: Transform + pos: 51.5,24.5 + parent: 2 + - uid: 12170 + components: + - type: Transform + pos: 51.5,26.5 + parent: 2 + - uid: 12171 + components: + - type: Transform + pos: 50.5,23.5 + parent: 2 + - uid: 12172 + components: + - type: Transform + pos: 52.5,23.5 + parent: 2 + - uid: 12173 + components: + - type: Transform + pos: 54.5,23.5 + parent: 2 + - uid: 12174 + components: + - type: Transform + pos: 54.5,22.5 + parent: 2 + - uid: 12175 + components: + - type: Transform + pos: 56.5,23.5 + parent: 2 + - uid: 12176 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 12177 + components: + - type: Transform + pos: 52.5,19.5 + parent: 2 + - uid: 12178 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - uid: 12179 + components: + - type: Transform + pos: 54.5,20.5 + parent: 2 + - uid: 12180 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 + - uid: 12181 + components: + - type: Transform + pos: 60.5,32.5 + parent: 2 + - uid: 12182 + components: + - type: Transform + pos: 59.5,32.5 + parent: 2 + - uid: 12183 + components: + - type: Transform + pos: 61.5,32.5 + parent: 2 + - uid: 12184 + components: + - type: Transform + pos: 63.5,29.5 + parent: 2 + - uid: 12185 + components: + - type: Transform + pos: 56.5,6.5 + parent: 2 + - uid: 12187 + components: + - type: Transform + pos: 50.5,-5.5 + parent: 2 + - uid: 12188 + components: + - type: Transform + pos: 50.5,-4.5 + parent: 2 + - uid: 12189 + components: + - type: Transform + pos: 52.5,-5.5 + parent: 2 + - uid: 12190 + components: + - type: Transform + pos: 52.5,-4.5 + parent: 2 + - uid: 12191 + components: + - type: Transform + pos: 59.5,11.5 + parent: 2 + - uid: 12192 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - uid: 12193 + components: + - type: Transform + pos: 62.5,2.5 + parent: 2 + - uid: 12194 + components: + - type: Transform + pos: 62.5,3.5 + parent: 2 + - uid: 12195 + components: + - type: Transform + pos: 62.5,4.5 + parent: 2 + - uid: 12196 + components: + - type: Transform + pos: 64.5,-0.5 + parent: 2 + - uid: 12197 + components: + - type: Transform + pos: 65.5,-0.5 + parent: 2 + - uid: 12198 + components: + - type: Transform + pos: 66.5,-0.5 + parent: 2 + - uid: 12199 + components: + - type: Transform + pos: 69.5,1.5 + parent: 2 + - uid: 12200 + components: + - type: Transform + pos: 70.5,1.5 + parent: 2 + - uid: 12201 + components: + - type: Transform + pos: 71.5,1.5 + parent: 2 + - uid: 12202 + components: + - type: Transform + pos: 71.5,0.5 + parent: 2 + - uid: 12203 + components: + - type: Transform + pos: 71.5,-0.5 + parent: 2 + - uid: 12204 + components: + - type: Transform + pos: 72.5,-4.5 + parent: 2 + - uid: 12205 + components: + - type: Transform + pos: 12.5,50.5 + parent: 2 + - uid: 12206 + components: + - type: Transform + pos: 13.5,50.5 + parent: 2 + - uid: 12207 + components: + - type: Transform + pos: 14.5,56.5 + parent: 2 + - uid: 12208 + components: + - type: Transform + pos: 20.5,64.5 + parent: 2 + - uid: 12209 + components: + - type: Transform + pos: 17.5,50.5 + parent: 2 + - uid: 12210 + components: + - type: Transform + pos: 19.5,50.5 + parent: 2 + - uid: 12211 + components: + - type: Transform + pos: 21.5,50.5 + parent: 2 + - uid: 12212 + components: + - type: Transform + pos: 26.5,66.5 + parent: 2 + - uid: 12213 + components: + - type: Transform + pos: 29.5,59.5 + parent: 2 + - uid: 12214 + components: + - type: Transform + pos: 30.5,59.5 + parent: 2 + - uid: 12215 + components: + - type: Transform + pos: 31.5,59.5 + parent: 2 + - uid: 12216 + components: + - type: Transform + pos: 27.5,50.5 + parent: 2 + - uid: 12217 + components: + - type: Transform + pos: 28.5,50.5 + parent: 2 + - uid: 12218 + components: + - type: Transform + pos: 29.5,50.5 + parent: 2 + - uid: 12219 + components: + - type: Transform + pos: 29.5,51.5 + parent: 2 + - uid: 12220 + components: + - type: Transform + pos: 31.5,51.5 + parent: 2 + - uid: 12221 + components: + - type: Transform + pos: 31.5,50.5 + parent: 2 + - uid: 12222 + components: + - type: Transform + pos: 32.5,50.5 + parent: 2 + - uid: 12223 + components: + - type: Transform + pos: 33.5,50.5 + parent: 2 + - uid: 12224 + components: + - type: Transform + pos: 36.5,50.5 + parent: 2 + - uid: 12225 + components: + - type: Transform + pos: 37.5,50.5 + parent: 2 + - uid: 12226 + components: + - type: Transform + pos: 36.5,58.5 + parent: 2 + - uid: 12227 + components: + - type: Transform + pos: 35.5,58.5 + parent: 2 + - uid: 12228 + components: + - type: Transform + pos: 37.5,58.5 + parent: 2 + - uid: 12229 + components: + - type: Transform + pos: 35.5,65.5 + parent: 2 + - uid: 12230 + components: + - type: Transform + pos: 34.5,65.5 + parent: 2 + - uid: 12231 + components: + - type: Transform + pos: 34.5,66.5 + parent: 2 + - uid: 12232 + components: + - type: Transform + pos: 34.5,67.5 + parent: 2 + - uid: 12233 + components: + - type: Transform + pos: 31.5,65.5 + parent: 2 + - uid: 12234 + components: + - type: Transform + pos: 32.5,65.5 + parent: 2 + - uid: 12235 + components: + - type: Transform + pos: 32.5,67.5 + parent: 2 + - uid: 12236 + components: + - type: Transform + pos: 39.5,67.5 + parent: 2 + - uid: 12237 + components: + - type: Transform + pos: 46.5,64.5 + parent: 2 + - uid: 12238 + components: + - type: Transform + pos: 46.5,65.5 + parent: 2 + - uid: 12240 + components: + - type: Transform + pos: 55.5,59.5 + parent: 2 + - uid: 12241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,63.5 + parent: 2 + - uid: 12242 + components: + - type: Transform + pos: 61.5,36.5 + parent: 2 + - uid: 12243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,36.5 + parent: 2 + - uid: 12244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,36.5 + parent: 2 + - uid: 12245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,37.5 + parent: 2 + - uid: 12246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,40.5 + parent: 2 + - uid: 12247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,36.5 + parent: 2 + - uid: 12248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,36.5 + parent: 2 + - uid: 12249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,36.5 + parent: 2 + - uid: 12250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,36.5 + parent: 2 + - uid: 12251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,58.5 + parent: 2 + - uid: 12252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,57.5 + parent: 2 + - uid: 12253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,56.5 + parent: 2 + - uid: 12254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,59.5 + parent: 2 + - uid: 12255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,61.5 + parent: 2 + - uid: 12256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,63.5 + parent: 2 + - uid: 12257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,63.5 + parent: 2 + - uid: 12258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,65.5 + parent: 2 + - uid: 12259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,63.5 + parent: 2 + - uid: 12260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,64.5 + parent: 2 + - uid: 12261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,65.5 + parent: 2 + - uid: 12262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,65.5 + parent: 2 + - uid: 12263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,65.5 + parent: 2 + - uid: 12264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,63.5 + parent: 2 + - uid: 12265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,63.5 + parent: 2 + - uid: 12266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,63.5 + parent: 2 + - uid: 12267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,63.5 + parent: 2 + - uid: 12268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,63.5 + parent: 2 + - uid: 12269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,64.5 + parent: 2 + - uid: 12270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,65.5 + parent: 2 + - uid: 12271 + components: + - type: Transform + pos: 81.5,63.5 + parent: 2 + - uid: 12272 + components: + - type: Transform + pos: 76.5,63.5 + parent: 2 + - uid: 12273 + components: + - type: Transform + pos: 77.5,63.5 + parent: 2 + - uid: 12274 + components: + - type: Transform + pos: 78.5,63.5 + parent: 2 + - uid: 12275 + components: + - type: Transform + pos: 80.5,55.5 + parent: 2 + - uid: 12276 + components: + - type: Transform + pos: 80.5,56.5 + parent: 2 + - uid: 12277 + components: + - type: Transform + pos: 80.5,57.5 + parent: 2 + - uid: 12278 + components: + - type: Transform + pos: 81.5,58.5 + parent: 2 + - uid: 12279 + components: + - type: Transform + pos: 81.5,53.5 + parent: 2 + - uid: 12280 + components: + - type: Transform + pos: 84.5,42.5 + parent: 2 + - uid: 12281 + components: + - type: Transform + pos: 69.5,46.5 + parent: 2 + - uid: 12282 + components: + - type: Transform + pos: 69.5,42.5 + parent: 2 + - uid: 12283 + components: + - type: Transform + pos: 72.5,42.5 + parent: 2 + - uid: 12284 + components: + - type: Transform + pos: 84.5,43.5 + parent: 2 + - uid: 12285 + components: + - type: Transform + pos: 84.5,44.5 + parent: 2 + - uid: 12286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,29.5 + parent: 2 + - uid: 12287 + components: + - type: Transform + pos: 79.5,44.5 + parent: 2 + - uid: 12288 + components: + - type: Transform + pos: 79.5,42.5 + parent: 2 + - uid: 12289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,38.5 + parent: 2 + - uid: 12290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,39.5 + parent: 2 + - uid: 12291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,33.5 + parent: 2 + - uid: 12292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,35.5 + parent: 2 + - uid: 12293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,33.5 + parent: 2 + - uid: 12294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,35.5 + parent: 2 + - uid: 12295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,28.5 + parent: 2 + - uid: 12296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,28.5 + parent: 2 + - uid: 12297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,29.5 + parent: 2 + - uid: 12298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,29.5 + parent: 2 + - uid: 12299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,37.5 + parent: 2 + - uid: 12300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,36.5 + parent: 2 + - uid: 12301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,35.5 + parent: 2 + - uid: 12302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,34.5 + parent: 2 + - uid: 12303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,33.5 + parent: 2 + - uid: 12304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,32.5 + parent: 2 + - uid: 12305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,31.5 + parent: 2 + - uid: 12306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,39.5 + parent: 2 + - uid: 12307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,39.5 + parent: 2 + - uid: 12308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,39.5 + parent: 2 + - uid: 12309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,22.5 + parent: 2 + - uid: 12310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,23.5 + parent: 2 + - uid: 12311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,24.5 + parent: 2 + - uid: 12312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,25.5 + parent: 2 + - uid: 12313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,23.5 + parent: 2 + - uid: 12314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,15.5 + parent: 2 + - uid: 12315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,17.5 + parent: 2 + - uid: 12316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,8.5 + parent: 2 + - uid: 12317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,8.5 + parent: 2 + - uid: 12318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,8.5 + parent: 2 + - uid: 12319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,1.5 + parent: 2 + - uid: 12320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,2.5 + parent: 2 + - uid: 12321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,3.5 + parent: 2 + - uid: 12322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,4.5 + parent: 2 + - uid: 12323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,5.5 + parent: 2 + - uid: 12324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,6.5 + parent: 2 + - uid: 12325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,1.5 + parent: 2 + - uid: 12326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-0.5 + parent: 2 + - uid: 12327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-0.5 + parent: 2 + - uid: 12328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-0.5 + parent: 2 + - uid: 12329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-4.5 + parent: 2 + - uid: 12330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-3.5 + parent: 2 + - uid: 12331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-2.5 + parent: 2 + - uid: 12332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,2.5 + parent: 2 + - uid: 12333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,7.5 + parent: 2 + - uid: 12334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,7.5 + parent: 2 + - uid: 12335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,7.5 + parent: 2 + - uid: 12336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,7.5 + parent: 2 + - uid: 12337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,7.5 + parent: 2 + - uid: 12338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,5.5 + parent: 2 + - uid: 12339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,5.5 + parent: 2 + - uid: 12340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,5.5 + parent: 2 + - uid: 12341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,6.5 + parent: 2 + - uid: 12342 + components: + - type: Transform + pos: 68.5,13.5 + parent: 2 + - uid: 12343 + components: + - type: Transform + pos: 68.5,14.5 + parent: 2 + - uid: 12344 + components: + - type: Transform + pos: 68.5,15.5 + parent: 2 + - uid: 12345 + components: + - type: Transform + pos: 71.5,12.5 + parent: 2 + - uid: 12346 + components: + - type: Transform + pos: 73.5,12.5 + parent: 2 + - uid: 12347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,65.5 + parent: 2 + - uid: 12348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,32.5 + parent: 2 + - uid: 12349 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 12350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,17.5 + parent: 2 + - uid: 12351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,37.5 + parent: 2 + - uid: 12352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,38.5 + parent: 2 + - uid: 12353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,39.5 + parent: 2 + - uid: 12354 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 + - uid: 12355 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 12356 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 + - uid: 12357 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 2 + - uid: 12358 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 2 + - uid: 12359 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 2 + - uid: 12360 + components: + - type: Transform + pos: 32.5,11.5 + parent: 2 + - uid: 12361 + components: + - type: Transform + pos: 32.5,9.5 + parent: 2 + - uid: 12362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,22.5 + parent: 2 + - uid: 12363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,22.5 + parent: 2 + - uid: 12364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,36.5 + parent: 2 + - uid: 12365 + components: + - type: Transform + pos: 67.5,24.5 + parent: 2 + - uid: 12366 + components: + - type: Transform + pos: 67.5,25.5 + parent: 2 + - uid: 12367 + components: + - type: Transform + pos: 81.5,50.5 + parent: 2 + - uid: 12368 + components: + - type: Transform + pos: 81.5,49.5 + parent: 2 + - uid: 12369 + components: + - type: Transform + pos: 81.5,51.5 + parent: 2 + - uid: 12370 + components: + - type: Transform + pos: -32.5,32.5 + parent: 2 + - uid: 12371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,24.5 + parent: 2 + - uid: 12372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,23.5 + parent: 2 + - uid: 12373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,21.5 + parent: 2 + - uid: 12374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,21.5 + parent: 2 + - uid: 12375 + components: + - type: Transform + pos: -1.5,31.5 + parent: 2 + - uid: 12376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,28.5 + parent: 2 + - uid: 12377 + components: + - type: Transform + pos: -1.5,29.5 + parent: 2 + - uid: 12378 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - uid: 12379 + components: + - type: Transform + pos: 16.5,33.5 + parent: 2 + - uid: 12380 + components: + - type: Transform + pos: 13.5,33.5 + parent: 2 + - uid: 12381 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - uid: 12382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-11.5 + parent: 2 + - uid: 12383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-11.5 + parent: 2 + - uid: 12384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-10.5 + parent: 2 + - uid: 12385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-10.5 + parent: 2 + - uid: 12386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 2 + - uid: 12387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-11.5 + parent: 2 + - uid: 12388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-12.5 + parent: 2 + - uid: 12389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-12.5 + parent: 2 + - uid: 12390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-11.5 + parent: 2 + - uid: 12391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-12.5 + parent: 2 + - uid: 12542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,75.5 + parent: 2 + - uid: 13129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,30.5 + parent: 2 + - uid: 15067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,75.5 + parent: 2 + - uid: 16526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,76.5 + parent: 2 + - uid: 16847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,59.5 + parent: 2 + - uid: 17249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,76.5 + parent: 2 + - uid: 17823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,75.5 + parent: 2 + - uid: 18640 + components: + - type: Transform + pos: -6.5,19.5 + parent: 2 + - uid: 18945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,75.5 + parent: 2 +- proto: GrilleSpawner + entities: + - uid: 6002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,80.5 + parent: 2 + - uid: 6061 + components: + - type: Transform + pos: 88.5,5.5 + parent: 2 + - uid: 6062 + components: + - type: Transform + pos: 88.5,6.5 + parent: 2 + - uid: 6073 + components: + - type: Transform + pos: 88.5,2.5 + parent: 2 + - uid: 8530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,78.5 + parent: 2 + - uid: 8531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,79.5 + parent: 2 + - uid: 8532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,80.5 + parent: 2 + - uid: 8533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,80.5 + parent: 2 + - uid: 8534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,80.5 + parent: 2 + - uid: 12392 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 2 + - uid: 12393 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 + - uid: 12394 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 2 + - uid: 12395 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - uid: 12396 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - uid: 12397 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 12398 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 12399 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 2 + - uid: 12400 + components: + - type: Transform + pos: -31.5,-10.5 + parent: 2 + - uid: 12401 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 2 + - uid: 12402 + components: + - type: Transform + pos: -20.5,-17.5 + parent: 2 + - uid: 12403 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 2 + - uid: 12404 + components: + - type: Transform + pos: -32.5,-14.5 + parent: 2 + - uid: 12405 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 2 + - uid: 12406 + components: + - type: Transform + pos: -32.5,-16.5 + parent: 2 + - uid: 12407 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 2 + - uid: 12408 + components: + - type: Transform + pos: -30.5,-18.5 + parent: 2 + - uid: 12409 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 2 + - uid: 12410 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 2 + - uid: 12411 + components: + - type: Transform + pos: -20.5,-18.5 + parent: 2 + - uid: 12412 + components: + - type: Transform + pos: -31.5,-18.5 + parent: 2 + - uid: 12413 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 2 + - uid: 12414 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 2 + - uid: 12415 + components: + - type: Transform + pos: -24.5,-20.5 + parent: 2 + - uid: 12416 + components: + - type: Transform + pos: -22.5,-20.5 + parent: 2 + - uid: 12417 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 2 + - uid: 12418 + components: + - type: Transform + pos: -21.5,-19.5 + parent: 2 + - uid: 12419 + components: + - type: Transform + pos: -23.5,-20.5 + parent: 2 + - uid: 12420 + components: + - type: Transform + pos: -32.5,-18.5 + parent: 2 + - uid: 12421 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 2 + - uid: 12422 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 2 + - uid: 12423 + components: + - type: Transform + pos: -20.5,-13.5 + parent: 2 + - uid: 12424 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 2 + - uid: 12425 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 2 + - uid: 12426 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 2 + - uid: 12427 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 2 + - uid: 12428 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 2 + - uid: 12429 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 2 + - uid: 12430 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 2 + - uid: 12431 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 2 + - uid: 12432 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 2 + - uid: 12433 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - uid: 12434 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 2 + - uid: 12435 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - uid: 12436 + components: + - type: Transform + pos: 49.5,-24.5 + parent: 2 + - uid: 12437 + components: + - type: Transform + pos: 49.5,-25.5 + parent: 2 + - uid: 12438 + components: + - type: Transform + pos: 49.5,-26.5 + parent: 2 + - uid: 12439 + components: + - type: Transform + pos: 50.5,-26.5 + parent: 2 + - uid: 12440 + components: + - type: Transform + pos: 51.5,-26.5 + parent: 2 + - uid: 12441 + components: + - type: Transform + pos: 52.5,-26.5 + parent: 2 + - uid: 12442 + components: + - type: Transform + pos: 53.5,-26.5 + parent: 2 + - uid: 12443 + components: + - type: Transform + pos: 53.5,-25.5 + parent: 2 + - uid: 12444 + components: + - type: Transform + pos: 53.5,-24.5 + parent: 2 + - uid: 12445 + components: + - type: Transform + pos: 54.5,-24.5 + parent: 2 + - uid: 12446 + components: + - type: Transform + pos: 46.5,-24.5 + parent: 2 + - uid: 12447 + components: + - type: Transform + pos: 45.5,-24.5 + parent: 2 + - uid: 12448 + components: + - type: Transform + pos: 44.5,-24.5 + parent: 2 + - uid: 12449 + components: + - type: Transform + pos: 43.5,-24.5 + parent: 2 + - uid: 12450 + components: + - type: Transform + pos: 43.5,-17.5 + parent: 2 + - uid: 12451 + components: + - type: Transform + pos: 43.5,-23.5 + parent: 2 + - uid: 12452 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 2 + - uid: 12453 + components: + - type: Transform + pos: 43.5,-21.5 + parent: 2 + - uid: 12454 + components: + - type: Transform + pos: 43.5,-20.5 + parent: 2 + - uid: 12455 + components: + - type: Transform + pos: 43.5,-19.5 + parent: 2 + - uid: 12456 + components: + - type: Transform + pos: 43.5,-15.5 + parent: 2 + - uid: 12457 + components: + - type: Transform + pos: 43.5,-14.5 + parent: 2 + - uid: 12458 + components: + - type: Transform + pos: 43.5,-13.5 + parent: 2 + - uid: 12459 + components: + - type: Transform + pos: 43.5,-12.5 + parent: 2 + - uid: 12460 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 2 + - uid: 12461 + components: + - type: Transform + pos: 59.5,-11.5 + parent: 2 + - uid: 12462 + components: + - type: Transform + pos: 59.5,-12.5 + parent: 2 + - uid: 12463 + components: + - type: Transform + pos: 59.5,-13.5 + parent: 2 + - uid: 12464 + components: + - type: Transform + pos: 59.5,-14.5 + parent: 2 + - uid: 12465 + components: + - type: Transform + pos: 59.5,-17.5 + parent: 2 + - uid: 12466 + components: + - type: Transform + pos: 59.5,-19.5 + parent: 2 + - uid: 12467 + components: + - type: Transform + pos: 59.5,-20.5 + parent: 2 + - uid: 12468 + components: + - type: Transform + pos: 59.5,-21.5 + parent: 2 + - uid: 12469 + components: + - type: Transform + pos: 59.5,-22.5 + parent: 2 + - uid: 12470 + components: + - type: Transform + pos: 59.5,-23.5 + parent: 2 + - uid: 12471 + components: + - type: Transform + pos: 59.5,-24.5 + parent: 2 + - uid: 12472 + components: + - type: Transform + pos: 58.5,-24.5 + parent: 2 + - uid: 12473 + components: + - type: Transform + pos: 57.5,-24.5 + parent: 2 + - uid: 12474 + components: + - type: Transform + pos: 30.5,81.5 + parent: 2 + - uid: 12475 + components: + - type: Transform + pos: 31.5,81.5 + parent: 2 + - uid: 12476 + components: + - type: Transform + pos: 31.5,82.5 + parent: 2 + - uid: 12477 + components: + - type: Transform + pos: 31.5,83.5 + parent: 2 + - uid: 12478 + components: + - type: Transform + pos: 32.5,83.5 + parent: 2 + - uid: 12479 + components: + - type: Transform + pos: 33.5,83.5 + parent: 2 + - uid: 12480 + components: + - type: Transform + pos: 34.5,83.5 + parent: 2 + - uid: 12481 + components: + - type: Transform + pos: 35.5,83.5 + parent: 2 + - uid: 12482 + components: + - type: Transform + pos: 35.5,82.5 + parent: 2 + - uid: 12483 + components: + - type: Transform + pos: 35.5,81.5 + parent: 2 + - uid: 12484 + components: + - type: Transform + pos: 41.5,80.5 + parent: 2 + - uid: 12485 + components: + - type: Transform + pos: 38.5,81.5 + parent: 2 + - uid: 12486 + components: + - type: Transform + pos: 39.5,81.5 + parent: 2 + - uid: 12487 + components: + - type: Transform + pos: 40.5,81.5 + parent: 2 + - uid: 12488 + components: + - type: Transform + pos: 41.5,81.5 + parent: 2 + - uid: 12489 + components: + - type: Transform + pos: 41.5,72.5 + parent: 2 + - uid: 12490 + components: + - type: Transform + pos: 41.5,79.5 + parent: 2 + - uid: 12491 + components: + - type: Transform + pos: 41.5,78.5 + parent: 2 + - uid: 12492 + components: + - type: Transform + pos: 41.5,77.5 + parent: 2 + - uid: 12493 + components: + - type: Transform + pos: 41.5,76.5 + parent: 2 + - uid: 12494 + components: + - type: Transform + pos: 41.5,74.5 + parent: 2 + - uid: 12495 + components: + - type: Transform + pos: 41.5,71.5 + parent: 2 + - uid: 12496 + components: + - type: Transform + pos: 41.5,70.5 + parent: 2 + - uid: 12497 + components: + - type: Transform + pos: 41.5,69.5 + parent: 2 + - uid: 12498 + components: + - type: Transform + pos: 25.5,72.5 + parent: 2 + - uid: 12499 + components: + - type: Transform + pos: 25.5,71.5 + parent: 2 + - uid: 12500 + components: + - type: Transform + pos: 25.5,70.5 + parent: 2 + - uid: 12501 + components: + - type: Transform + pos: 25.5,69.5 + parent: 2 + - uid: 12502 + components: + - type: Transform + pos: 25.5,74.5 + parent: 2 + - uid: 12503 + components: + - type: Transform + pos: 25.5,76.5 + parent: 2 + - uid: 12504 + components: + - type: Transform + pos: 25.5,77.5 + parent: 2 + - uid: 12505 + components: + - type: Transform + pos: 25.5,78.5 + parent: 2 + - uid: 12506 + components: + - type: Transform + pos: 25.5,79.5 + parent: 2 + - uid: 12507 + components: + - type: Transform + pos: 25.5,80.5 + parent: 2 + - uid: 12508 + components: + - type: Transform + pos: 25.5,81.5 + parent: 2 + - uid: 12509 + components: + - type: Transform + pos: 26.5,81.5 + parent: 2 + - uid: 12510 + components: + - type: Transform + pos: 27.5,81.5 + parent: 2 + - uid: 12511 + components: + - type: Transform + pos: 86.5,44.5 + parent: 2 + - uid: 12512 + components: + - type: Transform + pos: 87.5,41.5 + parent: 2 + - uid: 12513 + components: + - type: Transform + pos: 90.5,38.5 + parent: 2 + - uid: 12514 + components: + - type: Transform + pos: 90.5,37.5 + parent: 2 + - uid: 12515 + components: + - type: Transform + pos: 90.5,36.5 + parent: 2 + - uid: 12516 + components: + - type: Transform + pos: 90.5,35.5 + parent: 2 + - uid: 12517 + components: + - type: Transform + pos: 90.5,34.5 + parent: 2 + - uid: 12518 + components: + - type: Transform + pos: 90.5,33.5 + parent: 2 + - uid: 12519 + components: + - type: Transform + pos: 90.5,32.5 + parent: 2 + - uid: 12520 + components: + - type: Transform + pos: 90.5,31.5 + parent: 2 + - uid: 12521 + components: + - type: Transform + pos: 90.5,30.5 + parent: 2 + - uid: 12522 + components: + - type: Transform + pos: 87.5,27.5 + parent: 2 + - uid: 12523 + components: + - type: Transform + pos: 86.5,45.5 + parent: 2 + - uid: 12524 + components: + - type: Transform + pos: 86.5,43.5 + parent: 2 + - uid: 12525 + components: + - type: Transform + pos: 86.5,42.5 + parent: 2 + - uid: 12526 + components: + - type: Transform + pos: 86.5,26.5 + parent: 2 + - uid: 12527 + components: + - type: Transform + pos: 86.5,25.5 + parent: 2 + - uid: 12528 + components: + - type: Transform + pos: 86.5,24.5 + parent: 2 + - uid: 12529 + components: + - type: Transform + pos: 86.5,23.5 + parent: 2 + - uid: 12530 + components: + - type: Transform + pos: 86.5,22.5 + parent: 2 + - uid: 12532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,74.5 + parent: 2 + - uid: 12533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,74.5 + parent: 2 + - uid: 12534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,74.5 + parent: 2 + - uid: 12535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,74.5 + parent: 2 + - uid: 12536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,74.5 + parent: 2 + - uid: 12537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,74.5 + parent: 2 + - uid: 12540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,76.5 + parent: 2 + - uid: 12547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,74.5 + parent: 2 + - uid: 12550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,76.5 + parent: 2 + - uid: 12551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,76.5 + parent: 2 + - uid: 12552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,76.5 + parent: 2 + - uid: 12553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,76.5 + parent: 2 + - uid: 12554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,76.5 + parent: 2 + - uid: 12555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,76.5 + parent: 2 + - uid: 12556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,76.5 + parent: 2 + - uid: 12557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,76.5 + parent: 2 + - uid: 12558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,69.5 + parent: 2 + - uid: 12562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,80.5 + parent: 2 + - uid: 12565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,78.5 + parent: 2 + - uid: 12566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,78.5 + parent: 2 + - uid: 12567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,79.5 + parent: 2 + - uid: 12568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,81.5 + parent: 2 + - uid: 12569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,81.5 + parent: 2 + - uid: 12571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,80.5 + parent: 2 + - uid: 12572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,79.5 + parent: 2 + - uid: 13839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,77.5 + parent: 2 + - uid: 17450 + components: + - type: Transform + pos: 88.5,1.5 + parent: 2 + - uid: 17916 + components: + - type: Transform + pos: 83.5,-9.5 + parent: 2 + - uid: 17919 + components: + - type: Transform + pos: 84.5,-9.5 + parent: 2 + - uid: 17920 + components: + - type: Transform + pos: 86.5,-9.5 + parent: 2 + - uid: 17921 + components: + - type: Transform + pos: 77.5,-9.5 + parent: 2 + - uid: 17923 + components: + - type: Transform + pos: 88.5,13.5 + parent: 2 + - uid: 17924 + components: + - type: Transform + pos: 88.5,8.5 + parent: 2 + - uid: 17925 + components: + - type: Transform + pos: 80.5,13.5 + parent: 2 + - uid: 17926 + components: + - type: Transform + pos: 81.5,13.5 + parent: 2 + - uid: 17927 + components: + - type: Transform + pos: 88.5,7.5 + parent: 2 + - uid: 17928 + components: + - type: Transform + pos: 79.5,13.5 + parent: 2 + - uid: 17929 + components: + - type: Transform + pos: 85.5,13.5 + parent: 2 + - uid: 17930 + components: + - type: Transform + pos: 86.5,13.5 + parent: 2 + - uid: 17931 + components: + - type: Transform + pos: 88.5,-1.5 + parent: 2 + - uid: 17933 + components: + - type: Transform + pos: 88.5,-4.5 + parent: 2 + - uid: 17934 + components: + - type: Transform + pos: 88.5,-2.5 + parent: 2 + - uid: 17935 + components: + - type: Transform + pos: 88.5,-5.5 + parent: 2 + - uid: 17938 + components: + - type: Transform + pos: 88.5,4.5 + parent: 2 + - uid: 17940 + components: + - type: Transform + pos: 88.5,0.5 + parent: 2 + - uid: 17941 + components: + - type: Transform + pos: 88.5,10.5 + parent: 2 + - uid: 17943 + components: + - type: Transform + pos: 88.5,11.5 + parent: 2 + - uid: 17977 + components: + - type: Transform + pos: 88.5,9.5 + parent: 2 + - uid: 17978 + components: + - type: Transform + pos: 88.5,-0.5 + parent: 2 + - uid: 17982 + components: + - type: Transform + pos: 84.5,13.5 + parent: 2 + - uid: 17983 + components: + - type: Transform + pos: 82.5,13.5 + parent: 2 + - uid: 17984 + components: + - type: Transform + pos: 88.5,12.5 + parent: 2 + - uid: 17985 + components: + - type: Transform + pos: 88.5,-3.5 + parent: 2 + - uid: 17986 + components: + - type: Transform + pos: 88.5,3.5 + parent: 2 + - uid: 17992 + components: + - type: Transform + pos: 83.5,13.5 + parent: 2 + - uid: 18528 + components: + - type: Transform + pos: 80.5,-9.5 + parent: 2 + - uid: 18553 + components: + - type: Transform + pos: 79.5,-9.5 + parent: 2 + - uid: 18554 + components: + - type: Transform + pos: 78.5,-9.5 + parent: 2 + - uid: 18555 + components: + - type: Transform + pos: 82.5,-9.5 + parent: 2 + - uid: 18586 + components: + - type: Transform + pos: 85.5,-9.5 + parent: 2 + - uid: 19373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,75.5 + parent: 2 + - uid: 19374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,73.5 + parent: 2 + - uid: 19375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,72.5 + parent: 2 + - uid: 19376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,71.5 + parent: 2 +- proto: GunSafeDisabler + entities: + - uid: 12574 + components: + - type: Transform + pos: -19.5,60.5 + parent: 2 +- proto: GunSafePistolMk58 + entities: + - uid: 12575 + components: + - type: Transform + pos: 31.5,55.5 + parent: 2 +- proto: GunSafeShotgunKammerer + entities: + - uid: 12576 + components: + - type: Transform + pos: -16.5,70.5 + parent: 2 +- proto: GyroscopeMachineCircuitboard + entities: + - uid: 12577 + components: + - type: Transform + pos: -26.259409,43.23342 + parent: 2 +- proto: Handcuffs + entities: + - uid: 12578 + components: + - type: Transform + pos: -4.221366,15.508125 + parent: 2 + - uid: 12579 + components: + - type: Transform + pos: -4.427536,29.449837 + parent: 2 + - uid: 12580 + components: + - type: Transform + pos: -25.60279,61.44794 + parent: 2 + - uid: 12581 + components: + - type: Transform + pos: -13.513405,51.524147 + parent: 2 + - uid: 12582 + components: + - type: Transform + pos: 46.58424,14.506506 + parent: 2 + - uid: 12583 + components: + - type: Transform + pos: -26.431564,53.556343 + parent: 2 + - uid: 12584 + components: + - type: Transform + pos: 70.45517,13.657604 + parent: 2 + - uid: 12585 + components: + - type: Transform + pos: 3.4970489,27.484295 + parent: 2 +- proto: HandheldHealthAnalyzer + entities: + - uid: 12586 + components: + - type: Transform + pos: 55.46016,19.624624 + parent: 2 + - uid: 12587 + components: + - type: Transform + pos: -27.474733,50.52622 + parent: 2 + - uid: 12588 + components: + - type: Transform + pos: -5.4911914,57.57545 + parent: 2 + - uid: 12589 + components: + - type: Transform + pos: 26.474176,35.5409 + parent: 2 +- proto: HandheldStationMap + entities: + - uid: 12590 + components: + - type: Transform + pos: 31.512169,56.662724 + parent: 2 + - uid: 12591 + components: + - type: Transform + pos: 42.494133,28.545658 + parent: 2 +- proto: HandLabeler + entities: + - uid: 12592 + components: + - type: Transform + pos: 0.54611063,12.651349 + parent: 2 + - uid: 12593 + components: + - type: Transform + pos: 5.669695,37.47469 + parent: 2 + - uid: 12594 + components: + - type: Transform + pos: 78.72532,42.456882 + parent: 2 +- proto: HeadSkeleton + entities: + - uid: 12595 + components: + - type: Transform + pos: 28.59336,23.459768 + parent: 2 +- proto: HeatExchanger + entities: + - uid: 12596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,40.5 + parent: 2 + - uid: 12597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,40.5 + parent: 2 + - uid: 18235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,40.5 + parent: 2 + - uid: 18238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,40.5 + parent: 2 +- proto: HighSecCommandLocked + entities: + - uid: 12599 + components: + - type: Transform + pos: -31.5,29.5 + parent: 2 + - uid: 12600 + components: + - type: Transform + pos: -18.5,42.5 + parent: 2 + - uid: 12601 + components: + - type: Transform + pos: -6.5,44.5 + parent: 2 + - uid: 12602 + components: + - type: Transform + pos: 30.5,52.5 + parent: 2 + - uid: 12603 + components: + - type: Transform + pos: 30.5,50.5 + parent: 2 + - uid: 12604 + components: + - type: Transform + pos: 41.5,32.5 + parent: 2 + - uid: 12605 + components: + - type: Transform + pos: 41.5,30.5 + parent: 2 + - uid: 12606 + components: + - type: Transform + pos: -31.5,33.5 + parent: 2 + - uid: 12607 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 2 + - uid: 12608 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 2 + - uid: 12609 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 +- proto: HospitalCurtains + entities: + - uid: 7436 + components: + - type: Transform + pos: 74.5,23.5 + parent: 2 +- proto: HospitalCurtainsOpen + entities: + - uid: 12610 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - uid: 12611 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - uid: 12612 + components: + - type: Transform + pos: 19.5,14.5 + parent: 2 + - uid: 12614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,35.5 + parent: 2 + - uid: 12615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,34.5 + parent: 2 + - uid: 12616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,34.5 + parent: 2 + - uid: 12617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,34.5 + parent: 2 + - uid: 12618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,34.5 + parent: 2 + - uid: 12619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,34.5 + parent: 2 +- proto: hydroponicsSoil + entities: + - uid: 12620 + components: + - type: Transform + pos: 8.5,76.5 + parent: 2 + - uid: 12621 + components: + - type: Transform + pos: 8.5,75.5 + parent: 2 + - uid: 12622 + components: + - type: Transform + pos: 8.5,74.5 + parent: 2 + - uid: 12623 + components: + - type: Transform + pos: 8.5,73.5 + parent: 2 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 12627 + components: + - type: Transform + pos: -34.547028,74.51389 + parent: 2 +- proto: HydroponicsToolSpade + entities: + - uid: 7309 + components: + - type: Transform + pos: -34.471077,74.57086 + parent: 2 +- proto: hydroponicsTray + entities: + - uid: 5064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,76.5 + parent: 2 + - uid: 5065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,77.5 + parent: 2 + - uid: 5066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,76.5 + parent: 2 + - uid: 12074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,77.5 + parent: 2 + - uid: 12075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,76.5 + parent: 2 + - uid: 12076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,76.5 + parent: 2 + - uid: 12626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,39.5 + parent: 2 + - uid: 12631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,44.5 + parent: 2 + - uid: 12632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,43.5 + parent: 2 + - uid: 12633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,43.5 + parent: 2 + - uid: 12634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,43.5 + parent: 2 + - uid: 12635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,40.5 + parent: 2 + - uid: 12636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,42.5 + parent: 2 + - uid: 12637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,40.5 + parent: 2 + - uid: 12638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,42.5 + parent: 2 + - uid: 12639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,39.5 + parent: 2 +- proto: IDComputerCircuitboard + entities: + - uid: 12640 + components: + - type: Transform + pos: -8.467238,45.59177 + parent: 2 + - uid: 12641 + components: + - type: Transform + pos: 29.539917,54.538994 + parent: 2 +- proto: IngotGold + entities: + - uid: 12642 + components: + - type: Transform + pos: 31.374626,54.707325 + parent: 2 +- proto: IngotSilver + entities: + - uid: 12643 + components: + - type: Transform + pos: 31.711527,54.679268 + parent: 2 +- proto: IntercomAll + entities: + - uid: 12644 + components: + - type: Transform + pos: 39.5,30.5 + parent: 2 + - uid: 12645 + components: + - type: Transform + pos: 83.5,23.5 + parent: 2 + - uid: 12646 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 + - uid: 12647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-11.5 + parent: 2 + - uid: 12648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-12.5 + parent: 2 + - uid: 12649 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - uid: 12990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,27.5 + parent: 2 +- proto: IntercomCommand + entities: + - uid: 12652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,0.5 + parent: 2 +- proto: IntercomEngineering + entities: + - uid: 12653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,32.5 + parent: 2 +- proto: IntercomMedical + entities: + - uid: 12654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,46.5 + parent: 2 + - uid: 12655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,34.5 + parent: 2 +- proto: IntercomScience + entities: + - uid: 12656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,23.5 + parent: 2 + - uid: 12657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-0.5 + parent: 2 +- proto: IntercomSecurity + entities: + - uid: 12658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,32.5 + parent: 2 + - uid: 12659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,30.5 + parent: 2 + - uid: 12660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,15.5 + parent: 2 + - uid: 12661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,16.5 + parent: 2 + - uid: 12662 + components: + - type: Transform + pos: -10.5,50.5 + parent: 2 +- proto: IntercomService + entities: + - uid: 12651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,39.5 + parent: 2 +- proto: IntercomSupply + entities: + - uid: 12663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,14.5 + parent: 2 +- proto: JanitorialTrolley + entities: + - uid: 12664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,54.5 + parent: 2 + - uid: 12665 + components: + - type: Transform + pos: 40.5,54.5 + parent: 2 +- proto: JanitorServiceLight + entities: + - uid: 12666 + components: + - type: Transform + pos: 39.5,49.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14465 +- proto: JetpackMiniFilled + entities: + - uid: 12667 + components: + - type: Transform + pos: 74.401764,45.590862 + parent: 2 + - uid: 12668 + components: + - type: Transform + pos: 74.401764,45.590862 + parent: 2 + - uid: 12669 + components: + - type: Transform + pos: 74.373695,42.490692 + parent: 2 + - uid: 12670 + components: + - type: Transform + pos: 74.373695,42.490692 + parent: 2 +- proto: KitchenElectricGrill + entities: + - uid: 12671 + components: + - type: Transform + pos: 2.5,55.5 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 12672 + components: + - type: Transform + pos: -25.5,60.5 + parent: 2 + - uid: 12673 + components: + - type: Transform + pos: 52.5,46.5 + parent: 2 + - uid: 12674 + components: + - type: Transform + pos: 3.5,41.5 + parent: 2 + - uid: 12675 + components: + - type: Transform + pos: 43.5,66.5 + parent: 2 + - uid: 19509 + components: + - type: Transform + pos: -30.5,73.5 + parent: 2 +- proto: KitchenReagentGrinder + entities: + - uid: 12676 + components: + - type: Transform + pos: 10.5,27.5 + parent: 2 + - uid: 12677 + components: + - type: Transform + pos: 44.5,45.5 + parent: 2 + - uid: 12678 + components: + - type: Transform + pos: 57.5,44.5 + parent: 2 + - uid: 12679 + components: + - type: Transform + pos: 59.5,44.5 + parent: 2 + - uid: 12680 + components: + - type: Transform + pos: 27.5,38.5 + parent: 2 + - uid: 19506 + components: + - type: Transform + pos: -30.5,74.5 + parent: 2 +- proto: KitchenSpike + entities: + - uid: 12681 + components: + - type: Transform + pos: 55.5,48.5 + parent: 2 +- proto: LampBanana + entities: + - uid: 12682 + components: + - type: Transform + pos: 40.256474,43.92007 + parent: 2 +- proto: LampGold + entities: + - uid: 478 + components: + - type: Transform + pos: 32.40501,5.974651 + parent: 2 + - uid: 12683 + components: + - type: Transform + pos: -20.685608,54.091194 + parent: 2 + - uid: 12684 + components: + - type: Transform + pos: -24.712593,53.125984 + parent: 2 + - uid: 12685 + components: + - type: Transform + pos: 19.448418,17.908178 + parent: 2 + - uid: 12686 + components: + - type: Transform + pos: 1.0715826,61.091324 + parent: 2 + - uid: 12687 + components: + - type: Transform + pos: 2.272709,52.035137 + parent: 2 + - uid: 12688 + components: + - type: Transform + pos: 6.245478,73.22133 + parent: 2 + - uid: 12689 + components: + - type: Transform + pos: 8.467784,60.831596 + parent: 2 + - uid: 12690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.828588,60.09394 + parent: 2 + - uid: 12691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.84656,52.121628 + parent: 2 + - uid: 12692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.817795,52.205795 + parent: 2 + - uid: 12693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.82771,55.964355 + parent: 2 + - uid: 12694 + components: + - type: Transform + pos: 31.234251,54.581074 + parent: 2 + - uid: 12695 + components: + - type: Transform + pos: 63.4618,15.331928 + parent: 2 +- proto: LampInterrogator + entities: + - uid: 12696 + components: + - type: Transform + pos: -8.448283,58.905025 + parent: 2 + - uid: 12697 + components: + - type: Transform + pos: -26.497074,54.5255 + parent: 2 +- proto: LargeBeaker + entities: + - uid: 12698 + components: + - type: Transform + pos: 37.367184,7.6123457 + parent: 2 + - uid: 12699 + components: + - type: Transform + pos: 47.95627,31.730053 + parent: 2 + - uid: 12700 + components: + - type: Transform + pos: 47.723133,31.550842 + parent: 2 + - uid: 19510 + components: + - type: Transform + pos: -31.75021,74.85023 + parent: 2 + - uid: 19511 + components: + - type: Transform + pos: -31.598312,74.717316 + parent: 2 +- proto: LightPostSmall + entities: + - uid: 18612 + components: + - type: Transform + pos: 70.5,-15.5 + parent: 2 + - uid: 18613 + components: + - type: Transform + pos: 76.5,-15.5 + parent: 2 + - uid: 18614 + components: + - type: Transform + pos: 76.5,-11.5 + parent: 2 + - uid: 18615 + components: + - type: Transform + pos: 70.5,-11.5 + parent: 2 + - uid: 18616 + components: + - type: Transform + pos: 70.5,-8.5 + parent: 2 + - uid: 18617 + components: + - type: Transform + pos: 76.5,-8.5 + parent: 2 +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 12702 + components: + - type: Transform + pos: -10.5,24.5 + parent: 2 + - uid: 12703 + components: + - type: Transform + pos: -10.5,23.5 + parent: 2 + - uid: 12704 + components: + - type: Transform + pos: -10.5,22.5 + parent: 2 +- proto: LockerBooze + entities: + - uid: 12705 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 12706 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - uid: 12707 + components: + - type: Transform + pos: 17.5,15.5 + parent: 2 + - uid: 12708 + components: + - type: Transform + pos: 58.5,25.5 + parent: 2 +- proto: LockerBoozeFilled + entities: + - uid: 12709 + components: + - type: Transform + pos: 62.5,44.5 + parent: 2 + - uid: 12710 + components: + - type: Transform + pos: 49.5,59.5 + parent: 2 +- proto: LockerBotanistFilled + entities: + - uid: 12711 + components: + - type: Transform + pos: 46.5,48.5 + parent: 2 + - uid: 12712 + components: + - type: Transform + pos: 46.5,47.5 + parent: 2 + - uid: 12713 + components: + - type: Transform + pos: 44.5,44.5 + parent: 2 +- proto: LockerBrigmedicFilledHardsuit + entities: + - uid: 12714 + components: + - type: Transform + pos: -3.5,57.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerCaptain + entities: + - uid: 12715 + components: + - type: Transform + pos: 78.5,28.5 + parent: 2 +- proto: LockerCaptainFilled + entities: + - uid: 12716 + components: + - type: Transform + pos: 78.5,26.5 + parent: 2 +- proto: LockerChemistryFilled + entities: + - uid: 12717 + components: + - type: Transform + pos: 8.5,23.5 + parent: 2 + - uid: 12718 + components: + - type: Transform + pos: 7.5,23.5 + parent: 2 +- proto: LockerChiefEngineerFilled + entities: + - uid: 12719 + components: + - type: Transform + pos: -2.5,26.5 + parent: 2 +- proto: LockerChiefMedicalOfficerFilled + entities: + - uid: 12720 + components: + - type: Transform + pos: 19.5,40.5 + parent: 2 +- proto: LockerClown + entities: + - uid: 742 + components: + - type: Transform + pos: 42.5,45.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 751 + - 761 + - 762 + - 759 + - 756 + - 749 + - 753 + - 758 + - 763 + - 764 + - 765 + - 748 + - 750 + - 757 + - 755 + - 760 + - 743 + - 752 + - 746 + - 754 + - 745 + - 744 + - 767 + - 747 + - 766 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerDetectiveFilled + entities: + - uid: 12721 + components: + - type: Transform + pos: 2.5,60.5 + parent: 2 +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 12722 + components: + - type: Transform + pos: -6.5,38.5 + parent: 2 + - uid: 12723 + components: + - type: Transform + pos: -6.5,38.5 + parent: 2 +- proto: LockerEngineerFilled + entities: + - uid: 12724 + components: + - type: Transform + pos: -8.5,32.5 + parent: 2 + - uid: 12725 + components: + - type: Transform + pos: -8.5,33.5 + parent: 2 + - uid: 12726 + components: + - type: Transform + pos: -8.5,35.5 + parent: 2 + - uid: 12727 + components: + - type: Transform + pos: -8.5,36.5 + parent: 2 +- proto: LockerEvidence + entities: + - uid: 12728 + components: + - type: Transform + pos: -7.5,54.5 + parent: 2 + - uid: 12729 + components: + - type: Transform + pos: -3.5,54.5 + parent: 2 + - uid: 12730 + components: + - type: Transform + pos: 0.5,54.5 + parent: 2 +- proto: LockerForensicMantisFilled + entities: + - uid: 829 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 +- proto: LockerFreezer + entities: + - uid: 12731 + components: + - type: Transform + pos: 52.5,48.5 + parent: 2 + - uid: 12732 + components: + - type: Transform + pos: 52.5,49.5 + parent: 2 + - uid: 12733 + components: + - type: Transform + pos: 57.5,43.5 + parent: 2 +- proto: LockerFreezerVaultFilled + entities: + - uid: 12734 + components: + - type: Transform + pos: 29.5,53.5 + parent: 2 +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 12735 + components: + - type: Transform + pos: 77.5,40.5 + parent: 2 +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 12736 + components: + - type: Transform + pos: -20.5,55.5 + parent: 2 +- proto: LockerMedicalFilled + entities: + - uid: 12737 + components: + - type: Transform + pos: 7.5,41.5 + parent: 2 + - uid: 12738 + components: + - type: Transform + pos: 8.5,41.5 + parent: 2 + - uid: 12739 + components: + - type: Transform + pos: 9.5,37.5 + parent: 2 +- proto: LockerMedicineFilled + entities: + - uid: 12740 + components: + - type: Transform + pos: 10.5,30.5 + parent: 2 + - uid: 12741 + components: + - type: Transform + pos: 29.5,41.5 + parent: 2 + - uid: 12742 + components: + - type: Transform + pos: 29.5,43.5 + parent: 2 + - uid: 12743 + components: + - type: Transform + pos: 25.5,38.5 + parent: 2 + - uid: 12744 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 +- proto: LockerMime + entities: + - uid: 772 + components: + - type: Transform + pos: 40.5,42.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 781 + - 773 + - 779 + - 774 + - 783 + - 787 + - 788 + - 776 + - 782 + - 789 + - 775 + - 790 + - 795 + - 777 + - 780 + - 784 + - 786 + - 785 + - 791 + - 792 + - 793 + - 794 + - 778 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerParamedicFilled + entities: + - uid: 12745 + components: + - type: Transform + pos: 8.5,45.5 + parent: 2 + - uid: 12746 + components: + - type: Transform + pos: 8.5,44.5 + parent: 2 +- proto: LockerQuarterMasterFilled + entities: + - uid: 12747 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 +- proto: LockerResearchDirectorFilled + entities: + - uid: 12748 + components: + - type: Transform + pos: 53.5,17.5 + parent: 2 +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 12749 + components: + - type: Transform + pos: -11.5,4.5 + parent: 2 + - uid: 12750 + components: + - type: Transform + pos: -9.5,4.5 + parent: 2 + - uid: 12751 + components: + - type: Transform + pos: -10.5,4.5 + parent: 2 + - uid: 12752 + components: + - type: Transform + pos: -9.5,7.5 + parent: 2 +- proto: LockerScienceFilled + entities: + - uid: 12753 + components: + - type: Transform + pos: 44.5,20.5 + parent: 2 + - uid: 12754 + components: + - type: Transform + pos: 44.5,21.5 + parent: 2 + - uid: 12755 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 + - uid: 12756 + components: + - type: Transform + pos: 48.5,14.5 + parent: 2 + - uid: 12757 + components: + - type: Transform + pos: 48.5,15.5 + parent: 2 + - uid: 12758 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - uid: 12759 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 12760 + components: + - type: Transform + pos: 46.5,30.5 + parent: 2 +- proto: LockerSecurityFilled + entities: + - uid: 12761 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - uid: 12762 + components: + - type: Transform + pos: -4.5,31.5 + parent: 2 + - uid: 12763 + components: + - type: Transform + pos: -25.5,66.5 + parent: 2 + - uid: 12764 + components: + - type: Transform + pos: -25.5,67.5 + parent: 2 + - uid: 12765 + components: + - type: Transform + pos: -25.5,69.5 + parent: 2 + - uid: 12766 + components: + - type: Transform + pos: -25.5,70.5 + parent: 2 + - uid: 12767 + components: + - type: Transform + pos: 43.5,14.5 + parent: 2 + - uid: 12768 + components: + - type: Transform + pos: 6.5,26.5 + parent: 2 + - uid: 12769 + components: + - type: Transform + pos: 60.5,56.5 + parent: 2 + - uid: 12770 + components: + - type: Transform + pos: 69.5,15.5 + parent: 2 +- proto: LockerSteel + entities: + - uid: 883 + components: + - type: Transform + pos: 34.5,1.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 892 + - 893 + - 894 + - 889 + - 890 + - 884 + - 891 + - 885 + - 886 + - 887 + - 888 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSyndicatePersonal + entities: + - uid: 12771 + components: + - type: Transform + pos: -7.5,60.5 + parent: 2 +- proto: LockerWardenFilledHardsuit + entities: + - uid: 12772 + components: + - type: Transform + pos: -17.5,70.5 + parent: 2 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 12773 + components: + - type: Transform + pos: -7.5,38.5 + parent: 2 +- proto: LuxuryPen + entities: + - uid: 12774 + components: + - type: Transform + pos: -5.322667,25.958141 + parent: 2 + - uid: 12775 + components: + - type: Transform + pos: -19.621561,53.684982 + parent: 2 + - uid: 12776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.986338,59.546852 + parent: 2 +- proto: MachineAnomalyGenerator + entities: + - uid: 19363 + components: + - type: Transform + pos: 51.5,0.5 + parent: 2 +- proto: MachineAnomalyVessel + entities: + - uid: 12778 + components: + - type: Transform + pos: 57.5,0.5 + parent: 2 + - uid: 12779 + components: + - type: Transform + pos: 57.5,3.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 12780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,1.5 + parent: 2 + - uid: 12781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,0.5 + parent: 2 +- proto: MachineArtifactAnalyzer + entities: + - uid: 12782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,10.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7153 +- proto: MachineCentrifuge + entities: + - uid: 12783 + components: + - type: Transform + pos: 10.5,28.5 + parent: 2 +- proto: MachineElectrolysisUnit + entities: + - uid: 12784 + components: + - type: Transform + pos: 11.5,24.5 + parent: 2 +- proto: MachineFrame + entities: + - uid: 12785 + components: + - type: Transform + pos: 34.5,14.5 + parent: 2 + - uid: 12787 + components: + - type: Transform + pos: 48.5,25.5 + parent: 2 + - uid: 12788 + components: + - type: Transform + pos: 49.5,54.5 + parent: 2 + - uid: 12789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,24.5 + parent: 2 + - uid: 12790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,26.5 + parent: 2 + - uid: 12791 + components: + - type: Transform + pos: 49.5,61.5 + parent: 2 + - uid: 12792 + components: + - type: Transform + pos: 48.5,61.5 + parent: 2 +- proto: MachineFrameDestroyed + entities: + - uid: 12793 + components: + - type: Transform + pos: 40.5,19.5 + parent: 2 + - uid: 12794 + components: + - type: Transform + pos: 43.5,19.5 + parent: 2 + - uid: 12795 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 12796 + components: + - type: Transform + pos: 34.5,13.5 + parent: 2 + - uid: 12797 + components: + - type: Transform + pos: 35.5,13.5 + parent: 2 + - uid: 12798 + components: + - type: Transform + pos: 57.5,-2.5 + parent: 2 + - uid: 12799 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 12800 + components: + - type: Transform + pos: 49.5,50.5 + parent: 2 + - uid: 12801 + components: + - type: Transform + pos: 50.5,54.5 + parent: 2 + - uid: 12804 + components: + - type: Transform + pos: 60.5,24.5 + parent: 2 +- proto: MagazinePistol + entities: + - uid: 12805 + components: + - type: Transform + pos: -16.705189,68.68963 + parent: 2 + - uid: 12806 + components: + - type: Transform + pos: -16.597588,68.5821 + parent: 2 + - uid: 12807 + components: + - type: Transform + pos: -16.525854,68.45665 + parent: 2 + - uid: 12808 + components: + - type: Transform + pos: -16.382387,68.761314 + parent: 2 + - uid: 12809 + components: + - type: Transform + pos: -16.274788,68.653786 + parent: 2 + - uid: 12810 + components: + - type: Transform + pos: -16.18512,68.49249 + parent: 2 +- proto: MagicDiceBag + entities: + - uid: 12811 + components: + - type: Transform + pos: 23.56858,13.563526 + parent: 2 +- proto: MailTeleporter + entities: + - uid: 12812 + components: + - type: Transform + pos: -7.5,8.5 + parent: 2 +- proto: MaintenanceFluffSpawner + entities: + - uid: 12813 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 12814 + components: + - type: Transform + pos: 25.5,5.5 + parent: 2 + - uid: 12815 + components: + - type: Transform + pos: 35.5,43.5 + parent: 2 + - uid: 12816 + components: + - type: Transform + pos: 35.5,43.5 + parent: 2 + - uid: 12817 + components: + - type: Transform + pos: 35.5,45.5 + parent: 2 + - uid: 12818 + components: + - type: Transform + pos: 76.5,19.5 + parent: 2 + - uid: 12819 + components: + - type: Transform + pos: 69.5,52.5 + parent: 2 + - uid: 12820 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 12821 + components: + - type: Transform + pos: 53.5,10.5 + parent: 2 + - uid: 12822 + components: + - type: Transform + pos: 44.5,9.5 + parent: 2 + - uid: 12823 + components: + - type: Transform + pos: 44.5,8.5 + parent: 2 + - uid: 12824 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - uid: 12825 + components: + - type: Transform + pos: -18.5,13.5 + parent: 2 + - uid: 12826 + components: + - type: Transform + pos: -18.5,13.5 + parent: 2 + - uid: 12827 + components: + - type: Transform + pos: 15.5,66.5 + parent: 2 + - uid: 12828 + components: + - type: Transform + pos: 23.5,63.5 + parent: 2 + - uid: 12829 + components: + - type: Transform + pos: 23.5,62.5 + parent: 2 + - uid: 12830 + components: + - type: Transform + pos: 29.5,65.5 + parent: 2 +- proto: MaintenancePlantSpawner + entities: + - uid: 12831 + components: + - type: Transform + pos: 22.5,5.5 + parent: 2 + - uid: 12832 + components: + - type: Transform + pos: 76.5,18.5 + parent: 2 + - uid: 12833 + components: + - type: Transform + pos: 55.5,9.5 + parent: 2 +- proto: MaintenanceToolSpawner + entities: + - uid: 12834 + components: + - type: Transform + pos: 45.5,59.5 + parent: 2 + - uid: 12835 + components: + - type: Transform + pos: 27.5,5.5 + parent: 2 + - uid: 12836 + components: + - type: Transform + pos: 36.5,43.5 + parent: 2 + - uid: 12837 + components: + - type: Transform + pos: 36.5,43.5 + parent: 2 + - uid: 12838 + components: + - type: Transform + pos: 36.5,43.5 + parent: 2 + - uid: 12839 + components: + - type: Transform + pos: 74.5,21.5 + parent: 2 + - uid: 12840 + components: + - type: Transform + pos: 70.5,48.5 + parent: 2 + - uid: 12841 + components: + - type: Transform + pos: 69.5,48.5 + parent: 2 + - uid: 12842 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 + - uid: 12843 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 + - uid: 12844 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2 + - uid: 12845 + components: + - type: Transform + pos: -17.5,13.5 + parent: 2 + - uid: 12846 + components: + - type: Transform + pos: -17.5,13.5 + parent: 2 + - uid: 12847 + components: + - type: Transform + pos: 18.5,67.5 + parent: 2 + - uid: 12848 + components: + - type: Transform + pos: 15.5,69.5 + parent: 2 + - uid: 12849 + components: + - type: Transform + pos: 14.5,67.5 + parent: 2 + - uid: 12850 + components: + - type: Transform + pos: 26.5,63.5 + parent: 2 + - uid: 12851 + components: + - type: Transform + pos: 29.5,62.5 + parent: 2 + - uid: 12852 + components: + - type: Transform + pos: 28.5,66.5 + parent: 2 + - uid: 12853 + components: + - type: Transform + pos: 45.5,59.5 + parent: 2 + - uid: 12854 + components: + - type: Transform + pos: 44.5,59.5 + parent: 2 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 12855 + components: + - type: Transform + pos: 15.5,2.5 + parent: 2 + - uid: 12856 + components: + - type: Transform + pos: 80.5,50.5 + parent: 2 + - uid: 12857 + components: + - type: Transform + pos: 20.5,66.5 + parent: 2 +- proto: MaterialCloth + entities: + - uid: 12858 + components: + - type: Transform + pos: 76.81112,37.45618 + parent: 2 +- proto: MaterialDurathread + entities: + - uid: 12859 + components: + - type: Transform + pos: 76.62224,37.823154 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: MechEquipmentGrabber + entities: + - uid: 12860 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 +- proto: MedicalBed + entities: + - uid: 12861 + components: + - type: Transform + pos: 5.5,35.5 + parent: 2 + - uid: 12862 + components: + - type: Transform + pos: 3.5,35.5 + parent: 2 + - uid: 12863 + components: + - type: Transform + pos: 4.5,35.5 + parent: 2 + - uid: 12864 + components: + - type: Transform + pos: -5.5,58.5 + parent: 2 + - uid: 12865 + components: + - type: Transform + pos: 29.5,40.5 + parent: 2 + - uid: 12866 + components: + - type: Transform + pos: 29.5,42.5 + parent: 2 +- proto: MedicalScanner + entities: + - uid: 12802 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - uid: 12803 + components: + - type: Transform + pos: 25.5,29.5 + parent: 2 + - uid: 12868 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 + - uid: 16226 + components: + - type: Transform + pos: -10.5,66.5 + parent: 2 +- proto: MedicalTechFab + entities: + - uid: 12869 + components: + - type: Transform + pos: 9.5,39.5 + parent: 2 +- proto: MedkitAdvancedFilled + entities: + - uid: 12870 + components: + - type: Transform + pos: 55.531895,19.585579 + parent: 2 + - uid: 12871 + components: + - type: Transform + pos: 6.360105,43.725613 + parent: 2 + - uid: 12872 + components: + - type: Transform + pos: 5.5,31.5 + parent: 2 + - uid: 12873 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 +- proto: MedkitBruteFilled + entities: + - uid: 12874 + components: + - type: Transform + pos: 6.372061,43.55835 + parent: 2 + - uid: 12875 + components: + - type: Transform + pos: 3.5,31.5 + parent: 2 + - uid: 12876 + components: + - type: Transform + pos: 15.5,32.5 + parent: 2 +- proto: MedkitBurnFilled + entities: + - uid: 12877 + components: + - type: Transform + pos: -7.476385,22.687494 + parent: 2 + - uid: 12878 + components: + - type: Transform + pos: 6.372061,43.41498 + parent: 2 + - uid: 12879 + components: + - type: Transform + pos: 16.5,32.5 + parent: 2 +- proto: MedkitCombatFilled + entities: + - uid: 12880 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 +- proto: MedkitFilled + entities: + - uid: 12881 + components: + - type: Transform + pos: 12.51605,12.854057 + parent: 2 + - uid: 12882 + components: + - type: Transform + pos: -25.49519,62.612812 + parent: 2 + - uid: 12883 + components: + - type: Transform + pos: 84.61076,33.65296 + parent: 2 + - uid: 12884 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 +- proto: MedkitOxygenFilled + entities: + - uid: 12885 + components: + - type: Transform + pos: 6.730728,43.73756 + parent: 2 + - uid: 12886 + components: + - type: Transform + pos: 28.530539,66.59765 + parent: 2 + - uid: 12887 + components: + - type: Transform + pos: 15.5,32.5 + parent: 2 +- proto: MedkitRadiationFilled + entities: + - uid: 12888 + components: + - type: Transform + pos: 16.5,32.5 + parent: 2 + - uid: 12889 + components: + - type: Transform + pos: 6.742684,43.55835 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 12890 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 + - uid: 12891 + components: + - type: Transform + pos: 6.742684,43.42693 + parent: 2 +- proto: MetempsychoticMachine + entities: + - uid: 6948 + components: + - type: Transform + pos: 23.5,28.5 + parent: 2 +- proto: Mirror + entities: + - uid: 12892 + components: + - type: Transform + pos: 2.5,69.5 + parent: 2 + - uid: 12893 + components: + - type: Transform + pos: 1.5,69.5 + parent: 2 + - uid: 12894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,33.5 + parent: 2 +- proto: MMI + entities: + - uid: 12895 + components: + - type: Transform + pos: 40.588707,21.59096 + parent: 2 + - uid: 12896 + components: + - type: Transform + pos: 59.385284,15.698191 + parent: 2 +- proto: ModularGrenade + entities: + - uid: 12897 + components: + - type: Transform + pos: 44.348534,53.369633 + parent: 2 + - uid: 12898 + components: + - type: Transform + pos: 44.563732,53.501053 + parent: 2 + - uid: 12899 + components: + - type: Transform + pos: 44.68329,53.60858 + parent: 2 +- proto: MopItem + entities: + - uid: 12900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.501328,54.524693 + parent: 2 + - uid: 12901 + components: + - type: Transform + pos: 40.45712,54.427982 + parent: 2 + - uid: 12902 + components: + - type: Transform + pos: 39.470783,52.54626 + parent: 2 +- proto: Morgue + entities: + - uid: 12903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,60.5 + parent: 2 + - uid: 12904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,63.5 + parent: 2 + - uid: 12905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,42.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 12906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,43.5 + parent: 2 + - uid: 12907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,44.5 + parent: 2 + - uid: 12908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,45.5 + parent: 2 + - uid: 12909 + components: + - type: Transform + pos: 16.5,45.5 + parent: 2 + - uid: 12910 + components: + - type: Transform + pos: 15.5,45.5 + parent: 2 +- proto: MouseTimedSpawner + entities: + - uid: 12911 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 + - uid: 12912 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 12913 + components: + - type: Transform + pos: 56.5,12.5 + parent: 2 + - uid: 12914 + components: + - type: Transform + pos: 78.5,50.5 + parent: 2 + - uid: 12915 + components: + - type: Transform + pos: 43.5,59.5 + parent: 2 +- proto: Multitool + entities: + - uid: 12916 + components: + - type: Transform + pos: -7.60857,24.471098 + parent: 2 + - uid: 12917 + components: + - type: Transform + pos: -11.444434,33.73631 + parent: 2 + - uid: 12918 + components: + - type: Transform + pos: 12.506436,13.570902 + parent: 2 + - uid: 12919 + components: + - type: Transform + pos: 36.416718,7.630267 + parent: 2 + - uid: 12920 + components: + - type: Transform + pos: 60.52384,28.581665 + parent: 2 + - uid: 12921 + components: + - type: Transform + pos: 84.7363,35.64221 + parent: 2 + - uid: 12922 + components: + - type: Transform + pos: 22.850292,23.553356 + parent: 2 +- proto: NitrogenCanister + entities: + - uid: 11482 + components: + - type: Transform + pos: -20.5,25.5 + parent: 2 + - uid: 12923 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 12924 + components: + - type: Transform + pos: 32.5,16.5 + parent: 2 + - uid: 12925 + components: + - type: Transform + pos: 32.5,15.5 + parent: 2 + - uid: 12926 + components: + - type: Transform + pos: 74.5,59.5 + parent: 2 + - uid: 12927 + components: + - type: Transform + pos: -38.5,12.5 + parent: 2 + - uid: 14288 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 + - uid: 14289 + components: + - type: Transform + pos: -19.5,23.5 + parent: 2 + - uid: 18758 + components: + - type: Transform + pos: -16.5,31.5 + parent: 2 + - uid: 18759 + components: + - type: Transform + pos: -16.5,30.5 + parent: 2 +- proto: NitrousOxideCanister + entities: + - uid: 12928 + components: + - type: Transform + pos: 32.5,14.5 + parent: 2 + - uid: 14286 + components: + - type: Transform + pos: -20.5,22.5 + parent: 2 + - uid: 14287 + components: + - type: Transform + pos: -19.5,22.5 + parent: 2 +- proto: NitrousOxideTankFilled + entities: + - uid: 12929 + components: + - type: Transform + pos: 41.431168,21.58507 + parent: 2 + - uid: 12930 + components: + - type: Transform + pos: 58.536438,15.507032 + parent: 2 +- proto: NuclearBomb + entities: + - uid: 12931 + components: + - type: Transform + pos: 30.5,56.5 + parent: 2 +- proto: NukeDiskFake + entities: + - uid: 8352 + components: + - type: Transform + pos: 75.46282,31.57607 + parent: 2 +- proto: OperatingTable + entities: + - uid: 12932 + components: + - type: Transform + pos: 59.5,16.5 + parent: 2 + - uid: 12933 + components: + - type: Transform + pos: -29.5,54.5 + parent: 2 + - uid: 12934 + components: + - type: Transform + pos: -3.5,59.5 + parent: 2 + - uid: 12935 + components: + - type: Transform + pos: 11.5,40.5 + parent: 2 + - uid: 12936 + components: + - type: Transform + pos: 11.5,38.5 + parent: 2 +- proto: OracleSpawner + entities: + - uid: 19370 + components: + - type: Transform + pos: 54.5,25.5 + parent: 2 +- proto: OreBox + entities: + - uid: 12938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,65.5 + parent: 2 + - uid: 12939 + components: + - type: Transform + pos: -17.5,2.5 + parent: 2 + - uid: 12940 + components: + - type: Transform + pos: -17.5,1.5 + parent: 2 +- proto: OreProcessor + entities: + - uid: 12941 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 12942 + components: + - type: Transform + pos: 37.5,23.5 + parent: 2 + - uid: 12943 + components: + - type: Transform + pos: -9.5,41.5 + parent: 2 + - uid: 12944 + components: + - type: Transform + pos: 18.5,5.5 + parent: 2 + - uid: 12945 + components: + - type: Transform + pos: 20.5,45.5 + parent: 2 + - uid: 12946 + components: + - type: Transform + pos: 21.5,43.5 + parent: 2 + - uid: 12947 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 12948 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 12949 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 + - uid: 12950 + components: + - type: Transform + pos: 73.5,59.5 + parent: 2 + - uid: 12951 + components: + - type: Transform + pos: -38.5,16.5 + parent: 2 +- proto: PaintingSadClown + entities: + - uid: 12952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,46.5 + parent: 2 +- proto: Paper + entities: + - uid: 12953 + components: + - type: Transform + pos: -31.493675,60.469395 + parent: 2 + - uid: 12954 + components: + - type: Transform + pos: -31.395414,60.525505 + parent: 2 + - uid: 12955 + components: + - type: Transform + pos: -27.436836,60.385227 + parent: 2 + - uid: 12956 + components: + - type: Transform + pos: -27.324537,60.455364 + parent: 2 + - uid: 12957 + components: + - type: Transform + pos: 9.6792,60.519764 + parent: 2 + - uid: 12958 + components: + - type: Transform + pos: 9.468637,60.435596 + parent: 2 +- proto: PaperBin10 + entities: + - uid: 12959 + components: + - type: Transform + pos: 6.5,73.5 + parent: 2 +- proto: PaperBin20 + entities: + - uid: 8115 + components: + - type: Transform + pos: 72.5,29.5 + parent: 2 + - uid: 12960 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 12961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 2 + - uid: 12962 + components: + - type: Transform + pos: -5.5,29.5 + parent: 2 + - uid: 12963 + components: + - type: Transform + pos: -20.5,53.5 + parent: 2 + - uid: 12964 + components: + - type: Transform + pos: -24.5,52.5 + parent: 2 + - uid: 12965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,67.5 + parent: 2 + - uid: 12966 + components: + - type: Transform + pos: 1.5,60.5 + parent: 2 + - uid: 12967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,59.5 + parent: 2 + - uid: 12968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,55.5 + parent: 2 + - uid: 12969 + components: + - type: Transform + pos: 16.5,54.5 + parent: 2 + - uid: 12970 + components: + - type: Transform + pos: 27.5,35.5 + parent: 2 + - uid: 12971 + components: + - type: Transform + pos: 71.5,38.5 + parent: 2 + - uid: 12972 + components: + - type: Transform + pos: 68.5,40.5 + parent: 2 + - uid: 12973 + components: + - type: Transform + pos: 82.5,24.5 + parent: 2 +- proto: PaperOffice + entities: + - uid: 358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.485115,28.520872 + parent: 2 + - uid: 481 + components: + - type: Transform + pos: 33.243618,5.674018 + parent: 2 + - uid: 484 + components: + - type: Transform + pos: 33.354378,5.6265497 + parent: 2 + - uid: 486 + components: + - type: Transform + pos: 33.401844,5.4841447 + parent: 2 + - uid: 487 + components: + - type: Transform + pos: 33.48096,5.5157905 + parent: 2 + - uid: 830 + components: + - type: Transform + pos: 33.306908,5.499967 + parent: 2 + - uid: 12975 + components: + - type: Transform + pos: 9.665319,12.67992 + parent: 2 + - uid: 12976 + components: + - type: Transform + pos: 9.647387,12.67992 + parent: 2 + - uid: 12977 + components: + - type: Transform + pos: 76.21128,37.417156 + parent: 2 + - uid: 12978 + components: + - type: Transform + pos: 76.21128,37.417156 + parent: 2 + - uid: 12979 + components: + - type: Transform + pos: 76.21128,37.417156 + parent: 2 + - uid: 12980 + components: + - type: Transform + pos: 76.21128,37.417156 + parent: 2 + - uid: 12981 + components: + - type: Transform + pos: 76.13859,37.692505 + parent: 2 + - uid: 12982 + components: + - type: Transform + pos: 76.064514,37.840652 + parent: 2 + - uid: 12983 + components: + - type: Transform + pos: 76.504326,37.581394 + parent: 2 + - uid: 12984 + components: + - type: Transform + pos: 76.49044,37.54899 + parent: 2 + - uid: 12985 + components: + - type: Transform + pos: 76.171,37.359173 + parent: 2 + - uid: 12986 + components: + - type: Transform + pos: 76.49044,37.562874 + parent: 2 + - uid: 12987 + components: + - type: Transform + pos: 76.45803,37.484173 + parent: 2 + - uid: 15284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.406006,28.663277 + parent: 2 + - uid: 15387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.45347,28.647455 + parent: 2 + - uid: 15412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.45347,28.56834 + parent: 2 + - uid: 17952 + components: + - type: Transform + pos: 33.306908,5.4841447 + parent: 2 +- proto: PartRodMetal + entities: + - uid: 7299 + components: + - type: Transform + parent: 7298 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7300 + components: + - type: Transform + parent: 7298 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7301 + components: + - type: Transform + parent: 7298 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7302 + components: + - type: Transform + parent: 7298 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 12992 + components: + - type: Transform + pos: -24.247482,43.434326 + parent: 2 + - uid: 12993 + components: + - type: Transform + pos: -24.233444,43.434326 + parent: 2 + - uid: 12994 + components: + - type: Transform + pos: -24.233444,43.434326 + parent: 2 + - uid: 12995 + components: + - type: Transform + pos: 50.564972,-1.2687263 + parent: 2 + - uid: 12996 + components: + - type: Transform + pos: 75.62877,62.543827 + parent: 2 + - uid: 12997 + components: + - type: Transform + pos: 75.62877,62.543827 + parent: 2 + - uid: 12998 + components: + - type: Transform + pos: 71.54807,42.607285 + parent: 2 + - uid: 12999 + components: + - type: Transform + pos: 29.53992,62.576374 + parent: 2 + - uid: 13000 + components: + - type: Transform + pos: -37.44304,34.71714 + parent: 2 + - uid: 13001 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 +- proto: Pen + entities: + - uid: 892 + components: + - type: Transform + parent: 883 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 13002 + components: + - type: Transform + pos: 1.4256108,15.600878 + parent: 2 + - uid: 13003 + components: + - type: Transform + pos: -1.5210662,15.664534 + parent: 2 + - uid: 13004 + components: + - type: Transform + pos: -5.521473,29.62905 + parent: 2 + - uid: 13005 + components: + - type: Transform + pos: -24.42566,52.50472 + parent: 2 + - uid: 13006 + components: + - type: Transform + pos: -21.50571,67.66511 + parent: 2 + - uid: 13007 + components: + - type: Transform + pos: -31.634052,60.792034 + parent: 2 + - uid: 13008 + components: + - type: Transform + pos: -27.577213,60.76398 + parent: 2 + - uid: 13009 + components: + - type: Transform + pos: 9.482676,60.730183 + parent: 2 + - uid: 13010 + components: + - type: Transform + pos: 19.420622,55.291016 + parent: 2 + - uid: 13011 + components: + - type: Transform + pos: 16.893871,54.56156 + parent: 2 + - uid: 13012 + components: + - type: Transform + pos: 22.547556,23.47561 + parent: 2 + - uid: 13013 + components: + - type: Transform + pos: 27.569103,35.5409 + parent: 2 + - uid: 13014 + components: + - type: Transform + pos: 18.38041,39.799717 + parent: 2 + - uid: 13015 + components: + - type: Transform + pos: 71.449234,38.55362 + parent: 2 + - uid: 13016 + components: + - type: Transform + pos: 71.63172,38.651814 + parent: 2 + - uid: 13017 + components: + - type: Transform + pos: 82.64236,24.572807 + parent: 2 +- proto: PenLightBase + entities: + - uid: 255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.358536,28.425936 + parent: 2 + - uid: 476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.797413,5.610727 + parent: 2 + - uid: 893 + components: + - type: Transform + parent: 883 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 894 + components: + - type: Transform + parent: 883 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: PersonalAI + entities: + - uid: 13020 + components: + - type: Transform + pos: 53.373207,14.552109 + parent: 2 + - uid: 13021 + components: + - type: Transform + pos: 24.469769,12.325003 + parent: 2 +- proto: PianoInstrument + entities: + - uid: 13022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,39.5 + parent: 2 +- proto: PinpointerNuclear + entities: + - uid: 13023 + components: + - type: Transform + pos: 29.502483,55.605114 + parent: 2 + - uid: 13024 + components: + - type: Transform + pos: 75.4804,31.589834 + parent: 2 +- proto: PlasmaCanister + entities: + - uid: 13025 + components: + - type: Transform + pos: 33.5,14.5 + parent: 2 + - uid: 13026 + components: + - type: Transform + pos: 32.5,13.5 + parent: 2 + - uid: 13027 + components: + - type: Transform + pos: 33.5,13.5 + parent: 2 + - uid: 13028 + components: + - type: Transform + pos: -28.5,2.5 + parent: 2 + - uid: 14283 + components: + - type: Transform + pos: -19.5,20.5 + parent: 2 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 13029 + components: + - type: Transform + pos: 21.5,64.5 + parent: 2 + - uid: 13030 + components: + - type: Transform + pos: 21.5,67.5 + parent: 2 + - uid: 13031 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 + - uid: 13032 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 13033 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 13034 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - uid: 13035 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - uid: 13036 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 13037 + components: + - type: Transform + pos: -4.5,67.5 + parent: 2 + - uid: 13038 + components: + - type: Transform + pos: 22.5,44.5 + parent: 2 +- proto: PlushieTrystan + entities: + - uid: 8274 + components: + - type: Transform + pos: 74.87769,28.536694 + parent: 2 +- proto: PortableFlasher + entities: + - uid: 13039 + components: + - type: Transform + pos: -20.5,63.5 + parent: 2 + - uid: 13040 + components: + - type: Transform + pos: -20.5,64.5 + parent: 2 +- proto: PortableGeneratorJrPacman + entities: + - uid: 19604 + components: + - type: Transform + pos: 26.5,6.5 + parent: 2 + - uid: 19605 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 19606 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 19607 + components: + - type: Transform + pos: -21.5,25.5 + parent: 2 + - uid: 19608 + components: + - type: Transform + pos: -8.5,31.5 + parent: 2 + - uid: 19609 + components: + - type: Transform + pos: -10.5,44.5 + parent: 2 + - uid: 19610 + components: + - type: Transform + pos: -3.5,68.5 + parent: 2 + - uid: 19611 + components: + - type: Transform + pos: 43.5,60.5 + parent: 2 + - uid: 19612 + components: + - type: Transform + pos: 74.5,50.5 + parent: 2 + - uid: 19613 + components: + - type: Transform + pos: 75.5,19.5 + parent: 2 + - uid: 19614 + components: + - type: Transform + pos: 54.5,10.5 + parent: 2 + - uid: 19615 + components: + - type: Transform + pos: 37.5,21.5 + parent: 2 +- proto: PortableGeneratorPacman + entities: + - uid: 13041 + components: + - type: Transform + pos: -35.5,39.5 + parent: 2 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 13042 + components: + - type: Transform + pos: -33.5,39.5 + parent: 2 +- proto: PortableScrubber + entities: + - uid: 13043 + components: + - type: Transform + pos: -15.5,18.5 + parent: 2 + - uid: 13044 + components: + - type: Transform + pos: -14.5,18.5 + parent: 2 + - uid: 18644 + components: + - type: Transform + pos: -5.5,19.5 + parent: 2 + - uid: 18645 + components: + - type: Transform + pos: -4.5,19.5 + parent: 2 +- proto: PosterContrabandBorgFancy + entities: + - uid: 13045 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 2 +- proto: PosterContrabandBorgFancyv2 + entities: + - uid: 13046 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 2 +- proto: PosterContrabandBountyHunters + entities: + - uid: 19515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,66.5 + parent: 2 +- proto: PosterContrabandBustyBackdoorExoBabes6 + entities: + - uid: 19516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,69.5 + parent: 2 +- proto: PosterContrabandClown + entities: + - uid: 13047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,46.5 + parent: 2 +- proto: PosterContrabandCommunistState + entities: + - uid: 19475 + components: + - type: Transform + pos: -31.5,68.5 + parent: 2 + - uid: 19488 + components: + - type: Transform + pos: -31.5,67.5 + parent: 2 + - uid: 19489 + components: + - type: Transform + pos: -30.5,68.5 + parent: 2 + - uid: 19490 + components: + - type: Transform + pos: -30.5,67.5 + parent: 2 + - uid: 19517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,70.5 + parent: 2 +- proto: PosterContrabandCybersun600 + entities: + - uid: 19518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,75.5 + parent: 2 +- proto: PosterContrabandKosmicheskayaStantsiya + entities: + - uid: 19514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,72.5 + parent: 2 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 13048 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 2 +- proto: PosterLegitBuild + entities: + - uid: 13049 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 2 +- proto: PosterLegitHelpOthers + entities: + - uid: 13050 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 2 +- proto: PosterLegitHereForYourSafety + entities: + - uid: 13051 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 +- proto: PosterLegitIonRifle + entities: + - uid: 13052 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 2 +- proto: PosterLegitJustAWeekAway + entities: + - uid: 13053 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 19513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,71.5 + parent: 2 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 17018 + components: + - type: Transform + pos: 84.5,34.5 + parent: 2 + - uid: 17019 + components: + - type: Transform + pos: 83.5,39.5 + parent: 2 + - uid: 17020 + components: + - type: Transform + pos: 83.5,29.5 + parent: 2 + - uid: 17915 + components: + - type: Transform + pos: 76.5,36.5 + parent: 2 + - uid: 17932 + components: + - type: Transform + pos: 76.5,32.5 + parent: 2 +- proto: PosterLegitNoERP + entities: + - uid: 13054 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 2 +- proto: PosterLegitObey + entities: + - uid: 13055 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 2 +- proto: PottedPlantRandom + entities: + - uid: 13056 + components: + - type: Transform + pos: 60.5,22.5 + parent: 2 + - uid: 13057 + components: + - type: Transform + pos: 54.5,24.5 + parent: 2 + - uid: 13058 + components: + - type: Transform + pos: 63.5,62.5 + parent: 2 + - uid: 13059 + components: + - type: Transform + pos: 65.5,62.5 + parent: 2 + - uid: 13060 + components: + - type: Transform + pos: 67.5,62.5 + parent: 2 + - uid: 13061 + components: + - type: Transform + pos: 76.5,4.5 + parent: 2 + - uid: 13062 + components: + - type: Transform + pos: 74.5,-1.5 + parent: 2 + - uid: 13063 + components: + - type: Transform + pos: 73.5,10.5 + parent: 2 +- proto: PottedPlantRandomPlastic + entities: + - uid: 13064 + components: + - type: Transform + pos: -12.5,20.5 + parent: 2 + - uid: 13065 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 13066 + components: + - type: Transform + pos: -27.5,63.5 + parent: 2 +- proto: PottedPlantRD + entities: + - uid: 13067 + components: + - type: Transform + pos: 51.5,18.5 + parent: 2 +- proto: PowerCellHighPrinted + entities: + - uid: 13068 + components: + - type: Transform + pos: -6.4236336,33.61549 + parent: 2 + - uid: 13069 + components: + - type: Transform + pos: -10.392436,45.573402 + parent: 2 + - uid: 13070 + components: + - type: Transform + pos: -5.401387,45.59849 + parent: 2 + - uid: 13071 + components: + - type: Transform + pos: -34.418022,30.601757 + parent: 2 + - uid: 13072 + components: + - type: Transform + pos: 56.582214,15.641888 + parent: 2 + - uid: 13073 + components: + - type: Transform + pos: 61.57205,28.535053 + parent: 2 + - uid: 13074 + components: + - type: Transform + pos: -37.38924,39.58497 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 13075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,33.5 + parent: 2 + - uid: 13076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,45.5 + parent: 2 + - uid: 13077 + components: + - type: Transform + pos: -5.5,45.5 + parent: 2 + - uid: 13078 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 + - uid: 13079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,30.5 + parent: 2 + - uid: 13080 + components: + - type: Transform + pos: 56.5,15.5 + parent: 2 + - uid: 13081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,24.5 + parent: 2 + - uid: 13082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,28.5 + parent: 2 + - uid: 13083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,28.5 + parent: 2 + - uid: 13084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,35.5 + parent: 2 + - uid: 13085 + components: + - type: Transform + pos: 74.5,62.5 + parent: 2 + - uid: 13086 + components: + - type: Transform + pos: 78.5,44.5 + parent: 2 + - uid: 13087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,34.5 + parent: 2 + - uid: 13088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,39.5 + parent: 2 + - uid: 13089 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 +- proto: PowerComputerCircuitboard + entities: + - uid: 13090 + components: + - type: Transform + pos: -8.449109,44.620697 + parent: 2 +- proto: Poweredlight + entities: + - uid: 732 + components: + - type: Transform + pos: 68.5,31.5 + parent: 2 + - uid: 7111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,3.5 + parent: 2 + - uid: 8443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,23.5 + parent: 2 + - uid: 12072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,74.5 + parent: 2 + - uid: 12989 + components: + - type: Transform + pos: 74.5,25.5 + parent: 2 + - uid: 13019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,31.5 + parent: 2 + - uid: 13091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,31.5 + parent: 2 + - uid: 13092 + components: + - type: Transform + pos: 3.5,35.5 + parent: 2 + - uid: 13093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,64.5 + parent: 2 + - uid: 13094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,62.5 + parent: 2 + - uid: 13095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,1.5 + parent: 2 + - uid: 13096 + components: + - type: Transform + pos: -34.5,30.5 + parent: 2 + - uid: 13097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,1.5 + parent: 2 + - uid: 13098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,16.5 + parent: 2 + - uid: 13099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,34.5 + parent: 2 + - uid: 13100 + components: + - type: Transform + pos: -16.5,35.5 + parent: 2 + - uid: 13101 + components: + - type: Transform + pos: -19.5,41.5 + parent: 2 + - uid: 13102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,34.5 + parent: 2 + - uid: 13103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,25.5 + parent: 2 + - uid: 13104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,22.5 + parent: 2 + - uid: 13105 + components: + - type: Transform + pos: -12.5,25.5 + parent: 2 + - uid: 13106 + components: + - type: Transform + pos: -12.5,25.5 + parent: 2 + - uid: 13107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,27.5 + parent: 2 + - uid: 13108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,33.5 + parent: 2 + - uid: 13109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,37.5 + parent: 2 + - uid: 13110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,31.5 + parent: 2 + - uid: 13111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,41.5 + parent: 2 + - uid: 13112 + components: + - type: Transform + pos: -16.5,31.5 + parent: 2 + - uid: 13113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,37.5 + parent: 2 + - uid: 13114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,27.5 + parent: 2 + - uid: 13115 + components: + - type: Transform + pos: 34.5,55.5 + parent: 2 + - uid: 13117 + components: + - type: Transform + pos: -19.5,41.5 + parent: 2 + - uid: 13118 + components: + - type: Transform + pos: 24.5,21.5 + parent: 2 + - uid: 13119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,11.5 + parent: 2 + - uid: 13120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,62.5 + parent: 2 + - uid: 13121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,59.5 + parent: 2 + - uid: 13122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,22.5 + parent: 2 + - uid: 13123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,62.5 + parent: 2 + - uid: 13124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,1.5 + parent: 2 + - uid: 13125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,6.5 + parent: 2 + - uid: 13126 + components: + - type: Transform + pos: 70.5,21.5 + parent: 2 + - uid: 13127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,22.5 + parent: 2 + - uid: 13128 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - uid: 13131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,4.5 + parent: 2 + - uid: 13132 + components: + - type: Transform + pos: 70.5,15.5 + parent: 2 + - uid: 13133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,56.5 + parent: 2 + - uid: 13134 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 13135 + components: + - type: Transform + pos: 67.5,56.5 + parent: 2 + - uid: 13136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,60.5 + parent: 2 + - uid: 13137 + components: + - type: Transform + pos: -5.5,21.5 + parent: 2 + - uid: 13138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,57.5 + parent: 2 + - uid: 13139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,31.5 + parent: 2 + - uid: 13140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,7.5 + parent: 2 + - uid: 13141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,10.5 + parent: 2 + - uid: 13142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,13.5 + parent: 2 + - uid: 13143 + components: + - type: Transform + pos: -30.5,21.5 + parent: 2 + - uid: 13144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,18.5 + parent: 2 + - uid: 13145 + components: + - type: Transform + pos: -25.5,19.5 + parent: 2 + - uid: 13146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,7.5 + parent: 2 + - uid: 13147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,14.5 + parent: 2 + - uid: 13148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,23.5 + parent: 2 + - uid: 13149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,13.5 + parent: 2 + - uid: 13150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,28.5 + parent: 2 + - uid: 13151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,25.5 + parent: 2 + - uid: 13152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,25.5 + parent: 2 + - uid: 13153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,23.5 + parent: 2 + - uid: 13154 + components: + - type: Transform + pos: -27.5,25.5 + parent: 2 + - uid: 13155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,20.5 + parent: 2 + - uid: 13156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,16.5 + parent: 2 + - uid: 13157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,12.5 + parent: 2 + - uid: 13158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,8.5 + parent: 2 + - uid: 13159 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - uid: 13160 + components: + - type: Transform + pos: -24.5,8.5 + parent: 2 + - uid: 13161 + components: + - type: Transform + pos: -20.5,9.5 + parent: 2 + - uid: 13162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,4.5 + parent: 2 + - uid: 13163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,21.5 + parent: 2 + - uid: 13164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,7.5 + parent: 2 + - uid: 13165 + components: + - type: Transform + pos: 74.5,62.5 + parent: 2 + - uid: 13166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,62.5 + parent: 2 + - uid: 13167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,17.5 + parent: 2 + - uid: 13168 + components: + - type: Transform + pos: -19.5,23.5 + parent: 2 + - uid: 13169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,21.5 + parent: 2 + - uid: 13170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,23.5 + parent: 2 + - uid: 13171 + components: + - type: Transform + pos: -2.5,27.5 + parent: 2 + - uid: 13172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,30.5 + parent: 2 + - uid: 13173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,38.5 + parent: 2 + - uid: 13174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,35.5 + parent: 2 + - uid: 13175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,40.5 + parent: 2 + - uid: 13176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,43.5 + parent: 2 + - uid: 13177 + components: + - type: Transform + pos: -24.5,46.5 + parent: 2 + - uid: 13178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,43.5 + parent: 2 + - uid: 13179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,64.5 + parent: 2 + - uid: 13180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,51.5 + parent: 2 + - uid: 13181 + components: + - type: Transform + pos: -19.5,70.5 + parent: 2 + - uid: 13182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,62.5 + parent: 2 + - uid: 13183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,51.5 + parent: 2 + - uid: 13184 + components: + - type: Transform + pos: -6.5,56.5 + parent: 2 + - uid: 13185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,55.5 + parent: 2 + - uid: 13186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,43.5 + parent: 2 + - uid: 13187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,54.5 + parent: 2 + - uid: 13188 + components: + - type: Transform + pos: 7.5,49.5 + parent: 2 + - uid: 13189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,46.5 + parent: 2 + - uid: 13190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,30.5 + parent: 2 + - uid: 13191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,39.5 + parent: 2 + - uid: 13192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,19.5 + parent: 2 + - uid: 13193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,16.5 + parent: 2 + - uid: 13194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,23.5 + parent: 2 + - uid: 13195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,51.5 + parent: 2 + - uid: 13196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,58.5 + parent: 2 + - uid: 13197 + components: + - type: Transform + pos: -4.5,60.5 + parent: 2 + - uid: 13198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,53.5 + parent: 2 + - uid: 13199 + components: + - type: Transform + pos: -25.5,58.5 + parent: 2 + - uid: 13200 + components: + - type: Transform + pos: -13.5,58.5 + parent: 2 + - uid: 13201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,51.5 + parent: 2 + - uid: 13202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,13.5 + parent: 2 + - uid: 13203 + components: + - type: Transform + pos: -8.5,14.5 + parent: 2 + - uid: 13204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,9.5 + parent: 2 + - uid: 13205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,10.5 + parent: 2 + - uid: 13206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,12.5 + parent: 2 + - uid: 13207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 2 + - uid: 13208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,16.5 + parent: 2 + - uid: 13209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,11.5 + parent: 2 + - uid: 13210 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 13211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 2 + - uid: 13212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,49.5 + parent: 2 + - uid: 13213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,47.5 + parent: 2 + - uid: 13214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,52.5 + parent: 2 + - uid: 13215 + components: + - type: Transform + pos: -14.5,70.5 + parent: 2 + - uid: 13216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,22.5 + parent: 2 + - uid: 13217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,31.5 + parent: 2 + - uid: 13218 + components: + - type: Transform + pos: -29.5,61.5 + parent: 2 + - uid: 13219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,21.5 + parent: 2 + - uid: 13220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,27.5 + parent: 2 + - uid: 13221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,26.5 + parent: 2 + - uid: 13223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,27.5 + parent: 2 + - uid: 13224 + components: + - type: Transform + pos: 79.5,35.5 + parent: 2 + - uid: 13225 + components: + - type: Transform + pos: 76.5,35.5 + parent: 2 + - uid: 13226 + components: + - type: Transform + pos: 71.5,35.5 + parent: 2 + - uid: 13227 + components: + - type: Transform + pos: 69.5,40.5 + parent: 2 + - uid: 13228 + components: + - type: Transform + pos: 87.5,37.5 + parent: 2 + - uid: 13229 + components: + - type: Transform + pos: 76.5,40.5 + parent: 2 + - uid: 13230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,52.5 + parent: 2 + - uid: 13231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,58.5 + parent: 2 + - uid: 13234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,60.5 + parent: 2 + - uid: 13235 + components: + - type: Transform + pos: 13.5,62.5 + parent: 2 + - uid: 13236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,54.5 + parent: 2 + - uid: 13237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,62.5 + parent: 2 + - uid: 13238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,57.5 + parent: 2 + - uid: 13239 + components: + - type: Transform + pos: 82.5,40.5 + parent: 2 + - uid: 13240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,54.5 + parent: 2 + - uid: 13241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,65.5 + parent: 2 + - uid: 13242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,55.5 + parent: 2 + - uid: 13243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,51.5 + parent: 2 + - uid: 13244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,54.5 + parent: 2 + - uid: 13245 + components: + - type: Transform + pos: 20.5,49.5 + parent: 2 + - uid: 13246 + components: + - type: Transform + pos: 14.5,49.5 + parent: 2 + - uid: 13247 + components: + - type: Transform + pos: 21.5,58.5 + parent: 2 + - uid: 13248 + components: + - type: Transform + pos: -33.5,61.5 + parent: 2 + - uid: 13249 + components: + - type: Transform + pos: -21.5,70.5 + parent: 2 + - uid: 13250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,55.5 + parent: 2 + - uid: 13251 + components: + - type: Transform + pos: -29.5,55.5 + parent: 2 + - uid: 13252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,68.5 + parent: 2 + - uid: 13253 + components: + - type: Transform + pos: -30.5,58.5 + parent: 2 + - uid: 13254 + components: + - type: Transform + pos: -0.5,64.5 + parent: 2 + - uid: 13255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,63.5 + parent: 2 + - uid: 13256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,68.5 + parent: 2 + - uid: 13258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,60.5 + parent: 2 + - uid: 13259 + components: + - type: Transform + pos: 19.5,40.5 + parent: 2 + - uid: 13260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,43.5 + parent: 2 + - uid: 13261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,39.5 + parent: 2 + - uid: 13262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,52.5 + parent: 2 + - uid: 13263 + components: + - type: Transform + pos: 7.5,41.5 + parent: 2 + - uid: 13264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,44.5 + parent: 2 + - uid: 13265 + components: + - type: Transform + pos: 54.5,40.5 + parent: 2 + - uid: 13266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,33.5 + parent: 2 + - uid: 13267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,43.5 + parent: 2 + - uid: 13268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,39.5 + parent: 2 + - uid: 13269 + components: + - type: Transform + pos: 37.5,30.5 + parent: 2 + - uid: 13270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,31.5 + parent: 2 + - uid: 13271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,60.5 + parent: 2 + - uid: 13272 + components: + - type: Transform + pos: 47.5,45.5 + parent: 2 + - uid: 13273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,42.5 + parent: 2 + - uid: 13274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,46.5 + parent: 2 + - uid: 13275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,38.5 + parent: 2 + - uid: 13276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,43.5 + parent: 2 + - uid: 13277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,48.5 + parent: 2 + - uid: 13278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,28.5 + parent: 2 + - uid: 13279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,25.5 + parent: 2 + - uid: 13280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,47.5 + parent: 2 + - uid: 13281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,30.5 + parent: 2 + - uid: 13282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,32.5 + parent: 2 + - uid: 13283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,31.5 + parent: 2 + - uid: 13284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,50.5 + parent: 2 + - uid: 13285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,31.5 + parent: 2 + - uid: 13286 + components: + - type: Transform + pos: 52.5,50.5 + parent: 2 + - uid: 13287 + components: + - type: Transform + pos: 51.5,54.5 + parent: 2 + - uid: 13288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,39.5 + parent: 2 + - uid: 13289 + components: + - type: Transform + pos: 36.5,41.5 + parent: 2 + - uid: 13290 + components: + - type: Transform + pos: 51.5,31.5 + parent: 2 + - uid: 13291 + components: + - type: Transform + pos: 42.5,35.5 + parent: 2 + - uid: 13292 + components: + - type: Transform + pos: 63.5,35.5 + parent: 2 + - uid: 13293 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - uid: 13294 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 13295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,31.5 + parent: 2 + - uid: 13296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,28.5 + parent: 2 + - uid: 13297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,16.5 + parent: 2 + - uid: 13298 + components: + - type: Transform + pos: 53.5,18.5 + parent: 2 + - uid: 13299 + components: + - type: Transform + pos: 39.5,17.5 + parent: 2 + - uid: 13300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,21.5 + parent: 2 + - uid: 13301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,17.5 + parent: 2 + - uid: 13302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,15.5 + parent: 2 + - uid: 13303 + components: + - type: Transform + pos: 78.5,45.5 + parent: 2 + - uid: 13304 + components: + - type: Transform + pos: 31.5,11.5 + parent: 2 + - uid: 13305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,44.5 + parent: 2 + - uid: 13306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,44.5 + parent: 2 + - uid: 13307 + components: + - type: Transform + pos: 37.5,11.5 + parent: 2 + - uid: 13308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,44.5 + parent: 2 + - uid: 13309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,40.5 + parent: 2 + - uid: 13310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,15.5 + parent: 2 + - uid: 13311 + components: + - type: Transform + pos: 50.5,11.5 + parent: 2 + - uid: 13312 + components: + - type: Transform + pos: 47.5,7.5 + parent: 2 + - uid: 13313 + components: + - type: Transform + pos: 57.5,22.5 + parent: 2 + - uid: 13314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-2.5 + parent: 2 + - uid: 13315 + components: + - type: Transform + pos: 53.5,4.5 + parent: 2 + - uid: 13316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-2.5 + parent: 2 + - uid: 13317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-8.5 + parent: 2 + - uid: 13318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,12.5 + parent: 2 + - uid: 13319 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 13320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-1.5 + parent: 2 + - uid: 13321 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 13322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,1.5 + parent: 2 + - uid: 13323 + components: + - type: Transform + pos: 34.5,1.5 + parent: 2 + - uid: 13324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,20.5 + parent: 2 + - uid: 13325 + components: + - type: Transform + pos: 83.5,44.5 + parent: 2 + - uid: 13326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,37.5 + parent: 2 + - uid: 13327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,44.5 + parent: 2 + - uid: 13328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,58.5 + parent: 2 + - uid: 13329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,41.5 + parent: 2 + - uid: 13330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,55.5 + parent: 2 + - uid: 13331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,46.5 + parent: 2 + - uid: 13332 + components: + - type: Transform + pos: 17.5,59.5 + parent: 2 + - uid: 13333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,26.5 + parent: 2 + - uid: 13334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,31.5 + parent: 2 + - uid: 13335 + components: + - type: Transform + pos: 29.5,29.5 + parent: 2 + - uid: 13336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,23.5 + parent: 2 + - uid: 13337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,38.5 + parent: 2 + - uid: 13338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,26.5 + parent: 2 + - uid: 13339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,28.5 + parent: 2 + - uid: 13340 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - uid: 13341 + components: + - type: Transform + pos: 22.5,28.5 + parent: 2 + - uid: 13342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,36.5 + parent: 2 + - uid: 13343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,26.5 + parent: 2 + - uid: 13344 + components: + - type: Transform + pos: -11.5,7.5 + parent: 2 + - uid: 13345 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - uid: 13346 + components: + - type: Transform + pos: 27.5,45.5 + parent: 2 + - uid: 13347 + components: + - type: Transform + pos: 23.5,45.5 + parent: 2 + - uid: 13348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,44.5 + parent: 2 + - uid: 13349 + components: + - type: Transform + pos: 30.5,56.5 + parent: 2 + - uid: 13350 + components: + - type: Transform + pos: 32.5,51.5 + parent: 2 + - uid: 13351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,47.5 + parent: 2 + - uid: 13352 + components: + - type: Transform + pos: 83.5,37.5 + parent: 2 + - uid: 13353 + components: + - type: Transform + pos: 68.5,11.5 + parent: 2 + - uid: 13354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,13.5 + parent: 2 + - uid: 13355 + components: + - type: Transform + pos: 78.5,31.5 + parent: 2 + - uid: 13356 + components: + - type: Transform + pos: 76.5,5.5 + parent: 2 + - uid: 13357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-1.5 + parent: 2 + - uid: 13358 + components: + - type: Transform + pos: 73.5,31.5 + parent: 2 + - uid: 13359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,8.5 + parent: 2 + - uid: 13360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,15.5 + parent: 2 + - uid: 13361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,17.5 + parent: 2 + - uid: 13362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,17.5 + parent: 2 + - uid: 13363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,14.5 + parent: 2 + - uid: 13364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,17.5 + parent: 2 + - uid: 13365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,3.5 + parent: 2 + - uid: 13366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,3.5 + parent: 2 + - uid: 13367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,23.5 + parent: 2 + - uid: 13368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,21.5 + parent: 2 + - uid: 13369 + components: + - type: Transform + pos: -35.5,64.5 + parent: 2 + - uid: 13370 + components: + - type: Transform + pos: 58.5,-5.5 + parent: 2 + - uid: 13371 + components: + - type: Transform + pos: 51.5,-10.5 + parent: 2 + - uid: 13372 + components: + - type: Transform + pos: 58.5,8.5 + parent: 2 + - uid: 13373 + components: + - type: Transform + pos: 44.5,-5.5 + parent: 2 + - uid: 13374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,18.5 + parent: 2 + - uid: 13375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,23.5 + parent: 2 + - uid: 13376 + components: + - type: Transform + pos: 27.5,36.5 + parent: 2 + - uid: 13377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,43.5 + parent: 2 + - uid: 13378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,54.5 + parent: 2 + - uid: 13379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,51.5 + parent: 2 + - uid: 13380 + components: + - type: Transform + pos: 63.5,16.5 + parent: 2 + - uid: 13381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,10.5 + parent: 2 + - uid: 13382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,34.5 + parent: 2 + - uid: 13383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,34.5 + parent: 2 + - uid: 13384 + components: + - type: Transform + pos: -30.5,39.5 + parent: 2 + - uid: 13385 + components: + - type: Transform + pos: -37.5,39.5 + parent: 2 + - uid: 13386 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - uid: 13387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 2 + - uid: 13388 + components: + - type: Transform + pos: -7.5,8.5 + parent: 2 + - uid: 13389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,3.5 + parent: 2 + - uid: 13390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,34.5 + parent: 2 + - uid: 13391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,13.5 + parent: 2 + - uid: 13392 + components: + - type: Transform + pos: -6.5,17.5 + parent: 2 + - uid: 13393 + components: + - type: Transform + pos: -6.5,17.5 + parent: 2 + - uid: 13394 + components: + - type: Transform + pos: 5.5,35.5 + parent: 2 + - uid: 13395 + components: + - type: Transform + pos: 4.5,29.5 + parent: 2 + - uid: 13396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,29.5 + parent: 2 + - uid: 13397 + components: + - type: Transform + pos: -4.5,31.5 + parent: 2 + - uid: 13398 + components: + - type: Transform + pos: -2.5,36.5 + parent: 2 + - uid: 13399 + components: + - type: Transform + pos: -7.5,41.5 + parent: 2 + - uid: 13400 + components: + - type: Transform + pos: -16.5,45.5 + parent: 2 + - uid: 13401 + components: + - type: Transform + pos: 55.5,7.5 + parent: 2 + - uid: 13402 + components: + - type: Transform + pos: 10.5,35.5 + parent: 2 + - uid: 13403 + components: + - type: Transform + pos: 4.5,35.5 + parent: 2 + - uid: 13404 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 2 + - uid: 13405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-14.5 + parent: 2 + - uid: 13406 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 2 + - uid: 13407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-14.5 + parent: 2 + - uid: 13408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-11.5 + parent: 2 + - uid: 13409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-9.5 + parent: 2 + - uid: 13410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-13.5 + parent: 2 + - uid: 13411 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - uid: 13412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-13.5 + parent: 2 + - uid: 13413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-6.5 + parent: 2 + - uid: 13414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-8.5 + parent: 2 + - uid: 13415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-14.5 + parent: 2 + - uid: 13416 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 2 + - uid: 13417 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 2 + - uid: 13418 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 2 + - uid: 13419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-15.5 + parent: 2 + - uid: 13420 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 2 + - uid: 13421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-7.5 + parent: 2 + - uid: 13422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-5.5 + parent: 2 + - uid: 13423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-5.5 + parent: 2 + - uid: 13424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-6.5 + parent: 2 + - uid: 13433 + components: + - type: Transform + pos: 33.5,5.5 + parent: 2 + - uid: 13501 + components: + - type: Transform + pos: -35.5,70.5 + parent: 2 + - uid: 13983 + components: + - type: Transform + pos: -26.5,74.5 + parent: 2 + - uid: 13985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,74.5 + parent: 2 + - uid: 16225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,67.5 + parent: 2 + - uid: 17135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,70.5 + parent: 2 + - uid: 19466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,65.5 + parent: 2 + - uid: 19471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,65.5 + parent: 2 + - uid: 19536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,79.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 12085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,74.5 + parent: 2 + - uid: 13425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,62.5 + parent: 2 + - uid: 13426 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 13427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,54.5 + parent: 2 + - uid: 13430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,70.5 + parent: 2 + - uid: 13431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,70.5 + parent: 2 + - uid: 13432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,29.5 + parent: 2 + - uid: 13434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,24.5 + parent: 2 + - uid: 13435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,28.5 + parent: 2 + - uid: 13436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,16.5 + parent: 2 + - uid: 13437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,13.5 + parent: 2 + - uid: 13438 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 13439 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 2 + - uid: 13440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,30.5 + parent: 2 + - uid: 13441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 + - uid: 13442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 + - uid: 13443 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - uid: 13444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,3.5 + parent: 2 + - uid: 13445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,32.5 + parent: 2 + - uid: 13446 + components: + - type: Transform + pos: -21.5,49.5 + parent: 2 + - uid: 13447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,39.5 + parent: 2 + - uid: 13448 + components: + - type: Transform + pos: -29.5,44.5 + parent: 2 + - uid: 13449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,48.5 + parent: 2 + - uid: 13450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,44.5 + parent: 2 + - uid: 13451 + components: + - type: Transform + pos: -4.5,45.5 + parent: 2 + - uid: 13452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,42.5 + parent: 2 + - uid: 13453 + components: + - type: Transform + pos: -3.5,68.5 + parent: 2 + - uid: 13454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,66.5 + parent: 2 + - uid: 13455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,68.5 + parent: 2 + - uid: 13456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,53.5 + parent: 2 + - uid: 13457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,63.5 + parent: 2 + - uid: 13458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,66.5 + parent: 2 + - uid: 13459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,70.5 + parent: 2 + - uid: 13460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,77.5 + parent: 2 + - uid: 13461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,72.5 + parent: 2 + - uid: 13462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,76.5 + parent: 2 + - uid: 13463 + components: + - type: Transform + pos: 8.5,79.5 + parent: 2 + - uid: 13464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,75.5 + parent: 2 + - uid: 13465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,70.5 + parent: 2 + - uid: 13466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,70.5 + parent: 2 + - uid: 13467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,67.5 + parent: 2 + - uid: 13468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,46.5 + parent: 2 + - uid: 13469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,56.5 + parent: 2 + - uid: 13470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,57.5 + parent: 2 + - uid: 13471 + components: + - type: Transform + pos: -36.5,52.5 + parent: 2 + - uid: 13472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,54.5 + parent: 2 + - uid: 13473 + components: + - type: Transform + pos: -19.5,15.5 + parent: 2 + - uid: 13474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,59.5 + parent: 2 + - uid: 13475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,67.5 + parent: 2 + - uid: 13476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,66.5 + parent: 2 + - uid: 13477 + components: + - type: Transform + pos: 6.5,78.5 + parent: 2 + - uid: 13479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,10.5 + parent: 2 + - uid: 13480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,1.5 + parent: 2 + - uid: 13481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,13.5 + parent: 2 + - uid: 13482 + components: + - type: Transform + pos: 75.5,20.5 + parent: 2 + - uid: 13483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,19.5 + parent: 2 + - uid: 13484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,46.5 + parent: 2 + - uid: 13485 + components: + - type: Transform + pos: 81.5,47.5 + parent: 2 + - uid: 13486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,48.5 + parent: 2 + - uid: 13487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,48.5 + parent: 2 + - uid: 13488 + components: + - type: Transform + pos: 69.5,52.5 + parent: 2 + - uid: 13489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,52.5 + parent: 2 + - uid: 13490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,50.5 + parent: 2 + - uid: 13491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,55.5 + parent: 2 + - uid: 13492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,57.5 + parent: 2 + - uid: 13493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,22.5 + parent: 2 + - uid: 13494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,25.5 + parent: 2 + - uid: 13495 + components: + - type: Transform + pos: 66.5,-1.5 + parent: 2 + - uid: 13496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,13.5 + parent: 2 + - uid: 13497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-3.5 + parent: 2 + - uid: 13498 + components: + - type: Transform + pos: 61.5,18.5 + parent: 2 + - uid: 13499 + components: + - type: Transform + pos: 54.5,11.5 + parent: 2 + - uid: 13500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,10.5 + parent: 2 + - uid: 13502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,4.5 + parent: 2 + - uid: 13503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,7.5 + parent: 2 + - uid: 13504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,5.5 + parent: 2 + - uid: 13505 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - uid: 13506 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 13507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,9.5 + parent: 2 + - uid: 13508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,10.5 + parent: 2 + - uid: 13509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,1.5 + parent: 2 + - uid: 13510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,6.5 + parent: 2 + - uid: 13511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,13.5 + parent: 2 + - uid: 13512 + components: + - type: Transform + pos: -1.5,77.5 + parent: 2 + - uid: 13513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,63.5 + parent: 2 + - uid: 13514 + components: + - type: Transform + pos: 16.5,67.5 + parent: 2 + - uid: 13515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,64.5 + parent: 2 + - uid: 13516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,63.5 + parent: 2 + - uid: 13517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,68.5 + parent: 2 + - uid: 13518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,60.5 + parent: 2 + - uid: 13519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,64.5 + parent: 2 + - uid: 13520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,67.5 + parent: 2 + - uid: 13521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,62.5 + parent: 2 + - uid: 13522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,60.5 + parent: 2 + - uid: 13523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,65.5 + parent: 2 + - uid: 13524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,65.5 + parent: 2 + - uid: 13525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,60.5 + parent: 2 + - uid: 13526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,63.5 + parent: 2 + - uid: 13527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,59.5 + parent: 2 + - uid: 13528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,66.5 + parent: 2 + - uid: 13529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,56.5 + parent: 2 + - uid: 13530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,50.5 + parent: 2 + - uid: 13531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,47.5 + parent: 2 + - uid: 13532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,59.5 + parent: 2 + - uid: 13533 + components: + - type: Transform + pos: 52.5,57.5 + parent: 2 + - uid: 13534 + components: + - type: Transform + pos: 48.5,61.5 + parent: 2 + - uid: 13535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,58.5 + parent: 2 + - uid: 13536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,53.5 + parent: 2 + - uid: 13537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,54.5 + parent: 2 + - uid: 13538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,50.5 + parent: 2 + - uid: 13539 + components: + - type: Transform + pos: 58.5,50.5 + parent: 2 + - uid: 13540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,46.5 + parent: 2 + - uid: 13541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,60.5 + parent: 2 + - uid: 13542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,23.5 + parent: 2 + - uid: 13543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,22.5 + parent: 2 + - uid: 13544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,19.5 + parent: 2 + - uid: 13545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,23.5 + parent: 2 + - uid: 13546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-7.5 + parent: 2 + - uid: 13547 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 2 + - uid: 13548 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 2 + - uid: 13549 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 2 + - uid: 13550 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 2 + - uid: 13551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,2.5 + parent: 2 + - uid: 13990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,76.5 + parent: 2 + - uid: 14354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,77.5 + parent: 2 + - uid: 17337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,70.5 + parent: 2 + - uid: 19372 + components: + - type: Transform + pos: 44.5,10.5 + parent: 2 +- proto: Protolathe + entities: + - uid: 13553 + components: + - type: Transform + pos: -6.5,35.5 + parent: 2 + - uid: 13554 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - uid: 13555 + components: + - type: Transform + pos: -21.5,61.5 + parent: 2 + - uid: 13556 + components: + - type: Transform + pos: 57.5,15.5 + parent: 2 + - uid: 13557 + components: + - type: Transform + pos: 46.5,26.5 + parent: 2 +- proto: ProtolatheMachineCircuitboard + entities: + - uid: 13558 + components: + - type: Transform + pos: 49.466015,54.52799 + parent: 2 +- proto: ProximitySensor + entities: + - uid: 13559 + components: + - type: Transform + pos: 41.78739,8.348118 + parent: 2 + - uid: 13560 + components: + - type: Transform + pos: 41.608055,8.294355 + parent: 2 + - uid: 13561 + components: + - type: Transform + pos: 41.428722,8.366039 + parent: 2 + - uid: 13562 + components: + - type: Transform + pos: 41.41079,8.150986 + parent: 2 + - uid: 13563 + components: + - type: Transform + pos: 41.751526,8.150986 + parent: 2 +- proto: Puddle + entities: + - uid: 13564 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - uid: 13565 + components: + - type: Transform + pos: 14.5,2.5 + parent: 2 + - uid: 13566 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 +- proto: PuddleWatermelon + entities: + - uid: 13567 + components: + - type: Transform + pos: 62.5,51.5 + parent: 2 + - uid: 13568 + components: + - type: Transform + pos: 62.5,52.5 + parent: 2 + - uid: 13569 + components: + - type: Transform + pos: 61.5,51.5 + parent: 2 + - uid: 13570 + components: + - type: Transform + pos: 62.5,54.5 + parent: 2 + - uid: 13571 + components: + - type: Transform + pos: 60.5,50.5 + parent: 2 +- proto: Rack + entities: + - uid: 13572 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 + - uid: 13573 + components: + - type: Transform + pos: 15.5,32.5 + parent: 2 + - uid: 13574 + components: + - type: Transform + pos: 16.5,32.5 + parent: 2 + - uid: 13575 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 + - uid: 13576 + components: + - type: Transform + pos: -10.5,21.5 + parent: 2 + - uid: 13577 + components: + - type: Transform + pos: -11.5,18.5 + parent: 2 + - uid: 13578 + components: + - type: Transform + pos: -7.5,29.5 + parent: 2 + - uid: 13579 + components: + - type: Transform + pos: -5.5,40.5 + parent: 2 + - uid: 13580 + components: + - type: Transform + pos: -8.5,43.5 + parent: 2 + - uid: 13581 + components: + - type: Transform + pos: -8.5,44.5 + parent: 2 + - uid: 13582 + components: + - type: Transform + pos: -8.5,45.5 + parent: 2 + - uid: 13583 + components: + - type: Transform + pos: -5.5,43.5 + parent: 2 + - uid: 13584 + components: + - type: Transform + pos: -5.5,42.5 + parent: 2 + - uid: 13585 + components: + - type: Transform + pos: -4.5,42.5 + parent: 2 + - uid: 13586 + components: + - type: Transform + pos: -3.5,42.5 + parent: 2 + - uid: 13587 + components: + - type: Transform + pos: -2.5,42.5 + parent: 2 + - uid: 13588 + components: + - type: Transform + pos: -3.5,45.5 + parent: 2 + - uid: 13589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,70.5 + parent: 2 + - uid: 13590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,67.5 + parent: 2 + - uid: 13591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,69.5 + parent: 2 + - uid: 13592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,68.5 + parent: 2 + - uid: 13593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,68.5 + parent: 2 + - uid: 13594 + components: + - type: Transform + pos: -18.5,70.5 + parent: 2 + - uid: 13595 + components: + - type: Transform + pos: -19.5,64.5 + parent: 2 + - uid: 13596 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 13597 + components: + - type: Transform + pos: 27.5,3.5 + parent: 2 + - uid: 13599 + components: + - type: Transform + pos: 59.5,28.5 + parent: 2 + - uid: 13600 + components: + - type: Transform + pos: 60.5,28.5 + parent: 2 + - uid: 13601 + components: + - type: Transform + pos: 27.5,5.5 + parent: 2 + - uid: 13602 + components: + - type: Transform + pos: 29.5,54.5 + parent: 2 + - uid: 13603 + components: + - type: Transform + pos: 29.5,55.5 + parent: 2 + - uid: 13604 + components: + - type: Transform + pos: 44.5,54.5 + parent: 2 + - uid: 13605 + components: + - type: Transform + pos: 44.5,53.5 + parent: 2 + - uid: 13606 + components: + - type: Transform + pos: 35.5,45.5 + parent: 2 + - uid: 13607 + components: + - type: Transform + pos: 44.5,59.5 + parent: 2 + - uid: 13608 + components: + - type: Transform + pos: 45.5,59.5 + parent: 2 + - uid: 13609 + components: + - type: Transform + pos: 75.5,62.5 + parent: 2 + - uid: 13610 + components: + - type: Transform + pos: 74.5,45.5 + parent: 2 + - uid: 13611 + components: + - type: Transform + pos: 74.5,42.5 + parent: 2 + - uid: 13612 + components: + - type: Transform + pos: 78.5,42.5 + parent: 2 + - uid: 13613 + components: + - type: Transform + pos: 74.5,21.5 + parent: 2 + - uid: 13614 + components: + - type: Transform + pos: 69.5,48.5 + parent: 2 + - uid: 13615 + components: + - type: Transform + pos: 70.5,48.5 + parent: 2 + - uid: 13616 + components: + - type: Transform + pos: 69.5,52.5 + parent: 2 + - uid: 13617 + components: + - type: Transform + pos: 70.5,52.5 + parent: 2 + - uid: 13618 + components: + - type: Transform + pos: 68.5,52.5 + parent: 2 + - uid: 13619 + components: + - type: Transform + pos: 68.5,48.5 + parent: 2 + - uid: 13620 + components: + - type: Transform + pos: 68.5,50.5 + parent: 2 + - uid: 13621 + components: + - type: Transform + pos: -18.5,13.5 + parent: 2 + - uid: 13622 + components: + - type: Transform + pos: -17.5,13.5 + parent: 2 + - uid: 13623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,67.5 + parent: 2 + - uid: 13624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,69.5 + parent: 2 + - uid: 13625 + components: + - type: Transform + pos: 29.5,62.5 + parent: 2 + - uid: 13626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,66.5 + parent: 2 + - uid: 13627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,63.5 + parent: 2 + - uid: 13628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,62.5 + parent: 2 + - uid: 13629 + components: + - type: Transform + pos: 39.5,66.5 + parent: 2 + - uid: 13630 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 2 + - uid: 13631 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 + - uid: 13632 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 +- proto: RadiationCollector + entities: + - uid: 13633 + components: + - type: Transform + pos: -22.5,35.5 + parent: 2 + - uid: 13634 + components: + - type: Transform + pos: -22.5,33.5 + parent: 2 + - uid: 13635 + components: + - type: Transform + pos: -20.5,32.5 + parent: 2 + - uid: 13636 + components: + - type: Transform + pos: -20.5,31.5 + parent: 2 + - uid: 13637 + components: + - type: Transform + pos: -18.5,32.5 + parent: 2 + - uid: 13638 + components: + - type: Transform + pos: -21.5,35.5 + parent: 2 + - uid: 13639 + components: + - type: Transform + pos: -21.5,33.5 + parent: 2 + - uid: 13640 + components: + - type: Transform + pos: -18.5,36.5 + parent: 2 + - uid: 13641 + components: + - type: Transform + pos: -20.5,36.5 + parent: 2 + - uid: 13642 + components: + - type: Transform + pos: -20.5,37.5 + parent: 2 + - uid: 13643 + components: + - type: Transform + pos: -18.5,37.5 + parent: 2 + - uid: 13644 + components: + - type: Transform + pos: -18.5,31.5 + parent: 2 +- proto: Railing + entities: + - uid: 13646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,72.5 + parent: 2 + - uid: 13647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,73.5 + parent: 2 + - uid: 13648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,74.5 + parent: 2 + - uid: 13649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,75.5 + parent: 2 + - uid: 13650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,32.5 + parent: 2 + - uid: 13651 + components: + - type: Transform + pos: 82.5,36.5 + parent: 2 + - uid: 13652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,32.5 + parent: 2 + - uid: 13653 + components: + - type: Transform + pos: 83.5,36.5 + parent: 2 + - uid: 13654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,33.5 + parent: 2 + - uid: 13655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,34.5 + parent: 2 + - uid: 13656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,35.5 + parent: 2 + - uid: 13657 + components: + - type: Transform + pos: 71.5,11.5 + parent: 2 + - uid: 13658 + components: + - type: Transform + pos: 72.5,11.5 + parent: 2 + - uid: 13659 + components: + - type: Transform + pos: 73.5,11.5 + parent: 2 + - uid: 13660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,10.5 + parent: 2 + - uid: 13661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,15.5 + parent: 2 + - uid: 13662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,17.5 + parent: 2 + - uid: 13663 + components: + - type: Transform + pos: 72.5,61.5 + parent: 2 + - uid: 13664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,59.5 + parent: 2 + - uid: 13666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,63.5 + parent: 2 + - uid: 13667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,48.5 + parent: 2 + - uid: 13668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,60.5 + parent: 2 + - uid: 13669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,60.5 + parent: 2 + - uid: 13670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,58.5 + parent: 2 + - uid: 13671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-10.5 + parent: 2 + - uid: 13672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-11.5 + parent: 2 + - uid: 13673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-12.5 + parent: 2 + - uid: 13674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-9.5 + parent: 2 + - uid: 13675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-10.5 + parent: 2 + - uid: 13676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 2 + - uid: 13677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 9248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,41.5 + parent: 2 + - uid: 9362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,41.5 + parent: 2 + - uid: 11168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,39.5 + parent: 2 + - uid: 11710 + components: + - type: Transform + pos: -19.5,39.5 + parent: 2 + - uid: 13683 + components: + - type: Transform + pos: 84.5,32.5 + parent: 2 + - uid: 13684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,36.5 + parent: 2 + - uid: 13685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,11.5 + parent: 2 +- proto: RandomArtifactSpawner + entities: + - uid: 13686 + components: + - type: Transform + pos: 40.5,10.5 + parent: 2 + - uid: 13687 + components: + - type: Transform + pos: 31.5,10.5 + parent: 2 +- proto: RandomBoard + entities: + - uid: 13688 + components: + - type: Transform + pos: -2.5,42.5 + parent: 2 + - uid: 13689 + components: + - type: Transform + pos: -2.5,42.5 + parent: 2 + - uid: 13690 + components: + - type: Transform + pos: -3.5,42.5 + parent: 2 + - uid: 13691 + components: + - type: Transform + pos: -3.5,42.5 + parent: 2 + - uid: 13692 + components: + - type: Transform + pos: -4.5,42.5 + parent: 2 + - uid: 13693 + components: + - type: Transform + pos: -4.5,42.5 + parent: 2 + - uid: 13694 + components: + - type: Transform + pos: -5.5,42.5 + parent: 2 + - uid: 13695 + components: + - type: Transform + pos: -5.5,42.5 + parent: 2 + - uid: 13696 + components: + - type: Transform + pos: -5.5,43.5 + parent: 2 + - uid: 13697 + components: + - type: Transform + pos: -5.5,43.5 + parent: 2 + - uid: 13698 + components: + - type: Transform + pos: -3.5,45.5 + parent: 2 + - uid: 13699 + components: + - type: Transform + pos: -3.5,45.5 + parent: 2 + - uid: 13700 + components: + - type: Transform + pos: 37.5,30.5 + parent: 2 + - uid: 13701 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 13702 + components: + - type: Transform + pos: 37.5,30.5 + parent: 2 + - uid: 13703 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 13704 + components: + - type: Transform + pos: 42.5,28.5 + parent: 2 + - uid: 13705 + components: + - type: Transform + pos: 42.5,28.5 + parent: 2 + - uid: 13706 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 13707 + components: + - type: Transform + pos: 37.5,30.5 + parent: 2 + - uid: 13708 + components: + - type: Transform + pos: 42.5,28.5 + parent: 2 +- proto: RandomDrinkBottle + entities: + - uid: 19529 + components: + - type: Transform + pos: -23.5,73.5 + parent: 2 + - uid: 19530 + components: + - type: Transform + pos: -23.5,73.5 + parent: 2 +- proto: RandomDrinkGlass + entities: + - uid: 13709 + components: + - type: Transform + pos: 63.5,14.5 + parent: 2 + - uid: 13710 + components: + - type: Transform + pos: 63.5,15.5 + parent: 2 + - uid: 19531 + components: + - type: Transform + pos: -23.5,73.5 + parent: 2 + - uid: 19532 + components: + - type: Transform + pos: -23.5,73.5 + parent: 2 +- proto: RandomFoodBakedSingle + entities: + - uid: 19525 + components: + - type: Transform + pos: -24.5,73.5 + parent: 2 + - uid: 19526 + components: + - type: Transform + pos: -24.5,73.5 + parent: 2 +- proto: RandomFoodBakedWhole + entities: + - uid: 13711 + components: + - type: Transform + pos: 54.5,37.5 + parent: 2 +- proto: RandomFoodMeal + entities: + - uid: 13712 + components: + - type: Transform + pos: 53.5,37.5 + parent: 2 + - uid: 13713 + components: + - type: Transform + pos: 63.5,15.5 + parent: 2 + - uid: 13714 + components: + - type: Transform + pos: 63.5,14.5 + parent: 2 + - uid: 13715 + components: + - type: Transform + pos: 60.5,54.5 + parent: 2 + - uid: 13716 + components: + - type: Transform + pos: 62.5,50.5 + parent: 2 + - uid: 13717 + components: + - type: Transform + pos: 62.5,50.5 + parent: 2 + - uid: 19528 + components: + - type: Transform + pos: -24.5,73.5 + parent: 2 +- proto: RandomFoodSingle + entities: + - uid: 19527 + components: + - type: Transform + pos: -24.5,73.5 + parent: 2 +- proto: RandomPosterContraband + entities: + - uid: 18943 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 2 + - uid: 19051 + components: + - type: Transform + pos: -34.5,65.5 + parent: 2 + - uid: 19052 + components: + - type: Transform + pos: -36.5,60.5 + parent: 2 + - uid: 19054 + components: + - type: Transform + pos: -26.5,65.5 + parent: 2 + - uid: 19055 + components: + - type: Transform + pos: -30.5,62.5 + parent: 2 + - uid: 19094 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 + - uid: 19095 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 2 + - uid: 19170 + components: + - type: Transform + pos: 80.5,48.5 + parent: 2 + - uid: 19171 + components: + - type: Transform + pos: 77.5,50.5 + parent: 2 + - uid: 19172 + components: + - type: Transform + pos: 78.5,52.5 + parent: 2 + - uid: 19173 + components: + - type: Transform + pos: 77.5,54.5 + parent: 2 + - uid: 19174 + components: + - type: Transform + pos: 76.5,57.5 + parent: 2 + - uid: 19175 + components: + - type: Transform + pos: 79.5,54.5 + parent: 2 + - uid: 19176 + components: + - type: Transform + pos: 73.5,55.5 + parent: 2 + - uid: 19177 + components: + - type: Transform + pos: 74.5,51.5 + parent: 2 + - uid: 19178 + components: + - type: Transform + pos: 76.5,51.5 + parent: 2 + - uid: 19179 + components: + - type: Transform + pos: 76.5,48.5 + parent: 2 + - uid: 19180 + components: + - type: Transform + pos: 71.5,49.5 + parent: 2 + - uid: 19181 + components: + - type: Transform + pos: 71.5,52.5 + parent: 2 + - uid: 19182 + components: + - type: Transform + pos: 62.5,49.5 + parent: 2 + - uid: 19183 + components: + - type: Transform + pos: 59.5,50.5 + parent: 2 + - uid: 19184 + components: + - type: Transform + pos: 59.5,54.5 + parent: 2 + - uid: 19185 + components: + - type: Transform + pos: 54.5,55.5 + parent: 2 + - uid: 19186 + components: + - type: Transform + pos: 49.5,58.5 + parent: 2 + - uid: 19187 + components: + - type: Transform + pos: 46.5,60.5 + parent: 2 + - uid: 19188 + components: + - type: Transform + pos: 49.5,62.5 + parent: 2 + - uid: 19189 + components: + - type: Transform + pos: 46.5,63.5 + parent: 2 + - uid: 19190 + components: + - type: Transform + pos: 45.5,67.5 + parent: 2 + - uid: 19191 + components: + - type: Transform + pos: 40.5,67.5 + parent: 2 + - uid: 19192 + components: + - type: Transform + pos: 41.5,63.5 + parent: 2 + - uid: 19193 + components: + - type: Transform + pos: 37.5,63.5 + parent: 2 + - uid: 19194 + components: + - type: Transform + pos: 36.5,66.5 + parent: 2 + - uid: 19195 + components: + - type: Transform + pos: 38.5,67.5 + parent: 2 + - uid: 19196 + components: + - type: Transform + pos: 40.5,61.5 + parent: 2 + - uid: 19197 + components: + - type: Transform + pos: 40.5,59.5 + parent: 2 + - uid: 19198 + components: + - type: Transform + pos: 42.5,57.5 + parent: 2 + - uid: 19199 + components: + - type: Transform + pos: 45.5,61.5 + parent: 2 + - uid: 19200 + components: + - type: Transform + pos: 37.5,61.5 + parent: 2 + - uid: 19201 + components: + - type: Transform + pos: 29.5,61.5 + parent: 2 + - uid: 19202 + components: + - type: Transform + pos: 25.5,62.5 + parent: 2 + - uid: 19203 + components: + - type: Transform + pos: 25.5,65.5 + parent: 2 + - uid: 19204 + components: + - type: Transform + pos: 27.5,66.5 + parent: 2 + - uid: 19205 + components: + - type: Transform + pos: 30.5,65.5 + parent: 2 + - uid: 19206 + components: + - type: Transform + pos: 24.5,66.5 + parent: 2 + - uid: 19207 + components: + - type: Transform + pos: 20.5,67.5 + parent: 2 + - uid: 19208 + components: + - type: Transform + pos: 15.5,67.5 + parent: 2 + - uid: 19209 + components: + - type: Transform + pos: 15.5,70.5 + parent: 2 + - uid: 19210 + components: + - type: Transform + pos: 15.5,72.5 + parent: 2 + - uid: 19211 + components: + - type: Transform + pos: 17.5,70.5 + parent: 2 + - uid: 19212 + components: + - type: Transform + pos: 19.5,66.5 + parent: 2 + - uid: 19213 + components: + - type: Transform + pos: 17.5,74.5 + parent: 2 + - uid: 19214 + components: + - type: Transform + pos: 12.5,65.5 + parent: 2 + - uid: 19215 + components: + - type: Transform + pos: -14.5,15.5 + parent: 2 + - uid: 19216 + components: + - type: Transform + pos: -16.5,14.5 + parent: 2 + - uid: 19217 + components: + - type: Transform + pos: -21.5,13.5 + parent: 2 + - uid: 19218 + components: + - type: Transform + pos: -17.5,9.5 + parent: 2 + - uid: 19219 + components: + - type: Transform + pos: -17.5,14.5 + parent: 2 + - uid: 19220 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 19221 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 19222 + components: + - type: Transform + pos: -18.5,5.5 + parent: 2 + - uid: 19223 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - uid: 19224 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 19225 + components: + - type: Transform + pos: 13.5,1.5 + parent: 2 + - uid: 19226 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 19227 + components: + - type: Transform + pos: 17.5,1.5 + parent: 2 + - uid: 19228 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - uid: 19229 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 + - uid: 19230 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 19231 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 19232 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 + - uid: 19233 + components: + - type: Transform + pos: 23.5,4.5 + parent: 2 + - uid: 19234 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 19235 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 19236 + components: + - type: Transform + pos: 25.5,4.5 + parent: 2 + - uid: 19237 + components: + - type: Transform + pos: 44.5,5.5 + parent: 2 + - uid: 19238 + components: + - type: Transform + pos: 46.5,8.5 + parent: 2 + - uid: 19239 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - uid: 19240 + components: + - type: Transform + pos: 56.5,9.5 + parent: 2 + - uid: 19241 + components: + - type: Transform + pos: 61.5,12.5 + parent: 2 + - uid: 19242 + components: + - type: Transform + pos: 77.5,19.5 + parent: 2 + - uid: 19243 + components: + - type: Transform + pos: 78.5,18.5 + parent: 2 + - uid: 19244 + components: + - type: Transform + pos: 80.5,18.5 + parent: 2 + - uid: 19245 + components: + - type: Transform + pos: 75.5,21.5 + parent: 2 + - uid: 19246 + components: + - type: Transform + pos: 76.5,14.5 + parent: 2 + - uid: 19247 + components: + - type: Transform + pos: 77.5,13.5 + parent: 2 + - uid: 19248 + components: + - type: Transform + pos: 82.5,14.5 + parent: 2 + - uid: 19249 + components: + - type: Transform + pos: 54.5,64.5 + parent: 2 + - uid: 19250 + components: + - type: Transform + pos: 18.5,79.5 + parent: 2 + - uid: 19251 + components: + - type: Transform + pos: -40.5,62.5 + parent: 2 + - uid: 19252 + components: + - type: Transform + pos: -40.5,10.5 + parent: 2 + - uid: 19253 + components: + - type: Transform + pos: -40.5,14.5 + parent: 2 + - uid: 19254 + components: + - type: Transform + pos: -40.5,18.5 + parent: 2 + - uid: 19255 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 + - uid: 19256 + components: + - type: Transform + pos: -18.5,-13.5 + parent: 2 + - uid: 19257 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 2 + - uid: 19258 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 + - uid: 19259 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 2 + - uid: 19260 + components: + - type: Transform + pos: 21.5,1.5 + parent: 2 + - uid: 19261 + components: + - type: Transform + pos: 61.5,-4.5 + parent: 2 + - uid: 19262 + components: + - type: Transform + pos: 39.5,-2.5 + parent: 2 + - uid: 19533 + components: + - type: Transform + pos: -35.5,73.5 + parent: 2 + - uid: 19534 + components: + - type: Transform + pos: -28.5,80.5 + parent: 2 + - uid: 19535 + components: + - type: Transform + pos: -34.5,80.5 + parent: 2 +- proto: RandomPosterLegit + entities: + - uid: 12545 + components: + - type: Transform + pos: -21.5,72.5 + parent: 2 + - uid: 12546 + components: + - type: Transform + pos: -20.5,73.5 + parent: 2 + - uid: 12548 + components: + - type: Transform + pos: -12.5,71.5 + parent: 2 + - uid: 12560 + components: + - type: Transform + pos: -19.5,71.5 + parent: 2 + - uid: 13718 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - uid: 13719 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 2 + - uid: 13720 + components: + - type: Transform + pos: 37.5,-14.5 + parent: 2 + - uid: 13721 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 2 + - uid: 13722 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 2 + - uid: 14530 + components: + - type: Transform + pos: -12.5,68.5 + parent: 2 + - uid: 18949 + components: + - type: Transform + pos: 32.5,0.5 + parent: 2 + - uid: 18950 + components: + - type: Transform + pos: 37.5,1.5 + parent: 2 + - uid: 18951 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 18952 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 18953 + components: + - type: Transform + pos: 22.5,2.5 + parent: 2 + - uid: 18954 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 + - uid: 18955 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 18956 + components: + - type: Transform + pos: 37.5,6.5 + parent: 2 + - uid: 18957 + components: + - type: Transform + pos: 41.5,6.5 + parent: 2 + - uid: 18958 + components: + - type: Transform + pos: 42.5,9.5 + parent: 2 + - uid: 18959 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - uid: 18960 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 + - uid: 18961 + components: + - type: Transform + pos: 37.5,14.5 + parent: 2 + - uid: 18962 + components: + - type: Transform + pos: 33.5,17.5 + parent: 2 + - uid: 18963 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - uid: 18964 + components: + - type: Transform + pos: 28.5,18.5 + parent: 2 + - uid: 18965 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 + - uid: 18966 + components: + - type: Transform + pos: 27.5,8.5 + parent: 2 + - uid: 18967 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - uid: 18968 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 18969 + components: + - type: Transform + pos: 45.5,19.5 + parent: 2 + - uid: 18970 + components: + - type: Transform + pos: 50.5,16.5 + parent: 2 + - uid: 18971 + components: + - type: Transform + pos: 54.5,13.5 + parent: 2 + - uid: 18972 + components: + - type: Transform + pos: 53.5,19.5 + parent: 2 + - uid: 18973 + components: + - type: Transform + pos: 51.5,23.5 + parent: 2 + - uid: 18974 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 + - uid: 18975 + components: + - type: Transform + pos: 45.5,28.5 + parent: 2 + - uid: 18976 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 + - uid: 18977 + components: + - type: Transform + pos: 45.5,31.5 + parent: 2 + - uid: 18978 + components: + - type: Transform + pos: 57.5,24.5 + parent: 2 + - uid: 18979 + components: + - type: Transform + pos: 60.5,18.5 + parent: 2 + - uid: 18980 + components: + - type: Transform + pos: 58.5,14.5 + parent: 2 + - uid: 18981 + components: + - type: Transform + pos: 52.5,32.5 + parent: 2 + - uid: 18982 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 18983 + components: + - type: Transform + pos: 62.5,32.5 + parent: 2 + - uid: 18984 + components: + - type: Transform + pos: 60.5,41.5 + parent: 2 + - uid: 18985 + components: + - type: Transform + pos: 58.5,43.5 + parent: 2 + - uid: 18986 + components: + - type: Transform + pos: 52.5,47.5 + parent: 2 + - uid: 18987 + components: + - type: Transform + pos: 57.5,47.5 + parent: 2 + - uid: 18988 + components: + - type: Transform + pos: 49.5,46.5 + parent: 2 + - uid: 18989 + components: + - type: Transform + pos: 45.5,48.5 + parent: 2 + - uid: 18990 + components: + - type: Transform + pos: 43.5,44.5 + parent: 2 + - uid: 18991 + components: + - type: Transform + pos: 42.5,39.5 + parent: 2 + - uid: 18992 + components: + - type: Transform + pos: 43.5,36.5 + parent: 2 + - uid: 18993 + components: + - type: Transform + pos: 35.5,36.5 + parent: 2 + - uid: 18994 + components: + - type: Transform + pos: 34.5,42.5 + parent: 2 + - uid: 18995 + components: + - type: Transform + pos: 39.5,46.5 + parent: 2 + - uid: 18996 + components: + - type: Transform + pos: 38.5,51.5 + parent: 2 + - uid: 18997 + components: + - type: Transform + pos: 41.5,55.5 + parent: 2 + - uid: 18998 + components: + - type: Transform + pos: 44.5,52.5 + parent: 2 + - uid: 18999 + components: + - type: Transform + pos: 32.5,52.5 + parent: 2 + - uid: 19000 + components: + - type: Transform + pos: 28.5,54.5 + parent: 2 + - uid: 19001 + components: + - type: Transform + pos: 30.5,57.5 + parent: 2 + - uid: 19002 + components: + - type: Transform + pos: 36.5,53.5 + parent: 2 + - uid: 19003 + components: + - type: Transform + pos: 29.5,46.5 + parent: 2 + - uid: 19004 + components: + - type: Transform + pos: 25.5,42.5 + parent: 2 + - uid: 19005 + components: + - type: Transform + pos: 25.5,37.5 + parent: 2 + - uid: 19006 + components: + - type: Transform + pos: 29.5,30.5 + parent: 2 + - uid: 19007 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 + - uid: 19008 + components: + - type: Transform + pos: 20.5,22.5 + parent: 2 + - uid: 19009 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 + - uid: 19010 + components: + - type: Transform + pos: 30.5,25.5 + parent: 2 + - uid: 19011 + components: + - type: Transform + pos: 9.5,22.5 + parent: 2 + - uid: 19012 + components: + - type: Transform + pos: 7.5,25.5 + parent: 2 + - uid: 19013 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - uid: 19014 + components: + - type: Transform + pos: 3.5,30.5 + parent: 2 + - uid: 19015 + components: + - type: Transform + pos: 6.5,36.5 + parent: 2 + - uid: 19016 + components: + - type: Transform + pos: 2.5,41.5 + parent: 2 + - uid: 19017 + components: + - type: Transform + pos: 9.5,44.5 + parent: 2 + - uid: 19018 + components: + - type: Transform + pos: 10.5,38.5 + parent: 2 + - uid: 19019 + components: + - type: Transform + pos: 19.5,43.5 + parent: 2 + - uid: 19020 + components: + - type: Transform + pos: 15.5,50.5 + parent: 2 + - uid: 19021 + components: + - type: Transform + pos: 26.5,51.5 + parent: 2 + - uid: 19022 + components: + - type: Transform + pos: 26.5,56.5 + parent: 2 + - uid: 19023 + components: + - type: Transform + pos: 22.5,59.5 + parent: 2 + - uid: 19024 + components: + - type: Transform + pos: 15.5,55.5 + parent: 2 + - uid: 19025 + components: + - type: Transform + pos: 8.5,58.5 + parent: 2 + - uid: 19026 + components: + - type: Transform + pos: 3.5,56.5 + parent: 2 + - uid: 19027 + components: + - type: Transform + pos: 12.5,62.5 + parent: 2 + - uid: 19028 + components: + - type: Transform + pos: 15.5,64.5 + parent: 2 + - uid: 19029 + components: + - type: Transform + pos: 19.5,60.5 + parent: 2 + - uid: 19030 + components: + - type: Transform + pos: 10.5,65.5 + parent: 2 + - uid: 19031 + components: + - type: Transform + pos: 3.5,68.5 + parent: 2 + - uid: 19032 + components: + - type: Transform + pos: 2.5,65.5 + parent: 2 + - uid: 19033 + components: + - type: Transform + pos: 0.5,67.5 + parent: 2 + - uid: 19034 + components: + - type: Transform + pos: -2.5,65.5 + parent: 2 + - uid: 19035 + components: + - type: Transform + pos: -2.5,61.5 + parent: 2 + - uid: 19036 + components: + - type: Transform + pos: -8.5,62.5 + parent: 2 + - uid: 19037 + components: + - type: Transform + pos: -10.5,65.5 + parent: 2 + - uid: 19038 + components: + - type: Transform + pos: -13.5,66.5 + parent: 2 + - uid: 19039 + components: + - type: Transform + pos: -15.5,71.5 + parent: 2 + - uid: 19040 + components: + - type: Transform + pos: -20.5,68.5 + parent: 2 + - uid: 19041 + components: + - type: Transform + pos: -15.5,65.5 + parent: 2 + - uid: 19042 + components: + - type: Transform + pos: -20.5,65.5 + parent: 2 + - uid: 19043 + components: + - type: Transform + pos: -20.5,61.5 + parent: 2 + - uid: 19044 + components: + - type: Transform + pos: -20.5,59.5 + parent: 2 + - uid: 19045 + components: + - type: Transform + pos: -21.5,55.5 + parent: 2 + - uid: 19046 + components: + - type: Transform + pos: -21.5,51.5 + parent: 2 + - uid: 19047 + components: + - type: Transform + pos: -25.5,53.5 + parent: 2 + - uid: 19048 + components: + - type: Transform + pos: -10.5,52.5 + parent: 2 + - uid: 19049 + components: + - type: Transform + pos: -26.5,59.5 + parent: 2 + - uid: 19056 + components: + - type: Transform + pos: -36.5,55.5 + parent: 2 + - uid: 19057 + components: + - type: Transform + pos: -32.5,54.5 + parent: 2 + - uid: 19058 + components: + - type: Transform + pos: -25.5,54.5 + parent: 2 + - uid: 19059 + components: + - type: Transform + pos: -25.5,49.5 + parent: 2 + - uid: 19060 + components: + - type: Transform + pos: -23.5,44.5 + parent: 2 + - uid: 19061 + components: + - type: Transform + pos: -17.5,46.5 + parent: 2 + - uid: 19062 + components: + - type: Transform + pos: -11.5,42.5 + parent: 2 + - uid: 19063 + components: + - type: Transform + pos: -2.5,41.5 + parent: 2 + - uid: 19064 + components: + - type: Transform + pos: -2.5,45.5 + parent: 2 + - uid: 19065 + components: + - type: Transform + pos: -1.5,38.5 + parent: 2 + - uid: 19066 + components: + - type: Transform + pos: -1.5,26.5 + parent: 2 + - uid: 19067 + components: + - type: Transform + pos: -7.5,36.5 + parent: 2 + - uid: 19068 + components: + - type: Transform + pos: -15.5,32.5 + parent: 2 + - uid: 19069 + components: + - type: Transform + pos: -10.5,26.5 + parent: 2 + - uid: 19070 + components: + - type: Transform + pos: -5.5,22.5 + parent: 2 + - uid: 19071 + components: + - type: Transform + pos: -8.5,18.5 + parent: 2 + - uid: 19072 + components: + - type: Transform + pos: -10.5,17.5 + parent: 2 + - uid: 19073 + components: + - type: Transform + pos: -20.5,16.5 + parent: 2 + - uid: 19074 + components: + - type: Transform + pos: -23.5,20.5 + parent: 2 + - uid: 19075 + components: + - type: Transform + pos: -34.5,14.5 + parent: 2 + - uid: 19076 + components: + - type: Transform + pos: -34.5,6.5 + parent: 2 + - uid: 19077 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 19078 + components: + - type: Transform + pos: -25.5,20.5 + parent: 2 + - uid: 19079 + components: + - type: Transform + pos: -34.5,23.5 + parent: 2 + - uid: 19080 + components: + - type: Transform + pos: -28.5,26.5 + parent: 2 + - uid: 19081 + components: + - type: Transform + pos: -32.5,30.5 + parent: 2 + - uid: 19082 + components: + - type: Transform + pos: -37.5,29.5 + parent: 2 + - uid: 19083 + components: + - type: Transform + pos: -34.5,33.5 + parent: 2 + - uid: 19084 + components: + - type: Transform + pos: -38.5,36.5 + parent: 2 + - uid: 19085 + components: + - type: Transform + pos: -34.5,40.5 + parent: 2 + - uid: 19086 + components: + - type: Transform + pos: -29.5,38.5 + parent: 2 + - uid: 19087 + components: + - type: Transform + pos: -27.5,34.5 + parent: 2 + - uid: 19088 + components: + - type: Transform + pos: -22.5,32.5 + parent: 2 + - uid: 19089 + components: + - type: Transform + pos: -23.5,42.5 + parent: 2 + - uid: 19090 + components: + - type: Transform + pos: -13.5,26.5 + parent: 2 + - uid: 19091 + components: + - type: Transform + pos: -7.5,14.5 + parent: 2 + - uid: 19092 + components: + - type: Transform + pos: -13.5,10.5 + parent: 2 + - uid: 19093 + components: + - type: Transform + pos: -5.5,9.5 + parent: 2 + - uid: 19096 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 2 + - uid: 19097 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 2 + - uid: 19098 + components: + - type: Transform + pos: -17.5,3.5 + parent: 2 + - uid: 19099 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 19100 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 19101 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 19102 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 19103 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 19104 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 19105 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 19106 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 + - uid: 19107 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 19108 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 + - uid: 19109 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 19110 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 19111 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 19112 + components: + - type: Transform + pos: 16.5,16.5 + parent: 2 + - uid: 19113 + components: + - type: Transform + pos: 47.5,9.5 + parent: 2 + - uid: 19114 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 2 + - uid: 19115 + components: + - type: Transform + pos: 58.5,3.5 + parent: 2 + - uid: 19116 + components: + - type: Transform + pos: 44.5,3.5 + parent: 2 + - uid: 19117 + components: + - type: Transform + pos: 48.5,-4.5 + parent: 2 + - uid: 19118 + components: + - type: Transform + pos: 52.5,-9.5 + parent: 2 + - uid: 19119 + components: + - type: Transform + pos: 54.5,-7.5 + parent: 2 + - uid: 19120 + components: + - type: Transform + pos: 48.5,-7.5 + parent: 2 + - uid: 19121 + components: + - type: Transform + pos: 68.5,6.5 + parent: 2 + - uid: 19122 + components: + - type: Transform + pos: 71.5,8.5 + parent: 2 + - uid: 19123 + components: + - type: Transform + pos: 75.5,9.5 + parent: 2 + - uid: 19124 + components: + - type: Transform + pos: 75.5,-1.5 + parent: 2 + - uid: 19125 + components: + - type: Transform + pos: 68.5,1.5 + parent: 2 + - uid: 19126 + components: + - type: Transform + pos: 63.5,0.5 + parent: 2 + - uid: 19127 + components: + - type: Transform + pos: 62.5,7.5 + parent: 2 + - uid: 19128 + components: + - type: Transform + pos: 61.5,10.5 + parent: 2 + - uid: 19129 + components: + - type: Transform + pos: 69.5,12.5 + parent: 2 + - uid: 19130 + components: + - type: Transform + pos: 62.5,14.5 + parent: 2 + - uid: 19131 + components: + - type: Transform + pos: 63.5,20.5 + parent: 2 + - uid: 19132 + components: + - type: Transform + pos: 73.5,20.5 + parent: 2 + - uid: 19133 + components: + - type: Transform + pos: 63.5,25.5 + parent: 2 + - uid: 19134 + components: + - type: Transform + pos: 73.5,26.5 + parent: 2 + - uid: 19135 + components: + - type: Transform + pos: 73.5,23.5 + parent: 2 + - uid: 19136 + components: + - type: Transform + pos: 69.5,22.5 + parent: 2 + - uid: 19137 + components: + - type: Transform + pos: 67.5,31.5 + parent: 2 + - uid: 19138 + components: + - type: Transform + pos: 71.5,32.5 + parent: 2 + - uid: 19139 + components: + - type: Transform + pos: 78.5,32.5 + parent: 2 + - uid: 19140 + components: + - type: Transform + pos: 79.5,27.5 + parent: 2 + - uid: 19141 + components: + - type: Transform + pos: 79.5,22.5 + parent: 2 + - uid: 19142 + components: + - type: Transform + pos: 83.5,20.5 + parent: 2 + - uid: 19143 + components: + - type: Transform + pos: 84.5,21.5 + parent: 2 + - uid: 19144 + components: + - type: Transform + pos: 79.5,37.5 + parent: 2 + - uid: 19145 + components: + - type: Transform + pos: 83.5,40.5 + parent: 2 + - uid: 19146 + components: + - type: Transform + pos: 79.5,40.5 + parent: 2 + - uid: 19147 + components: + - type: Transform + pos: 76.5,41.5 + parent: 2 + - uid: 19148 + components: + - type: Transform + pos: 74.5,36.5 + parent: 2 + - uid: 19149 + components: + - type: Transform + pos: 73.5,37.5 + parent: 2 + - uid: 19150 + components: + - type: Transform + pos: 70.5,41.5 + parent: 2 + - uid: 19151 + components: + - type: Transform + pos: 67.5,41.5 + parent: 2 + - uid: 19152 + components: + - type: Transform + pos: 63.5,39.5 + parent: 2 + - uid: 19153 + components: + - type: Transform + pos: 63.5,44.5 + parent: 2 + - uid: 19154 + components: + - type: Transform + pos: 67.5,48.5 + parent: 2 + - uid: 19155 + components: + - type: Transform + pos: 67.5,53.5 + parent: 2 + - uid: 19156 + components: + - type: Transform + pos: 63.5,51.5 + parent: 2 + - uid: 19157 + components: + - type: Transform + pos: 62.5,55.5 + parent: 2 + - uid: 19158 + components: + - type: Transform + pos: 61.5,58.5 + parent: 2 + - uid: 19159 + components: + - type: Transform + pos: 58.5,60.5 + parent: 2 + - uid: 19160 + components: + - type: Transform + pos: 61.5,62.5 + parent: 2 + - uid: 19161 + components: + - type: Transform + pos: 71.5,58.5 + parent: 2 + - uid: 19162 + components: + - type: Transform + pos: 71.5,62.5 + parent: 2 + - uid: 19163 + components: + - type: Transform + pos: 73.5,63.5 + parent: 2 + - uid: 19164 + components: + - type: Transform + pos: 78.5,58.5 + parent: 2 + - uid: 19165 + components: + - type: Transform + pos: 80.5,63.5 + parent: 2 + - uid: 19166 + components: + - type: Transform + pos: 76.5,46.5 + parent: 2 + - uid: 19167 + components: + - type: Transform + pos: 71.5,47.5 + parent: 2 + - uid: 19168 + components: + - type: Transform + pos: 80.5,45.5 + parent: 2 + - uid: 19169 + components: + - type: Transform + pos: 83.5,41.5 + parent: 2 +- proto: RandomSoap + entities: + - uid: 13723 + components: + - type: Transform + pos: -35.5,64.5 + parent: 2 + - uid: 13724 + components: + - type: Transform + pos: 11.5,68.5 + parent: 2 +- proto: RandomSpawner + entities: + - uid: 13725 + components: + - type: Transform + pos: 28.5,63.5 + parent: 2 +- proto: RandomSpawner100 + entities: + - uid: 13726 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - uid: 13727 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 + - uid: 13728 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 13729 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 13730 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 13731 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 13732 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 13733 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 13734 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 13735 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 13736 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 +- proto: RandomVending + entities: + - uid: 13737 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - uid: 13738 + components: + - type: Transform + pos: 2.5,53.5 + parent: 2 + - uid: 13739 + components: + - type: Transform + pos: 10.5,78.5 + parent: 2 + - uid: 13740 + components: + - type: Transform + pos: -1.5,75.5 + parent: 2 + - uid: 13741 + components: + - type: Transform + pos: 38.5,45.5 + parent: 2 + - uid: 13742 + components: + - type: Transform + pos: 37.5,41.5 + parent: 2 + - uid: 13743 + components: + - type: Transform + pos: 35.5,41.5 + parent: 2 + - uid: 13744 + components: + - type: Transform + pos: 10.5,45.5 + parent: 2 + - uid: 13745 + components: + - type: Transform + pos: 80.5,21.5 + parent: 2 + - uid: 13746 + components: + - type: Transform + pos: 68.5,8.5 + parent: 2 + - uid: 13747 + components: + - type: Transform + pos: 62.5,8.5 + parent: 2 + - uid: 13748 + components: + - type: Transform + pos: 76.5,5.5 + parent: 2 + - uid: 13749 + components: + - type: Transform + pos: 72.5,21.5 + parent: 2 + - uid: 13750 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 +- proto: RandomVendingDrinks + entities: + - uid: 13751 + components: + - type: Transform + pos: -7.5,64.5 + parent: 2 + - uid: 13752 + components: + - type: Transform + pos: -30.5,63.5 + parent: 2 + - uid: 13753 + components: + - type: Transform + pos: 3.5,53.5 + parent: 2 + - uid: 13754 + components: + - type: Transform + pos: 36.5,32.5 + parent: 2 + - uid: 13755 + components: + - type: Transform + pos: 28.5,36.5 + parent: 2 + - uid: 13756 + components: + - type: Transform + pos: 3.5,39.5 + parent: 2 + - uid: 13757 + components: + - type: Transform + pos: 10.5,44.5 + parent: 2 + - uid: 13759 + components: + - type: Transform + pos: 63.5,8.5 + parent: 2 + - uid: 13760 + components: + - type: Transform + pos: 71.5,4.5 + parent: 2 + - uid: 13761 + components: + - type: Transform + pos: 2.5,46.5 + parent: 2 + - uid: 13762 + components: + - type: Transform + pos: -16.5,49.5 + parent: 2 + - uid: 13763 + components: + - type: Transform + pos: -1.5,23.5 + parent: 2 + - uid: 13764 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - uid: 13765 + components: + - type: Transform + pos: 42.5,49.5 + parent: 2 + - uid: 13766 + components: + - type: Transform + pos: -7.5,6.5 + parent: 2 + - uid: 17000 + components: + - type: Transform + pos: 68.5,23.5 + parent: 2 + - uid: 19494 + components: + - type: Transform + pos: -21.5,74.5 + parent: 2 +- proto: RandomVendingSnacks + entities: + - uid: 7198 + components: + - type: Transform + pos: 69.5,23.5 + parent: 2 + - uid: 13767 + components: + - type: Transform + pos: 6.5,17.5 + parent: 2 + - uid: 13768 + components: + - type: Transform + pos: -7.5,63.5 + parent: 2 + - uid: 13769 + components: + - type: Transform + pos: -29.5,63.5 + parent: 2 + - uid: 13770 + components: + - type: Transform + pos: 37.5,32.5 + parent: 2 + - uid: 13771 + components: + - type: Transform + pos: 29.5,36.5 + parent: 2 + - uid: 13772 + components: + - type: Transform + pos: 10.5,43.5 + parent: 2 + - uid: 13773 + components: + - type: Transform + pos: 67.5,8.5 + parent: 2 + - uid: 13774 + components: + - type: Transform + pos: 42.5,47.5 + parent: 2 + - uid: 13775 + components: + - type: Transform + pos: 2.5,45.5 + parent: 2 + - uid: 13776 + components: + - type: Transform + pos: -16.5,47.5 + parent: 2 + - uid: 13777 + components: + - type: Transform + pos: -1.5,22.5 + parent: 2 + - uid: 13778 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 13779 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 + - uid: 13780 + components: + - type: Transform + pos: -6.5,8.5 + parent: 2 + - uid: 19495 + components: + - type: Transform + pos: -21.5,73.5 + parent: 2 +- proto: Recycler + entities: + - uid: 13781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14459 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 13782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,22.5 + parent: 2 + - uid: 13783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,22.5 + parent: 2 + - uid: 13784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,22.5 + parent: 2 + - uid: 13785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,31.5 + parent: 2 + - uid: 13786 + components: + - type: Transform + pos: -12.5,27.5 + parent: 2 + - uid: 13787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,21.5 + parent: 2 + - uid: 13788 + components: + - type: Transform + pos: -36.5,11.5 + parent: 2 + - uid: 13789 + components: + - type: Transform + pos: -36.5,7.5 + parent: 2 + - uid: 13790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,4.5 + parent: 2 + - uid: 13791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,4.5 + parent: 2 + - uid: 13792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,25.5 + parent: 2 + - uid: 13793 + components: + - type: Transform + pos: -20.5,47.5 + parent: 2 + - uid: 13794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,17.5 + parent: 2 + - uid: 13795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,15.5 + parent: 2 + - uid: 13796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,4.5 + parent: 2 + - uid: 13797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,4.5 + parent: 2 + - uid: 13798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,20.5 + parent: 2 + - uid: 13799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,19.5 + parent: 2 + - uid: 13800 + components: + - type: Transform + pos: -36.5,9.5 + parent: 2 + - uid: 13801 + components: + - type: Transform + pos: -36.5,13.5 + parent: 2 + - uid: 13802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,26.5 + parent: 2 + - uid: 13803 + components: + - type: Transform + pos: -12.5,29.5 + parent: 2 + - uid: 13804 + components: + - type: Transform + pos: -12.5,28.5 + parent: 2 + - uid: 13805 + components: + - type: Transform + pos: -12.5,35.5 + parent: 2 + - uid: 13806 + components: + - type: Transform + pos: -12.5,33.5 + parent: 2 + - uid: 13807 + components: + - type: Transform + pos: -12.5,37.5 + parent: 2 + - uid: 13808 + components: + - type: Transform + pos: -12.5,39.5 + parent: 2 + - uid: 13809 + components: + - type: Transform + pos: -12.5,40.5 + parent: 2 + - uid: 13810 + components: + - type: Transform + pos: -12.5,41.5 + parent: 2 + - uid: 13811 + components: + - type: Transform + pos: -19.5,47.5 + parent: 2 + - uid: 13812 + components: + - type: Transform + pos: -13.5,42.5 + parent: 2 + - uid: 13813 + components: + - type: Transform + pos: -16.5,42.5 + parent: 2 + - uid: 13814 + components: + - type: Transform + pos: -21.5,47.5 + parent: 2 + - uid: 13815 + components: + - type: Transform + pos: -28.5,29.5 + parent: 2 + - uid: 13816 + components: + - type: Transform + pos: -27.5,33.5 + parent: 2 + - uid: 13817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,27.5 + parent: 2 + - uid: 13818 + components: + - type: Transform + pos: 32.5,11.5 + parent: 2 + - uid: 13819 + components: + - type: Transform + pos: 32.5,9.5 + parent: 2 + - uid: 13820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,16.5 + parent: 2 + - uid: 13821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,12.5 + parent: 2 + - uid: 13822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,8.5 + parent: 2 + - uid: 13823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,4.5 + parent: 2 + - uid: 13824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,4.5 + parent: 2 + - uid: 13825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,23.5 + parent: 2 + - uid: 13826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,39.5 + parent: 2 + - uid: 13827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,38.5 + parent: 2 + - uid: 13828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,37.5 + parent: 2 + - uid: 13829 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 13830 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 +- proto: ReinforcedWindow + entities: + - uid: 5069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,78.5 + parent: 2 + - uid: 5758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,75.5 + parent: 2 + - uid: 5997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,78.5 + parent: 2 + - uid: 5998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,77.5 + parent: 2 + - uid: 5999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,77.5 + parent: 2 + - uid: 6014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,75.5 + parent: 2 + - uid: 6015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,76.5 + parent: 2 + - uid: 9909 + components: + - type: Transform + pos: 53.5,7.5 + parent: 2 + - uid: 11677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,1.5 + parent: 2 + - uid: 12541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,75.5 + parent: 2 + - uid: 12561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,75.5 + parent: 2 + - uid: 12563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,76.5 + parent: 2 + - uid: 12564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,77.5 + parent: 2 + - uid: 12570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,76.5 + parent: 2 + - uid: 13552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,76.5 + parent: 2 + - uid: 13831 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - uid: 13832 + components: + - type: Transform + pos: 6.5,31.5 + parent: 2 + - uid: 13833 + components: + - type: Transform + pos: 2.5,32.5 + parent: 2 + - uid: 13834 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - uid: 13835 + components: + - type: Transform + pos: 6.5,35.5 + parent: 2 + - uid: 13836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,17.5 + parent: 2 + - uid: 13837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,22.5 + parent: 2 + - uid: 13838 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 13840 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 13841 + components: + - type: Transform + pos: 34.5,51.5 + parent: 2 + - uid: 13842 + components: + - type: Transform + pos: 36.5,51.5 + parent: 2 + - uid: 13843 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 13844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,36.5 + parent: 2 + - uid: 13845 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 2 + - uid: 13846 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 2 + - uid: 13847 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 + - uid: 13848 + components: + - type: Transform + pos: -3.5,53.5 + parent: 2 + - uid: 13849 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 13850 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 13851 + components: + - type: Transform + pos: -2.5,0.5 + parent: 2 + - uid: 13852 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 13853 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 13854 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 + - uid: 13855 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 13856 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 13857 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 13858 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 13859 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 + - uid: 13860 + components: + - type: Transform + pos: -10.5,3.5 + parent: 2 + - uid: 13861 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 13862 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 13863 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 13864 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - uid: 13865 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 + - uid: 13866 + components: + - type: Transform + pos: 12.5,14.5 + parent: 2 + - uid: 13867 + components: + - type: Transform + pos: -7.5,13.5 + parent: 2 + - uid: 13868 + components: + - type: Transform + pos: -7.5,12.5 + parent: 2 + - uid: 13869 + components: + - type: Transform + pos: -6.5,12.5 + parent: 2 + - uid: 13870 + components: + - type: Transform + pos: -5.5,12.5 + parent: 2 + - uid: 13871 + components: + - type: Transform + pos: -3.5,12.5 + parent: 2 + - uid: 13872 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 13873 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 13874 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 13875 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 13876 + components: + - type: Transform + pos: 2.5,15.5 + parent: 2 + - uid: 13877 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 13878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,23.5 + parent: 2 + - uid: 13879 + components: + - type: Transform + pos: -1.5,25.5 + parent: 2 + - uid: 13880 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - uid: 13881 + components: + - type: Transform + pos: 8.5,26.5 + parent: 2 + - uid: 13882 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 + - uid: 13883 + components: + - type: Transform + pos: 9.5,27.5 + parent: 2 + - uid: 13884 + components: + - type: Transform + pos: 9.5,30.5 + parent: 2 + - uid: 13885 + components: + - type: Transform + pos: 9.5,29.5 + parent: 2 + - uid: 13886 + components: + - type: Transform + pos: 10.5,29.5 + parent: 2 + - uid: 13887 + components: + - type: Transform + pos: 11.5,29.5 + parent: 2 + - uid: 13888 + components: + - type: Transform + pos: -6.5,24.5 + parent: 2 + - uid: 13889 + components: + - type: Transform + pos: -6.5,21.5 + parent: 2 + - uid: 13890 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - uid: 13891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,24.5 + parent: 2 + - uid: 13892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,29.5 + parent: 2 + - uid: 13893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,29.5 + parent: 2 + - uid: 13894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,22.5 + parent: 2 + - uid: 13895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,27.5 + parent: 2 + - uid: 13896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,29.5 + parent: 2 + - uid: 13897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,31.5 + parent: 2 + - uid: 13898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,34.5 + parent: 2 + - uid: 13899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,30.5 + parent: 2 + - uid: 13900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,31.5 + parent: 2 + - uid: 13901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,35.5 + parent: 2 + - uid: 13902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,34.5 + parent: 2 + - uid: 13903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,36.5 + parent: 2 + - uid: 13904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,37.5 + parent: 2 + - uid: 13905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,38.5 + parent: 2 + - uid: 13906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,36.5 + parent: 2 + - uid: 13907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,36.5 + parent: 2 + - uid: 13908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,39.5 + parent: 2 + - uid: 13909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,42.5 + parent: 2 + - uid: 13910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,42.5 + parent: 2 + - uid: 13911 + components: + - type: Transform + pos: 8.5,42.5 + parent: 2 + - uid: 13912 + components: + - type: Transform + pos: 2.5,40.5 + parent: 2 + - uid: 13913 + components: + - type: Transform + pos: 2.5,38.5 + parent: 2 + - uid: 13915 + components: + - type: Transform + pos: -13.5,20.5 + parent: 2 + - uid: 13916 + components: + - type: Transform + pos: -13.5,18.5 + parent: 2 + - uid: 13917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,6.5 + parent: 2 + - uid: 13918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,5.5 + parent: 2 + - uid: 13919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,4.5 + parent: 2 + - uid: 13920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,4.5 + parent: 2 + - uid: 13921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,5.5 + parent: 2 + - uid: 13922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,6.5 + parent: 2 + - uid: 13923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,19.5 + parent: 2 + - uid: 13924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,17.5 + parent: 2 + - uid: 13925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,19.5 + parent: 2 + - uid: 13926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,28.5 + parent: 2 + - uid: 13927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,29.5 + parent: 2 + - uid: 13928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,31.5 + parent: 2 + - uid: 13929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,32.5 + parent: 2 + - uid: 13930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,34.5 + parent: 2 + - uid: 13931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,36.5 + parent: 2 + - uid: 13932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,34.5 + parent: 2 + - uid: 13933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,48.5 + parent: 2 + - uid: 13934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,44.5 + parent: 2 + - uid: 13935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,47.5 + parent: 2 + - uid: 13936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,31.5 + parent: 2 + - uid: 13937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,31.5 + parent: 2 + - uid: 13938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,31.5 + parent: 2 + - uid: 13939 + components: + - type: Transform + pos: -19.5,50.5 + parent: 2 + - uid: 13940 + components: + - type: Transform + pos: -18.5,50.5 + parent: 2 + - uid: 13941 + components: + - type: Transform + pos: -13.5,50.5 + parent: 2 + - uid: 13942 + components: + - type: Transform + pos: -16.5,54.5 + parent: 2 + - uid: 13943 + components: + - type: Transform + pos: -16.5,55.5 + parent: 2 + - uid: 13944 + components: + - type: Transform + pos: -20.5,56.5 + parent: 2 + - uid: 13945 + components: + - type: Transform + pos: -14.5,53.5 + parent: 2 + - uid: 13946 + components: + - type: Transform + pos: -9.5,50.5 + parent: 2 + - uid: 13947 + components: + - type: Transform + pos: -8.5,50.5 + parent: 2 + - uid: 13948 + components: + - type: Transform + pos: -7.5,50.5 + parent: 2 + - uid: 13949 + components: + - type: Transform + pos: -5.5,50.5 + parent: 2 + - uid: 13950 + components: + - type: Transform + pos: -4.5,50.5 + parent: 2 + - uid: 13951 + components: + - type: Transform + pos: -3.5,50.5 + parent: 2 + - uid: 13952 + components: + - type: Transform + pos: -1.5,50.5 + parent: 2 + - uid: 13953 + components: + - type: Transform + pos: -0.5,50.5 + parent: 2 + - uid: 13954 + components: + - type: Transform + pos: 0.5,50.5 + parent: 2 + - uid: 13955 + components: + - type: Transform + pos: -9.5,53.5 + parent: 2 + - uid: 13956 + components: + - type: Transform + pos: -7.5,53.5 + parent: 2 + - uid: 13957 + components: + - type: Transform + pos: -5.5,53.5 + parent: 2 + - uid: 13958 + components: + - type: Transform + pos: -1.5,53.5 + parent: 2 + - uid: 13959 + components: + - type: Transform + pos: 0.5,53.5 + parent: 2 + - uid: 13960 + components: + - type: Transform + pos: -22.5,50.5 + parent: 2 + - uid: 13961 + components: + - type: Transform + pos: -23.5,50.5 + parent: 2 + - uid: 13962 + components: + - type: Transform + pos: -24.5,50.5 + parent: 2 + - uid: 13963 + components: + - type: Transform + pos: -22.5,56.5 + parent: 2 + - uid: 13964 + components: + - type: Transform + pos: -24.5,56.5 + parent: 2 + - uid: 13965 + components: + - type: Transform + pos: -30.5,51.5 + parent: 2 + - uid: 13966 + components: + - type: Transform + pos: -30.5,53.5 + parent: 2 + - uid: 13967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,52.5 + parent: 2 + - uid: 13968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,55.5 + parent: 2 + - uid: 13969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,58.5 + parent: 2 + - uid: 13970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,58.5 + parent: 2 + - uid: 13978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,68.5 + parent: 2 + - uid: 13979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,67.5 + parent: 2 + - uid: 13980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,72.5 + parent: 2 + - uid: 13981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,72.5 + parent: 2 + - uid: 13982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,72.5 + parent: 2 + - uid: 13984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,69.5 + parent: 2 + - uid: 13986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,71.5 + parent: 2 + - uid: 13987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,71.5 + parent: 2 + - uid: 13988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,71.5 + parent: 2 + - uid: 13989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,71.5 + parent: 2 + - uid: 13991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,69.5 + parent: 2 + - uid: 13992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,76.5 + parent: 2 + - uid: 13993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,75.5 + parent: 2 + - uid: 13994 + components: + - type: Transform + pos: 4.5,79.5 + parent: 2 + - uid: 13995 + components: + - type: Transform + pos: 2.5,79.5 + parent: 2 + - uid: 13996 + components: + - type: Transform + pos: 8.5,80.5 + parent: 2 + - uid: 13997 + components: + - type: Transform + pos: 1.5,79.5 + parent: 2 + - uid: 13998 + components: + - type: Transform + pos: 3.5,79.5 + parent: 2 + - uid: 13999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,75.5 + parent: 2 + - uid: 14000 + components: + - type: Transform + pos: 7.5,80.5 + parent: 2 + - uid: 14001 + components: + - type: Transform + pos: 9.5,80.5 + parent: 2 + - uid: 14002 + components: + - type: Transform + pos: -2.5,75.5 + parent: 2 + - uid: 14003 + components: + - type: Transform + pos: -2.5,74.5 + parent: 2 + - uid: 14004 + components: + - type: Transform + pos: -2.5,73.5 + parent: 2 + - uid: 14005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,65.5 + parent: 2 + - uid: 14006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,65.5 + parent: 2 + - uid: 14007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,59.5 + parent: 2 + - uid: 14008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,65.5 + parent: 2 + - uid: 14009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,65.5 + parent: 2 + - uid: 14010 + components: + - type: Transform + pos: -24.5,59.5 + parent: 2 + - uid: 14011 + components: + - type: Transform + pos: -14.5,63.5 + parent: 2 + - uid: 14012 + components: + - type: Transform + pos: -13.5,61.5 + parent: 2 + - uid: 14013 + components: + - type: Transform + pos: -13.5,60.5 + parent: 2 + - uid: 14014 + components: + - type: Transform + pos: -14.5,59.5 + parent: 2 + - uid: 14015 + components: + - type: Transform + pos: -16.5,59.5 + parent: 2 + - uid: 14016 + components: + - type: Transform + pos: -18.5,59.5 + parent: 2 + - uid: 14017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,61.5 + parent: 2 + - uid: 14018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,59.5 + parent: 2 + - uid: 14019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,57.5 + parent: 2 + - uid: 14020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,57.5 + parent: 2 + - uid: 14021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,78.5 + parent: 2 + - uid: 14022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,73.5 + parent: 2 + - uid: 14023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,72.5 + parent: 2 + - uid: 14024 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 14025 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - uid: 14026 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - uid: 14027 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 14028 + components: + - type: Transform + pos: 15.5,0.5 + parent: 2 + - uid: 14029 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 14030 + components: + - type: Transform + pos: 20.5,3.5 + parent: 2 + - uid: 14032 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - uid: 14033 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 + - uid: 14034 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 14035 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 2 + - uid: 14036 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 2 + - uid: 14037 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 + - uid: 14038 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - uid: 14039 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 2 + - uid: 14040 + components: + - type: Transform + pos: 42.5,-0.5 + parent: 2 + - uid: 14041 + components: + - type: Transform + pos: 42.5,-2.5 + parent: 2 + - uid: 14042 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 2 + - uid: 14043 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 + - uid: 14044 + components: + - type: Transform + pos: 38.5,14.5 + parent: 2 + - uid: 14045 + components: + - type: Transform + pos: 40.5,18.5 + parent: 2 + - uid: 14046 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 + - uid: 14047 + components: + - type: Transform + pos: 45.5,15.5 + parent: 2 + - uid: 14048 + components: + - type: Transform + pos: 46.5,15.5 + parent: 2 + - uid: 14049 + components: + - type: Transform + pos: 47.5,14.5 + parent: 2 + - uid: 14050 + components: + - type: Transform + pos: 47.5,13.5 + parent: 2 + - uid: 14051 + components: + - type: Transform + pos: 47.5,15.5 + parent: 2 + - uid: 14052 + components: + - type: Transform + pos: 50.5,14.5 + parent: 2 + - uid: 14053 + components: + - type: Transform + pos: 50.5,18.5 + parent: 2 + - uid: 14054 + components: + - type: Transform + pos: 41.5,24.5 + parent: 2 + - uid: 14055 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - uid: 14056 + components: + - type: Transform + pos: 40.5,24.5 + parent: 2 + - uid: 14057 + components: + - type: Transform + pos: 70.5,1.5 + parent: 2 + - uid: 14058 + components: + - type: Transform + pos: 36.5,29.5 + parent: 2 + - uid: 14059 + components: + - type: Transform + pos: 36.5,27.5 + parent: 2 + - uid: 14060 + components: + - type: Transform + pos: 40.5,26.5 + parent: 2 + - uid: 14061 + components: + - type: Transform + pos: 43.5,28.5 + parent: 2 + - uid: 14062 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - uid: 14063 + components: + - type: Transform + pos: 51.5,24.5 + parent: 2 + - uid: 14064 + components: + - type: Transform + pos: 51.5,26.5 + parent: 2 + - uid: 14065 + components: + - type: Transform + pos: 50.5,23.5 + parent: 2 + - uid: 14066 + components: + - type: Transform + pos: 52.5,23.5 + parent: 2 + - uid: 14067 + components: + - type: Transform + pos: 54.5,23.5 + parent: 2 + - uid: 14068 + components: + - type: Transform + pos: 54.5,22.5 + parent: 2 + - uid: 14069 + components: + - type: Transform + pos: 56.5,23.5 + parent: 2 + - uid: 14070 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 14071 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - uid: 14072 + components: + - type: Transform + pos: 52.5,19.5 + parent: 2 + - uid: 14073 + components: + - type: Transform + pos: 54.5,20.5 + parent: 2 + - uid: 14074 + components: + - type: Transform + pos: 56.5,6.5 + parent: 2 + - uid: 14076 + components: + - type: Transform + pos: 50.5,-5.5 + parent: 2 + - uid: 14077 + components: + - type: Transform + pos: 50.5,-4.5 + parent: 2 + - uid: 14078 + components: + - type: Transform + pos: 52.5,-5.5 + parent: 2 + - uid: 14079 + components: + - type: Transform + pos: 52.5,-4.5 + parent: 2 + - uid: 14080 + components: + - type: Transform + pos: 59.5,11.5 + parent: 2 + - uid: 14081 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - uid: 14082 + components: + - type: Transform + pos: 62.5,2.5 + parent: 2 + - uid: 14083 + components: + - type: Transform + pos: 62.5,3.5 + parent: 2 + - uid: 14084 + components: + - type: Transform + pos: 62.5,4.5 + parent: 2 + - uid: 14085 + components: + - type: Transform + pos: 64.5,-0.5 + parent: 2 + - uid: 14086 + components: + - type: Transform + pos: 65.5,-0.5 + parent: 2 + - uid: 14087 + components: + - type: Transform + pos: 66.5,-0.5 + parent: 2 + - uid: 14088 + components: + - type: Transform + pos: 69.5,1.5 + parent: 2 + - uid: 14089 + components: + - type: Transform + pos: 71.5,1.5 + parent: 2 + - uid: 14090 + components: + - type: Transform + pos: 71.5,0.5 + parent: 2 + - uid: 14091 + components: + - type: Transform + pos: 71.5,-0.5 + parent: 2 + - uid: 14092 + components: + - type: Transform + pos: 72.5,-4.5 + parent: 2 + - uid: 14093 + components: + - type: Transform + pos: 20.5,64.5 + parent: 2 + - uid: 14094 + components: + - type: Transform + pos: 26.5,66.5 + parent: 2 + - uid: 14095 + components: + - type: Transform + pos: 29.5,59.5 + parent: 2 + - uid: 14096 + components: + - type: Transform + pos: 30.5,59.5 + parent: 2 + - uid: 14097 + components: + - type: Transform + pos: 31.5,59.5 + parent: 2 + - uid: 14098 + components: + - type: Transform + pos: 29.5,51.5 + parent: 2 + - uid: 14099 + components: + - type: Transform + pos: 29.5,50.5 + parent: 2 + - uid: 14100 + components: + - type: Transform + pos: 28.5,50.5 + parent: 2 + - uid: 14101 + components: + - type: Transform + pos: 27.5,50.5 + parent: 2 + - uid: 14102 + components: + - type: Transform + pos: 31.5,51.5 + parent: 2 + - uid: 14103 + components: + - type: Transform + pos: 31.5,50.5 + parent: 2 + - uid: 14104 + components: + - type: Transform + pos: 32.5,50.5 + parent: 2 + - uid: 14105 + components: + - type: Transform + pos: 33.5,50.5 + parent: 2 + - uid: 14106 + components: + - type: Transform + pos: 36.5,50.5 + parent: 2 + - uid: 14107 + components: + - type: Transform + pos: 37.5,50.5 + parent: 2 + - uid: 14108 + components: + - type: Transform + pos: 35.5,58.5 + parent: 2 + - uid: 14109 + components: + - type: Transform + pos: 36.5,58.5 + parent: 2 + - uid: 14110 + components: + - type: Transform + pos: 37.5,58.5 + parent: 2 + - uid: 14111 + components: + - type: Transform + pos: 35.5,65.5 + parent: 2 + - uid: 14112 + components: + - type: Transform + pos: 34.5,65.5 + parent: 2 + - uid: 14113 + components: + - type: Transform + pos: 34.5,66.5 + parent: 2 + - uid: 14114 + components: + - type: Transform + pos: 34.5,67.5 + parent: 2 + - uid: 14115 + components: + - type: Transform + pos: 31.5,65.5 + parent: 2 + - uid: 14116 + components: + - type: Transform + pos: 32.5,65.5 + parent: 2 + - uid: 14117 + components: + - type: Transform + pos: 32.5,67.5 + parent: 2 + - uid: 14118 + components: + - type: Transform + pos: 39.5,67.5 + parent: 2 + - uid: 14119 + components: + - type: Transform + pos: 46.5,64.5 + parent: 2 + - uid: 14120 + components: + - type: Transform + pos: 46.5,65.5 + parent: 2 + - uid: 14122 + components: + - type: Transform + pos: 55.5,59.5 + parent: 2 + - uid: 14123 + components: + - type: Transform + pos: 61.5,36.5 + parent: 2 + - uid: 14124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,36.5 + parent: 2 + - uid: 14125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,36.5 + parent: 2 + - uid: 14126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,37.5 + parent: 2 + - uid: 14127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,40.5 + parent: 2 + - uid: 14128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,56.5 + parent: 2 + - uid: 14129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,57.5 + parent: 2 + - uid: 14130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,58.5 + parent: 2 + - uid: 14131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,59.5 + parent: 2 + - uid: 14132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,61.5 + parent: 2 + - uid: 14133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,63.5 + parent: 2 + - uid: 14134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,63.5 + parent: 2 + - uid: 14135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,65.5 + parent: 2 + - uid: 14136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,63.5 + parent: 2 + - uid: 14137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,64.5 + parent: 2 + - uid: 14138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,65.5 + parent: 2 + - uid: 14139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,65.5 + parent: 2 + - uid: 14140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,63.5 + parent: 2 + - uid: 14141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,63.5 + parent: 2 + - uid: 14142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,63.5 + parent: 2 + - uid: 14143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,63.5 + parent: 2 + - uid: 14144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,63.5 + parent: 2 + - uid: 14145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,65.5 + parent: 2 + - uid: 14146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,63.5 + parent: 2 + - uid: 14147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,64.5 + parent: 2 + - uid: 14148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,65.5 + parent: 2 + - uid: 14149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,65.5 + parent: 2 + - uid: 14150 + components: + - type: Transform + pos: 76.5,63.5 + parent: 2 + - uid: 14151 + components: + - type: Transform + pos: 77.5,63.5 + parent: 2 + - uid: 14152 + components: + - type: Transform + pos: 78.5,63.5 + parent: 2 + - uid: 14153 + components: + - type: Transform + pos: 81.5,63.5 + parent: 2 + - uid: 14154 + components: + - type: Transform + pos: 80.5,57.5 + parent: 2 + - uid: 14155 + components: + - type: Transform + pos: 81.5,58.5 + parent: 2 + - uid: 14156 + components: + - type: Transform + pos: 80.5,56.5 + parent: 2 + - uid: 14157 + components: + - type: Transform + pos: 80.5,55.5 + parent: 2 + - uid: 14158 + components: + - type: Transform + pos: 81.5,53.5 + parent: 2 + - uid: 14159 + components: + - type: Transform + pos: 69.5,46.5 + parent: 2 + - uid: 14160 + components: + - type: Transform + pos: 69.5,42.5 + parent: 2 + - uid: 14161 + components: + - type: Transform + pos: 72.5,42.5 + parent: 2 + - uid: 14162 + components: + - type: Transform + pos: 84.5,44.5 + parent: 2 + - uid: 14163 + components: + - type: Transform + pos: 84.5,43.5 + parent: 2 + - uid: 14164 + components: + - type: Transform + pos: 84.5,42.5 + parent: 2 + - uid: 14165 + components: + - type: Transform + pos: 79.5,44.5 + parent: 2 + - uid: 14166 + components: + - type: Transform + pos: 79.5,42.5 + parent: 2 + - uid: 14167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,38.5 + parent: 2 + - uid: 14168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,39.5 + parent: 2 + - uid: 14169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,35.5 + parent: 2 + - uid: 14170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,33.5 + parent: 2 + - uid: 14171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,33.5 + parent: 2 + - uid: 14172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,35.5 + parent: 2 + - uid: 14173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,28.5 + parent: 2 + - uid: 14174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,28.5 + parent: 2 + - uid: 14175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,29.5 + parent: 2 + - uid: 14176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,29.5 + parent: 2 + - uid: 14177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,29.5 + parent: 2 + - uid: 14178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,31.5 + parent: 2 + - uid: 14179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,32.5 + parent: 2 + - uid: 14180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,33.5 + parent: 2 + - uid: 14181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,34.5 + parent: 2 + - uid: 14182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,35.5 + parent: 2 + - uid: 14183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,36.5 + parent: 2 + - uid: 14184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,37.5 + parent: 2 + - uid: 14185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,25.5 + parent: 2 + - uid: 14186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,39.5 + parent: 2 + - uid: 14187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,39.5 + parent: 2 + - uid: 14188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,39.5 + parent: 2 + - uid: 14189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,24.5 + parent: 2 + - uid: 14190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,23.5 + parent: 2 + - uid: 14191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,22.5 + parent: 2 + - uid: 14192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,17.5 + parent: 2 + - uid: 14193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,15.5 + parent: 2 + - uid: 14194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,8.5 + parent: 2 + - uid: 14195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,8.5 + parent: 2 + - uid: 14196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,8.5 + parent: 2 + - uid: 14197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,6.5 + parent: 2 + - uid: 14198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,5.5 + parent: 2 + - uid: 14199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,4.5 + parent: 2 + - uid: 14200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,3.5 + parent: 2 + - uid: 14201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,2.5 + parent: 2 + - uid: 14202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,1.5 + parent: 2 + - uid: 14203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,1.5 + parent: 2 + - uid: 14204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-0.5 + parent: 2 + - uid: 14205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-4.5 + parent: 2 + - uid: 14206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-0.5 + parent: 2 + - uid: 14207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-0.5 + parent: 2 + - uid: 14208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-3.5 + parent: 2 + - uid: 14209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-2.5 + parent: 2 + - uid: 14210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,2.5 + parent: 2 + - uid: 14211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,7.5 + parent: 2 + - uid: 14212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,7.5 + parent: 2 + - uid: 14213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,7.5 + parent: 2 + - uid: 14214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,7.5 + parent: 2 + - uid: 14215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,5.5 + parent: 2 + - uid: 14216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,5.5 + parent: 2 + - uid: 14217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,5.5 + parent: 2 + - uid: 14218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,6.5 + parent: 2 + - uid: 14219 + components: + - type: Transform + pos: 68.5,13.5 + parent: 2 + - uid: 14220 + components: + - type: Transform + pos: 68.5,14.5 + parent: 2 + - uid: 14221 + components: + - type: Transform + pos: 68.5,15.5 + parent: 2 + - uid: 14222 + components: + - type: Transform + pos: 73.5,12.5 + parent: 2 + - uid: 14223 + components: + - type: Transform + pos: 71.5,12.5 + parent: 2 + - uid: 14224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,32.5 + parent: 2 + - uid: 14225 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 14226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,17.5 + parent: 2 + - uid: 14227 + components: + - type: Transform + pos: 34.5,50.5 + parent: 2 + - uid: 14228 + components: + - type: Transform + pos: 67.5,24.5 + parent: 2 + - uid: 14229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,22.5 + parent: 2 + - uid: 14230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,22.5 + parent: 2 + - uid: 14231 + components: + - type: Transform + pos: 81.5,51.5 + parent: 2 + - uid: 14232 + components: + - type: Transform + pos: 81.5,50.5 + parent: 2 + - uid: 14233 + components: + - type: Transform + pos: 81.5,49.5 + parent: 2 + - uid: 14234 + components: + - type: Transform + pos: 67.5,25.5 + parent: 2 + - uid: 14235 + components: + - type: Transform + pos: -32.5,32.5 + parent: 2 + - uid: 14236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,21.5 + parent: 2 + - uid: 14237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,24.5 + parent: 2 + - uid: 14238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,23.5 + parent: 2 + - uid: 14239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,21.5 + parent: 2 + - uid: 14240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,28.5 + parent: 2 + - uid: 14241 + components: + - type: Transform + pos: -1.5,31.5 + parent: 2 + - uid: 14242 + components: + - type: Transform + pos: -1.5,29.5 + parent: 2 + - uid: 14243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,27.5 + parent: 2 + - uid: 14244 + components: + - type: Transform + pos: -5.5,18.5 + parent: 2 + - uid: 14245 + components: + - type: Transform + pos: 2.5,34.5 + parent: 2 + - uid: 14246 + components: + - type: Transform + pos: 2.5,33.5 + parent: 2 + - uid: 14247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-11.5 + parent: 2 + - uid: 14248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-11.5 + parent: 2 + - uid: 14249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-11.5 + parent: 2 + - uid: 14250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 2 + - uid: 14251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-10.5 + parent: 2 + - uid: 14252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-12.5 + parent: 2 + - uid: 14253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-10.5 + parent: 2 + - uid: 14254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-11.5 + parent: 2 + - uid: 14255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-12.5 + parent: 2 + - uid: 14256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-12.5 + parent: 2 + - uid: 15257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,30.5 + parent: 2 + - uid: 15283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,29.5 + parent: 2 + - uid: 15524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,78.5 + parent: 2 + - uid: 17821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,77.5 + parent: 2 + - uid: 17825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,78.5 + parent: 2 + - uid: 17833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,59.5 + parent: 2 + - uid: 17871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,78.5 + parent: 2 + - uid: 18641 + components: + - type: Transform + pos: -6.5,19.5 + parent: 2 + - uid: 18944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,75.5 + parent: 2 +- proto: RemoteSignaller + entities: + - uid: 14257 + components: + - type: Transform + pos: 41.68052,9.226255 + parent: 2 + - uid: 14258 + components: + - type: Transform + pos: 41.537052,9.226255 + parent: 2 + - uid: 14259 + components: + - type: Transform + pos: 41.35772,9.226255 + parent: 2 + - uid: 14260 + components: + - type: Transform + pos: 41.698452,8.921595 + parent: 2 + - uid: 14261 + components: + - type: Transform + pos: 41.465317,8.921595 + parent: 2 + - uid: 14262 + components: + - type: Transform + pos: 84.48523,35.66013 + parent: 2 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 14263 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 +- proto: RevolverCapGun + entities: + - uid: 14265 + components: + - type: Transform + pos: 40.122246,38.6715 + parent: 2 +- proto: Rickenbacker4003Instrument + entities: + - uid: 19498 + components: + - type: Transform + pos: -31.48632,67.62706 + parent: 2 +- proto: RiotBulletShield + entities: + - uid: 14266 + components: + - type: Transform + pos: -19.35863,70.86299 + parent: 2 + - uid: 14267 + components: + - type: Transform + pos: -19.663498,70.88091 + parent: 2 + - uid: 14268 + components: + - type: Transform + pos: -19.19723,70.86299 + parent: 2 +- proto: RiotLaserShield + entities: + - uid: 14269 + components: + - type: Transform + pos: -19.717297,70.71962 + parent: 2 + - uid: 14270 + components: + - type: Transform + pos: -19.430363,70.71962 + parent: 2 + - uid: 14271 + components: + - type: Transform + pos: -19.107563,70.71962 + parent: 2 +- proto: RollerBedSpawnFolded + entities: + - uid: 14272 + components: + - type: Transform + pos: 7.360282,37.81381 + parent: 2 + - uid: 14273 + components: + - type: Transform + pos: 7.7667723,37.766018 + parent: 2 + - uid: 14274 + components: + - type: Transform + pos: 7.695039,37.443436 + parent: 2 +- proto: RubberStampApproved + entities: + - uid: 14275 + components: + - type: Transform + pos: 9.306652,12.787447 + parent: 2 + - uid: 14276 + components: + - type: Transform + pos: -19.227026,53.804455 + parent: 2 + - uid: 14277 + components: + - type: Transform + pos: -24.586525,55.52049 + parent: 2 + - uid: 14278 + components: + - type: Transform + pos: 19.013535,54.77198 + parent: 2 +- proto: RubberStampDenied + entities: + - uid: 14279 + components: + - type: Transform + pos: 9.270785,12.67992 + parent: 2 + - uid: 14280 + components: + - type: Transform + pos: -19.29876,53.613297 + parent: 2 + - uid: 14281 + components: + - type: Transform + pos: -24.443058,55.46075 + parent: 2 + - uid: 14282 + components: + - type: Transform + pos: 18.901236,54.687813 + parent: 2 +- proto: SalvageCanisterSpawner + entities: + - uid: 14290 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - uid: 14291 + components: + - type: Transform + pos: 41.5,12.5 + parent: 2 + - uid: 14292 + components: + - type: Transform + pos: 76.5,49.5 + parent: 2 + - uid: 14293 + components: + - type: Transform + pos: 76.5,50.5 + parent: 2 + - uid: 14294 + components: + - type: Transform + pos: 73.5,56.5 + parent: 2 + - uid: 14295 + components: + - type: Transform + pos: 73.5,57.5 + parent: 2 + - uid: 14296 + components: + - type: Transform + pos: 74.5,56.5 + parent: 2 + - uid: 14297 + components: + - type: Transform + pos: 44.5,6.5 + parent: 2 + - uid: 14298 + components: + - type: Transform + pos: 45.5,6.5 + parent: 2 + - uid: 14299 + components: + - type: Transform + pos: 45.5,7.5 + parent: 2 + - uid: 14300 + components: + - type: Transform + pos: 17.5,8.5 + parent: 2 + - uid: 14301 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 14302 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - uid: 14303 + components: + - type: Transform + pos: 11.5,63.5 + parent: 2 + - uid: 14304 + components: + - type: Transform + pos: 10.5,63.5 + parent: 2 + - uid: 14305 + components: + - type: Transform + pos: 9.5,63.5 + parent: 2 + - uid: 14306 + components: + - type: Transform + pos: 62.5,48.5 + parent: 2 + - uid: 14307 + components: + - type: Transform + pos: 61.5,48.5 + parent: 2 + - uid: 14308 + components: + - type: Transform + pos: 60.5,48.5 + parent: 2 + - uid: 14309 + components: + - type: Transform + pos: 32.5,60.5 + parent: 2 + - uid: 14310 + components: + - type: Transform + pos: 33.5,60.5 + parent: 2 + - uid: 14311 + components: + - type: Transform + pos: 34.5,60.5 + parent: 2 +- proto: SalvageLootSpawner + entities: + - uid: 14315 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 2 + - uid: 14316 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 2 +- proto: SalvageMagnet + entities: + - uid: 14317 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 2 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 14318 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 2 +- proto: Screen + entities: + - uid: 14319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,57.5 + parent: 2 + - uid: 14320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,63.5 + parent: 2 + - uid: 14321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,63.5 + parent: 2 + - uid: 14322 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 14323 + components: + - type: Transform + pos: 71.5,36.5 + parent: 2 + - uid: 14324 + components: + - type: Transform + pos: 53.5,28.5 + parent: 2 + - uid: 14325 + components: + - type: Transform + pos: 30.5,32.5 + parent: 2 + - uid: 14326 + components: + - type: Transform + pos: 27.5,18.5 + parent: 2 + - uid: 14327 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 + - uid: 14328 + components: + - type: Transform + pos: -3.5,37.5 + parent: 2 + - uid: 14329 + components: + - type: Transform + pos: -2.5,57.5 + parent: 2 + - uid: 14330 + components: + - type: Transform + pos: -26.5,66.5 + parent: 2 + - uid: 14331 + components: + - type: Transform + pos: 67.5,59.5 + parent: 2 + - uid: 14332 + components: + - type: Transform + pos: 67.5,47.5 + parent: 2 + - uid: 14333 + components: + - type: Transform + pos: 87.5,38.5 + parent: 2 + - uid: 14334 + components: + - type: Transform + pos: 87.5,38.5 + parent: 2 + - uid: 14335 + components: + - type: Transform + pos: 87.5,30.5 + parent: 2 + - uid: 14336 + components: + - type: Transform + pos: -2.5,22.5 + parent: 2 + - uid: 14337 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 14338 + components: + - type: Transform + pos: 15.5,23.5 + parent: 2 + - uid: 14339 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 14340 + components: + - type: Transform + pos: 1.5,50.5 + parent: 2 + - uid: 14341 + components: + - type: Transform + pos: 3.5,54.5 + parent: 2 + - uid: 14342 + components: + - type: Transform + pos: 5.5,46.5 + parent: 2 + - uid: 14343 + components: + - type: Transform + pos: -12.5,46.5 + parent: 2 + - uid: 14344 + components: + - type: Transform + pos: -10.5,53.5 + parent: 2 + - uid: 14345 + components: + - type: Transform + pos: 3.5,61.5 + parent: 2 + - uid: 14346 + components: + - type: Transform + pos: 7.5,65.5 + parent: 2 + - uid: 14347 + components: + - type: Transform + pos: -0.5,76.5 + parent: 2 + - uid: 14348 + components: + - type: Transform + pos: 12.5,76.5 + parent: 2 + - uid: 14349 + components: + - type: Transform + pos: -8.5,63.5 + parent: 2 +- proto: Screwdriver + entities: + - uid: 14350 + components: + - type: Transform + pos: 36.470516,7.5765038 + parent: 2 + - uid: 14351 + components: + - type: Transform + pos: 51.508472,54.549034 + parent: 2 +- proto: SecurityTechFab + entities: + - uid: 14352 + components: + - type: Transform + pos: -14.5,69.5 + parent: 2 +- proto: SecurityTechFabCircuitboard + entities: + - uid: 14353 + components: + - type: Transform + pos: 29.380825,54.641865 + parent: 2 +- proto: SeedExtractor + entities: + - uid: 13232 + components: + - type: Transform + pos: -34.5,75.5 + parent: 2 + - uid: 14355 + components: + - type: Transform + pos: 10.5,73.5 + parent: 2 + - uid: 14356 + components: + - type: Transform + pos: 44.5,43.5 + parent: 2 +- proto: ShardGlass + entities: + - uid: 14357 + components: + - type: Transform + pos: 61.59341,51.289673 + parent: 2 + - uid: 14358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.736877,51.450962 + parent: 2 + - uid: 14359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.714676,50.895405 + parent: 2 + - uid: 14360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.79495,53.673183 + parent: 2 + - uid: 14361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.180943,53.529816 + parent: 2 +- proto: ShardGlassReinforced + entities: + - uid: 14362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.79495,54.8739 + parent: 2 +- proto: SheetGlass + entities: + - uid: 14363 + components: + - type: Transform + pos: -2.4447641,36.554058 + parent: 2 + - uid: 14364 + components: + - type: Transform + pos: -2.4447641,36.554058 + parent: 2 + - uid: 14365 + components: + - type: Transform + pos: 50.558296,-1.3179386 + parent: 2 + - uid: 14366 + components: + - type: Transform + pos: 59.482616,22.567444 + parent: 2 + - uid: 14367 + components: + - type: Transform + pos: 46.523014,24.546581 + parent: 2 + - uid: 14368 + components: + - type: Transform + pos: 46.523014,24.546581 + parent: 2 + - uid: 14369 + components: + - type: Transform + pos: 46.611263,31.55423 + parent: 2 + - uid: 14370 + components: + - type: Transform + pos: 71.534035,46.549133 + parent: 2 + - uid: 14371 + components: + - type: Transform + pos: 71.534035,46.549133 + parent: 2 + - uid: 14372 + components: + - type: Transform + pos: 71.52,42.63534 + parent: 2 + - uid: 14373 + components: + - type: Transform + pos: 71.52,42.63534 + parent: 2 + - uid: 14374 + components: + - type: Transform + pos: -37.44304,34.681297 + parent: 2 + - uid: 14375 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 + - uid: 14376 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 +- proto: SheetPlasma + entities: + - uid: 14377 + components: + - type: Transform + pos: 52.55033,-1.3658054 + parent: 2 + - uid: 14378 + components: + - type: Transform + pos: -35.4883,39.519226 + parent: 2 +- proto: SheetPlasma1 + entities: + - uid: 14379 + components: + - type: Transform + pos: 27.473671,38.56969 + parent: 2 + - uid: 14380 + components: + - type: Transform + pos: 27.473671,38.56969 + parent: 2 + - uid: 14381 + components: + - type: Transform + pos: 27.473671,38.56969 + parent: 2 +- proto: SheetPlasteel + entities: + - uid: 14382 + components: + - type: Transform + pos: -24.48612,43.60266 + parent: 2 + - uid: 14383 + components: + - type: Transform + pos: 71.52,46.535103 + parent: 2 + - uid: 14384 + components: + - type: Transform + pos: 71.52,46.535103 + parent: 2 + - uid: 14385 + components: + - type: Transform + pos: -37.44304,34.663376 + parent: 2 + - uid: 14386 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 +- proto: SheetPlastic + entities: + - uid: 14387 + components: + - type: Transform + pos: -2.4642558,36.554058 + parent: 2 + - uid: 14388 + components: + - type: Transform + pos: -2.4642558,36.554058 + parent: 2 + - uid: 14389 + components: + - type: Transform + pos: -2.4642558,36.554058 + parent: 2 + - uid: 14390 + components: + - type: Transform + pos: -18.479893,70.5512 + parent: 2 + - uid: 14391 + components: + - type: Transform + pos: -18.479893,70.5512 + parent: 2 + - uid: 14392 + components: + - type: Transform + pos: 59.482616,22.555496 + parent: 2 + - uid: 14393 + components: + - type: Transform + pos: 46.523014,24.546581 + parent: 2 + - uid: 14394 + components: + - type: Transform + pos: 46.523014,24.546581 + parent: 2 + - uid: 14395 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 + - uid: 14396 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 +- proto: SheetSteel + entities: + - uid: 7303 + components: + - type: Transform + parent: 7298 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7304 + components: + - type: Transform + parent: 7298 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7305 + components: + - type: Transform + parent: 7298 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7306 + components: + - type: Transform + parent: 7298 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7307 + components: + - type: Transform + parent: 7298 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 7308 + components: + - type: Transform + parent: 7298 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 14397 + components: + - type: Transform + pos: -2.4588013,36.554058 + parent: 2 + - uid: 14398 + components: + - type: Transform + pos: -2.4588013,36.554058 + parent: 2 + - uid: 14399 + components: + - type: Transform + pos: -24.500158,43.616688 + parent: 2 + - uid: 14400 + components: + - type: Transform + pos: -18.479893,70.5512 + parent: 2 + - uid: 14401 + components: + - type: Transform + pos: -18.479893,70.5512 + parent: 2 + - uid: 14402 + components: + - type: Transform + pos: 59.494576,22.567444 + parent: 2 + - uid: 14403 + components: + - type: Transform + pos: 46.523014,24.546581 + parent: 2 + - uid: 14404 + components: + - type: Transform + pos: 46.523014,24.546581 + parent: 2 + - uid: 14405 + components: + - type: Transform + pos: 75.574974,62.543827 + parent: 2 + - uid: 14406 + components: + - type: Transform + pos: 75.574974,62.543827 + parent: 2 + - uid: 14407 + components: + - type: Transform + pos: 71.52,46.56316 + parent: 2 + - uid: 14408 + components: + - type: Transform + pos: 71.52,46.56316 + parent: 2 + - uid: 14409 + components: + - type: Transform + pos: -37.460976,34.663376 + parent: 2 + - uid: 14410 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 + - uid: 14411 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 +- proto: SheetSteel1 + entities: + - uid: 14412 + components: + - type: Transform + pos: 38.58337,64.99815 + parent: 2 + - uid: 14413 + components: + - type: Transform + pos: 40.502243,66.01966 + parent: 2 + - uid: 14414 + components: + - type: Transform + pos: 40.717445,64.71142 + parent: 2 + - uid: 14415 + components: + - type: Transform + pos: 50.79256,50.235447 + parent: 2 + - uid: 14416 + components: + - type: Transform + pos: 50.308266,50.656284 + parent: 2 + - uid: 14417 + components: + - type: Transform + pos: 50.581997,54.570072 + parent: 2 + - uid: 14418 + components: + - type: Transform + pos: 29.45112,65.44453 + parent: 2 + - uid: 14419 + components: + - type: Transform + pos: 40.520176,66.396 + parent: 2 + - uid: 14420 + components: + - type: Transform + pos: 40.825043,65.82253 + parent: 2 + - uid: 14421 + components: + - type: Transform + pos: 38.83444,65.51787 + parent: 2 + - uid: 14422 + components: + - type: Transform + pos: 38.467144,65.58418 + parent: 2 +- proto: SheetUranium + entities: + - uid: 14423 + components: + - type: Transform + pos: -33.46183,39.4628 + parent: 2 +- proto: ShowcaseRobot + entities: + - uid: 14424 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 2 + - uid: 14425 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 2 +- proto: ShowcaseRobotMarauder + entities: + - uid: 14426 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 +- proto: Shower + entities: + - uid: 7170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,24.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: ShuttersNormal + entities: + - uid: 14427 + components: + - type: Transform + pos: -10.5,64.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14458 + - uid: 14428 + components: + - type: Transform + pos: -10.5,62.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14458 + - uid: 14429 + components: + - type: Transform + pos: 34.5,43.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14466 + - uid: 14430 + components: + - type: Transform + pos: 34.5,44.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14466 + - uid: 14431 + components: + - type: Transform + pos: 34.5,45.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14466 + - uid: 14432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,43.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14471 + - uid: 14433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,43.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14472 +- proto: ShuttersNormalOpen + entities: + - uid: 14434 + components: + - type: Transform + pos: 55.5,41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14463 + - uid: 14435 + components: + - type: Transform + pos: 56.5,41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14463 + - uid: 14436 + components: + - type: Transform + pos: 57.5,41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14463 + - uid: 14437 + components: + - type: Transform + pos: 59.5,39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14464 + - uid: 14438 + components: + - type: Transform + pos: 59.5,38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14464 + - uid: 14439 + components: + - type: Transform + pos: 59.5,37.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14464 + - uid: 14440 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14476 + - uid: 14441 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14477 +- proto: ShuttersRadiation + entities: + - uid: 14442 + components: + - type: Transform + pos: -20.5,30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14473 + - uid: 14443 + components: + - type: Transform + pos: -19.5,30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14473 + - uid: 14444 + components: + - type: Transform + pos: -18.5,30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14473 + - uid: 14445 + components: + - type: Transform + pos: -20.5,38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14474 + - uid: 14446 + components: + - type: Transform + pos: -19.5,38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14474 + - uid: 14447 + components: + - type: Transform + pos: -18.5,38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14474 + - uid: 14448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,35.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14475 + - uid: 14449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,34.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14475 + - uid: 14450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14475 +- proto: ShuttersWindow + entities: + - uid: 14451 + components: + - type: Transform + pos: -13.5,64.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14458 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 14452 + components: + - type: Transform + pos: -26.731066,43.39053 + parent: 2 +- proto: SignAi + entities: + - uid: 14453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,2.5 + parent: 2 + - uid: 14454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-7.5 + parent: 2 + - uid: 14455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-7.5 + parent: 2 + - uid: 18898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,30.5 + parent: 2 + - uid: 18899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,30.5 + parent: 2 + - uid: 18900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,32.5 + parent: 2 + - uid: 18901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,32.5 + parent: 2 +- proto: SignalButton + entities: + - uid: 14456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 810: + - Pressed: Toggle + 809: + - Pressed: Toggle + - uid: 14457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,24.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 812: + - Pressed: Toggle + 813: + - Pressed: Toggle + 814: + - Pressed: Toggle + - uid: 14458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,65.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14451: + - Pressed: Toggle + 14427: + - Pressed: Toggle + 14428: + - Pressed: Toggle + - uid: 14459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 811: + - Pressed: Toggle + 13781: + - Pressed: Off + - uid: 14460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 808: + - Pressed: Toggle + 806: + - Pressed: Toggle + - uid: 14461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 807: + - Pressed: Toggle + - uid: 14462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,63.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 815: + - Pressed: Toggle + 816: + - Pressed: Toggle + - uid: 14463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,42.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14434: + - Pressed: Toggle + 14435: + - Pressed: Toggle + 14436: + - Pressed: Toggle + - uid: 14464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,40.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14439: + - Pressed: Toggle + 14438: + - Pressed: Toggle + 14437: + - Pressed: Toggle + - uid: 14465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,50.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12666: + - Pressed: Toggle + - uid: 14466 + components: + - type: Transform + pos: 35.5,46.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14429: + - Pressed: Toggle + 14430: + - Pressed: Toggle + 14431: + - Pressed: Toggle + - uid: 14467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 827: + - Pressed: Toggle + 826: + - Pressed: Toggle + 824: + - Pressed: Toggle + 825: + - Pressed: Toggle + - uid: 14468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,45.5 + parent: 2 + - uid: 14469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,45.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 828: + - Pressed: Toggle + - uid: 14470 + components: + - type: Transform + pos: 79.5,63.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 817: + - Pressed: Toggle + 818: + - Pressed: Toggle + 819: + - Pressed: Toggle + 820: + - Pressed: Toggle + - uid: 14471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,44.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14432: + - Pressed: Toggle + - uid: 14472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,44.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14433: + - Pressed: Toggle + - uid: 14473 + components: + - type: Transform + pos: -21.5,30.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14442: + - Pressed: Toggle + 14443: + - Pressed: Toggle + 14444: + - Pressed: Toggle + - uid: 14474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,38.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14446: + - Pressed: Toggle + 14447: + - Pressed: Toggle + 14445: + - Pressed: Toggle + - uid: 14475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14450: + - Pressed: Toggle + 14449: + - Pressed: Toggle + 14448: + - Pressed: Toggle + - uid: 14476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14440: + - Pressed: Toggle + - uid: 14477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14441: + - Pressed: Toggle +- proto: SignalButtonExt3 + entities: + - uid: 14478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,9.5 + parent: 2 +- proto: SignalTrigger + entities: + - uid: 14479 + components: + - type: Transform + pos: 41.447384,9.674284 + parent: 2 + - uid: 14480 + components: + - type: Transform + pos: 41.75225,9.602598 + parent: 2 + - uid: 14481 + components: + - type: Transform + pos: 41.465317,9.495071 + parent: 2 + - uid: 14482 + components: + - type: Transform + pos: 41.734318,9.45923 + parent: 2 +- proto: SignAnomaly + entities: + - uid: 14483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,14.5 + parent: 2 + - uid: 18668 + components: + - type: Transform + pos: 38.5,14.5 + parent: 2 +- proto: SignAnomaly2 + entities: + - uid: 14484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,12.5 + parent: 2 + - uid: 18665 + components: + - type: Transform + pos: 50.5,12.5 + parent: 2 +- proto: SignArmory + entities: + - uid: 14485 + components: + - type: Transform + pos: -18.5,59.5 + parent: 2 + - uid: 14486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,63.5 + parent: 2 +- proto: SignAtmos + entities: + - uid: 15902 + components: + - type: Transform + pos: -6.5,21.5 + parent: 2 + - uid: 18647 + components: + - type: Transform + pos: -6.5,19.5 + parent: 2 +- proto: SignBar + entities: + - uid: 18907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,36.5 + parent: 2 +- proto: SignBridge + entities: + - uid: 14487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,36.5 + parent: 2 + - uid: 14488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,32.5 + parent: 2 +- proto: SignCanisters + entities: + - uid: 18669 + components: + - type: Transform + pos: 37.5,17.5 + parent: 2 +- proto: SignCargo + entities: + - uid: 18649 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - uid: 18650 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - uid: 18651 + components: + - type: Transform + pos: 9.5,18.5 + parent: 2 +- proto: SignCargoDock + entities: + - uid: 14489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 2 + - uid: 18648 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 +- proto: SignChapel + entities: + - uid: 11530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,50.5 + parent: 2 + - uid: 18762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,54.5 + parent: 2 + - uid: 18767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,54.5 + parent: 2 + - uid: 18768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,58.5 + parent: 2 + - uid: 18769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,58.5 + parent: 2 +- proto: SignChem + entities: + - uid: 18678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,23.5 + parent: 2 + - uid: 18679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,24.5 + parent: 2 + - uid: 18680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,29.5 + parent: 2 + - uid: 18681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,29.5 + parent: 2 +- proto: SignCloning + entities: + - uid: 18531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,26.5 + parent: 2 + - uid: 18532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,26.5 + parent: 2 + - uid: 18692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,29.5 + parent: 2 +- proto: SignConference + entities: + - uid: 18846 + components: + - type: Transform + pos: 80.5,28.5 + parent: 2 + - uid: 18847 + components: + - type: Transform + pos: 82.5,28.5 + parent: 2 +- proto: SignDirectionalBar + entities: + - uid: 14490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.457057,22.331598 + parent: 2 + - uid: 14491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.564537,32.726562 + parent: 2 +- proto: SignDirectionalBridge + entities: + - uid: 14492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.457057,22.52292 + parent: 2 + - uid: 14493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.564537,32.55164 + parent: 2 + - uid: 14494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.48477,32.84307 + parent: 2 +- proto: SignDirectionalBrig + entities: + - uid: 14495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.51402026,18.637814 + parent: 2 + - uid: 14496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.457057,22.741573 + parent: 2 +- proto: SignDirectionalChapel + entities: + - uid: 14497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5135876,18.439032 + parent: 2 + - uid: 14498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.465134,45.907642 + parent: 2 + - uid: 14499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.564537,32.365784 + parent: 2 +- proto: SignDirectionalCryo + entities: + - uid: 14500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.564537,32.179924 + parent: 2 +- proto: SignDirectionalDorms + entities: + - uid: 6527 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 + - uid: 18895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,18.5 + parent: 2 + - uid: 18896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,21.5 + parent: 2 +- proto: SignDirectionalEng + entities: + - uid: 14501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.435198,22.689903 + parent: 2 + - uid: 14502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.466514,22.140951 + parent: 2 + - uid: 14503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.51146495,18.835775 + parent: 2 + - uid: 14504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5333846,35.45002 + parent: 2 + - uid: 14505 + components: + - type: Transform + pos: 3.5816317,46.86425 + parent: 2 +- proto: SignDirectionalEvac + entities: + - uid: 14506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.435198,22.500294 + parent: 2 + - uid: 14507 + components: + - type: Transform + pos: 30.47425,45.13257 + parent: 2 + - uid: 14508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.529842,32.866547 + parent: 2 + - uid: 14509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.438016,22.933979 + parent: 2 + - uid: 14510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.2359343,18.556217 + parent: 2 + - uid: 14511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.3095527,46.878128 + parent: 2 + - uid: 14512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.551632,32.928596 + parent: 2 + - uid: 14513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,32.5 + parent: 2 + - uid: 14514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,12.5 + parent: 2 +- proto: SignDirectionalFood + entities: + - uid: 14515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.540035,32.274406 + parent: 2 + - uid: 18904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,41.5 + parent: 2 + - uid: 18905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,36.5 + parent: 2 + - uid: 18906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,32.5 + parent: 2 +- proto: SignDirectionalHop + entities: + - uid: 14516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.535477,32.47484 + parent: 2 +- proto: SignDirectionalHydro + entities: + - uid: 14517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.530006,32.672523 + parent: 2 + - uid: 14518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5536,31.778934 + parent: 2 +- proto: SignDirectionalLibrary + entities: + - uid: 14519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.471582,45.722916 + parent: 2 +- proto: SignDirectionalLogistics + entities: + - uid: 14520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5143475,18.266033 + parent: 2 +- proto: SignDirectionalMed + entities: + - uid: 14521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5874171,46.685577 + parent: 2 +- proto: SignDirectionalSalvage + entities: + - uid: 18654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 2 +- proto: SignDirectionalSci + entities: + - uid: 14522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.540035,32.073975 + parent: 2 + - uid: 14523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.435198,22.322355 + parent: 2 + - uid: 14524 + components: + - type: Transform + pos: 57.5536,31.983139 + parent: 2 +- proto: SignDirectionalSec + entities: + - uid: 14525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5994487,46.4866 + parent: 2 + - uid: 14526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.471582,45.522484 + parent: 2 +- proto: SignDirectionalSupply + entities: + - uid: 14527 + components: + - type: Transform + pos: 3.6103878,46.27888 + parent: 2 + - uid: 14528 + components: + - type: Transform + pos: 30.47067,45.322826 + parent: 2 +- proto: SignDisposalSpace + entities: + - uid: 18675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 2 + - uid: 18676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 2 + - uid: 18677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,6.5 + parent: 2 +- proto: SignDrones + entities: + - uid: 14529 + components: + - type: Transform + pos: 36.5,51.5 + parent: 2 +- proto: SignElectricalMed + entities: + - uid: 14532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,75.5 + parent: 2 + - uid: 14533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,73.5 + parent: 2 +- proto: SignEngineering + entities: + - uid: 18657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,36.5 + parent: 2 + - uid: 18658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,34.5 + parent: 2 +- proto: SignEscapePods + entities: + - uid: 14535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,73.5 + parent: 2 + - uid: 15734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,6.5 + parent: 2 + - uid: 18910 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 + - uid: 18911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,5.5 + parent: 2 + - uid: 18912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,6.5 + parent: 2 + - uid: 18913 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 18914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,56.5 + parent: 2 + - uid: 18915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,58.5 + parent: 2 + - uid: 18917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,76.5 + parent: 2 + - uid: 18918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,19.5 + parent: 2 + - uid: 18919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,18.5 + parent: 2 + - uid: 18920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,17.5 + parent: 2 + - uid: 18937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,59.5 + parent: 2 + - uid: 18938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,55.5 + parent: 2 + - uid: 18939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,57.5 + parent: 2 + - uid: 18940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,47.5 + parent: 2 + - uid: 18941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,58.5 + parent: 2 + - uid: 18942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,48.5 + parent: 2 +- proto: SignEVA + entities: + - uid: 18663 + components: + - type: Transform + pos: 68.5,47.5 + parent: 2 + - uid: 18664 + components: + - type: Transform + pos: 68.5,41.5 + parent: 2 +- proto: SignGravity + entities: + - uid: 12624 + components: + - type: Transform + pos: -17.5,42.5 + parent: 2 + - uid: 12625 + components: + - type: Transform + pos: -22.5,47.5 + parent: 2 + - uid: 19050 + components: + - type: Transform + pos: -19.5,42.5 + parent: 2 + - uid: 19053 + components: + - type: Transform + pos: -18.5,47.5 + parent: 2 +- proto: SignHydro2 + entities: + - uid: 18897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,36.5 + parent: 2 + - uid: 18902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,36.5 + parent: 2 + - uid: 18903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,40.5 + parent: 2 +- proto: SignJanitor + entities: + - uid: 14536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,50.5 + parent: 2 +- proto: SignLibrary + entities: + - uid: 18763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,51.5 + parent: 2 + - uid: 18764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,50.5 + parent: 2 + - uid: 18765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,50.5 + parent: 2 + - uid: 18766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,57.5 + parent: 2 +- proto: SignMail + entities: + - uid: 14537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 2 + - uid: 14538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,9.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 14539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,64.5 + parent: 2 + - uid: 18682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,31.5 + parent: 2 + - uid: 18683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,37.5 + parent: 2 + - uid: 18684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,31.5 + parent: 2 + - uid: 18685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,34.5 + parent: 2 + - uid: 18686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,31.5 + parent: 2 + - uid: 18687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,33.5 + parent: 2 + - uid: 18688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,36.5 + parent: 2 + - uid: 18689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,36.5 + parent: 2 + - uid: 18690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,31.5 + parent: 2 + - uid: 18691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,34.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 18693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,45.5 + parent: 2 + - uid: 18694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,40.5 + parent: 2 +- proto: SignNosmoking + entities: + - uid: 18695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,37.5 + parent: 2 + - uid: 18696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 + - uid: 18697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,36.5 + parent: 2 + - uid: 18698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,29.5 + parent: 2 + - uid: 18699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,30.5 + parent: 2 + - uid: 18700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,30.5 + parent: 2 + - uid: 18701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,28.5 + parent: 2 + - uid: 18702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,23.5 + parent: 2 + - uid: 18703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,23.5 + parent: 2 + - uid: 18704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,28.5 + parent: 2 + - uid: 18705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,26.5 + parent: 2 + - uid: 18706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,37.5 + parent: 2 + - uid: 18707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,41.5 + parent: 2 + - uid: 18708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,37.5 + parent: 2 + - uid: 18709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,42.5 + parent: 2 + - uid: 18710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,43.5 + parent: 2 + - uid: 18711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,46.5 + parent: 2 + - uid: 18712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,41.5 + parent: 2 + - uid: 18713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,46.5 + parent: 2 + - uid: 18714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,26.5 + parent: 2 + - uid: 18715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,18.5 + parent: 2 + - uid: 18716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,22.5 + parent: 2 + - uid: 18717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,21.5 + parent: 2 + - uid: 18718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,17.5 + parent: 2 + - uid: 18719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,17.5 + parent: 2 +- proto: SignPlaque + entities: + - uid: 14540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,55.5 + parent: 2 +- proto: SignPrison + entities: + - uid: 14541 + components: + - type: Transform + pos: -33.5,59.5 + parent: 2 + - uid: 14542 + components: + - type: Transform + pos: -27.5,59.5 + parent: 2 +- proto: SignRND + entities: + - uid: 14543 + components: + - type: Transform + pos: 51.5,26.5 + parent: 2 + - uid: 18667 + components: + - type: Transform + pos: 51.5,24.5 + parent: 2 +- proto: SignRobo + entities: + - uid: 14544 + components: + - type: Transform + pos: 56.5,23.5 + parent: 2 +- proto: SignSalvage + entities: + - uid: 18652 + components: + - type: Transform + pos: -9.5,8.5 + parent: 2 + - uid: 18653 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 +- proto: SignScience + entities: + - uid: 18666 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 +- proto: SignSec + entities: + - uid: 18655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 2 + - uid: 18656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,12.5 + parent: 2 + - uid: 18659 + components: + - type: Transform + pos: -13.5,50.5 + parent: 2 + - uid: 18661 + components: + - type: Transform + pos: -16.5,50.5 + parent: 2 + - uid: 18662 + components: + - type: Transform + pos: -6.5,50.5 + parent: 2 +- proto: SignShipDock + entities: + - uid: 18839 + components: + - type: Transform + pos: 63.5,54.5 + parent: 2 + - uid: 18840 + components: + - type: Transform + pos: 67.5,54.5 + parent: 2 + - uid: 18841 + components: + - type: Transform + pos: 63.5,65.5 + parent: 2 + - uid: 18842 + components: + - type: Transform + pos: 67.5,65.5 + parent: 2 + - uid: 18843 + components: + - type: Transform + pos: 71.5,65.5 + parent: 2 + - uid: 18844 + components: + - type: Transform + pos: 59.5,65.5 + parent: 2 + - uid: 18845 + components: + - type: Transform + pos: 65.5,63.5 + parent: 2 + - uid: 18922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-0.5 + parent: 2 + - uid: 18923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,8.5 + parent: 2 + - uid: 18924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,8.5 + parent: 2 + - uid: 18925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-0.5 + parent: 2 +- proto: SignSmoking + entities: + - uid: 18720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,24.5 + parent: 2 + - uid: 18721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,16.5 + parent: 2 + - uid: 18722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,19.5 + parent: 2 + - uid: 18723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,17.5 + parent: 2 + - uid: 18724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,6.5 + parent: 2 + - uid: 18725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,10.5 + parent: 2 + - uid: 18726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,18.5 + parent: 2 + - uid: 18727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,22.5 + parent: 2 + - uid: 18728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,29.5 + parent: 2 + - uid: 18729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,31.5 + parent: 2 + - uid: 18730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,26.5 + parent: 2 + - uid: 18731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,26.5 + parent: 2 + - uid: 18732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,42.5 + parent: 2 + - uid: 18733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,34.5 + parent: 2 + - uid: 18734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,38.5 + parent: 2 +- proto: SignSomethingOld + entities: + - uid: 14545 + components: + - type: Transform + pos: 53.5,5.5 + parent: 2 +- proto: SignSomethingOld2 + entities: + - uid: 14546 + components: + - type: Transform + pos: 48.5,5.5 + parent: 2 +- proto: SignSpace + entities: + - uid: 18908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,11.5 + parent: 2 + - uid: 18909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,3.5 + parent: 2 + - uid: 18916 + components: + - type: Transform + pos: -38.5,55.5 + parent: 2 + - uid: 18921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-2.5 + parent: 2 +- proto: SignTelecomms + entities: + - uid: 14547 + components: + - type: Transform + pos: 34.5,51.5 + parent: 2 + - uid: 14548 + components: + - type: Transform + pos: 30.5,2.5 + parent: 2 + - uid: 14549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,29.5 + parent: 2 +- proto: SignVirology + entities: + - uid: 18774 + components: + - type: Transform + pos: 22.5,42.5 + parent: 2 + - uid: 18775 + components: + - type: Transform + pos: 24.5,41.5 + parent: 2 + - uid: 18776 + components: + - type: Transform + pos: 25.5,43.5 + parent: 2 + - uid: 18777 + components: + - type: Transform + pos: 25.5,45.5 + parent: 2 +- proto: Sink + entities: + - uid: 14550 + components: + - type: Transform + pos: 50.5,31.5 + parent: 2 + - uid: 14551 + components: + - type: Transform + pos: 52.5,31.5 + parent: 2 +- proto: SinkWide + entities: + - uid: 14553 + components: + - type: Transform + pos: 60.5,40.5 + parent: 2 + - uid: 14554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,61.5 + parent: 2 + - uid: 14555 + components: + - type: Transform + pos: 1.5,68.5 + parent: 2 + - uid: 14556 + components: + - type: Transform + pos: 2.5,68.5 + parent: 2 + - uid: 14557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,45.5 + parent: 2 + - uid: 14558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,33.5 + parent: 2 + - uid: 14559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,43.5 + parent: 2 + - uid: 14862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,25.5 + parent: 2 +- proto: SmartFridge + entities: + - uid: 14560 + components: + - type: Transform + pos: 51.5,44.5 + parent: 2 + - uid: 14561 + components: + - type: Transform + pos: 14.5,23.5 + parent: 2 + - uid: 14562 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - uid: 14563 + components: + - type: Transform + pos: 14.5,36.5 + parent: 2 + - uid: 14564 + components: + - type: Transform + pos: 29.5,44.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 14565 + components: + - type: Transform + pos: -14.5,45.5 + parent: 2 + - uid: 14566 + components: + - type: Transform + pos: -13.5,45.5 + parent: 2 + - uid: 14567 + components: + - type: Transform + pos: -12.5,45.5 + parent: 2 + - uid: 14568 + components: + - type: Transform + pos: 31.5,63.5 + parent: 2 + - uid: 14569 + components: + - type: Transform + pos: -20.5,8.5 + parent: 2 + - uid: 14570 + components: + - type: Transform + pos: 41.5,0.5 + parent: 2 + - uid: 14571 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 2 + - uid: 14572 + components: + - type: Transform + pos: -30.5,36.5 + parent: 2 + - uid: 14573 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 +- proto: SMESMachineCircuitboard + entities: + - uid: 14574 + components: + - type: Transform + pos: -26.888287,43.704742 + parent: 2 + - uid: 14575 + components: + - type: Transform + pos: -26.888287,43.704742 + parent: 2 +- proto: SoapNT + entities: + - uid: 14576 + components: + - type: Transform + pos: 74.49696,24.50985 + parent: 2 +- proto: soda_dispenser + entities: + - uid: 14577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,38.5 + parent: 2 + - uid: 14578 + components: + - type: Transform + pos: 58.5,26.5 + parent: 2 +- proto: SolarControlComputerCircuitboard + entities: + - uid: 14579 + components: + - type: Transform + pos: -8.388496,44.46719 + parent: 2 +- proto: SolarPanel + entities: + - uid: 14580 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 2 + - uid: 14581 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - uid: 14582 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 2 + - uid: 14583 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 14584 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 2 + - uid: 14585 + components: + - type: Transform + pos: 45.5,-20.5 + parent: 2 + - uid: 14586 + components: + - type: Transform + pos: 46.5,-20.5 + parent: 2 + - uid: 14587 + components: + - type: Transform + pos: 47.5,-20.5 + parent: 2 + - uid: 14588 + components: + - type: Transform + pos: 48.5,-20.5 + parent: 2 + - uid: 14589 + components: + - type: Transform + pos: 49.5,-20.5 + parent: 2 + - uid: 14590 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 14591 + components: + - type: Transform + pos: 48.5,-22.5 + parent: 2 + - uid: 14592 + components: + - type: Transform + pos: 47.5,-22.5 + parent: 2 + - uid: 14593 + components: + - type: Transform + pos: 46.5,-22.5 + parent: 2 + - uid: 14594 + components: + - type: Transform + pos: 45.5,-22.5 + parent: 2 + - uid: 14595 + components: + - type: Transform + pos: 53.5,-22.5 + parent: 2 + - uid: 14596 + components: + - type: Transform + pos: 54.5,-22.5 + parent: 2 + - uid: 14597 + components: + - type: Transform + pos: 55.5,-22.5 + parent: 2 + - uid: 14598 + components: + - type: Transform + pos: 56.5,-22.5 + parent: 2 + - uid: 14599 + components: + - type: Transform + pos: 57.5,-22.5 + parent: 2 + - uid: 14600 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 2 + - uid: 14601 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 + - uid: 14602 + components: + - type: Transform + pos: 55.5,-20.5 + parent: 2 + - uid: 14603 + components: + - type: Transform + pos: 54.5,-20.5 + parent: 2 + - uid: 14604 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 2 + - uid: 14605 + components: + - type: Transform + pos: 57.5,-18.5 + parent: 2 + - uid: 14606 + components: + - type: Transform + pos: 56.5,-18.5 + parent: 2 + - uid: 14607 + components: + - type: Transform + pos: 55.5,-18.5 + parent: 2 + - uid: 14608 + components: + - type: Transform + pos: 54.5,-18.5 + parent: 2 + - uid: 14609 + components: + - type: Transform + pos: 53.5,-18.5 + parent: 2 + - uid: 14610 + components: + - type: Transform + pos: 57.5,-14.5 + parent: 2 + - uid: 14611 + components: + - type: Transform + pos: 57.5,-16.5 + parent: 2 + - uid: 14612 + components: + - type: Transform + pos: 56.5,-16.5 + parent: 2 + - uid: 14613 + components: + - type: Transform + pos: 55.5,-16.5 + parent: 2 + - uid: 14614 + components: + - type: Transform + pos: 54.5,-16.5 + parent: 2 + - uid: 14615 + components: + - type: Transform + pos: 53.5,-16.5 + parent: 2 + - uid: 14616 + components: + - type: Transform + pos: 56.5,-14.5 + parent: 2 + - uid: 14617 + components: + - type: Transform + pos: 55.5,-14.5 + parent: 2 + - uid: 14618 + components: + - type: Transform + pos: 54.5,-14.5 + parent: 2 + - uid: 14619 + components: + - type: Transform + pos: 53.5,-14.5 + parent: 2 + - uid: 14620 + components: + - type: Transform + pos: 57.5,-12.5 + parent: 2 + - uid: 14621 + components: + - type: Transform + pos: 56.5,-12.5 + parent: 2 + - uid: 14622 + components: + - type: Transform + pos: 55.5,-12.5 + parent: 2 + - uid: 14623 + components: + - type: Transform + pos: 54.5,-12.5 + parent: 2 + - uid: 14624 + components: + - type: Transform + pos: 53.5,-12.5 + parent: 2 + - uid: 14625 + components: + - type: Transform + pos: 49.5,-12.5 + parent: 2 + - uid: 14626 + components: + - type: Transform + pos: 48.5,-12.5 + parent: 2 + - uid: 14627 + components: + - type: Transform + pos: 47.5,-12.5 + parent: 2 + - uid: 14628 + components: + - type: Transform + pos: 46.5,-12.5 + parent: 2 + - uid: 14629 + components: + - type: Transform + pos: 45.5,-12.5 + parent: 2 + - uid: 14630 + components: + - type: Transform + pos: 45.5,-14.5 + parent: 2 + - uid: 14631 + components: + - type: Transform + pos: 46.5,-14.5 + parent: 2 + - uid: 14632 + components: + - type: Transform + pos: 47.5,-14.5 + parent: 2 + - uid: 14633 + components: + - type: Transform + pos: 48.5,-14.5 + parent: 2 + - uid: 14634 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 2 + - uid: 14635 + components: + - type: Transform + pos: 49.5,-16.5 + parent: 2 + - uid: 14636 + components: + - type: Transform + pos: 48.5,-16.5 + parent: 2 + - uid: 14637 + components: + - type: Transform + pos: 47.5,-16.5 + parent: 2 + - uid: 14638 + components: + - type: Transform + pos: 46.5,-16.5 + parent: 2 + - uid: 14639 + components: + - type: Transform + pos: 45.5,-16.5 + parent: 2 + - uid: 14640 + components: + - type: Transform + pos: 45.5,-18.5 + parent: 2 + - uid: 14641 + components: + - type: Transform + pos: 46.5,-18.5 + parent: 2 + - uid: 14642 + components: + - type: Transform + pos: 47.5,-18.5 + parent: 2 + - uid: 14643 + components: + - type: Transform + pos: 48.5,-18.5 + parent: 2 + - uid: 14644 + components: + - type: Transform + pos: 49.5,-18.5 + parent: 2 + - uid: 14645 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 14646 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - uid: 14647 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 2 + - uid: 14648 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 2 + - uid: 14649 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 2 + - uid: 14650 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 2 + - uid: 14651 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - uid: 14652 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 2 + - uid: 14653 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - uid: 14654 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 2 + - uid: 14655 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 2 + - uid: 14656 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 + - uid: 14657 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 2 + - uid: 14658 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - uid: 14659 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 2 + - uid: 14660 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 14661 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 14662 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 14663 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 14664 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 14665 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 2 + - uid: 14666 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 14667 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 2 + - uid: 14668 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 + - uid: 14669 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - uid: 14670 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 2 + - uid: 14671 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 2 + - uid: 14672 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 2 + - uid: 14673 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 2 + - uid: 14674 + components: + - type: Transform + pos: -26.5,-16.5 + parent: 2 + - uid: 14675 + components: + - type: Transform + pos: 35.5,79.5 + parent: 2 + - uid: 14676 + components: + - type: Transform + pos: 36.5,79.5 + parent: 2 + - uid: 14677 + components: + - type: Transform + pos: 37.5,79.5 + parent: 2 + - uid: 14678 + components: + - type: Transform + pos: 38.5,79.5 + parent: 2 + - uid: 14679 + components: + - type: Transform + pos: 39.5,79.5 + parent: 2 + - uid: 14680 + components: + - type: Transform + pos: 39.5,77.5 + parent: 2 + - uid: 14681 + components: + - type: Transform + pos: 38.5,77.5 + parent: 2 + - uid: 14682 + components: + - type: Transform + pos: 37.5,77.5 + parent: 2 + - uid: 14683 + components: + - type: Transform + pos: 36.5,77.5 + parent: 2 + - uid: 14684 + components: + - type: Transform + pos: 35.5,77.5 + parent: 2 + - uid: 14685 + components: + - type: Transform + pos: 39.5,75.5 + parent: 2 + - uid: 14686 + components: + - type: Transform + pos: 38.5,75.5 + parent: 2 + - uid: 14687 + components: + - type: Transform + pos: 37.5,75.5 + parent: 2 + - uid: 14688 + components: + - type: Transform + pos: 36.5,75.5 + parent: 2 + - uid: 14689 + components: + - type: Transform + pos: 35.5,75.5 + parent: 2 + - uid: 14690 + components: + - type: Transform + pos: 39.5,73.5 + parent: 2 + - uid: 14691 + components: + - type: Transform + pos: 38.5,73.5 + parent: 2 + - uid: 14692 + components: + - type: Transform + pos: 37.5,73.5 + parent: 2 + - uid: 14693 + components: + - type: Transform + pos: 36.5,73.5 + parent: 2 + - uid: 14694 + components: + - type: Transform + pos: 35.5,73.5 + parent: 2 + - uid: 14695 + components: + - type: Transform + pos: 39.5,71.5 + parent: 2 + - uid: 14696 + components: + - type: Transform + pos: 38.5,71.5 + parent: 2 + - uid: 14697 + components: + - type: Transform + pos: 37.5,71.5 + parent: 2 + - uid: 14698 + components: + - type: Transform + pos: 36.5,71.5 + parent: 2 + - uid: 14699 + components: + - type: Transform + pos: 35.5,71.5 + parent: 2 + - uid: 14700 + components: + - type: Transform + pos: 39.5,69.5 + parent: 2 + - uid: 14701 + components: + - type: Transform + pos: 38.5,69.5 + parent: 2 + - uid: 14702 + components: + - type: Transform + pos: 37.5,69.5 + parent: 2 + - uid: 14703 + components: + - type: Transform + pos: 36.5,69.5 + parent: 2 + - uid: 14704 + components: + - type: Transform + pos: 35.5,69.5 + parent: 2 + - uid: 14705 + components: + - type: Transform + pos: 31.5,69.5 + parent: 2 + - uid: 14706 + components: + - type: Transform + pos: 30.5,69.5 + parent: 2 + - uid: 14707 + components: + - type: Transform + pos: 29.5,69.5 + parent: 2 + - uid: 14708 + components: + - type: Transform + pos: 28.5,69.5 + parent: 2 + - uid: 14709 + components: + - type: Transform + pos: 27.5,69.5 + parent: 2 + - uid: 14710 + components: + - type: Transform + pos: 27.5,71.5 + parent: 2 + - uid: 14711 + components: + - type: Transform + pos: 28.5,71.5 + parent: 2 + - uid: 14712 + components: + - type: Transform + pos: 29.5,71.5 + parent: 2 + - uid: 14713 + components: + - type: Transform + pos: 30.5,71.5 + parent: 2 + - uid: 14714 + components: + - type: Transform + pos: 31.5,71.5 + parent: 2 + - uid: 14715 + components: + - type: Transform + pos: 31.5,73.5 + parent: 2 + - uid: 14716 + components: + - type: Transform + pos: 30.5,73.5 + parent: 2 + - uid: 14717 + components: + - type: Transform + pos: 29.5,73.5 + parent: 2 + - uid: 14718 + components: + - type: Transform + pos: 28.5,73.5 + parent: 2 + - uid: 14719 + components: + - type: Transform + pos: 27.5,73.5 + parent: 2 + - uid: 14720 + components: + - type: Transform + pos: 27.5,75.5 + parent: 2 + - uid: 14721 + components: + - type: Transform + pos: 28.5,75.5 + parent: 2 + - uid: 14722 + components: + - type: Transform + pos: 29.5,75.5 + parent: 2 + - uid: 14723 + components: + - type: Transform + pos: 30.5,75.5 + parent: 2 + - uid: 14724 + components: + - type: Transform + pos: 31.5,75.5 + parent: 2 + - uid: 14725 + components: + - type: Transform + pos: 31.5,77.5 + parent: 2 + - uid: 14726 + components: + - type: Transform + pos: 30.5,77.5 + parent: 2 + - uid: 14727 + components: + - type: Transform + pos: 29.5,77.5 + parent: 2 + - uid: 14728 + components: + - type: Transform + pos: 28.5,77.5 + parent: 2 + - uid: 14729 + components: + - type: Transform + pos: 27.5,77.5 + parent: 2 + - uid: 14730 + components: + - type: Transform + pos: 27.5,79.5 + parent: 2 + - uid: 14731 + components: + - type: Transform + pos: 28.5,79.5 + parent: 2 + - uid: 14732 + components: + - type: Transform + pos: 29.5,79.5 + parent: 2 + - uid: 14733 + components: + - type: Transform + pos: 30.5,79.5 + parent: 2 + - uid: 14734 + components: + - type: Transform + pos: 31.5,79.5 + parent: 2 + - uid: 14735 + components: + - type: Transform + pos: -30.5,-14.5 + parent: 2 + - uid: 14736 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 2 + - uid: 14737 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 14738 + components: + - type: Transform + pos: -27.5,-14.5 + parent: 2 + - uid: 14739 + components: + - type: Transform + pos: -26.5,-14.5 + parent: 2 +- proto: SolarTracker + entities: + - uid: 14740 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 2 + - uid: 14741 + components: + - type: Transform + pos: 51.5,-24.5 + parent: 2 + - uid: 14742 + components: + - type: Transform + pos: 33.5,81.5 + parent: 2 +- proto: SophicScribeSpawner + entities: + - uid: 12937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,52.5 + parent: 2 +- proto: SpaceCash100 + entities: + - uid: 14744 + components: + - type: Transform + pos: 59.519974,44.266804 + parent: 2 +- proto: SpareIdCabinetFilled + entities: + - uid: 3237 + components: + - type: Transform + pos: 83.5,27.5 + parent: 2 +- proto: SpawnMechRipley + entities: + - uid: 14745 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 +- proto: SpawnMobAdultSlimesBlue + entities: + - uid: 14746 + components: + - type: Transform + pos: 51.5,-0.5 + parent: 2 + - uid: 14747 + components: + - type: Transform + pos: 56.5,-2.5 + parent: 2 +- proto: SpawnMobAdultSlimesGreen + entities: + - uid: 14748 + components: + - type: Transform + pos: 46.5,3.5 + parent: 2 +- proto: SpawnMobAdultSlimesYellow + entities: + - uid: 14749 + components: + - type: Transform + pos: 46.5,-2.5 + parent: 2 +- proto: SpawnMobAlexander + entities: + - uid: 14750 + components: + - type: Transform + pos: 53.5,43.5 + parent: 2 +- proto: SpawnMobArcticFoxSiobhan + entities: + - uid: 19367 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 +- proto: SpawnMobButterfly + entities: + - uid: 14751 + components: + - type: Transform + pos: 8.5,72.5 + parent: 2 + - uid: 14752 + components: + - type: Transform + pos: 9.5,73.5 + parent: 2 + - uid: 14753 + components: + - type: Transform + pos: 6.5,77.5 + parent: 2 +- proto: SpawnMobCat + entities: + - uid: 14755 + components: + - type: Transform + pos: 5.5,75.5 + parent: 2 +- proto: SpawnMobCatException + entities: + - uid: 19365 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 +- proto: SpawnMobCatFloppa + entities: + - uid: 14754 + components: + - type: Transform + pos: 20.5,38.5 + parent: 2 +- proto: SpawnMobCatSpace + entities: + - uid: 19368 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 +- proto: SpawnMobCleanBot + entities: + - uid: 14756 + components: + - type: Transform + pos: 6.5,39.5 + parent: 2 +- proto: SpawnMobCorgi + entities: + - uid: 14757 + components: + - type: Transform + pos: 78.5,39.5 + parent: 2 +- proto: SpawnMobCrabAtmos + entities: + - uid: 18752 + components: + - type: Transform + pos: -1.5,59.5 + parent: 2 +- proto: SpawnMobFerret + entities: + - uid: 12559 + components: + - type: Transform + pos: -3.5,23.5 + parent: 2 +- proto: SpawnMobFoxRenault + entities: + - uid: 13222 + components: + - type: Transform + pos: 74.5,28.5 + parent: 2 +- proto: SpawnMobFrog + entities: + - uid: 14760 + components: + - type: Transform + pos: -0.5,71.5 + parent: 2 +- proto: SpawnMobGoat + entities: + - uid: 14761 + components: + - type: Transform + pos: 54.5,49.5 + parent: 2 +- proto: SpawnMobMonkey + entities: + - uid: 14763 + components: + - type: Transform + pos: 29.5,24.5 + parent: 2 + - uid: 14764 + components: + - type: Transform + pos: 29.5,39.5 + parent: 2 + - uid: 14765 + components: + - type: Transform + pos: 28.5,38.5 + parent: 2 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 14766 + components: + - type: Transform + pos: 61.5,39.5 + parent: 2 +- proto: SpawnMobSecDogLaika + entities: + - uid: 14762 + components: + - type: Transform + pos: -14.5,61.5 + parent: 2 +- proto: SpawnMobShiva + entities: + - uid: 14767 + components: + - type: Transform + pos: -17.5,52.5 + parent: 2 +- proto: SpawnMobSmile + entities: + - uid: 14768 + components: + - type: Transform + pos: 52.5,13.5 + parent: 2 +- proto: SpawnMobWalter + entities: + - uid: 14769 + components: + - type: Transform + pos: 3.5,75.5 + parent: 2 + - uid: 14770 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 +- proto: SpawnPointAtmos + entities: + - uid: 14771 + components: + - type: Transform + pos: -7.5,20.5 + parent: 2 + - uid: 14772 + components: + - type: Transform + pos: -9.5,24.5 + parent: 2 + - uid: 14773 + components: + - type: Transform + pos: -9.5,23.5 + parent: 2 + - uid: 14774 + components: + - type: Transform + pos: -9.5,22.5 + parent: 2 +- proto: SpawnPointBartender + entities: + - uid: 14775 + components: + - type: Transform + pos: 61.5,43.5 + parent: 2 +- proto: SpawnPointBorg + entities: + - uid: 14776 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - uid: 14777 + components: + - type: Transform + pos: 57.5,19.5 + parent: 2 +- proto: SpawnPointBotanist + entities: + - uid: 14778 + components: + - type: Transform + pos: 47.5,48.5 + parent: 2 + - uid: 14779 + components: + - type: Transform + pos: 47.5,47.5 + parent: 2 + - uid: 14780 + components: + - type: Transform + pos: 45.5,44.5 + parent: 2 +- proto: SpawnPointBrigmedic + entities: + - uid: 15171 + components: + - type: Transform + pos: -4.5,59.5 + parent: 2 +- proto: SpawnPointCaptain + entities: + - uid: 14782 + components: + - type: Transform + pos: 77.5,25.5 + parent: 2 +- proto: SpawnPointCargoTechnician + entities: + - uid: 14783 + components: + - type: Transform + pos: 7.5,11.5 + parent: 2 + - uid: 14784 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 + - uid: 14785 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 14786 + components: + - type: Transform + pos: -10.5,12.5 + parent: 2 +- proto: SpawnPointChaplain + entities: + - uid: 14787 + components: + - type: Transform + pos: 9.5,61.5 + parent: 2 +- proto: SpawnPointChef + entities: + - uid: 14788 + components: + - type: Transform + pos: 55.5,45.5 + parent: 2 + - uid: 14789 + components: + - type: Transform + pos: 56.5,42.5 + parent: 2 +- proto: SpawnPointChemist + entities: + - uid: 14790 + components: + - type: Transform + pos: 7.5,24.5 + parent: 2 + - uid: 14791 + components: + - type: Transform + pos: 8.5,24.5 + parent: 2 +- proto: SpawnPointChiefEngineer + entities: + - uid: 14792 + components: + - type: Transform + pos: -3.5,26.5 + parent: 2 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 14793 + components: + - type: Transform + pos: 19.5,39.5 + parent: 2 +- proto: SpawnPointClown + entities: + - uid: 14794 + components: + - type: Transform + pos: 41.5,45.5 + parent: 2 +- proto: SpawnPointDetective + entities: + - uid: 14795 + components: + - type: Transform + pos: 1.5,59.5 + parent: 2 +- proto: SpawnPointForensicMantis + entities: + - uid: 483 + components: + - type: Transform + pos: 33.5,4.5 + parent: 2 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 14796 + components: + - type: Transform + pos: 76.5,39.5 + parent: 2 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 14797 + components: + - type: Transform + pos: -18.5,53.5 + parent: 2 +- proto: SpawnPointJanitor + entities: + - uid: 14798 + components: + - type: Transform + pos: 41.5,52.5 + parent: 2 + - uid: 14799 + components: + - type: Transform + pos: 40.5,52.5 + parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 14800 + components: + - type: Transform + pos: 65.5,60.5 + parent: 2 + - uid: 14801 + components: + - type: Transform + pos: 66.5,60.5 + parent: 2 + - uid: 14802 + components: + - type: Transform + pos: 67.5,60.5 + parent: 2 +- proto: SpawnPointLawyer + entities: + - uid: 14803 + components: + - type: Transform + pos: -23.5,53.5 + parent: 2 +- proto: SpawnPointLibrarian + entities: + - uid: 14804 + components: + - type: Transform + pos: 17.5,58.5 + parent: 2 +- proto: SpawnPointMailCarrier + entities: + - uid: 14805 + components: + - type: Transform + pos: -6.5,6.5 + parent: 2 +- proto: SpawnPointMedicalBorg + entities: + - uid: 19602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,20.5 + parent: 2 + - uid: 19603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,19.5 + parent: 2 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 14806 + components: + - type: Transform + pos: 8.5,40.5 + parent: 2 + - uid: 14807 + components: + - type: Transform + pos: 7.5,40.5 + parent: 2 + - uid: 14808 + components: + - type: Transform + pos: 7.5,40.5 + parent: 2 +- proto: SpawnPointMedicalIntern + entities: + - uid: 14809 + components: + - type: Transform + pos: 8.5,37.5 + parent: 2 + - uid: 14810 + components: + - type: Transform + pos: 8.5,37.5 + parent: 2 + - uid: 14811 + components: + - type: Transform + pos: 26.5,36.5 + parent: 2 +- proto: SpawnPointMime + entities: + - uid: 14812 + components: + - type: Transform + pos: 41.5,42.5 + parent: 2 +- proto: SpawnPointMusician + entities: + - uid: 14813 + components: + - type: Transform + pos: 39.5,40.5 + parent: 2 +- proto: SpawnPointParamedic + entities: + - uid: 14814 + components: + - type: Transform + pos: 7.5,45.5 + parent: 2 + - uid: 14815 + components: + - type: Transform + pos: 7.5,44.5 + parent: 2 +- proto: SpawnPointPassenger + entities: + - uid: 14816 + components: + - type: Transform + pos: 68.5,38.5 + parent: 2 + - uid: 14817 + components: + - type: Transform + pos: 66.5,59.5 + parent: 2 + - uid: 14818 + components: + - type: Transform + pos: 69.5,54.5 + parent: 2 + - uid: 14819 + components: + - type: Transform + pos: 71.5,57.5 + parent: 2 +- proto: SpawnPointPrisoner + entities: + - uid: 14820 + components: + - type: Transform + pos: -33.5,61.5 + parent: 2 + - uid: 14821 + components: + - type: Transform + pos: -29.5,61.5 + parent: 2 + - uid: 19484 + components: + - type: Transform + pos: -32.5,67.5 + parent: 2 + - uid: 19491 + components: + - type: Transform + pos: -35.5,61.5 + parent: 2 + - uid: 19492 + components: + - type: Transform + pos: -31.5,76.5 + parent: 2 + - uid: 19572 + components: + - type: Transform + pos: -23.5,74.5 + parent: 2 +- proto: SpawnPointPrisonGuard + entities: + - uid: 14822 + components: + - type: Transform + pos: -22.5,67.5 + parent: 2 + - uid: 14823 + components: + - type: Transform + pos: -22.5,66.5 + parent: 2 + - uid: 14824 + components: + - type: Transform + pos: -22.5,66.5 + parent: 2 +- proto: SpawnPointQuartermaster + entities: + - uid: 14825 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 +- proto: SpawnPointResearchAssistant + entities: + - uid: 14826 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 14827 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 14828 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 +- proto: SpawnPointResearchDirector + entities: + - uid: 14829 + components: + - type: Transform + pos: 52.5,15.5 + parent: 2 +- proto: SpawnPointRoboticist + entities: + - uid: 19263 + components: + - type: Transform + pos: 58.5,20.5 + parent: 2 + - uid: 19264 + components: + - type: Transform + pos: 58.5,16.5 + parent: 2 + - uid: 19265 + components: + - type: Transform + pos: 55.5,22.5 + parent: 2 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 14830 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 + - uid: 14831 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 + - uid: 14832 + components: + - type: Transform + pos: -9.5,5.5 + parent: 2 + - uid: 14833 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 +- proto: SpawnPointScientist + entities: + - uid: 14834 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 + - uid: 14835 + components: + - type: Transform + pos: 49.5,14.5 + parent: 2 + - uid: 14836 + components: + - type: Transform + pos: 49.5,15.5 + parent: 2 + - uid: 14837 + components: + - type: Transform + pos: 47.5,30.5 + parent: 2 + - uid: 14838 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 + - uid: 14839 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 +- proto: SpawnPointSecurityCadet + entities: + - uid: 14840 + components: + - type: Transform + pos: -14.5,51.5 + parent: 2 + - uid: 14841 + components: + - type: Transform + pos: -24.5,63.5 + parent: 2 + - uid: 14842 + components: + - type: Transform + pos: -15.5,51.5 + parent: 2 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 14843 + components: + - type: Transform + pos: -24.5,66.5 + parent: 2 + - uid: 14844 + components: + - type: Transform + pos: -24.5,67.5 + parent: 2 + - uid: 14845 + components: + - type: Transform + pos: -24.5,69.5 + parent: 2 + - uid: 14846 + components: + - type: Transform + pos: -24.5,70.5 + parent: 2 + - uid: 14847 + components: + - type: Transform + pos: -24.5,64.5 + parent: 2 +- proto: SpawnPointServiceWorker + entities: + - uid: 14848 + components: + - type: Transform + pos: 53.5,38.5 + parent: 2 + - uid: 14849 + components: + - type: Transform + pos: 54.5,38.5 + parent: 2 +- proto: SpawnPointStationEngineer + entities: + - uid: 14850 + components: + - type: Transform + pos: -9.5,32.5 + parent: 2 + - uid: 14851 + components: + - type: Transform + pos: -9.5,33.5 + parent: 2 + - uid: 14852 + components: + - type: Transform + pos: -9.5,35.5 + parent: 2 + - uid: 14853 + components: + - type: Transform + pos: -9.5,36.5 + parent: 2 + - uid: 14854 + components: + - type: Transform + pos: -9.5,36.5 + parent: 2 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 14855 + components: + - type: Transform + pos: -2.5,35.5 + parent: 2 + - uid: 14856 + components: + - type: Transform + pos: -5.5,35.5 + parent: 2 + - uid: 14857 + components: + - type: Transform + pos: -5.5,39.5 + parent: 2 +- proto: SpawnPointWarden + entities: + - uid: 14858 + components: + - type: Transform + pos: -17.5,63.5 + parent: 2 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 14859 + components: + - type: Transform + pos: -28.724072,50.52622 + parent: 2 + - uid: 14860 + components: + - type: Transform + pos: -5.701754,57.603504 + parent: 2 + - uid: 14861 + components: + - type: Transform + pos: 44.805016,53.27405 + parent: 2 +- proto: StairDark + entities: + - uid: 14864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,36.5 + parent: 2 + - uid: 14865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,37.5 + parent: 2 + - uid: 14866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,31.5 + parent: 2 + - uid: 14867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,32.5 + parent: 2 +- proto: Stairs + entities: + - uid: 14868 + components: + - type: Transform + pos: 4.5,69.5 + parent: 2 + - uid: 14869 + components: + - type: Transform + pos: 5.5,69.5 + parent: 2 + - uid: 14870 + components: + - type: Transform + pos: 6.5,69.5 + parent: 2 + - uid: 14871 + components: + - type: Transform + pos: 11.5,72.5 + parent: 2 + - uid: 14872 + components: + - type: Transform + pos: 12.5,72.5 + parent: 2 +- proto: StairStage + entities: + - uid: 14873 + components: + - type: Transform + pos: 64.5,12.5 + parent: 2 + - uid: 14874 + components: + - type: Transform + pos: 65.5,12.5 + parent: 2 + - uid: 14875 + components: + - type: Transform + pos: 66.5,12.5 + parent: 2 + - uid: 14876 + components: + - type: Transform + pos: 74.5,10.5 + parent: 2 + - uid: 14877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,11.5 + parent: 2 + - uid: 14878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,60.5 + parent: 2 +- proto: StasisBed + entities: + - uid: 14879 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 + - uid: 14880 + components: + - type: Transform + pos: 19.5,31.5 + parent: 2 + - uid: 14881 + components: + - type: Transform + pos: -5.5,59.5 + parent: 2 +- proto: StationMap + entities: + - uid: 12974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,28.5 + parent: 2 + - uid: 14882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,37.5 + parent: 2 + - uid: 14883 + components: + - type: Transform + pos: 49.5,37.5 + parent: 2 + - uid: 14884 + components: + - type: Transform + pos: 17.5,46.5 + parent: 2 + - uid: 14885 + components: + - type: Transform + pos: -25.5,59.5 + parent: 2 + - uid: 14886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,32.5 + parent: 2 + - uid: 14887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,37.5 + parent: 2 + - uid: 14888 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 + - uid: 14889 + components: + - type: Transform + pos: 9.5,68.5 + parent: 2 + - uid: 14890 + components: + - type: Transform + pos: 11.5,77.5 + parent: 2 + - uid: 14891 + components: + - type: Transform + pos: -10.5,57.5 + parent: 2 + - uid: 14892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,18.5 + parent: 2 + - uid: 14893 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 14894 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 14895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,55.5 + parent: 2 + - uid: 14897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,4.5 + parent: 2 + - uid: 14898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,30.5 + parent: 2 + - uid: 14899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,30.5 + parent: 2 + - uid: 14900 + components: + - type: Transform + pos: 36.5,46.5 + parent: 2 +- proto: SteelBench + entities: + - uid: 14901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,54.5 + parent: 2 + - uid: 14902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,54.5 + parent: 2 + - uid: 14903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,54.5 + parent: 2 + - uid: 14904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,54.5 + parent: 2 + - uid: 14905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,51.5 + parent: 2 + - uid: 14906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,51.5 + parent: 2 +- proto: StoolBar + entities: + - uid: 14907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,40.5 + parent: 2 + - uid: 14908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,40.5 + parent: 2 + - uid: 14909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,40.5 + parent: 2 + - uid: 14910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,38.5 + parent: 2 + - uid: 14911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,39.5 + parent: 2 +- proto: StorageCanister + entities: + - uid: 11500 + components: + - type: Transform + pos: -17.5,25.5 + parent: 2 + - uid: 14912 + components: + - type: Transform + pos: -17.5,21.5 + parent: 2 + - uid: 14913 + components: + - type: Transform + pos: -17.5,22.5 + parent: 2 + - uid: 14914 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - uid: 14915 + components: + - type: Transform + pos: -17.5,20.5 + parent: 2 + - uid: 14916 + components: + - type: Transform + pos: 9.5,38.5 + parent: 2 + - uid: 18760 + components: + - type: Transform + pos: -16.5,37.5 + parent: 2 + - uid: 18761 + components: + - type: Transform + pos: -16.5,38.5 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 14917 + components: + - type: MetaData + name: South Solar 1 + - type: Transform + pos: -20.5,9.5 + parent: 2 + - uid: 14918 + components: + - type: MetaData + name: Engineering Substation + - type: Transform + pos: -16.5,43.5 + parent: 2 + - uid: 14919 + components: + - type: MetaData + name: Atmos Substation + - type: Transform + pos: -24.5,22.5 + parent: 2 + - uid: 14920 + components: + - type: MetaData + name: Logistics Substation + - type: Transform + pos: -18.5,4.5 + parent: 2 + - uid: 14921 + components: + - type: MetaData + name: Security Substation + - type: Transform + pos: -2.5,68.5 + parent: 2 + - uid: 14922 + components: + - type: MetaData + name: Bridge Substation + - type: Transform + pos: 83.5,46.5 + parent: 2 + - uid: 14923 + components: + - type: MetaData + name: Arrivals Substation + - type: Transform + pos: 76.5,13.5 + parent: 2 + - uid: 14924 + components: + - type: MetaData + name: North Solar + - type: Transform + pos: 35.5,63.5 + parent: 2 + - uid: 14925 + components: + - type: MetaData + name: Service Substation + - type: Transform + pos: 52.5,59.5 + parent: 2 + - uid: 14926 + components: + - type: MetaData + name: South Solar 2 + - type: Transform + pos: 41.5,2.5 + parent: 2 + - uid: 14927 + components: + - type: MetaData + name: MedBay Substation + - type: Transform + pos: 20.5,43.5 + parent: 2 + - uid: 14928 + components: + - type: MetaData + name: Epistemics Substation + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 14929 + components: + - type: MetaData + name: R&D Servers + - type: Transform + pos: 30.5,-0.5 + parent: 2 + - uid: 14930 + components: + - type: MetaData + name: TeleComunicações + - type: Transform + pos: -30.5,37.5 + parent: 2 + - uid: 14931 + components: + - type: MetaData + name: AI Core + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 14932 + components: + - type: MetaData + name: AI Core + - type: Transform + pos: 23.5,-12.5 + parent: 2 +- proto: SubstationMachineCircuitboard + entities: + - uid: 14933 + components: + - type: Transform + pos: -26.371708,43.614967 + parent: 2 +- proto: SuitStorageAtmos + entities: + - uid: 14934 + components: + - type: Transform + pos: -35.5,30.5 + parent: 2 + - uid: 14935 + components: + - type: Transform + pos: -10.5,25.5 + parent: 2 +- proto: SuitStorageCaptain + entities: + - uid: 14936 + components: + - type: Transform + pos: 77.5,31.5 + parent: 2 +- proto: SuitStorageCE + entities: + - uid: 14937 + components: + - type: Transform + pos: -2.5,27.5 + parent: 2 +- proto: SuitStorageCMO + entities: + - uid: 14938 + components: + - type: Transform + pos: 20.5,40.5 + parent: 2 +- proto: SuitStorageEngi + entities: + - uid: 14939 + components: + - type: Transform + pos: -2.5,39.5 + parent: 2 + - uid: 14940 + components: + - type: Transform + pos: -2.5,40.5 + parent: 2 + - uid: 14941 + components: + - type: Transform + pos: -8.5,41.5 + parent: 2 + - uid: 14942 + components: + - type: Transform + pos: -7.5,41.5 + parent: 2 +- proto: SuitStorageEVA + entities: + - uid: 14943 + components: + - type: Transform + pos: 3.5,43.5 + parent: 2 + - uid: 14944 + components: + - type: Transform + pos: 75.5,45.5 + parent: 2 + - uid: 14945 + components: + - type: Transform + pos: 76.5,45.5 + parent: 2 + - uid: 14946 + components: + - type: Transform + pos: 75.5,42.5 + parent: 2 + - uid: 14947 + components: + - type: Transform + pos: 76.5,42.5 + parent: 2 +- proto: SuitStorageHOS + entities: + - uid: 14948 + components: + - type: Transform + pos: -20.5,54.5 + parent: 2 +- proto: SuitStorageRD + entities: + - uid: 14949 + components: + - type: Transform + pos: 53.5,18.5 + parent: 2 +- proto: SuitStorageSalv + entities: + - uid: 14950 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 2 + - uid: 14951 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 2 + - uid: 14952 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - uid: 14953 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - uid: 14954 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 +- proto: SuitStorageSec + entities: + - uid: 14955 + components: + - type: Transform + pos: -19.5,66.5 + parent: 2 + - uid: 14956 + components: + - type: Transform + pos: -14.5,68.5 + parent: 2 + - uid: 14957 + components: + - type: Transform + pos: -9.5,64.5 + parent: 2 + - uid: 14958 + components: + - type: Transform + pos: -9.5,62.5 + parent: 2 +- proto: Supermatter + entities: + - uid: 14959 + components: + - type: Transform + pos: -19.5,34.5 + parent: 2 +- proto: SurveillanceCameraCommand + entities: + - uid: 14960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,32.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Ponte + - uid: 14961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,46.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Gravity + - uid: 14962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: CE + - uid: 14963 + components: + - type: Transform + pos: -18.5,51.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HOS + - uid: 14964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,16.5 + parent: 2 + - type: SurveillanceCamera + id: LO + - uid: 14965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: R&D Server + - uid: 14966 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Research Server Room + - uid: 14967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + id: RD + - type: ActiveUserInterface + - uid: 14968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,56.5 + parent: 2 + - type: SurveillanceCamera + id: Vault + - uid: 14969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,39.5 + parent: 2 + - type: SurveillanceCamera + id: CMO + - uid: 14970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,45.5 + parent: 2 + - type: SurveillanceCamera + id: EVA Storage + - uid: 14971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,40.5 + parent: 2 + - type: SurveillanceCamera + id: HOP + - uid: 14972 + components: + - type: Transform + pos: 67.5,33.5 + parent: 2 + - type: SurveillanceCamera + id: Front Desk + - uid: 14973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,31.5 + parent: 2 + - type: SurveillanceCamera + id: Captain + - uid: 14974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,25.5 + parent: 2 + - type: SurveillanceCamera + id: Captain Bedroom + - uid: 14976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Telecomms + - uid: 14977 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Station AI monitoring + - uid: 14978 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: IA Core North Exterior 1 + - uid: 14979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Western exterior of the IA core + - uid: 14980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: IA Core South Exterior 2 + - uid: 14981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-17.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: IA Core South Exterior 1 + - uid: 14982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Eastern exterior of the IA core + - uid: 14983 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: IA Core North Exterior 2 + - uid: 14984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Maintenance + - uid: 14985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Core + - uid: 18571 + components: + - type: Transform + pos: 69.5,23.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain Front Desk +- proto: SurveillanceCameraEngineering + entities: + - uid: 14986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,28.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Combustion Chamber + - uid: 14987 + components: + - type: Transform + pos: -7.5,38.5 + parent: 2 + - type: SurveillanceCamera + id: SMES Room Entrance + - uid: 14988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos North + - uid: 14989 + components: + - type: Transform + pos: -30.5,7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos South + - uid: 14990 + components: + - type: Transform + pos: -16.5,18.5 + parent: 2 + - type: SurveillanceCamera + id: Atmos Corridor + - uid: 14991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Reception + - uid: 14992 + components: + - type: Transform + pos: -10.5,27.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmosphere Entry + - uid: 14993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,45.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: SMES Room + - uid: 14994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,45.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Ship Workshop + - uid: 14995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Front desk + - uid: 14996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North Super-Matter Reactor + - uid: 14997 + components: + - type: Transform + pos: -20.5,25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: South Super-Matter Reactor + - uid: 14998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: West Super-Matter Reactor + - uid: 14999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: East Super-Matter Reactor + - uid: 15000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: AME Generator +- proto: SurveillanceCameraGeneral + entities: + - uid: 15001 + components: + - type: Transform + pos: 19.5,47.5 + parent: 2 + - type: SurveillanceCamera + id: Medbay North Corridor + - uid: 15002 + components: + - type: Transform + pos: 0.5,19.5 + parent: 2 + - type: SurveillanceCamera + id: Cargo and engineering corridor + - uid: 15003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,49.5 + parent: 2 + - type: SurveillanceCamera + id: Sec Corridor, Medbay and Engineering + - uid: 15004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,59.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Entrance to the detective's room + - uid: 15005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,63.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + id: North security entrance + - type: ActiveUserInterface + - uid: 15006 + components: + - type: Transform + pos: 3.5,70.5 + parent: 2 + - type: SurveillanceCamera + id: South Park + - uid: 15007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,79.5 + parent: 2 + - type: SurveillanceCamera + id: North Park + - uid: 15008 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - type: SurveillanceCamera + id: Logistics Front desk + - uid: 15009 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - type: SurveillanceCamera + id: Dorms + - uid: 15010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,21.5 + parent: 2 + - type: SurveillanceCamera + id: South Medbay Corridor + - uid: 15011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Medbay entrance + - uid: 15012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,49.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Vault Corridor + - uid: 15013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,35.5 + parent: 2 + - type: SurveillanceCamera + id: Botany reception + - uid: 15014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,40.5 + parent: 2 + - type: SurveillanceCamera + id: Bar + - uid: 15015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,44.5 + parent: 2 + - type: SurveillanceCamera + id: Entrance of the E.V.A. + - uid: 15016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,58.5 + parent: 2 + - type: SurveillanceCamera + id: Evac + - uid: 15017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,25.5 + parent: 2 + - type: SurveillanceCamera + id: Cap Reception Entrance + - uid: 15018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,3.5 + parent: 2 + - type: SurveillanceCamera + id: Arrivals + - uid: 15019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,61.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Pod port +- proto: SurveillanceCameraMedical + entities: + - uid: 15020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,41.5 + parent: 2 + - type: SurveillanceCamera + id: Operating room + - uid: 15021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Front desk + - uid: 15022 + components: + - type: Transform + pos: 9.5,31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: West Infirmary + - uid: 15023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,45.5 + parent: 2 + - type: SurveillanceCamera + id: Morgue + - uid: 15024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,45.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Paramedic's room + - uid: 15025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Cafeteria + - uid: 15026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Reception corridor + - uid: 15027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,27.5 + parent: 2 + - type: SurveillanceCamera + id: medbay entrance + - uid: 15028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,35.5 + parent: 2 + - type: SurveillanceCamera + id: East Infirmary + - uid: 15029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,26.5 + parent: 2 + - type: SurveillanceCamera + id: Chemical Laboratory + - uid: 15030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,45.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology Entry + - uid: 15031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,45.5 + parent: 2 + - type: SurveillanceCamera + id: Virology + - uid: 15032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,29.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + id: Genecist Area + - type: ActiveUserInterface + - uid: 15033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,28.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + id: Cloning Room + - type: ActiveUserInterface +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 15034 + components: + - type: Transform + pos: -36.5,35.5 + parent: 2 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 15035 + components: + - type: Transform + pos: -32.5,38.5 + parent: 2 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 15036 + components: + - type: Transform + pos: -30.5,35.5 + parent: 2 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 15037 + components: + - type: Transform + pos: -36.5,38.5 + parent: 2 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 15038 + components: + - type: Transform + pos: -34.5,35.5 + parent: 2 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 15039 + components: + - type: Transform + pos: -34.5,38.5 + parent: 2 +- proto: SurveillanceCameraRouterService + entities: + - uid: 15040 + components: + - type: Transform + pos: -30.5,38.5 + parent: 2 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 15041 + components: + - type: Transform + pos: -32.5,35.5 + parent: 2 +- proto: SurveillanceCameraScience + entities: + - uid: 15042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Research Room + - uid: 15043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Xenobiology + - uid: 15044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,24.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Front Desk + - uid: 15045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,10.5 + parent: 2 + - type: SurveillanceCamera + id: Xenoarchaeology Room + - uid: 15046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,17.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Research Room Corridor + - uid: 15047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Entrance to the Anomaly room + - uid: 15048 + components: + - type: Transform + pos: 57.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Robotics +- proto: SurveillanceCameraSecurity + entities: + - uid: 7187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,67.5 + parent: 2 + - uid: 15049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cargo Checkpoint + - uid: 15050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,55.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: interrogation room + - uid: 15051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,70.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Lockers + - uid: 15052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,70.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory + - uid: 15053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,52.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: South entrance reception + - uid: 15054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,15.5 + parent: 2 + - type: SurveillanceCamera + id: Cryosleep Checkpoint + - uid: 15055 + components: + - type: Transform + pos: 61.5,56.5 + parent: 2 + - type: SurveillanceCamera + id: Evac Checkpoint + - uid: 15056 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Epistemics Checkpoint + - uid: 15057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,31.5 + parent: 2 + - type: SurveillanceCamera + id: Eng Checkpoint + - uid: 15058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,56.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig + - uid: 15059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,59.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Detective's room + - uid: 15060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,60.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Investigation room + - uid: 15061 + components: + - type: Transform + pos: -23.5,51.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Lawyer's room + - uid: 15062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,58.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + id: Perma Corridor + - type: ActiveUserInterface + - uid: 15063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,58.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + id: Security Corridor + - type: ActiveUserInterface + - uid: 15064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,62.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + id: Rest area + - type: ActiveUserInterface + - uid: 15066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,63.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Equipment delivery + - uid: 15068 + components: + - type: Transform + pos: 6.5,26.5 + parent: 2 + - type: SurveillanceCamera + id: Medbay Checkpoint + - uid: 15069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,59.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: BrigMed + - uid: 17922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,60.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Prisioner Bedroom 1 + - uid: 17993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,65.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma + - uid: 17994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,77.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Botany + - uid: 17996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,74.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma Vending Machines + - uid: 18581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,60.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Prisioner Bedroom 2 +- proto: SurveillanceCameraService + entities: + - uid: 15070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 2 + - type: SurveillanceCamera + id: Disposals + - uid: 15071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,38.5 + parent: 2 + - type: SurveillanceCamera + id: Bar Counter + - uid: 15072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Tool Room + - uid: 15073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,43.5 + parent: 2 + - type: SurveillanceCamera + id: Bartender + - uid: 15074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,37.5 + parent: 2 + - type: SurveillanceCamera + id: Hydroponics + - uid: 15075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,48.5 + parent: 2 + - type: SurveillanceCamera + id: Botanica Cabinets + - uid: 15076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,51.5 + parent: 2 + - type: SurveillanceCamera + id: Freezer + - uid: 15077 + components: + - type: Transform + pos: 54.5,42.5 + parent: 2 + - type: SurveillanceCamera + id: Kitchen + - uid: 15078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,37.5 + parent: 2 + - type: SurveillanceCamera + id: Theater + - uid: 15079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,44.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: clown room + - uid: 15080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,44.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + id: fun room + - uid: 15081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,54.5 + parent: 2 + - type: SurveillanceCamera + id: Janitor's room + - uid: 15082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,61.5 + parent: 2 + - type: SurveillanceCamera + id: Priest's Room + - uid: 15083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,63.5 + parent: 2 + - type: SurveillanceCamera + id: Crematorium + - uid: 15084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,54.5 + parent: 2 + - type: SurveillanceCamera + id: Chapel + - uid: 15085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,56.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Library +- proto: SurveillanceCameraSupply + entities: + - uid: 15086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,14.5 + parent: 2 + - type: SurveillanceCamera + id: Salvage Stock + - uid: 15087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + id: Salvage + - type: ActiveUserInterface + - uid: 15088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Mail + - uid: 15089 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - type: SurveillanceCamera + id: Cargo warehouse + - uid: 15090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Asalvage warehouse + - uid: 15091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Exterior of the salvage +- proto: Syringe + entities: + - uid: 15092 + components: + - type: Transform + pos: 37.385117,7.5585823 + parent: 2 + - uid: 15093 + components: + - type: Transform + pos: -27.432621,50.59636 + parent: 2 + - uid: 15094 + components: + - type: Transform + pos: 14.550299,38.625336 + parent: 2 +- proto: SyringeCryostasis + entities: + - uid: 15095 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 +- proto: Table + entities: + - uid: 713 + components: + - type: Transform + pos: -34.5,74.5 + parent: 2 + - uid: 15096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,27.5 + parent: 2 + - uid: 15097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,31.5 + parent: 2 + - uid: 15098 + components: + - type: Transform + pos: -24.5,43.5 + parent: 2 + - uid: 15099 + components: + - type: Transform + pos: -24.5,43.5 + parent: 2 + - uid: 15100 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 + - uid: 15101 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 + - uid: 15102 + components: + - type: Transform + pos: -26.5,43.5 + parent: 2 + - uid: 15103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,37.5 + parent: 2 + - uid: 15104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,12.5 + parent: 2 + - uid: 15105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,13.5 + parent: 2 + - uid: 15106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,12.5 + parent: 2 + - uid: 15107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,12.5 + parent: 2 + - uid: 15108 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 15109 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 + - uid: 15110 + components: + - type: Transform + pos: -7.5,24.5 + parent: 2 + - uid: 15111 + components: + - type: Transform + pos: -7.5,23.5 + parent: 2 + - uid: 15112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,28.5 + parent: 2 + - uid: 15113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,33.5 + parent: 2 + - uid: 15114 + components: + - type: Transform + pos: -2.5,36.5 + parent: 2 + - uid: 15115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,33.5 + parent: 2 + - uid: 15116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,34.5 + parent: 2 + - uid: 15117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,35.5 + parent: 2 + - uid: 15118 + components: + - type: Transform + pos: -4.5,40.5 + parent: 2 + - uid: 15119 + components: + - type: Transform + pos: -10.5,45.5 + parent: 2 + - uid: 15120 + components: + - type: Transform + pos: -4.5,45.5 + parent: 2 + - uid: 15121 + components: + - type: Transform + pos: -5.5,45.5 + parent: 2 + - uid: 15122 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 15123 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 + - uid: 15124 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 15125 + components: + - type: Transform + pos: 1.5,15.5 + parent: 2 + - uid: 15126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 2 + - uid: 15127 + components: + - type: Transform + pos: -5.5,29.5 + parent: 2 + - uid: 15128 + components: + - type: Transform + pos: -4.5,29.5 + parent: 2 + - uid: 15129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,70.5 + parent: 2 + - uid: 15130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,67.5 + parent: 2 + - uid: 15131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,70.5 + parent: 2 + - uid: 15132 + components: + - type: Transform + pos: -16.5,60.5 + parent: 2 + - uid: 15133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,62.5 + parent: 2 + - uid: 15134 + components: + - type: Transform + pos: -21.5,60.5 + parent: 2 + - uid: 15135 + components: + - type: Transform + pos: -25.5,62.5 + parent: 2 + - uid: 15136 + components: + - type: Transform + pos: -25.5,61.5 + parent: 2 + - uid: 15137 + components: + - type: Transform + pos: -25.5,60.5 + parent: 2 + - uid: 15138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,67.5 + parent: 2 + - uid: 15139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,66.5 + parent: 2 + - uid: 15140 + components: + - type: Transform + pos: -8.5,58.5 + parent: 2 + - uid: 15143 + components: + - type: Transform + pos: 40.5,21.5 + parent: 2 + - uid: 15144 + components: + - type: Transform + pos: 41.5,21.5 + parent: 2 + - uid: 15145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,12.5 + parent: 2 + - uid: 15146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,13.5 + parent: 2 + - uid: 15147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,14.5 + parent: 2 + - uid: 15148 + components: + - type: Transform + pos: 53.5,14.5 + parent: 2 + - uid: 15149 + components: + - type: Transform + pos: 51.5,14.5 + parent: 2 + - uid: 15150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,17.5 + parent: 2 + - uid: 15151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,18.5 + parent: 2 + - uid: 15152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,19.5 + parent: 2 + - uid: 15153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,15.5 + parent: 2 + - uid: 15154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,15.5 + parent: 2 + - uid: 15155 + components: + - type: Transform + pos: 59.5,22.5 + parent: 2 + - uid: 15156 + components: + - type: Transform + pos: 56.5,15.5 + parent: 2 + - uid: 15157 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - uid: 15158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,24.5 + parent: 2 + - uid: 15159 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 15160 + components: + - type: Transform + pos: 46.5,27.5 + parent: 2 + - uid: 15161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,31.5 + parent: 2 + - uid: 15162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,31.5 + parent: 2 + - uid: 15163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,28.5 + parent: 2 + - uid: 15164 + components: + - type: Transform + pos: 58.5,28.5 + parent: 2 + - uid: 15165 + components: + - type: Transform + pos: -26.5,55.5 + parent: 2 + - uid: 15166 + components: + - type: Transform + pos: -26.5,54.5 + parent: 2 + - uid: 15167 + components: + - type: Transform + pos: -26.5,53.5 + parent: 2 + - uid: 15168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,60.5 + parent: 2 + - uid: 15169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,60.5 + parent: 2 + - uid: 15170 + components: + - type: Transform + pos: -31.5,63.5 + parent: 2 + - uid: 15172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,57.5 + parent: 2 + - uid: 15173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,40.5 + parent: 2 + - uid: 15174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,39.5 + parent: 2 + - uid: 15175 + components: + - type: Transform + pos: 54.5,43.5 + parent: 2 + - uid: 15176 + components: + - type: Transform + pos: 55.5,43.5 + parent: 2 + - uid: 15177 + components: + - type: Transform + pos: 55.5,44.5 + parent: 2 + - uid: 15178 + components: + - type: Transform + pos: 54.5,44.5 + parent: 2 + - uid: 15179 + components: + - type: Transform + pos: 57.5,44.5 + parent: 2 + - uid: 15180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,37.5 + parent: 2 + - uid: 15181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,37.5 + parent: 2 + - uid: 15182 + components: + - type: Transform + pos: 62.5,38.5 + parent: 2 + - uid: 15183 + components: + - type: Transform + pos: 62.5,37.5 + parent: 2 + - uid: 15184 + components: + - type: Transform + pos: 51.5,54.5 + parent: 2 + - uid: 15185 + components: + - type: Transform + pos: 5.5,27.5 + parent: 2 + - uid: 15186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,41.5 + parent: 2 + - uid: 15187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,38.5 + parent: 2 + - uid: 15188 + components: + - type: Transform + pos: 17.5,41.5 + parent: 2 + - uid: 15189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,43.5 + parent: 2 + - uid: 15190 + components: + - type: Transform + pos: 5.5,37.5 + parent: 2 + - uid: 15191 + components: + - type: Transform + pos: 3.5,38.5 + parent: 2 + - uid: 15192 + components: + - type: Transform + pos: 3.5,40.5 + parent: 2 + - uid: 15193 + components: + - type: Transform + pos: 3.5,41.5 + parent: 2 + - uid: 15194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,39.5 + parent: 2 + - uid: 15195 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 + - uid: 15196 + components: + - type: Transform + pos: 73.5,62.5 + parent: 2 + - uid: 15197 + components: + - type: Transform + pos: 74.5,62.5 + parent: 2 + - uid: 15198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,46.5 + parent: 2 + - uid: 15199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,42.5 + parent: 2 + - uid: 15200 + components: + - type: Transform + pos: 78.5,44.5 + parent: 2 + - uid: 15201 + components: + - type: Transform + pos: 71.5,38.5 + parent: 2 + - uid: 15202 + components: + - type: Transform + pos: 68.5,40.5 + parent: 2 + - uid: 15203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,38.5 + parent: 2 + - uid: 15204 + components: + - type: Transform + pos: 67.5,1.5 + parent: 2 + - uid: 15205 + components: + - type: Transform + pos: 70.5,13.5 + parent: 2 + - uid: 15206 + components: + - type: Transform + pos: 70.5,21.5 + parent: 2 + - uid: 15207 + components: + - type: Transform + pos: 43.5,66.5 + parent: 2 + - uid: 15208 + components: + - type: Transform + pos: 44.5,66.5 + parent: 2 + - uid: 15209 + components: + - type: Transform + pos: 45.5,65.5 + parent: 2 + - uid: 15210 + components: + - type: Transform + pos: 45.5,64.5 + parent: 2 + - uid: 15211 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 2 + - uid: 15212 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 + - uid: 15213 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 15214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,31.5 + parent: 2 + - uid: 19504 + components: + - type: Transform + pos: -31.5,74.5 + parent: 2 + - uid: 19505 + components: + - type: Transform + pos: -30.5,74.5 + parent: 2 + - uid: 19507 + components: + - type: Transform + pos: -31.5,73.5 + parent: 2 + - uid: 19508 + components: + - type: Transform + pos: -30.5,73.5 + parent: 2 + - uid: 19519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,73.5 + parent: 2 + - uid: 19520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,73.5 + parent: 2 +- proto: TableCarpet + entities: + - uid: 5988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,28.5 + parent: 2 + - uid: 12988 + components: + - type: Transform + pos: 76.5,28.5 + parent: 2 + - uid: 14975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,29.5 + parent: 2 + - uid: 15215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,27.5 + parent: 2 + - uid: 15216 + components: + - type: Transform + pos: -20.5,53.5 + parent: 2 + - uid: 15217 + components: + - type: Transform + pos: -19.5,53.5 + parent: 2 + - uid: 15218 + components: + - type: Transform + pos: -17.5,53.5 + parent: 2 + - uid: 15219 + components: + - type: Transform + pos: -17.5,54.5 + parent: 2 + - uid: 15220 + components: + - type: Transform + pos: -17.5,55.5 + parent: 2 + - uid: 15221 + components: + - type: Transform + pos: -24.5,55.5 + parent: 2 + - uid: 15222 + components: + - type: Transform + pos: -24.5,54.5 + parent: 2 + - uid: 15223 + components: + - type: Transform + pos: -24.5,52.5 + parent: 2 + - uid: 15224 + components: + - type: Transform + pos: -24.5,51.5 + parent: 2 + - uid: 15225 + components: + - type: Transform + pos: -22.5,52.5 + parent: 2 + - uid: 15226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,43.5 + parent: 2 + - uid: 15227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,44.5 + parent: 2 + - uid: 15228 + components: + - type: Transform + pos: 40.5,43.5 + parent: 2 + - uid: 15229 + components: + - type: Transform + pos: 40.5,45.5 + parent: 2 + - uid: 15230 + components: + - type: Transform + pos: 35.5,43.5 + parent: 2 + - uid: 15231 + components: + - type: Transform + pos: 36.5,43.5 + parent: 2 + - uid: 15232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,39.5 + parent: 2 + - uid: 15233 + components: + - type: Transform + pos: 39.5,38.5 + parent: 2 + - uid: 15234 + components: + - type: Transform + pos: 40.5,38.5 + parent: 2 + - uid: 15235 + components: + - type: Transform + pos: 36.5,37.5 + parent: 2 + - uid: 15236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,31.5 + parent: 2 + - uid: 15238 + components: + - type: Transform + pos: 74.5,27.5 + parent: 2 + - uid: 15239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,24.5 + parent: 2 + - uid: 15240 + components: + - type: Transform + pos: 83.5,23.5 + parent: 2 + - uid: 15241 + components: + - type: Transform + pos: 82.5,24.5 + parent: 2 + - uid: 15242 + components: + - type: Transform + pos: 82.5,23.5 + parent: 2 + - uid: 15243 + components: + - type: Transform + pos: 83.5,24.5 + parent: 2 + - uid: 15244 + components: + - type: Transform + pos: 63.5,14.5 + parent: 2 + - uid: 15245 + components: + - type: Transform + pos: 63.5,15.5 + parent: 2 + - uid: 15246 + components: + - type: Transform + pos: 80.5,50.5 + parent: 2 + - uid: 15247 + components: + - type: Transform + pos: 62.5,50.5 + parent: 2 + - uid: 15248 + components: + - type: Transform + pos: 60.5,54.5 + parent: 2 + - uid: 16996 + components: + - type: Transform + pos: 72.5,30.5 + parent: 2 +- proto: TableCounterWood + entities: + - uid: 15249 + components: + - type: Transform + pos: 59.5,39.5 + parent: 2 + - uid: 15250 + components: + - type: Transform + pos: 59.5,38.5 + parent: 2 +- proto: TableGlass + entities: + - uid: 15331 + components: + - type: Transform + pos: 84.5,34.5 + parent: 2 + - uid: 19476 + components: + - type: Transform + pos: -30.5,68.5 + parent: 2 + - uid: 19477 + components: + - type: Transform + pos: -31.5,67.5 + parent: 2 + - uid: 19478 + components: + - type: Transform + pos: -31.5,68.5 + parent: 2 + - uid: 19487 + components: + - type: Transform + pos: -30.5,67.5 + parent: 2 +- proto: TablePlasmaGlass + entities: + - uid: 15252 + components: + - type: Transform + pos: 52.5,-0.5 + parent: 2 + - uid: 15253 + components: + - type: Transform + pos: 52.5,-1.5 + parent: 2 + - uid: 15254 + components: + - type: Transform + pos: 50.5,-0.5 + parent: 2 + - uid: 15255 + components: + - type: Transform + pos: 50.5,-1.5 + parent: 2 + - uid: 15258 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 + - uid: 15259 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - uid: 15260 + components: + - type: Transform + pos: 48.5,31.5 + parent: 2 + - uid: 15261 + components: + - type: Transform + pos: -28.5,50.5 + parent: 2 + - uid: 15262 + components: + - type: Transform + pos: -27.5,50.5 + parent: 2 + - uid: 15263 + components: + - type: Transform + pos: 31.5,56.5 + parent: 2 + - uid: 15264 + components: + - type: Transform + pos: 31.5,53.5 + parent: 2 + - uid: 15265 + components: + - type: Transform + pos: 31.5,54.5 + parent: 2 + - uid: 15266 + components: + - type: Transform + pos: 10.5,27.5 + parent: 2 + - uid: 15267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,45.5 + parent: 2 + - uid: 15268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,45.5 + parent: 2 + - uid: 15269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,45.5 + parent: 2 + - uid: 15270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,46.5 + parent: 2 + - uid: 15271 + components: + - type: Transform + pos: 27.5,29.5 + parent: 2 + - uid: 15272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,23.5 + parent: 2 + - uid: 15273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,23.5 + parent: 2 + - uid: 15274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,23.5 + parent: 2 + - uid: 15275 + components: + - type: Transform + pos: 20.5,26.5 + parent: 2 + - uid: 15276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,24.5 + parent: 2 + - uid: 15277 + components: + - type: Transform + pos: 10.5,28.5 + parent: 2 + - uid: 15278 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 + - uid: 15279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,28.5 + parent: 2 + - uid: 15280 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 + - uid: 15281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,39.5 + parent: 2 + - uid: 15282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,39.5 + parent: 2 + - uid: 15285 + components: + - type: Transform + pos: -37.5,34.5 + parent: 2 + - uid: 15286 + components: + - type: Transform + pos: -37.5,39.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 15287 + components: + - type: Transform + pos: -34.5,30.5 + parent: 2 + - uid: 15288 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 + - uid: 15289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,46.5 + parent: 2 + - uid: 15290 + components: + - type: Transform + pos: -7.5,22.5 + parent: 2 + - uid: 15291 + components: + - type: Transform + pos: -6.5,20.5 + parent: 2 + - uid: 15292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,25.5 + parent: 2 + - uid: 15293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,26.5 + parent: 2 + - uid: 15294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,35.5 + parent: 2 + - uid: 15295 + components: + - type: Transform + pos: 7.5,14.5 + parent: 2 + - uid: 15296 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 15297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,64.5 + parent: 2 + - uid: 15298 + components: + - type: Transform + pos: -15.5,59.5 + parent: 2 + - uid: 15299 + components: + - type: Transform + pos: -13.5,51.5 + parent: 2 + - uid: 15300 + components: + - type: Transform + pos: -13.5,52.5 + parent: 2 + - uid: 15301 + components: + - type: Transform + pos: -14.5,50.5 + parent: 2 + - uid: 15302 + components: + - type: Transform + pos: -15.5,50.5 + parent: 2 + - uid: 15303 + components: + - type: Transform + pos: 36.5,7.5 + parent: 2 + - uid: 15304 + components: + - type: Transform + pos: 37.5,7.5 + parent: 2 + - uid: 15305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,9.5 + parent: 2 + - uid: 15306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,8.5 + parent: 2 + - uid: 15307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,7.5 + parent: 2 + - uid: 15308 + components: + - type: Transform + pos: 55.5,23.5 + parent: 2 + - uid: 15309 + components: + - type: Transform + pos: 51.5,25.5 + parent: 2 + - uid: 15310 + components: + - type: Transform + pos: 49.5,38.5 + parent: 2 + - uid: 15311 + components: + - type: Transform + pos: 49.5,39.5 + parent: 2 + - uid: 15312 + components: + - type: Transform + pos: 45.5,36.5 + parent: 2 + - uid: 15313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,43.5 + parent: 2 + - uid: 15314 + components: + - type: Transform + pos: 55.5,41.5 + parent: 2 + - uid: 15315 + components: + - type: Transform + pos: 56.5,41.5 + parent: 2 + - uid: 15316 + components: + - type: Transform + pos: 57.5,41.5 + parent: 2 + - uid: 15317 + components: + - type: Transform + pos: 42.5,28.5 + parent: 2 + - uid: 15318 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 15319 + components: + - type: Transform + pos: 37.5,30.5 + parent: 2 + - uid: 15320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,28.5 + parent: 2 + - uid: 15321 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - uid: 15322 + components: + - type: Transform + pos: 12.5,29.5 + parent: 2 + - uid: 15323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,35.5 + parent: 2 + - uid: 15324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,35.5 + parent: 2 + - uid: 15325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,35.5 + parent: 2 + - uid: 15326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,36.5 + parent: 2 + - uid: 15327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,40.5 + parent: 2 + - uid: 15328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,35.5 + parent: 2 + - uid: 15329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,33.5 + parent: 2 + - uid: 15330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,33.5 + parent: 2 + - uid: 15332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,35.5 + parent: 2 + - uid: 15333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,34.5 + parent: 2 + - uid: 15334 + components: + - type: Transform + pos: 72.5,12.5 + parent: 2 +- proto: TableReinforcedGlass + entities: + - uid: 15335 + components: + - type: Transform + pos: 36.5,11.5 + parent: 2 +- proto: TableWood + entities: + - uid: 488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,5.5 + parent: 2 + - uid: 7284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,5.5 + parent: 2 + - uid: 15142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,5.5 + parent: 2 + - uid: 15336 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 15337 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 + - uid: 15338 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - uid: 15339 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 15340 + components: + - type: Transform + pos: 23.5,13.5 + parent: 2 + - uid: 15341 + components: + - type: Transform + pos: 23.5,12.5 + parent: 2 + - uid: 15342 + components: + - type: Transform + pos: 23.5,11.5 + parent: 2 + - uid: 15343 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 + - uid: 15344 + components: + - type: Transform + pos: 24.5,12.5 + parent: 2 + - uid: 15345 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 + - uid: 15346 + components: + - type: Transform + pos: 1.5,60.5 + parent: 2 + - uid: 15347 + components: + - type: Transform + pos: 0.5,60.5 + parent: 2 + - uid: 15348 + components: + - type: Transform + pos: 0.5,59.5 + parent: 2 + - uid: 15349 + components: + - type: Transform + pos: 2.5,51.5 + parent: 2 + - uid: 15350 + components: + - type: Transform + pos: 6.5,72.5 + parent: 2 + - uid: 15351 + components: + - type: Transform + pos: 6.5,73.5 + parent: 2 + - uid: 15352 + components: + - type: Transform + pos: 8.5,79.5 + parent: 2 + - uid: 15353 + components: + - type: Transform + pos: 8.5,60.5 + parent: 2 + - uid: 15354 + components: + - type: Transform + pos: 9.5,60.5 + parent: 2 + - uid: 15355 + components: + - type: Transform + pos: 10.5,60.5 + parent: 2 + - uid: 15356 + components: + - type: Transform + pos: 14.5,59.5 + parent: 2 + - uid: 15357 + components: + - type: Transform + pos: 13.5,62.5 + parent: 2 + - uid: 15358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,51.5 + parent: 2 + - uid: 15359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,59.5 + parent: 2 + - uid: 15360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,59.5 + parent: 2 + - uid: 15361 + components: + - type: Transform + pos: 17.5,51.5 + parent: 2 + - uid: 15362 + components: + - type: Transform + pos: 21.5,51.5 + parent: 2 + - uid: 15363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,54.5 + parent: 2 + - uid: 15364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,54.5 + parent: 2 + - uid: 15365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,54.5 + parent: 2 + - uid: 15366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,54.5 + parent: 2 + - uid: 15367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,55.5 + parent: 2 + - uid: 15368 + components: + - type: Transform + pos: 16.5,56.5 + parent: 2 + - uid: 15369 + components: + - type: Transform + pos: 20.5,58.5 + parent: 2 + - uid: 15370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,63.5 + parent: 2 +- proto: TelecomServer + entities: + - uid: 8385 + components: + - type: Transform + pos: -32.5,34.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 8386 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 8387 + components: + - type: Transform + pos: -36.5,34.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 8388 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 8389 + components: + - type: Transform + pos: -30.5,34.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 8390 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 8391 + components: + - type: Transform + pos: -32.5,39.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 8392 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 8393 + components: + - type: Transform + pos: -36.5,39.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 8394 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 8395 + components: + - type: Transform + pos: -34.5,34.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 8396 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 8397 + components: + - type: Transform + pos: -34.5,39.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 8398 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 8399 + components: + - type: Transform + pos: -30.5,39.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 8400 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 15371 + components: + - type: Transform + pos: 25.5,2.5 + parent: 2 +- proto: TelecomServerCircuitboard + entities: + - uid: 15372 + components: + - type: Transform + pos: 29.652218,54.62316 + parent: 2 +- proto: TelescopicShield + entities: + - uid: 15373 + components: + - type: Transform + pos: -19.484163,70.37912 + parent: 2 +- proto: TeslaGroundingRod + entities: + - uid: 15374 + components: + - type: Transform + pos: -20.5,33.5 + parent: 2 + - uid: 15375 + components: + - type: Transform + pos: -18.5,35.5 + parent: 2 +- proto: ThrusterMachineCircuitboard + entities: + - uid: 15376 + components: + - type: Transform + pos: -26.281868,43.435417 + parent: 2 +- proto: ThrusterUnanchored + entities: + - uid: 15377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,45.5 + parent: 2 + - uid: 15378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,46.5 + parent: 2 +- proto: TimerTrigger + entities: + - uid: 15379 + components: + - type: Transform + pos: 41.394043,7.857434 + parent: 2 + - uid: 15380 + components: + - type: Transform + pos: 41.57338,7.857434 + parent: 2 + - uid: 15381 + components: + - type: Transform + pos: 41.752712,7.8753543 + parent: 2 + - uid: 15382 + components: + - type: Transform + pos: 41.411976,7.678222 + parent: 2 + - uid: 15383 + components: + - type: Transform + pos: 41.73478,7.6961427 + parent: 2 +- proto: TintedWindow + entities: + - uid: 15384 + components: + - type: Transform + pos: 14.5,56.5 + parent: 2 +- proto: ToiletEmpty + entities: + - uid: 7127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,23.5 + parent: 2 + - uid: 15385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,60.5 + parent: 2 + - uid: 15386 + components: + - type: Transform + pos: -0.5,68.5 + parent: 2 +- proto: ToolboxArtisticFilled + entities: + - uid: 15388 + components: + - type: Transform + pos: 23.496847,11.574278 + parent: 2 + - uid: 15389 + components: + - type: Transform + pos: 6.4786124,72.54033 + parent: 2 + - uid: 15390 + components: + - type: Transform + pos: 20.446404,58.720234 + parent: 2 + - uid: 15391 + components: + - type: Transform + pos: 20.671005,58.46773 + parent: 2 +- proto: ToolboxElectricalFilled + entities: + - uid: 15392 + components: + - type: Transform + pos: -19.511765,64.77958 + parent: 2 + - uid: 15393 + components: + - type: Transform + pos: 55.585693,18.510311 + parent: 2 + - uid: 15394 + components: + - type: Transform + pos: 61.460552,31.474577 + parent: 2 + - uid: 15395 + components: + - type: Transform + pos: 61.504906,31.743872 + parent: 2 +- proto: ToolboxEmergency + entities: + - uid: 15396 + components: + - type: Transform + pos: -19.511765,64.70789 + parent: 2 +- proto: ToolboxEmergencyFilled + entities: + - uid: 15397 + components: + - type: Transform + pos: 67.398415,1.5101199 + parent: 2 + - uid: 15398 + components: + - type: Transform + pos: 67.59568,1.707253 + parent: 2 +- proto: ToolboxGoldFilled + entities: + - uid: 15399 + components: + - type: Transform + pos: 31.472889,53.963844 + parent: 2 +- proto: ToolboxMechanical + entities: + - uid: 15400 + components: + - type: Transform + pos: -19.475897,64.58244 + parent: 2 +- proto: ToolboxMechanicalFilled + entities: + - uid: 15401 + components: + - type: Transform + pos: 55.40636,18.295258 + parent: 2 + - uid: 15402 + components: + - type: Transform + pos: 50.61312,27.773558 + parent: 2 + - uid: 15403 + components: + - type: Transform + pos: 50.45172,27.576424 + parent: 2 + - uid: 15404 + components: + - type: Transform + pos: 58.658024,28.801037 + parent: 2 + - uid: 15405 + components: + - type: Transform + pos: 58.514557,28.65767 + parent: 2 + - uid: 15406 + components: + - type: Transform + pos: 58.37109,28.460535 + parent: 2 + - uid: 15407 + components: + - type: Transform + pos: 73.46528,62.57881 + parent: 2 + - uid: 15408 + components: + - type: Transform + pos: 71.47788,42.5652 + parent: 2 + - uid: 15409 + components: + - type: Transform + pos: 84.53903,33.43942 + parent: 2 +- proto: ToyAi + entities: + - uid: 15410 + components: + - type: Transform + pos: 25.489372,-11.360584 + parent: 2 +- proto: ToyFigurineClown + entities: + - uid: 767 + components: + - type: Transform + parent: 742 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ToyRubberDuck + entities: + - uid: 15411 + components: + - type: Transform + pos: 0.96490765,73.09096 + parent: 2 +- proto: TrashBananaPeelExplosive + entities: + - uid: 15413 + components: + - type: Transform + pos: 28.482716,61.52888 + parent: 2 +- proto: TwoWayLever + entities: + - uid: 15414 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7265: + - Left: Forward + - Right: Reverse + - Middle: Off + 7266: + - Left: Forward + - Right: Reverse + - Middle: Off + 7267: + - Left: Forward + - Right: Reverse + - Middle: Off + 7273: + - Left: Forward + - Right: Reverse + - Middle: Off + 7272: + - Left: Forward + - Right: Reverse + - Middle: Off + 7271: + - Left: Forward + - Right: Reverse + - Middle: Off + 7270: + - Left: Forward + - Right: Reverse + - Middle: Off + 7269: + - Left: Forward + - Right: Reverse + - Middle: Off + 7268: + - Left: Forward + - Right: Reverse + - Middle: Off + 7274: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 15415 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7264: + - Left: Forward + - Right: Reverse + - Middle: Off + 7263: + - Left: Forward + - Right: Reverse + - Middle: Off + 7262: + - Left: Forward + - Right: Reverse + - Middle: Off + 7261: + - Left: Forward + - Right: Reverse + - Middle: Off + 7254: + - Left: Forward + - Right: Reverse + - Middle: Off + 7255: + - Left: Forward + - Right: Reverse + - Middle: Off + 7256: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 15416 + components: + - type: Transform + pos: -0.5,4.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7253: + - Left: Forward + - Right: Reverse + - Middle: Off + 7252: + - Left: Forward + - Right: Reverse + - Middle: Off + 7251: + - Left: Forward + - Right: Reverse + - Middle: Off + 7257: + - Left: Forward + - Right: Reverse + - Middle: Off + 7258: + - Left: Forward + - Right: Reverse + - Middle: Off + 7259: + - Left: Forward + - Right: Reverse + - Middle: Off + 7260: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: UniformPrinter + entities: + - uid: 15417 + components: + - type: Transform + pos: 78.5,40.5 + parent: 2 +- proto: Vaccinator + entities: + - uid: 15418 + components: + - type: Transform + pos: 27.5,45.5 + parent: 2 +- proto: VendingBarDrobe + entities: + - uid: 15419 + components: + - type: Transform + pos: 62.5,42.5 + parent: 2 +- proto: VendingMachineBooze + entities: + - uid: 14863 + components: + - type: Transform + pos: 75.5,27.5 + parent: 2 + - uid: 15420 + components: + - type: Transform + pos: 47.5,59.5 + parent: 2 + - uid: 15421 + components: + - type: Transform + pos: 62.5,41.5 + parent: 2 +- proto: VendingMachineCargoDrobe + entities: + - uid: 15422 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 +- proto: VendingMachineCart + entities: + - uid: 15423 + components: + - type: Transform + pos: 74.5,38.5 + parent: 2 +- proto: VendingMachineChapel + entities: + - uid: 15424 + components: + - type: Transform + pos: 8.5,61.5 + parent: 2 +- proto: VendingMachineChefDrobe + entities: + - uid: 15425 + components: + - type: Transform + pos: 53.5,51.5 + parent: 2 +- proto: VendingMachineChefvend + entities: + - uid: 15426 + components: + - type: Transform + pos: 57.5,46.5 + parent: 2 +- proto: VendingMachineChemDrobe + entities: + - uid: 15427 + components: + - type: Transform + pos: 10.5,23.5 + parent: 2 +- proto: VendingMachineChemicals + entities: + - uid: 15428 + components: + - type: Transform + pos: 14.5,26.5 + parent: 2 +- proto: VendingMachineCigs + entities: + - uid: 15429 + components: + - type: Transform + pos: 35.5,32.5 + parent: 2 + - uid: 15430 + components: + - type: Transform + pos: 68.5,21.5 + parent: 2 + - uid: 19497 + components: + - type: Transform + pos: -27.5,69.5 + parent: 2 +- proto: VendingMachineClothing + entities: + - uid: 15431 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 +- proto: VendingMachineCoffee + entities: + - uid: 15432 + components: + - type: Transform + pos: 30.5,5.5 + parent: 2 + - uid: 15433 + components: + - type: Transform + pos: 25.5,51.5 + parent: 2 + - uid: 17007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,26.5 + parent: 2 +- proto: VendingMachineCourierDrobe + entities: + - uid: 15434 + components: + - type: Transform + pos: -5.5,8.5 + parent: 2 +- proto: VendingMachineCuraDrobe + entities: + - uid: 15435 + components: + - type: Transform + pos: 16.5,58.5 + parent: 2 +- proto: VendingMachineDetDrobe + entities: + - uid: 15436 + components: + - type: Transform + pos: 1.5,57.5 + parent: 2 +- proto: VendingMachineDinnerware + entities: + - uid: 15437 + components: + - type: Transform + pos: 56.5,46.5 + parent: 2 +- proto: VendingMachineDonut + entities: + - uid: 15438 + components: + - type: Transform + pos: -6.5,17.5 + parent: 2 +- proto: VendingMachineEngiDrobe + entities: + - uid: 15439 + components: + - type: Transform + pos: -11.5,41.5 + parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 15440 + components: + - type: Transform + pos: -11.5,40.5 + parent: 2 + - uid: 15441 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 +- proto: VendingMachineGames + entities: + - uid: 15442 + components: + - type: Transform + pos: 19.5,51.5 + parent: 2 + - uid: 15443 + components: + - type: Transform + pos: 38.5,44.5 + parent: 2 + - uid: 15444 + components: + - type: Transform + pos: 36.5,41.5 + parent: 2 +- proto: VendingMachineGeneDrobe + entities: + - uid: 15445 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 +- proto: VendingMachineHydrobe + entities: + - uid: 15446 + components: + - type: Transform + pos: 50.5,48.5 + parent: 2 +- proto: VendingMachineJaniDrobe + entities: + - uid: 15447 + components: + - type: Transform + pos: 39.5,51.5 + parent: 2 +- proto: VendingMachineLawDrobe + entities: + - uid: 15448 + components: + - type: Transform + pos: -24.5,53.5 + parent: 2 +- proto: VendingMachineMedical + entities: + - uid: 15449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,31.5 + parent: 2 + - uid: 15450 + components: + - type: Transform + pos: -3.5,60.5 + parent: 2 + - uid: 15451 + components: + - type: Transform + pos: 3.5,37.5 + parent: 2 + - uid: 15452 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 2 +- proto: VendingMachineMediDrobe + entities: + - uid: 15453 + components: + - type: Transform + pos: 6.5,41.5 + parent: 2 +- proto: VendingMachineNutri + entities: + - uid: 15454 + components: + - type: Transform + pos: 10.5,74.5 + parent: 2 + - uid: 15455 + components: + - type: Transform + pos: 43.5,37.5 + parent: 2 +- proto: VendingMachineRestockBooze + entities: + - uid: 15456 + components: + - type: Transform + pos: 61.56243,44.527573 + parent: 2 + - uid: 15457 + components: + - type: Transform + pos: 47.757805,60.169292 + parent: 2 +- proto: VendingMachineRestockMedical + entities: + - uid: 15458 + components: + - type: Transform + pos: 5.2875233,37.73525 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: VendingMachineRoboDrobe + entities: + - uid: 15459 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 +- proto: VendingMachineRobotics + entities: + - uid: 15460 + components: + - type: Transform + pos: 59.5,18.5 + parent: 2 + - uid: 15461 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 15462 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 2 +- proto: VendingMachineSalvage + entities: + - uid: 15463 + components: + - type: Transform + pos: -15.5,9.5 + parent: 2 +- proto: VendingMachineSciDrobe + entities: + - uid: 15464 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 +- proto: VendingMachineSec + entities: + - uid: 15465 + components: + - type: Transform + pos: -25.5,68.5 + parent: 2 + - uid: 15466 + components: + - type: Transform + pos: -21.5,69.5 + parent: 2 + - uid: 15467 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 2 +- proto: VendingMachineSecDrobe + entities: + - uid: 15468 + components: + - type: Transform + pos: -3.5,31.5 + parent: 2 + - uid: 15469 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 + - uid: 15470 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 + - uid: 15471 + components: + - type: Transform + pos: -21.5,70.5 + parent: 2 + - uid: 15472 + components: + - type: Transform + pos: 43.5,13.5 + parent: 2 + - uid: 15473 + components: + - type: Transform + pos: 7.5,26.5 + parent: 2 + - uid: 15474 + components: + - type: Transform + pos: 62.5,56.5 + parent: 2 + - uid: 15475 + components: + - type: Transform + pos: 69.5,13.5 + parent: 2 +- proto: VendingMachineSeeds + entities: + - uid: 15476 + components: + - type: Transform + pos: 43.5,38.5 + parent: 2 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 13974 + components: + - type: Transform + pos: -31.5,77.5 + parent: 2 + - uid: 15477 + components: + - type: Transform + pos: 10.5,75.5 + parent: 2 +- proto: VendingMachineSyndieDrobe + entities: + - uid: 12786 + components: + - type: Transform + pos: 39.5,65.5 + parent: 2 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 15478 + components: + - type: Transform + pos: -13.5,28.5 + parent: 2 + - uid: 15479 + components: + - type: Transform + pos: 41.5,11.5 + parent: 2 + - uid: 15480 + components: + - type: Transform + pos: -13.5,27.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 15481 + components: + - type: Transform + pos: -12.5,18.5 + parent: 2 + - uid: 15482 + components: + - type: Transform + pos: -21.5,68.5 + parent: 2 + - uid: 15483 + components: + - type: Transform + pos: 70.5,46.5 + parent: 2 + - uid: 15484 + components: + - type: Transform + pos: -5.5,38.5 + parent: 2 + - uid: 15485 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 2 +- proto: VendingMachineTheater + entities: + - uid: 15486 + components: + - type: Transform + pos: 38.5,43.5 + parent: 2 +- proto: VendingMachineVendomat + entities: + - uid: 15487 + components: + - type: Transform + pos: 41.5,15.5 + parent: 2 + - uid: 15488 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 2 +- proto: VendingMachineWallMedical + entities: + - uid: 15489 + components: + - type: Transform + pos: 27.5,36.5 + parent: 2 +- proto: VendingMachineWinter + entities: + - uid: 15490 + components: + - type: Transform + pos: 22.5,8.5 + parent: 2 +- proto: VendingMachineYouTool + entities: + - uid: 15491 + components: + - type: Transform + pos: 62.5,31.5 + parent: 2 + - uid: 15492 + components: + - type: Transform + pos: -11.5,39.5 + parent: 2 + - uid: 15493 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 2 +- proto: WallmountTelescreen + entities: + - uid: 15494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,27.5 + parent: 2 + - uid: 15495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,13.5 + parent: 2 + - uid: 15496 + components: + - type: Transform + pos: 0.5,60.5 + parent: 2 + - uid: 15497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-10.5 + parent: 2 + - uid: 15498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-12.5 + parent: 2 + - uid: 15499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-2.5 + parent: 2 +- proto: WallmountTelevision + entities: + - uid: 15500 + components: + - type: Transform + pos: 36.5,42.5 + parent: 2 + - uid: 15501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,38.5 + parent: 2 +- proto: WallmountTelevisionFrame + entities: + - uid: 5811 + components: + - type: Transform + pos: 69.5,32.5 + parent: 2 +- proto: WallPlastitanium + entities: + - uid: 15502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,62.5 + parent: 2 + - uid: 15503 + components: + - type: Transform + pos: 18.5,79.5 + parent: 2 + - uid: 15504 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 2 + - uid: 17015 + components: + - type: Transform + pos: 82.5,14.5 + parent: 2 + - uid: 18936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,64.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,66.5 + parent: 2 + - uid: 882 + components: + - type: Transform + pos: 67.5,31.5 + parent: 2 + - uid: 1595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,68.5 + parent: 2 + - uid: 1822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,70.5 + parent: 2 + - uid: 1823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,69.5 + parent: 2 + - uid: 5082 + components: + - type: Transform + pos: -12.5,69.5 + parent: 2 + - uid: 5206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,68.5 + parent: 2 + - uid: 5750 + components: + - type: Transform + pos: -17.5,72.5 + parent: 2 + - uid: 5751 + components: + - type: Transform + pos: -18.5,72.5 + parent: 2 + - uid: 5752 + components: + - type: Transform + pos: -19.5,72.5 + parent: 2 + - uid: 5753 + components: + - type: Transform + pos: -16.5,72.5 + parent: 2 + - uid: 5754 + components: + - type: Transform + pos: -15.5,72.5 + parent: 2 + - uid: 5755 + components: + - type: Transform + pos: -14.5,72.5 + parent: 2 + - uid: 5756 + components: + - type: Transform + pos: -13.5,72.5 + parent: 2 + - uid: 5759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,74.5 + parent: 2 + - uid: 6053 + components: + - type: Transform + pos: -4.5,71.5 + parent: 2 + - uid: 6054 + components: + - type: Transform + pos: -4.5,70.5 + parent: 2 + - uid: 6056 + components: + - type: Transform + pos: -12.5,71.5 + parent: 2 + - uid: 6192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,73.5 + parent: 2 + - uid: 6331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,72.5 + parent: 2 + - uid: 6461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,71.5 + parent: 2 + - uid: 7241 + components: + - type: Transform + pos: 73.5,25.5 + parent: 2 + - uid: 8113 + components: + - type: Transform + pos: 73.5,23.5 + parent: 2 + - uid: 11667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,5.5 + parent: 2 + - uid: 12239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,59.5 + parent: 2 + - uid: 12539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,75.5 + parent: 2 + - uid: 12543 + components: + - type: Transform + pos: -20.5,72.5 + parent: 2 + - uid: 12544 + components: + - type: Transform + pos: -12.5,70.5 + parent: 2 + - uid: 13478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,75.5 + parent: 2 + - uid: 13679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,63.5 + parent: 2 + - uid: 13681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,60.5 + parent: 2 + - uid: 14314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,62.5 + parent: 2 + - uid: 14534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,6.5 + parent: 2 + - uid: 14552 + components: + - type: Transform + pos: 73.5,24.5 + parent: 2 + - uid: 15505 + components: + - type: Transform + pos: 81.5,14.5 + parent: 2 + - uid: 15506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,26.5 + parent: 2 + - uid: 15507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,30.5 + parent: 2 + - uid: 15508 + components: + - type: Transform + pos: 4.5,36.5 + parent: 2 + - uid: 15509 + components: + - type: Transform + pos: -7.5,17.5 + parent: 2 + - uid: 15510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-6.5 + parent: 2 + - uid: 15511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-6.5 + parent: 2 + - uid: 15512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-6.5 + parent: 2 + - uid: 15513 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - uid: 15514 + components: + - type: Transform + pos: -31.5,0.5 + parent: 2 + - uid: 15515 + components: + - type: Transform + pos: -33.5,0.5 + parent: 2 + - uid: 15516 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - uid: 15517 + components: + - type: Transform + pos: -29.5,0.5 + parent: 2 + - uid: 15518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,22.5 + parent: 2 + - uid: 15519 + components: + - type: Transform + pos: -24.5,42.5 + parent: 2 + - uid: 15520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,21.5 + parent: 2 + - uid: 15521 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - uid: 15522 + components: + - type: Transform + pos: -26.5,42.5 + parent: 2 + - uid: 15523 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 + - uid: 15525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,75.5 + parent: 2 + - uid: 15526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,75.5 + parent: 2 + - uid: 15527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,75.5 + parent: 2 + - uid: 15528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,75.5 + parent: 2 + - uid: 15529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,75.5 + parent: 2 + - uid: 15530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,75.5 + parent: 2 + - uid: 15531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,75.5 + parent: 2 + - uid: 15532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,73.5 + parent: 2 + - uid: 15533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,75.5 + parent: 2 + - uid: 15534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,73.5 + parent: 2 + - uid: 15535 + components: + - type: Transform + pos: -17.5,33.5 + parent: 2 + - uid: 15536 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 + - uid: 15537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,6.5 + parent: 2 + - uid: 15538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,14.5 + parent: 2 + - uid: 15539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,14.5 + parent: 2 + - uid: 15540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,14.5 + parent: 2 + - uid: 15541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,9.5 + parent: 2 + - uid: 15542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,13.5 + parent: 2 + - uid: 15543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,6.5 + parent: 2 + - uid: 15544 + components: + - type: Transform + pos: 34.5,56.5 + parent: 2 + - uid: 15545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,6.5 + parent: 2 + - uid: 15546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,6.5 + parent: 2 + - uid: 15547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,10.5 + parent: 2 + - uid: 15548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,10.5 + parent: 2 + - uid: 15549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,18.5 + parent: 2 + - uid: 15550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,6.5 + parent: 2 + - uid: 15551 + components: + - type: Transform + pos: 33.5,52.5 + parent: 2 + - uid: 15552 + components: + - type: Transform + pos: 36.5,53.5 + parent: 2 + - uid: 15553 + components: + - type: Transform + pos: 36.5,56.5 + parent: 2 + - uid: 15554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,18.5 + parent: 2 + - uid: 15555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,22.5 + parent: 2 + - uid: 15556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,22.5 + parent: 2 + - uid: 15557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,22.5 + parent: 2 + - uid: 15558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,4.5 + parent: 2 + - uid: 15559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,2.5 + parent: 2 + - uid: 15560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,3.5 + parent: 2 + - uid: 15561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,0.5 + parent: 2 + - uid: 15562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,4.5 + parent: 2 + - uid: 15563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,0.5 + parent: 2 + - uid: 15564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,4.5 + parent: 2 + - uid: 15565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,1.5 + parent: 2 + - uid: 15566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,2.5 + parent: 2 + - uid: 15567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,2.5 + parent: 2 + - uid: 15568 + components: + - type: Transform + pos: -16.5,32.5 + parent: 2 + - uid: 15569 + components: + - type: Transform + pos: -21.5,32.5 + parent: 2 + - uid: 15570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,31.5 + parent: 2 + - uid: 15571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,29.5 + parent: 2 + - uid: 15572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,28.5 + parent: 2 + - uid: 15573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,36.5 + parent: 2 + - uid: 15574 + components: + - type: Transform + pos: -21.5,37.5 + parent: 2 + - uid: 15575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,36.5 + parent: 2 + - uid: 15576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,20.5 + parent: 2 + - uid: 15577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,21.5 + parent: 2 + - uid: 15578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,32.5 + parent: 2 + - uid: 15579 + components: + - type: Transform + pos: -13.5,26.5 + parent: 2 + - uid: 15580 + components: + - type: Transform + pos: -17.5,32.5 + parent: 2 + - uid: 15581 + components: + - type: Transform + pos: -21.5,30.5 + parent: 2 + - uid: 15582 + components: + - type: Transform + pos: -17.5,31.5 + parent: 2 + - uid: 15583 + components: + - type: Transform + pos: -17.5,30.5 + parent: 2 + - uid: 15584 + components: + - type: Transform + pos: -17.5,36.5 + parent: 2 + - uid: 15585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,42.5 + parent: 2 + - uid: 15586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,32.5 + parent: 2 + - uid: 15587 + components: + - type: Transform + pos: -17.5,38.5 + parent: 2 + - uid: 15588 + components: + - type: Transform + pos: -17.5,35.5 + parent: 2 + - uid: 15589 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 2 + - uid: 15590 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 2 + - uid: 15591 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - uid: 15592 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 15593 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 + - uid: 15594 + components: + - type: Transform + pos: -16.5,36.5 + parent: 2 + - uid: 15595 + components: + - type: Transform + pos: 36.5,54.5 + parent: 2 + - uid: 15596 + components: + - type: Transform + pos: 36.5,55.5 + parent: 2 + - uid: 15597 + components: + - type: Transform + pos: 34.5,52.5 + parent: 2 + - uid: 15598 + components: + - type: Transform + pos: 36.5,52.5 + parent: 2 + - uid: 15599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,20.5 + parent: 2 + - uid: 15600 + components: + - type: Transform + pos: 35.5,56.5 + parent: 2 + - uid: 15601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,22.5 + parent: 2 + - uid: 15602 + components: + - type: Transform + pos: 33.5,56.5 + parent: 2 + - uid: 15603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,22.5 + parent: 2 + - uid: 15604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,11.5 + parent: 2 + - uid: 15605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,12.5 + parent: 2 + - uid: 15606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,14.5 + parent: 2 + - uid: 15607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,18.5 + parent: 2 + - uid: 15608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,18.5 + parent: 2 + - uid: 15609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,14.5 + parent: 2 + - uid: 15610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,8.5 + parent: 2 + - uid: 15611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,7.5 + parent: 2 + - uid: 15612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,15.5 + parent: 2 + - uid: 15613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,16.5 + parent: 2 + - uid: 15614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,10.5 + parent: 2 + - uid: 15615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,10.5 + parent: 2 + - uid: 15616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,10.5 + parent: 2 + - uid: 15617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,3.5 + parent: 2 + - uid: 15618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,1.5 + parent: 2 + - uid: 15619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,1.5 + parent: 2 + - uid: 15620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,3.5 + parent: 2 + - uid: 15621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,17.5 + parent: 2 + - uid: 15622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,19.5 + parent: 2 + - uid: 15623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,18.5 + parent: 2 + - uid: 15624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,21.5 + parent: 2 + - uid: 15625 + components: + - type: Transform + pos: 55.5,-4.5 + parent: 2 + - uid: 15626 + components: + - type: Transform + pos: 54.5,-4.5 + parent: 2 + - uid: 15627 + components: + - type: Transform + pos: 54.5,-5.5 + parent: 2 + - uid: 15628 + components: + - type: Transform + pos: 53.5,-5.5 + parent: 2 + - uid: 15629 + components: + - type: Transform + pos: -21.5,36.5 + parent: 2 + - uid: 15630 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 15631 + components: + - type: Transform + pos: -15.5,32.5 + parent: 2 + - uid: 15632 + components: + - type: Transform + pos: -15.5,33.5 + parent: 2 + - uid: 15633 + components: + - type: Transform + pos: -15.5,35.5 + parent: 2 + - uid: 15634 + components: + - type: Transform + pos: -21.5,38.5 + parent: 2 + - uid: 15635 + components: + - type: Transform + pos: -15.5,36.5 + parent: 2 + - uid: 15636 + components: + - type: Transform + pos: -17.5,37.5 + parent: 2 + - uid: 15637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,22.5 + parent: 2 + - uid: 15638 + components: + - type: Transform + pos: -21.5,31.5 + parent: 2 + - uid: 15639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,31.5 + parent: 2 + - uid: 15640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,31.5 + parent: 2 + - uid: 15641 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 + - uid: 15642 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 2 + - uid: 15643 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 2 + - uid: 15644 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 2 + - uid: 15645 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 + - uid: 15646 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 2 + - uid: 15647 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 15648 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 2 + - uid: 15649 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 + - uid: 15650 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 2 + - uid: 15651 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 2 + - uid: 15652 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 15653 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - uid: 15654 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 + - uid: 15655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,23.5 + parent: 2 + - uid: 15656 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 15657 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 15658 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 15659 + components: + - type: Transform + pos: -7.5,2.5 + parent: 2 + - uid: 15660 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 15661 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 15662 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - uid: 15663 + components: + - type: Transform + pos: -14.5,11.5 + parent: 2 + - uid: 15664 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 15665 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 15666 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 15667 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 15668 + components: + - type: Transform + pos: -16.5,7.5 + parent: 2 + - uid: 15669 + components: + - type: Transform + pos: -16.5,9.5 + parent: 2 + - uid: 15670 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 15671 + components: + - type: Transform + pos: -15.5,10.5 + parent: 2 + - uid: 15672 + components: + - type: Transform + pos: -14.5,10.5 + parent: 2 + - uid: 15673 + components: + - type: Transform + pos: -19.5,9.5 + parent: 2 + - uid: 15674 + components: + - type: Transform + pos: -19.5,8.5 + parent: 2 + - uid: 15675 + components: + - type: Transform + pos: -19.5,6.5 + parent: 2 + - uid: 15676 + components: + - type: Transform + pos: -19.5,7.5 + parent: 2 + - uid: 15677 + components: + - type: Transform + pos: -19.5,4.5 + parent: 2 + - uid: 15678 + components: + - type: Transform + pos: -19.5,3.5 + parent: 2 + - uid: 15679 + components: + - type: Transform + pos: -19.5,5.5 + parent: 2 + - uid: 15680 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - uid: 15681 + components: + - type: Transform + pos: -17.5,3.5 + parent: 2 + - uid: 15682 + components: + - type: Transform + pos: -14.5,13.5 + parent: 2 + - uid: 15683 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 15684 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 15685 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 15686 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 15687 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - uid: 15688 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 15689 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 15690 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 15691 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 15692 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 15693 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 15694 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - uid: 15695 + components: + - type: Transform + pos: 10.5,9.5 + parent: 2 + - uid: 15696 + components: + - type: Transform + pos: 9.5,9.5 + parent: 2 + - uid: 15697 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 15698 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 + - uid: 15699 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 15700 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - uid: 15701 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - uid: 15702 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 15703 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - uid: 15704 + components: + - type: Transform + pos: 9.5,14.5 + parent: 2 + - uid: 15705 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 15706 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 + - uid: 15707 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 15708 + components: + - type: Transform + pos: -7.5,15.5 + parent: 2 + - uid: 15709 + components: + - type: Transform + pos: -7.5,14.5 + parent: 2 + - uid: 15710 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - uid: 15711 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 + - uid: 15712 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 15713 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 15714 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 15715 + components: + - type: Transform + pos: -2.5,17.5 + parent: 2 + - uid: 15716 + components: + - type: Transform + pos: -2.5,18.5 + parent: 2 + - uid: 15717 + components: + - type: Transform + pos: -1.5,18.5 + parent: 2 + - uid: 15718 + components: + - type: Transform + pos: -0.5,18.5 + parent: 2 + - uid: 15719 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - uid: 15720 + components: + - type: Transform + pos: 1.5,18.5 + parent: 2 + - uid: 15721 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 15722 + components: + - type: Transform + pos: -14.5,14.5 + parent: 2 + - uid: 15723 + components: + - type: Transform + pos: -14.5,15.5 + parent: 2 + - uid: 15724 + components: + - type: Transform + pos: -13.5,15.5 + parent: 2 + - uid: 15725 + components: + - type: Transform + pos: -11.5,15.5 + parent: 2 + - uid: 15726 + components: + - type: Transform + pos: -12.5,15.5 + parent: 2 + - uid: 15727 + components: + - type: Transform + pos: -10.5,15.5 + parent: 2 + - uid: 15728 + components: + - type: Transform + pos: -8.5,15.5 + parent: 2 + - uid: 15729 + components: + - type: Transform + pos: -9.5,15.5 + parent: 2 + - uid: 15730 + components: + - type: Transform + pos: 29.5,5.5 + parent: 2 + - uid: 15731 + components: + - type: Transform + pos: 29.5,6.5 + parent: 2 + - uid: 15732 + components: + - type: Transform + pos: 33.5,7.5 + parent: 2 + - uid: 15733 + components: + - type: Transform + pos: 33.5,6.5 + parent: 2 + - uid: 15735 + components: + - type: Transform + pos: 30.5,6.5 + parent: 2 + - uid: 15736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,22.5 + parent: 2 + - uid: 15737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,22.5 + parent: 2 + - uid: 15738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,22.5 + parent: 2 + - uid: 15739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,22.5 + parent: 2 + - uid: 15740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,23.5 + parent: 2 + - uid: 15741 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 + - uid: 15742 + components: + - type: Transform + pos: -8.5,26.5 + parent: 2 + - uid: 15743 + components: + - type: Transform + pos: -2.5,22.5 + parent: 2 + - uid: 15744 + components: + - type: Transform + pos: -3.5,22.5 + parent: 2 + - uid: 15745 + components: + - type: Transform + pos: -2.5,23.5 + parent: 2 + - uid: 15746 + components: + - type: Transform + pos: -2.5,24.5 + parent: 2 + - uid: 15747 + components: + - type: Transform + pos: -1.5,24.5 + parent: 2 + - uid: 15748 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 15749 + components: + - type: Transform + pos: 6.5,25.5 + parent: 2 + - uid: 15750 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 15751 + components: + - type: Transform + pos: 7.5,25.5 + parent: 2 + - uid: 15752 + components: + - type: Transform + pos: 5.5,26.5 + parent: 2 + - uid: 15753 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - uid: 15754 + components: + - type: Transform + pos: 4.5,30.5 + parent: 2 + - uid: 15755 + components: + - type: Transform + pos: 5.5,30.5 + parent: 2 + - uid: 15756 + components: + - type: Transform + pos: 6.5,30.5 + parent: 2 + - uid: 15757 + components: + - type: Transform + pos: 7.5,30.5 + parent: 2 + - uid: 15758 + components: + - type: Transform + pos: 9.5,28.5 + parent: 2 + - uid: 15759 + components: + - type: Transform + pos: 15.5,23.5 + parent: 2 + - uid: 15760 + components: + - type: Transform + pos: 6.5,36.5 + parent: 2 + - uid: 15761 + components: + - type: Transform + pos: 5.5,36.5 + parent: 2 + - uid: 15762 + components: + - type: Transform + pos: 15.5,24.5 + parent: 2 + - uid: 15763 + components: + - type: Transform + pos: 3.5,36.5 + parent: 2 + - uid: 15764 + components: + - type: Transform + pos: 2.5,36.5 + parent: 2 + - uid: 15765 + components: + - type: Transform + pos: 15.5,26.5 + parent: 2 + - uid: 15766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,27.5 + parent: 2 + - uid: 15767 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 + - uid: 15768 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 15769 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 15770 + components: + - type: Transform + pos: 19.5,23.5 + parent: 2 + - uid: 15771 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 + - uid: 15772 + components: + - type: Transform + pos: 19.5,24.5 + parent: 2 + - uid: 15773 + components: + - type: Transform + pos: 19.5,26.5 + parent: 2 + - uid: 15774 + components: + - type: Transform + pos: 19.5,27.5 + parent: 2 + - uid: 15775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,22.5 + parent: 2 + - uid: 15776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,22.5 + parent: 2 + - uid: 15777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,22.5 + parent: 2 + - uid: 15778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,23.5 + parent: 2 + - uid: 15779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,22.5 + parent: 2 + - uid: 15780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,26.5 + parent: 2 + - uid: 15781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,27.5 + parent: 2 + - uid: 15782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,28.5 + parent: 2 + - uid: 15783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,29.5 + parent: 2 + - uid: 15784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,27.5 + parent: 2 + - uid: 15785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,28.5 + parent: 2 + - uid: 15786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,29.5 + parent: 2 + - uid: 15787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,29.5 + parent: 2 + - uid: 15788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,22.5 + parent: 2 + - uid: 15789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,22.5 + parent: 2 + - uid: 15790 + components: + - type: Transform + pos: 15.5,46.5 + parent: 2 + - uid: 15791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,23.5 + parent: 2 + - uid: 15792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,23.5 + parent: 2 + - uid: 15793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,24.5 + parent: 2 + - uid: 15794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,25.5 + parent: 2 + - uid: 15795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,26.5 + parent: 2 + - uid: 15796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,30.5 + parent: 2 + - uid: 15797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,30.5 + parent: 2 + - uid: 15798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,30.5 + parent: 2 + - uid: 15799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,30.5 + parent: 2 + - uid: 15800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,30.5 + parent: 2 + - uid: 15801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,30.5 + parent: 2 + - uid: 15802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,30.5 + parent: 2 + - uid: 15803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,37.5 + parent: 2 + - uid: 15804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,37.5 + parent: 2 + - uid: 15805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,37.5 + parent: 2 + - uid: 15806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,35.5 + parent: 2 + - uid: 15807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,37.5 + parent: 2 + - uid: 15808 + components: + - type: Transform + pos: -6.5,25.5 + parent: 2 + - uid: 15809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,36.5 + parent: 2 + - uid: 15810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,36.5 + parent: 2 + - uid: 15811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,36.5 + parent: 2 + - uid: 15812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,39.5 + parent: 2 + - uid: 15813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,40.5 + parent: 2 + - uid: 15814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,41.5 + parent: 2 + - uid: 15815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,41.5 + parent: 2 + - uid: 15816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,41.5 + parent: 2 + - uid: 15817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,38.5 + parent: 2 + - uid: 15818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,36.5 + parent: 2 + - uid: 15819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,36.5 + parent: 2 + - uid: 15820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,37.5 + parent: 2 + - uid: 15821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,40.5 + parent: 2 + - uid: 15822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,40.5 + parent: 2 + - uid: 15823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,40.5 + parent: 2 + - uid: 15824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,40.5 + parent: 2 + - uid: 15825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,41.5 + parent: 2 + - uid: 15826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,37.5 + parent: 2 + - uid: 15827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,36.5 + parent: 2 + - uid: 15828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,36.5 + parent: 2 + - uid: 15829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,42.5 + parent: 2 + - uid: 15830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,42.5 + parent: 2 + - uid: 15831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,42.5 + parent: 2 + - uid: 15832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,41.5 + parent: 2 + - uid: 15833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,40.5 + parent: 2 + - uid: 15834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,39.5 + parent: 2 + - uid: 15835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,38.5 + parent: 2 + - uid: 15836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,42.5 + parent: 2 + - uid: 15837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,43.5 + parent: 2 + - uid: 15838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,44.5 + parent: 2 + - uid: 15839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,45.5 + parent: 2 + - uid: 15840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,46.5 + parent: 2 + - uid: 15841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,46.5 + parent: 2 + - uid: 15842 + components: + - type: Transform + pos: 14.5,43.5 + parent: 2 + - uid: 15843 + components: + - type: Transform + pos: 14.5,45.5 + parent: 2 + - uid: 15844 + components: + - type: Transform + pos: 14.5,46.5 + parent: 2 + - uid: 15845 + components: + - type: Transform + pos: 16.5,46.5 + parent: 2 + - uid: 15846 + components: + - type: Transform + pos: 17.5,46.5 + parent: 2 + - uid: 15847 + components: + - type: Transform + pos: 18.5,46.5 + parent: 2 + - uid: 15848 + components: + - type: Transform + pos: 19.5,46.5 + parent: 2 + - uid: 15849 + components: + - type: Transform + pos: 19.5,45.5 + parent: 2 + - uid: 15850 + components: + - type: Transform + pos: 19.5,44.5 + parent: 2 + - uid: 15851 + components: + - type: Transform + pos: 19.5,43.5 + parent: 2 + - uid: 15852 + components: + - type: Transform + pos: 19.5,42.5 + parent: 2 + - uid: 15853 + components: + - type: Transform + pos: 7.5,42.5 + parent: 2 + - uid: 15854 + components: + - type: Transform + pos: 6.5,42.5 + parent: 2 + - uid: 15855 + components: + - type: Transform + pos: 4.5,42.5 + parent: 2 + - uid: 15856 + components: + - type: Transform + pos: 3.5,42.5 + parent: 2 + - uid: 15857 + components: + - type: Transform + pos: 2.5,42.5 + parent: 2 + - uid: 15858 + components: + - type: Transform + pos: 2.5,41.5 + parent: 2 + - uid: 15859 + components: + - type: Transform + pos: 2.5,39.5 + parent: 2 + - uid: 15860 + components: + - type: Transform + pos: 2.5,37.5 + parent: 2 + - uid: 15861 + components: + - type: Transform + pos: 2.5,43.5 + parent: 2 + - uid: 15862 + components: + - type: Transform + pos: 2.5,44.5 + parent: 2 + - uid: 15863 + components: + - type: Transform + pos: 3.5,44.5 + parent: 2 + - uid: 15864 + components: + - type: Transform + pos: 3.5,45.5 + parent: 2 + - uid: 15865 + components: + - type: Transform + pos: 3.5,46.5 + parent: 2 + - uid: 15866 + components: + - type: Transform + pos: 4.5,46.5 + parent: 2 + - uid: 15867 + components: + - type: Transform + pos: 5.5,46.5 + parent: 2 + - uid: 15868 + components: + - type: Transform + pos: 8.5,46.5 + parent: 2 + - uid: 15869 + components: + - type: Transform + pos: 20.5,46.5 + parent: 2 + - uid: 15870 + components: + - type: Transform + pos: 20.5,42.5 + parent: 2 + - uid: 15871 + components: + - type: Transform + pos: 21.5,42.5 + parent: 2 + - uid: 15872 + components: + - type: Transform + pos: 22.5,42.5 + parent: 2 + - uid: 15873 + components: + - type: Transform + pos: 22.5,45.5 + parent: 2 + - uid: 15874 + components: + - type: Transform + pos: 22.5,43.5 + parent: 2 + - uid: 15875 + components: + - type: Transform + pos: 22.5,46.5 + parent: 2 + - uid: 15876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,42.5 + parent: 2 + - uid: 15877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,41.5 + parent: 2 + - uid: 15878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,40.5 + parent: 2 + - uid: 15879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,39.5 + parent: 2 + - uid: 15880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,38.5 + parent: 2 + - uid: 15881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,37.5 + parent: 2 + - uid: 15882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,46.5 + parent: 2 + - uid: 15883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,46.5 + parent: 2 + - uid: 15884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,46.5 + parent: 2 + - uid: 15885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,45.5 + parent: 2 + - uid: 15886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,42.5 + parent: 2 + - uid: 15887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,43.5 + parent: 2 + - uid: 15888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,46.5 + parent: 2 + - uid: 15889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,46.5 + parent: 2 + - uid: 15890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,46.5 + parent: 2 + - uid: 15891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,46.5 + parent: 2 + - uid: 15892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,45.5 + parent: 2 + - uid: 15893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,45.5 + parent: 2 + - uid: 15894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,38.5 + parent: 2 + - uid: 15895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,39.5 + parent: 2 + - uid: 15896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,40.5 + parent: 2 + - uid: 15897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,41.5 + parent: 2 + - uid: 15898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,42.5 + parent: 2 + - uid: 15899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,43.5 + parent: 2 + - uid: 15900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,44.5 + parent: 2 + - uid: 15901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,37.5 + parent: 2 + - uid: 15903 + components: + - type: Transform + pos: -12.5,26.5 + parent: 2 + - uid: 15904 + components: + - type: Transform + pos: -6.5,26.5 + parent: 2 + - uid: 15905 + components: + - type: Transform + pos: -6.5,18.5 + parent: 2 + - uid: 15906 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - uid: 15907 + components: + - type: Transform + pos: -11.5,22.5 + parent: 2 + - uid: 15908 + components: + - type: Transform + pos: -12.5,21.5 + parent: 2 + - uid: 15909 + components: + - type: Transform + pos: -13.5,21.5 + parent: 2 + - uid: 15910 + components: + - type: Transform + pos: -11.5,25.5 + parent: 2 + - uid: 15911 + components: + - type: Transform + pos: -10.5,26.5 + parent: 2 + - uid: 15912 + components: + - type: Transform + pos: -6.5,23.5 + parent: 2 + - uid: 15913 + components: + - type: Transform + pos: -11.5,26.5 + parent: 2 + - uid: 15914 + components: + - type: Transform + pos: -7.5,26.5 + parent: 2 + - uid: 15915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,37.5 + parent: 2 + - uid: 15916 + components: + - type: Transform + pos: -16.5,21.5 + parent: 2 + - uid: 15917 + components: + - type: Transform + pos: -16.5,22.5 + parent: 2 + - uid: 15918 + components: + - type: Transform + pos: -16.5,23.5 + parent: 2 + - uid: 15919 + components: + - type: Transform + pos: -16.5,24.5 + parent: 2 + - uid: 15920 + components: + - type: Transform + pos: -16.5,25.5 + parent: 2 + - uid: 15921 + components: + - type: Transform + pos: -16.5,26.5 + parent: 2 + - uid: 15922 + components: + - type: Transform + pos: -13.5,17.5 + parent: 2 + - uid: 15923 + components: + - type: Transform + pos: -12.5,17.5 + parent: 2 + - uid: 15924 + components: + - type: Transform + pos: -11.5,17.5 + parent: 2 + - uid: 15925 + components: + - type: Transform + pos: -10.5,17.5 + parent: 2 + - uid: 15926 + components: + - type: Transform + pos: -9.5,18.5 + parent: 2 + - uid: 15927 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 + - uid: 15928 + components: + - type: Transform + pos: -8.5,18.5 + parent: 2 + - uid: 15929 + components: + - type: Transform + pos: -7.5,18.5 + parent: 2 + - uid: 15930 + components: + - type: Transform + pos: -17.5,24.5 + parent: 2 + - uid: 15931 + components: + - type: Transform + pos: -18.5,24.5 + parent: 2 + - uid: 15932 + components: + - type: Transform + pos: -19.5,24.5 + parent: 2 + - uid: 15933 + components: + - type: Transform + pos: -20.5,24.5 + parent: 2 + - uid: 15934 + components: + - type: Transform + pos: -21.5,24.5 + parent: 2 + - uid: 15935 + components: + - type: Transform + pos: -22.5,24.5 + parent: 2 + - uid: 15936 + components: + - type: Transform + pos: -21.5,23.5 + parent: 2 + - uid: 15937 + components: + - type: Transform + pos: -21.5,22.5 + parent: 2 + - uid: 15938 + components: + - type: Transform + pos: -21.5,21.5 + parent: 2 + - uid: 15939 + components: + - type: Transform + pos: -21.5,20.5 + parent: 2 + - uid: 15940 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 + - uid: 15941 + components: + - type: Transform + pos: -23.5,20.5 + parent: 2 + - uid: 15942 + components: + - type: Transform + pos: -23.5,21.5 + parent: 2 + - uid: 15943 + components: + - type: Transform + pos: -25.5,23.5 + parent: 2 + - uid: 15944 + components: + - type: Transform + pos: -25.5,24.5 + parent: 2 + - uid: 15945 + components: + - type: Transform + pos: -24.5,24.5 + parent: 2 + - uid: 15946 + components: + - type: Transform + pos: -25.5,25.5 + parent: 2 + - uid: 15947 + components: + - type: Transform + pos: -25.5,26.5 + parent: 2 + - uid: 15948 + components: + - type: Transform + pos: -29.5,22.5 + parent: 2 + - uid: 15949 + components: + - type: Transform + pos: -26.5,26.5 + parent: 2 + - uid: 15950 + components: + - type: Transform + pos: -29.5,23.5 + parent: 2 + - uid: 15951 + components: + - type: Transform + pos: -29.5,24.5 + parent: 2 + - uid: 15952 + components: + - type: Transform + pos: -29.5,25.5 + parent: 2 + - uid: 15953 + components: + - type: Transform + pos: -29.5,26.5 + parent: 2 + - uid: 15954 + components: + - type: Transform + pos: -28.5,26.5 + parent: 2 + - uid: 15955 + components: + - type: Transform + pos: -27.5,26.5 + parent: 2 + - uid: 15956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,28.5 + parent: 2 + - uid: 15957 + components: + - type: Transform + pos: -29.5,20.5 + parent: 2 + - uid: 15958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,22.5 + parent: 2 + - uid: 15959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,22.5 + parent: 2 + - uid: 15960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,23.5 + parent: 2 + - uid: 15961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,24.5 + parent: 2 + - uid: 15962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,24.5 + parent: 2 + - uid: 15963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,24.5 + parent: 2 + - uid: 15964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,24.5 + parent: 2 + - uid: 15965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,24.5 + parent: 2 + - uid: 15966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,24.5 + parent: 2 + - uid: 15967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,28.5 + parent: 2 + - uid: 15968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,28.5 + parent: 2 + - uid: 15969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,24.5 + parent: 2 + - uid: 15970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,28.5 + parent: 2 + - uid: 15971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,47.5 + parent: 2 + - uid: 15972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,6.5 + parent: 2 + - uid: 15973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,10.5 + parent: 2 + - uid: 15974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,14.5 + parent: 2 + - uid: 15975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,18.5 + parent: 2 + - uid: 15976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,6.5 + parent: 2 + - uid: 15977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,6.5 + parent: 2 + - uid: 15978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,6.5 + parent: 2 + - uid: 15979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,6.5 + parent: 2 + - uid: 15980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,6.5 + parent: 2 + - uid: 15981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,7.5 + parent: 2 + - uid: 15982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,8.5 + parent: 2 + - uid: 15983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,9.5 + parent: 2 + - uid: 15984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,9.5 + parent: 2 + - uid: 15985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,9.5 + parent: 2 + - uid: 15986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,10.5 + parent: 2 + - uid: 15987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,10.5 + parent: 2 + - uid: 15988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,12.5 + parent: 2 + - uid: 15989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,13.5 + parent: 2 + - uid: 15990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,14.5 + parent: 2 + - uid: 15991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,15.5 + parent: 2 + - uid: 15992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,16.5 + parent: 2 + - uid: 15993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,16.5 + parent: 2 + - uid: 15994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,16.5 + parent: 2 + - uid: 15995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,16.5 + parent: 2 + - uid: 15996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,16.5 + parent: 2 + - uid: 15997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,16.5 + parent: 2 + - uid: 15998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,16.5 + parent: 2 + - uid: 15999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,17.5 + parent: 2 + - uid: 16000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,17.5 + parent: 2 + - uid: 16001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,17.5 + parent: 2 + - uid: 16002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,26.5 + parent: 2 + - uid: 16003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,27.5 + parent: 2 + - uid: 16004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,28.5 + parent: 2 + - uid: 16005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,28.5 + parent: 2 + - uid: 16006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,28.5 + parent: 2 + - uid: 16007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,28.5 + parent: 2 + - uid: 16008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,28.5 + parent: 2 + - uid: 16009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,32.5 + parent: 2 + - uid: 16010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,32.5 + parent: 2 + - uid: 16011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,32.5 + parent: 2 + - uid: 16012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,32.5 + parent: 2 + - uid: 16013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,33.5 + parent: 2 + - uid: 16014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,35.5 + parent: 2 + - uid: 16015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,36.5 + parent: 2 + - uid: 16016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,37.5 + parent: 2 + - uid: 16017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,37.5 + parent: 2 + - uid: 16018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,37.5 + parent: 2 + - uid: 16019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,37.5 + parent: 2 + - uid: 16020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,37.5 + parent: 2 + - uid: 16021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,37.5 + parent: 2 + - uid: 16022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,30.5 + parent: 2 + - uid: 16023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,30.5 + parent: 2 + - uid: 16024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,34.5 + parent: 2 + - uid: 16025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,38.5 + parent: 2 + - uid: 16026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,38.5 + parent: 2 + - uid: 16027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,47.5 + parent: 2 + - uid: 16028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,42.5 + parent: 2 + - uid: 16029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,42.5 + parent: 2 + - uid: 16030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,42.5 + parent: 2 + - uid: 16031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,43.5 + parent: 2 + - uid: 16032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,44.5 + parent: 2 + - uid: 16033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,45.5 + parent: 2 + - uid: 16034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,46.5 + parent: 2 + - uid: 16035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,46.5 + parent: 2 + - uid: 16036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,46.5 + parent: 2 + - uid: 16037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,46.5 + parent: 2 + - uid: 16038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,46.5 + parent: 2 + - uid: 16039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,46.5 + parent: 2 + - uid: 16040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,46.5 + parent: 2 + - uid: 16041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,42.5 + parent: 2 + - uid: 16042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,43.5 + parent: 2 + - uid: 16043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,44.5 + parent: 2 + - uid: 16044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,45.5 + parent: 2 + - uid: 16045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,46.5 + parent: 2 + - uid: 16046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,46.5 + parent: 2 + - uid: 16047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,46.5 + parent: 2 + - uid: 16048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,46.5 + parent: 2 + - uid: 16049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,46.5 + parent: 2 + - uid: 16050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,42.5 + parent: 2 + - uid: 16051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,42.5 + parent: 2 + - uid: 16052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,42.5 + parent: 2 + - uid: 16053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,43.5 + parent: 2 + - uid: 16054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,45.5 + parent: 2 + - uid: 16055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,41.5 + parent: 2 + - uid: 16056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,38.5 + parent: 2 + - uid: 16057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,39.5 + parent: 2 + - uid: 16058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,40.5 + parent: 2 + - uid: 16059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,41.5 + parent: 2 + - uid: 16060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,41.5 + parent: 2 + - uid: 16061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,41.5 + parent: 2 + - uid: 16062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,41.5 + parent: 2 + - uid: 16063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,41.5 + parent: 2 + - uid: 16064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,42.5 + parent: 2 + - uid: 16065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,44.5 + parent: 2 + - uid: 16066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,44.5 + parent: 2 + - uid: 16067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,45.5 + parent: 2 + - uid: 16068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,46.5 + parent: 2 + - uid: 16069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,46.5 + parent: 2 + - uid: 16070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,46.5 + parent: 2 + - uid: 16071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,46.5 + parent: 2 + - uid: 16072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,49.5 + parent: 2 + - uid: 16073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,47.5 + parent: 2 + - uid: 16074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,47.5 + parent: 2 + - uid: 16075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,47.5 + parent: 2 + - uid: 16076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,46.5 + parent: 2 + - uid: 16077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,45.5 + parent: 2 + - uid: 16078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,44.5 + parent: 2 + - uid: 16079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,43.5 + parent: 2 + - uid: 16080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,42.5 + parent: 2 + - uid: 16081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,42.5 + parent: 2 + - uid: 16082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,42.5 + parent: 2 + - uid: 16083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,42.5 + parent: 2 + - uid: 16084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,42.5 + parent: 2 + - uid: 16085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,43.5 + parent: 2 + - uid: 16086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,43.5 + parent: 2 + - uid: 16087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,45.5 + parent: 2 + - uid: 16088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,45.5 + parent: 2 + - uid: 16089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,45.5 + parent: 2 + - uid: 16090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,47.5 + parent: 2 + - uid: 16091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,47.5 + parent: 2 + - uid: 16092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,47.5 + parent: 2 + - uid: 16093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,47.5 + parent: 2 + - uid: 16094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,29.5 + parent: 2 + - uid: 16095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,31.5 + parent: 2 + - uid: 16096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,31.5 + parent: 2 + - uid: 16097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,30.5 + parent: 2 + - uid: 16098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,29.5 + parent: 2 + - uid: 16099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,31.5 + parent: 2 + - uid: 16100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,30.5 + parent: 2 + - uid: 16101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,29.5 + parent: 2 + - uid: 16102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,29.5 + parent: 2 + - uid: 16103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,29.5 + parent: 2 + - uid: 16104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,30.5 + parent: 2 + - uid: 16105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,31.5 + parent: 2 + - uid: 16106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,32.5 + parent: 2 + - uid: 16107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,35.5 + parent: 2 + - uid: 16108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,34.5 + parent: 2 + - uid: 16109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,36.5 + parent: 2 + - uid: 16110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,40.5 + parent: 2 + - uid: 16111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,41.5 + parent: 2 + - uid: 16112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,42.5 + parent: 2 + - uid: 16113 + components: + - type: Transform + pos: -21.5,50.5 + parent: 2 + - uid: 16114 + components: + - type: Transform + pos: -20.5,50.5 + parent: 2 + - uid: 16115 + components: + - type: Transform + pos: -16.5,52.5 + parent: 2 + - uid: 16116 + components: + - type: Transform + pos: -16.5,51.5 + parent: 2 + - uid: 16117 + components: + - type: Transform + pos: -16.5,53.5 + parent: 2 + - uid: 16118 + components: + - type: Transform + pos: -16.5,50.5 + parent: 2 + - uid: 16119 + components: + - type: Transform + pos: -17.5,50.5 + parent: 2 + - uid: 16120 + components: + - type: Transform + pos: -21.5,51.5 + parent: 2 + - uid: 16121 + components: + - type: Transform + pos: -21.5,52.5 + parent: 2 + - uid: 16122 + components: + - type: Transform + pos: -21.5,53.5 + parent: 2 + - uid: 16123 + components: + - type: Transform + pos: -21.5,54.5 + parent: 2 + - uid: 16124 + components: + - type: Transform + pos: -21.5,55.5 + parent: 2 + - uid: 16125 + components: + - type: Transform + pos: -21.5,56.5 + parent: 2 + - uid: 16126 + components: + - type: Transform + pos: -16.5,56.5 + parent: 2 + - uid: 16127 + components: + - type: Transform + pos: -17.5,56.5 + parent: 2 + - uid: 16128 + components: + - type: Transform + pos: -19.5,56.5 + parent: 2 + - uid: 16129 + components: + - type: Transform + pos: -13.5,53.5 + parent: 2 + - uid: 16130 + components: + - type: Transform + pos: -10.5,50.5 + parent: 2 + - uid: 16131 + components: + - type: Transform + pos: -10.5,51.5 + parent: 2 + - uid: 16132 + components: + - type: Transform + pos: -10.5,52.5 + parent: 2 + - uid: 16133 + components: + - type: Transform + pos: -10.5,53.5 + parent: 2 + - uid: 16134 + components: + - type: Transform + pos: -6.5,50.5 + parent: 2 + - uid: 16135 + components: + - type: Transform + pos: -6.5,51.5 + parent: 2 + - uid: 16136 + components: + - type: Transform + pos: -6.5,53.5 + parent: 2 + - uid: 16137 + components: + - type: Transform + pos: -6.5,52.5 + parent: 2 + - uid: 16138 + components: + - type: Transform + pos: -2.5,50.5 + parent: 2 + - uid: 16139 + components: + - type: Transform + pos: -2.5,51.5 + parent: 2 + - uid: 16140 + components: + - type: Transform + pos: -2.5,52.5 + parent: 2 + - uid: 16141 + components: + - type: Transform + pos: -2.5,53.5 + parent: 2 + - uid: 16142 + components: + - type: Transform + pos: 1.5,50.5 + parent: 2 + - uid: 16143 + components: + - type: Transform + pos: 1.5,51.5 + parent: 2 + - uid: 16144 + components: + - type: Transform + pos: 1.5,53.5 + parent: 2 + - uid: 16145 + components: + - type: Transform + pos: 1.5,52.5 + parent: 2 + - uid: 16146 + components: + - type: Transform + pos: -25.5,50.5 + parent: 2 + - uid: 16147 + components: + - type: Transform + pos: -25.5,51.5 + parent: 2 + - uid: 16148 + components: + - type: Transform + pos: -25.5,52.5 + parent: 2 + - uid: 16149 + components: + - type: Transform + pos: -25.5,53.5 + parent: 2 + - uid: 16150 + components: + - type: Transform + pos: -25.5,54.5 + parent: 2 + - uid: 16151 + components: + - type: Transform + pos: -25.5,55.5 + parent: 2 + - uid: 16152 + components: + - type: Transform + pos: -25.5,56.5 + parent: 2 + - uid: 16153 + components: + - type: Transform + pos: -25.5,49.5 + parent: 2 + - uid: 16154 + components: + - type: Transform + pos: -26.5,49.5 + parent: 2 + - uid: 16155 + components: + - type: Transform + pos: -28.5,49.5 + parent: 2 + - uid: 16156 + components: + - type: Transform + pos: -27.5,49.5 + parent: 2 + - uid: 16157 + components: + - type: Transform + pos: -29.5,49.5 + parent: 2 + - uid: 16158 + components: + - type: Transform + pos: -29.5,50.5 + parent: 2 + - uid: 16159 + components: + - type: Transform + pos: -30.5,50.5 + parent: 2 + - uid: 16160 + components: + - type: Transform + pos: -31.5,50.5 + parent: 2 + - uid: 16161 + components: + - type: Transform + pos: -32.5,50.5 + parent: 2 + - uid: 16162 + components: + - type: Transform + pos: -33.5,50.5 + parent: 2 + - uid: 16163 + components: + - type: Transform + pos: -33.5,51.5 + parent: 2 + - uid: 16164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,53.5 + parent: 2 + - uid: 16165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,54.5 + parent: 2 + - uid: 16166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,54.5 + parent: 2 + - uid: 16167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,54.5 + parent: 2 + - uid: 16168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,54.5 + parent: 2 + - uid: 16169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,55.5 + parent: 2 + - uid: 16170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,56.5 + parent: 2 + - uid: 16171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,56.5 + parent: 2 + - uid: 16172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,56.5 + parent: 2 + - uid: 16173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,56.5 + parent: 2 + - uid: 16174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,54.5 + parent: 2 + - uid: 16175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,55.5 + parent: 2 + - uid: 16176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,55.5 + parent: 2 + - uid: 16177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,56.5 + parent: 2 + - uid: 16178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,54.5 + parent: 2 + - uid: 16179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,53.5 + parent: 2 + - uid: 16180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,53.5 + parent: 2 + - uid: 16181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,54.5 + parent: 2 + - uid: 16182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,55.5 + parent: 2 + - uid: 16183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,55.5 + parent: 2 + - uid: 16184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,55.5 + parent: 2 + - uid: 16185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,56.5 + parent: 2 + - uid: 16186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,57.5 + parent: 2 + - uid: 16187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,58.5 + parent: 2 + - uid: 16188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,59.5 + parent: 2 + - uid: 16189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,58.5 + parent: 2 + - uid: 16190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,60.5 + parent: 2 + - uid: 16191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,61.5 + parent: 2 + - uid: 16192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,59.5 + parent: 2 + - uid: 16193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,59.5 + parent: 2 + - uid: 16194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,59.5 + parent: 2 + - uid: 16195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,59.5 + parent: 2 + - uid: 16196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,59.5 + parent: 2 + - uid: 16197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,59.5 + parent: 2 + - uid: 16198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,59.5 + parent: 2 + - uid: 16199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,60.5 + parent: 2 + - uid: 16200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,62.5 + parent: 2 + - uid: 16201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,61.5 + parent: 2 + - uid: 16202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,62.5 + parent: 2 + - uid: 16203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,60.5 + parent: 2 + - uid: 16204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,61.5 + parent: 2 + - uid: 16205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,62.5 + parent: 2 + - uid: 16206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,62.5 + parent: 2 + - uid: 16207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,60.5 + parent: 2 + - uid: 16208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,61.5 + parent: 2 + - uid: 16209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,62.5 + parent: 2 + - uid: 16210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,63.5 + parent: 2 + - uid: 16211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,59.5 + parent: 2 + - uid: 16212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,59.5 + parent: 2 + - uid: 16213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,60.5 + parent: 2 + - uid: 16214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,61.5 + parent: 2 + - uid: 16215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,62.5 + parent: 2 + - uid: 16216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,62.5 + parent: 2 + - uid: 16217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,62.5 + parent: 2 + - uid: 16218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,63.5 + parent: 2 + - uid: 16219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,64.5 + parent: 2 + - uid: 16220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,65.5 + parent: 2 + - uid: 16221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,66.5 + parent: 2 + - uid: 16222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,67.5 + parent: 2 + - uid: 16223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,68.5 + parent: 2 + - uid: 16224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,69.5 + parent: 2 + - uid: 16227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,66.5 + parent: 2 + - uid: 16228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,65.5 + parent: 2 + - uid: 16229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,64.5 + parent: 2 + - uid: 16230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,72.5 + parent: 2 + - uid: 16231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,71.5 + parent: 2 + - uid: 16232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,70.5 + parent: 2 + - uid: 16233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,71.5 + parent: 2 + - uid: 16234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,72.5 + parent: 2 + - uid: 16235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,72.5 + parent: 2 + - uid: 16236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,71.5 + parent: 2 + - uid: 16237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,71.5 + parent: 2 + - uid: 16238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,71.5 + parent: 2 + - uid: 16239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,71.5 + parent: 2 + - uid: 16240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,71.5 + parent: 2 + - uid: 16241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,71.5 + parent: 2 + - uid: 16242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,71.5 + parent: 2 + - uid: 16243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,71.5 + parent: 2 + - uid: 16244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,70.5 + parent: 2 + - uid: 16245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,69.5 + parent: 2 + - uid: 16246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,70.5 + parent: 2 + - uid: 16247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,69.5 + parent: 2 + - uid: 16248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,69.5 + parent: 2 + - uid: 16249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,69.5 + parent: 2 + - uid: 16250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,70.5 + parent: 2 + - uid: 16251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,70.5 + parent: 2 + - uid: 16252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,69.5 + parent: 2 + - uid: 16253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,69.5 + parent: 2 + - uid: 16254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,69.5 + parent: 2 + - uid: 16255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,71.5 + parent: 2 + - uid: 16256 + components: + - type: Transform + pos: 11.5,79.5 + parent: 2 + - uid: 16257 + components: + - type: Transform + pos: 11.5,76.5 + parent: 2 + - uid: 16258 + components: + - type: Transform + pos: 11.5,78.5 + parent: 2 + - uid: 16259 + components: + - type: Transform + pos: 15.5,79.5 + parent: 2 + - uid: 16260 + components: + - type: Transform + pos: 12.5,76.5 + parent: 2 + - uid: 16261 + components: + - type: Transform + pos: 13.5,77.5 + parent: 2 + - uid: 16262 + components: + - type: Transform + pos: 14.5,79.5 + parent: 2 + - uid: 16263 + components: + - type: Transform + pos: 17.5,79.5 + parent: 2 + - uid: 16264 + components: + - type: Transform + pos: 11.5,77.5 + parent: 2 + - uid: 16265 + components: + - type: Transform + pos: 13.5,76.5 + parent: 2 + - uid: 16266 + components: + - type: Transform + pos: 13.5,79.5 + parent: 2 + - uid: 16267 + components: + - type: Transform + pos: 16.5,79.5 + parent: 2 + - uid: 16268 + components: + - type: Transform + pos: 13.5,78.5 + parent: 2 + - uid: 16269 + components: + - type: Transform + pos: 0.5,79.5 + parent: 2 + - uid: 16270 + components: + - type: Transform + pos: 6.5,79.5 + parent: 2 + - uid: 16271 + components: + - type: Transform + pos: 6.5,80.5 + parent: 2 + - uid: 16272 + components: + - type: Transform + pos: 10.5,80.5 + parent: 2 + - uid: 16273 + components: + - type: Transform + pos: 10.5,79.5 + parent: 2 + - uid: 16274 + components: + - type: Transform + pos: -1.5,76.5 + parent: 2 + - uid: 16275 + components: + - type: Transform + pos: -2.5,76.5 + parent: 2 + - uid: 16276 + components: + - type: Transform + pos: -2.5,72.5 + parent: 2 + - uid: 16277 + components: + - type: Transform + pos: 5.5,79.5 + parent: 2 + - uid: 16278 + components: + - type: Transform + pos: -0.5,76.5 + parent: 2 + - uid: 16279 + components: + - type: Transform + pos: -1.5,78.5 + parent: 2 + - uid: 16280 + components: + - type: Transform + pos: -0.5,78.5 + parent: 2 + - uid: 16281 + components: + - type: Transform + pos: -0.5,79.5 + parent: 2 + - uid: 16282 + components: + - type: Transform + pos: -2.5,78.5 + parent: 2 + - uid: 16283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,70.5 + parent: 2 + - uid: 16284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,69.5 + parent: 2 + - uid: 16285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,68.5 + parent: 2 + - uid: 16286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,67.5 + parent: 2 + - uid: 16287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,66.5 + parent: 2 + - uid: 16288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,65.5 + parent: 2 + - uid: 16289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,65.5 + parent: 2 + - uid: 16290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,65.5 + parent: 2 + - uid: 16291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,59.5 + parent: 2 + - uid: 16292 + components: + - type: Transform + pos: -15.5,63.5 + parent: 2 + - uid: 16293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,64.5 + parent: 2 + - uid: 16294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,63.5 + parent: 2 + - uid: 16295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,62.5 + parent: 2 + - uid: 16296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,62.5 + parent: 2 + - uid: 16297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,61.5 + parent: 2 + - uid: 16298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,60.5 + parent: 2 + - uid: 16299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,59.5 + parent: 2 + - uid: 16300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,59.5 + parent: 2 + - uid: 16301 + components: + - type: Transform + pos: -15.5,65.5 + parent: 2 + - uid: 16302 + components: + - type: Transform + pos: -15.5,64.5 + parent: 2 + - uid: 16303 + components: + - type: Transform + pos: -13.5,63.5 + parent: 2 + - uid: 16304 + components: + - type: Transform + pos: -12.5,65.5 + parent: 2 + - uid: 16305 + components: + - type: Transform + pos: -13.5,66.5 + parent: 2 + - uid: 16306 + components: + - type: Transform + pos: -13.5,65.5 + parent: 2 + - uid: 16308 + components: + - type: Transform + pos: -13.5,67.5 + parent: 2 + - uid: 16309 + components: + - type: Transform + pos: -13.5,62.5 + parent: 2 + - uid: 16310 + components: + - type: Transform + pos: -13.5,59.5 + parent: 2 + - uid: 16311 + components: + - type: Transform + pos: -19.5,59.5 + parent: 2 + - uid: 16312 + components: + - type: Transform + pos: -10.5,65.5 + parent: 2 + - uid: 16313 + components: + - type: Transform + pos: -9.5,65.5 + parent: 2 + - uid: 16314 + components: + - type: Transform + pos: -8.5,65.5 + parent: 2 + - uid: 16315 + components: + - type: Transform + pos: -8.5,66.5 + parent: 2 + - uid: 16316 + components: + - type: Transform + pos: -8.5,68.5 + parent: 2 + - uid: 16317 + components: + - type: Transform + pos: -8.5,64.5 + parent: 2 + - uid: 16318 + components: + - type: Transform + pos: -8.5,63.5 + parent: 2 + - uid: 16319 + components: + - type: Transform + pos: -9.5,63.5 + parent: 2 + - uid: 16320 + components: + - type: Transform + pos: -10.5,63.5 + parent: 2 + - uid: 16321 + components: + - type: Transform + pos: -8.5,62.5 + parent: 2 + - uid: 16322 + components: + - type: Transform + pos: -8.5,61.5 + parent: 2 + - uid: 16323 + components: + - type: Transform + pos: -10.5,61.5 + parent: 2 + - uid: 16324 + components: + - type: Transform + pos: -9.5,61.5 + parent: 2 + - uid: 16325 + components: + - type: Transform + pos: -10.5,60.5 + parent: 2 + - uid: 16326 + components: + - type: Transform + pos: -10.5,58.5 + parent: 2 + - uid: 16327 + components: + - type: Transform + pos: -10.5,57.5 + parent: 2 + - uid: 16328 + components: + - type: Transform + pos: -9.5,57.5 + parent: 2 + - uid: 16329 + components: + - type: Transform + pos: -8.5,57.5 + parent: 2 + - uid: 16330 + components: + - type: Transform + pos: -7.5,57.5 + parent: 2 + - uid: 16331 + components: + - type: Transform + pos: -6.5,57.5 + parent: 2 + - uid: 16332 + components: + - type: Transform + pos: -6.5,58.5 + parent: 2 + - uid: 16333 + components: + - type: Transform + pos: -6.5,59.5 + parent: 2 + - uid: 16334 + components: + - type: Transform + pos: -6.5,60.5 + parent: 2 + - uid: 16335 + components: + - type: Transform + pos: -6.5,61.5 + parent: 2 + - uid: 16336 + components: + - type: Transform + pos: -7.5,61.5 + parent: 2 + - uid: 16337 + components: + - type: Transform + pos: -5.5,61.5 + parent: 2 + - uid: 16338 + components: + - type: Transform + pos: -4.5,61.5 + parent: 2 + - uid: 16339 + components: + - type: Transform + pos: -3.5,61.5 + parent: 2 + - uid: 16340 + components: + - type: Transform + pos: -2.5,61.5 + parent: 2 + - uid: 16341 + components: + - type: Transform + pos: -2.5,60.5 + parent: 2 + - uid: 16342 + components: + - type: Transform + pos: -2.5,59.5 + parent: 2 + - uid: 16343 + components: + - type: Transform + pos: -2.5,58.5 + parent: 2 + - uid: 16344 + components: + - type: Transform + pos: -2.5,57.5 + parent: 2 + - uid: 16345 + components: + - type: Transform + pos: -7.5,65.5 + parent: 2 + - uid: 16346 + components: + - type: Transform + pos: -4.5,65.5 + parent: 2 + - uid: 16347 + components: + - type: Transform + pos: -4.5,66.5 + parent: 2 + - uid: 16348 + components: + - type: Transform + pos: -4.5,68.5 + parent: 2 + - uid: 16349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,65.5 + parent: 2 + - uid: 16350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,65.5 + parent: 2 + - uid: 16351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,66.5 + parent: 2 + - uid: 16352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,67.5 + parent: 2 + - uid: 16353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,68.5 + parent: 2 + - uid: 16354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,69.5 + parent: 2 + - uid: 16355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,61.5 + parent: 2 + - uid: 16356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,61.5 + parent: 2 + - uid: 16357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,61.5 + parent: 2 + - uid: 16358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,61.5 + parent: 2 + - uid: 16359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,61.5 + parent: 2 + - uid: 16360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,60.5 + parent: 2 + - uid: 16361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,56.5 + parent: 2 + - uid: 16362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,56.5 + parent: 2 + - uid: 16363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,56.5 + parent: 2 + - uid: 16364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,56.5 + parent: 2 + - uid: 16365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,57.5 + parent: 2 + - uid: 16366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,55.5 + parent: 2 + - uid: 16367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,54.5 + parent: 2 + - uid: 16368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,54.5 + parent: 2 + - uid: 16369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,55.5 + parent: 2 + - uid: 16370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,54.5 + parent: 2 + - uid: 16371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,75.5 + parent: 2 + - uid: 16372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,75.5 + parent: 2 + - uid: 16373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,74.5 + parent: 2 + - uid: 16374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,12.5 + parent: 2 + - uid: 16375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,8.5 + parent: 2 + - uid: 16376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,9.5 + parent: 2 + - uid: 16377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,10.5 + parent: 2 + - uid: 16378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,11.5 + parent: 2 + - uid: 16379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,12.5 + parent: 2 + - uid: 16380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,8.5 + parent: 2 + - uid: 16381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,12.5 + parent: 2 + - uid: 16382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,8.5 + parent: 2 + - uid: 16383 + components: + - type: Transform + pos: 30.5,12.5 + parent: 2 + - uid: 16384 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 + - uid: 16385 + components: + - type: Transform + pos: 31.5,13.5 + parent: 2 + - uid: 16386 + components: + - type: Transform + pos: 31.5,14.5 + parent: 2 + - uid: 16387 + components: + - type: Transform + pos: 31.5,16.5 + parent: 2 + - uid: 16388 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - uid: 16389 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - uid: 16390 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 + - uid: 16391 + components: + - type: Transform + pos: 33.5,17.5 + parent: 2 + - uid: 16392 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 16393 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 16394 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 16395 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 + - uid: 16396 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 16397 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 + - uid: 16398 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 16399 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 16400 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 + - uid: 16401 + components: + - type: Transform + pos: 14.5,0.5 + parent: 2 + - uid: 16402 + components: + - type: Transform + pos: 16.5,0.5 + parent: 2 + - uid: 16403 + components: + - type: Transform + pos: 17.5,0.5 + parent: 2 + - uid: 16404 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - uid: 16405 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - uid: 16406 + components: + - type: Transform + pos: 22.5,3.5 + parent: 2 + - uid: 16407 + components: + - type: Transform + pos: 22.5,4.5 + parent: 2 + - uid: 16408 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - uid: 16409 + components: + - type: Transform + pos: 21.5,1.5 + parent: 2 + - uid: 16410 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - uid: 16411 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 2 + - uid: 16412 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 2 + - uid: 16413 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - uid: 16414 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 2 + - uid: 16415 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 2 + - uid: 16416 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 + - uid: 16417 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 2 + - uid: 16418 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 16419 + components: + - type: Transform + pos: 22.5,1.5 + parent: 2 + - uid: 16420 + components: + - type: Transform + pos: 22.5,2.5 + parent: 2 + - uid: 16421 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 + - uid: 16422 + components: + - type: Transform + pos: 23.5,4.5 + parent: 2 + - uid: 16423 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 2 + - uid: 16424 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - uid: 16425 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 16426 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 2 + - uid: 16427 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 + - uid: 16428 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 16429 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 + - uid: 16430 + components: + - type: Transform + pos: 24.5,4.5 + parent: 2 + - uid: 16431 + components: + - type: Transform + pos: 25.5,4.5 + parent: 2 + - uid: 16432 + components: + - type: Transform + pos: 26.5,4.5 + parent: 2 + - uid: 16433 + components: + - type: Transform + pos: 27.5,4.5 + parent: 2 + - uid: 16434 + components: + - type: Transform + pos: 28.5,4.5 + parent: 2 + - uid: 16435 + components: + - type: Transform + pos: 29.5,4.5 + parent: 2 + - uid: 16436 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 + - uid: 16437 + components: + - type: Transform + pos: 25.5,3.5 + parent: 2 + - uid: 16438 + components: + - type: Transform + pos: 24.5,3.5 + parent: 2 + - uid: 16439 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 16440 + components: + - type: Transform + pos: 26.5,2.5 + parent: 2 + - uid: 16441 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - uid: 16442 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 16443 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 16444 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 2 + - uid: 16445 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 2 + - uid: 16446 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 2 + - uid: 16447 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 2 + - uid: 16448 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 2 + - uid: 16449 + components: + - type: Transform + pos: 32.5,0.5 + parent: 2 + - uid: 16450 + components: + - type: Transform + pos: 32.5,1.5 + parent: 2 + - uid: 16451 + components: + - type: Transform + pos: 32.5,2.5 + parent: 2 + - uid: 16452 + components: + - type: Transform + pos: 29.5,2.5 + parent: 2 + - uid: 16453 + components: + - type: Transform + pos: 30.5,2.5 + parent: 2 + - uid: 16454 + components: + - type: Transform + pos: 39.5,-2.5 + parent: 2 + - uid: 16455 + components: + - type: Transform + pos: 39.5,-3.5 + parent: 2 + - uid: 16456 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 2 + - uid: 16457 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 2 + - uid: 16458 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 2 + - uid: 16459 + components: + - type: Transform + pos: 37.5,0.5 + parent: 2 + - uid: 16460 + components: + - type: Transform + pos: 37.5,1.5 + parent: 2 + - uid: 16461 + components: + - type: Transform + pos: 37.5,2.5 + parent: 2 + - uid: 16462 + components: + - type: Transform + pos: 36.5,2.5 + parent: 2 + - uid: 16463 + components: + - type: Transform + pos: 37.5,3.5 + parent: 2 + - uid: 16464 + components: + - type: Transform + pos: 40.5,-0.5 + parent: 2 + - uid: 16465 + components: + - type: Transform + pos: 40.5,0.5 + parent: 2 + - uid: 16466 + components: + - type: Transform + pos: 40.5,1.5 + parent: 2 + - uid: 16467 + components: + - type: Transform + pos: 40.5,2.5 + parent: 2 + - uid: 16468 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 16469 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 16470 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 16471 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 16472 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 16473 + components: + - type: Transform + pos: 41.5,6.5 + parent: 2 + - uid: 16474 + components: + - type: Transform + pos: 32.5,12.5 + parent: 2 + - uid: 16475 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 16476 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - uid: 16477 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 + - uid: 16478 + components: + - type: Transform + pos: 33.5,12.5 + parent: 2 + - uid: 16479 + components: + - type: Transform + pos: 37.5,6.5 + parent: 2 + - uid: 16480 + components: + - type: Transform + pos: 36.5,6.5 + parent: 2 + - uid: 16481 + components: + - type: Transform + pos: 37.5,5.5 + parent: 2 + - uid: 16482 + components: + - type: Transform + pos: 38.5,5.5 + parent: 2 + - uid: 16483 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2 + - uid: 16484 + components: + - type: Transform + pos: 40.5,5.5 + parent: 2 + - uid: 16485 + components: + - type: Transform + pos: 41.5,5.5 + parent: 2 + - uid: 16486 + components: + - type: Transform + pos: 35.5,12.5 + parent: 2 + - uid: 16487 + components: + - type: Transform + pos: 36.5,12.5 + parent: 2 + - uid: 16488 + components: + - type: Transform + pos: 37.5,12.5 + parent: 2 + - uid: 16489 + components: + - type: Transform + pos: 37.5,13.5 + parent: 2 + - uid: 16490 + components: + - type: Transform + pos: 37.5,14.5 + parent: 2 + - uid: 16491 + components: + - type: Transform + pos: 37.5,15.5 + parent: 2 + - uid: 16492 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 16493 + components: + - type: Transform + pos: 36.5,18.5 + parent: 2 + - uid: 16494 + components: + - type: Transform + pos: 37.5,18.5 + parent: 2 + - uid: 16495 + components: + - type: Transform + pos: 37.5,17.5 + parent: 2 + - uid: 16496 + components: + - type: Transform + pos: 34.5,22.5 + parent: 2 + - uid: 16497 + components: + - type: Transform + pos: 35.5,22.5 + parent: 2 + - uid: 16498 + components: + - type: Transform + pos: 36.5,22.5 + parent: 2 + - uid: 16499 + components: + - type: Transform + pos: 35.5,31.5 + parent: 2 + - uid: 16500 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 16501 + components: + - type: Transform + pos: 44.5,-2.5 + parent: 2 + - uid: 16502 + components: + - type: Transform + pos: 44.5,-1.5 + parent: 2 + - uid: 16503 + components: + - type: Transform + pos: 44.5,-0.5 + parent: 2 + - uid: 16504 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 + - uid: 16505 + components: + - type: Transform + pos: 44.5,3.5 + parent: 2 + - uid: 16506 + components: + - type: Transform + pos: 44.5,2.5 + parent: 2 + - uid: 16507 + components: + - type: Transform + pos: 44.5,1.5 + parent: 2 + - uid: 16508 + components: + - type: Transform + pos: 44.5,0.5 + parent: 2 + - uid: 16509 + components: + - type: Transform + pos: 42.5,6.5 + parent: 2 + - uid: 16510 + components: + - type: Transform + pos: 44.5,4.5 + parent: 2 + - uid: 16511 + components: + - type: Transform + pos: 44.5,5.5 + parent: 2 + - uid: 16512 + components: + - type: Transform + pos: 45.5,5.5 + parent: 2 + - uid: 16513 + components: + - type: Transform + pos: 46.5,5.5 + parent: 2 + - uid: 16514 + components: + - type: Transform + pos: 46.5,6.5 + parent: 2 + - uid: 16515 + components: + - type: Transform + pos: 46.5,7.5 + parent: 2 + - uid: 16516 + components: + - type: Transform + pos: 46.5,8.5 + parent: 2 + - uid: 16517 + components: + - type: Transform + pos: 47.5,8.5 + parent: 2 + - uid: 16518 + components: + - type: Transform + pos: 47.5,9.5 + parent: 2 + - uid: 16519 + components: + - type: Transform + pos: 47.5,11.5 + parent: 2 + - uid: 16520 + components: + - type: Transform + pos: 45.5,11.5 + parent: 2 + - uid: 16521 + components: + - type: Transform + pos: 42.5,7.5 + parent: 2 + - uid: 16522 + components: + - type: Transform + pos: 42.5,8.5 + parent: 2 + - uid: 16523 + components: + - type: Transform + pos: 42.5,9.5 + parent: 2 + - uid: 16524 + components: + - type: Transform + pos: 42.5,10.5 + parent: 2 + - uid: 16525 + components: + - type: Transform + pos: 42.5,11.5 + parent: 2 + - uid: 16527 + components: + - type: Transform + pos: 44.5,11.5 + parent: 2 + - uid: 16528 + components: + - type: Transform + pos: 46.5,11.5 + parent: 2 + - uid: 16529 + components: + - type: Transform + pos: 41.5,10.5 + parent: 2 + - uid: 16530 + components: + - type: Transform + pos: 42.5,12.5 + parent: 2 + - uid: 16531 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - uid: 16532 + components: + - type: Transform + pos: 42.5,14.5 + parent: 2 + - uid: 16533 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 + - uid: 16534 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 + - uid: 16535 + components: + - type: Transform + pos: 39.5,19.5 + parent: 2 + - uid: 16536 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 + - uid: 16537 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 + - uid: 16538 + components: + - type: Transform + pos: 39.5,22.5 + parent: 2 + - uid: 16539 + components: + - type: Transform + pos: 40.5,22.5 + parent: 2 + - uid: 16540 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 + - uid: 16541 + components: + - type: Transform + pos: 42.5,22.5 + parent: 2 + - uid: 16542 + components: + - type: Transform + pos: 44.5,22.5 + parent: 2 + - uid: 16543 + components: + - type: Transform + pos: 45.5,22.5 + parent: 2 + - uid: 16544 + components: + - type: Transform + pos: 45.5,20.5 + parent: 2 + - uid: 16545 + components: + - type: Transform + pos: 45.5,19.5 + parent: 2 + - uid: 16546 + components: + - type: Transform + pos: 44.5,19.5 + parent: 2 + - uid: 16547 + components: + - type: Transform + pos: 43.5,18.5 + parent: 2 + - uid: 16548 + components: + - type: Transform + pos: 44.5,18.5 + parent: 2 + - uid: 16549 + components: + - type: Transform + pos: 42.5,15.5 + parent: 2 + - uid: 16550 + components: + - type: Transform + pos: 43.5,15.5 + parent: 2 + - uid: 16551 + components: + - type: Transform + pos: 47.5,12.5 + parent: 2 + - uid: 16552 + components: + - type: Transform + pos: 48.5,12.5 + parent: 2 + - uid: 16553 + components: + - type: Transform + pos: 50.5,12.5 + parent: 2 + - uid: 16554 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 16555 + components: + - type: Transform + pos: 50.5,15.5 + parent: 2 + - uid: 16556 + components: + - type: Transform + pos: 50.5,16.5 + parent: 2 + - uid: 16557 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 + - uid: 16558 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 16559 + components: + - type: Transform + pos: 46.5,19.5 + parent: 2 + - uid: 16560 + components: + - type: Transform + pos: 45.5,23.5 + parent: 2 + - uid: 16561 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 + - uid: 16562 + components: + - type: Transform + pos: 45.5,24.5 + parent: 2 + - uid: 16563 + components: + - type: Transform + pos: 44.5,24.5 + parent: 2 + - uid: 16564 + components: + - type: Transform + pos: 43.5,24.5 + parent: 2 + - uid: 16565 + components: + - type: Transform + pos: 42.5,24.5 + parent: 2 + - uid: 16566 + components: + - type: Transform + pos: 38.5,24.5 + parent: 2 + - uid: 16567 + components: + - type: Transform + pos: 37.5,24.5 + parent: 2 + - uid: 16568 + components: + - type: Transform + pos: 36.5,24.5 + parent: 2 + - uid: 16569 + components: + - type: Transform + pos: 36.5,23.5 + parent: 2 + - uid: 16570 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 16571 + components: + - type: Transform + pos: 34.5,24.5 + parent: 2 + - uid: 16572 + components: + - type: Transform + pos: 34.5,25.5 + parent: 2 + - uid: 16573 + components: + - type: Transform + pos: 34.5,26.5 + parent: 2 + - uid: 16574 + components: + - type: Transform + pos: 34.5,27.5 + parent: 2 + - uid: 16575 + components: + - type: Transform + pos: 34.5,28.5 + parent: 2 + - uid: 16576 + components: + - type: Transform + pos: 34.5,29.5 + parent: 2 + - uid: 16577 + components: + - type: Transform + pos: 34.5,30.5 + parent: 2 + - uid: 16578 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 16579 + components: + - type: Transform + pos: 34.5,32.5 + parent: 2 + - uid: 16580 + components: + - type: Transform + pos: 36.5,31.5 + parent: 2 + - uid: 16581 + components: + - type: Transform + pos: 37.5,31.5 + parent: 2 + - uid: 16582 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 16583 + components: + - type: Transform + pos: 38.5,32.5 + parent: 2 + - uid: 16584 + components: + - type: Transform + pos: 36.5,30.5 + parent: 2 + - uid: 16585 + components: + - type: Transform + pos: 36.5,28.5 + parent: 2 + - uid: 16586 + components: + - type: Transform + pos: 36.5,26.5 + parent: 2 + - uid: 16587 + components: + - type: Transform + pos: 37.5,26.5 + parent: 2 + - uid: 16588 + components: + - type: Transform + pos: 38.5,26.5 + parent: 2 + - uid: 16589 + components: + - type: Transform + pos: 39.5,26.5 + parent: 2 + - uid: 16590 + components: + - type: Transform + pos: 41.5,26.5 + parent: 2 + - uid: 16591 + components: + - type: Transform + pos: 42.5,26.5 + parent: 2 + - uid: 16592 + components: + - type: Transform + pos: 43.5,26.5 + parent: 2 + - uid: 16593 + components: + - type: Transform + pos: 43.5,27.5 + parent: 2 + - uid: 16594 + components: + - type: Transform + pos: 43.5,29.5 + parent: 2 + - uid: 16595 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - uid: 16596 + components: + - type: Transform + pos: 42.5,30.5 + parent: 2 + - uid: 16597 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 16598 + components: + - type: Transform + pos: 43.5,32.5 + parent: 2 + - uid: 16599 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 + - uid: 16600 + components: + - type: Transform + pos: 40.5,30.5 + parent: 2 + - uid: 16601 + components: + - type: Transform + pos: 39.5,30.5 + parent: 2 + - uid: 16602 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - uid: 16603 + components: + - type: Transform + pos: 39.5,32.5 + parent: 2 + - uid: 16604 + components: + - type: Transform + pos: 40.5,32.5 + parent: 2 + - uid: 16605 + components: + - type: Transform + pos: 45.5,25.5 + parent: 2 + - uid: 16606 + components: + - type: Transform + pos: 45.5,26.5 + parent: 2 + - uid: 16607 + components: + - type: Transform + pos: 45.5,27.5 + parent: 2 + - uid: 16608 + components: + - type: Transform + pos: 45.5,28.5 + parent: 2 + - uid: 16609 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 16610 + components: + - type: Transform + pos: 45.5,30.5 + parent: 2 + - uid: 16611 + components: + - type: Transform + pos: 45.5,31.5 + parent: 2 + - uid: 16612 + components: + - type: Transform + pos: 45.5,32.5 + parent: 2 + - uid: 16613 + components: + - type: Transform + pos: 46.5,32.5 + parent: 2 + - uid: 16614 + components: + - type: Transform + pos: 47.5,32.5 + parent: 2 + - uid: 16615 + components: + - type: Transform + pos: 48.5,32.5 + parent: 2 + - uid: 16616 + components: + - type: Transform + pos: 49.5,29.5 + parent: 2 + - uid: 16617 + components: + - type: Transform + pos: 49.5,32.5 + parent: 2 + - uid: 16618 + components: + - type: Transform + pos: 49.5,31.5 + parent: 2 + - uid: 16619 + components: + - type: Transform + pos: 49.5,28.5 + parent: 2 + - uid: 16620 + components: + - type: Transform + pos: 51.5,28.5 + parent: 2 + - uid: 16621 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 + - uid: 16622 + components: + - type: Transform + pos: 50.5,32.5 + parent: 2 + - uid: 16623 + components: + - type: Transform + pos: 51.5,32.5 + parent: 2 + - uid: 16624 + components: + - type: Transform + pos: 52.5,32.5 + parent: 2 + - uid: 16625 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 + - uid: 16626 + components: + - type: Transform + pos: 53.5,31.5 + parent: 2 + - uid: 16627 + components: + - type: Transform + pos: 53.5,29.5 + parent: 2 + - uid: 16628 + components: + - type: Transform + pos: 53.5,28.5 + parent: 2 + - uid: 16629 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 + - uid: 16630 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 16631 + components: + - type: Transform + pos: 51.5,23.5 + parent: 2 + - uid: 16632 + components: + - type: Transform + pos: 49.5,23.5 + parent: 2 + - uid: 16633 + components: + - type: Transform + pos: 49.5,21.5 + parent: 2 + - uid: 16634 + components: + - type: Transform + pos: 53.5,19.5 + parent: 2 + - uid: 16635 + components: + - type: Transform + pos: 56.5,9.5 + parent: 2 + - uid: 16636 + components: + - type: Transform + pos: 57.5,23.5 + parent: 2 + - uid: 16637 + components: + - type: Transform + pos: 58.5,23.5 + parent: 2 + - uid: 16638 + components: + - type: Transform + pos: 59.5,23.5 + parent: 2 + - uid: 16639 + components: + - type: Transform + pos: 60.5,23.5 + parent: 2 + - uid: 16640 + components: + - type: Transform + pos: 57.5,24.5 + parent: 2 + - uid: 16641 + components: + - type: Transform + pos: 57.5,25.5 + parent: 2 + - uid: 16642 + components: + - type: Transform + pos: 57.5,26.5 + parent: 2 + - uid: 16643 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 16644 + components: + - type: Transform + pos: 61.5,23.5 + parent: 2 + - uid: 16645 + components: + - type: Transform + pos: 61.5,22.5 + parent: 2 + - uid: 16646 + components: + - type: Transform + pos: 61.5,20.5 + parent: 2 + - uid: 16647 + components: + - type: Transform + pos: 61.5,19.5 + parent: 2 + - uid: 16648 + components: + - type: Transform + pos: 60.5,19.5 + parent: 2 + - uid: 16649 + components: + - type: Transform + pos: 60.5,18.5 + parent: 2 + - uid: 16650 + components: + - type: Transform + pos: 60.5,17.5 + parent: 2 + - uid: 16651 + components: + - type: Transform + pos: 60.5,16.5 + parent: 2 + - uid: 16652 + components: + - type: Transform + pos: 60.5,15.5 + parent: 2 + - uid: 16653 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - uid: 16654 + components: + - type: Transform + pos: 59.5,14.5 + parent: 2 + - uid: 16655 + components: + - type: Transform + pos: 51.5,12.5 + parent: 2 + - uid: 16656 + components: + - type: Transform + pos: 52.5,12.5 + parent: 2 + - uid: 16657 + components: + - type: Transform + pos: 53.5,12.5 + parent: 2 + - uid: 16658 + components: + - type: Transform + pos: 54.5,12.5 + parent: 2 + - uid: 16659 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - uid: 16660 + components: + - type: Transform + pos: 56.5,10.5 + parent: 2 + - uid: 16661 + components: + - type: Transform + pos: 54.5,14.5 + parent: 2 + - uid: 16662 + components: + - type: Transform + pos: 54.5,13.5 + parent: 2 + - uid: 16663 + components: + - type: Transform + pos: 55.5,14.5 + parent: 2 + - uid: 16664 + components: + - type: Transform + pos: 56.5,14.5 + parent: 2 + - uid: 16665 + components: + - type: Transform + pos: 58.5,14.5 + parent: 2 + - uid: 16666 + components: + - type: Transform + pos: 57.5,14.5 + parent: 2 + - uid: 16667 + components: + - type: Transform + pos: 48.5,8.5 + parent: 2 + - uid: 16668 + components: + - type: Transform + pos: 51.5,8.5 + parent: 2 + - uid: 16669 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - uid: 16670 + components: + - type: Transform + pos: 51.5,9.5 + parent: 2 + - uid: 16671 + components: + - type: Transform + pos: 51.5,11.5 + parent: 2 + - uid: 16672 + components: + - type: Transform + pos: 52.5,8.5 + parent: 2 + - uid: 16673 + components: + - type: Transform + pos: 53.5,8.5 + parent: 2 + - uid: 16674 + components: + - type: Transform + pos: 54.5,8.5 + parent: 2 + - uid: 16675 + components: + - type: Transform + pos: 55.5,8.5 + parent: 2 + - uid: 16676 + components: + - type: Transform + pos: 56.5,8.5 + parent: 2 + - uid: 16677 + components: + - type: Transform + pos: 56.5,7.5 + parent: 2 + - uid: 16678 + components: + - type: Transform + pos: 53.5,5.5 + parent: 2 + - uid: 16679 + components: + - type: Transform + pos: 54.5,5.5 + parent: 2 + - uid: 16680 + components: + - type: Transform + pos: 55.5,5.5 + parent: 2 + - uid: 16681 + components: + - type: Transform + pos: 56.5,5.5 + parent: 2 + - uid: 16682 + components: + - type: Transform + pos: 57.5,5.5 + parent: 2 + - uid: 16683 + components: + - type: Transform + pos: 58.5,5.5 + parent: 2 + - uid: 16684 + components: + - type: Transform + pos: 58.5,4.5 + parent: 2 + - uid: 16685 + components: + - type: Transform + pos: 58.5,3.5 + parent: 2 + - uid: 16686 + components: + - type: Transform + pos: 58.5,2.5 + parent: 2 + - uid: 16687 + components: + - type: Transform + pos: 58.5,1.5 + parent: 2 + - uid: 16688 + components: + - type: Transform + pos: 58.5,0.5 + parent: 2 + - uid: 16689 + components: + - type: Transform + pos: 58.5,-0.5 + parent: 2 + - uid: 16690 + components: + - type: Transform + pos: 58.5,-1.5 + parent: 2 + - uid: 16691 + components: + - type: Transform + pos: 58.5,-2.5 + parent: 2 + - uid: 16692 + components: + - type: Transform + pos: 58.5,-4.5 + parent: 2 + - uid: 16693 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 2 + - uid: 16694 + components: + - type: Transform + pos: 44.5,-3.5 + parent: 2 + - uid: 16695 + components: + - type: Transform + pos: 44.5,-4.5 + parent: 2 + - uid: 16696 + components: + - type: Transform + pos: 45.5,-4.5 + parent: 2 + - uid: 16697 + components: + - type: Transform + pos: 46.5,-4.5 + parent: 2 + - uid: 16698 + components: + - type: Transform + pos: 47.5,-4.5 + parent: 2 + - uid: 16699 + components: + - type: Transform + pos: 48.5,-4.5 + parent: 2 + - uid: 16700 + components: + - type: Transform + pos: 57.5,-4.5 + parent: 2 + - uid: 16701 + components: + - type: Transform + pos: 56.5,-4.5 + parent: 2 + - uid: 16702 + components: + - type: Transform + pos: 48.5,-5.5 + parent: 2 + - uid: 16703 + components: + - type: Transform + pos: 48.5,-6.5 + parent: 2 + - uid: 16704 + components: + - type: Transform + pos: 48.5,-7.5 + parent: 2 + - uid: 16705 + components: + - type: Transform + pos: 48.5,-8.5 + parent: 2 + - uid: 16706 + components: + - type: Transform + pos: 48.5,-9.5 + parent: 2 + - uid: 16707 + components: + - type: Transform + pos: 54.5,-6.5 + parent: 2 + - uid: 16708 + components: + - type: Transform + pos: 54.5,-7.5 + parent: 2 + - uid: 16709 + components: + - type: Transform + pos: 54.5,-8.5 + parent: 2 + - uid: 16710 + components: + - type: Transform + pos: 54.5,-9.5 + parent: 2 + - uid: 16711 + components: + - type: Transform + pos: 49.5,-5.5 + parent: 2 + - uid: 16712 + components: + - type: Transform + pos: 49.5,-9.5 + parent: 2 + - uid: 16713 + components: + - type: Transform + pos: 50.5,-9.5 + parent: 2 + - uid: 16714 + components: + - type: Transform + pos: 51.5,-9.5 + parent: 2 + - uid: 16715 + components: + - type: Transform + pos: 52.5,-9.5 + parent: 2 + - uid: 16716 + components: + - type: Transform + pos: 53.5,-9.5 + parent: 2 + - uid: 16717 + components: + - type: Transform + pos: 47.5,5.5 + parent: 2 + - uid: 16719 + components: + - type: Transform + pos: 58.5,9.5 + parent: 2 + - uid: 16720 + components: + - type: Transform + pos: 58.5,10.5 + parent: 2 + - uid: 16721 + components: + - type: Transform + pos: 58.5,11.5 + parent: 2 + - uid: 16722 + components: + - type: Transform + pos: 61.5,7.5 + parent: 2 + - uid: 16723 + components: + - type: Transform + pos: 61.5,8.5 + parent: 2 + - uid: 16724 + components: + - type: Transform + pos: 61.5,9.5 + parent: 2 + - uid: 16725 + components: + - type: Transform + pos: 61.5,10.5 + parent: 2 + - uid: 16726 + components: + - type: Transform + pos: 61.5,11.5 + parent: 2 + - uid: 16727 + components: + - type: Transform + pos: 63.5,-0.5 + parent: 2 + - uid: 16728 + components: + - type: Transform + pos: 63.5,0.5 + parent: 2 + - uid: 16729 + components: + - type: Transform + pos: 62.5,0.5 + parent: 2 + - uid: 16730 + components: + - type: Transform + pos: 62.5,1.5 + parent: 2 + - uid: 16731 + components: + - type: Transform + pos: 62.5,5.5 + parent: 2 + - uid: 16732 + components: + - type: Transform + pos: 62.5,6.5 + parent: 2 + - uid: 16733 + components: + - type: Transform + pos: 62.5,7.5 + parent: 2 + - uid: 16734 + components: + - type: Transform + pos: 67.5,-0.5 + parent: 2 + - uid: 16735 + components: + - type: Transform + pos: 67.5,0.5 + parent: 2 + - uid: 16736 + components: + - type: Transform + pos: 68.5,0.5 + parent: 2 + - uid: 16737 + components: + - type: Transform + pos: 71.5,-1.5 + parent: 2 + - uid: 16738 + components: + - type: Transform + pos: 71.5,-2.5 + parent: 2 + - uid: 16739 + components: + - type: Transform + pos: 72.5,-2.5 + parent: 2 + - uid: 16740 + components: + - type: Transform + pos: 72.5,-3.5 + parent: 2 + - uid: 16741 + components: + - type: Transform + pos: 20.5,67.5 + parent: 2 + - uid: 16742 + components: + - type: Transform + pos: 19.5,67.5 + parent: 2 + - uid: 16743 + components: + - type: Transform + pos: 19.5,68.5 + parent: 2 + - uid: 16744 + components: + - type: Transform + pos: 19.5,69.5 + parent: 2 + - uid: 16745 + components: + - type: Transform + pos: 19.5,70.5 + parent: 2 + - uid: 16746 + components: + - type: Transform + pos: 18.5,70.5 + parent: 2 + - uid: 16747 + components: + - type: Transform + pos: 17.5,71.5 + parent: 2 + - uid: 16748 + components: + - type: Transform + pos: 17.5,70.5 + parent: 2 + - uid: 16749 + components: + - type: Transform + pos: 22.5,67.5 + parent: 2 + - uid: 16750 + components: + - type: Transform + pos: 23.5,67.5 + parent: 2 + - uid: 16751 + components: + - type: Transform + pos: 23.5,66.5 + parent: 2 + - uid: 16752 + components: + - type: Transform + pos: 24.5,66.5 + parent: 2 + - uid: 16753 + components: + - type: Transform + pos: 26.5,50.5 + parent: 2 + - uid: 16754 + components: + - type: Transform + pos: 26.5,51.5 + parent: 2 + - uid: 16755 + components: + - type: Transform + pos: 26.5,52.5 + parent: 2 + - uid: 16756 + components: + - type: Transform + pos: 26.5,53.5 + parent: 2 + - uid: 16757 + components: + - type: Transform + pos: 26.5,54.5 + parent: 2 + - uid: 16758 + components: + - type: Transform + pos: 26.5,55.5 + parent: 2 + - uid: 16759 + components: + - type: Transform + pos: 26.5,56.5 + parent: 2 + - uid: 16760 + components: + - type: Transform + pos: 26.5,57.5 + parent: 2 + - uid: 16761 + components: + - type: Transform + pos: 26.5,58.5 + parent: 2 + - uid: 16762 + components: + - type: Transform + pos: 27.5,59.5 + parent: 2 + - uid: 16763 + components: + - type: Transform + pos: 26.5,59.5 + parent: 2 + - uid: 16764 + components: + - type: Transform + pos: 28.5,59.5 + parent: 2 + - uid: 16765 + components: + - type: Transform + pos: 25.5,66.5 + parent: 2 + - uid: 16766 + components: + - type: Transform + pos: 30.5,62.5 + parent: 2 + - uid: 16767 + components: + - type: Transform + pos: 30.5,63.5 + parent: 2 + - uid: 16768 + components: + - type: Transform + pos: 30.5,64.5 + parent: 2 + - uid: 16769 + components: + - type: Transform + pos: 30.5,65.5 + parent: 2 + - uid: 16770 + components: + - type: Transform + pos: 30.5,66.5 + parent: 2 + - uid: 16771 + components: + - type: Transform + pos: 30.5,67.5 + parent: 2 + - uid: 16772 + components: + - type: Transform + pos: 29.5,67.5 + parent: 2 + - uid: 16773 + components: + - type: Transform + pos: 28.5,67.5 + parent: 2 + - uid: 16774 + components: + - type: Transform + pos: 27.5,67.5 + parent: 2 + - uid: 16775 + components: + - type: Transform + pos: 27.5,66.5 + parent: 2 + - uid: 16776 + components: + - type: Transform + pos: 31.5,52.5 + parent: 2 + - uid: 16777 + components: + - type: Transform + pos: 32.5,52.5 + parent: 2 + - uid: 16778 + components: + - type: Transform + pos: 29.5,52.5 + parent: 2 + - uid: 16779 + components: + - type: Transform + pos: 28.5,52.5 + parent: 2 + - uid: 16780 + components: + - type: Transform + pos: 28.5,53.5 + parent: 2 + - uid: 16781 + components: + - type: Transform + pos: 28.5,54.5 + parent: 2 + - uid: 16782 + components: + - type: Transform + pos: 28.5,55.5 + parent: 2 + - uid: 16783 + components: + - type: Transform + pos: 28.5,56.5 + parent: 2 + - uid: 16784 + components: + - type: Transform + pos: 28.5,57.5 + parent: 2 + - uid: 16785 + components: + - type: Transform + pos: 29.5,57.5 + parent: 2 + - uid: 16786 + components: + - type: Transform + pos: 30.5,57.5 + parent: 2 + - uid: 16787 + components: + - type: Transform + pos: 31.5,57.5 + parent: 2 + - uid: 16788 + components: + - type: Transform + pos: 32.5,57.5 + parent: 2 + - uid: 16789 + components: + - type: Transform + pos: 32.5,59.5 + parent: 2 + - uid: 16790 + components: + - type: Transform + pos: 32.5,56.5 + parent: 2 + - uid: 16791 + components: + - type: Transform + pos: 32.5,53.5 + parent: 2 + - uid: 16792 + components: + - type: Transform + pos: 32.5,54.5 + parent: 2 + - uid: 16793 + components: + - type: Transform + pos: 32.5,55.5 + parent: 2 + - uid: 16794 + components: + - type: Transform + pos: 33.5,59.5 + parent: 2 + - uid: 16795 + components: + - type: Transform + pos: 34.5,59.5 + parent: 2 + - uid: 16796 + components: + - type: Transform + pos: 34.5,58.5 + parent: 2 + - uid: 16797 + components: + - type: Transform + pos: 31.5,62.5 + parent: 2 + - uid: 16798 + components: + - type: Transform + pos: 32.5,62.5 + parent: 2 + - uid: 16799 + components: + - type: Transform + pos: 34.5,62.5 + parent: 2 + - uid: 16800 + components: + - type: Transform + pos: 36.5,62.5 + parent: 2 + - uid: 16801 + components: + - type: Transform + pos: 36.5,64.5 + parent: 2 + - uid: 16802 + components: + - type: Transform + pos: 36.5,63.5 + parent: 2 + - uid: 16803 + components: + - type: Transform + pos: 36.5,65.5 + parent: 2 + - uid: 16804 + components: + - type: Transform + pos: 32.5,66.5 + parent: 2 + - uid: 16805 + components: + - type: Transform + pos: 38.5,50.5 + parent: 2 + - uid: 16806 + components: + - type: Transform + pos: 38.5,51.5 + parent: 2 + - uid: 16807 + components: + - type: Transform + pos: 38.5,52.5 + parent: 2 + - uid: 16808 + components: + - type: Transform + pos: 38.5,53.5 + parent: 2 + - uid: 16809 + components: + - type: Transform + pos: 38.5,54.5 + parent: 2 + - uid: 16810 + components: + - type: Transform + pos: 38.5,55.5 + parent: 2 + - uid: 16811 + components: + - type: Transform + pos: 38.5,56.5 + parent: 2 + - uid: 16812 + components: + - type: Transform + pos: 38.5,57.5 + parent: 2 + - uid: 16813 + components: + - type: Transform + pos: 38.5,58.5 + parent: 2 + - uid: 16814 + components: + - type: Transform + pos: 40.5,67.5 + parent: 2 + - uid: 16815 + components: + - type: Transform + pos: 36.5,66.5 + parent: 2 + - uid: 16816 + components: + - type: Transform + pos: 36.5,67.5 + parent: 2 + - uid: 16817 + components: + - type: Transform + pos: 37.5,67.5 + parent: 2 + - uid: 16818 + components: + - type: Transform + pos: 38.5,67.5 + parent: 2 + - uid: 16819 + components: + - type: Transform + pos: 41.5,67.5 + parent: 2 + - uid: 16820 + components: + - type: Transform + pos: 42.5,67.5 + parent: 2 + - uid: 16821 + components: + - type: Transform + pos: 42.5,66.5 + parent: 2 + - uid: 16822 + components: + - type: Transform + pos: 47.5,62.5 + parent: 2 + - uid: 16823 + components: + - type: Transform + pos: 37.5,63.5 + parent: 2 + - uid: 16824 + components: + - type: Transform + pos: 38.5,63.5 + parent: 2 + - uid: 16825 + components: + - type: Transform + pos: 40.5,63.5 + parent: 2 + - uid: 16826 + components: + - type: Transform + pos: 41.5,63.5 + parent: 2 + - uid: 16827 + components: + - type: Transform + pos: 42.5,63.5 + parent: 2 + - uid: 16828 + components: + - type: Transform + pos: 42.5,64.5 + parent: 2 + - uid: 16829 + components: + - type: Transform + pos: 42.5,65.5 + parent: 2 + - uid: 16830 + components: + - type: Transform + pos: 43.5,67.5 + parent: 2 + - uid: 16831 + components: + - type: Transform + pos: 44.5,67.5 + parent: 2 + - uid: 16832 + components: + - type: Transform + pos: 45.5,67.5 + parent: 2 + - uid: 16833 + components: + - type: Transform + pos: 46.5,67.5 + parent: 2 + - uid: 16834 + components: + - type: Transform + pos: 46.5,62.5 + parent: 2 + - uid: 16835 + components: + - type: Transform + pos: 46.5,63.5 + parent: 2 + - uid: 16836 + components: + - type: Transform + pos: 46.5,66.5 + parent: 2 + - uid: 16837 + components: + - type: Transform + pos: 48.5,62.5 + parent: 2 + - uid: 16838 + components: + - type: Transform + pos: 49.5,62.5 + parent: 2 + - uid: 16839 + components: + - type: Transform + pos: 50.5,62.5 + parent: 2 + - uid: 16840 + components: + - type: Transform + pos: 50.5,61.5 + parent: 2 + - uid: 16841 + components: + - type: Transform + pos: 50.5,60.5 + parent: 2 + - uid: 16842 + components: + - type: Transform + pos: 51.5,60.5 + parent: 2 + - uid: 16843 + components: + - type: Transform + pos: 52.5,60.5 + parent: 2 + - uid: 16844 + components: + - type: Transform + pos: 53.5,60.5 + parent: 2 + - uid: 16845 + components: + - type: Transform + pos: 53.5,59.5 + parent: 2 + - uid: 16846 + components: + - type: Transform + pos: 53.5,58.5 + parent: 2 + - uid: 16849 + components: + - type: Transform + pos: 58.5,59.5 + parent: 2 + - uid: 16850 + components: + - type: Transform + pos: 58.5,58.5 + parent: 2 + - uid: 16851 + components: + - type: Transform + pos: 58.5,56.5 + parent: 2 + - uid: 16852 + components: + - type: Transform + pos: 58.5,55.5 + parent: 2 + - uid: 16853 + components: + - type: Transform + pos: 59.5,55.5 + parent: 2 + - uid: 16854 + components: + - type: Transform + pos: 60.5,55.5 + parent: 2 + - uid: 16855 + components: + - type: Transform + pos: 61.5,55.5 + parent: 2 + - uid: 16856 + components: + - type: Transform + pos: 62.5,55.5 + parent: 2 + - uid: 16857 + components: + - type: Transform + pos: 63.5,55.5 + parent: 2 + - uid: 16858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,58.5 + parent: 2 + - uid: 16859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,58.5 + parent: 2 + - uid: 16860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,58.5 + parent: 2 + - uid: 16861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,62.5 + parent: 2 + - uid: 16862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,60.5 + parent: 2 + - uid: 16863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,61.5 + parent: 2 + - uid: 16864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,62.5 + parent: 2 + - uid: 16865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,64.5 + parent: 2 + - uid: 16866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,64.5 + parent: 2 + - uid: 16867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,64.5 + parent: 2 + - uid: 16868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,64.5 + parent: 2 + - uid: 16869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,63.5 + parent: 2 + - uid: 16870 + components: + - type: Transform + pos: 72.5,63.5 + parent: 2 + - uid: 16871 + components: + - type: Transform + pos: 73.5,63.5 + parent: 2 + - uid: 16872 + components: + - type: Transform + pos: 74.5,63.5 + parent: 2 + - uid: 16873 + components: + - type: Transform + pos: 75.5,63.5 + parent: 2 + - uid: 16874 + components: + - type: Transform + pos: 79.5,63.5 + parent: 2 + - uid: 16875 + components: + - type: Transform + pos: 80.5,63.5 + parent: 2 + - uid: 16876 + components: + - type: Transform + pos: 76.5,58.5 + parent: 2 + - uid: 16877 + components: + - type: Transform + pos: 77.5,58.5 + parent: 2 + - uid: 16878 + components: + - type: Transform + pos: 78.5,58.5 + parent: 2 + - uid: 16879 + components: + - type: Transform + pos: 79.5,58.5 + parent: 2 + - uid: 16880 + components: + - type: Transform + pos: 80.5,58.5 + parent: 2 + - uid: 16881 + components: + - type: Transform + pos: 74.5,58.5 + parent: 2 + - uid: 16882 + components: + - type: Transform + pos: 73.5,58.5 + parent: 2 + - uid: 16883 + components: + - type: Transform + pos: 72.5,58.5 + parent: 2 + - uid: 16884 + components: + - type: Transform + pos: 71.5,58.5 + parent: 2 + - uid: 16885 + components: + - type: Transform + pos: 71.5,59.5 + parent: 2 + - uid: 16886 + components: + - type: Transform + pos: 71.5,61.5 + parent: 2 + - uid: 16887 + components: + - type: Transform + pos: 71.5,62.5 + parent: 2 + - uid: 16888 + components: + - type: Transform + pos: 81.5,54.5 + parent: 2 + - uid: 16889 + components: + - type: Transform + pos: 80.5,54.5 + parent: 2 + - uid: 16890 + components: + - type: Transform + pos: 81.5,52.5 + parent: 2 + - uid: 16891 + components: + - type: Transform + pos: 81.5,48.5 + parent: 2 + - uid: 16892 + components: + - type: Transform + pos: 82.5,48.5 + parent: 2 + - uid: 16893 + components: + - type: Transform + pos: 83.5,48.5 + parent: 2 + - uid: 16894 + components: + - type: Transform + pos: 83.5,47.5 + parent: 2 + - uid: 16895 + components: + - type: Transform + pos: 84.5,47.5 + parent: 2 + - uid: 16896 + components: + - type: Transform + pos: 84.5,46.5 + parent: 2 + - uid: 16897 + components: + - type: Transform + pos: 84.5,45.5 + parent: 2 + - uid: 16898 + components: + - type: Transform + pos: 83.5,45.5 + parent: 2 + - uid: 16899 + components: + - type: Transform + pos: 82.5,45.5 + parent: 2 + - uid: 16900 + components: + - type: Transform + pos: 80.5,45.5 + parent: 2 + - uid: 16901 + components: + - type: Transform + pos: 79.5,45.5 + parent: 2 + - uid: 16902 + components: + - type: Transform + pos: 79.5,46.5 + parent: 2 + - uid: 16903 + components: + - type: Transform + pos: 78.5,46.5 + parent: 2 + - uid: 16904 + components: + - type: Transform + pos: 77.5,46.5 + parent: 2 + - uid: 16905 + components: + - type: Transform + pos: 76.5,46.5 + parent: 2 + - uid: 16906 + components: + - type: Transform + pos: 75.5,46.5 + parent: 2 + - uid: 16907 + components: + - type: Transform + pos: 74.5,46.5 + parent: 2 + - uid: 16908 + components: + - type: Transform + pos: 73.5,46.5 + parent: 2 + - uid: 16909 + components: + - type: Transform + pos: 72.5,46.5 + parent: 2 + - uid: 16910 + components: + - type: Transform + pos: 72.5,47.5 + parent: 2 + - uid: 16911 + components: + - type: Transform + pos: 71.5,47.5 + parent: 2 + - uid: 16912 + components: + - type: Transform + pos: 70.5,47.5 + parent: 2 + - uid: 16913 + components: + - type: Transform + pos: 69.5,47.5 + parent: 2 + - uid: 16914 + components: + - type: Transform + pos: 69.5,44.5 + parent: 2 + - uid: 16915 + components: + - type: Transform + pos: 69.5,41.5 + parent: 2 + - uid: 16916 + components: + - type: Transform + pos: 70.5,41.5 + parent: 2 + - uid: 16917 + components: + - type: Transform + pos: 71.5,41.5 + parent: 2 + - uid: 16918 + components: + - type: Transform + pos: 72.5,41.5 + parent: 2 + - uid: 16919 + components: + - type: Transform + pos: 72.5,44.5 + parent: 2 + - uid: 16920 + components: + - type: Transform + pos: 79.5,41.5 + parent: 2 + - uid: 16921 + components: + - type: Transform + pos: 80.5,41.5 + parent: 2 + - uid: 16922 + components: + - type: Transform + pos: 79.5,40.5 + parent: 2 + - uid: 16923 + components: + - type: Transform + pos: 82.5,41.5 + parent: 2 + - uid: 16924 + components: + - type: Transform + pos: 83.5,41.5 + parent: 2 + - uid: 16925 + components: + - type: Transform + pos: 84.5,41.5 + parent: 2 + - uid: 16926 + components: + - type: Transform + pos: 83.5,40.5 + parent: 2 + - uid: 16927 + components: + - type: Transform + pos: 83.5,39.5 + parent: 2 + - uid: 16928 + components: + - type: Transform + pos: 83.5,38.5 + parent: 2 + - uid: 16929 + components: + - type: Transform + pos: 73.5,41.5 + parent: 2 + - uid: 16930 + components: + - type: Transform + pos: 74.5,41.5 + parent: 2 + - uid: 16931 + components: + - type: Transform + pos: 75.5,41.5 + parent: 2 + - uid: 16932 + components: + - type: Transform + pos: 76.5,41.5 + parent: 2 + - uid: 16933 + components: + - type: Transform + pos: 77.5,41.5 + parent: 2 + - uid: 16934 + components: + - type: Transform + pos: 78.5,41.5 + parent: 2 + - uid: 16935 + components: + - type: Transform + pos: 68.5,41.5 + parent: 2 + - uid: 16936 + components: + - type: Transform + pos: 67.5,41.5 + parent: 2 + - uid: 16937 + components: + - type: Transform + pos: 67.5,40.5 + parent: 2 + - uid: 16938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,36.5 + parent: 2 + - uid: 16939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,37.5 + parent: 2 + - uid: 16940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,36.5 + parent: 2 + - uid: 16941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,36.5 + parent: 2 + - uid: 16942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,36.5 + parent: 2 + - uid: 16943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,36.5 + parent: 2 + - uid: 16944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,36.5 + parent: 2 + - uid: 16945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,32.5 + parent: 2 + - uid: 16946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,32.5 + parent: 2 + - uid: 16947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,32.5 + parent: 2 + - uid: 16948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,32.5 + parent: 2 + - uid: 16949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,32.5 + parent: 2 + - uid: 16950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,36.5 + parent: 2 + - uid: 16951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,37.5 + parent: 2 + - uid: 16952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,39.5 + parent: 2 + - uid: 16953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,32.5 + parent: 2 + - uid: 16954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,31.5 + parent: 2 + - uid: 16955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,29.5 + parent: 2 + - uid: 16956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,28.5 + parent: 2 + - uid: 16957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,28.5 + parent: 2 + - uid: 16958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,29.5 + parent: 2 + - uid: 16959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,30.5 + parent: 2 + - uid: 16960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,29.5 + parent: 2 + - uid: 16961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,30.5 + parent: 2 + - uid: 16962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,30.5 + parent: 2 + - uid: 16963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,38.5 + parent: 2 + - uid: 16964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,38.5 + parent: 2 + - uid: 16965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,39.5 + parent: 2 + - uid: 16966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,27.5 + parent: 2 + - uid: 16967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,27.5 + parent: 2 + - uid: 16968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,26.5 + parent: 2 + - uid: 16969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,9.5 + parent: 2 + - uid: 16970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,21.5 + parent: 2 + - uid: 16971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,20.5 + parent: 2 + - uid: 16972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,20.5 + parent: 2 + - uid: 16973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,20.5 + parent: 2 + - uid: 16974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,20.5 + parent: 2 + - uid: 16975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,20.5 + parent: 2 + - uid: 16976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,21.5 + parent: 2 + - uid: 16977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,22.5 + parent: 2 + - uid: 16978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,23.5 + parent: 2 + - uid: 16979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,24.5 + parent: 2 + - uid: 16980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,25.5 + parent: 2 + - uid: 16981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,26.5 + parent: 2 + - uid: 16982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,27.5 + parent: 2 + - uid: 16983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,21.5 + parent: 2 + - uid: 16984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,21.5 + parent: 2 + - uid: 16985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,21.5 + parent: 2 + - uid: 16986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,21.5 + parent: 2 + - uid: 16987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,22.5 + parent: 2 + - uid: 16988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,23.5 + parent: 2 + - uid: 16989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,23.5 + parent: 2 + - uid: 16990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,23.5 + parent: 2 + - uid: 16991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,22.5 + parent: 2 + - uid: 16992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,24.5 + parent: 2 + - uid: 16993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,26.5 + parent: 2 + - uid: 16994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,26.5 + parent: 2 + - uid: 16995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,26.5 + parent: 2 + - uid: 16999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,22.5 + parent: 2 + - uid: 17001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,27.5 + parent: 2 + - uid: 17002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,27.5 + parent: 2 + - uid: 17008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,32.5 + parent: 2 + - uid: 17009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,32.5 + parent: 2 + - uid: 17010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,32.5 + parent: 2 + - uid: 17011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,32.5 + parent: 2 + - uid: 17012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,32.5 + parent: 2 + - uid: 17013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,32.5 + parent: 2 + - uid: 17014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,32.5 + parent: 2 + - uid: 17017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,28.5 + parent: 2 + - uid: 17021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,22.5 + parent: 2 + - uid: 17022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,22.5 + parent: 2 + - uid: 17023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,22.5 + parent: 2 + - uid: 17024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,22.5 + parent: 2 + - uid: 17025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,22.5 + parent: 2 + - uid: 17026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,22.5 + parent: 2 + - uid: 17027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,19.5 + parent: 2 + - uid: 17028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,18.5 + parent: 2 + - uid: 17029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,19.5 + parent: 2 + - uid: 17030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,18.5 + parent: 2 + - uid: 17031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,18.5 + parent: 2 + - uid: 17032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,18.5 + parent: 2 + - uid: 17033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,18.5 + parent: 2 + - uid: 17034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,18.5 + parent: 2 + - uid: 17035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,14.5 + parent: 2 + - uid: 17036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,14.5 + parent: 2 + - uid: 17037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,14.5 + parent: 2 + - uid: 17038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,14.5 + parent: 2 + - uid: 17039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,13.5 + parent: 2 + - uid: 17040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,12.5 + parent: 2 + - uid: 17041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,12.5 + parent: 2 + - uid: 17042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,12.5 + parent: 2 + - uid: 17043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,11.5 + parent: 2 + - uid: 17044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,10.5 + parent: 2 + - uid: 17045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,6.5 + parent: 2 + - uid: 17046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,6.5 + parent: 2 + - uid: 17047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,1.5 + parent: 2 + - uid: 17048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-2.5 + parent: 2 + - uid: 17049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-1.5 + parent: 2 + - uid: 17050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,1.5 + parent: 2 + - uid: 17051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,4.5 + parent: 2 + - uid: 17052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,5.5 + parent: 2 + - uid: 17053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,6.5 + parent: 2 + - uid: 17054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,7.5 + parent: 2 + - uid: 17055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,7.5 + parent: 2 + - uid: 17056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,8.5 + parent: 2 + - uid: 17057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,8.5 + parent: 2 + - uid: 17058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,8.5 + parent: 2 + - uid: 17059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,7.5 + parent: 2 + - uid: 17060 + components: + - type: Transform + pos: 68.5,12.5 + parent: 2 + - uid: 17061 + components: + - type: Transform + pos: 69.5,12.5 + parent: 2 + - uid: 17062 + components: + - type: Transform + pos: 70.5,12.5 + parent: 2 + - uid: 17063 + components: + - type: Transform + pos: 68.5,16.5 + parent: 2 + - uid: 17064 + components: + - type: Transform + pos: 69.5,16.5 + parent: 2 + - uid: 17065 + components: + - type: Transform + pos: 70.5,16.5 + parent: 2 + - uid: 17066 + components: + - type: Transform + pos: 72.5,16.5 + parent: 2 + - uid: 17067 + components: + - type: Transform + pos: 73.5,16.5 + parent: 2 + - uid: 17068 + components: + - type: Transform + pos: 74.5,16.5 + parent: 2 + - uid: 17069 + components: + - type: Transform + pos: 74.5,14.5 + parent: 2 + - uid: 17070 + components: + - type: Transform + pos: 74.5,13.5 + parent: 2 + - uid: 17071 + components: + - type: Transform + pos: 74.5,12.5 + parent: 2 + - uid: 17072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,21.5 + parent: 2 + - uid: 17073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 2 + - uid: 17074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,12.5 + parent: 2 + - uid: 17075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,11.5 + parent: 2 + - uid: 17076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,13.5 + parent: 2 + - uid: 17077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,13.5 + parent: 2 + - uid: 17078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 2 + - uid: 17079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,59.5 + parent: 2 + - uid: 17080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,58.5 + parent: 2 + - uid: 17081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,5.5 + parent: 2 + - uid: 17082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,11.5 + parent: 2 + - uid: 17083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,12.5 + parent: 2 + - uid: 17084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,14.5 + parent: 2 + - uid: 17085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,47.5 + parent: 2 + - uid: 17086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,58.5 + parent: 2 + - uid: 17087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,10.5 + parent: 2 + - uid: 17088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,10.5 + parent: 2 + - uid: 17089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,19.5 + parent: 2 + - uid: 17090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,18.5 + parent: 2 + - uid: 17091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,16.5 + parent: 2 + - uid: 17092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,15.5 + parent: 2 + - uid: 17093 + components: + - type: Transform + pos: -5.5,65.5 + parent: 2 + - uid: 17094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,62.5 + parent: 2 + - uid: 17095 + components: + - type: Transform + pos: 67.5,23.5 + parent: 2 + - uid: 17096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,33.5 + parent: 2 + - uid: 17097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,33.5 + parent: 2 + - uid: 17098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,33.5 + parent: 2 + - uid: 17099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,33.5 + parent: 2 + - uid: 17100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,33.5 + parent: 2 + - uid: 17101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,34.5 + parent: 2 + - uid: 17102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,40.5 + parent: 2 + - uid: 17103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,39.5 + parent: 2 + - uid: 17104 + components: + - type: Transform + pos: 67.5,26.5 + parent: 2 + - uid: 17105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,32.5 + parent: 2 + - uid: 17106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,40.5 + parent: 2 + - uid: 17107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,33.5 + parent: 2 + - uid: 17108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,40.5 + parent: 2 + - uid: 17109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,40.5 + parent: 2 + - uid: 17110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,40.5 + parent: 2 + - uid: 17111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,40.5 + parent: 2 + - uid: 17112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,40.5 + parent: 2 + - uid: 17113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,38.5 + parent: 2 + - uid: 17114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,35.5 + parent: 2 + - uid: 17115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,37.5 + parent: 2 + - uid: 17116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,36.5 + parent: 2 + - uid: 17117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,40.5 + parent: 2 + - uid: 17118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,40.5 + parent: 2 + - uid: 17119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,40.5 + parent: 2 + - uid: 17120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,39.5 + parent: 2 + - uid: 17121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,38.5 + parent: 2 + - uid: 17122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,36.5 + parent: 2 + - uid: 17123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,37.5 + parent: 2 + - uid: 17124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,35.5 + parent: 2 + - uid: 17125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,34.5 + parent: 2 + - uid: 17126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,33.5 + parent: 2 + - uid: 17127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,33.5 + parent: 2 + - uid: 17128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,33.5 + parent: 2 + - uid: 17129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,73.5 + parent: 2 + - uid: 17130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,73.5 + parent: 2 + - uid: 17131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,73.5 + parent: 2 + - uid: 17132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,73.5 + parent: 2 + - uid: 17133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,73.5 + parent: 2 + - uid: 17134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,73.5 + parent: 2 + - uid: 17136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-9.5 + parent: 2 + - uid: 17137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-13.5 + parent: 2 + - uid: 17138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-13.5 + parent: 2 + - uid: 17139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,26.5 + parent: 2 + - uid: 17140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,30.5 + parent: 2 + - uid: 17141 + components: + - type: Transform + pos: 2.5,31.5 + parent: 2 + - uid: 17142 + components: + - type: Transform + pos: 2.5,35.5 + parent: 2 + - uid: 17143 + components: + - type: Transform + pos: -24.5,21.5 + parent: 2 + - uid: 17144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-6.5 + parent: 2 + - uid: 17145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-6.5 + parent: 2 + - uid: 17146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-6.5 + parent: 2 + - uid: 17147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-6.5 + parent: 2 + - uid: 17148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 2 + - uid: 17149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-6.5 + parent: 2 + - uid: 17150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-6.5 + parent: 2 + - uid: 17151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-7.5 + parent: 2 + - uid: 17152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-7.5 + parent: 2 + - uid: 17153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-8.5 + parent: 2 + - uid: 17154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-9.5 + parent: 2 + - uid: 17155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-10.5 + parent: 2 + - uid: 17156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-11.5 + parent: 2 + - uid: 17157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-12.5 + parent: 2 + - uid: 17158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-13.5 + parent: 2 + - uid: 17159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-14.5 + parent: 2 + - uid: 17160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-8.5 + parent: 2 + - uid: 17161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-15.5 + parent: 2 + - uid: 17162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-15.5 + parent: 2 + - uid: 17163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-16.5 + parent: 2 + - uid: 17164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-16.5 + parent: 2 + - uid: 17165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-16.5 + parent: 2 + - uid: 17166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-16.5 + parent: 2 + - uid: 17167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-16.5 + parent: 2 + - uid: 17168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-16.5 + parent: 2 + - uid: 17169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-16.5 + parent: 2 + - uid: 17170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-16.5 + parent: 2 + - uid: 17171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-16.5 + parent: 2 + - uid: 17172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-16.5 + parent: 2 + - uid: 17173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-15.5 + parent: 2 + - uid: 17174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-15.5 + parent: 2 + - uid: 17175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-15.5 + parent: 2 + - uid: 17176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-15.5 + parent: 2 + - uid: 17177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-15.5 + parent: 2 + - uid: 17178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-15.5 + parent: 2 + - uid: 17179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-15.5 + parent: 2 + - uid: 17180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-15.5 + parent: 2 + - uid: 17181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-15.5 + parent: 2 + - uid: 17182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-14.5 + parent: 2 + - uid: 17183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-14.5 + parent: 2 + - uid: 17184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-13.5 + parent: 2 + - uid: 17185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-12.5 + parent: 2 + - uid: 17186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-11.5 + parent: 2 + - uid: 17187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-10.5 + parent: 2 + - uid: 17188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-9.5 + parent: 2 + - uid: 17189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-8.5 + parent: 2 + - uid: 17190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-8.5 + parent: 2 + - uid: 17191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-7.5 + parent: 2 + - uid: 17192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-7.5 + parent: 2 + - uid: 17193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-7.5 + parent: 2 + - uid: 17194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-7.5 + parent: 2 + - uid: 17195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-7.5 + parent: 2 + - uid: 17196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-7.5 + parent: 2 + - uid: 17197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-7.5 + parent: 2 + - uid: 17198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-7.5 + parent: 2 + - uid: 17199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-7.5 + parent: 2 + - uid: 17200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-9.5 + parent: 2 + - uid: 17201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-8.5 + parent: 2 + - uid: 17202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-9.5 + parent: 2 + - uid: 17203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-14.5 + parent: 2 + - uid: 17204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-14.5 + parent: 2 + - uid: 17205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-13.5 + parent: 2 + - uid: 17206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-13.5 + parent: 2 + - uid: 17207 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 2 + - uid: 17208 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 2 + - uid: 17209 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 2 + - uid: 17210 + components: + - type: Transform + pos: 33.5,-14.5 + parent: 2 + - uid: 17211 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 2 + - uid: 17212 + components: + - type: Transform + pos: 34.5,-14.5 + parent: 2 + - uid: 17213 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 2 + - uid: 17214 + components: + - type: Transform + pos: 35.5,-14.5 + parent: 2 + - uid: 17215 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 2 + - uid: 17216 + components: + - type: Transform + pos: 36.5,-14.5 + parent: 2 + - uid: 17217 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 2 + - uid: 17218 + components: + - type: Transform + pos: 37.5,-14.5 + parent: 2 + - uid: 17219 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 2 + - uid: 17220 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - uid: 17221 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 2 + - uid: 17222 + components: + - type: Transform + pos: 39.5,-13.5 + parent: 2 + - uid: 17223 + components: + - type: Transform + pos: 39.5,-12.5 + parent: 2 + - uid: 17224 + components: + - type: Transform + pos: 39.5,-11.5 + parent: 2 + - uid: 17225 + components: + - type: Transform + pos: 39.5,-10.5 + parent: 2 + - uid: 17226 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 2 + - uid: 17227 + components: + - type: Transform + pos: 39.5,-8.5 + parent: 2 + - uid: 17228 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 2 + - uid: 17229 + components: + - type: Transform + pos: 38.5,-12.5 + parent: 2 + - uid: 17230 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 2 + - uid: 17231 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - uid: 17232 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 17233 + components: + - type: Transform + pos: 38.5,-8.5 + parent: 2 + - uid: 17234 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 17235 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - uid: 17236 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 + - uid: 17237 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - uid: 17238 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 2 + - uid: 17239 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 17240 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 + - uid: 17241 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 + - uid: 17242 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 2 + - uid: 17243 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 2 + - uid: 17244 + components: + - type: Transform + pos: 38.5,-7.5 + parent: 2 + - uid: 17247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,67.5 + parent: 2 + - uid: 17340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,71.5 + parent: 2 + - uid: 17820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,74.5 + parent: 2 + - uid: 17870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,75.5 + parent: 2 + - uid: 18248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,61.5 + parent: 2 + - uid: 18646 + components: + - type: Transform + pos: -5.5,22.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 6325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,48.5 + parent: 2 + - uid: 8535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,80.5 + parent: 2 + - uid: 8536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,80.5 + parent: 2 + - uid: 8537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,80.5 + parent: 2 + - uid: 8538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,80.5 + parent: 2 + - uid: 9120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,80.5 + parent: 2 + - uid: 9532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,78.5 + parent: 2 + - uid: 12573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,72.5 + parent: 2 + - uid: 13972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,74.5 + parent: 2 + - uid: 13973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,76.5 + parent: 2 + - uid: 17245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,70.5 + parent: 2 + - uid: 17250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,68.5 + parent: 2 + - uid: 17251 + components: + - type: Transform + pos: -35.5,65.5 + parent: 2 + - uid: 17252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,47.5 + parent: 2 + - uid: 17253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-9.5 + parent: 2 + - uid: 17254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-7.5 + parent: 2 + - uid: 17255 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 2 + - uid: 17256 + components: + - type: Transform + pos: -34.5,65.5 + parent: 2 + - uid: 17257 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 17258 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 17259 + components: + - type: Transform + pos: -13.5,4.5 + parent: 2 + - uid: 17260 + components: + - type: Transform + pos: -15.5,4.5 + parent: 2 + - uid: 17261 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - uid: 17262 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 17263 + components: + - type: Transform + pos: -8.5,6.5 + parent: 2 + - uid: 17264 + components: + - type: Transform + pos: -8.5,7.5 + parent: 2 + - uid: 17265 + components: + - type: Transform + pos: -8.5,8.5 + parent: 2 + - uid: 17266 + components: + - type: Transform + pos: -9.5,8.5 + parent: 2 + - uid: 17267 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 17268 + components: + - type: Transform + pos: -7.5,9.5 + parent: 2 + - uid: 17269 + components: + - type: Transform + pos: -6.5,9.5 + parent: 2 + - uid: 17270 + components: + - type: Transform + pos: -5.5,9.5 + parent: 2 + - uid: 17271 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - uid: 17272 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 17273 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 17274 + components: + - type: Transform + pos: -4.5,4.5 + parent: 2 + - uid: 17275 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 17276 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 + - uid: 17277 + components: + - type: Transform + pos: -12.5,8.5 + parent: 2 + - uid: 17278 + components: + - type: Transform + pos: -13.5,10.5 + parent: 2 + - uid: 17279 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 + - uid: 17280 + components: + - type: Transform + pos: -17.5,9.5 + parent: 2 + - uid: 17281 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 17282 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - uid: 17283 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 17284 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 17285 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 + - uid: 17286 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 17287 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 17288 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 17289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,22.5 + parent: 2 + - uid: 17290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,22.5 + parent: 2 + - uid: 17291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,23.5 + parent: 2 + - uid: 17292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,24.5 + parent: 2 + - uid: 17293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,24.5 + parent: 2 + - uid: 17294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,22.5 + parent: 2 + - uid: 17295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,22.5 + parent: 2 + - uid: 17296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,22.5 + parent: 2 + - uid: 17297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,31.5 + parent: 2 + - uid: 17298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,32.5 + parent: 2 + - uid: 17299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,36.5 + parent: 2 + - uid: 17300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-1.5 + parent: 2 + - uid: 17301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,22.5 + parent: 2 + - uid: 17302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,19.5 + parent: 2 + - uid: 17303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,20.5 + parent: 2 + - uid: 17304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,18.5 + parent: 2 + - uid: 17305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,16.5 + parent: 2 + - uid: 17306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,15.5 + parent: 2 + - uid: 17307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,14.5 + parent: 2 + - uid: 17308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,13.5 + parent: 2 + - uid: 17309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,12.5 + parent: 2 + - uid: 17310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,10.5 + parent: 2 + - uid: 17311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,9.5 + parent: 2 + - uid: 17312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,8.5 + parent: 2 + - uid: 17313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,5.5 + parent: 2 + - uid: 17314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,4.5 + parent: 2 + - uid: 17315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,4.5 + parent: 2 + - uid: 17316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,4.5 + parent: 2 + - uid: 17317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,4.5 + parent: 2 + - uid: 17318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,4.5 + parent: 2 + - uid: 17319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,4.5 + parent: 2 + - uid: 17320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,3.5 + parent: 2 + - uid: 17321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-0.5 + parent: 2 + - uid: 17322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,0.5 + parent: 2 + - uid: 17323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,1.5 + parent: 2 + - uid: 17324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-1.5 + parent: 2 + - uid: 17325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-1.5 + parent: 2 + - uid: 17326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-1.5 + parent: 2 + - uid: 17327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-1.5 + parent: 2 + - uid: 17328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,14.5 + parent: 2 + - uid: 17329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,14.5 + parent: 2 + - uid: 17330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,13.5 + parent: 2 + - uid: 17331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,46.5 + parent: 2 + - uid: 17332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,46.5 + parent: 2 + - uid: 17333 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 + - uid: 17334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,41.5 + parent: 2 + - uid: 17335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,53.5 + parent: 2 + - uid: 17336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,51.5 + parent: 2 + - uid: 17338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,55.5 + parent: 2 + - uid: 17339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,57.5 + parent: 2 + - uid: 17341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,75.5 + parent: 2 + - uid: 17342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,67.5 + parent: 2 + - uid: 17343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,67.5 + parent: 2 + - uid: 17344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,65.5 + parent: 2 + - uid: 17345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,65.5 + parent: 2 + - uid: 17346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,65.5 + parent: 2 + - uid: 17347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,65.5 + parent: 2 + - uid: 17348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,69.5 + parent: 2 + - uid: 17349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,69.5 + parent: 2 + - uid: 17350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,69.5 + parent: 2 + - uid: 17351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,69.5 + parent: 2 + - uid: 17352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,65.5 + parent: 2 + - uid: 17353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,66.5 + parent: 2 + - uid: 17354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,68.5 + parent: 2 + - uid: 17355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,69.5 + parent: 2 + - uid: 17356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,73.5 + parent: 2 + - uid: 17357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,72.5 + parent: 2 + - uid: 17358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,69.5 + parent: 2 + - uid: 17359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,69.5 + parent: 2 + - uid: 17360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,69.5 + parent: 2 + - uid: 17361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,69.5 + parent: 2 + - uid: 17362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,69.5 + parent: 2 + - uid: 17363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,70.5 + parent: 2 + - uid: 17364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,71.5 + parent: 2 + - uid: 17365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,68.5 + parent: 2 + - uid: 17366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,66.5 + parent: 2 + - uid: 17367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,65.5 + parent: 2 + - uid: 17368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,65.5 + parent: 2 + - uid: 17369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,65.5 + parent: 2 + - uid: 17370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,65.5 + parent: 2 + - uid: 17371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,66.5 + parent: 2 + - uid: 17372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,67.5 + parent: 2 + - uid: 17373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,68.5 + parent: 2 + - uid: 17374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,65.5 + parent: 2 + - uid: 17375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,65.5 + parent: 2 + - uid: 17376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,63.5 + parent: 2 + - uid: 17377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,62.5 + parent: 2 + - uid: 17378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,57.5 + parent: 2 + - uid: 17379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,58.5 + parent: 2 + - uid: 17380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,59.5 + parent: 2 + - uid: 17381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,60.5 + parent: 2 + - uid: 17382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,61.5 + parent: 2 + - uid: 17383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,54.5 + parent: 2 + - uid: 17384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,51.5 + parent: 2 + - uid: 17385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,50.5 + parent: 2 + - uid: 17386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,50.5 + parent: 2 + - uid: 17387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,16.5 + parent: 2 + - uid: 17388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,16.5 + parent: 2 + - uid: 17389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,16.5 + parent: 2 + - uid: 17390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,16.5 + parent: 2 + - uid: 17391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,17.5 + parent: 2 + - uid: 17392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,18.5 + parent: 2 + - uid: 17393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,9.5 + parent: 2 + - uid: 17394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,9.5 + parent: 2 + - uid: 17395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,8.5 + parent: 2 + - uid: 17396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,7.5 + parent: 2 + - uid: 17397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,7.5 + parent: 2 + - uid: 17398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,13.5 + parent: 2 + - uid: 17399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 2 + - uid: 17400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 2 + - uid: 17401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,16.5 + parent: 2 + - uid: 17402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,16.5 + parent: 2 + - uid: 17403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,16.5 + parent: 2 + - uid: 17404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,18.5 + parent: 2 + - uid: 17405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,18.5 + parent: 2 + - uid: 17406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,18.5 + parent: 2 + - uid: 17407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,18.5 + parent: 2 + - uid: 17408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,16.5 + parent: 2 + - uid: 17409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,15.5 + parent: 2 + - uid: 17410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,7.5 + parent: 2 + - uid: 17411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,7.5 + parent: 2 + - uid: 17412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,7.5 + parent: 2 + - uid: 17413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,7.5 + parent: 2 + - uid: 17414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,7.5 + parent: 2 + - uid: 17415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,8.5 + parent: 2 + - uid: 17416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,8.5 + parent: 2 + - uid: 17417 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - uid: 17418 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - uid: 17419 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 + - uid: 17420 + components: + - type: Transform + pos: 29.5,15.5 + parent: 2 + - uid: 17421 + components: + - type: Transform + pos: 31.5,18.5 + parent: 2 + - uid: 17422 + components: + - type: Transform + pos: 30.5,18.5 + parent: 2 + - uid: 17423 + components: + - type: Transform + pos: 29.5,18.5 + parent: 2 + - uid: 17424 + components: + - type: Transform + pos: 28.5,18.5 + parent: 2 + - uid: 17425 + components: + - type: Transform + pos: 11.5,1.5 + parent: 2 + - uid: 17426 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 17427 + components: + - type: Transform + pos: 11.5,2.5 + parent: 2 + - uid: 17428 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 17429 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - uid: 17430 + components: + - type: Transform + pos: 11.5,6.5 + parent: 2 + - uid: 17431 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 17432 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - uid: 17433 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 17434 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 17435 + components: + - type: Transform + pos: 13.5,1.5 + parent: 2 + - uid: 17436 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 + - uid: 17437 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 17438 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 17439 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 17440 + components: + - type: Transform + pos: 16.5,4.5 + parent: 2 + - uid: 17441 + components: + - type: Transform + pos: 17.5,4.5 + parent: 2 + - uid: 17442 + components: + - type: Transform + pos: 17.5,3.5 + parent: 2 + - uid: 17443 + components: + - type: Transform + pos: 17.5,2.5 + parent: 2 + - uid: 17444 + components: + - type: Transform + pos: 17.5,1.5 + parent: 2 + - uid: 17445 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 2 + - uid: 17446 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 17447 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - uid: 17448 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - uid: 17449 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 17451 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 + - uid: 17452 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 + - uid: 17453 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 2 + - uid: 17454 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 2 + - uid: 17455 + components: + - type: Transform + pos: 33.5,1.5 + parent: 2 + - uid: 17456 + components: + - type: Transform + pos: 33.5,2.5 + parent: 2 + - uid: 17457 + components: + - type: Transform + pos: 34.5,2.5 + parent: 2 + - uid: 17458 + components: + - type: Transform + pos: 34.5,21.5 + parent: 2 + - uid: 17459 + components: + - type: Transform + pos: 58.5,27.5 + parent: 2 + - uid: 17460 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - uid: 17461 + components: + - type: Transform + pos: 57.5,31.5 + parent: 2 + - uid: 17462 + components: + - type: Transform + pos: 57.5,32.5 + parent: 2 + - uid: 17463 + components: + - type: Transform + pos: 58.5,32.5 + parent: 2 + - uid: 17464 + components: + - type: Transform + pos: 62.5,32.5 + parent: 2 + - uid: 17465 + components: + - type: Transform + pos: 63.5,32.5 + parent: 2 + - uid: 17466 + components: + - type: Transform + pos: 63.5,31.5 + parent: 2 + - uid: 17467 + components: + - type: Transform + pos: 59.5,27.5 + parent: 2 + - uid: 17468 + components: + - type: Transform + pos: 60.5,27.5 + parent: 2 + - uid: 17469 + components: + - type: Transform + pos: 63.5,28.5 + parent: 2 + - uid: 17470 + components: + - type: Transform + pos: 61.5,27.5 + parent: 2 + - uid: 17471 + components: + - type: Transform + pos: 63.5,27.5 + parent: 2 + - uid: 17472 + components: + - type: Transform + pos: 61.5,24.5 + parent: 2 + - uid: 17473 + components: + - type: Transform + pos: 61.5,26.5 + parent: 2 + - uid: 17474 + components: + - type: Transform + pos: 61.5,-3.5 + parent: 2 + - uid: 17475 + components: + - type: Transform + pos: 63.5,-3.5 + parent: 2 + - uid: 17476 + components: + - type: Transform + pos: 65.5,-3.5 + parent: 2 + - uid: 17477 + components: + - type: Transform + pos: 68.5,-3.5 + parent: 2 + - uid: 17478 + components: + - type: Transform + pos: 69.5,-3.5 + parent: 2 + - uid: 17479 + components: + - type: Transform + pos: 41.5,-5.5 + parent: 2 + - uid: 17480 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 2 + - uid: 17481 + components: + - type: Transform + pos: 42.5,-6.5 + parent: 2 + - uid: 17482 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 17483 + components: + - type: Transform + pos: 43.5,-7.5 + parent: 2 + - uid: 17484 + components: + - type: Transform + pos: 43.5,-9.5 + parent: 2 + - uid: 17485 + components: + - type: Transform + pos: 46.5,-9.5 + parent: 2 + - uid: 17486 + components: + - type: Transform + pos: 46.5,-10.5 + parent: 2 + - uid: 17487 + components: + - type: Transform + pos: 56.5,-10.5 + parent: 2 + - uid: 17488 + components: + - type: Transform + pos: 56.5,-9.5 + parent: 2 + - uid: 17489 + components: + - type: Transform + pos: 56.5,-8.5 + parent: 2 + - uid: 17490 + components: + - type: Transform + pos: 60.5,-5.5 + parent: 2 + - uid: 17491 + components: + - type: Transform + pos: 60.5,-7.5 + parent: 2 + - uid: 17492 + components: + - type: Transform + pos: 11.5,50.5 + parent: 2 + - uid: 17493 + components: + - type: Transform + pos: 14.5,50.5 + parent: 2 + - uid: 17494 + components: + - type: Transform + pos: 15.5,50.5 + parent: 2 + - uid: 17495 + components: + - type: Transform + pos: 15.5,51.5 + parent: 2 + - uid: 17496 + components: + - type: Transform + pos: 16.5,50.5 + parent: 2 + - uid: 17497 + components: + - type: Transform + pos: 15.5,54.5 + parent: 2 + - uid: 17498 + components: + - type: Transform + pos: 14.5,54.5 + parent: 2 + - uid: 17499 + components: + - type: Transform + pos: 13.5,54.5 + parent: 2 + - uid: 17500 + components: + - type: Transform + pos: 15.5,55.5 + parent: 2 + - uid: 17501 + components: + - type: Transform + pos: 15.5,56.5 + parent: 2 + - uid: 17502 + components: + - type: Transform + pos: 13.5,56.5 + parent: 2 + - uid: 17503 + components: + - type: Transform + pos: 15.5,57.5 + parent: 2 + - uid: 17504 + components: + - type: Transform + pos: 15.5,58.5 + parent: 2 + - uid: 17505 + components: + - type: Transform + pos: 14.5,58.5 + parent: 2 + - uid: 17506 + components: + - type: Transform + pos: 13.5,58.5 + parent: 2 + - uid: 17507 + components: + - type: Transform + pos: 12.5,58.5 + parent: 2 + - uid: 17508 + components: + - type: Transform + pos: 11.5,58.5 + parent: 2 + - uid: 17509 + components: + - type: Transform + pos: 9.5,58.5 + parent: 2 + - uid: 17510 + components: + - type: Transform + pos: 8.5,58.5 + parent: 2 + - uid: 17511 + components: + - type: Transform + pos: 15.5,59.5 + parent: 2 + - uid: 17512 + components: + - type: Transform + pos: 15.5,60.5 + parent: 2 + - uid: 17513 + components: + - type: Transform + pos: 14.5,60.5 + parent: 2 + - uid: 17514 + components: + - type: Transform + pos: 14.5,62.5 + parent: 2 + - uid: 17515 + components: + - type: Transform + pos: 14.5,63.5 + parent: 2 + - uid: 17516 + components: + - type: Transform + pos: 13.5,63.5 + parent: 2 + - uid: 17517 + components: + - type: Transform + pos: 12.5,63.5 + parent: 2 + - uid: 17518 + components: + - type: Transform + pos: 12.5,62.5 + parent: 2 + - uid: 17519 + components: + - type: Transform + pos: 11.5,62.5 + parent: 2 + - uid: 17520 + components: + - type: Transform + pos: 10.5,62.5 + parent: 2 + - uid: 17521 + components: + - type: Transform + pos: 9.5,62.5 + parent: 2 + - uid: 17522 + components: + - type: Transform + pos: 8.5,62.5 + parent: 2 + - uid: 17523 + components: + - type: Transform + pos: 14.5,64.5 + parent: 2 + - uid: 17524 + components: + - type: Transform + pos: 15.5,64.5 + parent: 2 + - uid: 17525 + components: + - type: Transform + pos: 17.5,64.5 + parent: 2 + - uid: 17526 + components: + - type: Transform + pos: 18.5,64.5 + parent: 2 + - uid: 17527 + components: + - type: Transform + pos: 19.5,64.5 + parent: 2 + - uid: 17528 + components: + - type: Transform + pos: 16.5,60.5 + parent: 2 + - uid: 17529 + components: + - type: Transform + pos: 17.5,60.5 + parent: 2 + - uid: 17530 + components: + - type: Transform + pos: 18.5,60.5 + parent: 2 + - uid: 17531 + components: + - type: Transform + pos: 19.5,60.5 + parent: 2 + - uid: 17532 + components: + - type: Transform + pos: 19.5,61.5 + parent: 2 + - uid: 17533 + components: + - type: Transform + pos: 19.5,62.5 + parent: 2 + - uid: 17534 + components: + - type: Transform + pos: 21.5,61.5 + parent: 2 + - uid: 17535 + components: + - type: Transform + pos: 22.5,61.5 + parent: 2 + - uid: 17536 + components: + - type: Transform + pos: 22.5,62.5 + parent: 2 + - uid: 17537 + components: + - type: Transform + pos: 22.5,63.5 + parent: 2 + - uid: 17538 + components: + - type: Transform + pos: 22.5,64.5 + parent: 2 + - uid: 17539 + components: + - type: Transform + pos: 23.5,64.5 + parent: 2 + - uid: 17540 + components: + - type: Transform + pos: 19.5,66.5 + parent: 2 + - uid: 17541 + components: + - type: Transform + pos: 15.5,72.5 + parent: 2 + - uid: 17542 + components: + - type: Transform + pos: 15.5,71.5 + parent: 2 + - uid: 17543 + components: + - type: Transform + pos: 15.5,70.5 + parent: 2 + - uid: 17544 + components: + - type: Transform + pos: 15.5,67.5 + parent: 2 + - uid: 17545 + components: + - type: Transform + pos: 15.5,68.5 + parent: 2 + - uid: 17546 + components: + - type: Transform + pos: 16.5,68.5 + parent: 2 + - uid: 17547 + components: + - type: Transform + pos: 16.5,57.5 + parent: 2 + - uid: 17548 + components: + - type: Transform + pos: 18.5,57.5 + parent: 2 + - uid: 17549 + components: + - type: Transform + pos: 19.5,57.5 + parent: 2 + - uid: 17550 + components: + - type: Transform + pos: 19.5,58.5 + parent: 2 + - uid: 17551 + components: + - type: Transform + pos: 19.5,59.5 + parent: 2 + - uid: 17552 + components: + - type: Transform + pos: 20.5,59.5 + parent: 2 + - uid: 17553 + components: + - type: Transform + pos: 21.5,59.5 + parent: 2 + - uid: 17554 + components: + - type: Transform + pos: 22.5,59.5 + parent: 2 + - uid: 17555 + components: + - type: Transform + pos: 23.5,59.5 + parent: 2 + - uid: 17556 + components: + - type: Transform + pos: 23.5,58.5 + parent: 2 + - uid: 17557 + components: + - type: Transform + pos: 25.5,58.5 + parent: 2 + - uid: 17558 + components: + - type: Transform + pos: 18.5,50.5 + parent: 2 + - uid: 17559 + components: + - type: Transform + pos: 20.5,50.5 + parent: 2 + - uid: 17560 + components: + - type: Transform + pos: 22.5,50.5 + parent: 2 + - uid: 17561 + components: + - type: Transform + pos: 25.5,50.5 + parent: 2 + - uid: 17562 + components: + - type: Transform + pos: 25.5,65.5 + parent: 2 + - uid: 17563 + components: + - type: Transform + pos: 25.5,64.5 + parent: 2 + - uid: 17564 + components: + - type: Transform + pos: 25.5,61.5 + parent: 2 + - uid: 17565 + components: + - type: Transform + pos: 25.5,62.5 + parent: 2 + - uid: 17566 + components: + - type: Transform + pos: 25.5,63.5 + parent: 2 + - uid: 17567 + components: + - type: Transform + pos: 26.5,61.5 + parent: 2 + - uid: 17568 + components: + - type: Transform + pos: 29.5,61.5 + parent: 2 + - uid: 17569 + components: + - type: Transform + pos: 30.5,61.5 + parent: 2 + - uid: 17570 + components: + - type: Transform + pos: 35.5,36.5 + parent: 2 + - uid: 17571 + components: + - type: Transform + pos: 34.5,36.5 + parent: 2 + - uid: 17572 + components: + - type: Transform + pos: 34.5,37.5 + parent: 2 + - uid: 17573 + components: + - type: Transform + pos: 34.5,40.5 + parent: 2 + - uid: 17574 + components: + - type: Transform + pos: 34.5,41.5 + parent: 2 + - uid: 17575 + components: + - type: Transform + pos: 34.5,42.5 + parent: 2 + - uid: 17576 + components: + - type: Transform + pos: 34.5,46.5 + parent: 2 + - uid: 17577 + components: + - type: Transform + pos: 35.5,46.5 + parent: 2 + - uid: 17578 + components: + - type: Transform + pos: 38.5,46.5 + parent: 2 + - uid: 17579 + components: + - type: Transform + pos: 39.5,46.5 + parent: 2 + - uid: 17580 + components: + - type: Transform + pos: 40.5,46.5 + parent: 2 + - uid: 17581 + components: + - type: Transform + pos: 39.5,45.5 + parent: 2 + - uid: 17582 + components: + - type: Transform + pos: 39.5,50.5 + parent: 2 + - uid: 17583 + components: + - type: Transform + pos: 41.5,50.5 + parent: 2 + - uid: 17584 + components: + - type: Transform + pos: 42.5,50.5 + parent: 2 + - uid: 17585 + components: + - type: Transform + pos: 43.5,50.5 + parent: 2 + - uid: 17586 + components: + - type: Transform + pos: 43.5,51.5 + parent: 2 + - uid: 17587 + components: + - type: Transform + pos: 43.5,52.5 + parent: 2 + - uid: 17588 + components: + - type: Transform + pos: 44.5,52.5 + parent: 2 + - uid: 17589 + components: + - type: Transform + pos: 45.5,52.5 + parent: 2 + - uid: 17590 + components: + - type: Transform + pos: 45.5,53.5 + parent: 2 + - uid: 17591 + components: + - type: Transform + pos: 45.5,54.5 + parent: 2 + - uid: 17592 + components: + - type: Transform + pos: 45.5,55.5 + parent: 2 + - uid: 17593 + components: + - type: Transform + pos: 43.5,55.5 + parent: 2 + - uid: 17594 + components: + - type: Transform + pos: 44.5,55.5 + parent: 2 + - uid: 17595 + components: + - type: Transform + pos: 41.5,55.5 + parent: 2 + - uid: 17596 + components: + - type: Transform + pos: 40.5,55.5 + parent: 2 + - uid: 17597 + components: + - type: Transform + pos: 39.5,55.5 + parent: 2 + - uid: 17598 + components: + - type: Transform + pos: 43.5,49.5 + parent: 2 + - uid: 17599 + components: + - type: Transform + pos: 43.5,47.5 + parent: 2 + - uid: 17600 + components: + - type: Transform + pos: 43.5,46.5 + parent: 2 + - uid: 17601 + components: + - type: Transform + pos: 42.5,46.5 + parent: 2 + - uid: 17602 + components: + - type: Transform + pos: 43.5,45.5 + parent: 2 + - uid: 17603 + components: + - type: Transform + pos: 44.5,46.5 + parent: 2 + - uid: 17604 + components: + - type: Transform + pos: 45.5,46.5 + parent: 2 + - uid: 17605 + components: + - type: Transform + pos: 45.5,47.5 + parent: 2 + - uid: 17606 + components: + - type: Transform + pos: 45.5,48.5 + parent: 2 + - uid: 17607 + components: + - type: Transform + pos: 45.5,49.5 + parent: 2 + - uid: 17608 + components: + - type: Transform + pos: 48.5,50.5 + parent: 2 + - uid: 17609 + components: + - type: Transform + pos: 46.5,49.5 + parent: 2 + - uid: 17610 + components: + - type: Transform + pos: 48.5,49.5 + parent: 2 + - uid: 17611 + components: + - type: Transform + pos: 48.5,51.5 + parent: 2 + - uid: 17612 + components: + - type: Transform + pos: 48.5,53.5 + parent: 2 + - uid: 17613 + components: + - type: Transform + pos: 48.5,54.5 + parent: 2 + - uid: 17614 + components: + - type: Transform + pos: 48.5,55.5 + parent: 2 + - uid: 17615 + components: + - type: Transform + pos: 49.5,55.5 + parent: 2 + - uid: 17616 + components: + - type: Transform + pos: 50.5,55.5 + parent: 2 + - uid: 17617 + components: + - type: Transform + pos: 52.5,55.5 + parent: 2 + - uid: 17618 + components: + - type: Transform + pos: 51.5,55.5 + parent: 2 + - uid: 17619 + components: + - type: Transform + pos: 52.5,54.5 + parent: 2 + - uid: 17620 + components: + - type: Transform + pos: 52.5,52.5 + parent: 2 + - uid: 17621 + components: + - type: Transform + pos: 52.5,51.5 + parent: 2 + - uid: 17622 + components: + - type: Transform + pos: 51.5,51.5 + parent: 2 + - uid: 17623 + components: + - type: Transform + pos: 51.5,50.5 + parent: 2 + - uid: 17624 + components: + - type: Transform + pos: 51.5,49.5 + parent: 2 + - uid: 17625 + components: + - type: Transform + pos: 50.5,49.5 + parent: 2 + - uid: 17626 + components: + - type: Transform + pos: 49.5,49.5 + parent: 2 + - uid: 17627 + components: + - type: Transform + pos: 36.5,61.5 + parent: 2 + - uid: 17628 + components: + - type: Transform + pos: 37.5,61.5 + parent: 2 + - uid: 17629 + components: + - type: Transform + pos: 40.5,61.5 + parent: 2 + - uid: 17630 + components: + - type: Transform + pos: 40.5,60.5 + parent: 2 + - uid: 17631 + components: + - type: Transform + pos: 40.5,59.5 + parent: 2 + - uid: 17632 + components: + - type: Transform + pos: 42.5,61.5 + parent: 2 + - uid: 17633 + components: + - type: Transform + pos: 43.5,61.5 + parent: 2 + - uid: 17634 + components: + - type: Transform + pos: 44.5,61.5 + parent: 2 + - uid: 17635 + components: + - type: Transform + pos: 45.5,61.5 + parent: 2 + - uid: 17636 + components: + - type: Transform + pos: 46.5,61.5 + parent: 2 + - uid: 17637 + components: + - type: Transform + pos: 46.5,60.5 + parent: 2 + - uid: 17638 + components: + - type: Transform + pos: 46.5,59.5 + parent: 2 + - uid: 17639 + components: + - type: Transform + pos: 46.5,58.5 + parent: 2 + - uid: 17640 + components: + - type: Transform + pos: 47.5,58.5 + parent: 2 + - uid: 17641 + components: + - type: Transform + pos: 49.5,58.5 + parent: 2 + - uid: 17642 + components: + - type: Transform + pos: 42.5,57.5 + parent: 2 + - uid: 17643 + components: + - type: Transform + pos: 43.5,57.5 + parent: 2 + - uid: 17644 + components: + - type: Transform + pos: 44.5,57.5 + parent: 2 + - uid: 17645 + components: + - type: Transform + pos: 45.5,57.5 + parent: 2 + - uid: 17646 + components: + - type: Transform + pos: 46.5,57.5 + parent: 2 + - uid: 17647 + components: + - type: Transform + pos: 58.5,51.5 + parent: 2 + - uid: 17648 + components: + - type: Transform + pos: 57.5,55.5 + parent: 2 + - uid: 17649 + components: + - type: Transform + pos: 55.5,55.5 + parent: 2 + - uid: 17650 + components: + - type: Transform + pos: 54.5,56.5 + parent: 2 + - uid: 17651 + components: + - type: Transform + pos: 54.5,55.5 + parent: 2 + - uid: 17652 + components: + - type: Transform + pos: 46.5,46.5 + parent: 2 + - uid: 17653 + components: + - type: Transform + pos: 47.5,46.5 + parent: 2 + - uid: 17654 + components: + - type: Transform + pos: 49.5,46.5 + parent: 2 + - uid: 17655 + components: + - type: Transform + pos: 50.5,46.5 + parent: 2 + - uid: 17656 + components: + - type: Transform + pos: 51.5,46.5 + parent: 2 + - uid: 17657 + components: + - type: Transform + pos: 51.5,47.5 + parent: 2 + - uid: 17658 + components: + - type: Transform + pos: 51.5,48.5 + parent: 2 + - uid: 17659 + components: + - type: Transform + pos: 52.5,47.5 + parent: 2 + - uid: 17660 + components: + - type: Transform + pos: 53.5,47.5 + parent: 2 + - uid: 17661 + components: + - type: Transform + pos: 56.5,47.5 + parent: 2 + - uid: 17662 + components: + - type: Transform + pos: 56.5,48.5 + parent: 2 + - uid: 17663 + components: + - type: Transform + pos: 56.5,50.5 + parent: 2 + - uid: 17664 + components: + - type: Transform + pos: 56.5,51.5 + parent: 2 + - uid: 17665 + components: + - type: Transform + pos: 56.5,52.5 + parent: 2 + - uid: 17666 + components: + - type: Transform + pos: 55.5,52.5 + parent: 2 + - uid: 17667 + components: + - type: Transform + pos: 54.5,52.5 + parent: 2 + - uid: 17668 + components: + - type: Transform + pos: 53.5,52.5 + parent: 2 + - uid: 17669 + components: + - type: Transform + pos: 59.5,51.5 + parent: 2 + - uid: 17670 + components: + - type: Transform + pos: 59.5,50.5 + parent: 2 + - uid: 17671 + components: + - type: Transform + pos: 59.5,53.5 + parent: 2 + - uid: 17672 + components: + - type: Transform + pos: 59.5,54.5 + parent: 2 + - uid: 17673 + components: + - type: Transform + pos: 63.5,54.5 + parent: 2 + - uid: 17674 + components: + - type: Transform + pos: 63.5,53.5 + parent: 2 + - uid: 17675 + components: + - type: Transform + pos: 63.5,51.5 + parent: 2 + - uid: 17676 + components: + - type: Transform + pos: 63.5,52.5 + parent: 2 + - uid: 17677 + components: + - type: Transform + pos: 63.5,50.5 + parent: 2 + - uid: 17678 + components: + - type: Transform + pos: 60.5,49.5 + parent: 2 + - uid: 17679 + components: + - type: Transform + pos: 61.5,49.5 + parent: 2 + - uid: 17680 + components: + - type: Transform + pos: 62.5,49.5 + parent: 2 + - uid: 17681 + components: + - type: Transform + pos: 59.5,49.5 + parent: 2 + - uid: 17682 + components: + - type: Transform + pos: 63.5,49.5 + parent: 2 + - uid: 17683 + components: + - type: Transform + pos: 63.5,48.5 + parent: 2 + - uid: 17684 + components: + - type: Transform + pos: 63.5,46.5 + parent: 2 + - uid: 17685 + components: + - type: Transform + pos: 63.5,45.5 + parent: 2 + - uid: 17686 + components: + - type: Transform + pos: 61.5,45.5 + parent: 2 + - uid: 17687 + components: + - type: Transform + pos: 62.5,45.5 + parent: 2 + - uid: 17688 + components: + - type: Transform + pos: 59.5,45.5 + parent: 2 + - uid: 17689 + components: + - type: Transform + pos: 58.5,45.5 + parent: 2 + - uid: 17690 + components: + - type: Transform + pos: 58.5,46.5 + parent: 2 + - uid: 17691 + components: + - type: Transform + pos: 57.5,47.5 + parent: 2 + - uid: 17692 + components: + - type: Transform + pos: 58.5,47.5 + parent: 2 + - uid: 17693 + components: + - type: Transform + pos: 51.5,42.5 + parent: 2 + - uid: 17694 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 17695 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 17696 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 17697 + components: + - type: Transform + pos: 58.5,44.5 + parent: 2 + - uid: 17698 + components: + - type: Transform + pos: 58.5,43.5 + parent: 2 + - uid: 17699 + components: + - type: Transform + pos: 58.5,42.5 + parent: 2 + - uid: 17700 + components: + - type: Transform + pos: 58.5,41.5 + parent: 2 + - uid: 17701 + components: + - type: Transform + pos: 59.5,41.5 + parent: 2 + - uid: 17702 + components: + - type: Transform + pos: 60.5,41.5 + parent: 2 + - uid: 17703 + components: + - type: Transform + pos: 63.5,41.5 + parent: 2 + - uid: 17704 + components: + - type: Transform + pos: 63.5,42.5 + parent: 2 + - uid: 17705 + components: + - type: Transform + pos: 63.5,44.5 + parent: 2 + - uid: 17706 + components: + - type: Transform + pos: 63.5,43.5 + parent: 2 + - uid: 17707 + components: + - type: Transform + pos: 59.5,40.5 + parent: 2 + - uid: 17708 + components: + - type: Transform + pos: 58.5,36.5 + parent: 2 + - uid: 17709 + components: + - type: Transform + pos: 59.5,36.5 + parent: 2 + - uid: 17710 + components: + - type: Transform + pos: 60.5,36.5 + parent: 2 + - uid: 17711 + components: + - type: Transform + pos: 63.5,36.5 + parent: 2 + - uid: 17712 + components: + - type: Transform + pos: 62.5,36.5 + parent: 2 + - uid: 17713 + components: + - type: Transform + pos: 63.5,37.5 + parent: 2 + - uid: 17714 + components: + - type: Transform + pos: 63.5,38.5 + parent: 2 + - uid: 17715 + components: + - type: Transform + pos: 63.5,40.5 + parent: 2 + - uid: 17716 + components: + - type: Transform + pos: 63.5,39.5 + parent: 2 + - uid: 17717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,36.5 + parent: 2 + - uid: 17718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,41.5 + parent: 2 + - uid: 17719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,36.5 + parent: 2 + - uid: 17720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,36.5 + parent: 2 + - uid: 17721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,36.5 + parent: 2 + - uid: 17722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,37.5 + parent: 2 + - uid: 17723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,36.5 + parent: 2 + - uid: 17724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,38.5 + parent: 2 + - uid: 17725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,39.5 + parent: 2 + - uid: 17726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,40.5 + parent: 2 + - uid: 17727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,41.5 + parent: 2 + - uid: 17728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,41.5 + parent: 2 + - uid: 17729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,42.5 + parent: 2 + - uid: 17730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,43.5 + parent: 2 + - uid: 17731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,44.5 + parent: 2 + - uid: 17732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,36.5 + parent: 2 + - uid: 17733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,36.5 + parent: 2 + - uid: 17734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,42.5 + parent: 2 + - uid: 17735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,42.5 + parent: 2 + - uid: 17736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,42.5 + parent: 2 + - uid: 17737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,42.5 + parent: 2 + - uid: 17738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,41.5 + parent: 2 + - uid: 17739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,42.5 + parent: 2 + - uid: 17740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,41.5 + parent: 2 + - uid: 17741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,43.5 + parent: 2 + - uid: 17742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,44.5 + parent: 2 + - uid: 17743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,41.5 + parent: 2 + - uid: 17744 + components: + - type: Transform + pos: 79.5,54.5 + parent: 2 + - uid: 17745 + components: + - type: Transform + pos: 77.5,54.5 + parent: 2 + - uid: 17746 + components: + - type: Transform + pos: 76.5,54.5 + parent: 2 + - uid: 17747 + components: + - type: Transform + pos: 76.5,55.5 + parent: 2 + - uid: 17748 + components: + - type: Transform + pos: 76.5,57.5 + parent: 2 + - uid: 17749 + components: + - type: Transform + pos: 74.5,55.5 + parent: 2 + - uid: 17750 + components: + - type: Transform + pos: 73.5,55.5 + parent: 2 + - uid: 17751 + components: + - type: Transform + pos: 72.5,55.5 + parent: 2 + - uid: 17752 + components: + - type: Transform + pos: 72.5,56.5 + parent: 2 + - uid: 17753 + components: + - type: Transform + pos: 72.5,57.5 + parent: 2 + - uid: 17754 + components: + - type: Transform + pos: 80.5,52.5 + parent: 2 + - uid: 17755 + components: + - type: Transform + pos: 80.5,48.5 + parent: 2 + - uid: 17756 + components: + - type: Transform + pos: 78.5,52.5 + parent: 2 + - uid: 17757 + components: + - type: Transform + pos: 77.5,52.5 + parent: 2 + - uid: 17758 + components: + - type: Transform + pos: 77.5,51.5 + parent: 2 + - uid: 17759 + components: + - type: Transform + pos: 76.5,51.5 + parent: 2 + - uid: 17760 + components: + - type: Transform + pos: 77.5,50.5 + parent: 2 + - uid: 17761 + components: + - type: Transform + pos: 77.5,49.5 + parent: 2 + - uid: 17762 + components: + - type: Transform + pos: 77.5,48.5 + parent: 2 + - uid: 17763 + components: + - type: Transform + pos: 76.5,48.5 + parent: 2 + - uid: 17764 + components: + - type: Transform + pos: 78.5,48.5 + parent: 2 + - uid: 17765 + components: + - type: Transform + pos: 68.5,47.5 + parent: 2 + - uid: 17766 + components: + - type: Transform + pos: 67.5,47.5 + parent: 2 + - uid: 17767 + components: + - type: Transform + pos: 67.5,48.5 + parent: 2 + - uid: 17768 + components: + - type: Transform + pos: 67.5,49.5 + parent: 2 + - uid: 17769 + components: + - type: Transform + pos: 67.5,50.5 + parent: 2 + - uid: 17770 + components: + - type: Transform + pos: 67.5,51.5 + parent: 2 + - uid: 17771 + components: + - type: Transform + pos: 67.5,52.5 + parent: 2 + - uid: 17772 + components: + - type: Transform + pos: 67.5,53.5 + parent: 2 + - uid: 17773 + components: + - type: Transform + pos: 67.5,54.5 + parent: 2 + - uid: 17774 + components: + - type: Transform + pos: 68.5,53.5 + parent: 2 + - uid: 17775 + components: + - type: Transform + pos: 69.5,53.5 + parent: 2 + - uid: 17776 + components: + - type: Transform + pos: 70.5,53.5 + parent: 2 + - uid: 17777 + components: + - type: Transform + pos: 71.5,48.5 + parent: 2 + - uid: 17778 + components: + - type: Transform + pos: 71.5,49.5 + parent: 2 + - uid: 17779 + components: + - type: Transform + pos: 71.5,51.5 + parent: 2 + - uid: 17780 + components: + - type: Transform + pos: 71.5,52.5 + parent: 2 + - uid: 17781 + components: + - type: Transform + pos: 71.5,53.5 + parent: 2 + - uid: 17782 + components: + - type: Transform + pos: 72.5,53.5 + parent: 2 + - uid: 17783 + components: + - type: Transform + pos: 74.5,51.5 + parent: 2 + - uid: 17784 + components: + - type: Transform + pos: 73.5,51.5 + parent: 2 + - uid: 17785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,36.5 + parent: 2 + - uid: 17786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,36.5 + parent: 2 + - uid: 17787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,12.5 + parent: 2 + - uid: 17788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,12.5 + parent: 2 + - uid: 17789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,12.5 + parent: 2 + - uid: 17790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,13.5 + parent: 2 + - uid: 17791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,14.5 + parent: 2 + - uid: 17792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,15.5 + parent: 2 + - uid: 17793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,16.5 + parent: 2 + - uid: 17794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,17.5 + parent: 2 + - uid: 17795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,17.5 + parent: 2 + - uid: 17796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,19.5 + parent: 2 + - uid: 17797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,26.5 + parent: 2 + - uid: 17798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,25.5 + parent: 2 + - uid: 17799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,24.5 + parent: 2 + - uid: 17800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,23.5 + parent: 2 + - uid: 17801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,22.5 + parent: 2 + - uid: 17802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,21.5 + parent: 2 + - uid: 17803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,20.5 + parent: 2 + - uid: 17804 + components: + - type: Transform + pos: 67.5,12.5 + parent: 2 + - uid: 17805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,17.5 + parent: 2 + - uid: 17806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,19.5 + parent: 2 + - uid: 17807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,20.5 + parent: 2 + - uid: 17808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,21.5 + parent: 2 + - uid: 17809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,57.5 + parent: 2 + - uid: 17810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,59.5 + parent: 2 + - uid: 17811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,13.5 + parent: 2 + - uid: 17812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,14.5 + parent: 2 + - uid: 17813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-4.5 + parent: 2 + - uid: 17814 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - uid: 17815 + components: + - type: Transform + pos: 19.5,9.5 + parent: 2 + - uid: 17816 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - uid: 17817 + components: + - type: Transform + pos: 19.5,7.5 + parent: 2 + - uid: 17818 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - uid: 17819 + components: + - type: Transform + pos: 36.5,46.5 + parent: 2 + - uid: 17822 + components: + - type: Transform + pos: 86.5,41.5 + parent: 2 + - uid: 17824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,81.5 + parent: 2 + - uid: 17826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,81.5 + parent: 2 + - uid: 17827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,82.5 + parent: 2 + - uid: 17828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,82.5 + parent: 2 + - uid: 17829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,64.5 + parent: 2 + - uid: 17830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,82.5 + parent: 2 + - uid: 17831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,81.5 + parent: 2 + - uid: 17832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,64.5 + parent: 2 + - uid: 17835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,64.5 + parent: 2 + - uid: 17836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,69.5 + parent: 2 + - uid: 17837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,69.5 + parent: 2 + - uid: 17838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,68.5 + parent: 2 + - uid: 17839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,65.5 + parent: 2 + - uid: 17840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,65.5 + parent: 2 + - uid: 17841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,65.5 + parent: 2 + - uid: 17842 + components: + - type: Transform + pos: 88.5,41.5 + parent: 2 + - uid: 17843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,32.5 + parent: 2 + - uid: 17844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,34.5 + parent: 2 + - uid: 17845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,36.5 + parent: 2 + - uid: 17846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,38.5 + parent: 2 + - uid: 17847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,40.5 + parent: 2 + - uid: 17848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,41.5 + parent: 2 + - uid: 17849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,42.5 + parent: 2 + - uid: 17850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,42.5 + parent: 2 + - uid: 17851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,42.5 + parent: 2 + - uid: 17852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,42.5 + parent: 2 + - uid: 17853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,42.5 + parent: 2 + - uid: 17854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,42.5 + parent: 2 + - uid: 17855 + components: + - type: Transform + pos: 89.5,40.5 + parent: 2 + - uid: 17856 + components: + - type: Transform + pos: 90.5,39.5 + parent: 2 + - uid: 17857 + components: + - type: Transform + pos: 88.5,27.5 + parent: 2 + - uid: 17858 + components: + - type: Transform + pos: 89.5,28.5 + parent: 2 + - uid: 17859 + components: + - type: Transform + pos: 90.5,29.5 + parent: 2 + - uid: 17860 + components: + - type: Transform + pos: 86.5,27.5 + parent: 2 + - uid: 17861 + components: + - type: Transform + pos: 86.5,46.5 + parent: 2 + - uid: 17862 + components: + - type: Transform + pos: 86.5,21.5 + parent: 2 + - uid: 17863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,76.5 + parent: 2 + - uid: 17864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,79.5 + parent: 2 + - uid: 17865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,80.5 + parent: 2 + - uid: 17866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,81.5 + parent: 2 + - uid: 17867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,81.5 + parent: 2 + - uid: 17868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,81.5 + parent: 2 + - uid: 17869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,80.5 + parent: 2 + - uid: 17872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-21.5 + parent: 2 + - uid: 17873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-6.5 + parent: 2 + - uid: 17874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-8.5 + parent: 2 + - uid: 17875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 2 + - uid: 17876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-12.5 + parent: 2 + - uid: 17877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-14.5 + parent: 2 + - uid: 17878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-16.5 + parent: 2 + - uid: 17879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-18.5 + parent: 2 + - uid: 17880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-19.5 + parent: 2 + - uid: 17881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-20.5 + parent: 2 + - uid: 17882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-22.5 + parent: 2 + - uid: 17883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-20.5 + parent: 2 + - uid: 17884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-20.5 + parent: 2 + - uid: 17885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-21.5 + parent: 2 + - uid: 17886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-22.5 + parent: 2 + - uid: 17887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-21.5 + parent: 2 + - uid: 17888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-20.5 + parent: 2 + - uid: 17889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-19.5 + parent: 2 + - uid: 17890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-19.5 + parent: 2 + - uid: 17891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-20.5 + parent: 2 + - uid: 17892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-3.5 + parent: 2 + - uid: 17893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-3.5 + parent: 2 + - uid: 17894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 2 + - uid: 17907 + components: + - type: Transform + pos: 87.5,-5.5 + parent: 2 + - uid: 17908 + components: + - type: Transform + pos: 87.5,-4.5 + parent: 2 + - uid: 17909 + components: + - type: Transform + pos: 87.5,-3.5 + parent: 2 + - uid: 17910 + components: + - type: Transform + pos: 87.5,2.5 + parent: 2 + - uid: 17911 + components: + - type: Transform + pos: 87.5,-0.5 + parent: 2 + - uid: 17912 + components: + - type: Transform + pos: 87.5,4.5 + parent: 2 + - uid: 17913 + components: + - type: Transform + pos: 87.5,8.5 + parent: 2 + - uid: 17914 + components: + - type: Transform + pos: 87.5,13.5 + parent: 2 + - uid: 17917 + components: + - type: Transform + pos: 85.5,-8.5 + parent: 2 + - uid: 17918 + components: + - type: Transform + pos: 86.5,-8.5 + parent: 2 + - uid: 17936 + components: + - type: Transform + pos: 80.5,-8.5 + parent: 2 + - uid: 17937 + components: + - type: Transform + pos: 78.5,-8.5 + parent: 2 + - uid: 17939 + components: + - type: Transform + pos: 77.5,-8.5 + parent: 2 + - uid: 17944 + components: + - type: Transform + pos: 82.5,-8.5 + parent: 2 + - uid: 17979 + components: + - type: Transform + pos: 85.5,14.5 + parent: 2 + - uid: 17981 + components: + - type: Transform + pos: 87.5,11.5 + parent: 2 + - uid: 17987 + components: + - type: Transform + pos: 81.5,-8.5 + parent: 2 + - uid: 17988 + components: + - type: Transform + pos: 87.5,12.5 + parent: 2 + - uid: 17989 + components: + - type: Transform + pos: 84.5,-8.5 + parent: 2 + - uid: 17990 + components: + - type: Transform + pos: 87.5,3.5 + parent: 2 + - uid: 17991 + components: + - type: Transform + pos: 84.5,14.5 + parent: 2 + - uid: 17995 + components: + - type: Transform + pos: 87.5,-1.5 + parent: 2 + - uid: 17997 + components: + - type: Transform + pos: 87.5,7.5 + parent: 2 + - uid: 17998 + components: + - type: Transform + pos: 86.5,14.5 + parent: 2 + - uid: 18556 + components: + - type: Transform + pos: 91.5,14.5 + parent: 2 + - uid: 18557 + components: + - type: Transform + pos: 91.5,12.5 + parent: 2 + - uid: 18558 + components: + - type: Transform + pos: 90.5,10.5 + parent: 2 + - uid: 18559 + components: + - type: Transform + pos: 90.5,8.5 + parent: 2 + - uid: 18560 + components: + - type: Transform + pos: 89.5,6.5 + parent: 2 + - uid: 18561 + components: + - type: Transform + pos: 89.5,5.5 + parent: 2 + - uid: 18562 + components: + - type: Transform + pos: 89.5,2.5 + parent: 2 + - uid: 18563 + components: + - type: Transform + pos: 89.5,1.5 + parent: 2 + - uid: 18564 + components: + - type: Transform + pos: 90.5,-0.5 + parent: 2 + - uid: 18565 + components: + - type: Transform + pos: 90.5,-2.5 + parent: 2 + - uid: 18566 + components: + - type: Transform + pos: 91.5,-4.5 + parent: 2 + - uid: 18567 + components: + - type: Transform + pos: 91.5,-6.5 + parent: 2 + - uid: 18568 + components: + - type: Transform + pos: 77.5,-10.5 + parent: 2 + - uid: 18569 + components: + - type: Transform + pos: 79.5,-10.5 + parent: 2 + - uid: 18570 + components: + - type: Transform + pos: 81.5,-9.5 + parent: 2 + - uid: 18572 + components: + - type: Transform + pos: 85.5,-10.5 + parent: 2 + - uid: 18573 + components: + - type: Transform + pos: 87.5,-10.5 + parent: 2 + - uid: 18576 + components: + - type: Transform + pos: 89.5,-7.5 + parent: 2 + - uid: 18577 + components: + - type: Transform + pos: 88.5,-8.5 + parent: 2 + - uid: 18629 + components: + - type: Transform + pos: 88.5,17.5 + parent: 2 + - uid: 18630 + components: + - type: Transform + pos: 88.5,15.5 + parent: 2 + - uid: 18631 + components: + - type: Transform + pos: 88.5,21.5 + parent: 2 + - uid: 18632 + components: + - type: Transform + pos: 88.5,19.5 + parent: 2 +- proto: WardrobeBlackFilled + entities: + - uid: 17895 + components: + - type: Transform + pos: 26.5,10.5 + parent: 2 +- proto: WardrobeBlueFilled + entities: + - uid: 17896 + components: + - type: Transform + pos: 26.5,11.5 + parent: 2 +- proto: WardrobeCargoFilled + entities: + - uid: 17897 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 17898 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 17899 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 +- proto: WardrobeGeneticsFilled + entities: + - uid: 17900 + components: + - type: Transform + pos: 29.5,26.5 + parent: 2 +- proto: WardrobePrisonFilled + entities: + - uid: 17901 + components: + - type: Transform + pos: -9.5,51.5 + parent: 2 + - uid: 17902 + components: + - type: Transform + pos: -5.5,51.5 + parent: 2 + - uid: 17903 + components: + - type: Transform + pos: -1.5,51.5 + parent: 2 +- proto: WardrobeVirologyFilled + entities: + - uid: 17904 + components: + - type: Transform + pos: 20.5,11.5 + parent: 2 +- proto: WardrobeWhiteFilled + entities: + - uid: 17905 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 +- proto: WardrobeYellowFilled + entities: + - uid: 17906 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 +- proto: WarpPoint + entities: + - uid: 17942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 2 + - type: WarpPoint + location: QM +- proto: WarpPointBombing + entities: + - uid: 17945 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - type: WarpPoint + location: Cargo Bay + - uid: 17946 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - type: WarpPoint + location: QM office + - uid: 17947 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - type: WarpPoint + location: Logistics + - uid: 17948 + components: + - type: Transform + pos: 12.5,27.5 + parent: 2 + - type: WarpPoint + location: Chem + - uid: 17949 + components: + - type: Transform + pos: 20.5,39.5 + parent: 2 + - type: WarpPoint + location: CMO office + - uid: 17950 + components: + - type: Transform + pos: 27.5,34.5 + parent: 2 + - type: WarpPoint + location: MedBay + - uid: 17951 + components: + - type: Transform + pos: -9.5,34.5 + parent: 2 + - type: WarpPoint + location: Eng lockers + - uid: 17953 + components: + - type: Transform + pos: -29.5,14.5 + parent: 2 + - type: WarpPoint + location: Atmos + - uid: 17954 + components: + - type: Transform + pos: -19.5,28.5 + parent: 2 + - type: WarpPoint + location: SuperMatter + - uid: 17955 + components: + - type: Transform + pos: -21.5,43.5 + parent: 2 + - type: WarpPoint + location: Gravity generator + - uid: 17956 + components: + - type: Transform + pos: -11.5,44.5 + parent: 2 + - type: WarpPoint + location: SMES + - uid: 17957 + components: + - type: Transform + pos: -12.5,56.5 + parent: 2 + - type: WarpPoint + location: Brig + - uid: 17958 + components: + - type: Transform + pos: -4.5,57.5 + parent: 2 + - type: WarpPoint + location: BrigMed + - uid: 17959 + components: + - type: Transform + pos: -16.5,69.5 + parent: 2 + - type: WarpPoint + location: Armory + - uid: 17960 + components: + - type: Transform + pos: -17.5,61.5 + parent: 2 + - type: WarpPoint + location: Warden + - uid: 17961 + components: + - type: Transform + pos: -23.5,67.5 + parent: 2 + - type: WarpPoint + location: Sec lockers + - uid: 17962 + components: + - type: Transform + pos: -30.5,66.5 + parent: 2 + - type: WarpPoint + location: Perma + - uid: 17963 + components: + - type: Transform + pos: -33.5,37.5 + parent: 2 + - type: WarpPoint + location: TeleComms + - uid: 17964 + components: + - type: Transform + pos: 2.5,75.5 + parent: 2 + - type: WarpPoint + location: North Park + - uid: 17965 + components: + - type: Transform + pos: 11.5,54.5 + parent: 2 + - type: WarpPoint + location: Chapel + - uid: 17966 + components: + - type: Transform + pos: 18.5,53.5 + parent: 2 + - type: WarpPoint + location: Library + - uid: 17967 + components: + - type: Transform + pos: 30.5,54.5 + parent: 2 + - type: WarpPoint + location: Vault + - uid: 17968 + components: + - type: Transform + pos: 34.5,53.5 + parent: 2 + - type: WarpPoint + location: GateWay + - uid: 17969 + components: + - type: Transform + pos: 55.5,37.5 + parent: 2 + - type: WarpPoint + location: Cafeteria + - uid: 17970 + components: + - type: Transform + pos: 75.5,43.5 + parent: 2 + - type: WarpPoint + location: EVA + - uid: 17971 + components: + - type: Transform + pos: 85.5,33.5 + parent: 2 + - type: WarpPoint + location: Bridge + - uid: 17972 + components: + - type: Transform + pos: 76.5,30.5 + parent: 2 + - type: WarpPoint + location: Cap office + - uid: 17973 + components: + - type: Transform + pos: 73.5,3.5 + parent: 2 + - type: WarpPoint + location: Arrivals + - uid: 17974 + components: + - type: Transform + pos: 51.5,-2.5 + parent: 2 + - type: WarpPoint + location: Anomaly/Slime Farm + - uid: 17975 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 + - type: WarpPoint + location: RD office + - uid: 17976 + components: + - type: Transform + pos: 54.5,26.5 + parent: 2 + - type: WarpPoint + location: Epistemics +- proto: WarpPointCryo + entities: + - uid: 17980 + components: + - type: Transform + pos: 10.5,35.5 + parent: 2 +- proto: WaterCooler + entities: + - uid: 8321 + components: + - type: Transform + pos: 70.5,23.5 + parent: 2 + - uid: 17999 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 18000 + components: + - type: Transform + pos: 45.5,62.5 + parent: 2 +- proto: WaterTankFull + entities: + - uid: 18001 + components: + - type: Transform + pos: 5.5,23.5 + parent: 2 + - uid: 18002 + components: + - type: Transform + pos: 36.5,21.5 + parent: 2 + - uid: 18003 + components: + - type: Transform + pos: -8.5,34.5 + parent: 2 + - uid: 18004 + components: + - type: Transform + pos: -6.5,40.5 + parent: 2 + - uid: 18005 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 18006 + components: + - type: Transform + pos: 58.5,31.5 + parent: 2 + - uid: 18007 + components: + - type: Transform + pos: 72.5,62.5 + parent: 2 + - uid: 18008 + components: + - type: Transform + pos: 29.5,66.5 + parent: 2 + - uid: 18009 + components: + - type: Transform + pos: 45.5,58.5 + parent: 2 + - uid: 18010 + components: + - type: Transform + pos: 44.5,58.5 + parent: 2 + - uid: 18011 + components: + - type: Transform + pos: 52.5,57.5 + parent: 2 + - uid: 18012 + components: + - type: Transform + pos: 46.5,50.5 + parent: 2 +- proto: WaterTankHighCapacity + entities: + - uid: 18013 + components: + - type: Transform + pos: 48.5,37.5 + parent: 2 + - uid: 18014 + components: + - type: Transform + pos: 47.5,37.5 + parent: 2 + - uid: 18015 + components: + - type: Transform + pos: 39.5,52.5 + parent: 2 + - uid: 18756 + components: + - type: Transform + pos: -24.5,16.5 + parent: 2 +- proto: WaterVaporCanister + entities: + - uid: 18016 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 + - uid: 18017 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 +- proto: WeaponCapacitorRecharger + entities: + - uid: 18018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,27.5 + parent: 2 + - uid: 18020 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 + - uid: 18021 + components: + - type: Transform + pos: -4.5,29.5 + parent: 2 + - uid: 18022 + components: + - type: Transform + pos: -16.5,60.5 + parent: 2 + - uid: 18023 + components: + - type: Transform + pos: -25.5,61.5 + parent: 2 + - uid: 18024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,14.5 + parent: 2 + - uid: 18025 + components: + - type: Transform + pos: 82.5,33.5 + parent: 2 + - uid: 18026 + components: + - type: Transform + pos: 70.5,13.5 + parent: 2 +- proto: WeaponLaserCarbine + entities: + - uid: 18027 + components: + - type: Transform + pos: -19.609697,69.7698 + parent: 2 + - uid: 18028 + components: + - type: Transform + pos: -19.268963,69.644356 + parent: 2 + - uid: 18029 + components: + - type: Transform + pos: -19.645565,69.518906 + parent: 2 + - uid: 18030 + components: + - type: Transform + pos: -19.268963,69.393456 + parent: 2 +- proto: WeaponPistolMk58 + entities: + - uid: 18031 + components: + - type: Transform + pos: -17.601858,68.653786 + parent: 2 + - uid: 18032 + components: + - type: Transform + pos: -17.494259,68.56418 + parent: 2 + - uid: 18033 + components: + - type: Transform + pos: -17.35079,68.42081 + parent: 2 +- proto: WeaponRifleLecter + entities: + - uid: 18034 + components: + - type: Transform + pos: -15.664352,70.734 + parent: 2 + - uid: 18035 + components: + - type: Transform + pos: -15.485018,70.60855 + parent: 2 + - uid: 18036 + components: + - type: Transform + pos: -15.664352,70.411415 + parent: 2 + - uid: 18037 + components: + - type: Transform + pos: -15.405928,70.28039 + parent: 2 +- proto: WeaponSubMachineGunDrozd + entities: + - uid: 18038 + components: + - type: Transform + pos: -14.389482,67.54267 + parent: 2 + - uid: 18039 + components: + - type: Transform + pos: -14.28188,67.363464 + parent: 2 + - uid: 18040 + components: + - type: Transform + pos: -14.5329485,67.76181 + parent: 2 +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 18041 + components: + - type: Transform + pos: 37.5,28.5 + parent: 2 + - uid: 18042 + components: + - type: Transform + pos: 42.5,29.5 + parent: 2 + - uid: 18043 + components: + - type: Transform + pos: 42.5,27.5 + parent: 2 + - uid: 18044 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 2 + - uid: 18045 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 2 + - uid: 18046 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 2 + - uid: 18047 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 2 +- proto: WelderIndustrialAdvanced + entities: + - uid: 18048 + components: + - type: Transform + pos: -7.250613,24.386929 + parent: 2 +- proto: WeldingFuelTankFull + entities: + - uid: 18049 + components: + - type: Transform + pos: 4.5,23.5 + parent: 2 + - uid: 18050 + components: + - type: Transform + pos: -7.5,31.5 + parent: 2 + - uid: 18051 + components: + - type: Transform + pos: 59.5,31.5 + parent: 2 + - uid: 18052 + components: + - type: Transform + pos: 28.5,5.5 + parent: 2 + - uid: 18053 + components: + - type: Transform + pos: 72.5,59.5 + parent: 2 + - uid: 18054 + components: + - type: Transform + pos: 70.5,42.5 + parent: 2 + - uid: 18055 + components: + - type: Transform + pos: 75.5,18.5 + parent: 2 + - uid: 18056 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - uid: 18057 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 18058 + components: + - type: Transform + pos: 26.5,5.5 + parent: 2 + - uid: 18059 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 + - uid: 18060 + components: + - type: Transform + pos: 80.5,46.5 + parent: 2 + - uid: 18061 + components: + - type: Transform + pos: 73.5,50.5 + parent: 2 + - uid: 18062 + components: + - type: Transform + pos: 79.5,55.5 + parent: 2 + - uid: 18063 + components: + - type: Transform + pos: 50.5,57.5 + parent: 2 + - uid: 18064 + components: + - type: Transform + pos: 49.5,57.5 + parent: 2 + - uid: 18065 + components: + - type: Transform + pos: 45.5,60.5 + parent: 2 + - uid: 18066 + components: + - type: Transform + pos: 44.5,60.5 + parent: 2 + - uid: 18067 + components: + - type: Transform + pos: 45.5,50.5 + parent: 2 + - uid: 18068 + components: + - type: Transform + pos: 37.5,60.5 + parent: 2 + - uid: 18069 + components: + - type: Transform + pos: 22.5,66.5 + parent: 2 + - uid: 18070 + components: + - type: Transform + pos: 1.5,78.5 + parent: 2 + - uid: 18071 + components: + - type: Transform + pos: 35.5,21.5 + parent: 2 +- proto: Windoor + entities: + - uid: 18072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 2 + - uid: 18073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,20.5 + parent: 2 + - uid: 18074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,14.5 + parent: 2 + - uid: 18075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,14.5 + parent: 2 + - uid: 18076 + components: + - type: Transform + pos: -15.5,59.5 + parent: 2 + - uid: 18077 + components: + - type: Transform + pos: -15.5,50.5 + parent: 2 + - uid: 18078 + components: + - type: Transform + pos: -14.5,50.5 + parent: 2 + - uid: 18079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,51.5 + parent: 2 + - uid: 18080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,52.5 + parent: 2 + - uid: 18081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 2 + - uid: 18082 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 18083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,25.5 + parent: 2 + - uid: 18084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,23.5 + parent: 2 + - uid: 18085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,39.5 + parent: 2 + - uid: 18086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,38.5 + parent: 2 + - uid: 18087 + components: + - type: Transform + pos: 45.5,36.5 + parent: 2 + - uid: 18088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,37.5 + parent: 2 + - uid: 18089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,40.5 + parent: 2 + - uid: 18090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,40.5 + parent: 2 + - uid: 18091 + components: + - type: Transform + pos: 72.5,12.5 + parent: 2 +- proto: WindoorHydroponicsLocked + entities: + - uid: 18092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,39.5 + parent: 2 + - uid: 18093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,38.5 + parent: 2 + - uid: 18094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,36.5 + parent: 2 +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 18095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,43.5 + parent: 2 + - uid: 18096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,43.5 + parent: 2 +- proto: WindoorSecure + entities: + - uid: 18097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,63.5 + parent: 2 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 18098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,65.5 + parent: 2 + - uid: 18099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,65.5 + parent: 2 + - uid: 18100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,65.5 + parent: 2 + - uid: 18101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,65.5 + parent: 2 + - uid: 18102 + components: + - type: Transform + pos: -17.5,65.5 + parent: 2 + - uid: 18103 + components: + - type: Transform + pos: -16.5,65.5 + parent: 2 + - uid: 18104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,64.5 + parent: 2 + - uid: 18105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,68.5 + parent: 2 + - uid: 18106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,67.5 + parent: 2 + - uid: 18107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,68.5 + parent: 2 + - uid: 18108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,67.5 + parent: 2 + - uid: 18109 + components: + - type: Transform + pos: -17.5,70.5 + parent: 2 + - uid: 18110 + components: + - type: Transform + pos: -16.5,70.5 + parent: 2 + - uid: 18111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,66.5 + parent: 2 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - type: Door + secondsUntilStateChange: -79958.195 + state: Opening + - uid: 18112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,59.5 + parent: 2 +- proto: WindoorSecureAtmosphericsLocked + entities: + - uid: 18113 + components: + - type: Transform + pos: -18.5,20.5 + parent: 2 + - uid: 18114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,20.5 + parent: 2 + - uid: 18115 + components: + - type: Transform + pos: 20.5,45.5 + parent: 2 +- proto: WindoorSecureCargoLocked + entities: + - uid: 18116 + components: + - type: Transform + pos: 7.5,14.5 + parent: 2 + - uid: 18117 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 18118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,9.5 + parent: 2 +- proto: WindoorSecureChapelLocked + entities: + - uid: 18119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,63.5 + parent: 2 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 18120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,23.5 + parent: 2 + - uid: 18121 + components: + - type: Transform + pos: 12.5,29.5 + parent: 2 +- proto: WindoorSecureCommandLocked + entities: + - uid: 257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,29.5 + parent: 2 + - uid: 5987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,31.5 + parent: 2 + - uid: 14896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,28.5 + parent: 2 + - uid: 17016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-11.5 + parent: 2 + - uid: 18122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,0.5 + parent: 2 + - uid: 18123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-5.5 + parent: 2 + - uid: 18124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-5.5 + parent: 2 + - uid: 18125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-6.5 + parent: 2 + - uid: 18126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-6.5 + parent: 2 + - uid: 18127 + components: + - type: Transform + pos: 40.5,-11.5 + parent: 2 + - uid: 18129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-16.5 + parent: 2 + - uid: 18130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-16.5 + parent: 2 + - uid: 18131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-17.5 + parent: 2 + - uid: 18132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-17.5 + parent: 2 + - uid: 18133 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 + - uid: 18134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-11.5 + parent: 2 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 18135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,35.5 + parent: 2 + - uid: 18136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,44.5 + parent: 2 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 18137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,40.5 + parent: 2 +- proto: WindoorSecureMailLocked + entities: + - uid: 18138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 2 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 18139 + components: + - type: Transform + pos: 15.5,32.5 + parent: 2 + - uid: 18140 + components: + - type: Transform + pos: 16.5,32.5 + parent: 2 + - uid: 18141 + components: + - type: Transform + pos: -4.5,57.5 + parent: 2 + - uid: 18143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,39.5 + parent: 2 + - uid: 18144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,40.5 + parent: 2 + - uid: 18145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,42.5 + parent: 2 + - uid: 18146 + components: + - type: Transform + pos: 7.5,46.5 + parent: 2 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 18147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,9.5 + parent: 2 +- proto: WindoorSecureScienceLocked + entities: + - uid: 18148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,0.5 + parent: 2 + - uid: 18149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,3.5 + parent: 2 + - uid: 18150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-2.5 + parent: 2 + - uid: 18151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-2.5 + parent: 2 + - uid: 18152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,0.5 + parent: 2 + - uid: 18153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,3.5 + parent: 2 + - uid: 18154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-4.5 + parent: 2 + - uid: 18155 + components: + - type: Transform + pos: 51.5,-5.5 + parent: 2 + - uid: 18156 + components: + - type: Transform + pos: 55.5,23.5 + parent: 2 + - uid: 18157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,25.5 + parent: 2 + - uid: 18158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,28.5 + parent: 2 + - uid: 18159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,25.5 + parent: 2 + - uid: 18673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,6.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 18674 + - type: DeviceLinkSource + linkedPorts: + 18674: + - DoorStatus: DoorBolt + - uid: 18674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,6.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 18673 + - type: DeviceLinkSource + linkedPorts: + 18673: + - DoorStatus: DoorBolt + - uid: 19278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,3.5 + parent: 2 + - uid: 19279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,0.5 + parent: 2 + - uid: 19280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-2.5 + parent: 2 + - uid: 19281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-2.5 + parent: 2 + - uid: 19282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,0.5 + parent: 2 + - uid: 19283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,3.5 + parent: 2 +- proto: WindoorSecureSecurityLawyerLocked + entities: + - uid: 18160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,29.5 + parent: 2 + - uid: 18161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,27.5 + parent: 2 + - uid: 18162 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 18163 + components: + - type: Transform + pos: -8.5,53.5 + parent: 2 + - uid: 18164 + components: + - type: Transform + pos: -4.5,53.5 + parent: 2 + - uid: 18165 + components: + - type: Transform + pos: -0.5,53.5 + parent: 2 + - uid: 18166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,52.5 + parent: 2 + - uid: 18167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,67.5 + parent: 2 + - uid: 18168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,52.5 + parent: 2 + - uid: 18169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,51.5 + parent: 2 + - uid: 18170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,50.5 + parent: 2 + - uid: 18171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,50.5 + parent: 2 + - uid: 18172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,12.5 + parent: 2 +- proto: WindoorServiceLocked + entities: + - uid: 18173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,56.5 + parent: 2 +- proto: WindoorTheatreLocked + entities: + - uid: 18174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,40.5 + parent: 2 +- proto: Window + entities: + - uid: 18175 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 + - uid: 18176 + components: + - type: Transform + pos: 16.5,33.5 + parent: 2 + - uid: 18177 + components: + - type: Transform + pos: 17.5,33.5 + parent: 2 + - uid: 18178 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - uid: 18179 + components: + - type: Transform + pos: 13.5,33.5 + parent: 2 + - uid: 18180 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 2 + - uid: 18181 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 18182 + components: + - type: Transform + pos: 9.5,13.5 + parent: 2 + - uid: 18183 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - uid: 18184 + components: + - type: Transform + pos: 9.5,18.5 + parent: 2 + - uid: 18185 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - uid: 18186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,33.5 + parent: 2 + - uid: 18187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,56.5 + parent: 2 + - uid: 18188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,55.5 + parent: 2 + - uid: 18189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,18.5 + parent: 2 + - uid: 18190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,18.5 + parent: 2 + - uid: 18191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,18.5 + parent: 2 + - uid: 18192 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 2 + - uid: 18193 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 2 + - uid: 18194 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 + - uid: 18195 + components: + - type: Transform + pos: 59.5,32.5 + parent: 2 + - uid: 18196 + components: + - type: Transform + pos: 60.5,32.5 + parent: 2 + - uid: 18197 + components: + - type: Transform + pos: 61.5,32.5 + parent: 2 + - uid: 18198 + components: + - type: Transform + pos: 63.5,29.5 + parent: 2 + - uid: 18199 + components: + - type: Transform + pos: 12.5,50.5 + parent: 2 + - uid: 18200 + components: + - type: Transform + pos: 13.5,50.5 + parent: 2 + - uid: 18201 + components: + - type: Transform + pos: 17.5,50.5 + parent: 2 + - uid: 18202 + components: + - type: Transform + pos: 19.5,50.5 + parent: 2 + - uid: 18203 + components: + - type: Transform + pos: 21.5,50.5 + parent: 2 + - uid: 18204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,36.5 + parent: 2 + - uid: 18205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,36.5 + parent: 2 + - uid: 18206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,36.5 + parent: 2 + - uid: 18207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,36.5 + parent: 2 +- proto: WindowDirectional + entities: + - uid: 18208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,69.5 + parent: 2 + - uid: 18209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,69.5 + parent: 2 + - uid: 18210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,69.5 + parent: 2 + - uid: 18211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,66.5 + parent: 2 + - uid: 18212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,58.5 + parent: 2 + - uid: 18213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,58.5 + parent: 2 +- proto: WindowFrostedDirectional + entities: + - uid: 18214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,35.5 + parent: 2 + - uid: 18215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,11.5 + parent: 2 +- proto: WindowReinforcedDirectional + entities: + - uid: 7315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,23.5 + parent: 2 + - uid: 8117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,27.5 + parent: 2 + - uid: 8288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,69.5 + parent: 2 + - uid: 8528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,69.5 + parent: 2 + - uid: 9222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,40.5 + parent: 2 + - uid: 9305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,40.5 + parent: 2 + - uid: 11158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,40.5 + parent: 2 + - uid: 12598 + components: + - type: Transform + pos: -21.5,41.5 + parent: 2 + - uid: 13678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,40.5 + parent: 2 + - uid: 13680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,40.5 + parent: 2 + - uid: 14758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,16.5 + parent: 2 + - uid: 15237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,30.5 + parent: 2 + - uid: 17834 + components: + - type: Transform + pos: -22.5,41.5 + parent: 2 + - uid: 18142 + components: + - type: Transform + pos: -5.5,57.5 + parent: 2 + - uid: 18216 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 2 + - uid: 18217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,32.5 + parent: 2 + - uid: 18218 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - uid: 18219 + components: + - type: Transform + pos: -18.5,36.5 + parent: 2 + - uid: 18220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,35.5 + parent: 2 + - uid: 18221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,34.5 + parent: 2 + - uid: 18222 + components: + - type: Transform + pos: -20.5,36.5 + parent: 2 + - uid: 18223 + components: + - type: Transform + pos: -19.5,36.5 + parent: 2 + - uid: 18224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,33.5 + parent: 2 + - uid: 18225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,32.5 + parent: 2 + - uid: 18226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,32.5 + parent: 2 + - uid: 18227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,32.5 + parent: 2 + - uid: 18228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,5.5 + parent: 2 + - uid: 18229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,39.5 + parent: 2 + - uid: 18230 + components: + - type: Transform + pos: -22.5,40.5 + parent: 2 + - uid: 18231 + components: + - type: Transform + pos: 47.5,-0.5 + parent: 2 + - uid: 18232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,39.5 + parent: 2 + - uid: 18233 + components: + - type: Transform + pos: -21.5,40.5 + parent: 2 + - uid: 18234 + components: + - type: Transform + pos: -23.5,41.5 + parent: 2 + - uid: 18236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,39.5 + parent: 2 + - uid: 18237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,39.5 + parent: 2 + - uid: 18239 + components: + - type: Transform + pos: -20.5,40.5 + parent: 2 + - uid: 18240 + components: + - type: Transform + pos: -23.5,40.5 + parent: 2 + - uid: 18241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,1.5 + parent: 2 + - uid: 18242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,2.5 + parent: 2 + - uid: 18243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-0.5 + parent: 2 + - uid: 18244 + components: + - type: Transform + pos: 47.5,2.5 + parent: 2 + - uid: 18245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,40.5 + parent: 2 + - uid: 18246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,40.5 + parent: 2 + - uid: 18247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,40.5 + parent: 2 + - uid: 18249 + components: + - type: Transform + pos: -20.5,41.5 + parent: 2 + - uid: 18250 + components: + - type: Transform + pos: -26.5,21.5 + parent: 2 + - uid: 18251 + components: + - type: Transform + pos: -27.5,21.5 + parent: 2 + - uid: 18252 + components: + - type: Transform + pos: -28.5,21.5 + parent: 2 + - uid: 18253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,20.5 + parent: 2 + - uid: 18254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,20.5 + parent: 2 + - uid: 18255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,20.5 + parent: 2 + - uid: 18256 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - uid: 18257 + components: + - type: Transform + pos: -32.5,6.5 + parent: 2 + - uid: 18258 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - uid: 18259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,7.5 + parent: 2 + - uid: 18260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,8.5 + parent: 2 + - uid: 18261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,9.5 + parent: 2 + - uid: 18262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,11.5 + parent: 2 + - uid: 18263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,12.5 + parent: 2 + - uid: 18264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,13.5 + parent: 2 + - uid: 18265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,15.5 + parent: 2 + - uid: 18266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,16.5 + parent: 2 + - uid: 18267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,17.5 + parent: 2 + - uid: 18268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,19.5 + parent: 2 + - uid: 18269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,20.5 + parent: 2 + - uid: 18270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,21.5 + parent: 2 + - uid: 18271 + components: + - type: Transform + pos: -29.5,6.5 + parent: 2 + - uid: 18272 + components: + - type: Transform + pos: -28.5,6.5 + parent: 2 + - uid: 18273 + components: + - type: Transform + pos: -27.5,6.5 + parent: 2 + - uid: 18274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,5.5 + parent: 2 + - uid: 18275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,5.5 + parent: 2 + - uid: 18276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,5.5 + parent: 2 + - uid: 18277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,5.5 + parent: 2 + - uid: 18278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,5.5 + parent: 2 + - uid: 18279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,7.5 + parent: 2 + - uid: 18280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,8.5 + parent: 2 + - uid: 18281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,9.5 + parent: 2 + - uid: 18282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,11.5 + parent: 2 + - uid: 18283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,12.5 + parent: 2 + - uid: 18284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,13.5 + parent: 2 + - uid: 18285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,15.5 + parent: 2 + - uid: 18286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,16.5 + parent: 2 + - uid: 18287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,17.5 + parent: 2 + - uid: 18288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,19.5 + parent: 2 + - uid: 18289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,20.5 + parent: 2 + - uid: 18290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,21.5 + parent: 2 + - uid: 18291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,20.5 + parent: 2 + - uid: 18292 + components: + - type: Transform + pos: -17.5,20.5 + parent: 2 + - uid: 18293 + components: + - type: Transform + pos: -3.5,57.5 + parent: 2 + - uid: 18294 + components: + - type: Transform + pos: -19.5,20.5 + parent: 2 + - uid: 18295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,4.5 + parent: 2 + - uid: 18296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-1.5 + parent: 2 + - uid: 18297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-3.5 + parent: 2 + - uid: 18298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-3.5 + parent: 2 + - uid: 18299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-1.5 + parent: 2 + - uid: 18300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-0.5 + parent: 2 + - uid: 18301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,1.5 + parent: 2 + - uid: 18302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,2.5 + parent: 2 + - uid: 18303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,4.5 + parent: 2 + - uid: 18304 + components: + - type: Transform + pos: 46.5,2.5 + parent: 2 + - uid: 18305 + components: + - type: Transform + pos: 45.5,2.5 + parent: 2 + - uid: 18306 + components: + - type: Transform + pos: 46.5,-0.5 + parent: 2 + - uid: 18307 + components: + - type: Transform + pos: 45.5,-0.5 + parent: 2 + - uid: 18308 + components: + - type: Transform + pos: 55.5,-0.5 + parent: 2 + - uid: 18309 + components: + - type: Transform + pos: 56.5,-0.5 + parent: 2 + - uid: 18310 + components: + - type: Transform + pos: 57.5,-0.5 + parent: 2 + - uid: 18311 + components: + - type: Transform + pos: 55.5,2.5 + parent: 2 + - uid: 18312 + components: + - type: Transform + pos: 56.5,2.5 + parent: 2 + - uid: 18313 + components: + - type: Transform + pos: 57.5,2.5 + parent: 2 + - uid: 18314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,36.5 + parent: 2 + - uid: 18315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,36.5 + parent: 2 + - uid: 18316 + components: + - type: Transform + pos: 53.5,36.5 + parent: 2 + - uid: 18317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,36.5 + parent: 2 + - uid: 18318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,36.5 + parent: 2 + - uid: 18319 + components: + - type: Transform + pos: 54.5,36.5 + parent: 2 + - uid: 18320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,38.5 + parent: 2 + - uid: 18321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,38.5 + parent: 2 + - uid: 18322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,36.5 + parent: 2 + - uid: 18323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,39.5 + parent: 2 + - uid: 18324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,36.5 + parent: 2 + - uid: 18325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,37.5 + parent: 2 + - uid: 18326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,37.5 + parent: 2 + - uid: 18327 + components: + - type: Transform + pos: 68.5,36.5 + parent: 2 + - uid: 18328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,36.5 + parent: 2 + - uid: 18329 + components: + - type: Transform + pos: 67.5,36.5 + parent: 2 + - uid: 18330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,39.5 + parent: 2 + - uid: 18331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,39.5 + parent: 2 + - uid: 18332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,39.5 + parent: 2 + - uid: 18333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,38.5 + parent: 2 + - uid: 18334 + components: + - type: Transform + pos: 71.5,38.5 + parent: 2 + - uid: 18335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,38.5 + parent: 2 + - uid: 18336 + components: + - type: Transform + pos: -10.5,21.5 + parent: 2 + - uid: 18337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,68.5 + parent: 2 + - uid: 18338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,70.5 + parent: 2 + - uid: 18339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,70.5 + parent: 2 + - uid: 18340 + components: + - type: Transform + pos: -14.5,67.5 + parent: 2 + - uid: 18341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,68.5 + parent: 2 + - uid: 18342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 2 + - uid: 18343 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 18344 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 18345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 2 + - uid: 18346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,3.5 + parent: 2 + - uid: 18347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,2.5 + parent: 2 + - uid: 18348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,64.5 + parent: 2 + - uid: 18349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,62.5 + parent: 2 + - uid: 18350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,37.5 + parent: 2 + - uid: 18351 + components: + - type: Transform + pos: 38.5,39.5 + parent: 2 + - uid: 18352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,39.5 + parent: 2 + - uid: 18353 + components: + - type: Transform + pos: 39.5,39.5 + parent: 2 + - uid: 18354 + components: + - type: Transform + pos: 40.5,39.5 + parent: 2 + - uid: 18355 + components: + - type: Transform + pos: 41.5,39.5 + parent: 2 + - uid: 18356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,29.5 + parent: 2 + - uid: 18357 + components: + - type: Transform + pos: 37.5,29.5 + parent: 2 + - uid: 18358 + components: + - type: Transform + pos: 37.5,27.5 + parent: 2 + - uid: 18359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,27.5 + parent: 2 + - uid: 18360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,27.5 + parent: 2 + - uid: 18361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,29.5 + parent: 2 + - uid: 18362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,23.5 + parent: 2 + - uid: 18363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,24.5 + parent: 2 + - uid: 18364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,25.5 + parent: 2 + - uid: 18365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,25.5 + parent: 2 + - uid: 18366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,25.5 + parent: 2 + - uid: 18367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,23.5 + parent: 2 + - uid: 18368 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 + - uid: 18369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,38.5 + parent: 2 + - uid: 18370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,39.5 + parent: 2 + - uid: 18371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,39.5 + parent: 2 + - uid: 18372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,41.5 + parent: 2 + - uid: 18373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,41.5 + parent: 2 + - uid: 18374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,41.5 + parent: 2 + - uid: 18375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,43.5 + parent: 2 + - uid: 18376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,43.5 + parent: 2 + - uid: 18377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,43.5 + parent: 2 + - uid: 18378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,45.5 + parent: 2 + - uid: 18379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,18.5 + parent: 2 + - uid: 18380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,18.5 + parent: 2 + - uid: 18381 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 2 + - uid: 18382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-5.5 + parent: 2 + - uid: 18383 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 2 + - uid: 18384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-5.5 + parent: 2 + - uid: 18385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-5.5 + parent: 2 + - uid: 18386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-5.5 + parent: 2 + - uid: 18387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-5.5 + parent: 2 + - uid: 18388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-5.5 + parent: 2 + - uid: 18389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-5.5 + parent: 2 + - uid: 18390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-5.5 + parent: 2 + - uid: 18391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-5.5 + parent: 2 + - uid: 18392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-5.5 + parent: 2 + - uid: 18393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-5.5 + parent: 2 + - uid: 18394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-5.5 + parent: 2 + - uid: 18395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-5.5 + parent: 2 + - uid: 18396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-5.5 + parent: 2 + - uid: 18397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-5.5 + parent: 2 + - uid: 18398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-5.5 + parent: 2 + - uid: 18399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-5.5 + parent: 2 + - uid: 18400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-17.5 + parent: 2 + - uid: 18401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-6.5 + parent: 2 + - uid: 18402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-6.5 + parent: 2 + - uid: 18403 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 2 + - uid: 18404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-7.5 + parent: 2 + - uid: 18405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-8.5 + parent: 2 + - uid: 18406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-9.5 + parent: 2 + - uid: 18407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-10.5 + parent: 2 + - uid: 18408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-11.5 + parent: 2 + - uid: 18409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-12.5 + parent: 2 + - uid: 18410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-13.5 + parent: 2 + - uid: 18411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-14.5 + parent: 2 + - uid: 18412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-15.5 + parent: 2 + - uid: 18413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-16.5 + parent: 2 + - uid: 18414 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 2 + - uid: 18415 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 2 + - uid: 18416 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 2 + - uid: 18417 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 2 + - uid: 18418 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 2 + - uid: 18419 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 2 + - uid: 18420 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 2 + - uid: 18421 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 2 + - uid: 18422 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 2 + - uid: 18423 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 2 + - uid: 18424 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 2 + - uid: 18425 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 2 + - uid: 18426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-17.5 + parent: 2 + - uid: 18427 + components: + - type: Transform + pos: 33.5,-16.5 + parent: 2 + - uid: 18428 + components: + - type: Transform + pos: 34.5,-16.5 + parent: 2 + - uid: 18429 + components: + - type: Transform + pos: 35.5,-16.5 + parent: 2 + - uid: 18430 + components: + - type: Transform + pos: 36.5,-16.5 + parent: 2 + - uid: 18431 + components: + - type: Transform + pos: 37.5,-16.5 + parent: 2 + - uid: 18432 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 2 + - uid: 18433 + components: + - type: Transform + pos: 39.5,-16.5 + parent: 2 + - uid: 18434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-16.5 + parent: 2 + - uid: 18435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-6.5 + parent: 2 + - uid: 18436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-6.5 + parent: 2 + - uid: 18437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-6.5 + parent: 2 + - uid: 18438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-6.5 + parent: 2 + - uid: 18439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-6.5 + parent: 2 + - uid: 18440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-6.5 + parent: 2 + - uid: 18441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-7.5 + parent: 2 + - uid: 18442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-7.5 + parent: 2 + - uid: 18443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-8.5 + parent: 2 + - uid: 18444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-9.5 + parent: 2 + - uid: 18445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-10.5 + parent: 2 + - uid: 18446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-11.5 + parent: 2 + - uid: 18447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-12.5 + parent: 2 + - uid: 18448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-13.5 + parent: 2 + - uid: 18449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-14.5 + parent: 2 + - uid: 18450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-15.5 + parent: 2 + - uid: 18451 + components: + - type: Transform + pos: 40.5,-15.5 + parent: 2 + - uid: 18452 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 18453 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 18454 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - uid: 18455 + components: + - type: Transform + pos: 38.5,-5.5 + parent: 2 + - uid: 18456 + components: + - type: Transform + pos: 39.5,-5.5 + parent: 2 + - uid: 18457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-6.5 + parent: 2 + - uid: 18458 + components: + - type: Transform + pos: 40.5,-6.5 + parent: 2 + - uid: 18459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-7.5 + parent: 2 + - uid: 18460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-8.5 + parent: 2 + - uid: 18461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-9.5 + parent: 2 + - uid: 18462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-10.5 + parent: 2 + - uid: 18463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-11.5 + parent: 2 + - uid: 18464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-12.5 + parent: 2 + - uid: 18465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-13.5 + parent: 2 + - uid: 18466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-14.5 + parent: 2 + - uid: 18467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-15.5 + parent: 2 + - uid: 18468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-16.5 + parent: 2 + - uid: 18469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-16.5 + parent: 2 + - uid: 18470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-17.5 + parent: 2 + - uid: 18471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-17.5 + parent: 2 + - uid: 18472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-17.5 + parent: 2 + - uid: 18473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-17.5 + parent: 2 + - uid: 18474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-17.5 + parent: 2 + - uid: 18475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-17.5 + parent: 2 + - uid: 18476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-17.5 + parent: 2 + - uid: 18477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-17.5 + parent: 2 + - uid: 18478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-18.5 + parent: 2 + - uid: 18479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-18.5 + parent: 2 + - uid: 18480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-18.5 + parent: 2 + - uid: 18481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-18.5 + parent: 2 + - uid: 18482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-18.5 + parent: 2 + - uid: 18483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-18.5 + parent: 2 + - uid: 18484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-18.5 + parent: 2 + - uid: 18485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-18.5 + parent: 2 + - uid: 18486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-18.5 + parent: 2 + - uid: 18487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-18.5 + parent: 2 + - uid: 18488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-18.5 + parent: 2 + - uid: 18489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-18.5 + parent: 2 + - uid: 18490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-17.5 + parent: 2 + - uid: 18491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-17.5 + parent: 2 + - uid: 18492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-16.5 + parent: 2 + - uid: 18493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-15.5 + parent: 2 + - uid: 18494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-14.5 + parent: 2 + - uid: 18495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-13.5 + parent: 2 + - uid: 18496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-12.5 + parent: 2 + - uid: 18497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-11.5 + parent: 2 + - uid: 18498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 2 + - uid: 18499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-9.5 + parent: 2 + - uid: 18500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-8.5 + parent: 2 + - uid: 18501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-7.5 + parent: 2 + - uid: 18502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-6.5 + parent: 2 + - uid: 18503 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 18504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-5.5 + parent: 2 + - uid: 18505 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 2 + - uid: 18506 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 2 + - uid: 18507 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 2 + - uid: 18508 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 2 + - uid: 18509 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - uid: 18510 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - uid: 18511 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - uid: 18512 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - uid: 18513 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 2 + - uid: 18514 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 2 + - uid: 18515 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 2 + - uid: 18753 + components: + - type: Transform + pos: -24.5,14.5 + parent: 2 + - uid: 19266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,2.5 + parent: 2 + - uid: 19267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-0.5 + parent: 2 + - uid: 19268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-3.5 + parent: 2 + - uid: 19269 + components: + - type: Transform + pos: 54.5,-1.5 + parent: 2 + - uid: 19270 + components: + - type: Transform + pos: 54.5,1.5 + parent: 2 + - uid: 19271 + components: + - type: Transform + pos: 54.5,4.5 + parent: 2 + - uid: 19272 + components: + - type: Transform + pos: 48.5,4.5 + parent: 2 + - uid: 19273 + components: + - type: Transform + pos: 48.5,1.5 + parent: 2 + - uid: 19274 + components: + - type: Transform + pos: 48.5,-1.5 + parent: 2 + - uid: 19275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-3.5 + parent: 2 + - uid: 19276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-0.5 + parent: 2 + - uid: 19277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,2.5 + parent: 2 + - uid: 19473 + components: + - type: Transform + pos: -35.5,66.5 + parent: 2 + - uid: 19474 + components: + - type: Transform + pos: -34.5,66.5 + parent: 2 +- proto: WindowTintedDirectional + entities: + - uid: 18516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,35.5 + parent: 2 + - uid: 18517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,35.5 + parent: 2 + - uid: 18518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,34.5 + parent: 2 + - uid: 18519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,34.5 + parent: 2 + - uid: 18520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,34.5 + parent: 2 +- proto: WoodDoor + entities: + - uid: 18521 + components: + - type: Transform + pos: 13.5,55.5 + parent: 2 + - uid: 18522 + components: + - type: Transform + pos: 13.5,57.5 + parent: 2 +- proto: WoodenBench + entities: + - uid: 18523 + components: + - type: Transform + pos: 67.5,21.5 + parent: 2 + - uid: 18524 + components: + - type: Transform + pos: 69.5,21.5 + parent: 2 +- proto: Wrench + entities: + - uid: 18525 + components: + - type: Transform + pos: 27.530495,3.5236495 + parent: 2 + - uid: 18526 + components: + - type: Transform + pos: 36.452583,7.5585823 + parent: 2 + - uid: 18527 + components: + - type: Transform + pos: 51.508472,54.48591 + parent: 2 +... diff --git a/Resources/Maps/glacier.yml b/Resources/Maps/glacier.yml index 2cba2930f0..d9e4276b4d 100644 --- a/Resources/Maps/glacier.yml +++ b/Resources/Maps/glacier.yml @@ -52876,8 +52876,6 @@ entities: - HamtrLLeg - HamtrRLeg - VimHarness - - ClothingOuterHardsuitJuggernautReverseEngineered - - ClothingOuterHardsuitSyndieReverseEngineered - JetpackBlue - JetpackMini - proto: ExtinguisherCabinetFilled @@ -109951,16 +109949,6 @@ entities: - type: Transform pos: -15.497394,9.727219 parent: 2 -- proto: WeaponPulsePistol - entities: - - uid: 16290 - components: - - type: MetaData - desc: A state of the art energy pistol bought by the HoS for a year's worth of pay. - name: head of security's prized pulse pistol - - type: Transform - pos: -12.584102,35.560688 - parent: 2 - proto: WeaponTurretSyndicateBroken entities: - uid: 16291 diff --git a/Resources/Maps/hive.yml b/Resources/Maps/hive.yml index a732c83a53..7b63c12d28 100644 --- a/Resources/Maps/hive.yml +++ b/Resources/Maps/hive.yml @@ -171025,17 +171025,6 @@ entities: - type: Transform pos: 82.52527,10.611163 parent: 1 -- proto: WeaponShotgunBulldog - entities: - - uid: 22088 - components: - - type: MetaData - desc: NanoTrasen's attempt at recreating the Syndicate's infamous bulldog, an automatic drum-fed shotgun. The design was rejected for full distribution because it was "More of a rip-off then a remake." Uses .50 shotgun shells. - name: HoS's Prototype Pitbull - - type: Transform - rot: 3.141592653589793 rad - pos: 78.53835,14.484081 - parent: 1 - proto: WeaponTurretSyndicateBroken entities: - uid: 9783 diff --git a/Resources/Maps/radstation.yml b/Resources/Maps/radstation.yml new file mode 100644 index 0000000000..198d27abbc --- /dev/null +++ b/Resources/Maps/radstation.yml @@ -0,0 +1,159523 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 3: FloorAstroGrass + 13: FloorBasalt + 15: FloorBlueCircuit + 17: FloorBrokenWood + 27: FloorDark + 28: FloorDarkDiagonal + 36: FloorDarkPlastic + 38: FloorDirt + 42: FloorFreezer + 2: FloorGlass + 48: FloorGrassLight + 52: FloorGreenCircuit + 60: FloorLino + 1: FloorRGlass + 72: FloorReinforced + 74: FloorRockVault + 75: FloorShowroom + 80: FloorShuttleWhite + 84: FloorSteel + 85: FloorSteelCheckerDark + 92: FloorSteelMono + 96: FloorTechMaint + 97: FloorTechMaint2 + 100: FloorWhite + 109: FloorWhitePlastic + 110: FloorWood + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: map 190 + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - type: Parallax + parallax: KettleStation + - uid: 2 + components: + - type: MetaData + name: NT-LMSS-T14 "Radstation" + - type: Transform + pos: -0.53153133,-0.45798445 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AQAAAAAAAQAAAAAAAQAAAAAAYAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAYAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAYAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAAAcQAAAAAAVAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAABVAAAAAABVAAAAAACMAAAAAACMAAAAAACMAAAAAADMAAAAAADVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAADMAAAAAACMAAAAAAAMAAAAAADVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAMAAAAAADMAAAAAACMAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAACMAAAAAABMAAAAAAAMAAAAAACMAAAAAACMAAAAAADVAAAAAABVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAAAMAAAAAAAMAAAAAACMAAAAAADMAAAAAAAVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAJgAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAACMAAAAAABMAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABMAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAADcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAADcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAABcQAAAAAAGwAAAAABGwAAAAABcQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACcQAAAAAAVAAAAAAAVAAAAAACcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: VAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAVAAAAAABcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAADcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAAAVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVAAAAAABVAAAAAADVAAAAAACMAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADMAAAAAABMAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAABMAAAAAADMAAAAAADMAAAAAADMAAAAAADVAAAAAACVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABMAAAAAADMAAAAAAAMAAAAAACMAAAAAABMAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAABMAAAAAABMAAAAAACMAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACMAAAAAADMAAAAAADMAAAAAACVAAAAAADVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAVAAAAAABVAAAAAADMAAAAAAAMAAAAAAAMAAAAAACMAAAAAABVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAABcQAAAAAAVAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: VAAAAAABVAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAVAAAAAADcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAACVAAAAAACVAAAAAACVAAAAAACcQAAAAAAVAAAAAABcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADMAAAAAACVAAAAAABbgAAAAABEQAAAAAAbgAAAAABbgAAAAAAEQAAAAABbgAAAAABbgAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAACMAAAAAAAMAAAAAABVAAAAAADbgAAAAACbgAAAAACbgAAAAACEQAAAAAAbgAAAAABbgAAAAADcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADMAAAAAACMAAAAAACMAAAAAACMAAAAAACVAAAAAAAEQAAAAAAbgAAAAABbgAAAAABbgAAAAABbgAAAAACcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACMAAAAAAAMAAAAAABMAAAAAADMAAAAAACMAAAAAABVAAAAAAAbgAAAAADEQAAAAABbgAAAAADEQAAAAAFEQAAAAAEcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADMAAAAAADMAAAAAAAMAAAAAAAVAAAAAACVAAAAAACVAAAAAAAbgAAAAABbgAAAAABbgAAAAABbgAAAAADEQAAAAADcQAAAAAAVAAAAAABVAAAAAABVAAAAAABMAAAAAABMAAAAAADMAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABMAAAAAABMAAAAAADMAAAAAABMAAAAAADVAAAAAABVAAAAAADVAAAAAABYAAAAAAAVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAADYAAAAAAAAQAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: VAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAACYAAAAAAAAQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAACYAAAAAAAAQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAAAYAAAAAAAAQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABMAAAAAADMAAAAAADMAAAAAAAMAAAAAACVAAAAAABVAAAAAABVAAAAAAAYAAAAAAAVAAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAACGwAAAAABVAAAAAADVAAAAAABVAAAAAACMAAAAAADMAAAAAACMAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAACMAAAAAABMAAAAAADMAAAAAACcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACcQAAAAAAGwAAAAACGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABMAAAAAAAMAAAAAACMAAAAAADMAAAAAACMAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADMAAAAAADMAAAAAABMAAAAAABMAAAAAABVAAAAAADcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAbgAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAADMAAAAAABMAAAAAAAVAAAAAADbgAAAAABcQAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAACcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAMAAAAAADVAAAAAADbgAAAAADcQAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAAAbgAAAAABbgAAAAACbgAAAAABcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAACbgAAAAACcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAACcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAACcQAAAAAAVAAAAAABcQAAAAAAVAAAAAABbgAAAAACbgAAAAACbgAAAAAAbgAAAAACbgAAAAACVAAAAAACcQAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADbgAAAAACbgAAAAADbgAAAAACbgAAAAABbgAAAAAAVAAAAAADbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAACcQAAAAAAVAAAAAAB + version: 6 + -2,0: + ind: -2,0 + tiles: VAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABcQAAAAAAVAAAAAABVAAAAAABVAAAAAABcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACGwAAAAABGwAAAAAAVAAAAAADcQAAAAAAVAAAAAABVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACGwAAAAADGwAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABGwAAAAAAGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAABVAAAAAADcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAABVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAbgAAAAACbgAAAAACVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJgAAAAAAVAAAAAACcQAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAABcQAAAAAAcQAAAAAAVAAAAAADJgAAAAAAcQAAAAAAVAAAAAACcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAACcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAVAAAAAADcQAAAAAAGwAAAAADGwAAAAAAGwAAAAADYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAABYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAABGwAAAAACGwAAAAADcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAEQAAAAAFbgAAAAACcQAAAAAAGwAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADEQAAAAADcQAAAAAAGwAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAVAAAAAACcQAAAAAAbgAAAAABbgAAAAABcQAAAAAAGwAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAEQAAAAABbgAAAAAAcQAAAAAAGwAAAAACVAAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAbgAAAAABEQAAAAADcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAAC + version: 6 + -1,1: + ind: -1,1 + tiles: cQAAAAAAVAAAAAACbgAAAAABbgAAAAADbgAAAAABbgAAAAABbgAAAAADVAAAAAADcQAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAADbgAAAAACcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAADcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAGwAAAAADGwAAAAADcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAADcQAAAAAAGwAAAAAAGwAAAAACcQAAAAAAVAAAAAADVAAAAAACVAAAAAACcQAAAAAAGwAAAAADGwAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAABGwAAAAAAcQAAAAAAGwAAAAABGwAAAAADcQAAAAAAVAAAAAADcQAAAAAAVAAAAAADcQAAAAAAGwAAAAADGwAAAAADcQAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAACcQAAAAAAGwAAAAACGwAAAAADcQAAAAAAVAAAAAADVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADGwAAAAADGwAAAAACGwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAADGwAAAAABGwAAAAACcQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAADcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAVAAAAAAC + version: 6 + 0,1: + ind: 0,1 + tiles: VAAAAAACVAAAAAABVAAAAAADcQAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAACcQAAAAAAGwAAAAADGwAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAGwAAAAADVAAAAAACVAAAAAACVAAAAAACGwAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABVAAAAAAAVAAAAAABVAAAAAACcQAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAADcQAAAAAAGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVQAAAAAAVAAAAAABVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVQAAAAAAVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAJAAAAAAAVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAJAAAAAAAVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAcQAAAAAAEQAAAAAFbgAAAAACbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADcQAAAAAAGwAAAAADJAAAAAAAJAAAAAAAJAAAAAACGwAAAAADcQAAAAAAEQAAAAAGbgAAAAADEQAAAAAEbgAAAAADbgAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAGwAAAAADGwAAAAAAJAAAAAABJAAAAAACJAAAAAADGwAAAAABcQAAAAAAbgAAAAAAbgAAAAACEQAAAAABbgAAAAACEQAAAAADcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAABcQAAAAAAbgAAAAABEQAAAAABbgAAAAACbgAAAAADbgAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAACVAAAAAACcQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: VAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAACcQAAAAAAVAAAAAACcQAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAAAGwAAAAADcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAABGwAAAAABcQAAAAAAVAAAAAACcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAACcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAAD + version: 6 + 1,0: + ind: 1,0 + tiles: VAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAABcQAAAAAAVAAAAAACVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAACGwAAAAADGwAAAAACGwAAAAACGwAAAAACGwAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAAAbgAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAACGwAAAAABZAAAAAAAZAAAAAADZAAAAAACGwAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAACbgAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAABGwAAAAACZAAAAAAAZAAAAAABZAAAAAAAGwAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAACbgAAAAABGwAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAADGwAAAAABcQAAAAAAZAAAAAADZAAAAAADZAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAAAZAAAAAACZAAAAAACZAAAAAACZAAAAAABZAAAAAADcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAADGwAAAAADZAAAAAACZAAAAAACZAAAAAADZAAAAAADZAAAAAAAZAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAACGwAAAAACcQAAAAAAcQAAAAAAZAAAAAACZAAAAAACZAAAAAACZAAAAAACZAAAAAABZAAAAAAAZAAAAAAAZAAAAAADcQAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAB + version: 6 + 0,-2: + ind: 0,-2 + tiles: VAAAAAADVAAAAAABVAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAACcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAVAAAAAACVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAABcQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAACVAAAAAADMAAAAAADSgAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAACMAAAAAACSgAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAADcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACcQAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAVAAAAAACVAAAAAACVAAAAAADcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAD + version: 6 + -1,-2: + ind: -1,-2 + tiles: cQAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASgAAAAAAVAAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAACcQAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASgAAAAAAVAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAADcQAAAAAAVAAAAAACVAAAAAADcQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAADcQAAAAAAVAAAAAAASgAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAADcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAACcQAAAAAASgAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAADGwAAAAACVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAABcQAAAAAASgAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAACGwAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAADcQAAAAAASgAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAACGwAAAAADVAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAJgAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAC + version: 6 + -2,-2: + ind: -2,-2 + tiles: VAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAACcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABcQAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAVAAAAAAAVAAAAAAASgAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACcQAAAAAAVAAAAAADVAAAAAADVAAAAAABcQAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADAwAAAAAAVAAAAAACAwAAAAAAcQAAAAAAVAAAAAABVAAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAABcQAAAAAAVAAAAAADVAAAAAACAwAAAAAAAwAAAAAAVAAAAAACAwAAAAAAcQAAAAAAVAAAAAADVAAAAAACGwAAAAAAVAAAAAABGwAAAAABVAAAAAABGwAAAAABGwAAAAABcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACAwAAAAAAAwAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAADGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAACAwAAAAAAAwAAAAAAVAAAAAAAAwAAAAAAVAAAAAABVAAAAAABVAAAAAAAGwAAAAADVAAAAAAAGwAAAAAAVAAAAAABGwAAAAACGwAAAAACcQAAAAAAcQAAAAAAVAAAAAABAwAAAAAAAwAAAAAAVAAAAAACVAAAAAADcQAAAAAAVAAAAAAAVAAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAABcQAAAAAAGwAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAACNAAAAAAANAAAAAAANAAAAAAAcQAAAAAAVAAAAAACGwAAAAACGwAAAAAAVAAAAAABZAAAAAABZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAACGwAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACZAAAAAACZAAAAAADZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAAAVAAAAAADZAAAAAABZAAAAAABcQAAAAAAVAAAAAAC + version: 6 + -3,-1: + ind: -3,-1 + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAVAAAAAADVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAVAAAAAABVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAACcQAAAAAAGwAAAAADGwAAAAADGwAAAAAAVAAAAAADVAAAAAABcQAAAAAAVAAAAAACVAAAAAABVAAAAAABAAAAAAAAAAAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAABGwAAAAABVAAAAAABVAAAAAADcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAADVAAAAAADVAAAAAABcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABVAAAAAAAVAAAAAACcQAAAAAAVAAAAAACVAAAAAABVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAABGwAAAAABGwAAAAACGwAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACcQAAAAAAGwAAAAABGwAAAAACGwAAAAACVAAAAAAAVAAAAAACcQAAAAAAVAAAAAACVAAAAAACVAAAAAABAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAABYQAAAAAAVAAAAAADVAAAAAACVAAAAAACGwAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACGwAAAAADcQAAAAAAVAAAAAACVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAGwAAAAACGwAAAAACcQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAAAGwAAAAADcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAADGwAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAGwAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAC + version: 6 + -3,0: + ind: -3,0 + tiles: AAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAACGwAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAGwAAAAADGwAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAACGwAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADcQAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAACVAAAAAADGwAAAAABcQAAAAAAVAAAAAABVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAACGwAAAAABcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAAAYQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAADcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAJAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAJAAAAAADVAAAAAABVAAAAAABbQAAAAABbQAAAAAAbQAAAAACbQAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAJAAAAAACJAAAAAAAVAAAAAAAbQAAAAADVAAAAAAAVAAAAAADbQAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAJAAAAAADJAAAAAAAVAAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAADcAAAAAAAcAAAAAAAcQAAAAAAJAAAAAABJAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAADcAAAAAAAcAAAAAAAcQAAAAAAJAAAAAAAJAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAAAcQAAAAAAGwAAAAACVAAAAAABVAAAAAABVAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAJAAAAAACJAAAAAABJAAAAAADJAAAAAACJAAAAAABJAAAAAAAJAAAAAABJAAAAAACJAAAAAADGwAAAAAAVAAAAAADVAAAAAACVAAAAAABcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADSAAAAAAASAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADSAAAAAAANAAAAAAASAAAAAAA + version: 6 + -3,1: + ind: -3,1 + tiles: cAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADSAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAANAAAAAAANAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAACGwAAAAABGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAABcQAAAAAAGwAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAABcQAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAACGwAAAAADGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAADcQAAAAAAGwAAAAADGwAAAAADGwAAAAADcQAAAAAAGwAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAADGwAAAAABGwAAAAACGwAAAAACGwAAAAACcQAAAAAAGwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAABcQAAAAAAGwAAAAACGwAAAAACGwAAAAADcQAAAAAAVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAABVAAAAAACVAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAACcQAAAAAAGwAAAAABGwAAAAAAGwAAAAACcQAAAAAAVAAAAAABVAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACSgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: GwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAACGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAADcQAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAADcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAADcQAAAAAAVAAAAAADcQAAAAAAbgAAAAABbgAAAAADbgAAAAACbgAAAAADVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAAAbgAAAAACcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAAAbgAAAAABcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAADcQAAAAAAVAAAAAAAGwAAAAABGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACGwAAAAACGwAAAAACGwAAAAAAcQAAAAAAVAAAAAABcQAAAAAAGwAAAAABGwAAAAAAGwAAAAABcQAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAADcQAAAAAAVAAAAAADGwAAAAABGwAAAAAAGwAAAAABcQAAAAAAVAAAAAACcQAAAAAAGwAAAAABGwAAAAACGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAABcQAAAAAAVAAAAAAAGwAAAAACGwAAAAACGwAAAAACcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAGwAAAAABGwAAAAABcQAAAAAAVAAAAAACVAAAAAAD + version: 6 + -3,-2: + ind: -3,-2 + tiles: GwAAAAADGwAAAAACGwAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAABcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAACGwAAAAACGwAAAAABGwAAAAACGwAAAAAAGwAAAAADGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAABcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAABcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAAwAAAAAAVAAAAAACAwAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAVAAAAAAAAwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAAwAAAAAAVAAAAAAAAwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAwAAAAAAVAAAAAADAwAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAcQAAAAAAVAAAAAADAwAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABAwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAVAAAAAACVAAAAAACVAAAAAAB + version: 6 + -4,-2: + ind: -4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAA + version: 6 + -4,-1: + ind: -4,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-3: + ind: -3,-3 + tiles: AAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAADAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAABGwAAAAABGwAAAAACAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAACGwAAAAADGwAAAAAAGwAAAAABGwAAAAABVAAAAAABVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAADGwAAAAAAGwAAAAACGwAAAAACGwAAAAACVAAAAAADVAAAAAABVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAABcQAAAAAAGwAAAAABGwAAAAABGwAAAAABcQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAABAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAABAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAABcQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAACGwAAAAACGwAAAAADGwAAAAACGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAACGwAAAAABcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAACGwAAAAABGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAADcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAAB + version: 6 + -2,-3: + ind: -2,-3 + tiles: GwAAAAADGwAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACcQAAAAAASAAAAAAASAAAAAAAGwAAAAADGwAAAAABcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAABYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAASAAAAAAASAAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAJgAAAAAAVAAAAAABcQAAAAAAVAAAAAACcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAcQAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAcQAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACcQAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABcQAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAADcQAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAABcQAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAADSAAAAAAASAAAAAAASAAAAAAA + version: 6 + -1,-3: + ind: -1,-3 + tiles: SAAAAAAAcQAAAAAAYAAAAAAAVAAAAAABVAAAAAACSgAAAAAAcQAAAAAADwAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAABSAAAAAAAcQAAAAAAYAAAAAAAVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAADSAAAAAAASAAAAAAAYAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACSAAAAAAAcQAAAAAAYAAAAAAAVAAAAAABVAAAAAACSgAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAGwAAAAACGwAAAAAASAAAAAAAcQAAAAAAYAAAAAAAVAAAAAAAVAAAAAAASgAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADSAAAAAAASAAAAAAAYAAAAAAAVAAAAAACVAAAAAACSgAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAABSAAAAAAAcQAAAAAAYAAAAAAAVAAAAAADVAAAAAABSgAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABSAAAAAAAcQAAAAAAYAAAAAAAVAAAAAADVAAAAAAASgAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAACSAAAAAAASAAAAAAAYAAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAACSAAAAAAAcQAAAAAAYAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAVAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAGwAAAAABGwAAAAADGwAAAAAAcQAAAAAAVAAAAAADSAAAAAAASAAAAAAAYAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAADcQAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAADVAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAASgAAAAAAVAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASgAAAAAAVAAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAVAAAAAAA + version: 6 + -1,-4: + ind: -1,-4 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAVAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAADGwAAAAACcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAJgAAAAAAVAAAAAADcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAYAAAAAAAVAAAAAABVAAAAAAASgAAAAAAcQAAAAAADwAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAYAAAAAAAVAAAAAABVAAAAAACSgAAAAAASgAAAAAADwAAAAAADwAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAGwAAAAACGwAAAAACGwAAAAAA + version: 6 + -2,-4: + ind: -2,-4 + tiles: bgAAAAADEQAAAAAGEQAAAAABbgAAAAACEQAAAAAAZAAAAAAAcQAAAAAAZAAAAAAAZAAAAAACcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAbgAAAAADbgAAAAACcQAAAAAAbgAAAAABEQAAAAABZAAAAAAAZAAAAAADJgAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAEQAAAAABbgAAAAACbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAEQAAAAAAbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAbgAAAAADEQAAAAAEcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAbgAAAAADEQAAAAAEcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAbgAAAAADEQAAAAAEcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACcQAAAAAAVAAAAAAAVAAAAAABcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAABcQAAAAAAVAAAAAABcQAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAVAAAAAACGwAAAAACcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABcQAAAAAASAAAAAAASAAAAAAAGwAAAAADGwAAAAADcQAAAAAAGwAAAAAAGwAAAAABGwAAAAABYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACcQAAAAAASAAAAAAASAAAAAAA + version: 6 + -4,-3: + ind: -4,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAA + version: 6 + -3,-4: + ind: -3,-4 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAEQAAAAACEQAAAAACbgAAAAACbgAAAAAAbgAAAAACAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAbgAAAAADbgAAAAABEQAAAAACcQAAAAAAEQAAAAAEcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAEQAAAAACAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAEQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAbgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAEQAAAAAAEQAAAAAAbgAAAAAAbgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAEQAAAAAAbgAAAAAAEQAAAAAAcQAAAAAAVAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAABGwAAAAACGwAAAAACGwAAAAAAGwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAADGwAAAAADGwAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAADGwAAAAAAGwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAABcQAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAAC + version: 6 + -4,-4: + ind: -4,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,-4: + ind: -5,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -6,-4: + ind: -6,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + -6,-3: + ind: -6,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,-3: + ind: -5,-3 + tiles: AAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,-5: + ind: -4,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAA + version: 6 + -3,-5: + ind: -3,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAbgAAAAAC + version: 6 + -2,-5: + ind: -2,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAZAAAAAABZAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAZAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAEQAAAAABEQAAAAAGbgAAAAADbgAAAAACbgAAAAADcQAAAAAAZAAAAAAAZAAAAAABcQAAAAAAZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: VAAAAAACVAAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAVAAAAAACVAAAAAACcQAAAAAAVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAVAAAAAADVAAAAAAAMAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAACMAAAAAADVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAVAAAAAAAVAAAAAACMAAAAAAAMAAAAAAAcQAAAAAAMAAAAAABMAAAAAAAcQAAAAAAMAAAAAADMAAAAAABVAAAAAABVAAAAAADVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAVAAAAAADVAAAAAACMAAAAAACMAAAAAABcQAAAAAAMAAAAAACMAAAAAAAcQAAAAAAMAAAAAAAMAAAAAADVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABMAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAABMAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAABMAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAADbgAAAAABbgAAAAAAbgAAAAADbgAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAMAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAABbgAAAAACbgAAAAABbgAAAAADbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADEQAAAAABEQAAAAABcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAACcQAAAAAAEQAAAAABEQAAAAAFEQAAAAAFbgAAAAABEQAAAAACbgAAAAAAEQAAAAACcQAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: VAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAbgAAAAADbgAAAAABbgAAAAADcQAAAAAAbgAAAAAAEQAAAAADEQAAAAACcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAABcQAAAAAAbgAAAAADEQAAAAAFbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAABcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAAAbgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAcQAAAAAAEQAAAAAFbgAAAAACAgAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAbgAAAAABAgAAAAAAAgAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAABcQAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAABbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAADcQAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAABbgAAAAABbgAAAAABbgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAABcQAAAAAAbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAAAbgAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAABcQAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADcQAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAAAVAAAAAABcQAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAACcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAACSgAAAAAAcQAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAABVAAAAAACSgAAAAAASgAAAAAAVAAAAAADVAAAAAACSgAAAAAAcQAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: SgAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAAAbQAAAAABGwAAAAABGwAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAVAAAAAACVAAAAAADSgAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAAAbQAAAAABcQAAAAAAGwAAAAACcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAbQAAAAACbQAAAAABbQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAACcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAVAAAAAABVAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAABcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACcQAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAABcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAABcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAB + version: 6 + 1,1: + ind: 1,1 + tiles: GwAAAAABGwAAAAAAcQAAAAAAZAAAAAAAZAAAAAADZAAAAAABZAAAAAADZAAAAAACZAAAAAACZAAAAAACZAAAAAABcQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAAAGwAAAAABGwAAAAADcQAAAAAAZAAAAAADZAAAAAAAZAAAAAACZAAAAAACZAAAAAADZAAAAAACZAAAAAABZAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAcQAAAAAAZAAAAAABZAAAAAABZAAAAAABZAAAAAADZAAAAAABZAAAAAADZAAAAAAAZAAAAAABcQAAAAAAVAAAAAABVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAADZAAAAAACZAAAAAABZAAAAAACZAAAAAABcQAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAADcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAADcQAAAAAAVAAAAAADVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAABcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAAAGwAAAAAAGwAAAAABVAAAAAADcQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAACcQAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAADGwAAAAADGwAAAAAAGwAAAAACGwAAAAADGwAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAADcQAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: VAAAAAAAVAAAAAAASgAAAAAASgAAAAAAVAAAAAACVAAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAAAVAAAAAADSgAAAAAASgAAAAAAVAAAAAACVAAAAAADSgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAAVAAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAABSgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAASgAAAAAAVAAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAUAAAAAAAKgAAAAAAKgAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAcQAAAAAAUAAAAAAAKgAAAAAAKgAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAUAAAAAAAUAAAAAAAKgAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAGwAAAAACGwAAAAABGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAVAAAAAADVAAAAAADVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + 4,1: + ind: 4,1 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,0: + ind: 4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: cQAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADVAAAAAADcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAABVAAAAAABcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAAAGwAAAAABcQAAAAAAbgAAAAADbgAAAAADPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAAAcQAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAGwAAAAABGwAAAAACGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAGwAAAAACGwAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAADcQAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAADcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAACGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACcQAAAAAAGwAAAAADGwAAAAADcQAAAAAAGwAAAAABGwAAAAAAGwAAAAABcQAAAAAAbgAAAAAAbgAAAAADPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAADGwAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAADGwAAAAACGwAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAADGwAAAAABGwAAAAACcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: VAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAPAAAAAAAcQAAAAAADQAAAAAAVAAAAAACVAAAAAADVAAAAAADGwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAACDwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADcQAAAAAADwAAAAAADwAAAAAADwAAAAAAGwAAAAABDwAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAVAAAAAABVAAAAAAAVAAAAAADcQAAAAAANAAAAAAASAAAAAAASAAAAAAASAAAAAAANAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAANAAAAAAANAAAAAAASAAAAAAANAAAAAAANAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAGwAAAAABGwAAAAACVAAAAAADVAAAAAABVAAAAAACcQAAAAAANAAAAAAANAAAAAAASAAAAAAANAAAAAAANAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAGwAAAAACGwAAAAADVAAAAAABVAAAAAABVAAAAAABcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAGwAAAAACGwAAAAACVAAAAAADVAAAAAADVAAAAAABcQAAAAAANAAAAAAANAAAAAAASAAAAAAANAAAAAAANAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAANAAAAAAANAAAAAAASAAAAAAANAAAAAAANAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAbgAAAAACbgAAAAABbgAAAAADVAAAAAAAVAAAAAACVAAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAVAAAAAADVAAAAAACVAAAAAABcQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAbgAAAAADbgAAAAAAbgAAAAADVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAADcQAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAVAAAAAACVAAAAAAAVAAAAAABMAAAAAABVAAAAAABVAAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: SAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAA + version: 6 + 2,3: + ind: 2,3 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: VAAAAAADVAAAAAADVAAAAAACMAAAAAACVAAAAAABcQAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAVAAAAAABVAAAAAABVAAAAAAAMAAAAAADVAAAAAACcQAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAADcQAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAVAAAAAABVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAVAAAAAACVAAAAAACVAAAAAACGwAAAAABGwAAAAADGwAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: VAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAACGwAAAAAAGwAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAAVAAAAAACSgAAAAAASgAAAAAAcQAAAAAASgAAAAAAVAAAAAABGwAAAAABGwAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAAVAAAAAABSgAAAAAASgAAAAAAcQAAAAAASgAAAAAAVAAAAAABSgAAAAAASgAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAASgAAAAAASgAAAAAAVAAAAAABSgAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAASgAAAAAASgAAAAAAVAAAAAADSgAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAACcQAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAbgAAAAACbgAAAAABbgAAAAABbgAAAAACcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAABcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACcQAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAABcQAAAAAAVAAAAAADVAAAAAACVAAAAAACcQAAAAAAVAAAAAADVAAAAAABVAAAAAABGwAAAAADGwAAAAADGwAAAAADcQAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAVAAAAAADVAAAAAACcQAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAACcQAAAAAAVAAAAAACVAAAAAADVAAAAAADcQAAAAAAVAAAAAABVAAAAAADVAAAAAADcQAAAAAAVAAAAAADVAAAAAACcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAVAAAAAABVAAAAAADVAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: VAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAABGwAAAAACVAAAAAACcQAAAAAAVAAAAAACcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAGwAAAAABVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAABGwAAAAADVAAAAAABVAAAAAABVAAAAAADcQAAAAAAVAAAAAABVAAAAAADVAAAAAACcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAVAAAAAADcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAABGwAAAAADcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAAVAAAAAACGwAAAAACGwAAAAACGwAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAACGwAAAAADcQAAAAAAVAAAAAABVAAAAAABcQAAAAAAVAAAAAACGwAAAAACGwAAAAAAGwAAAAACVAAAAAABcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAADGwAAAAADcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABJgAAAAAAcQAAAAAAVAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAA + version: 6 + -2,2: + ind: -2,2 + tiles: cQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAACZAAAAAADcQAAAAAAVAAAAAADVAAAAAADVAAAAAABcQAAAAAAGwAAAAABGwAAAAABVAAAAAADVAAAAAACVAAAAAABcQAAAAAAZAAAAAADZAAAAAAAZAAAAAACZAAAAAABZAAAAAADcQAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAGwAAAAACGwAAAAABcQAAAAAAVAAAAAABVAAAAAACcQAAAAAAZAAAAAACZAAAAAABZAAAAAACZAAAAAAAZAAAAAADcQAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAGwAAAAADGwAAAAAAcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAZAAAAAAAZAAAAAACZAAAAAABZAAAAAACZAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAABcQAAAAAAGwAAAAABGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAADcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAGwAAAAABGwAAAAADcQAAAAAAVAAAAAAAVAAAAAADcQAAAAAAZAAAAAAAZAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAZAAAAAADZAAAAAAAGwAAAAAAcQAAAAAASgAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAAAGwAAAAADSgAAAAAAcQAAAAAAGwAAAAADVAAAAAAAVAAAAAAAcQAAAAAAZAAAAAADZAAAAAACGwAAAAABcQAAAAAASgAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAADGwAAAAABSgAAAAAAcQAAAAAAGwAAAAADVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAAAGwAAAAABSgAAAAAAcQAAAAAAGwAAAAADVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAACGwAAAAABGwAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + -3,2: + ind: -3,2 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAGwAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAGwAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAGwAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAGwAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADGwAAAAABcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAABbgAAAAABbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAZAAAAAADZAAAAAADbgAAAAAAbgAAAAACbgAAAAACbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAZAAAAAAAZAAAAAADcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAZAAAAAADcQAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAADcQAAAAAAVAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAABbgAAAAACcQAAAAAAVAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAABbgAAAAAAbgAAAAACbgAAAAABcQAAAAAAVAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAABcQAAAAAAVAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAGwAAAAAAGwAAAAADGwAAAAACbgAAAAABbgAAAAACcQAAAAAAVAAAAAACAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + -4,0: + ind: -4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + -4,1: + ind: -4,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + -4,2: + ind: -4,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,1: + ind: -5,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + version: 6 + -2,3: + ind: -2,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,4: + ind: -1,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAADcQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAACAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAADGwAAAAADcQAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAACDwAAAAAAcQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAABDwAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAAADwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAADwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAADcQAAAAAADwAAAAAAcQAAAAAASAAAAAAASAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAACDwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAAADwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAA + version: 6 + 0,4: + ind: 0,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAABDwAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAACGwAAAAAAGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAADDwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAADwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + 0,5: + ind: 0,5 + tiles: cAAAAAAASAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAcQAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,5: + ind: -1,5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAACDwAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAADGwAAAAABcQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAABGwAAAAADcQAAAAAAGwAAAAADAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAADwAAAAAAGwAAAAAAGwAAAAACcQAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,4: + ind: 1,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,5: + ind: 1,5 + tiles: cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-3: + ind: 2,-3 + tiles: VAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAcAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAASgAAAAAASgAAAAAAGwAAAAABGwAAAAAC + version: 6 + 3,-3: + ind: 3,-3 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-2: + ind: 3,-2 + tiles: cQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-3: + ind: 1,-3 + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAACbQAAAAAAGwAAAAAAGwAAAAADcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: GwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAACcQAAAAAAVAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAABGwAAAAACcQAAAAAAVAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAABGwAAAAACVAAAAAABVAAAAAAAGwAAAAABGwAAAAAAcQAAAAAAVAAAAAAAYAAAAAAAcQAAAAAAHAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADcQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAVAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAVAAAAAAAJgAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAADcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAA + version: 6 + 0,-4: + ind: 0,-4 + tiles: YAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAGwAAAAADVAAAAAADVAAAAAABcQAAAAAASwAAAAAAGwAAAAADSwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAGwAAAAADcQAAAAAAGwAAAAAAVAAAAAADVAAAAAACcQAAAAAASwAAAAAAGwAAAAADSwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAGwAAAAABcQAAAAAAGwAAAAABVAAAAAAAVAAAAAAAcQAAAAAASwAAAAAAGwAAAAACSwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAGwAAAAACVAAAAAADVAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAGwAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACVAAAAAADVAAAAAACcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAACcQAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAAAcQAAAAAAVAAAAAACcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAADcQAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAABGwAAAAABcQAAAAAAVAAAAAABcQAAAAAAGwAAAAABGwAAAAADGwAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAABVAAAAAACVAAAAAADVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAGwAAAAACGwAAAAADGwAAAAADcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAA + version: 6 + 0,-5: + ind: 0,-5 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAA + version: 6 + -1,-5: + ind: -1,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + 1,-4: + ind: 1,-4 + tiles: SAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA + version: 6 + 2,-4: + ind: 2,-4 + tiles: cQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + 1,-5: + ind: 1,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + 2,-5: + ind: 2,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + 3,-4: + ind: 3,-4 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-5: + ind: 3,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-6: + ind: -1,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + 0,-6: + ind: 0,-6 + tiles: cAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-7: + ind: 0,-7 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-7: + ind: -1,-7 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#EFB34196' + id: 1 + decals: + 4101: -9,24 + - node: + color: '#EFB341FF' + id: 1 + decals: + 1353: -46,-27 + 5399: 44,-34 + - node: + color: '#EFB34196' + id: 2 + decals: + 4102: -9,23 + - node: + color: '#EFB341FF' + id: 2 + decals: + 1388: -39,-33 + 5400: 45,-34 + - node: + color: '#EFB34196' + id: 3 + decals: + 4103: -9,22 + 7217: -21,-46 + - node: + color: '#EFB341FF' + id: 3 + decals: + 5401: 46,-34 + - node: + color: '#EFB341FF' + id: 4 + decals: + 5402: 47,-34 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 7534: -5,-69 + 7535: -6,-69 + 7546: 2,-63 + 7547: 3,-63 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 7537: -5,-72 + 7538: -5,-73 + 7545: 1,-63 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 7536: -6,-71 + 7544: 8,-75 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 5036: 1,52 + 5037: 0,52 + 7539: 5,-73 + 7540: 5,-72 + 7541: 5,-71 + 7542: 5,-70 + 7543: 5,-69 + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 347: -5,-2 + 6062: 3,47 + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 346: -7,-3 + 360: 6,-2 + 362: 6,-4 + 3696: 35,-8 + 3697: 40,-8 + 3702: 32,-4 + - node: + color: '#FFFFFFFF' + id: Basalt3 + decals: + 345: -5,-4 + 373: -8,3 + 374: -6,3 + 375: -5,6 + 376: -3,7 + 3701: 32,-4 + 6052: 14,-27 + - node: + color: '#FFFFFFFF' + id: Basalt4 + decals: + 359: 5,-6 + 3695: 37,-8 + 6060: 3,48 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 361: 4,-6 + 377: -5,5 + 378: -5,6 + 379: -2,8 + 380: 8,3 + 381: 6,4 + 382: 4,7 + 383: 4,8 + 3693: 41,-9 + 3694: 34,-10 + 6053: 14,-26 + 6061: 3,49 + - node: + color: '#FFFFFFFF' + id: Basalt6 + decals: + 348: -3,-7 + - node: + color: '#FFFFFFFF' + id: Basalt7 + decals: + 349: -5,-6 + 357: 8,-3 + 358: 5,-6 + 384: 8,3 + 385: 6,5 + 386: 3,7 + 387: -3,7 + 388: -5,6 + 389: -7,3 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Bot + decals: + 3148: 32,14 + 3149: 32,13 + 3150: 37,13 + 3151: 38,13 + 3152: 38,19 + 3153: 36,19 + 3154: 35,19 + 3155: 34,19 + 3156: 34,20 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 314: 9,9 + 315: 6,8 + 316: 5,8 + 317: -8,9 + 318: -5,8 + 319: -4,8 + 320: -8,-8 + 321: -7,-5 + 322: -7,-4 + 323: -5,-7 + 324: -4,-7 + 325: 9,-8 + 326: 6,-7 + 327: 5,-7 + 328: 8,-5 + 329: 8,-4 + 367: -4,-3 + 368: -4,-2 + 369: 5,-3 + 370: -4,4 + 371: 5,4 + 372: 5,3 + 471: -10,-7 + 472: -11,-6 + 473: -12,-3 + 474: -13,-3 + 489: -16,9 + 490: -17,9 + 491: -18,9 + 500: -6,16 + 501: -7,16 + 502: -3,16 + 503: -4,16 + 504: -5,16 + 505: 9,19 + 531: 9,17 + 532: 6,19 + 533: 5,19 + 534: 4,19 + 551: 10,11 + 900: -31,4 + 1080: -44,8 + 1081: -44,9 + 1082: -44,10 + 1083: -44,11 + 1153: -42,-4 + 1154: -42,-3 + 1155: -41,-3 + 1156: -41,-4 + 1157: -40,-4 + 1158: -40,-3 + 1159: -39,-3 + 1160: -39,-4 + 1161: -42,1 + 1162: -42,2 + 1163: -41,2 + 1164: -41,1 + 1165: -40,1 + 1166: -40,2 + 1167: -39,2 + 1168: -39,1 + 1179: -43,-1 + 1210: -38,-8 + 1211: -43,-14 + 1212: -45,-14 + 1290: -37,-21 + 1291: -39,-21 + 1292: -37,-16 + 1293: -37,-17 + 1294: -37,-18 + 1418: -29,-21 + 1433: -37,-29 + 1434: -37,-27 + 1539: -31,-36 + 1540: -28,-36 + 1541: -28,-35 + 1542: -36,-39 + 1543: -36,-40 + 1554: -31,-40 + 1555: -31,-39 + 1556: -31,-38 + 1566: -31,-42 + 1567: -30,-42 + 1568: -29,-42 + 1569: -28,-42 + 1649: -26,-34 + 1673: -24,-22 + 1674: -24,-24 + 1675: -22,-24 + 1676: -22,-22 + 1677: -25,-25 + 1678: -21,-19 + 1806: -21,-31 + 1807: -21,-32 + 1808: -21,-34 + 1809: -23,-34 + 1810: -23,-33 + 1876: -9,-33 + 1877: -9,-32 + 1878: -9,-31 + 1879: -3,-34 + 1880: -4,-34 + 1881: -3,-31 + 1882: -4,-31 + 1883: -5,-31 + 1980: -14,-50 + 1981: -14,-47 + 1982: -14,-44 + 1983: -14,-41 + 1984: -14,-38 + 1985: -13,-35 + 1986: -12,-50 + 2090: -9,-22 + 2091: -37,-42 + 2122: -42,-39 + 2260: -35,-46 + 2261: -33,-46 + 2262: -32,-46 + 2263: -40,-53 + 2264: -40,-52 + 2670: -36,6 + 2671: -33,8 + 2767: 28,-5 + 2768: 27,-5 + 2769: 27,-5 + 2770: 28,-3 + 2771: 30,-3 + 3025: 21,12 + 3026: 32,11 + 3027: 15,16 + 3028: 19,17 + 3029: 19,18 + 3030: 21,19 + 3031: 23,19 + 3032: 24,19 + 3033: 24,17 + 3034: 21,21 + 3035: 24,23 + 3036: 25,23 + 3037: 26,23 + 3038: 26,21 + 3039: 25,21 + 3040: 22,23 + 3188: 40,17 + 3189: 41,17 + 3190: 42,17 + 3191: 43,17 + 3215: 43,9 + 3230: 37,24 + 3231: 36,24 + 3232: 36,22 + 3233: 36,21 + 3661: 27,29 + 3662: 27,33 + 3663: 30,39 + 3664: 31,30 + 3665: 32,30 + 3666: 33,30 + 3667: 35,30 + 3668: 36,30 + 3669: 37,30 + 3670: 39,30 + 3671: 31,26 + 3672: 32,26 + 3673: 33,26 + 3674: 35,26 + 3675: 36,26 + 3676: 37,26 + 3677: 42,39 + 3678: 42,43 + 3679: 42,44 + 3680: 42,45 + 3844: 32,-13 + 3845: 33,-13 + 3846: 34,-13 + 3847: 35,-13 + 3848: 39,-13 + 3849: 40,-13 + 3850: 41,-13 + 3851: 42,-13 + 3852: 43,-13 + 3853: 44,-12 + 3854: 41,-4 + 3855: 42,-4 + 3856: 43,-4 + 3857: 44,-5 + 3908: 46,-17 + 3909: 45,-17 + 3910: 45,-19 + 3911: 46,-19 + 4072: -3,18 + 4096: -13,24 + 4097: -10,24 + 4098: -10,23 + 4099: -10,22 + 4100: -4,24 + 4254: -12,34 + 4255: -11,34 + 4256: -11,35 + 4257: -12,35 + 4258: -12,36 + 4259: -9,34 + 4260: -8,34 + 4261: -8,32 + 4262: -10,31 + 4263: -11,31 + 4264: -12,31 + 4290: -17,31 + 4291: -18,31 + 4292: -18,33 + 4293: -18,34 + 4294: -18,35 + 4295: -18,36 + 4296: -15,36 + 4297: -15,33 + 4300: -17,40 + 4301: -16,40 + 4302: -15,40 + 4303: -14,40 + 4304: -13,40 + 4305: -14,38 + 4306: -15,38 + 4307: -16,38 + 4327: -21,31 + 4328: -21,33 + 4329: -21,34 + 4330: -21,35 + 4331: -21,36 + 4350: -21,40 + 4351: -21,39 + 4352: -21,38 + 4353: -27,40 + 4354: -27,39 + 4355: -27,38 + 4371: -27,36 + 4372: -28,36 + 4373: -29,38 + 4405: -43,28 + 4406: -42,28 + 4407: -41,28 + 4408: -40,28 + 4409: -41,30 + 4410: -42,30 + 4411: -43,30 + 4412: -37,39 + 4463: -36,19 + 4464: -36,20 + 4465: -36,21 + 4466: -36,22 + 4558: -27,30 + 4590: -3,40 + 4594: -3,28 + 4595: -6,30 + 4596: -7,30 + 4647: 7,30 + 4648: 8,31 + 4649: 7,32 + 4650: 6,31 + 4791: 13,50 + 4792: 13,49 + 4793: 8,56 + 4794: 7,56 + 4795: 4,56 + 4796: 4,55 + 4835: 4,46 + 4836: 4,48 + 4837: 4,49 + 4838: 4,50 + 5007: -3,58 + 5008: -6,58 + 5009: -6,59 + 5010: -6,60 + 5011: 7,58 + 5012: 7,59 + 5013: 7,60 + 5014: 3,61 + 5015: 3,60 + 5016: -2,61 + 5017: -2,60 + 5018: -3,61 + 5019: 4,61 + 5020: 1,62 + 5021: -1,62 + 5022: 0,62 + 5023: 2,62 + 5135: 6,69 + 5136: -5,69 + 5137: -5,61 + 5138: 6,61 + 5187: 12,-15 + 5188: 12,-16 + 5189: 12,-17 + 5190: 15,-14 + 5191: 17,-14 + 5199: 20,-19 + 5200: 20,-20 + 5201: 20,-21 + 5202: 17,-21 + 5250: 26,-22 + 5251: 26,-21 + 5252: 22,-20 + 5253: 25,-18 + 5254: 26,-18 + 5337: 34,-22 + 5382: 38,-33 + 5383: 42,-33 + 5384: 42,-35 + 5385: 41,-31 + 5386: 41,-28 + 5391: 39,-27 + 5469: 28,-28 + 5470: 28,-29 + 5471: 28,-30 + 5472: 25,-31 + 5473: 25,-30 + 5474: 25,-28 + 5475: 30,-28 + 5476: 31,-28 + 5477: 32,-28 + 5478: 32,-32 + 5479: 30,-30 + 5500: 10,-33 + 5501: 8,-33 + 5502: 7,-33 + 5503: 9,-33 + 5504: 10,-30 + 5505: 9,-30 + 5506: 8,-30 + 5507: 4,-30 + 5508: 4,-31 + 5509: 4,-32 + 5593: 10,-28 + 5903: 11,-31 + 5907: 41,-21 + 5908: 40,-21 + 5909: 39,-21 + 5910: 15,-23 + 5911: 16,-23 + 5912: 20,-23 + 5913: 21,-23 + 5914: 22,-23 + 5915: 23,-23 + 6186: -2,-45 + 6187: 8,-46 + 6231: 2,-49 + 6232: 3,-49 + 6233: 4,-49 + 6315: 4,-57 + 6316: 4,-58 + 6317: 4,-59 + 6318: 4,-60 + 6319: 4,-61 + 6320: 2,-57 + 6321: 2,-56 + 6322: 2,-55 + 6449: -16,-62 + 6450: -19,-60 + 6524: 4,25 + 6532: 11,-66 + 6533: 12,-66 + 6534: 13,-66 + 6550: 10,-63 + 6581: -4,-67 + 6582: -3,-67 + 6583: 3,-67 + 6584: 4,-67 + 6585: 0,-70 + 6586: -5,-63 + 6587: -4,-65 + 6588: 5,-65 + 6589: 3,-75 + 6590: 3,-76 + 6591: -8,-71 + 6592: -8,-69 + 6593: -5,-71 + 6707: 7,-77 + 6708: -7,-77 + 6841: 16,-50 + 6842: 16,-51 + 6843: 16,-52 + 6844: 17,-52 + 6845: 17,-51 + 6846: 17,-50 + 6847: 18,-50 + 6848: 18,-51 + 6849: 18,-52 + 6850: 19,-52 + 6851: 19,-51 + 6852: 19,-50 + 6884: 28,-60 + 6885: 27,-60 + 6886: 27,-59 + 6887: 27,-58 + 6888: 28,-58 + 6889: 30,-58 + 6890: 30,-59 + 6891: 30,-60 + 7023: 22,-49 + 7024: 21,-49 + 7025: 20,-49 + 7045: 35,-52 + 7046: 36,-52 + 7047: 37,-52 + 7048: 38,-52 + 7049: 38,-51 + 7050: 38,-50 + 7051: 38,-49 + 7052: 36,-49 + 7053: 37,-49 + 7054: 35,-49 + 7055: 35,-50 + 7056: 35,-51 + 7057: 36,-51 + 7058: 37,-51 + 7059: 37,-50 + 7060: 36,-50 + 7061: 34,-42 + 7062: 35,-42 + 7063: 37,-43 + 7064: 38,-43 + 7065: 38,-45 + 7069: 34,-44 + 7092: 22,-40 + 7093: 26,-40 + 7094: 27,-40 + 7095: 28,-40 + 7129: 14,-44 + 7130: 14,-46 + 7170: 10,-49 + 7171: 11,-49 + 7172: 12,-49 + 7173: 13,-49 + 7174: 14,-49 + 7313: 15,23 + 7314: 15,22 + 7315: 24,-59 + 7342: 8,-55 + 7343: 41,-15 + 7470: -7,-59 + 7471: -7,-58 + 7472: -7,-57 + 7473: -6,-57 + 7474: -6,-58 + 7475: -6,-59 + 7476: -5,-59 + 7477: -5,-58 + 7478: -5,-57 + 7479: -4,-57 + 7480: -4,-58 + 7481: -4,-59 + 7482: -3,-59 + 7483: -3,-58 + 7484: -3,-57 + 7485: -2,-57 + 7486: -2,-58 + 7487: -2,-59 + 7488: -1,-59 + 7489: -1,-58 + 7490: -1,-57 + 7549: 6,56 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Bot + decals: + 2134: -48,-30 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Bot + decals: + 5145: 14,-9 + 5146: 14,-10 + 5147: 14,-11 + 5148: 17,-9 + 5149: 17,-10 + 5150: 17,-11 + 5151: 19,-9 + 5152: 19,-10 + 5153: 19,-11 + - node: + color: '#D4D4D4D9' + id: BotGreyscale + decals: + 4403: -41,31 + 4404: -42,31 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 4643: 8,32 + 4645: 6,30 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: BotLeft + decals: + 4644: 6,32 + 4646: 8,30 + - node: + color: '#DE3A3AFF' + id: Box + decals: + 2279: -25,-48 + - node: + color: '#EFB34196' + id: Box + decals: + 7218: -21,-46 + - node: + color: '#EFB341FF' + id: Box + decals: + 1352: -46,-27 + 1387: -39,-33 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 1180: -40,-1 + 1875: -4,-33 + 5255: 30,-23 + 5256: 32,-23 + 5387: 38,-28 + 5388: 38,-29 + 5389: 38,-30 + 5390: 38,-31 + 5594: 6,-28 + 5595: 8,-22 + 5897: 32,-23 + 5898: 30,-23 + - node: + color: '#DE3A3AFF' + id: BoxGreyscale + decals: + 4332: -21,32 + - node: + color: '#FFFFFFFF' + id: BoxGreyscale + decals: + 4482: -31,26 + 5192: 16,-15 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 3407: 23,30 + 3417: 19,34 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 3402: 25,30 + 3410: 21,30 + 3415: 21,36 + 3423: 17,33 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 3408: 23,32 + 3422: 19,29 + 4761: -5,56 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 3401: 25,32 + 3409: 21,32 + 3424: 17,29 + 4760: -7,56 + 6512: 6,25 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndE + decals: + 3416: 19,36 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 3405: 23,33 + 3406: 23,29 + 3418: 19,33 + 3419: 19,32 + 3420: 19,31 + 3421: 19,30 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 2481: -35,-65 + 2482: -36,-65 + 2483: -37,-65 + 3429: 22,30 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 3425: 18,29 + 3430: 22,32 + 4762: -6,56 + 6507: 8,25 + 6509: 7,25 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 3403: 25,29 + 3404: 25,33 + 3411: 21,29 + 3412: 21,33 + 3413: 21,34 + 3414: 21,35 + 3426: 17,30 + 3427: 17,31 + 3428: 17,32 + 4759: -7,57 + 6514: 6,26 + 6515: 6,27 + - node: + color: '#FFFFFFFF' + id: Bushf1 + decals: + 330: -3,-7 + 331: -3,-6 + 332: -5,-6 + 333: -4,-4 + 334: -6,-4 + 335: -6,-3 + 336: -7,-3 + 337: -8,-2 + 338: -5,-2 + 350: 4,-7 + 351: 4,-5 + 352: 6,-5 + 353: 6,-4 + 354: 6,-3 + 355: 7,-2 + 356: 9,-2 + 390: -7,3 + 391: -6,3 + 392: -6,5 + 393: -5,5 + 394: -4,7 + 395: -2,8 + 396: 4,6 + 397: 3,8 + 398: 5,6 + 399: 6,4 + 400: 7,3 + 401: 9,3 + 402: 7,4 + 3681: 34,-10 + 3682: 35,-8 + 3683: 37,-9 + 3684: 40,-9 + 3685: 41,-8 + 6048: 14,-26 + 6054: 3,49 + - node: + color: '#FFFFFFFF' + id: Bushf2 + decals: + 411: -2,7 + 412: -2,9 + 413: -3,6 + 414: -4,6 + 415: -5,7 + 422: 5,5 + 3699: 32,-3 + 6049: 14,-27 + 6056: 3,47 + - node: + color: '#FFFFFFFF' + id: Bushf3 + decals: + 339: -6,-2 + 340: -6,-5 + 416: -5,3 + 417: -5,4 + 418: -7,4 + 419: 5,7 + 420: 6,7 + 421: 8,4 + 3686: 41,-10 + 3687: 40,-8 + 3688: 34,-8 + 3698: 32,-4 + 6055: 3,48 + - node: + color: '#FFFFFFFF' + id: Bushl1 + decals: + 366: 5,-5 + - node: + color: '#FFFFFFFF' + id: Bushl2 + decals: + 3689: 34,-9 + - node: + color: '#FFFFFFFF' + id: Bushl4 + decals: + 410: -2,6 + 3690: 41,-9 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: Caution + decals: + 4155: -3,26 + 4156: -3,26 + 4157: -4,26 + 4158: -6,26 + 4159: -7,26 + 4160: -9,26 + 4161: -10,26 + 4162: -12,26 + 4163: -13,26 + 4164: -13,26 + 4165: -21,26 + 4166: -21,26 + 4167: -20,26 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Caution + decals: + 5392: 46,-32 + 5393: 46,-32 + 5394: 46,-32 + 5395: 46,-32 + 5396: 46,-32 + 5397: 46,-32 + 7076: 38,-47 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 5030: 2,53 + 5031: -1,53 + 6577: 4,-71 + 6578: -4,-71 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Caution + decals: + 2129: -43,-44 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Caution + decals: + 5032: 2,58 + 5033: -1,58 + 6579: 4,-69 + 6580: -4,-69 + - node: + color: '#52B4E996' + id: CheckerNESW + decals: + 3236: 37,21 + 3237: 38,21 + 3238: 38,22 + 3239: 37,22 + 3240: 37,23 + 3241: 38,23 + 3242: 36,23 + 3243: 38,24 + 5228: 25,-22 + 5229: 26,-22 + 5230: 26,-21 + 5231: 25,-21 + 5232: 24,-21 + 5233: 23,-21 + 5234: 22,-21 + 5235: 22,-20 + 5236: 23,-20 + 5237: 24,-20 + 5238: 25,-20 + 5239: 26,-20 + 5240: 26,-19 + 5241: 25,-19 + 5242: 24,-19 + 5243: 23,-19 + 5244: 22,-19 + 5245: 22,-18 + 5246: 23,-18 + 5247: 24,-18 + 5248: 25,-18 + 5249: 26,-18 + - node: + color: '#6C6C6C92' + id: CheckerNESW + decals: + 2484: -26,-65 + 2485: -25,-65 + 2486: -25,-64 + 2487: -24,-64 + 2488: -23,-65 + 2489: -23,-63 + 2490: -26,-63 + 2491: -27,-63 + 2492: -27,-64 + - node: + color: '#DE3A3A96' + id: CheckerNESW + decals: + 904: -20,12 + 2888: 15,6 + 2889: 15,7 + 2890: 15,8 + 2891: 15,9 + 2892: 15,10 + 2893: 15,11 + 2894: 16,11 + 2895: 17,11 + 2896: 18,11 + 2897: 19,11 + 2898: 20,11 + 2899: 21,11 + 2900: 21,10 + 2901: 21,9 + 2902: 22,8 + 2903: 23,8 + 2904: 24,8 + 2905: 25,8 + 2906: 26,8 + 2907: 27,9 + 2908: 27,10 + 2909: 27,11 + - node: + color: '#EFB34196' + id: CheckerNESW + decals: + 527: 4,19 + - node: + color: '#52B4E996' + id: CheckerNWSE + decals: + 2813: 26,-14 + - node: + color: '#6C6C6C93' + id: CheckerNWSE + decals: + 2940: 23,10 + 2941: 24,10 + 2942: 25,10 + 2943: 25,11 + 2944: 24,11 + 2945: 23,11 + 2946: 23,12 + 2947: 24,12 + 2948: 25,12 + 2949: 22,13 + 2950: 22,14 + 2951: 23,14 + 2952: 23,13 + 2953: 24,13 + 2954: 24,14 + 2955: 25,13 + 2956: 26,13 + 2957: 26,14 + 2958: 25,14 + 2959: 27,14 + 2960: 26,15 + 2961: 25,15 + 2962: 24,15 + 2963: 23,15 + 2964: 21,15 + 2965: 20,15 + - node: + color: '#79150096' + id: CheckerNWSE + decals: + 2910: 16,12 + 2911: 17,12 + 2912: 18,12 + 2913: 19,12 + 2914: 20,12 + 2915: 21,12 + 2916: 21,13 + 2917: 20,13 + 2918: 19,13 + 2919: 18,13 + 2920: 17,13 + 2921: 16,13 + 2922: 15,13 + 2923: 15,14 + 2924: 16,14 + 2925: 17,14 + 2926: 18,14 + 2927: 19,14 + 2928: 20,14 + 2929: 21,14 + 2930: 16,15 + 2931: 16,16 + 2932: 15,16 + 2933: 15,17 + 2934: 16,17 + 2935: 17,17 + 2936: 17,16 + 2937: 17,18 + 2938: 16,18 + 2939: 15,18 + - node: + color: '#EFB34196' + id: CheckerNWSE + decals: + 2528: -12,-54 + 6261: -1,-54 + - node: + color: '#F9801D87' + id: CheckerNWSE + decals: + 7452: 5,-30 + 7453: 5,-31 + 7454: 5,-32 + 7455: 6,-32 + 7456: 6,-31 + 7457: 6,-30 + 7458: 6,-29 + 7459: 5,-29 + 7460: 7,-31 + 7461: 7,-32 + 7462: 8,-32 + 7463: 8,-31 + 7464: 9,-31 + 7465: 9,-32 + 7466: 10,-32 + 7467: 10,-31 + 7468: 11,-31 + 7469: 11,-32 + - node: + color: '#DE3A3A96' + id: Delivery + decals: + 1216: -44,-8 + 1217: -45,-8 + - node: + color: '#FF0000FF' + id: Delivery + decals: + 7492: -4,-60 + 7493: -4,-60 + 7494: -4,-60 + 7495: -4,-60 + 7496: -4,-60 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 3157: 37,19 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 498: -9,15 + 499: -15,15 + 856: -24,-7 + 1018: -34,3 + 1075: -38,11 + 1076: -39,11 + 1077: -40,11 + 1078: -41,11 + 1079: -42,11 + 1169: -40,-6 + 1213: -41,-14 + 1214: -40,-14 + 1215: -39,-14 + 1238: -35,-15 + 1239: -34,-15 + 1240: -33,-15 + 1254: -32,15 + 1255: -36,15 + 1256: -35,17 + 1257: -33,17 + 1435: -36,-34 + 1510: -31,-28 + 1511: -31,-27 + 1544: -36,-38 + 1557: -30,-40 + 1558: -29,-40 + 1559: -28,-40 + 1560: -28,-39 + 1561: -29,-39 + 1562: -30,-39 + 1563: -30,-38 + 1564: -29,-38 + 1565: -28,-38 + 1648: -26,-35 + 1819: -20,-33 + 1978: -11,-40 + 1979: -11,-46 + 2088: -3,-29 + 2089: -4,-29 + 2275: -42,-52 + 2594: -3,-41 + 2595: -3,-40 + 2596: -5,-40 + 2597: -5,-41 + 2598: -5,-38 + 2599: -5,-37 + 2600: -5,-36 + 2601: -4,-36 + 2602: -3,-36 + 2603: -3,-38 + 2672: -33,3 + 2673: -35,3 + 2674: -36,8 + 2675: -36,9 + 2676: -36,10 + 2772: 29,-2 + 3192: 43,19 + 3234: 40,21 + 3235: 40,22 + 3858: 44,-4 + 3859: 44,-6 + 3860: 44,-7 + 3861: 44,-8 + 3862: 44,-9 + 3863: 44,-10 + 3864: 44,-11 + 3865: 44,-13 + 4093: -8,25 + 4094: -3,25 + 4095: -12,25 + 4299: -13,38 + 4337: -12,43 + 4338: -10,41 + 4339: -10,42 + 4340: -10,37 + 4341: -10,38 + 4374: -27,32 + 4460: -43,22 + 4461: -43,26 + 4462: -40,26 + 4559: -28,27 + 4591: -4,37 + 4592: -5,37 + 4593: -6,37 + 4651: 7,31 + 4788: 11,48 + 4789: 12,49 + 4790: 12,50 + 4834: 4,47 + 4875: 1,53 + 4876: 0,53 + 5119: -7,76 + 5596: 7,-28 + 5597: 7,-22 + 5617: 12,-33 + 5618: 19,-27 + 5619: 19,-26 + 5620: 17,-26 + 5621: 17,-27 + 5622: 15,-27 + 5623: 15,-26 + 6234: 5,-50 + 6235: 0,-44 + 6236: -1,-44 + 6446: -18,-62 + 6447: -20,-63 + 6448: -20,-58 + 6535: 14,-66 + 6536: 10,-66 + 6594: -7,-71 + 6595: -7,-69 + 6596: -5,-70 + 6597: -3,-74 + 6598: -1,-74 + 6599: 1,-74 + 6600: 3,-74 + 6601: -3,-76 + 6602: -2,-77 + 6603: -1,-77 + 6604: 1,-77 + 6605: 2,-77 + 6606: 4,-76 + 6607: 0,-65 + 6608: -4,-66 + 6609: -3,-66 + 6610: 3,-66 + 6611: 4,-66 + 6612: -1,-67 + 6613: 1,-67 + 6614: -5,-64 + 6615: -3,-65 + 6870: 23,-64 + 6871: 23,-63 + 6872: 23,-62 + 6873: 27,-61 + 6874: 31,-62 + 6875: 28,-59 + 6876: 30,-56 + 6877: 24,-53 + 6878: 24,-52 + 6879: 24,-51 + 6880: 26,-53 + 6881: 23,-58 + 6882: 20,-51 + 6883: 20,-52 + 7016: 22,-60 + 7017: 28,-65 + 7018: 32,-64 + 7019: 32,-62 + 7020: 32,-60 + 7021: 32,-58 + 7022: 32,-56 + 7041: 34,-49 + 7042: 34,-50 + 7043: 34,-51 + 7044: 34,-52 + 7066: 38,-46 + 7067: 36,-46 + 7068: 35,-47 + 7077: 16,-39 + 7131: 13,-43 + 7132: 13,-47 + 7316: 26,-57 + 7317: 28,-56 + 7318: 28,-62 + 7319: 29,-62 + 7320: 22,-57 + 7321: 26,-65 + 7325: 30,-55 + 7327: 28,-53 + 7328: 31,-54 + 7330: 30,-61 + 7331: 25,-61 + 7336: 31,-58 + 7337: 24,-64 + 7338: 32,-54 + 7491: -4,-60 + 7497: -6,-59 + 7498: -6,-58 + 7499: -6,-57 + 7500: -5,-57 + 7501: -5,-58 + 7502: -5,-59 + 7503: -4,-59 + 7504: -4,-58 + 7505: -4,-57 + 7506: -3,-57 + 7507: -3,-58 + 7508: -3,-59 + 7509: -2,-59 + 7510: -2,-58 + 7511: -2,-57 + 7525: 32,24 + 7526: 34,24 + 7527: 34,22 + 7528: 32,22 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 2130: -45,-44 + 2132: -48,-35 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 4561: -33,26 + - node: + color: '#EFB341FF' + id: DeliveryGreyscale + decals: + 6303: 6,-61 + 6304: 7,-61 + 6305: 8,-61 + - node: + color: '#52B4E996' + id: DiagonalOverlay + decals: + 6834: 12,-43 + 6835: 12,-44 + 6836: 13,-44 + 6837: 14,-43 + 7127: 14,-44 + 7128: 13,-43 + - node: + color: '#DE3A3A96' + id: DiagonalOverlay + decals: + 6838: 12,-47 + 6839: 12,-46 + 6840: 14,-47 + 7124: 13,-47 + 7125: 13,-46 + 7126: 14,-46 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 7377: -42,-23 + 7378: -44,-24 + 7379: -48,-17 + 7380: -48,-20 + 7381: -45,-22 + 7382: -45,-19 + 7383: -46,-18 + 7384: -42,-16 + 7385: -41,-18 + 7386: -48,-22 + 7387: -49,-20 + 7388: -49,-17 + 7389: -47,-24 + 7438: -41,-21 + 7439: -42,-20 + 7440: -43,-18 + 7441: -44,-18 + 7442: -42,-17 + 7443: -47,-18 + 7444: -49,-16 + 7445: -49,-22 + 7446: -49,-23 + 7447: -47,-23 + 7448: -47,-23 + 7449: -45,-24 + 7450: -45,-23 + 7451: -41,-24 + - node: + color: '#A4610696' + id: DirtHeavy + decals: + 620: -14,-11 + 621: -13,-11 + 622: -14,-10 + 623: -13,-10 + 624: -12,-11 + 625: -12,-11 + 626: -13,-9 + 627: -12,-10 + 628: -11,-11 + 629: -10,-11 + 630: -11,-9 + 631: -11,-9 + 632: -11,-11 + 633: -12,-11 + 634: -13,-11 + 635: -14,-9 + 636: -13,-10 + 637: -11,-9 + 638: -11,-9 + 639: -14,-10 + 640: -11,-10 + 641: -11,-10 + 642: -10,-10 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 423: -4,3 + 424: -1,-5 + 425: -1,-5 + 426: -1,-6 + 427: -1,-8 + 428: -1,-8 + 429: -1,-7 + 430: 2,-8 + 431: 2,-7 + 432: 2,-8 + 433: 2,-8 + 434: 2,-8 + 435: 2,-6 + 436: 2,-5 + 437: 2,-5 + 438: 2,-5 + 439: 8,9 + 440: 8,9 + 441: 8,9 + 442: 8,9 + 443: 7,-8 + 444: 7,-8 + 445: 7,-8 + 446: 7,-8 + 447: -14,5 + 448: -14,5 + 449: -13,5 + 450: -13,4 + 451: -12,5 + 452: -12,6 + 453: -12,6 + 558: 9,-10 + 559: 9,-10 + 560: 9,-11 + 561: 9,-11 + 562: 9,-11 + 563: 9,-11 + 564: 8,-11 + 565: 8,-11 + 566: 8,-11 + 567: 15,-5 + 568: 15,-5 + 569: 15,-5 + 570: 14,-5 + 571: 14,-5 + 572: 14,-4 + 573: 11,-7 + 574: 11,-7 + 575: 12,-7 + 576: 12,-7 + 577: 15,-7 + 578: 15,-7 + 579: 16,-7 + 580: 15,-7 + 581: 13,-7 + 582: 16,-5 + 583: 16,-5 + 584: 16,-4 + 585: 16,-4 + 593: 8,-13 + 594: 9,-16 + 595: 5,-16 + 596: 5,-16 + 597: 6,-16 + 598: 6,-16 + 599: 6,-17 + 600: 8,-16 + 601: 8,-16 + 605: -7,-11 + 606: -7,-11 + 607: -8,-11 + 608: -8,-11 + 609: -8,-10 + 610: -8,-10 + 611: -6,-14 + 612: -6,-14 + 613: -6,-14 + 614: -8,-13 + 615: -8,-13 + 645: -4,-19 + 646: -4,-19 + 647: -5,-17 + 648: -5,-17 + 649: -6,-18 + 650: -7,-19 + 651: -7,-19 + 652: -6,-17 + 653: -5,-17 + 654: -4,-19 + 655: -3,-19 + 656: -3,-18 + 657: -3,-17 + 660: -10,-20 + 661: -11,-20 + 662: -11,-19 + 663: -10,-19 + 664: -10,-19 + 665: -9,-20 + 666: -9,-20 + 667: -11,-19 + 668: -11,-19 + 675: -13,-18 + 676: -14,-18 + 677: -15,-18 + 678: -16,-18 + 679: -17,-18 + 680: -17,-17 + 681: -17,-17 + 682: -16,-16 + 683: -15,-17 + 684: -14,-17 + 685: -14,-16 + 686: -13,-16 + 687: -15,-16 + 688: -15,-16 + 689: -17,-16 + 690: -17,-16 + 691: -17,-16 + 692: -17,-16 + 701: -9,-17 + 702: -10,-17 + 703: -10,-17 + 704: -11,-17 + 705: -11,-16 + 706: -11,-16 + 707: -11,-15 + 708: -11,-14 + 709: -11,-14 + 710: -12,-13 + 711: -13,-13 + 712: -14,-13 + 713: -15,-13 + 714: -15,-13 + 715: -15,-13 + 716: -15,-14 + 717: -15,-14 + 718: -14,-14 + 719: -12,-14 + 720: -12,-14 + 721: -16,-13 + 725: -16,-12 + 726: -16,-12 + 727: -16,-11 + 728: -16,-10 + 729: -16,-9 + 730: -17,-9 + 731: -17,-9 + 738: -19,-15 + 739: -19,-14 + 740: -20,-14 + 741: -21,-14 + 742: -21,-15 + 743: -21,-13 + 744: -21,-13 + 745: -19,-13 + 746: -18,-13 + 747: -18,-14 + 748: -18,-13 + 749: -18,-12 + 750: -19,-13 + 751: -20,-13 + 752: -20,-12 + 753: -21,-12 + 754: -21,-12 + 755: -21,-12 + 756: -20,-12 + 761: -23,-15 + 762: -23,-14 + 763: -24,-14 + 764: -25,-14 + 765: -25,-15 + 766: -25,-13 + 767: -23,-13 + 768: -25,-12 + 769: -25,-13 + 770: -24,-12 + 771: -23,-12 + 774: -25,-10 + 775: -25,-9 + 776: -25,-9 + 777: -25,-9 + 778: -26,-9 + 779: -25,-9 + 780: -24,-9 + 781: -24,-9 + 782: -23,-10 + 783: -22,-10 + 784: -22,-9 + 785: -21,-9 + 786: -20,-10 + 787: -19,-10 + 788: -19,-9 + 789: -18,-9 + 790: -18,-9 + 791: -20,-9 + 792: -20,-9 + 793: -19,-10 + 794: -18,-9 + 795: -18,-9 + 796: -21,-9 + 797: -21,-9 + 798: -21,-8 + 799: -21,-8 + 800: -21,-8 + 801: -20,-8 + 810: -21,-8 + 811: -20,-8 + 812: -20,-7 + 813: -20,-7 + 814: -21,-7 + 815: -21,-7 + 816: -20,-6 + 817: -20,-6 + 818: -20,-5 + 819: -21,-5 + 820: -21,-5 + 821: -22,-5 + 822: -22,-5 + 823: -22,-4 + 824: -21,-4 + 825: -21,-4 + 826: -20,-4 + 827: -20,-3 + 828: -21,-3 + 829: -22,-3 + 830: -22,-3 + 910: -21,4 + 911: -21,4 + 912: -22,4 + 913: -22,4 + 914: -22,5 + 915: -21,5 + 916: -20,5 + 917: -21,6 + 918: -21,6 + 919: -21,7 + 920: -20,7 + 921: -20,8 + 922: -21,8 + 923: -22,8 + 924: -22,9 + 925: -22,9 + 926: -23,9 + 927: -23,9 + 928: -24,9 + 929: -24,10 + 930: -24,10 + 931: -24,11 + 932: -23,11 + 933: -23,12 + 934: -21,11 + 935: -21,11 + 936: -21,11 + 937: -21,12 + 938: -22,12 + 939: -23,12 + 940: -24,12 + 941: -22,11 + 942: -20,11 + 943: -20,10 + 944: -21,10 + 945: -21,9 + 946: -21,9 + 947: -20,10 + 948: -21,12 + 949: -21,12 + 950: -20,12 + 951: -22,12 + 952: -23,12 + 953: -24,11 + 954: -24,12 + 955: -24,12 + 956: -23,11 + 957: -23,11 + 969: -31,10 + 970: -31,11 + 971: -31,11 + 972: -31,12 + 973: -30,12 + 974: -30,10 + 975: -29,11 + 976: -29,12 + 977: -29,12 + 978: -29,13 + 979: -28,13 + 980: -27,11 + 981: -27,10 + 982: -27,10 + 983: -28,12 + 984: -28,13 + 985: -27,13 + 986: -26,12 + 987: -26,10 + 988: -26,10 + 989: -26,9 + 990: -26,11 + 991: -27,13 + 992: -28,12 + 993: -29,10 + 994: -30,11 + 995: -30,12 + 996: -29,13 + 997: -27,12 + 998: -27,13 + 999: -27,12 + 1000: -26,11 + 1001: -26,10 + 1002: -26,9 + 1301: -39,-25 + 1302: -38,-25 + 1303: -37,-25 + 1304: -37,-24 + 1305: -38,-24 + 1306: -39,-24 + 1307: -39,-23 + 1308: -38,-23 + 1309: -37,-24 + 1310: -37,-24 + 1311: -39,-23 + 1312: -38,-23 + 1313: -38,-23 + 1314: -37,-23 + 1315: -38,-23 + 1316: -39,-24 + 1317: -38,-24 + 1318: -37,-24 + 1319: -37,-23 + 1320: -37,-23 + 1322: -43,-28 + 1323: -43,-27 + 1324: -43,-27 + 1325: -42,-26 + 1326: -42,-27 + 1327: -41,-27 + 1328: -41,-27 + 1329: -42,-27 + 1330: -41,-26 + 1331: -41,-27 + 1332: -40,-28 + 1333: -39,-27 + 1334: -39,-26 + 1335: -40,-26 + 1336: -40,-27 + 1337: -40,-28 + 1338: -40,-28 + 1339: -39,-27 + 1340: -39,-26 + 1341: -40,-27 + 1342: -41,-28 + 1343: -41,-28 + 1344: -41,-27 + 1345: -41,-27 + 1346: -41,-26 + 1347: -42,-26 + 1348: -42,-27 + 1354: -47,-28 + 1355: -46,-28 + 1356: -46,-27 + 1357: -46,-27 + 1358: -47,-26 + 1359: -46,-26 + 1360: -45,-26 + 1361: -45,-27 + 1362: -45,-27 + 1363: -46,-28 + 1364: -47,-27 + 1365: -47,-26 + 1366: -46,-27 + 1367: -46,-27 + 1368: -44,-27 + 1369: -44,-27 + 1370: -44,-27 + 1371: -44,-27 + 1377: -40,-29 + 1378: -39,-29 + 1379: -39,-29 + 1380: -39,-29 + 1381: -40,-29 + 1394: -39,-34 + 1395: -38,-34 + 1396: -38,-33 + 1397: -38,-33 + 1398: -38,-34 + 1399: -39,-34 + 1400: -39,-34 + 1401: -39,-34 + 1402: -40,-34 + 1403: -40,-33 + 1404: -40,-33 + 1405: -40,-33 + 1406: -40,-32 + 1407: -39,-32 + 1408: -39,-31 + 1409: -39,-31 + 1410: -40,-31 + 1411: -39,-30 + 1412: -39,-30 + 1413: -39,-29 + 1414: -40,-30 + 1415: -40,-31 + 1416: -40,-32 + 1417: -40,-32 + 1512: -36,-32 + 1513: -36,-31 + 1514: -36,-29 + 1515: -36,-27 + 1516: -34,-27 + 1517: -33,-27 + 1518: -33,-28 + 1519: -33,-29 + 1520: -35,-27 + 1521: -36,-28 + 1522: -37,-30 + 1523: -37,-28 + 1524: -36,-27 + 1525: -34,-31 + 1526: -34,-32 + 1527: -35,-32 + 1528: -33,-32 + 1529: -33,-30 + 1530: -35,-33 + 1531: -34,-35 + 1532: -35,-34 + 1533: -35,-34 + 1534: -35,-34 + 1535: -34,-31 + 1536: -36,-31 + 1537: -36,-29 + 1538: -36,-30 + 1608: -34,-37 + 1609: -34,-38 + 1610: -34,-40 + 1611: -33,-42 + 1612: -34,-44 + 1613: -35,-44 + 1614: -35,-41 + 1615: -31,-41 + 1616: -30,-42 + 1617: -29,-41 + 1618: -31,-39 + 1619: -30,-38 + 1620: -28,-39 + 1621: -29,-41 + 1622: -29,-39 + 1683: -27,-24 + 1684: -26,-23 + 1685: -25,-22 + 1686: -23,-24 + 1687: -22,-24 + 1688: -22,-22 + 1689: -23,-21 + 1690: -23,-20 + 1691: -23,-18 + 1692: -22,-19 + 1693: -24,-19 + 1694: -23,-18 + 1695: -19,-18 + 1696: -20,-18 + 1697: -21,-18 + 1698: -20,-18 + 1699: -21,-17 + 1700: -21,-17 + 1701: -25,-18 + 1702: -25,-22 + 1703: -27,-22 + 1704: -26,-24 + 1705: -27,-24 + 1706: -24,-25 + 1707: -21,-24 + 1708: -21,-20 + 1709: -23,-24 + 1710: -23,-21 + 1711: -25,-24 + 1712: -22,-22 + 1713: -22,-22 + 1714: -24,-24 + 1837: -13,-29 + 1838: -13,-29 + 1839: -12,-25 + 1840: -10,-22 + 1841: -10,-24 + 1842: -12,-23 + 1843: -11,-22 + 1844: -11,-23 + 1845: -11,-24 + 1987: -7,-38 + 1988: -8,-38 + 1989: -10,-38 + 1990: -11,-37 + 1991: -10,-37 + 1992: -9,-36 + 1993: -8,-36 + 1994: -10,-36 + 1995: -11,-36 + 1996: -12,-37 + 1997: -13,-38 + 1998: -13,-39 + 1999: -12,-40 + 2000: -12,-41 + 2001: -13,-42 + 2002: -13,-42 + 2003: -12,-40 + 2004: -12,-41 + 2005: -13,-42 + 2006: -12,-44 + 2007: -12,-45 + 2008: -12,-47 + 2009: -13,-48 + 2010: -12,-50 + 2011: -11,-50 + 2012: -12,-49 + 2013: -11,-48 + 2014: -12,-48 + 2015: -13,-49 + 2016: -13,-49 + 2017: -12,-48 + 2018: -12,-45 + 2019: -12,-44 + 2020: -13,-45 + 2021: -13,-43 + 2022: -13,-42 + 2023: -13,-40 + 2024: -12,-39 + 2025: -12,-39 + 2026: -11,-41 + 2027: -11,-43 + 2028: -11,-45 + 2029: -11,-45 + 2030: -11,-43 + 2031: -11,-42 + 2032: -14,-43 + 2033: -14,-46 + 2034: -14,-40 + 2035: -13,-37 + 2036: -13,-36 + 2037: -14,-37 + 2038: -12,-36 + 2039: -8,-38 + 2040: -7,-37 + 2041: -7,-36 + 2042: -8,-34 + 2043: -8,-32 + 2044: -8,-31 + 2045: -8,-31 + 2046: -7,-31 + 2047: -7,-32 + 2048: -6,-34 + 2049: -5,-32 + 2050: -5,-31 + 2051: -4,-32 + 2052: -4,-33 + 2053: -3,-34 + 2054: -3,-33 + 2055: -4,-31 + 2056: -5,-32 + 2057: -7,-34 + 2058: -14,-49 + 2059: -14,-49 + 2060: -13,-50 + 2061: -13,-51 + 2162: -40,-40 + 2163: -39,-40 + 2164: -38,-39 + 2165: -39,-39 + 2166: -40,-39 + 2167: -40,-38 + 2168: -39,-38 + 2169: -39,-37 + 2170: -40,-37 + 2171: -40,-37 + 2172: -41,-36 + 2173: -41,-37 + 2174: -39,-37 + 2175: -38,-38 + 2176: -38,-38 + 2177: -39,-37 + 2178: -41,-36 + 2179: -40,-38 + 2180: -39,-39 + 2181: -38,-38 + 2182: -39,-37 + 2183: -40,-37 + 2184: -39,-38 + 2185: -38,-38 + 2186: -40,-37 + 2280: -29,-49 + 2281: -29,-48 + 2282: -28,-47 + 2283: -27,-48 + 2284: -25,-48 + 2285: -26,-47 + 2286: -27,-47 + 2287: -26,-48 + 2288: -24,-48 + 2289: -32,-46 + 2290: -36,-46 + 2291: -37,-46 + 2292: -38,-46 + 2293: -37,-48 + 2294: -34,-48 + 2295: -33,-49 + 2296: -35,-49 + 2297: -36,-47 + 2298: -37,-49 + 2299: -35,-50 + 2300: -33,-48 + 2301: -33,-48 + 2302: -33,-51 + 2303: -35,-52 + 2304: -38,-51 + 2305: -39,-51 + 2306: -39,-53 + 2307: -37,-52 + 2308: -35,-52 + 2309: -37,-52 + 2310: -39,-50 + 2311: -37,-49 + 2312: -36,-52 + 2313: -35,-51 + 2314: -34,-51 + 2315: -42,-50 + 2316: -43,-50 + 2317: -43,-51 + 2318: -41,-51 + 2319: -41,-51 + 2369: -20,-50 + 2370: -21,-50 + 2371: -22,-50 + 2372: -22,-50 + 2373: -22,-49 + 2374: -21,-49 + 2375: -20,-49 + 2376: -20,-49 + 2377: -21,-49 + 2378: -22,-48 + 2379: -22,-48 + 2380: -21,-48 + 2381: -20,-47 + 2382: -21,-47 + 2383: -22,-46 + 2384: -21,-46 + 2385: -20,-45 + 2386: -22,-44 + 2387: -23,-44 + 2388: -23,-44 + 2389: -25,-45 + 2390: -25,-45 + 2391: -26,-44 + 2392: -28,-44 + 2393: -28,-44 + 2394: -28,-45 + 2395: -29,-45 + 2396: -30,-45 + 2397: -30,-44 + 2398: -31,-44 + 2399: -31,-44 + 2400: -29,-44 + 2401: -26,-44 + 2402: -25,-44 + 2403: -20,-40 + 2404: -21,-40 + 2405: -21,-40 + 2406: -22,-40 + 2407: -22,-39 + 2408: -21,-38 + 2409: -20,-37 + 2410: -21,-37 + 2411: -22,-37 + 2412: -21,-36 + 2413: -21,-36 + 2414: -20,-36 + 2415: -21,-37 + 2416: -21,-38 + 2417: -21,-39 + 2418: -21,-39 + 2419: -21,-39 + 2420: -21,-37 + 2421: -21,-37 + 2425: -20,-54 + 2426: -21,-54 + 2427: -21,-53 + 2428: -21,-53 + 2429: -21,-53 + 2430: -23,-53 + 2431: -23,-52 + 2432: -23,-52 + 2433: -23,-51 + 2434: -22,-51 + 2435: -21,-51 + 2436: -20,-52 + 2437: -20,-51 + 2438: -20,-52 + 2439: -22,-53 + 2443: -26,-53 + 2444: -28,-53 + 2445: -29,-53 + 2446: -30,-52 + 2447: -30,-52 + 2448: -30,-51 + 2449: -28,-52 + 2450: -26,-51 + 2451: -26,-51 + 2452: -26,-52 + 2453: -25,-52 + 2454: -27,-53 + 2455: -25,-53 + 2456: -25,-53 + 2457: -30,-51 + 2458: -30,-53 + 2459: -28,-51 + 2466: -27,-57 + 2467: -27,-56 + 2468: -26,-55 + 2469: -26,-55 + 2470: -26,-57 + 2471: -24,-56 + 2472: -24,-55 + 2473: -24,-55 + 2474: -23,-56 + 2475: -23,-57 + 2476: -23,-55 + 2477: -27,-55 + 2478: -26,-57 + 2479: -27,-56 + 2480: -23,-55 + 2493: -29,-55 + 2494: -29,-56 + 2495: -31,-56 + 2496: -32,-56 + 2497: -31,-55 + 2498: -28,-61 + 2499: -28,-60 + 2500: -27,-60 + 2501: -26,-60 + 2502: -25,-60 + 2503: -25,-58 + 2504: -24,-59 + 2505: -24,-60 + 2506: -24,-60 + 2507: -23,-60 + 2508: -24,-59 + 2509: -25,-60 + 2510: -24,-61 + 2511: -26,-63 + 2512: -27,-63 + 2513: -27,-65 + 2514: -25,-65 + 2515: -24,-65 + 2516: -25,-63 + 2517: -25,-63 + 2518: -24,-64 + 2519: -26,-65 + 2520: -27,-61 + 2521: -27,-61 + 2522: -29,-59 + 2523: -29,-58 + 2524: -29,-57 + 2530: -18,-54 + 2531: -18,-54 + 2532: -18,-53 + 2533: -18,-53 + 2534: -17,-53 + 2535: -16,-54 + 2536: -16,-54 + 2537: -15,-53 + 2538: -14,-52 + 2539: -12,-53 + 2540: -11,-53 + 2541: -11,-52 + 2542: -11,-52 + 2543: -15,-52 + 2544: -10,-54 + 2545: -13,-54 + 2546: -15,-54 + 2547: -16,-54 + 2548: -14,-52 + 2549: -11,-52 + 2550: -10,-53 + 2551: -17,-53 + 2552: -16,-52 + 2553: -13,-54 + 2554: -15,-54 + 2555: -13,-53 + 2556: -11,-52 + 2561: -8,-54 + 2562: -7,-54 + 2563: -8,-53 + 2564: -8,-52 + 2565: -7,-52 + 2566: -7,-54 + 2567: -6,-54 + 2568: -6,-53 + 2569: -7,-53 + 2570: -6,-52 + 2571: -6,-52 + 2572: -6,-51 + 2573: -6,-49 + 2574: -5,-49 + 2575: -6,-49 + 2576: -6,-50 + 2577: -6,-51 + 2578: -7,-53 + 2580: -5,-48 + 2581: -5,-47 + 2582: -5,-46 + 2583: -5,-46 + 2584: -5,-45 + 2585: -5,-45 + 2586: -5,-43 + 2587: -5,-44 + 2588: -4,-43 + 2589: -4,-45 + 2590: -3,-43 + 2591: -4,-43 + 2592: -5,-43 + 2593: -3,-43 + 2727: 18,-3 + 2728: 18,-3 + 2729: 19,-3 + 2730: 19,-4 + 2731: 19,-5 + 2732: 19,-7 + 2733: 19,-7 + 2734: 20,-7 + 2735: 21,-7 + 2736: 21,-6 + 2737: 21,-5 + 2738: 21,-4 + 2739: 21,-4 + 2740: 22,-3 + 2741: 22,-4 + 2742: 22,-6 + 2743: 23,-6 + 2744: 24,-6 + 2745: 24,-5 + 2746: 25,-4 + 2747: 25,-3 + 2748: 25,-3 + 2749: 25,-5 + 2750: 23,-7 + 2751: 24,-3 + 2752: 24,-3 + 2753: 21,-3 + 2754: 22,-3 + 2755: 18,-5 + 2778: 23,-13 + 2779: 22,-13 + 2780: 22,-12 + 2781: 22,-11 + 2782: 22,-9 + 2783: 22,-9 + 2784: 23,-10 + 2785: 24,-11 + 2786: 24,-11 + 2787: 22,-10 + 2788: 22,-13 + 2789: 22,-12 + 2790: 22,-11 + 2791: 23,-11 + 2792: 24,-9 + 2793: 26,-10 + 2794: 26,-9 + 2795: 27,-9 + 2796: 26,-8 + 2797: 28,-8 + 2798: 29,-9 + 2799: 29,-8 + 2800: 30,-7 + 2801: 28,-7 + 2802: 28,-7 + 2803: 30,-9 + 2804: 30,-7 + 2815: 22,-16 + 2816: 22,-15 + 2817: 23,-16 + 2818: 23,-16 + 2819: 24,-15 + 2820: 25,-16 + 2821: 25,-16 + 2822: 26,-15 + 2823: 26,-14 + 2824: 25,-14 + 2825: 26,-12 + 2826: 26,-14 + 2827: 25,-14 + 2828: 25,-13 + 2829: 25,-13 + 2830: 25,-13 + 2831: 24,-15 + 3045: 24,6 + 3046: 23,6 + 3047: 15,6 + 3048: 15,6 + 3049: 18,8 + 3050: 18,7 + 3051: 17,7 + 3052: 20,11 + 3053: 20,6 + 3054: 24,8 + 3055: 26,6 + 3056: 28,8 + 3057: 28,6 + 3058: 29,5 + 3059: 29,4 + 3060: 31,7 + 3061: 34,7 + 3062: 35,5 + 3063: 33,7 + 3064: 29,8 + 3065: 29,10 + 3066: 28,9 + 3067: 30,10 + 3068: 30,8 + 3069: 26,8 + 3070: 20,11 + 3071: 17,11 + 3072: 15,11 + 3073: 17,8 + 3074: 17,7 + 3075: 21,7 + 3076: 23,10 + 3077: 23,10 + 3078: 25,11 + 3079: 24,13 + 3080: 23,13 + 3081: 24,14 + 3082: 26,14 + 3083: 26,13 + 3084: 23,15 + 3085: 24,15 + 3086: 26,15 + 3087: 26,16 + 3088: 23,16 + 3089: 22,16 + 3090: 20,16 + 3091: 19,16 + 3092: 20,18 + 3093: 21,18 + 3094: 21,18 + 3095: 23,19 + 3096: 25,18 + 3097: 25,16 + 3098: 26,18 + 3099: 24,18 + 3100: 22,17 + 3101: 22,20 + 3102: 26,18 + 3103: 22,18 + 3104: 20,16 + 3105: 19,16 + 3106: 27,16 + 3218: 43,21 + 3219: 43,21 + 3220: 44,21 + 3221: 42,23 + 3222: 42,23 + 3223: 42,24 + 3224: 42,24 + 3225: 43,24 + 3226: 43,23 + 3227: 43,22 + 3228: 42,22 + 3229: 42,21 + 3244: 10,21 + 3245: 10,22 + 3246: 8,22 + 3247: 8,22 + 3248: 8,21 + 3249: 7,21 + 3250: 5,21 + 3251: 4,21 + 3252: 5,22 + 3253: 5,22 + 3254: 6,22 + 3255: 6,21 + 3256: 10,22 + 3262: 12,23 + 3263: 12,22 + 3264: 12,22 + 3265: 13,22 + 3266: 12,20 + 3267: 12,20 + 3268: 12,17 + 3269: 12,19 + 3270: 12,19 + 3271: 13,22 + 3272: 13,22 + 3273: 13,19 + 3274: 13,17 + 3275: 13,16 + 3276: 13,14 + 3277: 13,12 + 3278: 13,11 + 3279: 12,12 + 3280: 12,14 + 3281: 12,15 + 3282: 12,14 + 3283: 12,13 + 3284: 13,9 + 3285: 13,8 + 3286: 12,8 + 3287: 12,8 + 3288: 11,8 + 3289: 11,9 + 3290: 12,9 + 3291: 13,8 + 3292: 13,7 + 3293: 13,6 + 3294: 13,5 + 3295: 13,4 + 3296: 14,4 + 3297: 15,4 + 3298: 12,12 + 3299: 12,15 + 3300: 17,23 + 3301: 17,22 + 3302: 16,21 + 3303: 16,20 + 3304: 17,20 + 3305: 19,21 + 3306: 18,22 + 3307: 17,23 + 3308: 16,22 + 3309: 15,21 + 3317: 16,25 + 3318: 16,27 + 3319: 17,27 + 3320: 18,27 + 3321: 18,26 + 3322: 18,25 + 3323: 20,25 + 3324: 20,25 + 3325: 21,25 + 3326: 19,27 + 3327: 23,25 + 3328: 24,25 + 3329: 25,25 + 3330: 25,27 + 3331: 23,27 + 3332: 21,27 + 3333: 21,27 + 3334: 21,27 + 3335: 21,27 + 3336: 21,27 + 3337: 21,27 + 3338: 25,26 + 3339: 26,25 + 3340: 26,25 + 3341: 24,25 + 3342: 20,25 + 3343: 20,27 + 3344: 18,27 + 3345: 18,27 + 3346: 20,26 + 3347: 21,25 + 3348: 20,25 + 3924: -23,14 + 3925: -23,15 + 3926: -22,15 + 3927: -22,16 + 3928: -19,15 + 3929: -20,15 + 3930: -19,14 + 3931: -18,14 + 3932: -17,15 + 3933: -17,16 + 3934: -19,16 + 3935: -19,14 + 3936: -19,14 + 3937: -20,14 + 3938: -21,14 + 3939: -22,14 + 3940: -21,16 + 3941: -18,16 + 3942: -17,15 + 3943: -21,16 + 3944: -22,16 + 3945: -21,17 + 3946: -21,17 + 3947: -23,15 + 3948: -23,16 + 3949: -17,14 + 3950: -22,14 + 3951: -17,16 + 3960: -25,15 + 3961: -26,15 + 3962: -25,16 + 3963: -25,16 + 3964: -25,17 + 3965: -25,18 + 3966: -26,18 + 3967: -26,18 + 3968: -26,20 + 3969: -28,19 + 3970: -28,19 + 3971: -30,19 + 3972: -29,20 + 3973: -30,21 + 3974: -28,21 + 3975: -27,21 + 3976: -27,20 + 3977: -28,21 + 3978: -28,20 + 3979: -26,21 + 3980: -25,20 + 3981: -24,20 + 3982: -24,19 + 3983: -24,19 + 3984: -26,19 + 3985: -28,23 + 3986: -28,24 + 3987: -28,24 + 3988: -28,26 + 3989: -28,26 + 3990: -28,25 + 3991: -28,26 + 3992: -28,25 + 3993: -26,16 + 3994: -25,15 + 3996: -32,19 + 3997: -33,19 + 3998: -34,19 + 3999: -33,20 + 4000: -34,21 + 4001: -34,20 + 4002: -32,21 + 4003: -32,20 + 4004: -28,15 + 4005: -29,15 + 4006: -30,16 + 4007: -29,17 + 4008: -29,16 + 4009: -29,16 + 4010: -28,17 + 4011: -28,17 + 4012: -30,15 + 4013: -29,17 + 4014: -29,17 + 4113: -13,22 + 4114: -12,22 + 4115: -12,24 + 4116: -10,22 + 4117: -9,24 + 4118: -7,24 + 4119: -8,22 + 4120: -7,22 + 4121: -9,23 + 4122: -4,22 + 4123: -3,23 + 4124: -4,24 + 4125: -3,25 + 4724: -7,42 + 4725: -5,42 + 4726: -4,42 + 4727: -5,43 + 4728: -7,43 + 4729: -6,44 + 4730: -4,44 + 4731: -4,45 + 4732: -5,43 + 4733: -6,43 + 4734: -6,44 + 4735: -6,45 + 4736: -5,44 + 4737: -4,46 + 4738: -4,47 + 4739: -3,47 + 4740: -3,48 + 4741: -4,48 + 4742: -4,47 + 4743: -4,45 + 4744: -6,45 + 4745: -3,44 + 4746: -8,45 + 4747: -9,45 + 4748: -11,45 + 4749: -12,45 + 4750: -12,46 + 4751: -12,47 + 4752: -12,48 + 4753: -11,46 + 4754: -12,47 + 4755: -12,47 + 4756: -7,45 + 4757: -7,43 + 4758: -4,43 + 5408: 36,-28 + 5409: 36,-28 + 5410: 36,-29 + 5411: 35,-33 + 5412: 35,-33 + 5413: 36,-34 + 5414: 36,-35 + 5415: 35,-35 + 5416: 34,-35 + 5417: 34,-33 + 5418: 34,-32 + 5419: 34,-31 + 5420: 34,-29 + 5421: 34,-28 + 5422: 34,-30 + 5423: 35,-32 + 5424: 36,-31 + 5425: 34,-33 + 5426: 35,-35 + 5427: 36,-33 + 5428: 34,-28 + 5429: 36,-31 + 5430: 35,-32 + 5431: 35,-29 + 5480: 19,-30 + 5481: 17,-30 + 5944: 13,-38 + 5945: 12,-37 + 5946: 11,-37 + 5947: 11,-36 + 5948: 13,-36 + 5949: 13,-36 + 5950: 14,-36 + 5951: 12,-36 + 5952: 11,-37 + 5953: 15,-36 + 5954: 16,-37 + 5955: 13,-37 + 5956: 14,-38 + 5957: 13,-39 + 5958: 11,-39 + 5959: 10,-39 + 5960: 11,-38 + 5961: 12,-38 + 5962: 10,-37 + 5963: 10,-35 + 5964: 12,-35 + 5965: 14,-35 + 5966: 15,-35 + 5967: 16,-36 + 5968: 15,-37 + 5969: 10,-39 + 5970: 10,-38 + 5978: 18,-35 + 5979: 19,-35 + 5980: 20,-35 + 5981: 21,-35 + 5982: 22,-35 + 5983: 23,-35 + 5984: 23,-36 + 5985: 24,-37 + 5986: 25,-36 + 5987: 26,-35 + 5988: 25,-35 + 5989: 26,-36 + 5990: 25,-37 + 5991: 23,-37 + 5992: 22,-38 + 5993: 23,-38 + 5994: 25,-38 + 5995: 27,-38 + 5996: 27,-36 + 5997: 27,-35 + 5998: 21,-37 + 5999: 20,-37 + 6000: 20,-38 + 6001: 18,-38 + 6002: 18,-38 + 6003: 18,-37 + 6004: 22,-37 + 6005: 24,-37 + 6006: 23,-36 + 6007: 24,-35 + 6008: 26,-35 + 6009: 26,-36 + 6010: 26,-38 + 6011: 26,-37 + 6012: 28,-38 + 6013: 29,-37 + 6014: 29,-37 + 6015: 29,-38 + 6016: 30,-37 + 6017: 30,-35 + 6018: 29,-35 + 6019: 31,-35 + 6020: 30,-34 + 6021: 31,-34 + 6022: 31,-35 + 6023: 32,-35 + 6024: 32,-34 + 6025: 30,-34 + 6026: 30,-38 + 6031: 36,-40 + 6032: 36,-39 + 6033: 35,-38 + 6034: 33,-37 + 6035: 35,-37 + 6036: 32,-37 + 6037: 32,-39 + 6038: 32,-40 + 6039: 34,-40 + 6040: 34,-39 + 6041: 33,-38 + 6042: 34,-37 + 6043: 35,-40 + 6044: 35,-39 + 6045: 36,-37 + 6046: 36,-37 + 6047: 33,-39 + 6262: -4,-54 + 6263: -4,-54 + 6264: -3,-53 + 6265: -1,-54 + 6266: -1,-54 + 6267: 0,-54 + 6268: 0,-53 + 6269: -1,-52 + 6270: 0,-51 + 6271: -1,-51 + 6272: -2,-52 + 6273: -3,-52 + 6274: -3,-51 + 6275: -4,-51 + 6276: -4,-52 + 6277: -4,-53 + 6278: -1,-53 + 6279: -1,-52 + 6280: -1,-53 + 6281: -3,-54 + 6282: -3,-53 + 6283: -3,-54 + 6284: -1,-53 + 6285: 0,-52 + 6286: -4,-51 + 6287: -2,-54 + 6288: 0,-53 + 6289: -1,-51 + 6290: -4,-52 + 6291: 0,-52 + 6292: -1,-53 + 6293: -3,-53 + 6294: -2,-53 + 6295: -2,-53 + 6296: 0,-52 + 6333: 3,-53 + 6334: 2,-54 + 6335: 4,-55 + 6336: 3,-56 + 6337: 3,-57 + 6338: 3,-58 + 6339: 3,-60 + 6340: 2,-61 + 6341: 4,-61 + 6342: 4,-59 + 6343: 2,-59 + 6344: 2,-58 + 6345: 4,-57 + 6346: 3,-54 + 6347: 5,-56 + 6348: 1,-58 + 6349: 3,-62 + 6350: 3,-61 + 6395: -8,-60 + 6396: -8,-60 + 6397: -7,-61 + 6398: -5,-61 + 6399: -2,-61 + 6400: -4,-61 + 6401: 0,-61 + 6402: 0,-60 + 6403: 0,-58 + 6404: -4,-56 + 6405: -6,-56 + 6406: -7,-56 + 6407: -8,-57 + 6408: -2,-56 + 6451: -15,-57 + 6452: -16,-57 + 6453: -15,-57 + 6454: -11,-57 + 6455: -11,-57 + 6456: -13,-61 + 6457: -15,-61 + 6458: -16,-61 + 6459: -15,-60 + 6460: -13,-60 + 6461: -14,-60 + 6462: -16,-61 + 6463: -21,-64 + 6464: -21,-63 + 6465: -19,-63 + 6466: -18,-63 + 6467: -19,-62 + 6468: -21,-62 + 6469: -19,-60 + 6470: -21,-60 + 6471: -20,-59 + 6472: -19,-59 + 6473: -19,-57 + 6474: -21,-59 + 6475: -21,-56 + 6476: -19,-56 + 6477: -18,-58 + 6478: -16,-59 + 6479: -15,-58 + 6480: -15,-59 + 6481: -13,-57 + 6482: -12,-58 + 6483: -11,-60 + 6484: -10,-59 + 6485: -9,-59 + 6486: -14,-59 + 6487: -11,-58 + 6488: -8,-59 + 6489: -6,-58 + 6490: -6,-59 + 6491: -4,-58 + 6492: -3,-59 + 6493: -1,-60 + 6494: -1,-57 + 6495: -6,-57 + 6496: -7,-58 + 6497: -7,-60 + 6498: -2,-60 + 6499: -2,-58 + 6710: -7,-76 + 6711: -8,-76 + 6712: -7,-75 + 6713: -6,-74 + 6714: -8,-73 + 6715: -6,-72 + 6716: -5,-71 + 6717: -7,-71 + 6718: -8,-72 + 6719: -7,-72 + 6720: -8,-69 + 6721: -7,-68 + 6722: -6,-70 + 6723: -7,-71 + 6724: -7,-68 + 6725: -8,-65 + 6726: -6,-64 + 6727: -6,-66 + 6728: -6,-68 + 6729: -6,-68 + 6730: -5,-64 + 6731: -5,-64 + 6732: -5,-65 + 6733: -3,-63 + 6734: -3,-64 + 6735: -4,-65 + 6736: -1,-64 + 6737: -1,-63 + 6738: -4,-65 + 6739: -3,-67 + 6740: -3,-66 + 6741: -2,-63 + 6742: -1,-63 + 6743: -1,-65 + 6744: 2,-64 + 6745: 0,-63 + 6746: 0,-64 + 6747: 4,-64 + 6748: 5,-64 + 6749: 5,-67 + 6750: 4,-66 + 6751: 4,-66 + 6752: 3,-64 + 6753: 5,-63 + 6754: 7,-64 + 6755: 7,-66 + 6756: 6,-68 + 6757: 8,-69 + 6758: 6,-67 + 6759: 7,-65 + 6760: 8,-64 + 6761: 8,-65 + 6762: 8,-67 + 6763: 8,-69 + 6764: 6,-69 + 6765: 6,-69 + 6766: 6,-71 + 6767: 9,-71 + 6768: 7,-70 + 6769: 6,-72 + 6770: 7,-72 + 6771: 8,-73 + 6772: 7,-74 + 6773: 5,-72 + 6774: 6,-74 + 6775: 7,-75 + 6776: 5,-77 + 6777: 5,-74 + 6778: 5,-73 + 6779: 5,-75 + 6780: 4,-76 + 6781: 3,-73 + 6782: 3,-73 + 6783: 3,-76 + 6784: 2,-76 + 6785: 2,-75 + 6786: -1,-74 + 6787: 0,-76 + 6788: 1,-77 + 6789: -2,-76 + 6790: -1,-73 + 6791: -2,-75 + 6792: -2,-77 + 6793: -3,-76 + 6794: -3,-74 + 6795: -5,-75 + 6796: -6,-76 + 6797: -6,-74 + 6798: -4,-75 + 6799: -2,-77 + 6800: -3,-73 + 6801: -3,-76 + 6802: 1,-74 + 6803: 0,-73 + 6804: 2,-76 + 6805: 4,-74 + 6806: 5,-73 + 6807: 8,-72 + 6808: 10,-71 + 6809: 10,-69 + 6810: 11,-69 + 6811: 13,-71 + 6812: 12,-69 + 6813: 13,-69 + 6814: 14,-67 + 6815: 12,-65 + 6816: 10,-65 + 6817: 11,-64 + 6818: 13,-65 + 6819: 14,-64 + 6820: 12,-63 + 6821: 9,-64 + 6822: 12,-62 + 6823: 11,-61 + 6824: 13,-60 + 6825: 13,-61 + 6826: 13,-58 + 6827: 11,-58 + 6828: 10,-60 + 6829: 13,-61 + 6830: 13,-61 + 6831: 11,-59 + 6832: 12,-58 + 6833: 13,-59 + 7224: 8,-38 + 7225: 8,-38 + 7226: 8,-35 + 7227: 7,-35 + 7228: 6,-35 + 7229: 4,-35 + 7230: 4,-35 + 7231: 4,-38 + 7232: 6,-37 + 7233: 7,-37 + 7234: 6,-38 + 7235: 4,-37 + 7236: 6,-35 + 7250: 38,-41 + 7251: 38,-41 + 7252: 38,-39 + 7253: 38,-38 + 7254: 39,-37 + 7255: 39,-37 + 7256: 39,-39 + 7257: 40,-40 + 7258: 40,-40 + 7259: 41,-40 + 7260: 41,-38 + 7261: 42,-37 + 7262: 43,-39 + 7263: 43,-40 + 7264: 44,-40 + 7265: 45,-39 + 7266: 45,-38 + 7267: 45,-38 + 7268: 46,-40 + 7269: 46,-41 + 7270: 47,-41 + 7271: 47,-38 + 7272: 46,-37 + 7273: 43,-37 + 7274: 43,-38 + 7275: 42,-38 + 7276: 41,-41 + 7277: 40,-39 + 7278: 39,-40 + 7279: 39,-40 + 7280: 38,-37 + 7281: 40,-39 + 7282: 45,-41 + 7283: 46,-41 + 7284: 47,-39 + 7285: 44,-41 + 7286: 42,-41 + 7287: 44,-39 + 7288: 42,-38 + 7289: 42,-38 + 7290: 38,-37 + 7291: 29,-12 + 7292: 28,-13 + 7293: 28,-13 + 7294: 28,-12 + 7295: 28,-11 + 7296: 30,-11 + 7297: 30,-12 + 7298: 29,-13 + 7304: 6,-14 + 7305: 5,-14 + 7306: 4,-14 + 7307: 4,-13 + 7308: 6,-12 + 7309: 6,-13 + 7310: 6,-14 + 7311: 4,-12 + 7312: 4,-13 + 7352: -48,-16 + 7353: -48,-17 + 7354: -48,-19 + 7355: -49,-20 + 7356: -46,-24 + 7357: -45,-22 + 7358: -43,-21 + 7359: -43,-23 + 7360: -42,-23 + 7361: -41,-23 + 7362: -44,-16 + 7363: -45,-17 + 7364: -46,-18 + 7365: -46,-20 + 7366: -47,-22 + 7367: -47,-22 + 7368: -44,-21 + 7369: -42,-18 + 7370: -45,-17 + 7371: -46,-17 + 7372: -45,-17 + 7373: -46,-18 + 7374: -45,-21 + 7375: -42,-22 + 7376: -41,-23 + 7413: -49,-21 + 7414: -49,-22 + 7415: -49,-23 + 7416: -48,-24 + 7417: -47,-23 + 7418: -47,-21 + 7419: -47,-18 + 7420: -48,-19 + 7421: -48,-18 + 7422: -48,-16 + 7423: -48,-16 + 7424: -49,-16 + 7425: -43,-16 + 7426: -41,-17 + 7427: -43,-18 + 7428: -44,-18 + 7429: -42,-20 + 7430: -40,-21 + 7431: -42,-19 + 7432: -43,-18 + 7433: -41,-21 + 7434: -41,-24 + 7435: -45,-24 + 7436: -45,-23 + 7437: -41,-20 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 7344: 43.129646,-38.225346 + 7345: 43,-38 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 1389: -39,-33 + 1390: -39,-33 + 1391: -39,-33 + 1392: -39,-33 + 1393: -39,-33 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 7349: 47,-37 + 7350: 47,-37 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 1826: -19,-34 + 1827: -19,-34 + 1828: -19,-34 + 1829: -18,-33 + 1830: -18,-32 + 1831: -18,-31 + 1832: -19,-31 + 1833: -17,-34 + 1834: -17,-33 + 1835: -17,-32 + 1836: -17,-31 + 1900: -17,-50 + 1901: -18,-50 + 1902: -18,-48 + 1903: -17,-48 + 1904: -17,-49 + 1905: -17,-46 + 1906: -18,-46 + 1907: -17,-45 + 1908: -16,-47 + 1909: -17,-46 + 1910: -17,-44 + 1911: -18,-43 + 1912: -17,-43 + 1913: -16,-43 + 1914: -16,-42 + 1915: -17,-40 + 1916: -18,-39 + 1917: -16,-40 + 1918: -16,-41 + 1919: -18,-37 + 1920: -17,-36 + 1921: -17,-37 + 1922: -17,-38 + 1923: -17,-36 + 1924: -17,-38 + 1925: -13,-33 + 1926: -13,-32 + 1927: -12,-32 + 1928: -12,-33 + 1929: -11,-31 + 1930: -13,-33 + 1931: -8,-40 + 1932: -9,-41 + 1933: -8,-43 + 1934: -8,-44 + 1935: -8,-45 + 1936: -9,-46 + 1937: -9,-44 + 1938: -8,-43 + 1939: -7,-41 + 1940: -7,-40 + 1941: -8,-42 + 1942: -9,-46 + 1943: -8,-45 + 1944: -8,-42 + 1945: -8,-43 + 1946: -8,-44 + 1947: -8,-42 + 1948: -7,-41 + 1949: -7,-44 + 1950: -7,-44 + 1951: -8,-44 + 1952: -7,-43 + 1953: -9,-43 + 1954: -7,-44 + 2320: -44,-48 + 2321: -44,-47 + 2322: -43,-46 + 2323: -43,-47 + 2324: -42,-48 + 2325: -42,-46 + 2326: -43,-47 + 2327: -43,-48 + 2328: -42,-46 + 2329: -40,-46 + 2330: -40,-47 + 2331: -44,-53 + 2332: -44,-53 + 2333: -44,-53 + 2334: -42,-53 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 7346: 44,-37 + 7347: 40,-37 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 7348: 41,-37 + - node: + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 6050: 14,-26 + - node: + color: '#FFFFFFFF' + id: Flowersbr3 + decals: + 6051: 14,-27 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 6059: 3,47 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 6058: 3,48 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 6057: 3,49 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 342: -5,-3 + 363: 5,-4 + 403: 3,6 + 404: -8,3 + 3691: 40,-9 + 3692: 34,-8 + 3700: 32,-3 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 341: -5,-6 + 405: -3,8 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 344: -3,-5 + 365: 6,-6 + 408: 3,9 + 409: -4,5 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 343: -7,-2 + 364: 9,-2 + 406: 7,6 + 407: 6,3 + - node: + color: '#222222E5' + id: FullTileOverlayGreyscale + decals: + 116: -1,-5 + 117: -1,-6 + 118: -1,-7 + 119: -1,-8 + 120: -1,-9 + 121: 2,-5 + 122: 2,-6 + 123: 2,-7 + 124: 2,-8 + 125: 2,-9 + 126: 3,-9 + 127: 4,-9 + 128: 5,-9 + 129: -2,-9 + 130: -3,-9 + 131: -4,-9 + 132: 4,-8 + 133: 5,-8 + 134: 6,-8 + 135: 5,-7 + 136: 6,-7 + 137: 7,-7 + 138: 8,-7 + 139: 7,-6 + 140: 8,-6 + 141: 8,-5 + 142: 8,-4 + 143: 6,-1 + 144: 7,-1 + 145: 8,-1 + 146: 9,-1 + 147: 10,-1 + 148: 10,-2 + 149: 10,-3 + 150: 10,-4 + 151: 9,-4 + 152: 9,-3 + 153: 9,-5 + 154: -3,-8 + 155: -4,-8 + 156: -5,-8 + 157: -4,-7 + 158: -5,-7 + 159: -6,-7 + 160: -7,-7 + 161: -6,-6 + 162: -7,-6 + 163: -7,-5 + 164: -7,-4 + 165: -8,-5 + 166: -8,-4 + 167: -8,-3 + 168: -9,-4 + 169: -9,-3 + 170: -9,-2 + 171: -9,-1 + 172: -8,-1 + 173: -7,-1 + 174: -6,-1 + 175: -5,-1 + 176: -9,2 + 177: -8,2 + 178: -7,2 + 179: -6,2 + 180: -5,2 + 181: 6,2 + 182: 7,2 + 183: 8,2 + 184: 9,2 + 185: 10,2 + 186: 10,3 + 187: 10,4 + 188: 10,5 + 189: 9,4 + 190: 9,5 + 191: 9,6 + 192: 8,5 + 193: 8,6 + 194: 8,7 + 195: 8,8 + 196: 7,7 + 197: 7,8 + 198: 6,8 + 199: 5,8 + 200: 6,9 + 201: 5,9 + 202: 4,9 + 203: 5,10 + 204: 4,10 + 205: 3,10 + 206: 2,10 + 207: 2,9 + 208: 2,8 + 209: 2,7 + 210: 2,6 + 211: -1,6 + 212: -1,7 + 213: -1,8 + 214: -1,9 + 215: -1,10 + 216: -2,10 + 217: -3,10 + 218: -4,10 + 219: -3,9 + 220: -4,9 + 221: -5,9 + 222: -5,8 + 223: -4,8 + 224: -6,8 + 225: -7,8 + 226: -7,7 + 227: -6,7 + 228: -7,6 + 229: -7,5 + 230: -8,5 + 231: -8,4 + 232: -9,5 + 233: -9,4 + 234: -9,3 + 255: -4,4 + 256: 5,4 + 257: 5,-3 + 258: 4,-4 + 259: -3,-4 + 260: -4,-3 + 454: -8,6 + 3740: 36,-3 + 3741: 36,-4 + 3742: 33,-3 + 3743: 33,-4 + 3744: 41,-4 + 3745: 42,-4 + 3746: 43,-4 + 3747: 44,-4 + 3748: 44,-5 + 3749: 44,-6 + 3750: 44,-7 + 3751: 44,-8 + 3752: 44,-9 + 3753: 44,-10 + 3754: 44,-11 + 3755: 44,-12 + 3756: 44,-13 + 3757: 43,-13 + 3758: 42,-13 + 3759: 41,-13 + 3760: 40,-13 + 3761: 39,-13 + 3762: 35,-13 + 3763: 34,-13 + 3764: 33,-13 + 3765: 32,-13 + 3768: 45,-13 + 3769: 45,-7 + 3770: 45,-5 + 4843: 0,49 + 4844: 1,49 + 4845: 0,50 + 4846: 1,50 + 4847: 1,51 + 4848: 0,51 + 4849: 0,52 + 4850: 1,52 + 4851: 1,53 + 4852: 0,53 + 4853: 2,53 + 4854: 2,52 + 4855: 2,51 + 4856: -1,53 + 4857: -1,52 + 4858: -1,51 + 4863: 2,54 + 4864: 2,55 + 4865: 1,55 + 4866: 0,55 + 4867: -1,55 + 4868: -1,54 + 4869: -1,57 + 4870: -1,56 + 4871: 0,56 + 4872: 1,56 + 4873: 2,56 + 4874: 2,57 + 4879: -1,58 + 4880: -1,59 + 4881: -1,60 + 4882: -1,61 + 4883: -1,62 + 4884: 0,62 + 4885: 1,62 + 4886: 2,62 + 4887: 2,61 + 4888: 2,60 + 4889: 2,59 + 4890: 2,58 + 4891: 1,58 + 4892: 0,58 + 4893: 0,59 + 4894: 0,60 + 4895: 0,61 + 4896: 1,61 + 4897: 1,60 + 4898: 1,59 + 4899: -2,60 + 4900: -2,59 + 4901: -2,61 + 4902: -2,62 + 4903: 3,62 + 4904: 3,61 + 4905: 3,60 + 4906: 3,59 + 4907: 4,60 + 4908: 4,61 + 4909: -3,61 + 4910: -3,60 + 4911: -4,61 + 4912: 5,61 + 4913: 6,61 + 4914: 6,60 + 4915: 6,59 + 4916: 6,58 + 4917: -5,61 + 4918: -5,60 + 4919: -6,60 + 4920: -6,59 + 4921: -6,58 + 4922: -5,58 + 4923: -5,59 + 4924: -5,62 + 4925: 6,62 + 4993: 7,58 + 4994: 7,59 + 4995: 7,60 + - node: + color: '#222222E6' + id: FullTileOverlayGreyscale + decals: + 0: -2,-2 + 1: -2,3 + 2: 3,3 + 3: 3,-2 + 4: 0,-3 + 5: 1,-3 + 6: 4,0 + 7: 4,1 + 8: 1,4 + 9: 0,4 + 10: -3,1 + 11: -3,0 + - node: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + decals: + 492: -9,14 + 493: -9,15 + 494: -9,16 + 4630: 1,26 + 4805: 1,46 + 4806: 2,46 + 4807: 3,46 + 4808: 4,46 + 4809: 4,47 + 4810: 4,48 + 4811: 4,49 + 4812: 4,50 + 4813: 3,50 + 4814: 5,47 + 4934: 0,59 + 4935: 1,59 + 4936: -1,53 + 4937: -1,52 + 4938: 0,52 + 4939: 1,52 + 4940: 2,52 + 4941: 2,53 + 4951: 2,50 + 4952: 2,54 + 4953: -1,54 + 4954: -1,55 + 4955: -1,56 + 4956: -1,57 + 4957: 2,57 + 4958: 2,56 + 4959: 2,55 + 4960: -1,58 + 4961: -1,59 + 4962: 2,58 + 4963: 2,59 + 4964: -2,59 + 4965: 3,59 + 4966: -2,60 + 4967: -3,60 + 4968: 3,60 + 4969: 4,60 + 4970: -3,61 + 4971: -4,61 + 4972: 4,61 + 4973: 5,61 + 5050: 3,70 + 5051: 2,70 + 5052: 0,70 + 5053: -1,70 + 5054: -2,70 + 5055: 4,70 + 5056: -3,70 + 5057: -4,70 + 5058: -5,70 + 5059: -6,70 + 5060: -3,69 + 5061: -4,69 + 5062: -5,69 + 5063: 5,70 + 5064: 5,69 + 5065: 6,69 + 5066: 6,70 + 5067: 7,69 + 5068: 7,70 + 5069: 8,70 + 5076: -5,71 + 5077: 7,71 + 5078: 7,72 + 5079: -5,72 + 5099: 3,85 + 5100: 2,85 + 5101: 1,85 + 5102: 0,85 + 5103: -1,85 + 5106: -2,84 + 5107: -3,84 + 5108: -4,84 + 5109: -5,84 + 5110: -5,83 + 5111: -5,82 + 5112: -5,81 + 5113: -5,80 + 5114: -5,79 + 5115: -5,78 + 5116: -5,75 + 5117: -5,74 + 5118: -5,73 + 6502: 3,26 + 6508: 4,26 + 6510: 4,27 + 6511: 4,25 + 6513: 4,24 + - node: + color: '#50BCB193' + id: FullTileOverlayGreyscale + decals: + 3353: 29,17 + 3354: 29,18 + 3355: 29,19 + 3356: 29,20 + 3357: 29,21 + 3358: 29,22 + 3359: 29,23 + 3360: 30,23 + 3361: 32,23 + 3362: 32,23 + 3363: 33,23 + 3364: 34,23 + 3365: 29,24 + 3366: 29,25 + 3367: 29,26 + 3368: 29,27 + 3369: 29,28 + 3370: 30,28 + 3371: 31,28 + 3391: 40,28 + 3392: 38,27 + 3393: 38,26 + 3394: 38,25 + 3395: 41,28 + 3396: 42,28 + 3397: 43,28 + 3398: 43,27 + 3399: 43,29 + 3400: 43,30 + 3445: 43,31 + 3446: 43,32 + 3447: 44,32 + 3448: 45,32 + 3449: 43,33 + 3450: 43,34 + 3451: 43,35 + 3452: 42,35 + 3453: 41,35 + 3454: 43,36 + 3455: 43,37 + 3456: 43,38 + 3457: 42,38 + 3458: 41,38 + 3459: 43,39 + 3460: 44,39 + 3461: 45,39 + 3462: 29,29 + 3463: 29,30 + 3464: 29,31 + 3465: 28,31 + 3466: 27,31 + 3467: 26,31 + 3468: 29,32 + 3469: 29,33 + 3470: 29,34 + 3471: 29,35 + 3472: 30,35 + 3473: 31,35 + 3474: 29,36 + 3475: 29,37 + 3476: 29,38 + 3477: 30,38 + 3478: 31,38 + 3479: 29,39 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 555: 9,-11 + 586: 5,-16 + 587: 9,-13 + 2777: 24,-11 + 5205: 18,-22 + 5468: 31,-30 + 5566: 3,-25 + 5567: 4,-25 + 5568: 5,-25 + 5569: 6,-25 + 5570: 7,-25 + 5571: 8,-25 + 5572: 9,-25 + 5573: 10,-25 + 5574: 11,-25 + 5575: 10,-28 + 5576: 4,-28 + 5577: 4,-22 + 5578: 10,-22 + 5778: 12,-25 + 5779: 13,-25 + 5780: 13,-24 + 5781: 13,-23 + 5782: 13,-22 + 5783: 13,-21 + 5784: 13,-20 + 5785: 13,-19 + 5786: 13,-18 + 5787: 13,-17 + 5788: 13,-16 + 5789: 13,-15 + 5790: 13,-14 + 5791: 13,-13 + 5792: 14,-25 + 5793: 15,-25 + 5794: 16,-25 + 5795: 17,-25 + 5796: 18,-25 + 5797: 19,-25 + 5798: 20,-25 + 5799: 21,-25 + 5800: 21,-26 + 5801: 21,-27 + 5802: 21,-28 + 5803: 20,-28 + 5804: 19,-28 + 5805: 18,-28 + 5806: 17,-28 + 5807: 16,-28 + 5808: 15,-28 + 5809: 14,-28 + 5810: 13,-28 + 5811: 13,-27 + 5812: 13,-26 + 5813: 18,-24 + 5814: 18,-23 + 5815: 13,-29 + 5816: 13,-30 + 5817: 13,-31 + 5822: 25,-24 + 5823: 31,-24 + 5853: 37,-24 + 5854: 37,-23 + 5855: 37,-22 + 5856: 37,-21 + 5857: 37,-20 + 5858: 37,-19 + 5859: 37,-18 + 5860: 37,-17 + 5861: 37,-16 + 5862: 37,-15 + 5863: 37,-14 + 5864: 38,-17 + 5865: 39,-17 + 5902: 31,-23 + 5939: 25,-23 + 5975: 25,-35 + 6075: 1,-25 + 6076: 2,-25 + 7219: 4,-38 + 7220: 7,-35 + 7237: 38,-37 + 7238: 45,-40 + 7239: 42,-39 + 7300: 4,-14 + - node: + color: '#9FED5815' + id: FullTileOverlayGreyscale + decals: + 3184: 40,19 + 3185: 41,19 + 3186: 42,19 + 3187: 43,19 + - node: + color: '#9FED5896' + id: FullTileOverlayGreyscale + decals: + 2879: 29,1 + 2880: 29,2 + 2881: 29,3 + 2983: 29,4 + 2984: 29,5 + 2985: 29,6 + 2986: 29,7 + 2987: 29,8 + 3011: 28,7 + 3013: 36,7 + 3014: 34,7 + 3015: 33,7 + 3016: 32,7 + 3017: 31,7 + 3018: 30,7 + 3107: 28,14 + 3108: 29,14 + 3112: 30,16 + 3113: 31,16 + 3118: 33,14 + 3119: 33,15 + 3120: 33,16 + 3121: 33,17 + 3122: 33,18 + 3123: 33,19 + 3124: 33,20 + 3125: 36,18 + 3126: 36,17 + 3127: 36,16 + 3128: 36,15 + 3129: 36,14 + 3139: 37,13 + 3140: 38,13 + 3141: 38,12 + 3142: 37,12 + 3143: 37,19 + 3144: 38,18 + 3145: 39,18 + 3182: 31,14 + 3183: 31,15 + 3310: 19,27 + 4996: 7,58 + 4997: 7,59 + 4998: 7,60 + 5362: 40,-27 + 5363: 40,-28 + 5364: 40,-29 + 5365: 40,-30 + 5366: 40,-31 + 5367: 40,-32 + 5368: 39,-32 + 5369: 38,-32 + 5370: 41,-32 + 5371: 42,-32 + 5372: 43,-32 + 5373: 44,-32 + 5374: 45,-32 + 5375: 45,-31 + 5376: 45,-30 + 5893: 40,-26 + - node: + color: '#A4610696' + id: FullTileOverlayGreyscale + decals: + 602: -8,-10 + 603: -8,-11 + 604: -7,-11 + 616: -12,-11 + 617: -13,-11 + 618: -14,-10 + 619: -11,-9 + 643: -4,-19 + 644: -5,-17 + 658: -11,-19 + 659: -10,-20 + 669: -14,-18 + 670: -13,-16 + 671: -15,-16 + 672: -16,-16 + 673: -17,-16 + 674: -17,-17 + 693: -14,-13 + 694: -15,-13 + 695: -15,-14 + 696: -12,-14 + 697: -11,-13 + 698: -11,-16 + 699: -11,-17 + 700: -9,-17 + 722: -16,-9 + 723: -17,-9 + 724: -16,-12 + 732: -20,-14 + 733: -21,-15 + 734: -18,-12 + 735: -19,-12 + 736: -20,-12 + 737: -21,-12 + 757: -24,-15 + 758: -25,-14 + 759: -23,-13 + 760: -24,-12 + 772: -22,-10 + 773: -23,-10 + 802: -20,-10 + 803: -19,-10 + 804: -19,-9 + 805: -22,-5 + 806: -20,-5 + 807: -20,-3 + 808: -20,-7 + 809: -20,-8 + 835: -29,-6 + 836: -28,-6 + 837: -27,-6 + 838: -26,-6 + 839: -26,-5 + 840: -27,-5 + 841: -28,-5 + 842: -29,-5 + 871: -30,0 + 872: -30,-1 + 873: -30,-2 + 886: -32,6 + 887: -31,9 + 958: -32,10 + 959: -26,9 + 960: -26,10 + 961: -27,10 + 962: -26,11 + 963: -28,11 + 964: -30,10 + 965: -31,11 + 966: -31,12 + 967: -27,13 + 1003: -34,1 + 1004: -34,2 + 1005: -34,3 + 1006: -34,4 + 1007: -34,5 + 1008: -34,7 + 1009: -34,9 + 1010: -34,10 + 1011: -34,11 + 1012: -34,12 + 1013: -34,13 + 1014: -33,6 + 1015: -32,6 + 1016: -35,7 + 1017: -33,10 + 1024: -36,7 + 1025: -37,6 + 1026: -37,7 + 1027: -37,8 + 1028: -37,9 + 1029: -37,10 + 1030: -38,11 + 1031: -38,10 + 1032: -38,9 + 1033: -38,8 + 1034: -38,7 + 1035: -38,6 + 1036: -39,5 + 1037: -39,6 + 1038: -40,6 + 1039: -41,6 + 1040: -42,6 + 1041: -43,6 + 1042: -44,6 + 1043: -44,7 + 1044: -43,7 + 1045: -43,8 + 1046: -43,9 + 1047: -43,10 + 1048: -43,11 + 1049: -42,11 + 1050: -42,10 + 1051: -41,10 + 1052: -41,11 + 1053: -40,11 + 1054: -40,10 + 1055: -39,10 + 1056: -39,11 + 1061: -39,7 + 1062: -40,7 + 1063: -41,7 + 1064: -42,7 + 1065: -42,8 + 1066: -42,9 + 1067: -41,9 + 1068: -40,9 + 1069: -39,9 + 1070: -39,8 + 1071: -40,8 + 1072: -41,8 + 1095: -38,-6 + 1096: -39,-6 + 1097: -40,-6 + 1098: -38,-5 + 1099: -39,-5 + 1100: -40,-5 + 1101: -41,-5 + 1102: -42,-5 + 1103: -43,-5 + 1104: -43,-4 + 1105: -43,-3 + 1106: -43,-2 + 1107: -42,-2 + 1108: -41,-2 + 1109: -40,-2 + 1110: -39,-2 + 1111: -38,-2 + 1112: -38,-3 + 1113: -38,-4 + 1114: -38,-1 + 1115: -38,0 + 1116: -39,0 + 1117: -40,0 + 1118: -41,0 + 1119: -42,0 + 1120: -43,0 + 1121: -43,1 + 1122: -43,2 + 1123: -43,3 + 1124: -42,3 + 1125: -41,3 + 1126: -40,3 + 1127: -39,3 + 1128: -38,3 + 1129: -38,2 + 1130: -38,1 + 1131: -40,4 + 1132: -39,4 + 1133: -38,4 + 1134: -37,4 + 2679: -34,8 + 2680: -34,6 + 7398: -42,-21 + 7399: -41,-20 + 7403: -47,-17 + 7412: -47,-21 + - node: + color: '#D381C996' + id: FullTileOverlayGreyscale + decals: + 1221: -34,0 + 1222: -34,-1 + 1223: -34,-2 + 1224: -34,-3 + 1225: -34,-4 + 1226: -34,-5 + 1227: -34,-6 + 1228: -34,-7 + 1229: -34,-8 + 1230: -34,-9 + 1231: -34,-10 + 1232: -34,-11 + 1233: -34,-12 + 1234: -34,-13 + 1235: -34,-14 + 1236: -34,-15 + 1277: -34,-16 + 1278: -34,-17 + 1286: -34,-18 + 1297: -38,-24 + 1298: -37,-24 + 1351: -47,-26 + 1383: -40,-33 + 1384: -39,-33 + 1386: -40,-30 + 1491: -30,-26 + 1492: -30,-27 + 1493: -30,-28 + 1494: -30,-29 + 1495: -30,-30 + 1496: -30,-31 + 1497: -30,-32 + 1498: -31,-32 + 1499: -32,-32 + 1500: -33,-32 + 1501: -34,-32 + 1502: -34,-33 + 1503: -34,-34 + 1504: -34,-35 + 1505: -29,-31 + 1506: -28,-31 + 1597: -34,-36 + 1598: -34,-37 + 1599: -34,-38 + 1600: -34,-39 + 1601: -34,-40 + 1602: -34,-41 + 1603: -34,-42 + 1604: -34,-43 + 1641: -27,-31 + 1642: -26,-31 + 1643: -26,-30 + 1644: -26,-29 + 1645: -26,-28 + 1646: -25,-28 + 1652: -28,-23 + 1653: -23,-26 + 1774: -24,-28 + 1775: -23,-28 + 1776: -23,-27 + 1777: -22,-28 + 1778: -22,-29 + 1779: -21,-28 + 1780: -20,-28 + 1781: -19,-28 + 1782: -18,-28 + 1783: -17,-28 + 1784: -17,-27 + 1785: -17,-26 + 1786: -16,-28 + 1787: -15,-28 + 1788: -14,-28 + 1789: -13,-28 + 1790: -12,-28 + 1791: -11,-28 + 1792: -10,-28 + 1793: -9,-28 + 1794: -11,-27 + 1795: -11,-26 + 1796: -11,-25 + 1797: -11,-24 + 1798: -11,-23 + 2078: -8,-28 + 2079: -7,-28 + 2080: -6,-28 + 2081: -5,-28 + 2082: -4,-28 + 2083: -3,-28 + 2084: -2,-28 + 2085: -8,-29 + 2086: -8,-30 + 2106: -42,-43 + 2107: -43,-43 + 2356: -24,-45 + 2361: -21,-47 + 2367: -21,-50 + 2460: -26,-55 + 2461: -26,-56 + 2462: -23,-57 + - node: + color: '#D4D4D428' + id: FullTileOverlayGreyscale + decals: + 1218: -40,-11 + 1219: -40,-12 + 1220: -40,-10 + 2117: -43,-41 + 2118: -43,-40 + 2119: -39,-42 + 2120: -38,-42 + 2121: -38,-42 + 2123: -45,-39 + 2124: -45,-40 + 2125: -45,-41 + 2144: -43,-31 + 2145: -43,-30 + 2146: -44,-30 + 2147: -44,-31 + 2148: -45,-31 + 2149: -45,-30 + 2150: -44,-32 + 2191: -37,-48 + 2192: -37,-47 + 2207: -34,-45 + 2208: -34,-46 + 2209: -34,-47 + 2210: -34,-48 + 2211: -34,-49 + 2212: -35,-49 + 2213: -35,-48 + 2215: -33,-48 + 2216: -32,-48 + 2219: -34,-50 + 2220: -34,-51 + 2221: -35,-51 + 2222: -35,-50 + 2223: -36,-50 + 2224: -37,-50 + 2225: -38,-50 + 2226: -39,-50 + 2227: -40,-50 + 2228: -40,-51 + 2229: -40,-52 + 2230: -40,-53 + 2265: -41,-51 + 2266: -42,-51 + 2267: -43,-51 + 2268: -43,-50 + 2269: -42,-50 + 3703: 37,-14 + 3704: 37,-13 + 3705: 37,-12 + 4326: -20,30 + 7339: -45,-42 + 7340: -40,-42 + 7341: -41,-42 + - node: + angle: 1.5707963267948966 rad + color: '#D4D4D428' + id: FullTileOverlayGreyscale + decals: + 2135: -45,-37 + 2136: -45,-36 + 2137: -45,-35 + - node: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 495: -15,14 + 496: -15,15 + 497: -15,16 + 3890: 44,-14 + 3891: 45,-15 + 3892: 46,-15 + 3893: 47,-15 + 3917: -18,14 + 3920: -19,16 + 3921: -22,15 + 3952: -28,22 + 4015: -1,19 + 4016: 0,19 + 4026: -2,19 + 4027: -3,19 + 4028: -4,19 + 4029: -5,19 + 4030: -6,19 + 4031: -7,19 + 4032: -8,19 + 4033: -9,19 + 4034: -10,19 + 4035: -11,19 + 4036: -12,19 + 4037: -13,19 + 4038: -14,19 + 4039: -15,19 + 4040: -16,19 + 4041: -16,20 + 4085: -22,25 + 4086: -22,24 + 4087: -21,24 + 4088: -21,25 + 4089: -20,25 + 4090: -20,24 + 4091: -19,24 + 4092: -19,25 + 4132: -15,21 + 4133: -17,21 + 4134: -17,24 + 4135: -15,24 + 4136: -16,25 + 4137: -16,26 + 4177: -16,27 + 4178: -16,28 + 4179: -17,28 + 4180: -16,29 + 4181: -15,28 + 4182: -14,28 + 4183: -13,28 + 4184: -12,28 + 4185: -11,28 + 4186: -10,28 + 4187: -9,28 + 4188: -8,28 + 4189: -7,28 + 4190: -6,28 + 4191: -5,28 + 4192: -4,28 + 4193: -4,29 + 4194: -13,29 + 4195: -7,30 + 4196: -6,30 + 4197: -4,30 + 4227: -4,31 + 4228: -13,30 + 4229: -12,36 + 4230: -12,35 + 4231: -12,34 + 4232: -11,34 + 4233: -11,35 + 4234: -10,36 + 4235: -13,36 + 4236: -13,37 + 4265: -16,30 + 4266: -16,31 + 4267: -16,32 + 4268: -17,32 + 4269: -17,33 + 4270: -16,33 + 4271: -16,34 + 4272: -17,34 + 4273: -17,35 + 4274: -16,35 + 4322: -20,35 + 4323: -20,34 + 4324: -20,33 + 4325: -20,32 + 4333: -10,37 + 4334: -10,38 + 4335: -10,39 + 4336: -10,40 + 4375: -32,26 + 4376: -31,26 + 4377: -30,26 + 4378: -30,25 + 4379: -32,25 + 4380: -31,25 + 4419: -42,22 + 4420: -41,22 + 4421: -40,22 + 4422: -40,21 + 4423: -40,20 + 4424: -41,20 + 4425: -42,20 + 4426: -43,20 + 4427: -39,20 + 4428: -38,20 + 4429: -37,20 + 4430: -38,19 + 4431: -37,21 + 4432: -37,22 + 4433: -37,23 + 4434: -37,24 + 4435: -37,25 + 4436: -37,26 + 4437: -37,27 + 4471: -37,28 + 4472: -37,29 + 4473: -38,29 + 4474: -39,29 + 4475: -36,29 + 4476: -35,29 + 4483: -24,37 + 4484: -24,36 + 4485: -24,35 + 4486: -24,34 + 4487: -24,33 + 4488: -24,32 + 4489: -24,31 + 4490: -24,30 + 4491: -24,29 + 4492: -25,29 + 4493: -26,29 + 4494: -27,29 + 4495: -28,29 + 4496: -29,29 + 4497: -30,29 + 4498: -31,29 + 4499: -32,29 + 4500: -33,29 + 4501: -34,29 + 4502: -25,35 + 4503: -26,35 + 4504: -24,28 + 4505: -24,27 + 4506: -24,26 + 4507: -23,28 + 4508: -22,28 + 4509: -21,28 + 4510: -20,28 + 4511: -19,28 + 4512: -18,28 + 4566: -3,35 + 4567: -5,35 + 4568: -5,32 + 4569: -3,32 + 4570: -2,37 + 4571: -2,38 + 4597: -1,37 + 4598: -1,38 + 4599: 0,38 + 4600: 0,37 + 4990: -6,58 + 4991: -6,59 + 4992: -6,60 + - node: + color: '#EFB34195' + id: FullTileOverlayGreyscale + decals: + 6297: 8,-59 + 6298: 8,-60 + 6299: 8,-61 + 6300: 6,-59 + 6301: 6,-60 + 6302: 6,-61 + - node: + color: '#EFB34196' + id: FullTileOverlayGreyscale + decals: + 2529: -11,-53 + 2558: -5,-49 + 4926: -2,62 + 4927: -1,62 + 4928: 0,62 + 4929: 1,62 + 4930: 2,62 + 4931: 3,62 + 6221: 6,-47 + 6238: 7,-48 + 6239: 7,-49 + 6240: 7,-50 + 6241: 7,-51 + 6242: 7,-52 + 6243: 8,-48 + 6244: 6,-51 + 6245: 5,-51 + 6246: 7,-53 + 6247: 8,-53 + 6248: 7,-54 + 6249: 7,-55 + 6250: 7,-56 + 6251: 7,-57 + 6252: 6,-56 + 6253: 9,-48 + 6254: 9,-53 + 6255: -4,-53 + 6256: -1,-52 + 6527: 14,-67 + 6528: 13,-67 + 6529: 12,-67 + 6530: 11,-67 + 6531: 10,-67 + 6551: 6,-68 + 6552: 6,-67 + 6553: 6,-66 + 6554: 6,-65 + 6555: 6,-64 + 6556: 5,-64 + 6557: 4,-64 + 6558: 3,-64 + 6559: 2,-64 + 6560: 1,-64 + 6561: 0,-64 + 6562: -1,-64 + 6563: -2,-64 + 6564: -3,-64 + 6565: -4,-64 + 6566: -5,-64 + 6567: -6,-64 + 6568: -6,-65 + 6569: -6,-66 + 6570: -6,-67 + 6571: -6,-68 + 6572: -6,-72 + 6573: -6,-73 + 6574: 6,-72 + 6575: 6,-73 + 6857: 20,-52 + 6858: 20,-51 + 6859: 21,-51 + 6860: 21,-52 + 6861: 29,-53 + 6862: 29,-52 + 6863: 30,-52 + 6864: 30,-53 + 6865: 25,-63 + 6866: 26,-63 + 6867: 27,-63 + 6868: 28,-63 + 6869: 29,-63 + 7096: 10,-48 + - node: + color: '#FF924493' + id: FullTileOverlayGreyscale + decals: + 5339: 30,-20 + - node: + color: '#FFFFFFFF' + id: FullTileOverlayGreyscale + decals: + 1270: -34,-16 + 1271: -34,-17 + 1284: -34,-18 + 1285: -33,-18 + 1440: -30,-27 + 1441: -30,-26 + 1442: -30,-28 + 1443: -30,-29 + 1444: -30,-30 + 1445: -30,-31 + 1446: -30,-32 + 1447: -31,-32 + 1448: -32,-32 + 1449: -33,-32 + 1450: -34,-32 + 1451: -35,-32 + 1452: -36,-32 + 1453: -36,-31 + 1454: -35,-31 + 1455: -34,-31 + 1456: -33,-31 + 1457: -32,-31 + 1458: -31,-31 + 1459: -36,-30 + 1460: -36,-29 + 1461: -36,-28 + 1462: -34,-33 + 1463: -34,-34 + 1464: -34,-35 + 1465: -29,-32 + 1466: -29,-31 + 1467: -28,-31 + 1570: -34,-36 + 1571: -34,-37 + 1572: -34,-38 + 1573: -34,-39 + 1574: -34,-40 + 1575: -34,-41 + 1576: -34,-42 + 1577: -34,-43 + 1578: -35,-43 + 1579: -35,-44 + 1580: -34,-44 + 1623: -27,-31 + 1624: -26,-31 + 1625: -26,-30 + 1626: -26,-29 + 1627: -26,-28 + 1628: -25,-28 + 1650: -28,-23 + 1651: -23,-26 + 1715: -23,-28 + 1716: -23,-27 + 1717: -22,-28 + 1718: -21,-28 + 1719: -20,-28 + 1720: -19,-28 + 1721: -18,-28 + 1722: -17,-28 + 1723: -17,-27 + 1724: -17,-26 + 1725: -22,-29 + 1726: -16,-28 + 1727: -15,-28 + 1728: -14,-28 + 1729: -13,-28 + 1730: -12,-28 + 1731: -11,-28 + 1732: -11,-27 + 1733: -11,-26 + 1734: -11,-25 + 1735: -11,-24 + 1736: -11,-23 + 1737: -11,-22 + 1738: -10,-28 + 1739: -9,-28 + 1744: -24,-28 + 1799: -22,-30 + 1800: -22,-31 + 1801: -22,-32 + 1802: -22,-33 + 1803: -22,-34 + 1804: -21,-33 + 1805: -21,-34 + 1867: -8,-28 + 1868: -8,-29 + 1869: -8,-30 + 1870: -8,-31 + 1871: -8,-32 + 1872: -8,-33 + 1873: -8,-34 + 1874: -8,-35 + 1884: -8,-36 + 1885: -8,-37 + 1886: -9,-37 + 1887: -9,-36 + 1888: -10,-36 + 1889: -10,-37 + 1890: -11,-37 + 1891: -11,-36 + 1892: -12,-36 + 1893: -12,-37 + 1894: -13,-37 + 1895: -13,-36 + 1896: -13,-38 + 1897: -12,-38 + 1898: -12,-39 + 1899: -13,-39 + 1956: -13,-50 + 1957: -12,-50 + 1958: -12,-49 + 1959: -13,-49 + 1960: -13,-48 + 1961: -12,-48 + 1962: -12,-47 + 1963: -13,-47 + 1964: -13,-46 + 1965: -12,-46 + 1966: -12,-45 + 1967: -13,-45 + 1968: -13,-44 + 1969: -12,-44 + 1970: -12,-43 + 1971: -13,-43 + 1972: -13,-42 + 1973: -12,-42 + 1974: -12,-41 + 1975: -13,-41 + 1976: -13,-40 + 1977: -12,-40 + 2062: -7,-28 + 2063: -6,-28 + 2064: -5,-28 + 2065: -4,-28 + 2066: -3,-28 + 2067: -2,-28 + 5154: 13,-13 + 5155: 13,-14 + 5156: 13,-15 + 5157: 13,-16 + 5158: 13,-17 + 5159: 15,-15 + 5160: 16,-15 + 5161: 17,-15 + 5162: 17,-16 + 5163: 16,-16 + 5164: 15,-16 + 5193: 17,-20 + 5194: 18,-20 + 5195: 19,-20 + 5196: 19,-21 + 5197: 18,-21 + 5198: 17,-21 + 5206: 25,-22 + 5207: 26,-22 + 5208: 26,-21 + 5209: 25,-21 + 5210: 24,-21 + 5211: 23,-21 + 5212: 22,-21 + 5213: 22,-20 + 5214: 23,-20 + 5215: 24,-20 + 5216: 25,-20 + 5217: 26,-20 + 5218: 26,-19 + 5219: 25,-19 + 5220: 24,-19 + 5221: 23,-19 + 5222: 22,-19 + 5223: 22,-18 + 5224: 23,-18 + 5225: 24,-18 + 5226: 25,-18 + 5227: 26,-18 + 5257: 28,-16 + 5258: 28,-17 + 5259: 28,-18 + 5260: 28,-19 + 5261: 28,-20 + 5262: 28,-21 + 5263: 30,-22 + 5264: 31,-22 + 5265: 31,-22 + 5266: 32,-22 + 5267: 33,-22 + 5268: 34,-21 + 5269: 33,-21 + 5270: 32,-21 + 5271: 31,-21 + 5272: 30,-21 + 5273: 29,-21 + 5274: 29,-20 + 5275: 30,-20 + 5276: 31,-20 + 5277: 32,-20 + 5278: 33,-20 + 5279: 34,-20 + 5280: 34,-19 + 5281: 33,-19 + 5282: 32,-19 + 5283: 31,-19 + 5284: 30,-19 + 5285: 29,-19 + 5286: 29,-18 + 5287: 30,-18 + 5288: 31,-18 + 5289: 32,-18 + 5290: 33,-18 + 5291: 34,-18 + 5292: 34,-17 + 5293: 33,-17 + 5294: 32,-17 + 5295: 31,-17 + 5296: 30,-17 + 5297: 29,-17 + 5298: 29,-16 + 5299: 30,-16 + 5300: 31,-16 + 5301: 32,-16 + 5302: 33,-16 + 5303: 34,-16 + 5311: 34,-22 + 5315: 29,-22 + 5316: 28,-22 + 5432: 26,-27 + 5433: 27,-27 + 5434: 26,-28 + 5435: 27,-28 + 5436: 27,-29 + 5437: 27,-30 + 5438: 26,-30 + 5439: 26,-29 + 5440: 26,-31 + 5441: 26,-32 + 5442: 27,-32 + 5443: 27,-31 + 5444: 25,-29 + 5445: 31,-31 + 5446: 31,-30 + 5447: 31,-29 + 5448: 32,-29 + 5482: 5,-29 + 5483: 6,-29 + 5484: 6,-30 + 5485: 5,-30 + 5486: 5,-31 + 5487: 6,-31 + 5488: 6,-32 + 5489: 5,-32 + 5490: 7,-32 + 5491: 7,-31 + 5492: 8,-31 + 5493: 8,-32 + 5494: 9,-32 + 5495: 9,-31 + 5496: 10,-31 + 5497: 10,-32 + 5498: 11,-32 + 5499: 11,-31 + 5516: 8,-21 + 5517: 9,-21 + 5518: 8,-20 + 5519: 8,-19 + 5520: 9,-19 + 5521: 10,-20 + 5522: 10,-19 + 5523: 11,-19 + 5528: 9,-20 + 5531: 3,-26 + 5532: 3,-25 + 5533: 3,-24 + 5534: 4,-24 + 5535: 4,-25 + 5536: 4,-26 + 5537: 5,-25 + 5538: 6,-25 + 5539: 7,-25 + 5540: 8,-25 + 5541: 9,-25 + 5542: 10,-25 + 5543: 10,-26 + 5544: 10,-24 + 5545: 10,-23 + 5546: 9,-23 + 5547: 8,-23 + 5548: 7,-23 + 5549: 6,-23 + 5550: 5,-23 + 5551: 4,-23 + 5552: 4,-22 + 5553: 10,-22 + 5554: 10,-27 + 5555: 10,-28 + 5556: 9,-27 + 5557: 8,-27 + 5558: 7,-27 + 5559: 6,-27 + 5560: 5,-27 + 5561: 4,-27 + 5562: 4,-28 + 5563: 11,-26 + 5564: 11,-25 + 5565: 11,-24 + 5625: 13,-18 + 5626: 13,-19 + 5627: 13,-20 + 5628: 13,-21 + 5629: 13,-22 + 5630: 13,-23 + 5631: 13,-24 + 5632: 13,-25 + 5633: 13,-26 + 5634: 13,-27 + 5635: 13,-28 + 5636: 13,-29 + 5637: 13,-30 + 5638: 13,-31 + 5639: 12,-31 + 5640: 12,-25 + 5641: 14,-20 + 5642: 14,-21 + 5643: 14,-25 + 5644: 15,-25 + 5645: 16,-25 + 5646: 17,-25 + 5647: 18,-25 + 5648: 19,-25 + 5649: 20,-25 + 5650: 14,-28 + 5651: 15,-28 + 5652: 16,-28 + 5653: 18,-28 + 5654: 17,-28 + 5655: 19,-28 + 5656: 20,-28 + 5657: 18,-23 + 5658: 18,-24 + 5659: 21,-28 + 5660: 21,-27 + 5661: 21,-26 + 5662: 21,-25 + 5663: 22,-28 + 5664: 22,-27 + 5665: 22,-26 + 5666: 34,-25 + 5667: 35,-25 + 5668: 25,-24 + 5671: 31,-24 + 5672: 36,-25 + 5673: 37,-25 + 5674: 38,-25 + 5675: 39,-25 + 5676: 40,-25 + 5677: 40,-26 + 5678: 41,-25 + 5679: 42,-25 + 5680: 37,-24 + 5681: 37,-23 + 5682: 37,-22 + 5683: 37,-21 + 5684: 37,-20 + 5685: 37,-19 + 5686: 37,-18 + 5687: 37,-17 + 5688: 37,-16 + 5689: 37,-15 + 5690: 37,-14 + 5691: 38,-17 + 5692: 39,-17 + 5818: 12,-32 + 5819: 13,-32 + 5826: 22,-25 + 5827: 23,-25 + 5828: 24,-25 + 5829: 25,-25 + 5830: 26,-25 + 5831: 27,-25 + 5832: 28,-25 + 5833: 29,-25 + 5834: 30,-25 + 5835: 31,-25 + 5836: 32,-25 + 5837: 33,-25 + 5901: 31,-23 + 5938: 25,-23 + - node: + color: '#222222E5' + id: HalfTileOverlayGreyscale + decals: + 284: -7,-8 + 285: -6,-8 + 286: -5,-9 + 287: -3,-10 + 288: -2,-10 + 289: 3,-10 + 290: 4,-10 + 291: 6,-9 + 292: 7,-8 + 293: 8,-8 + 3779: 34,-11 + 3780: 35,-11 + 3781: 36,-11 + 3782: 37,-11 + 3783: 38,-11 + 3784: 39,-11 + 3785: 40,-11 + 3786: 41,-11 + 3835: 42,-5 + 3836: 41,-5 + 3837: 40,-5 + 3838: 39,-5 + 3839: 38,-5 + 3840: 37,-5 + 3841: 36,-5 + 3842: 33,-5 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale + decals: + 5104: 3,84 + 5105: -1,84 + 6500: 2,26 + 6516: 5,27 + 6517: 6,27 + 6518: 7,27 + 6519: 8,27 + - node: + color: '#50BCB193' + id: HalfTileOverlayGreyscale + decals: + 3382: 39,27 + 3383: 37,27 + 3384: 36,27 + 3385: 35,27 + 3386: 34,27 + 3387: 33,27 + 3388: 32,27 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 5466: 31,-31 + 5530: 9,-19 + 5586: 10,-23 + 5587: 9,-23 + 5588: 8,-23 + 5589: 7,-23 + 5590: 5,-23 + 5591: 4,-23 + 5592: 6,-23 + 5840: 22,-25 + 5841: 23,-25 + 5842: 24,-25 + 5843: 25,-25 + 5844: 28,-25 + 5845: 29,-25 + 5846: 30,-25 + 5847: 31,-25 + 5848: 32,-25 + 5849: 33,-25 + 5850: 34,-25 + 5851: 35,-25 + 5852: 36,-25 + 5866: 38,-25 + 5867: 39,-25 + 5868: 40,-25 + 5869: 41,-25 + 5870: 42,-25 + 5873: 37,-25 + 7301: 5,-12 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + decals: + 2989: 27,6 + 2990: 26,6 + 2991: 25,6 + 2992: 24,6 + 2993: 23,6 + 2994: 22,6 + 2995: 21,6 + 2996: 20,6 + 2997: 19,6 + 2998: 18,6 + 2999: 17,6 + 3130: 35,18 + 3131: 34,18 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale + decals: + 7396: -43,-18 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale + decals: + 98: -4,0 + 99: -5,0 + 100: -6,0 + 101: -7,0 + 102: -8,0 + 103: -9,0 + 104: -10,0 + 105: -11,0 + 106: -12,0 + 482: -13,0 + 483: -14,0 + 484: -15,0 + 485: -16,0 + 486: -17,0 + 487: -18,0 + 488: -19,0 + 546: 8,13 + 874: -20,0 + 875: -21,0 + 876: -22,0 + 877: -23,0 + 878: -24,0 + 879: -25,0 + 880: -26,0 + 881: -27,0 + 882: -28,0 + 883: -29,0 + 884: -31,0 + 885: -32,0 + 1237: -33,0 + 1605: -34,-44 + 1606: -35,-44 + 2092: -36,-44 + 2093: -37,-44 + 2094: -38,-44 + 2095: -39,-44 + 2096: -40,-44 + 2097: -41,-44 + 2098: -42,-44 + 2099: -43,-44 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale + decals: + 459: -12,2 + 460: -14,2 + 461: -18,2 + 462: -19,2 + 2151: -43,-32 + 2152: -45,-32 + 2197: -37,-49 + 2608: -20,2 + 2609: -21,2 + 2610: -22,2 + 2611: -23,2 + 2612: -24,2 + 2613: -25,2 + 2614: -26,2 + 2615: -27,2 + 2616: -28,2 + 2617: -29,2 + 2618: -30,2 + 2619: -31,2 + 2620: -32,2 + 2711: 13,2 + 2712: 15,2 + 2713: 16,2 + 2714: 17,2 + 3497: 27,2 + 3498: 26,2 + 3499: 25,2 + 3500: 24,2 + 3501: 23,2 + 3502: 22,2 + 3503: 21,2 + 3504: 20,2 + 3505: 19,2 + 3506: 18,2 + 3516: 31,2 + 3517: 32,2 + 3518: 33,2 + 3519: 34,2 + 3520: 35,2 + 3530: 35,8 + 3531: 34,8 + 3532: 33,8 + 3533: 32,8 + 3534: 31,8 + 3540: 17,10 + 3541: 18,10 + 3542: 19,10 + 3587: 27,33 + 3603: 31,30 + 3604: 32,30 + 3605: 33,30 + 3606: 34,30 + 3607: 35,30 + 3608: 36,30 + 3609: 37,30 + 3610: 38,30 + 3611: 39,30 + 3726: 34,-6 + 3727: 35,-6 + 3728: 36,-6 + 3729: 37,-6 + 3730: 38,-6 + 3731: 39,-6 + 3732: 40,-6 + 3733: 41,-6 + 4042: -3,20 + 4043: -4,20 + 4044: -5,20 + 4045: -6,20 + 4046: -7,20 + 4047: -8,20 + 4048: -9,20 + 4049: -10,20 + 4050: -11,20 + 4051: -12,20 + 4052: -13,20 + 4053: -14,20 + 4175: -25,25 + 4176: -26,25 + 4217: -6,29 + 4218: -7,29 + 4219: -8,29 + 4220: -9,29 + 4221: -10,29 + 4222: -11,29 + 4279: -17,36 + 4280: -16,36 + 4316: -20,36 + 4392: -39,37 + 4393: -40,37 + 4394: -41,37 + 4395: -42,37 + 4479: -38,30 + 4480: -37,30 + 4481: -36,30 + 4513: -34,30 + 4514: -33,30 + 4515: -32,30 + 4516: -31,30 + 4517: -30,30 + 4518: -29,30 + 4519: -28,30 + 4520: -27,30 + 4521: -26,30 + 4536: -22,29 + 4537: -21,29 + 4538: -20,29 + 4539: -19,29 + 4540: -18,29 + 6174: 8,-40 + 6175: 7,-40 + 6176: 6,-40 + 6177: 5,-40 + 6178: 4,-40 + 6386: -1,-56 + 6387: -2,-56 + 6388: -3,-56 + 6389: -4,-56 + 6390: -5,-56 + 6391: -6,-56 + 6392: -7,-56 + 6934: 29,-64 + 6935: 28,-64 + 6936: 27,-64 + 6937: 26,-64 + 6938: 25,-64 + 6945: 30,-54 + 6946: 29,-54 + 6971: 23,-50 + 6972: 24,-50 + 6973: 25,-50 + 6974: 26,-50 + 6975: 27,-50 + 6976: 28,-50 + 6977: 29,-50 + 6978: 30,-50 + 6979: 31,-50 + 7187: 11,-41 + 7188: 12,-41 + 7189: 14,-41 + 7190: 13,-41 + 7191: 15,-41 + 7192: 16,-41 + 7193: 17,-41 + 7194: 18,-41 + 7195: 19,-41 + 7196: 20,-41 + 7197: 21,-41 + 7198: 22,-41 + 7199: 23,-41 + 7200: 24,-41 + 7201: 25,-41 + 7202: 26,-41 + 7203: 27,-41 + 7204: 28,-41 + 7205: 29,-41 + 7209: 31,-42 + - node: + color: '#D4D4D496' + id: HalfTileOverlayGreyscale + decals: + 5403: 36,-29 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 2763: 29,-3 + 2764: 28,-3 + 3907: 45,-17 + 4131: -16,23 + 4245: -8,34 + 4247: -10,35 + 4573: -4,34 + 4574: -4,40 + 4575: -5,40 + 4576: -6,40 + 5515: 5,-19 + 6229: 3,-49 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + decals: + 6154: 1,-42 + 6155: 2,-42 + 6164: 9,-42 + 6165: 8,-42 + 6166: 7,-42 + 6167: 4,-42 + 6215: 0,-47 + 6216: 1,-47 + 6217: 2,-47 + 6218: 3,-47 + 6219: 4,-47 + 6220: 5,-47 + - node: + color: '#FFFFFFFF' + id: HalfTileOverlayGreyscale + decals: + 71: 5,0 + 72: 6,0 + 73: 7,0 + 74: 8,0 + 75: 9,0 + 76: 10,0 + 77: 11,0 + 78: 12,0 + 79: 13,0 + 833: -28,-6 + 834: -27,-6 + 1283: -33,-24 + 1484: -32,-33 + 1485: -31,-33 + 1486: -30,-33 + 1487: -29,-33 + 1633: -26,-32 + 1634: -27,-32 + 1647: -24,-29 + 1764: -20,-29 + 1765: -19,-29 + 1766: -18,-29 + 1767: -17,-29 + 1768: -16,-29 + 1769: -15,-29 + 1770: -14,-29 + 1771: -13,-29 + 1772: -12,-29 + 1773: -11,-29 + 2069: -10,-29 + 2070: -6,-29 + 2075: -4,-29 + 2076: -3,-29 + 2832: 14,0 + 2833: 15,0 + 2834: 16,0 + 2835: 17,0 + 2836: 18,0 + 2837: 19,0 + 2838: 20,0 + 2839: 21,0 + 2840: 22,0 + 2841: 23,0 + 2842: 24,0 + 2843: 25,0 + 2844: 26,0 + 2845: 27,0 + 2846: 28,0 + 2847: 29,0 + 2848: 30,0 + 2849: 31,0 + 2850: 32,0 + 2851: 33,0 + 2968: 23,9 + 2969: 24,9 + 2970: 25,9 + 5170: 15,-17 + 5171: 16,-17 + 5172: 17,-17 + 5173: 19,-16 + 5709: 15,-29 + 5710: 16,-29 + 5711: 17,-29 + 5712: 18,-29 + 5713: 19,-29 + 5714: 20,-29 + 5715: 21,-29 + 5716: 22,-29 + 5720: 24,-26 + 5721: 25,-26 + 5724: 28,-26 + 5725: 29,-26 + 5726: 30,-26 + 5727: 31,-26 + 5728: 32,-26 + 5729: 33,-26 + 5730: 34,-26 + 5731: 35,-26 + 5732: 36,-26 + 5733: 37,-26 + 5874: 38,-26 + - node: + color: '#222222E5' + id: HalfTileOverlayGreyscale180 + decals: + 235: -3,11 + 236: -2,11 + 237: 3,11 + 238: 4,11 + 239: -5,10 + 240: 6,10 + 241: -6,9 + 242: -7,9 + 269: 3,-4 + 270: -2,-4 + 304: 8,9 + 305: 7,9 + 3787: 41,-6 + 3788: 40,-6 + 3789: 39,-6 + 3790: 38,-6 + 3791: 37,-6 + 3792: 36,-6 + 3793: 35,-6 + 3794: 34,-6 + 3818: 33,-12 + 3819: 34,-12 + 3820: 35,-12 + 3823: 39,-12 + 3824: 40,-12 + 3825: 41,-12 + 3826: 42,-12 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + decals: + 5070: 6,71 + 5071: 8,71 + 5072: 9,71 + 5073: -4,71 + 5074: -6,71 + 5075: -7,71 + 6501: 2,26 + 6520: 5,24 + 6521: 6,24 + 6522: 7,24 + 6523: 8,24 + - node: + color: '#50BCB193' + id: HalfTileOverlayGreyscale180 + decals: + 3374: 32,29 + 3375: 33,29 + 3376: 34,29 + 3377: 35,29 + 3378: 36,29 + 3379: 37,29 + 3380: 38,29 + 3381: 39,29 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 5467: 31,-29 + 5529: 9,-20 + 5579: 10,-27 + 5580: 9,-27 + 5581: 8,-27 + 5582: 7,-27 + 5583: 6,-27 + 5584: 5,-27 + 5585: 4,-27 + 5871: 42,-25 + 5872: 41,-25 + 5942: 13,-36 + 5974: 24,-37 + 7221: 8,-38 + 7246: 43,-38 + 7247: 42,-38 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale180 + decals: + 62: 5,1 + 63: 6,1 + 64: 7,1 + 65: 8,1 + 66: 9,1 + 67: 10,1 + 68: 11,1 + 69: 12,1 + 70: 13,1 + 2864: 14,1 + 2865: 15,1 + 2866: 16,1 + 2867: 17,1 + 2868: 18,1 + 2869: 19,1 + 2870: 20,1 + 2871: 21,1 + 2872: 22,1 + 2873: 23,1 + 2874: 24,1 + 2875: 25,1 + 2876: 26,1 + 2877: 27,1 + 2878: 28,1 + 3000: 17,7 + 3001: 18,7 + 3002: 19,7 + 3003: 20,7 + 3004: 21,7 + 3005: 22,7 + 3006: 23,7 + 3007: 24,7 + 3008: 25,7 + 3009: 26,7 + 3010: 27,7 + 3132: 35,14 + 3133: 34,14 + 5877: 22,-25 + 5878: 23,-25 + 5879: 24,-25 + 5880: 25,-25 + 5881: 28,-25 + 5882: 29,-25 + 5883: 30,-25 + 5884: 31,-25 + 5885: 32,-25 + 5886: 33,-25 + 5887: 34,-25 + 5888: 35,-25 + 5889: 36,-25 + 5890: 37,-25 + 5891: 38,-25 + 5892: 39,-25 + 5894: 40,-25 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + decals: + 107: -4,1 + 108: -5,1 + 109: -6,1 + 110: -7,1 + 111: -8,1 + 112: -9,1 + 113: -10,1 + 114: -11,1 + 115: -12,1 + 475: -13,1 + 476: -14,1 + 477: -15,1 + 478: -16,1 + 479: -17,1 + 480: -18,1 + 481: -19,1 + 858: -20,1 + 859: -21,1 + 860: -22,1 + 861: -23,1 + 862: -24,1 + 863: -25,1 + 864: -26,1 + 865: -27,1 + 866: -28,1 + 867: -29,1 + 868: -30,1 + 869: -31,1 + 870: -32,1 + 892: -30,4 + 893: -29,4 + 1178: -33,1 + 1188: -43,-13 + 1189: -44,-13 + 1190: -45,-13 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + decals: + 545: 9,11 + 1607: -35,-43 + 2100: -37,-43 + 2101: -36,-43 + 2102: -38,-43 + 2103: -39,-43 + 2104: -40,-43 + 2105: -41,-43 + 2108: -43,-42 + 2423: -21,-53 + 2465: -27,-57 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale180 + decals: + 463: -12,-1 + 464: -14,-1 + 465: -18,-1 + 466: -19,-1 + 2126: -43,-39 + 2198: -37,-46 + 2214: -35,-47 + 2217: -33,-47 + 2218: -32,-47 + 2604: -23,-1 + 2605: -24,-1 + 2606: -25,-1 + 2607: -26,-1 + 2634: -36,6 + 2663: -32,-1 + 2666: -27,-1 + 2667: -28,-1 + 2707: 13,-1 + 2708: 15,-1 + 2709: 16,-1 + 2710: 17,-1 + 3480: 18,-1 + 3481: 19,-1 + 3482: 20,-1 + 3483: 21,-1 + 3484: 22,-1 + 3485: 23,-1 + 3486: 24,-1 + 3487: 25,-1 + 3488: 26,-1 + 3489: 27,-1 + 3490: 28,-1 + 3491: 29,-1 + 3492: 30,-1 + 3493: 31,-1 + 3494: 32,-1 + 3495: 33,-1 + 3526: 32,6 + 3527: 33,6 + 3528: 34,6 + 3529: 35,6 + 3586: 27,29 + 3649: 41,27 + 3654: 36,26 + 3655: 35,26 + 3656: 34,26 + 3657: 33,26 + 3658: 32,26 + 3659: 31,26 + 3706: 37,-11 + 3707: 38,-11 + 3708: 39,-11 + 3709: 40,-11 + 3710: 41,-11 + 3711: 36,-11 + 3712: 35,-11 + 3713: 34,-11 + 4058: -16,18 + 4059: -15,18 + 4060: -14,18 + 4061: -13,18 + 4062: -12,18 + 4063: -11,18 + 4064: -10,18 + 4065: -9,18 + 4066: -8,18 + 4067: -7,18 + 4068: -6,18 + 4069: -5,18 + 4070: -4,18 + 4071: -3,18 + 4173: -25,23 + 4174: -26,23 + 4200: -14,27 + 4201: -13,27 + 4202: -12,27 + 4203: -11,27 + 4204: -10,27 + 4205: -9,27 + 4206: -8,27 + 4207: -7,27 + 4208: -6,27 + 4209: -5,27 + 4210: -4,27 + 4285: -17,31 + 4317: -20,31 + 4447: -39,19 + 4448: -40,19 + 4449: -41,19 + 4450: -42,19 + 4451: -43,19 + 4541: -18,27 + 4542: -19,27 + 4543: -20,27 + 4544: -21,27 + 4545: -22,27 + 4549: -26,28 + 4550: -27,28 + 4551: -28,28 + 4552: -29,28 + 4553: -30,28 + 4554: -31,28 + 4555: -32,28 + 4556: -33,28 + 4557: -34,28 + 6136: 0,-43 + 6137: 1,-43 + 6138: 2,-43 + 6179: 4,-43 + 6180: 7,-43 + 6181: 8,-43 + 6376: -7,-61 + 6377: -6,-61 + 6378: -5,-61 + 6379: -4,-61 + 6380: -3,-61 + 6381: -2,-61 + 6382: -1,-61 + 6927: 25,-62 + 6928: 26,-62 + 6929: 27,-62 + 6930: 28,-62 + 6931: 29,-62 + 6943: 29,-51 + 6944: 30,-51 + 6955: 16,-49 + 6956: 17,-49 + 6957: 18,-49 + 6958: 19,-49 + 6959: 20,-49 + 6960: 21,-49 + 6961: 22,-49 + 6962: 23,-49 + 6963: 24,-49 + 6964: 25,-49 + 6965: 26,-49 + 6966: 27,-49 + 6967: 28,-49 + 6968: 29,-49 + 6969: 30,-49 + 6970: 31,-49 + 6996: 31,-65 + 6997: 30,-65 + 6998: 29,-65 + 6999: 28,-65 + 7000: 27,-65 + 7001: 26,-65 + 7002: 25,-65 + 7003: 24,-65 + 7004: 23,-65 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 2761: 29,-5 + 2762: 28,-5 + 3900: 44,-19 + 3901: 45,-19 + 4130: -16,22 + 4250: -10,31 + 4251: -11,31 + 4252: -12,31 + 4253: -8,32 + 4572: -4,33 + 4580: -6,36 + 4581: -5,36 + 4582: -4,36 + 5514: 5,-20 + 6227: 3,-51 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + decals: + 6156: 2,-41 + 6157: 8,-41 + 6158: 7,-41 + 6159: 6,-41 + 6160: 5,-41 + 6161: 4,-41 + 6162: 3,-41 + 6163: 9,-41 + 6206: 4,-46 + 6207: 3,-46 + 6208: 2,-46 + 6209: 1,-46 + 6210: 0,-46 + 6211: -1,-46 + - node: + color: '#FF924493' + id: HalfTileOverlayGreyscale180 + decals: + 5341: 30,-19 + - node: + color: '#FFFFFFFF' + id: HalfTileOverlayGreyscale180 + decals: + 831: -28,-5 + 832: -27,-5 + 1475: -32,-30 + 1476: -28,-30 + 1477: -34,-27 + 1478: -35,-27 + 1479: -36,-27 + 1639: -26,-27 + 1640: -25,-27 + 1745: -21,-27 + 1746: -20,-27 + 1747: -19,-27 + 1748: -15,-27 + 1749: -14,-27 + 1750: -13,-27 + 1755: -9,-27 + 2071: -6,-27 + 2072: -7,-27 + 2073: -8,-27 + 2859: 34,1 + 2860: 33,1 + 2861: 32,1 + 2862: 31,1 + 2863: 30,1 + 5169: 16,-14 + 5174: 19,-15 + 5738: 39,-24 + 5739: 40,-24 + 5740: 41,-24 + 5747: 20,-24 + 5748: 21,-24 + 5749: 22,-24 + 5750: 23,-24 + 5751: 28,-24 + 5752: 29,-24 + 5753: 33,-24 + 5754: 34,-24 + 5755: 35,-24 + 5756: 16,-24 + 5757: 15,-24 + 5900: 27,-24 + - node: + color: '#222222E5' + id: HalfTileOverlayGreyscale270 + decals: + 254: -4,3 + 271: -4,-2 + 294: 9,-7 + 295: 9,-6 + 296: 10,-5 + 297: 11,-3 + 298: 11,-2 + 299: 11,3 + 300: 11,4 + 301: 10,6 + 302: 9,7 + 303: 9,8 + 3766: 36,-13 + 3775: 42,-7 + 3776: 42,-8 + 3777: 42,-9 + 3778: 42,-10 + 3811: 32,-6 + 3812: 32,-7 + 3813: 32,-8 + 3814: 32,-9 + 3815: 32,-10 + 3816: 32,-11 + 4842: 1,48 + 4982: 5,60 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale270 + decals: + 44: 1,5 + 45: 1,6 + 46: 1,7 + 47: 1,8 + 48: 1,9 + 49: 1,10 + 50: 1,11 + 51: 1,12 + 52: 1,13 + 4618: 1,14 + 4619: 1,15 + 4620: 1,16 + 4621: 1,17 + 4622: 1,18 + 4623: 1,19 + 4624: 1,20 + 4625: 1,21 + 4626: 1,22 + 4627: 1,23 + 4628: 1,24 + 4629: 1,25 + 4631: 1,27 + 4632: 1,28 + 4633: 1,29 + 4634: 1,30 + 4635: 1,31 + 4636: 1,32 + 4637: 1,33 + 4638: 1,34 + 4639: 1,35 + 4640: 1,36 + 4641: 1,37 + 4642: 1,38 + 4815: 1,45 + 4816: 1,44 + 4817: 1,43 + 4818: 1,42 + 4819: 1,41 + 4820: 1,40 + 4821: 1,39 + 4822: 1,47 + 4946: 1,51 + 4947: 1,50 + 4948: 1,49 + 4949: 1,48 + 4988: 5,60 + - node: + color: '#50BCB193' + id: HalfTileOverlayGreyscale270 + decals: + 3041: 29,9 + 3042: 29,10 + 3043: 29,11 + 3044: 29,12 + 3350: 29,13 + 3351: 29,15 + 3352: 29,16 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 80: 1,-4 + 81: 1,-5 + 82: 1,-6 + 83: 1,-7 + 84: 1,-8 + 85: 1,-9 + 86: 1,-10 + 87: 1,-11 + 88: 1,-12 + 588: 8,-14 + 2775: 22,-11 + 2776: 22,-10 + 5454: 27,-27 + 5455: 27,-28 + 5456: 27,-29 + 5457: 27,-30 + 5458: 27,-31 + 5824: 27,-26 + 5838: 27,-25 + 5940: 11,-36 + 5941: 14,-36 + 6063: 1,-13 + 6064: 1,-14 + 6065: 1,-15 + 6066: 1,-16 + 6067: 1,-17 + 6068: 1,-18 + 6069: 1,-19 + 6070: 1,-20 + 6071: 1,-21 + 6072: 1,-22 + 6073: 1,-23 + 6074: 1,-24 + 7223: 4,-35 + 7245: 39,-40 + 7248: 41,-38 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + decals: + 3114: 32,16 + 3115: 32,17 + 3116: 32,15 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + decals: + 888: -31,8 + 889: -31,7 + 890: -31,6 + 891: -31,5 + 1181: -38,-8 + 1182: -38,-9 + 1183: -38,-10 + 1184: -38,-11 + 1185: -38,-12 + 1186: -38,-13 + 1187: -38,-14 + 7397: -43,-19 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + decals: + 547: 9,14 + 1299: -39,-23 + 1321: -40,-26 + 2111: -44,-41 + 2112: -44,-40 + 2113: -44,-39 + 2359: -22,-39 + 2360: -21,-42 + 2362: -21,-48 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale270 + decals: + 1250: -32,14 + 1251: -32,15 + 1252: -32,16 + 1253: -32,17 + 2138: -44,-37 + 2139: -44,-36 + 2199: -36,-47 + 2200: -36,-48 + 2247: -32,-50 + 2248: -32,-51 + 2252: -32,-52 + 2624: -36,9 + 2625: -35,11 + 2626: -35,12 + 2635: -35,5 + 2636: -35,4 + 2637: -35,3 + 2638: -35,2 + 2639: -35,1 + 2640: -35,0 + 2641: -35,-1 + 2642: -35,-2 + 2643: -35,-3 + 2644: -35,-4 + 2645: -35,-5 + 2646: -35,-6 + 2647: -35,-7 + 2648: -35,-8 + 2649: -35,-9 + 2650: -35,-10 + 2651: -35,-11 + 2652: -35,-12 + 2653: -35,-13 + 2654: -35,-14 + 2682: -1,-12 + 2683: -1,-14 + 2684: -1,-15 + 2685: -1,-16 + 2686: -1,-17 + 2687: -1,-18 + 2688: -1,-19 + 2689: -1,-20 + 2694: -1,-26 + 2715: -1,13 + 2716: -1,15 + 2717: -1,16 + 2718: -1,17 + 3260: 12,20 + 3261: 12,23 + 3316: 23,25 + 3511: 28,3 + 3512: 28,4 + 3535: 16,6 + 3536: 16,7 + 3537: 16,8 + 3538: 16,9 + 3549: 28,9 + 3550: 28,10 + 3551: 28,11 + 3552: 28,12 + 3564: 28,16 + 3565: 28,17 + 3566: 28,18 + 3567: 28,20 + 3578: 28,22 + 3579: 28,23 + 3580: 28,24 + 3581: 28,25 + 3582: 28,26 + 3583: 28,27 + 3584: 28,28 + 3589: 28,34 + 3590: 28,35 + 3591: 28,36 + 3592: 28,37 + 3593: 28,38 + 3594: 28,39 + 3615: 42,30 + 3616: 42,31 + 3617: 42,32 + 3618: 42,33 + 3623: 42,40 + 3624: 42,41 + 3625: 42,42 + 3626: 42,43 + 3627: 42,44 + 3628: 42,45 + 3629: 42,46 + 3716: 33,-10 + 3717: 33,-9 + 3718: 33,-8 + 3719: 33,-7 + 3734: 35,-3 + 3735: 35,-4 + 3736: 35,-5 + 4055: -17,20 + 4056: -17,19 + 4138: -17,25 + 4139: -17,26 + 4215: -5,30 + 4286: -18,32 + 4287: -18,33 + 4288: -18,34 + 4289: -18,35 + 4318: -21,32 + 4319: -21,33 + 4320: -21,34 + 4321: -21,35 + 4390: -38,38 + 4397: -43,36 + 4398: -43,35 + 4399: -43,34 + 4400: -43,33 + 4401: -43,32 + 4402: -43,31 + 4452: -38,26 + 4453: -38,25 + 4454: -38,24 + 4455: -38,23 + 4456: -38,22 + 4525: -25,33 + 4526: -25,32 + 4527: -25,31 + 4547: -25,27 + 4701: -1,21 + 4702: -1,22 + 4703: -1,23 + 4704: -1,24 + 4705: -1,25 + 4706: -1,26 + 4707: -1,27 + 4708: -1,28 + 4709: -1,29 + 4710: -1,30 + 4711: -1,31 + 4712: -1,32 + 4713: -1,33 + 4714: -1,34 + 4715: -1,35 + 4718: -1,40 + 4719: -1,41 + 4825: -1,42 + 4826: -1,43 + 4827: -1,44 + 4828: -1,45 + 4829: -1,46 + 4830: -1,47 + 5352: 40,-18 + 5353: 40,-17 + 5354: 40,-16 + 6121: -1,-30 + 6122: -1,-31 + 6123: -1,-32 + 6124: -1,-33 + 6125: -1,-34 + 6126: -1,-35 + 6127: -1,-36 + 6128: -1,-37 + 6129: -1,-38 + 6130: -1,-38 + 6131: -1,-39 + 6132: -1,-40 + 6133: -1,-41 + 6134: -1,-42 + 6182: -3,-47 + 6183: -3,-46 + 6374: -8,-60 + 6394: -8,-57 + 6526: 28,19 + 6933: 30,-63 + 6947: 31,-53 + 6948: 31,-52 + 7006: 22,-64 + 7007: 22,-63 + 7008: 22,-62 + 7009: 22,-61 + 7010: 22,-60 + 7011: 22,-59 + 7012: 22,-58 + 7013: 22,-57 + 7014: 22,-56 + 7015: 22,-55 + 7180: 10,-47 + 7181: 10,-46 + 7182: 10,-45 + 7183: 10,-44 + 7184: 10,-43 + 7185: 10,-42 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 2765: 27,-4 + 3902: 43,-16 + 3903: 43,-17 + 3904: 43,-18 + 4237: -13,35 + 4238: -13,34 + 4239: -13,33 + 4240: -13,32 + 4577: -7,39 + 4578: -7,38 + 4579: -7,37 + 5003: -5,58 + 5004: -5,59 + 5005: -5,60 + 5006: -5,61 + 6228: 2,-50 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale270 + decals: + 6099: 1,-26 + 6100: 1,-27 + 6101: 1,-28 + 6102: 1,-29 + 6103: 1,-30 + 6104: 1,-31 + 6105: 1,-32 + 6106: 1,-33 + 6107: 1,-34 + 6139: 1,-35 + 6140: 1,-36 + 6141: 1,-37 + 6142: 1,-38 + 6143: 1,-39 + 6144: 1,-40 + 6170: 6,-43 + 6171: 6,-44 + 6203: 6,-45 + 6306: 2,-58 + - node: + color: '#FF924493' + id: HalfTileOverlayGreyscale270 + decals: + 5340: 31,-20 + - node: + color: '#FFFFFFFF' + id: HalfTileOverlayGreyscale270 + decals: + 1273: -33,-16 + 1482: -33,-34 + 1483: -33,-35 + 1488: -33,-29 + 1489: -33,-28 + 1587: -33,-36 + 1588: -33,-37 + 1589: -33,-38 + 1590: -33,-39 + 1591: -33,-40 + 1592: -33,-41 + 1593: -33,-42 + 1594: -33,-43 + 1595: -33,-44 + 1631: -25,-30 + 1632: -25,-31 + 1756: -10,-25 + 1757: -10,-24 + 1758: -10,-23 + 1759: -10,-22 + 2855: 35,-2 + 2856: 35,-1 + 2857: 35,0 + 2971: 26,10 + 2972: 26,11 + 5165: 14,-15 + 5166: 14,-16 + 5452: 32,-30 + 5453: 32,-31 + 5669: 27,-26 + 5705: 14,-32 + 5706: 14,-31 + 5707: 14,-30 + 5717: 23,-28 + 5718: 23,-27 + 5722: 26,-26 + 5759: 14,-23 + 5760: 14,-22 + 5761: 38,-23 + 5762: 38,-22 + 5763: 38,-21 + 5764: 38,-20 + 5765: 38,-19 + 5768: 38,-15 + 5820: 19,-23 + - node: + color: '#222222E5' + id: HalfTileOverlayGreyscale90 + decals: + 243: -10,3 + 244: -10,4 + 247: -8,7 + 248: -8,8 + 272: 5,-2 + 273: 5,3 + 279: -10,-2 + 280: -10,-3 + 281: -9,-5 + 282: -8,-6 + 283: -8,-7 + 455: -9,6 + 3767: 38,-13 + 3771: 33,-10 + 3772: 33,-9 + 3773: 33,-8 + 3774: 33,-7 + 3828: 43,-11 + 3829: 43,-10 + 3830: 43,-9 + 3831: 43,-8 + 3832: 43,-7 + 3833: 43,-6 + 4841: 0,48 + 4983: -4,60 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale90 + decals: + 4721: -12,47 + 4722: -6,44 + 4797: 0,39 + 4798: 0,40 + 4799: 0,41 + 4800: 0,42 + 4801: 0,43 + 4802: 0,44 + 4803: 0,45 + 4804: 0,46 + 4823: 0,47 + 4942: 0,51 + 4943: 0,50 + 4944: 0,49 + 4945: 0,48 + 4950: 1,50 + 4989: -4,60 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 590: 9,-16 + 2725: 21,-3 + 2812: 26,-12 + 5459: 26,-27 + 5460: 26,-28 + 5461: 26,-29 + 5462: 26,-30 + 5463: 26,-31 + 5825: 26,-26 + 5839: 26,-25 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + decals: + 3021: 29,9 + 3022: 29,10 + 3023: 29,11 + 3024: 29,12 + 3109: 29,13 + 3110: 29,15 + 3111: 29,16 + 3136: 37,17 + 3137: 37,16 + 3138: 37,15 + 3312: 18,25 + 4999: 6,58 + 5000: 6,59 + 5001: 6,60 + 5002: 6,61 + 5407: 35,-33 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + decals: + 894: -28,7 + 901: -28,5 + 902: -28,6 + 7400: -41,-21 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + decals: + 548: 10,14 + 549: 10,13 + 550: 10,12 + 1349: -46,-28 + 2114: -42,-41 + 2115: -42,-40 + 2116: -42,-39 + 2366: -20,-50 + 2424: -20,-53 + 2442: -28,-53 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale90 + decals: + 1246: -36,14 + 1247: -36,15 + 1248: -36,16 + 1249: -36,17 + 2140: -46,-37 + 2141: -46,-36 + 2201: -38,-48 + 2202: -38,-47 + 2249: -33,-52 + 2250: -33,-51 + 2251: -33,-50 + 2621: -33,3 + 2622: -33,4 + 2623: -33,8 + 2655: -33,-7 + 2656: -33,-6 + 2657: -33,-5 + 2658: -33,-4 + 2659: -33,-3 + 2660: -33,-2 + 2696: 2,-23 + 2697: 2,-22 + 2698: 2,-21 + 2699: 2,-20 + 2700: 2,-19 + 2701: 2,-18 + 2702: 2,-17 + 2703: 2,-16 + 2704: 2,-15 + 2705: 2,-14 + 2706: 2,-12 + 2720: 2,15 + 2721: 2,16 + 2722: 2,13 + 3513: 30,4 + 3514: 30,3 + 3522: 36,1 + 3523: 36,0 + 3524: 36,-1 + 3544: 20,9 + 3553: 30,12 + 3554: 30,11 + 3555: 30,10 + 3556: 30,9 + 3559: 30,13 + 3560: 30,14 + 3568: 30,20 + 3574: 30,18 + 3577: 30,25 + 3599: 30,33 + 3600: 30,32 + 3601: 30,31 + 3630: 44,46 + 3631: 44,45 + 3632: 44,44 + 3633: 44,43 + 3634: 44,42 + 3635: 44,41 + 3638: 44,37 + 3639: 44,36 + 3640: 44,35 + 3641: 44,34 + 3644: 44,30 + 3645: 44,29 + 3646: 44,28 + 3647: 44,27 + 3720: 42,-10 + 3721: 42,-9 + 3722: 42,-8 + 3723: 42,-7 + 3737: 34,-3 + 3738: 34,-4 + 3739: 34,-5 + 4024: 2,20 + 4140: -15,25 + 4141: -15,26 + 4172: -24,24 + 4212: -3,28 + 4213: -3,29 + 4214: -3,30 + 4281: -15,35 + 4282: -15,34 + 4283: -15,33 + 4284: -15,32 + 4381: -37,32 + 4382: -37,33 + 4383: -37,34 + 4384: -37,35 + 4385: -37,36 + 4386: -37,37 + 4387: -37,38 + 4438: -36,26 + 4439: -36,25 + 4440: -36,24 + 4441: -36,23 + 4442: -36,22 + 4443: -36,21 + 4444: -36,20 + 4459: -39,22 + 4528: -23,36 + 4529: -23,35 + 4530: -23,34 + 4531: -23,33 + 4532: -23,32 + 4533: -23,31 + 4534: -23,30 + 4682: 2,21 + 4683: 2,22 + 4684: 2,23 + 4685: 2,29 + 4686: 2,30 + 4687: 2,31 + 4688: 2,32 + 4689: 2,33 + 4690: 2,34 + 4691: 2,35 + 4692: 2,36 + 4693: 2,37 + 4694: 2,38 + 4695: 2,39 + 4696: 2,40 + 4697: 2,41 + 4698: 2,42 + 4699: 2,43 + 4700: 2,44 + 5355: 41,-16 + 5356: 41,-17 + 5357: 41,-18 + 6109: 2,-28 + 6110: 2,-29 + 6111: 2,-30 + 6112: 2,-31 + 6113: 2,-32 + 6114: 2,-33 + 6115: 2,-34 + 6116: 2,-35 + 6117: 2,-36 + 6118: 2,-37 + 6119: 2,-38 + 6120: 2,-39 + 6383: 0,-58 + 6384: 0,-57 + 6503: 2,28 + 6505: 2,24 + 6525: 30,19 + 6940: 24,-63 + 6949: 28,-52 + 6950: 28,-53 + 6982: 32,-51 + 6983: 32,-52 + 6984: 32,-53 + 6985: 32,-54 + 6986: 32,-64 + 6987: 32,-63 + 6988: 32,-62 + 6989: 32,-61 + 6990: 32,-60 + 6991: 32,-59 + 6992: 32,-58 + 6993: 32,-57 + 6994: 32,-56 + 7210: 32,-43 + 7211: 32,-44 + 7212: 32,-45 + 7213: 32,-48 + 7214: 32,-47 + 7215: 32,-46 + - node: + color: '#D4D4D496' + id: HalfTileOverlayGreyscale90 + decals: + 2723: 19,-5 + 2724: 24,-3 + 2814: 25,-15 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + decals: + 53: 0,5 + 54: 0,6 + 55: 0,7 + 56: 0,8 + 57: 0,10 + 58: 0,9 + 59: 0,11 + 60: 0,12 + 61: 0,13 + 903: -22,4 + 909: -20,11 + 2766: 30,-4 + 3905: 44,-16 + 3906: 46,-18 + 4017: 0,18 + 4018: 0,17 + 4019: 0,16 + 4020: 0,15 + 4021: 0,14 + 4583: -3,37 + 4584: -3,38 + 4585: -3,39 + 4601: 0,36 + 4602: 0,35 + 4603: 0,34 + 4604: 0,33 + 4605: 0,32 + 4606: 0,31 + 4607: 0,30 + 4608: 0,29 + 4609: 0,28 + 4610: 0,27 + 4611: 0,26 + 4612: 0,25 + 4613: 0,24 + 4614: 0,23 + 4615: 0,22 + 4616: 0,21 + 4617: 0,20 + 6230: 4,-50 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + decals: + 89: 0,-4 + 90: 0,-5 + 91: 0,-6 + 92: 0,-7 + 93: 0,-8 + 94: 0,-9 + 95: 0,-10 + 96: 0,-11 + 97: 0,-12 + 6077: 0,-14 + 6078: 0,-15 + 6079: 0,-16 + 6080: 0,-17 + 6081: 0,-13 + 6082: 0,-18 + 6083: 0,-19 + 6084: 0,-20 + 6085: 0,-21 + 6086: 0,-22 + 6087: 0,-23 + 6088: 0,-24 + 6089: 0,-25 + 6090: 0,-26 + 6091: 0,-27 + 6092: 0,-28 + 6093: 0,-29 + 6094: 0,-30 + 6095: 0,-31 + 6096: 0,-32 + 6097: 0,-33 + 6098: 0,-34 + 6146: 0,-35 + 6147: 0,-36 + 6148: 0,-37 + 6149: 0,-38 + 6150: 0,-39 + 6151: 0,-40 + 6152: 0,-41 + 6172: 5,-43 + 6173: 5,-44 + 6202: 5,-45 + 6213: -2,-47 + 6307: 4,-54 + 6308: 4,-55 + 6309: 4,-56 + 6310: 4,-57 + 6311: 4,-58 + 6312: 4,-59 + 6313: 4,-60 + 6314: 4,-61 + - node: + color: '#FFFFFFFF' + id: HalfTileOverlayGreyscale90 + decals: + 1274: -35,-16 + 1275: -35,-17 + 1276: -35,-18 + 1480: -35,-34 + 1481: -35,-35 + 1490: -35,-33 + 1507: -31,-27 + 1508: -31,-28 + 1581: -35,-36 + 1582: -35,-37 + 1583: -35,-38 + 1584: -35,-39 + 1585: -35,-40 + 1586: -35,-41 + 1629: -27,-29 + 1630: -27,-28 + 1760: -12,-22 + 1761: -12,-23 + 1762: -12,-24 + 1763: -12,-25 + 2853: 34,-1 + 2854: 34,-2 + 2966: 22,11 + 2967: 22,10 + 5449: 30,-31 + 5450: 30,-30 + 5451: 30,-29 + 5670: 26,-26 + 5695: 12,-20 + 5696: 12,-21 + 5697: 12,-22 + 5698: 12,-23 + 5701: 12,-27 + 5702: 12,-28 + 5703: 12,-29 + 5704: 12,-30 + 5723: 27,-26 + 5769: 36,-15 + 5770: 36,-16 + 5771: 36,-17 + 5772: 36,-18 + 5773: 36,-19 + 5774: 36,-20 + 5775: 36,-21 + 5776: 36,-22 + 5777: 36,-23 + 5821: 17,-23 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 1073: -44,6 + 1074: -44,7 + 1177: -43,0 + 2677: -35,11 + 2678: -35,12 + 3147: 32,15 + 3573: 28,16 + 4343: -10,43 + 4833: 3,46 + 5599: 8,-28 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 968: -26,10 + 4152: -8,26 + 7078: 16,-40 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 1175: -43,-2 + 1176: -38,-1 + 1654: -22,-20 + 3146: 33,20 + 4832: 3,50 + 5598: 6,-22 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 1436: -36,-33 + 4298: -17,36 + 4342: -10,39 + 4560: -28,28 + 7026: 19,-49 + 7027: 18,-49 + 7028: 17,-49 + 7029: 16,-49 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingAreaGreyscale + decals: + 7030: 21,-52 + 7031: 21,-51 + - node: + color: '#222222E5' + id: QuarterTileOverlayGreyscale + decals: + 251: -3,4 + 252: -4,2 + 253: -1,5 + 277: 11,2 + 308: 5,-10 + 309: -1,-10 + 312: 11,-4 + 3796: 42,-11 + 3805: 40,-7 + 4840: 0,48 + 4862: 2,49 + 4984: 4,59 + - node: + color: '#222222E6' + id: QuarterTileOverlayGreyscale + decals: + 26: 4,-2 + 27: 3,-3 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale + decals: + 4977: 1,58 + 4987: 4,59 + - node: + color: '#50BCB193' + id: QuarterTileOverlayGreyscale + decals: + 3389: 40,27 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 5465: 27,-32 + 5875: 26,-25 + 5943: 12,-37 + 5972: 23,-36 + 7242: 40,-39 + 7243: 46,-37 + 7244: 45,-38 + 7303: 6,-14 + - node: + color: '#6C6C6C93' + id: QuarterTileOverlayGreyscale + decals: + 2977: 23,9 + 2978: 24,9 + 2979: 25,9 + 2980: 26,9 + 2981: 26,10 + 2982: 26,11 + - node: + color: '#818181FF' + id: QuarterTileOverlayGreyscale + decals: + 1058: -42,9 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 7393: -47,-23 + 7404: -48,-18 + 7405: -49,-24 + 7406: -48,-24 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + decals: + 544: 9,13 + 1296: -37,-25 + 1300: -38,-23 + 1376: -39,-29 + 1385: -40,-32 + 2363: -20,-46 + 2364: -20,-48 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale + decals: + 468: -17,2 + 2204: -36,-49 + 2243: -32,-53 + 2259: -34,-53 + 2627: -35,10 + 2629: -36,8 + 2690: -1,-21 + 2691: -1,-27 + 3496: 28,2 + 3548: 28,8 + 3563: 28,15 + 3588: 28,33 + 3614: 42,29 + 3621: 42,36 + 3622: 42,39 + 4025: -1,20 + 4216: -5,29 + 4225: -14,29 + 4226: -17,29 + 4391: -38,37 + 4457: -38,21 + 4522: -25,30 + 4523: -25,36 + 4717: -1,39 + 6942: 30,-64 + 6951: 31,-54 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 3919: -17,16 + 3922: -23,14 + 3956: -30,21 + 3958: -26,18 + - node: + color: '#FFFFFFFF' + id: QuarterTileOverlayGreyscale + decals: + 1473: -28,-33 + 1635: -25,-32 + 2973: 26,9 + 5167: 14,-17 + 5175: 20,-16 + - node: + color: '#222222E5' + id: QuarterTileOverlayGreyscale180 + decals: + 246: -10,5 + 249: -4,11 + 263: 2,-4 + 264: 5,-1 + 265: 4,-3 + 275: -10,-1 + 278: 2,11 + 3795: 33,-6 + 3799: 35,-10 + 3822: 38,-12 + - node: + color: '#222222E6' + id: QuarterTileOverlayGreyscale180 + decals: + 22: -3,3 + 23: -2,4 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale180 + decals: + 4720: -12,45 + 4974: 3,61 + 4979: 0,60 + 4980: 2,60 + - node: + color: '#50BCB193' + id: QuarterTileOverlayGreyscale180 + decals: + 3373: 31,29 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 2726: 23,-7 + 2756: 18,-7 + 2810: 24,-15 + 5971: 23,-35 + 5973: 23,-36 + 6028: 36,-39 + 7240: 47,-41 + 7241: 40,-39 + 7302: 6,-14 + - node: + color: '#6C6C6C93' + id: QuarterTileOverlayGreyscale180 + decals: + 2975: 22,11 + 2976: 22,10 + - node: + color: '#818181FF' + id: QuarterTileOverlayGreyscale180 + decals: + 1057: -39,7 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale180 + decals: + 553: 12,12 + 3012: 28,8 + 3217: 43,21 + 3259: 12,20 + 3313: 19,25 + 3314: 23,25 + 5406: 36,-29 + 5896: 27,-25 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 7391: -49,-16 + 7392: -47,-23 + 7401: -43,-16 + 7407: -49,-23 + 7409: -45,-23 + 7410: -45,-20 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + decals: + 1350: -46,-27 + 2440: -30,-52 + 2441: -27,-53 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + decals: + 469: -15,-1 + 556: 9,-10 + 557: 9,-10 + 2142: -46,-35 + 2205: -38,-46 + 2245: -33,-49 + 2257: -35,-52 + 2630: -33,5 + 2632: -33,9 + 2661: -33,-1 + 2662: -33,-1 + 2665: -29,-1 + 2669: -20,-1 + 2719: 2,17 + 3509: 30,5 + 3525: 31,6 + 3561: 30,15 + 3575: 30,22 + 3597: 30,37 + 3598: 30,34 + 3637: 44,38 + 3643: 44,31 + 3650: 40,27 + 3652: 39,26 + 3660: 30,26 + 4199: -15,27 + 4446: -37,19 + 4477: -36,28 + 4546: -23,27 + 4824: 2,45 + 6108: 2,-27 + 6506: 2,25 + 6932: 24,-62 + 6953: 28,-51 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale180 + decals: + 592: 8,-13 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + decals: + 4249: -9,32 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 + decals: + 2525: -17,-53 + 6212: -2,-46 + 6260: 0,-53 + - node: + color: '#FF924493' + id: QuarterTileOverlayGreyscale180 + decals: + 5312: 32,-22 + 5313: 33,-22 + - node: + color: '#FFFFFFFF' + id: QuarterTileOverlayGreyscale180 + decals: + 1636: -27,-27 + 5178: 18,-15 + 5693: 12,-19 + - node: + color: '#222222E5' + id: QuarterTileOverlayGreyscale270 + decals: + 250: -1,11 + 261: -1,-4 + 262: -4,-1 + 266: -3,-3 + 276: 11,-1 + 306: 11,5 + 313: 5,11 + 3797: 42,-6 + 3800: 40,-10 + 3821: 36,-12 + - node: + color: '#222222E6' + id: QuarterTileOverlayGreyscale270 + decals: + 24: 3,4 + 25: 4,3 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale270 + decals: + 4975: -2,61 + 4978: 1,60 + 4981: -1,60 + - node: + color: '#50BCB193' + id: QuarterTileOverlayGreyscale270 + decals: + 3390: 40,29 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 589: 8,-13 + 2774: 22,-12 + 2811: 25,-15 + 5976: 26,-35 + - node: + color: '#818181FF' + id: QuarterTileOverlayGreyscale270 + decals: + 1060: -42,7 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale270 + decals: + 3020: 30,8 + 5895: 26,-25 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 7408: -45,-24 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + decals: + 2358: -27,-45 + 2463: -27,-56 + 2464: -24,-56 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + decals: + 470: -17,-1 + 2143: -44,-35 + 2203: -36,-46 + 2246: -32,-49 + 2258: -34,-52 + 2664: -31,-1 + 2668: -22,-1 + 2681: -35,6 + 2692: -1,-29 + 2693: -1,-25 + 3510: 28,5 + 3558: 28,13 + 3585: 28,29 + 3619: 42,34 + 3620: 42,37 + 3648: 42,27 + 3653: 37,26 + 4022: -1,18 + 4198: -17,27 + 4478: -38,28 + 4524: -25,34 + 4548: -25,28 + 4716: -1,36 + 6941: 30,-62 + 6952: 31,-51 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale270 + decals: + 5404: 35,-33 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 513: 5,13 + 514: 5,14 + 515: 5,15 + 516: 5,16 + 517: 5,17 + 518: 5,18 + 519: 4,18 + 528: 9,18 + 529: 9,17 + 530: 10,17 + 2559: -7,-53 + - node: + color: '#FF924493' + id: QuarterTileOverlayGreyscale270 + decals: + 5314: 30,-22 + 5317: 29,-22 + 5318: 28,-22 + 5319: 28,-21 + 5320: 28,-20 + 5321: 28,-19 + 5322: 28,-18 + 5323: 28,-17 + 5324: 28,-16 + 5343: 31,-19 + 5345: 32,-18 + 5347: 33,-17 + - node: + color: '#FFFFFFFF' + id: QuarterTileOverlayGreyscale270 + decals: + 1474: -33,-27 + 2858: 35,1 + 5168: 14,-14 + 5177: 20,-15 + 5694: 14,-19 + - node: + color: '#222222E5' + id: QuarterTileOverlayGreyscale90 + decals: + 245: -10,2 + 267: 4,4 + 268: 5,2 + 274: 2,5 + 307: 2,-10 + 310: -4,-10 + 311: -10,-4 + 3798: 33,-11 + 3806: 35,-7 + 4839: 1,48 + 4861: -1,49 + 4985: -3,59 + - node: + color: '#222222E6' + id: QuarterTileOverlayGreyscale90 + decals: + 20: -2,-3 + 21: -3,-2 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 4976: 0,58 + 4986: -3,59 + - node: + color: '#50BCB193' + id: QuarterTileOverlayGreyscale90 + decals: + 3372: 31,27 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 554: 9,-10 + 5464: 26,-32 + 5876: 27,-25 + 5977: 26,-35 + 6030: 35,-38 + 7222: 6,-37 + 7249: 41,-41 + 7299: 6,-13 + - node: + color: '#818181FF' + id: QuarterTileOverlayGreyscale90 + decals: + 1059: -39,9 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 7411: -41,-24 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + decals: + 1295: -39,-24 + 1382: -40,-34 + 2365: -21,-49 + 2422: -21,-51 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale90 + decals: + 467: -15,2 + 2206: -38,-49 + 2244: -33,-53 + 2256: -35,-53 + 2631: -33,7 + 2633: -33,2 + 2695: 2,-24 + 3515: 30,2 + 3545: 20,8 + 3557: 30,8 + 3562: 30,17 + 3576: 30,24 + 3595: 30,39 + 3596: 30,36 + 3602: 30,30 + 3613: 40,29 + 3636: 44,40 + 3642: 44,33 + 4023: 2,19 + 4054: -15,20 + 4223: -12,29 + 4224: -15,29 + 4458: -39,21 + 4535: -23,29 + 4831: 2,47 + 6184: 7,-46 + 6185: 8,-47 + 6504: 2,27 + 6939: 24,-64 + 6954: 28,-54 + 7208: 30,-42 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 905: -20,6 + 3899: 44,-17 + 3916: -19,14 + 3953: -28,25 + 3954: -27,20 + 4248: -9,34 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 520: 7,15 + 521: 7,16 + 522: 7,17 + 523: 7,18 + 524: 6,18 + 525: 6,19 + 526: 5,19 + 2579: -5,-45 + 6153: 0,-42 + 6237: 6,-48 + - node: + color: '#FF924493' + id: QuarterTileOverlayGreyscale90 + decals: + 5325: 28,-16 + 5326: 29,-16 + 5327: 30,-16 + 5328: 31,-16 + 5329: 32,-16 + 5330: 33,-16 + 5331: 34,-16 + 5332: 34,-17 + 5333: 34,-18 + 5334: 34,-19 + 5335: 34,-20 + 5336: 34,-21 + 5338: 30,-21 + 5342: 29,-20 + 5344: 31,-19 + 5346: 32,-18 + - node: + color: '#FFFFFFFF' + id: QuarterTileOverlayGreyscale90 + decals: + 2974: 22,9 + 5176: 18,-16 + - node: + color: '#FFFFFFFF' + id: Remains + decals: + 1955: -8,-43 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 3349: 30,16 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 535: 4,18 + 536: 8,18 + 537: 5,13 + 3866: 41,-13 + 3887: 46,-13 + 3888: 46,-7 + 3889: 46,-5 + 3914: 46,-15 + 6537: 11,-66 + 6538: 12,-66 + 6539: 13,-66 + 6576: 4,-70 + 6709: -4,-70 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 3441: 46,32 + 3442: 46,39 + 3867: 44,-12 + 3868: 44,-5 + - node: + color: '#222222E5' + id: ThreeQuarterTileOverlayGreyscale + decals: + 3809: 39,-7 + 3810: 38,-7 + 3843: 32,-5 + 4860: 2,50 + - node: + color: '#222222E6' + id: ThreeQuarterTileOverlayGreyscale + decals: + 13: 2,-3 + 19: 4,-1 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 5524: 8,-19 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale + decals: + 3019: 30,6 + 3257: 12,17 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale + decals: + 7402: -47,-18 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 542: 9,15 + 543: 7,13 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale + decals: + 2628: -36,10 + 3539: 16,10 + 3547: 27,8 + 3725: 33,-6 + 4278: -18,36 + 4315: -21,36 + 4388: -38,39 + 4396: -43,37 + 5349: 40,-15 + 6393: -8,-56 + 7186: 10,-41 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale + decals: + 907: -22,8 + 2758: 27,-3 + 3897: 43,-15 + 3923: -23,16 + 3955: -28,19 + 4127: -17,23 + 4564: -5,34 + 4587: -7,40 + 5511: 4,-19 + 6226: 2,-49 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale + decals: + 4933: 3,61 + 6169: 6,-42 + 6214: -1,-47 + 6259: -4,-51 + - node: + color: '#FFFFFFFF' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1470: -28,-32 + 1471: -33,-33 + 1638: -25,-29 + 1741: -21,-29 + 2074: -7,-29 + 5708: 14,-29 + 5719: 23,-26 + 5734: 41,-26 + 5766: 38,-18 + - node: + color: '#222222E5' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 3801: 36,-10 + 3802: 37,-10 + 3827: 43,-12 + - node: + color: '#222222E6' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 17: -3,2 + 18: -1,4 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 4723: -4,43 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 2809: 22,-15 + 5526: 10,-20 + 6027: 36,-40 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 3134: 37,14 + 3315: 21,25 + 5405: 36,-28 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 896: -28,4 + 7390: -42,-17 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 540: 10,11 + 2110: -42,-42 + 2357: -29,-45 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 3508: 31,5 + 3651: 40,26 + 3715: 42,-11 + 4171: -24,23 + 4211: -3,27 + 4276: -15,31 + 4445: -36,19 + 5350: 41,-19 + 6980: 32,-49 + 6995: 32,-65 + - node: + color: '#D4D4D496' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 591: 7,-16 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 906: -20,7 + 2760: 30,-5 + 3896: 46,-19 + 3918: -17,14 + 3957: -25,20 + 4128: -15,22 + 4242: -9,31 + 4243: -7,32 + 4563: -3,33 + 4588: -3,36 + 5512: 6,-20 + 6224: 4,-51 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 2526: -16,-54 + 2527: -13,-53 + 2560: -7,-54 + 6205: 5,-46 + 6257: -3,-54 + - node: + color: '#FFFFFFFF' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1468: -31,-30 + 1596: -35,-42 + 1637: -27,-30 + 1742: -24,-27 + 1753: -12,-27 + 1754: -18,-27 + 2077: -4,-27 + 5699: 12,-24 + 5736: 36,-24 + 5744: 17,-24 + 5745: 24,-24 + 5746: 30,-24 + - node: + color: '#222222E5' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 3803: 39,-10 + 3804: 38,-10 + 3817: 32,-12 + - node: + color: '#222222E6' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 15: 4,2 + 16: 2,4 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 5527: 8,-20 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 3117: 32,14 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 895: -31,4 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 538: 8,11 + 539: 7,12 + 2109: -44,-42 + 2355: -25,-45 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 3507: 27,5 + 3714: 33,-11 + 4057: -17,18 + 4275: -18,31 + 4314: -21,31 + 5351: 40,-19 + 6135: -1,-43 + 6375: -8,-61 + 7005: 22,-65 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 908: -24,12 + 2757: 27,-5 + 3898: 43,-19 + 3915: -20,14 + 3959: -25,16 + 4129: -17,22 + 4241: -13,31 + 4562: -5,33 + 4586: -7,36 + 5513: 4,-20 + 6223: 2,-51 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 2557: -6,-51 + 6145: 1,-41 + 6204: 6,-46 + 6222: 7,-47 + 6258: -1,-53 + - node: + color: '#FFFFFFFF' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 1272: -33,-17 + 1469: -29,-30 + 1472: -33,-30 + 1509: -29,-27 + 1743: -22,-27 + 1751: -16,-27 + 1752: -10,-27 + 5737: 38,-24 + 5741: 32,-24 + 5742: 26,-24 + 5743: 19,-24 + 5758: 14,-24 + 5767: 38,-16 + - node: + color: '#222222E5' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 3807: 36,-7 + 3808: 37,-7 + 3834: 43,-5 + 4859: -1,50 + - node: + color: '#222222E6' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 12: -3,-1 + 14: -1,-3 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 2773: 22,-13 + 5525: 10,-19 + 6029: 32,-37 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 552: 12,15 + 2988: 28,6 + 3135: 37,18 + 3216: 42,23 + 3258: 12,22 + 3311: 18,27 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 7394: -49,-21 + 7395: -49,-22 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 541: 10,15 + 2368: -20,-49 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 3521: 36,2 + 3543: 20,10 + 3546: 21,8 + 3612: 40,30 + 3724: 42,-6 + 4170: -24,25 + 4277: -15,36 + 4389: -37,39 + 5348: 41,-15 + 6385: 0,-56 + 6981: 32,-50 + 7206: 30,-41 + 7207: 32,-42 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 2759: 30,-3 + 3894: 44,-15 + 3895: 46,-17 + 3995: -33,20 + 4126: -15,23 + 4244: -7,34 + 4246: -9,35 + 4565: -3,34 + 4589: -3,40 + 5510: 6,-19 + 6225: 4,-49 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 4932: -2,61 + 6168: 5,-42 + - node: + color: '#FFFFFFFF' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1740: -23,-29 + 2068: -9,-29 + 2852: 34,0 + 5700: 12,-26 + 5735: 39,-26 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 1084: -37,8 + 1085: -37,9 + 1086: -37,10 + 1139: -37,-2 + 1424: -33,-26 + 1425: -34,-26 + 1426: -35,-26 + 4142: -14,26 + 4143: -11,26 + 4144: -5,26 + 4877: 1,53 + 4878: 0,53 + 5203: 18,-19 + 5204: 17,-19 + 5398: 47,-32 + 5624: 20,-26 + 5899: 23,-29 + 5904: 11,-31 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnBox + decals: + 2131: -45,-44 + 2133: -48,-35 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 506: 4,17 + 855: -29,-7 + 1261: -33,16 + 1428: -34,-28 + 1437: -36,-33 + 1659: -21,-21 + 2187: -36,-46 + 2232: -34,-52 + 2236: -32,-49 + 2342: -80,-51 + 2343: -79,-52 + 3161: 35,17 + 3169: 36,13 + 3193: 40,17 + 3438: 44,26 + 4356: -28,32 + 4413: -40,30 + 4663: 5,39 + 4666: 8,39 + 4667: 8,42 + 4668: 5,42 + 5603: 9,-28 + 6197: 0,-48 + 6331: 2,-59 + 6367: -1,-57 + 6644: 8,-69 + 6651: -5,-69 + 6666: -1,-73 + 6674: -1,-74 + 6701: 7,-74 + 6894: 27,-51 + 7073: 36,-47 + 7120: 31,-43 + 7121: 29,-42 + 7134: 14,-43 + 7326: 30,-55 + 7519: -1,-57 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 1191: -45,-10 + 1260: -35,16 + 1427: -35,-28 + 1660: -25,-21 + 2231: -35,-52 + 2237: -33,-49 + 2340: -82,-51 + 2341: -83,-52 + 3160: 34,17 + 3164: 38,17 + 3168: 32,13 + 3437: 42,26 + 4664: 7,39 + 4665: 4,39 + 4669: 4,42 + 4670: 7,42 + 5378: 46,-31 + 5604: 5,-28 + 6196: -3,-48 + 6368: -7,-57 + 6371: 0,-59 + 6429: -16,-58 + 6641: 5,-69 + 6650: -8,-69 + 6667: 1,-73 + 6675: 1,-74 + 6681: -7,-74 + 6893: 20,-51 + 6911: 24,-55 + 7142: 12,-43 + 7154: 11,-42 + 7518: -7,-57 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 1094: -44,8 + 1200: -39,-13 + 1259: -33,14 + 1429: -34,-30 + 1658: -21,-25 + 2193: -36,-49 + 2238: -32,-53 + 2253: -34,-53 + 2254: -34,-53 + 2338: -80,-55 + 2339: -79,-54 + 3159: 35,15 + 3173: 32,18 + 3178: 36,19 + 4654: 6,35 + 4662: 5,38 + 4673: 8,41 + 4674: 5,41 + 5049: 5,72 + 5606: 9,-22 + 6190: 4,-45 + 6195: 0,-49 + 6323: 2,-57 + 6330: 2,-61 + 6366: -1,-60 + 6643: 8,-71 + 6652: -5,-71 + 6697: 6,-77 + 6700: 7,-75 + 6908: 27,-54 + 7090: 29,-40 + 7091: 21,-40 + 7115: 31,-48 + 7145: 14,-47 + 7335: 30,-61 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 511: 7,19 + 899: -30,8 + 1258: -35,14 + 1430: -35,-30 + 1657: -25,-25 + 1811: -21,-32 + 2239: -33,-53 + 2255: -35,-53 + 2336: -82,-55 + 2337: -83,-54 + 3158: 34,15 + 3165: 38,14 + 3176: 34,19 + 3180: 38,19 + 4367: -28,36 + 4661: 7,38 + 4671: 4,41 + 4672: 7,41 + 5048: -3,72 + 5377: 46,-33 + 5605: 5,-22 + 6188: -2,-45 + 6189: 2,-45 + 6194: -3,-49 + 6365: -7,-60 + 6412: -16,-59 + 6431: -16,-56 + 6642: 5,-71 + 6653: -8,-71 + 6682: -7,-75 + 6685: -6,-77 + 6892: 20,-52 + 6904: 22,-54 + 6916: 24,-61 + 7079: 17,-40 + 7133: 12,-47 + 7155: 11,-48 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 854: -31,-7 + 1245: -33,-15 + 1289: -32,-21 + 1420: -36,-27 + 1546: -33,-42 + 1858: -7,-25 + 2347: -79,-53 + 2348: -80,-52 + 6424: -12,-58 + 6661: -5,-73 + 7032: 32,-53 + 7123: 29,-43 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 1152: -40,3 + 1197: -42,-9 + 1419: -29,-21 + 1865: -1,-25 + 2349: -82,-52 + 6369: -7,-58 + 6427: -14,-58 + 6640: 5,-70 + 6671: 5,-73 + 7524: -7,-58 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 1090: -44,12 + 1244: -33,-11 + 1545: -33,-37 + 1857: -7,-21 + 2159: -42,-35 + 2345: -80,-54 + 2346: -79,-53 + 4659: 4,38 + 6329: 2,-53 + 6420: -10,-59 + 6619: -5,-65 + 6699: 6,-75 + 7216: 32,-48 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 1174: -40,-5 + 1866: -1,-21 + 2128: -43,-43 + 2344: -82,-54 + 4660: 8,38 + 6370: -7,-59 + 6416: -12,-59 + 6629: 5,-65 + 6639: 5,-70 + 6683: -6,-75 + 6902: 22,-52 + 7523: -7,-59 + - node: + color: '#FFFFFFFF' + id: WarnEndE + decals: + 1656: -23,-19 + 2335: -77,-53 + 5906: 6,-29 + 6853: 22,-50 + 7531: -2,-70 + - node: + color: '#FFFFFFFF' + id: WarnEndN + decals: + 1136: -37,-3 + 1140: -37,3 + 5120: -5,77 + - node: + color: '#FFFFFFFF' + id: WarnEndS + decals: + 1135: -37,-5 + 1141: -37,-1 + 2087: -3,-27 + 4657: 4,37 + 4658: 8,37 + 5121: -5,76 + - node: + color: '#FFFFFFFF' + id: WarnEndW + decals: + 1439: -29,-28 + 1655: -24,-19 + 2270: -44,-53 + 5905: 5,-29 + 6854: 20,-50 + - node: + color: '#FFFFFFFF' + id: WarnFull + decals: + 1019: -32,11 + 1020: -32,12 + 1206: -39,-7 + 1279: -32,-14 + 1280: -32,-13 + 1281: -31,-20 + 1282: -30,-20 + 1375: -50,-27 + 1551: -32,-40 + 1552: -32,-39 + 1553: -32,-38 + 1859: -2,-23 + 1860: -2,-22 + 1861: -2,-24 + 2160: -41,-37 + 2161: -41,-36 + 7033: 33,-49 + 7034: 33,-50 + 7035: 33,-51 + 7036: 33,-52 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 32: -3,-1 + 33: -3,0 + 34: -3,1 + 35: -3,2 + 507: 4,16 + 508: 4,15 + 509: 4,14 + 510: 4,13 + 850: -31,-6 + 851: -31,-5 + 852: -31,-4 + 853: -31,-3 + 1021: -33,10 + 1022: -33,11 + 1023: -33,12 + 1091: -44,11 + 1092: -44,10 + 1093: -44,9 + 1137: -37,-4 + 1145: -37,2 + 1146: -37,1 + 1147: -37,0 + 1201: -39,-12 + 1202: -39,-11 + 1203: -39,-10 + 1204: -39,-9 + 1205: -39,-8 + 1241: -33,-14 + 1242: -33,-13 + 1243: -33,-12 + 1263: -33,15 + 1269: -35,15 + 1431: -34,-29 + 1438: -36,-34 + 1547: -33,-41 + 1548: -33,-40 + 1549: -33,-39 + 1550: -33,-38 + 1661: -21,-22 + 1662: -21,-23 + 1663: -21,-24 + 1813: -23,-34 + 1814: -23,-32 + 1815: -23,-33 + 1816: -23,-31 + 1817: -21,-34 + 1818: -21,-33 + 1820: -20,-33 + 1850: -7,-24 + 1851: -7,-23 + 1852: -7,-22 + 2153: -43,-30 + 2154: -43,-31 + 2157: -42,-37 + 2158: -42,-36 + 2188: -36,-47 + 2194: -36,-48 + 2240: -32,-52 + 2241: -32,-51 + 2242: -32,-50 + 2276: -27,-49 + 2277: -27,-48 + 2278: -27,-47 + 3162: 35,16 + 3174: 32,19 + 3175: 32,20 + 3181: 30,16 + 3439: 46,32 + 3444: 46,39 + 3569: 30,15 + 3570: 30,14 + 3571: 30,17 + 3572: 30,13 + 4311: -13,38 + 4312: -13,39 + 4313: -13,40 + 4414: -40,29 + 4415: -40,28 + 4675: 8,38 + 4784: 13,46 + 4785: 13,47 + 4786: 11,46 + 4787: 11,47 + 5087: 6,80 + 5088: 6,79 + 5089: 6,78 + 5090: 6,77 + 5091: 6,76 + 5092: 6,75 + 5093: 6,74 + 5129: -5,74 + 5130: -5,75 + 5131: -5,78 + 5132: -5,79 + 5133: -5,80 + 5134: -8,79 + 5179: 14,-17 + 5180: 14,-16 + 5181: 14,-15 + 5182: 14,-14 + 5610: 11,-24 + 5611: 11,-25 + 5612: 11,-25 + 5613: 11,-26 + 6324: 2,-56 + 6325: 2,-55 + 6326: 2,-54 + 6332: 2,-60 + 6357: -1,-59 + 6358: -1,-58 + 6421: -10,-60 + 6425: -12,-57 + 6616: -5,-68 + 6617: -5,-67 + 6618: -5,-66 + 6649: 8,-70 + 6658: -5,-70 + 6660: -5,-72 + 6698: 6,-76 + 6909: 27,-53 + 6910: 27,-52 + 6919: 30,-60 + 6920: 30,-59 + 6921: 30,-58 + 6922: 30,-57 + 6923: 30,-56 + 7037: 32,-49 + 7038: 32,-50 + 7039: 32,-51 + 7040: 32,-52 + 7116: 31,-47 + 7117: 31,-46 + 7118: 31,-45 + 7119: 31,-44 + 7156: 14,-46 + 7157: 14,-45 + 7159: 14,-44 + 7520: -1,-58 + 7521: -1,-59 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleE + decals: + 4347: -27,40 + 4348: -27,39 + 4349: -27,38 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleW + decals: + 4344: -21,38 + 4345: -21,39 + 4346: -21,40 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 36: 2,4 + 37: 1,4 + 38: 0,4 + 39: -1,4 + 512: 10,19 + 897: -28,8 + 898: -29,8 + 1087: -41,12 + 1088: -42,12 + 1089: -43,12 + 1171: -41,-5 + 1172: -42,-5 + 1173: -43,-5 + 1198: -41,-13 + 1199: -40,-13 + 1207: -43,-13 + 1208: -44,-13 + 1209: -45,-13 + 1262: -34,14 + 1268: -34,16 + 1664: -22,-25 + 1665: -23,-25 + 1666: -24,-25 + 1679: -22,-17 + 1680: -23,-17 + 1681: -24,-17 + 1682: -25,-17 + 1853: -6,-21 + 1854: -5,-21 + 1855: -4,-21 + 1856: -3,-21 + 2195: -37,-49 + 2196: -38,-49 + 2271: -43,-53 + 2272: -42,-53 + 2351: -81,-55 + 2354: -78,-53 + 3177: 35,19 + 3869: 40,-10 + 3870: 39,-10 + 3871: 38,-10 + 3872: 37,-10 + 3873: 36,-10 + 3874: 35,-10 + 3884: 46,-13 + 3885: 46,-7 + 3886: 46,-5 + 3913: 46,-15 + 4104: -13,22 + 4105: -12,22 + 4106: -10,22 + 4107: -9,22 + 4108: -8,22 + 4109: -7,22 + 4110: -6,22 + 4111: -4,22 + 4112: -3,22 + 4363: -31,36 + 4364: -30,36 + 4365: -29,36 + 4366: -27,36 + 4467: -40,24 + 4468: -41,24 + 4469: -42,24 + 4470: -43,24 + 4655: 5,35 + 4656: 4,35 + 4677: 4,44 + 4678: 5,44 + 4679: 6,44 + 4680: 7,44 + 4681: 8,44 + 5026: 2,52 + 5027: 1,52 + 5028: 0,52 + 5029: -1,52 + 5034: 2,58 + 5035: -1,58 + 5038: 3,72 + 5039: 2,72 + 5040: 1,72 + 5041: 0,72 + 5042: -1,72 + 5304: 34,-15 + 5305: 33,-15 + 5306: 32,-15 + 5307: 31,-15 + 5308: 30,-15 + 5309: 29,-15 + 5310: 28,-15 + 5381: 47,-33 + 5607: 8,-22 + 5608: 7,-22 + 5609: 6,-22 + 6191: 3,-45 + 6192: 0,-45 + 6193: -1,-45 + 6198: -1,-49 + 6199: -2,-49 + 6327: 4,-53 + 6328: 3,-53 + 6351: -8,-59 + 6352: -6,-60 + 6353: -5,-60 + 6354: -4,-60 + 6355: -3,-60 + 6356: -2,-60 + 6413: -15,-59 + 6414: -14,-59 + 6415: -13,-59 + 6418: -9,-59 + 6432: -15,-56 + 6433: -14,-56 + 6434: -13,-56 + 6435: -12,-56 + 6436: -11,-56 + 6437: -10,-56 + 6438: -21,-60 + 6439: -20,-60 + 6440: -19,-60 + 6441: -18,-60 + 6540: 14,-67 + 6541: 13,-67 + 6542: 12,-67 + 6543: 11,-67 + 6544: 10,-67 + 6620: -4,-65 + 6621: -3,-65 + 6622: -2,-65 + 6623: -1,-65 + 6624: 0,-65 + 6625: 1,-65 + 6626: 2,-65 + 6627: 3,-65 + 6628: 4,-65 + 6636: 4,-70 + 6637: 3,-70 + 6638: 2,-70 + 6647: 6,-71 + 6648: 7,-71 + 6654: -7,-71 + 6655: -6,-71 + 6673: 0,-74 + 6686: -5,-77 + 6687: -4,-77 + 6688: -3,-77 + 6689: -2,-77 + 6690: -1,-77 + 6691: 0,-77 + 6692: 1,-77 + 6693: 2,-77 + 6694: 3,-77 + 6695: 4,-77 + 6696: 5,-77 + 6855: 21,-50 + 6901: 21,-52 + 6905: 23,-54 + 6906: 25,-54 + 6907: 26,-54 + 6917: 27,-61 + 6918: 29,-61 + 7070: 34,-42 + 7071: 35,-42 + 7072: 36,-42 + 7080: 18,-40 + 7081: 19,-40 + 7082: 20,-40 + 7083: 22,-40 + 7084: 23,-40 + 7085: 24,-40 + 7086: 25,-40 + 7087: 26,-40 + 7088: 27,-40 + 7089: 28,-40 + 7097: 12,-48 + 7098: 14,-48 + 7099: 15,-48 + 7100: 16,-48 + 7101: 17,-48 + 7102: 18,-48 + 7103: 19,-48 + 7104: 20,-48 + 7105: 21,-48 + 7106: 22,-48 + 7107: 23,-48 + 7108: 24,-48 + 7109: 25,-48 + 7110: 26,-48 + 7111: 27,-48 + 7112: 28,-48 + 7113: 29,-48 + 7114: 30,-48 + 7158: 13,-48 + 7168: 13,-47 + 7329: 24,-54 + 7332: 25,-61 + 7333: 26,-61 + 7334: 28,-61 + 7522: -4,-60 + 7532: -3,-70 + 7533: -4,-70 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 40: 4,2 + 41: 4,1 + 42: 4,0 + 43: 4,-1 + 456: -10,4 + 457: -10,5 + 857: -24,-7 + 1138: -37,-4 + 1142: -37,0 + 1143: -37,1 + 1144: -37,2 + 1148: -40,4 + 1170: -40,-6 + 1265: -35,15 + 1266: -33,15 + 1372: -49,-28 + 1373: -49,-27 + 1374: -49,-26 + 1432: -35,-29 + 1667: -25,-24 + 1668: -25,-23 + 1669: -25,-22 + 1812: -21,-31 + 1821: -20,-33 + 1822: -19,-34 + 1823: -19,-33 + 1824: -19,-32 + 1825: -19,-31 + 1862: -1,-22 + 1863: -1,-23 + 1864: -1,-24 + 2127: -43,-44 + 2155: -45,-30 + 2156: -45,-31 + 2233: -33,-52 + 2234: -33,-51 + 2235: -33,-50 + 2352: -83,-53 + 3163: 34,16 + 3166: 38,15 + 3167: 38,16 + 3179: 34,20 + 3440: 46,32 + 3443: 46,39 + 4308: -18,38 + 4309: -18,39 + 4310: -18,40 + 4368: -29,37 + 4369: -29,38 + 4370: -29,39 + 4652: 8,35 + 4653: 8,34 + 4676: 4,38 + 4782: 13,46 + 4783: 13,47 + 5080: 7,74 + 5081: 7,75 + 5082: 7,76 + 5083: 7,77 + 5084: 7,78 + 5085: 7,79 + 5086: 7,80 + 5122: -4,74 + 5123: -4,75 + 5124: -4,76 + 5125: -4,78 + 5126: -4,79 + 5127: -4,80 + 5128: -4,77 + 5183: 18,-17 + 5184: 18,-16 + 5185: 18,-15 + 5186: 18,-14 + 5379: 46,-32 + 5614: 11,-26 + 5615: 11,-25 + 5616: 11,-24 + 6372: 0,-60 + 6373: 0,-61 + 6409: -16,-62 + 6410: -16,-61 + 6411: -16,-60 + 6417: -12,-60 + 6426: -14,-57 + 6430: -16,-57 + 6630: 5,-66 + 6631: 5,-67 + 6632: 5,-68 + 6659: -8,-70 + 6672: 5,-72 + 6684: -6,-76 + 6903: 22,-53 + 6912: 24,-56 + 6913: 24,-57 + 6914: 24,-58 + 6915: 24,-60 + 7160: 11,-47 + 7161: 11,-46 + 7162: 11,-45 + 7163: 11,-44 + 7164: 11,-43 + 7165: 12,-44 + 7166: 12,-45 + 7167: 12,-46 + 7322: 24,-59 + 7548: 5,-70 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 28: -1,-3 + 29: 0,-3 + 30: 1,-3 + 31: 2,-3 + 843: -29,-4 + 844: -28,-4 + 845: -27,-4 + 846: -26,-4 + 847: -25,-4 + 848: -24,-4 + 849: -30,-7 + 1149: -41,3 + 1150: -42,3 + 1151: -43,3 + 1192: -44,-10 + 1193: -43,-10 + 1194: -45,-9 + 1195: -44,-9 + 1196: -43,-9 + 1264: -34,16 + 1267: -34,14 + 1287: -31,-21 + 1288: -30,-21 + 1421: -35,-27 + 1422: -34,-27 + 1423: -33,-27 + 1670: -24,-21 + 1671: -23,-21 + 1672: -22,-21 + 1846: -3,-25 + 1847: -4,-25 + 1848: -5,-25 + 1849: -6,-25 + 2189: -37,-46 + 2190: -38,-46 + 2273: -43,-53 + 2274: -42,-53 + 2350: -81,-51 + 2353: -78,-53 + 3170: 35,13 + 3171: 34,13 + 3172: 33,13 + 3433: 28,41 + 3434: 29,41 + 3435: 30,41 + 3436: 43,26 + 3875: 35,-7 + 3876: 36,-7 + 3877: 37,-7 + 3878: 38,-7 + 3879: 39,-7 + 3880: 40,-7 + 3881: 46,-5 + 3882: 46,-7 + 3883: 46,-13 + 3912: 46,-15 + 4073: -3,20 + 4074: -4,20 + 4075: -5,20 + 4076: -6,20 + 4077: -7,20 + 4078: -8,20 + 4079: -9,20 + 4080: -10,20 + 4081: -11,20 + 4082: -12,20 + 4083: -13,20 + 4084: -14,20 + 4145: -13,26 + 4146: -12,26 + 4147: -10,26 + 4148: -9,26 + 4149: -6,26 + 4150: -4,26 + 4151: -3,26 + 4153: -8,26 + 4154: -7,26 + 4168: -20,26 + 4169: -21,26 + 4357: -29,32 + 4358: -30,32 + 4359: -31,32 + 4360: -31,36 + 4361: -30,36 + 4362: -29,36 + 4416: -41,30 + 4417: -42,30 + 4418: -43,30 + 5024: -1,53 + 5025: 2,53 + 5043: -1,69 + 5044: 0,69 + 5045: 1,69 + 5046: 2,69 + 5047: 3,69 + 5094: -1,82 + 5095: 0,82 + 5096: 1,82 + 5097: 2,82 + 5098: 3,82 + 5380: 47,-31 + 5600: 6,-28 + 5601: 7,-28 + 5602: 8,-28 + 6200: -2,-48 + 6201: -1,-48 + 6359: -2,-57 + 6360: -3,-57 + 6361: -4,-57 + 6362: -5,-57 + 6363: -6,-57 + 6364: -8,-58 + 6419: -9,-58 + 6422: -10,-58 + 6423: -11,-58 + 6428: -15,-58 + 6442: -18,-62 + 6443: -19,-62 + 6444: -20,-62 + 6445: -21,-62 + 6545: 14,-66 + 6546: 13,-66 + 6547: 12,-66 + 6548: 11,-66 + 6549: 10,-66 + 6633: 4,-70 + 6634: 3,-70 + 6635: 2,-70 + 6645: 7,-69 + 6646: 6,-69 + 6656: -6,-69 + 6657: -7,-69 + 6662: -4,-73 + 6663: -3,-73 + 6664: -2,-73 + 6665: 0,-73 + 6668: 2,-73 + 6669: 3,-73 + 6670: 4,-73 + 6676: -2,-74 + 6677: -3,-74 + 6678: -4,-74 + 6679: -5,-74 + 6680: -6,-74 + 6702: 6,-74 + 6703: 5,-74 + 6704: 4,-74 + 6705: 3,-74 + 6706: 2,-74 + 6856: 21,-50 + 6895: 21,-51 + 6896: 22,-51 + 6897: 24,-51 + 6898: 23,-51 + 6899: 25,-51 + 6900: 26,-51 + 6924: 27,-55 + 6925: 26,-55 + 6926: 25,-55 + 7074: 35,-47 + 7075: 34,-47 + 7122: 30,-43 + 7135: 28,-42 + 7136: 27,-42 + 7137: 26,-42 + 7138: 25,-42 + 7139: 24,-42 + 7140: 23,-42 + 7141: 22,-42 + 7143: 20,-42 + 7144: 21,-42 + 7146: 19,-42 + 7147: 18,-42 + 7148: 17,-42 + 7149: 16,-42 + 7150: 15,-42 + 7151: 14,-42 + 7152: 13,-42 + 7153: 12,-42 + 7169: 13,-43 + 7175: 14,-49 + 7176: 13,-49 + 7177: 12,-49 + 7178: 12,-49 + 7179: 10,-49 + 7323: 28,-55 + 7324: 29,-55 + 7512: -7,-57 + 7513: -6,-57 + 7514: -5,-57 + 7515: -4,-57 + 7516: -3,-57 + 7517: -2,-57 + 7529: -4,-70 + 7530: -3,-70 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 3196: 39,5 + 3199: 38,4 + 3200: 37,5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 3206: 41,5 + 3431: 25,35 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 2885: 33,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndS + decals: + 2884: 31,9 + 3195: 39,4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndW + decals: + 3194: 38,5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 3201: 37,4 + 3202: 38,2 + 4781: 6,46 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 3205: 41,2 + 3207: 43,5 + 4780: 9,46 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 3197: 39,5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 3198: 38,3 + 4776: 6,47 + 4777: 6,48 + 4778: 6,49 + 4779: 6,50 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 3203: 39,2 + 3204: 40,2 + 3208: 42,5 + 3432: 26,35 + 4774: 8,46 + 4775: 7,46 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 2886: 34,9 + 2887: 35,9 + 4763: -3,54 + 4764: -4,54 + 4765: -5,54 + 4766: -6,54 + 4767: -7,54 + 4768: -8,54 + 4769: -9,54 + 5358: 44,-22 + 5359: 43.996502,-21.948832 + 5360: 43.996502,-21.99856 + 5361: 43.996502,-21.973696 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 2882: 31,11 + 2883: 31,10 + 3209: 41,3 + 3210: 41,4 + 3211: 43,6 + 3212: 43,7 + 3213: 43,8 + 3214: 43,9 + 4770: 9,50 + 4771: 9,49 + 4772: 9,48 + 4773: 9,47 + - node: + cleanable: True + color: '#FFFFFFFF' + id: clown + decals: + 7351: 4.776539,-35.340748 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FF00005A' + id: footprint + decals: + 5139: 12.790892,-10.743357 + - node: + cleanable: True + angle: -3.141592653589793 rad + color: '#FF0000C7' + id: footprint + decals: + 5927: 36.792473,-23.683962 + 5928: 37.137463,-23.28303 + 5929: 36.792473,-22.95669 + 5930: 37.146786,-22.70494 + 5931: 36.78315,-22.359953 + 5932: 37.165436,-22.07091 + 5933: 36.820446,-21.753893 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#FF0000C7' + id: footprint + decals: + 5916: 11.844839,-26.264587 + 5917: 11.6490345,-25.956896 + 5923: 3.9564643,-24.88426 + 5924: 4.4226646,-25.247896 + 5925: 4.8702173,-24.88426 + 5926: 5.205881,-25.25722 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FF0000C7' + id: footprint + decals: + 5918: 12.857773,-20.710676 + 5919: 13.156141,-21.074314 + 5920: 12.8204775,-21.465921 + 5921: 13.128169,-21.801586 + 5922: 12.8204775,-22.239815 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FF0000FF' + id: footprint + decals: + 5142: 12.800216,-9.782984 + 5143: 13.201148,-10.081352 + 5144: 12.800216,-10.333101 + - node: + color: '#FFFFFFFF' + id: rune1 + decals: + 458: -16,6 + 2805: 28,-7 + - node: + color: '#FFFFFFFF' + id: rune2 + decals: + 2806: 29,-7 + - node: + color: '#FFFFFFFF' + id: rune3 + decals: + 2807: 28,-8 + - node: + color: '#FFFFFFFF' + id: rune4 + decals: + 2808: 29,-8 + - node: + cleanable: True + angle: -4.71238898038469 rad + color: '#FF0000C7' + id: thinline + decals: + 5936: 9.984598,-26.331085 + - node: + cleanable: True + angle: -3.141592653589793 rad + color: '#FF0000C7' + id: thinline + decals: + 5934: 37.17476,-21.101212 + 5935: 36.811123,-21.063915 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#FF0000C7' + id: thinline + decals: + 5937: 10.031219,-25.930153 + - node: + cleanable: True + color: '#FF0000FF' + id: thinline + decals: + 5141: 13.210472,-9.009092 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FF0000FF' + id: thinline + decals: + 5140: 12.781568,-8.962471 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,1: + 0: 65407 + -1,1: + 0: 65439 + 0,2: + 0: 65535 + -1,2: + 0: 65535 + 0,3: + 0: 29559 + -1,3: + 0: 46010 + 0,4: + 0: 32631 + 1,0: + 0: 65535 + 1,1: + 0: 65519 + 1,2: + 0: 14335 + 1,3: + 0: 62394 + 1,-1: + 0: 65535 + 1,4: + 0: 65535 + 2,0: + 0: 65535 + 2,1: + 0: 14335 + 2,2: + 0: 29119 + 2,3: + 0: 28279 + 2,-1: + 0: 65535 + 3,0: + 0: 35839 + 3,1: + 0: 47790 + 3,2: + 0: 64187 + 3,3: + 0: 15283 + 3,-1: + 0: 45166 + 3,4: + 0: 15354 + 4,0: + 0: 4095 + 4,1: + 0: 65485 + 4,2: + 0: 65535 + 4,3: + 0: 8191 + 0,-4: + 0: 14199 + 0,-5: + 0: 63351 + -1,-4: + 0: 15352 + 0,-3: + 0: 65399 + -1,-3: + 0: 65419 + 0,-2: + 0: 65535 + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + 1,-4: + 0: 30511 + 1,-3: + 0: 29447 + 1,-2: + 0: 65535 + 1,-5: + 0: 61567 + 2,-4: + 0: 63351 + 2,-3: + 0: 39928 + 2,-2: + 0: 29691 + 2,-5: + 0: 28919 + 3,-4: + 0: 12031 + 3,-3: + 0: 61182 + 3,-2: + 0: 24818 + 3,-5: + 0: 62071 + 4,-4: + 0: 12287 + 4,-3: + 0: 65535 + 4,-2: + 0: 56788 + 4,-1: + 0: 61919 + -4,-4: + 0: 65421 + -4,-5: + 0: 64907 + -5,-4: + 0: 63288 + -4,-3: + 0: 57297 + -5,-3: + 0: 65335 + -4,-2: + 0: 65520 + -5,-2: + 0: 56785 + -4,-1: + 0: 29183 + -5,-1: + 0: 61661 + -4,0: + 0: 6143 + -3,-4: + 0: 48034 + -3,-3: + 0: 32625 + -3,-2: + 0: 37745 + -3,-1: + 0: 64733 + -3,-5: + 0: 62702 + -3,0: + 0: 53247 + -2,-4: + 0: 49072 + -2,-3: + 0: 41785 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -2,-5: + 0: 65248 + -2,0: + 0: 65535 + -1,-5: + 0: 49080 + -5,0: + 0: 4095 + -4,1: + 0: 7647 + -5,1: + 0: 57309 + -4,2: + 0: 64988 + -5,2: + 0: 56785 + -4,3: + 0: 61133 + -5,3: + 0: 65293 + -4,4: + 0: 65294 + -3,1: + 0: 2525 + -3,2: + 0: 30591 + -3,3: + 0: 65399 + -3,4: + 0: 65359 + -2,1: + 0: 65535 + -2,2: + 0: 14591 + -2,3: + 0: 65155 + -2,4: + 0: 65294 + -1,4: + 0: 64395 + -8,0: + 0: 4095 + -8,-1: + 0: 62702 + -9,0: + 0: 61166 + -8,1: + 0: 61422 + -9,1: + 0: 65518 + -8,2: + 0: 61230 + -9,2: + 0: 65535 + -8,3: + 1: 4352 + 0: 49358 + -9,3: + 0: 61199 + 1: 4096 + -8,4: + 0: 53469 + -7,0: + 0: 4095 + -7,1: + 0: 64989 + -7,2: + 0: 63297 + -7,3: + 0: 53367 + -7,-1: + 0: 61695 + -7,4: + 0: 64735 + -6,0: + 0: 36863 + -6,1: + 0: 64989 + -6,2: + 0: 65532 + -6,3: + 0: 61071 + -6,-1: + 0: 63741 + -6,4: + 0: 56719 + -5,4: + 0: 64399 + -9,-4: + 0: 61166 + -8,-4: + 0: 61152 + -8,-3: + 0: 61679 + -9,-3: + 0: 65262 + -9,-2: + 0: 61166 + -8,-2: + 0: 61152 + -9,-1: + 0: 61166 + -8,-5: + 0: 61408 + -7,-4: + 0: 48048 + -7,-3: + 0: 63547 + -7,-2: + 0: 65521 + -7,-5: + 0: 49080 + -6,-4: + 0: 49080 + -6,-3: + 0: 65435 + -6,-2: + 0: 63672 + -6,-5: + 0: 65535 + -5,-5: + 0: 47900 + -4,5: + 0: 47919 + -5,5: + 0: 35771 + -4,6: + 0: 65338 + -5,6: + 0: 63931 + -4,7: + 0: 47615 + -5,7: + 0: 53759 + -4,8: + 0: 48063 + -3,5: + 0: 56591 + -3,6: + 0: 65309 + -3,7: + 0: 61695 + -3,8: + 0: 65535 + -2,5: + 0: 30479 + -2,6: + 0: 65303 + -2,7: + 0: 36607 + -2,8: + 0: 36863 + -1,5: + 0: 48011 + -1,6: + 0: 48043 + -1,7: + 0: 48059 + -1,8: + 0: 43962 + 0,5: + 0: 30711 + 0,6: + 0: 32631 + 0,7: + 0: 30583 + 0,8: + 0: 30583 + 1,5: + 0: 36848 + 1,6: + 0: 32767 + 1: 32768 + 1,7: + 0: 65520 + 1,8: + 0: 65295 + 2,4: + 0: 28512 + 2,5: + 0: 1776 + 2,6: + 0: 56797 + 2,7: + 0: 4368 + 2: 50368 + 2,8: + 0: 4353 + 2: 35908 + 3,5: + 0: 48059 + 3,6: + 0: 32627 + 3,7: + 2: 61936 + 4,4: + 0: 3003 + 4,5: + 0: 65535 + 4,6: + 0: 65522 + 4,-5: + 0: 61695 + 5,-4: + 0: 51679 + 5,-3: + 0: 56797 + 5,-2: + 0: 61428 + 5,-1: + 0: 63727 + 5,-5: + 0: 39133 + 1: 1024 + 5,0: + 0: 4095 + 6,-4: + 0: 26239 + 6,-3: + 0: 62748 + 6,-2: + 0: 45980 + 6,-1: + 0: 63679 + 6,0: + 0: 4095 + 7,-4: + 0: 28927 + 7,-3: + 0: 28799 + 7,-2: + 0: 28799 + 7,-1: + 0: 62071 + 7,-5: + 0: 65535 + 7,0: + 0: 32767 + 8,-4: + 0: 61559 + 8,-3: + 0: 65535 + 8,-2: + 0: 65535 + 8,-1: + 0: 64767 + 5,1: + 0: 65535 + 5,2: + 0: 65535 + 5,3: + 0: 36859 + 5,4: + 0: 61439 + 6,1: + 0: 65527 + 6,2: + 0: 65535 + 6,3: + 0: 3955 + 6,4: + 0: 30583 + 7,1: + 0: 65527 + 7,2: + 0: 65535 + 7,3: + 0: 65399 + 7,4: + 0: 30591 + 8,0: + 0: 4095 + 8,1: + 0: 65535 + 8,2: + 0: 65535 + 8,3: + 0: 65520 + 0,-8: + 0: 30583 + 0,-9: + 0: 30591 + -1,-8: + 0: 47295 + 0,-7: + 0: 65399 + -1,-7: + 0: 47295 + 0,-6: + 0: 30591 + -1,-6: + 0: 48063 + 1,-8: + 0: 61439 + 1,-7: + 0: 65535 + 1,-6: + 0: 12287 + 1,-9: + 0: 62207 + 2,-8: + 0: 2047 + 2,-7: + 0: 65399 + 2,-6: + 0: 14207 + 2,-9: + 0: 28895 + 3,-8: + 0: 63351 + 3,-7: + 0: 65535 + 3,-6: + 0: 30719 + 3,-9: + 0: 29183 + 4,-8: + 0: 65279 + 4,-7: + 0: 65535 + 4,-6: + 0: 62719 + -4,-8: + 2: 34 + 0: 61576 + -5,-8: + 0: 61678 + -4,-7: + 0: 45311 + -5,-7: + 0: 55551 + -4,-6: + 0: 14523 + -5,-6: + 0: 55773 + -4,-9: + 2: 8704 + 0: 32909 + -3,-8: + 0: 61627 + -3,-7: + 0: 62207 + -3,-6: + 0: 4095 + -3,-9: + 0: 47423 + -2,-8: + 0: 29183 + -2,-7: + 0: 57471 + -2,-9: + 0: 65371 + -2,-6: + 0: 61166 + -1,-9: + 0: 48011 + -8,-8: + 0: 20479 + -8,-9: + 0: 62702 + -9,-8: + 0: 65535 + -8,-7: + 0: 62702 + -9,-7: + 0: 61183 + -8,-6: + 0: 65535 + -9,-6: + 0: 61182 + -9,-5: + 0: 61167 + -7,-8: + 0: 61439 + -7,-6: + 0: 61438 + -7,-9: + 0: 40157 + -7,-7: + 0: 57582 + -6,-8: + 0: 62702 + -6,-7: + 0: 62207 + -6,-6: + 0: 65535 + -6,-9: + 0: 61005 + -5,-9: + 0: 65037 + -12,-4: + 0: 34831 + -12,-5: + 0: 65535 + -13,-4: + 0: 8 + -12,-3: + 0: 34828 + -12,-2: + 0: 34824 + -12,-1: + 0: 3208 + -12,0: + 0: 34956 + -11,-4: + 0: 47887 + -11,-3: + 0: 65423 + -11,-2: + 0: 61195 + -11,-1: + 0: 61422 + -11,-5: + 0: 65535 + -11,0: + 0: 61167 + -10,-4: + 0: 65358 + -10,-3: + 0: 65535 + -10,-2: + 0: 65343 + -10,-1: + 0: 65535 + -10,0: + 0: 65535 + -10,-5: + 0: 61182 + -12,2: + 2: 13056 + 0: 34952 + -13,2: + 2: 65392 + -12,3: + 2: 4371 + 0: 34824 + -13,3: + 2: 52991 + -12,4: + 2: 16435 + 0: 2184 + -12,1: + 0: 34952 + -11,1: + 0: 65295 + -11,2: + 0: 65535 + -11,3: + 0: 32655 + -11,4: + 0: 57599 + -10,1: + 0: 65327 + -10,2: + 0: 32767 + -10,3: + 0: 26127 + -10,4: + 0: 61542 + -9,4: + 0: 53471 + 3: 32 + -13,4: + 2: 252 + -12,7: + 2: 64768 + -13,7: + 2: 60416 + -12,8: + 2: 65535 + -11,5: + 0: 3982 + -11,6: + 0: 4078 + -11,7: + 0: 61166 + -11,8: + 0: 61166 + -10,5: + 0: 53247 + -10,6: + 0: 36829 + -10,7: + 0: 7677 + -10,8: + 0: 65535 + -9,5: + 0: 53725 + -9,6: + 0: 3551 + -9,7: + 0: 3581 + -9,8: + 0: 61679 + -8,5: + 0: 28895 + -8,6: + 0: 1911 + -8,7: + 0: 4095 + -8,8: + 0: 61166 + -7,5: + 0: 53759 + -7,6: + 0: 53725 + -7,7: + 0: 36863 + -7,8: + 0: 64443 + -6,5: + 0: 7389 + -6,6: + 0: 63965 + -6,7: + 0: 46079 + -6,8: + 0: 48059 + -5,8: + 0: 56799 + -12,-8: + 0: 4095 + -12,-9: + 0: 64764 + -12,-7: + 0: 3838 + -13,-7: + 0: 2248 + -12,-6: + 0: 65535 + -13,-6: + 0: 34952 + -13,-5: + 0: 34952 + -11,-8: + 0: 2039 + -11,-7: + 0: 3838 + -11,-6: + 0: 65535 + -11,-9: + 0: 30583 + -10,-8: + 0: 48051 + -10,-7: + 0: 58299 + -10,-9: + 0: 65319 + -10,-6: + 0: 58606 + -9,-9: + 0: 65518 + -13,-9: + 0: 128 + -12,-10: + 0: 49288 + -12,-12: + 2: 1092 + -12,-13: + 2: 18295 + -12,-11: + 0: 34828 + -11,-12: + 0: 2039 + -11,-11: + 0: 32751 + -11,-10: + 0: 29559 + -10,-12: + 0: 3581 + -10,-11: + 0: 4095 + -10,-10: + 0: 32631 + -10,-13: + 0: 53247 + -9,-12: + 0: 20479 + -9,-11: + 0: 61183 + -9,-10: + 0: 65535 + -9,-13: + 0: 65535 + -8,-12: + 0: 49599 + -8,-11: + 0: 65039 + -8,-13: + 0: 45533 + -8,-10: + 0: 3822 + -7,-12: + 0: 61695 + -7,-11: + 0: 4367 + 2: 3072 + -7,-10: + 0: 52701 + -7,-13: + 0: 61695 + -6,-12: + 0: 64733 + -6,-11: + 0: 36047 + 2: 256 + -6,-10: + 0: 56797 + -6,-13: + 0: 56574 + -5,-12: + 0: 56797 + -5,-11: + 0: 52701 + -5,-10: + 0: 56797 + -5,-13: + 0: 56607 + -4,-12: + 0: 57309 + -4,-11: + 0: 56829 + -4,-10: + 0: 64991 + -4,-13: + 0: 64911 + -3,-12: + 0: 47899 + -3,-11: + 0: 48123 + -3,-10: + 0: 65307 + -3,-13: + 0: 64263 + -2,-12: + 0: 48009 + -2,-11: + 0: 46011 + -2,-10: + 0: 47883 + -2,-13: + 0: 54607 + -1,-12: + 0: 65278 + -1,-11: + 0: 47352 + -1,-10: + 0: 64395 + -1,-13: + 0: 57535 + 0,-12: + 0: 65521 + 0,-11: + 0: 65393 + 0,-10: + 0: 30583 + -4,-16: + 2: 15 + 0: 65280 + -4,-17: + 2: 65535 + -5,-16: + 0: 65399 + -4,-15: + 0: 65535 + -5,-15: + 0: 65535 + -4,-14: + 0: 65311 + -5,-14: + 0: 56591 + -3,-16: + 2: 7 + 0: 9760 + -3,-15: + 0: 32759 + -3,-14: + 0: 63239 + -3,-17: + 2: 30583 + -2,-16: + 0: 61695 + -2,-15: + 0: 65535 + -2,-14: + 0: 30543 + -2,-17: + 0: 65535 + -1,-16: + 0: 61951 + -1,-15: + 0: 65535 + -1,-14: + 0: 47887 + -1,-17: + 0: 62384 + 0,-16: + 0: 55551 + 0,-15: + 0: 57309 + 0,-14: + 0: 56781 + 0,-13: + 0: 56529 + -8,-16: + 0: 30719 + -8,-17: + 0: 61440 + 2: 119 + -9,-16: + 0: 47295 + -8,-15: + 0: 35827 + -9,-15: + 0: 28863 + -8,-14: + 0: 55551 + -9,-14: + 0: 61567 + -7,-16: + 0: 48639 + -7,-15: + 0: 24767 + -7,-14: + 0: 62062 + -7,-17: + 0: 61559 + -6,-16: + 0: 47547 + -6,-15: + 0: 47291 + -6,-14: + 0: 59451 + -6,-17: + 0: 12339 + -12,-16: + 2: 12071 + -12,-17: + 2: 30579 + -13,-16: + 2: 12071 + -12,-15: + 2: 30583 + -12,-14: + 2: 2035 + -13,-14: + 2: 20351 + -13,-13: + 2: 2287 + -11,-16: + 2: 44975 + -11,-14: + 2: 255 + 0: 28672 + -11,-13: + 0: 2036 + -11,-17: + 2: 63351 + -11,-15: + 2: 65535 + -10,-16: + 2: 13107 + 0: 32904 + -10,-15: + 2: 29491 + 0: 136 + -10,-14: + 2: 17 + 0: 61664 + -10,-17: + 2: 13039 + 0: 32768 + -9,-17: + 0: 45056 + 2: 255 + -16,-14: + 2: 3840 + -17,-14: + 2: 36744 + -16,-13: + 2: 15 + -17,-13: + 2: 2191 + -15,-14: + 2: 7936 + -15,-13: + 2: 15 + -15,-16: + 2: 2048 + -14,-16: + 2: 12071 + -14,-14: + 2: 12194 + -14,-13: + 2: 559 + -14,-17: + 2: 30671 + -14,-15: + 2: 1911 + -13,-17: + 2: 30526 + -13,-15: + 2: 1911 + -20,-15: + 2: 48240 + -21,-15: + 2: 59896 + -20,-14: + 0: 62224 + 2: 132 + -21,-14: + 0: 61120 + 2: 1 + -20,-13: + 0: 19 + 2: 46208 + -21,-13: + 0: 206 + 2: 57600 + -19,-15: + 2: 4096 + -20,-12: + 2: 124 + -19,-13: + 2: 4910 + -19,-14: + 2: 11811 + -18,-14: + 2: 20292 + -18,-13: + 2: 1103 + -17,-15: + 2: 32768 + -22,-14: + 2: 64166 + -22,-13: + 2: 50858 + -22,-15: + 2: 51200 + -22,-12: + 2: 8 + -21,-12: + 2: 2297 + -14,-18: + 2: 32768 + -13,-18: + 2: 63616 + -12,-18: + 2: 32720 + -11,-18: + 2: 60400 + -10,-18: + 2: 65535 + -9,-18: + 2: 65529 + -8,-18: + 2: 32767 + -8,-19: + 2: 61440 + -7,-19: + 2: 65024 + -7,-18: + 2: 1023 + -6,-19: + 2: 4096 + -6,-18: + 2: 49 + 0: 12288 + -5,-18: + 2: 34952 + -4,-18: + 2: 65535 + -5,-17: + 2: 2184 + 8,-5: + 0: 30583 + 9,-4: + 0: 62071 + 9,-3: + 0: 28671 + 9,-2: + 0: 65526 + 9,-1: + 0: 53503 + 9,-5: + 0: 63351 + 9,0: + 0: 52701 + 10,-4: + 0: 61627 + 10,-3: + 0: 65535 + 10,-2: + 0: 65535 + 10,-1: + 0: 56351 + 10,-5: + 0: 48048 + 10,0: + 0: 65309 + 11,-4: + 0: 61937 + 11,-3: + 0: 4369 + 2: 17472 + 11,-2: + 0: 61937 + 11,-1: + 0: 4353 + 11,-5: + 0: 30576 + 11,0: + 0: 1 + 8,4: + 0: 65535 + 9,1: + 0: 65262 + 9,3: + 0: 30582 + 9,2: + 0: 3822 + 9,4: + 0: 32631 + 10,1: + 0: 65535 + 10,2: + 0: 10239 + 10,3: + 0: 32639 + 1: 32896 + 11,1: + 2: 8192 + 11,2: + 2: 61158 + 11,3: + 2: 61102 + 11,4: + 2: 8430 + 12,2: + 2: 65520 + 12,3: + 2: 65531 + 4,-9: + 0: 61681 + 5,-8: + 0: 61695 + 5,-7: + 0: 65519 + 5,-6: + 0: 53503 + 5,-9: + 0: 62716 + 6,-7: + 0: 65486 + 6,-6: + 0: 30255 + 6,-5: + 0: 1655 + 4: 256 + 6,-8: + 0: 61166 + 6,-9: + 0: 59647 + 7,-8: + 0: 56829 + 7,-7: + 0: 65293 + 7,-6: + 0: 65487 + 7,-9: + 0: 7396 + 8,-8: + 0: 56797 + 8,-7: + 0: 65421 + 8,-6: + 0: 30495 + 4,7: + 0: 61152 + 4,8: + 0: 43246 + 5,6: + 0: 65530 + 5,7: + 0: 65520 + 5,5: + 5: 61152 + 0: 4 + 5,8: + 0: 46079 + 6,5: + 5: 30576 + 6,6: + 0: 32624 + 6,7: + 0: 64432 + 6,8: + 0: 28859 + 7,5: + 0: 63271 + 7,6: + 0: 65399 + 7,7: + 0: 32767 + 7,8: + 0: 63351 + 8,5: + 0: 30471 + 8,6: + 0: 65287 + 8,7: + 0: 4095 + 8,8: + 0: 65535 + 9,5: + 0: 32752 + 9,6: + 0: 65359 + 9,7: + 0: 4095 + 9,8: + 0: 65535 + 10,4: + 0: 65520 + 10,5: + 0: 52692 + 10,6: + 0: 64909 + 10,7: + 0: 52735 + 10,8: + 0: 64989 + 11,5: + 0: 62544 + 11,6: + 0: 4358 + 11,7: + 0: 4369 + 11,8: + 0: 4383 + 12,4: + 2: 61183 + 12,5: + 0: 12288 + 2: 52462 + 12,6: + 2: 4 + 13,4: + 2: 3311 + 13,5: + 2: 65280 + 13,3: + 2: 65519 + 13,6: + 2: 12 + 14,4: + 2: 32759 + 14,5: + 2: 63351 + 14,6: + 2: 26231 + 14,3: + 2: 65535 + 14,7: + 2: 58982 + 14,8: + 2: 61166 + 15,4: + 2: 30576 + 15,5: + 2: 62071 + 15,7: + 2: 65399 + 15,6: + 2: 30578 + 15,8: + 2: 14207 + 16,5: + 2: 62071 + 16,7: + 2: 65479 + 13,2: + 2: 28928 + 15,3: + 2: 65329 + 16,3: + 2: 61696 + 16,4: + 2: 30479 + 16,6: + 2: 30578 + 17,4: + 2: 28927 + 17,5: + 2: 62071 + 17,7: + 2: 4092 + 17,3: + 2: 4096 + 17,6: + 2: 30578 + 18,4: + 2: 28784 + 18,5: + 2: 62071 + 18,7: + 2: 371 + 18,6: + 2: 30578 + 12,11: + 2: 65527 + 11,11: + 2: 52428 + 0: 273 + 13,11: + 2: 8176 + 14,11: + 2: 311 + 14,9: + 2: 61166 + 14,10: + 2: 26222 + 15,9: + 2: 4915 + 15,10: + 2: 1 + 3,8: + 0: 57504 + 3,9: + 0: 61006 + 4,9: + 0: 64424 + 4,10: + 0: 65035 + 3,10: + 0: 61070 + 4,11: + 0: 206 + 2: 20736 + 3,11: + 0: 29198 + 2: 34816 + 4,12: + 2: 57343 + 5,9: + 0: 47931 + 5,10: + 0: 65291 + 5,11: + 0: 383 + 2: 49152 + 5,12: + 2: 61166 + 6,9: + 0: 63247 + 6,10: + 0: 7 + 2: 26112 + 6,11: + 2: 65254 + 6,12: + 2: 8127 + 7,9: + 0: 32631 + 7,10: + 0: 626 + 7,11: + 2: 63488 + 7,12: + 2: 4095 + 8,9: + 0: 65535 + 8,10: + 0: 255 + 2: 61440 + 8,11: + 2: 65535 + 0,9: + 0: 30583 + -1,9: + 0: 49147 + 0,10: + 0: 30583 + -1,10: + 0: 49035 + 0,11: + 0: 65399 + -1,11: + 0: 47547 + 0,12: + 0: 32767 + 1,9: + 0: 65528 + 1,10: + 0: 65535 + 1,11: + 0: 64783 + 1,12: + 0: 8669 + 6: 1024 + 1: 2048 + 2,9: + 0: 4368 + 2: 51340 + 2,10: + 0: 4369 + 2: 17416 + 2,11: + 0: 47873 + 2: 12 + 2,12: + 0: 7163 + 3,12: + 2: 34952 + 0: 4912 + 8,12: + 2: 127 + 9,9: + 0: 65535 + 9,10: + 0: 255 + 2: 61440 + 9,11: + 2: 65534 + 9,12: + 2: 15 + 10,9: + 0: 57309 + 10,10: + 0: 52445 + 2: 4096 + 10,11: + 2: 4369 + 0: 36044 + 10,12: + 0: 140 + 11,9: + 0: 61713 + 11,10: + 0: 4369 + 2: 50176 + 11,12: + 0: 1 + 4,13: + 2: 13095 + 3,13: + 2: 65532 + 4,14: + 2: 19 + 3,14: + 2: 65535 + 5,13: + 2: 14 + -1,12: + 0: 47291 + 0,13: + 0: 29823 + -1,13: + 0: 48059 + 0,14: + 0: 65351 + -1,14: + 0: 65435 + 0,15: + 0: 4095 + -1,15: + 0: 3327 + 2: 4096 + 1,13: + 0: 65535 + 1,14: + 0: 65327 + 1,15: + 0: 1151 + 2: 57344 + 1,16: + 2: 24405 + 2,13: + 0: 30583 + 2,14: + 0: 3 + 2: 59520 + 2,15: + 2: 29614 + 2,16: + 2: 45038 + 3,15: + 2: 4983 + 3,16: + 2: 26483 + 8,-9: + 0: 52692 + 9,-8: + 0: 56799 + 9,-7: + 0: 65421 + 9,-6: + 0: 65535 + 9,-9: + 0: 56784 + 10,-8: + 0: 30591 + 10,-7: + 0: 64279 + 10,-6: + 0: 48059 + 10,-9: + 0: 30576 + 11,-8: + 0: 65535 + 11,-7: + 0: 30479 + 11,-6: + 0: 30583 + 11,-9: + 0: 65520 + 12,-7: + 2: 4974 + -4,9: + 0: 65291 + -5,9: + 0: 60941 + -4,10: + 0: 32783 + 2: 28672 + -5,10: + 0: 14 + 2: 61440 + -4,11: + 2: 30583 + -5,11: + 2: 65527 + -4,12: + 2: 30583 + -3,9: + 0: 56773 + -3,10: + 0: 64709 + -3,11: + 0: 46064 + -3,12: + 0: 16267 + -2,11: + 0: 28926 + -2,9: + 0: 61166 + -2,10: + 0: 61070 + -2,12: + 0: 37751 + -8,9: + 0: 61166 + -9,9: + 0: 61198 + -8,10: + 0: 1252 + -9,10: + 2: 65520 + -8,11: + 2: 272 + -9,11: + 2: 3327 + -7,9: + 0: 60939 + -7,10: + 0: 57550 + -7,11: + 0: 238 + 2: 61440 + -7,12: + 2: 15 + -6,9: + 0: 65307 + -6,10: + 0: 29055 + -6,11: + 0: 7 + 7: 16 + 4: 32 + 2: 63488 + -6,12: + 2: 7 + -5,12: + 2: 36047 + -13,8: + 2: 65535 + -12,9: + 2: 65535 + -13,9: + 2: 61166 + -12,10: + 2: 65535 + -13,10: + 2: 3212 + -12,11: + 2: 207 + -11,9: + 2: 61440 + 0: 238 + -11,10: + 2: 65535 + -11,11: + 2: 223 + -10,9: + 0: 52479 + 2: 4096 + -10,10: + 2: 65521 + -10,11: + 2: 31 + -4,13: + 2: 65527 + -5,13: + 2: 136 + -4,14: + 2: 52430 + -3,13: + 2: 12544 + 0: 34954 + -3,14: + 2: 65331 + 0: 8 + -3,15: + 2: 17919 + -2,13: + 0: 65535 + -2,14: + 0: 52271 + 2: 4096 + -2,15: + 2: 62225 + 0: 2188 + -2,16: + 2: 40857 + -1,16: + 2: 12066 + -15,2: + 2: 34816 + -14,2: + 2: 65520 + -14,3: + 2: 206 + -16,6: + 2: 30496 + -16,7: + 2: 65303 + -17,7: + 2: 36849 + -15,7: + 2: 63351 + -15,6: + 2: 28928 + -15,8: + 2: 1791 + -14,7: + 2: 63474 + -14,8: + 2: 57343 + -14,6: + 2: 8192 + -14,9: + 2: 8 + -19,5: + 2: 32768 + -18,5: + 2: 62071 + -18,4: + 2: 28672 + -18,6: + 2: 30578 + -18,7: + 2: 3326 + -17,5: + 2: 62071 + -17,4: + 2: 28672 + -17,6: + 2: 30578 + -4,18: + 2: 10444 + -4,19: + 2: 11950 + -4,17: + 2: 19584 + -3,17: + 2: 61371 + -3,18: + 2: 60380 + -3,19: + 2: 58163 + 0: 192 + -3,16: + 2: 61096 + -3,20: + 2: 56543 + -2,17: + 2: 17 + 0: 60552 + -2,19: + 0: 61182 + -2,18: + 0: 60942 + -2,20: + 0: 60942 + -1,17: + 0: 48048 + -1,18: + 0: 5387 + 2: 16384 + -1,19: + 0: 4561 + 2: 17412 + -1,20: + 0: 47877 + 0,16: + 2: 3840 + 0,17: + 0: 65520 + 0,18: + 0: 9999 + 0,19: + 0: 10231 + 0,20: + 0: 65282 + 2: 5 + 1,18: + 0: 52494 + 2: 4096 + 1,19: + 0: 52444 + 2: 4353 + 1,17: + 0: 61156 + 1,20: + 0: 60941 + 2,17: + 0: 12544 + 2: 35014 + 2,18: + 0: 13059 + 2: 34952 + 2,19: + 0: 13107 + 2: 34952 + 2,20: + 0: 13059 + 2: 34952 + 3,17: + 2: 65524 + 3,18: + 2: 65165 + 3,19: + 2: 61286 + 4,18: + 2: 13072 + 4,19: + 2: 13090 + 3,20: + 2: 30680 + 0,21: + 0: 255 + 2: 61440 + -1,21: + 0: 187 + 2: 61440 + 0,22: + 2: 36744 + -1,22: + 2: 65211 + 1,21: + 2: 61440 + 0: 238 + 1,22: + 2: 31726 + 1,23: + 2: 15 + 2,21: + 0: 1 + 2: 63176 + 2,22: + 2: 925 + 3,21: + 2: 13911 + 3,22: + 2: 49 + 4,20: + 2: 1 + -4,20: + 2: 52416 + -4,21: + 2: 4 + -3,21: + 2: 51711 + -3,22: + 2: 236 + -2,21: + 2: 62224 + 0: 140 + -2,22: + 2: 3789 + -2,23: + 2: 8 + -1,23: + 2: 7 + 8,-12: + 0: 64977 + 8,-13: + 0: 56799 + 7,-12: + 0: 65535 + 8,-11: + 0: 3549 + 7,-11: + 0: 32767 + 8,-10: + 0: 65535 + 7,-10: + 0: 32583 + 9,-12: + 0: 30704 + 9,-11: + 0: 49535 + 9,-10: + 0: 30205 + 9,-13: + 0: 30583 + 10,-12: + 0: 4144 + 2: 204 + 8: 16384 + 10,-11: + 0: 61457 + 8: 78 + 10,-10: + 0: 47615 + 10,-13: + 2: 65343 + 11,-12: + 2: 35775 + 11,-11: + 8: 1 + 0: 61440 + 2: 200 + 11,-10: + 0: 54783 + 11,-13: + 2: 57321 + 12,-12: + 2: 65527 + 12,-11: + 2: 26225 + 12,-13: + 2: 14335 + 12,-10: + 2: 61166 + 12,-9: + 2: 61158 + 12,-8: + 2: 61162 + 13,-8: + 2: 4369 + 4,-12: + 0: 65535 + 4,-13: + 0: 65535 + 3,-12: + 0: 65535 + 4,-11: + 0: 65535 + 3,-11: + 0: 65535 + 4,-10: + 0: 56607 + 3,-10: + 0: 63346 + 5,-12: + 0: 65535 + 5,-11: + 0: 65535 + 5,-10: + 0: 56591 + 5,-13: + 0: 65535 + 6,-12: + 0: 65535 + 6,-11: + 0: 65535 + 6,-10: + 0: 65295 + 6,-13: + 0: 65535 + 7,-13: + 0: 65535 + 1,-12: + 0: 65532 + 1,-11: + 0: 65526 + 1,-10: + 0: 65295 + 1,-13: + 0: 57340 + 2,-12: + 0: 56799 + 2,-11: + 0: 65500 + 2,-10: + 0: 56769 + 2,-13: + 0: 53725 + 3,-13: + 0: 28791 + 0,-17: + 0: 63921 + 1,-16: + 0: 55551 + 1,-15: + 0: 55773 + 1,-14: + 0: 57311 + 1,-17: + 0: 65534 + 2,-16: + 0: 53471 + 2,-15: + 0: 7389 + 2,-14: + 0: 64989 + 2,-17: + 0: 64989 + 3,-16: + 0: 28791 + 3,-15: + 0: 1911 + 3,-14: + 0: 30583 + 3,-17: + 0: 30583 + 4,-16: + 9: 1911 + 4,-15: + 10: 1911 + 4,-14: + 8: 1911 + 0,-20: + 2: 255 + 0: 61440 + 0,-21: + 2: 65535 + -1,-20: + 2: 255 + 0: 61440 + 0,-19: + 0: 65535 + -1,-19: + 0: 65535 + 0,-18: + 0: 65520 + -1,-18: + 0: 65520 + 1,-20: + 2: 255 + 0: 61440 + 1,-19: + 0: 65535 + 1,-18: + 0: 65534 + 1,-21: + 2: 63248 + 2,-20: + 2: 52983 + 2,-19: + 0: 4369 + 2: 17604 + 2,-18: + 0: 56785 + 2,-21: + 2: 4096 + 3,-20: + 2: 4096 + 3,-19: + 2: 25139 + 3,-18: + 0: 30576 + -4,-19: + 2: 61132 + -4,-20: + 2: 32768 + -3,-20: + 2: 32766 + -3,-19: + 2: 17495 + -3,-18: + 2: 30583 + -2,-20: + 2: 255 + 0: 57344 + -2,-19: + 0: 65535 + -2,-18: + 0: 65535 + -2,-21: + 2: 65152 + -1,-21: + 2: 65535 + 5,-16: + 2: 4369 + 0: 52428 + 5,-15: + 2: 4369 + 0: 52428 + 5,-14: + 2: 273 + 0: 52428 + 5,-17: + 2: 4369 + 0: 50244 + 6,-16: + 0: 65535 + 6,-15: + 0: 32767 + 6,-14: + 0: 65535 + 6,-17: + 0: 61440 + 2: 241 + 7,-16: + 0: 65535 + 7,-15: + 0: 65535 + 7,-14: + 0: 65535 + 7,-17: + 0: 61440 + 2: 252 + 8,-16: + 0: 4369 + 2: 17476 + 8,-15: + 0: 4369 + 2: 17476 + 8,-14: + 0: 4369 + 2: 1092 + 8,-17: + 0: 4096 + 2: 19711 + 9,-16: + 8: 1911 + 9,-15: + 11: 1911 + 9,-14: + 8: 1911 + 10,-16: + 2: 64989 + 10,-15: + 2: 49087 + 10,-14: + 2: 65535 + 10,-17: + 2: 65535 + 11,-16: + 2: 56797 + 11,-15: + 2: 36749 + 11,-14: + 2: 56797 + 11,-17: + 2: 65395 + 12,-16: + 2: 56735 + 12,-15: + 2: 36749 + 12,-14: + 2: 7645 + 4,-18: + 2: 34816 + 5,-18: + 2: 65518 + 4,-17: + 2: 2184 + 5,-19: + 2: 60544 + 6,-19: + 2: 65534 + 6,-18: + 2: 4369 + 8: 52416 + 7,-19: + 2: 65527 + 7,-18: + 8: 4368 + 2: 16392 + 8,-19: + 2: 61696 + 8,-18: + 2: 65279 + 9,-18: + 2: 65328 + 9,-17: + 2: 4095 + 10,-18: + 2: 4352 + 12,-17: + 2: 61696 + 13,-16: + 2: 56831 + 13,-15: + 2: 36749 + 13,-14: + 2: 64989 + 13,-13: + 2: 31 + 13,-17: + 2: 4096 + 14,-16: + 2: 4353 + 14,-15: + 2: 769 + 14,-14: + 2: 273 + 14,-13: + 2: 1 + -1,-22: + 2: 61132 + -1,-23: + 2: 51336 + -1,-24: + 2: 32768 + 0,-24: + 2: 13107 + 0,-23: + 2: 30515 + 0,-22: + 2: 65527 + 0,-25: + 2: 4096 + -1,-25: + 2: 35840 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 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.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 23.57087 + - 88.67137 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.813705 + - 82.06108 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: BecomesStation + id: RadStation +- proto: AcousticGuitarInstrument + entities: + - uid: 3 + components: + - type: Transform + pos: 37.525913,4.7083726 + parent: 2 +- proto: AirAlarm + entities: + - uid: 4 + components: + - type: Transform + pos: -9.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 11152 + - 11153 + - 11154 + - 11155 + - 11268 + - 11267 + - 11156 + - 11157 + - 11375 + - 11374 + - 11373 + - 11372 + - 14694 + - 14866 + - 14693 + - 14891 + - 524 + - uid: 5 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-4.5 + parent: 2 + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-4.5 + parent: 2 + - uid: 8 + components: + - type: Transform + pos: -17.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 14931 + - 14775 + - 11377 + - 601 + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 11377 + - 11372 + - 11234 + - 11376 + - 14736 + - 14929 + - 14932 + - 14776 + - 600 + - uid: 10 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 11373 + - 11234 + - 14774 + - 14930 + - 599 + - uid: 11 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 11378 + - 11379 + - 11374 + - 14714 + - 14928 + - 11101 + - 563 + - uid: 12 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 + - uid: 13 + components: + - type: Transform + pos: 7.5,14.5 + parent: 2 + - type: DeviceList + devices: + - 11375 + - 11090 + - 14890 + - 14735 + - 562 + - uid: 14 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 11371 + - 11138 + - 14893 + - 14692 + - 522 + - uid: 16 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 11371 + - 11148 + - 11149 + - 11150 + - 11151 + - 11153 + - 11152 + - 14691 + - 14892 + - 523 + - uid: 17 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 11364 + - 11362 + - 11365 + - 14894 + - 14698 + - 519 + - uid: 18 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 11364 + - 11099 + - 521 + - uid: 19 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 11366 + - 11368 + - 11369 + - 14687 + - 14828 + - 516 + - uid: 20 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 11357 + - 11358 + - 11359 + - 11360 + - 11366 + - 11367 + - 14688 + - 14898 + - 517 + - uid: 21 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 11163 + - 11161 + - 11162 + - 11160 + - 11159 + - 11158 + - 11151 + - 11150 + - 11149 + - 11148 + - 11356 + - 11355 + - 14684 + - 14900 + - 514 + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-14.5 + parent: 2 + - type: DeviceList + devices: + - 11370 + - 11356 + - 11368 + - 11369 + - 14827 + - 14686 + - 515 + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 2 + - type: DeviceList + devices: + - 11355 + - 14906 + - 14761 + - 513 + - uid: 24 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 11363 + - 14897 + - 14690 + - 520 + - uid: 25 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,15.5 + parent: 2 + - uid: 26 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 11341 + - 11340 + - 14757 + - 14905 + - 504 + - uid: 27 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 11353 + - 11370 + - 11136 + - 14685 + - 14899 + - 512 + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 11163 + - 11162 + - 11161 + - 11341 + - 11353 + - 11170 + - 11339 + - 11167 + - 11168 + - 11169 + - 11354 + - 14683 + - 14901 + - 511 + - uid: 29 + components: + - type: Transform + pos: -36.5,-25.5 + parent: 2 + - type: DeviceList + devices: + - 11169 + - 11168 + - 11167 + - 11338 + - 11164 + - 11165 + - 11166 + - 11337 + - 11336 + - 11335 + - 11334 + - 11333 + - 11173 + - 11172 + - 11171 + - 11121 + - 14919 + - 14766 + - 14759 + - 14903 + - 500 + - uid: 30 + components: + - type: Transform + pos: -4.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 11175 + - 11330 + - 11174 + - 14663 + - 14910 + - 497 + - uid: 31 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 11164 + - 11165 + - 11166 + - 11344 + - 11345 + - 11346 + - 11343 + - 11342 + - 11120 + - 14769 + - 14922 + - 507 + - uid: 32 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 11342 + - 14768 + - 14921 + - 506 + - uid: 33 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-39.5 + parent: 2 + - uid: 34 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-25.5 + parent: 2 + - type: DeviceList + devices: + - 11340 + - 11170 + - 11339 + - 11334 + - 14758 + - 14902 + - 503 + - uid: 35 + components: + - type: Transform + pos: -25.5,-25.5 + parent: 2 + - type: DeviceList + devices: + - 11169 + - 11168 + - 11167 + - 11338 + - 11164 + - 11165 + - 11166 + - 11337 + - 11336 + - 11335 + - 11334 + - 11333 + - 11173 + - 11172 + - 11171 + - 11121 + - 14919 + - 14766 + - 14759 + - 14903 + - 500 + - uid: 36 + components: + - type: Transform + pos: -14.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 11333 + - 11352 + - 14762 + - 14907 + - 14763 + - 14908 + - 501 + - 502 + - uid: 37 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 11173 + - 11172 + - 11171 + - 11330 + - 11332 + - 14909 + - 14664 + - 499 + - 11426 + - 604 + - uid: 38 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 2 + - type: DeviceList + devices: + - 11173 + - 11172 + - 11171 + - 11330 + - 11332 + - 14909 + - 14664 + - 499 + - uid: 39 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 11335 + - 11135 + - 14904 + - 14760 + - 505 + - uid: 40 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 14752 + - 14844 + - 11307 + - 496 + - uid: 41 + components: + - type: Transform + pos: -3.5,-34.5 + parent: 2 + - uid: 42 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 11175 + - 11330 + - 11174 + - 14663 + - 14910 + - 14666 + - 14911 + - 14665 + - 14912 + - 14667 + - 14914 + - 14669 + - 14915 + - 14668 + - 14916 + - 14976 + - 14814 + - 498 + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-44.5 + parent: 2 + - type: DeviceList + devices: + - 11176 + - 11177 + - 11179 + - 11180 + - 11181 + - 11178 + - 14666 + - 14911 + - 14665 + - 14912 + - 14667 + - 14914 + - 14669 + - 14915 + - 14668 + - 14916 + - 498 + - uid: 44 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-50.5 + parent: 2 + - type: DeviceList + devices: + - 11179 + - 11180 + - 11176 + - 11177 + - 11181 + - 11178 + - 11228 + - 11122 + - 14666 + - 14911 + - 14665 + - 14912 + - 14667 + - 14914 + - 14669 + - 14915 + - 14668 + - 14916 + - 498 + - uid: 45 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-44.5 + parent: 2 + - type: DeviceList + devices: + - 11348 + - 11347 + - 11344 + - 11345 + - 14770 + - 14924 + - 508 + - uid: 46 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 11347 + - 11348 + - 11118 + - 14923 + - 14771 + - 509 + - uid: 47 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-48.5 + parent: 2 + - type: DeviceList + devices: + - 11351 + - 11350 + - 11346 + - 11349 + - 14926 + - 14773 + - 510 + - 14925 + - 14772 + - uid: 48 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-48.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: -13.5,-54.5 + parent: 2 + - type: DeviceList + devices: + - 11231 + - 11230 + - 11134 + - 14838 + - 14679 + - 490 + - uid: 50 + components: + - type: Transform + pos: 17.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 11182 + - 11183 + - 11184 + - 11185 + - 11266 + - 11267 + - 11268 + - 11265 + - 11264 + - 14715 + - 14865 + - 543 + - uid: 51 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 11197 + - 11196 + - 11195 + - 11192 + - 11193 + - 11194 + - 11186 + - 11187 + - 11188 + - 11189 + - 11190 + - 11191 + - 11184 + - 11183 + - 11182 + - 11262 + - 14871 + - 14732 + - 14716 + - 14867 + - 544 + - uid: 52 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 11126 + - 11266 + - 11185 + - 14864 + - 14754 + - 542 + - uid: 53 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 11097 + - 11276 + - 11275 + - 11274 + - 14674 + - 14855 + - 534 + - uid: 54 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 11277 + - 11095 + - 14853 + - 14741 + - 535 + - uid: 55 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 11243 + - 11240 + - 11239 + - 11238 + - 11237 + - 11236 + - 11235 + - 11242 + - 14717 + - 14873 + - 14872 + - 14697 + - 14868 + - 14733 + - 547 + - uid: 56 + components: + - type: Transform + pos: 24.5,24.5 + parent: 2 + - type: DeviceList + devices: + - 11091 + - 11243 + - 14874 + - 14718 + - 548 + - uid: 57 + components: + - type: Transform + pos: 15.5,19.5 + parent: 2 + - uid: 58 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 11197 + - 11196 + - 11195 + - 11192 + - 11193 + - 11194 + - 11186 + - 11187 + - 11188 + - 11189 + - 11190 + - 11191 + - 11184 + - 11183 + - 11182 + - 11262 + - 14871 + - 14732 + - 14716 + - 14867 + - 544 + - uid: 59 + components: + - type: Transform + pos: 36.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 11248 + - 11245 + - 11247 + - 11246 + - 14876 + - 14750 + - 550 + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 11145 + - 14878 + - 14710 + - 552 + - uid: 61 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 11263 + - 14731 + - 14870 + - 546 + - uid: 62 + components: + - type: Transform + pos: 41.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 11248 + - 11144 + - 14877 + - 14651 + - 551 + - uid: 63 + components: + - type: Transform + pos: 38.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 14869 + - 14812 + - 11262 + - 545 + - uid: 64 + components: + - type: Transform + pos: 40.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 11147 + - 11264 + - 11265 + - 11269 + - 14862 + - 14753 + - 14863 + - 14734 + - 541 + - uid: 65 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,20.5 + parent: 2 + - uid: 66 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,28.5 + parent: 2 + - type: DeviceList + devices: + - 11258 + - 11256 + - 11257 + - 11250 + - 14885 + - 14720 + - 556 + - uid: 67 + components: + - type: Transform + pos: 37.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 11198 + - 11199 + - 11200 + - 11201 + - 11202 + - 11203 + - 11250 + - 11249 + - 11244 + - 11145 + - 14725 + - 14927 + - 14728 + - 14879 + - 553 + - uid: 68 + components: + - type: Transform + pos: 17.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 11259 + - 11260 + - 11256 + - 14886 + - 14755 + - 557 + - uid: 69 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 14756 + - 14889 + - 558 + - uid: 70 + components: + - type: Transform + pos: 13.5,45.5 + parent: 2 + - type: DeviceList + devices: + - 11261 + - 11259 + - 14887 + - 14724 + - 559 + - uid: 71 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,43.5 + parent: 2 + - type: DeviceList + devices: + - 11261 + - 11257 + - 14721 + - 14888 + - 560 + - uid: 72 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,39.5 + parent: 2 + - type: DeviceList + devices: + - 11198 + - 11199 + - 11200 + - 11201 + - 11202 + - 11203 + - 11250 + - 11249 + - 11244 + - 11145 + - 14725 + - 14927 + - 14728 + - 14879 + - 555 + - uid: 73 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,40.5 + parent: 2 + - type: DeviceList + devices: + - 11206 + - 11205 + - 11204 + - 11252 + - 11251 + - 14880 + - 14730 + - 554 + - uid: 74 + components: + - type: Transform + pos: 46.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 14744 + - 14860 + - 11271 + - 537 + - uid: 75 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 11270 + - 14811 + - 14974 + - 536 + - uid: 76 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 11269 + - 14743 + - 14973 + - 540 + - uid: 77 + components: + - type: Transform + pos: -18.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 11380 + - 11141 + - 14934 + - 14696 + - 593 + - uid: 78 + components: + - type: Transform + pos: -8.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 11388 + - 11387 + - 11208 + - 11209 + - 11210 + - 11385 + - 11386 + - 11383 + - 11384 + - 11211 + - 11212 + - 11213 + - 14938 + - 14935 + - 14777 + - 14778 + - 14936 + - 14937 + - 14779 + - 581 + - uid: 79 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,33.5 + parent: 2 + - type: DeviceList + devices: + - 11386 + - 11389 + - 11390 + - 14781 + - 14941 + - 582 + - uid: 80 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,34.5 + parent: 2 + - type: DeviceList + devices: + - 11392 + - 11391 + - 11385 + - 11389 + - 14699 + - 14939 + - 584 + - uid: 81 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 591 + - 14794 + - 14956 + - 11401 + - uid: 82 + components: + - type: Transform + pos: -16.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 11392 + - 14780 + - 14940 + - 583 + - uid: 83 + components: + - type: Transform + pos: -35.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 11404 + - 11403 + - 11402 + - 14788 + - 14948 + - 595 + - uid: 84 + components: + - type: Transform + pos: -21.5,42.5 + parent: 2 + - type: DeviceList + devices: + - 11398 + - 11399 + - 14703 + - 14945 + - 588 + - uid: 85 + components: + - type: Transform + pos: -25.5,46.5 + parent: 2 + - type: DeviceList + devices: + - 11399 + - 14829 + - 14785 + - 589 + - uid: 86 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 11400 + - 14944 + - 14784 + - 587 + - uid: 87 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 11408 + - 14953 + - 14702 + - 590 + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 11403 + - 11408 + - 11409 + - 14701 + - 14954 + - 596 + - uid: 89 + components: + - type: Transform + pos: -39.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 11409 + - 14952 + - 14792 + - 597 + - uid: 90 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 11407 + - 11406 + - 11405 + - 11404 + - 14704 + - 14830 + - 14949 + - 14789 + - 14950 + - 14790 + - 14951 + - 14791 + - 594 + - uid: 91 + components: + - type: Transform + pos: -38.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 14793 + - 14955 + - 598 + - uid: 92 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,34.5 + parent: 2 + - type: DeviceList + devices: + - 11393 + - 11391 + - 14943 + - 14783 + - 585 + - uid: 93 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 11215 + - 11214 + - 11397 + - 11396 + - 11142 + - 14705 + - 14957 + - 580 + - uid: 94 + components: + - type: Transform + pos: -32.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 11402 + - 11401 + - 11395 + - 11394 + - 11211 + - 11212 + - 11213 + - 11393 + - 11400 + - 11398 + - 14947 + - 14700 + - 586 + - uid: 95 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 11411 + - 14795 + - 14958 + - 565 + - uid: 96 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,33.5 + parent: 2 + - type: DeviceList + devices: + - 11412 + - 11413 + - 14833 + - 14711 + - 566 + - uid: 97 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,43.5 + parent: 2 + - type: DeviceList + devices: + - 11413 + - 14796 + - 14959 + - 567 + - uid: 98 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,44.5 + parent: 2 + - type: DeviceList + devices: + - 11223 + - 11222 + - 11221 + - 11220 + - 11414 + - 11415 + - 11416 + - 11417 + - 14960 + - 14708 + - 602 + - uid: 99 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,46.5 + parent: 2 + - type: DeviceList + devices: + - 11425 + - 11424 + - 14652 + - 14832 + - 571 + - uid: 100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,50.5 + parent: 2 + - type: DeviceList + devices: + - 11424 + - 11423 + - 14963 + - 14709 + - 570 + - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,47.5 + parent: 2 + - type: DeviceList + devices: + - 11414 + - 11420 + - 11419 + - 14815 + - 14712 + - 484 + - uid: 102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,56.5 + parent: 2 + - type: DeviceList + devices: + - 11415 + - 11420 + - 11418 + - 14653 + - 14961 + - 568 + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,57.5 + parent: 2 + - type: DeviceList + devices: + - 11423 + - 11422 + - 11421 + - 11418 + - 14962 + - 14797 + - 569 + - uid: 104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,68.5 + parent: 2 + - type: DeviceList + devices: + - 572 + - uid: 105 + components: + - type: Transform + pos: -2.5,73.5 + parent: 2 + - type: DeviceList + devices: + - 573 + - 14964 + - 14800 + - uid: 106 + components: + - type: Transform + pos: 9.5,81.5 + parent: 2 + - type: DeviceList + devices: + - 575 + - 14967 + - 14801 + - uid: 107 + components: + - type: Transform + pos: 7.5,86.5 + parent: 2 + - type: DeviceList + devices: + - 576 + - 14968 + - 14802 + - uid: 108 + components: + - type: Transform + pos: -4.5,86.5 + parent: 2 + - type: DeviceList + devices: + - 578 + - 14804 + - 14970 + - uid: 109 + components: + - type: Transform + pos: -6.5,81.5 + parent: 2 + - type: DeviceList + devices: + - 579 + - 14805 + - 14971 + - uid: 110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 11096 + - 11098 + - 11124 + - 11296 + - 11297 + - 14749 + - 14849 + - 530 + - uid: 111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 11297 + - 11296 + - 11295 + - 11129 + - 14681 + - 14848 + - 529 + - uid: 112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 11280 + - 11281 + - 11282 + - 11285 + - 11286 + - 11287 + - 11295 + - 11294 + - 11292 + - 11291 + - 11290 + - 11289 + - 11288 + - 11293 + - 14847 + - 14671 + - 14852 + - 14739 + - 527 + - uid: 113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 11293 + - 14850 + - 14740 + - uid: 114 + components: + - type: Transform + pos: 40.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 11147 + - 11270 + - 11282 + - 11281 + - 11280 + - 11279 + - 11278 + - 11277 + - 11276 + - 11275 + - 11274 + - 11272 + - 11273 + - 11271 + - 14854 + - 14673 + - 14742 + - 14857 + - 533 + - uid: 115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 11283 + - 14859 + - 14682 + - 539 + - uid: 116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 11272 + - 11273 + - 11283 + - 11125 + - 14858 + - 14675 + - 538 + - uid: 117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 11279 + - 11278 + - 11284 + - 11128 + - 14861 + - 14748 + - 531 + - uid: 118 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 2 + - type: DeviceList + devices: + - 14747 + - 14856 + - 11284 + - 532 + - uid: 119 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 11285 + - 11286 + - 11287 + - 14745 + - 14851 + - 528 + - uid: 120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-33.5 + parent: 2 + - type: DeviceList + devices: + - 11288 + - 11289 + - 11306 + - 11305 + - 11304 + - 11123 + - 14846 + - 14738 + - 526 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-26.5 + parent: 2 + - type: DeviceList + devices: + - 11300 + - 11299 + - 11298 + - 11292 + - 11291 + - 11290 + - 11303 + - 11302 + - 11301 + - 11304 + - 11305 + - 11306 + - 14845 + - 14670 + - 525 + - uid: 122 + components: + - type: Transform + pos: 14.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 11314 + - 11315 + - 11318 + - 11324 + - 11323 + - 11131 + - 11130 + - 14662 + - 14824 + - 14659 + - 14823 + - 485 + - uid: 123 + components: + - type: Transform + pos: 34.5,-40.5 + parent: 2 + - type: DeviceList + devices: + - 11323 + - 11227 + - 14658 + - 14822 + - 494 + - uid: 124 + components: + - type: Transform + pos: 8.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 11310 + - 11311 + - 11315 + - 11314 + - 11313 + - 11312 + - 14810 + - 14972 + - 486 + - uid: 125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-49.5 + parent: 2 + - type: DeviceList + devices: + - 11225 + - 11224 + - 11312 + - 11313 + - 11318 + - 11317 + - 11316 + - 11320 + - 11321 + - 11319 + - 11322 + - 11132 + - 14677 + - 14835 + - 14836 + - 14806 + - 487 + - uid: 126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-54.5 + parent: 2 + - type: DeviceList + devices: + - 11319 + - 14746 + - 14825 + - 493 + - uid: 127 + components: + - type: Transform + pos: 6.5,28.5 + parent: 2 + - type: DeviceList + devices: + - 14834 + - 14713 + - 11410 + - 11143 + - 564 + - uid: 128 + components: + - type: Transform + pos: -1.5,-54.5 + parent: 2 + - type: DeviceList + devices: + - 11230 + - 11231 + - 11327 + - 11325 + - 11133 + - 14837 + - 14678 + - 489 + - uid: 129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-58.5 + parent: 2 + - type: DeviceList + devices: + - 11326 + - 11325 + - 11321 + - 11320 + - 14807 + - 14826 + - 488 + - uid: 130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-66.5 + parent: 2 + - type: DeviceList + devices: + - 11232 + - 11233 + - 14680 + - 14841 + - 492 + - uid: 131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-66.5 + parent: 2 + - uid: 132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-64.5 + parent: 2 + - type: DeviceList + devices: + - 11327 + - 11328 + - 11326 + - 11329 + - 11233 + - 11232 + - 14839 + - 14840 + - 14809 + - 14808 + - 491 + - uid: 133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-65.5 + parent: 2 + - type: DeviceList + devices: + - 11314 + - 11315 + - 11318 + - 11324 + - 11323 + - 11131 + - 11130 + - 14662 + - 14824 + - 14659 + - 14823 + - 485 + - uid: 134 + components: + - type: Transform + pos: 36.5,-47.5 + parent: 2 + - uid: 135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 11380 + - 11381 + - 11382 + - 11376 + - 11207 + - 11140 + - 14933 + - 14695 + - 592 + - uid: 136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 11156 + - 11157 + - 11300 + - 11299 + - 11298 + - 11307 + - 11308 + - 11175 + - 11224 + - 11225 + - 11310 + - 11311 + - 11309 + - 14661 + - 14842 + - 14843 + - 14676 + - 495 + - uid: 137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 11104 + - 14975 + - 14813 + - 561 + - uid: 138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 11195 + - 11196 + - 11197 + - 11245 + - 11229 + - 11242 + - 11244 + - 11247 + - 11246 + - 14719 + - 14875 + - 549 + - uid: 139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 11158 + - 11159 + - 11160 + - 11363 + - 11361 + - 11360 + - 11359 + - 11358 + - 11357 + - 11362 + - 14689 + - 14896 + - 518 + - uid: 140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,24.5 + parent: 2 + - type: DeviceList + devices: + - 11154 + - 11155 + - 11207 + - 11378 + - 11410 + - 11216 + - 11217 + - 11218 + - 11219 + - 11411 + - 14707 + - 14831 + - 14787 + - 14946 + - 603 + - uid: 141 + components: + - type: Transform + pos: 6.5,73.5 + parent: 2 + - type: DeviceList + devices: + - 574 + - 14966 + - 14798 + - uid: 142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,83.5 + parent: 2 + - type: DeviceList + devices: + - 577 + - 14803 + - 14969 +- proto: AirCanister + entities: + - uid: 143 + components: + - type: Transform + pos: 28.5,-28.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: -21.5,12.5 + parent: 2 +- proto: Airlock + entities: + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,11.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: 38.5,25.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - uid: 149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,36.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18281 + - uid: 150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18280 +- proto: AirlockArmoryGlassLocked + entities: + - uid: 151 + components: + - type: Transform + pos: -15.5,30.5 + parent: 2 + - uid: 152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,32.5 + parent: 2 +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-40.5 + parent: 2 + - uid: 155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-47.5 + parent: 2 + - uid: 156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-43.5 + parent: 2 + - type: DeviceLinkSink + links: + - 157 + - type: DeviceLinkSource + linkedPorts: + 157: + - DoorStatus: DoorBolt + - uid: 157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-43.5 + parent: 2 + - type: DeviceLinkSink + links: + - 156 + - type: DeviceLinkSource + linkedPorts: + 156: + - DoorStatus: DoorBolt + - uid: 22690 + components: + - type: Transform + pos: 9.5,-41.5 + parent: 2 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-44.5 + parent: 2 + - uid: 159 + components: + - type: Transform + pos: 33.5,-51.5 + parent: 2 +- proto: AirlockBarLocked + entities: + - uid: 160 + components: + - type: Transform + pos: 16.5,15.5 + parent: 2 +- proto: AirlockCaptainGlassLocked + entities: + - uid: 161 + components: + - type: Transform + pos: -3.5,57.5 + parent: 2 +- proto: AirlockCaptainLocked + entities: + - uid: 162 + components: + - type: Transform + pos: -9.5,50.5 + parent: 2 + - uid: 163 + components: + - type: Transform + pos: -7.5,51.5 + parent: 2 +- proto: AirlockCargoGlassLocked + entities: + - uid: 164 + components: + - type: Transform + pos: -36.5,7.5 + parent: 2 + - uid: 165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,5.5 + parent: 2 +- proto: AirlockCargoLocked + entities: + - uid: 166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,10.5 + parent: 2 +- proto: AirlockChapelLocked + entities: + - uid: 167 + components: + - type: Transform + pos: 18.5,39.5 + parent: 2 + - uid: 168 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - uid: 169 + components: + - type: Transform + pos: 15.5,41.5 + parent: 2 + - uid: 170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,43.5 + parent: 2 +- proto: AirlockChemistryLocked + entities: + - uid: 171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-22.5 + parent: 2 + - uid: 172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-31.5 + parent: 2 +- proto: AirlockChiefEngineerLocked + entities: + - uid: 173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-52.5 + parent: 2 +- proto: AirlockChiefJusticeLocked + entities: + - uid: 145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,11.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 174 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 2 + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-22.5 + parent: 2 +- proto: AirlockCommandGlassLocked + entities: + - uid: 176 + components: + - type: Transform + pos: 7.5,36.5 + parent: 2 + - uid: 177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,54.5 + parent: 2 + - uid: 178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,57.5 + parent: 2 + - uid: 179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,57.5 + parent: 2 + - uid: 180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,54.5 + parent: 2 +- proto: AirlockCommandLocked + entities: + - uid: 181 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 2 + - uid: 182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-23.5 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: 3.5,26.5 + parent: 2 + - uid: 184 + components: + - type: Transform + pos: 3.5,52.5 + parent: 2 + - uid: 185 + components: + - type: Transform + pos: 5.5,57.5 + parent: 2 +- proto: AirlockCorpsmanGlassLocked + entities: + - uid: 186 + components: + - type: Transform + pos: -25.5,35.5 + parent: 2 +- proto: AirlockDetectiveLocked + entities: + - uid: 187 + components: + - type: Transform + pos: -17.5,19.5 + parent: 2 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,18.5 + parent: 2 + - uid: 190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-40.5 + parent: 2 + - uid: 191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-43.5 + parent: 2 + - uid: 192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-43.5 + parent: 2 + - uid: 193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-55.5 + parent: 2 + - uid: 194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-36.5 + parent: 2 + - uid: 195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-57.5 + parent: 2 + - uid: 196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-61.5 + parent: 2 + - uid: 197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-65.5 + parent: 2 + - uid: 198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-67.5 + parent: 2 + - uid: 22679 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 2 +- proto: AirlockEngineeringLocked + entities: + - uid: 199 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: -32.5,-55.5 + parent: 2 + - uid: 201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-54.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: -5.5,-54.5 + parent: 2 + - uid: 203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,23.5 + parent: 2 + - uid: 204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,16.5 + parent: 2 + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-57.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,46.5 + parent: 2 + - uid: 208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-61.5 + parent: 2 + - uid: 209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-61.5 + parent: 2 + - uid: 210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-51.5 + parent: 2 + - uid: 211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-55.5 + parent: 2 + - uid: 212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-16.5 + parent: 2 + - uid: 213 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 +- proto: AirlockExternalAtmosphericsLocked + entities: + - uid: 214 + components: + - type: Transform + pos: -7.5,77.5 + parent: 2 + - type: DeviceLinkSink + links: + - 215 + - type: DeviceLinkSource + linkedPorts: + 215: + - DoorStatus: DoorBolt + - uid: 215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,77.5 + parent: 2 + - type: DeviceLinkSink + links: + - 214 + - type: DeviceLinkSource + linkedPorts: + 214: + - DoorStatus: DoorBolt + - uid: 216 + components: + - type: Transform + pos: 22.5,-65.5 + parent: 2 + - type: DeviceLinkSink + links: + - 217 + - type: DeviceLinkSource + linkedPorts: + 217: + - DoorStatus: DoorBolt + - uid: 217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-67.5 + parent: 2 + - type: DeviceLinkSink + links: + - 216 + - type: DeviceLinkSource + linkedPorts: + 216: + - DoorStatus: DoorBolt + - uid: 218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-46.5 + parent: 2 + - type: DeviceLinkSink + links: + - 219 + - type: DeviceLinkSource + linkedPorts: + 219: + - DoorStatus: DoorBolt + - uid: 219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-46.5 + parent: 2 + - type: DeviceLinkSink + links: + - 218 + - type: DeviceLinkSource + linkedPorts: + 218: + - DoorStatus: DoorBolt +- proto: AirlockExternalEngineeringLocked + entities: + - uid: 220 + components: + - type: Transform + pos: -36.5,-54.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: -38.5,-54.5 + parent: 2 + - uid: 222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,47.5 + parent: 2 + - type: DeviceLinkSink + links: + - 223 + - type: DeviceLinkSource + linkedPorts: + 223: + - DoorStatus: DoorBolt + - uid: 223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,47.5 + parent: 2 + - type: DeviceLinkSink + links: + - 222 + - type: DeviceLinkSource + linkedPorts: + 222: + - DoorStatus: DoorBolt + - uid: 224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-60.5 + parent: 2 + - uid: 225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-62.5 + parent: 2 +- proto: AirlockExternalGlass + entities: + - uid: 226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,40.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: 45.5,39.5 + parent: 2 + - uid: 228 + components: + - type: Transform + pos: 45.5,32.5 + parent: 2 + - uid: 229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-12.5 + parent: 2 + - uid: 230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-6.5 + parent: 2 + - uid: 231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-4.5 + parent: 2 + - uid: 232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-14.5 + parent: 2 +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-1.5 + parent: 2 + - uid: 234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,0.5 + parent: 2 + - uid: 235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-11.5 + parent: 2 + - type: DeviceLinkSink + links: + - 236 + - type: DeviceLinkSource + linkedPorts: + 236: + - DoorStatus: DoorBolt + - uid: 236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-11.5 + parent: 2 + - type: DeviceLinkSink + links: + - 235 + - type: DeviceLinkSource + linkedPorts: + 235: + - DoorStatus: DoorBolt + - uid: 237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-18.5 + parent: 2 +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 238 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: 49.5,23.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: 43.5,47.5 + parent: 2 + - uid: 241 + components: + - type: Transform + pos: 43.5,49.5 + parent: 2 +- proto: AirlockExternalGlassLocked + entities: + - uid: 242 + components: + - type: Transform + pos: -10.5,43.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: -12.5,43.5 + parent: 2 + - uid: 244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,40.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: -41.5,22.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: -45.5,-43.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: -43.5,-43.5 + parent: 2 + - uid: 248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-34.5 + parent: 2 + - type: DeviceLinkSink + links: + - 249 + - type: DeviceLinkSource + linkedPorts: + 249: + - DoorStatus: DoorBolt + - uid: 249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-34.5 + parent: 2 + - type: DeviceLinkSink + links: + - 248 + - type: DeviceLinkSource + linkedPorts: + 248: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,32.5 + parent: 2 + - uid: 251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,39.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-12.5 + parent: 2 + - uid: 253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-4.5 + parent: 2 + - uid: 254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-6.5 + parent: 2 + - uid: 255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-14.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-26.5 + parent: 2 + - uid: 257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,42.5 + parent: 2 + - uid: 258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,42.5 + parent: 2 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,0.5 + parent: 2 + - uid: 260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-1.5 + parent: 2 + - uid: 261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,26.5 + parent: 2 + - uid: 262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,22.5 + parent: 2 +- proto: AirlockExternalLocked + entities: + - uid: 263 + components: + - type: Transform + pos: -47.5,-26.5 + parent: 2 +- proto: AirlockFreezerLocked + entities: + - uid: 264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,20.5 + parent: 2 +- proto: AirlockGlass + entities: + - uid: 265 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 266 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 267 + components: + - type: Transform + pos: -8.5,8.5 + parent: 2 + - uid: 269 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 270 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 2 + - uid: 274 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 2 + - uid: 275 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 2 + - uid: 277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,21.5 + parent: 2 + - uid: 278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,23.5 + parent: 2 + - uid: 279 + components: + - type: Transform + pos: 26.5,31.5 + parent: 2 + - uid: 280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,35.5 + parent: 2 + - uid: 281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,38.5 + parent: 2 + - uid: 282 + components: + - type: Transform + pos: 41.5,35.5 + parent: 2 + - uid: 283 + components: + - type: Transform + pos: 41.5,38.5 + parent: 2 + - uid: 284 + components: + - type: Transform + pos: -35.5,32.5 + parent: 2 + - uid: 285 + components: + - type: Transform + pos: -35.5,35.5 + parent: 2 + - uid: 286 + components: + - type: Transform + pos: -35.5,38.5 + parent: 2 + - uid: 287 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - uid: 289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,0.5 + parent: 2 + - uid: 15015 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 17624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,14.5 + parent: 2 + - uid: 19025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,1.5 + parent: 2 + - uid: 19804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 2 +- proto: AirlockHeadOfPersonnelGlassLocked + entities: + - uid: 290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,49.5 + parent: 2 +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,51.5 + parent: 2 +- proto: AirlockHeadOfSecurityGlassLocked + entities: + - uid: 292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,37.5 + parent: 2 +- proto: AirlockHeadOfSecurityLocked + entities: + - uid: 293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,42.5 + parent: 2 +- proto: AirlockHydroGlassLocked + entities: + - uid: 294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,16.5 + parent: 2 +- proto: AirlockHydroponicsLocked + entities: + - uid: 295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,18.5 + parent: 2 +- proto: AirlockJanitorLocked + entities: + - uid: 297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,14.5 + parent: 2 + - uid: 16319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 2 +- proto: AirlockJusticeLocked + entities: + - uid: 476 + components: + - type: Transform + pos: -2.5,12.5 + parent: 2 + - uid: 477 + components: + - type: Transform + pos: -7.5,15.5 + parent: 2 + - uid: 478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,17.5 + parent: 2 +- proto: AirlockKitchenGlassLocked + entities: + - uid: 298 + components: + - type: Transform + pos: 27.5,14.5 + parent: 2 +- proto: AirlockKitchenLocked + entities: + - uid: 299 + components: + - type: Transform + pos: 23.5,15.5 + parent: 2 +- proto: AirlockMailGlassLocked + entities: + - uid: 300 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 2 +- proto: AirlockMailLocked + entities: + - uid: 301 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 2 +- proto: AirlockMaintAtmoLocked + entities: + - uid: 303 + components: + - type: Transform + pos: 13.5,-39.5 + parent: 2 + - uid: 304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-38.5 + parent: 2 +- proto: AirlockMaintBarLocked + entities: + - uid: 305 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 +- proto: AirlockMaintCargoLocked + entities: + - uid: 306 + components: + - type: Transform + pos: -24.5,11.5 + parent: 2 + - uid: 307 + components: + - type: Transform + pos: -40.5,13.5 + parent: 2 +- proto: AirlockMaintChemLocked + entities: + - uid: 308 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 2 + - uid: 309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-33.5 + parent: 2 +- proto: AirlockMaintCommandLocked + entities: + - uid: 310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,23.5 + parent: 2 +- proto: AirlockMaintDetectiveLocked + entities: + - uid: 311 + components: + - type: Transform + pos: -20.5,17.5 + parent: 2 +- proto: AirlockMaintEngiLocked + entities: + - uid: 312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,18.5 + parent: 2 + - uid: 313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-46.5 + parent: 2 +- proto: AirlockMaintGlass + entities: + - uid: 268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,7.5 + parent: 2 +- proto: AirlockMaintHydroLocked + entities: + - uid: 314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,20.5 + parent: 2 +- proto: AirlockMaintKitchenLocked + entities: + - uid: 315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,24.5 + parent: 2 +- proto: AirlockMaintLocked + entities: + - uid: 316 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 317 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - uid: 318 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 319 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: -15.5,3.5 + parent: 2 + - uid: 321 + components: + - type: Transform + pos: -18.5,6.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 2 + - uid: 325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,3.5 + parent: 2 + - uid: 326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 2 + - uid: 327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,5.5 + parent: 2 + - uid: 328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 334 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 2 + - uid: 335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - uid: 337 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 2 + - uid: 340 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 2 + - uid: 341 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 2 + - uid: 342 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 2 + - uid: 343 + components: + - type: Transform + pos: -21.5,-13.5 + parent: 2 + - uid: 344 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - uid: 345 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 2 + - uid: 346 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 2 + - uid: 347 + components: + - type: Transform + pos: -20.5,3.5 + parent: 2 + - uid: 348 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - uid: 349 + components: + - type: Transform + pos: -35.5,-22.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: -43.5,-26.5 + parent: 2 + - uid: 351 + components: + - type: Transform + pos: -20.5,-40.5 + parent: 2 + - uid: 352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-50.5 + parent: 2 + - uid: 353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-51.5 + parent: 2 + - uid: 354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-53.5 + parent: 2 + - uid: 355 + components: + - type: Transform + pos: -28.5,-56.5 + parent: 2 + - uid: 356 + components: + - type: Transform + pos: -33.5,-59.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: -29.5,-58.5 + parent: 2 + - uid: 358 + components: + - type: Transform + pos: -25.5,-59.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: -27.5,-61.5 + parent: 2 + - uid: 360 + components: + - type: Transform + pos: -33.5,-63.5 + parent: 2 + - uid: 361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-61.5 + parent: 2 + - uid: 362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-52.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: -4.5,-51.5 + parent: 2 + - uid: 364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-47.5 + parent: 2 + - uid: 365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-42.5 + parent: 2 + - uid: 366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-1.5 + parent: 2 + - uid: 367 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 2 + - uid: 368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-8.5 + parent: 2 + - uid: 369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-13.5 + parent: 2 + - uid: 370 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 2 + - uid: 371 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 372 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - uid: 373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,25.5 + parent: 2 + - uid: 374 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: 15.5,26.5 + parent: 2 + - uid: 376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,26.5 + parent: 2 + - uid: 377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,16.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: -30.5,20.5 + parent: 2 + - uid: 379 + components: + - type: Transform + pos: -4.5,41.5 + parent: 2 + - uid: 380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,42.5 + parent: 2 + - uid: 381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,45.5 + parent: 2 + - uid: 382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-35.5 + parent: 2 + - type: Door + secondsUntilStateChange: -52177.2 + state: Opening + - uid: 383 + components: + - type: Transform + pos: 3.5,-35.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 2 + - uid: 385 + components: + - type: Transform + pos: 17.5,-34.5 + parent: 2 + - uid: 386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-37.5 + parent: 2 + - uid: 387 + components: + - type: Transform + pos: 37.5,-38.5 + parent: 2 + - uid: 388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-53.5 + parent: 2 + - uid: 389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-14.5 + parent: 2 + - uid: 390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-18.5 + parent: 2 + - uid: 391 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 +- proto: AirlockMaintMedLocked + entities: + - uid: 392 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 + - uid: 393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-31.5 + parent: 2 + - uid: 394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-26.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: 27.5,-33.5 + parent: 2 +- proto: AirlockMaintRnDLocked + entities: + - uid: 396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-34.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: -36.5,-32.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 + - uid: 399 + components: + - type: Transform + pos: -21.5,-34.5 + parent: 2 + - uid: 400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-50.5 + parent: 2 + - uid: 401 + components: + - type: Transform + pos: -40.5,-30.5 + parent: 2 +- proto: AirlockMaintRnDMedLocked + entities: + - uid: 402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-33.5 + parent: 2 +- proto: AirlockMaintSalvageLocked + entities: + - uid: 403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-21.5 + parent: 2 +- proto: AirlockMaintSecLocked + entities: + - uid: 404 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 + - uid: 405 + components: + - type: Transform + pos: -16.5,17.5 + parent: 2 +- proto: AirlockMantisGlassLocked + entities: + - uid: 406 + components: + - type: Transform + pos: -10.5,-25.5 + parent: 2 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-13.5 + parent: 2 + - uid: 408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-21.5 + parent: 2 + - uid: 409 + components: + - type: Transform + pos: 39.5,-16.5 + parent: 2 + - uid: 410 + components: + - type: Transform + pos: 29.5,-30.5 + parent: 2 + - uid: 411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 2 + - uid: 412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-23.5 + parent: 2 + - uid: 413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-24.5 + parent: 2 + - uid: 22685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 2 +- proto: AirlockMedicalLocked + entities: + - uid: 415 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 + - uid: 416 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 2 + - uid: 417 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 + - uid: 418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 2 + - uid: 419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 2 + - uid: 420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-24.5 + parent: 2 +- proto: AirlockMedicalScienceLocked + entities: + - uid: 421 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 2 +- proto: AirlockQuartermasterLocked + entities: + - uid: 422 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - uid: 423 + components: + - type: Transform + pos: -26.5,7.5 + parent: 2 + - uid: 424 + components: + - type: Transform + pos: -30.5,9.5 + parent: 2 + - uid: 425 + components: + - type: Transform + pos: -22.5,7.5 + parent: 2 +- proto: AirlockResearchDirectorLocked + entities: + - uid: 426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-32.5 + parent: 2 + - uid: 427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-25.5 + parent: 2 + - uid: 428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-21.5 + parent: 2 +- proto: AirlockSalvageLocked + entities: + - uid: 429 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 2 + - uid: 430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 2 + - uid: 431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-14.5 + parent: 2 + - uid: 432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-19.5 + parent: 2 +- proto: AirlockScienceGlassLocked + entities: + - uid: 433 + components: + - type: Transform + pos: -22.5,-25.5 + parent: 2 + - uid: 434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-46.5 + parent: 2 + - uid: 435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-46.5 + parent: 2 + - uid: 436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-50.5 + parent: 2 + - uid: 437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-29.5 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 2 +- proto: AirlockScienceLocked + entities: + - uid: 439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-17.5 + parent: 2 + - uid: 440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-17.5 + parent: 2 + - uid: 441 + components: + - type: Transform + pos: -29.5,-25.5 + parent: 2 + - uid: 442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-28.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: -33.5,-44.5 + parent: 2 + - uid: 444 + components: + - type: Transform + pos: -35.5,-43.5 + parent: 2 + - uid: 445 + components: + - type: Transform + pos: -35.5,-42.5 + parent: 2 + - uid: 446 + components: + - type: Transform + pos: -31.5,-40.5 + parent: 2 + - uid: 447 + components: + - type: Transform + pos: -21.5,-29.5 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: -4.5,-27.5 + parent: 2 + - uid: 449 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 2 + - uid: 450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-48.5 + parent: 2 + - uid: 451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-37.5 + parent: 2 + - uid: 452 + components: + - type: Transform + pos: -43.5,-37.5 + parent: 2 + - uid: 453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-37.5 + parent: 2 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,26.5 + parent: 2 + - uid: 455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-33.5 + parent: 2 + - uid: 456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-1.5 + parent: 2 + - uid: 457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-13.5 + parent: 2 + - uid: 458 + components: + - type: Transform + pos: -12.5,30.5 + parent: 2 + - uid: 459 + components: + - type: Transform + pos: -9.5,36.5 + parent: 2 + - uid: 460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,40.5 + parent: 2 + - uid: 461 + components: + - type: Transform + pos: -34.5,24.5 + parent: 2 + - uid: 462 + components: + - type: Transform + pos: -38.5,29.5 + parent: 2 + - uid: 463 + components: + - type: Transform + pos: -36.5,27.5 + parent: 2 + - uid: 464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,29.5 + parent: 2 + - uid: 465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: 5.5,-50.5 + parent: 2 + - uid: 467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,30.5 + parent: 2 +- proto: AirlockSecurityLawyerGlassLocked + entities: + - uid: 468 + components: + - type: Transform + pos: -14.5,21.5 + parent: 2 + - uid: 469 + components: + - type: Transform + pos: -16.5,21.5 + parent: 2 + - uid: 470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,24.5 + parent: 2 + - uid: 471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,24.5 + parent: 2 + - uid: 472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18259 + - uid: 473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18259 + - uid: 474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,35.5 + parent: 2 + - uid: 475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,35.5 + parent: 2 +- proto: AirlockSecurityLocked + entities: + - uid: 479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,26.5 + parent: 2 +- proto: AirlockServiceLocked + entities: + - uid: 480 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 +- proto: AirlockTheatreLocked + entities: + - uid: 481 + components: + - type: Transform + pos: 41.5,11.5 + parent: 2 +- proto: AirlockVirologyGlassLocked + entities: + - uid: 482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-26.5 + parent: 2 + - uid: 483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-31.5 + parent: 2 +- proto: AirSensor + entities: + - uid: 484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,49.5 + parent: 2 + - uid: 485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-44.5 + parent: 2 + - uid: 486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-41.5 + parent: 2 + - uid: 487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-45.5 + parent: 2 + - uid: 488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-56.5 + parent: 2 + - uid: 489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-55.5 + parent: 2 + - uid: 490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-56.5 + parent: 2 + - uid: 491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-63.5 + parent: 2 + - uid: 492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-62.5 + parent: 2 + - uid: 493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-53.5 + parent: 2 + - uid: 494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-44.5 + parent: 2 + - uid: 495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-29.5 + parent: 2 + - uid: 496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 2 + - uid: 497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-32.5 + parent: 2 + - uid: 498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-41.5 + parent: 2 + - uid: 499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-27.5 + parent: 2 + - uid: 500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-27.5 + parent: 2 + - uid: 501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-23.5 + parent: 2 + - uid: 502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-20.5 + parent: 2 + - uid: 503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-22.5 + parent: 2 + - uid: 504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-17.5 + parent: 2 + - uid: 505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-33.5 + parent: 2 + - uid: 506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-40.5 + parent: 2 + - uid: 507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-38.5 + parent: 2 + - uid: 508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-41.5 + parent: 2 + - uid: 509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-34.5 + parent: 2 + - uid: 510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-49.5 + parent: 2 + - uid: 511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-22.5 + parent: 2 + - uid: 512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-18.5 + parent: 2 + - uid: 513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-13.5 + parent: 2 + - uid: 514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-7.5 + parent: 2 + - uid: 515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-10.5 + parent: 2 + - uid: 516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-0.5 + parent: 2 + - uid: 517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,9.5 + parent: 2 + - uid: 518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,7.5 + parent: 2 + - uid: 519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,4.5 + parent: 2 + - uid: 520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,15.5 + parent: 2 + - uid: 521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,7.5 + parent: 2 + - uid: 522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-5.5 + parent: 2 + - uid: 523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,1.5 + parent: 2 + - uid: 524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 2 + - uid: 525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-24.5 + parent: 2 + - uid: 526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-30.5 + parent: 2 + - uid: 527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-24.5 + parent: 2 + - uid: 528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-31.5 + parent: 2 + - uid: 529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-16.5 + parent: 2 + - uid: 530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-8.5 + parent: 2 + - uid: 531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-29.5 + parent: 2 + - uid: 532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-30.5 + parent: 2 + - uid: 533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-24.5 + parent: 2 + - uid: 534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-18.5 + parent: 2 + - uid: 535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-18.5 + parent: 2 + - uid: 536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-16.5 + parent: 2 + - uid: 537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-22.5 + parent: 2 + - uid: 538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-29.5 + parent: 2 + - uid: 539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-31.5 + parent: 2 + - uid: 540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-18.5 + parent: 2 + - uid: 541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-5.5 + parent: 2 + - uid: 542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-3.5 + parent: 2 + - uid: 543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,1.5 + parent: 2 + - uid: 544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,7.5 + parent: 2 + - uid: 545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,6.5 + parent: 2 + - uid: 546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,14.5 + parent: 2 + - uid: 547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,18.5 + parent: 2 + - uid: 548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,22.5 + parent: 2 + - uid: 549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,16.5 + parent: 2 + - uid: 550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,16.5 + parent: 2 + - uid: 551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,18.5 + parent: 2 + - uid: 552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,23.5 + parent: 2 + - uid: 553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,28.5 + parent: 2 + - uid: 554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,40.5 + parent: 2 + - uid: 555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,37.5 + parent: 2 + - uid: 556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,31.5 + parent: 2 + - uid: 557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,38.5 + parent: 2 + - uid: 558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,35.5 + parent: 2 + - uid: 559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,43.5 + parent: 2 + - uid: 560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,45.5 + parent: 2 + - uid: 561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,22.5 + parent: 2 + - uid: 562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,12.5 + parent: 2 + - uid: 563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,15.5 + parent: 2 + - uid: 564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,24.5 + parent: 2 + - uid: 565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,31.5 + parent: 2 + - uid: 566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,34.5 + parent: 2 + - uid: 567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,40.5 + parent: 2 + - uid: 568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,54.5 + parent: 2 + - uid: 569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,59.5 + parent: 2 + - uid: 570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,55.5 + parent: 2 + - uid: 571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,49.5 + parent: 2 + - uid: 572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,70.5 + parent: 2 + - uid: 573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,70.5 + parent: 2 + - uid: 574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,70.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: 7.5,77.5 + parent: 2 + - uid: 576 + components: + - type: Transform + pos: 6.5,83.5 + parent: 2 + - uid: 577 + components: + - type: Transform + pos: 1.5,83.5 + parent: 2 + - uid: 578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,83.5 + parent: 2 + - uid: 579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,76.5 + parent: 2 + - uid: 580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,38.5 + parent: 2 + - uid: 581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,28.5 + parent: 2 + - uid: 582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,33.5 + parent: 2 + - uid: 583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,39.5 + parent: 2 + - uid: 584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,34.5 + parent: 2 + - uid: 585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,35.5 + parent: 2 + - uid: 586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,29.5 + parent: 2 + - uid: 587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,34.5 + parent: 2 + - uid: 588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,38.5 + parent: 2 + - uid: 589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,44.5 + parent: 2 + - uid: 590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,24.5 + parent: 2 + - uid: 591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,24.5 + parent: 2 + - uid: 592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,19.5 + parent: 2 + - uid: 593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,21.5 + parent: 2 + - uid: 594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,34.5 + parent: 2 + - uid: 595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,29.5 + parent: 2 + - uid: 596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,21.5 + parent: 2 + - uid: 597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,24.5 + parent: 2 + - uid: 598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,20.5 + parent: 2 + - uid: 599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,15.5 + parent: 2 + - uid: 600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,13.5 + parent: 2 + - uid: 601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,11.5 + parent: 2 + - uid: 602 + components: + - type: Transform + pos: 0.5,46.5 + parent: 2 + - uid: 603 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 604 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 37 +- proto: AltarSpawner + entities: + - uid: 605 + components: + - type: Transform + pos: 19.5,31.5 + parent: 2 +- proto: AmeController + entities: + - uid: 23870 + components: + - type: Transform + pos: -3.5,-59.5 + parent: 2 +- proto: AmeJar + entities: + - uid: 607 + components: + - type: Transform + pos: -6.5,-60.5 + parent: 2 + - uid: 608 + components: + - type: Transform + pos: -6.3261127,-60.425095 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: -6.5988398,-60.404114 + parent: 2 +- proto: AmeShielding + entities: + - uid: 606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-57.5 + parent: 2 + - uid: 610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-56.5 + parent: 2 + - uid: 23096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-58.5 + parent: 2 + - uid: 23097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-56.5 + parent: 2 + - uid: 23098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-57.5 + parent: 2 + - uid: 23099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-58.5 + parent: 2 + - uid: 23100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-56.5 + parent: 2 + - uid: 23101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-57.5 + parent: 2 + - uid: 23102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-58.5 + parent: 2 + - uid: 23103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-56.5 + parent: 2 + - uid: 23104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-57.5 + parent: 2 + - uid: 23105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-58.5 + parent: 2 + - uid: 23106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-56.5 + parent: 2 + - uid: 23862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-58.5 + parent: 2 + - uid: 23869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-57.5 + parent: 2 +- proto: AnalysisComputerCircuitboard + entities: + - uid: 617 + components: + - type: Transform + pos: -4.5775924,-35.57102 + parent: 2 +- proto: AnomalyLocatorEmpty + entities: + - uid: 618 + components: + - type: Transform + pos: -47.466526,-31.3424 + parent: 2 +- proto: AnomalyVesselCircuitboard + entities: + - uid: 619 + components: + - type: Transform + pos: -4.40976,-35.375214 + parent: 2 +- proto: APCBasic + entities: + - uid: 620 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 + - uid: 621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,5.5 + parent: 2 + - uid: 622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-1.5 + parent: 2 + - uid: 623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-60.5 + parent: 2 + - uid: 624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,41.5 + parent: 2 + - uid: 625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-52.5 + parent: 2 + - uid: 626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-46.5 + parent: 2 + - uid: 627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-72.5 + parent: 2 + - uid: 628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-60.5 + parent: 2 + - uid: 629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-21.5 + parent: 2 + - uid: 630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-33.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 2 + - uid: 632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-30.5 + parent: 2 + - uid: 633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-35.5 + parent: 2 + - uid: 634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-17.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,10.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: -42.5,-6.5 + parent: 2 + - uid: 639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-18.5 + parent: 2 + - uid: 640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-36.5 + parent: 2 + - uid: 641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-37.5 + parent: 2 + - uid: 642 + components: + - type: Transform + pos: -39.5,-24.5 + parent: 2 + - uid: 643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-49.5 + parent: 2 + - uid: 644 + components: + - type: Transform + pos: -22.5,-42.5 + parent: 2 + - uid: 645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-5.5 + parent: 2 + - uid: 646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-50.5 + parent: 2 + - uid: 647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-29.5 + parent: 2 + - uid: 648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,5.5 + parent: 2 + - uid: 649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,23.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 2 + - uid: 651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,10.5 + parent: 2 + - uid: 652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 2 + - uid: 653 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 2 + - uid: 654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-62.5 + parent: 2 + - uid: 655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,44.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: 9.5,57.5 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: 9.5,51.5 + parent: 2 + - uid: 658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,51.5 + parent: 2 + - uid: 659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,34.5 + parent: 2 + - uid: 660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,29.5 + parent: 2 + - uid: 661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,43.5 + parent: 2 + - uid: 662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,15.5 + parent: 2 + - uid: 663 + components: + - type: Transform + pos: -43.5,18.5 + parent: 2 + - uid: 664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,73.5 + parent: 2 + - uid: 665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,18.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: -25.5,31.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: -19.5,37.5 + parent: 2 + - uid: 669 + components: + - type: Transform + pos: -30.5,40.5 + parent: 2 + - uid: 670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,41.5 + parent: 2 + - uid: 671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,18.5 + parent: 2 + - uid: 672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,26.5 + parent: 2 + - uid: 673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,37.5 + parent: 2 + - uid: 674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,16.5 + parent: 2 + - uid: 675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-5.5 + parent: 2 + - uid: 676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,5.5 + parent: 2 + - uid: 677 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - uid: 679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-11.5 + parent: 2 + - uid: 680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-27.5 + parent: 2 +- proto: APCConstructed + entities: + - uid: 681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,12.5 + parent: 2 +- proto: APCHighCapacity + entities: + - uid: 682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,5.5 + parent: 2 + - uid: 683 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 2 +- proto: AppraisalTool + entities: + - uid: 684 + components: + - type: Transform + pos: -30.721203,-6.017397 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: -30.469452,-5.975439 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: -39.443012,8.461224 + parent: 2 +- proto: Ash + entities: + - uid: 687 + components: + - type: Transform + pos: -14.458229,4.527739 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: -15.442975,-4.3446994 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: 23.497353,-9.44327 + parent: 2 +- proto: AtmosDeviceFanTiny + entities: + - uid: 690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-1.5 + parent: 2 + - uid: 691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,0.5 + parent: 2 + - uid: 692 + components: + - type: Transform + pos: -49.5,-26.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: 43.5,48.5 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: 46.5,32.5 + parent: 2 + - uid: 695 + components: + - type: Transform + pos: 46.5,39.5 + parent: 2 + - uid: 696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-12.5 + parent: 2 + - uid: 697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-6.5 + parent: 2 + - uid: 698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-4.5 + parent: 2 + - uid: 699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-14.5 + parent: 2 + - uid: 700 + components: + - type: Transform + pos: -11.5,43.5 + parent: 2 + - uid: 701 + components: + - type: Transform + pos: -43.5,22.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: -43.5,26.5 + parent: 2 + - uid: 703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,77.5 + parent: 2 + - uid: 704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,77.5 + parent: 2 + - uid: 705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,78.5 + parent: 2 + - uid: 706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,77.5 + parent: 2 + - uid: 707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,76.5 + parent: 2 + - uid: 708 + components: + - type: Transform + pos: 40.5,-43.5 + parent: 2 + - uid: 709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-61.5 + parent: 2 + - uid: 710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,81.5 + parent: 2 + - uid: 711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,24.5 + parent: 2 + - uid: 712 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 2 +- proto: AtmosFixBlockerMarker + entities: + - uid: 713 + components: + - type: Transform + pos: 36.5,-53.5 + parent: 2 + - uid: 714 + components: + - type: Transform + pos: 36.5,-54.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: 36.5,-55.5 + parent: 2 + - uid: 716 + components: + - type: Transform + pos: 37.5,-53.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: 37.5,-54.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: 37.5,-55.5 + parent: 2 + - uid: 719 + components: + - type: Transform + pos: 38.5,-53.5 + parent: 2 + - uid: 720 + components: + - type: Transform + pos: 38.5,-54.5 + parent: 2 + - uid: 721 + components: + - type: Transform + pos: 38.5,-55.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: 41.5,-43.5 + parent: 2 + - uid: 723 + components: + - type: Transform + pos: 42.5,-43.5 + parent: 2 + - uid: 724 + components: + - type: Transform + pos: 43.5,-43.5 + parent: 2 + - uid: 725 + components: + - type: Transform + pos: 44.5,-43.5 + parent: 2 + - uid: 726 + components: + - type: Transform + pos: 45.5,-43.5 + parent: 2 + - uid: 727 + components: + - type: Transform + pos: 42.5,-42.5 + parent: 2 + - uid: 728 + components: + - type: Transform + pos: 42.5,-44.5 + parent: 2 + - uid: 729 + components: + - type: Transform + pos: 42.5,-45.5 + parent: 2 + - uid: 730 + components: + - type: Transform + pos: 36.5,-61.5 + parent: 2 + - uid: 731 + components: + - type: Transform + pos: 36.5,-62.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: 36.5,-63.5 + parent: 2 + - uid: 733 + components: + - type: Transform + pos: 37.5,-61.5 + parent: 2 + - uid: 734 + components: + - type: Transform + pos: 37.5,-62.5 + parent: 2 + - uid: 735 + components: + - type: Transform + pos: 37.5,-63.5 + parent: 2 + - uid: 736 + components: + - type: Transform + pos: 38.5,-61.5 + parent: 2 + - uid: 737 + components: + - type: Transform + pos: 38.5,-62.5 + parent: 2 + - uid: 738 + components: + - type: Transform + pos: 38.5,-63.5 + parent: 2 + - uid: 739 + components: + - type: Transform + pos: 26.5,-68.5 + parent: 2 + - uid: 740 + components: + - type: Transform + pos: 26.5,-69.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: 26.5,-70.5 + parent: 2 + - uid: 742 + components: + - type: Transform + pos: 27.5,-68.5 + parent: 2 + - uid: 743 + components: + - type: Transform + pos: 27.5,-69.5 + parent: 2 + - uid: 744 + components: + - type: Transform + pos: 27.5,-70.5 + parent: 2 + - uid: 745 + components: + - type: Transform + pos: 28.5,-68.5 + parent: 2 + - uid: 746 + components: + - type: Transform + pos: 28.5,-69.5 + parent: 2 + - uid: 747 + components: + - type: Transform + pos: 28.5,-70.5 + parent: 2 + - uid: 748 + components: + - type: Transform + pos: 27.5,-71.5 + parent: 2 + - uid: 749 + components: + - type: Transform + pos: 18.5,-55.5 + parent: 2 + - uid: 750 + components: + - type: Transform + pos: 18.5,-54.5 + parent: 2 + - uid: 751 + components: + - type: Transform + pos: 18.5,-53.5 + parent: 2 + - uid: 752 + components: + - type: Transform + pos: 17.5,-55.5 + parent: 2 + - uid: 753 + components: + - type: Transform + pos: 17.5,-54.5 + parent: 2 + - uid: 754 + components: + - type: Transform + pos: 17.5,-53.5 + parent: 2 + - uid: 755 + components: + - type: Transform + pos: 16.5,-55.5 + parent: 2 + - uid: 756 + components: + - type: Transform + pos: 16.5,-54.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: 16.5,-53.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,23.5 + parent: 2 + - uid: 759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,22.5 + parent: 2 + - uid: 760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,21.5 + parent: 2 + - uid: 761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,23.5 + parent: 2 + - uid: 762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,22.5 + parent: 2 + - uid: 763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,21.5 + parent: 2 + - uid: 764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,23.5 + parent: 2 + - uid: 765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,22.5 + parent: 2 + - uid: 766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,21.5 + parent: 2 + - uid: 767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,23.5 + parent: 2 + - uid: 768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,22.5 + parent: 2 + - uid: 769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,21.5 + parent: 2 + - uid: 770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,23.5 + parent: 2 + - uid: 771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,22.5 + parent: 2 + - uid: 772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,21.5 + parent: 2 + - uid: 773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,23.5 + parent: 2 + - uid: 774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,22.5 + parent: 2 + - uid: 775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,21.5 + parent: 2 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 776 + components: + - type: Transform + pos: 18.5,-63.5 + parent: 2 + - uid: 777 + components: + - type: Transform + pos: 18.5,-62.5 + parent: 2 + - uid: 778 + components: + - type: Transform + pos: 18.5,-61.5 + parent: 2 + - uid: 779 + components: + - type: Transform + pos: 17.5,-63.5 + parent: 2 + - uid: 780 + components: + - type: Transform + pos: 17.5,-62.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: 17.5,-61.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: 16.5,-63.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: 16.5,-62.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: 16.5,-61.5 + parent: 2 +- proto: AtmosFixOxygenMarker + entities: + - uid: 785 + components: + - type: Transform + pos: 18.5,-59.5 + parent: 2 + - uid: 786 + components: + - type: Transform + pos: 18.5,-58.5 + parent: 2 + - uid: 787 + components: + - type: Transform + pos: 18.5,-57.5 + parent: 2 + - uid: 788 + components: + - type: Transform + pos: 17.5,-59.5 + parent: 2 + - uid: 789 + components: + - type: Transform + pos: 17.5,-58.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: 17.5,-57.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: 16.5,-59.5 + parent: 2 + - uid: 792 + components: + - type: Transform + pos: 16.5,-58.5 + parent: 2 + - uid: 793 + components: + - type: Transform + pos: 16.5,-57.5 + parent: 2 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 794 + components: + - type: Transform + pos: 36.5,-57.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: 36.5,-58.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: 36.5,-59.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: 37.5,-57.5 + parent: 2 + - uid: 798 + components: + - type: Transform + pos: 37.5,-58.5 + parent: 2 + - uid: 799 + components: + - type: Transform + pos: 37.5,-59.5 + parent: 2 + - uid: 800 + components: + - type: Transform + pos: 38.5,-57.5 + parent: 2 + - uid: 801 + components: + - type: Transform + pos: 38.5,-58.5 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: 38.5,-59.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 803 + components: + - type: Transform + pos: -36.5,10.5 + parent: 2 + - uid: 804 + components: + - type: Transform + pos: -32.5,-25.5 + parent: 2 + - uid: 805 + components: + - type: Transform + pos: -33.5,-29.5 + parent: 2 + - uid: 806 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 2 +- proto: BalloonNT + entities: + - uid: 22318 + components: + - type: Transform + parent: 22310 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: BannerMedical + entities: + - uid: 807 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 808 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 2 +- proto: Barricade + entities: + - uid: 809 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 2 + - uid: 810 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 2 +- proto: BarricadeBlock + entities: + - uid: 812 + components: + - type: Transform + pos: -15.5,3.5 + parent: 2 + - uid: 813 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 2 + - uid: 814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 2 + - uid: 815 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 2 + - uid: 816 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: -23.5,-65.5 + parent: 2 + - uid: 822 + components: + - type: Transform + pos: 37.5,-38.5 + parent: 2 + - uid: 823 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 2 + - uid: 824 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 +- proto: BarricadeDirectional + entities: + - uid: 827 + components: + - type: Transform + pos: 34.5,-34.5 + parent: 2 +- proto: BarSign + entities: + - uid: 828 + components: + - type: Transform + pos: 18.5,15.5 + parent: 2 +- proto: BarSignMaidCafe + entities: + - uid: 829 + components: + - type: Transform + pos: -30.5,-56.5 + parent: 2 +- proto: BaseGasCondenser + entities: + - uid: 830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-32.5 + parent: 2 +- proto: Beaker + entities: + - uid: 831 + components: + - type: Transform + pos: -26.382198,-16.162254 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: -26.55003,-16.267149 + parent: 2 + - uid: 833 + components: + - type: Transform + pos: 41.006527,-34.3272 + parent: 2 + - uid: 834 + components: + - type: Transform + pos: 41.090443,-34.233963 + parent: 2 + - uid: 835 + components: + - type: MetaData + name: leporazine beaker + - type: Transform + pos: 28.631546,-31.392082 + parent: 2 + - type: SolutionContainerManager + solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 50 + name: null + reagents: + - data: null + ReagentId: Leporazine + Quantity: 50 + - uid: 836 + components: + - type: MetaData + name: leporazine beaker + - type: Transform + pos: 28.790054,-31.326815 + parent: 2 + - type: SolutionContainerManager + solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 50 + name: null + reagents: + - data: null + ReagentId: Leporazine + Quantity: 50 + - uid: 838 + components: + - type: Transform + parent: 837 + - type: Physics + canCollide: False + - uid: 839 + components: + - type: Transform + pos: 36.666573,-36.28809 + parent: 2 + - type: SolutionContainerManager + solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 50 + name: null + reagents: + - data: null + ReagentId: Tritium + Quantity: 1 +- proto: Bed + entities: + - uid: 840 + components: + - type: Transform + pos: -24.5,4.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: -25.5,-67.5 + parent: 2 + - uid: 843 + components: + - type: Transform + pos: -7.5,-49.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: 43.5,14.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: 43.5,12.5 + parent: 2 + - uid: 846 + components: + - type: Transform + pos: 41.5,15.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: 15.5,44.5 + parent: 2 + - uid: 848 + components: + - type: Transform + pos: 26.5,35.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: 26.5,40.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: -11.5,22.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: -5.5,22.5 + parent: 2 + - uid: 852 + components: + - type: Transform + pos: -5.5,23.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: -5.5,24.5 + parent: 2 + - uid: 854 + components: + - type: Transform + pos: -2.5,22.5 + parent: 2 + - uid: 855 + components: + - type: Transform + pos: -21.5,44.5 + parent: 2 + - uid: 856 + components: + - type: Transform + pos: -32.5,33.5 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: -32.5,36.5 + parent: 2 + - uid: 858 + components: + - type: Transform + pos: -32.5,39.5 + parent: 2 + - uid: 859 + components: + - type: Transform + pos: -5.5,48.5 + parent: 2 + - uid: 860 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 + - uid: 861 + components: + - type: Transform + pos: -0.5,-53.5 + parent: 2 + - uid: 862 + components: + - type: Transform + pos: -34.5,-58.5 + parent: 2 + - uid: 863 + components: + - type: Transform + pos: -34.5,-60.5 + parent: 2 +- proto: BedsheetBrown + entities: + - uid: 864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,22.5 + parent: 2 + - uid: 865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,22.5 + parent: 2 + - uid: 866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,23.5 + parent: 2 + - uid: 867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,24.5 + parent: 2 + - uid: 868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,22.5 + parent: 2 + - uid: 869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,33.5 + parent: 2 + - uid: 870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,36.5 + parent: 2 + - uid: 871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,39.5 + parent: 2 +- proto: BedsheetCaptain + entities: + - uid: 872 + components: + - type: Transform + pos: -5.5,48.5 + parent: 2 +- proto: BedsheetClown + entities: + - uid: 873 + components: + - type: Transform + pos: 43.5,12.5 + parent: 2 + - uid: 10533 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: BedsheetCosmos + entities: + - uid: 874 + components: + - type: Transform + pos: 41.5,15.5 + parent: 2 + - uid: 875 + components: + - type: Transform + pos: -34.5,-60.5 + parent: 2 +- proto: BedsheetCult + entities: + - uid: 876 + components: + - type: Transform + pos: 15.5,44.5 + parent: 2 + - uid: 877 + components: + - type: Transform + pos: -34.5,-58.5 + parent: 2 +- proto: BedsheetGreen + entities: + - uid: 878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-49.5 + parent: 2 +- proto: BedsheetHOS + entities: + - uid: 879 + components: + - type: Transform + pos: -21.5,44.5 + parent: 2 +- proto: BedsheetMedical + entities: + - uid: 880 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 2 + - uid: 881 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 2 + - uid: 882 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 2 + - uid: 883 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 2 + - uid: 884 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 2 + - uid: 885 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 2 +- proto: BedsheetMime + entities: + - uid: 886 + components: + - type: Transform + pos: 43.5,14.5 + parent: 2 + - uid: 10516 + components: + - type: Transform + parent: 10501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: BedsheetNT + entities: + - uid: 887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,27.5 + parent: 2 +- proto: BedsheetQM + entities: + - uid: 888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,4.5 + parent: 2 +- proto: BedsheetRD + entities: + - uid: 889 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 2 +- proto: BedsheetSpawner + entities: + - uid: 890 + components: + - type: Transform + pos: 26.5,35.5 + parent: 2 + - uid: 891 + components: + - type: Transform + pos: 26.5,40.5 + parent: 2 +- proto: BedsheetSyndie + entities: + - uid: 892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-53.5 + parent: 2 +- proto: BenchPewLeft + entities: + - uid: 893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,8.5 + parent: 2 + - uid: 894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,10.5 + parent: 2 + - uid: 895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,9.5 + parent: 2 + - uid: 896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,10.5 + parent: 2 + - uid: 897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,12.5 + parent: 2 + - uid: 898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,12.5 + parent: 2 + - uid: 899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,9.5 + parent: 2 + - uid: 900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,29.5 + parent: 2 + - uid: 901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,29.5 + parent: 2 + - uid: 904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,29.5 + parent: 2 + - uid: 907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,42.5 + parent: 2 + - uid: 916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,32.5 + parent: 2 + - uid: 917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,32.5 + parent: 2 + - uid: 918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,43.5 + parent: 2 + - uid: 921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,32.5 + parent: 2 +- proto: BenchPewRight + entities: + - uid: 902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,30.5 + parent: 2 + - uid: 903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,42.5 + parent: 2 + - uid: 905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,30.5 + parent: 2 + - uid: 906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,30.5 + parent: 2 + - uid: 908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,12.5 + parent: 2 + - uid: 909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,12.5 + parent: 2 + - uid: 910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,10.5 + parent: 2 + - uid: 911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,9.5 + parent: 2 + - uid: 912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,8.5 + parent: 2 + - uid: 913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,10.5 + parent: 2 + - uid: 914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,9.5 + parent: 2 + - uid: 915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,33.5 + parent: 2 + - uid: 919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,33.5 + parent: 2 + - uid: 920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,33.5 + parent: 2 + - uid: 922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,43.5 + parent: 2 +- proto: BenchSofaCorner + entities: + - uid: 923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,27.5 + parent: 2 + - uid: 924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,24.5 + parent: 2 +- proto: BenchSofaCorpLeft + entities: + - uid: 925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-25.5 + parent: 2 +- proto: BenchSofaCorpRight + entities: + - uid: 926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-25.5 + parent: 2 +- proto: BenchSofaLeft + entities: + - uid: 927 + components: + - type: Transform + pos: 11.5,27.5 + parent: 2 + - uid: 929 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 + - uid: 930 + components: + - type: Transform + pos: -27.5,6.5 + parent: 2 + - uid: 931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,4.5 + parent: 2 + - uid: 932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,5.5 + parent: 2 + - uid: 933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,4.5 + parent: 2 + - uid: 934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,5.5 + parent: 2 + - uid: 935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,5.5 + parent: 2 + - uid: 936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,4.5 + parent: 2 + - uid: 937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,4.5 + parent: 2 + - uid: 938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-2.5 + parent: 2 + - uid: 939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-3.5 + parent: 2 + - uid: 940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,53.5 + parent: 2 + - uid: 941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,51.5 + parent: 2 +- proto: BenchSofaMiddle + entities: + - uid: 942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,25.5 + parent: 2 + - uid: 943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,52.5 + parent: 2 + - uid: 944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,52.5 + parent: 2 + - uid: 945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,26.5 + parent: 2 +- proto: BenchSofaRight + entities: + - uid: 946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,24.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: -17.5,12.5 + parent: 2 + - uid: 949 + components: + - type: Transform + pos: -28.5,6.5 + parent: 2 + - uid: 950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,4.5 + parent: 2 + - uid: 951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,4.5 + parent: 2 + - uid: 952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,4.5 + parent: 2 + - uid: 953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,4.5 + parent: 2 + - uid: 954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,5.5 + parent: 2 + - uid: 955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,5.5 + parent: 2 + - uid: 956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,5.5 + parent: 2 + - uid: 957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 2 + - uid: 958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-2.5 + parent: 2 + - uid: 959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,51.5 + parent: 2 + - uid: 960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,53.5 + parent: 2 +- proto: BenchSteelLeft + entities: + - uid: 961 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-6.5 + parent: 2 + - uid: 963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,19.5 + parent: 2 + - uid: 964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,39.5 + parent: 2 + - uid: 965 + components: + - type: Transform + pos: -5.5,38.5 + parent: 2 + - uid: 966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 2 + - uid: 967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,6.5 + parent: 2 +- proto: BenchSteelMiddle + entities: + - uid: 968 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 2 + - uid: 969 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 970 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - uid: 971 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 2 + - uid: 972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-6.5 + parent: 2 + - uid: 973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-6.5 + parent: 2 + - uid: 974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-6.5 + parent: 2 + - uid: 975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-6.5 + parent: 2 + - uid: 976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,19.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: -4.5,38.5 + parent: 2 + - uid: 978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,39.5 + parent: 2 +- proto: BenchSteelRight + entities: + - uid: 979 + components: + - type: Transform + pos: 40.5,-9.5 + parent: 2 + - uid: 980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-6.5 + parent: 2 + - uid: 981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,19.5 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: -3.5,38.5 + parent: 2 + - uid: 983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,39.5 + parent: 2 + - uid: 984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 2 + - uid: 985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 2 +- proto: BenchSteelWhiteLeft + entities: + - uid: 986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-25.5 + parent: 2 + - uid: 987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-25.5 + parent: 2 + - uid: 988 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 2 + - uid: 989 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 +- proto: BenchSteelWhiteRight + entities: + - uid: 990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-25.5 + parent: 2 + - uid: 991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-25.5 + parent: 2 + - uid: 992 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 2 + - uid: 993 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 2 +- proto: BigBox + entities: + - uid: 994 + components: + - type: Transform + pos: -26.502766,12.471382 + parent: 2 + - uid: 995 + components: + - type: Transform + pos: 30.508911,-33.498234 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 997 + - 996 +- proto: Biofabricator + entities: + - uid: 8900 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 2 +- proto: BlastDoor + entities: + - uid: 998 + components: + - type: Transform + pos: -45.5,-2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18241 + - uid: 999 + components: + - type: Transform + pos: -45.5,1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18242 + - uid: 1000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18244 + - uid: 1001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18238 + - uid: 1002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18238 + - uid: 1003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18279 + - uid: 1004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18279 + - uid: 1005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-47.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18256 + - 18255 + - uid: 1006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-46.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18256 + - 18255 + - uid: 1007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-45.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18256 + - 18255 + - uid: 1008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-52.5 + parent: 2 + - uid: 1009 + components: + - type: Transform + pos: 20.5,47.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19982 + - uid: 1010 + components: + - type: Transform + pos: 13.5,-61.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18290 + - 18270 + - uid: 1011 + components: + - type: Transform + pos: 12.5,-61.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18290 + - 18270 + - uid: 1012 + components: + - type: Transform + pos: 11.5,-61.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18290 + - 18270 + - uid: 1013 + components: + - type: Transform + pos: 42.5,-45.5 + parent: 2 + - uid: 1014 + components: + - type: Transform + pos: 45.5,-43.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + pos: 27.5,-71.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18266 +- proto: BlastDoorOpen + entities: + - uid: 154 + components: + - type: Transform + pos: -2.5,-61.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-74.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-77.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-77.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-74.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 1016 + components: + - type: Transform + pos: -19.5,-32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18331 + - 18267 + - uid: 1017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18257 + - uid: 1018 + components: + - type: Transform + pos: -1.5,37.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18258 + - uid: 1019 + components: + - type: Transform + pos: -1.5,38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18258 + - uid: 1020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,62.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18283 + - uid: 1021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,62.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18283 + - uid: 1022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,68.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18286 + - uid: 1023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,68.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18287 + - uid: 1024 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18261 + - uid: 1025 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18261 + - uid: 1026 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18261 + - uid: 1027 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18262 + - uid: 1028 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18262 + - uid: 1029 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18262 + - uid: 1030 + components: + - type: Transform + pos: 6.5,-60.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 1031 + components: + - type: Transform + pos: 7.5,-60.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 1032 + components: + - type: Transform + pos: 8.5,-60.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 21918 + components: + - type: Transform + pos: 9.5,-63.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 21925 + components: + - type: Transform + pos: 9.5,-64.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 21926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-68.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 21933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-69.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 21934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-70.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 21935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-77.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 21936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-77.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 21937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-77.5 + parent: 2 + - uid: 22464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-77.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 22486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-77.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 22487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-70.5 + parent: 2 + - uid: 22488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-69.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 22513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-68.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 22610 + components: + - type: Transform + pos: 4.5,-61.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 22611 + components: + - type: Transform + pos: 2.5,-61.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 22613 + components: + - type: Transform + pos: -4.5,-61.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 22640 + components: + - type: Transform + pos: -3.5,-61.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 22641 + components: + - type: Transform + pos: 3.5,-61.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 + - uid: 22845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-77.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18291 +- proto: Bloodpack + entities: + - uid: 1033 + components: + - type: Transform + pos: 25.355034,-13.543341 + parent: 2 + - uid: 1034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.627491,-12.705351 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: 24.286171,-14.653675 + parent: 2 + - uid: 1036 + components: + - type: Transform + pos: -30.309258,37.72887 + parent: 2 + - uid: 1037 + components: + - type: Transform + pos: -30.632004,37.62142 + parent: 2 +- proto: BodyBag + entities: + - uid: 1038 + components: + - type: Transform + pos: -21.502857,-2.463719 + parent: 2 +- proto: Bonfire + entities: + - uid: 1040 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: -21.5,-38.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + pos: 32.5,-33.5 + parent: 2 + - uid: 1043 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 2 + - uid: 1044 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 2 +- proto: BookAtmosAirAlarms + entities: + - uid: 1045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.477695,-11.936964 + parent: 2 + - uid: 1046 + components: + - type: Transform + pos: 11.402032,-50.259182 + parent: 2 +- proto: BookAtmosDistro + entities: + - uid: 1047 + components: + - type: Transform + pos: 11.464191,-50.321342 + parent: 2 + - uid: 1048 + components: + - type: Transform + pos: 29.52829,-51.505558 + parent: 2 +- proto: BookAtmosVentsMore + entities: + - uid: 1049 + components: + - type: Transform + pos: 11.51392,-50.37729 + parent: 2 +- proto: BookAtmosWaste + entities: + - uid: 1050 + components: + - type: Transform + pos: 11.569863,-50.439445 + parent: 2 +- proto: BookBartendersManual + entities: + - uid: 1051 + components: + - type: Transform + pos: 17.490627,16.619688 + parent: 2 +- proto: BookBase + entities: + - uid: 1053 + components: + - type: MetaData + name: 'Sindicato: Uma ameaça?' + - type: Transform + parent: 1052 + - type: Paper + content: >2- + Antes de tudo, quero esclarecer algumas coisas. Recomendo não buscar mais informações sobre o Sindicato ou qualquer coisa relacionada a ele. Se fizer isso, enfrentará um grande perigo e pode muito bem acabar sendo morto. Estou fazendo isso na tentativa de informar o máximo de pessoas possível sobre o que a NanoTrasen esconde. Algumas informações são bastante incertas devido à grande censura que ocorre pela NanoTrasen, e não poderei responder algumas dúvidas que surgirão ao longo deste livro. Por fim, espero que tenha uma boa leitura. + + Ass. Olivia Hass + + + [color=red]Este livro teve a circulação proibida e qualquer exemplar dele deve ser queimado.[/color] + - type: Physics + canCollide: False + - uid: 1054 + components: + - type: MetaData + name: > + Catalogo de Entidades Hiper Desenvolvidas #1: A Marionete Suprema. + - type: Transform + parent: 1052 + - type: Paper + content: >- + Nas esferas do misticismo e das forças indomáveis, existe uma entidade de poder inigualável conhecida como o A Marionete Suprema. Apesar de seu nome, esse ser extraordinário está longe de ser uma marionete real; ele tem o tamanho de um humano médio, e sua aparência pode mudar de tempos em tempos. Ele incorpora uma misteriosa combinação de poder e consciência, exigindo um mestre para orientar suas ações. A natureza do Boneco está intrinsicamente ligada ao controle, sua existência depende de um mestre que pode aproveitar suas imensas capacidades. + + + A Marionete Suprema possui um arsenal de habilidades e capacidades extraordinárias, tornando-o uma força a ser reconhecida. Quando o mestre emite um comando, a Marionete o executa com uma eficiência, habilidade e sutileza inigualáveis. Seja uma infiltração delicada, uma manobra estratégica ou uma exibição de poder bruto, a Marionete realiza sua ordem dada impecavelmente, sem deixar margem para erro. + + + No entanto, a verdadeira arte da Marionete reside na teatralidade e intriga de seus comandos. O desempenho da Marionete está intrinsecamente ligado às habilidades criativas e teatrais de seu mestre. Quanto mais envolvente, cativante e dramático o cenário criado pelo mestre, mais pronunciada e extraordinária se torna a execução da Marionete. Um comando sem brilho teatral e mundano leva a resultados ineficientes ou falhas, enquanto uma ordem brilhantemente concebida e narrada desbloqueia todo o potencial das habilidades da Marionete. + + + Mas cuidado, pois a Marionete abriga uma inclinação secreta e traiçoeira. Se o mestre falhar repetidamente em cativar a Marionete com cenários fascinantes, a insatisfação penetra lentamente na consciência da entidade. À medida que a Marionete anseia por mais emoção e realização, o vínculo entre mestre e a Marionete começa a se fraturar. Gradualmente, o descontentamento da Marionete se transforma em uma animosidade perigosa, e com insatisfação suficiente, ela pode se voltar contra seu mestre com consequências letais. + + + Assim, a Marionete Suprema caminha numa corda bamba delicada entre lealdade e rebelião, tornando a relação entre mestre e entidade uma dança precária. O mestre deve se esforçar continuamente para cativar e fascinar a Marionete, garantindo sua devoção e lealdade inabaláveis. De forma relativamente simples, esta entidade vê-se a si mesma como personagem de uma obra de ficção, ao mesmo tempo que vê o seu mestre como o criador da obra. + + + Nas sombras do mistério e do poder oculto, a Marionete Suprema aguarda aqueles que ousam comandá-lo. Será você o escolhido para desbloquear seu potencial ilimitado, ou sucumbirá ao seu crescente descontentamento e enfrentará as consequências graves? A escolha reside em sua capacidade de domar o enigma da poderosa entidade que é a Marionete Suprema. + - type: Physics + canCollide: False + - uid: 1055 + components: + - type: MetaData + name: > + Catalogo de Magias Hiper Desenvolvidas #1: (Maldição) - Alegoria do Peso Perpétuo: + - type: Transform + parent: 1052 + - type: Paper + content: >- + A pessoa afetada por esta maldição se encontra aprisionada em um ciclo interminável de tarefas exaustivas, sendo compelida a cumpri-las sem descanso. Trata-se de uma maldição cruel que mergulha a vítima em um estado de fadiga extrema, permitindo-lhe descansar apenas quando seu corpo sucumbe ao desmaio. + + + Aqueles sob efeito da Alegoria do Peso Perpétuo vivenciam uma corrente interminável de tarefas, cujo número parece ser infinito. Essas tarefas podem variar em natureza, indo desde atividades físicas extenuantes até tarefas mentais exaustivas, sempre se adaptando às habilidades e destrezas individuais da vítima. A maldição não apenas exige que as tarefas sejam concluídas, mas também pressiona a pessoa afetada a executá-las com eficiência e perfeição, deixando pouco espaço para falhas. + + + Enquanto a Maldição do Peso Eterno é implacável em suas imposições de tarefas, ela concede à pessoa afetada um mínimo de livre-arbítrio. A vítima pode escolher a ordem em que realiza as tarefas e até mesmo o tipo de atividade que deseja empreender, dentro dos limites impostos pela maldição. Essa capacidade de escolha paradoxalmente intensifica o sofrimento da pessoa, pois ela deve decidir constantemente qual tarefa realizar, sabendo que nunca haverá um fim para essa demanda interminável. + - type: Physics + canCollide: False +- proto: BookChefGaming + entities: + - uid: 1056 + components: + - type: Transform + pos: 19.417454,16.533361 + parent: 2 +- proto: BookChemicalCompendium + entities: + - uid: 1057 + components: + - type: Transform + pos: 31.302227,-14.355734 + parent: 2 +- proto: BookEngineersHandbook + entities: + - uid: 1058 + components: + - type: Transform + pos: 1.3585267,-44.41457 + parent: 2 + - uid: 1059 + components: + - type: Transform + pos: 11.644189,-50.90064 + parent: 2 + - uid: 1060 + components: + - type: Transform + pos: 4.2590303,-52.247704 + parent: 2 +- proto: BookFeather + entities: + - uid: 1061 + components: + - type: Transform + pos: 20.433872,-13.290758 + parent: 2 +- proto: BookHowToSurvive + entities: + - uid: 1062 + components: + - type: Transform + pos: 11.4763565,-50.87966 + parent: 2 + - uid: 1063 + components: + - type: Transform + pos: 4.3615947,-52.322292 + parent: 2 +- proto: BookInspiration + entities: + - uid: 1064 + components: + - type: Transform + pos: -15.363409,-22.396322 + parent: 2 +- proto: BookMedicalOfficer + entities: + - uid: 1065 + components: + - type: Transform + pos: 38.57296,-33.29446 + parent: 2 + - uid: 1066 + components: + - type: Transform + pos: 28.406742,-32.13021 + parent: 2 +- proto: BookNames + entities: + - uid: 1067 + components: + - type: Transform + pos: -28.15681,5.660248 + parent: 2 +- proto: BookRandom + entities: + - uid: 1068 + components: + - type: Transform + pos: -23.689209,-16.391232 + parent: 2 + - uid: 1069 + components: + - type: Transform + pos: 17.506668,31.558624 + parent: 2 + - uid: 1070 + components: + - type: Transform + pos: 15.406973,36.540806 + parent: 2 + - uid: 1071 + components: + - type: Transform + pos: 15.560819,36.722622 + parent: 2 + - uid: 1072 + components: + - type: Transform + pos: 15.672707,36.59675 + parent: 2 + - uid: 1073 + components: + - type: Transform + pos: 46.595566,-25.394053 + parent: 2 + - uid: 1074 + components: + - type: Transform + pos: 46.217945,-25.289158 + parent: 2 + - uid: 1075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.777386,-25.498947 + parent: 2 +- proto: BookRandomStory + entities: + - uid: 1076 + components: + - type: Transform + pos: 31.79174,-14.243845 + parent: 2 + - uid: 1077 + components: + - type: Transform + pos: -21.235794,22.614756 + parent: 2 +- proto: BooksBag + entities: + - uid: 1078 + components: + - type: Transform + pos: 45.48368,-25.268177 + parent: 2 +- proto: BookSecurity + entities: + - uid: 1079 + components: + - type: Transform + pos: -21.571457,22.677692 + parent: 2 +- proto: Bookshelf + entities: + - uid: 1052 + components: + - type: Transform + pos: 39.5,7.5 + parent: 2 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1053 + - 1054 + - 1055 + - uid: 1080 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 2 + - uid: 1081 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 +- proto: BookshelfFilled + entities: + - uid: 1082 + components: + - type: Transform + pos: 37.5,10.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + pos: 38.5,10.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + pos: 39.5,10.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + pos: 40.5,10.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + pos: 42.5,10.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + pos: 39.5,8.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + pos: 40.5,8.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + pos: 41.5,8.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + pos: 38.5,7.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: 39.5,8.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: 41.5,7.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + pos: 44.5,0.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + pos: 46.5,-23.5 + parent: 2 + - uid: 1097 + components: + - type: Transform + pos: 31.5,-33.5 + parent: 2 + - uid: 23863 + components: + - type: Transform + pos: 40.5,7.5 + parent: 2 +- proto: BookTemple + entities: + - uid: 1098 + components: + - type: Transform + pos: -14.981125,-22.3497 + parent: 2 +- proto: BookWorld + entities: + - uid: 1099 + components: + - type: Transform + pos: -15.195577,-22.303082 + parent: 2 +- proto: BoozeDispenser + entities: + - uid: 1100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-63.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,13.5 + parent: 2 +- proto: BorgCharger + entities: + - uid: 1102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-6.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 2 + - uid: 1105 + components: + - type: Transform + pos: 33.5,30.5 + parent: 2 + - uid: 1106 + components: + - type: Transform + pos: 32.5,30.5 + parent: 2 + - uid: 1107 + components: + - type: Transform + pos: 31.5,30.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1108 + components: + - type: Transform + pos: 5.5,85.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: 6.5,85.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,85.5 + parent: 2 + - uid: 1111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-14.5 + parent: 2 + - uid: 1112 + components: + - type: Transform + pos: 8.5,-54.5 + parent: 2 +- proto: BorgModuleClowning + entities: + - uid: 10539 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: BoxBeaker + entities: + - uid: 1113 + components: + - type: Transform + pos: -5.792077,-30.758797 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 1114 + components: + - type: Transform + pos: 42.640194,-28.411314 + parent: 2 + - uid: 1115 + components: + - type: Transform + pos: 23.328041,-30.442726 + parent: 2 + - uid: 1116 + components: + - type: Transform + pos: 7.35902,-29.546413 + parent: 2 +- proto: BoxBodyBag + entities: + - uid: 1117 + components: + - type: Transform + pos: -30.00586,32.802864 + parent: 2 + - uid: 1118 + components: + - type: Transform + pos: -36.16761,30.64786 + parent: 2 + - uid: 1119 + components: + - type: Transform + pos: 31.481876,-31.373457 + parent: 2 + - uid: 1120 + components: + - type: Transform + pos: 31.621738,-31.26157 + parent: 2 + - uid: 8670 + components: + - type: Transform + pos: 23.499565,-30.32426 + parent: 2 +- proto: BoxCardboard + entities: + - uid: 1122 + components: + - type: Transform + pos: -29.499535,-6.517551 + parent: 2 + - uid: 1123 + components: + - type: Transform + pos: -29.69534,-6.424311 + parent: 2 + - uid: 1124 + components: + - type: Transform + pos: -29.424942,-6.2751265 + parent: 2 + - uid: 1125 + components: + - type: Transform + pos: -29.434269,-6.442959 + parent: 2 + - uid: 1126 + components: + - type: Transform + pos: -29.266434,-6.4056625 + parent: 2 + - uid: 1127 + components: + - type: Transform + pos: -30.329372,-4.5781574 + parent: 2 + - uid: 1128 + components: + - type: Transform + pos: -30.58112,-4.373029 + parent: 2 + - uid: 1129 + components: + - type: Transform + pos: -30.273426,-4.1212807 + parent: 2 + - uid: 1130 + components: + - type: Transform + pos: -30.5345,-3.9348006 + parent: 2 + - uid: 1131 + components: + - type: Transform + pos: -30.5345,-3.9348006 + parent: 2 +- proto: BoxFlashbang + entities: + - uid: 1132 + components: + - type: Transform + pos: -14.382187,38.59988 + parent: 2 +- proto: BoxFolderBase + entities: + - uid: 1133 + components: + - type: Transform + pos: -17.356007,-22.297771 + parent: 2 +- proto: BoxFolderBlack + entities: + - uid: 1134 + components: + - type: Transform + pos: -13.3687105,-3.2197378 + parent: 2 + - uid: 1135 + components: + - type: Transform + pos: -6.455263,14.560249 + parent: 2 + - uid: 1136 + components: + - type: Transform + pos: 17.663635,21.630175 + parent: 2 + - uid: 1137 + components: + - type: Transform + pos: 17.84079,21.471666 + parent: 2 +- proto: BoxFolderBlue + entities: + - uid: 1138 + components: + - type: Transform + pos: -16.40982,-3.3916838 + parent: 2 + - uid: 1139 + components: + - type: Transform + pos: -10.009421,13.602484 + parent: 2 + - uid: 1140 + components: + - type: Transform + pos: -6.5298553,14.59133 + parent: 2 + - uid: 1141 + components: + - type: Transform + pos: -3.5946116,14.507507 + parent: 2 + - uid: 1142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.434541,56.04708 + parent: 2 + - uid: 1143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.378911,54.63809 + parent: 2 + - uid: 1144 + components: + - type: Transform + pos: -0.64332175,69.52475 + parent: 2 + - uid: 1145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.34961545,69.510765 + parent: 2 + - uid: 1146 + components: + - type: Transform + pos: 22.959122,-20.45176 + parent: 2 + - uid: 1147 + components: + - type: Transform + pos: 6.4702945,25.629044 + parent: 2 +- proto: BoxFolderClipboard + entities: + - uid: 1148 + components: + - type: Transform + pos: -6.2439194,14.479441 + parent: 2 + - uid: 1149 + components: + - type: Transform + pos: -30.012356,-6.4895787 + parent: 2 + - uid: 1150 + components: + - type: Transform + pos: -28.672737,5.5670075 + parent: 2 + - uid: 1151 + components: + - type: Transform + pos: -40.533924,8.63838 + parent: 2 + - uid: 1152 + components: + - type: Transform + pos: -26.40318,-18.427988 + parent: 2 + - uid: 1153 + components: + - type: Transform + pos: -17.36533,-22.521547 + parent: 2 + - uid: 1154 + components: + - type: Transform + pos: 38.305824,1.6013311 + parent: 2 + - uid: 1155 + components: + - type: Transform + pos: -16.28135,31.641228 + parent: 2 + - uid: 1156 + components: + - type: Transform + pos: 6.356128,48.842865 + parent: 2 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1157 + pen_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1158 + components: + - type: Transform + pos: 10.417078,53.39866 + parent: 2 + - uid: 1159 + components: + - type: Transform + pos: 0.55947524,69.608665 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: 26.006824,-19.379238 + parent: 2 + - uid: 1161 + components: + - type: Transform + pos: 46.479202,-20.39618 + parent: 2 + - uid: 1162 + components: + - type: Transform + pos: 40.167366,-34.29213 + parent: 2 + - uid: 1163 + components: + - type: Transform + pos: 11.340425,-50.905647 + parent: 2 + - uid: 1164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.4912734,27.286385 + parent: 2 + - uid: 1165 + components: + - type: Transform + pos: 17.421211,21.490314 + parent: 2 +- proto: BoxFolderGrey + entities: + - uid: 1166 + components: + - type: Transform + pos: -26.529053,-18.511906 + parent: 2 +- proto: BoxFolderRed + entities: + - uid: 1167 + components: + - type: Transform + pos: -16.47144,-6.407802 + parent: 2 + - uid: 1168 + components: + - type: Transform + pos: -12.986888,13.602484 + parent: 2 + - uid: 1169 + components: + - type: Transform + pos: -6.3495913,14.554033 + parent: 2 + - uid: 1170 + components: + - type: Transform + pos: -3.4827232,14.544802 + parent: 2 + - uid: 1171 + components: + - type: Transform + pos: 43.74235,-17.425884 + parent: 2 + - uid: 1172 + components: + - type: Transform + pos: -24.97533,24.557632 + parent: 2 + - uid: 1173 + components: + - type: Transform + pos: -16.789017,31.681232 + parent: 2 + - uid: 1174 + components: + - type: Transform + pos: 6.55421,25.733936 + parent: 2 +- proto: BoxFolderWhite + entities: + - uid: 1175 + components: + - type: Transform + pos: -6.5135493,82.6491 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: 40.01818,-34.43199 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: 5.517516,-28.436022 + parent: 2 +- proto: BoxFolderYellow + entities: + - uid: 1178 + components: + - type: Transform + pos: -30.217484,-6.3683667 + parent: 2 + - uid: 1179 + components: + - type: Transform + pos: -28.442745,5.4675517 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: -40.59919,8.517168 + parent: 2 +- proto: BoxHandcuff + entities: + - uid: 1181 + components: + - type: Transform + pos: 30.040516,-4.3923454 + parent: 2 + - uid: 1182 + components: + - type: Transform + pos: -5.523954,34.568943 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: -14.621258,38.542572 + parent: 2 + - uid: 1184 + components: + - type: Transform + pos: -38.525764,22.535631 + parent: 2 +- proto: BoxLatexGloves + entities: + - uid: 811 + components: + - type: Transform + pos: 23.144512,-30.219042 + parent: 2 + - uid: 1185 + components: + - type: Transform + pos: 42.621548,-28.597794 + parent: 2 + - uid: 1187 + components: + - type: Transform + pos: 7.718395,-29.265163 + parent: 2 + - uid: 1188 + components: + - type: Transform + pos: 13.493209,-32.35294 + parent: 2 +- proto: BoxLethalshot + entities: + - uid: 1189 + components: + - type: Transform + pos: -15.491153,40.70749 + parent: 2 + - uid: 1190 + components: + - type: Transform + pos: -15.491153,40.63108 + parent: 2 +- proto: BoxLightMixed + entities: + - uid: 1191 + components: + - type: Transform + pos: 7.4954042,12.574865 + parent: 2 + - uid: 1192 + components: + - type: Transform + pos: 7.6818843,12.680538 + parent: 2 + - uid: 1193 + components: + - type: Transform + pos: 1.6941905,-44.41457 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: -14.615689,-55.254997 + parent: 2 +- proto: BoxMesonScanners + entities: + - uid: 1195 + components: + - type: Transform + pos: 14.606563,-52.36391 + parent: 2 +- proto: BoxMousetrap + entities: + - uid: 1196 + components: + - type: Transform + pos: 23.36734,17.657253 + parent: 2 +- proto: BoxPerformer + entities: + - uid: 1197 + components: + - type: Transform + pos: 13.706232,-4.671299 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: 10.4830065,-37.458145 + parent: 2 +- proto: BoxShotgunIncendiary + entities: + - uid: 1199 + components: + - type: Transform + pos: -15.491153,40.80937 + parent: 2 +- proto: BoxShotgunPractice + entities: + - uid: 1200 + components: + - type: Transform + pos: 15.49762,18.780527 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: 15.49762,18.591717 + parent: 2 +- proto: BoxShotgunSlug + entities: + - uid: 1202 + components: + - type: Transform + pos: -15.48257,40.505035 + parent: 2 +- proto: BoxSterileMask + entities: + - uid: 1203 + components: + - type: Transform + pos: 19.527786,-13.189604 + parent: 2 +- proto: BoxSyringe + entities: + - uid: 1204 + components: + - type: Transform + pos: -5.9625015,-30.436827 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 + - uid: 1205 + components: + - type: Transform + pos: 42.360474,-28.504555 + parent: 2 + - uid: 1206 + components: + - type: Transform + pos: 13.79031,-32.37395 + parent: 2 +- proto: BoxTrashbag + entities: + - uid: 1207 + components: + - type: Transform + pos: -44.630238,15.522076 + parent: 2 + - uid: 1208 + components: + - type: Transform + pos: -44.44376,15.447483 + parent: 2 + - uid: 1209 + components: + - type: Transform + pos: -36.880898,30.710796 + parent: 2 +- proto: BoxZiptie + entities: + - uid: 1210 + components: + - type: Transform + pos: -35.475304,30.64786 + parent: 2 +- proto: BriefcaseBrown + entities: + - uid: 1211 + components: + - type: Transform + pos: -17.415886,-4.235986 + parent: 2 + - uid: 1212 + components: + - type: Transform + pos: -17.533989,-4.428683 + parent: 2 + - uid: 1213 + components: + - type: Transform + pos: -6.4987755,14.467009 + parent: 2 +- proto: BrigTimer + entities: + - uid: 1214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23442: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 1215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23444: + - Start: Close + - Timer: AutoClose + - Timer: Open + 23445: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 1216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23443: + - Start: Close + - Timer: AutoClose + - Timer: Open +- proto: Bucket + entities: + - uid: 1217 + components: + - type: Transform + pos: 3.243042,-5.123019 + parent: 2 + - uid: 1218 + components: + - type: Transform + pos: 9.842099,11.265297 + parent: 2 + - uid: 1219 + components: + - type: Transform + pos: 12.984678,15.275642 + parent: 2 + - uid: 1220 + components: + - type: Transform + pos: -10.254242,-40.732853 + parent: 2 + - uid: 1221 + components: + - type: Transform + pos: -36.38079,-63.77137 + parent: 2 + - uid: 1222 + components: + - type: Transform + pos: -36.688175,-63.603775 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: -36.427364,-63.454796 + parent: 2 + - uid: 1224 + components: + - type: Transform + pos: -36.567085,-63.156845 + parent: 2 + - uid: 1225 + components: + - type: Transform + pos: 37.191753,19.169838 + parent: 2 + - uid: 1226 + components: + - type: Transform + pos: 31.548397,15.603403 + parent: 2 + - uid: 1227 + components: + - type: Transform + pos: 17.422337,27.723618 + parent: 2 + - uid: 1228 + components: + - type: Transform + pos: 17.611149,27.597744 + parent: 2 + - uid: 1229 + components: + - type: Transform + pos: -41.266426,30.587137 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: 34.599365,-27.40573 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 1231 + components: + - type: Transform + pos: -20.5,-32.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: 1.5,38.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + pos: 6.5,-52.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 1237 + components: + - type: Transform + pos: 1.5,54.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: 1.5,39.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 2 + - uid: 1241 + components: + - type: Transform + pos: 22.5,-36.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + pos: 22.5,-35.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: 22.5,-34.5 + parent: 2 + - uid: 1244 + components: + - type: Transform + pos: 21.5,-34.5 + parent: 2 + - uid: 1245 + components: + - type: Transform + pos: 20.5,-34.5 + parent: 2 + - uid: 1246 + components: + - type: Transform + pos: -4.5,-45.5 + parent: 2 + - uid: 1247 + components: + - type: Transform + pos: -4.5,-43.5 + parent: 2 + - uid: 1248 + components: + - type: Transform + pos: 1.5,40.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + pos: 4.5,46.5 + parent: 2 + - uid: 1250 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: 5.5,-35.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: 13.5,-64.5 + parent: 2 + - uid: 1253 + components: + - type: Transform + pos: 12.5,-64.5 + parent: 2 + - uid: 1254 + components: + - type: Transform + pos: 15.5,42.5 + parent: 2 + - uid: 1255 + components: + - type: Transform + pos: 7.5,24.5 + parent: 2 + - uid: 1256 + components: + - type: Transform + pos: 2.5,50.5 + parent: 2 + - uid: 1257 + components: + - type: Transform + pos: -24.5,6.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: -29.5,-32.5 + parent: 2 + - uid: 1260 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 2 + - uid: 1261 + components: + - type: Transform + pos: 33.5,-49.5 + parent: 2 + - uid: 1262 + components: + - type: Transform + pos: -0.5,41.5 + parent: 2 + - uid: 1263 + components: + - type: Transform + pos: 31.5,-21.5 + parent: 2 + - uid: 1264 + components: + - type: Transform + pos: 31.5,-22.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: 3.5,50.5 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: -5.5,-50.5 + parent: 2 + - uid: 1267 + components: + - type: Transform + pos: 27.5,-33.5 + parent: 2 + - uid: 1268 + components: + - type: Transform + pos: -24.5,5.5 + parent: 2 + - uid: 1269 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 2 + - uid: 1270 + components: + - type: Transform + pos: -2.5,-51.5 + parent: 2 + - uid: 1271 + components: + - type: Transform + pos: 33.5,-44.5 + parent: 2 + - uid: 1272 + components: + - type: Transform + pos: -11.5,-51.5 + parent: 2 + - uid: 1273 + components: + - type: Transform + pos: -6.5,-52.5 + parent: 2 + - uid: 1274 + components: + - type: Transform + pos: 32.5,-44.5 + parent: 2 + - uid: 1275 + components: + - type: Transform + pos: 32.5,-45.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + pos: 35.5,-31.5 + parent: 2 + - uid: 1277 + components: + - type: Transform + pos: 32.5,-46.5 + parent: 2 + - uid: 1278 + components: + - type: Transform + pos: 33.5,-46.5 + parent: 2 + - uid: 1279 + components: + - type: Transform + pos: 36.5,-31.5 + parent: 2 + - uid: 1280 + components: + - type: Transform + pos: -0.5,-29.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 2 + - uid: 1282 + components: + - type: Transform + pos: -5.5,-49.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: 26.5,-37.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + pos: 6.5,-35.5 + parent: 2 + - uid: 1287 + components: + - type: Transform + pos: 33.5,-37.5 + parent: 2 + - uid: 1288 + components: + - type: Transform + pos: 32.5,-37.5 + parent: 2 + - uid: 1289 + components: + - type: Transform + pos: 31.5,-37.5 + parent: 2 + - uid: 1290 + components: + - type: Transform + pos: -20.5,-44.5 + parent: 2 + - uid: 1291 + components: + - type: Transform + pos: 24.5,-49.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + pos: 30.5,-49.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + pos: 30.5,-50.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + pos: 34.5,-37.5 + parent: 2 + - uid: 1295 + components: + - type: Transform + pos: 29.5,-37.5 + parent: 2 + - uid: 1296 + components: + - type: Transform + pos: 12.5,-36.5 + parent: 2 + - uid: 1297 + components: + - type: Transform + pos: 14.5,-34.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + pos: 18.5,-34.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + pos: 28.5,-37.5 + parent: 2 + - uid: 1300 + components: + - type: Transform + pos: 7.5,-35.5 + parent: 2 + - uid: 1301 + components: + - type: Transform + pos: 35.5,-29.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + pos: 24.5,-50.5 + parent: 2 + - uid: 1303 + components: + - type: Transform + pos: 8.5,-35.5 + parent: 2 + - uid: 1304 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 2 + - uid: 1305 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 2 + - uid: 1306 + components: + - type: Transform + pos: 19.5,-34.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: 24.5,-68.5 + parent: 2 + - uid: 1308 + components: + - type: Transform + pos: 22.5,-66.5 + parent: 2 + - uid: 1309 + components: + - type: Transform + pos: 22.5,-67.5 + parent: 2 + - uid: 1310 + components: + - type: Transform + pos: 22.5,-68.5 + parent: 2 + - uid: 1311 + components: + - type: Transform + pos: 23.5,-68.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + pos: 22.5,-65.5 + parent: 2 + - uid: 1313 + components: + - type: Transform + pos: 23.5,-62.5 + parent: 2 + - uid: 1314 + components: + - type: Transform + pos: 40.5,-57.5 + parent: 2 + - uid: 1315 + components: + - type: Transform + pos: 40.5,-56.5 + parent: 2 + - uid: 1316 + components: + - type: Transform + pos: 40.5,-55.5 + parent: 2 + - uid: 1317 + components: + - type: Transform + pos: 40.5,-54.5 + parent: 2 + - uid: 1318 + components: + - type: Transform + pos: 40.5,-53.5 + parent: 2 + - uid: 1319 + components: + - type: Transform + pos: 40.5,-52.5 + parent: 2 + - uid: 1320 + components: + - type: Transform + pos: 40.5,-51.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + pos: 31.5,-60.5 + parent: 2 + - uid: 1322 + components: + - type: Transform + pos: 40.5,-50.5 + parent: 2 + - uid: 1323 + components: + - type: Transform + pos: 40.5,-49.5 + parent: 2 + - uid: 1324 + components: + - type: Transform + pos: 40.5,-48.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + pos: 41.5,-48.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + pos: 42.5,-48.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + pos: 42.5,-47.5 + parent: 2 + - uid: 1328 + components: + - type: Transform + pos: 42.5,-46.5 + parent: 2 + - uid: 1329 + components: + - type: Transform + pos: 40.5,-46.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + pos: 41.5,-46.5 + parent: 2 + - uid: 1331 + components: + - type: Transform + pos: 22.5,-63.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + pos: 26.5,-72.5 + parent: 2 + - uid: 1333 + components: + - type: Transform + pos: 25.5,-66.5 + parent: 2 + - uid: 1334 + components: + - type: Transform + pos: 22.5,-62.5 + parent: 2 + - uid: 1335 + components: + - type: Transform + pos: 22.5,-64.5 + parent: 2 + - uid: 1336 + components: + - type: Transform + pos: 7.5,34.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + pos: 14.5,-64.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: 24.5,-37.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: 22.5,-37.5 + parent: 2 + - uid: 1340 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 2 + - uid: 1341 + components: + - type: Transform + pos: 25.5,-37.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + pos: 30.5,-40.5 + parent: 2 + - uid: 1343 + components: + - type: Transform + pos: 27.5,-36.5 + parent: 2 + - uid: 1344 + components: + - type: Transform + pos: 27.5,-37.5 + parent: 2 + - uid: 1345 + components: + - type: Transform + pos: -1.5,-51.5 + parent: 2 + - uid: 1346 + components: + - type: Transform + pos: -5.5,-52.5 + parent: 2 + - uid: 1347 + components: + - type: Transform + pos: -10.5,-51.5 + parent: 2 + - uid: 1348 + components: + - type: Transform + pos: -13.5,-51.5 + parent: 2 + - uid: 1349 + components: + - type: Transform + pos: 5.5,-52.5 + parent: 2 + - uid: 1350 + components: + - type: Transform + pos: -5.5,-51.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + pos: 27.5,-35.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + pos: 27.5,-34.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + pos: 24.5,-51.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + pos: -34.5,-37.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 2 + - uid: 1357 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 2 + - uid: 1358 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 2 + - uid: 1363 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - uid: 1366 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 2 + - uid: 1368 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 2 + - uid: 1377 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 + - uid: 1378 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 2 + - uid: 1379 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 2 + - uid: 1382 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 2 + - uid: 1387 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 2 + - uid: 1388 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 2 + - uid: 1389 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 2 + - uid: 1390 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 2 + - uid: 1391 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 2 + - uid: 1392 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 2 + - uid: 1393 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 2 + - uid: 1394 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 2 + - uid: 1395 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 2 + - uid: 1397 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 2 + - uid: 1398 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 2 + - uid: 1400 + components: + - type: Transform + pos: 19.5,-23.5 + parent: 2 + - uid: 1401 + components: + - type: Transform + pos: 19.5,-24.5 + parent: 2 + - uid: 1402 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 2 + - uid: 1403 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 2 + - uid: 1404 + components: + - type: Transform + pos: 19.5,-27.5 + parent: 2 + - uid: 1405 + components: + - type: Transform + pos: 18.5,-27.5 + parent: 2 + - uid: 1406 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 2 + - uid: 1407 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 2 + - uid: 1408 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 2 + - uid: 1409 + components: + - type: Transform + pos: 17.5,-31.5 + parent: 2 + - uid: 1410 + components: + - type: Transform + pos: 19.5,-31.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + pos: 20.5,-31.5 + parent: 2 + - uid: 1412 + components: + - type: Transform + pos: 21.5,-31.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + pos: 22.5,-31.5 + parent: 2 + - uid: 1414 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 2 + - uid: 1415 + components: + - type: Transform + pos: 21.5,-27.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 2 + - uid: 1418 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 2 + - uid: 1419 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 2 + - uid: 1420 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 2 + - uid: 1421 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 2 + - uid: 1422 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 2 + - uid: 1423 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 2 + - uid: 1424 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 2 + - uid: 1425 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 2 + - uid: 1427 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 2 + - uid: 1428 + components: + - type: Transform + pos: 10.5,-31.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + pos: 9.5,-31.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + pos: 8.5,-31.5 + parent: 2 + - uid: 1431 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 2 + - uid: 1433 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 2 + - uid: 1435 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 2 + - uid: 1436 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 2 + - uid: 1437 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 2 + - uid: 1438 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 2 + - uid: 1439 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 2 + - uid: 1441 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 2 + - uid: 1442 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 2 + - uid: 1443 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 2 + - uid: 1444 + components: + - type: Transform + pos: 25.5,-32.5 + parent: 2 + - uid: 1445 + components: + - type: Transform + pos: 25.5,-31.5 + parent: 2 + - uid: 1446 + components: + - type: Transform + pos: 25.5,-30.5 + parent: 2 + - uid: 1447 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 2 + - uid: 1448 + components: + - type: Transform + pos: 27.5,-31.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 2 + - uid: 1450 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 2 + - uid: 1451 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 2 + - uid: 1452 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 2 + - uid: 1453 + components: + - type: Transform + pos: 27.5,-30.5 + parent: 2 + - uid: 1454 + components: + - type: Transform + pos: 28.5,-30.5 + parent: 2 + - uid: 1455 + components: + - type: Transform + pos: 29.5,-30.5 + parent: 2 + - uid: 1456 + components: + - type: Transform + pos: 30.5,-30.5 + parent: 2 + - uid: 1457 + components: + - type: Transform + pos: 31.5,-30.5 + parent: 2 + - uid: 1458 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 2 + - uid: 1459 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 2 + - uid: 1460 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 2 + - uid: 1461 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 2 + - uid: 1462 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 2 + - uid: 1463 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 2 + - uid: 1464 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 2 + - uid: 1465 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 2 + - uid: 1466 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - uid: 1467 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 2 + - uid: 1471 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + pos: 33.5,-16.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 2 + - uid: 1474 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 2 + - uid: 1477 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 2 + - uid: 1478 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 2 + - uid: 1479 + components: + - type: Transform + pos: 27.5,-27.5 + parent: 2 + - uid: 1480 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 2 + - uid: 1481 + components: + - type: Transform + pos: 26.5,-24.5 + parent: 2 + - uid: 1482 + components: + - type: Transform + pos: 27.5,-24.5 + parent: 2 + - uid: 1483 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 2 + - uid: 1484 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 2 + - uid: 1485 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 2 + - uid: 1486 + components: + - type: Transform + pos: 31.5,-24.5 + parent: 2 + - uid: 1487 + components: + - type: Transform + pos: 32.5,-24.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: 33.5,-24.5 + parent: 2 + - uid: 1489 + components: + - type: Transform + pos: 34.5,-24.5 + parent: 2 + - uid: 1490 + components: + - type: Transform + pos: 35.5,-24.5 + parent: 2 + - uid: 1491 + components: + - type: Transform + pos: 41.5,-35.5 + parent: 2 + - uid: 1492 + components: + - type: Transform + pos: 41.5,-34.5 + parent: 2 + - uid: 1493 + components: + - type: Transform + pos: 41.5,-33.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + pos: 40.5,-31.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + pos: 40.5,-30.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: 40.5,-29.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + pos: 40.5,-28.5 + parent: 2 + - uid: 1498 + components: + - type: Transform + pos: 40.5,-27.5 + parent: 2 + - uid: 1499 + components: + - type: Transform + pos: 41.5,-31.5 + parent: 2 + - uid: 1500 + components: + - type: Transform + pos: 42.5,-31.5 + parent: 2 + - uid: 1501 + components: + - type: Transform + pos: 43.5,-31.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + pos: 44.5,-31.5 + parent: 2 + - uid: 1503 + components: + - type: Transform + pos: 45.5,-31.5 + parent: 2 + - uid: 1504 + components: + - type: Transform + pos: 45.5,-32.5 + parent: 2 + - uid: 1505 + components: + - type: Transform + pos: 45.5,-33.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + pos: 45.5,-30.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + pos: 45.5,-29.5 + parent: 2 + - uid: 1508 + components: + - type: Transform + pos: 45.5,-28.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + pos: 45.5,-19.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: 45.5,-21.5 + parent: 2 + - uid: 1511 + components: + - type: Transform + pos: 44.5,-21.5 + parent: 2 + - uid: 1512 + components: + - type: Transform + pos: 44.5,-22.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + pos: 44.5,-23.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + pos: 44.5,-24.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: 43.5,-24.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + pos: 42.5,-24.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + pos: 41.5,-24.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + pos: 40.5,-24.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + pos: 39.5,-24.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + pos: 38.5,-24.5 + parent: 2 + - uid: 1521 + components: + - type: Transform + pos: 37.5,-24.5 + parent: 2 + - uid: 1522 + components: + - type: Transform + pos: 37.5,-23.5 + parent: 2 + - uid: 1523 + components: + - type: Transform + pos: 37.5,-22.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + pos: 37.5,-21.5 + parent: 2 + - uid: 1525 + components: + - type: Transform + pos: 37.5,-20.5 + parent: 2 + - uid: 1526 + components: + - type: Transform + pos: 37.5,-19.5 + parent: 2 + - uid: 1527 + components: + - type: Transform + pos: 37.5,-18.5 + parent: 2 + - uid: 1528 + components: + - type: Transform + pos: 37.5,-17.5 + parent: 2 + - uid: 1529 + components: + - type: Transform + pos: 37.5,-16.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 2 + - uid: 1531 + components: + - type: Transform + pos: 40.5,-23.5 + parent: 2 + - uid: 1532 + components: + - type: Transform + pos: 40.5,-22.5 + parent: 2 + - uid: 1533 + components: + - type: Transform + pos: 40.5,-21.5 + parent: 2 + - uid: 1534 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 2 + - uid: 1535 + components: + - type: Transform + pos: 39.5,-16.5 + parent: 2 + - uid: 1536 + components: + - type: Transform + pos: 40.5,-16.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 2 + - uid: 1538 + components: + - type: Transform + pos: 40.5,-15.5 + parent: 2 + - uid: 1539 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 2 + - uid: 1540 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 2 + - uid: 1542 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - uid: 1544 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 2 + - uid: 1545 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 1546 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - uid: 1547 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 2 + - uid: 1548 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 2 + - uid: 1549 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 + - uid: 1550 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 2 + - uid: 1552 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 2 + - uid: 1553 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 2 + - uid: 1554 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 2 + - uid: 1555 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 2 + - uid: 1556 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 2 + - uid: 1557 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 2 + - uid: 1558 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 2 + - uid: 1560 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 2 + - uid: 1561 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 2 + - uid: 1562 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 2 + - uid: 1563 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 2 + - uid: 1564 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 2 + - uid: 1565 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 1566 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 + - uid: 1567 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 + - uid: 1568 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 2 + - uid: 1569 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + pos: 13.5,-20.5 + parent: 2 + - uid: 1571 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 2 + - uid: 1572 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 2 + - uid: 1573 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 2 + - uid: 1574 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 2 + - uid: 1575 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 2 + - uid: 1576 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 2 + - uid: 1577 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 2 + - uid: 1578 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 + - uid: 1579 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 2 + - uid: 1580 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 2 + - uid: 1581 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 2 + - uid: 1582 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 2 + - uid: 1583 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 2 + - uid: 1584 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 2 + - uid: 1585 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 2 + - uid: 1586 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 1587 + components: + - type: Transform + pos: -25.5,7.5 + parent: 2 + - uid: 1588 + components: + - type: Transform + pos: -24.5,7.5 + parent: 2 + - uid: 1589 + components: + - type: Transform + pos: -24.5,4.5 + parent: 2 + - uid: 1590 + components: + - type: Transform + pos: -25.5,7.5 + parent: 2 + - uid: 1591 + components: + - type: Transform + pos: -26.5,7.5 + parent: 2 + - uid: 1592 + components: + - type: Transform + pos: -27.5,7.5 + parent: 2 + - uid: 1593 + components: + - type: Transform + pos: -28.5,7.5 + parent: 2 + - uid: 1594 + components: + - type: Transform + pos: -29.5,7.5 + parent: 2 + - uid: 1595 + components: + - type: Transform + pos: -29.5,6.5 + parent: 2 + - uid: 1596 + components: + - type: Transform + pos: -29.5,5.5 + parent: 2 + - uid: 1597 + components: + - type: Transform + pos: -29.5,4.5 + parent: 2 + - uid: 1598 + components: + - type: Transform + pos: -30.5,7.5 + parent: 2 + - uid: 1599 + components: + - type: Transform + pos: -30.5,8.5 + parent: 2 + - uid: 1600 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 1601 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - uid: 1602 + components: + - type: Transform + pos: -26.5,10.5 + parent: 2 + - uid: 1603 + components: + - type: Transform + pos: -27.5,10.5 + parent: 2 + - uid: 1604 + components: + - type: Transform + pos: -28.5,10.5 + parent: 2 + - uid: 1605 + components: + - type: Transform + pos: -28.5,11.5 + parent: 2 + - uid: 1606 + components: + - type: Transform + pos: -28.5,12.5 + parent: 2 + - uid: 1607 + components: + - type: Transform + pos: -29.5,10.5 + parent: 2 + - uid: 1608 + components: + - type: Transform + pos: -30.5,10.5 + parent: 2 + - uid: 1609 + components: + - type: Transform + pos: -28.5,13.5 + parent: 2 + - uid: 1610 + components: + - type: Transform + pos: -26.5,11.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + pos: -26.5,12.5 + parent: 2 + - uid: 1612 + components: + - type: Transform + pos: -26.5,13.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + pos: -30.5,11.5 + parent: 2 + - uid: 1614 + components: + - type: Transform + pos: -30.5,12.5 + parent: 2 + - uid: 1615 + components: + - type: Transform + pos: -40.5,7.5 + parent: 2 + - uid: 1616 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - uid: 1617 + components: + - type: Transform + pos: -40.5,5.5 + parent: 2 + - uid: 1618 + components: + - type: Transform + pos: -40.5,6.5 + parent: 2 + - uid: 1619 + components: + - type: Transform + pos: -40.5,8.5 + parent: 2 + - uid: 1620 + components: + - type: Transform + pos: -40.5,9.5 + parent: 2 + - uid: 1621 + components: + - type: Transform + pos: -40.5,10.5 + parent: 2 + - uid: 1622 + components: + - type: Transform + pos: -40.5,11.5 + parent: 2 + - uid: 1623 + components: + - type: Transform + pos: -42.5,9.5 + parent: 2 + - uid: 1624 + components: + - type: Transform + pos: -41.5,9.5 + parent: 2 + - uid: 1625 + components: + - type: Transform + pos: -40.5,9.5 + parent: 2 + - uid: 1626 + components: + - type: Transform + pos: -39.5,9.5 + parent: 2 + - uid: 1627 + components: + - type: Transform + pos: -38.5,9.5 + parent: 2 + - uid: 1628 + components: + - type: Transform + pos: -37.5,9.5 + parent: 2 + - uid: 1629 + components: + - type: Transform + pos: -39.5,6.5 + parent: 2 + - uid: 1630 + components: + - type: Transform + pos: -38.5,6.5 + parent: 2 + - uid: 1631 + components: + - type: Transform + pos: -37.5,3.5 + parent: 2 + - uid: 1632 + components: + - type: Transform + pos: -38.5,5.5 + parent: 2 + - uid: 1633 + components: + - type: Transform + pos: -38.5,4.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + pos: -38.5,3.5 + parent: 2 + - uid: 1635 + components: + - type: Transform + pos: -38.5,2.5 + parent: 2 + - uid: 1636 + components: + - type: Transform + pos: -38.5,1.5 + parent: 2 + - uid: 1637 + components: + - type: Transform + pos: -38.5,0.5 + parent: 2 + - uid: 1638 + components: + - type: Transform + pos: -38.5,-0.5 + parent: 2 + - uid: 1639 + components: + - type: Transform + pos: -38.5,-1.5 + parent: 2 + - uid: 1640 + components: + - type: Transform + pos: -38.5,-2.5 + parent: 2 + - uid: 1641 + components: + - type: Transform + pos: -38.5,-3.5 + parent: 2 + - uid: 1642 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 2 + - uid: 1643 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 2 + - uid: 1644 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 2 + - uid: 1645 + components: + - type: Transform + pos: -39.5,-0.5 + parent: 2 + - uid: 1646 + components: + - type: Transform + pos: -38.5,-0.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + pos: -37.5,-0.5 + parent: 2 + - uid: 1648 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - uid: 1649 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - uid: 1650 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 + - uid: 1651 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - uid: 1652 + components: + - type: Transform + pos: -41.5,0.5 + parent: 2 + - uid: 1653 + components: + - type: Transform + pos: -41.5,1.5 + parent: 2 + - uid: 1654 + components: + - type: Transform + pos: -41.5,2.5 + parent: 2 + - uid: 1655 + components: + - type: Transform + pos: -43.5,9.5 + parent: 2 + - uid: 1656 + components: + - type: Transform + pos: -43.5,9.5 + parent: 2 + - uid: 1657 + components: + - type: Transform + pos: -43.5,10.5 + parent: 2 + - uid: 1658 + components: + - type: Transform + pos: -43.5,11.5 + parent: 2 + - uid: 1659 + components: + - type: Transform + pos: -37.5,10.5 + parent: 2 + - uid: 1660 + components: + - type: Transform + pos: -37.5,11.5 + parent: 2 + - uid: 1661 + components: + - type: Transform + pos: -42.5,9.5 + parent: 2 + - uid: 1662 + components: + - type: Transform + pos: -42.5,8.5 + parent: 2 + - uid: 1663 + components: + - type: Transform + pos: -42.5,7.5 + parent: 2 + - uid: 1664 + components: + - type: Transform + pos: -42.5,6.5 + parent: 2 + - uid: 1665 + components: + - type: Transform + pos: -43.5,6.5 + parent: 2 + - uid: 1666 + components: + - type: Transform + pos: -42.5,3.5 + parent: 2 + - uid: 1667 + components: + - type: Transform + pos: -42.5,2.5 + parent: 2 + - uid: 1668 + components: + - type: Transform + pos: -42.5,1.5 + parent: 2 + - uid: 1669 + components: + - type: Transform + pos: -42.5,0.5 + parent: 2 + - uid: 1670 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 2 + - uid: 1671 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 2 + - uid: 1672 + components: + - type: Transform + pos: -42.5,-1.5 + parent: 2 + - uid: 1673 + components: + - type: Transform + pos: -43.5,-1.5 + parent: 2 + - uid: 1674 + components: + - type: Transform + pos: -44.5,-1.5 + parent: 2 + - uid: 1675 + components: + - type: Transform + pos: -44.5,0.5 + parent: 2 + - uid: 1676 + components: + - type: Transform + pos: -43.5,0.5 + parent: 2 + - uid: 1677 + components: + - type: Transform + pos: -36.5,3.5 + parent: 2 + - uid: 1678 + components: + - type: Transform + pos: -37.5,-4.5 + parent: 2 + - uid: 1679 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 2 + - uid: 1680 + components: + - type: Transform + pos: -37.5,-1.5 + parent: 2 + - uid: 1681 + components: + - type: Transform + pos: -41.5,-8.5 + parent: 2 + - uid: 1682 + components: + - type: Transform + pos: -38.5,-11.5 + parent: 2 + - uid: 1683 + components: + - type: Transform + pos: -42.5,-6.5 + parent: 2 + - uid: 1684 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 2 + - uid: 1685 + components: + - type: Transform + pos: -42.5,-8.5 + parent: 2 + - uid: 1686 + components: + - type: Transform + pos: -43.5,-8.5 + parent: 2 + - uid: 1687 + components: + - type: Transform + pos: -44.5,-8.5 + parent: 2 + - uid: 1688 + components: + - type: Transform + pos: -40.5,-8.5 + parent: 2 + - uid: 1689 + components: + - type: Transform + pos: -39.5,-8.5 + parent: 2 + - uid: 1690 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 2 + - uid: 1691 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 2 + - uid: 1692 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 2 + - uid: 1693 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 1694 + components: + - type: Transform + pos: -37.5,-9.5 + parent: 2 + - uid: 1695 + components: + - type: Transform + pos: -37.5,-10.5 + parent: 2 + - uid: 1696 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 2 + - uid: 1697 + components: + - type: Transform + pos: -37.5,-12.5 + parent: 2 + - uid: 1698 + components: + - type: Transform + pos: -37.5,-13.5 + parent: 2 + - uid: 1699 + components: + - type: Transform + pos: -37.5,-14.5 + parent: 2 + - uid: 1700 + components: + - type: Transform + pos: -37.5,-15.5 + parent: 2 + - uid: 1701 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 1702 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 2 + - uid: 1703 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 2 + - uid: 1704 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 + - uid: 1705 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 1706 + components: + - type: Transform + pos: -39.5,-11.5 + parent: 2 + - uid: 1707 + components: + - type: Transform + pos: -40.5,-11.5 + parent: 2 + - uid: 1708 + components: + - type: Transform + pos: -41.5,-11.5 + parent: 2 + - uid: 1709 + components: + - type: Transform + pos: -42.5,-11.5 + parent: 2 + - uid: 1710 + components: + - type: Transform + pos: -43.5,-11.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 2 + - uid: 1712 + components: + - type: Transform + pos: -43.5,-12.5 + parent: 2 + - uid: 1713 + components: + - type: Transform + pos: -43.5,-13.5 + parent: 2 + - uid: 1714 + components: + - type: Transform + pos: -45.5,-11.5 + parent: 2 + - uid: 1715 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 2 + - uid: 1716 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 2 + - uid: 1717 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - uid: 1718 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 1719 + components: + - type: Transform + pos: -42.5,-18.5 + parent: 2 + - uid: 1720 + components: + - type: Transform + pos: -43.5,-18.5 + parent: 2 + - uid: 1721 + components: + - type: Transform + pos: -44.5,-18.5 + parent: 2 + - uid: 1722 + components: + - type: Transform + pos: -45.5,-18.5 + parent: 2 + - uid: 1723 + components: + - type: Transform + pos: -46.5,-18.5 + parent: 2 + - uid: 1724 + components: + - type: Transform + pos: -44.5,-17.5 + parent: 2 + - uid: 1725 + components: + - type: Transform + pos: -44.5,-16.5 + parent: 2 + - uid: 1726 + components: + - type: Transform + pos: -44.5,-15.5 + parent: 2 + - uid: 1727 + components: + - type: Transform + pos: -44.5,-19.5 + parent: 2 + - uid: 1728 + components: + - type: Transform + pos: -44.5,-20.5 + parent: 2 + - uid: 1729 + components: + - type: Transform + pos: -44.5,-21.5 + parent: 2 + - uid: 1730 + components: + - type: Transform + pos: -44.5,-22.5 + parent: 2 + - uid: 1731 + components: + - type: Transform + pos: -44.5,-23.5 + parent: 2 + - uid: 1732 + components: + - type: Transform + pos: -47.5,-18.5 + parent: 2 + - uid: 1733 + components: + - type: Transform + pos: -48.5,-18.5 + parent: 2 + - uid: 1734 + components: + - type: Transform + pos: -48.5,-22.5 + parent: 2 + - uid: 1735 + components: + - type: Transform + pos: -48.5,-21.5 + parent: 2 + - uid: 1736 + components: + - type: Transform + pos: -48.5,-20.5 + parent: 2 + - uid: 1737 + components: + - type: Transform + pos: -48.5,-19.5 + parent: 2 + - uid: 1738 + components: + - type: Transform + pos: -48.5,-18.5 + parent: 2 + - uid: 1739 + components: + - type: Transform + pos: -48.5,-17.5 + parent: 2 + - uid: 1740 + components: + - type: Transform + pos: -48.5,-16.5 + parent: 2 + - uid: 1741 + components: + - type: Transform + pos: -32.5,-29.5 + parent: 2 + - uid: 1742 + components: + - type: Transform + pos: -23.5,29.5 + parent: 2 + - uid: 1743 + components: + - type: Transform + pos: -20.5,-22.5 + parent: 2 + - uid: 1744 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 + - uid: 1745 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 2 + - uid: 1746 + components: + - type: Transform + pos: -24.5,-17.5 + parent: 2 + - uid: 1747 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 2 + - uid: 1748 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 2 + - uid: 1749 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 2 + - uid: 1750 + components: + - type: Transform + pos: -28.5,-17.5 + parent: 2 + - uid: 1751 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 2 + - uid: 1752 + components: + - type: Transform + pos: -30.5,-17.5 + parent: 2 + - uid: 1753 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 + - uid: 1754 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 2 + - uid: 1755 + components: + - type: Transform + pos: -21.5,-17.5 + parent: 2 + - uid: 1756 + components: + - type: Transform + pos: -20.5,-17.5 + parent: 2 + - uid: 1757 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 2 + - uid: 1758 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 2 + - uid: 1759 + components: + - type: Transform + pos: -21.5,-18.5 + parent: 2 + - uid: 1760 + components: + - type: Transform + pos: -21.5,-19.5 + parent: 2 + - uid: 1761 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 2 + - uid: 1762 + components: + - type: Transform + pos: -21.5,-21.5 + parent: 2 + - uid: 1763 + components: + - type: Transform + pos: -21.5,-22.5 + parent: 2 + - uid: 1764 + components: + - type: Transform + pos: -21.5,-23.5 + parent: 2 + - uid: 1765 + components: + - type: Transform + pos: -21.5,-24.5 + parent: 2 + - uid: 1766 + components: + - type: Transform + pos: -22.5,-22.5 + parent: 2 + - uid: 1767 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 2 + - uid: 1768 + components: + - type: Transform + pos: -24.5,-22.5 + parent: 2 + - uid: 1769 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 2 + - uid: 1770 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 2 + - uid: 1771 + components: + - type: Transform + pos: -24.5,-23.5 + parent: 2 + - uid: 1772 + components: + - type: Transform + pos: -26.5,-21.5 + parent: 2 + - uid: 1773 + components: + - type: Transform + pos: -22.5,-24.5 + parent: 2 + - uid: 1774 + components: + - type: Transform + pos: -22.5,-25.5 + parent: 2 + - uid: 1775 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 2 + - uid: 1776 + components: + - type: Transform + pos: -27.5,-27.5 + parent: 2 + - uid: 1777 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 + - uid: 1778 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 2 + - uid: 1779 + components: + - type: Transform + pos: -24.5,-27.5 + parent: 2 + - uid: 1780 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 2 + - uid: 1781 + components: + - type: Transform + pos: -22.5,-27.5 + parent: 2 + - uid: 1782 + components: + - type: Transform + pos: -21.5,-27.5 + parent: 2 + - uid: 1783 + components: + - type: Transform + pos: -20.5,-27.5 + parent: 2 + - uid: 1784 + components: + - type: Transform + pos: -19.5,-27.5 + parent: 2 + - uid: 1785 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 2 + - uid: 1786 + components: + - type: Transform + pos: -17.5,-27.5 + parent: 2 + - uid: 1787 + components: + - type: Transform + pos: -16.5,-27.5 + parent: 2 + - uid: 1788 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 2 + - uid: 1789 + components: + - type: Transform + pos: -14.5,-27.5 + parent: 2 + - uid: 1790 + components: + - type: Transform + pos: -13.5,-27.5 + parent: 2 + - uid: 1791 + components: + - type: Transform + pos: -12.5,-27.5 + parent: 2 + - uid: 1792 + components: + - type: Transform + pos: -11.5,-27.5 + parent: 2 + - uid: 1793 + components: + - type: Transform + pos: -10.5,-27.5 + parent: 2 + - uid: 1794 + components: + - type: Transform + pos: -9.5,-27.5 + parent: 2 + - uid: 1795 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 2 + - uid: 1796 + components: + - type: Transform + pos: -7.5,-27.5 + parent: 2 + - uid: 1797 + components: + - type: Transform + pos: -6.5,-27.5 + parent: 2 + - uid: 1798 + components: + - type: Transform + pos: -5.5,-27.5 + parent: 2 + - uid: 1799 + components: + - type: Transform + pos: -4.5,-27.5 + parent: 2 + - uid: 1800 + components: + - type: Transform + pos: -3.5,-27.5 + parent: 2 + - uid: 1801 + components: + - type: Transform + pos: -2.5,-27.5 + parent: 2 + - uid: 1802 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 2 + - uid: 1803 + components: + - type: Transform + pos: -10.5,-26.5 + parent: 2 + - uid: 1804 + components: + - type: Transform + pos: -10.5,-25.5 + parent: 2 + - uid: 1805 + components: + - type: Transform + pos: -10.5,-24.5 + parent: 2 + - uid: 1806 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - uid: 1807 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 2 + - uid: 1808 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 2 + - uid: 1809 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 2 + - uid: 1810 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 2 + - uid: 1811 + components: + - type: Transform + pos: -25.5,-29.5 + parent: 2 + - uid: 1812 + components: + - type: Transform + pos: -25.5,-30.5 + parent: 2 + - uid: 1813 + components: + - type: Transform + pos: -26.5,-30.5 + parent: 2 + - uid: 1814 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - uid: 1815 + components: + - type: Transform + pos: -28.5,-30.5 + parent: 2 + - uid: 1816 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 2 + - uid: 1817 + components: + - type: Transform + pos: -30.5,-30.5 + parent: 2 + - uid: 1818 + components: + - type: Transform + pos: -31.5,-30.5 + parent: 2 + - uid: 1819 + components: + - type: Transform + pos: -32.5,-30.5 + parent: 2 + - uid: 1820 + components: + - type: Transform + pos: -33.5,-30.5 + parent: 2 + - uid: 1821 + components: + - type: Transform + pos: -34.5,-30.5 + parent: 2 + - uid: 1822 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 2 + - uid: 1823 + components: + - type: Transform + pos: -29.5,-28.5 + parent: 2 + - uid: 1824 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 2 + - uid: 1825 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 2 + - uid: 1826 + components: + - type: Transform + pos: -29.5,-25.5 + parent: 2 + - uid: 1827 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 2 + - uid: 1828 + components: + - type: Transform + pos: -32.5,-27.5 + parent: 2 + - uid: 1829 + components: + - type: Transform + pos: -32.5,-26.5 + parent: 2 + - uid: 1830 + components: + - type: Transform + pos: -35.5,-30.5 + parent: 2 + - uid: 1831 + components: + - type: Transform + pos: -35.5,-29.5 + parent: 2 + - uid: 1832 + components: + - type: Transform + pos: -35.5,-28.5 + parent: 2 + - uid: 1833 + components: + - type: Transform + pos: -35.5,-27.5 + parent: 2 + - uid: 1834 + components: + - type: Transform + pos: -35.5,-26.5 + parent: 2 + - uid: 1835 + components: + - type: Transform + pos: -26.5,-36.5 + parent: 2 + - uid: 1836 + components: + - type: Transform + pos: -29.5,-31.5 + parent: 2 + - uid: 1837 + components: + - type: Transform + pos: -33.5,-31.5 + parent: 2 + - uid: 1838 + components: + - type: Transform + pos: -33.5,-32.5 + parent: 2 + - uid: 1839 + components: + - type: Transform + pos: -33.5,-33.5 + parent: 2 + - uid: 1840 + components: + - type: Transform + pos: -33.5,-44.5 + parent: 2 + - uid: 1841 + components: + - type: Transform + pos: -33.5,-36.5 + parent: 2 + - uid: 1842 + components: + - type: Transform + pos: -33.5,-37.5 + parent: 2 + - uid: 1843 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 + - uid: 1844 + components: + - type: Transform + pos: -33.5,-39.5 + parent: 2 + - uid: 1845 + components: + - type: Transform + pos: -33.5,-40.5 + parent: 2 + - uid: 1846 + components: + - type: Transform + pos: -33.5,-41.5 + parent: 2 + - uid: 1847 + components: + - type: Transform + pos: -33.5,-42.5 + parent: 2 + - uid: 1848 + components: + - type: Transform + pos: -33.5,-43.5 + parent: 2 + - uid: 1849 + components: + - type: Transform + pos: -32.5,-40.5 + parent: 2 + - uid: 1850 + components: + - type: Transform + pos: -31.5,-40.5 + parent: 2 + - uid: 1851 + components: + - type: Transform + pos: -30.5,-40.5 + parent: 2 + - uid: 1852 + components: + - type: Transform + pos: -29.5,-40.5 + parent: 2 + - uid: 1853 + components: + - type: Transform + pos: -28.5,-40.5 + parent: 2 + - uid: 1854 + components: + - type: Transform + pos: -27.5,-40.5 + parent: 2 + - uid: 1855 + components: + - type: Transform + pos: -29.5,-33.5 + parent: 2 + - uid: 1856 + components: + - type: Transform + pos: -29.5,-34.5 + parent: 2 + - uid: 1857 + components: + - type: Transform + pos: -29.5,-35.5 + parent: 2 + - uid: 1858 + components: + - type: Transform + pos: -35.5,-37.5 + parent: 2 + - uid: 1859 + components: + - type: Transform + pos: -25.5,-36.5 + parent: 2 + - uid: 1860 + components: + - type: Transform + pos: -24.5,-36.5 + parent: 2 + - uid: 1861 + components: + - type: Transform + pos: -24.5,-39.5 + parent: 2 + - uid: 1862 + components: + - type: Transform + pos: -24.5,-38.5 + parent: 2 + - uid: 1863 + components: + - type: Transform + pos: -24.5,-37.5 + parent: 2 + - uid: 1864 + components: + - type: Transform + pos: -24.5,-36.5 + parent: 2 + - uid: 1865 + components: + - type: Transform + pos: -24.5,-35.5 + parent: 2 + - uid: 1866 + components: + - type: Transform + pos: -24.5,-34.5 + parent: 2 + - uid: 1867 + components: + - type: Transform + pos: -24.5,-33.5 + parent: 2 + - uid: 1868 + components: + - type: Transform + pos: -42.5,-37.5 + parent: 2 + - uid: 1869 + components: + - type: Transform + pos: -44.5,-34.5 + parent: 2 + - uid: 1870 + components: + - type: Transform + pos: -40.5,-37.5 + parent: 2 + - uid: 1871 + components: + - type: Transform + pos: -39.5,-37.5 + parent: 2 + - uid: 1872 + components: + - type: Transform + pos: -38.5,-37.5 + parent: 2 + - uid: 1873 + components: + - type: Transform + pos: -38.5,-39.5 + parent: 2 + - uid: 1874 + components: + - type: Transform + pos: -38.5,-38.5 + parent: 2 + - uid: 1875 + components: + - type: Transform + pos: -38.5,-37.5 + parent: 2 + - uid: 1876 + components: + - type: Transform + pos: -38.5,-36.5 + parent: 2 + - uid: 1877 + components: + - type: Transform + pos: -38.5,-35.5 + parent: 2 + - uid: 1878 + components: + - type: Transform + pos: -38.5,-37.5 + parent: 2 + - uid: 1879 + components: + - type: Transform + pos: -37.5,-37.5 + parent: 2 + - uid: 1880 + components: + - type: Transform + pos: -39.5,-35.5 + parent: 2 + - uid: 1881 + components: + - type: Transform + pos: -40.5,-35.5 + parent: 2 + - uid: 1882 + components: + - type: Transform + pos: -41.5,-35.5 + parent: 2 + - uid: 1883 + components: + - type: Transform + pos: -42.5,-35.5 + parent: 2 + - uid: 1884 + components: + - type: Transform + pos: -43.5,-35.5 + parent: 2 + - uid: 1885 + components: + - type: Transform + pos: -43.5,-34.5 + parent: 2 + - uid: 1886 + components: + - type: Transform + pos: -43.5,-33.5 + parent: 2 + - uid: 1887 + components: + - type: Transform + pos: -43.5,-32.5 + parent: 2 + - uid: 1888 + components: + - type: Transform + pos: -43.5,-31.5 + parent: 2 + - uid: 1889 + components: + - type: Transform + pos: -43.5,-30.5 + parent: 2 + - uid: 1890 + components: + - type: Transform + pos: -45.5,-34.5 + parent: 2 + - uid: 1891 + components: + - type: Transform + pos: -46.5,-34.5 + parent: 2 + - uid: 1892 + components: + - type: Transform + pos: -47.5,-34.5 + parent: 2 + - uid: 1893 + components: + - type: Transform + pos: -48.5,-34.5 + parent: 2 + - uid: 1894 + components: + - type: Transform + pos: -42.5,-32.5 + parent: 2 + - uid: 1895 + components: + - type: Transform + pos: -41.5,-32.5 + parent: 2 + - uid: 1896 + components: + - type: Transform + pos: -41.5,-31.5 + parent: 2 + - uid: 1897 + components: + - type: Transform + pos: -41.5,-30.5 + parent: 2 + - uid: 1898 + components: + - type: Transform + pos: -44.5,-31.5 + parent: 2 + - uid: 1899 + components: + - type: Transform + pos: -45.5,-31.5 + parent: 2 + - uid: 1900 + components: + - type: Transform + pos: -46.5,-31.5 + parent: 2 + - uid: 1901 + components: + - type: Transform + pos: -46.5,-30.5 + parent: 2 + - uid: 1902 + components: + - type: Transform + pos: -42.5,-36.5 + parent: 2 + - uid: 1903 + components: + - type: Transform + pos: -42.5,-38.5 + parent: 2 + - uid: 1904 + components: + - type: Transform + pos: -42.5,-39.5 + parent: 2 + - uid: 1905 + components: + - type: Transform + pos: -42.5,-40.5 + parent: 2 + - uid: 1906 + components: + - type: Transform + pos: -42.5,-41.5 + parent: 2 + - uid: 1907 + components: + - type: Transform + pos: -42.5,-42.5 + parent: 2 + - uid: 1908 + components: + - type: Transform + pos: -42.5,-43.5 + parent: 2 + - uid: 1909 + components: + - type: Transform + pos: -43.5,-43.5 + parent: 2 + - uid: 1910 + components: + - type: Transform + pos: -44.5,-43.5 + parent: 2 + - uid: 1911 + components: + - type: Transform + pos: -45.5,-43.5 + parent: 2 + - uid: 1912 + components: + - type: Transform + pos: -41.5,-42.5 + parent: 2 + - uid: 1913 + components: + - type: Transform + pos: -40.5,-42.5 + parent: 2 + - uid: 1914 + components: + - type: Transform + pos: -39.5,-42.5 + parent: 2 + - uid: 1915 + components: + - type: Transform + pos: -38.5,-42.5 + parent: 2 + - uid: 1916 + components: + - type: Transform + pos: -37.5,-42.5 + parent: 2 + - uid: 1917 + components: + - type: Transform + pos: -36.5,-42.5 + parent: 2 + - uid: 1918 + components: + - type: Transform + pos: -39.5,-24.5 + parent: 2 + - uid: 1919 + components: + - type: Transform + pos: -39.5,-25.5 + parent: 2 + - uid: 1920 + components: + - type: Transform + pos: -39.5,-26.5 + parent: 2 + - uid: 1921 + components: + - type: Transform + pos: -40.5,-26.5 + parent: 2 + - uid: 1922 + components: + - type: Transform + pos: -41.5,-26.5 + parent: 2 + - uid: 1923 + components: + - type: Transform + pos: -42.5,-26.5 + parent: 2 + - uid: 1924 + components: + - type: Transform + pos: -43.5,-26.5 + parent: 2 + - uid: 1925 + components: + - type: Transform + pos: -44.5,-26.5 + parent: 2 + - uid: 1926 + components: + - type: Transform + pos: -45.5,-26.5 + parent: 2 + - uid: 1927 + components: + - type: Transform + pos: -46.5,-26.5 + parent: 2 + - uid: 1928 + components: + - type: Transform + pos: -47.5,-26.5 + parent: 2 + - uid: 1929 + components: + - type: Transform + pos: -48.5,-26.5 + parent: 2 + - uid: 1930 + components: + - type: Transform + pos: -49.5,-26.5 + parent: 2 + - uid: 1931 + components: + - type: Transform + pos: -38.5,-26.5 + parent: 2 + - uid: 1932 + components: + - type: Transform + pos: -38.5,-27.5 + parent: 2 + - uid: 1933 + components: + - type: Transform + pos: -38.5,-28.5 + parent: 2 + - uid: 1934 + components: + - type: Transform + pos: -38.5,-29.5 + parent: 2 + - uid: 1935 + components: + - type: Transform + pos: -38.5,-30.5 + parent: 2 + - uid: 1936 + components: + - type: Transform + pos: -38.5,-31.5 + parent: 2 + - uid: 1937 + components: + - type: Transform + pos: -38.5,-32.5 + parent: 2 + - uid: 1938 + components: + - type: Transform + pos: -38.5,-33.5 + parent: 2 + - uid: 1939 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 2 + - uid: 1940 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 2 + - uid: 1941 + components: + - type: Transform + pos: -37.5,-23.5 + parent: 2 + - uid: 1942 + components: + - type: Transform + pos: -37.5,-22.5 + parent: 2 + - uid: 1943 + components: + - type: Transform + pos: -40.5,-49.5 + parent: 2 + - uid: 1944 + components: + - type: Transform + pos: -39.5,-49.5 + parent: 2 + - uid: 1945 + components: + - type: Transform + pos: -39.5,-50.5 + parent: 2 + - uid: 1946 + components: + - type: Transform + pos: -41.5,-49.5 + parent: 2 + - uid: 1947 + components: + - type: Transform + pos: -42.5,-49.5 + parent: 2 + - uid: 1948 + components: + - type: Transform + pos: -41.5,-50.5 + parent: 2 + - uid: 1949 + components: + - type: Transform + pos: -41.5,-51.5 + parent: 2 + - uid: 1950 + components: + - type: Transform + pos: -41.5,-52.5 + parent: 2 + - uid: 1951 + components: + - type: Transform + pos: -42.5,-52.5 + parent: 2 + - uid: 1952 + components: + - type: Transform + pos: -43.5,-52.5 + parent: 2 + - uid: 1953 + components: + - type: Transform + pos: -44.5,-52.5 + parent: 2 + - uid: 1954 + components: + - type: Transform + pos: -38.5,-49.5 + parent: 2 + - uid: 1955 + components: + - type: Transform + pos: -37.5,-49.5 + parent: 2 + - uid: 1956 + components: + - type: Transform + pos: -36.5,-49.5 + parent: 2 + - uid: 1957 + components: + - type: Transform + pos: -35.5,-49.5 + parent: 2 + - uid: 1958 + components: + - type: Transform + pos: -34.5,-49.5 + parent: 2 + - uid: 1959 + components: + - type: Transform + pos: -33.5,-49.5 + parent: 2 + - uid: 1960 + components: + - type: Transform + pos: -32.5,-49.5 + parent: 2 + - uid: 1961 + components: + - type: Transform + pos: -31.5,-49.5 + parent: 2 + - uid: 1962 + components: + - type: Transform + pos: -35.5,-50.5 + parent: 2 + - uid: 1963 + components: + - type: Transform + pos: -35.5,-51.5 + parent: 2 + - uid: 1964 + components: + - type: Transform + pos: -35.5,-52.5 + parent: 2 + - uid: 1965 + components: + - type: Transform + pos: -33.5,-48.5 + parent: 2 + - uid: 1966 + components: + - type: Transform + pos: -33.5,-47.5 + parent: 2 + - uid: 1967 + components: + - type: Transform + pos: -33.5,-46.5 + parent: 2 + - uid: 1968 + components: + - type: Transform + pos: -33.5,-45.5 + parent: 2 + - uid: 1969 + components: + - type: Transform + pos: -32.5,-47.5 + parent: 2 + - uid: 1970 + components: + - type: Transform + pos: -31.5,-47.5 + parent: 2 + - uid: 1971 + components: + - type: Transform + pos: -30.5,-47.5 + parent: 2 + - uid: 1972 + components: + - type: Transform + pos: -29.5,-47.5 + parent: 2 + - uid: 1973 + components: + - type: Transform + pos: -28.5,-47.5 + parent: 2 + - uid: 1974 + components: + - type: Transform + pos: -27.5,-47.5 + parent: 2 + - uid: 1975 + components: + - type: Transform + pos: -26.5,-47.5 + parent: 2 + - uid: 1976 + components: + - type: Transform + pos: -25.5,-47.5 + parent: 2 + - uid: 1977 + components: + - type: Transform + pos: -24.5,-47.5 + parent: 2 + - uid: 1978 + components: + - type: Transform + pos: -23.5,-47.5 + parent: 2 + - uid: 1979 + components: + - type: Transform + pos: -34.5,-46.5 + parent: 2 + - uid: 1980 + components: + - type: Transform + pos: -35.5,-46.5 + parent: 2 + - uid: 1981 + components: + - type: Transform + pos: -36.5,-46.5 + parent: 2 + - uid: 1982 + components: + - type: Transform + pos: -37.5,-46.5 + parent: 2 + - uid: 1983 + components: + - type: Transform + pos: -38.5,-46.5 + parent: 2 + - uid: 1984 + components: + - type: Transform + pos: -39.5,-46.5 + parent: 2 + - uid: 1985 + components: + - type: Transform + pos: -40.5,-46.5 + parent: 2 + - uid: 1986 + components: + - type: Transform + pos: -41.5,-46.5 + parent: 2 + - uid: 1987 + components: + - type: Transform + pos: -42.5,-46.5 + parent: 2 + - uid: 1988 + components: + - type: Transform + pos: -43.5,-46.5 + parent: 2 + - uid: 1989 + components: + - type: Transform + pos: -22.5,-42.5 + parent: 2 + - uid: 1990 + components: + - type: Transform + pos: -22.5,-43.5 + parent: 2 + - uid: 1991 + components: + - type: Transform + pos: -23.5,-43.5 + parent: 2 + - uid: 1992 + components: + - type: Transform + pos: -24.5,-43.5 + parent: 2 + - uid: 1993 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 2 + - uid: 1994 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 2 + - uid: 1995 + components: + - type: Transform + pos: -27.5,-43.5 + parent: 2 + - uid: 1996 + components: + - type: Transform + pos: -28.5,-43.5 + parent: 2 + - uid: 1997 + components: + - type: Transform + pos: -29.5,-43.5 + parent: 2 + - uid: 1998 + components: + - type: Transform + pos: -30.5,-43.5 + parent: 2 + - uid: 1999 + components: + - type: Transform + pos: -21.5,-43.5 + parent: 2 + - uid: 2000 + components: + - type: Transform + pos: -20.5,-43.5 + parent: 2 + - uid: 2001 + components: + - type: Transform + pos: -20.5,-42.5 + parent: 2 + - uid: 2002 + components: + - type: Transform + pos: -20.5,-41.5 + parent: 2 + - uid: 2003 + components: + - type: Transform + pos: -20.5,-40.5 + parent: 2 + - uid: 2004 + components: + - type: Transform + pos: -20.5,-39.5 + parent: 2 + - uid: 2005 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 2 + - uid: 2006 + components: + - type: Transform + pos: -20.5,-37.5 + parent: 2 + - uid: 2007 + components: + - type: Transform + pos: -20.5,-36.5 + parent: 2 + - uid: 2008 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 2 + - uid: 2009 + components: + - type: Transform + pos: -21.5,-28.5 + parent: 2 + - uid: 2010 + components: + - type: Transform + pos: -21.5,-29.5 + parent: 2 + - uid: 2011 + components: + - type: Transform + pos: -21.5,-30.5 + parent: 2 + - uid: 2012 + components: + - type: Transform + pos: -21.5,-31.5 + parent: 2 + - uid: 2013 + components: + - type: Transform + pos: -21.5,-32.5 + parent: 2 + - uid: 2014 + components: + - type: Transform + pos: -19.5,-32.5 + parent: 2 + - uid: 2015 + components: + - type: Transform + pos: -18.5,-32.5 + parent: 2 + - uid: 2016 + components: + - type: Transform + pos: -17.5,-32.5 + parent: 2 + - uid: 2017 + components: + - type: Transform + pos: -16.5,-32.5 + parent: 2 + - uid: 2018 + components: + - type: Transform + pos: -20.5,-45.5 + parent: 2 + - uid: 2019 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 2 + - uid: 2020 + components: + - type: Transform + pos: -20.5,-47.5 + parent: 2 + - uid: 2021 + components: + - type: Transform + pos: -20.5,-48.5 + parent: 2 + - uid: 2022 + components: + - type: Transform + pos: -20.5,-49.5 + parent: 2 + - uid: 2023 + components: + - type: Transform + pos: -20.5,-50.5 + parent: 2 + - uid: 2024 + components: + - type: Transform + pos: -20.5,-51.5 + parent: 2 + - uid: 2025 + components: + - type: Transform + pos: -21.5,-50.5 + parent: 2 + - uid: 2026 + components: + - type: Transform + pos: -22.5,-50.5 + parent: 2 + - uid: 2027 + components: + - type: Transform + pos: -23.5,-50.5 + parent: 2 + - uid: 2028 + components: + - type: Transform + pos: -24.5,-50.5 + parent: 2 + - uid: 2029 + components: + - type: Transform + pos: -25.5,-50.5 + parent: 2 + - uid: 2030 + components: + - type: Transform + pos: -26.5,-50.5 + parent: 2 + - uid: 2031 + components: + - type: Transform + pos: -27.5,-50.5 + parent: 2 + - uid: 2032 + components: + - type: Transform + pos: -28.5,-50.5 + parent: 2 + - uid: 2033 + components: + - type: Transform + pos: -28.5,-51.5 + parent: 2 + - uid: 2034 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 + - uid: 2035 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 2 + - uid: 2036 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 2 + - uid: 2037 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 2 + - uid: 2038 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 2 + - uid: 2039 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 2 + - uid: 2040 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 2 + - uid: 2041 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - uid: 2042 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 2 + - uid: 2043 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 2 + - uid: 2044 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - uid: 2045 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 2046 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 + - uid: 2047 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - uid: 2048 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 2 + - uid: 2049 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - uid: 2050 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 2 + - uid: 2051 + components: + - type: Transform + pos: -28.5,-52.5 + parent: 2 + - uid: 2052 + components: + - type: Transform + pos: -28.5,-53.5 + parent: 2 + - uid: 2053 + components: + - type: Transform + pos: -28.5,-54.5 + parent: 2 + - uid: 2054 + components: + - type: Transform + pos: -28.5,-55.5 + parent: 2 + - uid: 2055 + components: + - type: Transform + pos: -29.5,-55.5 + parent: 2 + - uid: 2056 + components: + - type: Transform + pos: -30.5,-55.5 + parent: 2 + - uid: 2057 + components: + - type: Transform + pos: -31.5,-55.5 + parent: 2 + - uid: 2058 + components: + - type: Transform + pos: -32.5,-55.5 + parent: 2 + - uid: 2059 + components: + - type: Transform + pos: -33.5,-55.5 + parent: 2 + - uid: 2060 + components: + - type: Transform + pos: -34.5,-55.5 + parent: 2 + - uid: 2061 + components: + - type: Transform + pos: -35.5,-55.5 + parent: 2 + - uid: 2062 + components: + - type: Transform + pos: -35.5,-54.5 + parent: 2 + - uid: 2063 + components: + - type: Transform + pos: -36.5,-54.5 + parent: 2 + - uid: 2064 + components: + - type: Transform + pos: -37.5,-54.5 + parent: 2 + - uid: 2065 + components: + - type: Transform + pos: -38.5,-54.5 + parent: 2 + - uid: 2066 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 2 + - uid: 2067 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 2 + - uid: 2068 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 2 + - uid: 2069 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - uid: 2070 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 2 + - uid: 2071 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 2 + - uid: 2072 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 2 + - uid: 2073 + components: + - type: Transform + pos: -15.5,-23.5 + parent: 2 + - uid: 2074 + components: + - type: Transform + pos: -21.5,-60.5 + parent: 2 + - uid: 2075 + components: + - type: Transform + pos: -20.5,-60.5 + parent: 2 + - uid: 2076 + components: + - type: Transform + pos: -19.5,-60.5 + parent: 2 + - uid: 2077 + components: + - type: Transform + pos: -18.5,-60.5 + parent: 2 + - uid: 2078 + components: + - type: Transform + pos: -18.5,-61.5 + parent: 2 + - uid: 2079 + components: + - type: Transform + pos: -18.5,-62.5 + parent: 2 + - uid: 2080 + components: + - type: Transform + pos: -18.5,-59.5 + parent: 2 + - uid: 2081 + components: + - type: Transform + pos: -18.5,-58.5 + parent: 2 + - uid: 2082 + components: + - type: Transform + pos: -18.5,-57.5 + parent: 2 + - uid: 2083 + components: + - type: Transform + pos: -18.5,-56.5 + parent: 2 + - uid: 2084 + components: + - type: Transform + pos: -17.5,-58.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: -16.5,-58.5 + parent: 2 + - uid: 2086 + components: + - type: Transform + pos: -15.5,-58.5 + parent: 2 + - uid: 2087 + components: + - type: Transform + pos: -14.5,-58.5 + parent: 2 + - uid: 2088 + components: + - type: Transform + pos: -13.5,-58.5 + parent: 2 + - uid: 2089 + components: + - type: Transform + pos: -12.5,-58.5 + parent: 2 + - uid: 2090 + components: + - type: Transform + pos: -11.5,-58.5 + parent: 2 + - uid: 2091 + components: + - type: Transform + pos: -10.5,-58.5 + parent: 2 + - uid: 2092 + components: + - type: Transform + pos: -14.5,-57.5 + parent: 2 + - uid: 2093 + components: + - type: Transform + pos: -14.5,-56.5 + parent: 2 + - uid: 2094 + components: + - type: Transform + pos: -10.5,-57.5 + parent: 2 + - uid: 2095 + components: + - type: Transform + pos: -10.5,-56.5 + parent: 2 + - uid: 2096 + components: + - type: Transform + pos: -13.5,-59.5 + parent: 2 + - uid: 2097 + components: + - type: Transform + pos: -13.5,-60.5 + parent: 2 + - uid: 2098 + components: + - type: Transform + pos: -9.5,-58.5 + parent: 2 + - uid: 2099 + components: + - type: Transform + pos: -8.5,-58.5 + parent: 2 + - uid: 2100 + components: + - type: Transform + pos: -7.5,-58.5 + parent: 2 + - uid: 2101 + components: + - type: Transform + pos: -6.5,-58.5 + parent: 2 + - uid: 2102 + components: + - type: Transform + pos: -5.5,-58.5 + parent: 2 + - uid: 2103 + components: + - type: Transform + pos: -4.5,-58.5 + parent: 2 + - uid: 2104 + components: + - type: Transform + pos: -3.5,-58.5 + parent: 2 + - uid: 2105 + components: + - type: Transform + pos: -2.5,-58.5 + parent: 2 + - uid: 2106 + components: + - type: Transform + pos: -1.5,-58.5 + parent: 2 + - uid: 2107 + components: + - type: Transform + pos: -0.5,-58.5 + parent: 2 + - uid: 2108 + components: + - type: Transform + pos: -6.5,-57.5 + parent: 2 + - uid: 2109 + components: + - type: Transform + pos: -6.5,-56.5 + parent: 2 + - uid: 2110 + components: + - type: Transform + pos: -1.5,-57.5 + parent: 2 + - uid: 2111 + components: + - type: Transform + pos: -1.5,-56.5 + parent: 2 + - uid: 2112 + components: + - type: Transform + pos: -1.5,-59.5 + parent: 2 + - uid: 2113 + components: + - type: Transform + pos: -6.5,-59.5 + parent: 2 + - uid: 2114 + components: + - type: Transform + pos: -10.5,-59.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + pos: -10.5,-60.5 + parent: 2 + - uid: 2116 + components: + - type: Transform + pos: -10.5,-61.5 + parent: 2 + - uid: 2117 + components: + - type: Transform + pos: -15.5,-56.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + pos: -15.5,-54.5 + parent: 2 + - uid: 2119 + components: + - type: Transform + pos: -15.5,-53.5 + parent: 2 + - uid: 2120 + components: + - type: Transform + pos: -15.5,-52.5 + parent: 2 + - uid: 2121 + components: + - type: Transform + pos: -15.5,-51.5 + parent: 2 + - uid: 2122 + components: + - type: Transform + pos: -16.5,-51.5 + parent: 2 + - uid: 2123 + components: + - type: Transform + pos: -17.5,-51.5 + parent: 2 + - uid: 2124 + components: + - type: Transform + pos: -3.5,-51.5 + parent: 2 + - uid: 2125 + components: + - type: Transform + pos: -9.5,-51.5 + parent: 2 + - uid: 2126 + components: + - type: Transform + pos: -12.5,-51.5 + parent: 2 + - uid: 2127 + components: + - type: Transform + pos: -4.5,-44.5 + parent: 2 + - uid: 2128 + components: + - type: Transform + pos: -9.5,-52.5 + parent: 2 + - uid: 2129 + components: + - type: Transform + pos: -8.5,-52.5 + parent: 2 + - uid: 2130 + components: + - type: Transform + pos: -7.5,-52.5 + parent: 2 + - uid: 2131 + components: + - type: Transform + pos: 7.5,-52.5 + parent: 2 + - uid: 2132 + components: + - type: Transform + pos: 7.5,-53.5 + parent: 2 + - uid: 2133 + components: + - type: Transform + pos: 7.5,-54.5 + parent: 2 + - uid: 2134 + components: + - type: Transform + pos: 7.5,-55.5 + parent: 2 + - uid: 2135 + components: + - type: Transform + pos: 6.5,-55.5 + parent: 2 + - uid: 2136 + components: + - type: Transform + pos: 5.5,-55.5 + parent: 2 + - uid: 2137 + components: + - type: Transform + pos: 4.5,-55.5 + parent: 2 + - uid: 2138 + components: + - type: Transform + pos: 3.5,-55.5 + parent: 2 + - uid: 2139 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 2 + - uid: 2140 + components: + - type: Transform + pos: 3.5,-53.5 + parent: 2 + - uid: 2141 + components: + - type: Transform + pos: 3.5,-56.5 + parent: 2 + - uid: 2142 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 2 + - uid: 2143 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 2 + - uid: 2144 + components: + - type: Transform + pos: 3.5,-59.5 + parent: 2 + - uid: 2145 + components: + - type: Transform + pos: 3.5,-60.5 + parent: 2 + - uid: 2146 + components: + - type: Transform + pos: 7.5,-56.5 + parent: 2 + - uid: 2147 + components: + - type: Transform + pos: 7.5,-57.5 + parent: 2 + - uid: 2148 + components: + - type: Transform + pos: 7.5,-58.5 + parent: 2 + - uid: 2149 + components: + - type: Transform + pos: 7.5,-59.5 + parent: 2 + - uid: 2150 + components: + - type: Transform + pos: 6.5,-50.5 + parent: 2 + - uid: 2151 + components: + - type: Transform + pos: 5.5,-50.5 + parent: 2 + - uid: 2152 + components: + - type: Transform + pos: 4.5,-50.5 + parent: 2 + - uid: 2153 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 2 + - uid: 2154 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 2 + - uid: 2155 + components: + - type: Transform + pos: 7.5,-51.5 + parent: 2 + - uid: 2156 + components: + - type: Transform + pos: 7.5,-49.5 + parent: 2 + - uid: 2157 + components: + - type: Transform + pos: 7.5,-48.5 + parent: 2 + - uid: 2158 + components: + - type: Transform + pos: 7.5,-47.5 + parent: 2 + - uid: 2159 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 2 + - uid: 2160 + components: + - type: Transform + pos: 7.5,-50.5 + parent: 2 + - uid: 2161 + components: + - type: Transform + pos: 6.5,-46.5 + parent: 2 + - uid: 2162 + components: + - type: Transform + pos: 5.5,-46.5 + parent: 2 + - uid: 2163 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 2 + - uid: 2164 + components: + - type: Transform + pos: 3.5,-46.5 + parent: 2 + - uid: 2165 + components: + - type: Transform + pos: 2.5,-46.5 + parent: 2 + - uid: 2166 + components: + - type: Transform + pos: 1.5,-46.5 + parent: 2 + - uid: 2167 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 2 + - uid: 2168 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 2 + - uid: 2169 + components: + - type: Transform + pos: -1.5,-46.5 + parent: 2 + - uid: 2170 + components: + - type: Transform + pos: -1.5,-47.5 + parent: 2 + - uid: 2171 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 2 + - uid: 2172 + components: + - type: Transform + pos: 5.5,-45.5 + parent: 2 + - uid: 2173 + components: + - type: Transform + pos: 5.5,-44.5 + parent: 2 + - uid: 2174 + components: + - type: Transform + pos: 5.5,-43.5 + parent: 2 + - uid: 2175 + components: + - type: Transform + pos: 5.5,-42.5 + parent: 2 + - uid: 2176 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 2 + - uid: 2177 + components: + - type: Transform + pos: 5.5,-40.5 + parent: 2 + - uid: 2178 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 2 + - uid: 2179 + components: + - type: Transform + pos: 7.5,-41.5 + parent: 2 + - uid: 2180 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + pos: 9.5,-50.5 + parent: 2 + - uid: 2182 + components: + - type: Transform + pos: 10.5,-50.5 + parent: 2 + - uid: 2183 + components: + - type: Transform + pos: 11.5,-50.5 + parent: 2 + - uid: 2184 + components: + - type: Transform + pos: 12.5,-50.5 + parent: 2 + - uid: 2185 + components: + - type: Transform + pos: 12.5,-51.5 + parent: 2 + - uid: 2186 + components: + - type: Transform + pos: 12.5,-52.5 + parent: 2 + - uid: 2187 + components: + - type: Transform + pos: 12.5,-53.5 + parent: 2 + - uid: 2188 + components: + - type: Transform + pos: 12.5,-54.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 2 + - uid: 2190 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 2 + - uid: 2191 + components: + - type: Transform + pos: 10.5,-34.5 + parent: 2 + - uid: 2192 + components: + - type: Transform + pos: 11.5,-34.5 + parent: 2 + - uid: 2193 + components: + - type: Transform + pos: 12.5,-34.5 + parent: 2 + - uid: 2194 + components: + - type: Transform + pos: 15.5,-34.5 + parent: 2 + - uid: 2195 + components: + - type: Transform + pos: 16.5,-34.5 + parent: 2 + - uid: 2196 + components: + - type: Transform + pos: 17.5,-34.5 + parent: 2 + - uid: 2197 + components: + - type: Transform + pos: -4.5,-51.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + pos: 34.5,-44.5 + parent: 2 + - uid: 2199 + components: + - type: Transform + pos: 35.5,-44.5 + parent: 2 + - uid: 2200 + components: + - type: Transform + pos: 36.5,-44.5 + parent: 2 + - uid: 2201 + components: + - type: Transform + pos: 36.5,-45.5 + parent: 2 + - uid: 2202 + components: + - type: Transform + pos: 36.5,-43.5 + parent: 2 + - uid: 2203 + components: + - type: Transform + pos: 36.5,-42.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + pos: 37.5,-43.5 + parent: 2 + - uid: 2205 + components: + - type: Transform + pos: 38.5,-43.5 + parent: 2 + - uid: 2206 + components: + - type: Transform + pos: 39.5,-43.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: 40.5,-43.5 + parent: 2 + - uid: 2208 + components: + - type: Transform + pos: 36.5,-46.5 + parent: 2 + - uid: 2209 + components: + - type: Transform + pos: 37.5,-46.5 + parent: 2 + - uid: 2210 + components: + - type: Transform + pos: 38.5,-46.5 + parent: 2 + - uid: 2211 + components: + - type: Transform + pos: 39.5,-46.5 + parent: 2 + - uid: 2212 + components: + - type: Transform + pos: 31.5,-44.5 + parent: 2 + - uid: 2213 + components: + - type: Transform + pos: 30.5,-44.5 + parent: 2 + - uid: 2214 + components: + - type: Transform + pos: 29.5,-44.5 + parent: 2 + - uid: 2215 + components: + - type: Transform + pos: 28.5,-44.5 + parent: 2 + - uid: 2216 + components: + - type: Transform + pos: 27.5,-44.5 + parent: 2 + - uid: 2217 + components: + - type: Transform + pos: 26.5,-44.5 + parent: 2 + - uid: 2218 + components: + - type: Transform + pos: 25.5,-44.5 + parent: 2 + - uid: 2219 + components: + - type: Transform + pos: 24.5,-44.5 + parent: 2 + - uid: 2220 + components: + - type: Transform + pos: 23.5,-44.5 + parent: 2 + - uid: 2221 + components: + - type: Transform + pos: 22.5,-44.5 + parent: 2 + - uid: 2222 + components: + - type: Transform + pos: 21.5,-44.5 + parent: 2 + - uid: 2223 + components: + - type: Transform + pos: 20.5,-44.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + pos: 19.5,-44.5 + parent: 2 + - uid: 2225 + components: + - type: Transform + pos: 18.5,-44.5 + parent: 2 + - uid: 2226 + components: + - type: Transform + pos: 17.5,-44.5 + parent: 2 + - uid: 2227 + components: + - type: Transform + pos: 16.5,-44.5 + parent: 2 + - uid: 2228 + components: + - type: Transform + pos: 32.5,-47.5 + parent: 2 + - uid: 2229 + components: + - type: Transform + pos: 32.5,-48.5 + parent: 2 + - uid: 2230 + components: + - type: Transform + pos: 31.5,-48.5 + parent: 2 + - uid: 2231 + components: + - type: Transform + pos: 30.5,-48.5 + parent: 2 + - uid: 2232 + components: + - type: Transform + pos: 29.5,-48.5 + parent: 2 + - uid: 2233 + components: + - type: Transform + pos: 28.5,-48.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + pos: 27.5,-48.5 + parent: 2 + - uid: 2235 + components: + - type: Transform + pos: 26.5,-48.5 + parent: 2 + - uid: 2236 + components: + - type: Transform + pos: 25.5,-48.5 + parent: 2 + - uid: 2237 + components: + - type: Transform + pos: 24.5,-48.5 + parent: 2 + - uid: 2238 + components: + - type: Transform + pos: 23.5,-48.5 + parent: 2 + - uid: 2239 + components: + - type: Transform + pos: 22.5,-48.5 + parent: 2 + - uid: 2240 + components: + - type: Transform + pos: 21.5,-48.5 + parent: 2 + - uid: 2241 + components: + - type: Transform + pos: 20.5,-48.5 + parent: 2 + - uid: 2242 + components: + - type: Transform + pos: 19.5,-48.5 + parent: 2 + - uid: 2243 + components: + - type: Transform + pos: 18.5,-48.5 + parent: 2 + - uid: 2244 + components: + - type: Transform + pos: 17.5,-48.5 + parent: 2 + - uid: 2245 + components: + - type: Transform + pos: 16.5,-48.5 + parent: 2 + - uid: 2246 + components: + - type: Transform + pos: 17.5,-49.5 + parent: 2 + - uid: 2247 + components: + - type: Transform + pos: 17.5,-49.5 + parent: 2 + - uid: 2248 + components: + - type: Transform + pos: 16.5,-47.5 + parent: 2 + - uid: 2249 + components: + - type: Transform + pos: 15.5,-47.5 + parent: 2 + - uid: 2250 + components: + - type: Transform + pos: 14.5,-47.5 + parent: 2 + - uid: 2251 + components: + - type: Transform + pos: 13.5,-47.5 + parent: 2 + - uid: 2252 + components: + - type: Transform + pos: 12.5,-47.5 + parent: 2 + - uid: 2253 + components: + - type: Transform + pos: 12.5,-46.5 + parent: 2 + - uid: 2254 + components: + - type: Transform + pos: 12.5,-45.5 + parent: 2 + - uid: 2255 + components: + - type: Transform + pos: 12.5,-44.5 + parent: 2 + - uid: 2256 + components: + - type: Transform + pos: 12.5,-43.5 + parent: 2 + - uid: 2257 + components: + - type: Transform + pos: 12.5,-42.5 + parent: 2 + - uid: 2258 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 2 + - uid: 2259 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 2 + - uid: 2260 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 2 + - uid: 2261 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 2 + - uid: 2262 + components: + - type: Transform + pos: 16.5,-41.5 + parent: 2 + - uid: 2263 + components: + - type: Transform + pos: 17.5,-41.5 + parent: 2 + - uid: 2264 + components: + - type: Transform + pos: 18.5,-41.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: 19.5,-41.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + pos: 20.5,-41.5 + parent: 2 + - uid: 2267 + components: + - type: Transform + pos: 21.5,-41.5 + parent: 2 + - uid: 2268 + components: + - type: Transform + pos: 22.5,-41.5 + parent: 2 + - uid: 2269 + components: + - type: Transform + pos: 23.5,-41.5 + parent: 2 + - uid: 2270 + components: + - type: Transform + pos: 24.5,-41.5 + parent: 2 + - uid: 2271 + components: + - type: Transform + pos: 25.5,-41.5 + parent: 2 + - uid: 2272 + components: + - type: Transform + pos: 26.5,-41.5 + parent: 2 + - uid: 2273 + components: + - type: Transform + pos: 27.5,-41.5 + parent: 2 + - uid: 2274 + components: + - type: Transform + pos: 28.5,-41.5 + parent: 2 + - uid: 2275 + components: + - type: Transform + pos: 29.5,-41.5 + parent: 2 + - uid: 2276 + components: + - type: Transform + pos: 30.5,-41.5 + parent: 2 + - uid: 2277 + components: + - type: Transform + pos: 16.5,-40.5 + parent: 2 + - uid: 2278 + components: + - type: Transform + pos: 24.5,-52.5 + parent: 2 + - uid: 2279 + components: + - type: Transform + pos: 24.5,-53.5 + parent: 2 + - uid: 2280 + components: + - type: Transform + pos: 24.5,-54.5 + parent: 2 + - uid: 2281 + components: + - type: Transform + pos: 24.5,-55.5 + parent: 2 + - uid: 2282 + components: + - type: Transform + pos: 24.5,-56.5 + parent: 2 + - uid: 2283 + components: + - type: Transform + pos: 24.5,-57.5 + parent: 2 + - uid: 2284 + components: + - type: Transform + pos: 24.5,-58.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + pos: 24.5,-59.5 + parent: 2 + - uid: 2286 + components: + - type: Transform + pos: 24.5,-60.5 + parent: 2 + - uid: 2287 + components: + - type: Transform + pos: 24.5,-61.5 + parent: 2 + - uid: 2288 + components: + - type: Transform + pos: 24.5,-62.5 + parent: 2 + - uid: 2289 + components: + - type: Transform + pos: 30.5,-51.5 + parent: 2 + - uid: 2290 + components: + - type: Transform + pos: 30.5,-52.5 + parent: 2 + - uid: 2291 + components: + - type: Transform + pos: 30.5,-53.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + pos: 30.5,-54.5 + parent: 2 + - uid: 2293 + components: + - type: Transform + pos: 30.5,-55.5 + parent: 2 + - uid: 2294 + components: + - type: Transform + pos: 30.5,-56.5 + parent: 2 + - uid: 2295 + components: + - type: Transform + pos: 30.5,-57.5 + parent: 2 + - uid: 2296 + components: + - type: Transform + pos: 30.5,-58.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + pos: 30.5,-59.5 + parent: 2 + - uid: 2298 + components: + - type: Transform + pos: 30.5,-60.5 + parent: 2 + - uid: 2299 + components: + - type: Transform + pos: 30.5,-61.5 + parent: 2 + - uid: 2300 + components: + - type: Transform + pos: 30.5,-62.5 + parent: 2 + - uid: 2301 + components: + - type: Transform + pos: 27.5,-49.5 + parent: 2 + - uid: 2302 + components: + - type: Transform + pos: 27.5,-50.5 + parent: 2 + - uid: 2303 + components: + - type: Transform + pos: 27.5,-51.5 + parent: 2 + - uid: 2304 + components: + - type: Transform + pos: 27.5,-52.5 + parent: 2 + - uid: 2305 + components: + - type: Transform + pos: 27.5,-53.5 + parent: 2 + - uid: 2306 + components: + - type: Transform + pos: 27.5,-54.5 + parent: 2 + - uid: 2307 + components: + - type: Transform + pos: 27.5,-55.5 + parent: 2 + - uid: 2308 + components: + - type: Transform + pos: 27.5,-56.5 + parent: 2 + - uid: 2309 + components: + - type: Transform + pos: 27.5,-57.5 + parent: 2 + - uid: 2310 + components: + - type: Transform + pos: 27.5,-58.5 + parent: 2 + - uid: 2311 + components: + - type: Transform + pos: 27.5,-59.5 + parent: 2 + - uid: 2312 + components: + - type: Transform + pos: 27.5,-60.5 + parent: 2 + - uid: 2313 + components: + - type: Transform + pos: 27.5,-61.5 + parent: 2 + - uid: 2314 + components: + - type: Transform + pos: 27.5,-62.5 + parent: 2 + - uid: 2315 + components: + - type: Transform + pos: 32.5,-49.5 + parent: 2 + - uid: 2316 + components: + - type: Transform + pos: 34.5,-49.5 + parent: 2 + - uid: 2317 + components: + - type: Transform + pos: 35.5,-49.5 + parent: 2 + - uid: 2318 + components: + - type: Transform + pos: 36.5,-49.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + pos: 37.5,-49.5 + parent: 2 + - uid: 2320 + components: + - type: Transform + pos: 35.5,-37.5 + parent: 2 + - uid: 2321 + components: + - type: Transform + pos: 34.5,-36.5 + parent: 2 + - uid: 2322 + components: + - type: Transform + pos: 34.5,-35.5 + parent: 2 + - uid: 2323 + components: + - type: Transform + pos: 34.5,-34.5 + parent: 2 + - uid: 2324 + components: + - type: Transform + pos: 34.5,-33.5 + parent: 2 + - uid: 2325 + components: + - type: Transform + pos: 34.5,-32.5 + parent: 2 + - uid: 2326 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 2 + - uid: 2327 + components: + - type: Transform + pos: 35.5,-28.5 + parent: 2 + - uid: 2328 + components: + - type: Transform + pos: -14.5,-51.5 + parent: 2 + - uid: 2329 + components: + - type: Transform + pos: -3.5,-42.5 + parent: 2 + - uid: 2330 + components: + - type: Transform + pos: -0.5,-51.5 + parent: 2 + - uid: 2331 + components: + - type: Transform + pos: -5.5,-48.5 + parent: 2 + - uid: 2332 + components: + - type: Transform + pos: -4.5,-42.5 + parent: 2 + - uid: 2333 + components: + - type: Transform + pos: -4.5,-46.5 + parent: 2 + - uid: 2334 + components: + - type: Transform + pos: -4.5,-47.5 + parent: 2 + - uid: 2335 + components: + - type: Transform + pos: -4.5,-48.5 + parent: 2 + - uid: 2336 + components: + - type: Transform + pos: -28.5,-56.5 + parent: 2 + - uid: 2337 + components: + - type: Transform + pos: -28.5,-58.5 + parent: 2 + - uid: 2338 + components: + - type: Transform + pos: -29.5,-58.5 + parent: 2 + - uid: 2339 + components: + - type: Transform + pos: -30.5,-58.5 + parent: 2 + - uid: 2340 + components: + - type: Transform + pos: -31.5,-58.5 + parent: 2 + - uid: 2341 + components: + - type: Transform + pos: -31.5,-59.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: -31.5,-60.5 + parent: 2 + - uid: 2343 + components: + - type: Transform + pos: -31.5,-61.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + pos: -31.5,-62.5 + parent: 2 + - uid: 2345 + components: + - type: Transform + pos: -31.5,-63.5 + parent: 2 + - uid: 2346 + components: + - type: Transform + pos: -30.5,-63.5 + parent: 2 + - uid: 2347 + components: + - type: Transform + pos: -29.5,-63.5 + parent: 2 + - uid: 2348 + components: + - type: Transform + pos: -28.5,-63.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + pos: -27.5,-63.5 + parent: 2 + - uid: 2350 + components: + - type: Transform + pos: -26.5,-63.5 + parent: 2 + - uid: 2351 + components: + - type: Transform + pos: -25.5,-63.5 + parent: 2 + - uid: 2352 + components: + - type: Transform + pos: -24.5,-63.5 + parent: 2 + - uid: 2353 + components: + - type: Transform + pos: -32.5,-63.5 + parent: 2 + - uid: 2354 + components: + - type: Transform + pos: -33.5,-63.5 + parent: 2 + - uid: 2355 + components: + - type: Transform + pos: -34.5,-63.5 + parent: 2 + - uid: 2356 + components: + - type: Transform + pos: -35.5,-63.5 + parent: 2 + - uid: 2357 + components: + - type: Transform + pos: -32.5,-59.5 + parent: 2 + - uid: 2358 + components: + - type: Transform + pos: -33.5,-59.5 + parent: 2 + - uid: 2359 + components: + - type: Transform + pos: -34.5,-59.5 + parent: 2 + - uid: 2360 + components: + - type: Transform + pos: -35.5,-59.5 + parent: 2 + - uid: 2361 + components: + - type: Transform + pos: -25.5,-64.5 + parent: 2 + - uid: 2362 + components: + - type: Transform + pos: -25.5,-65.5 + parent: 2 + - uid: 2363 + components: + - type: Transform + pos: -25.5,-66.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + pos: -26.5,-66.5 + parent: 2 + - uid: 2365 + components: + - type: Transform + pos: -23.5,-63.5 + parent: 2 + - uid: 2366 + components: + - type: Transform + pos: -23.5,-64.5 + parent: 2 + - uid: 2367 + components: + - type: Transform + pos: -23.5,-65.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + pos: -23.5,-66.5 + parent: 2 + - uid: 2369 + components: + - type: Transform + pos: -23.5,-67.5 + parent: 2 + - uid: 2370 + components: + - type: Transform + pos: -23.5,-62.5 + parent: 2 + - uid: 2371 + components: + - type: Transform + pos: -23.5,-61.5 + parent: 2 + - uid: 2372 + components: + - type: Transform + pos: -23.5,-60.5 + parent: 2 + - uid: 2373 + components: + - type: Transform + pos: -23.5,-59.5 + parent: 2 + - uid: 2374 + components: + - type: Transform + pos: -24.5,-59.5 + parent: 2 + - uid: 2375 + components: + - type: Transform + pos: -25.5,-59.5 + parent: 2 + - uid: 2376 + components: + - type: Transform + pos: -26.5,-59.5 + parent: 2 + - uid: 2377 + components: + - type: Transform + pos: 24.5,-67.5 + parent: 2 + - uid: 2378 + components: + - type: Transform + pos: 24.5,-66.5 + parent: 2 + - uid: 2379 + components: + - type: Transform + pos: 26.5,-66.5 + parent: 2 + - uid: 2380 + components: + - type: Transform + pos: 27.5,-66.5 + parent: 2 + - uid: 2381 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 2 + - uid: 2382 + components: + - type: Transform + pos: 24.5,-70.5 + parent: 2 + - uid: 2383 + components: + - type: Transform + pos: 24.5,-71.5 + parent: 2 + - uid: 2384 + components: + - type: Transform + pos: 24.5,-72.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + pos: 25.5,-72.5 + parent: 2 + - uid: 2386 + components: + - type: Transform + pos: 21.5,-68.5 + parent: 2 + - uid: 2387 + components: + - type: Transform + pos: 20.5,-68.5 + parent: 2 + - uid: 2388 + components: + - type: Transform + pos: 20.5,-67.5 + parent: 2 + - uid: 2389 + components: + - type: Transform + pos: 20.5,-66.5 + parent: 2 + - uid: 2390 + components: + - type: Transform + pos: 20.5,-65.5 + parent: 2 + - uid: 2391 + components: + - type: Transform + pos: 20.5,-64.5 + parent: 2 + - uid: 2392 + components: + - type: Transform + pos: 20.5,-63.5 + parent: 2 + - uid: 2393 + components: + - type: Transform + pos: 20.5,-62.5 + parent: 2 + - uid: 2394 + components: + - type: Transform + pos: 20.5,-61.5 + parent: 2 + - uid: 2395 + components: + - type: Transform + pos: 20.5,-60.5 + parent: 2 + - uid: 2396 + components: + - type: Transform + pos: 20.5,-59.5 + parent: 2 + - uid: 2397 + components: + - type: Transform + pos: 20.5,-58.5 + parent: 2 + - uid: 2398 + components: + - type: Transform + pos: 20.5,-57.5 + parent: 2 + - uid: 2399 + components: + - type: Transform + pos: 20.5,-56.5 + parent: 2 + - uid: 2400 + components: + - type: Transform + pos: 20.5,-55.5 + parent: 2 + - uid: 2401 + components: + - type: Transform + pos: 20.5,-54.5 + parent: 2 + - uid: 2402 + components: + - type: Transform + pos: 19.5,-54.5 + parent: 2 + - uid: 2403 + components: + - type: Transform + pos: 18.5,-54.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + pos: 17.5,-54.5 + parent: 2 + - uid: 2405 + components: + - type: Transform + pos: 19.5,-58.5 + parent: 2 + - uid: 2406 + components: + - type: Transform + pos: 18.5,-58.5 + parent: 2 + - uid: 2407 + components: + - type: Transform + pos: 17.5,-58.5 + parent: 2 + - uid: 2408 + components: + - type: Transform + pos: 19.5,-62.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + pos: 18.5,-62.5 + parent: 2 + - uid: 2410 + components: + - type: Transform + pos: 17.5,-62.5 + parent: 2 + - uid: 2411 + components: + - type: Transform + pos: 28.5,-66.5 + parent: 2 + - uid: 2412 + components: + - type: Transform + pos: 29.5,-66.5 + parent: 2 + - uid: 2413 + components: + - type: Transform + pos: 30.5,-66.5 + parent: 2 + - uid: 2414 + components: + - type: Transform + pos: 31.5,-66.5 + parent: 2 + - uid: 2415 + components: + - type: Transform + pos: 32.5,-66.5 + parent: 2 + - uid: 2416 + components: + - type: Transform + pos: 33.5,-66.5 + parent: 2 + - uid: 2417 + components: + - type: Transform + pos: 34.5,-66.5 + parent: 2 + - uid: 2418 + components: + - type: Transform + pos: 34.5,-65.5 + parent: 2 + - uid: 2419 + components: + - type: Transform + pos: 34.5,-64.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + pos: 34.5,-63.5 + parent: 2 + - uid: 2421 + components: + - type: Transform + pos: 34.5,-62.5 + parent: 2 + - uid: 2422 + components: + - type: Transform + pos: 35.5,-62.5 + parent: 2 + - uid: 2423 + components: + - type: Transform + pos: 36.5,-62.5 + parent: 2 + - uid: 2424 + components: + - type: Transform + pos: 37.5,-62.5 + parent: 2 + - uid: 2425 + components: + - type: Transform + pos: 34.5,-61.5 + parent: 2 + - uid: 2426 + components: + - type: Transform + pos: 34.5,-60.5 + parent: 2 + - uid: 2427 + components: + - type: Transform + pos: 34.5,-59.5 + parent: 2 + - uid: 2428 + components: + - type: Transform + pos: 34.5,-58.5 + parent: 2 + - uid: 2429 + components: + - type: Transform + pos: 35.5,-58.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + pos: 36.5,-58.5 + parent: 2 + - uid: 2431 + components: + - type: Transform + pos: 37.5,-58.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + pos: 34.5,-57.5 + parent: 2 + - uid: 2433 + components: + - type: Transform + pos: 34.5,-56.5 + parent: 2 + - uid: 2434 + components: + - type: Transform + pos: 34.5,-55.5 + parent: 2 + - uid: 2435 + components: + - type: Transform + pos: 34.5,-54.5 + parent: 2 + - uid: 2436 + components: + - type: Transform + pos: 35.5,-54.5 + parent: 2 + - uid: 2437 + components: + - type: Transform + pos: 36.5,-54.5 + parent: 2 + - uid: 2438 + components: + - type: Transform + pos: 37.5,-54.5 + parent: 2 + - uid: 2439 + components: + - type: Transform + pos: 37.5,-31.5 + parent: 2 + - uid: 2440 + components: + - type: Transform + pos: 38.5,-31.5 + parent: 2 + - uid: 2441 + components: + - type: Transform + pos: 39.5,-31.5 + parent: 2 + - uid: 2442 + components: + - type: Transform + pos: 40.5,-31.5 + parent: 2 + - uid: 2443 + components: + - type: Transform + pos: 41.5,-31.5 + parent: 2 + - uid: 2444 + components: + - type: Transform + pos: 41.5,-32.5 + parent: 2 + - uid: 2445 + components: + - type: Transform + pos: 41.5,-33.5 + parent: 2 + - uid: 2446 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 2447 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 2448 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - uid: 2449 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 2 + - uid: 2451 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - uid: 2452 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - uid: 2453 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 2 + - uid: 2454 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 2455 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 + - uid: 2456 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 2457 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 2 + - uid: 2458 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 + - uid: 2459 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 + - uid: 2460 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - uid: 2461 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 2 + - uid: 2462 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 2463 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 2 + - uid: 2466 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 2467 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - uid: 2468 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 2 + - uid: 2472 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 2 + - uid: 2473 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 + - uid: 2474 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 2475 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 2 + - uid: 2476 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - uid: 2478 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - uid: 2479 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 2480 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 2481 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 + - uid: 2482 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 2 + - uid: 2483 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - uid: 2484 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 + - uid: 2485 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 2 + - uid: 2486 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 2 + - uid: 2487 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 2 + - uid: 2488 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 + - uid: 2489 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 2 + - uid: 2490 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 2 + - uid: 2491 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 2 + - uid: 2492 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 2 + - uid: 2493 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 2495 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 + - uid: 2496 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 2497 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 2 + - uid: 2498 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 2 + - uid: 2499 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - uid: 2500 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 2 + - uid: 2501 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 2 + - uid: 2502 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 2 + - uid: 2503 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 2 + - uid: 2504 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 2505 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 + - uid: 2506 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 2507 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 2 + - uid: 2508 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 2 + - uid: 2509 + components: + - type: Transform + pos: 26.5,-8.5 + parent: 2 + - uid: 2510 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 2 + - uid: 2511 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - uid: 2512 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 2513 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 2 + - uid: 2514 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 2 + - uid: 2515 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 2 + - uid: 2516 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 2 + - uid: 2517 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 2 + - uid: 2518 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 2 + - uid: 2519 + components: + - type: Transform + pos: 0.5,-35.5 + parent: 2 + - uid: 2520 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 2 + - uid: 2521 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 2 + - uid: 2522 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 2 + - uid: 2523 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 2 + - uid: 2524 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 2 + - uid: 2525 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - uid: 2526 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 2 + - uid: 2527 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 2 + - uid: 2528 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 2 + - uid: 2529 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 2 + - uid: 2530 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - uid: 2532 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 2533 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - uid: 2534 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 2535 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - uid: 2536 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 2537 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 2538 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 2 + - uid: 2539 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 2540 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 + - uid: 2541 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 + - uid: 2542 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - uid: 2543 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 2544 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 2545 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 2546 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - uid: 2547 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 2548 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 2549 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 2550 + components: + - type: Transform + pos: 17.5,0.5 + parent: 2 + - uid: 2551 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 2552 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 2553 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 2554 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - uid: 2555 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 2556 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 2557 + components: + - type: Transform + pos: 32.5,0.5 + parent: 2 + - uid: 2558 + components: + - type: Transform + pos: 33.5,0.5 + parent: 2 + - uid: 2559 + components: + - type: Transform + pos: 34.5,0.5 + parent: 2 + - uid: 2560 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - uid: 2561 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - uid: 2562 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 2563 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 + - uid: 2564 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + pos: 19.5,7.5 + parent: 2 + - uid: 2566 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + pos: 21.5,7.5 + parent: 2 + - uid: 2568 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 2569 + components: + - type: Transform + pos: 23.5,7.5 + parent: 2 + - uid: 2570 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 2571 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 2572 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 2573 + components: + - type: Transform + pos: 27.5,7.5 + parent: 2 + - uid: 2574 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - uid: 2575 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 2576 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 + - uid: 2577 + components: + - type: Transform + pos: 16.5,7.5 + parent: 2 + - uid: 2578 + components: + - type: Transform + pos: 17.5,8.5 + parent: 2 + - uid: 2579 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 2580 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 2581 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 2582 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - uid: 2583 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 + - uid: 2584 + components: + - type: Transform + pos: 18.5,13.5 + parent: 2 + - uid: 2585 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 2586 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - uid: 2587 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 + - uid: 2588 + components: + - type: Transform + pos: 22.5,13.5 + parent: 2 + - uid: 2589 + components: + - type: Transform + pos: 23.5,13.5 + parent: 2 + - uid: 2590 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 + - uid: 2591 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 2592 + components: + - type: Transform + pos: 24.5,12.5 + parent: 2 + - uid: 2593 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 + - uid: 2594 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 + - uid: 2595 + components: + - type: Transform + pos: 16.5,14.5 + parent: 2 + - uid: 2596 + components: + - type: Transform + pos: 16.5,15.5 + parent: 2 + - uid: 2597 + components: + - type: Transform + pos: 16.5,16.5 + parent: 2 + - uid: 2598 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 2599 + components: + - type: Transform + pos: 23.5,14.5 + parent: 2 + - uid: 2600 + components: + - type: Transform + pos: 23.5,15.5 + parent: 2 + - uid: 2601 + components: + - type: Transform + pos: 23.5,16.5 + parent: 2 + - uid: 2602 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 + - uid: 2603 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - uid: 2604 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + pos: 24.5,17.5 + parent: 2 + - uid: 2606 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 2607 + components: + - type: Transform + pos: 22.5,18.5 + parent: 2 + - uid: 2608 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 + - uid: 2609 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 + - uid: 2610 + components: + - type: Transform + pos: 22.5,21.5 + parent: 2 + - uid: 2611 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2 + - uid: 2612 + components: + - type: Transform + pos: 23.5,22.5 + parent: 2 + - uid: 2613 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - uid: 2614 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 + - uid: 2615 + components: + - type: Transform + pos: 28.5,7.5 + parent: 2 + - uid: 2616 + components: + - type: Transform + pos: 29.5,7.5 + parent: 2 + - uid: 2617 + components: + - type: Transform + pos: 30.5,7.5 + parent: 2 + - uid: 2618 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - uid: 2619 + components: + - type: Transform + pos: 32.5,7.5 + parent: 2 + - uid: 2620 + components: + - type: Transform + pos: 33.5,7.5 + parent: 2 + - uid: 2621 + components: + - type: Transform + pos: 34.5,7.5 + parent: 2 + - uid: 2622 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 2623 + components: + - type: Transform + pos: 32.5,9.5 + parent: 2 + - uid: 2624 + components: + - type: Transform + pos: 32.5,10.5 + parent: 2 + - uid: 2625 + components: + - type: Transform + pos: 33.5,10.5 + parent: 2 + - uid: 2626 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - uid: 2627 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 2628 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 + - uid: 2629 + components: + - type: Transform + pos: 29.5,10.5 + parent: 2 + - uid: 2630 + components: + - type: Transform + pos: 29.5,11.5 + parent: 2 + - uid: 2631 + components: + - type: Transform + pos: 29.5,12.5 + parent: 2 + - uid: 2632 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 2633 + components: + - type: Transform + pos: 34.5,5.5 + parent: 2 + - uid: 2634 + components: + - type: Transform + pos: 37.5,18.5 + parent: 2 + - uid: 2635 + components: + - type: Transform + pos: 36.5,12.5 + parent: 2 + - uid: 2636 + components: + - type: Transform + pos: 36.5,13.5 + parent: 2 + - uid: 2637 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 + - uid: 2638 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 + - uid: 2639 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 2640 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - uid: 2641 + components: + - type: Transform + pos: 36.5,18.5 + parent: 2 + - uid: 2642 + components: + - type: Transform + pos: 33.5,17.5 + parent: 2 + - uid: 2643 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 + - uid: 2644 + components: + - type: Transform + pos: 27.5,23.5 + parent: 2 + - uid: 2645 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 + - uid: 2646 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 2647 + components: + - type: Transform + pos: 29.5,14.5 + parent: 2 + - uid: 2648 + components: + - type: Transform + pos: 29.5,15.5 + parent: 2 + - uid: 2649 + components: + - type: Transform + pos: 29.5,16.5 + parent: 2 + - uid: 2650 + components: + - type: Transform + pos: 29.5,17.5 + parent: 2 + - uid: 2651 + components: + - type: Transform + pos: 29.5,18.5 + parent: 2 + - uid: 2652 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - uid: 2653 + components: + - type: Transform + pos: 29.5,20.5 + parent: 2 + - uid: 2654 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 + - uid: 2655 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 2656 + components: + - type: Transform + pos: 29.5,23.5 + parent: 2 + - uid: 2657 + components: + - type: Transform + pos: 29.5,24.5 + parent: 2 + - uid: 2658 + components: + - type: Transform + pos: 29.5,25.5 + parent: 2 + - uid: 2659 + components: + - type: Transform + pos: 30.5,23.5 + parent: 2 + - uid: 2660 + components: + - type: Transform + pos: 31.5,23.5 + parent: 2 + - uid: 2661 + components: + - type: Transform + pos: 33.5,23.5 + parent: 2 + - uid: 2662 + components: + - type: Transform + pos: 32.5,23.5 + parent: 2 + - uid: 2663 + components: + - type: Transform + pos: 33.5,18.5 + parent: 2 + - uid: 2664 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2 + - uid: 2665 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 + - uid: 2666 + components: + - type: Transform + pos: 40.5,18.5 + parent: 2 + - uid: 2667 + components: + - type: Transform + pos: 41.5,18.5 + parent: 2 + - uid: 2668 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 + - uid: 2669 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 + - uid: 2670 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 2671 + components: + - type: Transform + pos: -2.5,28.5 + parent: 2 + - uid: 2672 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 + - uid: 2673 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - uid: 2674 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 2675 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 + - uid: 2676 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 2677 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 + - uid: 2678 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - uid: 2679 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 2680 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 + - uid: 2681 + components: + - type: Transform + pos: -1.5,10.5 + parent: 2 + - uid: 2682 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 2683 + components: + - type: Transform + pos: -3.5,10.5 + parent: 2 + - uid: 2684 + components: + - type: Transform + pos: -3.5,9.5 + parent: 2 + - uid: 2685 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - uid: 2686 + components: + - type: Transform + pos: -5.5,9.5 + parent: 2 + - uid: 2687 + components: + - type: Transform + pos: -6.5,9.5 + parent: 2 + - uid: 2688 + components: + - type: Transform + pos: -6.5,8.5 + parent: 2 + - uid: 2689 + components: + - type: Transform + pos: -6.5,7.5 + parent: 2 + - uid: 2690 + components: + - type: Transform + pos: -7.5,7.5 + parent: 2 + - uid: 2691 + components: + - type: Transform + pos: -7.5,6.5 + parent: 2 + - uid: 2692 + components: + - type: Transform + pos: -7.5,5.5 + parent: 2 + - uid: 2693 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 2694 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - uid: 2695 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 2696 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 2697 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - uid: 2698 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 + - uid: 2699 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - uid: 2700 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 2701 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 2702 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 2703 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - uid: 2704 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 2705 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 2706 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 2707 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 2708 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 2709 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 2710 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 2 + - uid: 2711 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 2712 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 2713 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 2714 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 + - uid: 2715 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 2716 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 2717 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 2718 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 2719 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 2720 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - uid: 2721 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 2722 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 2723 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 2724 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 + - uid: 2725 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 2726 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 2727 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 + - uid: 2728 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 2 + - uid: 2729 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 + - uid: 2730 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - uid: 2731 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - uid: 2732 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - uid: 2733 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 2 + - uid: 2734 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 2 + - uid: 2735 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - uid: 2736 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 2 + - uid: 2737 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - uid: 2738 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 2739 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - uid: 2740 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 2741 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 2 + - uid: 2742 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - uid: 2743 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 + - uid: 2744 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - uid: 2745 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - uid: 2746 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 2 + - uid: 2747 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 + - uid: 2748 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 2 + - uid: 2749 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - uid: 2750 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - uid: 2751 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 2752 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 2753 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 2754 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 2755 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 2756 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 2757 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 2758 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 2759 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 2760 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 2761 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 2762 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - uid: 2763 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - uid: 2764 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 2765 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 2766 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 2767 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - uid: 2768 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 2769 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 2770 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - uid: 2771 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 2772 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - uid: 2773 + components: + - type: Transform + pos: -0.5,4.5 + parent: 2 + - uid: 2774 + components: + - type: Transform + pos: -1.5,4.5 + parent: 2 + - uid: 2775 + components: + - type: Transform + pos: -2.5,4.5 + parent: 2 + - uid: 2776 + components: + - type: Transform + pos: -3.5,4.5 + parent: 2 + - uid: 2777 + components: + - type: Transform + pos: -3.5,3.5 + parent: 2 + - uid: 2778 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 + - uid: 2779 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - uid: 2780 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 2781 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - uid: 2782 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 2783 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 2784 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 2785 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 2786 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 2 + - uid: 2787 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 2 + - uid: 2788 + components: + - type: Transform + pos: -9.5,-35.5 + parent: 2 + - uid: 2789 + components: + - type: Transform + pos: -9.5,-36.5 + parent: 2 + - uid: 2790 + components: + - type: Transform + pos: -10.5,-36.5 + parent: 2 + - uid: 2791 + components: + - type: Transform + pos: -11.5,-36.5 + parent: 2 + - uid: 2792 + components: + - type: Transform + pos: -11.5,-37.5 + parent: 2 + - uid: 2793 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 2 + - uid: 2794 + components: + - type: Transform + pos: -11.5,-39.5 + parent: 2 + - uid: 2795 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 2 + - uid: 2796 + components: + - type: Transform + pos: -11.5,-41.5 + parent: 2 + - uid: 2797 + components: + - type: Transform + pos: -11.5,-42.5 + parent: 2 + - uid: 2798 + components: + - type: Transform + pos: -11.5,-43.5 + parent: 2 + - uid: 2799 + components: + - type: Transform + pos: -11.5,-44.5 + parent: 2 + - uid: 2800 + components: + - type: Transform + pos: -11.5,-45.5 + parent: 2 + - uid: 2801 + components: + - type: Transform + pos: -11.5,-46.5 + parent: 2 + - uid: 2802 + components: + - type: Transform + pos: -11.5,-47.5 + parent: 2 + - uid: 2803 + components: + - type: Transform + pos: -11.5,-48.5 + parent: 2 + - uid: 2804 + components: + - type: Transform + pos: -17.5,-48.5 + parent: 2 + - uid: 2805 + components: + - type: Transform + pos: -16.5,-48.5 + parent: 2 + - uid: 2806 + components: + - type: Transform + pos: -15.5,-48.5 + parent: 2 + - uid: 2807 + components: + - type: Transform + pos: -14.5,-48.5 + parent: 2 + - uid: 2808 + components: + - type: Transform + pos: -13.5,-48.5 + parent: 2 + - uid: 2809 + components: + - type: Transform + pos: -12.5,-48.5 + parent: 2 + - uid: 2810 + components: + - type: Transform + pos: -11.5,-48.5 + parent: 2 + - uid: 2811 + components: + - type: Transform + pos: -10.5,-48.5 + parent: 2 + - uid: 2812 + components: + - type: Transform + pos: -9.5,-48.5 + parent: 2 + - uid: 2813 + components: + - type: Transform + pos: -8.5,-48.5 + parent: 2 + - uid: 2814 + components: + - type: Transform + pos: -7.5,-48.5 + parent: 2 + - uid: 2815 + components: + - type: Transform + pos: -17.5,-45.5 + parent: 2 + - uid: 2816 + components: + - type: Transform + pos: -16.5,-45.5 + parent: 2 + - uid: 2817 + components: + - type: Transform + pos: -15.5,-45.5 + parent: 2 + - uid: 2818 + components: + - type: Transform + pos: -14.5,-45.5 + parent: 2 + - uid: 2819 + components: + - type: Transform + pos: -13.5,-45.5 + parent: 2 + - uid: 2820 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 2 + - uid: 2821 + components: + - type: Transform + pos: -11.5,-45.5 + parent: 2 + - uid: 2822 + components: + - type: Transform + pos: -16.5,-42.5 + parent: 2 + - uid: 2823 + components: + - type: Transform + pos: -15.5,-42.5 + parent: 2 + - uid: 2824 + components: + - type: Transform + pos: -14.5,-42.5 + parent: 2 + - uid: 2825 + components: + - type: Transform + pos: -13.5,-42.5 + parent: 2 + - uid: 2826 + components: + - type: Transform + pos: -12.5,-42.5 + parent: 2 + - uid: 2827 + components: + - type: Transform + pos: -11.5,-42.5 + parent: 2 + - uid: 2828 + components: + - type: Transform + pos: -10.5,-42.5 + parent: 2 + - uid: 2829 + components: + - type: Transform + pos: -9.5,-42.5 + parent: 2 + - uid: 2830 + components: + - type: Transform + pos: -8.5,-42.5 + parent: 2 + - uid: 2831 + components: + - type: Transform + pos: -7.5,-42.5 + parent: 2 + - uid: 2832 + components: + - type: Transform + pos: -6.5,-42.5 + parent: 2 + - uid: 2833 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 2 + - uid: 2834 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 2 + - uid: 2835 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 2 + - uid: 2836 + components: + - type: Transform + pos: -15.5,-39.5 + parent: 2 + - uid: 2837 + components: + - type: Transform + pos: -14.5,-39.5 + parent: 2 + - uid: 2838 + components: + - type: Transform + pos: -13.5,-39.5 + parent: 2 + - uid: 2839 + components: + - type: Transform + pos: -12.5,-39.5 + parent: 2 + - uid: 2840 + components: + - type: Transform + pos: -11.5,-39.5 + parent: 2 + - uid: 2841 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 2 + - uid: 2842 + components: + - type: Transform + pos: -16.5,-36.5 + parent: 2 + - uid: 2843 + components: + - type: Transform + pos: -15.5,-36.5 + parent: 2 + - uid: 2844 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 2 + - uid: 2845 + components: + - type: Transform + pos: -13.5,-36.5 + parent: 2 + - uid: 2846 + components: + - type: Transform + pos: -12.5,-36.5 + parent: 2 + - uid: 2847 + components: + - type: Transform + pos: -11.5,-36.5 + parent: 2 + - uid: 2848 + components: + - type: Transform + pos: -10.5,-36.5 + parent: 2 + - uid: 2849 + components: + - type: Transform + pos: -9.5,-36.5 + parent: 2 + - uid: 2850 + components: + - type: Transform + pos: -8.5,-36.5 + parent: 2 + - uid: 2851 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 2 + - uid: 2852 + components: + - type: Transform + pos: -11.5,-36.5 + parent: 2 + - uid: 2853 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 2 + - uid: 2854 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 2 + - uid: 2855 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 2 + - uid: 2856 + components: + - type: Transform + pos: -11.5,-32.5 + parent: 2 + - uid: 2857 + components: + - type: Transform + pos: -11.5,-31.5 + parent: 2 + - uid: 2858 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 2 + - uid: 2859 + components: + - type: Transform + pos: -7.5,-33.5 + parent: 2 + - uid: 2860 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 2 + - uid: 2861 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 2 + - uid: 2862 + components: + - type: Transform + pos: -7.5,-32.5 + parent: 2 + - uid: 2863 + components: + - type: Transform + pos: -6.5,-32.5 + parent: 2 + - uid: 2864 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 2 + - uid: 2865 + components: + - type: Transform + pos: -4.5,-32.5 + parent: 2 + - uid: 2866 + components: + - type: Transform + pos: -3.5,-32.5 + parent: 2 + - uid: 2867 + components: + - type: Transform + pos: -3.5,-31.5 + parent: 2 + - uid: 2868 + components: + - type: Transform + pos: -7.5,-31.5 + parent: 2 + - uid: 2869 + components: + - type: Transform + pos: -7.5,-30.5 + parent: 2 + - uid: 2870 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 2 + - uid: 2871 + components: + - type: Transform + pos: -2.5,-32.5 + parent: 2 + - uid: 2872 + components: + - type: Transform + pos: -3.5,-33.5 + parent: 2 + - uid: 2873 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 2 + - uid: 2874 + components: + - type: Transform + pos: -3.5,-38.5 + parent: 2 + - uid: 2875 + components: + - type: Transform + pos: -3.5,-40.5 + parent: 2 + - uid: 2876 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 2 + - uid: 2877 + components: + - type: Transform + pos: -3.5,-38.5 + parent: 2 + - uid: 2878 + components: + - type: Transform + pos: -3.5,-37.5 + parent: 2 + - uid: 2879 + components: + - type: Transform + pos: -3.5,-36.5 + parent: 2 + - uid: 2880 + components: + - type: Transform + pos: -2.5,-36.5 + parent: 2 + - uid: 2881 + components: + - type: Transform + pos: 9.5,-62.5 + parent: 2 + - uid: 2882 + components: + - type: Transform + pos: 9.5,-63.5 + parent: 2 + - uid: 2883 + components: + - type: Transform + pos: 10.5,-63.5 + parent: 2 + - uid: 2884 + components: + - type: Transform + pos: 11.5,-63.5 + parent: 2 + - uid: 2885 + components: + - type: Transform + pos: 12.5,-63.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: 12.5,-62.5 + parent: 2 + - uid: 2887 + components: + - type: Transform + pos: 12.5,-61.5 + parent: 2 + - uid: 2888 + components: + - type: Transform + pos: 12.5,-60.5 + parent: 2 + - uid: 2889 + components: + - type: Transform + pos: 12.5,-59.5 + parent: 2 + - uid: 2890 + components: + - type: Transform + pos: 12.5,-58.5 + parent: 2 + - uid: 2891 + components: + - type: Transform + pos: 12.5,-57.5 + parent: 2 + - uid: 2892 + components: + - type: Transform + pos: 8.5,-63.5 + parent: 2 + - uid: 2893 + components: + - type: Transform + pos: 7.5,-63.5 + parent: 2 + - uid: 2894 + components: + - type: Transform + pos: 6.5,-63.5 + parent: 2 + - uid: 2895 + components: + - type: Transform + pos: 5.5,-63.5 + parent: 2 + - uid: 2896 + components: + - type: Transform + pos: 4.5,-63.5 + parent: 2 + - uid: 2897 + components: + - type: Transform + pos: 3.5,-63.5 + parent: 2 + - uid: 2898 + components: + - type: Transform + pos: 2.5,-63.5 + parent: 2 + - uid: 2899 + components: + - type: Transform + pos: 1.5,-63.5 + parent: 2 + - uid: 2900 + components: + - type: Transform + pos: 0.5,-63.5 + parent: 2 + - uid: 2901 + components: + - type: Transform + pos: -0.5,-63.5 + parent: 2 + - uid: 2902 + components: + - type: Transform + pos: -1.5,-63.5 + parent: 2 + - uid: 2903 + components: + - type: Transform + pos: -2.5,-63.5 + parent: 2 + - uid: 2904 + components: + - type: Transform + pos: -3.5,-63.5 + parent: 2 + - uid: 2905 + components: + - type: Transform + pos: -4.5,-63.5 + parent: 2 + - uid: 2906 + components: + - type: Transform + pos: -5.5,-63.5 + parent: 2 + - uid: 2907 + components: + - type: Transform + pos: -6.5,-63.5 + parent: 2 + - uid: 2908 + components: + - type: Transform + pos: -6.5,-64.5 + parent: 2 + - uid: 2909 + components: + - type: Transform + pos: -6.5,-65.5 + parent: 2 + - uid: 2910 + components: + - type: Transform + pos: -6.5,-66.5 + parent: 2 + - uid: 2911 + components: + - type: Transform + pos: -6.5,-67.5 + parent: 2 + - uid: 2912 + components: + - type: Transform + pos: -6.5,-68.5 + parent: 2 + - uid: 2913 + components: + - type: Transform + pos: -6.5,-69.5 + parent: 2 + - uid: 2914 + components: + - type: Transform + pos: -6.5,-70.5 + parent: 2 + - uid: 2915 + components: + - type: Transform + pos: -6.5,-71.5 + parent: 2 + - uid: 2916 + components: + - type: Transform + pos: -6.5,-72.5 + parent: 2 + - uid: 2917 + components: + - type: Transform + pos: -6.5,-73.5 + parent: 2 + - uid: 2918 + components: + - type: Transform + pos: -6.5,-74.5 + parent: 2 + - uid: 2919 + components: + - type: Transform + pos: -6.5,-75.5 + parent: 2 + - uid: 2920 + components: + - type: Transform + pos: -5.5,-75.5 + parent: 2 + - uid: 2921 + components: + - type: Transform + pos: -4.5,-75.5 + parent: 2 + - uid: 2922 + components: + - type: Transform + pos: -3.5,-75.5 + parent: 2 + - uid: 2923 + components: + - type: Transform + pos: -2.5,-75.5 + parent: 2 + - uid: 2924 + components: + - type: Transform + pos: -1.5,-75.5 + parent: 2 + - uid: 2925 + components: + - type: Transform + pos: -0.5,-75.5 + parent: 2 + - uid: 2926 + components: + - type: Transform + pos: 0.5,-75.5 + parent: 2 + - uid: 2927 + components: + - type: Transform + pos: 1.5,-75.5 + parent: 2 + - uid: 2928 + components: + - type: Transform + pos: 2.5,-75.5 + parent: 2 + - uid: 2929 + components: + - type: Transform + pos: 3.5,-75.5 + parent: 2 + - uid: 2930 + components: + - type: Transform + pos: 4.5,-75.5 + parent: 2 + - uid: 2931 + components: + - type: Transform + pos: 5.5,-75.5 + parent: 2 + - uid: 2932 + components: + - type: Transform + pos: 6.5,-75.5 + parent: 2 + - uid: 2933 + components: + - type: Transform + pos: 7.5,-75.5 + parent: 2 + - uid: 2934 + components: + - type: Transform + pos: 7.5,-75.5 + parent: 2 + - uid: 2935 + components: + - type: Transform + pos: 7.5,-74.5 + parent: 2 + - uid: 2936 + components: + - type: Transform + pos: 7.5,-73.5 + parent: 2 + - uid: 2937 + components: + - type: Transform + pos: 7.5,-72.5 + parent: 2 + - uid: 2938 + components: + - type: Transform + pos: 7.5,-71.5 + parent: 2 + - uid: 2939 + components: + - type: Transform + pos: 7.5,-70.5 + parent: 2 + - uid: 2940 + components: + - type: Transform + pos: 7.5,-69.5 + parent: 2 + - uid: 2941 + components: + - type: Transform + pos: 7.5,-68.5 + parent: 2 + - uid: 2942 + components: + - type: Transform + pos: 7.5,-67.5 + parent: 2 + - uid: 2943 + components: + - type: Transform + pos: 7.5,-66.5 + parent: 2 + - uid: 2944 + components: + - type: Transform + pos: 7.5,-65.5 + parent: 2 + - uid: 2945 + components: + - type: Transform + pos: 7.5,-64.5 + parent: 2 + - uid: 2946 + components: + - type: Transform + pos: 0.5,-69.5 + parent: 2 + - uid: 2947 + components: + - type: Transform + pos: 0.5,-68.5 + parent: 2 + - uid: 2948 + components: + - type: Transform + pos: 0.5,-67.5 + parent: 2 + - uid: 2949 + components: + - type: Transform + pos: 0.5,-66.5 + parent: 2 + - uid: 2950 + components: + - type: Transform + pos: 0.5,-65.5 + parent: 2 + - uid: 2951 + components: + - type: Transform + pos: -5.5,-69.5 + parent: 2 + - uid: 2952 + components: + - type: Transform + pos: -4.5,-69.5 + parent: 2 + - uid: 2953 + components: + - type: Transform + pos: -3.5,-69.5 + parent: 2 + - uid: 2954 + components: + - type: Transform + pos: -2.5,-69.5 + parent: 2 + - uid: 2955 + components: + - type: Transform + pos: -1.5,-69.5 + parent: 2 + - uid: 2956 + components: + - type: Transform + pos: 2.5,-69.5 + parent: 2 + - uid: 2957 + components: + - type: Transform + pos: 3.5,-69.5 + parent: 2 + - uid: 2958 + components: + - type: Transform + pos: 4.5,-69.5 + parent: 2 + - uid: 2959 + components: + - type: Transform + pos: 5.5,-69.5 + parent: 2 + - uid: 2960 + components: + - type: Transform + pos: 6.5,-69.5 + parent: 2 + - uid: 2961 + components: + - type: Transform + pos: 7.5,-69.5 + parent: 2 + - uid: 2962 + components: + - type: Transform + pos: 12.5,-65.5 + parent: 2 + - uid: 2963 + components: + - type: Transform + pos: 12.5,-66.5 + parent: 2 + - uid: 2964 + components: + - type: Transform + pos: 12.5,-67.5 + parent: 2 + - uid: 2965 + components: + - type: Transform + pos: 12.5,-68.5 + parent: 2 + - uid: 2966 + components: + - type: Transform + pos: 12.5,-69.5 + parent: 2 + - uid: 2967 + components: + - type: Transform + pos: 12.5,-70.5 + parent: 2 + - uid: 2968 + components: + - type: Transform + pos: 10.5,-69.5 + parent: 2 + - uid: 2969 + components: + - type: Transform + pos: 11.5,-69.5 + parent: 2 + - uid: 2970 + components: + - type: Transform + pos: 12.5,-69.5 + parent: 2 + - uid: 2971 + components: + - type: Transform + pos: 13.5,-69.5 + parent: 2 + - uid: 2972 + components: + - type: Transform + pos: 14.5,-69.5 + parent: 2 + - uid: 2973 + components: + - type: Transform + pos: -7.5,44.5 + parent: 2 + - uid: 2974 + components: + - type: Transform + pos: -6.5,44.5 + parent: 2 + - uid: 2975 + components: + - type: Transform + pos: -5.5,44.5 + parent: 2 + - uid: 2976 + components: + - type: Transform + pos: -4.5,44.5 + parent: 2 + - uid: 2977 + components: + - type: Transform + pos: -3.5,44.5 + parent: 2 + - uid: 2978 + components: + - type: Transform + pos: -3.5,45.5 + parent: 2 + - uid: 2979 + components: + - type: Transform + pos: -3.5,46.5 + parent: 2 + - uid: 2980 + components: + - type: Transform + pos: -3.5,47.5 + parent: 2 + - uid: 2981 + components: + - type: Transform + pos: -3.5,48.5 + parent: 2 + - uid: 2982 + components: + - type: Transform + pos: -3.5,43.5 + parent: 2 + - uid: 2983 + components: + - type: Transform + pos: -3.5,42.5 + parent: 2 + - uid: 2984 + components: + - type: Transform + pos: -7.5,45.5 + parent: 2 + - uid: 2985 + components: + - type: Transform + pos: -8.5,45.5 + parent: 2 + - uid: 2986 + components: + - type: Transform + pos: -9.5,45.5 + parent: 2 + - uid: 2987 + components: + - type: Transform + pos: -10.5,45.5 + parent: 2 + - uid: 2988 + components: + - type: Transform + pos: -10.5,46.5 + parent: 2 + - uid: 2989 + components: + - type: Transform + pos: -10.5,47.5 + parent: 2 + - uid: 2990 + components: + - type: Transform + pos: -10.5,48.5 + parent: 2 + - uid: 2991 + components: + - type: Transform + pos: 9.5,57.5 + parent: 2 + - uid: 2992 + components: + - type: Transform + pos: 9.5,56.5 + parent: 2 + - uid: 2993 + components: + - type: Transform + pos: 9.5,55.5 + parent: 2 + - uid: 2994 + components: + - type: Transform + pos: 9.5,55.5 + parent: 2 + - uid: 2995 + components: + - type: Transform + pos: 9.5,54.5 + parent: 2 + - uid: 2996 + components: + - type: Transform + pos: 10.5,54.5 + parent: 2 + - uid: 2997 + components: + - type: Transform + pos: 9.5,54.5 + parent: 2 + - uid: 2998 + components: + - type: Transform + pos: 8.5,54.5 + parent: 2 + - uid: 2999 + components: + - type: Transform + pos: 7.5,54.5 + parent: 2 + - uid: 3000 + components: + - type: Transform + pos: 6.5,54.5 + parent: 2 + - uid: 3001 + components: + - type: Transform + pos: 5.5,54.5 + parent: 2 + - uid: 3002 + components: + - type: Transform + pos: 4.5,54.5 + parent: 2 + - uid: 3003 + components: + - type: Transform + pos: 5.5,53.5 + parent: 2 + - uid: 3004 + components: + - type: Transform + pos: 5.5,52.5 + parent: 2 + - uid: 3005 + components: + - type: Transform + pos: 5.5,59.5 + parent: 2 + - uid: 3006 + components: + - type: Transform + pos: 8.5,53.5 + parent: 2 + - uid: 3007 + components: + - type: Transform + pos: 8.5,52.5 + parent: 2 + - uid: 3008 + components: + - type: Transform + pos: 5.5,55.5 + parent: 2 + - uid: 3009 + components: + - type: Transform + pos: 5.5,56.5 + parent: 2 + - uid: 3010 + components: + - type: Transform + pos: 5.5,58.5 + parent: 2 + - uid: 3011 + components: + - type: Transform + pos: 5.5,60.5 + parent: 2 + - uid: 3012 + components: + - type: Transform + pos: 4.5,59.5 + parent: 2 + - uid: 3013 + components: + - type: Transform + pos: 3.5,59.5 + parent: 2 + - uid: 3014 + components: + - type: Transform + pos: 5.5,57.5 + parent: 2 + - uid: 3015 + components: + - type: Transform + pos: 1.5,59.5 + parent: 2 + - uid: 3016 + components: + - type: Transform + pos: 2.5,59.5 + parent: 2 + - uid: 3017 + components: + - type: Transform + pos: 0.5,59.5 + parent: 2 + - uid: 3018 + components: + - type: Transform + pos: -0.5,59.5 + parent: 2 + - uid: 3019 + components: + - type: Transform + pos: -1.5,59.5 + parent: 2 + - uid: 3020 + components: + - type: Transform + pos: -2.5,59.5 + parent: 2 + - uid: 3021 + components: + - type: Transform + pos: -3.5,59.5 + parent: 2 + - uid: 3022 + components: + - type: Transform + pos: -3.5,58.5 + parent: 2 + - uid: 3023 + components: + - type: Transform + pos: -3.5,60.5 + parent: 2 + - uid: 3024 + components: + - type: Transform + pos: -3.5,61.5 + parent: 2 + - uid: 3025 + components: + - type: Transform + pos: -4.5,59.5 + parent: 2 + - uid: 3026 + components: + - type: Transform + pos: 0.5,60.5 + parent: 2 + - uid: 3027 + components: + - type: Transform + pos: 1.5,61.5 + parent: 2 + - uid: 3028 + components: + - type: Transform + pos: 2.5,58.5 + parent: 2 + - uid: 3029 + components: + - type: Transform + pos: 2.5,57.5 + parent: 2 + - uid: 3030 + components: + - type: Transform + pos: 2.5,56.5 + parent: 2 + - uid: 3031 + components: + - type: Transform + pos: 2.5,55.5 + parent: 2 + - uid: 3032 + components: + - type: Transform + pos: 2.5,54.5 + parent: 2 + - uid: 3033 + components: + - type: Transform + pos: -0.5,57.5 + parent: 2 + - uid: 3034 + components: + - type: Transform + pos: -0.5,56.5 + parent: 2 + - uid: 3035 + components: + - type: Transform + pos: -0.5,55.5 + parent: 2 + - uid: 3036 + components: + - type: Transform + pos: -0.5,54.5 + parent: 2 + - uid: 3037 + components: + - type: Transform + pos: -0.5,58.5 + parent: 2 + - uid: 3038 + components: + - type: Transform + pos: 2.5,58.5 + parent: 2 + - uid: 3039 + components: + - type: Transform + pos: 6.5,59.5 + parent: 2 + - uid: 3040 + components: + - type: Transform + pos: 9.5,51.5 + parent: 2 + - uid: 3041 + components: + - type: Transform + pos: 9.5,50.5 + parent: 2 + - uid: 3042 + components: + - type: Transform + pos: 9.5,49.5 + parent: 2 + - uid: 3043 + components: + - type: Transform + pos: 9.5,49.5 + parent: 2 + - uid: 3044 + components: + - type: Transform + pos: 10.5,49.5 + parent: 2 + - uid: 3045 + components: + - type: Transform + pos: 11.5,49.5 + parent: 2 + - uid: 3046 + components: + - type: Transform + pos: 12.5,49.5 + parent: 2 + - uid: 3047 + components: + - type: Transform + pos: 12.5,50.5 + parent: 2 + - uid: 3048 + components: + - type: Transform + pos: 11.5,48.5 + parent: 2 + - uid: 3049 + components: + - type: Transform + pos: 11.5,47.5 + parent: 2 + - uid: 3050 + components: + - type: Transform + pos: 12.5,47.5 + parent: 2 + - uid: 3051 + components: + - type: Transform + pos: 13.5,47.5 + parent: 2 + - uid: 3052 + components: + - type: Transform + pos: 14.5,47.5 + parent: 2 + - uid: 3053 + components: + - type: Transform + pos: 8.5,49.5 + parent: 2 + - uid: 3054 + components: + - type: Transform + pos: 7.5,49.5 + parent: 2 + - uid: 3055 + components: + - type: Transform + pos: 8.5,48.5 + parent: 2 + - uid: 3056 + components: + - type: Transform + pos: 8.5,47.5 + parent: 2 + - uid: 3057 + components: + - type: Transform + pos: 7.5,47.5 + parent: 2 + - uid: 3058 + components: + - type: Transform + pos: 6.5,47.5 + parent: 2 + - uid: 3059 + components: + - type: Transform + pos: -9.5,51.5 + parent: 2 + - uid: 3060 + components: + - type: Transform + pos: -10.5,51.5 + parent: 2 + - uid: 3061 + components: + - type: Transform + pos: -10.5,50.5 + parent: 2 + - uid: 3062 + components: + - type: Transform + pos: -10.5,50.5 + parent: 2 + - uid: 3063 + components: + - type: Transform + pos: -9.5,50.5 + parent: 2 + - uid: 3064 + components: + - type: Transform + pos: -8.5,50.5 + parent: 2 + - uid: 3065 + components: + - type: Transform + pos: -7.5,50.5 + parent: 2 + - uid: 3066 + components: + - type: Transform + pos: -6.5,50.5 + parent: 2 + - uid: 3067 + components: + - type: Transform + pos: -6.5,49.5 + parent: 2 + - uid: 3068 + components: + - type: Transform + pos: -6.5,48.5 + parent: 2 + - uid: 3069 + components: + - type: Transform + pos: -6.5,47.5 + parent: 2 + - uid: 3070 + components: + - type: Transform + pos: -7.5,48.5 + parent: 2 + - uid: 3071 + components: + - type: Transform + pos: -7.5,51.5 + parent: 2 + - uid: 3072 + components: + - type: Transform + pos: -7.5,50.5 + parent: 2 + - uid: 3073 + components: + - type: Transform + pos: -7.5,52.5 + parent: 2 + - uid: 3074 + components: + - type: Transform + pos: -8.5,52.5 + parent: 2 + - uid: 3075 + components: + - type: Transform + pos: -6.5,52.5 + parent: 2 + - uid: 3076 + components: + - type: Transform + pos: -5.5,52.5 + parent: 2 + - uid: 3077 + components: + - type: Transform + pos: -6.5,53.5 + parent: 2 + - uid: 3078 + components: + - type: Transform + pos: -6.5,54.5 + parent: 2 + - uid: 3079 + components: + - type: Transform + pos: -6.5,55.5 + parent: 2 + - uid: 3080 + components: + - type: Transform + pos: -8.5,55.5 + parent: 2 + - uid: 3081 + components: + - type: Transform + pos: -7.5,55.5 + parent: 2 + - uid: 3082 + components: + - type: Transform + pos: -6.5,55.5 + parent: 2 + - uid: 3083 + components: + - type: Transform + pos: -5.5,55.5 + parent: 2 + - uid: 3084 + components: + - type: Transform + pos: -4.5,55.5 + parent: 2 + - uid: 3085 + components: + - type: Transform + pos: -3.5,55.5 + parent: 2 + - uid: 3086 + components: + - type: Transform + pos: -2.5,55.5 + parent: 2 + - uid: 3087 + components: + - type: Transform + pos: -3.5,54.5 + parent: 2 + - uid: 3088 + components: + - type: Transform + pos: -3.5,53.5 + parent: 2 + - uid: 3089 + components: + - type: Transform + pos: -3.5,52.5 + parent: 2 + - uid: 3090 + components: + - type: Transform + pos: -3.5,51.5 + parent: 2 + - uid: 3091 + components: + - type: Transform + pos: 2.5,46.5 + parent: 2 + - uid: 3092 + components: + - type: Transform + pos: 1.5,52.5 + parent: 2 + - uid: 3093 + components: + - type: Transform + pos: 1.5,51.5 + parent: 2 + - uid: 3094 + components: + - type: Transform + pos: 1.5,50.5 + parent: 2 + - uid: 3095 + components: + - type: Transform + pos: 1.5,49.5 + parent: 2 + - uid: 3096 + components: + - type: Transform + pos: 1.5,48.5 + parent: 2 + - uid: 3097 + components: + - type: Transform + pos: 1.5,47.5 + parent: 2 + - uid: 3098 + components: + - type: Transform + pos: 1.5,46.5 + parent: 2 + - uid: 3099 + components: + - type: Transform + pos: 1.5,45.5 + parent: 2 + - uid: 3100 + components: + - type: Transform + pos: 1.5,44.5 + parent: 2 + - uid: 3101 + components: + - type: Transform + pos: 1.5,42.5 + parent: 2 + - uid: 3102 + components: + - type: Transform + pos: 1.5,43.5 + parent: 2 + - uid: 3103 + components: + - type: Transform + pos: 1.5,41.5 + parent: 2 + - uid: 3104 + components: + - type: Transform + pos: 0.5,41.5 + parent: 2 + - uid: 3105 + components: + - type: Transform + pos: -1.5,41.5 + parent: 2 + - uid: 3106 + components: + - type: Transform + pos: 4.5,50.5 + parent: 2 + - uid: 3107 + components: + - type: Transform + pos: 1.5,41.5 + parent: 2 + - uid: 3108 + components: + - type: Transform + pos: 0.5,54.5 + parent: 2 + - uid: 3109 + components: + - type: Transform + pos: 29.5,40.5 + parent: 2 + - uid: 3110 + components: + - type: Transform + pos: 28.5,36.5 + parent: 2 + - uid: 3111 + components: + - type: Transform + pos: 29.5,36.5 + parent: 2 + - uid: 3112 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 3113 + components: + - type: Transform + pos: -0.5,54.5 + parent: 2 + - uid: 3114 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 3115 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - uid: 3116 + components: + - type: Transform + pos: 6.5,26.5 + parent: 2 + - uid: 3117 + components: + - type: Transform + pos: -35.5,5.5 + parent: 2 + - uid: 3118 + components: + - type: Transform + pos: 3.5,46.5 + parent: 2 + - uid: 3119 + components: + - type: Transform + pos: 5.5,24.5 + parent: 2 + - uid: 3120 + components: + - type: Transform + pos: 9.5,29.5 + parent: 2 + - uid: 3121 + components: + - type: Transform + pos: 8.5,29.5 + parent: 2 + - uid: 3122 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 + - uid: 3123 + components: + - type: Transform + pos: 6.5,29.5 + parent: 2 + - uid: 3124 + components: + - type: Transform + pos: 6.5,30.5 + parent: 2 + - uid: 3125 + components: + - type: Transform + pos: 4.5,29.5 + parent: 2 + - uid: 3126 + components: + - type: Transform + pos: 4.5,30.5 + parent: 2 + - uid: 3127 + components: + - type: Transform + pos: 4.5,31.5 + parent: 2 + - uid: 3128 + components: + - type: Transform + pos: 6.5,31.5 + parent: 2 + - uid: 3129 + components: + - type: Transform + pos: 5.5,30.5 + parent: 2 + - uid: 3130 + components: + - type: Transform + pos: 4.5,32.5 + parent: 2 + - uid: 3131 + components: + - type: Transform + pos: 6.5,31.5 + parent: 2 + - uid: 3132 + components: + - type: Transform + pos: 6.5,32.5 + parent: 2 + - uid: 3133 + components: + - type: Transform + pos: 7.5,32.5 + parent: 2 + - uid: 3134 + components: + - type: Transform + pos: 9.5,43.5 + parent: 2 + - uid: 3135 + components: + - type: Transform + pos: 8.5,43.5 + parent: 2 + - uid: 3136 + components: + - type: Transform + pos: 7.5,43.5 + parent: 2 + - uid: 3137 + components: + - type: Transform + pos: 6.5,43.5 + parent: 2 + - uid: 3138 + components: + - type: Transform + pos: 5.5,43.5 + parent: 2 + - uid: 3139 + components: + - type: Transform + pos: 4.5,43.5 + parent: 2 + - uid: 3140 + components: + - type: Transform + pos: 6.5,43.5 + parent: 2 + - uid: 3141 + components: + - type: Transform + pos: 6.5,42.5 + parent: 2 + - uid: 3142 + components: + - type: Transform + pos: 6.5,41.5 + parent: 2 + - uid: 3143 + components: + - type: Transform + pos: 6.5,40.5 + parent: 2 + - uid: 3144 + components: + - type: Transform + pos: 6.5,39.5 + parent: 2 + - uid: 3145 + components: + - type: Transform + pos: 6.5,38.5 + parent: 2 + - uid: 3146 + components: + - type: Transform + pos: 6.5,37.5 + parent: 2 + - uid: 3147 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - uid: 3148 + components: + - type: Transform + pos: 7.5,36.5 + parent: 2 + - uid: 3149 + components: + - type: Transform + pos: 7.5,35.5 + parent: 2 + - uid: 3150 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - uid: 3151 + components: + - type: Transform + pos: 5.5,34.5 + parent: 2 + - uid: 3152 + components: + - type: Transform + pos: -34.5,15.5 + parent: 2 + - uid: 3153 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 + - uid: 3154 + components: + - type: Transform + pos: -32.5,15.5 + parent: 2 + - uid: 3155 + components: + - type: Transform + pos: -32.5,16.5 + parent: 2 + - uid: 3156 + components: + - type: Transform + pos: -33.5,16.5 + parent: 2 + - uid: 3157 + components: + - type: Transform + pos: -34.5,16.5 + parent: 2 + - uid: 3158 + components: + - type: Transform + pos: -34.5,14.5 + parent: 2 + - uid: 3159 + components: + - type: Transform + pos: -33.5,14.5 + parent: 2 + - uid: 3160 + components: + - type: Transform + pos: -32.5,14.5 + parent: 2 + - uid: 3161 + components: + - type: Transform + pos: -35.5,15.5 + parent: 2 + - uid: 3162 + components: + - type: Transform + pos: -36.5,15.5 + parent: 2 + - uid: 3163 + components: + - type: Transform + pos: -43.5,18.5 + parent: 2 + - uid: 3164 + components: + - type: Transform + pos: -43.5,17.5 + parent: 2 + - uid: 3165 + components: + - type: Transform + pos: -42.5,17.5 + parent: 2 + - uid: 3166 + components: + - type: Transform + pos: -41.5,17.5 + parent: 2 + - uid: 3167 + components: + - type: Transform + pos: -40.5,17.5 + parent: 2 + - uid: 3168 + components: + - type: Transform + pos: -44.5,17.5 + parent: 2 + - uid: 3169 + components: + - type: Transform + pos: -42.5,16.5 + parent: 2 + - uid: 3170 + components: + - type: Transform + pos: -42.5,15.5 + parent: 2 + - uid: 3171 + components: + - type: Transform + pos: -42.5,14.5 + parent: 2 + - uid: 3172 + components: + - type: Transform + pos: -44.5,14.5 + parent: 2 + - uid: 3173 + components: + - type: Transform + pos: -43.5,14.5 + parent: 2 + - uid: 3174 + components: + - type: Transform + pos: -42.5,14.5 + parent: 2 + - uid: 3175 + components: + - type: Transform + pos: -41.5,14.5 + parent: 2 + - uid: 3176 + components: + - type: Transform + pos: -40.5,14.5 + parent: 2 + - uid: 3177 + components: + - type: Transform + pos: -5.5,83.5 + parent: 2 + - uid: 3178 + components: + - type: Transform + pos: -4.5,75.5 + parent: 2 + - uid: 3179 + components: + - type: Transform + pos: -4.5,73.5 + parent: 2 + - uid: 3180 + components: + - type: Transform + pos: -4.5,74.5 + parent: 2 + - uid: 3181 + components: + - type: Transform + pos: -4.5,75.5 + parent: 2 + - uid: 3182 + components: + - type: Transform + pos: -4.5,76.5 + parent: 2 + - uid: 3183 + components: + - type: Transform + pos: -4.5,77.5 + parent: 2 + - uid: 3184 + components: + - type: Transform + pos: -4.5,78.5 + parent: 2 + - uid: 3185 + components: + - type: Transform + pos: -4.5,79.5 + parent: 2 + - uid: 3186 + components: + - type: Transform + pos: -4.5,80.5 + parent: 2 + - uid: 3187 + components: + - type: Transform + pos: -4.5,81.5 + parent: 2 + - uid: 3188 + components: + - type: Transform + pos: -4.5,77.5 + parent: 2 + - uid: 3189 + components: + - type: Transform + pos: -5.5,77.5 + parent: 2 + - uid: 3190 + components: + - type: Transform + pos: -6.5,77.5 + parent: 2 + - uid: 3191 + components: + - type: Transform + pos: -7.5,77.5 + parent: 2 + - uid: 3192 + components: + - type: Transform + pos: -8.5,77.5 + parent: 2 + - uid: 3193 + components: + - type: Transform + pos: -9.5,77.5 + parent: 2 + - uid: 3194 + components: + - type: Transform + pos: -10.5,77.5 + parent: 2 + - uid: 3195 + components: + - type: Transform + pos: -11.5,77.5 + parent: 2 + - uid: 3196 + components: + - type: Transform + pos: -4.5,73.5 + parent: 2 + - uid: 3197 + components: + - type: Transform + pos: -4.5,72.5 + parent: 2 + - uid: 3198 + components: + - type: Transform + pos: -4.5,71.5 + parent: 2 + - uid: 3199 + components: + - type: Transform + pos: -4.5,70.5 + parent: 2 + - uid: 3200 + components: + - type: Transform + pos: -4.5,70.5 + parent: 2 + - uid: 3201 + components: + - type: Transform + pos: -3.5,70.5 + parent: 2 + - uid: 3202 + components: + - type: Transform + pos: -2.5,70.5 + parent: 2 + - uid: 3203 + components: + - type: Transform + pos: -1.5,70.5 + parent: 2 + - uid: 3204 + components: + - type: Transform + pos: -0.5,70.5 + parent: 2 + - uid: 3205 + components: + - type: Transform + pos: 0.5,70.5 + parent: 2 + - uid: 3206 + components: + - type: Transform + pos: 1.5,70.5 + parent: 2 + - uid: 3207 + components: + - type: Transform + pos: 2.5,70.5 + parent: 2 + - uid: 3208 + components: + - type: Transform + pos: 3.5,70.5 + parent: 2 + - uid: 3209 + components: + - type: Transform + pos: 4.5,70.5 + parent: 2 + - uid: 3210 + components: + - type: Transform + pos: 5.5,70.5 + parent: 2 + - uid: 3211 + components: + - type: Transform + pos: 6.5,70.5 + parent: 2 + - uid: 3212 + components: + - type: Transform + pos: 7.5,70.5 + parent: 2 + - uid: 3213 + components: + - type: Transform + pos: -5.5,71.5 + parent: 2 + - uid: 3214 + components: + - type: Transform + pos: -6.5,71.5 + parent: 2 + - uid: 3215 + components: + - type: Transform + pos: 1.5,71.5 + parent: 2 + - uid: 3216 + components: + - type: Transform + pos: 7.5,71.5 + parent: 2 + - uid: 3217 + components: + - type: Transform + pos: 7.5,72.5 + parent: 2 + - uid: 3218 + components: + - type: Transform + pos: 6.5,72.5 + parent: 2 + - uid: 3219 + components: + - type: Transform + pos: 8.5,72.5 + parent: 2 + - uid: 3220 + components: + - type: Transform + pos: 7.5,73.5 + parent: 2 + - uid: 3221 + components: + - type: Transform + pos: 7.5,74.5 + parent: 2 + - uid: 3222 + components: + - type: Transform + pos: 7.5,75.5 + parent: 2 + - uid: 3223 + components: + - type: Transform + pos: 7.5,76.5 + parent: 2 + - uid: 3224 + components: + - type: Transform + pos: 7.5,77.5 + parent: 2 + - uid: 3225 + components: + - type: Transform + pos: 7.5,78.5 + parent: 2 + - uid: 3226 + components: + - type: Transform + pos: 7.5,79.5 + parent: 2 + - uid: 3227 + components: + - type: Transform + pos: 7.5,80.5 + parent: 2 + - uid: 3228 + components: + - type: Transform + pos: 7.5,82.5 + parent: 2 + - uid: 3229 + components: + - type: Transform + pos: 7.5,83.5 + parent: 2 + - uid: 3230 + components: + - type: Transform + pos: 7.5,84.5 + parent: 2 + - uid: 3231 + components: + - type: Transform + pos: 7.5,84.5 + parent: 2 + - uid: 3232 + components: + - type: Transform + pos: 6.5,84.5 + parent: 2 + - uid: 3233 + components: + - type: Transform + pos: 5.5,84.5 + parent: 2 + - uid: 3234 + components: + - type: Transform + pos: 4.5,84.5 + parent: 2 + - uid: 3235 + components: + - type: Transform + pos: 3.5,84.5 + parent: 2 + - uid: 3236 + components: + - type: Transform + pos: 2.5,84.5 + parent: 2 + - uid: 3237 + components: + - type: Transform + pos: 1.5,84.5 + parent: 2 + - uid: 3238 + components: + - type: Transform + pos: 0.5,84.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + pos: -0.5,84.5 + parent: 2 + - uid: 3240 + components: + - type: Transform + pos: -1.5,84.5 + parent: 2 + - uid: 3241 + components: + - type: Transform + pos: -2.5,84.5 + parent: 2 + - uid: 3242 + components: + - type: Transform + pos: -3.5,84.5 + parent: 2 + - uid: 3243 + components: + - type: Transform + pos: -4.5,84.5 + parent: 2 + - uid: 3244 + components: + - type: Transform + pos: 1.5,84.5 + parent: 2 + - uid: 3245 + components: + - type: Transform + pos: 1.5,83.5 + parent: 2 + - uid: 3246 + components: + - type: Transform + pos: 1.5,82.5 + parent: 2 + - uid: 3247 + components: + - type: Transform + pos: 1.5,81.5 + parent: 2 + - uid: 3248 + components: + - type: Transform + pos: 1.5,80.5 + parent: 2 + - uid: 3249 + components: + - type: Transform + pos: 1.5,79.5 + parent: 2 + - uid: 3250 + components: + - type: Transform + pos: 1.5,78.5 + parent: 2 + - uid: 3251 + components: + - type: Transform + pos: 1.5,77.5 + parent: 2 + - uid: 3252 + components: + - type: Transform + pos: 1.5,76.5 + parent: 2 + - uid: 3253 + components: + - type: Transform + pos: -1.5,77.5 + parent: 2 + - uid: 3254 + components: + - type: Transform + pos: -0.5,77.5 + parent: 2 + - uid: 3255 + components: + - type: Transform + pos: 0.5,77.5 + parent: 2 + - uid: 3256 + components: + - type: Transform + pos: 1.5,77.5 + parent: 2 + - uid: 3257 + components: + - type: Transform + pos: 2.5,77.5 + parent: 2 + - uid: 3258 + components: + - type: Transform + pos: 3.5,77.5 + parent: 2 + - uid: 3259 + components: + - type: Transform + pos: 4.5,77.5 + parent: 2 + - uid: 3260 + components: + - type: Transform + pos: 4.5,74.5 + parent: 2 + - uid: 3261 + components: + - type: Transform + pos: 4.5,75.5 + parent: 2 + - uid: 3262 + components: + - type: Transform + pos: 4.5,76.5 + parent: 2 + - uid: 3263 + components: + - type: Transform + pos: 4.5,77.5 + parent: 2 + - uid: 3264 + components: + - type: Transform + pos: 4.5,78.5 + parent: 2 + - uid: 3265 + components: + - type: Transform + pos: 4.5,79.5 + parent: 2 + - uid: 3266 + components: + - type: Transform + pos: 4.5,80.5 + parent: 2 + - uid: 3267 + components: + - type: Transform + pos: -1.5,80.5 + parent: 2 + - uid: 3268 + components: + - type: Transform + pos: -1.5,79.5 + parent: 2 + - uid: 3269 + components: + - type: Transform + pos: -1.5,78.5 + parent: 2 + - uid: 3270 + components: + - type: Transform + pos: -1.5,77.5 + parent: 2 + - uid: 3271 + components: + - type: Transform + pos: -1.5,76.5 + parent: 2 + - uid: 3272 + components: + - type: Transform + pos: -1.5,75.5 + parent: 2 + - uid: 3273 + components: + - type: Transform + pos: -1.5,74.5 + parent: 2 + - uid: 3274 + components: + - type: Transform + pos: -3.5,73.5 + parent: 2 + - uid: 3275 + components: + - type: Transform + pos: -1.5,80.5 + parent: 2 + - uid: 3276 + components: + - type: Transform + pos: -1.5,74.5 + parent: 2 + - uid: 3277 + components: + - type: Transform + pos: 4.5,74.5 + parent: 2 + - uid: 3278 + components: + - type: Transform + pos: 4.5,80.5 + parent: 2 + - uid: 3279 + components: + - type: Transform + pos: 1.5,75.5 + parent: 2 + - uid: 3280 + components: + - type: Transform + pos: 1.5,74.5 + parent: 2 + - uid: 3281 + components: + - type: Transform + pos: 0.5,73.5 + parent: 2 + - uid: 3282 + components: + - type: Transform + pos: 1.5,73.5 + parent: 2 + - uid: 3283 + components: + - type: Transform + pos: 2.5,73.5 + parent: 2 + - uid: 3284 + components: + - type: Transform + pos: 2.5,80.5 + parent: 2 + - uid: 3285 + components: + - type: Transform + pos: 2.5,81.5 + parent: 2 + - uid: 3286 + components: + - type: Transform + pos: 0.5,80.5 + parent: 2 + - uid: 3287 + components: + - type: Transform + pos: 0.5,81.5 + parent: 2 + - uid: 3288 + components: + - type: Transform + pos: -4.5,83.5 + parent: 2 + - uid: 3289 + components: + - type: Transform + pos: -4.5,82.5 + parent: 2 + - uid: 3290 + components: + - type: Transform + pos: -4.5,81.5 + parent: 2 + - uid: 3291 + components: + - type: Transform + pos: 1.5,85.5 + parent: 2 + - uid: 3292 + components: + - type: Transform + pos: 1.5,86.5 + parent: 2 + - uid: 3293 + components: + - type: Transform + pos: -0.5,86.5 + parent: 2 + - uid: 3294 + components: + - type: Transform + pos: 0.5,86.5 + parent: 2 + - uid: 3295 + components: + - type: Transform + pos: 1.5,86.5 + parent: 2 + - uid: 3296 + components: + - type: Transform + pos: 2.5,86.5 + parent: 2 + - uid: 3297 + components: + - type: Transform + pos: 3.5,86.5 + parent: 2 + - uid: 3298 + components: + - type: Transform + pos: -3.5,69.5 + parent: 2 + - uid: 3299 + components: + - type: Transform + pos: -3.5,68.5 + parent: 2 + - uid: 3300 + components: + - type: Transform + pos: -2.5,68.5 + parent: 2 + - uid: 3301 + components: + - type: Transform + pos: 5.5,69.5 + parent: 2 + - uid: 3302 + components: + - type: Transform + pos: 5.5,68.5 + parent: 2 + - uid: 3303 + components: + - type: Transform + pos: -26.5,18.5 + parent: 2 + - uid: 3304 + components: + - type: Transform + pos: -25.5,18.5 + parent: 2 + - uid: 3305 + components: + - type: Transform + pos: -24.5,18.5 + parent: 2 + - uid: 3306 + components: + - type: Transform + pos: -24.5,17.5 + parent: 2 + - uid: 3307 + components: + - type: Transform + pos: -24.5,16.5 + parent: 2 + - uid: 3308 + components: + - type: Transform + pos: -24.5,16.5 + parent: 2 + - uid: 3309 + components: + - type: Transform + pos: -25.5,16.5 + parent: 2 + - uid: 3310 + components: + - type: Transform + pos: -26.5,16.5 + parent: 2 + - uid: 3311 + components: + - type: Transform + pos: -27.5,16.5 + parent: 2 + - uid: 3312 + components: + - type: Transform + pos: -28.5,16.5 + parent: 2 + - uid: 3313 + components: + - type: Transform + pos: -23.5,16.5 + parent: 2 + - uid: 3314 + components: + - type: Transform + pos: -22.5,16.5 + parent: 2 + - uid: 3315 + components: + - type: Transform + pos: -22.5,15.5 + parent: 2 + - uid: 3316 + components: + - type: Transform + pos: -21.5,15.5 + parent: 2 + - uid: 3317 + components: + - type: Transform + pos: -20.5,15.5 + parent: 2 + - uid: 3318 + components: + - type: Transform + pos: -19.5,15.5 + parent: 2 + - uid: 3319 + components: + - type: Transform + pos: -18.5,15.5 + parent: 2 + - uid: 3320 + components: + - type: Transform + pos: -17.5,15.5 + parent: 2 + - uid: 3321 + components: + - type: Transform + pos: -16.5,15.5 + parent: 2 + - uid: 3322 + components: + - type: Transform + pos: -20.5,14.5 + parent: 2 + - uid: 3323 + components: + - type: Transform + pos: -24.5,19.5 + parent: 2 + - uid: 3324 + components: + - type: Transform + pos: -24.5,20.5 + parent: 2 + - uid: 3325 + components: + - type: Transform + pos: -24.5,20.5 + parent: 2 + - uid: 3326 + components: + - type: Transform + pos: -25.5,20.5 + parent: 2 + - uid: 3327 + components: + - type: Transform + pos: -26.5,20.5 + parent: 2 + - uid: 3328 + components: + - type: Transform + pos: -27.5,20.5 + parent: 2 + - uid: 3329 + components: + - type: Transform + pos: -28.5,20.5 + parent: 2 + - uid: 3330 + components: + - type: Transform + pos: -29.5,20.5 + parent: 2 + - uid: 3331 + components: + - type: Transform + pos: -30.5,20.5 + parent: 2 + - uid: 3332 + components: + - type: Transform + pos: -31.5,20.5 + parent: 2 + - uid: 3333 + components: + - type: Transform + pos: -32.5,20.5 + parent: 2 + - uid: 3334 + components: + - type: Transform + pos: -33.5,20.5 + parent: 2 + - uid: 3335 + components: + - type: Transform + pos: -26.5,29.5 + parent: 2 + - uid: 3336 + components: + - type: Transform + pos: -27.5,20.5 + parent: 2 + - uid: 3337 + components: + - type: Transform + pos: -27.5,21.5 + parent: 2 + - uid: 3338 + components: + - type: Transform + pos: -27.5,22.5 + parent: 2 + - uid: 3339 + components: + - type: Transform + pos: -27.5,23.5 + parent: 2 + - uid: 3340 + components: + - type: Transform + pos: -27.5,24.5 + parent: 2 + - uid: 3341 + components: + - type: Transform + pos: -27.5,25.5 + parent: 2 + - uid: 3342 + components: + - type: Transform + pos: -27.5,26.5 + parent: 2 + - uid: 3343 + components: + - type: Transform + pos: -27.5,27.5 + parent: 2 + - uid: 3344 + components: + - type: Transform + pos: -25.5,31.5 + parent: 2 + - uid: 3345 + components: + - type: Transform + pos: -25.5,30.5 + parent: 2 + - uid: 3346 + components: + - type: Transform + pos: -25.5,29.5 + parent: 2 + - uid: 3347 + components: + - type: Transform + pos: -26.5,29.5 + parent: 2 + - uid: 3348 + components: + - type: Transform + pos: -25.5,29.5 + parent: 2 + - uid: 3349 + components: + - type: Transform + pos: -24.5,29.5 + parent: 2 + - uid: 3350 + components: + - type: Transform + pos: -23.5,29.5 + parent: 2 + - uid: 3351 + components: + - type: Transform + pos: -27.5,29.5 + parent: 2 + - uid: 3352 + components: + - type: Transform + pos: -33.5,29.5 + parent: 2 + - uid: 3353 + components: + - type: Transform + pos: -32.5,29.5 + parent: 2 + - uid: 3354 + components: + - type: Transform + pos: -31.5,29.5 + parent: 2 + - uid: 3355 + components: + - type: Transform + pos: -30.5,29.5 + parent: 2 + - uid: 3356 + components: + - type: Transform + pos: -29.5,29.5 + parent: 2 + - uid: 3357 + components: + - type: Transform + pos: -28.5,29.5 + parent: 2 + - uid: 3358 + components: + - type: Transform + pos: -14.5,27.5 + parent: 2 + - uid: 3359 + components: + - type: Transform + pos: -23.5,28.5 + parent: 2 + - uid: 3360 + components: + - type: Transform + pos: -22.5,28.5 + parent: 2 + - uid: 3361 + components: + - type: Transform + pos: -21.5,28.5 + parent: 2 + - uid: 3362 + components: + - type: Transform + pos: -20.5,28.5 + parent: 2 + - uid: 3363 + components: + - type: Transform + pos: -19.5,28.5 + parent: 2 + - uid: 3364 + components: + - type: Transform + pos: -18.5,28.5 + parent: 2 + - uid: 3365 + components: + - type: Transform + pos: -17.5,28.5 + parent: 2 + - uid: 3366 + components: + - type: Transform + pos: -16.5,28.5 + parent: 2 + - uid: 3367 + components: + - type: Transform + pos: -15.5,28.5 + parent: 2 + - uid: 3368 + components: + - type: Transform + pos: -14.5,28.5 + parent: 2 + - uid: 3369 + components: + - type: Transform + pos: -13.5,28.5 + parent: 2 + - uid: 3370 + components: + - type: Transform + pos: -12.5,28.5 + parent: 2 + - uid: 3371 + components: + - type: Transform + pos: -11.5,28.5 + parent: 2 + - uid: 3372 + components: + - type: Transform + pos: -10.5,28.5 + parent: 2 + - uid: 3373 + components: + - type: Transform + pos: -9.5,28.5 + parent: 2 + - uid: 3374 + components: + - type: Transform + pos: -8.5,28.5 + parent: 2 + - uid: 3375 + components: + - type: Transform + pos: -7.5,28.5 + parent: 2 + - uid: 3376 + components: + - type: Transform + pos: -6.5,28.5 + parent: 2 + - uid: 3377 + components: + - type: Transform + pos: -5.5,28.5 + parent: 2 + - uid: 3378 + components: + - type: Transform + pos: -4.5,28.5 + parent: 2 + - uid: 3379 + components: + - type: Transform + pos: -3.5,28.5 + parent: 2 + - uid: 3380 + components: + - type: Transform + pos: -14.5,26.5 + parent: 2 + - uid: 3381 + components: + - type: Transform + pos: -14.5,25.5 + parent: 2 + - uid: 3382 + components: + - type: Transform + pos: -14.5,24.5 + parent: 2 + - uid: 3383 + components: + - type: Transform + pos: -14.5,23.5 + parent: 2 + - uid: 3384 + components: + - type: Transform + pos: -14.5,22.5 + parent: 2 + - uid: 3385 + components: + - type: Transform + pos: -14.5,21.5 + parent: 2 + - uid: 3386 + components: + - type: Transform + pos: -14.5,20.5 + parent: 2 + - uid: 3387 + components: + - type: Transform + pos: -14.5,19.5 + parent: 2 + - uid: 3388 + components: + - type: Transform + pos: -13.5,19.5 + parent: 2 + - uid: 3389 + components: + - type: Transform + pos: -12.5,19.5 + parent: 2 + - uid: 3390 + components: + - type: Transform + pos: -11.5,19.5 + parent: 2 + - uid: 3391 + components: + - type: Transform + pos: -10.5,19.5 + parent: 2 + - uid: 3392 + components: + - type: Transform + pos: -9.5,19.5 + parent: 2 + - uid: 3393 + components: + - type: Transform + pos: -8.5,19.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + pos: -7.5,19.5 + parent: 2 + - uid: 3395 + components: + - type: Transform + pos: -6.5,19.5 + parent: 2 + - uid: 3396 + components: + - type: Transform + pos: -5.5,19.5 + parent: 2 + - uid: 3397 + components: + - type: Transform + pos: -4.5,19.5 + parent: 2 + - uid: 3398 + components: + - type: Transform + pos: -3.5,19.5 + parent: 2 + - uid: 3399 + components: + - type: Transform + pos: -2.5,19.5 + parent: 2 + - uid: 3400 + components: + - type: Transform + pos: -1.5,19.5 + parent: 2 + - uid: 3401 + components: + - type: Transform + pos: -3.5,20.5 + parent: 2 + - uid: 3402 + components: + - type: Transform + pos: -11.5,20.5 + parent: 2 + - uid: 3403 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - uid: 3404 + components: + - type: Transform + pos: -12.5,21.5 + parent: 2 + - uid: 3405 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 + - uid: 3406 + components: + - type: Transform + pos: -8.5,21.5 + parent: 2 + - uid: 3407 + components: + - type: Transform + pos: -9.5,21.5 + parent: 2 + - uid: 3408 + components: + - type: Transform + pos: -6.5,20.5 + parent: 2 + - uid: 3409 + components: + - type: Transform + pos: -6.5,21.5 + parent: 2 + - uid: 3410 + components: + - type: Transform + pos: -5.5,21.5 + parent: 2 + - uid: 3411 + components: + - type: Transform + pos: -3.5,21.5 + parent: 2 + - uid: 3412 + components: + - type: Transform + pos: -2.5,21.5 + parent: 2 + - uid: 3413 + components: + - type: Transform + pos: -3.5,21.5 + parent: 2 + - uid: 3414 + components: + - type: Transform + pos: -2.5,21.5 + parent: 2 + - uid: 3415 + components: + - type: Transform + pos: -20.5,22.5 + parent: 2 + - uid: 3416 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 + - uid: 3417 + components: + - type: Transform + pos: -20.5,21.5 + parent: 2 + - uid: 3418 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 + - uid: 3419 + components: + - type: Transform + pos: -20.5,19.5 + parent: 2 + - uid: 3420 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - uid: 3421 + components: + - type: Transform + pos: -19.5,19.5 + parent: 2 + - uid: 3422 + components: + - type: Transform + pos: -18.5,19.5 + parent: 2 + - uid: 3423 + components: + - type: Transform + pos: -19.5,22.5 + parent: 2 + - uid: 3424 + components: + - type: Transform + pos: -18.5,22.5 + parent: 2 + - uid: 3425 + components: + - type: Transform + pos: -23.5,30.5 + parent: 2 + - uid: 3426 + components: + - type: Transform + pos: -23.5,31.5 + parent: 2 + - uid: 3427 + components: + - type: Transform + pos: -23.5,32.5 + parent: 2 + - uid: 3428 + components: + - type: Transform + pos: -23.5,33.5 + parent: 2 + - uid: 3429 + components: + - type: Transform + pos: -23.5,34.5 + parent: 2 + - uid: 3430 + components: + - type: Transform + pos: -23.5,35.5 + parent: 2 + - uid: 3431 + components: + - type: Transform + pos: -23.5,36.5 + parent: 2 + - uid: 3432 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 3433 + components: + - type: Transform + pos: -20.5,27.5 + parent: 2 + - uid: 3434 + components: + - type: Transform + pos: -20.5,26.5 + parent: 2 + - uid: 3435 + components: + - type: Transform + pos: -20.5,25.5 + parent: 2 + - uid: 3436 + components: + - type: Transform + pos: -19.5,25.5 + parent: 2 + - uid: 3437 + components: + - type: Transform + pos: -18.5,25.5 + parent: 2 + - uid: 3438 + components: + - type: Transform + pos: -21.5,25.5 + parent: 2 + - uid: 3439 + components: + - type: Transform + pos: -11.5,27.5 + parent: 2 + - uid: 3440 + components: + - type: Transform + pos: -11.5,26.5 + parent: 2 + - uid: 3441 + components: + - type: Transform + pos: -11.5,25.5 + parent: 2 + - uid: 3442 + components: + - type: Transform + pos: -11.5,24.5 + parent: 2 + - uid: 3443 + components: + - type: Transform + pos: -11.5,23.5 + parent: 2 + - uid: 3444 + components: + - type: Transform + pos: -2.5,29.5 + parent: 2 + - uid: 3445 + components: + - type: Transform + pos: -12.5,23.5 + parent: 2 + - uid: 3446 + components: + - type: Transform + pos: -7.5,27.5 + parent: 2 + - uid: 3447 + components: + - type: Transform + pos: -7.5,26.5 + parent: 2 + - uid: 3448 + components: + - type: Transform + pos: -7.5,25.5 + parent: 2 + - uid: 3449 + components: + - type: Transform + pos: -7.5,24.5 + parent: 2 + - uid: 3450 + components: + - type: Transform + pos: -7.5,23.5 + parent: 2 + - uid: 3451 + components: + - type: Transform + pos: -7.5,22.5 + parent: 2 + - uid: 3452 + components: + - type: Transform + pos: -9.5,23.5 + parent: 2 + - uid: 3453 + components: + - type: Transform + pos: -8.5,23.5 + parent: 2 + - uid: 3454 + components: + - type: Transform + pos: -7.5,23.5 + parent: 2 + - uid: 3455 + components: + - type: Transform + pos: -6.5,23.5 + parent: 2 + - uid: 3456 + components: + - type: Transform + pos: -5.5,23.5 + parent: 2 + - uid: 3457 + components: + - type: Transform + pos: -2.5,28.5 + parent: 2 + - uid: 3458 + components: + - type: Transform + pos: -2.5,27.5 + parent: 2 + - uid: 3459 + components: + - type: Transform + pos: -2.5,26.5 + parent: 2 + - uid: 3460 + components: + - type: Transform + pos: -2.5,25.5 + parent: 2 + - uid: 3461 + components: + - type: Transform + pos: -2.5,24.5 + parent: 2 + - uid: 3462 + components: + - type: Transform + pos: -2.5,23.5 + parent: 2 + - uid: 3463 + components: + - type: Transform + pos: -3.5,23.5 + parent: 2 + - uid: 3464 + components: + - type: Transform + pos: -2.5,30.5 + parent: 2 + - uid: 3465 + components: + - type: Transform + pos: -2.5,31.5 + parent: 2 + - uid: 3466 + components: + - type: Transform + pos: -2.5,32.5 + parent: 2 + - uid: 3467 + components: + - type: Transform + pos: -2.5,33.5 + parent: 2 + - uid: 3468 + components: + - type: Transform + pos: -2.5,34.5 + parent: 2 + - uid: 3469 + components: + - type: Transform + pos: -2.5,35.5 + parent: 2 + - uid: 3470 + components: + - type: Transform + pos: -2.5,36.5 + parent: 2 + - uid: 3471 + components: + - type: Transform + pos: -2.5,37.5 + parent: 2 + - uid: 3472 + components: + - type: Transform + pos: -2.5,38.5 + parent: 2 + - uid: 3473 + components: + - type: Transform + pos: -2.5,39.5 + parent: 2 + - uid: 3474 + components: + - type: Transform + pos: -3.5,39.5 + parent: 2 + - uid: 3475 + components: + - type: Transform + pos: -4.5,39.5 + parent: 2 + - uid: 3476 + components: + - type: Transform + pos: -5.5,39.5 + parent: 2 + - uid: 3477 + components: + - type: Transform + pos: -6.5,39.5 + parent: 2 + - uid: 3478 + components: + - type: Transform + pos: -6.5,38.5 + parent: 2 + - uid: 3479 + components: + - type: Transform + pos: -7.5,38.5 + parent: 2 + - uid: 3480 + components: + - type: Transform + pos: -6.5,37.5 + parent: 2 + - uid: 3481 + components: + - type: Transform + pos: -5.5,37.5 + parent: 2 + - uid: 3482 + components: + - type: Transform + pos: -4.5,37.5 + parent: 2 + - uid: 3483 + components: + - type: Transform + pos: -3.5,37.5 + parent: 2 + - uid: 3484 + components: + - type: Transform + pos: -2.5,37.5 + parent: 2 + - uid: 3485 + components: + - type: Transform + pos: -19.5,37.5 + parent: 2 + - uid: 3486 + components: + - type: Transform + pos: -19.5,36.5 + parent: 2 + - uid: 3487 + components: + - type: Transform + pos: -19.5,35.5 + parent: 2 + - uid: 3488 + components: + - type: Transform + pos: -19.5,34.5 + parent: 2 + - uid: 3489 + components: + - type: Transform + pos: -19.5,33.5 + parent: 2 + - uid: 3490 + components: + - type: Transform + pos: -19.5,32.5 + parent: 2 + - uid: 3491 + components: + - type: Transform + pos: -19.5,31.5 + parent: 2 + - uid: 3492 + components: + - type: Transform + pos: -19.5,30.5 + parent: 2 + - uid: 3493 + components: + - type: Transform + pos: -18.5,32.5 + parent: 2 + - uid: 3494 + components: + - type: Transform + pos: -17.5,32.5 + parent: 2 + - uid: 3495 + components: + - type: Transform + pos: -15.5,32.5 + parent: 2 + - uid: 3496 + components: + - type: Transform + pos: -16.5,32.5 + parent: 2 + - uid: 3497 + components: + - type: Transform + pos: -16.5,33.5 + parent: 2 + - uid: 3498 + components: + - type: Transform + pos: -16.5,34.5 + parent: 2 + - uid: 3499 + components: + - type: Transform + pos: -16.5,35.5 + parent: 2 + - uid: 3500 + components: + - type: Transform + pos: -16.5,36.5 + parent: 2 + - uid: 3501 + components: + - type: Transform + pos: -16.5,37.5 + parent: 2 + - uid: 3502 + components: + - type: Transform + pos: -16.5,38.5 + parent: 2 + - uid: 3503 + components: + - type: Transform + pos: -16.5,39.5 + parent: 2 + - uid: 3504 + components: + - type: Transform + pos: -18.5,39.5 + parent: 2 + - uid: 3505 + components: + - type: Transform + pos: -17.5,39.5 + parent: 2 + - uid: 3506 + components: + - type: Transform + pos: -16.5,39.5 + parent: 2 + - uid: 3507 + components: + - type: Transform + pos: -15.5,39.5 + parent: 2 + - uid: 3508 + components: + - type: Transform + pos: -14.5,39.5 + parent: 2 + - uid: 3509 + components: + - type: Transform + pos: -13.5,39.5 + parent: 2 + - uid: 3510 + components: + - type: Transform + pos: -12.5,39.5 + parent: 2 + - uid: 3511 + components: + - type: Transform + pos: -11.5,39.5 + parent: 2 + - uid: 3512 + components: + - type: Transform + pos: -14.5,32.5 + parent: 2 + - uid: 3513 + components: + - type: Transform + pos: -13.5,32.5 + parent: 2 + - uid: 3514 + components: + - type: Transform + pos: -12.5,32.5 + parent: 2 + - uid: 3515 + components: + - type: Transform + pos: -11.5,32.5 + parent: 2 + - uid: 3516 + components: + - type: Transform + pos: -10.5,32.5 + parent: 2 + - uid: 3517 + components: + - type: Transform + pos: -9.5,32.5 + parent: 2 + - uid: 3518 + components: + - type: Transform + pos: -9.5,33.5 + parent: 2 + - uid: 3519 + components: + - type: Transform + pos: -8.5,33.5 + parent: 2 + - uid: 3520 + components: + - type: Transform + pos: -7.5,33.5 + parent: 2 + - uid: 3521 + components: + - type: Transform + pos: -6.5,33.5 + parent: 2 + - uid: 3522 + components: + - type: Transform + pos: -12.5,31.5 + parent: 2 + - uid: 3523 + components: + - type: Transform + pos: -12.5,31.5 + parent: 2 + - uid: 3524 + components: + - type: Transform + pos: -12.5,32.5 + parent: 2 + - uid: 3525 + components: + - type: Transform + pos: -12.5,33.5 + parent: 2 + - uid: 3526 + components: + - type: Transform + pos: -12.5,34.5 + parent: 2 + - uid: 3527 + components: + - type: Transform + pos: -12.5,35.5 + parent: 2 + - uid: 3528 + components: + - type: Transform + pos: -12.5,36.5 + parent: 2 + - uid: 3529 + components: + - type: Transform + pos: -9.5,32.5 + parent: 2 + - uid: 3530 + components: + - type: Transform + pos: -9.5,33.5 + parent: 2 + - uid: 3531 + components: + - type: Transform + pos: -9.5,34.5 + parent: 2 + - uid: 3532 + components: + - type: Transform + pos: -9.5,35.5 + parent: 2 + - uid: 3533 + components: + - type: Transform + pos: -9.5,36.5 + parent: 2 + - uid: 3534 + components: + - type: Transform + pos: -9.5,37.5 + parent: 2 + - uid: 3535 + components: + - type: Transform + pos: -9.5,38.5 + parent: 2 + - uid: 3536 + components: + - type: Transform + pos: -9.5,39.5 + parent: 2 + - uid: 3537 + components: + - type: Transform + pos: -9.5,40.5 + parent: 2 + - uid: 3538 + components: + - type: Transform + pos: -9.5,41.5 + parent: 2 + - uid: 3539 + components: + - type: Transform + pos: -9.5,42.5 + parent: 2 + - uid: 3540 + components: + - type: Transform + pos: -9.5,42.5 + parent: 2 + - uid: 3541 + components: + - type: Transform + pos: -9.5,43.5 + parent: 2 + - uid: 3542 + components: + - type: Transform + pos: -9.5,43.5 + parent: 2 + - uid: 3543 + components: + - type: Transform + pos: -10.5,43.5 + parent: 2 + - uid: 3544 + components: + - type: Transform + pos: -11.5,43.5 + parent: 2 + - uid: 3545 + components: + - type: Transform + pos: -12.5,43.5 + parent: 2 + - uid: 3546 + components: + - type: Transform + pos: -13.5,43.5 + parent: 2 + - uid: 3547 + components: + - type: Transform + pos: -30.5,40.5 + parent: 2 + - uid: 3548 + components: + - type: Transform + pos: -30.5,39.5 + parent: 2 + - uid: 3549 + components: + - type: Transform + pos: -30.5,38.5 + parent: 2 + - uid: 3550 + components: + - type: Transform + pos: -30.5,37.5 + parent: 2 + - uid: 3551 + components: + - type: Transform + pos: -30.5,41.5 + parent: 2 + - uid: 3552 + components: + - type: Transform + pos: -29.5,41.5 + parent: 2 + - uid: 3553 + components: + - type: Transform + pos: -29.5,38.5 + parent: 2 + - uid: 3554 + components: + - type: Transform + pos: -30.5,36.5 + parent: 2 + - uid: 3555 + components: + - type: Transform + pos: -30.5,35.5 + parent: 2 + - uid: 3556 + components: + - type: Transform + pos: -30.5,34.5 + parent: 2 + - uid: 3557 + components: + - type: Transform + pos: -29.5,34.5 + parent: 2 + - uid: 3558 + components: + - type: Transform + pos: -28.5,34.5 + parent: 2 + - uid: 3559 + components: + - type: Transform + pos: -27.5,34.5 + parent: 2 + - uid: 3560 + components: + - type: Transform + pos: -26.5,34.5 + parent: 2 + - uid: 3561 + components: + - type: Transform + pos: -29.5,33.5 + parent: 2 + - uid: 3562 + components: + - type: Transform + pos: -25.5,34.5 + parent: 2 + - uid: 3563 + components: + - type: Transform + pos: -27.5,35.5 + parent: 2 + - uid: 3564 + components: + - type: Transform + pos: -27.5,36.5 + parent: 2 + - uid: 3565 + components: + - type: Transform + pos: -26.5,36.5 + parent: 2 + - uid: 3566 + components: + - type: Transform + pos: -25.5,36.5 + parent: 2 + - uid: 3567 + components: + - type: Transform + pos: -10.5,11.5 + parent: 2 + - uid: 3568 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 + - uid: 3569 + components: + - type: Transform + pos: -21.5,41.5 + parent: 2 + - uid: 3570 + components: + - type: Transform + pos: -20.5,41.5 + parent: 2 + - uid: 3571 + components: + - type: Transform + pos: -22.5,41.5 + parent: 2 + - uid: 3572 + components: + - type: Transform + pos: -23.5,41.5 + parent: 2 + - uid: 3573 + components: + - type: Transform + pos: -24.5,41.5 + parent: 2 + - uid: 3574 + components: + - type: Transform + pos: -25.5,41.5 + parent: 2 + - uid: 3575 + components: + - type: Transform + pos: -36.5,25.5 + parent: 2 + - uid: 3576 + components: + - type: Transform + pos: -25.5,40.5 + parent: 2 + - uid: 3577 + components: + - type: Transform + pos: -25.5,39.5 + parent: 2 + - uid: 3578 + components: + - type: Transform + pos: -25.5,38.5 + parent: 2 + - uid: 3579 + components: + - type: Transform + pos: -25.5,38.5 + parent: 2 + - uid: 3580 + components: + - type: Transform + pos: -21.5,40.5 + parent: 2 + - uid: 3581 + components: + - type: Transform + pos: -21.5,39.5 + parent: 2 + - uid: 3582 + components: + - type: Transform + pos: -21.5,38.5 + parent: 2 + - uid: 3583 + components: + - type: Transform + pos: -23.5,38.5 + parent: 2 + - uid: 3584 + components: + - type: Transform + pos: -23.5,39.5 + parent: 2 + - uid: 3585 + components: + - type: Transform + pos: -23.5,40.5 + parent: 2 + - uid: 3586 + components: + - type: Transform + pos: -8.5,10.5 + parent: 2 + - uid: 3587 + components: + - type: Transform + pos: -23.5,42.5 + parent: 2 + - uid: 3588 + components: + - type: Transform + pos: -23.5,43.5 + parent: 2 + - uid: 3589 + components: + - type: Transform + pos: -26.5,44.5 + parent: 2 + - uid: 3590 + components: + - type: Transform + pos: -25.5,44.5 + parent: 2 + - uid: 3591 + components: + - type: Transform + pos: -24.5,44.5 + parent: 2 + - uid: 3592 + components: + - type: Transform + pos: -23.5,44.5 + parent: 2 + - uid: 3593 + components: + - type: Transform + pos: -22.5,44.5 + parent: 2 + - uid: 3594 + components: + - type: Transform + pos: -21.5,44.5 + parent: 2 + - uid: 3595 + components: + - type: Transform + pos: -20.5,44.5 + parent: 2 + - uid: 3596 + components: + - type: Transform + pos: -20.5,43.5 + parent: 2 + - uid: 3597 + components: + - type: Transform + pos: -20.5,45.5 + parent: 2 + - uid: 3598 + components: + - type: Transform + pos: -21.5,45.5 + parent: 2 + - uid: 3599 + components: + - type: Transform + pos: -21.5,46.5 + parent: 2 + - uid: 3600 + components: + - type: Transform + pos: -21.5,46.5 + parent: 2 + - uid: 3601 + components: + - type: Transform + pos: -22.5,46.5 + parent: 2 + - uid: 3602 + components: + - type: Transform + pos: -23.5,46.5 + parent: 2 + - uid: 3603 + components: + - type: Transform + pos: -24.5,46.5 + parent: 2 + - uid: 3604 + components: + - type: Transform + pos: -36.5,18.5 + parent: 2 + - uid: 3605 + components: + - type: Transform + pos: -36.5,19.5 + parent: 2 + - uid: 3606 + components: + - type: Transform + pos: -36.5,20.5 + parent: 2 + - uid: 3607 + components: + - type: Transform + pos: -36.5,21.5 + parent: 2 + - uid: 3608 + components: + - type: Transform + pos: -36.5,22.5 + parent: 2 + - uid: 3609 + components: + - type: Transform + pos: -36.5,23.5 + parent: 2 + - uid: 3610 + components: + - type: Transform + pos: -36.5,24.5 + parent: 2 + - uid: 3611 + components: + - type: Transform + pos: -35.5,24.5 + parent: 2 + - uid: 3612 + components: + - type: Transform + pos: -34.5,24.5 + parent: 2 + - uid: 3613 + components: + - type: Transform + pos: -33.5,24.5 + parent: 2 + - uid: 3614 + components: + - type: Transform + pos: -32.5,24.5 + parent: 2 + - uid: 3615 + components: + - type: Transform + pos: -31.5,24.5 + parent: 2 + - uid: 3616 + components: + - type: Transform + pos: -30.5,24.5 + parent: 2 + - uid: 3617 + components: + - type: Transform + pos: -29.5,24.5 + parent: 2 + - uid: 3618 + components: + - type: Transform + pos: -30.5,25.5 + parent: 2 + - uid: 3619 + components: + - type: Transform + pos: -36.5,20.5 + parent: 2 + - uid: 3620 + components: + - type: Transform + pos: -37.5,20.5 + parent: 2 + - uid: 3621 + components: + - type: Transform + pos: -38.5,20.5 + parent: 2 + - uid: 3622 + components: + - type: Transform + pos: -39.5,20.5 + parent: 2 + - uid: 3623 + components: + - type: Transform + pos: -40.5,20.5 + parent: 2 + - uid: 3624 + components: + - type: Transform + pos: -41.5,20.5 + parent: 2 + - uid: 3625 + components: + - type: Transform + pos: -42.5,20.5 + parent: 2 + - uid: 3626 + components: + - type: Transform + pos: -43.5,20.5 + parent: 2 + - uid: 3627 + components: + - type: Transform + pos: -39.5,21.5 + parent: 2 + - uid: 3628 + components: + - type: Transform + pos: -39.5,22.5 + parent: 2 + - uid: 3629 + components: + - type: Transform + pos: -40.5,22.5 + parent: 2 + - uid: 3630 + components: + - type: Transform + pos: -41.5,22.5 + parent: 2 + - uid: 3631 + components: + - type: Transform + pos: -42.5,22.5 + parent: 2 + - uid: 3632 + components: + - type: Transform + pos: -36.5,26.5 + parent: 2 + - uid: 3633 + components: + - type: Transform + pos: -36.5,27.5 + parent: 2 + - uid: 3634 + components: + - type: Transform + pos: -36.5,28.5 + parent: 2 + - uid: 3635 + components: + - type: Transform + pos: -36.5,29.5 + parent: 2 + - uid: 3636 + components: + - type: Transform + pos: -36.5,26.5 + parent: 2 + - uid: 3637 + components: + - type: Transform + pos: -37.5,26.5 + parent: 2 + - uid: 3638 + components: + - type: Transform + pos: -38.5,26.5 + parent: 2 + - uid: 3639 + components: + - type: Transform + pos: -39.5,26.5 + parent: 2 + - uid: 3640 + components: + - type: Transform + pos: -40.5,26.5 + parent: 2 + - uid: 3641 + components: + - type: Transform + pos: -41.5,26.5 + parent: 2 + - uid: 3642 + components: + - type: Transform + pos: -42.5,26.5 + parent: 2 + - uid: 3643 + components: + - type: Transform + pos: -40.5,25.5 + parent: 2 + - uid: 3644 + components: + - type: Transform + pos: -40.5,24.5 + parent: 2 + - uid: 3645 + components: + - type: Transform + pos: -40.5,23.5 + parent: 2 + - uid: 3646 + components: + - type: Transform + pos: -40.5,25.5 + parent: 2 + - uid: 3647 + components: + - type: Transform + pos: -37.5,29.5 + parent: 2 + - uid: 3648 + components: + - type: Transform + pos: -38.5,29.5 + parent: 2 + - uid: 3649 + components: + - type: Transform + pos: -39.5,29.5 + parent: 2 + - uid: 3650 + components: + - type: Transform + pos: -40.5,29.5 + parent: 2 + - uid: 3651 + components: + - type: Transform + pos: -41.5,29.5 + parent: 2 + - uid: 3652 + components: + - type: Transform + pos: -42.5,29.5 + parent: 2 + - uid: 3653 + components: + - type: Transform + pos: -39.5,30.5 + parent: 2 + - uid: 3654 + components: + - type: Transform + pos: -39.5,31.5 + parent: 2 + - uid: 3655 + components: + - type: Transform + pos: -39.5,32.5 + parent: 2 + - uid: 3656 + components: + - type: Transform + pos: -39.5,33.5 + parent: 2 + - uid: 3657 + components: + - type: Transform + pos: -39.5,34.5 + parent: 2 + - uid: 3658 + components: + - type: Transform + pos: -39.5,35.5 + parent: 2 + - uid: 3659 + components: + - type: Transform + pos: -39.5,36.5 + parent: 2 + - uid: 3660 + components: + - type: Transform + pos: -42.5,35.5 + parent: 2 + - uid: 3661 + components: + - type: Transform + pos: -41.5,35.5 + parent: 2 + - uid: 3662 + components: + - type: Transform + pos: -40.5,35.5 + parent: 2 + - uid: 3663 + components: + - type: Transform + pos: -39.5,35.5 + parent: 2 + - uid: 3664 + components: + - type: Transform + pos: -38.5,35.5 + parent: 2 + - uid: 3665 + components: + - type: Transform + pos: -37.5,35.5 + parent: 2 + - uid: 3666 + components: + - type: Transform + pos: -36.5,35.5 + parent: 2 + - uid: 3667 + components: + - type: Transform + pos: -35.5,35.5 + parent: 2 + - uid: 3668 + components: + - type: Transform + pos: -34.5,35.5 + parent: 2 + - uid: 3669 + components: + - type: Transform + pos: -33.5,35.5 + parent: 2 + - uid: 3670 + components: + - type: Transform + pos: -32.5,35.5 + parent: 2 + - uid: 3671 + components: + - type: Transform + pos: -42.5,32.5 + parent: 2 + - uid: 3672 + components: + - type: Transform + pos: -41.5,32.5 + parent: 2 + - uid: 3673 + components: + - type: Transform + pos: -40.5,32.5 + parent: 2 + - uid: 3674 + components: + - type: Transform + pos: -39.5,32.5 + parent: 2 + - uid: 3675 + components: + - type: Transform + pos: -38.5,32.5 + parent: 2 + - uid: 3676 + components: + - type: Transform + pos: -37.5,32.5 + parent: 2 + - uid: 3677 + components: + - type: Transform + pos: -36.5,32.5 + parent: 2 + - uid: 3678 + components: + - type: Transform + pos: -35.5,32.5 + parent: 2 + - uid: 3679 + components: + - type: Transform + pos: -34.5,32.5 + parent: 2 + - uid: 3680 + components: + - type: Transform + pos: -33.5,32.5 + parent: 2 + - uid: 3681 + components: + - type: Transform + pos: -32.5,32.5 + parent: 2 + - uid: 3682 + components: + - type: Transform + pos: -42.5,36.5 + parent: 2 + - uid: 3683 + components: + - type: Transform + pos: -36.5,36.5 + parent: 2 + - uid: 3684 + components: + - type: Transform + pos: -36.5,37.5 + parent: 2 + - uid: 3685 + components: + - type: Transform + pos: -36.5,38.5 + parent: 2 + - uid: 3686 + components: + - type: Transform + pos: -36.5,38.5 + parent: 2 + - uid: 3687 + components: + - type: Transform + pos: -35.5,38.5 + parent: 2 + - uid: 3688 + components: + - type: Transform + pos: -34.5,38.5 + parent: 2 + - uid: 3689 + components: + - type: Transform + pos: -33.5,38.5 + parent: 2 + - uid: 3690 + components: + - type: Transform + pos: -32.5,38.5 + parent: 2 + - uid: 3691 + components: + - type: Transform + pos: -23.5,27.5 + parent: 2 + - uid: 3692 + components: + - type: Transform + pos: -23.5,26.5 + parent: 2 + - uid: 3693 + components: + - type: Transform + pos: -9.5,10.5 + parent: 2 + - uid: 3694 + components: + - type: Transform + pos: -10.5,10.5 + parent: 2 + - uid: 3695 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - uid: 3696 + components: + - type: Transform + pos: -11.5,9.5 + parent: 2 + - uid: 3697 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 + - uid: 3698 + components: + - type: Transform + pos: -10.5,8.5 + parent: 2 + - uid: 3699 + components: + - type: Transform + pos: -9.5,8.5 + parent: 2 + - uid: 3700 + components: + - type: Transform + pos: -8.5,8.5 + parent: 2 + - uid: 3701 + components: + - type: Transform + pos: -13.5,9.5 + parent: 2 + - uid: 3702 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - uid: 3703 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 + - uid: 3704 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 + - uid: 3705 + components: + - type: Transform + pos: -14.5,11.5 + parent: 2 + - uid: 3706 + components: + - type: Transform + pos: -15.5,11.5 + parent: 2 + - uid: 3707 + components: + - type: Transform + pos: -16.5,11.5 + parent: 2 + - uid: 3708 + components: + - type: Transform + pos: -17.5,11.5 + parent: 2 + - uid: 3709 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - uid: 3710 + components: + - type: Transform + pos: -11.5,12.5 + parent: 2 + - uid: 3711 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 + - uid: 3712 + components: + - type: Transform + pos: -11.5,14.5 + parent: 2 + - uid: 3713 + components: + - type: Transform + pos: -11.5,15.5 + parent: 2 + - uid: 3714 + components: + - type: Transform + pos: -14.5,15.5 + parent: 2 + - uid: 3715 + components: + - type: Transform + pos: -13.5,15.5 + parent: 2 + - uid: 3716 + components: + - type: Transform + pos: -12.5,15.5 + parent: 2 + - uid: 3717 + components: + - type: Transform + pos: -11.5,15.5 + parent: 2 + - uid: 3718 + components: + - type: Transform + pos: -10.5,15.5 + parent: 2 + - uid: 3719 + components: + - type: Transform + pos: -9.5,15.5 + parent: 2 + - uid: 3720 + components: + - type: Transform + pos: -8.5,15.5 + parent: 2 + - uid: 3721 + components: + - type: Transform + pos: -7.5,15.5 + parent: 2 + - uid: 3722 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 + - uid: 3723 + components: + - type: Transform + pos: -5.5,15.5 + parent: 2 + - uid: 3724 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 3725 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 + - uid: 3726 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 3727 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 3728 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 3729 + components: + - type: Transform + pos: -3.5,13.5 + parent: 2 + - uid: 3730 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - uid: 3731 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 3732 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - uid: 3733 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 3734 + components: + - type: Transform + pos: -20.5,11.5 + parent: 2 + - uid: 3735 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - uid: 3736 + components: + - type: Transform + pos: -20.5,9.5 + parent: 2 + - uid: 3737 + components: + - type: Transform + pos: -20.5,8.5 + parent: 2 + - uid: 3738 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 + - uid: 3739 + components: + - type: Transform + pos: -20.5,6.5 + parent: 2 + - uid: 3740 + components: + - type: Transform + pos: -20.5,5.5 + parent: 2 + - uid: 3741 + components: + - type: Transform + pos: -19.5,6.5 + parent: 2 + - uid: 3742 + components: + - type: Transform + pos: -18.5,6.5 + parent: 2 + - uid: 3743 + components: + - type: Transform + pos: -17.5,6.5 + parent: 2 + - uid: 3744 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 3745 + components: + - type: Transform + pos: -21.5,11.5 + parent: 2 + - uid: 3746 + components: + - type: Transform + pos: -22.5,11.5 + parent: 2 + - uid: 3747 + components: + - type: Transform + pos: 35.5,-38.5 + parent: 2 + - uid: 3748 + components: + - type: Transform + pos: 38.5,-38.5 + parent: 2 + - uid: 3749 + components: + - type: Transform + pos: 39.5,-38.5 + parent: 2 + - uid: 3750 + components: + - type: Transform + pos: 40.5,-38.5 + parent: 2 + - uid: 3751 + components: + - type: Transform + pos: 41.5,-38.5 + parent: 2 + - uid: 3752 + components: + - type: Transform + pos: 42.5,-38.5 + parent: 2 + - uid: 3753 + components: + - type: Transform + pos: 43.5,-38.5 + parent: 2 + - uid: 3754 + components: + - type: Transform + pos: 44.5,-38.5 + parent: 2 + - uid: 3755 + components: + - type: Transform + pos: 45.5,-38.5 + parent: 2 + - uid: 3756 + components: + - type: Transform + pos: 46.5,-38.5 + parent: 2 + - uid: 3757 + components: + - type: Transform + pos: 40.5,-39.5 + parent: 2 + - uid: 3758 + components: + - type: Transform + pos: 46.5,-39.5 + parent: 2 + - uid: 3759 + components: + - type: Transform + pos: 46.5,-37.5 + parent: 2 + - uid: 3760 + components: + - type: Transform + pos: 39.5,-37.5 + parent: 2 + - uid: 3761 + components: + - type: Transform + pos: 44.5,5.5 + parent: 2 + - uid: 3762 + components: + - type: Transform + pos: 43.5,5.5 + parent: 2 + - uid: 3763 + components: + - type: Transform + pos: 42.5,5.5 + parent: 2 + - uid: 3764 + components: + - type: Transform + pos: 41.5,5.5 + parent: 2 + - uid: 3765 + components: + - type: Transform + pos: 40.5,5.5 + parent: 2 + - uid: 3766 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2 + - uid: 3767 + components: + - type: Transform + pos: 38.5,5.5 + parent: 2 + - uid: 3768 + components: + - type: Transform + pos: 37.5,5.5 + parent: 2 + - uid: 3769 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 2 + - uid: 3770 + components: + - type: Transform + pos: 39.5,0.5 + parent: 2 + - uid: 3771 + components: + - type: Transform + pos: 39.5,1.5 + parent: 2 + - uid: 3772 + components: + - type: Transform + pos: 39.5,2.5 + parent: 2 + - uid: 3773 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - uid: 3774 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 3775 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2 + - uid: 3776 + components: + - type: Transform + pos: 40.5,-0.5 + parent: 2 + - uid: 3777 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 2 + - uid: 3778 + components: + - type: Transform + pos: 42.5,-0.5 + parent: 2 + - uid: 3779 + components: + - type: Transform + pos: 43.5,-0.5 + parent: 2 + - uid: 3780 + components: + - type: Transform + pos: 44.5,-0.5 + parent: 2 + - uid: 3781 + components: + - type: Transform + pos: 40.5,-0.5 + parent: 2 + - uid: 3782 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 2 + - uid: 3783 + components: + - type: Transform + pos: 42.5,-0.5 + parent: 2 + - uid: 3784 + components: + - type: Transform + pos: 43.5,-0.5 + parent: 2 + - uid: 3785 + components: + - type: Transform + pos: 44.5,-0.5 + parent: 2 + - uid: 3786 + components: + - type: Transform + pos: 42.5,6.5 + parent: 2 + - uid: 3787 + components: + - type: Transform + pos: 42.5,7.5 + parent: 2 + - uid: 3788 + components: + - type: Transform + pos: 42.5,8.5 + parent: 2 + - uid: 3789 + components: + - type: Transform + pos: 42.5,9.5 + parent: 2 + - uid: 3790 + components: + - type: Transform + pos: 41.5,9.5 + parent: 2 + - uid: 3791 + components: + - type: Transform + pos: 41.5,10.5 + parent: 2 + - uid: 3792 + components: + - type: Transform + pos: 41.5,11.5 + parent: 2 + - uid: 3793 + components: + - type: Transform + pos: 41.5,12.5 + parent: 2 + - uid: 3794 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - uid: 3795 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 + - uid: 3796 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - uid: 3797 + components: + - type: Transform + pos: 40.5,9.5 + parent: 2 + - uid: 3798 + components: + - type: Transform + pos: 39.5,9.5 + parent: 2 + - uid: 3799 + components: + - type: Transform + pos: 38.5,9.5 + parent: 2 + - uid: 3800 + components: + - type: Transform + pos: 37.5,9.5 + parent: 2 + - uid: 3801 + components: + - type: Transform + pos: 37.5,6.5 + parent: 2 + - uid: 3802 + components: + - type: Transform + pos: 37.5,15.5 + parent: 2 + - uid: 3803 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - uid: 3804 + components: + - type: Transform + pos: 41.5,26.5 + parent: 2 + - uid: 3805 + components: + - type: Transform + pos: 41.5,27.5 + parent: 2 + - uid: 3806 + components: + - type: Transform + pos: 41.5,28.5 + parent: 2 + - uid: 3807 + components: + - type: Transform + pos: 41.5,28.5 + parent: 2 + - uid: 3808 + components: + - type: Transform + pos: 40.5,28.5 + parent: 2 + - uid: 3809 + components: + - type: Transform + pos: 39.5,28.5 + parent: 2 + - uid: 3810 + components: + - type: Transform + pos: 38.5,28.5 + parent: 2 + - uid: 3811 + components: + - type: Transform + pos: 37.5,28.5 + parent: 2 + - uid: 3812 + components: + - type: Transform + pos: 36.5,28.5 + parent: 2 + - uid: 3813 + components: + - type: Transform + pos: 35.5,28.5 + parent: 2 + - uid: 3814 + components: + - type: Transform + pos: 34.5,28.5 + parent: 2 + - uid: 3815 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - uid: 3816 + components: + - type: Transform + pos: 32.5,28.5 + parent: 2 + - uid: 3817 + components: + - type: Transform + pos: 31.5,28.5 + parent: 2 + - uid: 3818 + components: + - type: Transform + pos: 30.5,28.5 + parent: 2 + - uid: 3819 + components: + - type: Transform + pos: 29.5,28.5 + parent: 2 + - uid: 3820 + components: + - type: Transform + pos: 29.5,27.5 + parent: 2 + - uid: 3821 + components: + - type: Transform + pos: 38.5,27.5 + parent: 2 + - uid: 3822 + components: + - type: Transform + pos: 38.5,26.5 + parent: 2 + - uid: 3823 + components: + - type: Transform + pos: 38.5,25.5 + parent: 2 + - uid: 3824 + components: + - type: Transform + pos: 38.5,24.5 + parent: 2 + - uid: 3825 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 3826 + components: + - type: Transform + pos: 38.5,22.5 + parent: 2 + - uid: 3827 + components: + - type: Transform + pos: 38.5,21.5 + parent: 2 + - uid: 3828 + components: + - type: Transform + pos: 37.5,22.5 + parent: 2 + - uid: 3829 + components: + - type: Transform + pos: 42.5,28.5 + parent: 2 + - uid: 3830 + components: + - type: Transform + pos: 43.5,28.5 + parent: 2 + - uid: 3831 + components: + - type: Transform + pos: 43.5,28.5 + parent: 2 + - uid: 3832 + components: + - type: Transform + pos: 43.5,29.5 + parent: 2 + - uid: 3833 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - uid: 3834 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 3835 + components: + - type: Transform + pos: 43.5,32.5 + parent: 2 + - uid: 3836 + components: + - type: Transform + pos: 43.5,33.5 + parent: 2 + - uid: 3837 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - uid: 3838 + components: + - type: Transform + pos: 43.5,35.5 + parent: 2 + - uid: 3839 + components: + - type: Transform + pos: 43.5,36.5 + parent: 2 + - uid: 3840 + components: + - type: Transform + pos: 43.5,37.5 + parent: 2 + - uid: 3841 + components: + - type: Transform + pos: 43.5,38.5 + parent: 2 + - uid: 3842 + components: + - type: Transform + pos: 43.5,39.5 + parent: 2 + - uid: 3843 + components: + - type: Transform + pos: 43.5,40.5 + parent: 2 + - uid: 3844 + components: + - type: Transform + pos: 43.5,41.5 + parent: 2 + - uid: 3845 + components: + - type: Transform + pos: 43.5,42.5 + parent: 2 + - uid: 3846 + components: + - type: Transform + pos: 43.5,43.5 + parent: 2 + - uid: 3847 + components: + - type: Transform + pos: 43.5,44.5 + parent: 2 + - uid: 3848 + components: + - type: Transform + pos: 43.5,45.5 + parent: 2 + - uid: 3849 + components: + - type: Transform + pos: 43.5,46.5 + parent: 2 + - uid: 3850 + components: + - type: Transform + pos: 43.5,47.5 + parent: 2 + - uid: 3851 + components: + - type: Transform + pos: 43.5,48.5 + parent: 2 + - uid: 3852 + components: + - type: Transform + pos: 42.5,35.5 + parent: 2 + - uid: 3853 + components: + - type: Transform + pos: 41.5,35.5 + parent: 2 + - uid: 3854 + components: + - type: Transform + pos: 40.5,35.5 + parent: 2 + - uid: 3855 + components: + - type: Transform + pos: 39.5,35.5 + parent: 2 + - uid: 3856 + components: + - type: Transform + pos: 38.5,35.5 + parent: 2 + - uid: 3857 + components: + - type: Transform + pos: 37.5,35.5 + parent: 2 + - uid: 3858 + components: + - type: Transform + pos: 36.5,35.5 + parent: 2 + - uid: 3859 + components: + - type: Transform + pos: 35.5,35.5 + parent: 2 + - uid: 3860 + components: + - type: Transform + pos: 34.5,35.5 + parent: 2 + - uid: 3861 + components: + - type: Transform + pos: 33.5,35.5 + parent: 2 + - uid: 3862 + components: + - type: Transform + pos: 32.5,35.5 + parent: 2 + - uid: 3863 + components: + - type: Transform + pos: 33.5,32.5 + parent: 2 + - uid: 3864 + components: + - type: Transform + pos: 33.5,33.5 + parent: 2 + - uid: 3865 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 + - uid: 3866 + components: + - type: Transform + pos: 33.5,35.5 + parent: 2 + - uid: 3867 + components: + - type: Transform + pos: 33.5,36.5 + parent: 2 + - uid: 3868 + components: + - type: Transform + pos: 33.5,37.5 + parent: 2 + - uid: 3869 + components: + - type: Transform + pos: 33.5,38.5 + parent: 2 + - uid: 3870 + components: + - type: Transform + pos: 33.5,39.5 + parent: 2 + - uid: 3871 + components: + - type: Transform + pos: 33.5,40.5 + parent: 2 + - uid: 3872 + components: + - type: Transform + pos: 33.5,41.5 + parent: 2 + - uid: 3873 + components: + - type: Transform + pos: 38.5,32.5 + parent: 2 + - uid: 3874 + components: + - type: Transform + pos: 38.5,33.5 + parent: 2 + - uid: 3875 + components: + - type: Transform + pos: 38.5,34.5 + parent: 2 + - uid: 3876 + components: + - type: Transform + pos: 38.5,35.5 + parent: 2 + - uid: 3877 + components: + - type: Transform + pos: 38.5,36.5 + parent: 2 + - uid: 3878 + components: + - type: Transform + pos: 38.5,37.5 + parent: 2 + - uid: 3879 + components: + - type: Transform + pos: 38.5,38.5 + parent: 2 + - uid: 3880 + components: + - type: Transform + pos: 38.5,39.5 + parent: 2 + - uid: 3881 + components: + - type: Transform + pos: 38.5,40.5 + parent: 2 + - uid: 3882 + components: + - type: Transform + pos: 38.5,41.5 + parent: 2 + - uid: 3883 + components: + - type: Transform + pos: 18.5,37.5 + parent: 2 + - uid: 3884 + components: + - type: Transform + pos: 19.5,37.5 + parent: 2 + - uid: 3885 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 3886 + components: + - type: Transform + pos: 27.5,34.5 + parent: 2 + - uid: 3887 + components: + - type: Transform + pos: 20.5,36.5 + parent: 2 + - uid: 3888 + components: + - type: Transform + pos: 20.5,34.5 + parent: 2 + - uid: 3889 + components: + - type: Transform + pos: 20.5,33.5 + parent: 2 + - uid: 3890 + components: + - type: Transform + pos: 20.5,32.5 + parent: 2 + - uid: 3891 + components: + - type: Transform + pos: 20.5,31.5 + parent: 2 + - uid: 3892 + components: + - type: Transform + pos: 20.5,30.5 + parent: 2 + - uid: 3893 + components: + - type: Transform + pos: 20.5,29.5 + parent: 2 + - uid: 3894 + components: + - type: Transform + pos: 17.5,31.5 + parent: 2 + - uid: 3895 + components: + - type: Transform + pos: 18.5,31.5 + parent: 2 + - uid: 3896 + components: + - type: Transform + pos: 19.5,31.5 + parent: 2 + - uid: 3897 + components: + - type: Transform + pos: 29.5,36.5 + parent: 2 + - uid: 3898 + components: + - type: Transform + pos: 21.5,31.5 + parent: 2 + - uid: 3899 + components: + - type: Transform + pos: 22.5,31.5 + parent: 2 + - uid: 3900 + components: + - type: Transform + pos: 23.5,31.5 + parent: 2 + - uid: 3901 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 + - uid: 3902 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 + - uid: 3903 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 + - uid: 3904 + components: + - type: Transform + pos: 24.5,30.5 + parent: 2 + - uid: 3905 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 + - uid: 3906 + components: + - type: Transform + pos: 24.5,32.5 + parent: 2 + - uid: 3907 + components: + - type: Transform + pos: 24.5,33.5 + parent: 2 + - uid: 3908 + components: + - type: Transform + pos: 20.5,35.5 + parent: 2 + - uid: 3909 + components: + - type: Transform + pos: 19.5,35.5 + parent: 2 + - uid: 3910 + components: + - type: Transform + pos: 18.5,35.5 + parent: 2 + - uid: 3911 + components: + - type: Transform + pos: 17.5,35.5 + parent: 2 + - uid: 3912 + components: + - type: Transform + pos: 20.5,37.5 + parent: 2 + - uid: 3913 + components: + - type: Transform + pos: 20.5,38.5 + parent: 2 + - uid: 3914 + components: + - type: Transform + pos: 20.5,39.5 + parent: 2 + - uid: 3915 + components: + - type: Transform + pos: 19.5,39.5 + parent: 2 + - uid: 3916 + components: + - type: Transform + pos: 18.5,39.5 + parent: 2 + - uid: 3917 + components: + - type: Transform + pos: 17.5,39.5 + parent: 2 + - uid: 3918 + components: + - type: Transform + pos: 16.5,39.5 + parent: 2 + - uid: 3919 + components: + - type: Transform + pos: 17.5,38.5 + parent: 2 + - uid: 3920 + components: + - type: Transform + pos: 15.5,39.5 + parent: 2 + - uid: 3921 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - uid: 3922 + components: + - type: Transform + pos: 15.5,39.5 + parent: 2 + - uid: 3923 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 + - uid: 3924 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - uid: 3925 + components: + - type: Transform + pos: 14.5,36.5 + parent: 2 + - uid: 3926 + components: + - type: Transform + pos: 14.5,35.5 + parent: 2 + - uid: 3927 + components: + - type: Transform + pos: 15.5,40.5 + parent: 2 + - uid: 3928 + components: + - type: Transform + pos: 15.5,41.5 + parent: 2 + - uid: 3929 + components: + - type: Transform + pos: 15.5,43.5 + parent: 2 + - uid: 3930 + components: + - type: Transform + pos: 14.5,43.5 + parent: 2 + - uid: 3931 + components: + - type: Transform + pos: 13.5,43.5 + parent: 2 + - uid: 3932 + components: + - type: Transform + pos: 16.5,43.5 + parent: 2 + - uid: 3933 + components: + - type: Transform + pos: 17.5,43.5 + parent: 2 + - uid: 3934 + components: + - type: Transform + pos: 18.5,43.5 + parent: 2 + - uid: 3935 + components: + - type: Transform + pos: 19.5,43.5 + parent: 2 + - uid: 3936 + components: + - type: Transform + pos: 21.5,43.5 + parent: 2 + - uid: 3937 + components: + - type: Transform + pos: 22.5,43.5 + parent: 2 + - uid: 3938 + components: + - type: Transform + pos: 23.5,43.5 + parent: 2 + - uid: 3939 + components: + - type: Transform + pos: 20.5,42.5 + parent: 2 + - uid: 3940 + components: + - type: Transform + pos: 20.5,43.5 + parent: 2 + - uid: 3941 + components: + - type: Transform + pos: 20.5,44.5 + parent: 2 + - uid: 3942 + components: + - type: Transform + pos: 20.5,45.5 + parent: 2 + - uid: 3943 + components: + - type: Transform + pos: 20.5,46.5 + parent: 2 + - uid: 3944 + components: + - type: Transform + pos: 12.5,16.5 + parent: 2 + - uid: 3945 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 3946 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 3947 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 3948 + components: + - type: Transform + pos: 13.5,6.5 + parent: 2 + - uid: 3949 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 3950 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 3951 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 3952 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 3953 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - uid: 3954 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - uid: 3955 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - uid: 3956 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 3957 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 + - uid: 3958 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 3959 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 3960 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 3961 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 3962 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 3963 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 3964 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 3965 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - uid: 3966 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 3967 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 3968 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 + - uid: 3969 + components: + - type: Transform + pos: 10.5,26.5 + parent: 2 + - uid: 3970 + components: + - type: Transform + pos: 11.5,26.5 + parent: 2 + - uid: 3971 + components: + - type: Transform + pos: 12.5,26.5 + parent: 2 + - uid: 3972 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 + - uid: 3973 + components: + - type: Transform + pos: 14.5,26.5 + parent: 2 + - uid: 3974 + components: + - type: Transform + pos: 15.5,26.5 + parent: 2 + - uid: 3975 + components: + - type: Transform + pos: 16.5,26.5 + parent: 2 + - uid: 3976 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 3977 + components: + - type: Transform + pos: 18.5,26.5 + parent: 2 + - uid: 3978 + components: + - type: Transform + pos: 19.5,26.5 + parent: 2 + - uid: 3979 + components: + - type: Transform + pos: 20.5,26.5 + parent: 2 + - uid: 3980 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 3981 + components: + - type: Transform + pos: 22.5,26.5 + parent: 2 + - uid: 3982 + components: + - type: Transform + pos: 23.5,26.5 + parent: 2 + - uid: 3983 + components: + - type: Transform + pos: 24.5,26.5 + parent: 2 + - uid: 3984 + components: + - type: Transform + pos: 25.5,26.5 + parent: 2 + - uid: 3985 + components: + - type: Transform + pos: 26.5,26.5 + parent: 2 + - uid: 3986 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 3987 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 3988 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 + - uid: 3989 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 3990 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - uid: 3991 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - uid: 3992 + components: + - type: Transform + pos: 16.5,22.5 + parent: 2 + - uid: 3993 + components: + - type: Transform + pos: 16.5,21.5 + parent: 2 + - uid: 3994 + components: + - type: Transform + pos: 16.5,20.5 + parent: 2 + - uid: 3995 + components: + - type: Transform + pos: 16.5,20.5 + parent: 2 + - uid: 3996 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 3997 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 3998 + components: + - type: Transform + pos: 19.5,20.5 + parent: 2 + - uid: 3999 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 4000 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 + - uid: 4001 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 4002 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 4003 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 4004 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - uid: 4005 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 + - uid: 4006 + components: + - type: Transform + pos: 6.5,21.5 + parent: 2 + - uid: 4007 + components: + - type: Transform + pos: 5.5,21.5 + parent: 2 + - uid: 4008 + components: + - type: Transform + pos: 4.5,21.5 + parent: 2 + - uid: 4009 + components: + - type: Transform + pos: 7.5,22.5 + parent: 2 + - uid: 4010 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 4011 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - uid: 4012 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 4013 + components: + - type: Transform + pos: 10.5,18.5 + parent: 2 + - uid: 4014 + components: + - type: Transform + pos: 9.5,18.5 + parent: 2 + - uid: 4015 + components: + - type: Transform + pos: 8.5,18.5 + parent: 2 + - uid: 4016 + components: + - type: Transform + pos: 7.5,18.5 + parent: 2 + - uid: 4017 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - uid: 4018 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 4019 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 4020 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 4021 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 4022 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 + - uid: 4023 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 4024 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 4025 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 4026 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 4027 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 + - uid: 4028 + components: + - type: Transform + pos: 8.5,10.5 + parent: 2 + - uid: 4029 + components: + - type: Transform + pos: 8.5,11.5 + parent: 2 + - uid: 4030 + components: + - type: Transform + pos: 8.5,12.5 + parent: 2 + - uid: 4031 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 4032 + components: + - type: Transform + pos: 9.5,13.5 + parent: 2 + - uid: 4033 + components: + - type: Transform + pos: 9.5,14.5 + parent: 2 + - uid: 4034 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 + - uid: 4035 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - uid: 4036 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 4037 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 4038 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 4039 + components: + - type: Transform + pos: 16.5,4.5 + parent: 2 + - uid: 4040 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 2 + - uid: 4041 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - uid: 4042 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 2 + - uid: 4043 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 4044 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 2 + - uid: 4045 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - uid: 4046 + components: + - type: Transform + pos: 29.5,6.5 + parent: 2 + - uid: 4047 + components: + - type: Transform + pos: 29.5,5.5 + parent: 2 + - uid: 4048 + components: + - type: Transform + pos: 29.5,4.5 + parent: 2 + - uid: 4049 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 4050 + components: + - type: Transform + pos: 43.5,27.5 + parent: 2 + - uid: 4051 + components: + - type: Transform + pos: 43.5,26.5 + parent: 2 + - uid: 4052 + components: + - type: Transform + pos: 43.5,25.5 + parent: 2 + - uid: 4053 + components: + - type: Transform + pos: 43.5,24.5 + parent: 2 + - uid: 4054 + components: + - type: Transform + pos: 43.5,23.5 + parent: 2 + - uid: 4055 + components: + - type: Transform + pos: 42.5,23.5 + parent: 2 + - uid: 4056 + components: + - type: Transform + pos: 43.5,23.5 + parent: 2 + - uid: 4057 + components: + - type: Transform + pos: 44.5,23.5 + parent: 2 + - uid: 4058 + components: + - type: Transform + pos: 45.5,23.5 + parent: 2 + - uid: 4059 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 + - uid: 4060 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 4061 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 4062 + components: + - type: Transform + pos: 43.5,22.5 + parent: 2 + - uid: 4063 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 + - uid: 4064 + components: + - type: Transform + pos: 29.5,35.5 + parent: 2 + - uid: 4065 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 4066 + components: + - type: Transform + pos: 28.5,34.5 + parent: 2 + - uid: 4067 + components: + - type: Transform + pos: 29.5,37.5 + parent: 2 + - uid: 4068 + components: + - type: Transform + pos: 29.5,38.5 + parent: 2 + - uid: 4069 + components: + - type: Transform + pos: 29.5,39.5 + parent: 2 + - uid: 4070 + components: + - type: Transform + pos: 29.5,39.5 + parent: 2 + - uid: 4071 + components: + - type: Transform + pos: 28.5,39.5 + parent: 2 + - uid: 4072 + components: + - type: Transform + pos: 27.5,39.5 + parent: 2 + - uid: 4073 + components: + - type: Transform + pos: 26.5,39.5 + parent: 2 + - uid: 4074 + components: + - type: Transform + pos: 25.5,39.5 + parent: 2 + - uid: 4075 + components: + - type: Transform + pos: 24.5,39.5 + parent: 2 + - uid: 4076 + components: + - type: Transform + pos: 23.5,39.5 + parent: 2 + - uid: 4077 + components: + - type: Transform + pos: 29.5,41.5 + parent: 2 + - uid: 4078 + components: + - type: Transform + pos: 27.5,36.5 + parent: 2 + - uid: 4079 + components: + - type: Transform + pos: 26.5,36.5 + parent: 2 + - uid: 4080 + components: + - type: Transform + pos: 25.5,36.5 + parent: 2 + - uid: 4081 + components: + - type: Transform + pos: 24.5,36.5 + parent: 2 + - uid: 4082 + components: + - type: Transform + pos: 23.5,36.5 + parent: 2 + - uid: 4083 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 + - uid: 4084 + components: + - type: Transform + pos: 29.5,32.5 + parent: 2 + - uid: 4085 + components: + - type: Transform + pos: 29.5,31.5 + parent: 2 + - uid: 4086 + components: + - type: Transform + pos: 29.5,30.5 + parent: 2 + - uid: 4087 + components: + - type: Transform + pos: 28.5,31.5 + parent: 2 + - uid: 4088 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 + - uid: 4089 + components: + - type: Transform + pos: 30.5,31.5 + parent: 2 + - uid: 4090 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 2 + - uid: 4091 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 2 + - uid: 4092 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 2 + - uid: 4093 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 2 + - uid: 4094 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 4095 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 4096 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 2 + - uid: 4097 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 2 + - uid: 4098 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 4099 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 4100 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 4101 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 4102 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 + - uid: 4103 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 2 + - uid: 4104 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 2 + - uid: 4105 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 2 + - uid: 4106 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 + - uid: 4107 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 2 + - uid: 4108 + components: + - type: Transform + pos: -2.5,-74.5 + parent: 2 + - uid: 4109 + components: + - type: Transform + pos: -2.5,-73.5 + parent: 2 + - uid: 4110 + components: + - type: Transform + pos: 3.5,-74.5 + parent: 2 + - uid: 4111 + components: + - type: Transform + pos: 3.5,-73.5 + parent: 2 + - uid: 4112 + components: + - type: Transform + pos: 0.5,-74.5 + parent: 2 + - uid: 4113 + components: + - type: Transform + pos: 0.5,-73.5 + parent: 2 + - uid: 4114 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 4115 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 4116 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - uid: 4117 + components: + - type: Transform + pos: 38.5,-5.5 + parent: 2 + - uid: 4118 + components: + - type: Transform + pos: 39.5,-5.5 + parent: 2 + - uid: 4119 + components: + - type: Transform + pos: 40.5,-5.5 + parent: 2 + - uid: 4120 + components: + - type: Transform + pos: 41.5,-5.5 + parent: 2 + - uid: 4121 + components: + - type: Transform + pos: 42.5,-5.5 + parent: 2 + - uid: 4122 + components: + - type: Transform + pos: 43.5,-5.5 + parent: 2 + - uid: 4123 + components: + - type: Transform + pos: 39.5,-5.5 + parent: 2 + - uid: 4124 + components: + - type: Transform + pos: 39.5,-4.5 + parent: 2 + - uid: 4125 + components: + - type: Transform + pos: 39.5,-3.5 + parent: 2 + - uid: 4126 + components: + - type: Transform + pos: 39.5,-2.5 + parent: 2 + - uid: 4127 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - uid: 4128 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - uid: 4129 + components: + - type: Transform + pos: 44.5,-4.5 + parent: 2 + - uid: 4130 + components: + - type: Transform + pos: 45.5,-4.5 + parent: 2 + - uid: 4131 + components: + - type: Transform + pos: 46.5,-4.5 + parent: 2 + - uid: 4132 + components: + - type: Transform + pos: 47.5,-4.5 + parent: 2 + - uid: 4133 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 4134 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 4135 + components: + - type: Transform + pos: 44.5,-6.5 + parent: 2 + - uid: 4136 + components: + - type: Transform + pos: 45.5,-6.5 + parent: 2 + - uid: 4137 + components: + - type: Transform + pos: 46.5,-6.5 + parent: 2 + - uid: 4138 + components: + - type: Transform + pos: 47.5,-6.5 + parent: 2 + - uid: 4139 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 2 + - uid: 4140 + components: + - type: Transform + pos: 43.5,-7.5 + parent: 2 + - uid: 4141 + components: + - type: Transform + pos: 43.5,-8.5 + parent: 2 + - uid: 4142 + components: + - type: Transform + pos: 43.5,-9.5 + parent: 2 + - uid: 4143 + components: + - type: Transform + pos: 43.5,-10.5 + parent: 2 + - uid: 4144 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 2 + - uid: 4145 + components: + - type: Transform + pos: 43.5,-12.5 + parent: 2 + - uid: 4146 + components: + - type: Transform + pos: 43.5,-12.5 + parent: 2 + - uid: 4147 + components: + - type: Transform + pos: 44.5,-12.5 + parent: 2 + - uid: 4148 + components: + - type: Transform + pos: 45.5,-12.5 + parent: 2 + - uid: 4149 + components: + - type: Transform + pos: 46.5,-12.5 + parent: 2 + - uid: 4150 + components: + - type: Transform + pos: 47.5,-12.5 + parent: 2 + - uid: 4151 + components: + - type: Transform + pos: 44.5,-12.5 + parent: 2 + - uid: 4152 + components: + - type: Transform + pos: 44.5,-13.5 + parent: 2 + - uid: 4153 + components: + - type: Transform + pos: 44.5,-14.5 + parent: 2 + - uid: 4154 + components: + - type: Transform + pos: 44.5,-15.5 + parent: 2 + - uid: 4155 + components: + - type: Transform + pos: 44.5,-16.5 + parent: 2 + - uid: 4156 + components: + - type: Transform + pos: 44.5,-17.5 + parent: 2 + - uid: 4157 + components: + - type: Transform + pos: 44.5,-18.5 + parent: 2 + - uid: 4158 + components: + - type: Transform + pos: 43.5,-17.5 + parent: 2 + - uid: 4159 + components: + - type: Transform + pos: 44.5,-17.5 + parent: 2 + - uid: 4160 + components: + - type: Transform + pos: 45.5,-17.5 + parent: 2 + - uid: 4161 + components: + - type: Transform + pos: 46.5,-17.5 + parent: 2 + - uid: 4162 + components: + - type: Transform + pos: 43.5,-14.5 + parent: 2 + - uid: 4163 + components: + - type: Transform + pos: 44.5,-14.5 + parent: 2 + - uid: 4164 + components: + - type: Transform + pos: 45.5,-14.5 + parent: 2 + - uid: 4165 + components: + - type: Transform + pos: 46.5,-14.5 + parent: 2 + - uid: 4166 + components: + - type: Transform + pos: 47.5,-14.5 + parent: 2 + - uid: 4167 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 4168 + components: + - type: Transform + pos: -15.5,4.5 + parent: 2 + - uid: 4169 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - uid: 4170 + components: + - type: Transform + pos: -14.5,4.5 + parent: 2 + - uid: 4171 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 4172 + components: + - type: Transform + pos: -13.5,4.5 + parent: 2 + - uid: 4173 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 2 + - uid: 4174 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 4175 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 2 + - uid: 4176 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 2 + - uid: 4177 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 + - uid: 4178 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 2 + - uid: 4179 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 2 + - uid: 4180 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 2 + - uid: 4181 + components: + - type: Transform + pos: 39.5,-11.5 + parent: 2 + - uid: 4182 + components: + - type: Transform + pos: 40.5,-11.5 + parent: 2 + - uid: 4183 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 2 + - uid: 4184 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 2 + - uid: 4185 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 2 + - uid: 4186 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 2 + - uid: 4187 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 4188 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 + - uid: 4189 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - uid: 4190 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 4191 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - uid: 4192 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 2 + - uid: 4193 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 4194 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 2 + - uid: 4195 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 2 + - uid: 4196 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - uid: 4197 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 4198 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - uid: 4199 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - uid: 4200 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 4201 + components: + - type: Transform + pos: 42.5,-8.5 + parent: 2 + - uid: 4202 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 4203 + components: + - type: Transform + pos: -34.5,5.5 + parent: 2 + - uid: 4204 + components: + - type: Transform + pos: -33.5,5.5 + parent: 2 + - uid: 4205 + components: + - type: Transform + pos: -33.5,2.5 + parent: 2 + - uid: 4206 + components: + - type: Transform + pos: -33.5,3.5 + parent: 2 + - uid: 4207 + components: + - type: Transform + pos: -33.5,4.5 + parent: 2 + - uid: 4208 + components: + - type: Transform + pos: -33.5,5.5 + parent: 2 + - uid: 4209 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - uid: 4210 + components: + - type: Transform + pos: -33.5,7.5 + parent: 2 + - uid: 4211 + components: + - type: Transform + pos: -33.5,8.5 + parent: 2 + - uid: 4212 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 + - uid: 4213 + components: + - type: Transform + pos: -33.5,10.5 + parent: 2 + - uid: 4214 + components: + - type: Transform + pos: -33.5,11.5 + parent: 2 + - uid: 4215 + components: + - type: Transform + pos: -33.5,12.5 + parent: 2 + - uid: 4216 + components: + - type: Transform + pos: -34.5,11.5 + parent: 2 + - uid: 4217 + components: + - type: Transform + pos: -32.5,11.5 + parent: 2 + - uid: 4218 + components: + - type: Transform + pos: -34.5,7.5 + parent: 2 + - uid: 4219 + components: + - type: Transform + pos: -35.5,7.5 + parent: 2 + - uid: 4220 + components: + - type: Transform + pos: -32.5,7.5 + parent: 2 + - uid: 4221 + components: + - type: Transform + pos: -33.5,1.5 + parent: 2 + - uid: 4222 + components: + - type: Transform + pos: -33.5,0.5 + parent: 2 + - uid: 4223 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 4224 + components: + - type: Transform + pos: -31.5,1.5 + parent: 2 + - uid: 4225 + components: + - type: Transform + pos: -30.5,1.5 + parent: 2 + - uid: 4226 + components: + - type: Transform + pos: -29.5,1.5 + parent: 2 + - uid: 4227 + components: + - type: Transform + pos: -28.5,1.5 + parent: 2 + - uid: 4228 + components: + - type: Transform + pos: -17.5,1.5 + parent: 2 + - uid: 4229 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 2 + - uid: 4230 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 2 + - uid: 4231 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 2 + - uid: 4232 + components: + - type: Transform + pos: -33.5,-3.5 + parent: 2 + - uid: 4233 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 + - uid: 4234 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 2 + - uid: 4235 + components: + - type: Transform + pos: -33.5,-6.5 + parent: 2 + - uid: 4236 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 4237 + components: + - type: Transform + pos: 1.5,46.5 + parent: 2 + - uid: 4238 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 2 + - uid: 4239 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 2 + - uid: 4240 + components: + - type: Transform + pos: -31.5,-21.5 + parent: 2 + - uid: 4241 + components: + - type: Transform + pos: -31.5,-22.5 + parent: 2 + - uid: 4242 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - uid: 4243 + components: + - type: Transform + pos: -30.5,-22.5 + parent: 2 + - uid: 4244 + components: + - type: Transform + pos: -31.5,-22.5 + parent: 2 + - uid: 4245 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - uid: 4246 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 2 + - uid: 4247 + components: + - type: Transform + pos: -32.5,-22.5 + parent: 2 + - uid: 4248 + components: + - type: Transform + pos: -33.5,-22.5 + parent: 2 + - uid: 4249 + components: + - type: Transform + pos: -34.5,-22.5 + parent: 2 + - uid: 4250 + components: + - type: Transform + pos: -33.5,-23.5 + parent: 2 + - uid: 4251 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 2 + - uid: 4252 + components: + - type: Transform + pos: -33.5,-21.5 + parent: 2 + - uid: 4253 + components: + - type: Transform + pos: -33.5,-20.5 + parent: 2 + - uid: 4254 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - uid: 4255 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 + - uid: 4256 + components: + - type: Transform + pos: -33.5,-17.5 + parent: 2 + - uid: 4257 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 2 + - uid: 4258 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 2 + - uid: 4259 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 2 + - uid: 4260 + components: + - type: Transform + pos: -33.5,-13.5 + parent: 2 + - uid: 4261 + components: + - type: Transform + pos: -33.5,-12.5 + parent: 2 + - uid: 4262 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 2 + - uid: 4263 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - uid: 4264 + components: + - type: Transform + pos: -33.5,-9.5 + parent: 2 + - uid: 4265 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 4266 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 2 + - uid: 4267 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 2 + - uid: 4268 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 2 + - uid: 4269 + components: + - type: Transform + pos: -29.5,-11.5 + parent: 2 + - uid: 4270 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 2 + - uid: 4271 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 4272 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - uid: 4273 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - uid: 4274 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 + - uid: 4275 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - uid: 4276 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - uid: 4277 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - uid: 4278 + components: + - type: Transform + pos: -19.5,1.5 + parent: 2 + - uid: 4279 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 4280 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 4281 + components: + - type: Transform + pos: -22.5,1.5 + parent: 2 + - uid: 4282 + components: + - type: Transform + pos: -23.5,1.5 + parent: 2 + - uid: 4283 + components: + - type: Transform + pos: -24.5,1.5 + parent: 2 + - uid: 4284 + components: + - type: Transform + pos: -25.5,1.5 + parent: 2 + - uid: 4285 + components: + - type: Transform + pos: -26.5,1.5 + parent: 2 + - uid: 4286 + components: + - type: Transform + pos: -16.5,1.5 + parent: 2 + - uid: 4287 + components: + - type: Transform + pos: -15.5,1.5 + parent: 2 + - uid: 4288 + components: + - type: Transform + pos: -14.5,1.5 + parent: 2 + - uid: 4289 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 + - uid: 4290 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 4291 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - uid: 4292 + components: + - type: Transform + pos: -10.5,1.5 + parent: 2 + - uid: 4293 + components: + - type: Transform + pos: -9.5,1.5 + parent: 2 + - uid: 4294 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 4295 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - uid: 4296 + components: + - type: Transform + pos: -20.5,2.5 + parent: 2 + - uid: 4297 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 2 + - uid: 4298 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 + - uid: 4299 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 + - uid: 4300 + components: + - type: Transform + pos: -15.5,-10.5 + parent: 2 + - uid: 4301 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 2 + - uid: 4302 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 2 + - uid: 4303 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - uid: 4304 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 2 + - uid: 4305 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 2 + - uid: 4306 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 2 + - uid: 4307 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 + - uid: 4308 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 + - uid: 4309 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 + - uid: 4310 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 2 + - uid: 4311 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 2 + - uid: 4312 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 + - uid: 4313 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - uid: 4314 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 2 + - uid: 4315 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 2 + - uid: 4316 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 + - uid: 4317 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 4318 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 4319 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 4320 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 4321 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 4322 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 4323 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 4324 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 4325 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 4326 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 4327 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 2 + - uid: 4328 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 4329 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 2 + - uid: 4330 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - uid: 4331 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - uid: 4332 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - uid: 4333 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 2 + - uid: 4334 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - uid: 4335 + components: + - type: Transform + pos: -22.5,-13.5 + parent: 2 + - uid: 4336 + components: + - type: Transform + pos: -21.5,-13.5 + parent: 2 + - uid: 4337 + components: + - type: Transform + pos: -20.5,-13.5 + parent: 2 + - uid: 4338 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 2 + - uid: 4339 + components: + - type: Transform + pos: -18.5,-13.5 + parent: 2 + - uid: 4340 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 2 + - uid: 4341 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 2 + - uid: 4342 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 + - uid: 4343 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 2 + - uid: 4344 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 + - uid: 4345 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 2 + - uid: 4346 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - uid: 4347 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - uid: 4348 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 2 + - uid: 4349 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 2 + - uid: 4350 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 4351 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 2 + - uid: 4352 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 2 + - uid: 4353 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 + - uid: 4354 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 2 + - uid: 4355 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 + - uid: 4356 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 2 + - uid: 4357 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 2 + - uid: 4358 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 2 + - uid: 4359 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 + - uid: 4360 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 4361 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 2 + - uid: 4362 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 2 + - uid: 4363 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 2 + - uid: 4364 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 2 + - uid: 4365 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 2 + - uid: 4366 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 2 + - uid: 4367 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - uid: 4368 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - uid: 4369 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - uid: 4370 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 2 + - uid: 4371 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 2 + - uid: 4372 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 + - uid: 4373 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 + - uid: 4374 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 2 + - uid: 4375 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 2 + - uid: 4376 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 2 + - uid: 4377 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - uid: 4378 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 2 + - uid: 4379 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 2 + - uid: 4380 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 2 + - uid: 4381 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 2 + - uid: 4382 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 2 + - uid: 4383 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 2 + - uid: 4384 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 4385 + components: + - type: Transform + pos: -14.5,-16.5 + parent: 2 + - uid: 4386 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 2 + - uid: 4387 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 2 + - uid: 4388 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 2 + - uid: 4389 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 2 + - uid: 4390 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 2 + - uid: 4391 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 2 + - uid: 4392 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 2 + - uid: 4393 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 2 + - uid: 4394 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 2 + - uid: 4395 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + - uid: 4396 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 4397 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 2 + - uid: 4398 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 2 + - uid: 4399 + components: + - type: Transform + pos: 1.5,37.5 + parent: 2 + - uid: 4400 + components: + - type: Transform + pos: 1.5,36.5 + parent: 2 + - uid: 4401 + components: + - type: Transform + pos: 1.5,35.5 + parent: 2 + - uid: 4402 + components: + - type: Transform + pos: 1.5,34.5 + parent: 2 + - uid: 4403 + components: + - type: Transform + pos: 1.5,33.5 + parent: 2 + - uid: 4404 + components: + - type: Transform + pos: 1.5,32.5 + parent: 2 + - uid: 4405 + components: + - type: Transform + pos: -0.5,38.5 + parent: 2 + - uid: 4406 + components: + - type: Transform + pos: 0.5,38.5 + parent: 2 + - uid: 4407 + components: + - type: Transform + pos: 1.5,38.5 + parent: 2 + - uid: 4408 + components: + - type: Transform + pos: 1.5,31.5 + parent: 2 + - uid: 4409 + components: + - type: Transform + pos: 1.5,30.5 + parent: 2 + - uid: 4410 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - uid: 4411 + components: + - type: Transform + pos: -0.5,29.5 + parent: 2 + - uid: 4412 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 4413 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 4414 + components: + - type: Transform + pos: 1.5,26.5 + parent: 2 + - uid: 4415 + components: + - type: Transform + pos: 1.5,26.5 + parent: 2 + - uid: 4416 + components: + - type: Transform + pos: 1.5,26.5 + parent: 2 + - uid: 4417 + components: + - type: Transform + pos: 2.5,26.5 + parent: 2 + - uid: 4418 + components: + - type: Transform + pos: 3.5,26.5 + parent: 2 + - uid: 4419 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - uid: 4420 + components: + - type: Transform + pos: 5.5,26.5 + parent: 2 + - uid: 4421 + components: + - type: Transform + pos: 7.5,26.5 + parent: 2 + - uid: 4422 + components: + - type: Transform + pos: 8.5,26.5 + parent: 2 + - uid: 4423 + components: + - type: Transform + pos: 6.5,24.5 + parent: 2 + - uid: 4424 + components: + - type: Transform + pos: 1.5,26.5 + parent: 2 + - uid: 4425 + components: + - type: Transform + pos: 1.5,27.5 + parent: 2 + - uid: 4426 + components: + - type: Transform + pos: 1.5,28.5 + parent: 2 + - uid: 4427 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 4428 + components: + - type: Transform + pos: 1.5,30.5 + parent: 2 + - uid: 4429 + components: + - type: Transform + pos: 5.5,47.5 + parent: 2 + - uid: 4430 + components: + - type: Transform + pos: 5.5,48.5 + parent: 2 + - uid: 4431 + components: + - type: Transform + pos: 0.5,57.5 + parent: 2 + - uid: 4432 + components: + - type: Transform + pos: 1.5,57.5 + parent: 2 + - uid: 4433 + components: + - type: Transform + pos: 5.5,62.5 + parent: 2 + - uid: 4434 + components: + - type: Transform + pos: 5.5,61.5 + parent: 2 + - uid: 4435 + components: + - type: Transform + pos: 6.5,62.5 + parent: 2 + - uid: 4436 + components: + - type: Transform + pos: 7.5,62.5 + parent: 2 + - uid: 4437 + components: + - type: Transform + pos: 7.5,61.5 + parent: 2 + - uid: 4438 + components: + - type: Transform + pos: 8.5,61.5 + parent: 2 + - uid: 4439 + components: + - type: Transform + pos: 8.5,60.5 + parent: 2 + - uid: 4440 + components: + - type: Transform + pos: 5.5,62.5 + parent: 2 + - uid: 4441 + components: + - type: Transform + pos: 4.5,62.5 + parent: 2 + - uid: 4442 + components: + - type: Transform + pos: 4.5,63.5 + parent: 2 + - uid: 4443 + components: + - type: Transform + pos: 4.5,63.5 + parent: 2 + - uid: 4444 + components: + - type: Transform + pos: 3.5,63.5 + parent: 2 + - uid: 4445 + components: + - type: Transform + pos: 2.5,63.5 + parent: 2 + - uid: 4446 + components: + - type: Transform + pos: 1.5,63.5 + parent: 2 + - uid: 4447 + components: + - type: Transform + pos: 0.5,63.5 + parent: 2 + - uid: 4448 + components: + - type: Transform + pos: -0.5,63.5 + parent: 2 + - uid: 4449 + components: + - type: Transform + pos: -1.5,63.5 + parent: 2 + - uid: 4450 + components: + - type: Transform + pos: -2.5,63.5 + parent: 2 + - uid: 4451 + components: + - type: Transform + pos: -2.5,62.5 + parent: 2 + - uid: 4452 + components: + - type: Transform + pos: -3.5,62.5 + parent: 2 + - uid: 4453 + components: + - type: Transform + pos: -4.5,62.5 + parent: 2 + - uid: 4454 + components: + - type: Transform + pos: -4.5,62.5 + parent: 2 + - uid: 4455 + components: + - type: Transform + pos: -5.5,62.5 + parent: 2 + - uid: 4456 + components: + - type: Transform + pos: -5.5,61.5 + parent: 2 + - uid: 4457 + components: + - type: Transform + pos: -6.5,61.5 + parent: 2 + - uid: 4458 + components: + - type: Transform + pos: -6.5,60.5 + parent: 2 + - uid: 4459 + components: + - type: Transform + pos: -6.5,61.5 + parent: 2 + - uid: 4460 + components: + - type: Transform + pos: -5.5,61.5 + parent: 2 + - uid: 4461 + components: + - type: Transform + pos: -5.5,62.5 + parent: 2 + - uid: 4462 + components: + - type: Transform + pos: -6.5,60.5 + parent: 2 + - uid: 4463 + components: + - type: Transform + pos: -3.5,62.5 + parent: 2 + - uid: 4464 + components: + - type: Transform + pos: -2.5,62.5 + parent: 2 + - uid: 4465 + components: + - type: Transform + pos: 6.5,57.5 + parent: 2 + - uid: 4466 + components: + - type: Transform + pos: 6.5,57.5 + parent: 2 + - uid: 4467 + components: + - type: Transform + pos: 6.5,57.5 + parent: 2 + - uid: 4468 + components: + - type: Transform + pos: 7.5,52.5 + parent: 2 + - uid: 4469 + components: + - type: Transform + pos: 7.5,51.5 + parent: 2 + - uid: 4470 + components: + - type: Transform + pos: 11.5,53.5 + parent: 2 + - uid: 4471 + components: + - type: Transform + pos: 11.5,54.5 + parent: 2 + - uid: 4472 + components: + - type: Transform + pos: 11.5,55.5 + parent: 2 + - uid: 4473 + components: + - type: Transform + pos: -2.5,55.5 + parent: 2 + - uid: 4474 + components: + - type: Transform + pos: -2.5,56.5 + parent: 2 + - uid: 4475 + components: + - type: Transform + pos: -2.5,57.5 + parent: 2 + - uid: 4476 + components: + - type: Transform + pos: -4.5,55.5 + parent: 2 + - uid: 4477 + components: + - type: Transform + pos: -4.5,56.5 + parent: 2 + - uid: 4478 + components: + - type: Transform + pos: -4.5,57.5 + parent: 2 + - uid: 4479 + components: + - type: Transform + pos: -9.5,55.5 + parent: 2 + - uid: 4480 + components: + - type: Transform + pos: -8.5,55.5 + parent: 2 + - uid: 4481 + components: + - type: Transform + pos: -11.5,50.5 + parent: 2 + - uid: 4482 + components: + - type: Transform + pos: -12.5,50.5 + parent: 2 + - uid: 4483 + components: + - type: Transform + pos: -12.5,51.5 + parent: 2 + - uid: 4484 + components: + - type: Transform + pos: -12.5,51.5 + parent: 2 + - uid: 4485 + components: + - type: Transform + pos: -12.5,50.5 + parent: 2 + - uid: 4486 + components: + - type: Transform + pos: -43.5,32.5 + parent: 2 + - uid: 4487 + components: + - type: Transform + pos: -43.5,33.5 + parent: 2 + - uid: 4488 + components: + - type: Transform + pos: -43.5,34.5 + parent: 2 + - uid: 4489 + components: + - type: Transform + pos: -42.5,32.5 + parent: 2 + - uid: 4490 + components: + - type: Transform + pos: -43.5,32.5 + parent: 2 + - uid: 4491 + components: + - type: Transform + pos: -43.5,33.5 + parent: 2 + - uid: 4492 + components: + - type: Transform + pos: -43.5,34.5 + parent: 2 + - uid: 4493 + components: + - type: Transform + pos: -39.5,37.5 + parent: 2 + - uid: 4494 + components: + - type: Transform + pos: -40.5,37.5 + parent: 2 + - uid: 4495 + components: + - type: Transform + pos: -40.5,38.5 + parent: 2 + - uid: 4496 + components: + - type: Transform + pos: -41.5,38.5 + parent: 2 + - uid: 4497 + components: + - type: Transform + pos: -36.5,39.5 + parent: 2 + - uid: 4498 + components: + - type: Transform + pos: -37.5,39.5 + parent: 2 + - uid: 4499 + components: + - type: Transform + pos: -38.5,39.5 + parent: 2 + - uid: 4500 + components: + - type: Transform + pos: 1.5,26.5 + parent: 2 + - uid: 4501 + components: + - type: Transform + pos: 1.5,25.5 + parent: 2 + - uid: 4502 + components: + - type: Transform + pos: 1.5,24.5 + parent: 2 + - uid: 4503 + components: + - type: Transform + pos: 1.5,23.5 + parent: 2 + - uid: 4504 + components: + - type: Transform + pos: 1.5,22.5 + parent: 2 + - uid: 4505 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 + - uid: 4506 + components: + - type: Transform + pos: 0.5,21.5 + parent: 2 + - uid: 4507 + components: + - type: Transform + pos: -0.5,21.5 + parent: 2 + - uid: 4508 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 + - uid: 4509 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 + - uid: 4510 + components: + - type: Transform + pos: 1.5,20.5 + parent: 2 + - uid: 4511 + components: + - type: Transform + pos: 1.5,19.5 + parent: 2 + - uid: 4512 + components: + - type: Transform + pos: 1.5,18.5 + parent: 2 + - uid: 4513 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - uid: 4514 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 4515 + components: + - type: Transform + pos: 1.5,15.5 + parent: 2 + - uid: 4516 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 + - uid: 4517 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 + - uid: 4518 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 4519 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 4520 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - uid: 4521 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 4522 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - uid: 4523 + components: + - type: Transform + pos: 45.5,32.5 + parent: 2 + - uid: 4524 + components: + - type: Transform + pos: 44.5,39.5 + parent: 2 + - uid: 4525 + components: + - type: Transform + pos: 45.5,39.5 + parent: 2 + - uid: 4526 + components: + - type: Transform + pos: 46.5,32.5 + parent: 2 + - uid: 4527 + components: + - type: Transform + pos: 46.5,39.5 + parent: 2 + - uid: 4528 + components: + - type: Transform + pos: -15.5,-55.5 + parent: 2 + - uid: 4529 + components: + - type: Transform + pos: 16.5,0.5 + parent: 2 + - uid: 4530 + components: + - type: Transform + pos: 15.5,0.5 + parent: 2 + - uid: 4531 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - uid: 4532 + components: + - type: Transform + pos: 0.5,61.5 + parent: 2 + - uid: 4533 + components: + - type: Transform + pos: -26.5,-51.5 + parent: 2 + - uid: 4534 + components: + - type: Transform + pos: -26.5,-52.5 + parent: 2 + - uid: 4535 + components: + - type: Transform + pos: -26.5,-54.5 + parent: 2 + - uid: 4536 + components: + - type: Transform + pos: -26.5,-53.5 + parent: 2 + - uid: 4537 + components: + - type: Transform + pos: -26.5,-55.5 + parent: 2 + - uid: 4538 + components: + - type: Transform + pos: -25.5,-55.5 + parent: 2 + - uid: 4539 + components: + - type: Transform + pos: -24.5,-55.5 + parent: 2 + - uid: 4540 + components: + - type: Transform + pos: -23.5,-55.5 + parent: 2 + - uid: 24022 + components: + - type: Transform + pos: 0.5,-64.5 + parent: 2 +- proto: CableApcStack + entities: + - uid: 4541 + components: + - type: Transform + pos: 4.5463753,15.41609 + parent: 2 + - uid: 4542 + components: + - type: Transform + pos: 23.490421,35.74485 + parent: 2 + - uid: 4543 + components: + - type: Transform + pos: -6.541481,75.627754 + parent: 2 + - uid: 4544 + components: + - type: Transform + pos: 14.475429,-51.410145 + parent: 2 + - uid: 4545 + components: + - type: Transform + pos: -14.377928,-61.538338 + parent: 2 + - uid: 4546 + components: + - type: Transform + pos: -41.494724,-33.60173 + parent: 2 + - uid: 4547 + components: + - type: Transform + pos: -3.426261,49.710426 + parent: 2 +- proto: CableApcStack1 + entities: + - uid: 4548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.411194,-37.462727 + parent: 2 + - uid: 4550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.48098,-57.535282 + parent: 2 + - uid: 4551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.36432,-37.4471 + parent: 2 + - uid: 4552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.379944,-37.47835 + parent: 2 + - uid: 4553 + components: + - type: Transform + pos: 36.47409,-38.541065 + parent: 2 + - uid: 4554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.491627,-8.459211 + parent: 2 +- proto: CableApcStack10 + entities: + - uid: 4555 + components: + - type: Transform + pos: -36.41552,-29.740711 + parent: 2 +- proto: CableApcStackLingering10 + entities: + - uid: 4556 + components: + - type: Transform + pos: -11.538536,-53.24475 + parent: 2 +- proto: Cablecuffs + entities: + - uid: 4557 + components: + - type: Transform + pos: -6.5800214,12.394133 + parent: 2 + - uid: 4558 + components: + - type: Transform + pos: -6.3842173,12.52467 + parent: 2 + - uid: 4559 + components: + - type: Transform + pos: -6.169765,12.683176 + parent: 2 +- proto: CableHV + entities: + - uid: 4563 + components: + - type: Transform + pos: -43.5,-55.5 + parent: 2 + - uid: 4564 + components: + - type: Transform + pos: -43.5,-56.5 + parent: 2 + - uid: 4565 + components: + - type: Transform + pos: -43.5,-57.5 + parent: 2 + - uid: 4566 + components: + - type: Transform + pos: -43.5,-58.5 + parent: 2 + - uid: 4567 + components: + - type: Transform + pos: -43.5,-59.5 + parent: 2 + - uid: 4568 + components: + - type: Transform + pos: -42.5,-55.5 + parent: 2 + - uid: 4569 + components: + - type: Transform + pos: -42.5,-56.5 + parent: 2 + - uid: 4570 + components: + - type: Transform + pos: -42.5,-57.5 + parent: 2 + - uid: 4571 + components: + - type: Transform + pos: -42.5,-58.5 + parent: 2 + - uid: 4572 + components: + - type: Transform + pos: -42.5,-59.5 + parent: 2 + - uid: 4573 + components: + - type: Transform + pos: -41.5,-55.5 + parent: 2 + - uid: 4574 + components: + - type: Transform + pos: -41.5,-56.5 + parent: 2 + - uid: 4575 + components: + - type: Transform + pos: -41.5,-57.5 + parent: 2 + - uid: 4576 + components: + - type: Transform + pos: -41.5,-58.5 + parent: 2 + - uid: 4577 + components: + - type: Transform + pos: -41.5,-59.5 + parent: 2 + - uid: 4578 + components: + - type: Transform + pos: -47.5,-56.5 + parent: 2 + - uid: 4579 + components: + - type: Transform + pos: -47.5,-57.5 + parent: 2 + - uid: 4580 + components: + - type: Transform + pos: -47.5,-58.5 + parent: 2 + - uid: 4581 + components: + - type: Transform + pos: -47.5,-59.5 + parent: 2 + - uid: 4582 + components: + - type: Transform + pos: -46.5,-56.5 + parent: 2 + - uid: 4583 + components: + - type: Transform + pos: -46.5,-57.5 + parent: 2 + - uid: 4584 + components: + - type: Transform + pos: -46.5,-58.5 + parent: 2 + - uid: 4585 + components: + - type: Transform + pos: -46.5,-59.5 + parent: 2 + - uid: 4586 + components: + - type: Transform + pos: -45.5,-56.5 + parent: 2 + - uid: 4587 + components: + - type: Transform + pos: -45.5,-57.5 + parent: 2 + - uid: 4588 + components: + - type: Transform + pos: -45.5,-58.5 + parent: 2 + - uid: 4589 + components: + - type: Transform + pos: -45.5,-59.5 + parent: 2 + - uid: 4590 + components: + - type: Transform + pos: -51.5,-57.5 + parent: 2 + - uid: 4591 + components: + - type: Transform + pos: -51.5,-58.5 + parent: 2 + - uid: 4592 + components: + - type: Transform + pos: -51.5,-59.5 + parent: 2 + - uid: 4593 + components: + - type: Transform + pos: -50.5,-57.5 + parent: 2 + - uid: 4594 + components: + - type: Transform + pos: -50.5,-58.5 + parent: 2 + - uid: 4595 + components: + - type: Transform + pos: -50.5,-59.5 + parent: 2 + - uid: 4596 + components: + - type: Transform + pos: -49.5,-57.5 + parent: 2 + - uid: 4597 + components: + - type: Transform + pos: -49.5,-58.5 + parent: 2 + - uid: 4598 + components: + - type: Transform + pos: -49.5,-59.5 + parent: 2 + - uid: 4599 + components: + - type: Transform + pos: -55.5,-57.5 + parent: 2 + - uid: 4600 + components: + - type: Transform + pos: -55.5,-58.5 + parent: 2 + - uid: 4601 + components: + - type: Transform + pos: -55.5,-59.5 + parent: 2 + - uid: 4602 + components: + - type: Transform + pos: -54.5,-57.5 + parent: 2 + - uid: 4603 + components: + - type: Transform + pos: -54.5,-58.5 + parent: 2 + - uid: 4604 + components: + - type: Transform + pos: -54.5,-59.5 + parent: 2 + - uid: 4605 + components: + - type: Transform + pos: -53.5,-57.5 + parent: 2 + - uid: 4606 + components: + - type: Transform + pos: -53.5,-58.5 + parent: 2 + - uid: 4607 + components: + - type: Transform + pos: -53.5,-59.5 + parent: 2 + - uid: 4608 + components: + - type: Transform + pos: -40.5,-61.5 + parent: 2 + - uid: 4609 + components: + - type: Transform + pos: -55.5,-63.5 + parent: 2 + - uid: 4610 + components: + - type: Transform + pos: -55.5,-64.5 + parent: 2 + - uid: 4611 + components: + - type: Transform + pos: -55.5,-65.5 + parent: 2 + - uid: 4612 + components: + - type: Transform + pos: -54.5,-63.5 + parent: 2 + - uid: 4613 + components: + - type: Transform + pos: -54.5,-64.5 + parent: 2 + - uid: 4614 + components: + - type: Transform + pos: -54.5,-65.5 + parent: 2 + - uid: 4615 + components: + - type: Transform + pos: -53.5,-63.5 + parent: 2 + - uid: 4616 + components: + - type: Transform + pos: -53.5,-64.5 + parent: 2 + - uid: 4617 + components: + - type: Transform + pos: -53.5,-65.5 + parent: 2 + - uid: 4618 + components: + - type: Transform + pos: -51.5,-63.5 + parent: 2 + - uid: 4619 + components: + - type: Transform + pos: -51.5,-64.5 + parent: 2 + - uid: 4620 + components: + - type: Transform + pos: -51.5,-65.5 + parent: 2 + - uid: 4621 + components: + - type: Transform + pos: -50.5,-63.5 + parent: 2 + - uid: 4622 + components: + - type: Transform + pos: -50.5,-64.5 + parent: 2 + - uid: 4623 + components: + - type: Transform + pos: -50.5,-65.5 + parent: 2 + - uid: 4624 + components: + - type: Transform + pos: -49.5,-63.5 + parent: 2 + - uid: 4625 + components: + - type: Transform + pos: -49.5,-64.5 + parent: 2 + - uid: 4626 + components: + - type: Transform + pos: -49.5,-65.5 + parent: 2 + - uid: 4627 + components: + - type: Transform + pos: -47.5,-63.5 + parent: 2 + - uid: 4628 + components: + - type: Transform + pos: -47.5,-64.5 + parent: 2 + - uid: 4629 + components: + - type: Transform + pos: -47.5,-65.5 + parent: 2 + - uid: 4630 + components: + - type: Transform + pos: -47.5,-66.5 + parent: 2 + - uid: 4631 + components: + - type: Transform + pos: -46.5,-63.5 + parent: 2 + - uid: 4632 + components: + - type: Transform + pos: -46.5,-64.5 + parent: 2 + - uid: 4633 + components: + - type: Transform + pos: -46.5,-65.5 + parent: 2 + - uid: 4634 + components: + - type: Transform + pos: -46.5,-66.5 + parent: 2 + - uid: 4635 + components: + - type: Transform + pos: -45.5,-63.5 + parent: 2 + - uid: 4636 + components: + - type: Transform + pos: -45.5,-64.5 + parent: 2 + - uid: 4637 + components: + - type: Transform + pos: -45.5,-65.5 + parent: 2 + - uid: 4638 + components: + - type: Transform + pos: -45.5,-66.5 + parent: 2 + - uid: 4639 + components: + - type: Transform + pos: -43.5,-63.5 + parent: 2 + - uid: 4640 + components: + - type: Transform + pos: -43.5,-64.5 + parent: 2 + - uid: 4641 + components: + - type: Transform + pos: -43.5,-65.5 + parent: 2 + - uid: 4642 + components: + - type: Transform + pos: -43.5,-66.5 + parent: 2 + - uid: 4643 + components: + - type: Transform + pos: -43.5,-67.5 + parent: 2 + - uid: 4644 + components: + - type: Transform + pos: -42.5,-63.5 + parent: 2 + - uid: 4645 + components: + - type: Transform + pos: -42.5,-64.5 + parent: 2 + - uid: 4646 + components: + - type: Transform + pos: -42.5,-65.5 + parent: 2 + - uid: 4647 + components: + - type: Transform + pos: -42.5,-66.5 + parent: 2 + - uid: 4648 + components: + - type: Transform + pos: -42.5,-67.5 + parent: 2 + - uid: 4649 + components: + - type: Transform + pos: -41.5,-63.5 + parent: 2 + - uid: 4650 + components: + - type: Transform + pos: -41.5,-64.5 + parent: 2 + - uid: 4651 + components: + - type: Transform + pos: -41.5,-65.5 + parent: 2 + - uid: 4652 + components: + - type: Transform + pos: -41.5,-66.5 + parent: 2 + - uid: 4653 + components: + - type: Transform + pos: -41.5,-67.5 + parent: 2 + - uid: 4654 + components: + - type: Transform + pos: -42.5,-62.5 + parent: 2 + - uid: 4655 + components: + - type: Transform + pos: -46.5,-62.5 + parent: 2 + - uid: 4656 + components: + - type: Transform + pos: -50.5,-62.5 + parent: 2 + - uid: 4657 + components: + - type: Transform + pos: -54.5,-62.5 + parent: 2 + - uid: 4658 + components: + - type: Transform + pos: -54.5,-60.5 + parent: 2 + - uid: 4659 + components: + - type: Transform + pos: -50.5,-60.5 + parent: 2 + - uid: 4660 + components: + - type: Transform + pos: -46.5,-60.5 + parent: 2 + - uid: 4661 + components: + - type: Transform + pos: -42.5,-60.5 + parent: 2 + - uid: 4662 + components: + - type: Transform + pos: -35.5,-54.5 + parent: 2 + - uid: 4663 + components: + - type: Transform + pos: -36.5,-54.5 + parent: 2 + - uid: 4664 + components: + - type: Transform + pos: -37.5,-54.5 + parent: 2 + - uid: 4665 + components: + - type: Transform + pos: -38.5,-54.5 + parent: 2 + - uid: 4666 + components: + - type: Transform + pos: -39.5,-54.5 + parent: 2 + - uid: 4667 + components: + - type: Transform + pos: -39.5,-55.5 + parent: 2 + - uid: 4668 + components: + - type: Transform + pos: -39.5,-56.5 + parent: 2 + - uid: 4669 + components: + - type: Transform + pos: -39.5,-57.5 + parent: 2 + - uid: 4670 + components: + - type: Transform + pos: -39.5,-58.5 + parent: 2 + - uid: 4671 + components: + - type: Transform + pos: -39.5,-59.5 + parent: 2 + - uid: 4672 + components: + - type: Transform + pos: -39.5,-60.5 + parent: 2 + - uid: 4673 + components: + - type: Transform + pos: -39.5,-61.5 + parent: 2 + - uid: 4674 + components: + - type: Transform + pos: -41.5,-61.5 + parent: 2 + - uid: 4675 + components: + - type: Transform + pos: -43.5,-61.5 + parent: 2 + - uid: 4676 + components: + - type: Transform + pos: -44.5,-61.5 + parent: 2 + - uid: 4677 + components: + - type: Transform + pos: -45.5,-61.5 + parent: 2 + - uid: 4678 + components: + - type: Transform + pos: -47.5,-61.5 + parent: 2 + - uid: 4679 + components: + - type: Transform + pos: -48.5,-61.5 + parent: 2 + - uid: 4680 + components: + - type: Transform + pos: -49.5,-61.5 + parent: 2 + - uid: 4681 + components: + - type: Transform + pos: -51.5,-61.5 + parent: 2 + - uid: 4682 + components: + - type: Transform + pos: -52.5,-61.5 + parent: 2 + - uid: 4683 + components: + - type: Transform + pos: -53.5,-61.5 + parent: 2 + - uid: 4684 + components: + - type: Transform + pos: -54.5,-61.5 + parent: 2 + - uid: 4685 + components: + - type: Transform + pos: -55.5,-61.5 + parent: 2 + - uid: 4686 + components: + - type: Transform + pos: -56.5,-61.5 + parent: 2 + - uid: 4687 + components: + - type: Transform + pos: 73.5,27.5 + parent: 2 + - uid: 4688 + components: + - type: Transform + pos: 47.5,22.5 + parent: 2 + - uid: 4689 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 4690 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 4691 + components: + - type: Transform + pos: 49.5,23.5 + parent: 2 + - uid: 4692 + components: + - type: Transform + pos: 50.5,23.5 + parent: 2 + - uid: 4693 + components: + - type: Transform + pos: 51.5,23.5 + parent: 2 + - uid: 4694 + components: + - type: Transform + pos: 52.5,23.5 + parent: 2 + - uid: 4695 + components: + - type: Transform + pos: 53.5,23.5 + parent: 2 + - uid: 4696 + components: + - type: Transform + pos: 54.5,23.5 + parent: 2 + - uid: 4697 + components: + - type: Transform + pos: 55.5,23.5 + parent: 2 + - uid: 4698 + components: + - type: Transform + pos: 56.5,23.5 + parent: 2 + - uid: 4699 + components: + - type: Transform + pos: 57.5,23.5 + parent: 2 + - uid: 4700 + components: + - type: Transform + pos: 58.5,23.5 + parent: 2 + - uid: 4701 + components: + - type: Transform + pos: 59.5,23.5 + parent: 2 + - uid: 4702 + components: + - type: Transform + pos: 60.5,23.5 + parent: 2 + - uid: 4703 + components: + - type: Transform + pos: 62.5,23.5 + parent: 2 + - uid: 4704 + components: + - type: Transform + pos: 63.5,23.5 + parent: 2 + - uid: 4705 + components: + - type: Transform + pos: 64.5,23.5 + parent: 2 + - uid: 4706 + components: + - type: Transform + pos: 66.5,23.5 + parent: 2 + - uid: 4707 + components: + - type: Transform + pos: 67.5,23.5 + parent: 2 + - uid: 4708 + components: + - type: Transform + pos: 68.5,23.5 + parent: 2 + - uid: 4709 + components: + - type: Transform + pos: 69.5,23.5 + parent: 2 + - uid: 4710 + components: + - type: Transform + pos: 70.5,23.5 + parent: 2 + - uid: 4711 + components: + - type: Transform + pos: 72.5,23.5 + parent: 2 + - uid: 4712 + components: + - type: Transform + pos: 73.5,23.5 + parent: 2 + - uid: 4713 + components: + - type: Transform + pos: 74.5,23.5 + parent: 2 + - uid: 4714 + components: + - type: Transform + pos: 75.5,23.5 + parent: 2 + - uid: 4715 + components: + - type: Transform + pos: 73.5,26.5 + parent: 2 + - uid: 4716 + components: + - type: Transform + pos: 73.5,25.5 + parent: 2 + - uid: 4717 + components: + - type: Transform + pos: 73.5,24.5 + parent: 2 + - uid: 4718 + components: + - type: Transform + pos: 73.5,19.5 + parent: 2 + - uid: 4719 + components: + - type: Transform + pos: 73.5,20.5 + parent: 2 + - uid: 4720 + components: + - type: Transform + pos: 73.5,21.5 + parent: 2 + - uid: 4721 + components: + - type: Transform + pos: 73.5,22.5 + parent: 2 + - uid: 4722 + components: + - type: Transform + pos: 69.5,22.5 + parent: 2 + - uid: 4723 + components: + - type: Transform + pos: 69.5,21.5 + parent: 2 + - uid: 4724 + components: + - type: Transform + pos: 69.5,20.5 + parent: 2 + - uid: 4725 + components: + - type: Transform + pos: 69.5,19.5 + parent: 2 + - uid: 4726 + components: + - type: Transform + pos: 65.5,28.5 + parent: 2 + - uid: 4727 + components: + - type: Transform + pos: 65.5,27.5 + parent: 2 + - uid: 4728 + components: + - type: Transform + pos: 65.5,26.5 + parent: 2 + - uid: 4729 + components: + - type: Transform + pos: 65.5,25.5 + parent: 2 + - uid: 4730 + components: + - type: Transform + pos: 65.5,24.5 + parent: 2 + - uid: 4731 + components: + - type: Transform + pos: 65.5,21.5 + parent: 2 + - uid: 4732 + components: + - type: Transform + pos: 65.5,20.5 + parent: 2 + - uid: 4733 + components: + - type: Transform + pos: 65.5,19.5 + parent: 2 + - uid: 4734 + components: + - type: Transform + pos: 65.5,18.5 + parent: 2 + - uid: 4735 + components: + - type: Transform + pos: 65.5,22.5 + parent: 2 + - uid: 4736 + components: + - type: Transform + pos: 57.5,24.5 + parent: 2 + - uid: 4737 + components: + - type: Transform + pos: 61.5,17.5 + parent: 2 + - uid: 4738 + components: + - type: Transform + pos: 61.5,18.5 + parent: 2 + - uid: 4739 + components: + - type: Transform + pos: 61.5,19.5 + parent: 2 + - uid: 4740 + components: + - type: Transform + pos: 61.5,20.5 + parent: 2 + - uid: 4741 + components: + - type: Transform + pos: 61.5,21.5 + parent: 2 + - uid: 4742 + components: + - type: Transform + pos: 61.5,22.5 + parent: 2 + - uid: 4743 + components: + - type: Transform + pos: 61.5,24.5 + parent: 2 + - uid: 4744 + components: + - type: Transform + pos: 61.5,25.5 + parent: 2 + - uid: 4745 + components: + - type: Transform + pos: 61.5,26.5 + parent: 2 + - uid: 4746 + components: + - type: Transform + pos: 61.5,27.5 + parent: 2 + - uid: 4747 + components: + - type: Transform + pos: 61.5,28.5 + parent: 2 + - uid: 4748 + components: + - type: Transform + pos: 61.5,29.5 + parent: 2 + - uid: 4749 + components: + - type: Transform + pos: 57.5,25.5 + parent: 2 + - uid: 4750 + components: + - type: Transform + pos: 57.5,26.5 + parent: 2 + - uid: 4751 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 4752 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - uid: 4753 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 + - uid: 4754 + components: + - type: Transform + pos: 57.5,31.5 + parent: 2 + - uid: 4755 + components: + - type: Transform + pos: 57.5,32.5 + parent: 2 + - uid: 4756 + components: + - type: Transform + pos: 57.5,22.5 + parent: 2 + - uid: 4757 + components: + - type: Transform + pos: 57.5,21.5 + parent: 2 + - uid: 4758 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - uid: 4759 + components: + - type: Transform + pos: 57.5,19.5 + parent: 2 + - uid: 4760 + components: + - type: Transform + pos: 57.5,18.5 + parent: 2 + - uid: 4761 + components: + - type: Transform + pos: -54.5,32.5 + parent: 2 + - uid: 4762 + components: + - type: Transform + pos: -54.5,31.5 + parent: 2 + - uid: 4763 + components: + - type: Transform + pos: -54.5,30.5 + parent: 2 + - uid: 4764 + components: + - type: Transform + pos: -54.5,28.5 + parent: 2 + - uid: 4765 + components: + - type: Transform + pos: -53.5,29.5 + parent: 2 + - uid: 4766 + components: + - type: Transform + pos: -52.5,29.5 + parent: 2 + - uid: 4767 + components: + - type: Transform + pos: -58.5,29.5 + parent: 2 + - uid: 4768 + components: + - type: Transform + pos: -58.5,28.5 + parent: 2 + - uid: 4769 + components: + - type: Transform + pos: -59.5,29.5 + parent: 2 + - uid: 4770 + components: + - type: Transform + pos: -57.5,29.5 + parent: 2 + - uid: 4771 + components: + - type: Transform + pos: -57.5,28.5 + parent: 2 + - uid: 4772 + components: + - type: Transform + pos: -59.5,28.5 + parent: 2 + - uid: 4773 + components: + - type: Transform + pos: -62.5,28.5 + parent: 2 + - uid: 4774 + components: + - type: Transform + pos: -62.5,27.5 + parent: 2 + - uid: 4775 + components: + - type: Transform + pos: -62.5,26.5 + parent: 2 + - uid: 4776 + components: + - type: Transform + pos: -63.5,26.5 + parent: 2 + - uid: 4777 + components: + - type: Transform + pos: -63.5,27.5 + parent: 2 + - uid: 4778 + components: + - type: Transform + pos: -63.5,28.5 + parent: 2 + - uid: 4779 + components: + - type: Transform + pos: -61.5,28.5 + parent: 2 + - uid: 4780 + components: + - type: Transform + pos: -61.5,27.5 + parent: 2 + - uid: 4781 + components: + - type: Transform + pos: -67.5,27.5 + parent: 2 + - uid: 4782 + components: + - type: Transform + pos: -67.5,26.5 + parent: 2 + - uid: 4783 + components: + - type: Transform + pos: -67.5,25.5 + parent: 2 + - uid: 4784 + components: + - type: Transform + pos: -66.5,27.5 + parent: 2 + - uid: 4785 + components: + - type: Transform + pos: -66.5,26.5 + parent: 2 + - uid: 4786 + components: + - type: Transform + pos: -66.5,25.5 + parent: 2 + - uid: 4787 + components: + - type: Transform + pos: -65.5,27.5 + parent: 2 + - uid: 4788 + components: + - type: Transform + pos: -65.5,26.5 + parent: 2 + - uid: 4789 + components: + - type: Transform + pos: -65.5,25.5 + parent: 2 + - uid: 4790 + components: + - type: Transform + pos: -65.5,23.5 + parent: 2 + - uid: 4791 + components: + - type: Transform + pos: -66.5,23.5 + parent: 2 + - uid: 4792 + components: + - type: Transform + pos: -72.5,23.5 + parent: 2 + - uid: 4793 + components: + - type: Transform + pos: -71.5,23.5 + parent: 2 + - uid: 4794 + components: + - type: Transform + pos: -70.5,23.5 + parent: 2 + - uid: 4795 + components: + - type: Transform + pos: -69.5,23.5 + parent: 2 + - uid: 4796 + components: + - type: Transform + pos: -71.5,25.5 + parent: 2 + - uid: 4797 + components: + - type: Transform + pos: -71.5,26.5 + parent: 2 + - uid: 4798 + components: + - type: Transform + pos: -71.5,27.5 + parent: 2 + - uid: 4799 + components: + - type: Transform + pos: -70.5,25.5 + parent: 2 + - uid: 4800 + components: + - type: Transform + pos: -70.5,26.5 + parent: 2 + - uid: 4801 + components: + - type: Transform + pos: -70.5,27.5 + parent: 2 + - uid: 4802 + components: + - type: Transform + pos: -69.5,25.5 + parent: 2 + - uid: 4803 + components: + - type: Transform + pos: -69.5,26.5 + parent: 2 + - uid: 4804 + components: + - type: Transform + pos: -69.5,27.5 + parent: 2 + - uid: 4805 + components: + - type: Transform + pos: -70.5,21.5 + parent: 2 + - uid: 4806 + components: + - type: Transform + pos: -71.5,19.5 + parent: 2 + - uid: 4807 + components: + - type: Transform + pos: -70.5,19.5 + parent: 2 + - uid: 4808 + components: + - type: Transform + pos: -66.5,21.5 + parent: 2 + - uid: 4809 + components: + - type: Transform + pos: -69.5,21.5 + parent: 2 + - uid: 4810 + components: + - type: Transform + pos: -67.5,19.5 + parent: 2 + - uid: 4811 + components: + - type: Transform + pos: -67.5,20.5 + parent: 2 + - uid: 4812 + components: + - type: Transform + pos: -71.5,20.5 + parent: 2 + - uid: 4813 + components: + - type: Transform + pos: -71.5,21.5 + parent: 2 + - uid: 4814 + components: + - type: Transform + pos: -69.5,19.5 + parent: 2 + - uid: 4815 + components: + - type: Transform + pos: -69.5,20.5 + parent: 2 + - uid: 4816 + components: + - type: Transform + pos: -70.5,20.5 + parent: 2 + - uid: 4817 + components: + - type: Transform + pos: -66.5,19.5 + parent: 2 + - uid: 4818 + components: + - type: Transform + pos: -66.5,20.5 + parent: 2 + - uid: 4819 + components: + - type: Transform + pos: -67.5,21.5 + parent: 2 + - uid: 4820 + components: + - type: Transform + pos: -65.5,21.5 + parent: 2 + - uid: 4821 + components: + - type: Transform + pos: -65.5,20.5 + parent: 2 + - uid: 4822 + components: + - type: Transform + pos: -65.5,19.5 + parent: 2 + - uid: 4823 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 2 + - uid: 4824 + components: + - type: Transform + pos: 5.5,34.5 + parent: 2 + - uid: 4825 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - uid: 4826 + components: + - type: Transform + pos: -2.5,-48.5 + parent: 2 + - uid: 4827 + components: + - type: Transform + pos: 60.5,19.5 + parent: 2 + - uid: 4828 + components: + - type: Transform + pos: 60.5,18.5 + parent: 2 + - uid: 4829 + components: + - type: Transform + pos: 60.5,21.5 + parent: 2 + - uid: 4830 + components: + - type: Transform + pos: 60.5,17.5 + parent: 2 + - uid: 4831 + components: + - type: Transform + pos: 62.5,17.5 + parent: 2 + - uid: 4832 + components: + - type: Transform + pos: -35.5,-55.5 + parent: 2 + - uid: 4833 + components: + - type: Transform + pos: 5.5,32.5 + parent: 2 + - uid: 4834 + components: + - type: Transform + pos: -20.5,-55.5 + parent: 2 + - uid: 4835 + components: + - type: Transform + pos: -3.5,-59.5 + parent: 2 + - uid: 4836 + components: + - type: Transform + pos: 7.5,34.5 + parent: 2 + - uid: 4837 + components: + - type: Transform + pos: -16.5,-55.5 + parent: 2 + - uid: 4838 + components: + - type: Transform + pos: -20.5,-57.5 + parent: 2 + - uid: 4839 + components: + - type: Transform + pos: 47.5,-62.5 + parent: 2 + - uid: 4840 + components: + - type: Transform + pos: 43.5,-58.5 + parent: 2 + - uid: 4841 + components: + - type: Transform + pos: 43.5,-51.5 + parent: 2 + - uid: 4842 + components: + - type: Transform + pos: 43.5,-52.5 + parent: 2 + - uid: 4843 + components: + - type: Transform + pos: 43.5,-53.5 + parent: 2 + - uid: 4844 + components: + - type: Transform + pos: 43.5,-54.5 + parent: 2 + - uid: 4845 + components: + - type: Transform + pos: 43.5,-55.5 + parent: 2 + - uid: 4846 + components: + - type: Transform + pos: 43.5,-56.5 + parent: 2 + - uid: 4847 + components: + - type: Transform + pos: 43.5,-59.5 + parent: 2 + - uid: 4848 + components: + - type: Transform + pos: 43.5,-60.5 + parent: 2 + - uid: 4849 + components: + - type: Transform + pos: 43.5,-61.5 + parent: 2 + - uid: 4850 + components: + - type: Transform + pos: 43.5,-62.5 + parent: 2 + - uid: 4851 + components: + - type: Transform + pos: 43.5,-63.5 + parent: 2 + - uid: 4852 + components: + - type: Transform + pos: 47.5,-61.5 + parent: 2 + - uid: 4853 + components: + - type: Transform + pos: 47.5,-60.5 + parent: 2 + - uid: 4854 + components: + - type: Transform + pos: 47.5,-59.5 + parent: 2 + - uid: 4855 + components: + - type: Transform + pos: 47.5,-58.5 + parent: 2 + - uid: 4856 + components: + - type: Transform + pos: 47.5,-56.5 + parent: 2 + - uid: 4857 + components: + - type: Transform + pos: 47.5,-55.5 + parent: 2 + - uid: 4858 + components: + - type: Transform + pos: 47.5,-54.5 + parent: 2 + - uid: 4859 + components: + - type: Transform + pos: 47.5,-53.5 + parent: 2 + - uid: 4860 + components: + - type: Transform + pos: 47.5,-52.5 + parent: 2 + - uid: 4861 + components: + - type: Transform + pos: 51.5,-53.5 + parent: 2 + - uid: 4862 + components: + - type: Transform + pos: 51.5,-54.5 + parent: 2 + - uid: 4863 + components: + - type: Transform + pos: 51.5,-55.5 + parent: 2 + - uid: 4864 + components: + - type: Transform + pos: 51.5,-56.5 + parent: 2 + - uid: 4865 + components: + - type: Transform + pos: 51.5,-58.5 + parent: 2 + - uid: 4866 + components: + - type: Transform + pos: 51.5,-59.5 + parent: 2 + - uid: 4867 + components: + - type: Transform + pos: 51.5,-60.5 + parent: 2 + - uid: 4868 + components: + - type: Transform + pos: 51.5,-61.5 + parent: 2 + - uid: 4869 + components: + - type: Transform + pos: 55.5,-61.5 + parent: 2 + - uid: 4870 + components: + - type: Transform + pos: 55.5,-60.5 + parent: 2 + - uid: 4871 + components: + - type: Transform + pos: 55.5,-59.5 + parent: 2 + - uid: 4872 + components: + - type: Transform + pos: 55.5,-58.5 + parent: 2 + - uid: 4873 + components: + - type: Transform + pos: 55.5,-56.5 + parent: 2 + - uid: 4874 + components: + - type: Transform + pos: 55.5,-55.5 + parent: 2 + - uid: 4875 + components: + - type: Transform + pos: 55.5,-54.5 + parent: 2 + - uid: 4876 + components: + - type: Transform + pos: 55.5,-53.5 + parent: 2 + - uid: 4877 + components: + - type: Transform + pos: 57.5,-57.5 + parent: 2 + - uid: 4878 + components: + - type: Transform + pos: 42.5,-57.5 + parent: 2 + - uid: 4879 + components: + - type: Transform + pos: 41.5,-57.5 + parent: 2 + - uid: 4880 + components: + - type: Transform + pos: 40.5,-57.5 + parent: 2 + - uid: 4881 + components: + - type: Transform + pos: 40.5,-58.5 + parent: 2 + - uid: 4882 + components: + - type: Transform + pos: 40.5,-59.5 + parent: 2 + - uid: 4883 + components: + - type: Transform + pos: 40.5,-56.5 + parent: 2 + - uid: 4884 + components: + - type: Transform + pos: 40.5,-55.5 + parent: 2 + - uid: 4885 + components: + - type: Transform + pos: 40.5,-54.5 + parent: 2 + - uid: 4886 + components: + - type: Transform + pos: 40.5,-53.5 + parent: 2 + - uid: 4887 + components: + - type: Transform + pos: 40.5,-52.5 + parent: 2 + - uid: 4888 + components: + - type: Transform + pos: 40.5,-51.5 + parent: 2 + - uid: 4889 + components: + - type: Transform + pos: 40.5,-50.5 + parent: 2 + - uid: 4890 + components: + - type: Transform + pos: 40.5,-49.5 + parent: 2 + - uid: 4891 + components: + - type: Transform + pos: 40.5,-48.5 + parent: 2 + - uid: 4892 + components: + - type: Transform + pos: 41.5,-48.5 + parent: 2 + - uid: 4893 + components: + - type: Transform + pos: 42.5,-48.5 + parent: 2 + - uid: 4894 + components: + - type: Transform + pos: 42.5,-47.5 + parent: 2 + - uid: 4895 + components: + - type: Transform + pos: 42.5,-46.5 + parent: 2 + - uid: 4896 + components: + - type: Transform + pos: 54.5,-59.5 + parent: 2 + - uid: 4897 + components: + - type: Transform + pos: 42.5,-59.5 + parent: 2 + - uid: 4898 + components: + - type: Transform + pos: 42.5,-60.5 + parent: 2 + - uid: 4899 + components: + - type: Transform + pos: 42.5,-61.5 + parent: 2 + - uid: 4900 + components: + - type: Transform + pos: 42.5,-62.5 + parent: 2 + - uid: 4901 + components: + - type: Transform + pos: 42.5,-63.5 + parent: 2 + - uid: 4902 + components: + - type: Transform + pos: 44.5,-63.5 + parent: 2 + - uid: 4903 + components: + - type: Transform + pos: 44.5,-62.5 + parent: 2 + - uid: 4904 + components: + - type: Transform + pos: 44.5,-61.5 + parent: 2 + - uid: 4905 + components: + - type: Transform + pos: 44.5,-60.5 + parent: 2 + - uid: 4906 + components: + - type: Transform + pos: 44.5,-59.5 + parent: 2 + - uid: 4907 + components: + - type: Transform + pos: 46.5,-59.5 + parent: 2 + - uid: 4908 + components: + - type: Transform + pos: 46.5,-60.5 + parent: 2 + - uid: 4909 + components: + - type: Transform + pos: 46.5,-61.5 + parent: 2 + - uid: 4910 + components: + - type: Transform + pos: 46.5,-62.5 + parent: 2 + - uid: 4911 + components: + - type: Transform + pos: 48.5,-62.5 + parent: 2 + - uid: 4912 + components: + - type: Transform + pos: 48.5,-61.5 + parent: 2 + - uid: 4913 + components: + - type: Transform + pos: 48.5,-60.5 + parent: 2 + - uid: 4914 + components: + - type: Transform + pos: 48.5,-59.5 + parent: 2 + - uid: 4915 + components: + - type: Transform + pos: 42.5,-51.5 + parent: 2 + - uid: 4916 + components: + - type: Transform + pos: 42.5,-52.5 + parent: 2 + - uid: 4917 + components: + - type: Transform + pos: 42.5,-53.5 + parent: 2 + - uid: 4918 + components: + - type: Transform + pos: 42.5,-54.5 + parent: 2 + - uid: 4919 + components: + - type: Transform + pos: 42.5,-55.5 + parent: 2 + - uid: 4920 + components: + - type: Transform + pos: 44.5,-55.5 + parent: 2 + - uid: 4921 + components: + - type: Transform + pos: 44.5,-54.5 + parent: 2 + - uid: 4922 + components: + - type: Transform + pos: 44.5,-53.5 + parent: 2 + - uid: 4923 + components: + - type: Transform + pos: 44.5,-52.5 + parent: 2 + - uid: 4924 + components: + - type: Transform + pos: 44.5,-51.5 + parent: 2 + - uid: 4925 + components: + - type: Transform + pos: 46.5,-52.5 + parent: 2 + - uid: 4926 + components: + - type: Transform + pos: 46.5,-53.5 + parent: 2 + - uid: 4927 + components: + - type: Transform + pos: 46.5,-54.5 + parent: 2 + - uid: 4928 + components: + - type: Transform + pos: 46.5,-55.5 + parent: 2 + - uid: 4929 + components: + - type: Transform + pos: 48.5,-55.5 + parent: 2 + - uid: 4930 + components: + - type: Transform + pos: 48.5,-54.5 + parent: 2 + - uid: 4931 + components: + - type: Transform + pos: 48.5,-53.5 + parent: 2 + - uid: 4932 + components: + - type: Transform + pos: 48.5,-52.5 + parent: 2 + - uid: 4933 + components: + - type: Transform + pos: 50.5,-53.5 + parent: 2 + - uid: 4934 + components: + - type: Transform + pos: 50.5,-54.5 + parent: 2 + - uid: 4935 + components: + - type: Transform + pos: 50.5,-55.5 + parent: 2 + - uid: 4936 + components: + - type: Transform + pos: 52.5,-53.5 + parent: 2 + - uid: 4937 + components: + - type: Transform + pos: 52.5,-54.5 + parent: 2 + - uid: 4938 + components: + - type: Transform + pos: 52.5,-55.5 + parent: 2 + - uid: 4939 + components: + - type: Transform + pos: 54.5,-53.5 + parent: 2 + - uid: 4940 + components: + - type: Transform + pos: 54.5,-54.5 + parent: 2 + - uid: 4941 + components: + - type: Transform + pos: 54.5,-55.5 + parent: 2 + - uid: 4942 + components: + - type: Transform + pos: 56.5,-53.5 + parent: 2 + - uid: 4943 + components: + - type: Transform + pos: 56.5,-54.5 + parent: 2 + - uid: 4944 + components: + - type: Transform + pos: 56.5,-55.5 + parent: 2 + - uid: 4945 + components: + - type: Transform + pos: 56.5,-59.5 + parent: 2 + - uid: 4946 + components: + - type: Transform + pos: 56.5,-60.5 + parent: 2 + - uid: 4947 + components: + - type: Transform + pos: 56.5,-61.5 + parent: 2 + - uid: 4948 + components: + - type: Transform + pos: 54.5,-60.5 + parent: 2 + - uid: 4949 + components: + - type: Transform + pos: 54.5,-61.5 + parent: 2 + - uid: 4950 + components: + - type: Transform + pos: 52.5,-59.5 + parent: 2 + - uid: 4951 + components: + - type: Transform + pos: 52.5,-60.5 + parent: 2 + - uid: 4952 + components: + - type: Transform + pos: 52.5,-61.5 + parent: 2 + - uid: 4953 + components: + - type: Transform + pos: 50.5,-59.5 + parent: 2 + - uid: 4954 + components: + - type: Transform + pos: 50.5,-60.5 + parent: 2 + - uid: 4955 + components: + - type: Transform + pos: 50.5,-61.5 + parent: 2 + - uid: 4956 + components: + - type: Transform + pos: -20.5,-58.5 + parent: 2 + - uid: 4957 + components: + - type: Transform + pos: -20.5,-56.5 + parent: 2 + - uid: 4958 + components: + - type: Transform + pos: -12.5,-58.5 + parent: 2 + - uid: 4959 + components: + - type: Transform + pos: -11.5,-58.5 + parent: 2 + - uid: 4960 + components: + - type: Transform + pos: -10.5,-58.5 + parent: 2 + - uid: 4961 + components: + - type: Transform + pos: -9.5,-58.5 + parent: 2 + - uid: 4962 + components: + - type: Transform + pos: -8.5,-58.5 + parent: 2 + - uid: 4963 + components: + - type: Transform + pos: -7.5,-58.5 + parent: 2 + - uid: 4964 + components: + - type: Transform + pos: -7.5,-59.5 + parent: 2 + - uid: 4965 + components: + - type: Transform + pos: -4.5,-56.5 + parent: 2 + - uid: 4966 + components: + - type: Transform + pos: -4.5,-57.5 + parent: 2 + - uid: 4967 + components: + - type: Transform + pos: -4.5,-58.5 + parent: 2 + - uid: 4968 + components: + - type: Transform + pos: 8.5,-47.5 + parent: 2 + - uid: 4969 + components: + - type: Transform + pos: 11.5,-46.5 + parent: 2 + - uid: 4970 + components: + - type: Transform + pos: 11.5,-45.5 + parent: 2 + - uid: 4971 + components: + - type: Transform + pos: 11.5,-44.5 + parent: 2 + - uid: 4972 + components: + - type: Transform + pos: -15.5,-52.5 + parent: 2 + - uid: 4973 + components: + - type: Transform + pos: -14.5,-52.5 + parent: 2 + - uid: 4974 + components: + - type: Transform + pos: -13.5,-52.5 + parent: 2 + - uid: 4975 + components: + - type: Transform + pos: -12.5,-52.5 + parent: 2 + - uid: 4976 + components: + - type: Transform + pos: -11.5,-52.5 + parent: 2 + - uid: 4977 + components: + - type: Transform + pos: -10.5,-52.5 + parent: 2 + - uid: 4978 + components: + - type: Transform + pos: -9.5,-52.5 + parent: 2 + - uid: 4979 + components: + - type: Transform + pos: -8.5,-52.5 + parent: 2 + - uid: 4980 + components: + - type: Transform + pos: -7.5,-52.5 + parent: 2 + - uid: 4981 + components: + - type: Transform + pos: -6.5,-52.5 + parent: 2 + - uid: 4982 + components: + - type: Transform + pos: -5.5,-52.5 + parent: 2 + - uid: 4983 + components: + - type: Transform + pos: -5.5,-51.5 + parent: 2 + - uid: 4984 + components: + - type: Transform + pos: -4.5,-51.5 + parent: 2 + - uid: 4985 + components: + - type: Transform + pos: -3.5,-51.5 + parent: 2 + - uid: 4986 + components: + - type: Transform + pos: -2.5,-51.5 + parent: 2 + - uid: 4987 + components: + - type: Transform + pos: -1.5,-51.5 + parent: 2 + - uid: 4988 + components: + - type: Transform + pos: -0.5,-51.5 + parent: 2 + - uid: 4989 + components: + - type: Transform + pos: 0.5,-51.5 + parent: 2 + - uid: 4990 + components: + - type: Transform + pos: 0.5,-52.5 + parent: 2 + - uid: 4991 + components: + - type: Transform + pos: 0.5,-53.5 + parent: 2 + - uid: 4992 + components: + - type: Transform + pos: -34.5,-54.5 + parent: 2 + - uid: 4993 + components: + - type: Transform + pos: -32.5,-55.5 + parent: 2 + - uid: 4994 + components: + - type: Transform + pos: -31.5,-55.5 + parent: 2 + - uid: 4995 + components: + - type: Transform + pos: -30.5,-55.5 + parent: 2 + - uid: 4996 + components: + - type: Transform + pos: -29.5,-55.5 + parent: 2 + - uid: 4997 + components: + - type: Transform + pos: -28.5,-55.5 + parent: 2 + - uid: 4998 + components: + - type: Transform + pos: -28.5,-54.5 + parent: 2 + - uid: 4999 + components: + - type: Transform + pos: -28.5,-53.5 + parent: 2 + - uid: 5000 + components: + - type: Transform + pos: -28.5,-52.5 + parent: 2 + - uid: 5001 + components: + - type: Transform + pos: -28.5,-51.5 + parent: 2 + - uid: 5002 + components: + - type: Transform + pos: -28.5,-50.5 + parent: 2 + - uid: 5003 + components: + - type: Transform + pos: -27.5,-50.5 + parent: 2 + - uid: 5004 + components: + - type: Transform + pos: -26.5,-50.5 + parent: 2 + - uid: 5005 + components: + - type: Transform + pos: -25.5,-50.5 + parent: 2 + - uid: 5006 + components: + - type: Transform + pos: -24.5,-50.5 + parent: 2 + - uid: 5007 + components: + - type: Transform + pos: -23.5,-50.5 + parent: 2 + - uid: 5008 + components: + - type: Transform + pos: -22.5,-50.5 + parent: 2 + - uid: 5009 + components: + - type: Transform + pos: -21.5,-50.5 + parent: 2 + - uid: 5010 + components: + - type: Transform + pos: -21.5,-51.5 + parent: 2 + - uid: 5011 + components: + - type: Transform + pos: -20.5,-51.5 + parent: 2 + - uid: 5012 + components: + - type: Transform + pos: -19.5,-51.5 + parent: 2 + - uid: 5013 + components: + - type: Transform + pos: -18.5,-51.5 + parent: 2 + - uid: 5014 + components: + - type: Transform + pos: -17.5,-51.5 + parent: 2 + - uid: 5015 + components: + - type: Transform + pos: -16.5,-51.5 + parent: 2 + - uid: 5016 + components: + - type: Transform + pos: -15.5,-51.5 + parent: 2 + - uid: 5017 + components: + - type: Transform + pos: -26.5,-51.5 + parent: 2 + - uid: 5018 + components: + - type: Transform + pos: -26.5,-52.5 + parent: 2 + - uid: 5019 + components: + - type: Transform + pos: -26.5,-53.5 + parent: 2 + - uid: 5020 + components: + - type: Transform + pos: -26.5,-54.5 + parent: 2 + - uid: 5021 + components: + - type: Transform + pos: -26.5,-55.5 + parent: 2 + - uid: 5022 + components: + - type: Transform + pos: -25.5,-55.5 + parent: 2 + - uid: 5023 + components: + - type: Transform + pos: -24.5,-55.5 + parent: 2 + - uid: 5024 + components: + - type: Transform + pos: -23.5,-55.5 + parent: 2 + - uid: 5025 + components: + - type: Transform + pos: -22.5,-55.5 + parent: 2 + - uid: 5026 + components: + - type: Transform + pos: -22.5,-54.5 + parent: 2 + - uid: 5027 + components: + - type: Transform + pos: -4.5,-43.5 + parent: 2 + - uid: 5028 + components: + - type: Transform + pos: 13.5,-44.5 + parent: 2 + - uid: 5029 + components: + - type: Transform + pos: 12.5,-44.5 + parent: 2 + - uid: 5030 + components: + - type: Transform + pos: -21.5,-49.5 + parent: 2 + - uid: 5031 + components: + - type: Transform + pos: -21.5,-48.5 + parent: 2 + - uid: 5032 + components: + - type: Transform + pos: -21.5,-47.5 + parent: 2 + - uid: 5033 + components: + - type: Transform + pos: -21.5,-46.5 + parent: 2 + - uid: 5034 + components: + - type: Transform + pos: -21.5,-45.5 + parent: 2 + - uid: 5035 + components: + - type: Transform + pos: -21.5,-44.5 + parent: 2 + - uid: 5036 + components: + - type: Transform + pos: -21.5,-43.5 + parent: 2 + - uid: 5037 + components: + - type: Transform + pos: -22.5,-26.5 + parent: 2 + - uid: 5038 + components: + - type: Transform + pos: -21.5,-34.5 + parent: 2 + - uid: 5039 + components: + - type: Transform + pos: -20.5,-43.5 + parent: 2 + - uid: 5040 + components: + - type: Transform + pos: -20.5,-42.5 + parent: 2 + - uid: 5041 + components: + - type: Transform + pos: -20.5,-41.5 + parent: 2 + - uid: 5042 + components: + - type: Transform + pos: -20.5,-40.5 + parent: 2 + - uid: 5043 + components: + - type: Transform + pos: -20.5,-39.5 + parent: 2 + - uid: 5044 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 2 + - uid: 5045 + components: + - type: Transform + pos: -20.5,-37.5 + parent: 2 + - uid: 5046 + components: + - type: Transform + pos: -20.5,-36.5 + parent: 2 + - uid: 5047 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 2 + - uid: 5048 + components: + - type: Transform + pos: -21.5,-35.5 + parent: 2 + - uid: 5049 + components: + - type: Transform + pos: -21.5,-33.5 + parent: 2 + - uid: 5050 + components: + - type: Transform + pos: -21.5,-32.5 + parent: 2 + - uid: 5051 + components: + - type: Transform + pos: -21.5,-31.5 + parent: 2 + - uid: 5052 + components: + - type: Transform + pos: -21.5,-30.5 + parent: 2 + - uid: 5053 + components: + - type: Transform + pos: -21.5,-29.5 + parent: 2 + - uid: 5054 + components: + - type: Transform + pos: -21.5,-28.5 + parent: 2 + - uid: 5055 + components: + - type: Transform + pos: -21.5,-27.5 + parent: 2 + - uid: 5056 + components: + - type: Transform + pos: -22.5,-27.5 + parent: 2 + - uid: 5057 + components: + - type: Transform + pos: -22.5,-25.5 + parent: 2 + - uid: 5058 + components: + - type: Transform + pos: -22.5,-24.5 + parent: 2 + - uid: 5059 + components: + - type: Transform + pos: -22.5,-23.5 + parent: 2 + - uid: 5060 + components: + - type: Transform + pos: -22.5,-22.5 + parent: 2 + - uid: 5061 + components: + - type: Transform + pos: -22.5,-21.5 + parent: 2 + - uid: 5062 + components: + - type: Transform + pos: -22.5,-20.5 + parent: 2 + - uid: 5063 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 2 + - uid: 5064 + components: + - type: Transform + pos: -22.5,-18.5 + parent: 2 + - uid: 5065 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 2 + - uid: 5066 + components: + - type: Transform + pos: -21.5,-17.5 + parent: 2 + - uid: 5067 + components: + - type: Transform + pos: -20.5,-17.5 + parent: 2 + - uid: 5068 + components: + - type: Transform + pos: -29.5,15.5 + parent: 2 + - uid: 5069 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 2 + - uid: 5070 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 2 + - uid: 5071 + components: + - type: Transform + pos: -20.5,-14.5 + parent: 2 + - uid: 5072 + components: + - type: Transform + pos: -20.5,-13.5 + parent: 2 + - uid: 5073 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 2 + - uid: 5074 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 2 + - uid: 5075 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 2 + - uid: 5076 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 2 + - uid: 5077 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - uid: 5078 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 2 + - uid: 5079 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 2 + - uid: 5080 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 2 + - uid: 5081 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 2 + - uid: 5082 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 2 + - uid: 5083 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 2 + - uid: 5084 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 2 + - uid: 5085 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 2 + - uid: 5086 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 5087 + components: + - type: Transform + pos: -14.5,-16.5 + parent: 2 + - uid: 5088 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 2 + - uid: 5089 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - uid: 5090 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 2 + - uid: 5091 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 2 + - uid: 5092 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 + - uid: 5093 + components: + - type: Transform + pos: -15.5,-10.5 + parent: 2 + - uid: 5094 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 2 + - uid: 5095 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 + - uid: 5096 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 2 + - uid: 5097 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 2 + - uid: 5098 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 2 + - uid: 5099 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 2 + - uid: 5100 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 + - uid: 5101 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - uid: 5102 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - uid: 5103 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - uid: 5104 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 + - uid: 5105 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 5106 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 5107 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 + - uid: 5108 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 2 + - uid: 5109 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 2 + - uid: 5110 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 5111 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 5112 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 + - uid: 5113 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 2 + - uid: 5114 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 + - uid: 5115 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 2 + - uid: 5116 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 5117 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - uid: 5118 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - uid: 5119 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 2 + - uid: 5120 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 5121 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 + - uid: 5122 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 5123 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 2 + - uid: 5124 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 2 + - uid: 5125 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 5126 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 5127 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 5128 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 5129 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 5130 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 2 + - uid: 5131 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 2 + - uid: 5132 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 5133 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - uid: 5134 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - uid: 5135 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 + - uid: 5136 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 2 + - uid: 5137 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 2 + - uid: 5138 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 2 + - uid: 5139 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - uid: 5140 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 5141 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 2 + - uid: 5142 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 2 + - uid: 5143 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 2 + - uid: 5144 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 2 + - uid: 5145 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 2 + - uid: 5146 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 2 + - uid: 5147 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 2 + - uid: 5148 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 2 + - uid: 5149 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 2 + - uid: 5150 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 2 + - uid: 5151 + components: + - type: Transform + pos: 1.5,-35.5 + parent: 2 + - uid: 5152 + components: + - type: Transform + pos: 1.5,-36.5 + parent: 2 + - uid: 5153 + components: + - type: Transform + pos: 1.5,-37.5 + parent: 2 + - uid: 5154 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 2 + - uid: 5155 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 2 + - uid: 5156 + components: + - type: Transform + pos: 1.5,-40.5 + parent: 2 + - uid: 5157 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 2 + - uid: 5158 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 2 + - uid: 5159 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 2 + - uid: 5160 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 2 + - uid: 5161 + components: + - type: Transform + pos: -1.5,-42.5 + parent: 2 + - uid: 5162 + components: + - type: Transform + pos: -2.5,-42.5 + parent: 2 + - uid: 5163 + components: + - type: Transform + pos: -3.5,-42.5 + parent: 2 + - uid: 5164 + components: + - type: Transform + pos: -4.5,-42.5 + parent: 2 + - uid: 5165 + components: + - type: Transform + pos: -4.5,-44.5 + parent: 2 + - uid: 5166 + components: + - type: Transform + pos: -4.5,-45.5 + parent: 2 + - uid: 5167 + components: + - type: Transform + pos: -4.5,-46.5 + parent: 2 + - uid: 5168 + components: + - type: Transform + pos: -4.5,-47.5 + parent: 2 + - uid: 5169 + components: + - type: Transform + pos: -4.5,-48.5 + parent: 2 + - uid: 5170 + components: + - type: Transform + pos: -5.5,-48.5 + parent: 2 + - uid: 5171 + components: + - type: Transform + pos: -5.5,-49.5 + parent: 2 + - uid: 5172 + components: + - type: Transform + pos: -5.5,-50.5 + parent: 2 + - uid: 5173 + components: + - type: Transform + pos: 11.5,-47.5 + parent: 2 + - uid: 5174 + components: + - type: Transform + pos: 10.5,-47.5 + parent: 2 + - uid: 5175 + components: + - type: Transform + pos: 43.5,23.5 + parent: 2 + - uid: 5176 + components: + - type: Transform + pos: 43.5,24.5 + parent: 2 + - uid: 5177 + components: + - type: Transform + pos: 43.5,25.5 + parent: 2 + - uid: 5178 + components: + - type: Transform + pos: 43.5,26.5 + parent: 2 + - uid: 5179 + components: + - type: Transform + pos: 43.5,27.5 + parent: 2 + - uid: 5180 + components: + - type: Transform + pos: 42.5,27.5 + parent: 2 + - uid: 5181 + components: + - type: Transform + pos: 41.5,27.5 + parent: 2 + - uid: 5182 + components: + - type: Transform + pos: 40.5,27.5 + parent: 2 + - uid: 5183 + components: + - type: Transform + pos: 39.5,27.5 + parent: 2 + - uid: 5184 + components: + - type: Transform + pos: 38.5,27.5 + parent: 2 + - uid: 5185 + components: + - type: Transform + pos: 37.5,27.5 + parent: 2 + - uid: 5186 + components: + - type: Transform + pos: 36.5,27.5 + parent: 2 + - uid: 5187 + components: + - type: Transform + pos: 35.5,27.5 + parent: 2 + - uid: 5188 + components: + - type: Transform + pos: 34.5,27.5 + parent: 2 + - uid: 5189 + components: + - type: Transform + pos: 33.5,27.5 + parent: 2 + - uid: 5190 + components: + - type: Transform + pos: 32.5,27.5 + parent: 2 + - uid: 5191 + components: + - type: Transform + pos: 31.5,27.5 + parent: 2 + - uid: 5192 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 + - uid: 5193 + components: + - type: Transform + pos: 9.5,-47.5 + parent: 2 + - uid: 5194 + components: + - type: Transform + pos: 9.5,22.5 + parent: 2 + - uid: 5195 + components: + - type: Transform + pos: 7.5,-47.5 + parent: 2 + - uid: 5196 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 + - uid: 5197 + components: + - type: Transform + pos: 36.5,-44.5 + parent: 2 + - uid: 5198 + components: + - type: Transform + pos: -2.5,-46.5 + parent: 2 + - uid: 5199 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 2 + - uid: 5200 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 5201 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 5202 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 5203 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 5204 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 5205 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 5206 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 5207 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 5208 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 5209 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 + - uid: 5210 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 5211 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - uid: 5212 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - uid: 5213 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - uid: 5214 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 5215 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 5216 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 5217 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 5218 + components: + - type: Transform + pos: 13.5,6.5 + parent: 2 + - uid: 5219 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 5220 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 5221 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 5222 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 5223 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - uid: 5224 + components: + - type: Transform + pos: 15.5,2.5 + parent: 2 + - uid: 5225 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - uid: 5226 + components: + - type: Transform + pos: 15.5,0.5 + parent: 2 + - uid: 5227 + components: + - type: Transform + pos: 16.5,0.5 + parent: 2 + - uid: 5228 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 2 + - uid: 5229 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 2 + - uid: 5230 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 5231 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 5232 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - uid: 5233 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 5234 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 5235 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 + - uid: 5236 + components: + - type: Transform + pos: 14.5,26.5 + parent: 2 + - uid: 5237 + components: + - type: Transform + pos: 15.5,26.5 + parent: 2 + - uid: 5238 + components: + - type: Transform + pos: 16.5,26.5 + parent: 2 + - uid: 5239 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 5240 + components: + - type: Transform + pos: 18.5,26.5 + parent: 2 + - uid: 5241 + components: + - type: Transform + pos: 19.5,26.5 + parent: 2 + - uid: 5242 + components: + - type: Transform + pos: 20.5,26.5 + parent: 2 + - uid: 5243 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 5244 + components: + - type: Transform + pos: 22.5,26.5 + parent: 2 + - uid: 5245 + components: + - type: Transform + pos: 23.5,26.5 + parent: 2 + - uid: 5246 + components: + - type: Transform + pos: 24.5,26.5 + parent: 2 + - uid: 5247 + components: + - type: Transform + pos: 25.5,26.5 + parent: 2 + - uid: 5248 + components: + - type: Transform + pos: 26.5,26.5 + parent: 2 + - uid: 5249 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 5250 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 + - uid: 5251 + components: + - type: Transform + pos: 29.5,26.5 + parent: 2 + - uid: 5252 + components: + - type: Transform + pos: 30.5,26.5 + parent: 2 + - uid: 5253 + components: + - type: Transform + pos: -2.5,49.5 + parent: 2 + - uid: 5254 + components: + - type: Transform + pos: -2.5,48.5 + parent: 2 + - uid: 5255 + components: + - type: Transform + pos: -3.5,48.5 + parent: 2 + - uid: 5256 + components: + - type: Transform + pos: -3.5,47.5 + parent: 2 + - uid: 5257 + components: + - type: Transform + pos: -3.5,46.5 + parent: 2 + - uid: 5258 + components: + - type: Transform + pos: -3.5,45.5 + parent: 2 + - uid: 5259 + components: + - type: Transform + pos: -3.5,44.5 + parent: 2 + - uid: 5260 + components: + - type: Transform + pos: -3.5,43.5 + parent: 2 + - uid: 5261 + components: + - type: Transform + pos: -3.5,42.5 + parent: 2 + - uid: 5262 + components: + - type: Transform + pos: -2.5,42.5 + parent: 2 + - uid: 5263 + components: + - type: Transform + pos: -1.5,42.5 + parent: 2 + - uid: 5264 + components: + - type: Transform + pos: -0.5,42.5 + parent: 2 + - uid: 5265 + components: + - type: Transform + pos: 0.5,42.5 + parent: 2 + - uid: 5266 + components: + - type: Transform + pos: 4.5,31.5 + parent: 2 + - uid: 5267 + components: + - type: Transform + pos: 0.5,41.5 + parent: 2 + - uid: 5268 + components: + - type: Transform + pos: 0.5,40.5 + parent: 2 + - uid: 5269 + components: + - type: Transform + pos: 0.5,39.5 + parent: 2 + - uid: 5270 + components: + - type: Transform + pos: 0.5,38.5 + parent: 2 + - uid: 5271 + components: + - type: Transform + pos: 0.5,37.5 + parent: 2 + - uid: 5272 + components: + - type: Transform + pos: 0.5,36.5 + parent: 2 + - uid: 5273 + components: + - type: Transform + pos: 0.5,35.5 + parent: 2 + - uid: 5274 + components: + - type: Transform + pos: 0.5,34.5 + parent: 2 + - uid: 5275 + components: + - type: Transform + pos: 4.5,34.5 + parent: 2 + - uid: 5276 + components: + - type: Transform + pos: 3.5,34.5 + parent: 2 + - uid: 5277 + components: + - type: Transform + pos: 2.5,34.5 + parent: 2 + - uid: 5278 + components: + - type: Transform + pos: 1.5,34.5 + parent: 2 + - uid: 5279 + components: + - type: Transform + pos: 4.5,30.5 + parent: 2 + - uid: 5280 + components: + - type: Transform + pos: 4.5,29.5 + parent: 2 + - uid: 5281 + components: + - type: Transform + pos: 3.5,29.5 + parent: 2 + - uid: 5282 + components: + - type: Transform + pos: 2.5,29.5 + parent: 2 + - uid: 5283 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 5284 + components: + - type: Transform + pos: 0.5,33.5 + parent: 2 + - uid: 5285 + components: + - type: Transform + pos: 0.5,32.5 + parent: 2 + - uid: 5286 + components: + - type: Transform + pos: 0.5,31.5 + parent: 2 + - uid: 5287 + components: + - type: Transform + pos: 0.5,30.5 + parent: 2 + - uid: 5288 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - uid: 5289 + components: + - type: Transform + pos: 0.5,28.5 + parent: 2 + - uid: 5290 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - uid: 5291 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - uid: 5292 + components: + - type: Transform + pos: 0.5,25.5 + parent: 2 + - uid: 5293 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - uid: 5294 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 5295 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - uid: 5296 + components: + - type: Transform + pos: 0.5,21.5 + parent: 2 + - uid: 5297 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 + - uid: 5298 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 + - uid: 5299 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 + - uid: 5300 + components: + - type: Transform + pos: 4.5,21.5 + parent: 2 + - uid: 5301 + components: + - type: Transform + pos: 5.5,21.5 + parent: 2 + - uid: 5302 + components: + - type: Transform + pos: 6.5,21.5 + parent: 2 + - uid: 5303 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 + - uid: 5304 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - uid: 5305 + components: + - type: Transform + pos: -28.5,15.5 + parent: 2 + - uid: 5306 + components: + - type: Transform + pos: -27.5,15.5 + parent: 2 + - uid: 5307 + components: + - type: Transform + pos: -27.5,16.5 + parent: 2 + - uid: 5308 + components: + - type: Transform + pos: -26.5,16.5 + parent: 2 + - uid: 5309 + components: + - type: Transform + pos: -25.5,16.5 + parent: 2 + - uid: 5310 + components: + - type: Transform + pos: -24.5,16.5 + parent: 2 + - uid: 5311 + components: + - type: Transform + pos: -23.5,16.5 + parent: 2 + - uid: 5312 + components: + - type: Transform + pos: -22.5,16.5 + parent: 2 + - uid: 5313 + components: + - type: Transform + pos: -21.5,16.5 + parent: 2 + - uid: 5314 + components: + - type: Transform + pos: -20.5,16.5 + parent: 2 + - uid: 5315 + components: + - type: Transform + pos: -20.5,15.5 + parent: 2 + - uid: 5316 + components: + - type: Transform + pos: -20.5,14.5 + parent: 2 + - uid: 5317 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - uid: 5318 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 5319 + components: + - type: Transform + pos: -20.5,11.5 + parent: 2 + - uid: 5320 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - uid: 5321 + components: + - type: Transform + pos: -20.5,9.5 + parent: 2 + - uid: 5322 + components: + - type: Transform + pos: -20.5,8.5 + parent: 2 + - uid: 5323 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 + - uid: 5324 + components: + - type: Transform + pos: -20.5,6.5 + parent: 2 + - uid: 5325 + components: + - type: Transform + pos: -20.5,5.5 + parent: 2 + - uid: 5326 + components: + - type: Transform + pos: -20.5,4.5 + parent: 2 + - uid: 5327 + components: + - type: Transform + pos: -20.5,3.5 + parent: 2 + - uid: 5328 + components: + - type: Transform + pos: -20.5,2.5 + parent: 2 + - uid: 5329 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 5330 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 5331 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - uid: 5332 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 2 + - uid: 5333 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 2 + - uid: 5334 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 2 + - uid: 5335 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - uid: 5336 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 + - uid: 5337 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 2 + - uid: 5338 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 2 + - uid: 5339 + components: + - type: Transform + pos: -5.5,-56.5 + parent: 2 + - uid: 5340 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 2 + - uid: 5341 + components: + - type: Transform + pos: -5.5,-57.5 + parent: 2 + - uid: 5342 + components: + - type: Transform + pos: -5.5,-58.5 + parent: 2 + - uid: 5343 + components: + - type: Transform + pos: 0.5,-59.5 + parent: 2 + - uid: 5344 + components: + - type: Transform + pos: 0.5,-58.5 + parent: 2 + - uid: 5345 + components: + - type: Transform + pos: 0.5,-57.5 + parent: 2 + - uid: 5346 + components: + - type: Transform + pos: 1.5,-57.5 + parent: 2 + - uid: 5347 + components: + - type: Transform + pos: 2.5,-57.5 + parent: 2 + - uid: 5348 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 2 + - uid: 5349 + components: + - type: Transform + pos: 3.5,-56.5 + parent: 2 + - uid: 5350 + components: + - type: Transform + pos: 3.5,-55.5 + parent: 2 + - uid: 5351 + components: + - type: Transform + pos: 4.5,-55.5 + parent: 2 + - uid: 5352 + components: + - type: Transform + pos: 5.5,-55.5 + parent: 2 + - uid: 5353 + components: + - type: Transform + pos: 6.5,-55.5 + parent: 2 + - uid: 5354 + components: + - type: Transform + pos: 7.5,-55.5 + parent: 2 + - uid: 5355 + components: + - type: Transform + pos: 7.5,-54.5 + parent: 2 + - uid: 5356 + components: + - type: Transform + pos: 7.5,-53.5 + parent: 2 + - uid: 5357 + components: + - type: Transform + pos: 7.5,-52.5 + parent: 2 + - uid: 5358 + components: + - type: Transform + pos: 7.5,-51.5 + parent: 2 + - uid: 5359 + components: + - type: Transform + pos: 7.5,-50.5 + parent: 2 + - uid: 5360 + components: + - type: Transform + pos: 7.5,-49.5 + parent: 2 + - uid: 5361 + components: + - type: Transform + pos: 7.5,-48.5 + parent: 2 + - uid: 5362 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 5363 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 + - uid: 5364 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 2 + - uid: 5365 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 2 + - uid: 5366 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 5367 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + - uid: 5368 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 2 + - uid: 5369 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 2 + - uid: 5370 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 2 + - uid: 5371 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 2 + - uid: 5372 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 2 + - uid: 5373 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 2 + - uid: 5374 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 2 + - uid: 5375 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 + - uid: 5376 + components: + - type: Transform + pos: 0.5,19.5 + parent: 2 + - uid: 5377 + components: + - type: Transform + pos: -0.5,19.5 + parent: 2 + - uid: 5378 + components: + - type: Transform + pos: -1.5,19.5 + parent: 2 + - uid: 5379 + components: + - type: Transform + pos: -2.5,19.5 + parent: 2 + - uid: 5380 + components: + - type: Transform + pos: -3.5,19.5 + parent: 2 + - uid: 5381 + components: + - type: Transform + pos: -4.5,19.5 + parent: 2 + - uid: 5382 + components: + - type: Transform + pos: -5.5,19.5 + parent: 2 + - uid: 5383 + components: + - type: Transform + pos: -6.5,19.5 + parent: 2 + - uid: 5384 + components: + - type: Transform + pos: -7.5,19.5 + parent: 2 + - uid: 5385 + components: + - type: Transform + pos: -8.5,19.5 + parent: 2 + - uid: 5386 + components: + - type: Transform + pos: -9.5,19.5 + parent: 2 + - uid: 5387 + components: + - type: Transform + pos: -10.5,19.5 + parent: 2 + - uid: 5388 + components: + - type: Transform + pos: -11.5,19.5 + parent: 2 + - uid: 5389 + components: + - type: Transform + pos: -12.5,19.5 + parent: 2 + - uid: 5390 + components: + - type: Transform + pos: -13.5,19.5 + parent: 2 + - uid: 5391 + components: + - type: Transform + pos: -14.5,19.5 + parent: 2 + - uid: 5392 + components: + - type: Transform + pos: -15.5,19.5 + parent: 2 + - uid: 5393 + components: + - type: Transform + pos: -16.5,19.5 + parent: 2 + - uid: 5394 + components: + - type: Transform + pos: -16.5,18.5 + parent: 2 + - uid: 5395 + components: + - type: Transform + pos: -16.5,17.5 + parent: 2 + - uid: 5396 + components: + - type: Transform + pos: -16.5,16.5 + parent: 2 + - uid: 5397 + components: + - type: Transform + pos: -16.5,15.5 + parent: 2 + - uid: 5398 + components: + - type: Transform + pos: -17.5,15.5 + parent: 2 + - uid: 5399 + components: + - type: Transform + pos: -18.5,15.5 + parent: 2 + - uid: 5400 + components: + - type: Transform + pos: -19.5,15.5 + parent: 2 + - uid: 5401 + components: + - type: Transform + pos: 17.5,0.5 + parent: 2 + - uid: 5402 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 5403 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 5404 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 5405 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - uid: 5406 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 5407 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 5408 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 5409 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - uid: 5410 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 5411 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 5412 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 5413 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - uid: 5414 + components: + - type: Transform + pos: 29.5,1.5 + parent: 2 + - uid: 5415 + components: + - type: Transform + pos: 29.5,2.5 + parent: 2 + - uid: 5416 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 5417 + components: + - type: Transform + pos: 29.5,4.5 + parent: 2 + - uid: 5418 + components: + - type: Transform + pos: 29.5,5.5 + parent: 2 + - uid: 5419 + components: + - type: Transform + pos: 29.5,6.5 + parent: 2 + - uid: 5420 + components: + - type: Transform + pos: 29.5,7.5 + parent: 2 + - uid: 5421 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 5422 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 + - uid: 5423 + components: + - type: Transform + pos: 29.5,10.5 + parent: 2 + - uid: 5424 + components: + - type: Transform + pos: 29.5,11.5 + parent: 2 + - uid: 5425 + components: + - type: Transform + pos: 29.5,12.5 + parent: 2 + - uid: 5426 + components: + - type: Transform + pos: 29.5,13.5 + parent: 2 + - uid: 5427 + components: + - type: Transform + pos: 29.5,14.5 + parent: 2 + - uid: 5428 + components: + - type: Transform + pos: 29.5,15.5 + parent: 2 + - uid: 5429 + components: + - type: Transform + pos: 29.5,16.5 + parent: 2 + - uid: 5430 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 5431 + components: + - type: Transform + pos: 31.5,16.5 + parent: 2 + - uid: 5432 + components: + - type: Transform + pos: 32.5,16.5 + parent: 2 + - uid: 5433 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 5434 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 5435 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 5436 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 5437 + components: + - type: Transform + pos: 37.5,16.5 + parent: 2 + - uid: 5438 + components: + - type: Transform + pos: 37.5,17.5 + parent: 2 + - uid: 5439 + components: + - type: Transform + pos: 37.5,18.5 + parent: 2 + - uid: 5440 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2 + - uid: 5441 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 + - uid: 5442 + components: + - type: Transform + pos: 40.5,18.5 + parent: 2 + - uid: 5443 + components: + - type: Transform + pos: 41.5,18.5 + parent: 2 + - uid: 5444 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 + - uid: 5445 + components: + - type: Transform + pos: 42.5,19.5 + parent: 2 + - uid: 5446 + components: + - type: Transform + pos: 42.5,20.5 + parent: 2 + - uid: 5447 + components: + - type: Transform + pos: 42.5,21.5 + parent: 2 + - uid: 5448 + components: + - type: Transform + pos: 42.5,22.5 + parent: 2 + - uid: 5449 + components: + - type: Transform + pos: 43.5,22.5 + parent: 2 + - uid: 5450 + components: + - type: Transform + pos: 30.5,-45.5 + parent: 2 + - uid: 5451 + components: + - type: Transform + pos: 30.5,-44.5 + parent: 2 + - uid: 5452 + components: + - type: Transform + pos: 30.5,-43.5 + parent: 2 + - uid: 5453 + components: + - type: Transform + pos: 30.5,-42.5 + parent: 2 + - uid: 5454 + components: + - type: Transform + pos: 30.5,-41.5 + parent: 2 + - uid: 5455 + components: + - type: Transform + pos: 30.5,-40.5 + parent: 2 + - uid: 5456 + components: + - type: Transform + pos: 29.5,-40.5 + parent: 2 + - uid: 5457 + components: + - type: Transform + pos: 35.5,-44.5 + parent: 2 + - uid: 5458 + components: + - type: Transform + pos: 35.5,-27.5 + parent: 2 + - uid: 5459 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 2 + - uid: 5460 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 2 + - uid: 5461 + components: + - type: Transform + pos: 10.5,-34.5 + parent: 2 + - uid: 5462 + components: + - type: Transform + pos: -19.5,-56.5 + parent: 2 + - uid: 5463 + components: + - type: Transform + pos: -19.5,-57.5 + parent: 2 + - uid: 5464 + components: + - type: Transform + pos: -19.5,-58.5 + parent: 2 + - uid: 5465 + components: + - type: Transform + pos: -18.5,-56.5 + parent: 2 + - uid: 5466 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 + - uid: 5467 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 2 + - uid: 5468 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 2 + - uid: 5469 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 + - uid: 5470 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 2 + - uid: 5471 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 5472 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 5473 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 + - uid: 5474 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 2 + - uid: 5475 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - uid: 5476 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 2 + - uid: 5477 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 2 + - uid: 5478 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 + - uid: 5479 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 2 + - uid: 5480 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 2 + - uid: 5481 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 2 + - uid: 5482 + components: + - type: Transform + pos: -11.5,-12.5 + parent: 2 + - uid: 5483 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 2 + - uid: 5484 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 5485 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 5486 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 5487 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 5488 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 5489 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 5490 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 5491 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 5492 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 5493 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 5494 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 2 + - uid: 5495 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 5496 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 5497 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 5498 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 2 + - uid: 5499 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 2 + - uid: 5500 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 2 + - uid: 5501 + components: + - type: Transform + pos: -37.5,-9.5 + parent: 2 + - uid: 5502 + components: + - type: Transform + pos: -37.5,-10.5 + parent: 2 + - uid: 5503 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 2 + - uid: 5504 + components: + - type: Transform + pos: -37.5,-12.5 + parent: 2 + - uid: 5505 + components: + - type: Transform + pos: -37.5,-13.5 + parent: 2 + - uid: 5506 + components: + - type: Transform + pos: -37.5,-14.5 + parent: 2 + - uid: 5507 + components: + - type: Transform + pos: -37.5,-15.5 + parent: 2 + - uid: 5508 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 5509 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 2 + - uid: 5510 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 2 + - uid: 5511 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 + - uid: 5512 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 5513 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 2 + - uid: 5514 + components: + - type: Transform + pos: -37.5,-22.5 + parent: 2 + - uid: 5515 + components: + - type: Transform + pos: -37.5,-23.5 + parent: 2 + - uid: 5516 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 2 + - uid: 5517 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 2 + - uid: 5518 + components: + - type: Transform + pos: -38.5,-25.5 + parent: 2 + - uid: 5519 + components: + - type: Transform + pos: -38.5,-26.5 + parent: 2 + - uid: 5520 + components: + - type: Transform + pos: -38.5,-27.5 + parent: 2 + - uid: 5521 + components: + - type: Transform + pos: -38.5,-28.5 + parent: 2 + - uid: 5522 + components: + - type: Transform + pos: -38.5,-29.5 + parent: 2 + - uid: 5523 + components: + - type: Transform + pos: -38.5,-30.5 + parent: 2 + - uid: 5524 + components: + - type: Transform + pos: -38.5,-31.5 + parent: 2 + - uid: 5525 + components: + - type: Transform + pos: -38.5,-32.5 + parent: 2 + - uid: 5526 + components: + - type: Transform + pos: -38.5,-33.5 + parent: 2 + - uid: 5527 + components: + - type: Transform + pos: -38.5,-34.5 + parent: 2 + - uid: 5528 + components: + - type: Transform + pos: -38.5,-35.5 + parent: 2 + - uid: 5529 + components: + - type: Transform + pos: -38.5,-36.5 + parent: 2 + - uid: 5530 + components: + - type: Transform + pos: -38.5,-37.5 + parent: 2 + - uid: 5531 + components: + - type: Transform + pos: -37.5,-37.5 + parent: 2 + - uid: 5532 + components: + - type: Transform + pos: -36.5,-37.5 + parent: 2 + - uid: 5533 + components: + - type: Transform + pos: -35.5,-37.5 + parent: 2 + - uid: 5534 + components: + - type: Transform + pos: -34.5,-37.5 + parent: 2 + - uid: 5535 + components: + - type: Transform + pos: -33.5,-37.5 + parent: 2 + - uid: 5536 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 + - uid: 5537 + components: + - type: Transform + pos: -33.5,-39.5 + parent: 2 + - uid: 5538 + components: + - type: Transform + pos: -33.5,-40.5 + parent: 2 + - uid: 5539 + components: + - type: Transform + pos: -33.5,-41.5 + parent: 2 + - uid: 5540 + components: + - type: Transform + pos: -33.5,-42.5 + parent: 2 + - uid: 5541 + components: + - type: Transform + pos: -33.5,-43.5 + parent: 2 + - uid: 5542 + components: + - type: Transform + pos: -32.5,-43.5 + parent: 2 + - uid: 5543 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 + - uid: 5544 + components: + - type: Transform + pos: -30.5,-43.5 + parent: 2 + - uid: 5545 + components: + - type: Transform + pos: -29.5,-43.5 + parent: 2 + - uid: 5546 + components: + - type: Transform + pos: -28.5,-43.5 + parent: 2 + - uid: 5547 + components: + - type: Transform + pos: -27.5,-43.5 + parent: 2 + - uid: 5548 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 2 + - uid: 5549 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 2 + - uid: 5550 + components: + - type: Transform + pos: -24.5,-43.5 + parent: 2 + - uid: 5551 + components: + - type: Transform + pos: -23.5,-43.5 + parent: 2 + - uid: 5552 + components: + - type: Transform + pos: -22.5,-43.5 + parent: 2 + - uid: 5553 + components: + - type: Transform + pos: -24.5,17.5 + parent: 2 + - uid: 5554 + components: + - type: Transform + pos: -24.5,18.5 + parent: 2 + - uid: 5555 + components: + - type: Transform + pos: -24.5,19.5 + parent: 2 + - uid: 5556 + components: + - type: Transform + pos: -24.5,20.5 + parent: 2 + - uid: 5557 + components: + - type: Transform + pos: -25.5,20.5 + parent: 2 + - uid: 5558 + components: + - type: Transform + pos: -26.5,20.5 + parent: 2 + - uid: 5559 + components: + - type: Transform + pos: -27.5,20.5 + parent: 2 + - uid: 5560 + components: + - type: Transform + pos: -27.5,21.5 + parent: 2 + - uid: 5561 + components: + - type: Transform + pos: -27.5,22.5 + parent: 2 + - uid: 5562 + components: + - type: Transform + pos: -27.5,23.5 + parent: 2 + - uid: 5563 + components: + - type: Transform + pos: -27.5,24.5 + parent: 2 + - uid: 5564 + components: + - type: Transform + pos: -27.5,25.5 + parent: 2 + - uid: 5565 + components: + - type: Transform + pos: -27.5,26.5 + parent: 2 + - uid: 5566 + components: + - type: Transform + pos: -27.5,27.5 + parent: 2 + - uid: 5567 + components: + - type: Transform + pos: -27.5,28.5 + parent: 2 + - uid: 5568 + components: + - type: Transform + pos: -27.5,29.5 + parent: 2 + - uid: 5569 + components: + - type: Transform + pos: -26.5,29.5 + parent: 2 + - uid: 5570 + components: + - type: Transform + pos: -25.5,29.5 + parent: 2 + - uid: 5571 + components: + - type: Transform + pos: -24.5,29.5 + parent: 2 + - uid: 5572 + components: + - type: Transform + pos: -23.5,29.5 + parent: 2 + - uid: 5573 + components: + - type: Transform + pos: -23.5,28.5 + parent: 2 + - uid: 5574 + components: + - type: Transform + pos: -22.5,28.5 + parent: 2 + - uid: 5575 + components: + - type: Transform + pos: -21.5,28.5 + parent: 2 + - uid: 5576 + components: + - type: Transform + pos: -20.5,28.5 + parent: 2 + - uid: 5577 + components: + - type: Transform + pos: -19.5,28.5 + parent: 2 + - uid: 5578 + components: + - type: Transform + pos: -18.5,28.5 + parent: 2 + - uid: 5579 + components: + - type: Transform + pos: -17.5,28.5 + parent: 2 + - uid: 5580 + components: + - type: Transform + pos: -16.5,28.5 + parent: 2 + - uid: 5581 + components: + - type: Transform + pos: -15.5,28.5 + parent: 2 + - uid: 5582 + components: + - type: Transform + pos: -15.5,27.5 + parent: 2 + - uid: 5583 + components: + - type: Transform + pos: -15.5,26.5 + parent: 2 + - uid: 5584 + components: + - type: Transform + pos: -15.5,25.5 + parent: 2 + - uid: 5585 + components: + - type: Transform + pos: -15.5,24.5 + parent: 2 + - uid: 5586 + components: + - type: Transform + pos: -15.5,23.5 + parent: 2 + - uid: 5587 + components: + - type: Transform + pos: -15.5,22.5 + parent: 2 + - uid: 5588 + components: + - type: Transform + pos: -15.5,21.5 + parent: 2 + - uid: 5589 + components: + - type: Transform + pos: -15.5,20.5 + parent: 2 + - uid: 5590 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - uid: 5591 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 5592 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - uid: 5593 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 5594 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 5595 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 5596 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 5597 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 5598 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 5599 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - uid: 5600 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 5601 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 5602 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - uid: 5603 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 5604 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - uid: 5605 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 5606 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 5607 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 5608 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 5609 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 5610 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 5611 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 5612 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 5613 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 2 + - uid: 5614 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 + - uid: 5615 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 + - uid: 5616 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 5617 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 + - uid: 5618 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 5619 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - uid: 5620 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 5621 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 2 + - uid: 5622 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 + - uid: 5623 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 5624 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 2 + - uid: 5625 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - uid: 5626 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 5627 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - uid: 5628 + components: + - type: Transform + pos: -2.5,0.5 + parent: 2 + - uid: 5629 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 5630 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 5631 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - uid: 5632 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 5633 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - uid: 5634 + components: + - type: Transform + pos: -8.5,0.5 + parent: 2 + - uid: 5635 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - uid: 5636 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - uid: 5637 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 + - uid: 5638 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 5639 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - uid: 5640 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 + - uid: 5641 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - uid: 5642 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 + - uid: 5643 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - uid: 5644 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 5645 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - uid: 5646 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 5647 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 5648 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 5649 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 5650 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 5651 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 5652 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 + - uid: 5653 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 5654 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 5655 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 5656 + components: + - type: Transform + pos: 11.5,1.5 + parent: 2 + - uid: 5657 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 5658 + components: + - type: Transform + pos: 13.5,1.5 + parent: 2 + - uid: 5659 + components: + - type: Transform + pos: 14.5,1.5 + parent: 2 + - uid: 5660 + components: + - type: Transform + pos: -1.5,37.5 + parent: 2 + - uid: 5661 + components: + - type: Transform + pos: -0.5,37.5 + parent: 2 + - uid: 5662 + components: + - type: Transform + pos: -2.5,37.5 + parent: 2 + - uid: 5663 + components: + - type: Transform + pos: -3.5,37.5 + parent: 2 + - uid: 5664 + components: + - type: Transform + pos: -3.5,36.5 + parent: 2 + - uid: 5665 + components: + - type: Transform + pos: -3.5,35.5 + parent: 2 + - uid: 5666 + components: + - type: Transform + pos: -3.5,34.5 + parent: 2 + - uid: 5667 + components: + - type: Transform + pos: -3.5,33.5 + parent: 2 + - uid: 5668 + components: + - type: Transform + pos: -3.5,32.5 + parent: 2 + - uid: 5669 + components: + - type: Transform + pos: -3.5,31.5 + parent: 2 + - uid: 5670 + components: + - type: Transform + pos: -3.5,30.5 + parent: 2 + - uid: 5671 + components: + - type: Transform + pos: -3.5,29.5 + parent: 2 + - uid: 5672 + components: + - type: Transform + pos: -3.5,28.5 + parent: 2 + - uid: 5673 + components: + - type: Transform + pos: -4.5,28.5 + parent: 2 + - uid: 5674 + components: + - type: Transform + pos: -5.5,28.5 + parent: 2 + - uid: 5675 + components: + - type: Transform + pos: -6.5,28.5 + parent: 2 + - uid: 5676 + components: + - type: Transform + pos: -7.5,28.5 + parent: 2 + - uid: 5677 + components: + - type: Transform + pos: -8.5,28.5 + parent: 2 + - uid: 5678 + components: + - type: Transform + pos: -9.5,28.5 + parent: 2 + - uid: 5679 + components: + - type: Transform + pos: -10.5,28.5 + parent: 2 + - uid: 5680 + components: + - type: Transform + pos: -11.5,28.5 + parent: 2 + - uid: 5681 + components: + - type: Transform + pos: -12.5,28.5 + parent: 2 + - uid: 5682 + components: + - type: Transform + pos: -13.5,28.5 + parent: 2 + - uid: 5683 + components: + - type: Transform + pos: -14.5,28.5 + parent: 2 + - uid: 5684 + components: + - type: Transform + pos: -4.5,77.5 + parent: 2 + - uid: 5685 + components: + - type: Transform + pos: -3.5,76.5 + parent: 2 + - uid: 5686 + components: + - type: Transform + pos: -5.5,76.5 + parent: 2 + - uid: 5687 + components: + - type: Transform + pos: -6.5,76.5 + parent: 2 + - uid: 5688 + components: + - type: Transform + pos: -4.5,75.5 + parent: 2 + - uid: 5689 + components: + - type: Transform + pos: -4.5,74.5 + parent: 2 + - uid: 5690 + components: + - type: Transform + pos: -4.5,73.5 + parent: 2 + - uid: 5691 + components: + - type: Transform + pos: -4.5,72.5 + parent: 2 + - uid: 5692 + components: + - type: Transform + pos: -4.5,71.5 + parent: 2 + - uid: 5693 + components: + - type: Transform + pos: -4.5,70.5 + parent: 2 + - uid: 5694 + components: + - type: Transform + pos: -4.5,69.5 + parent: 2 + - uid: 5695 + components: + - type: Transform + pos: -4.5,68.5 + parent: 2 + - uid: 5696 + components: + - type: Transform + pos: -4.5,62.5 + parent: 2 + - uid: 5697 + components: + - type: Transform + pos: -4.5,61.5 + parent: 2 + - uid: 5698 + components: + - type: Transform + pos: -4.5,60.5 + parent: 2 + - uid: 5699 + components: + - type: Transform + pos: -4.5,59.5 + parent: 2 + - uid: 5700 + components: + - type: Transform + pos: -3.5,59.5 + parent: 2 + - uid: 5701 + components: + - type: Transform + pos: -2.5,59.5 + parent: 2 + - uid: 5702 + components: + - type: Transform + pos: -1.5,59.5 + parent: 2 + - uid: 5703 + components: + - type: Transform + pos: -0.5,59.5 + parent: 2 + - uid: 5704 + components: + - type: Transform + pos: -0.5,58.5 + parent: 2 + - uid: 5705 + components: + - type: Transform + pos: -0.5,57.5 + parent: 2 + - uid: 5706 + components: + - type: Transform + pos: -0.5,56.5 + parent: 2 + - uid: 5707 + components: + - type: Transform + pos: -0.5,55.5 + parent: 2 + - uid: 5708 + components: + - type: Transform + pos: -0.5,54.5 + parent: 2 + - uid: 5709 + components: + - type: Transform + pos: -0.5,53.5 + parent: 2 + - uid: 5710 + components: + - type: Transform + pos: -0.5,52.5 + parent: 2 + - uid: 5711 + components: + - type: Transform + pos: -0.5,51.5 + parent: 2 + - uid: 5712 + components: + - type: Transform + pos: -0.5,50.5 + parent: 2 + - uid: 5713 + components: + - type: Transform + pos: -0.5,49.5 + parent: 2 + - uid: 5714 + components: + - type: Transform + pos: -0.5,48.5 + parent: 2 + - uid: 5715 + components: + - type: Transform + pos: -0.5,47.5 + parent: 2 + - uid: 5716 + components: + - type: Transform + pos: -0.5,46.5 + parent: 2 + - uid: 5717 + components: + - type: Transform + pos: -0.5,45.5 + parent: 2 + - uid: 5718 + components: + - type: Transform + pos: -0.5,44.5 + parent: 2 + - uid: 5719 + components: + - type: Transform + pos: -0.5,43.5 + parent: 2 + - uid: 5720 + components: + - type: Transform + pos: -3.5,70.5 + parent: 2 + - uid: 5721 + components: + - type: Transform + pos: -2.5,70.5 + parent: 2 + - uid: 5722 + components: + - type: Transform + pos: -1.5,70.5 + parent: 2 + - uid: 5723 + components: + - type: Transform + pos: -0.5,70.5 + parent: 2 + - uid: 5724 + components: + - type: Transform + pos: 0.5,70.5 + parent: 2 + - uid: 5725 + components: + - type: Transform + pos: 1.5,70.5 + parent: 2 + - uid: 5726 + components: + - type: Transform + pos: 2.5,70.5 + parent: 2 + - uid: 5727 + components: + - type: Transform + pos: 3.5,70.5 + parent: 2 + - uid: 5728 + components: + - type: Transform + pos: 4.5,70.5 + parent: 2 + - uid: 5729 + components: + - type: Transform + pos: 5.5,70.5 + parent: 2 + - uid: 5730 + components: + - type: Transform + pos: 6.5,70.5 + parent: 2 + - uid: 5731 + components: + - type: Transform + pos: 6.5,69.5 + parent: 2 + - uid: 5732 + components: + - type: Transform + pos: 6.5,68.5 + parent: 2 + - uid: 5733 + components: + - type: Transform + pos: 6.5,62.5 + parent: 2 + - uid: 5734 + components: + - type: Transform + pos: 6.5,61.5 + parent: 2 + - uid: 5735 + components: + - type: Transform + pos: 6.5,60.5 + parent: 2 + - uid: 5736 + components: + - type: Transform + pos: 6.5,59.5 + parent: 2 + - uid: 5737 + components: + - type: Transform + pos: 5.5,59.5 + parent: 2 + - uid: 5738 + components: + - type: Transform + pos: 4.5,59.5 + parent: 2 + - uid: 5739 + components: + - type: Transform + pos: 3.5,59.5 + parent: 2 + - uid: 5740 + components: + - type: Transform + pos: 2.5,59.5 + parent: 2 + - uid: 5741 + components: + - type: Transform + pos: 1.5,59.5 + parent: 2 + - uid: 5742 + components: + - type: Transform + pos: 0.5,59.5 + parent: 2 + - uid: 5743 + components: + - type: Transform + pos: 2.5,58.5 + parent: 2 + - uid: 5744 + components: + - type: Transform + pos: 2.5,57.5 + parent: 2 + - uid: 5745 + components: + - type: Transform + pos: 2.5,56.5 + parent: 2 + - uid: 5746 + components: + - type: Transform + pos: 2.5,55.5 + parent: 2 + - uid: 5747 + components: + - type: Transform + pos: 2.5,54.5 + parent: 2 + - uid: 5748 + components: + - type: Transform + pos: 2.5,53.5 + parent: 2 + - uid: 5749 + components: + - type: Transform + pos: 2.5,52.5 + parent: 2 + - uid: 5750 + components: + - type: Transform + pos: 2.5,51.5 + parent: 2 + - uid: 5751 + components: + - type: Transform + pos: 2.5,50.5 + parent: 2 + - uid: 5752 + components: + - type: Transform + pos: 2.5,49.5 + parent: 2 + - uid: 5753 + components: + - type: Transform + pos: 2.5,48.5 + parent: 2 + - uid: 5754 + components: + - type: Transform + pos: 2.5,47.5 + parent: 2 + - uid: 5755 + components: + - type: Transform + pos: 2.5,46.5 + parent: 2 + - uid: 5756 + components: + - type: Transform + pos: 2.5,45.5 + parent: 2 + - uid: 5757 + components: + - type: Transform + pos: 2.5,44.5 + parent: 2 + - uid: 5758 + components: + - type: Transform + pos: 2.5,43.5 + parent: 2 + - uid: 5759 + components: + - type: Transform + pos: 2.5,42.5 + parent: 2 + - uid: 5760 + components: + - type: Transform + pos: 1.5,42.5 + parent: 2 + - uid: 5761 + components: + - type: Transform + pos: -4.5,79.5 + parent: 2 + - uid: 5762 + components: + - type: Transform + pos: -4.5,80.5 + parent: 2 + - uid: 5763 + components: + - type: Transform + pos: -4.5,81.5 + parent: 2 + - uid: 5764 + components: + - type: Transform + pos: -4.5,82.5 + parent: 2 + - uid: 5765 + components: + - type: Transform + pos: -4.5,83.5 + parent: 2 + - uid: 5766 + components: + - type: Transform + pos: -4.5,84.5 + parent: 2 + - uid: 5767 + components: + - type: Transform + pos: -3.5,84.5 + parent: 2 + - uid: 5768 + components: + - type: Transform + pos: -2.5,84.5 + parent: 2 + - uid: 5769 + components: + - type: Transform + pos: -1.5,84.5 + parent: 2 + - uid: 5770 + components: + - type: Transform + pos: -0.5,84.5 + parent: 2 + - uid: 5771 + components: + - type: Transform + pos: 0.5,84.5 + parent: 2 + - uid: 5772 + components: + - type: Transform + pos: 1.5,84.5 + parent: 2 + - uid: 5773 + components: + - type: Transform + pos: 2.5,84.5 + parent: 2 + - uid: 5774 + components: + - type: Transform + pos: 3.5,84.5 + parent: 2 + - uid: 5775 + components: + - type: Transform + pos: 4.5,84.5 + parent: 2 + - uid: 5776 + components: + - type: Transform + pos: 5.5,84.5 + parent: 2 + - uid: 5777 + components: + - type: Transform + pos: 6.5,84.5 + parent: 2 + - uid: 5778 + components: + - type: Transform + pos: 7.5,84.5 + parent: 2 + - uid: 5779 + components: + - type: Transform + pos: 7.5,83.5 + parent: 2 + - uid: 5780 + components: + - type: Transform + pos: 7.5,82.5 + parent: 2 + - uid: 5781 + components: + - type: Transform + pos: 7.5,81.5 + parent: 2 + - uid: 5782 + components: + - type: Transform + pos: 7.5,80.5 + parent: 2 + - uid: 5783 + components: + - type: Transform + pos: 7.5,79.5 + parent: 2 + - uid: 5784 + components: + - type: Transform + pos: 7.5,78.5 + parent: 2 + - uid: 5785 + components: + - type: Transform + pos: 7.5,77.5 + parent: 2 + - uid: 5786 + components: + - type: Transform + pos: 7.5,76.5 + parent: 2 + - uid: 5787 + components: + - type: Transform + pos: 7.5,75.5 + parent: 2 + - uid: 5788 + components: + - type: Transform + pos: 7.5,74.5 + parent: 2 + - uid: 5789 + components: + - type: Transform + pos: 7.5,73.5 + parent: 2 + - uid: 5790 + components: + - type: Transform + pos: 7.5,72.5 + parent: 2 + - uid: 5791 + components: + - type: Transform + pos: 7.5,71.5 + parent: 2 + - uid: 5792 + components: + - type: Transform + pos: 7.5,70.5 + parent: 2 + - uid: 5793 + components: + - type: Transform + pos: -0.5,60.5 + parent: 2 + - uid: 5794 + components: + - type: Transform + pos: -0.5,61.5 + parent: 2 + - uid: 5795 + components: + - type: Transform + pos: -1.5,61.5 + parent: 2 + - uid: 5796 + components: + - type: Transform + pos: -2.5,-47.5 + parent: 2 + - uid: 5797 + components: + - type: Transform + pos: 8.5,-52.5 + parent: 2 + - uid: 5798 + components: + - type: Transform + pos: 9.5,-52.5 + parent: 2 + - uid: 5799 + components: + - type: Transform + pos: 10.5,-52.5 + parent: 2 + - uid: 5800 + components: + - type: Transform + pos: 11.5,-52.5 + parent: 2 + - uid: 5801 + components: + - type: Transform + pos: 11.5,-53.5 + parent: 2 + - uid: 5803 + components: + - type: Transform + pos: 6.5,29.5 + parent: 2 + - uid: 5804 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 + - uid: 5805 + components: + - type: Transform + pos: 7.5,30.5 + parent: 2 + - uid: 5806 + components: + - type: Transform + pos: 7.5,31.5 + parent: 2 + - uid: 5807 + components: + - type: Transform + pos: 6.5,31.5 + parent: 2 + - uid: 5808 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - uid: 5809 + components: + - type: Transform + pos: 7.5,32.5 + parent: 2 + - uid: 5810 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - uid: 5811 + components: + - type: Transform + pos: 6.5,30.5 + parent: 2 + - uid: 5812 + components: + - type: Transform + pos: 6.5,32.5 + parent: 2 + - uid: 5813 + components: + - type: Transform + pos: 8.5,32.5 + parent: 2 + - uid: 5814 + components: + - type: Transform + pos: 8.5,29.5 + parent: 2 + - uid: 5815 + components: + - type: Transform + pos: -5.5,77.5 + parent: 2 + - uid: 5816 + components: + - type: Transform + pos: -34.5,-56.5 + parent: 2 + - uid: 5817 + components: + - type: Transform + pos: -33.5,-56.5 + parent: 2 + - uid: 5818 + components: + - type: Transform + pos: -35.5,-56.5 + parent: 2 + - uid: 5819 + components: + - type: Transform + pos: 8.5,-35.5 + parent: 2 + - uid: 5820 + components: + - type: Transform + pos: 7.5,-35.5 + parent: 2 + - uid: 5821 + components: + - type: Transform + pos: 3.5,-35.5 + parent: 2 + - uid: 5822 + components: + - type: Transform + pos: 30.5,-46.5 + parent: 2 + - uid: 5823 + components: + - type: Transform + pos: 32.5,-47.5 + parent: 2 + - uid: 5824 + components: + - type: Transform + pos: 31.5,-46.5 + parent: 2 + - uid: 5825 + components: + - type: Transform + pos: 32.5,-49.5 + parent: 2 + - uid: 5826 + components: + - type: Transform + pos: 37.5,-45.5 + parent: 2 + - uid: 5827 + components: + - type: Transform + pos: 37.5,-46.5 + parent: 2 + - uid: 5828 + components: + - type: Transform + pos: 38.5,-46.5 + parent: 2 + - uid: 5829 + components: + - type: Transform + pos: 39.5,-46.5 + parent: 2 + - uid: 5830 + components: + - type: Transform + pos: 40.5,-46.5 + parent: 2 + - uid: 5831 + components: + - type: Transform + pos: 41.5,-46.5 + parent: 2 + - uid: 5832 + components: + - type: Transform + pos: 5.5,-35.5 + parent: 2 + - uid: 5833 + components: + - type: Transform + pos: -17.5,-56.5 + parent: 2 + - uid: 5834 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 2 + - uid: 5835 + components: + - type: Transform + pos: -19.5,-55.5 + parent: 2 + - uid: 5836 + components: + - type: Transform + pos: -18.5,-55.5 + parent: 2 + - uid: 5837 + components: + - type: Transform + pos: -17.5,-55.5 + parent: 2 + - uid: 5838 + components: + - type: Transform + pos: -15.5,-55.5 + parent: 2 + - uid: 5839 + components: + - type: Transform + pos: -14.5,-58.5 + parent: 2 + - uid: 5840 + components: + - type: Transform + pos: -13.5,-58.5 + parent: 2 + - uid: 5841 + components: + - type: Transform + pos: -15.5,-58.5 + parent: 2 + - uid: 5842 + components: + - type: Transform + pos: -18.5,-58.5 + parent: 2 + - uid: 5843 + components: + - type: Transform + pos: -17.5,-58.5 + parent: 2 + - uid: 5844 + components: + - type: Transform + pos: -16.5,-58.5 + parent: 2 + - uid: 5845 + components: + - type: Transform + pos: 6.5,-35.5 + parent: 2 + - uid: 5846 + components: + - type: Transform + pos: -15.5,-54.5 + parent: 2 + - uid: 5847 + components: + - type: Transform + pos: -15.5,-53.5 + parent: 2 + - uid: 5848 + components: + - type: Transform + pos: 45.5,23.5 + parent: 2 + - uid: 5849 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 + - uid: 5850 + components: + - type: Transform + pos: -4.5,77.5 + parent: 2 + - uid: 5851 + components: + - type: Transform + pos: 4.5,32.5 + parent: 2 + - uid: 5852 + components: + - type: Transform + pos: 8.5,34.5 + parent: 2 + - uid: 5853 + components: + - type: Transform + pos: 8.5,35.5 + parent: 2 + - uid: 5854 + components: + - type: Transform + pos: -3.5,76.5 + parent: 2 + - uid: 5855 + components: + - type: Transform + pos: -3.5,77.5 + parent: 2 + - uid: 5856 + components: + - type: Transform + pos: -3.5,75.5 + parent: 2 + - uid: 5857 + components: + - type: Transform + pos: -4.5,78.5 + parent: 2 + - uid: 5858 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - uid: 5859 + components: + - type: Transform + pos: 62.5,18.5 + parent: 2 + - uid: 5860 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 + - uid: 5861 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 5862 + components: + - type: Transform + pos: 62.5,21.5 + parent: 2 + - uid: 5863 + components: + - type: Transform + pos: 64.5,21.5 + parent: 2 + - uid: 5864 + components: + - type: Transform + pos: 64.5,20.5 + parent: 2 + - uid: 5865 + components: + - type: Transform + pos: 64.5,19.5 + parent: 2 + - uid: 5866 + components: + - type: Transform + pos: 64.5,18.5 + parent: 2 + - uid: 5867 + components: + - type: Transform + pos: 66.5,18.5 + parent: 2 + - uid: 5868 + components: + - type: Transform + pos: 66.5,19.5 + parent: 2 + - uid: 5869 + components: + - type: Transform + pos: 66.5,20.5 + parent: 2 + - uid: 5870 + components: + - type: Transform + pos: 66.5,21.5 + parent: 2 + - uid: 5871 + components: + - type: Transform + pos: 68.5,21.5 + parent: 2 + - uid: 5872 + components: + - type: Transform + pos: 68.5,20.5 + parent: 2 + - uid: 5873 + components: + - type: Transform + pos: 68.5,19.5 + parent: 2 + - uid: 5874 + components: + - type: Transform + pos: 70.5,19.5 + parent: 2 + - uid: 5875 + components: + - type: Transform + pos: 70.5,20.5 + parent: 2 + - uid: 5876 + components: + - type: Transform + pos: 70.5,21.5 + parent: 2 + - uid: 5877 + components: + - type: Transform + pos: 72.5,21.5 + parent: 2 + - uid: 5878 + components: + - type: Transform + pos: 72.5,20.5 + parent: 2 + - uid: 5879 + components: + - type: Transform + pos: 72.5,19.5 + parent: 2 + - uid: 5880 + components: + - type: Transform + pos: 74.5,19.5 + parent: 2 + - uid: 5881 + components: + - type: Transform + pos: 74.5,20.5 + parent: 2 + - uid: 5882 + components: + - type: Transform + pos: 74.5,21.5 + parent: 2 + - uid: 5883 + components: + - type: Transform + pos: 70.5,25.5 + parent: 2 + - uid: 5884 + components: + - type: Transform + pos: 74.5,25.5 + parent: 2 + - uid: 5885 + components: + - type: Transform + pos: 74.5,26.5 + parent: 2 + - uid: 5886 + components: + - type: Transform + pos: 74.5,27.5 + parent: 2 + - uid: 5887 + components: + - type: Transform + pos: 72.5,27.5 + parent: 2 + - uid: 5888 + components: + - type: Transform + pos: 72.5,26.5 + parent: 2 + - uid: 5889 + components: + - type: Transform + pos: 72.5,25.5 + parent: 2 + - uid: 5890 + components: + - type: Transform + pos: 70.5,26.5 + parent: 2 + - uid: 5891 + components: + - type: Transform + pos: 70.5,27.5 + parent: 2 + - uid: 5892 + components: + - type: Transform + pos: 68.5,27.5 + parent: 2 + - uid: 5893 + components: + - type: Transform + pos: 68.5,26.5 + parent: 2 + - uid: 5894 + components: + - type: Transform + pos: 68.5,25.5 + parent: 2 + - uid: 5895 + components: + - type: Transform + pos: 66.5,25.5 + parent: 2 + - uid: 5896 + components: + - type: Transform + pos: 66.5,26.5 + parent: 2 + - uid: 5897 + components: + - type: Transform + pos: 66.5,27.5 + parent: 2 + - uid: 5898 + components: + - type: Transform + pos: 66.5,28.5 + parent: 2 + - uid: 5899 + components: + - type: Transform + pos: 64.5,28.5 + parent: 2 + - uid: 5900 + components: + - type: Transform + pos: 64.5,27.5 + parent: 2 + - uid: 5901 + components: + - type: Transform + pos: 64.5,26.5 + parent: 2 + - uid: 5902 + components: + - type: Transform + pos: 64.5,25.5 + parent: 2 + - uid: 5903 + components: + - type: Transform + pos: 62.5,25.5 + parent: 2 + - uid: 5904 + components: + - type: Transform + pos: 62.5,26.5 + parent: 2 + - uid: 5905 + components: + - type: Transform + pos: 62.5,27.5 + parent: 2 + - uid: 5906 + components: + - type: Transform + pos: 62.5,28.5 + parent: 2 + - uid: 5907 + components: + - type: Transform + pos: 62.5,29.5 + parent: 2 + - uid: 5908 + components: + - type: Transform + pos: 60.5,29.5 + parent: 2 + - uid: 5909 + components: + - type: Transform + pos: 60.5,28.5 + parent: 2 + - uid: 5910 + components: + - type: Transform + pos: 60.5,27.5 + parent: 2 + - uid: 5911 + components: + - type: Transform + pos: 60.5,26.5 + parent: 2 + - uid: 5912 + components: + - type: Transform + pos: 60.5,25.5 + parent: 2 + - uid: 5913 + components: + - type: Transform + pos: -33.5,-54.5 + parent: 2 + - uid: 5914 + components: + - type: Transform + pos: 10.5,-53.5 + parent: 2 + - uid: 5915 + components: + - type: Transform + pos: 45.5,22.5 + parent: 2 + - uid: 5916 + components: + - type: Transform + pos: -7.5,-60.5 + parent: 2 + - uid: 5917 + components: + - type: Transform + pos: -6.5,-60.5 + parent: 2 + - uid: 5918 + components: + - type: Transform + pos: -5.5,-60.5 + parent: 2 + - uid: 5919 + components: + - type: Transform + pos: -4.5,-60.5 + parent: 2 + - uid: 5920 + components: + - type: Transform + pos: -3.5,-60.5 + parent: 2 + - uid: 5921 + components: + - type: Transform + pos: -2.5,-60.5 + parent: 2 + - uid: 5922 + components: + - type: Transform + pos: -1.5,-60.5 + parent: 2 + - uid: 5923 + components: + - type: Transform + pos: -0.5,-60.5 + parent: 2 + - uid: 5924 + components: + - type: Transform + pos: 0.5,-60.5 + parent: 2 + - uid: 5925 + components: + - type: Transform + pos: -3.5,-58.5 + parent: 2 + - uid: 5926 + components: + - type: Transform + pos: -3.5,-57.5 + parent: 2 + - uid: 5927 + components: + - type: Transform + pos: -3.5,-56.5 + parent: 2 + - uid: 5928 + components: + - type: Transform + pos: -2.5,-58.5 + parent: 2 + - uid: 5929 + components: + - type: Transform + pos: -2.5,-57.5 + parent: 2 + - uid: 5930 + components: + - type: Transform + pos: -2.5,-56.5 + parent: 2 + - uid: 5931 + components: + - type: Transform + pos: -1.5,-58.5 + parent: 2 + - uid: 5932 + components: + - type: Transform + pos: -1.5,-57.5 + parent: 2 + - uid: 5933 + components: + - type: Transform + pos: -1.5,-56.5 + parent: 2 + - uid: 5934 + components: + - type: Transform + pos: -0.5,-58.5 + parent: 2 + - uid: 5935 + components: + - type: Transform + pos: -0.5,-57.5 + parent: 2 + - uid: 5936 + components: + - type: Transform + pos: -0.5,-56.5 + parent: 2 + - uid: 5937 + components: + - type: Transform + pos: -6.5,-58.5 + parent: 2 + - uid: 5938 + components: + - type: Transform + pos: -6.5,-57.5 + parent: 2 + - uid: 5939 + components: + - type: Transform + pos: -6.5,-56.5 + parent: 2 + - uid: 5940 + components: + - type: Transform + pos: 34.5,-46.5 + parent: 2 + - uid: 5941 + components: + - type: Transform + pos: 32.5,-46.5 + parent: 2 + - uid: 5942 + components: + - type: Transform + pos: 34.5,-45.5 + parent: 2 + - uid: 5943 + components: + - type: Transform + pos: 36.5,-45.5 + parent: 2 + - uid: 5944 + components: + - type: Transform + pos: 33.5,-49.5 + parent: 2 + - uid: 5945 + components: + - type: Transform + pos: 34.5,-49.5 + parent: 2 + - uid: 5946 + components: + - type: Transform + pos: 35.5,-49.5 + parent: 2 + - uid: 5947 + components: + - type: Transform + pos: 35.5,-47.5 + parent: 2 + - uid: 5948 + components: + - type: Transform + pos: 35.5,-48.5 + parent: 2 + - uid: 5949 + components: + - type: Transform + pos: 35.5,-46.5 + parent: 2 + - uid: 5950 + components: + - type: Transform + pos: 32.5,-48.5 + parent: 2 + - uid: 5951 + components: + - type: Transform + pos: -17.5,-54.5 + parent: 2 + - uid: 5952 + components: + - type: Transform + pos: -18.5,-54.5 + parent: 2 + - uid: 5953 + components: + - type: Transform + pos: -19.5,-54.5 + parent: 2 + - uid: 5954 + components: + - type: Transform + pos: 28.5,-40.5 + parent: 2 + - uid: 5955 + components: + - type: Transform + pos: 27.5,-40.5 + parent: 2 + - uid: 5956 + components: + - type: Transform + pos: 26.5,-40.5 + parent: 2 + - uid: 5957 + components: + - type: Transform + pos: 25.5,-40.5 + parent: 2 + - uid: 5958 + components: + - type: Transform + pos: 24.5,-40.5 + parent: 2 + - uid: 5959 + components: + - type: Transform + pos: 23.5,-40.5 + parent: 2 + - uid: 5960 + components: + - type: Transform + pos: 22.5,-40.5 + parent: 2 + - uid: 5961 + components: + - type: Transform + pos: 21.5,-40.5 + parent: 2 + - uid: 5962 + components: + - type: Transform + pos: 20.5,-40.5 + parent: 2 + - uid: 5963 + components: + - type: Transform + pos: 19.5,-40.5 + parent: 2 + - uid: 5964 + components: + - type: Transform + pos: 18.5,-40.5 + parent: 2 + - uid: 5965 + components: + - type: Transform + pos: 17.5,-40.5 + parent: 2 + - uid: 5966 + components: + - type: Transform + pos: 16.5,-40.5 + parent: 2 + - uid: 5967 + components: + - type: Transform + pos: 15.5,-40.5 + parent: 2 + - uid: 5968 + components: + - type: Transform + pos: 14.5,-40.5 + parent: 2 + - uid: 5969 + components: + - type: Transform + pos: 13.5,-40.5 + parent: 2 + - uid: 5970 + components: + - type: Transform + pos: 12.5,-40.5 + parent: 2 + - uid: 5971 + components: + - type: Transform + pos: 11.5,-40.5 + parent: 2 + - uid: 5972 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 2 + - uid: 5973 + components: + - type: Transform + pos: 9.5,-40.5 + parent: 2 + - uid: 5974 + components: + - type: Transform + pos: 8.5,-40.5 + parent: 2 + - uid: 5975 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 2 + - uid: 5976 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 2 + - uid: 5977 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 2 + - uid: 5978 + components: + - type: Transform + pos: 5.5,-40.5 + parent: 2 + - uid: 5979 + components: + - type: Transform + pos: 6.5,-43.5 + parent: 2 + - uid: 5980 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - uid: 5981 + components: + - type: Transform + pos: 6.5,-45.5 + parent: 2 + - uid: 5982 + components: + - type: Transform + pos: 6.5,-46.5 + parent: 2 + - uid: 5983 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 2 + - uid: 5984 + components: + - type: Transform + pos: 34.5,-44.5 + parent: 2 + - uid: 5985 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 2 + - uid: 5986 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 2 + - uid: 5987 + components: + - type: Transform + pos: 44.5,25.5 + parent: 2 + - uid: 5988 + components: + - type: Transform + pos: 45.5,25.5 + parent: 2 + - uid: 5989 + components: + - type: Transform + pos: 45.5,24.5 + parent: 2 + - uid: 5990 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 5991 + components: + - type: Transform + pos: -32.5,-56.5 + parent: 2 + - uid: 5992 + components: + - type: Transform + pos: -1.5,-69.5 + parent: 2 + - uid: 5993 + components: + - type: Transform + pos: -1.5,-70.5 + parent: 2 + - uid: 5994 + components: + - type: Transform + pos: 2.5,-68.5 + parent: 2 + - uid: 5995 + components: + - type: Transform + pos: 2.5,-70.5 + parent: 2 + - uid: 5996 + components: + - type: Transform + pos: 2.5,-69.5 + parent: 2 + - uid: 5997 + components: + - type: Transform + pos: -2.5,-68.5 + parent: 2 + - uid: 5998 + components: + - type: Transform + pos: -5.5,-66.5 + parent: 2 + - uid: 5999 + components: + - type: Transform + pos: -5.5,-65.5 + parent: 2 + - uid: 6000 + components: + - type: Transform + pos: -1.5,-68.5 + parent: 2 + - uid: 6001 + components: + - type: Transform + pos: -4.5,-69.5 + parent: 2 + - uid: 6002 + components: + - type: Transform + pos: -5.5,-67.5 + parent: 2 + - uid: 6003 + components: + - type: Transform + pos: 3.5,-68.5 + parent: 2 + - uid: 6004 + components: + - type: Transform + pos: 3.5,-69.5 + parent: 2 + - uid: 6005 + components: + - type: Transform + pos: 3.5,-70.5 + parent: 2 + - uid: 6006 + components: + - type: Transform + pos: -2.5,-69.5 + parent: 2 + - uid: 6007 + components: + - type: Transform + pos: -3.5,-69.5 + parent: 2 + - uid: 6008 + components: + - type: Transform + pos: -5.5,-69.5 + parent: 2 + - uid: 6009 + components: + - type: Transform + pos: -2.5,-70.5 + parent: 2 + - uid: 6010 + components: + - type: Transform + pos: -5.5,-68.5 + parent: 2 + - uid: 6011 + components: + - type: Transform + pos: -5.5,-64.5 + parent: 2 + - uid: 6012 + components: + - type: Transform + pos: -5.5,-63.5 + parent: 2 + - uid: 6013 + components: + - type: Transform + pos: -5.5,-62.5 + parent: 2 + - uid: 6014 + components: + - type: Transform + pos: -4.5,-62.5 + parent: 2 + - uid: 6015 + components: + - type: Transform + pos: -3.5,-62.5 + parent: 2 + - uid: 6016 + components: + - type: Transform + pos: -3.5,-61.5 + parent: 2 + - uid: 6017 + components: + - type: Transform + pos: -2.5,-62.5 + parent: 2 + - uid: 6018 + components: + - type: Transform + pos: -1.5,-62.5 + parent: 2 + - uid: 6019 + components: + - type: Transform + pos: -0.5,-62.5 + parent: 2 + - uid: 6020 + components: + - type: Transform + pos: 0.5,-62.5 + parent: 2 + - uid: 6021 + components: + - type: Transform + pos: 1.5,-62.5 + parent: 2 + - uid: 6022 + components: + - type: Transform + pos: 2.5,-62.5 + parent: 2 + - uid: 6023 + components: + - type: Transform + pos: 3.5,-62.5 + parent: 2 + - uid: 6024 + components: + - type: Transform + pos: 4.5,-62.5 + parent: 2 + - uid: 6025 + components: + - type: Transform + pos: 5.5,-62.5 + parent: 2 + - uid: 6026 + components: + - type: Transform + pos: 6.5,-62.5 + parent: 2 + - uid: 6027 + components: + - type: Transform + pos: 7.5,-62.5 + parent: 2 + - uid: 6028 + components: + - type: Transform + pos: 7.5,-63.5 + parent: 2 + - uid: 6029 + components: + - type: Transform + pos: 7.5,-64.5 + parent: 2 + - uid: 6030 + components: + - type: Transform + pos: 7.5,-65.5 + parent: 2 + - uid: 6031 + components: + - type: Transform + pos: 7.5,-66.5 + parent: 2 + - uid: 6032 + components: + - type: Transform + pos: 7.5,-67.5 + parent: 2 + - uid: 6033 + components: + - type: Transform + pos: 7.5,-68.5 + parent: 2 + - uid: 6034 + components: + - type: Transform + pos: 7.5,-69.5 + parent: 2 + - uid: 6035 + components: + - type: Transform + pos: 6.5,-69.5 + parent: 2 + - uid: 6036 + components: + - type: Transform + pos: 5.5,-69.5 + parent: 2 + - uid: 6037 + components: + - type: Transform + pos: 4.5,-69.5 + parent: 2 + - uid: 23837 + components: + - type: Transform + pos: 1.5,85.5 + parent: 2 + - uid: 23838 + components: + - type: Transform + pos: 1.5,86.5 + parent: 2 + - uid: 23839 + components: + - type: Transform + pos: 0.5,86.5 + parent: 2 + - uid: 23840 + components: + - type: Transform + pos: -0.5,86.5 + parent: 2 + - uid: 23841 + components: + - type: Transform + pos: 2.5,86.5 + parent: 2 + - uid: 23842 + components: + - type: Transform + pos: 3.5,86.5 + parent: 2 + - uid: 23843 + components: + - type: Transform + pos: -3.5,69.5 + parent: 2 + - uid: 23844 + components: + - type: Transform + pos: -3.5,68.5 + parent: 2 + - uid: 23845 + components: + - type: Transform + pos: -2.5,68.5 + parent: 2 + - uid: 23846 + components: + - type: Transform + pos: 5.5,69.5 + parent: 2 + - uid: 23847 + components: + - type: Transform + pos: 5.5,68.5 + parent: 2 + - uid: 23848 + components: + - type: Transform + pos: 1.5,71.5 + parent: 2 + - uid: 23849 + components: + - type: Transform + pos: 1.5,72.5 + parent: 2 + - uid: 23850 + components: + - type: Transform + pos: 1.5,73.5 + parent: 2 + - uid: 23851 + components: + - type: Transform + pos: 2.5,73.5 + parent: 2 + - uid: 23852 + components: + - type: Transform + pos: 0.5,73.5 + parent: 2 + - uid: 23853 + components: + - type: Transform + pos: 0.5,83.5 + parent: 2 + - uid: 23854 + components: + - type: Transform + pos: 0.5,82.5 + parent: 2 + - uid: 23855 + components: + - type: Transform + pos: 0.5,81.5 + parent: 2 + - uid: 23856 + components: + - type: Transform + pos: 2.5,83.5 + parent: 2 + - uid: 23857 + components: + - type: Transform + pos: 2.5,82.5 + parent: 2 + - uid: 23858 + components: + - type: Transform + pos: 2.5,81.5 + parent: 2 +- proto: CableHVStack + entities: + - uid: 6038 + components: + - type: Transform + pos: -42.541927,-61.48547 + parent: 2 + - uid: 6039 + components: + - type: Transform + pos: 61.45578,23.48829 + parent: 2 + - uid: 6040 + components: + - type: Transform + pos: 14.413268,-51.292038 + parent: 2 + - uid: 6041 + components: + - type: Transform + pos: -14.307997,-55.534718 + parent: 2 + - uid: 6042 + components: + - type: Transform + pos: 22.526024,-45.412346 + parent: 2 + - uid: 6043 + components: + - type: Transform + pos: 43.45204,-57.567394 + parent: 2 + - uid: 6044 + components: + - type: Transform + pos: -3.6150723,49.794346 + parent: 2 +- proto: CableHVStack1 + entities: + - uid: 6045 + components: + - type: Transform + pos: 65.39983,23.446333 + parent: 2 + - uid: 6046 + components: + - type: Transform + pos: 65.50473,23.530249 + parent: 2 + - uid: 6047 + components: + - type: Transform + pos: 71.420815,23.593185 + parent: 2 + - uid: 6048 + components: + - type: Transform + pos: 71.65159,23.404375 + parent: 2 + - uid: 6049 + components: + - type: Transform + pos: 57.50612,30.521687 + parent: 2 + - uid: 6050 + components: + - type: Transform + pos: -50.5,17.5 + parent: 2 +- proto: CableHVStack10 + entities: + - uid: 6051 + components: + - type: Transform + pos: -36.429504,-29.852598 + parent: 2 + - uid: 6052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.54089,-52.480007 + parent: 2 +- proto: CableMV + entities: + - uid: 6053 + components: + - type: Transform + pos: 2.5,56.5 + parent: 2 + - uid: 6054 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 6055 + components: + - type: Transform + pos: -22.5,-50.5 + parent: 2 + - uid: 6056 + components: + - type: Transform + pos: -24.5,-50.5 + parent: 2 + - uid: 6057 + components: + - type: Transform + pos: -25.5,-50.5 + parent: 2 + - uid: 6058 + components: + - type: Transform + pos: -26.5,-52.5 + parent: 2 + - uid: 6059 + components: + - type: Transform + pos: -26.5,-54.5 + parent: 2 + - uid: 6060 + components: + - type: Transform + pos: -25.5,-55.5 + parent: 2 + - uid: 6061 + components: + - type: Transform + pos: -23.5,-55.5 + parent: 2 + - uid: 6062 + components: + - type: Transform + pos: -22.5,-54.5 + parent: 2 + - uid: 6063 + components: + - type: Transform + pos: 5.5,31.5 + parent: 2 + - uid: 6064 + components: + - type: Transform + pos: 5.5,32.5 + parent: 2 + - uid: 6065 + components: + - type: Transform + pos: -2.5,-63.5 + parent: 2 + - uid: 6066 + components: + - type: Transform + pos: 9.5,-47.5 + parent: 2 + - uid: 6067 + components: + - type: Transform + pos: 8.5,-47.5 + parent: 2 + - uid: 6068 + components: + - type: Transform + pos: 0.5,-53.5 + parent: 2 + - uid: 6069 + components: + - type: Transform + pos: 0.5,-52.5 + parent: 2 + - uid: 6070 + components: + - type: Transform + pos: 0.5,-51.5 + parent: 2 + - uid: 6071 + components: + - type: Transform + pos: -0.5,-51.5 + parent: 2 + - uid: 6072 + components: + - type: Transform + pos: -1.5,-51.5 + parent: 2 + - uid: 6073 + components: + - type: Transform + pos: -2.5,-51.5 + parent: 2 + - uid: 6074 + components: + - type: Transform + pos: -3.5,-51.5 + parent: 2 + - uid: 6075 + components: + - type: Transform + pos: -4.5,-51.5 + parent: 2 + - uid: 6076 + components: + - type: Transform + pos: -5.5,-51.5 + parent: 2 + - uid: 6077 + components: + - type: Transform + pos: -5.5,-52.5 + parent: 2 + - uid: 6078 + components: + - type: Transform + pos: -5.5,-53.5 + parent: 2 + - uid: 6079 + components: + - type: Transform + pos: -5.5,-54.5 + parent: 2 + - uid: 6080 + components: + - type: Transform + pos: -5.5,-55.5 + parent: 2 + - uid: 6081 + components: + - type: Transform + pos: -5.5,-56.5 + parent: 2 + - uid: 6082 + components: + - type: Transform + pos: -5.5,-57.5 + parent: 2 + - uid: 6083 + components: + - type: Transform + pos: -5.5,-58.5 + parent: 2 + - uid: 6084 + components: + - type: Transform + pos: -5.5,-59.5 + parent: 2 + - uid: 6085 + components: + - type: Transform + pos: -5.5,-60.5 + parent: 2 + - uid: 6086 + components: + - type: Transform + pos: -4.5,-60.5 + parent: 2 + - uid: 6087 + components: + - type: Transform + pos: 10.5,-47.5 + parent: 2 + - uid: 6088 + components: + - type: Transform + pos: -3.5,-60.5 + parent: 2 + - uid: 6089 + components: + - type: Transform + pos: -2.5,-60.5 + parent: 2 + - uid: 6090 + components: + - type: Transform + pos: -1.5,-60.5 + parent: 2 + - uid: 6091 + components: + - type: Transform + pos: -0.5,-60.5 + parent: 2 + - uid: 6092 + components: + - type: Transform + pos: 0.5,-60.5 + parent: 2 + - uid: 6093 + components: + - type: Transform + pos: 0.5,-59.5 + parent: 2 + - uid: 6094 + components: + - type: Transform + pos: 0.5,-58.5 + parent: 2 + - uid: 6095 + components: + - type: Transform + pos: 0.5,-57.5 + parent: 2 + - uid: 6096 + components: + - type: Transform + pos: 1.5,-57.5 + parent: 2 + - uid: 6097 + components: + - type: Transform + pos: 2.5,-57.5 + parent: 2 + - uid: 6098 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 2 + - uid: 6099 + components: + - type: Transform + pos: 3.5,-56.5 + parent: 2 + - uid: 6100 + components: + - type: Transform + pos: 3.5,-55.5 + parent: 2 + - uid: 6101 + components: + - type: Transform + pos: 4.5,-55.5 + parent: 2 + - uid: 6102 + components: + - type: Transform + pos: 5.5,-55.5 + parent: 2 + - uid: 6103 + components: + - type: Transform + pos: 6.5,-55.5 + parent: 2 + - uid: 6104 + components: + - type: Transform + pos: 7.5,-55.5 + parent: 2 + - uid: 6105 + components: + - type: Transform + pos: 7.5,-54.5 + parent: 2 + - uid: 6106 + components: + - type: Transform + pos: 7.5,-53.5 + parent: 2 + - uid: 6107 + components: + - type: Transform + pos: 7.5,-52.5 + parent: 2 + - uid: 6108 + components: + - type: Transform + pos: 6.5,-52.5 + parent: 2 + - uid: 6109 + components: + - type: Transform + pos: 5.5,-52.5 + parent: 2 + - uid: 6110 + components: + - type: Transform + pos: 7.5,-51.5 + parent: 2 + - uid: 6111 + components: + - type: Transform + pos: 7.5,-50.5 + parent: 2 + - uid: 6112 + components: + - type: Transform + pos: 7.5,-49.5 + parent: 2 + - uid: 6113 + components: + - type: Transform + pos: 7.5,-48.5 + parent: 2 + - uid: 6114 + components: + - type: Transform + pos: 7.5,-47.5 + parent: 2 + - uid: 6115 + components: + - type: Transform + pos: 10.5,-48.5 + parent: 2 + - uid: 6116 + components: + - type: Transform + pos: 11.5,-48.5 + parent: 2 + - uid: 6117 + components: + - type: Transform + pos: 12.5,-48.5 + parent: 2 + - uid: 6118 + components: + - type: Transform + pos: 13.5,-48.5 + parent: 2 + - uid: 6119 + components: + - type: Transform + pos: 14.5,-48.5 + parent: 2 + - uid: 6120 + components: + - type: Transform + pos: 15.5,-48.5 + parent: 2 + - uid: 6121 + components: + - type: Transform + pos: 16.5,-48.5 + parent: 2 + - uid: 6122 + components: + - type: Transform + pos: 17.5,-48.5 + parent: 2 + - uid: 6123 + components: + - type: Transform + pos: 18.5,-48.5 + parent: 2 + - uid: 6124 + components: + - type: Transform + pos: 19.5,-48.5 + parent: 2 + - uid: 6125 + components: + - type: Transform + pos: 20.5,-48.5 + parent: 2 + - uid: 6126 + components: + - type: Transform + pos: 21.5,-48.5 + parent: 2 + - uid: 6127 + components: + - type: Transform + pos: 22.5,-48.5 + parent: 2 + - uid: 6128 + components: + - type: Transform + pos: 23.5,-48.5 + parent: 2 + - uid: 6129 + components: + - type: Transform + pos: 24.5,-48.5 + parent: 2 + - uid: 6130 + components: + - type: Transform + pos: 25.5,-48.5 + parent: 2 + - uid: 6131 + components: + - type: Transform + pos: 26.5,-48.5 + parent: 2 + - uid: 6132 + components: + - type: Transform + pos: 27.5,-48.5 + parent: 2 + - uid: 6133 + components: + - type: Transform + pos: 28.5,-48.5 + parent: 2 + - uid: 6134 + components: + - type: Transform + pos: 29.5,-48.5 + parent: 2 + - uid: 6135 + components: + - type: Transform + pos: 30.5,-48.5 + parent: 2 + - uid: 6136 + components: + - type: Transform + pos: 31.5,-48.5 + parent: 2 + - uid: 6137 + components: + - type: Transform + pos: 32.5,-48.5 + parent: 2 + - uid: 6138 + components: + - type: Transform + pos: 32.5,-47.5 + parent: 2 + - uid: 6139 + components: + - type: Transform + pos: 32.5,-46.5 + parent: 2 + - uid: 6140 + components: + - type: Transform + pos: 33.5,-46.5 + parent: 2 + - uid: 6141 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 6142 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 2 + - uid: 6143 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - uid: 6144 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 + - uid: 6145 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - uid: 6146 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - uid: 6147 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 6148 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 2 + - uid: 6149 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 6150 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 + - uid: 6151 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 2 + - uid: 6152 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 2 + - uid: 6153 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 6154 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 + - uid: 6155 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - uid: 6156 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 2 + - uid: 6157 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 6158 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 6159 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - uid: 6160 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 2 + - uid: 6161 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 6162 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - uid: 6163 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 + - uid: 6164 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 + - uid: 6165 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 2 + - uid: 6166 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 2 + - uid: 6167 + components: + - type: Transform + pos: 13.5,-20.5 + parent: 2 + - uid: 6168 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 2 + - uid: 6169 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 2 + - uid: 6170 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 2 + - uid: 6171 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 2 + - uid: 6172 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 2 + - uid: 6173 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 2 + - uid: 6174 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 2 + - uid: 6175 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 2 + - uid: 6176 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 2 + - uid: 6177 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 2 + - uid: 6178 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 2 + - uid: 6179 + components: + - type: Transform + pos: 19.5,-24.5 + parent: 2 + - uid: 6180 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 2 + - uid: 6181 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 2 + - uid: 6182 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 2 + - uid: 6183 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 2 + - uid: 6184 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 2 + - uid: 6185 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 2 + - uid: 6186 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 2 + - uid: 6187 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 2 + - uid: 6188 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 2 + - uid: 6189 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 2 + - uid: 6190 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 2 + - uid: 6191 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 2 + - uid: 6192 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 2 + - uid: 6193 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 + - uid: 6194 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 2 + - uid: 6195 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 2 + - uid: 6196 + components: + - type: Transform + pos: 26.5,-24.5 + parent: 2 + - uid: 6197 + components: + - type: Transform + pos: 27.5,-24.5 + parent: 2 + - uid: 6198 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 2 + - uid: 6199 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 2 + - uid: 6200 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 2 + - uid: 6201 + components: + - type: Transform + pos: 31.5,-24.5 + parent: 2 + - uid: 6202 + components: + - type: Transform + pos: 8.5,-31.5 + parent: 2 + - uid: 6203 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 2 + - uid: 6204 + components: + - type: Transform + pos: 9.5,-31.5 + parent: 2 + - uid: 6205 + components: + - type: Transform + pos: 10.5,-31.5 + parent: 2 + - uid: 6206 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 2 + - uid: 6207 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 2 + - uid: 6208 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 2 + - uid: 6209 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 2 + - uid: 6210 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 2 + - uid: 6211 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 2 + - uid: 6212 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 2 + - uid: 6213 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 2 + - uid: 6214 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 2 + - uid: 6215 + components: + - type: Transform + pos: 26.5,-25.5 + parent: 2 + - uid: 6216 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 2 + - uid: 6217 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 2 + - uid: 6218 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 2 + - uid: 6219 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 2 + - uid: 6220 + components: + - type: Transform + pos: 26.5,-30.5 + parent: 2 + - uid: 6221 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 2 + - uid: 6222 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 2 + - uid: 6223 + components: + - type: Transform + pos: 25.5,-32.5 + parent: 2 + - uid: 6224 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 2 + - uid: 6225 + components: + - type: Transform + pos: 32.5,-24.5 + parent: 2 + - uid: 6226 + components: + - type: Transform + pos: 33.5,-24.5 + parent: 2 + - uid: 6227 + components: + - type: Transform + pos: 34.5,-24.5 + parent: 2 + - uid: 6228 + components: + - type: Transform + pos: 35.5,-24.5 + parent: 2 + - uid: 6229 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 2 + - uid: 6230 + components: + - type: Transform + pos: 37.5,-24.5 + parent: 2 + - uid: 6231 + components: + - type: Transform + pos: 38.5,-24.5 + parent: 2 + - uid: 6232 + components: + - type: Transform + pos: 39.5,-24.5 + parent: 2 + - uid: 6233 + components: + - type: Transform + pos: 40.5,-24.5 + parent: 2 + - uid: 6234 + components: + - type: Transform + pos: 40.5,-25.5 + parent: 2 + - uid: 6235 + components: + - type: Transform + pos: 40.5,-26.5 + parent: 2 + - uid: 6236 + components: + - type: Transform + pos: 40.5,-27.5 + parent: 2 + - uid: 6237 + components: + - type: Transform + pos: 40.5,-28.5 + parent: 2 + - uid: 6238 + components: + - type: Transform + pos: 40.5,-29.5 + parent: 2 + - uid: 6239 + components: + - type: Transform + pos: 40.5,-30.5 + parent: 2 + - uid: 6240 + components: + - type: Transform + pos: 40.5,-31.5 + parent: 2 + - uid: 6241 + components: + - type: Transform + pos: 40.5,-32.5 + parent: 2 + - uid: 6242 + components: + - type: Transform + pos: 40.5,-33.5 + parent: 2 + - uid: 6243 + components: + - type: Transform + pos: 40.5,-34.5 + parent: 2 + - uid: 6244 + components: + - type: Transform + pos: 41.5,-34.5 + parent: 2 + - uid: 6245 + components: + - type: Transform + pos: 41.5,-35.5 + parent: 2 + - uid: 6246 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 2 + - uid: 6247 + components: + - type: Transform + pos: 45.5,-20.5 + parent: 2 + - uid: 6248 + components: + - type: Transform + pos: 45.5,-19.5 + parent: 2 + - uid: 6249 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 + - uid: 6250 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 + - uid: 6251 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 6252 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - uid: 6253 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 2 + - uid: 6254 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 2 + - uid: 6255 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 2 + - uid: 6256 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 2 + - uid: 6257 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 2 + - uid: 6258 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 2 + - uid: 6259 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 2 + - uid: 6260 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 2 + - uid: 6261 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 2 + - uid: 6262 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 6263 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 + - uid: 6264 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 6265 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 6266 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 2 + - uid: 6267 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 2 + - uid: 6268 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 2 + - uid: 6269 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 2 + - uid: 6270 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 + - uid: 6271 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 + - uid: 6272 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 6273 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 2 + - uid: 6274 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 2 + - uid: 6275 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 6276 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 6277 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 6278 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 6279 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 6280 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 2 + - uid: 6281 + components: + - type: Transform + pos: -29.5,15.5 + parent: 2 + - uid: 6282 + components: + - type: Transform + pos: -28.5,15.5 + parent: 2 + - uid: 6283 + components: + - type: Transform + pos: -27.5,15.5 + parent: 2 + - uid: 6284 + components: + - type: Transform + pos: -27.5,16.5 + parent: 2 + - uid: 6285 + components: + - type: Transform + pos: -26.5,16.5 + parent: 2 + - uid: 6286 + components: + - type: Transform + pos: -25.5,16.5 + parent: 2 + - uid: 6287 + components: + - type: Transform + pos: -24.5,16.5 + parent: 2 + - uid: 6288 + components: + - type: Transform + pos: -3.5,75.5 + parent: 2 + - uid: 6289 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 6290 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 6291 + components: + - type: Transform + pos: -20.5,11.5 + parent: 2 + - uid: 6292 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - uid: 6293 + components: + - type: Transform + pos: -20.5,9.5 + parent: 2 + - uid: 6294 + components: + - type: Transform + pos: -20.5,8.5 + parent: 2 + - uid: 6295 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 + - uid: 6296 + components: + - type: Transform + pos: -21.5,7.5 + parent: 2 + - uid: 6297 + components: + - type: Transform + pos: -22.5,7.5 + parent: 2 + - uid: 6298 + components: + - type: Transform + pos: -23.5,7.5 + parent: 2 + - uid: 6299 + components: + - type: Transform + pos: -24.5,7.5 + parent: 2 + - uid: 6300 + components: + - type: Transform + pos: -25.5,7.5 + parent: 2 + - uid: 6301 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 6302 + components: + - type: Transform + pos: -21.5,11.5 + parent: 2 + - uid: 6303 + components: + - type: Transform + pos: -22.5,11.5 + parent: 2 + - uid: 6304 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 + - uid: 6305 + components: + - type: Transform + pos: -24.5,11.5 + parent: 2 + - uid: 6306 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 6307 + components: + - type: Transform + pos: -20.5,6.5 + parent: 2 + - uid: 6308 + components: + - type: Transform + pos: -20.5,5.5 + parent: 2 + - uid: 6309 + components: + - type: Transform + pos: -20.5,4.5 + parent: 2 + - uid: 6310 + components: + - type: Transform + pos: -20.5,3.5 + parent: 2 + - uid: 6311 + components: + - type: Transform + pos: -20.5,2.5 + parent: 2 + - uid: 6312 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 6313 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 6314 + components: + - type: Transform + pos: -22.5,1.5 + parent: 2 + - uid: 6315 + components: + - type: Transform + pos: -23.5,1.5 + parent: 2 + - uid: 6316 + components: + - type: Transform + pos: -24.5,1.5 + parent: 2 + - uid: 6317 + components: + - type: Transform + pos: -25.5,1.5 + parent: 2 + - uid: 6318 + components: + - type: Transform + pos: -26.5,1.5 + parent: 2 + - uid: 6319 + components: + - type: Transform + pos: -27.5,1.5 + parent: 2 + - uid: 6320 + components: + - type: Transform + pos: -28.5,1.5 + parent: 2 + - uid: 6321 + components: + - type: Transform + pos: -29.5,1.5 + parent: 2 + - uid: 6322 + components: + - type: Transform + pos: -30.5,1.5 + parent: 2 + - uid: 6323 + components: + - type: Transform + pos: -31.5,1.5 + parent: 2 + - uid: 6324 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 6325 + components: + - type: Transform + pos: -33.5,1.5 + parent: 2 + - uid: 6326 + components: + - type: Transform + pos: -33.5,2.5 + parent: 2 + - uid: 6327 + components: + - type: Transform + pos: -33.5,3.5 + parent: 2 + - uid: 6328 + components: + - type: Transform + pos: -33.5,4.5 + parent: 2 + - uid: 6329 + components: + - type: Transform + pos: -33.5,5.5 + parent: 2 + - uid: 6330 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - uid: 6331 + components: + - type: Transform + pos: -33.5,7.5 + parent: 2 + - uid: 6332 + components: + - type: Transform + pos: -34.5,7.5 + parent: 2 + - uid: 6333 + components: + - type: Transform + pos: -35.5,7.5 + parent: 2 + - uid: 6334 + components: + - type: Transform + pos: -36.5,7.5 + parent: 2 + - uid: 6335 + components: + - type: Transform + pos: -37.5,7.5 + parent: 2 + - uid: 6336 + components: + - type: Transform + pos: -38.5,7.5 + parent: 2 + - uid: 6337 + components: + - type: Transform + pos: -39.5,7.5 + parent: 2 + - uid: 6338 + components: + - type: Transform + pos: -40.5,7.5 + parent: 2 + - uid: 6339 + components: + - type: Transform + pos: -40.5,6.5 + parent: 2 + - uid: 6340 + components: + - type: Transform + pos: -40.5,5.5 + parent: 2 + - uid: 6341 + components: + - type: Transform + pos: -38.5,6.5 + parent: 2 + - uid: 6342 + components: + - type: Transform + pos: -38.5,5.5 + parent: 2 + - uid: 6343 + components: + - type: Transform + pos: -38.5,4.5 + parent: 2 + - uid: 6344 + components: + - type: Transform + pos: -38.5,3.5 + parent: 2 + - uid: 6345 + components: + - type: Transform + pos: -38.5,2.5 + parent: 2 + - uid: 6346 + components: + - type: Transform + pos: -38.5,1.5 + parent: 2 + - uid: 6347 + components: + - type: Transform + pos: -38.5,0.5 + parent: 2 + - uid: 6348 + components: + - type: Transform + pos: -38.5,-0.5 + parent: 2 + - uid: 6349 + components: + - type: Transform + pos: -38.5,-1.5 + parent: 2 + - uid: 6350 + components: + - type: Transform + pos: -38.5,-2.5 + parent: 2 + - uid: 6351 + components: + - type: Transform + pos: -38.5,-3.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 2 + - uid: 6353 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 2 + - uid: 6354 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 2 + - uid: 6355 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 6356 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 2 + - uid: 6357 + components: + - type: Transform + pos: -39.5,-8.5 + parent: 2 + - uid: 6358 + components: + - type: Transform + pos: -40.5,-8.5 + parent: 2 + - uid: 6359 + components: + - type: Transform + pos: -41.5,-8.5 + parent: 2 + - uid: 6360 + components: + - type: Transform + pos: -42.5,-8.5 + parent: 2 + - uid: 6361 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 2 + - uid: 6362 + components: + - type: Transform + pos: -42.5,-6.5 + parent: 2 + - uid: 6363 + components: + - type: Transform + pos: -21.5,-47.5 + parent: 2 + - uid: 6364 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 2 + - uid: 6365 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - uid: 6366 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 2 + - uid: 6367 + components: + - type: Transform + pos: -14.5,-16.5 + parent: 2 + - uid: 6368 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 6369 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 2 + - uid: 6370 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 2 + - uid: 6371 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 2 + - uid: 6372 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 2 + - uid: 6373 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 2 + - uid: 6374 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 2 + - uid: 6375 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 2 + - uid: 6376 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 2 + - uid: 6377 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 6378 + components: + - type: Transform + pos: -23.5,16.5 + parent: 2 + - uid: 6379 + components: + - type: Transform + pos: -24.5,-43.5 + parent: 2 + - uid: 6380 + components: + - type: Transform + pos: -27.5,-43.5 + parent: 2 + - uid: 6381 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 2 + - uid: 6382 + components: + - type: Transform + pos: -29.5,-43.5 + parent: 2 + - uid: 6383 + components: + - type: Transform + pos: -24.5,17.5 + parent: 2 + - uid: 6384 + components: + - type: Transform + pos: -24.5,18.5 + parent: 2 + - uid: 6385 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 2 + - uid: 6386 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 + - uid: 6387 + components: + - type: Transform + pos: -24.5,-19.5 + parent: 2 + - uid: 6388 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 2 + - uid: 6389 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 2 + - uid: 6390 + components: + - type: Transform + pos: -22.5,-20.5 + parent: 2 + - uid: 6391 + components: + - type: Transform + pos: -22.5,-21.5 + parent: 2 + - uid: 6392 + components: + - type: Transform + pos: -22.5,-22.5 + parent: 2 + - uid: 6393 + components: + - type: Transform + pos: -22.5,-23.5 + parent: 2 + - uid: 6394 + components: + - type: Transform + pos: -22.5,-24.5 + parent: 2 + - uid: 6395 + components: + - type: Transform + pos: -22.5,-25.5 + parent: 2 + - uid: 6396 + components: + - type: Transform + pos: -22.5,-26.5 + parent: 2 + - uid: 6397 + components: + - type: Transform + pos: -22.5,-27.5 + parent: 2 + - uid: 6398 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 2 + - uid: 6399 + components: + - type: Transform + pos: -24.5,-27.5 + parent: 2 + - uid: 6400 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 2 + - uid: 6401 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 + - uid: 6402 + components: + - type: Transform + pos: -27.5,-27.5 + parent: 2 + - uid: 6403 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 2 + - uid: 6404 + components: + - type: Transform + pos: -24.5,-29.5 + parent: 2 + - uid: 6405 + components: + - type: Transform + pos: -24.5,-30.5 + parent: 2 + - uid: 6406 + components: + - type: Transform + pos: -24.5,-31.5 + parent: 2 + - uid: 6407 + components: + - type: Transform + pos: -24.5,-32.5 + parent: 2 + - uid: 6408 + components: + - type: Transform + pos: -24.5,-33.5 + parent: 2 + - uid: 6409 + components: + - type: Transform + pos: -24.5,-34.5 + parent: 2 + - uid: 6410 + components: + - type: Transform + pos: -24.5,-35.5 + parent: 2 + - uid: 6411 + components: + - type: Transform + pos: -24.5,-36.5 + parent: 2 + - uid: 6412 + components: + - type: Transform + pos: -25.5,-36.5 + parent: 2 + - uid: 6413 + components: + - type: Transform + pos: -26.5,-36.5 + parent: 2 + - uid: 6414 + components: + - type: Transform + pos: -25.5,-31.5 + parent: 2 + - uid: 6415 + components: + - type: Transform + pos: -26.5,-31.5 + parent: 2 + - uid: 6416 + components: + - type: Transform + pos: -27.5,-31.5 + parent: 2 + - uid: 6417 + components: + - type: Transform + pos: -28.5,-31.5 + parent: 2 + - uid: 6418 + components: + - type: Transform + pos: -29.5,-31.5 + parent: 2 + - uid: 6419 + components: + - type: Transform + pos: -30.5,-31.5 + parent: 2 + - uid: 6420 + components: + - type: Transform + pos: -31.5,-31.5 + parent: 2 + - uid: 6421 + components: + - type: Transform + pos: -32.5,-31.5 + parent: 2 + - uid: 6422 + components: + - type: Transform + pos: -33.5,-31.5 + parent: 2 + - uid: 6423 + components: + - type: Transform + pos: -33.5,-32.5 + parent: 2 + - uid: 6424 + components: + - type: Transform + pos: -33.5,-33.5 + parent: 2 + - uid: 6425 + components: + - type: Transform + pos: -33.5,-34.5 + parent: 2 + - uid: 6426 + components: + - type: Transform + pos: -33.5,-35.5 + parent: 2 + - uid: 6427 + components: + - type: Transform + pos: -33.5,-36.5 + parent: 2 + - uid: 6428 + components: + - type: Transform + pos: -33.5,-37.5 + parent: 2 + - uid: 6429 + components: + - type: Transform + pos: -34.5,-37.5 + parent: 2 + - uid: 6430 + components: + - type: Transform + pos: -35.5,-37.5 + parent: 2 + - uid: 6431 + components: + - type: Transform + pos: -36.5,-37.5 + parent: 2 + - uid: 6432 + components: + - type: Transform + pos: -37.5,-37.5 + parent: 2 + - uid: 6433 + components: + - type: Transform + pos: -38.5,-37.5 + parent: 2 + - uid: 6434 + components: + - type: Transform + pos: -39.5,-37.5 + parent: 2 + - uid: 6435 + components: + - type: Transform + pos: -40.5,-37.5 + parent: 2 + - uid: 6436 + components: + - type: Transform + pos: -39.5,-26.5 + parent: 2 + - uid: 6437 + components: + - type: Transform + pos: -38.5,-36.5 + parent: 2 + - uid: 6438 + components: + - type: Transform + pos: -38.5,-35.5 + parent: 2 + - uid: 6439 + components: + - type: Transform + pos: -38.5,-34.5 + parent: 2 + - uid: 6440 + components: + - type: Transform + pos: -38.5,-33.5 + parent: 2 + - uid: 6441 + components: + - type: Transform + pos: -38.5,-32.5 + parent: 2 + - uid: 6442 + components: + - type: Transform + pos: -38.5,-31.5 + parent: 2 + - uid: 6443 + components: + - type: Transform + pos: -38.5,-30.5 + parent: 2 + - uid: 6444 + components: + - type: Transform + pos: -38.5,-29.5 + parent: 2 + - uid: 6445 + components: + - type: Transform + pos: -38.5,-28.5 + parent: 2 + - uid: 6446 + components: + - type: Transform + pos: -38.5,-27.5 + parent: 2 + - uid: 6447 + components: + - type: Transform + pos: -38.5,-26.5 + parent: 2 + - uid: 6448 + components: + - type: Transform + pos: -39.5,-25.5 + parent: 2 + - uid: 6449 + components: + - type: Transform + pos: -39.5,-24.5 + parent: 2 + - uid: 6450 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 + - uid: 6451 + components: + - type: Transform + pos: -33.5,-39.5 + parent: 2 + - uid: 6452 + components: + - type: Transform + pos: -33.5,-39.5 + parent: 2 + - uid: 6453 + components: + - type: Transform + pos: -33.5,-40.5 + parent: 2 + - uid: 6454 + components: + - type: Transform + pos: -33.5,-41.5 + parent: 2 + - uid: 6455 + components: + - type: Transform + pos: -33.5,-42.5 + parent: 2 + - uid: 6456 + components: + - type: Transform + pos: -33.5,-43.5 + parent: 2 + - uid: 6457 + components: + - type: Transform + pos: -33.5,-44.5 + parent: 2 + - uid: 6458 + components: + - type: Transform + pos: -33.5,-45.5 + parent: 2 + - uid: 6459 + components: + - type: Transform + pos: -33.5,-46.5 + parent: 2 + - uid: 6460 + components: + - type: Transform + pos: -33.5,-47.5 + parent: 2 + - uid: 6461 + components: + - type: Transform + pos: -33.5,-48.5 + parent: 2 + - uid: 6462 + components: + - type: Transform + pos: -33.5,-49.5 + parent: 2 + - uid: 6463 + components: + - type: Transform + pos: -33.5,-49.5 + parent: 2 + - uid: 6464 + components: + - type: Transform + pos: -34.5,-49.5 + parent: 2 + - uid: 6465 + components: + - type: Transform + pos: -35.5,-49.5 + parent: 2 + - uid: 6466 + components: + - type: Transform + pos: -36.5,-49.5 + parent: 2 + - uid: 6467 + components: + - type: Transform + pos: -37.5,-49.5 + parent: 2 + - uid: 6468 + components: + - type: Transform + pos: -38.5,-49.5 + parent: 2 + - uid: 6469 + components: + - type: Transform + pos: -39.5,-49.5 + parent: 2 + - uid: 6470 + components: + - type: Transform + pos: -40.5,-49.5 + parent: 2 + - uid: 6471 + components: + - type: Transform + pos: -21.5,-48.5 + parent: 2 + - uid: 6472 + components: + - type: Transform + pos: -21.5,-49.5 + parent: 2 + - uid: 6473 + components: + - type: Transform + pos: -21.5,-50.5 + parent: 2 + - uid: 6474 + components: + - type: Transform + pos: -23.5,-50.5 + parent: 2 + - uid: 6475 + components: + - type: Transform + pos: -26.5,-50.5 + parent: 2 + - uid: 6476 + components: + - type: Transform + pos: -26.5,-51.5 + parent: 2 + - uid: 6477 + components: + - type: Transform + pos: -26.5,-53.5 + parent: 2 + - uid: 6478 + components: + - type: Transform + pos: -26.5,-55.5 + parent: 2 + - uid: 6479 + components: + - type: Transform + pos: -24.5,-55.5 + parent: 2 + - uid: 6480 + components: + - type: Transform + pos: -22.5,-55.5 + parent: 2 + - uid: 6481 + components: + - type: Transform + pos: -22.5,-43.5 + parent: 2 + - uid: 6482 + components: + - type: Transform + pos: -22.5,-42.5 + parent: 2 + - uid: 6483 + components: + - type: Transform + pos: -29.5,0.5 + parent: 2 + - uid: 6484 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 2 + - uid: 6485 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 2 + - uid: 6486 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 6487 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - uid: 6488 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 2 + - uid: 6489 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 2 + - uid: 6490 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 2 + - uid: 6491 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 2 + - uid: 6492 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 2 + - uid: 6493 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 2 + - uid: 6494 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 2 + - uid: 6495 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 + - uid: 6496 + components: + - type: Transform + pos: -21.5,-46.5 + parent: 2 + - uid: 6497 + components: + - type: Transform + pos: -21.5,-45.5 + parent: 2 + - uid: 6498 + components: + - type: Transform + pos: -21.5,-44.5 + parent: 2 + - uid: 6499 + components: + - type: Transform + pos: -21.5,-43.5 + parent: 2 + - uid: 6500 + components: + - type: Transform + pos: -27.5,-52.5 + parent: 2 + - uid: 6501 + components: + - type: Transform + pos: -28.5,-52.5 + parent: 2 + - uid: 6502 + components: + - type: Transform + pos: -28.5,-53.5 + parent: 2 + - uid: 6503 + components: + - type: Transform + pos: -28.5,-54.5 + parent: 2 + - uid: 6504 + components: + - type: Transform + pos: -28.5,-55.5 + parent: 2 + - uid: 6505 + components: + - type: Transform + pos: -28.5,-56.5 + parent: 2 + - uid: 6506 + components: + - type: Transform + pos: -28.5,-57.5 + parent: 2 + - uid: 6507 + components: + - type: Transform + pos: -28.5,-58.5 + parent: 2 + - uid: 6508 + components: + - type: Transform + pos: -21.5,-27.5 + parent: 2 + - uid: 6509 + components: + - type: Transform + pos: -20.5,-27.5 + parent: 2 + - uid: 6510 + components: + - type: Transform + pos: -19.5,-27.5 + parent: 2 + - uid: 6511 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 2 + - uid: 6512 + components: + - type: Transform + pos: -17.5,-27.5 + parent: 2 + - uid: 6513 + components: + - type: Transform + pos: -16.5,-27.5 + parent: 2 + - uid: 6514 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 2 + - uid: 6515 + components: + - type: Transform + pos: -16.5,-25.5 + parent: 2 + - uid: 6516 + components: + - type: Transform + pos: -16.5,-24.5 + parent: 2 + - uid: 6517 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 2 + - uid: 6518 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 2 + - uid: 6519 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 2 + - uid: 6520 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - uid: 6521 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 2 + - uid: 6522 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 2 + - uid: 6523 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 2 + - uid: 6524 + components: + - type: Transform + pos: -6.5,-58.5 + parent: 2 + - uid: 6525 + components: + - type: Transform + pos: -7.5,-58.5 + parent: 2 + - uid: 6526 + components: + - type: Transform + pos: -8.5,-58.5 + parent: 2 + - uid: 6527 + components: + - type: Transform + pos: -9.5,-58.5 + parent: 2 + - uid: 6528 + components: + - type: Transform + pos: -10.5,-58.5 + parent: 2 + - uid: 6529 + components: + - type: Transform + pos: -11.5,-58.5 + parent: 2 + - uid: 6530 + components: + - type: Transform + pos: -12.5,-58.5 + parent: 2 + - uid: 6531 + components: + - type: Transform + pos: -13.5,-58.5 + parent: 2 + - uid: 6532 + components: + - type: Transform + pos: -14.5,-58.5 + parent: 2 + - uid: 6533 + components: + - type: Transform + pos: -15.5,-58.5 + parent: 2 + - uid: 6534 + components: + - type: Transform + pos: -16.5,-58.5 + parent: 2 + - uid: 6535 + components: + - type: Transform + pos: -17.5,-58.5 + parent: 2 + - uid: 6536 + components: + - type: Transform + pos: -18.5,-58.5 + parent: 2 + - uid: 6537 + components: + - type: Transform + pos: -18.5,-59.5 + parent: 2 + - uid: 6538 + components: + - type: Transform + pos: -18.5,-60.5 + parent: 2 + - uid: 6539 + components: + - type: Transform + pos: -19.5,-60.5 + parent: 2 + - uid: 6540 + components: + - type: Transform + pos: -20.5,-60.5 + parent: 2 + - uid: 6541 + components: + - type: Transform + pos: -21.5,-60.5 + parent: 2 + - uid: 6542 + components: + - type: Transform + pos: 8.5,-52.5 + parent: 2 + - uid: 6543 + components: + - type: Transform + pos: 9.5,-52.5 + parent: 2 + - uid: 6544 + components: + - type: Transform + pos: 10.5,-52.5 + parent: 2 + - uid: 6545 + components: + - type: Transform + pos: 10.5,-51.5 + parent: 2 + - uid: 6546 + components: + - type: Transform + pos: 10.5,-50.5 + parent: 2 + - uid: 6547 + components: + - type: Transform + pos: 9.5,-50.5 + parent: 2 + - uid: 6548 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 2 + - uid: 6549 + components: + - type: Transform + pos: -0.5,-29.5 + parent: 2 + - uid: 6550 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 2 + - uid: 6551 + components: + - type: Transform + pos: -5.5,-50.5 + parent: 2 + - uid: 6552 + components: + - type: Transform + pos: -5.5,-49.5 + parent: 2 + - uid: 6553 + components: + - type: Transform + pos: -5.5,-48.5 + parent: 2 + - uid: 6554 + components: + - type: Transform + pos: -4.5,-48.5 + parent: 2 + - uid: 6555 + components: + - type: Transform + pos: -4.5,-47.5 + parent: 2 + - uid: 6556 + components: + - type: Transform + pos: -4.5,-46.5 + parent: 2 + - uid: 6557 + components: + - type: Transform + pos: -4.5,-45.5 + parent: 2 + - uid: 6558 + components: + - type: Transform + pos: -4.5,-44.5 + parent: 2 + - uid: 6559 + components: + - type: Transform + pos: -4.5,-43.5 + parent: 2 + - uid: 6560 + components: + - type: Transform + pos: -4.5,-42.5 + parent: 2 + - uid: 6561 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - uid: 6562 + components: + - type: Transform + pos: -3.5,-42.5 + parent: 2 + - uid: 6563 + components: + - type: Transform + pos: -2.5,-42.5 + parent: 2 + - uid: 6564 + components: + - type: Transform + pos: -1.5,-42.5 + parent: 2 + - uid: 6565 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 2 + - uid: 6566 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 2 + - uid: 6567 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 2 + - uid: 6568 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 2 + - uid: 6569 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 2 + - uid: 6570 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 2 + - uid: 6571 + components: + - type: Transform + pos: 0.5,-35.5 + parent: 2 + - uid: 6572 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 2 + - uid: 6573 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 2 + - uid: 6574 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 2 + - uid: 6575 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 2 + - uid: 6576 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 2 + - uid: 6577 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 2 + - uid: 6578 + components: + - type: Transform + pos: 9.5,22.5 + parent: 2 + - uid: 6579 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 6580 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 6581 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 6582 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 + - uid: 6583 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 6584 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 6585 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 6586 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 6587 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 6588 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 + - uid: 6589 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 6590 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - uid: 6591 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - uid: 6592 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - uid: 6593 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 6594 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 6595 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 6596 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 6597 + components: + - type: Transform + pos: 13.5,6.5 + parent: 2 + - uid: 6598 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 6599 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 6600 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 6601 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 6602 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - uid: 6603 + components: + - type: Transform + pos: 15.5,2.5 + parent: 2 + - uid: 6604 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - uid: 6605 + components: + - type: Transform + pos: 15.5,0.5 + parent: 2 + - uid: 6606 + components: + - type: Transform + pos: 16.5,0.5 + parent: 2 + - uid: 6607 + components: + - type: Transform + pos: 17.5,0.5 + parent: 2 + - uid: 6608 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 6609 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 6610 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 6611 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - uid: 6612 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 6613 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 6614 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 6615 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - uid: 6616 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 + - uid: 6617 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 + - uid: 6618 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2 + - uid: 6619 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 6620 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 6621 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 6622 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 6623 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 6624 + components: + - type: Transform + pos: 17.5,8.5 + parent: 2 + - uid: 6625 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 + - uid: 6626 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 6627 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - uid: 6628 + components: + - type: Transform + pos: 44.5,5.5 + parent: 2 + - uid: 6629 + components: + - type: Transform + pos: 43.5,5.5 + parent: 2 + - uid: 6630 + components: + - type: Transform + pos: 42.5,5.5 + parent: 2 + - uid: 6631 + components: + - type: Transform + pos: 41.5,5.5 + parent: 2 + - uid: 6632 + components: + - type: Transform + pos: 40.5,5.5 + parent: 2 + - uid: 6633 + components: + - type: Transform + pos: 40.5,6.5 + parent: 2 + - uid: 6634 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 + - uid: 6635 + components: + - type: Transform + pos: 38.5,6.5 + parent: 2 + - uid: 6636 + components: + - type: Transform + pos: 37.5,6.5 + parent: 2 + - uid: 6637 + components: + - type: Transform + pos: 37.5,7.5 + parent: 2 + - uid: 6638 + components: + - type: Transform + pos: 36.5,7.5 + parent: 2 + - uid: 6639 + components: + - type: Transform + pos: 35.5,7.5 + parent: 2 + - uid: 6640 + components: + - type: Transform + pos: 34.5,7.5 + parent: 2 + - uid: 6641 + components: + - type: Transform + pos: 33.5,7.5 + parent: 2 + - uid: 6642 + components: + - type: Transform + pos: 32.5,7.5 + parent: 2 + - uid: 6643 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - uid: 6644 + components: + - type: Transform + pos: 30.5,7.5 + parent: 2 + - uid: 6645 + components: + - type: Transform + pos: 29.5,7.5 + parent: 2 + - uid: 6646 + components: + - type: Transform + pos: 28.5,7.5 + parent: 2 + - uid: 6647 + components: + - type: Transform + pos: 27.5,7.5 + parent: 2 + - uid: 6648 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 6649 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 6650 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 6651 + components: + - type: Transform + pos: 23.5,7.5 + parent: 2 + - uid: 6652 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 6653 + components: + - type: Transform + pos: 21.5,7.5 + parent: 2 + - uid: 6654 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - uid: 6655 + components: + - type: Transform + pos: 19.5,7.5 + parent: 2 + - uid: 6656 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - uid: 6657 + components: + - type: Transform + pos: 27.5,23.5 + parent: 2 + - uid: 6658 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 6659 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 + - uid: 6660 + components: + - type: Transform + pos: 29.5,23.5 + parent: 2 + - uid: 6661 + components: + - type: Transform + pos: 29.5,24.5 + parent: 2 + - uid: 6662 + components: + - type: Transform + pos: 29.5,25.5 + parent: 2 + - uid: 6663 + components: + - type: Transform + pos: 29.5,26.5 + parent: 2 + - uid: 6664 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 + - uid: 6665 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 6666 + components: + - type: Transform + pos: 26.5,26.5 + parent: 2 + - uid: 6667 + components: + - type: Transform + pos: 25.5,26.5 + parent: 2 + - uid: 6668 + components: + - type: Transform + pos: 24.5,26.5 + parent: 2 + - uid: 6669 + components: + - type: Transform + pos: 23.5,26.5 + parent: 2 + - uid: 6670 + components: + - type: Transform + pos: 22.5,26.5 + parent: 2 + - uid: 6671 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 6672 + components: + - type: Transform + pos: 20.5,26.5 + parent: 2 + - uid: 6673 + components: + - type: Transform + pos: 19.5,26.5 + parent: 2 + - uid: 6674 + components: + - type: Transform + pos: 18.5,26.5 + parent: 2 + - uid: 6675 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 6676 + components: + - type: Transform + pos: 16.5,26.5 + parent: 2 + - uid: 6677 + components: + - type: Transform + pos: 15.5,26.5 + parent: 2 + - uid: 6678 + components: + - type: Transform + pos: 14.5,26.5 + parent: 2 + - uid: 6679 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 + - uid: 6680 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 6681 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - uid: 6682 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 6683 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 6684 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 + - uid: 6685 + components: + - type: Transform + pos: 29.5,10.5 + parent: 2 + - uid: 6686 + components: + - type: Transform + pos: 29.5,11.5 + parent: 2 + - uid: 6687 + components: + - type: Transform + pos: 29.5,12.5 + parent: 2 + - uid: 6688 + components: + - type: Transform + pos: 29.5,13.5 + parent: 2 + - uid: 6689 + components: + - type: Transform + pos: 29.5,14.5 + parent: 2 + - uid: 6690 + components: + - type: Transform + pos: 29.5,15.5 + parent: 2 + - uid: 6691 + components: + - type: Transform + pos: 29.5,16.5 + parent: 2 + - uid: 6692 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 6693 + components: + - type: Transform + pos: 31.5,16.5 + parent: 2 + - uid: 6694 + components: + - type: Transform + pos: 32.5,16.5 + parent: 2 + - uid: 6695 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 6696 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 + - uid: 6697 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 6698 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 6699 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 6700 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 + - uid: 6701 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 + - uid: 6702 + components: + - type: Transform + pos: 36.5,13.5 + parent: 2 + - uid: 6703 + components: + - type: Transform + pos: 36.5,12.5 + parent: 2 + - uid: 6704 + components: + - type: Transform + pos: -24.5,19.5 + parent: 2 + - uid: 6705 + components: + - type: Transform + pos: -24.5,20.5 + parent: 2 + - uid: 6706 + components: + - type: Transform + pos: -25.5,20.5 + parent: 2 + - uid: 6707 + components: + - type: Transform + pos: -26.5,20.5 + parent: 2 + - uid: 6708 + components: + - type: Transform + pos: -27.5,20.5 + parent: 2 + - uid: 6709 + components: + - type: Transform + pos: -23.5,-43.5 + parent: 2 + - uid: 6710 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 2 + - uid: 6711 + components: + - type: Transform + pos: -28.5,-43.5 + parent: 2 + - uid: 6712 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 + - uid: 6713 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 2 + - uid: 6714 + components: + - type: Transform + pos: -33.5,-60.5 + parent: 2 + - uid: 6715 + components: + - type: Transform + pos: -32.5,-60.5 + parent: 2 + - uid: 6716 + components: + - type: Transform + pos: -31.5,-60.5 + parent: 2 + - uid: 6717 + components: + - type: Transform + pos: -31.5,-59.5 + parent: 2 + - uid: 6718 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - uid: 6719 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 6720 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 6721 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - uid: 6722 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 6723 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - uid: 6724 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 6725 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - uid: 6726 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - uid: 6727 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 + - uid: 6728 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 6729 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - uid: 6730 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 6731 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 + - uid: 6732 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 6733 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 6734 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 6735 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 6736 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 6737 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 6738 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 + - uid: 6739 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 6740 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 + - uid: 6741 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 6742 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 6743 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 6744 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 6745 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 6746 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 6747 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 6748 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - uid: 6749 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 6750 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 6751 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 6752 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 2 + - uid: 6753 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 6754 + components: + - type: Transform + pos: -13.5,-27.5 + parent: 2 + - uid: 6755 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 2 + - uid: 6756 + components: + - type: Transform + pos: -14.5,-27.5 + parent: 2 + - uid: 6757 + components: + - type: Transform + pos: -12.5,-27.5 + parent: 2 + - uid: 6758 + components: + - type: Transform + pos: -11.5,-27.5 + parent: 2 + - uid: 6759 + components: + - type: Transform + pos: -10.5,-27.5 + parent: 2 + - uid: 6760 + components: + - type: Transform + pos: -9.5,-27.5 + parent: 2 + - uid: 6761 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 2 + - uid: 6762 + components: + - type: Transform + pos: -7.5,-27.5 + parent: 2 + - uid: 6763 + components: + - type: Transform + pos: -7.5,-27.5 + parent: 2 + - uid: 6764 + components: + - type: Transform + pos: -7.5,-28.5 + parent: 2 + - uid: 6765 + components: + - type: Transform + pos: -7.5,-29.5 + parent: 2 + - uid: 6766 + components: + - type: Transform + pos: -7.5,-30.5 + parent: 2 + - uid: 6767 + components: + - type: Transform + pos: -7.5,-31.5 + parent: 2 + - uid: 6768 + components: + - type: Transform + pos: -7.5,-32.5 + parent: 2 + - uid: 6769 + components: + - type: Transform + pos: -7.5,-33.5 + parent: 2 + - uid: 6770 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 2 + - uid: 6771 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 2 + - uid: 6772 + components: + - type: Transform + pos: -8.5,-35.5 + parent: 2 + - uid: 6773 + components: + - type: Transform + pos: -9.5,-35.5 + parent: 2 + - uid: 6774 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 2 + - uid: 6775 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 2 + - uid: 6776 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 2 + - uid: 6777 + components: + - type: Transform + pos: 3.5,52.5 + parent: 2 + - uid: 6778 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 2 + - uid: 6779 + components: + - type: Transform + pos: -2.5,-36.5 + parent: 2 + - uid: 6780 + components: + - type: Transform + pos: -3.5,-36.5 + parent: 2 + - uid: 6781 + components: + - type: Transform + pos: -3.5,-37.5 + parent: 2 + - uid: 6782 + components: + - type: Transform + pos: -3.5,-38.5 + parent: 2 + - uid: 6783 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 2 + - uid: 6784 + components: + - type: Transform + pos: -3.5,-61.5 + parent: 2 + - uid: 6785 + components: + - type: Transform + pos: -3.5,-62.5 + parent: 2 + - uid: 6786 + components: + - type: Transform + pos: -3.5,-63.5 + parent: 2 + - uid: 6787 + components: + - type: Transform + pos: -1.5,-63.5 + parent: 2 + - uid: 6788 + components: + - type: Transform + pos: -0.5,-63.5 + parent: 2 + - uid: 6789 + components: + - type: Transform + pos: 0.5,-63.5 + parent: 2 + - uid: 6790 + components: + - type: Transform + pos: 1.5,-63.5 + parent: 2 + - uid: 6791 + components: + - type: Transform + pos: 2.5,-63.5 + parent: 2 + - uid: 6792 + components: + - type: Transform + pos: 3.5,-63.5 + parent: 2 + - uid: 6793 + components: + - type: Transform + pos: 4.5,-63.5 + parent: 2 + - uid: 6794 + components: + - type: Transform + pos: 5.5,-63.5 + parent: 2 + - uid: 6795 + components: + - type: Transform + pos: 6.5,-63.5 + parent: 2 + - uid: 6796 + components: + - type: Transform + pos: 7.5,-63.5 + parent: 2 + - uid: 6797 + components: + - type: Transform + pos: 8.5,-63.5 + parent: 2 + - uid: 6798 + components: + - type: Transform + pos: 8.5,-62.5 + parent: 2 + - uid: 6799 + components: + - type: Transform + pos: 9.5,-62.5 + parent: 2 + - uid: 6800 + components: + - type: Transform + pos: -2.5,48.5 + parent: 2 + - uid: 6801 + components: + - type: Transform + pos: -3.5,48.5 + parent: 2 + - uid: 6802 + components: + - type: Transform + pos: -2.5,49.5 + parent: 2 + - uid: 6803 + components: + - type: Transform + pos: -3.5,47.5 + parent: 2 + - uid: 6804 + components: + - type: Transform + pos: -3.5,46.5 + parent: 2 + - uid: 6805 + components: + - type: Transform + pos: -3.5,45.5 + parent: 2 + - uid: 6806 + components: + - type: Transform + pos: -3.5,44.5 + parent: 2 + - uid: 6807 + components: + - type: Transform + pos: -3.5,43.5 + parent: 2 + - uid: 6808 + components: + - type: Transform + pos: -3.5,42.5 + parent: 2 + - uid: 6809 + components: + - type: Transform + pos: -4.5,42.5 + parent: 2 + - uid: 6810 + components: + - type: Transform + pos: -5.5,42.5 + parent: 2 + - uid: 6811 + components: + - type: Transform + pos: -6.5,42.5 + parent: 2 + - uid: 6812 + components: + - type: Transform + pos: -6.5,43.5 + parent: 2 + - uid: 6813 + components: + - type: Transform + pos: -6.5,44.5 + parent: 2 + - uid: 6814 + components: + - type: Transform + pos: -7.5,44.5 + parent: 2 + - uid: 6815 + components: + - type: Transform + pos: -1.5,42.5 + parent: 2 + - uid: 6816 + components: + - type: Transform + pos: -0.5,42.5 + parent: 2 + - uid: 6817 + components: + - type: Transform + pos: 0.5,42.5 + parent: 2 + - uid: 6818 + components: + - type: Transform + pos: 1.5,42.5 + parent: 2 + - uid: 6819 + components: + - type: Transform + pos: 1.5,43.5 + parent: 2 + - uid: 6820 + components: + - type: Transform + pos: 1.5,44.5 + parent: 2 + - uid: 6821 + components: + - type: Transform + pos: 1.5,45.5 + parent: 2 + - uid: 6822 + components: + - type: Transform + pos: 1.5,46.5 + parent: 2 + - uid: 6823 + components: + - type: Transform + pos: 1.5,47.5 + parent: 2 + - uid: 6824 + components: + - type: Transform + pos: 1.5,48.5 + parent: 2 + - uid: 6825 + components: + - type: Transform + pos: 1.5,49.5 + parent: 2 + - uid: 6826 + components: + - type: Transform + pos: 1.5,50.5 + parent: 2 + - uid: 6827 + components: + - type: Transform + pos: 1.5,51.5 + parent: 2 + - uid: 6828 + components: + - type: Transform + pos: 1.5,52.5 + parent: 2 + - uid: 6829 + components: + - type: Transform + pos: 2.5,52.5 + parent: 2 + - uid: 6830 + components: + - type: Transform + pos: 5.5,52.5 + parent: 2 + - uid: 6831 + components: + - type: Transform + pos: 4.5,52.5 + parent: 2 + - uid: 6832 + components: + - type: Transform + pos: 6.5,53.5 + parent: 2 + - uid: 6833 + components: + - type: Transform + pos: 6.5,52.5 + parent: 2 + - uid: 6834 + components: + - type: Transform + pos: 6.5,53.5 + parent: 2 + - uid: 6835 + components: + - type: Transform + pos: 6.5,54.5 + parent: 2 + - uid: 6836 + components: + - type: Transform + pos: 6.5,55.5 + parent: 2 + - uid: 6837 + components: + - type: Transform + pos: 7.5,55.5 + parent: 2 + - uid: 6838 + components: + - type: Transform + pos: 8.5,55.5 + parent: 2 + - uid: 6839 + components: + - type: Transform + pos: 9.5,55.5 + parent: 2 + - uid: 6840 + components: + - type: Transform + pos: 9.5,56.5 + parent: 2 + - uid: 6841 + components: + - type: Transform + pos: 9.5,57.5 + parent: 2 + - uid: 6842 + components: + - type: Transform + pos: 6.5,54.5 + parent: 2 + - uid: 6843 + components: + - type: Transform + pos: 6.5,55.5 + parent: 2 + - uid: 6844 + components: + - type: Transform + pos: 7.5,55.5 + parent: 2 + - uid: 6845 + components: + - type: Transform + pos: 8.5,55.5 + parent: 2 + - uid: 6846 + components: + - type: Transform + pos: 9.5,55.5 + parent: 2 + - uid: 6847 + components: + - type: Transform + pos: 9.5,56.5 + parent: 2 + - uid: 6848 + components: + - type: Transform + pos: 9.5,57.5 + parent: 2 + - uid: 6849 + components: + - type: Transform + pos: 7.5,52.5 + parent: 2 + - uid: 6850 + components: + - type: Transform + pos: 8.5,52.5 + parent: 2 + - uid: 6851 + components: + - type: Transform + pos: 8.5,51.5 + parent: 2 + - uid: 6852 + components: + - type: Transform + pos: 9.5,51.5 + parent: 2 + - uid: 6853 + components: + - type: Transform + pos: -6.5,44.5 + parent: 2 + - uid: 6854 + components: + - type: Transform + pos: 2.5,53.5 + parent: 2 + - uid: 6855 + components: + - type: Transform + pos: -10.5,50.5 + parent: 2 + - uid: 6856 + components: + - type: Transform + pos: -10.5,51.5 + parent: 2 + - uid: 6857 + components: + - type: Transform + pos: -9.5,51.5 + parent: 2 + - uid: 6858 + components: + - type: Transform + pos: 3.5,26.5 + parent: 2 + - uid: 6859 + components: + - type: Transform + pos: -1.5,41.5 + parent: 2 + - uid: 6860 + components: + - type: Transform + pos: 1.5,42.5 + parent: 2 + - uid: 6861 + components: + - type: Transform + pos: 5.5,30.5 + parent: 2 + - uid: 6862 + components: + - type: Transform + pos: 6.5,29.5 + parent: 2 + - uid: 6863 + components: + - type: Transform + pos: 6.5,30.5 + parent: 2 + - uid: 6864 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 + - uid: 6865 + components: + - type: Transform + pos: 8.5,29.5 + parent: 2 + - uid: 6866 + components: + - type: Transform + pos: 9.5,29.5 + parent: 2 + - uid: 6867 + components: + - type: Transform + pos: 5.5,30.5 + parent: 2 + - uid: 6868 + components: + - type: Transform + pos: 8.5,35.5 + parent: 2 + - uid: 6869 + components: + - type: Transform + pos: 7.5,35.5 + parent: 2 + - uid: 6870 + components: + - type: Transform + pos: 7.5,35.5 + parent: 2 + - uid: 6871 + components: + - type: Transform + pos: 7.5,36.5 + parent: 2 + - uid: 6872 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - uid: 6873 + components: + - type: Transform + pos: 6.5,37.5 + parent: 2 + - uid: 6874 + components: + - type: Transform + pos: 6.5,38.5 + parent: 2 + - uid: 6875 + components: + - type: Transform + pos: 6.5,39.5 + parent: 2 + - uid: 6876 + components: + - type: Transform + pos: 6.5,40.5 + parent: 2 + - uid: 6877 + components: + - type: Transform + pos: 6.5,41.5 + parent: 2 + - uid: 6878 + components: + - type: Transform + pos: 6.5,42.5 + parent: 2 + - uid: 6879 + components: + - type: Transform + pos: 6.5,43.5 + parent: 2 + - uid: 6880 + components: + - type: Transform + pos: 7.5,43.5 + parent: 2 + - uid: 6881 + components: + - type: Transform + pos: 8.5,43.5 + parent: 2 + - uid: 6882 + components: + - type: Transform + pos: 9.5,43.5 + parent: 2 + - uid: 6883 + components: + - type: Transform + pos: -33.5,15.5 + parent: 2 + - uid: 6884 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 + - uid: 6885 + components: + - type: Transform + pos: -33.5,8.5 + parent: 2 + - uid: 6886 + components: + - type: Transform + pos: -33.5,10.5 + parent: 2 + - uid: 6887 + components: + - type: Transform + pos: -33.5,11.5 + parent: 2 + - uid: 6888 + components: + - type: Transform + pos: -33.5,12.5 + parent: 2 + - uid: 6889 + components: + - type: Transform + pos: -33.5,13.5 + parent: 2 + - uid: 6890 + components: + - type: Transform + pos: -33.5,14.5 + parent: 2 + - uid: 6891 + components: + - type: Transform + pos: -34.5,15.5 + parent: 2 + - uid: 6892 + components: + - type: Transform + pos: -35.5,15.5 + parent: 2 + - uid: 6893 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 6894 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 + - uid: 6895 + components: + - type: Transform + pos: -36.5,15.5 + parent: 2 + - uid: 6896 + components: + - type: Transform + pos: -40.5,9.5 + parent: 2 + - uid: 6897 + components: + - type: Transform + pos: -40.5,10.5 + parent: 2 + - uid: 6898 + components: + - type: Transform + pos: -40.5,8.5 + parent: 2 + - uid: 6899 + components: + - type: Transform + pos: -40.5,7.5 + parent: 2 + - uid: 6900 + components: + - type: Transform + pos: -40.5,11.5 + parent: 2 + - uid: 6901 + components: + - type: Transform + pos: -40.5,12.5 + parent: 2 + - uid: 6902 + components: + - type: Transform + pos: -40.5,13.5 + parent: 2 + - uid: 6903 + components: + - type: Transform + pos: -40.5,14.5 + parent: 2 + - uid: 6904 + components: + - type: Transform + pos: -40.5,13.5 + parent: 2 + - uid: 6905 + components: + - type: Transform + pos: -41.5,14.5 + parent: 2 + - uid: 6906 + components: + - type: Transform + pos: -42.5,14.5 + parent: 2 + - uid: 6907 + components: + - type: Transform + pos: -42.5,15.5 + parent: 2 + - uid: 6908 + components: + - type: Transform + pos: -42.5,16.5 + parent: 2 + - uid: 6909 + components: + - type: Transform + pos: -42.5,17.5 + parent: 2 + - uid: 6910 + components: + - type: Transform + pos: -43.5,17.5 + parent: 2 + - uid: 6911 + components: + - type: Transform + pos: -43.5,18.5 + parent: 2 + - uid: 6912 + components: + - type: Transform + pos: -3.5,76.5 + parent: 2 + - uid: 6913 + components: + - type: Transform + pos: -3.5,76.5 + parent: 2 + - uid: 6914 + components: + - type: Transform + pos: -3.5,75.5 + parent: 2 + - uid: 6915 + components: + - type: Transform + pos: -3.5,74.5 + parent: 2 + - uid: 6916 + components: + - type: Transform + pos: -3.5,73.5 + parent: 2 + - uid: 6917 + components: + - type: Transform + pos: -26.5,29.5 + parent: 2 + - uid: 6918 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 6919 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 6920 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 6921 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 + - uid: 6922 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 2 + - uid: 6923 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 2 + - uid: 6924 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 2 + - uid: 6925 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 2 + - uid: 6926 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 + - uid: 6927 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 2 + - uid: 6928 + components: + - type: Transform + pos: -15.5,-10.5 + parent: 2 + - uid: 6929 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 + - uid: 6930 + components: + - type: Transform + pos: -30.5,-43.5 + parent: 2 + - uid: 6931 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 + - uid: 6932 + components: + - type: Transform + pos: -32.5,-43.5 + parent: 2 + - uid: 6933 + components: + - type: Transform + pos: -24.5,18.5 + parent: 2 + - uid: 6934 + components: + - type: Transform + pos: -25.5,18.5 + parent: 2 + - uid: 6935 + components: + - type: Transform + pos: -26.5,18.5 + parent: 2 + - uid: 6936 + components: + - type: Transform + pos: -27.5,20.5 + parent: 2 + - uid: 6937 + components: + - type: Transform + pos: -27.5,21.5 + parent: 2 + - uid: 6938 + components: + - type: Transform + pos: -27.5,22.5 + parent: 2 + - uid: 6939 + components: + - type: Transform + pos: -27.5,23.5 + parent: 2 + - uid: 6940 + components: + - type: Transform + pos: -27.5,24.5 + parent: 2 + - uid: 6941 + components: + - type: Transform + pos: -27.5,25.5 + parent: 2 + - uid: 6942 + components: + - type: Transform + pos: -27.5,26.5 + parent: 2 + - uid: 6943 + components: + - type: Transform + pos: -27.5,27.5 + parent: 2 + - uid: 6944 + components: + - type: Transform + pos: -27.5,28.5 + parent: 2 + - uid: 6945 + components: + - type: Transform + pos: -27.5,29.5 + parent: 2 + - uid: 6946 + components: + - type: Transform + pos: -25.5,29.5 + parent: 2 + - uid: 6947 + components: + - type: Transform + pos: -25.5,31.5 + parent: 2 + - uid: 6948 + components: + - type: Transform + pos: -25.5,30.5 + parent: 2 + - uid: 6949 + components: + - type: Transform + pos: -25.5,31.5 + parent: 2 + - uid: 6950 + components: + - type: Transform + pos: -22.5,16.5 + parent: 2 + - uid: 6951 + components: + - type: Transform + pos: -22.5,15.5 + parent: 2 + - uid: 6952 + components: + - type: Transform + pos: -21.5,15.5 + parent: 2 + - uid: 6953 + components: + - type: Transform + pos: -20.5,15.5 + parent: 2 + - uid: 6954 + components: + - type: Transform + pos: -20.5,16.5 + parent: 2 + - uid: 6955 + components: + - type: Transform + pos: -20.5,17.5 + parent: 2 + - uid: 6956 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - uid: 6957 + components: + - type: Transform + pos: -20.5,16.5 + parent: 2 + - uid: 6958 + components: + - type: Transform + pos: -20.5,17.5 + parent: 2 + - uid: 6959 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - uid: 6960 + components: + - type: Transform + pos: -20.5,19.5 + parent: 2 + - uid: 6961 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 + - uid: 6962 + components: + - type: Transform + pos: -20.5,21.5 + parent: 2 + - uid: 6963 + components: + - type: Transform + pos: -20.5,22.5 + parent: 2 + - uid: 6964 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 + - uid: 6965 + components: + - type: Transform + pos: -24.5,29.5 + parent: 2 + - uid: 6966 + components: + - type: Transform + pos: -23.5,29.5 + parent: 2 + - uid: 6967 + components: + - type: Transform + pos: -23.5,28.5 + parent: 2 + - uid: 6968 + components: + - type: Transform + pos: -22.5,28.5 + parent: 2 + - uid: 6969 + components: + - type: Transform + pos: -21.5,28.5 + parent: 2 + - uid: 6970 + components: + - type: Transform + pos: -20.5,28.5 + parent: 2 + - uid: 6971 + components: + - type: Transform + pos: -19.5,28.5 + parent: 2 + - uid: 6972 + components: + - type: Transform + pos: -19.5,28.5 + parent: 2 + - uid: 6973 + components: + - type: Transform + pos: -19.5,29.5 + parent: 2 + - uid: 6974 + components: + - type: Transform + pos: -19.5,30.5 + parent: 2 + - uid: 6975 + components: + - type: Transform + pos: -19.5,31.5 + parent: 2 + - uid: 6976 + components: + - type: Transform + pos: -19.5,32.5 + parent: 2 + - uid: 6977 + components: + - type: Transform + pos: -19.5,33.5 + parent: 2 + - uid: 6978 + components: + - type: Transform + pos: -19.5,34.5 + parent: 2 + - uid: 6979 + components: + - type: Transform + pos: -19.5,35.5 + parent: 2 + - uid: 6980 + components: + - type: Transform + pos: -19.5,36.5 + parent: 2 + - uid: 6981 + components: + - type: Transform + pos: -19.5,37.5 + parent: 2 + - uid: 6982 + components: + - type: Transform + pos: -23.5,29.5 + parent: 2 + - uid: 6983 + components: + - type: Transform + pos: -23.5,30.5 + parent: 2 + - uid: 6984 + components: + - type: Transform + pos: -23.5,31.5 + parent: 2 + - uid: 6985 + components: + - type: Transform + pos: -23.5,32.5 + parent: 2 + - uid: 6986 + components: + - type: Transform + pos: -23.5,33.5 + parent: 2 + - uid: 6987 + components: + - type: Transform + pos: -23.5,34.5 + parent: 2 + - uid: 6988 + components: + - type: Transform + pos: -23.5,35.5 + parent: 2 + - uid: 6989 + components: + - type: Transform + pos: -24.5,35.5 + parent: 2 + - uid: 6990 + components: + - type: Transform + pos: -25.5,35.5 + parent: 2 + - uid: 6991 + components: + - type: Transform + pos: -26.5,35.5 + parent: 2 + - uid: 6992 + components: + - type: Transform + pos: -27.5,35.5 + parent: 2 + - uid: 6993 + components: + - type: Transform + pos: -28.5,35.5 + parent: 2 + - uid: 6994 + components: + - type: Transform + pos: -29.5,35.5 + parent: 2 + - uid: 6995 + components: + - type: Transform + pos: -30.5,35.5 + parent: 2 + - uid: 6996 + components: + - type: Transform + pos: -30.5,35.5 + parent: 2 + - uid: 6997 + components: + - type: Transform + pos: -30.5,36.5 + parent: 2 + - uid: 6998 + components: + - type: Transform + pos: -30.5,37.5 + parent: 2 + - uid: 6999 + components: + - type: Transform + pos: -30.5,38.5 + parent: 2 + - uid: 7000 + components: + - type: Transform + pos: -30.5,39.5 + parent: 2 + - uid: 7001 + components: + - type: Transform + pos: -30.5,40.5 + parent: 2 + - uid: 7002 + components: + - type: Transform + pos: -23.5,36.5 + parent: 2 + - uid: 7003 + components: + - type: Transform + pos: -23.5,37.5 + parent: 2 + - uid: 7004 + components: + - type: Transform + pos: -23.5,37.5 + parent: 2 + - uid: 7005 + components: + - type: Transform + pos: -23.5,36.5 + parent: 2 + - uid: 7006 + components: + - type: Transform + pos: -23.5,38.5 + parent: 2 + - uid: 7007 + components: + - type: Transform + pos: -22.5,38.5 + parent: 2 + - uid: 7008 + components: + - type: Transform + pos: -21.5,38.5 + parent: 2 + - uid: 7009 + components: + - type: Transform + pos: -21.5,39.5 + parent: 2 + - uid: 7010 + components: + - type: Transform + pos: -21.5,40.5 + parent: 2 + - uid: 7011 + components: + - type: Transform + pos: -21.5,41.5 + parent: 2 + - uid: 7012 + components: + - type: Transform + pos: -20.5,41.5 + parent: 2 + - uid: 7013 + components: + - type: Transform + pos: -28.5,29.5 + parent: 2 + - uid: 7014 + components: + - type: Transform + pos: -28.5,29.5 + parent: 2 + - uid: 7015 + components: + - type: Transform + pos: -29.5,29.5 + parent: 2 + - uid: 7016 + components: + - type: Transform + pos: -30.5,29.5 + parent: 2 + - uid: 7017 + components: + - type: Transform + pos: -31.5,29.5 + parent: 2 + - uid: 7018 + components: + - type: Transform + pos: -32.5,29.5 + parent: 2 + - uid: 7019 + components: + - type: Transform + pos: -33.5,29.5 + parent: 2 + - uid: 7020 + components: + - type: Transform + pos: -34.5,29.5 + parent: 2 + - uid: 7021 + components: + - type: Transform + pos: -35.5,29.5 + parent: 2 + - uid: 7022 + components: + - type: Transform + pos: -36.5,29.5 + parent: 2 + - uid: 7023 + components: + - type: Transform + pos: -36.5,29.5 + parent: 2 + - uid: 7024 + components: + - type: Transform + pos: -36.5,28.5 + parent: 2 + - uid: 7025 + components: + - type: Transform + pos: -36.5,27.5 + parent: 2 + - uid: 7026 + components: + - type: Transform + pos: -36.5,26.5 + parent: 2 + - uid: 7027 + components: + - type: Transform + pos: -36.5,25.5 + parent: 2 + - uid: 7028 + components: + - type: Transform + pos: -36.5,24.5 + parent: 2 + - uid: 7029 + components: + - type: Transform + pos: -36.5,23.5 + parent: 2 + - uid: 7030 + components: + - type: Transform + pos: -36.5,22.5 + parent: 2 + - uid: 7031 + components: + - type: Transform + pos: -36.5,21.5 + parent: 2 + - uid: 7032 + components: + - type: Transform + pos: -36.5,20.5 + parent: 2 + - uid: 7033 + components: + - type: Transform + pos: -36.5,19.5 + parent: 2 + - uid: 7034 + components: + - type: Transform + pos: -36.5,18.5 + parent: 2 + - uid: 7035 + components: + - type: Transform + pos: -20.5,19.5 + parent: 2 + - uid: 7036 + components: + - type: Transform + pos: -19.5,19.5 + parent: 2 + - uid: 7037 + components: + - type: Transform + pos: -18.5,19.5 + parent: 2 + - uid: 7038 + components: + - type: Transform + pos: -17.5,19.5 + parent: 2 + - uid: 7039 + components: + - type: Transform + pos: -16.5,19.5 + parent: 2 + - uid: 7040 + components: + - type: Transform + pos: -15.5,19.5 + parent: 2 + - uid: 7041 + components: + - type: Transform + pos: -14.5,19.5 + parent: 2 + - uid: 7042 + components: + - type: Transform + pos: -13.5,19.5 + parent: 2 + - uid: 7043 + components: + - type: Transform + pos: -12.5,19.5 + parent: 2 + - uid: 7044 + components: + - type: Transform + pos: -11.5,19.5 + parent: 2 + - uid: 7045 + components: + - type: Transform + pos: -10.5,19.5 + parent: 2 + - uid: 7046 + components: + - type: Transform + pos: -9.5,19.5 + parent: 2 + - uid: 7047 + components: + - type: Transform + pos: -9.5,18.5 + parent: 2 + - uid: 7048 + components: + - type: Transform + pos: -9.5,17.5 + parent: 2 + - uid: 7049 + components: + - type: Transform + pos: -9.5,15.5 + parent: 2 + - uid: 7050 + components: + - type: Transform + pos: -9.5,16.5 + parent: 2 + - uid: 7051 + components: + - type: Transform + pos: -9.5,17.5 + parent: 2 + - uid: 7052 + components: + - type: Transform + pos: -9.5,14.5 + parent: 2 + - uid: 7053 + components: + - type: Transform + pos: -10.5,14.5 + parent: 2 + - uid: 7054 + components: + - type: Transform + pos: -11.5,14.5 + parent: 2 + - uid: 7055 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 + - uid: 7056 + components: + - type: Transform + pos: -11.5,12.5 + parent: 2 + - uid: 7057 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - uid: 7058 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - uid: 7059 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - uid: 7060 + components: + - type: Transform + pos: -10.5,10.5 + parent: 2 + - uid: 7061 + components: + - type: Transform + pos: -9.5,10.5 + parent: 2 + - uid: 7062 + components: + - type: Transform + pos: -8.5,10.5 + parent: 2 + - uid: 7063 + components: + - type: Transform + pos: 29.5,27.5 + parent: 2 + - uid: 7064 + components: + - type: Transform + pos: 29.5,27.5 + parent: 2 + - uid: 7065 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 + - uid: 7066 + components: + - type: Transform + pos: 31.5,27.5 + parent: 2 + - uid: 7067 + components: + - type: Transform + pos: 32.5,27.5 + parent: 2 + - uid: 7068 + components: + - type: Transform + pos: 33.5,27.5 + parent: 2 + - uid: 7069 + components: + - type: Transform + pos: 34.5,27.5 + parent: 2 + - uid: 7070 + components: + - type: Transform + pos: 35.5,27.5 + parent: 2 + - uid: 7071 + components: + - type: Transform + pos: 36.5,27.5 + parent: 2 + - uid: 7072 + components: + - type: Transform + pos: 37.5,27.5 + parent: 2 + - uid: 7073 + components: + - type: Transform + pos: 38.5,27.5 + parent: 2 + - uid: 7074 + components: + - type: Transform + pos: 39.5,27.5 + parent: 2 + - uid: 7075 + components: + - type: Transform + pos: 40.5,27.5 + parent: 2 + - uid: 7076 + components: + - type: Transform + pos: 40.5,26.5 + parent: 2 + - uid: 7077 + components: + - type: Transform + pos: 41.5,26.5 + parent: 2 + - uid: 7078 + components: + - type: Transform + pos: 29.5,28.5 + parent: 2 + - uid: 7079 + components: + - type: Transform + pos: 29.5,27.5 + parent: 2 + - uid: 7080 + components: + - type: Transform + pos: 29.5,29.5 + parent: 2 + - uid: 7081 + components: + - type: Transform + pos: 29.5,30.5 + parent: 2 + - uid: 7082 + components: + - type: Transform + pos: 29.5,31.5 + parent: 2 + - uid: 7083 + components: + - type: Transform + pos: 29.5,31.5 + parent: 2 + - uid: 7084 + components: + - type: Transform + pos: 28.5,31.5 + parent: 2 + - uid: 7085 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 + - uid: 7086 + components: + - type: Transform + pos: 26.5,31.5 + parent: 2 + - uid: 7087 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 + - uid: 7088 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 + - uid: 7089 + components: + - type: Transform + pos: 23.5,31.5 + parent: 2 + - uid: 7090 + components: + - type: Transform + pos: 22.5,31.5 + parent: 2 + - uid: 7091 + components: + - type: Transform + pos: 21.5,31.5 + parent: 2 + - uid: 7092 + components: + - type: Transform + pos: 20.5,31.5 + parent: 2 + - uid: 7093 + components: + - type: Transform + pos: 20.5,31.5 + parent: 2 + - uid: 7094 + components: + - type: Transform + pos: 20.5,32.5 + parent: 2 + - uid: 7095 + components: + - type: Transform + pos: 20.5,33.5 + parent: 2 + - uid: 7096 + components: + - type: Transform + pos: 20.5,34.5 + parent: 2 + - uid: 7097 + components: + - type: Transform + pos: 20.5,35.5 + parent: 2 + - uid: 7098 + components: + - type: Transform + pos: 20.5,36.5 + parent: 2 + - uid: 7099 + components: + - type: Transform + pos: 20.5,37.5 + parent: 2 + - uid: 7100 + components: + - type: Transform + pos: 19.5,37.5 + parent: 2 + - uid: 7101 + components: + - type: Transform + pos: 18.5,37.5 + parent: 2 + - uid: 7102 + components: + - type: Transform + pos: 12.5,16.5 + parent: 2 + - uid: 7103 + components: + - type: Transform + pos: 29.5,32.5 + parent: 2 + - uid: 7104 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 + - uid: 7105 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 7106 + components: + - type: Transform + pos: 28.5,34.5 + parent: 2 + - uid: 7107 + components: + - type: Transform + pos: 28.5,34.5 + parent: 2 + - uid: 7108 + components: + - type: Transform + pos: 27.5,34.5 + parent: 2 + - uid: 7109 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - uid: 7110 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 7111 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 7112 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 7113 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - uid: 7114 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 7115 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 7116 + components: + - type: Transform + pos: 32.5,0.5 + parent: 2 + - uid: 7117 + components: + - type: Transform + pos: 33.5,0.5 + parent: 2 + - uid: 7118 + components: + - type: Transform + pos: 34.5,0.5 + parent: 2 + - uid: 7119 + components: + - type: Transform + pos: 34.5,0.5 + parent: 2 + - uid: 7120 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 2 + - uid: 7121 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 2 + - uid: 7122 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 7123 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 2 + - uid: 7124 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 2 + - uid: 7125 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 2 + - uid: 7126 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 2 + - uid: 7127 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 2 + - uid: 7128 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 2 + - uid: 7129 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 2 + - uid: 7130 + components: + - type: Transform + pos: -29.5,-31.5 + parent: 2 + - uid: 7131 + components: + - type: Transform + pos: -34.5,5.5 + parent: 2 + - uid: 7132 + components: + - type: Transform + pos: -35.5,5.5 + parent: 2 + - uid: 7133 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 2 + - uid: 7134 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 2 + - uid: 7135 + components: + - type: Transform + pos: -29.5,-28.5 + parent: 2 + - uid: 7136 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 2 + - uid: 7137 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 2 + - uid: 7138 + components: + - type: Transform + pos: -29.5,-25.5 + parent: 2 + - uid: 7139 + components: + - type: Transform + pos: -29.5,-24.5 + parent: 2 + - uid: 7140 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 2 + - uid: 7141 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - uid: 7142 + components: + - type: Transform + pos: -30.5,-22.5 + parent: 2 + - uid: 7143 + components: + - type: Transform + pos: -31.5,-22.5 + parent: 2 + - uid: 7144 + components: + - type: Transform + pos: -31.5,-22.5 + parent: 2 + - uid: 7145 + components: + - type: Transform + pos: -31.5,-21.5 + parent: 2 + - uid: 7146 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 2 + - uid: 7147 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 2 + - uid: 7148 + components: + - type: Transform + pos: -19.5,1.5 + parent: 2 + - uid: 7149 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - uid: 7150 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 + - uid: 7151 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - uid: 7152 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 2 + - uid: 7153 + components: + - type: Transform + pos: -2.5,42.5 + parent: 2 + - uid: 7154 + components: + - type: Transform + pos: 2.5,54.5 + parent: 2 + - uid: 7155 + components: + - type: Transform + pos: 2.5,55.5 + parent: 2 + - uid: 7156 + components: + - type: Transform + pos: 0.5,59.5 + parent: 2 + - uid: 7157 + components: + - type: Transform + pos: -3.5,56.5 + parent: 2 + - uid: 7158 + components: + - type: Transform + pos: 2.5,57.5 + parent: 2 + - uid: 7159 + components: + - type: Transform + pos: 1.5,59.5 + parent: 2 + - uid: 7160 + components: + - type: Transform + pos: -0.5,59.5 + parent: 2 + - uid: 7161 + components: + - type: Transform + pos: 2.5,58.5 + parent: 2 + - uid: 7162 + components: + - type: Transform + pos: 2.5,59.5 + parent: 2 + - uid: 7163 + components: + - type: Transform + pos: -1.5,59.5 + parent: 2 + - uid: 7164 + components: + - type: Transform + pos: -2.5,59.5 + parent: 2 + - uid: 7165 + components: + - type: Transform + pos: -3.5,59.5 + parent: 2 + - uid: 7166 + components: + - type: Transform + pos: -3.5,55.5 + parent: 2 + - uid: 7167 + components: + - type: Transform + pos: -4.5,55.5 + parent: 2 + - uid: 7168 + components: + - type: Transform + pos: -3.5,58.5 + parent: 2 + - uid: 7169 + components: + - type: Transform + pos: -3.5,57.5 + parent: 2 + - uid: 7170 + components: + - type: Transform + pos: -5.5,55.5 + parent: 2 + - uid: 7171 + components: + - type: Transform + pos: -6.5,55.5 + parent: 2 + - uid: 7172 + components: + - type: Transform + pos: -6.5,54.5 + parent: 2 + - uid: 7173 + components: + - type: Transform + pos: -6.5,53.5 + parent: 2 + - uid: 7174 + components: + - type: Transform + pos: -6.5,52.5 + parent: 2 + - uid: 7175 + components: + - type: Transform + pos: -7.5,52.5 + parent: 2 + - uid: 7176 + components: + - type: Transform + pos: -7.5,51.5 + parent: 2 + - uid: 7177 + components: + - type: Transform + pos: -7.5,50.5 + parent: 2 + - uid: 7178 + components: + - type: Transform + pos: -8.5,50.5 + parent: 2 + - uid: 7179 + components: + - type: Transform + pos: -9.5,50.5 + parent: 2 + - uid: 7180 + components: + - type: Transform + pos: -5.5,-64.5 + parent: 2 + - uid: 7181 + components: + - type: Transform + pos: -5.5,-65.5 + parent: 2 + - uid: 7182 + components: + - type: Transform + pos: -4.5,-63.5 + parent: 2 + - uid: 7183 + components: + - type: Transform + pos: -5.5,-63.5 + parent: 2 + - uid: 7184 + components: + - type: Transform + pos: -5.5,-66.5 + parent: 2 + - uid: 7185 + components: + - type: Transform + pos: 7.5,-64.5 + parent: 2 + - uid: 7186 + components: + - type: Transform + pos: -4.5,-69.5 + parent: 2 + - uid: 7187 + components: + - type: Transform + pos: -3.5,-69.5 + parent: 2 + - uid: 7188 + components: + - type: Transform + pos: 7.5,-68.5 + parent: 2 + - uid: 7189 + components: + - type: Transform + pos: 7.5,-67.5 + parent: 2 + - uid: 7190 + components: + - type: Transform + pos: -5.5,-69.5 + parent: 2 + - uid: 7191 + components: + - type: Transform + pos: -5.5,-67.5 + parent: 2 + - uid: 7192 + components: + - type: Transform + pos: -5.5,-68.5 + parent: 2 + - uid: 7193 + components: + - type: Transform + pos: -2.5,-69.5 + parent: 2 + - uid: 7194 + components: + - type: Transform + pos: -1.5,-69.5 + parent: 2 + - uid: 7195 + components: + - type: Transform + pos: 2.5,-69.5 + parent: 2 + - uid: 7196 + components: + - type: Transform + pos: 3.5,-69.5 + parent: 2 + - uid: 7197 + components: + - type: Transform + pos: 5.5,-69.5 + parent: 2 + - uid: 7198 + components: + - type: Transform + pos: 7.5,-69.5 + parent: 2 + - uid: 7199 + components: + - type: Transform + pos: 7.5,-66.5 + parent: 2 + - uid: 7200 + components: + - type: Transform + pos: 6.5,-69.5 + parent: 2 + - uid: 7201 + components: + - type: Transform + pos: 4.5,-69.5 + parent: 2 + - uid: 7202 + components: + - type: Transform + pos: 7.5,-65.5 + parent: 2 +- proto: CableMVStack + entities: + - uid: 7203 + components: + - type: Transform + pos: 4.574347,15.341499 + parent: 2 + - uid: 7204 + components: + - type: Transform + pos: 14.444348,-51.3542 + parent: 2 + - uid: 7205 + components: + - type: Transform + pos: 22.505043,-45.34941 + parent: 2 + - uid: 7206 + components: + - type: Transform + pos: -3.5940933,49.542595 + parent: 2 +- proto: CableMVStack10 + entities: + - uid: 7207 + components: + - type: Transform + pos: -36.41552,-29.628822 + parent: 2 +- proto: CableTerminal + entities: + - uid: 7208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-46.5 + parent: 2 + - uid: 7209 + components: + - type: Transform + pos: -35.5,-55.5 + parent: 2 + - uid: 7210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,31.5 + parent: 2 + - uid: 7211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,77.5 + parent: 2 + - uid: 7212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-56.5 + parent: 2 + - uid: 7213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,23.5 + parent: 2 + - uid: 7214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-56.5 + parent: 2 + - uid: 7215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-56.5 + parent: 2 + - uid: 7216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-56.5 + parent: 2 + - uid: 7217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-57.5 + parent: 2 + - uid: 7218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-58.5 + parent: 2 + - uid: 7219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,34.5 + parent: 2 +- proto: CandleRedInfinite + entities: + - uid: 7220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,45.5 + parent: 2 + - uid: 7221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,45.5 + parent: 2 + - uid: 7222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,33.5 + parent: 2 + - uid: 7223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,32.5 + parent: 2 + - uid: 7224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,29.5 + parent: 2 + - uid: 7225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,30.5 + parent: 2 + - uid: 7226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,35.5 + parent: 2 +- proto: CapacitorStockPart + entities: + - uid: 7227 + components: + - type: Transform + pos: 25.373764,-39.396965 + parent: 2 + - uid: 7228 + components: + - type: Transform + pos: 25.513626,-39.31305 + parent: 2 +- proto: CaptainIDCard + entities: + - uid: 7229 + components: + - type: Transform + pos: -3.5046058,53.08522 + parent: 2 +- proto: CarbonDioxideCanister + entities: + - uid: 7230 + components: + - type: Transform + pos: -27.5,-39.5 + parent: 2 + - uid: 7231 + components: + - type: Transform + pos: 19.5,-49.5 + parent: 2 + - uid: 7232 + components: + - type: Transform + pos: 19.5,-50.5 + parent: 2 + - uid: 7233 + components: + - type: Transform + pos: -27.5,-38.5 + parent: 2 +- proto: CargoBountyComputerCircuitboard + entities: + - uid: 7234 + components: + - type: Transform + pos: -3.444475,-35.393864 + parent: 2 +- proto: CargoRequestComputerCircuitboard + entities: + - uid: 7235 + components: + - type: Transform + pos: -3.5750108,-35.580345 + parent: 2 +- proto: Carpet + entities: + - uid: 7236 + components: + - type: Transform + pos: 32.5,4.5 + parent: 2 + - uid: 7237 + components: + - type: Transform + pos: -27.5,-67.5 + parent: 2 + - uid: 7238 + components: + - type: Transform + pos: -26.5,-67.5 + parent: 2 + - uid: 7239 + components: + - type: Transform + pos: -25.5,-66.5 + parent: 2 + - uid: 7240 + components: + - type: Transform + pos: 32.5,5.5 + parent: 2 + - uid: 7241 + components: + - type: Transform + pos: 33.5,4.5 + parent: 2 + - uid: 7242 + components: + - type: Transform + pos: 33.5,5.5 + parent: 2 + - uid: 7243 + components: + - type: Transform + pos: 34.5,4.5 + parent: 2 + - uid: 7244 + components: + - type: Transform + pos: 34.5,5.5 + parent: 2 + - uid: 7245 + components: + - type: Transform + pos: 35.5,4.5 + parent: 2 + - uid: 7246 + components: + - type: Transform + pos: 35.5,5.5 + parent: 2 + - uid: 7247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,7.5 + parent: 2 + - uid: 7248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 2 + - uid: 7249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,9.5 + parent: 2 + - uid: 7250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,10.5 + parent: 2 + - uid: 7251 + components: + - type: Transform + pos: 41.5,12.5 + parent: 2 + - uid: 7252 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - uid: 7253 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 + - uid: 7254 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - uid: 7255 + components: + - type: Transform + pos: 42.5,14.5 + parent: 2 + - uid: 7256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,7.5 + parent: 2 + - uid: 7257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,7.5 + parent: 2 + - uid: 7258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,6.5 + parent: 2 + - uid: 7259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,6.5 + parent: 2 + - uid: 7260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,6.5 + parent: 2 + - uid: 7261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,6.5 + parent: 2 + - uid: 7262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,6.5 + parent: 2 + - uid: 7263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,6.5 + parent: 2 + - uid: 7264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,7.5 + parent: 2 + - uid: 7265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,9.5 + parent: 2 + - uid: 7266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,9.5 + parent: 2 + - uid: 7267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,9.5 + parent: 2 + - uid: 7268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,9.5 + parent: 2 + - uid: 7269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,9.5 + parent: 2 + - uid: 7270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,8.5 + parent: 2 + - uid: 7271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,5.5 + parent: 2 + - uid: 7272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,3.5 + parent: 2 + - uid: 7273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,3.5 + parent: 2 + - uid: 7274 + components: + - type: Transform + pos: -19.5,18.5 + parent: 2 + - uid: 7275 + components: + - type: Transform + pos: -19.5,19.5 + parent: 2 + - uid: 7276 + components: + - type: Transform + pos: -19.5,20.5 + parent: 2 + - uid: 7277 + components: + - type: Transform + pos: -19.5,21.5 + parent: 2 + - uid: 7278 + components: + - type: Transform + pos: -19.5,22.5 + parent: 2 + - uid: 7279 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - uid: 7280 + components: + - type: Transform + pos: -20.5,19.5 + parent: 2 + - uid: 7281 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 + - uid: 7282 + components: + - type: Transform + pos: -20.5,21.5 + parent: 2 + - uid: 7283 + components: + - type: Transform + pos: -20.5,22.5 + parent: 2 + - uid: 7284 + components: + - type: Transform + pos: -21.5,18.5 + parent: 2 + - uid: 7285 + components: + - type: Transform + pos: -21.5,19.5 + parent: 2 + - uid: 7286 + components: + - type: Transform + pos: -21.5,20.5 + parent: 2 + - uid: 7287 + components: + - type: Transform + pos: -21.5,21.5 + parent: 2 + - uid: 7288 + components: + - type: Transform + pos: -21.5,22.5 + parent: 2 + - uid: 7289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,43.5 + parent: 2 + - uid: 7290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,44.5 + parent: 2 + - uid: 7291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,43.5 + parent: 2 + - uid: 7292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,44.5 + parent: 2 + - uid: 7293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,43.5 + parent: 2 + - uid: 7294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,44.5 + parent: 2 + - uid: 7295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,43.5 + parent: 2 + - uid: 7296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,44.5 + parent: 2 + - uid: 7297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,43.5 + parent: 2 + - uid: 7298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,44.5 + parent: 2 + - uid: 7299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,43.5 + parent: 2 + - uid: 7300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,44.5 + parent: 2 + - uid: 7301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,45.5 + parent: 2 + - uid: 7302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,45.5 + parent: 2 + - uid: 7303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,45.5 + parent: 2 + - uid: 7304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,45.5 + parent: 2 + - uid: 7305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,45.5 + parent: 2 + - uid: 7306 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 7307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,12.5 + parent: 2 + - uid: 7308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,8.5 + parent: 2 + - uid: 7309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,9.5 + parent: 2 +- proto: CarpetBlack + entities: + - uid: 7310 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 7311 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 7312 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 7313 + components: + - type: Transform + pos: -4.5,16.5 + parent: 2 + - uid: 7314 + components: + - type: Transform + pos: -3.5,13.5 + parent: 2 + - uid: 7315 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - uid: 7316 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 + - uid: 7317 + components: + - type: Transform + pos: -3.5,16.5 + parent: 2 + - uid: 7318 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - uid: 7319 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 + - uid: 7320 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 7321 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 7322 + components: + - type: Transform + pos: -31.5,-61.5 + parent: 2 + - uid: 7323 + components: + - type: Transform + pos: -31.5,-60.5 + parent: 2 + - uid: 7324 + components: + - type: Transform + pos: -30.5,-61.5 + parent: 2 + - uid: 7325 + components: + - type: Transform + pos: -30.5,-60.5 + parent: 2 + - uid: 7326 + components: + - type: Transform + pos: -29.5,-61.5 + parent: 2 + - uid: 7327 + components: + - type: Transform + pos: -29.5,-60.5 + parent: 2 + - uid: 7328 + components: + - type: Transform + pos: -31.5,-62.5 + parent: 2 + - uid: 7329 + components: + - type: Transform + pos: -31.5,-63.5 + parent: 2 + - uid: 7330 + components: + - type: Transform + pos: -31.5,-64.5 + parent: 2 + - uid: 7331 + components: + - type: Transform + pos: -30.5,-62.5 + parent: 2 + - uid: 7332 + components: + - type: Transform + pos: -30.5,-63.5 + parent: 2 + - uid: 7333 + components: + - type: Transform + pos: -30.5,-64.5 + parent: 2 + - uid: 7334 + components: + - type: Transform + pos: -29.5,-64.5 + parent: 2 + - uid: 7335 + components: + - type: Transform + pos: -29.5,-63.5 + parent: 2 + - uid: 7336 + components: + - type: Transform + pos: -28.5,-64.5 + parent: 2 + - uid: 7337 + components: + - type: Transform + pos: -28.5,-63.5 + parent: 2 + - uid: 7338 + components: + - type: Transform + pos: -28.5,-62.5 + parent: 2 + - uid: 7339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-0.5 + parent: 2 + - uid: 7340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,0.5 + parent: 2 + - uid: 7341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,1.5 + parent: 2 + - uid: 7342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-0.5 + parent: 2 + - uid: 7343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,0.5 + parent: 2 + - uid: 7344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,1.5 + parent: 2 + - uid: 7345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-0.5 + parent: 2 + - uid: 7346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,0.5 + parent: 2 + - uid: 7347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,1.5 + parent: 2 + - uid: 7348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-0.5 + parent: 2 + - uid: 7349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-1.5 + parent: 2 + - uid: 7350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-0.5 + parent: 2 + - uid: 7351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,0.5 + parent: 2 + - uid: 7352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-1.5 + parent: 2 + - uid: 7353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-0.5 + parent: 2 + - uid: 7354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,0.5 + parent: 2 + - uid: 7355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-1.5 + parent: 2 + - uid: 7356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-0.5 + parent: 2 + - uid: 7357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,0.5 + parent: 2 + - uid: 7358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,0.5 + parent: 2 + - uid: 7359 + components: + - type: Transform + pos: -34.5,-60.5 + parent: 2 + - uid: 7360 + components: + - type: Transform + pos: -35.5,-59.5 + parent: 2 + - uid: 7361 + components: + - type: Transform + pos: -36.5,-60.5 + parent: 2 + - uid: 7362 + components: + - type: Transform + pos: -35.5,-58.5 + parent: 2 + - uid: 7363 + components: + - type: Transform + pos: -34.5,-58.5 + parent: 2 + - uid: 7364 + components: + - type: Transform + pos: -36.5,-59.5 + parent: 2 + - uid: 7365 + components: + - type: Transform + pos: -35.5,-60.5 + parent: 2 +- proto: CarpetBlue + entities: + - uid: 7366 + components: + - type: Transform + pos: 22.5,5.5 + parent: 2 + - uid: 7367 + components: + - type: Transform + pos: 22.5,4.5 + parent: 2 + - uid: 7368 + components: + - type: Transform + pos: 23.5,5.5 + parent: 2 + - uid: 7369 + components: + - type: Transform + pos: 23.5,4.5 + parent: 2 + - uid: 7370 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 + - uid: 7371 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 + - uid: 7372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,8.5 + parent: 2 + - uid: 7373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,9.5 + parent: 2 + - uid: 7374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,8.5 + parent: 2 + - uid: 7375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,9.5 + parent: 2 + - uid: 7376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,8.5 + parent: 2 + - uid: 7377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,9.5 + parent: 2 + - uid: 7378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,38.5 + parent: 2 + - uid: 7379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,39.5 + parent: 2 + - uid: 7380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,40.5 + parent: 2 + - uid: 7381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,41.5 + parent: 2 + - uid: 7382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,38.5 + parent: 2 + - uid: 7383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,39.5 + parent: 2 + - uid: 7384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,40.5 + parent: 2 + - uid: 7385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,41.5 + parent: 2 + - uid: 7386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,39.5 + parent: 2 + - uid: 7387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,40.5 + parent: 2 + - uid: 7388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,38.5 + parent: 2 + - uid: 7389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,39.5 + parent: 2 + - uid: 7390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,40.5 + parent: 2 + - uid: 7391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,41.5 + parent: 2 + - uid: 7392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,38.5 + parent: 2 + - uid: 7393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,39.5 + parent: 2 + - uid: 7394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,40.5 + parent: 2 + - uid: 7395 + components: + - type: Transform + pos: -8.5,50.5 + parent: 2 + - uid: 7396 + components: + - type: Transform + pos: -8.5,49.5 + parent: 2 + - uid: 7397 + components: + - type: Transform + pos: -8.5,48.5 + parent: 2 + - uid: 7398 + components: + - type: Transform + pos: -8.5,47.5 + parent: 2 + - uid: 7399 + components: + - type: Transform + pos: -7.5,50.5 + parent: 2 + - uid: 7400 + components: + - type: Transform + pos: -7.5,49.5 + parent: 2 + - uid: 7401 + components: + - type: Transform + pos: -7.5,48.5 + parent: 2 + - uid: 7402 + components: + - type: Transform + pos: -7.5,47.5 + parent: 2 + - uid: 7403 + components: + - type: Transform + pos: -6.5,50.5 + parent: 2 + - uid: 7404 + components: + - type: Transform + pos: -6.5,49.5 + parent: 2 + - uid: 7405 + components: + - type: Transform + pos: -5.5,49.5 + parent: 2 + - uid: 7406 + components: + - type: Transform + pos: -5.5,48.5 + parent: 2 + - uid: 7407 + components: + - type: Transform + pos: -5.5,47.5 + parent: 2 + - uid: 7408 + components: + - type: Transform + pos: -9.5,50.5 + parent: 2 + - uid: 7409 + components: + - type: Transform + pos: -7.5,51.5 + parent: 2 + - uid: 7410 + components: + - type: Transform + pos: -8.5,52.5 + parent: 2 + - uid: 7411 + components: + - type: Transform + pos: -8.5,53.5 + parent: 2 + - uid: 7412 + components: + - type: Transform + pos: -7.5,52.5 + parent: 2 + - uid: 7413 + components: + - type: Transform + pos: -7.5,53.5 + parent: 2 + - uid: 7414 + components: + - type: Transform + pos: -6.5,52.5 + parent: 2 + - uid: 7415 + components: + - type: Transform + pos: -6.5,53.5 + parent: 2 + - uid: 7416 + components: + - type: Transform + pos: -5.5,52.5 + parent: 2 + - uid: 7417 + components: + - type: Transform + pos: -5.5,53.5 + parent: 2 + - uid: 7418 + components: + - type: Transform + pos: 6.5,55.5 + parent: 2 + - uid: 7419 + components: + - type: Transform + pos: 6.5,54.5 + parent: 2 + - uid: 7420 + components: + - type: Transform + pos: 6.5,53.5 + parent: 2 + - uid: 7421 + components: + - type: Transform + pos: 7.5,55.5 + parent: 2 + - uid: 7422 + components: + - type: Transform + pos: 7.5,54.5 + parent: 2 + - uid: 7423 + components: + - type: Transform + pos: 7.5,53.5 + parent: 2 + - uid: 7424 + components: + - type: Transform + pos: 8.5,55.5 + parent: 2 + - uid: 7425 + components: + - type: Transform + pos: 8.5,54.5 + parent: 2 + - uid: 7426 + components: + - type: Transform + pos: 8.5,53.5 + parent: 2 + - uid: 7427 + components: + - type: Transform + pos: 9.5,55.5 + parent: 2 + - uid: 7428 + components: + - type: Transform + pos: 9.5,54.5 + parent: 2 + - uid: 7429 + components: + - type: Transform + pos: 9.5,53.5 + parent: 2 + - uid: 7430 + components: + - type: Transform + pos: 10.5,55.5 + parent: 2 + - uid: 7431 + components: + - type: Transform + pos: 10.5,54.5 + parent: 2 + - uid: 7432 + components: + - type: Transform + pos: 10.5,53.5 + parent: 2 + - uid: 7433 + components: + - type: Transform + pos: 10.5,52.5 + parent: 2 + - uid: 7434 + components: + - type: Transform + pos: 9.5,52.5 + parent: 2 + - uid: 7435 + components: + - type: Transform + pos: 9.5,56.5 + parent: 2 + - uid: 7436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-25.5 + parent: 2 + - uid: 7437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-23.5 + parent: 2 + - uid: 7438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-22.5 + parent: 2 + - uid: 7439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-25.5 + parent: 2 + - uid: 7440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-25.5 + parent: 2 + - uid: 7441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-24.5 + parent: 2 + - uid: 7442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-23.5 + parent: 2 + - uid: 7443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-22.5 + parent: 2 + - uid: 7444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-25.5 + parent: 2 + - uid: 7445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-24.5 + parent: 2 + - uid: 7446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-23.5 + parent: 2 + - uid: 7447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-22.5 + parent: 2 + - uid: 7448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-24.5 + parent: 2 + - uid: 7449 + components: + - type: Transform + pos: -6.5,47.5 + parent: 2 + - uid: 7450 + components: + - type: Transform + pos: 43.5,-24.5 + parent: 2 + - uid: 7451 + components: + - type: Transform + pos: -6.5,48.5 + parent: 2 + - uid: 7452 + components: + - type: Transform + pos: 44.5,-23.5 + parent: 2 + - uid: 7453 + components: + - type: Transform + pos: 44.5,-22.5 + parent: 2 + - uid: 7454 + components: + - type: Transform + pos: 44.5,-24.5 + parent: 2 + - uid: 7455 + components: + - type: Transform + pos: -23.5,41.5 + parent: 2 + - uid: 7456 + components: + - type: Transform + pos: -21.5,41.5 + parent: 2 + - uid: 7457 + components: + - type: Transform + pos: -23.5,38.5 + parent: 2 +- proto: CarpetGreen + entities: + - uid: 7458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,12.5 + parent: 2 + - uid: 7459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,11.5 + parent: 2 + - uid: 7460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,10.5 + parent: 2 + - uid: 7461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,12.5 + parent: 2 + - uid: 7462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,11.5 + parent: 2 + - uid: 7463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,10.5 + parent: 2 + - uid: 7464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,12.5 + parent: 2 + - uid: 7465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,11.5 + parent: 2 + - uid: 7466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,10.5 + parent: 2 + - uid: 7467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,8.5 + parent: 2 + - uid: 7468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,8.5 + parent: 2 + - uid: 7469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,8.5 + parent: 2 + - uid: 7470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,8.5 + parent: 2 + - uid: 7471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,9.5 + parent: 2 + - uid: 7472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,10.5 + parent: 2 + - uid: 7473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,11.5 + parent: 2 + - uid: 7474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,12.5 + parent: 2 + - uid: 7475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,13.5 + parent: 2 + - uid: 7476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,14.5 + parent: 2 + - uid: 7477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,15.5 + parent: 2 + - uid: 7478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,16.5 + parent: 2 + - uid: 7479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,16.5 + parent: 2 + - uid: 7480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,15.5 + parent: 2 + - uid: 7481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,16.5 + parent: 2 + - uid: 7482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,15.5 + parent: 2 + - uid: 7483 + components: + - type: Transform + pos: 18.5,5.5 + parent: 2 + - uid: 7484 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 7485 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - uid: 7486 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 7487 + components: + - type: Transform + pos: 20.5,5.5 + parent: 2 + - uid: 7488 + components: + - type: Transform + pos: 20.5,4.5 + parent: 2 + - uid: 7489 + components: + - type: Transform + pos: 24.5,4.5 + parent: 2 + - uid: 7490 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 + - uid: 7491 + components: + - type: Transform + pos: 25.5,4.5 + parent: 2 + - uid: 7492 + components: + - type: Transform + pos: 25.5,5.5 + parent: 2 + - uid: 7493 + components: + - type: Transform + pos: 26.5,4.5 + parent: 2 + - uid: 7494 + components: + - type: Transform + pos: 26.5,5.5 + parent: 2 + - uid: 7495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,40.5 + parent: 2 + - uid: 7496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,40.5 + parent: 2 + - uid: 7497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-3.5 + parent: 2 + - uid: 7498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-2.5 + parent: 2 + - uid: 7499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-3.5 + parent: 2 + - uid: 7500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-2.5 + parent: 2 + - uid: 7501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-3.5 + parent: 2 + - uid: 7502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-2.5 + parent: 2 + - uid: 7503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-3.5 + parent: 2 + - uid: 7504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-2.5 + parent: 2 + - uid: 7505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,20.5 + parent: 2 + - uid: 7506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,21.5 + parent: 2 + - uid: 7507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,20.5 + parent: 2 + - uid: 7508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,21.5 + parent: 2 + - uid: 7509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,20.5 + parent: 2 + - uid: 7510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,21.5 + parent: 2 +- proto: CarpetOrange + entities: + - uid: 7511 + components: + - type: Transform + pos: -25.5,7.5 + parent: 2 + - uid: 7512 + components: + - type: Transform + pos: -25.5,6.5 + parent: 2 + - uid: 7513 + components: + - type: Transform + pos: -25.5,5.5 + parent: 2 + - uid: 7514 + components: + - type: Transform + pos: -25.5,4.5 + parent: 2 + - uid: 7515 + components: + - type: Transform + pos: -24.5,7.5 + parent: 2 + - uid: 7516 + components: + - type: Transform + pos: -24.5,6.5 + parent: 2 + - uid: 7517 + components: + - type: Transform + pos: -24.5,5.5 + parent: 2 + - uid: 7518 + components: + - type: Transform + pos: -24.5,4.5 + parent: 2 + - uid: 7519 + components: + - type: Transform + pos: -23.5,7.5 + parent: 2 + - uid: 7520 + components: + - type: Transform + pos: -23.5,6.5 + parent: 2 + - uid: 7521 + components: + - type: Transform + pos: -23.5,5.5 + parent: 2 + - uid: 7522 + components: + - type: Transform + pos: -23.5,4.5 + parent: 2 + - uid: 7523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-36.5 + parent: 2 + - uid: 7524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-35.5 + parent: 2 +- proto: CarpetPink + entities: + - uid: 7525 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 + - uid: 7526 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 + - uid: 7527 + components: + - type: Transform + pos: 24.5,30.5 + parent: 2 + - uid: 7528 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 + - uid: 7529 + components: + - type: Transform + pos: 24.5,32.5 + parent: 2 + - uid: 7530 + components: + - type: Transform + pos: 24.5,33.5 + parent: 2 + - uid: 7531 + components: + - type: Transform + pos: 23.5,31.5 + parent: 2 + - uid: 7532 + components: + - type: Transform + pos: 22.5,31.5 + parent: 2 + - uid: 7533 + components: + - type: Transform + pos: 21.5,31.5 + parent: 2 + - uid: 7534 + components: + - type: Transform + pos: 20.5,29.5 + parent: 2 + - uid: 7535 + components: + - type: Transform + pos: 20.5,32.5 + parent: 2 + - uid: 7536 + components: + - type: Transform + pos: 20.5,33.5 + parent: 2 + - uid: 7537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,34.5 + parent: 2 + - uid: 7538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,35.5 + parent: 2 + - uid: 7539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,36.5 + parent: 2 + - uid: 7540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,37.5 + parent: 2 + - uid: 7541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,37.5 + parent: 2 + - uid: 7542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,35.5 + parent: 2 + - uid: 7543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,35.5 + parent: 2 + - uid: 7544 + components: + - type: Transform + pos: 19.5,39.5 + parent: 2 + - uid: 7545 + components: + - type: Transform + pos: 19.5,40.5 + parent: 2 + - uid: 7546 + components: + - type: Transform + pos: 20.5,39.5 + parent: 2 + - uid: 7547 + components: + - type: Transform + pos: 20.5,40.5 + parent: 2 + - uid: 7548 + components: + - type: Transform + pos: 21.5,39.5 + parent: 2 + - uid: 7549 + components: + - type: Transform + pos: 21.5,40.5 + parent: 2 + - uid: 7550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,41.5 + parent: 2 + - uid: 7551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,42.5 + parent: 2 + - uid: 7552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,42.5 + parent: 2 + - uid: 7553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,42.5 + parent: 2 + - uid: 7554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,42.5 + parent: 2 + - uid: 7555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,42.5 + parent: 2 + - uid: 7556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,43.5 + parent: 2 + - uid: 7557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,43.5 + parent: 2 + - uid: 7558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,43.5 + parent: 2 + - uid: 7559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,43.5 + parent: 2 + - uid: 7560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,43.5 + parent: 2 + - uid: 7561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,44.5 + parent: 2 + - uid: 7562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,44.5 + parent: 2 + - uid: 7563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,44.5 + parent: 2 + - uid: 7564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,45.5 + parent: 2 + - uid: 7565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,35.5 + parent: 2 + - uid: 7566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,37.5 + parent: 2 + - uid: 7567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,30.5 + parent: 2 + - uid: 7568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,31.5 + parent: 2 +- proto: CarpetPurple + entities: + - uid: 7569 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 2 + - uid: 7570 + components: + - type: Transform + pos: -15.5,-23.5 + parent: 2 + - uid: 7571 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 2 + - uid: 7572 + components: + - type: Transform + pos: -14.5,-22.5 + parent: 2 + - uid: 7573 + components: + - type: Transform + pos: -14.5,-23.5 + parent: 2 + - uid: 7574 + components: + - type: Transform + pos: -14.5,-24.5 + parent: 2 + - uid: 7575 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 2 + - uid: 7576 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 2 + - uid: 7577 + components: + - type: Transform + pos: -17.5,-19.5 + parent: 2 + - uid: 7578 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - uid: 7579 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 2 + - uid: 7580 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 2 + - uid: 7581 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 2 + - uid: 7582 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 2 + - uid: 7583 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 2 + - uid: 7584 + components: + - type: Transform + pos: -4.5,51.5 + parent: 2 + - uid: 7585 + components: + - type: Transform + pos: -4.5,52.5 + parent: 2 + - uid: 7586 + components: + - type: Transform + pos: -4.5,53.5 + parent: 2 + - uid: 7587 + components: + - type: Transform + pos: -3.5,51.5 + parent: 2 + - uid: 7588 + components: + - type: Transform + pos: -3.5,52.5 + parent: 2 + - uid: 7589 + components: + - type: Transform + pos: -3.5,53.5 + parent: 2 + - uid: 7590 + components: + - type: Transform + pos: -2.5,51.5 + parent: 2 + - uid: 7591 + components: + - type: Transform + pos: -2.5,52.5 + parent: 2 + - uid: 7592 + components: + - type: Transform + pos: -2.5,53.5 + parent: 2 + - uid: 7593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-52.5 + parent: 2 + - uid: 7594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-52.5 + parent: 2 + - uid: 7595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-51.5 + parent: 2 + - uid: 7596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-50.5 + parent: 2 + - uid: 7597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-52.5 + parent: 2 + - uid: 7598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-51.5 + parent: 2 + - uid: 7599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-50.5 + parent: 2 + - uid: 7600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-52.5 + parent: 2 + - uid: 7601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-51.5 + parent: 2 + - uid: 7602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-50.5 + parent: 2 + - uid: 7603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-52.5 + parent: 2 + - uid: 7604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-51.5 + parent: 2 + - uid: 7605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-50.5 + parent: 2 + - uid: 7606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-52.5 + parent: 2 + - uid: 7607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-51.5 + parent: 2 + - uid: 7608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-50.5 + parent: 2 +- proto: CarpetSBlue + entities: + - uid: 7609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,47.5 + parent: 2 + - uid: 7610 + components: + - type: Transform + pos: 8.5,50.5 + parent: 2 + - uid: 7611 + components: + - type: Transform + pos: 8.5,49.5 + parent: 2 + - uid: 7612 + components: + - type: Transform + pos: 8.5,47.5 + parent: 2 + - uid: 7613 + components: + - type: Transform + pos: 8.5,48.5 + parent: 2 + - uid: 7614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,26.5 + parent: 2 + - uid: 7615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,25.5 + parent: 2 + - uid: 7616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,25.5 + parent: 2 + - uid: 7617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,26.5 + parent: 2 + - uid: 7618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,49.5 + parent: 2 + - uid: 7619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,50.5 + parent: 2 + - uid: 7620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,48.5 + parent: 2 + - uid: 7621 + components: + - type: Transform + pos: 7.5,27.5 + parent: 2 + - uid: 7622 + components: + - type: Transform + pos: 8.5,26.5 + parent: 2 + - uid: 7623 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 + - uid: 7624 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 7625 + components: + - type: Transform + pos: 6.5,27.5 + parent: 2 +- proto: CartridgeMinigun + entities: + - uid: 7626 + components: + - type: Transform + pos: -16.772854,15.301035 + parent: 2 + - uid: 7627 + components: + - type: Transform + pos: -16.41621,15.930405 + parent: 2 + - uid: 7628 + components: + - type: Transform + pos: -27.655914,22.006664 + parent: 2 + - uid: 7629 + components: + - type: Transform + pos: -27.341228,22.426245 + parent: 2 + - uid: 7630 + components: + - type: Transform + pos: -24.425144,20.223448 + parent: 2 +- proto: Catwalk + entities: + - uid: 7631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-34.5 + parent: 2 + - uid: 7632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-37.5 + parent: 2 + - uid: 7633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-37.5 + parent: 2 + - uid: 7634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-37.5 + parent: 2 + - uid: 7635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-37.5 + parent: 2 + - uid: 7636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-37.5 + parent: 2 + - uid: 7637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-37.5 + parent: 2 + - uid: 7638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-37.5 + parent: 2 + - uid: 7639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-37.5 + parent: 2 + - uid: 7640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-37.5 + parent: 2 + - uid: 7641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-36.5 + parent: 2 + - uid: 7642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-35.5 + parent: 2 + - uid: 7643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,45.5 + parent: 2 + - uid: 7644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,45.5 + parent: 2 + - uid: 7645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,44.5 + parent: 2 + - uid: 7646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,45.5 + parent: 2 + - uid: 7647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,46.5 + parent: 2 + - uid: 7648 + components: + - type: Transform + pos: 54.5,-57.5 + parent: 2 + - uid: 7649 + components: + - type: Transform + pos: 46.5,-57.5 + parent: 2 + - uid: 7650 + components: + - type: Transform + pos: 44.5,-57.5 + parent: 2 + - uid: 7651 + components: + - type: Transform + pos: 48.5,-57.5 + parent: 2 + - uid: 7652 + components: + - type: Transform + pos: 50.5,-57.5 + parent: 2 + - uid: 7653 + components: + - type: Transform + pos: 55.5,-57.5 + parent: 2 + - uid: 7654 + components: + - type: Transform + pos: 51.5,-57.5 + parent: 2 + - uid: 7655 + components: + - type: Transform + pos: 53.5,-57.5 + parent: 2 + - uid: 7656 + components: + - type: Transform + pos: 52.5,-57.5 + parent: 2 + - uid: 7657 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 2 + - uid: 7658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 2 + - uid: 7659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 2 + - uid: 7660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 2 + - uid: 7661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,7.5 + parent: 2 + - uid: 7662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,6.5 + parent: 2 + - uid: 7663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,5.5 + parent: 2 + - uid: 7664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,4.5 + parent: 2 + - uid: 7665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,4.5 + parent: 2 + - uid: 7666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,4.5 + parent: 2 + - uid: 7667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,4.5 + parent: 2 + - uid: 7668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,3.5 + parent: 2 + - uid: 7669 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - uid: 7670 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - uid: 7671 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - uid: 7672 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 7673 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 + - uid: 7674 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 7675 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 2 + - uid: 7676 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 7677 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 7678 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 2 + - uid: 7679 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 7680 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 7681 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 + - uid: 7682 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 2 + - uid: 7683 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 2 + - uid: 7684 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 7685 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 7686 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 + - uid: 7687 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 7688 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 7689 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 7690 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 7691 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 7692 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 7693 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 7694 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 + - uid: 7695 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 2 + - uid: 7696 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 2 + - uid: 7697 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 + - uid: 7698 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - uid: 7699 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 2 + - uid: 7700 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 2 + - uid: 7701 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 2 + - uid: 7702 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 7703 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 7704 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 7705 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 7706 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 7707 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 2 + - uid: 7708 + components: + - type: Transform + pos: -20.5,3.5 + parent: 2 + - uid: 7709 + components: + - type: Transform + pos: -20.5,4.5 + parent: 2 + - uid: 7710 + components: + - type: Transform + pos: -20.5,5.5 + parent: 2 + - uid: 7711 + components: + - type: Transform + pos: -20.5,6.5 + parent: 2 + - uid: 7712 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 + - uid: 7713 + components: + - type: Transform + pos: -20.5,8.5 + parent: 2 + - uid: 7714 + components: + - type: Transform + pos: -20.5,9.5 + parent: 2 + - uid: 7715 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - uid: 7716 + components: + - type: Transform + pos: -20.5,11.5 + parent: 2 + - uid: 7717 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 7718 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - uid: 7719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,13.5 + parent: 2 + - uid: 7720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,14.5 + parent: 2 + - uid: 7721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,14.5 + parent: 2 + - uid: 7722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,14.5 + parent: 2 + - uid: 7723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,14.5 + parent: 2 + - uid: 7724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,14.5 + parent: 2 + - uid: 7725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,15.5 + parent: 2 + - uid: 7726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,15.5 + parent: 2 + - uid: 7727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,15.5 + parent: 2 + - uid: 7728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,15.5 + parent: 2 + - uid: 7729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-53.5 + parent: 2 + - uid: 7730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-51.5 + parent: 2 + - uid: 7731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-50.5 + parent: 2 + - uid: 7732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-53.5 + parent: 2 + - uid: 7733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-51.5 + parent: 2 + - uid: 7734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-49.5 + parent: 2 + - uid: 7735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-55.5 + parent: 2 + - uid: 7736 + components: + - type: Transform + pos: -59.5,-53.5 + parent: 2 + - uid: 7737 + components: + - type: Transform + pos: -59.5,-51.5 + parent: 2 + - uid: 7738 + components: + - type: Transform + pos: -59.5,-51.5 + parent: 2 + - uid: 7739 + components: + - type: Transform + pos: -69.5,-53.5 + parent: 2 + - uid: 7740 + components: + - type: Transform + pos: -64.5,-51.5 + parent: 2 + - uid: 7741 + components: + - type: Transform + pos: -64.5,-53.5 + parent: 2 + - uid: 7742 + components: + - type: Transform + pos: -64.5,-56.5 + parent: 2 + - uid: 7743 + components: + - type: Transform + pos: -69.5,-51.5 + parent: 2 + - uid: 7744 + components: + - type: Transform + pos: -69.5,-49.5 + parent: 2 + - uid: 7745 + components: + - type: Transform + pos: -69.5,-55.5 + parent: 2 + - uid: 7746 + components: + - type: Transform + pos: -74.5,-53.5 + parent: 2 + - uid: 7747 + components: + - type: Transform + pos: -74.5,-51.5 + parent: 2 + - uid: 7748 + components: + - type: Transform + pos: -71.5,-51.5 + parent: 2 + - uid: 7749 + components: + - type: Transform + pos: -87.5,-52.5 + parent: 2 + - uid: 7750 + components: + - type: Transform + pos: -77.5,-49.5 + parent: 2 + - uid: 7751 + components: + - type: Transform + pos: -83.5,-49.5 + parent: 2 + - uid: 7752 + components: + - type: Transform + pos: -83.5,-55.5 + parent: 2 + - uid: 7753 + components: + - type: Transform + pos: -77.5,-55.5 + parent: 2 + - uid: 7754 + components: + - type: Transform + pos: -80.5,-59.5 + parent: 2 + - uid: 7755 + components: + - type: Transform + pos: -80.5,-45.5 + parent: 2 + - uid: 7756 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 2 + - uid: 7757 + components: + - type: Transform + pos: -20.5,-37.5 + parent: 2 + - uid: 7758 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 + - uid: 7759 + components: + - type: Transform + pos: -21.5,-43.5 + parent: 2 + - uid: 7760 + components: + - type: Transform + pos: -20.5,-43.5 + parent: 2 + - uid: 7761 + components: + - type: Transform + pos: -20.5,-42.5 + parent: 2 + - uid: 7762 + components: + - type: Transform + pos: -20.5,-41.5 + parent: 2 + - uid: 7763 + components: + - type: Transform + pos: -20.5,-40.5 + parent: 2 + - uid: 7764 + components: + - type: Transform + pos: -21.5,-44.5 + parent: 2 + - uid: 7765 + components: + - type: Transform + pos: -21.5,-45.5 + parent: 2 + - uid: 7766 + components: + - type: Transform + pos: -21.5,-46.5 + parent: 2 + - uid: 7767 + components: + - type: Transform + pos: -21.5,-47.5 + parent: 2 + - uid: 7768 + components: + - type: Transform + pos: -21.5,-48.5 + parent: 2 + - uid: 7769 + components: + - type: Transform + pos: -21.5,-49.5 + parent: 2 + - uid: 7770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-57.5 + parent: 2 + - uid: 7771 + components: + - type: Transform + pos: -21.5,-50.5 + parent: 2 + - uid: 7772 + components: + - type: Transform + pos: -21.5,-51.5 + parent: 2 + - uid: 7773 + components: + - type: Transform + pos: -20.5,-51.5 + parent: 2 + - uid: 7774 + components: + - type: Transform + pos: -19.5,-51.5 + parent: 2 + - uid: 7775 + components: + - type: Transform + pos: -18.5,-51.5 + parent: 2 + - uid: 7776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-54.5 + parent: 2 + - uid: 7777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-55.5 + parent: 2 + - uid: 7778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-56.5 + parent: 2 + - uid: 7779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-56.5 + parent: 2 + - uid: 7780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-58.5 + parent: 2 + - uid: 7781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-59.5 + parent: 2 + - uid: 7782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-60.5 + parent: 2 + - uid: 7783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-61.5 + parent: 2 + - uid: 7784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-62.5 + parent: 2 + - uid: 7785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-63.5 + parent: 2 + - uid: 7786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-57.5 + parent: 2 + - uid: 7787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-58.5 + parent: 2 + - uid: 7788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-59.5 + parent: 2 + - uid: 7789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-60.5 + parent: 2 + - uid: 7790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-61.5 + parent: 2 + - uid: 7791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-62.5 + parent: 2 + - uid: 7792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-63.5 + parent: 2 + - uid: 7793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-61.5 + parent: 2 + - uid: 7794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-61.5 + parent: 2 + - uid: 7795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-61.5 + parent: 2 + - uid: 7796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-61.5 + parent: 2 + - uid: 7797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-61.5 + parent: 2 + - uid: 7798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-61.5 + parent: 2 + - uid: 7799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-61.5 + parent: 2 + - uid: 7800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-61.5 + parent: 2 + - uid: 7801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-61.5 + parent: 2 + - uid: 7802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-61.5 + parent: 2 + - uid: 7803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-61.5 + parent: 2 + - uid: 7804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-61.5 + parent: 2 + - uid: 7805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-61.5 + parent: 2 + - uid: 7806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-61.5 + parent: 2 + - uid: 7807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-61.5 + parent: 2 + - uid: 7808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-61.5 + parent: 2 + - uid: 7809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-61.5 + parent: 2 + - uid: 7810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-60.5 + parent: 2 + - uid: 7811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-59.5 + parent: 2 + - uid: 7812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-58.5 + parent: 2 + - uid: 7813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-57.5 + parent: 2 + - uid: 7814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-56.5 + parent: 2 + - uid: 7815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-55.5 + parent: 2 + - uid: 7816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-62.5 + parent: 2 + - uid: 7817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-62.5 + parent: 2 + - uid: 7818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-63.5 + parent: 2 + - uid: 7819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-64.5 + parent: 2 + - uid: 7820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-65.5 + parent: 2 + - uid: 7821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-66.5 + parent: 2 + - uid: 7822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-67.5 + parent: 2 + - uid: 7823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-62.5 + parent: 2 + - uid: 7824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-63.5 + parent: 2 + - uid: 7825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-64.5 + parent: 2 + - uid: 7826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-65.5 + parent: 2 + - uid: 7827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-66.5 + parent: 2 + - uid: 7828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-63.5 + parent: 2 + - uid: 7829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-64.5 + parent: 2 + - uid: 7830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-65.5 + parent: 2 + - uid: 7831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-62.5 + parent: 2 + - uid: 7832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-63.5 + parent: 2 + - uid: 7833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-64.5 + parent: 2 + - uid: 7834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-65.5 + parent: 2 + - uid: 7835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-60.5 + parent: 2 + - uid: 7836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-59.5 + parent: 2 + - uid: 7837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-58.5 + parent: 2 + - uid: 7838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-57.5 + parent: 2 + - uid: 7839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-57.5 + parent: 2 + - uid: 7840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-58.5 + parent: 2 + - uid: 7841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-59.5 + parent: 2 + - uid: 7842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-60.5 + parent: 2 + - uid: 7843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-60.5 + parent: 2 + - uid: 7844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-59.5 + parent: 2 + - uid: 7845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-58.5 + parent: 2 + - uid: 7846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-57.5 + parent: 2 + - uid: 7847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-56.5 + parent: 2 + - uid: 7848 + components: + - type: Transform + pos: -48.5,15.5 + parent: 2 + - uid: 7849 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 7850 + components: + - type: Transform + pos: -48.5,13.5 + parent: 2 + - uid: 7851 + components: + - type: Transform + pos: -48.5,12.5 + parent: 2 + - uid: 7852 + components: + - type: Transform + pos: -46.5,11.5 + parent: 2 + - uid: 7853 + components: + - type: Transform + pos: -47.5,11.5 + parent: 2 + - uid: 7854 + components: + - type: Transform + pos: -48.5,11.5 + parent: 2 + - uid: 7855 + components: + - type: Transform + pos: -66.5,23.5 + parent: 2 + - uid: 7856 + components: + - type: Transform + pos: -67.5,23.5 + parent: 2 + - uid: 7857 + components: + - type: Transform + pos: -68.5,23.5 + parent: 2 + - uid: 7858 + components: + - type: Transform + pos: -69.5,23.5 + parent: 2 + - uid: 7859 + components: + - type: Transform + pos: -71.5,23.5 + parent: 2 + - uid: 7860 + components: + - type: Transform + pos: -70.5,23.5 + parent: 2 + - uid: 7861 + components: + - type: Transform + pos: -65.5,23.5 + parent: 2 + - uid: 7862 + components: + - type: Transform + pos: -47.5,17.5 + parent: 2 + - uid: 7863 + components: + - type: Transform + pos: -48.5,17.5 + parent: 2 + - uid: 7864 + components: + - type: Transform + pos: -49.5,17.5 + parent: 2 + - uid: 7865 + components: + - type: Transform + pos: -48.5,16.5 + parent: 2 + - uid: 7866 + components: + - type: Transform + pos: -72.5,23.5 + parent: 2 + - uid: 7867 + components: + - type: Transform + pos: -17.5,-51.5 + parent: 2 + - uid: 7868 + components: + - type: Transform + pos: -16.5,-51.5 + parent: 2 + - uid: 7869 + components: + - type: Transform + pos: -15.5,-51.5 + parent: 2 + - uid: 7870 + components: + - type: Transform + pos: -9.5,-52.5 + parent: 2 + - uid: 7871 + components: + - type: Transform + pos: -8.5,-52.5 + parent: 2 + - uid: 7872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-52.5 + parent: 2 + - uid: 7873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-52.5 + parent: 2 + - uid: 7874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-51.5 + parent: 2 + - uid: 7875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-48.5 + parent: 2 + - uid: 7876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-49.5 + parent: 2 + - uid: 7877 + components: + - type: Transform + pos: -4.5,-47.5 + parent: 2 + - uid: 7878 + components: + - type: Transform + pos: -4.5,-46.5 + parent: 2 + - uid: 7879 + components: + - type: Transform + pos: -4.5,-45.5 + parent: 2 + - uid: 7880 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 2 + - uid: 7881 + components: + - type: Transform + pos: -4.5,-43.5 + parent: 2 + - uid: 7882 + components: + - type: Transform + pos: -4.5,-42.5 + parent: 2 + - uid: 7883 + components: + - type: Transform + pos: -3.5,-42.5 + parent: 2 + - uid: 7884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 2 + - uid: 7885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 2 + - uid: 7886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-3.5 + parent: 2 + - uid: 7887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-3.5 + parent: 2 + - uid: 7888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 2 + - uid: 7889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-3.5 + parent: 2 + - uid: 7890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-2.5 + parent: 2 + - uid: 7891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-1.5 + parent: 2 + - uid: 7892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,24.5 + parent: 2 + - uid: 7893 + components: + - type: Transform + pos: 42.5,20.5 + parent: 2 + - uid: 7894 + components: + - type: Transform + pos: 42.5,21.5 + parent: 2 + - uid: 7895 + components: + - type: Transform + pos: 42.5,22.5 + parent: 2 + - uid: 7896 + components: + - type: Transform + pos: 43.5,22.5 + parent: 2 + - uid: 7897 + components: + - type: Transform + pos: 43.5,23.5 + parent: 2 + - uid: 7898 + components: + - type: Transform + pos: 43.5,24.5 + parent: 2 + - uid: 7899 + components: + - type: Transform + pos: 43.5,25.5 + parent: 2 + - uid: 7900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,16.5 + parent: 2 + - uid: 7901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,16.5 + parent: 2 + - uid: 7902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,16.5 + parent: 2 + - uid: 7903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,16.5 + parent: 2 + - uid: 7904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,16.5 + parent: 2 + - uid: 7905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,16.5 + parent: 2 + - uid: 7906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,17.5 + parent: 2 + - uid: 7907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,18.5 + parent: 2 + - uid: 7908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,19.5 + parent: 2 + - uid: 7909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,20.5 + parent: 2 + - uid: 7910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,21.5 + parent: 2 + - uid: 7911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,22.5 + parent: 2 + - uid: 7912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,23.5 + parent: 2 + - uid: 7913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,23.5 + parent: 2 + - uid: 7914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,23.5 + parent: 2 + - uid: 7915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,23.5 + parent: 2 + - uid: 7916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,23.5 + parent: 2 + - uid: 7917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,23.5 + parent: 2 + - uid: 7918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,23.5 + parent: 2 + - uid: 7919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,23.5 + parent: 2 + - uid: 7920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,23.5 + parent: 2 + - uid: 7921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,23.5 + parent: 2 + - uid: 7922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,23.5 + parent: 2 + - uid: 7923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,23.5 + parent: 2 + - uid: 7924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,23.5 + parent: 2 + - uid: 7925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,22.5 + parent: 2 + - uid: 7926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,21.5 + parent: 2 + - uid: 7927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,20.5 + parent: 2 + - uid: 7928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,19.5 + parent: 2 + - uid: 7929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,18.5 + parent: 2 + - uid: 7930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,17.5 + parent: 2 + - uid: 7931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,25.5 + parent: 2 + - uid: 7932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,26.5 + parent: 2 + - uid: 7933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,27.5 + parent: 2 + - uid: 7934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,28.5 + parent: 2 + - uid: 7935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,29.5 + parent: 2 + - uid: 7936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,24.5 + parent: 2 + - uid: 7937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,22.5 + parent: 2 + - uid: 7938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,21.5 + parent: 2 + - uid: 7939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,20.5 + parent: 2 + - uid: 7940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,19.5 + parent: 2 + - uid: 7941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,18.5 + parent: 2 + - uid: 7942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,17.5 + parent: 2 + - uid: 7943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,23.5 + parent: 2 + - uid: 7944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,23.5 + parent: 2 + - uid: 7945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,23.5 + parent: 2 + - uid: 7946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,23.5 + parent: 2 + - uid: 7947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,23.5 + parent: 2 + - uid: 7948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,24.5 + parent: 2 + - uid: 7949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,25.5 + parent: 2 + - uid: 7950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,26.5 + parent: 2 + - uid: 7951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,27.5 + parent: 2 + - uid: 7952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,28.5 + parent: 2 + - uid: 7953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,22.5 + parent: 2 + - uid: 7954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,21.5 + parent: 2 + - uid: 7955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,20.5 + parent: 2 + - uid: 7956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,19.5 + parent: 2 + - uid: 7957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,18.5 + parent: 2 + - uid: 7958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,22.5 + parent: 2 + - uid: 7959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,21.5 + parent: 2 + - uid: 7960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,20.5 + parent: 2 + - uid: 7961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,19.5 + parent: 2 + - uid: 7962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,24.5 + parent: 2 + - uid: 7963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,25.5 + parent: 2 + - uid: 7964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,26.5 + parent: 2 + - uid: 7965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,27.5 + parent: 2 + - uid: 7966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,23.5 + parent: 2 + - uid: 7967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,23.5 + parent: 2 + - uid: 7968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,23.5 + parent: 2 + - uid: 7969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,23.5 + parent: 2 + - uid: 7970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,23.5 + parent: 2 + - uid: 7971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,24.5 + parent: 2 + - uid: 7972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,25.5 + parent: 2 + - uid: 7973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,26.5 + parent: 2 + - uid: 7974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,27.5 + parent: 2 + - uid: 7975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,22.5 + parent: 2 + - uid: 7976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,21.5 + parent: 2 + - uid: 7977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,20.5 + parent: 2 + - uid: 7978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,19.5 + parent: 2 + - uid: 7979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,25.5 + parent: 2 + - uid: 7980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,26.5 + parent: 2 + - uid: 7981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,27.5 + parent: 2 + - uid: 7982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,28.5 + parent: 2 + - uid: 7983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,29.5 + parent: 2 + - uid: 7984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,30.5 + parent: 2 + - uid: 7985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,31.5 + parent: 2 + - uid: 7986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,32.5 + parent: 2 + - uid: 7987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,23.5 + parent: 2 + - uid: 7988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,23.5 + parent: 2 + - uid: 7989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,23.5 + parent: 2 + - uid: 7990 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 7991 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 7992 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 7993 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 7994 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 7995 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 7996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,26.5 + parent: 2 + - uid: 7997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,26.5 + parent: 2 + - uid: 7998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,26.5 + parent: 2 + - uid: 7999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,26.5 + parent: 2 + - uid: 8000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,26.5 + parent: 2 + - uid: 8001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,26.5 + parent: 2 + - uid: 8002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,26.5 + parent: 2 + - uid: 8003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,26.5 + parent: 2 + - uid: 8004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,26.5 + parent: 2 + - uid: 8005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,26.5 + parent: 2 + - uid: 8006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,26.5 + parent: 2 + - uid: 8007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,26.5 + parent: 2 + - uid: 8008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,26.5 + parent: 2 + - uid: 8009 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 8010 + components: + - type: Transform + pos: 12.5,31.5 + parent: 2 + - uid: 8011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,47.5 + parent: 2 + - uid: 8012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,49.5 + parent: 2 + - uid: 8013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,50.5 + parent: 2 + - uid: 8014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,50.5 + parent: 2 + - uid: 8015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,46.5 + parent: 2 + - uid: 8016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,46.5 + parent: 2 + - uid: 8017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,47.5 + parent: 2 + - uid: 8018 + components: + - type: Transform + pos: -5.5,34.5 + parent: 2 + - uid: 8019 + components: + - type: Transform + pos: -5.5,33.5 + parent: 2 + - uid: 8020 + components: + - type: Transform + pos: -5.5,32.5 + parent: 2 + - uid: 8021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,40.5 + parent: 2 + - uid: 8022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,39.5 + parent: 2 + - uid: 8023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,38.5 + parent: 2 + - uid: 8024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,40.5 + parent: 2 + - uid: 8025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,39.5 + parent: 2 + - uid: 8026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,38.5 + parent: 2 + - uid: 8027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,43.5 + parent: 2 + - uid: 8028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,39.5 + parent: 2 + - uid: 8029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,43.5 + parent: 2 + - uid: 8030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,36.5 + parent: 2 + - uid: 8031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,32.5 + parent: 2 + - uid: 8032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,30.5 + parent: 2 + - uid: 8033 + components: + - type: Transform + pos: -1.5,42.5 + parent: 2 + - uid: 8034 + components: + - type: Transform + pos: -2.5,42.5 + parent: 2 + - uid: 8035 + components: + - type: Transform + pos: -3.5,42.5 + parent: 2 + - uid: 8036 + components: + - type: Transform + pos: -4.5,42.5 + parent: 2 + - uid: 8037 + components: + - type: Transform + pos: -5.5,42.5 + parent: 2 + - uid: 8038 + components: + - type: Transform + pos: -6.5,42.5 + parent: 2 + - uid: 8039 + components: + - type: Transform + pos: -6.5,43.5 + parent: 2 + - uid: 8040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,45.5 + parent: 2 + - uid: 8041 + components: + - type: Transform + pos: -7.5,45.5 + parent: 2 + - uid: 8042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,45.5 + parent: 2 + - uid: 8043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,48.5 + parent: 2 + - uid: 8044 + components: + - type: Transform + pos: -46.5,17.5 + parent: 2 + - uid: 8045 + components: + - type: Transform + pos: -70.5,22.5 + parent: 2 + - uid: 8046 + components: + - type: Transform + pos: -66.5,24.5 + parent: 2 + - uid: 8047 + components: + - type: Transform + pos: -66.5,25.5 + parent: 2 + - uid: 8048 + components: + - type: Transform + pos: -66.5,26.5 + parent: 2 + - uid: 8049 + components: + - type: Transform + pos: -66.5,27.5 + parent: 2 + - uid: 8050 + components: + - type: Transform + pos: -70.5,24.5 + parent: 2 + - uid: 8051 + components: + - type: Transform + pos: -70.5,25.5 + parent: 2 + - uid: 8052 + components: + - type: Transform + pos: -70.5,26.5 + parent: 2 + - uid: 8053 + components: + - type: Transform + pos: -70.5,27.5 + parent: 2 + - uid: 8054 + components: + - type: Transform + pos: -62.5,28.5 + parent: 2 + - uid: 8055 + components: + - type: Transform + pos: -62.5,27.5 + parent: 2 + - uid: 8056 + components: + - type: Transform + pos: -62.5,26.5 + parent: 2 + - uid: 8057 + components: + - type: Transform + pos: -61.5,26.5 + parent: 2 + - uid: 8058 + components: + - type: Transform + pos: -59.5,26.5 + parent: 2 + - uid: 8059 + components: + - type: Transform + pos: -57.5,27.5 + parent: 2 + - uid: 8060 + components: + - type: Transform + pos: -58.5,28.5 + parent: 2 + - uid: 8061 + components: + - type: Transform + pos: -58.5,29.5 + parent: 2 + - uid: 8062 + components: + - type: Transform + pos: -54.5,28.5 + parent: 2 + - uid: 8063 + components: + - type: Transform + pos: -54.5,29.5 + parent: 2 + - uid: 8064 + components: + - type: Transform + pos: -53.5,29.5 + parent: 2 + - uid: 8065 + components: + - type: Transform + pos: -52.5,29.5 + parent: 2 + - uid: 8066 + components: + - type: Transform + pos: -54.5,30.5 + parent: 2 + - uid: 8067 + components: + - type: Transform + pos: -54.5,31.5 + parent: 2 + - uid: 8068 + components: + - type: Transform + pos: -54.5,32.5 + parent: 2 + - uid: 8069 + components: + - type: Transform + pos: -70.5,21.5 + parent: 2 + - uid: 8070 + components: + - type: Transform + pos: -70.5,20.5 + parent: 2 + - uid: 8071 + components: + - type: Transform + pos: -70.5,19.5 + parent: 2 + - uid: 8072 + components: + - type: Transform + pos: -66.5,21.5 + parent: 2 + - uid: 8073 + components: + - type: Transform + pos: -66.5,20.5 + parent: 2 + - uid: 8074 + components: + - type: Transform + pos: -66.5,19.5 + parent: 2 + - uid: 8075 + components: + - type: Transform + pos: -66.5,22.5 + parent: 2 + - uid: 8076 + components: + - type: Transform + pos: -65.5,21.5 + parent: 2 + - uid: 8077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,39.5 + parent: 2 + - uid: 8078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,40.5 + parent: 2 + - uid: 8079 + components: + - type: Transform + pos: 12.5,53.5 + parent: 2 + - uid: 8080 + components: + - type: Transform + pos: 12.5,54.5 + parent: 2 + - uid: 8081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,73.5 + parent: 2 + - uid: 8082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,74.5 + parent: 2 + - uid: 8083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,75.5 + parent: 2 + - uid: 8084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,76.5 + parent: 2 + - uid: 8085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,77.5 + parent: 2 + - uid: 8086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,78.5 + parent: 2 + - uid: 8087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,79.5 + parent: 2 + - uid: 8088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,80.5 + parent: 2 + - uid: 8089 + components: + - type: Transform + pos: 7.5,81.5 + parent: 2 + - uid: 8090 + components: + - type: Transform + pos: 7.5,82.5 + parent: 2 + - uid: 8091 + components: + - type: Transform + pos: 7.5,83.5 + parent: 2 + - uid: 8092 + components: + - type: Transform + pos: 7.5,84.5 + parent: 2 + - uid: 8093 + components: + - type: Transform + pos: 6.5,84.5 + parent: 2 + - uid: 8094 + components: + - type: Transform + pos: 5.5,84.5 + parent: 2 + - uid: 8095 + components: + - type: Transform + pos: 4.5,84.5 + parent: 2 + - uid: 8096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,76.5 + parent: 2 + - uid: 8097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,77.5 + parent: 2 + - uid: 8098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,78.5 + parent: 2 + - uid: 8099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,76.5 + parent: 2 + - uid: 8100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,77.5 + parent: 2 + - uid: 8101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,78.5 + parent: 2 + - uid: 8102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-26.5 + parent: 2 + - uid: 8103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-27.5 + parent: 2 + - uid: 8104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-31.5 + parent: 2 + - uid: 8105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-31.5 + parent: 2 + - uid: 8106 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 2 + - uid: 8107 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 2 + - uid: 8108 + components: + - type: Transform + pos: 10.5,-34.5 + parent: 2 + - uid: 8109 + components: + - type: Transform + pos: 11.5,-34.5 + parent: 2 + - uid: 8110 + components: + - type: Transform + pos: 12.5,-34.5 + parent: 2 + - uid: 8111 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 2 + - uid: 8112 + components: + - type: Transform + pos: 14.5,-34.5 + parent: 2 + - uid: 8113 + components: + - type: Transform + pos: 15.5,-34.5 + parent: 2 + - uid: 8114 + components: + - type: Transform + pos: 16.5,-34.5 + parent: 2 + - uid: 8115 + components: + - type: Transform + pos: 17.5,-34.5 + parent: 2 + - uid: 8116 + components: + - type: Transform + pos: 18.5,-34.5 + parent: 2 + - uid: 8117 + components: + - type: Transform + pos: 19.5,-34.5 + parent: 2 + - uid: 8118 + components: + - type: Transform + pos: 20.5,-34.5 + parent: 2 + - uid: 8119 + components: + - type: Transform + pos: 21.5,-34.5 + parent: 2 + - uid: 8120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-38.5 + parent: 2 + - uid: 8121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-37.5 + parent: 2 + - uid: 8122 + components: + - type: Transform + pos: 27.5,-36.5 + parent: 2 + - uid: 8123 + components: + - type: Transform + pos: 27.5,-35.5 + parent: 2 + - uid: 8124 + components: + - type: Transform + pos: 27.5,-34.5 + parent: 2 + - uid: 8125 + components: + - type: Transform + pos: 27.5,-33.5 + parent: 2 + - uid: 8126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-51.5 + parent: 2 + - uid: 8127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-52.5 + parent: 2 + - uid: 8128 + components: + - type: Transform + pos: 46.5,-37.5 + parent: 2 + - uid: 8129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-65.5 + parent: 2 + - uid: 8130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-66.5 + parent: 2 + - uid: 8131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-67.5 + parent: 2 + - uid: 8132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-68.5 + parent: 2 + - uid: 8133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-69.5 + parent: 2 + - uid: 8134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-70.5 + parent: 2 + - uid: 8135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-71.5 + parent: 2 + - uid: 8136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-71.5 + parent: 2 + - uid: 8137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-71.5 + parent: 2 + - uid: 8138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-71.5 + parent: 2 + - uid: 8139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-71.5 + parent: 2 + - uid: 8140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-71.5 + parent: 2 + - uid: 8141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-63.5 + parent: 2 + - uid: 8142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-63.5 + parent: 2 + - uid: 8143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-70.5 + parent: 2 + - uid: 8144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-67.5 + parent: 2 + - uid: 8145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-65.5 + parent: 2 + - uid: 8146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-64.5 + parent: 2 + - uid: 8147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-66.5 + parent: 2 + - uid: 8148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-68.5 + parent: 2 + - uid: 8149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-69.5 + parent: 2 + - uid: 8150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-67.5 + parent: 2 + - uid: 8151 + components: + - type: Transform + pos: 20.5,-53.5 + parent: 2 + - uid: 8152 + components: + - type: Transform + pos: 20.5,-54.5 + parent: 2 + - uid: 8153 + components: + - type: Transform + pos: 20.5,-56.5 + parent: 2 + - uid: 8154 + components: + - type: Transform + pos: 20.5,-57.5 + parent: 2 + - uid: 8155 + components: + - type: Transform + pos: 20.5,-58.5 + parent: 2 + - uid: 8156 + components: + - type: Transform + pos: 20.5,-59.5 + parent: 2 + - uid: 8157 + components: + - type: Transform + pos: 20.5,-60.5 + parent: 2 + - uid: 8158 + components: + - type: Transform + pos: 20.5,-61.5 + parent: 2 + - uid: 8159 + components: + - type: Transform + pos: 20.5,-62.5 + parent: 2 + - uid: 8160 + components: + - type: Transform + pos: 20.5,-63.5 + parent: 2 + - uid: 8161 + components: + - type: Transform + pos: 20.5,-64.5 + parent: 2 + - uid: 8162 + components: + - type: Transform + pos: 20.5,-55.5 + parent: 2 + - uid: 8163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-46.5 + parent: 2 + - uid: 8164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-65.5 + parent: 2 + - uid: 8165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-66.5 + parent: 2 + - uid: 8166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-67.5 + parent: 2 + - uid: 8167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-68.5 + parent: 2 + - uid: 8168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-68.5 + parent: 2 + - uid: 8169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-68.5 + parent: 2 + - uid: 8170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-68.5 + parent: 2 + - uid: 8171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-68.5 + parent: 2 + - uid: 8172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-67.5 + parent: 2 + - uid: 8173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-66.5 + parent: 2 + - uid: 8174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-66.5 + parent: 2 + - uid: 8175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-66.5 + parent: 2 + - uid: 8176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-66.5 + parent: 2 + - uid: 8177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-66.5 + parent: 2 + - uid: 8178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-66.5 + parent: 2 + - uid: 8179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-66.5 + parent: 2 + - uid: 8180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-66.5 + parent: 2 + - uid: 8181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-66.5 + parent: 2 + - uid: 8182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-66.5 + parent: 2 + - uid: 8183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-66.5 + parent: 2 + - uid: 8184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-65.5 + parent: 2 + - uid: 8185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-64.5 + parent: 2 + - uid: 8186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-63.5 + parent: 2 + - uid: 8187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-62.5 + parent: 2 + - uid: 8188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-61.5 + parent: 2 + - uid: 8189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-60.5 + parent: 2 + - uid: 8190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-59.5 + parent: 2 + - uid: 8191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-58.5 + parent: 2 + - uid: 8192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-57.5 + parent: 2 + - uid: 8193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-56.5 + parent: 2 + - uid: 8194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-55.5 + parent: 2 + - uid: 8195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-54.5 + parent: 2 + - uid: 8196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-53.5 + parent: 2 + - uid: 8197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-45.5 + parent: 2 + - uid: 8198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-46.5 + parent: 2 + - uid: 8199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-46.5 + parent: 2 + - uid: 8200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-46.5 + parent: 2 + - uid: 8201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-47.5 + parent: 2 + - uid: 8202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-48.5 + parent: 2 + - uid: 8203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-48.5 + parent: 2 + - uid: 8204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-48.5 + parent: 2 + - uid: 8205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-49.5 + parent: 2 + - uid: 8206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-50.5 + parent: 2 + - uid: 8207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-51.5 + parent: 2 + - uid: 8208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-52.5 + parent: 2 + - uid: 8209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-53.5 + parent: 2 + - uid: 8210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-54.5 + parent: 2 + - uid: 8211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-55.5 + parent: 2 + - uid: 8212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-56.5 + parent: 2 + - uid: 8213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-57.5 + parent: 2 + - uid: 8214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-58.5 + parent: 2 + - uid: 8215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-59.5 + parent: 2 + - uid: 8216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-61.5 + parent: 2 + - uid: 8217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-66.5 + parent: 2 + - uid: 8218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-66.5 + parent: 2 + - uid: 8219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-66.5 + parent: 2 + - uid: 8220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-63.5 + parent: 2 + - uid: 8221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-62.5 + parent: 2 + - uid: 8222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-61.5 + parent: 2 + - uid: 8223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-60.5 + parent: 2 + - uid: 8224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-59.5 + parent: 2 + - uid: 8225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-58.5 + parent: 2 + - uid: 8226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-57.5 + parent: 2 + - uid: 8227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-56.5 + parent: 2 + - uid: 8228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-55.5 + parent: 2 + - uid: 8229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-54.5 + parent: 2 + - uid: 8230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-53.5 + parent: 2 + - uid: 8231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-52.5 + parent: 2 + - uid: 8232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-51.5 + parent: 2 + - uid: 8233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-52.5 + parent: 2 + - uid: 8234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-53.5 + parent: 2 + - uid: 8235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-54.5 + parent: 2 + - uid: 8236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-55.5 + parent: 2 + - uid: 8237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-56.5 + parent: 2 + - uid: 8238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-58.5 + parent: 2 + - uid: 8239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-59.5 + parent: 2 + - uid: 8240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-60.5 + parent: 2 + - uid: 8241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-61.5 + parent: 2 + - uid: 8242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-62.5 + parent: 2 + - uid: 8243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-60.5 + parent: 2 + - uid: 8244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-59.5 + parent: 2 + - uid: 8245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-58.5 + parent: 2 + - uid: 8246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-56.5 + parent: 2 + - uid: 8247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-55.5 + parent: 2 + - uid: 8248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-54.5 + parent: 2 + - uid: 8249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-53.5 + parent: 2 + - uid: 8250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-53.5 + parent: 2 + - uid: 8251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-54.5 + parent: 2 + - uid: 8252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-55.5 + parent: 2 + - uid: 8253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-56.5 + parent: 2 + - uid: 8254 + components: + - type: Transform + pos: 47.5,-57.5 + parent: 2 + - uid: 8255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-58.5 + parent: 2 + - uid: 8256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-59.5 + parent: 2 + - uid: 8257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-60.5 + parent: 2 + - uid: 8258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-61.5 + parent: 2 + - uid: 8259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-57.5 + parent: 2 + - uid: 8260 + components: + - type: Transform + pos: 45.5,-57.5 + parent: 2 + - uid: 8261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-57.5 + parent: 2 + - uid: 8262 + components: + - type: Transform + pos: 49.5,-57.5 + parent: 2 + - uid: 8263 + components: + - type: Transform + pos: 56.5,-57.5 + parent: 2 + - uid: 8264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-57.5 + parent: 2 + - uid: 8265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-72.5 + parent: 2 + - uid: 8266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-73.5 + parent: 2 + - uid: 8267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-74.5 + parent: 2 + - uid: 8268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-75.5 + parent: 2 + - uid: 8269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-76.5 + parent: 2 + - uid: 8270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-74.5 + parent: 2 + - uid: 8271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-72.5 + parent: 2 + - uid: 8272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-73.5 + parent: 2 + - uid: 8273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-74.5 + parent: 2 + - uid: 8274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-75.5 + parent: 2 + - uid: 8275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-76.5 + parent: 2 + - uid: 8276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-74.5 + parent: 2 + - uid: 8277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-72.5 + parent: 2 + - uid: 8278 + components: + - type: Transform + pos: 8.5,-35.5 + parent: 2 + - uid: 8279 + components: + - type: Transform + pos: 7.5,-35.5 + parent: 2 + - uid: 8280 + components: + - type: Transform + pos: 6.5,-35.5 + parent: 2 + - uid: 8281 + components: + - type: Transform + pos: 5.5,-35.5 + parent: 2 + - uid: 8282 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 2 + - uid: 8283 + components: + - type: Transform + pos: 3.5,-35.5 + parent: 2 + - uid: 8284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-31.5 + parent: 2 + - uid: 8285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-30.5 + parent: 2 + - uid: 8286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-29.5 + parent: 2 + - uid: 8287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-28.5 + parent: 2 + - uid: 8288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-69.5 + parent: 2 + - uid: 8289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-70.5 + parent: 2 + - uid: 8290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-71.5 + parent: 2 + - uid: 8291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-72.5 + parent: 2 + - uid: 8292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-72.5 + parent: 2 + - uid: 8293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-72.5 + parent: 2 + - uid: 8294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-72.5 + parent: 2 + - uid: 8295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-51.5 + parent: 2 + - uid: 8296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-34.5 + parent: 2 + - uid: 8297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-33.5 + parent: 2 + - uid: 8298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-32.5 + parent: 2 + - uid: 8299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-31.5 + parent: 2 + - uid: 8300 + components: + - type: Transform + pos: -20.5,14.5 + parent: 2 + - uid: 8301 + components: + - type: Transform + pos: -20.5,15.5 + parent: 2 + - uid: 8302 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 2 + - uid: 8303 + components: + - type: Transform + pos: -20.5,-13.5 + parent: 2 + - uid: 8304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-43.5 + parent: 2 + - uid: 8305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-43.5 + parent: 2 + - uid: 8306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-43.5 + parent: 2 + - uid: 8307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-43.5 + parent: 2 + - uid: 8308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-43.5 + parent: 2 + - uid: 8309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-43.5 + parent: 2 + - uid: 8310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-43.5 + parent: 2 + - uid: 8311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-43.5 + parent: 2 + - uid: 8312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-43.5 + parent: 2 + - uid: 8313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-51.5 + parent: 2 + - uid: 8314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-51.5 + parent: 2 + - uid: 8315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-51.5 + parent: 2 + - uid: 8316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 2 + - uid: 8317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 2 + - uid: 8318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-17.5 + parent: 2 + - uid: 8319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-17.5 + parent: 2 + - uid: 8320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-17.5 + parent: 2 + - uid: 8321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-17.5 + parent: 2 + - uid: 8322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-16.5 + parent: 2 + - uid: 8323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-16.5 + parent: 2 + - uid: 8324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-16.5 + parent: 2 + - uid: 8325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-16.5 + parent: 2 + - uid: 8326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-16.5 + parent: 2 + - uid: 8327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-16.5 + parent: 2 + - uid: 8328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-13.5 + parent: 2 + - uid: 8329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-13.5 + parent: 2 + - uid: 8330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-13.5 + parent: 2 + - uid: 8331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-12.5 + parent: 2 + - uid: 8332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-10.5 + parent: 2 + - uid: 8333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-9.5 + parent: 2 + - uid: 8334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-9.5 + parent: 2 + - uid: 8335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 2 + - uid: 8336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-11.5 + parent: 2 + - uid: 8337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-8.5 + parent: 2 + - uid: 8338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-8.5 + parent: 2 + - uid: 8339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-16.5 + parent: 2 + - uid: 8340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 2 + - uid: 8341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-16.5 + parent: 2 + - uid: 8342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-16.5 + parent: 2 + - uid: 8343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-16.5 + parent: 2 + - uid: 8344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 2 + - uid: 8345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 2 + - uid: 8346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 2 + - uid: 8347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-13.5 + parent: 2 + - uid: 8348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-12.5 + parent: 2 + - uid: 8349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 2 + - uid: 8350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 2 + - uid: 8351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 2 + - uid: 8352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 2 + - uid: 8353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 2 + - uid: 8354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 2 + - uid: 8355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,21.5 + parent: 2 + - uid: 8356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,21.5 + parent: 2 + - uid: 8357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,21.5 + parent: 2 + - uid: 8358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,21.5 + parent: 2 + - uid: 8359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,21.5 + parent: 2 + - uid: 8360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,21.5 + parent: 2 + - uid: 8361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,21.5 + parent: 2 + - uid: 8362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,21.5 + parent: 2 + - uid: 8363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-38.5 + parent: 2 + - uid: 8364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-52.5 + parent: 2 + - uid: 8365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-52.5 + parent: 2 + - uid: 8366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-53.5 + parent: 2 + - uid: 8367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-54.5 + parent: 2 + - uid: 8368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-50.5 + parent: 2 + - uid: 8369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-50.5 + parent: 2 + - uid: 8370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-50.5 + parent: 2 + - uid: 8371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-50.5 + parent: 2 + - uid: 8372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-50.5 + parent: 2 + - uid: 8373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-50.5 + parent: 2 + - uid: 8374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-50.5 + parent: 2 + - uid: 8375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-51.5 + parent: 2 + - uid: 8376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-52.5 + parent: 2 + - uid: 8377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-53.5 + parent: 2 + - uid: 8378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-54.5 + parent: 2 + - uid: 8379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-55.5 + parent: 2 + - uid: 8380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-55.5 + parent: 2 + - uid: 8381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-55.5 + parent: 2 + - uid: 8382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-55.5 + parent: 2 + - uid: 8383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-55.5 + parent: 2 + - uid: 8384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-51.5 + parent: 2 + - uid: 8385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-53.5 + parent: 2 + - uid: 8386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-54.5 + parent: 2 + - uid: 8387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-33.5 + parent: 2 + - uid: 8388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-31.5 + parent: 2 + - uid: 8389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-30.5 + parent: 2 + - uid: 8390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-29.5 + parent: 2 + - uid: 8391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-26.5 + parent: 2 + - uid: 8392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-24.5 + parent: 2 + - uid: 8393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-24.5 + parent: 2 + - uid: 8394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,16.5 + parent: 2 + - uid: 8395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,16.5 + parent: 2 + - uid: 8396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,15.5 + parent: 2 + - uid: 8397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,15.5 + parent: 2 + - uid: 8398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,15.5 + parent: 2 + - uid: 8399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,15.5 + parent: 2 + - uid: 8400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,16.5 + parent: 2 + - uid: 8401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,16.5 + parent: 2 + - uid: 8402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,18.5 + parent: 2 + - uid: 8403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,19.5 + parent: 2 + - uid: 8404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,20.5 + parent: 2 + - uid: 8405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,20.5 + parent: 2 + - uid: 8406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,21.5 + parent: 2 + - uid: 8407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,23.5 + parent: 2 + - uid: 8408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,44.5 + parent: 2 + - uid: 8409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,46.5 + parent: 2 + - uid: 8410 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - uid: 8411 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 2 + - uid: 8412 + components: + - type: Transform + pos: 40.5,-37.5 + parent: 2 + - uid: 8413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-36.5 + parent: 2 + - uid: 8414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-37.5 + parent: 2 + - uid: 8415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-37.5 + parent: 2 + - uid: 8416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-38.5 + parent: 2 + - uid: 8417 + components: + - type: Transform + pos: 36.5,-36.5 + parent: 2 + - uid: 8418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,47.5 + parent: 2 + - uid: 8419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-63.5 + parent: 2 + - uid: 8420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-64.5 + parent: 2 + - uid: 8421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-63.5 + parent: 2 + - uid: 8422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-65.5 + parent: 2 + - uid: 8423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-65.5 + parent: 2 + - uid: 8424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-65.5 + parent: 2 + - uid: 8425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-69.5 + parent: 2 + - uid: 8426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-69.5 + parent: 2 + - uid: 8427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-67.5 + parent: 2 + - uid: 8428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-67.5 + parent: 2 + - uid: 8429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-65.5 + parent: 2 + - uid: 8430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-63.5 + parent: 2 + - uid: 8431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-63.5 + parent: 2 + - uid: 8432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-63.5 + parent: 2 + - uid: 8433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-67.5 + parent: 2 + - uid: 8434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-67.5 + parent: 2 + - uid: 8435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-69.5 + parent: 2 + - uid: 8436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-69.5 + parent: 2 + - uid: 8437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-65.5 + parent: 2 + - uid: 8438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-66.5 + parent: 2 + - uid: 8439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-69.5 + parent: 2 + - uid: 8440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-66.5 + parent: 2 + - uid: 8441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-65.5 + parent: 2 + - uid: 8442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-69.5 + parent: 2 + - uid: 8443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-64.5 + parent: 2 + - uid: 8444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-67.5 + parent: 2 + - uid: 8445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-71.5 + parent: 2 + - uid: 8446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-71.5 + parent: 2 + - uid: 23980 + components: + - type: Transform + pos: -7.5,59.5 + parent: 2 + - uid: 23981 + components: + - type: Transform + pos: -7.5,60.5 + parent: 2 + - uid: 23982 + components: + - type: Transform + pos: -7.5,61.5 + parent: 2 + - uid: 23983 + components: + - type: Transform + pos: -7.5,62.5 + parent: 2 + - uid: 23984 + components: + - type: Transform + pos: -7.5,66.5 + parent: 2 + - uid: 23985 + components: + - type: Transform + pos: -7.5,67.5 + parent: 2 + - uid: 23986 + components: + - type: Transform + pos: -7.5,68.5 + parent: 2 + - uid: 23987 + components: + - type: Transform + pos: -7.5,69.5 + parent: 2 + - uid: 23988 + components: + - type: Transform + pos: -4.5,67.5 + parent: 2 + - uid: 23989 + components: + - type: Transform + pos: -4.5,66.5 + parent: 2 + - uid: 23990 + components: + - type: Transform + pos: -4.5,65.5 + parent: 2 + - uid: 23991 + components: + - type: Transform + pos: -4.5,64.5 + parent: 2 + - uid: 23992 + components: + - type: Transform + pos: -4.5,63.5 + parent: 2 + - uid: 23993 + components: + - type: Transform + pos: -4.5,62.5 + parent: 2 + - uid: 23994 + components: + - type: Transform + pos: -4.5,68.5 + parent: 2 + - uid: 23995 + components: + - type: Transform + pos: -2.5,67.5 + parent: 2 + - uid: 23996 + components: + - type: Transform + pos: -2.5,66.5 + parent: 2 + - uid: 23997 + components: + - type: Transform + pos: -2.5,65.5 + parent: 2 + - uid: 23998 + components: + - type: Transform + pos: -2.5,64.5 + parent: 2 + - uid: 23999 + components: + - type: Transform + pos: -1.5,66.5 + parent: 2 + - uid: 24000 + components: + - type: Transform + pos: -0.5,66.5 + parent: 2 + - uid: 24001 + components: + - type: Transform + pos: 0.5,66.5 + parent: 2 + - uid: 24002 + components: + - type: Transform + pos: 1.5,66.5 + parent: 2 + - uid: 24003 + components: + - type: Transform + pos: 2.5,66.5 + parent: 2 + - uid: 24004 + components: + - type: Transform + pos: 3.5,66.5 + parent: 2 + - uid: 24005 + components: + - type: Transform + pos: 4.5,67.5 + parent: 2 + - uid: 24006 + components: + - type: Transform + pos: 4.5,66.5 + parent: 2 + - uid: 24007 + components: + - type: Transform + pos: 4.5,65.5 + parent: 2 + - uid: 24008 + components: + - type: Transform + pos: 4.5,64.5 + parent: 2 + - uid: 24009 + components: + - type: Transform + pos: 6.5,62.5 + parent: 2 + - uid: 24010 + components: + - type: Transform + pos: 6.5,63.5 + parent: 2 + - uid: 24011 + components: + - type: Transform + pos: 6.5,64.5 + parent: 2 + - uid: 24012 + components: + - type: Transform + pos: 6.5,65.5 + parent: 2 + - uid: 24013 + components: + - type: Transform + pos: 6.5,66.5 + parent: 2 + - uid: 24014 + components: + - type: Transform + pos: 6.5,67.5 + parent: 2 + - uid: 24015 + components: + - type: Transform + pos: 6.5,68.5 + parent: 2 + - uid: 24016 + components: + - type: Transform + pos: 9.5,68.5 + parent: 2 + - uid: 24017 + components: + - type: Transform + pos: 9.5,67.5 + parent: 2 + - uid: 24018 + components: + - type: Transform + pos: 9.5,66.5 + parent: 2 + - uid: 24019 + components: + - type: Transform + pos: 9.5,62.5 + parent: 2 + - uid: 24020 + components: + - type: Transform + pos: 9.5,61.5 + parent: 2 + - uid: 24021 + components: + - type: Transform + pos: 9.5,60.5 + parent: 2 +- proto: CellRechargerCircuitboard + entities: + - uid: 8447 + components: + - type: Transform + pos: -23.339558,-16.29333 + parent: 2 +- proto: Chair + entities: + - uid: 8448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,16.5 + parent: 2 + - uid: 8449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,14.5 + parent: 2 + - uid: 8450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,16.5 + parent: 2 + - uid: 8451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,14.5 + parent: 2 + - uid: 8452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-8.5 + parent: 2 + - uid: 8453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-26.5 + parent: 2 + - uid: 8454 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 2 + - uid: 8455 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 2 + - uid: 8456 + components: + - type: Transform + pos: -37.5,-41.5 + parent: 2 + - uid: 8457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-52.5 + parent: 2 + - uid: 8458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-51.5 + parent: 2 + - uid: 8459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-50.5 + parent: 2 + - uid: 8460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-50.5 + parent: 2 + - uid: 8461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-51.5 + parent: 2 + - uid: 8462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-52.5 + parent: 2 + - uid: 8463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,28.5 + parent: 2 + - uid: 8464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,28.5 + parent: 2 + - uid: 8465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,28.5 + parent: 2 + - uid: 8466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,28.5 + parent: 2 + - uid: 8467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,35.5 + parent: 2 + - uid: 8468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,32.5 + parent: 2 + - uid: 8469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,33.5 + parent: 2 + - uid: 8470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,34.5 + parent: 2 + - uid: 8471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,36.5 + parent: 2 + - uid: 8472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,37.5 + parent: 2 + - uid: 8473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,41.5 + parent: 2 + - uid: 8474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,40.5 + parent: 2 + - uid: 8475 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 2 + - uid: 8476 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 2 + - uid: 8477 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 2 + - uid: 8478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-12.5 + parent: 2 + - uid: 8479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-12.5 + parent: 2 + - uid: 8480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-12.5 + parent: 2 + - uid: 8481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-12.5 + parent: 2 + - uid: 8482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-15.5 + parent: 2 + - uid: 8483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-14.5 + parent: 2 + - uid: 8484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,43.5 + parent: 2 + - uid: 8485 + components: + - type: Transform + pos: -30.5,26.5 + parent: 2 + - uid: 8486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,50.5 + parent: 2 + - uid: 8487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-16.5 + parent: 2 + - uid: 8488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-16.5 + parent: 2 + - uid: 8489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-16.5 + parent: 2 + - uid: 8490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-30.5 + parent: 2 + - uid: 8491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-22.5 + parent: 2 + - uid: 8492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-21.5 + parent: 2 + - uid: 8493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-21.5 + parent: 2 + - uid: 8494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-22.5 + parent: 2 + - uid: 8495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-37.5 + parent: 2 + - uid: 8496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,48.5 + parent: 2 + - uid: 8497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,48.5 + parent: 2 + - uid: 8498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-58.5 + parent: 2 + - uid: 8499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-59.5 + parent: 2 + - uid: 8500 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 +- proto: ChairFolding + entities: + - uid: 8501 + components: + - type: Transform + pos: -39.5,-62.5 + parent: 2 + - uid: 8502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-63.5 + parent: 2 + - uid: 8503 + components: + - type: Transform + pos: 42.5,5.5 + parent: 2 + - uid: 8504 + components: + - type: Transform + pos: 43.5,-66.5 + parent: 2 + - uid: 8505 + components: + - type: Transform + pos: 45.5,-66.5 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 8506 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 + - uid: 8507 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - uid: 8508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-3.5 + parent: 2 + - uid: 8509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,13.5 + parent: 2 + - uid: 8510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,13.5 + parent: 2 + - uid: 8511 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 + - uid: 8512 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 8513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-3.5 + parent: 2 + - uid: 8514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-35.5 + parent: 2 + - uid: 8515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-50.5 + parent: 2 + - uid: 8516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-49.5 + parent: 2 + - uid: 8517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-67.5 + parent: 2 + - uid: 8518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-2.5 + parent: 2 + - uid: 8519 + components: + - type: Transform + pos: 13.5,43.5 + parent: 2 + - uid: 8520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,36.5 + parent: 2 + - uid: 8521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,38.5 + parent: 2 + - uid: 8522 + components: + - type: Transform + pos: 46.5,-17.5 + parent: 2 + - uid: 8523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,15.5 + parent: 2 + - uid: 8524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,19.5 + parent: 2 + - uid: 8525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,21.5 + parent: 2 + - uid: 8526 + components: + - type: Transform + pos: -25.5,25.5 + parent: 2 + - uid: 8527 + components: + - type: Transform + pos: -24.5,25.5 + parent: 2 + - uid: 8528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,23.5 + parent: 2 + - uid: 8529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,23.5 + parent: 2 + - uid: 8530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,23.5 + parent: 2 + - uid: 8531 + components: + - type: Transform + pos: -16.5,34.5 + parent: 2 + - uid: 8532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,35.5 + parent: 2 + - uid: 8533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,44.5 + parent: 2 + - uid: 8534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,52.5 + parent: 2 + - uid: 8535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,52.5 + parent: 2 + - uid: 8536 + components: + - type: Transform + pos: 7.5,47.5 + parent: 2 + - uid: 8537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-19.5 + parent: 2 + - uid: 8538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-49.5 + parent: 2 + - uid: 8539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-54.5 + parent: 2 + - uid: 8540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-32.5 + parent: 2 + - uid: 8541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-55.5 + parent: 2 + - uid: 8542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,20.5 + parent: 2 +- proto: ChairOfficeLight + entities: + - uid: 8543 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 2 + - uid: 8544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-26.5 + parent: 2 + - uid: 8545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-28.5 + parent: 2 + - uid: 8546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-33.5 + parent: 2 + - uid: 8547 + components: + - type: Transform + pos: -25.5,-23.5 + parent: 2 + - uid: 8548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-17.5 + parent: 2 + - uid: 8549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-17.5 + parent: 2 + - uid: 8550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-20.5 + parent: 2 + - uid: 8551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-23.5 + parent: 2 + - uid: 8552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-31.5 + parent: 2 + - uid: 8553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-31.5 + parent: 2 + - uid: 8554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.479202,-30.922709 + parent: 2 + - uid: 8555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-35.5 + parent: 2 + - uid: 8556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-36.5 + parent: 2 + - uid: 8557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-35.5 + parent: 2 + - uid: 8558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-36.5 + parent: 2 + - uid: 8559 + components: + - type: Transform + pos: -46.5,-31.5 + parent: 2 + - uid: 8560 + components: + - type: Transform + pos: 38.5,13.5 + parent: 2 + - uid: 8561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,20.5 + parent: 2 + - uid: 8562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,33.5 + parent: 2 + - uid: 8563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-18.5 + parent: 2 + - uid: 8564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-21.5 + parent: 2 + - uid: 8565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-33.5 + parent: 2 + - uid: 8566 + components: + - type: Transform + pos: 40.5,-33.5 + parent: 2 + - uid: 8567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-28.5 + parent: 2 + - uid: 8568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-32.5 + parent: 2 + - uid: 8569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-31.5 + parent: 2 + - uid: 8570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-30.5 + parent: 2 + - uid: 8571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-30.5 + parent: 2 + - uid: 8572 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 8573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-37.5 + parent: 2 + - uid: 8574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-39.5 + parent: 2 + - uid: 8575 + components: + - type: Transform + pos: 43.5,-39.5 + parent: 2 +- proto: ChairPilotSeat + entities: + - uid: 8576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,54.5 + parent: 2 + - uid: 8577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,54.5 + parent: 2 + - uid: 8578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,61.5 + parent: 2 + - uid: 8579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,61.5 + parent: 2 + - uid: 8580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,60.5 + parent: 2 + - uid: 8581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,58.5 + parent: 2 + - uid: 8582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,60.5 + parent: 2 + - uid: 8583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,58.5 + parent: 2 + - uid: 8584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,60.5 + parent: 2 + - uid: 8585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,60.5 + parent: 2 +- proto: ChairWood + entities: + - uid: 8586 + components: + - type: Transform + pos: -11.5,16.5 + parent: 2 + - uid: 8587 + components: + - type: Transform + pos: -31.5,-59.5 + parent: 2 + - uid: 8588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-60.5 + parent: 2 + - uid: 8589 + components: + - type: Transform + pos: -30.5,-63.5 + parent: 2 + - uid: 8590 + components: + - type: Transform + pos: -29.5,-63.5 + parent: 2 + - uid: 8591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-61.5 + parent: 2 + - uid: 8592 + components: + - type: Transform + pos: 33.5,11.5 + parent: 2 + - uid: 8593 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 + - uid: 8594 + components: + - type: Transform + pos: 41.5,5.5 + parent: 2 + - uid: 8595 + components: + - type: Transform + pos: 43.5,5.5 + parent: 2 + - uid: 8596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,2.5 + parent: 2 + - uid: 8597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,2.5 + parent: 2 + - uid: 8598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,31.5 + parent: 2 + - uid: 8599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,35.5 + parent: 2 + - uid: 8600 + components: + - type: Transform + pos: 17.5,37.5 + parent: 2 + - uid: 8601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,23.5 + parent: 2 + - uid: 8602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,23.5 + parent: 2 + - uid: 8603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,23.5 + parent: 2 + - uid: 8604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,23.5 + parent: 2 +- proto: CheapLighter + entities: + - uid: 8605 + components: + - type: Transform + pos: 17.633575,12.68796 + parent: 2 +- proto: CheapRollerBed + entities: + - uid: 8606 + components: + - type: Transform + pos: 9.466855,-12.469458 + parent: 2 + - uid: 8607 + components: + - type: Transform + pos: -30.500156,33.499844 + parent: 2 + - uid: 8608 + components: + - type: Transform + pos: -30.515537,36.5163 + parent: 2 + - uid: 8609 + components: + - type: Transform + pos: -30.515537,36.78373 + parent: 2 + - uid: 8610 + components: + - type: Transform + pos: 14.49619,-8.461559 + parent: 2 +- proto: CheapRollerBedSpawnFolded + entities: + - uid: 8611 + components: + - type: Transform + pos: 23.488644,-36.37967 + parent: 2 +- proto: chem_master + entities: + - uid: 8612 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 2 + - uid: 8613 + components: + - type: Transform + pos: 38.5,12.5 + parent: 2 + - uid: 8614 + components: + - type: Transform + pos: 38.5,-32.5 + parent: 2 + - uid: 8615 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 2 + - type: ContainerContainer + containers: + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 8616 + outputSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 8617 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 2 + - type: ContainerContainer + containers: + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 8618 + outputSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] +- proto: ChemDispenser + entities: + - uid: 8619 + components: + - type: Transform + pos: 8.5,-29.5 + parent: 2 + - uid: 8620 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 2 +- proto: ChemDispenserMachineCircuitboard + entities: + - uid: 8621 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 2 +- proto: ChemicalPayload + entities: + - uid: 8622 + components: + - type: Transform + pos: -41.36592,-32.47673 + parent: 2 + - uid: 8623 + components: + - type: Transform + pos: -41.475296,-32.47673 + parent: 2 +- proto: ChemistryEmptyBottle01 + entities: + - uid: 8624 + components: + - type: Transform + pos: 23.742168,39.82343 + parent: 2 + - uid: 8625 + components: + - type: Transform + pos: -29.545193,32.906143 + parent: 2 + - uid: 8626 + components: + - type: Transform + pos: -29.277431,32.79153 + parent: 2 + - uid: 8627 + components: + - type: Transform + pos: -42.82412,37.20674 + parent: 2 + - uid: 8629 + components: + - type: Transform + parent: 8628 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8630 + components: + - type: Transform + parent: 8628 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8631 + components: + - type: Transform + parent: 8628 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8632 + components: + - type: Transform + parent: 8628 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8633 + components: + - type: Transform + parent: 8628 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8636 + components: + - type: Transform + pos: 42.574924,-29.492899 + parent: 2 + - uid: 8637 + components: + - type: Transform + pos: 42.686813,-29.418306 + parent: 2 + - uid: 8638 + components: + - type: Transform + pos: 42.798702,-29.343716 + parent: 2 + - uid: 8639 + components: + - type: Transform + pos: 14.569506,-32.364628 + parent: 2 + - uid: 8640 + components: + - type: Transform + pos: 14.606801,-32.168823 + parent: 2 + - uid: 8641 + components: + - type: Transform + pos: 14.662745,-32.3553 + parent: 2 + - uid: 8642 + components: + - type: Transform + pos: 14.7839575,-32.23409 + parent: 2 + - uid: 8643 + components: + - type: Transform + pos: 14.550858,-32.224766 + parent: 2 + - uid: 8644 + components: + - type: Transform + pos: 12.6648245,-37.416187 + parent: 2 +- proto: ChemistryHotplate + entities: + - uid: 8645 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 +- proto: ChemMasterMachineCircuitboard + entities: + - uid: 8646 + components: + - type: Transform + pos: -4.558944,-36.53567 + parent: 2 +- proto: ChessBoard + entities: + - uid: 8647 + components: + - type: Transform + pos: 43.486767,3.6246936 + parent: 2 +- proto: CigaretteSpent + entities: + - uid: 8648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.678261,43.148743 + parent: 2 + - uid: 8649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.306835,-34.981674 + parent: 2 + - uid: 8650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.747395,-34.58307 + parent: 2 + - uid: 8651 + components: + - type: Transform + pos: 44.314438,-66.48335 + parent: 2 + - uid: 8652 + components: + - type: Transform + pos: 44.244576,-66.595085 + parent: 2 +- proto: CigarGold + entities: + - uid: 8653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.6491256,53.60938 + parent: 2 + - uid: 8654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.4952793,53.46952 + parent: 2 +- proto: CigarGoldCase + entities: + - uid: 8655 + components: + - type: Transform + pos: -35.437805,17.56227 + parent: 2 + - uid: 8656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.462513,56.7324 + parent: 2 + - uid: 8657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.502454,54.442284 + parent: 2 + - uid: 8658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.577045,54.274452 + parent: 2 +- proto: CigCartonMixed + entities: + - uid: 8659 + components: + - type: Transform + pos: 41.593994,3.7179337 + parent: 2 +- proto: CigPackBlack + entities: + - uid: 8660 + components: + - type: Transform + pos: 44.314438,-66.32973 + parent: 2 +- proto: CigPackBlue + entities: + - uid: 8661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.656745,43.72897 + parent: 2 +- proto: CigPackMixed + entities: + - uid: 8662 + components: + - type: Transform + pos: -38.638542,-16.615156 + parent: 2 +- proto: CigPackMixedMedical + entities: + - uid: 8663 + components: + - type: Transform + pos: -38.512794,-16.726889 + parent: 2 +- proto: CigPackMixedNasty + entities: + - uid: 8664 + components: + - type: Transform + pos: -38.69443,-16.83862 + parent: 2 +- proto: CircuitImprinter + entities: + - uid: 8665 + components: + - type: Transform + pos: -34.5,-29.5 + parent: 2 + - uid: 8666 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 2 + - uid: 8667 + components: + - type: Transform + pos: 26.5,-39.5 + parent: 2 +- proto: CleanerDispenser + entities: + - uid: 8668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,15.5 + parent: 2 + - uid: 8669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,11.5 + parent: 2 +- proto: ClosetBluespaceUnstable + entities: + - uid: 8671 + components: + - type: Transform + pos: -35.5,-58.5 + parent: 2 +- proto: ClosetBombFilled + entities: + - uid: 8672 + components: + - type: Transform + pos: -22.5,-32.5 + parent: 2 + - uid: 8673 + components: + - type: Transform + pos: -31.5,-45.5 + parent: 2 + - uid: 8674 + components: + - type: Transform + pos: -32.5,-45.5 + parent: 2 + - uid: 8675 + components: + - type: Transform + pos: -10.5,31.5 + parent: 2 +- proto: ClosetChefFilled + entities: + - uid: 8676 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 2 + - uid: 8677 + components: + - type: Transform + pos: 23.5,19.5 + parent: 2 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 8678 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 + - uid: 8679 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 8680 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 8681 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 8682 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 2 + - uid: 8683 + components: + - type: Transform + pos: -19.5,5.5 + parent: 2 + - uid: 8684 + components: + - type: Transform + pos: -48.5,-25.5 + parent: 2 + - uid: 8685 + components: + - type: Transform + pos: -30.5,-27.5 + parent: 2 + - uid: 8686 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 2 + - uid: 8687 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 8688 + components: + - type: Transform + pos: 25.5,27.5 + parent: 2 + - uid: 8689 + components: + - type: Transform + pos: 44.5,26.5 + parent: 2 + - uid: 8690 + components: + - type: Transform + pos: 30.5,41.5 + parent: 2 + - uid: 8691 + components: + - type: Transform + pos: 44.5,48.5 + parent: 2 + - uid: 8692 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - uid: 8693 + components: + - type: Transform + pos: -33.5,21.5 + parent: 2 + - uid: 8694 + components: + - type: Transform + pos: -28.5,41.5 + parent: 2 + - uid: 8695 + components: + - type: Transform + pos: -39.5,24.5 + parent: 2 + - uid: 8696 + components: + - type: Transform + pos: -5.5,45.5 + parent: 2 + - uid: 8697 + components: + - type: Transform + pos: 3.5,58.5 + parent: 2 + - uid: 8698 + components: + - type: Transform + pos: 24.5,-36.5 + parent: 2 + - uid: 8699 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 2 + - uid: 8700 + components: + - type: Transform + pos: -9.5,-61.5 + parent: 2 + - uid: 8701 + components: + - type: Transform + pos: -24.5,-52.5 + parent: 2 + - uid: 8702 + components: + - type: Transform + pos: 35.5,-36.5 + parent: 2 +- proto: ClosetFireFilled + entities: + - uid: 8703 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 2 + - uid: 8704 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - uid: 8705 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 8706 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 8707 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 2 + - uid: 8708 + components: + - type: Transform + pos: -19.5,4.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8709 + components: + - type: Transform + pos: -48.5,-27.5 + parent: 2 + - uid: 8710 + components: + - type: Transform + pos: -30.5,-26.5 + parent: 2 + - uid: 8711 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 2 + - uid: 8712 + components: + - type: Transform + pos: -31.5,-57.5 + parent: 2 + - uid: 8713 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - uid: 8714 + components: + - type: Transform + pos: 42.5,26.5 + parent: 2 + - uid: 8715 + components: + - type: Transform + pos: 28.5,41.5 + parent: 2 + - uid: 8716 + components: + - type: Transform + pos: 27.5,29.5 + parent: 2 + - uid: 8717 + components: + - type: Transform + pos: -31.5,21.5 + parent: 2 + - uid: 8718 + components: + - type: Transform + pos: -30.5,41.5 + parent: 2 + - uid: 8719 + components: + - type: Transform + pos: -4.5,45.5 + parent: 2 + - uid: 8720 + components: + - type: Transform + pos: -1.5,58.5 + parent: 2 + - uid: 8721 + components: + - type: Transform + pos: 25.5,-36.5 + parent: 2 + - uid: 8722 + components: + - type: Transform + pos: -25.5,-52.5 + parent: 2 +- proto: ClosetL3Filled + entities: + - uid: 8723 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 2 +- proto: ClosetL3JanitorFilled + entities: + - uid: 8724 + components: + - type: Transform + pos: 10.5,12.5 + parent: 2 + - uid: 8725 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 +- proto: ClosetL3ScienceFilled + entities: + - uid: 8726 + components: + - type: Transform + pos: -8.5,-32.5 + parent: 2 + - uid: 8727 + components: + - type: Transform + pos: -8.5,-31.5 + parent: 2 +- proto: ClosetL3VirologyFilled + entities: + - uid: 8728 + components: + - type: Transform + pos: 38.5,-27.5 + parent: 2 + - uid: 8729 + components: + - type: Transform + pos: 38.5,-28.5 + parent: 2 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 8731 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2 + - uid: 8732 + components: + - type: Transform + pos: -17.5,7.5 + parent: 2 + - uid: 8733 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 8734 + components: + - type: Transform + pos: 16.5,4.5 + parent: 2 + - uid: 8735 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8736 + components: + - type: Transform + pos: -8.5,-18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8737 + components: + - type: Transform + pos: -8.5,-19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8738 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8739 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8740 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8741 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 2 + - uid: 8742 + components: + - type: Transform + pos: -44.5,-27.5 + parent: 2 + - uid: 8743 + components: + - type: Transform + pos: -19.5,-39.5 + parent: 2 + - uid: 8744 + components: + - type: Transform + pos: -30.5,-57.5 + parent: 2 + - uid: 8745 + components: + - type: Transform + pos: -9.5,-53.5 + parent: 2 + - uid: 8746 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 2 + - uid: 8748 + components: + - type: Transform + pos: -22.5,14.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8749 + components: + - type: Transform + pos: -24.5,21.5 + parent: 2 + - uid: 8750 + components: + - type: Transform + pos: -22.5,9.5 + parent: 2 + - uid: 8751 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 2 + - uid: 8752 + components: + - type: Transform + pos: -26.5,-59.5 + parent: 2 + - uid: 8753 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 2 + - uid: 8754 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - uid: 8755 + components: + - type: Transform + pos: 29.5,-36.5 + parent: 2 + - uid: 8756 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 2 + - uid: 8757 + components: + - type: Transform + pos: 4.5,-37.5 + parent: 2 + - uid: 8758 + components: + - type: Transform + pos: -21.5,-52.5 + parent: 2 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 8759 + components: + - type: Transform + pos: -22.5,-33.5 + parent: 2 + - uid: 8760 + components: + - type: Transform + pos: 8.5,-58.5 + parent: 2 + - uid: 8761 + components: + - type: Transform + pos: 8.5,-59.5 + parent: 2 + - uid: 8762 + components: + - type: Transform + pos: 35.5,-41.5 + parent: 2 +- proto: ClosetToolFilled + entities: + - uid: 8763 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 2 +- proto: ClothingBackpack + entities: + - uid: 8764 + components: + - type: Transform + pos: 32.52811,28.861206 + parent: 2 + - uid: 8765 + components: + - type: Transform + pos: 32.73324,28.730669 + parent: 2 + - uid: 8766 + components: + - type: Transform + pos: 33.37349,28.879854 + parent: 2 + - uid: 8767 + components: + - type: Transform + pos: 33.52889,28.693375 + parent: 2 +- proto: ClothingBackpackClown + entities: + - uid: 10530 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackDuffel + entities: + - uid: 8768 + components: + - type: Transform + pos: -42.56276,-9.286255 + parent: 2 +- proto: ClothingBackpackDuffelGenetics + entities: + - uid: 8769 + components: + - type: Transform + pos: 22.363007,-30.442726 + parent: 2 +- proto: ClothingBackpackDuffelMime + entities: + - uid: 10517 + components: + - type: Transform + parent: 10501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackERTClown + entities: + - uid: 10531 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackMime + entities: + - uid: 10511 + components: + - type: Transform + parent: 10501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackSatchelClown + entities: + - uid: 10545 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackSatchelMime + entities: + - uid: 10523 + components: + - type: Transform + parent: 10501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBackpackSatchelSalvage + entities: + - uid: 8771 + components: + - type: Transform + pos: -42.457863,-9.496044 + parent: 2 +- proto: ClothingBackpackSatchelScience + entities: + - uid: 8772 + components: + - type: Transform + pos: -44.545567,-39.341473 + parent: 2 + - uid: 8773 + components: + - type: Transform + pos: -19.541893,-45.404873 + parent: 2 +- proto: ClothingBeltJanitor + entities: + - uid: 8774 + components: + - type: Transform + pos: 14.117703,27.649174 + parent: 2 +- proto: ClothingBeltMedicalFilled + entities: + - uid: 8775 + components: + - type: Transform + pos: 14.2991085,-32.448544 + parent: 2 +- proto: ClothingBeltPlantFilled + entities: + - uid: 8776 + components: + - type: Transform + pos: 32.484955,20.663464 + parent: 2 + - uid: 8777 + components: + - type: Transform + pos: 12.586235,27.628193 + parent: 2 +- proto: ClothingBeltUtility + entities: + - uid: 8778 + components: + - type: Transform + pos: -23.3507,-14.700407 + parent: 2 + - uid: 8779 + components: + - type: Transform + pos: -30.458813,-64.428314 + parent: 2 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 8780 + components: + - type: Transform + pos: 7.463489,15.835896 + parent: 2 + - uid: 8781 + components: + - type: Transform + pos: -9.46034,-55.427685 + parent: 2 + - uid: 8782 + components: + - type: Transform + pos: 29.526173,-52.48198 + parent: 2 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 8783 + components: + - type: Transform + pos: -43.508026,10.500816 + parent: 2 + - uid: 8784 + components: + - type: Transform + pos: -26.641651,-23.912199 + parent: 2 +- proto: ClothingEyesBlindfold + entities: + - uid: 8785 + components: + - type: Transform + pos: -33.593716,25.528635 + parent: 2 +- proto: ClothingEyesGlassesChemical + entities: + - uid: 8786 + components: + - type: Transform + pos: -33.313164,-28.14225 + parent: 2 + - uid: 8787 + components: + - type: Transform + pos: -36.31762,-30.160292 + parent: 2 + - uid: 8788 + components: + - type: Transform + pos: -22.546875,-31.553246 + parent: 2 +- proto: ClothingEyesGlassesMeson + entities: + - uid: 8789 + components: + - type: Transform + pos: 8.4551,74.56609 + parent: 2 + - uid: 8790 + components: + - type: Transform + pos: 9.471309,83.47607 + parent: 2 + - uid: 8791 + components: + - type: Transform + pos: -19.484676,-63.529808 + parent: 2 + - uid: 8792 + components: + - type: Transform + pos: -19.344814,-63.334003 + parent: 2 + - uid: 8793 + components: + - type: Transform + pos: -7.6099415,-63.431587 + parent: 2 +- proto: ClothingEyesGlassesSecurity + entities: + - uid: 8794 + components: + - type: Transform + pos: -19.431599,21.922447 + parent: 2 +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 8795 + components: + - type: Transform + pos: -26.440292,-23.687542 + parent: 2 + - uid: 8796 + components: + - type: Transform + pos: -19.507435,-22.557985 + parent: 2 + - uid: 8797 + components: + - type: Transform + pos: -14.529796,35.828796 + parent: 2 +- proto: ClothingEyesHudDiagnostic + entities: + - uid: 8798 + components: + - type: Transform + pos: -7.358194,-62.578438 + parent: 2 + - uid: 8800 + components: + - type: Transform + parent: 8799 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorPurple + entities: + - uid: 8802 + components: + - type: Transform + pos: 22.533283,-11.475393 + parent: 2 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 8803 + components: + - type: Transform + pos: -16.498177,-56.40037 + parent: 2 + - uid: 8804 + components: + - type: Transform + pos: -7.5400114,-62.39662 + parent: 2 + - uid: 8805 + components: + - type: Transform + pos: 26.474522,-62.485188 + parent: 2 + - uid: 8806 + components: + - type: Transform + pos: 29.515945,-62.382626 + parent: 2 +- proto: ClothingHandsGlovesFingerlessInsulated + entities: + - uid: 8807 + components: + - type: Transform + pos: -34.37776,-28.519873 + parent: 2 +- proto: ClothingHandsGlovesLatex + entities: + - uid: 8808 + components: + - type: Transform + pos: 18.452904,-16.508553 + parent: 2 + - uid: 8809 + components: + - type: Transform + pos: 38.50769,-33.975113 + parent: 2 +- proto: ClothingHandsTacticalMaidGloves + entities: + - uid: 8810 + components: + - type: Transform + pos: 11.494395,39.477314 + parent: 2 +- proto: ClothingHeadHatChef + entities: + - uid: 8816 + components: + - type: Transform + pos: -42.500126,31.703918 + parent: 2 +- proto: ClothingHeadHatCone + entities: + - uid: 8817 + components: + - type: Transform + pos: -8.705857,39.615715 + parent: 2 + - uid: 8818 + components: + - type: Transform + pos: -8.642105,39.768536 + parent: 2 + - uid: 8819 + components: + - type: Transform + pos: -8.457224,39.596615 + parent: 2 + - uid: 8820 + components: + - type: Transform + pos: -8.361595,39.647552 + parent: 2 + - uid: 8821 + components: + - type: Transform + pos: -8.457224,39.76217 + parent: 2 +- proto: ClothingHeadHatFezMantis + entities: + - uid: 8822 + components: + - type: Transform + pos: -11.279213,-24.423569 + parent: 2 +- proto: ClothingHeadHatHoodBioCmo + entities: + - uid: 8824 + components: + - type: Transform + parent: 8823 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatHoodMoth + entities: + - uid: 8829 + components: + - type: Transform + pos: -7.6243105,12.440752 + parent: 2 +- proto: ClothingHeadHatMimesoft + entities: + - uid: 10520 + components: + - type: Transform + parent: 10501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatMimesoftFlipped + entities: + - uid: 10521 + components: + - type: Transform + parent: 10501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatTacticalMaidHeadband + entities: + - uid: 8830 + components: + - type: Transform + pos: 11.394939,39.75082 + parent: 2 +- proto: ClothingHeadHatWelding + entities: + - uid: 8831 + components: + - type: Transform + pos: 7.370249,19.791813 + parent: 2 + - uid: 8832 + components: + - type: Transform + pos: -26.594776,-23.365324 + parent: 2 + - uid: 8833 + components: + - type: Transform + pos: -6.4542637,79.61747 + parent: 2 + - uid: 8834 + components: + - type: Transform + pos: -6.4855375,74.62076 + parent: 2 + - uid: 8835 + components: + - type: Transform + pos: -16.508045,-56.474964 + parent: 2 +- proto: ClothingHeadHatWizard + entities: + - uid: 8836 + components: + - type: Transform + pos: 30.46769,-6.3655777 + parent: 2 +- proto: ClothingHeadHelmetRiot + entities: + - uid: 8837 + components: + - type: Transform + pos: -12.5835085,40.460464 + parent: 2 + - uid: 8838 + components: + - type: Transform + pos: -12.302999,40.58781 + parent: 2 +- proto: ClothingHeadHelmetSwatSyndicate + entities: + - uid: 8839 + components: + - type: Transform + pos: 14.508218,31.482315 + parent: 2 +- proto: ClothingHeadNurseHat + entities: + - uid: 8840 + components: + - type: Transform + pos: 26.467663,-34.491558 + parent: 2 +- proto: ClothingHeadsetCommand + entities: + - uid: 22313 + components: + - type: Transform + parent: 22310 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskBat + entities: + - uid: 8841 + components: + - type: Transform + pos: -7.6243105,12.673853 + parent: 2 +- proto: ClothingMaskBear + entities: + - uid: 8842 + components: + - type: Transform + pos: -7.214054,12.692501 + parent: 2 +- proto: ClothingMaskClown + entities: + - uid: 8843 + components: + - type: Transform + pos: -7.307294,12.412781 + parent: 2 + - uid: 8844 + components: + - type: Transform + pos: -25.091064,-41.764637 + parent: 2 + - uid: 10532 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskClownBanana + entities: + - uid: 10547 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskGas + entities: + - uid: 8845 + components: + - type: Transform + pos: -7.4589415,-66.27429 + parent: 2 + - uid: 8846 + components: + - type: Transform + pos: 28.54625,-62.3733 + parent: 2 +- proto: ClothingMaskGasCentcom + entities: + - uid: 8847 + components: + - type: Transform + pos: -14.499043,-33.465836 + parent: 2 +- proto: ClothingMaskMime + entities: + - uid: 10514 + components: + - type: Transform + parent: 10501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskMuzzle + entities: + - uid: 8825 + components: + - type: Transform + parent: 8823 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8849 + components: + - type: Transform + parent: 8848 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8850 + components: + - type: Transform + parent: 8848 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8854 + components: + - type: Transform + pos: -33.599934,25.466475 + parent: 2 +- proto: ClothingMaskSadMime + entities: + - uid: 10509 + components: + - type: Transform + parent: 10501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskScaredMime + entities: + - uid: 10507 + components: + - type: Transform + parent: 10501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskSexyClown + entities: + - uid: 8855 + components: + - type: Transform + pos: -23.519207,-41.51324 + parent: 2 + - uid: 10526 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskSexyMime + entities: + - uid: 10504 + components: + - type: Transform + parent: 10501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskSterile + entities: + - uid: 8856 + components: + - type: Transform + pos: 18.480877,-16.2941 + parent: 2 + - uid: 8857 + components: + - type: Transform + pos: 19.387924,-13.55324 + parent: 2 +- proto: ClothingNeckCloakBoat + entities: + - uid: 22317 + components: + - type: Transform + parent: 22310 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckCloakNanotrasen + entities: + - uid: 22316 + components: + - type: Transform + parent: 22310 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckCloakTrans + entities: + - uid: 8858 + components: + - type: Transform + pos: 36.63746,30.719614 + parent: 2 +- proto: ClothingNeckClownmedal + entities: + - uid: 10546 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckMantleCMO + entities: + - uid: 8859 + components: + - type: Transform + pos: 25.406673,-19.374836 + parent: 2 +- proto: ClothingNeckMantleHOS + entities: + - uid: 8860 + components: + - type: Transform + pos: -24.003525,40.67299 + parent: 2 +- proto: ClothingNeckStethoscope + entities: + - uid: 8861 + components: + - type: Transform + pos: 20.564407,-13.356026 + parent: 2 + - uid: 8862 + components: + - type: Transform + pos: 14.597477,-32.364628 + parent: 2 +- proto: ClothingNeckTransPin + entities: + - uid: 8863 + components: + - type: Transform + pos: 36.29247,30.486513 + parent: 2 +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 8864 + components: + - type: Transform + pos: -14.65951,40.596058 + parent: 2 + - uid: 8865 + components: + - type: Transform + pos: -14.477816,40.60561 + parent: 2 + - uid: 8866 + components: + - type: Transform + pos: -14.573443,40.69157 + parent: 2 +- proto: ClothingOuterArmorCult + entities: + - uid: 8867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.477132,33.43828 + parent: 2 +- proto: ClothingOuterArmorReflective + entities: + - uid: 8868 + components: + - type: Transform + pos: -14.32481,40.60561 + parent: 2 +- proto: ClothingOuterArmorRiot + entities: + - uid: 8869 + components: + - type: Transform + pos: -12.436878,40.66422 + parent: 2 + - uid: 8870 + components: + - type: Transform + pos: -12.589884,40.575077 + parent: 2 +- proto: ClothingOuterBioCmo + entities: + - uid: 8826 + components: + - type: Transform + parent: 8823 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterClownPriest + entities: + - uid: 10527 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCoatLabGene + entities: + - uid: 8871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.656715,-30.35881 + parent: 2 +- proto: ClothingOuterCoatMantis + entities: + - uid: 8872 + components: + - type: Transform + pos: -11.324873,-24.533173 + parent: 2 +- proto: ClothingOuterCorporateJacket + entities: + - uid: 22319 + components: + - type: Transform + parent: 22310 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitClown + entities: + - uid: 10544 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitMime + entities: + - uid: 10513 + components: + - type: Transform + parent: 10501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterStraightjacket + entities: + - uid: 8827 + components: + - type: Transform + parent: 8823 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 8851 + components: + - type: Transform + parent: 8848 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8852 + components: + - type: Transform + parent: 8848 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8873 + components: + - type: Transform + pos: -33.36994,25.62809 + parent: 2 +- proto: ClothingOuterSuitRad + entities: + - uid: 8874 + components: + - type: Transform + pos: -6.3512006,-62.312706 + parent: 2 +- proto: ClothingOuterVestHazard + entities: + - uid: 8875 + components: + - type: Transform + pos: 25.514149,-62.429245 + parent: 2 +- proto: ClothingOuterWinterClown + entities: + - uid: 10551 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterCoatMantis + entities: + - uid: 8876 + components: + - type: Transform + pos: -8.484784,-22.480118 + parent: 2 +- proto: ClothingOuterWinterMime + entities: + - uid: 10522 + components: + - type: Transform + parent: 10501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsMag + entities: + - uid: 8877 + components: + - type: Transform + pos: -6.654292,-23.211048 + parent: 2 + - uid: 8878 + components: + - type: Transform + pos: -6.383896,-23.322937 + parent: 2 + - uid: 8879 + components: + - type: Transform + pos: -6.663616,-23.434824 + parent: 2 + - uid: 8880 + components: + - type: Transform + pos: -6.383896,-23.481445 + parent: 2 + - uid: 8881 + components: + - type: Transform + pos: 2.3849049,-59.000687 + parent: 2 + - uid: 8882 + components: + - type: Transform + pos: 2.5340893,-58.926094 + parent: 2 +- proto: ClothingShoesBootsWinterClown + entities: + - uid: 10542 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsWinterMime + entities: + - uid: 10510 + components: + - type: Transform + parent: 10501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesClown + entities: + - uid: 10528 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesClownBanana + entities: + - uid: 10549 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesClownLarge + entities: + - uid: 10536 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUnderSocksCoder + entities: + - uid: 8884 + components: + - type: Transform + parent: 8883 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtMime + entities: + - uid: 10506 + components: + - type: Transform + parent: 10501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtTacticalMaid + entities: + - uid: 8886 + components: + - type: Transform + pos: 11.488179,39.40894 + parent: 2 +- proto: ClothingUniformJumpsuitAncient + entities: + - uid: 8888 + components: + - type: Transform + parent: 8887 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitCentcomAgent + entities: + - uid: 22312 + components: + - type: Transform + parent: 22310 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitClown + entities: + - uid: 10525 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitClownBanana + entities: + - uid: 10550 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitMime + entities: + - uid: 10502 + components: + - type: Transform + parent: 10501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitNanotrasen + entities: + - uid: 22314 + components: + - type: Transform + parent: 22310 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: ClownRecorder + entities: + - uid: 8889 + components: + - type: Transform + pos: -21.480698,-41.466324 + parent: 2 + - uid: 10541 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Cobweb1 + entities: + - uid: 8890 + components: + - type: Transform + pos: -13.5,6.5 + parent: 2 + - uid: 8891 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 2 + - uid: 8892 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 2 + - uid: 8893 + components: + - type: Transform + pos: -21.5,-41.5 + parent: 2 + - uid: 8894 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - uid: 8895 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - uid: 8896 + components: + - type: Transform + pos: 42.5,24.5 + parent: 2 + - uid: 8897 + components: + - type: Transform + pos: 10.5,27.5 + parent: 2 + - uid: 8898 + components: + - type: Transform + pos: 34.5,-27.5 + parent: 2 + - uid: 8901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-29.5 + parent: 2 + - uid: 8902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-29.5 + parent: 2 + - uid: 8903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-33.5 + parent: 2 + - uid: 8904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-33.5 + parent: 2 + - uid: 8908 + components: + - type: Transform + pos: 18.5,-36.5 + parent: 2 + - uid: 8909 + components: + - type: Transform + pos: 30.5,-33.5 + parent: 2 + - uid: 8910 + components: + - type: Transform + pos: 32.5,-36.5 + parent: 2 + - uid: 8911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-36.5 + parent: 2 + - uid: 8912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-36.5 + parent: 2 + - uid: 8913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-40.5 + parent: 2 + - uid: 8914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-39.5 + parent: 2 + - uid: 8915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-34.5 + parent: 2 +- proto: Cobweb2 + entities: + - uid: 8916 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 2 + - uid: 8917 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 + - uid: 8918 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 2 + - uid: 8919 + components: + - type: Transform + pos: -6.5,-39.5 + parent: 2 + - uid: 8920 + components: + - type: Transform + pos: -19.5,-41.5 + parent: 2 + - uid: 8921 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 2 + - uid: 8922 + components: + - type: Transform + pos: -2.5,45.5 + parent: 2 + - uid: 8923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-33.5 + parent: 2 + - uid: 8925 + components: + - type: Transform + pos: 47.5,-36.5 + parent: 2 + - uid: 8926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-36.5 + parent: 2 + - uid: 8927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-40.5 + parent: 2 + - uid: 8928 + components: + - type: Transform + pos: 36.5,-36.5 + parent: 2 +- proto: CockroachTimedSpawner + entities: + - uid: 8929 + components: + - type: Transform + pos: -40.5,-26.5 + parent: 2 +- proto: ComfyChair + entities: + - uid: 928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,10.5 + parent: 2 + - uid: 8930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 2 + - uid: 8931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 2 + - uid: 8932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 2 + - uid: 8933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 2 + - uid: 8934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-0.5 + parent: 2 + - uid: 8935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,22.5 + parent: 2 + - uid: 8936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,21.5 + parent: 2 + - uid: 8937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,20.5 + parent: 2 + - uid: 8938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,39.5 + parent: 2 + - uid: 8939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,39.5 + parent: 2 + - uid: 8940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,39.5 + parent: 2 + - uid: 8941 + components: + - type: Transform + pos: -23.5,41.5 + parent: 2 + - uid: 8942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,48.5 + parent: 2 + - uid: 8943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,55.5 + parent: 2 + - uid: 8944 + components: + - type: Transform + pos: 7.5,55.5 + parent: 2 + - uid: 8945 + components: + - type: Transform + pos: 8.5,55.5 + parent: 2 + - uid: 8946 + components: + - type: Transform + pos: 9.5,55.5 + parent: 2 + - uid: 8947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,53.5 + parent: 2 + - uid: 8948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,53.5 + parent: 2 + - uid: 8949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,53.5 + parent: 2 + - uid: 8950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,85.5 + parent: 2 + - uid: 8951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,85.5 + parent: 2 + - uid: 8952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-24.5 + parent: 2 + - uid: 8953 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 2 + - uid: 8954 + components: + - type: Transform + pos: 8.5,-39.5 + parent: 2 + - uid: 8955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-50.5 + parent: 2 + - uid: 8956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-51.5 + parent: 2 + - uid: 8957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-50.5 + parent: 2 + - uid: 8958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,26.5 + parent: 2 + - uid: 8959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-23.5 + parent: 2 +- proto: CommsComputerCircuitboard + entities: + - uid: 8960 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 2 +- proto: ComputerAlert + entities: + - uid: 8961 + components: + - type: Transform + pos: 5.5,35.5 + parent: 2 + - uid: 8962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,60.5 + parent: 2 + - uid: 8963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-55.5 + parent: 2 + - uid: 8964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-64.5 + parent: 2 + - uid: 8965 + components: + - type: Transform + pos: -13.5,-55.5 + parent: 2 + - uid: 8966 + components: + - type: Transform + pos: -11.5,-55.5 + parent: 2 + - uid: 8967 + components: + - type: Transform + pos: 19.5,-39.5 + parent: 2 + - uid: 8968 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 2 + - uid: 8969 + components: + - type: Transform + pos: 21.5,-39.5 + parent: 2 + - uid: 8970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-54.5 + parent: 2 + - uid: 8971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-62.5 + parent: 2 + - uid: 8972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-58.5 + parent: 2 + - uid: 8973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-58.5 + parent: 2 + - uid: 8974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-62.5 + parent: 2 + - uid: 8975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-42.5 + parent: 2 + - uid: 8976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-53.5 + parent: 2 +- proto: ComputerAnalysisConsole + entities: + - uid: 8977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-24.5 + parent: 2 + - uid: 8978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-30.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15928: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + - uid: 8979 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 2 +- proto: computerBodyScanner + entities: + - uid: 821 + components: + - type: Transform + pos: 19.5,-30.5 + parent: 2 + - uid: 8980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-40.5 + parent: 2 +- proto: ComputerBroken + entities: + - uid: 8981 + components: + - type: Transform + pos: 38.5,-36.5 + parent: 2 +- proto: ComputerCargoBounty + entities: + - uid: 8982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-2.5 + parent: 2 + - uid: 8983 + components: + - type: Transform + pos: -27.5,8.5 + parent: 2 +- proto: ComputerCargoOrders + entities: + - uid: 8984 + components: + - type: Transform + pos: -2.5,61.5 + parent: 2 + - uid: 8985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-28.5 + parent: 2 + - uid: 8986 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 2 + - uid: 8988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,8.5 + parent: 2 + - uid: 8989 + components: + - type: Transform + pos: -28.5,8.5 + parent: 2 + - uid: 8990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,9.5 + parent: 2 + - uid: 22689 + components: + - type: Transform + pos: -1.5,-44.5 + parent: 2 +- proto: ComputerCargoShuttle + entities: + - uid: 8991 + components: + - type: Transform + pos: -29.5,8.5 + parent: 2 +- proto: ComputerCloningConsole + entities: + - uid: 820 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 2 + - uid: 8992 + components: + - type: Transform + pos: 31.5,-27.5 + parent: 2 +- proto: ComputerComms + entities: + - uid: 8993 + components: + - type: Transform + pos: -8.5,53.5 + parent: 2 + - uid: 8994 + components: + - type: Transform + pos: 0.5,62.5 + parent: 2 +- proto: ComputerCrewMonitoring + entities: + - uid: 8995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,32.5 + parent: 2 + - uid: 8996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,60.5 + parent: 2 + - uid: 8997 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 2 + - uid: 8998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-19.5 + parent: 2 + - uid: 8999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-25.5 + parent: 2 + - uid: 9000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,46.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 9001 + components: + - type: Transform + pos: -3.5,16.5 + parent: 2 + - uid: 9002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-2.5 + parent: 2 + - uid: 9003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-18.5 + parent: 2 + - uid: 9004 + components: + - type: Transform + pos: -7.5,20.5 + parent: 2 + - uid: 9005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,32.5 + parent: 2 + - uid: 9006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,34.5 + parent: 2 + - uid: 9007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,38.5 + parent: 2 + - uid: 9008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,19.5 + parent: 2 + - uid: 9009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,60.5 + parent: 2 + - uid: 9010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,24.5 + parent: 2 +- proto: ComputerFrame + entities: + - uid: 9011 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 9012 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 2 + - uid: 9013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-20.5 + parent: 2 + - uid: 9014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-51.5 + parent: 2 + - uid: 9015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-51.5 + parent: 2 + - uid: 9016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-67.5 + parent: 2 + - uid: 9017 + components: + - type: Transform + pos: 43.5,0.5 + parent: 2 + - uid: 9018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,0.5 + parent: 2 + - uid: 9019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,37.5 + parent: 2 + - uid: 9020 + components: + - type: Transform + pos: 44.5,46.5 + parent: 2 + - uid: 9021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,69.5 + parent: 2 + - uid: 9022 + components: + - type: Transform + pos: 1.5,72.5 + parent: 2 + - uid: 9023 + components: + - type: Transform + pos: -2.5,85.5 + parent: 2 + - uid: 9026 + components: + - type: Transform + pos: -12.5,-55.5 + parent: 2 + - uid: 9027 + components: + - type: Transform + pos: -23.5,-54.5 + parent: 2 +- proto: ComputerId + entities: + - uid: 9028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-23.5 + parent: 2 + - uid: 9029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,6.5 + parent: 2 + - uid: 9030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,40.5 + parent: 2 + - uid: 9031 + components: + - type: Transform + pos: -7.5,53.5 + parent: 2 + - uid: 9032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,46.5 + parent: 2 + - uid: 9033 + components: + - type: Transform + pos: 1.5,62.5 + parent: 2 + - uid: 9034 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 2 + - uid: 9035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-55.5 + parent: 2 +- proto: ComputerMassMedia + entities: + - uid: 9036 + components: + - type: Transform + pos: 19.5,21.5 + parent: 2 +- proto: ComputerMassMediaCircuitboard + entities: + - uid: 9037 + components: + - type: Transform + pos: -2.5972466,-35.5244 + parent: 2 +- proto: ComputerMedicalRecords + entities: + - uid: 9038 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 2 + - uid: 9039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,39.5 + parent: 2 + - uid: 9040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,39.5 + parent: 2 + - uid: 9041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,19.5 + parent: 2 + - uid: 9042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,59.5 + parent: 2 + - uid: 9043 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 +- proto: ComputerPalletConsole + entities: + - uid: 9044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,58.5 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 9045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,61.5 + parent: 2 + - uid: 9046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-47.5 + parent: 2 + - uid: 9047 + components: + - type: Transform + pos: 11.5,-53.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 9048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-20.5 + parent: 2 + - uid: 9049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,25.5 + parent: 2 + - uid: 9050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,61.5 + parent: 2 + - uid: 9051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-63.5 + parent: 2 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 9052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-26.5 + parent: 2 + - uid: 9053 + components: + - type: Transform + pos: -25.5,-33.5 + parent: 2 + - uid: 9054 + components: + - type: Transform + pos: -21.5,-16.5 + parent: 2 + - uid: 9055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-23.5 + parent: 2 + - uid: 9056 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 2 +- proto: ComputerSalvageExpedition + entities: + - uid: 9057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,5.5 + parent: 2 + - uid: 9058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-13.5 + parent: 2 + - uid: 9059 + components: + - type: Transform + pos: 4.5,61.5 + parent: 2 +- proto: ComputerShuttleCargo + entities: + - uid: 9060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 2 +- proto: ComputerShuttleSalvage + entities: + - uid: 9061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-13.5 + parent: 2 +- proto: ComputerSolarControl + entities: + - uid: 9062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-54.5 + parent: 2 + - uid: 9063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-54.5 + parent: 2 + - uid: 9064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,60.5 + parent: 2 + - uid: 9065 + components: + - type: Transform + pos: -54.5,32.5 + parent: 2 + - uid: 9066 + components: + - type: Transform + pos: 10.5,-53.5 + parent: 2 + - uid: 9067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-48.5 + parent: 2 + - uid: 9068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-63.5 + parent: 2 + - uid: 9069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-59.5 + parent: 2 + - uid: 9070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,21.5 + parent: 2 +- proto: ComputerStationRecords + entities: + - uid: 9071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-3.5 + parent: 2 + - uid: 9072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,20.5 + parent: 2 + - uid: 9073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,35.5 + parent: 2 + - uid: 9074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,39.5 + parent: 2 + - uid: 9075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,59.5 + parent: 2 + - uid: 9076 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 9077 + components: + - type: Transform + pos: 46.5,-16.5 + parent: 2 + - uid: 9078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,21.5 + parent: 2 + - uid: 9079 + components: + - type: Transform + pos: -7.5,34.5 + parent: 2 + - uid: 9080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,36.5 + parent: 2 + - uid: 9081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,40.5 + parent: 2 + - uid: 9082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,40.5 + parent: 2 + - uid: 9083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,24.5 + parent: 2 + - uid: 9084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,58.5 + parent: 2 + - uid: 9085 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 2 + - uid: 9086 + components: + - type: Transform + pos: 3.5,-48.5 + parent: 2 + - uid: 9087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-2.5 + parent: 2 + - uid: 9088 + components: + - type: Transform + pos: 6.5,35.5 + parent: 2 + - uid: 9089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-35.5 + parent: 2 +- proto: ComputerTelevision + entities: + - uid: 9090 + components: + - type: Transform + pos: 11.5,25.5 + parent: 2 + - uid: 9091 + components: + - type: Transform + pos: -5.5,52.5 + parent: 2 + - uid: 9092 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 9093 + components: + - type: Transform + pos: -42.5,35.5 + parent: 2 +- proto: ContainmentFieldGenerator + entities: + - uid: 9094 + components: + - type: Transform + pos: 13.5,-58.5 + parent: 2 + - uid: 9095 + components: + - type: Transform + pos: 13.5,-59.5 + parent: 2 + - uid: 9096 + components: + - type: Transform + pos: 12.5,-58.5 + parent: 2 + - uid: 9097 + components: + - type: Transform + pos: 12.5,-59.5 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 9098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19984 + - uid: 9099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19984 + - uid: 9100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19984 + - uid: 9101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19984 + - uid: 9102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19984 + - uid: 9103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,11.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19979 + - uid: 9104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19979 + - uid: 9105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19979 + - uid: 9106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19979 + - uid: 9107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19979 + - uid: 9108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19979 + - uid: 9109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19979 + - uid: 9110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19979 + - uid: 9111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19979 + - uid: 9112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19979 + - uid: 9113 + components: + - type: Transform + pos: -44.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19979 + - uid: 9114 + components: + - type: Transform + pos: -44.5,11.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19979 + - uid: 9115 + components: + - type: Transform + pos: -44.5,10.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19979 + - uid: 9116 + components: + - type: Transform + pos: -44.5,9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19979 + - uid: 9117 + components: + - type: Transform + pos: -44.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19979 + - uid: 9118 + components: + - type: Transform + pos: -44.5,7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19979 + - uid: 9119 + components: + - type: Transform + pos: -44.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19979 + - uid: 9120 + components: + - type: Transform + pos: -44.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19979 + - uid: 9121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19977 + - uid: 9122 + components: + - type: Transform + pos: -44.5,-2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19977 + - uid: 9123 + components: + - type: Transform + pos: -44.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19977 + - uid: 9124 + components: + - type: Transform + pos: -44.5,-4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19977 + - uid: 9125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19977 + - uid: 9126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19977 + - uid: 9127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19977 + - uid: 9128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19977 + - uid: 9129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19978 + - uid: 9130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19978 + - uid: 9131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19978 + - uid: 9132 + components: + - type: Transform + pos: -44.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19978 + - uid: 9133 + components: + - type: Transform + pos: -44.5,3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19978 + - uid: 9134 + components: + - type: Transform + pos: -44.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19978 + - uid: 9135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19978 + - uid: 9136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19978 + - uid: 9137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,14.5 + parent: 2 + - uid: 9138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,14.5 + parent: 2 + - uid: 9139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,15.5 + parent: 2 + - type: ApcPowerReceiver + needsPower: False + - uid: 9140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,16.5 + parent: 2 + - uid: 9141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,17.5 + parent: 2 + - uid: 9142 + components: + - type: Transform + pos: -38.5,17.5 + parent: 2 + - uid: 9143 + components: + - type: Transform + pos: -38.5,16.5 + parent: 2 + - uid: 9144 + components: + - type: Transform + pos: -38.5,15.5 + parent: 2 + - uid: 9145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19980 + - uid: 9146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19980 + - uid: 9147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19980 + - uid: 9148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19980 + - uid: 9149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19980 + - uid: 9150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19980 + - uid: 9151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19980 + - uid: 9152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19980 + - uid: 9153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19980 + - uid: 9154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19980 + - uid: 9155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19980 + - uid: 9156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19980 + - uid: 9157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,47.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19983 + - uid: 9158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,46.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19983 + - uid: 9159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19984 +- proto: CrateArtifactContainer + entities: + - uid: 9160 + components: + - type: Transform + pos: -20.5,-31.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9161 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateChemistrySecure + entities: + - uid: 8628 + components: + - type: Transform + pos: 44.5,-30.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8629 + - 8630 + - 8631 + - 8632 + - 8633 + - 8634 + - 8635 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateCoffin + entities: + - uid: 9162 + components: + - type: Transform + pos: 20.5,40.5 + parent: 2 + - uid: 9163 + components: + - type: Transform + pos: 13.5,40.5 + parent: 2 + - uid: 9164 + components: + - type: Transform + pos: 13.5,39.5 + parent: 2 + - uid: 9165 + components: + - type: Transform + pos: 13.5,38.5 + parent: 2 + - uid: 9166 + components: + - type: Transform + pos: 23.5,42.5 + parent: 2 + - uid: 9167 + components: + - type: Transform + pos: 23.5,43.5 + parent: 2 + - uid: 9168 + components: + - type: Transform + pos: 23.5,44.5 + parent: 2 +- proto: CrateCommandSecure + entities: + - uid: 9169 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 2 + - uid: 9170 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateEmergencyRadiation + entities: + - uid: 9174 + components: + - type: Transform + pos: -19.5,-46.5 + parent: 2 +- proto: CrateEngineeringCableBulk + entities: + - uid: 9175 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - uid: 9176 + components: + - type: Transform + pos: -34.5,-56.5 + parent: 2 + - uid: 9177 + components: + - type: Transform + pos: 10.5,-60.5 + parent: 2 + - uid: 9178 + components: + - type: Transform + pos: -2.5,47.5 + parent: 2 + - uid: 9179 + components: + - type: Transform + pos: -22.5,-56.5 + parent: 2 +- proto: CrateEngineeringCableLV + entities: + - uid: 9180 + components: + - type: Transform + pos: -29.5,17.5 + parent: 2 +- proto: CrateEvaKit + entities: + - uid: 611 + components: + - type: Transform + pos: 6.5,44.5 + parent: 2 + - uid: 9181 + components: + - type: Transform + pos: -35.5,15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateFilledSpawner + entities: + - uid: 9183 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - uid: 9184 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 2 + - uid: 9185 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 2 + - uid: 9186 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 2 + - uid: 9187 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 2 + - uid: 9188 + components: + - type: Transform + pos: -27.5,10.5 + parent: 2 + - uid: 9189 + components: + - type: Transform + pos: -30.5,11.5 + parent: 2 + - uid: 9190 + components: + - type: Transform + pos: -26.5,13.5 + parent: 2 + - uid: 9191 + components: + - type: Transform + pos: -28.5,13.5 + parent: 2 + - uid: 9192 + components: + - type: Transform + pos: -29.5,13.5 + parent: 2 + - uid: 9193 + components: + - type: Transform + pos: -35.5,12.5 + parent: 2 + - uid: 9194 + components: + - type: Transform + pos: -37.5,12.5 + parent: 2 + - uid: 9195 + components: + - type: Transform + pos: -38.5,12.5 + parent: 2 + - uid: 9196 + components: + - type: Transform + pos: -40.5,9.5 + parent: 2 + - uid: 9197 + components: + - type: Transform + pos: -41.5,7.5 + parent: 2 + - uid: 9198 + components: + - type: Transform + pos: -36.5,3.5 + parent: 2 + - uid: 9199 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 9200 + components: + - type: Transform + pos: -38.5,2.5 + parent: 2 + - uid: 9201 + components: + - type: Transform + pos: -39.5,2.5 + parent: 2 + - uid: 9202 + components: + - type: Transform + pos: -41.5,1.5 + parent: 2 + - uid: 9203 + components: + - type: Transform + pos: -38.5,1.5 + parent: 2 + - uid: 9204 + components: + - type: Transform + pos: -39.5,-3.5 + parent: 2 + - uid: 9205 + components: + - type: Transform + pos: -38.5,-3.5 + parent: 2 + - uid: 9206 + components: + - type: Transform + pos: -38.5,-2.5 + parent: 2 + - uid: 9207 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 2 + - uid: 9208 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 2 + - uid: 9209 + components: + - type: Transform + pos: -40.5,-2.5 + parent: 2 +- proto: CrateFoodBarSupply + entities: + - uid: 9210 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 +- proto: CrateFoodPizza + entities: + - uid: 9211 + components: + - type: Transform + pos: 21.5,21.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateFreezer + entities: + - uid: 9212 + components: + - type: Transform + pos: -26.5,11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateGenericSteel + entities: + - uid: 9214 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 2 +- proto: CrateHydroponicsSeedsMedicinal + entities: + - uid: 9215 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 +- proto: CrateHydroponicsTools + entities: + - uid: 9216 + components: + - type: Transform + pos: 38.5,19.5 + parent: 2 +- proto: CrateMaterialCardboard + entities: + - uid: 9217 + components: + - type: Transform + pos: -30.5,-54.5 + parent: 2 +- proto: CrateMedicalScrubs + entities: + - uid: 9218 + components: + - type: Transform + pos: -28.5,11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9219 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 2 +- proto: CrateMedicalSecure + entities: + - uid: 8823 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8828 + - 8824 + - 8827 + - 8825 + - 8826 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateMedicalSupplies + entities: + - uid: 9220 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateMedicalSurgery + entities: + - uid: 9221 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 9222 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 9223 + components: + - type: Transform + pos: -16.5,-17.5 + parent: 2 +- proto: CrateNPCCow + entities: + - uid: 9224 + components: + - type: Transform + pos: 24.5,17.5 + parent: 2 +- proto: CrateNPCHamlet + entities: + - uid: 9225 + components: + - type: Transform + pos: 4.5,58.5 + parent: 2 +- proto: CrateServiceBooks + entities: + - uid: 9226 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9227 + components: + - type: Transform + pos: -41.5,37.5 + parent: 2 +- proto: CrateServiceCustomSmokable + entities: + - uid: 9228 + components: + - type: Transform + pos: -23.5,-68.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 9229 + components: + - type: Transform + pos: -5.5,30.5 + parent: 2 +- proto: CrateServicePersonnel + entities: + - uid: 9230 + components: + - type: Transform + pos: -31.5,15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateTrashCart + entities: + - uid: 9231 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 2 + - uid: 9232 + components: + - type: Transform + pos: -24.5,-9.5 + parent: 2 + - uid: 9233 + components: + - type: Transform + pos: -11.5,46.5 + parent: 2 + - uid: 9234 + components: + - type: Transform + pos: 14.5,25.5 + parent: 2 + - uid: 9235 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 2 + - uid: 9236 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 2 + - uid: 9237 + components: + - type: Transform + pos: -45.5,-27.5 + parent: 2 +- proto: CrateTrashCartFilled + entities: + - uid: 9238 + components: + - type: Transform + pos: -43.5,15.5 + parent: 2 + - uid: 9239 + components: + - type: Transform + pos: -10.5,-53.5 + parent: 2 +- proto: CrateTrashCartJani + entities: + - uid: 9240 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 +- proto: CrayonBox + entities: + - uid: 9241 + components: + - type: Transform + pos: -34.673954,-62.17356 + parent: 2 + - uid: 9242 + components: + - type: Transform + pos: -34.48533,-62.32021 + parent: 2 + - uid: 9243 + components: + - type: Transform + pos: -34.317665,-62.529705 + parent: 2 + - uid: 9244 + components: + - type: Transform + pos: 19.53846,4.6073794 + parent: 2 + - uid: 9245 + components: + - type: Transform + pos: 40.346092,13.153667 + parent: 2 + - uid: 9246 + components: + - type: Transform + pos: 38.428013,4.4356456 + parent: 2 + - uid: 9247 + components: + - type: Transform + pos: 38.574867,4.603478 + parent: 2 +- proto: CrayonMime + entities: + - uid: 10515 + components: + - type: Transform + parent: 10501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: Crematorium + entities: + - uid: 9248 + components: + - type: Transform + pos: 13.5,36.5 + parent: 2 +- proto: CrewMonitoringServer + entities: + - uid: 9249 + components: + - type: Transform + pos: -32.5,17.5 + parent: 2 + - type: SingletonDeviceNetServer + active: False + available: False +- proto: CriminalRecordsComputerCircuitboard + entities: + - uid: 9250 + components: + - type: Transform + pos: -23.487724,18.538704 + parent: 2 +- proto: Crowbar + entities: + - uid: 9251 + components: + - type: Transform + pos: -12.749992,6.618308 + parent: 2 + - uid: 9252 + components: + - type: Transform + pos: 4.602319,14.763411 + parent: 2 + - uid: 9253 + components: + - type: Transform + pos: -37.25477,-50.84965 + parent: 2 + - uid: 9254 + components: + - type: Transform + pos: 43.58695,-18.320988 + parent: 2 + - uid: 9255 + components: + - type: Transform + pos: -6.076641,80.40069 + parent: 2 + - uid: 9256 + components: + - type: Transform + pos: 28.705112,-32.456554 + parent: 2 + - uid: 9257 + components: + - type: Transform + pos: -7.427861,-66.10646 + parent: 2 +- proto: CrowbarRed + entities: + - uid: 9258 + components: + - type: Transform + pos: -22.532516,-13.756351 + parent: 2 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 9260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,22.5 + parent: 2 + - uid: 9261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,24.5 + parent: 2 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 9259 + components: + - type: Transform + pos: 34.5,22.5 + parent: 2 + - uid: 9262 + components: + - type: Transform + pos: 34.5,24.5 + parent: 2 +- proto: CryoPod + entities: + - uid: 9263 + components: + - type: Transform + pos: 25.5,-27.5 + parent: 2 + - uid: 9264 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 2 +- proto: CryoPodMachineCircuitboard + entities: + - uid: 9265 + components: + - type: Transform + pos: -4.484352,-36.451756 + parent: 2 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 9266 + components: + - type: Transform + pos: 28.510334,-31.289518 + parent: 2 + - uid: 9267 + components: + - type: Transform + pos: 28.715462,-31.186954 + parent: 2 +- proto: CultAltarSpawner + entities: + - uid: 9268 + components: + - type: Transform + pos: 13.5,33.5 + parent: 2 +- proto: DefaultStationBeaconAICore + entities: + - uid: 9269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,77.5 + parent: 2 +- proto: DefaultStationBeaconAISatellite + entities: + - uid: 9270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,71.5 + parent: 2 +- proto: DefaultStationBeaconAME + entities: + - uid: 9271 + components: + - type: Transform + pos: -3.5,-58.5 + parent: 2 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 9272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-33.5 + parent: 2 +- proto: DefaultStationBeaconArmory + entities: + - uid: 9273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,39.5 + parent: 2 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 9274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,38.5 + parent: 2 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 9275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-31.5 + parent: 2 + - uid: 9276 + components: + - type: Transform + pos: -35.5,-49.5 + parent: 2 + - type: NavMapBeacon + text: Toxins Lab +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 9277 + components: + - type: Transform + pos: 27.5,-58.5 + parent: 2 +- proto: DefaultStationBeaconBar + entities: + - uid: 9278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,9.5 + parent: 2 +- proto: DefaultStationBeaconBotany + entities: + - uid: 9279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,16.5 + parent: 2 +- proto: DefaultStationBeaconBridge + entities: + - uid: 9280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,59.5 + parent: 2 +- proto: DefaultStationBeaconBrig + entities: + - uid: 9281 + components: + - type: Transform + pos: -7.5,28.5 + parent: 2 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 9282 + components: + - type: Transform + pos: -5.5,54.5 + parent: 2 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 9283 + components: + - type: Transform + pos: -39.5,-0.5 + parent: 2 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 9284 + components: + - type: Transform + pos: -39.5,8.5 + parent: 2 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 9285 + components: + - type: Transform + pos: 13.5,-52.5 + parent: 2 +- proto: DefaultStationBeaconChapel + entities: + - uid: 9286 + components: + - type: Transform + pos: 20.5,31.5 + parent: 2 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 9287 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 2 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 9288 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 2 +- proto: DefaultStationBeaconCommand + entities: + - uid: 9289 + components: + - type: Transform + pos: 8.5,54.5 + parent: 2 +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 9290 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 9291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,23.5 + parent: 2 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 9292 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 9293 + components: + - type: Transform + pos: -42.5,15.5 + parent: 2 +- proto: DefaultStationBeaconDorms + entities: + - uid: 9294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,39.5 + parent: 2 + - uid: 9295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,36.5 + parent: 2 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 9296 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 9297 + components: + - type: Transform + pos: 29.5,41.5 + parent: 2 +- proto: DefaultStationBeaconEvac + entities: + - uid: 9298 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 2 +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 9299 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 2 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 9300 + components: + - type: Transform + pos: 6.5,31.5 + parent: 2 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 9301 + components: + - type: Transform + pos: 7.5,48.5 + parent: 2 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 9302 + components: + - type: Transform + pos: -23.5,44.5 + parent: 2 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 9303 + components: + - type: Transform + pos: 9.5,13.5 + parent: 2 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 9304 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 9305 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 9306 + components: + - type: Transform + pos: 40.5,7.5 + parent: 2 +- proto: DefaultStationBeaconMantis + entities: + - uid: 9307 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 2 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 9308 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 2 +- proto: DefaultStationBeaconMedical + entities: + - uid: 9309 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 2 + - uid: 9310 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 2 + - type: NavMapBeacon + text: Cloaning + - uid: 9311 + components: + - type: Transform + pos: 40.5,-29.5 + parent: 2 + - type: NavMapBeacon + text: Virology +- proto: DefaultStationBeaconMorgue + entities: + - uid: 9312 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 2 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 9313 + components: + - type: Transform + pos: -39.5,34.5 + parent: 2 +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 9314 + components: + - type: Transform + pos: -18.5,-57.5 + parent: 2 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 9315 + components: + - type: Transform + pos: -29.5,6.5 + parent: 2 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 9316 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 2 +- proto: DefaultStationBeaconRND + entities: + - uid: 9317 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 2 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 9318 + components: + - type: Transform + pos: -22.5,-21.5 + parent: 2 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 9319 + components: + - type: Transform + pos: -39.5,-10.5 + parent: 2 +- proto: DefaultStationBeaconScience + entities: + - uid: 9320 + components: + - type: Transform + pos: -13.5,-27.5 + parent: 2 + - uid: 9321 + components: + - type: Transform + pos: -11.5,-42.5 + parent: 2 + - type: NavMapBeacon + text: Xenobiologia +- proto: DefaultStationBeaconSecurity + entities: + - uid: 9322 + components: + - type: Transform + pos: -15.5,28.5 + parent: 2 +- proto: DefaultStationBeaconSecurityCheckpoint + entities: + - uid: 9323 + components: + - type: Transform + pos: -29.5,-34.5 + parent: 2 + - uid: 9324 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 2 + - uid: 9325 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 9326 + components: + - type: Transform + pos: 44.5,-16.5 + parent: 2 +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 9327 + components: + - type: Transform + pos: -24.5,-37.5 + parent: 2 +- proto: DefaultStationBeaconService + entities: + - uid: 9328 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 +- proto: DefaultStationBeaconSolars + entities: + - uid: 9329 + components: + - type: Transform + pos: 50.5,23.5 + parent: 2 + - uid: 9330 + components: + - type: Transform + pos: 40.5,-57.5 + parent: 2 + - uid: 9331 + components: + - type: Transform + pos: -38.5,-56.5 + parent: 2 +- proto: DefaultStationBeaconSupply + entities: + - uid: 9332 + components: + - type: Transform + pos: -33.5,1.5 + parent: 2 +- proto: DefaultStationBeaconSurgery + entities: + - uid: 9333 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 +- proto: DefaultStationBeaconTechVault + entities: + - uid: 9334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-38.5 + parent: 2 +- proto: DefaultStationBeaconTEG + entities: + - uid: 9335 + components: + - type: Transform + pos: 15.5,-44.5 + parent: 2 +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 9336 + components: + - type: Transform + pos: 6.5,40.5 + parent: 2 +- proto: DefaultStationBeaconTheater + entities: + - uid: 9337 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 9338 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 +- proto: DefaultStationBeaconVault + entities: + - uid: 9339 + components: + - type: Transform + pos: -33.5,16.5 + parent: 2 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 9340 + components: + - type: Transform + pos: -15.5,34.5 + parent: 2 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 9341 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 2 + - uid: 9342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-21.5 + parent: 2 +- proto: DeployableBarrier + entities: + - uid: 9343 + components: + - type: Transform + pos: -21.5,16.5 + parent: 2 +- proto: DeskBell + entities: + - uid: 9344 + components: + - type: Transform + pos: -36.629433,6.548981 + parent: 2 + - uid: 9345 + components: + - type: Transform + pos: -33.687996,-25.481403 + parent: 2 + - uid: 9346 + components: + - type: Transform + pos: -27.754581,-21.629313 + parent: 2 + - uid: 9347 + components: + - type: Transform + pos: 25.481232,9.498274 + parent: 2 + - uid: 9348 + components: + - type: Transform + pos: 18.505909,12.557251 + parent: 2 + - uid: 9349 + components: + - type: Transform + pos: 31.51572,14.840651 + parent: 2 + - uid: 9350 + components: + - type: Transform + pos: -13.363976,32.79391 + parent: 2 + - uid: 9351 + components: + - type: Transform + pos: 5.647772,47.62751 + parent: 2 + - uid: 9352 + components: + - type: Transform + pos: 39.174866,-26.494263 + parent: 2 + - uid: 9353 + components: + - type: Transform + pos: 9.549082,-20.438734 + parent: 2 + - uid: 9354 + components: + - type: Transform + pos: 0.5337652,-43.377193 + parent: 2 + - uid: 9355 + components: + - type: Transform + pos: -6.2765236,36.841625 + parent: 2 +- proto: DiagnoserMachineCircuitboard + entities: + - uid: 8634 + components: + - type: Transform + parent: 8628 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DiceBag + entities: + - uid: 9356 + components: + - type: Transform + pos: 18.400833,9.654333 + parent: 2 + - uid: 9357 + components: + - type: Transform + pos: -38.71317,34.88084 + parent: 2 + - uid: 9358 + components: + - type: Transform + pos: -38.50804,34.731655 + parent: 2 + - uid: 9359 + components: + - type: Transform + pos: -38.327778,34.588688 + parent: 2 +- proto: DiseaseDiagnoser + entities: + - uid: 9360 + components: + - type: Transform + pos: 47.5,-32.5 + parent: 2 +- proto: DisposalBend + entities: + - uid: 9361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,45.5 + parent: 2 + - uid: 9362 + components: + - type: Transform + pos: 2.5,47.5 + parent: 2 + - uid: 9363 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - uid: 9364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,10.5 + parent: 2 + - uid: 9365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,6.5 + parent: 2 + - uid: 9366 + components: + - type: Transform + pos: -40.5,14.5 + parent: 2 + - uid: 9367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,14.5 + parent: 2 + - uid: 9368 + components: + - type: Transform + pos: -30.5,6.5 + parent: 2 + - uid: 9369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-3.5 + parent: 2 + - uid: 9370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-2.5 + parent: 2 + - uid: 9371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-3.5 + parent: 2 + - uid: 9372 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 2 + - uid: 9373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-0.5 + parent: 2 + - uid: 9374 + components: + - type: Transform + pos: -28.5,-29.5 + parent: 2 + - uid: 9375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-29.5 + parent: 2 + - uid: 9376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-22.5 + parent: 2 + - uid: 9377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-8.5 + parent: 2 + - uid: 9378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-18.5 + parent: 2 + - uid: 9379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-22.5 + parent: 2 + - uid: 9380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-27.5 + parent: 2 + - uid: 9381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-33.5 + parent: 2 + - uid: 9382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-30.5 + parent: 2 + - uid: 9383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-20.5 + parent: 2 + - uid: 9384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-20.5 + parent: 2 + - uid: 9385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-21.5 + parent: 2 + - uid: 9386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-52.5 + parent: 2 + - uid: 9387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-31.5 + parent: 2 + - uid: 9388 + components: + - type: Transform + pos: -45.5,-29.5 + parent: 2 + - uid: 9389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-36.5 + parent: 2 + - uid: 9390 + components: + - type: Transform + pos: -42.5,-36.5 + parent: 2 + - uid: 9391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-39.5 + parent: 2 + - uid: 9392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-43.5 + parent: 2 + - uid: 9393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-31.5 + parent: 2 + - uid: 9394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-31.5 + parent: 2 + - uid: 9395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 2 + - uid: 9396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-32.5 + parent: 2 + - uid: 9397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-36.5 + parent: 2 + - uid: 9398 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 2 + - uid: 9399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-30.5 + parent: 2 + - uid: 9400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-21.5 + parent: 2 + - uid: 9401 + components: + - type: Transform + pos: 40.5,-24.5 + parent: 2 + - uid: 9402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-32.5 + parent: 2 + - uid: 9403 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 9404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 2 + - uid: 9405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-9.5 + parent: 2 + - uid: 9406 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 9407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 2 + - uid: 9408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 2 + - uid: 9409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-8.5 + parent: 2 + - uid: 9410 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - uid: 9411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,4.5 + parent: 2 + - uid: 9412 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 9413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 2 + - uid: 9414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 2 + - uid: 9415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 2 + - uid: 9416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,17.5 + parent: 2 + - uid: 9417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 2 + - uid: 9418 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - uid: 9419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,26.5 + parent: 2 + - uid: 9420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,28.5 + parent: 2 + - uid: 9421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,19.5 + parent: 2 + - uid: 9422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,31.5 + parent: 2 + - uid: 9423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,35.5 + parent: 2 + - uid: 9424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,38.5 + parent: 2 + - uid: 9425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,29.5 + parent: 2 + - uid: 9426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,29.5 + parent: 2 + - uid: 9427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,20.5 + parent: 2 + - uid: 9428 + components: + - type: Transform + pos: -24.5,20.5 + parent: 2 + - uid: 9429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,16.5 + parent: 2 + - uid: 9430 + components: + - type: Transform + pos: -20.5,16.5 + parent: 2 + - uid: 9431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,11.5 + parent: 2 + - uid: 9432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,11.5 + parent: 2 + - uid: 9433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,29.5 + parent: 2 + - uid: 9434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,29.5 + parent: 2 + - uid: 9435 + components: + - type: Transform + pos: 9.5,47.5 + parent: 2 + - uid: 9436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,42.5 + parent: 2 + - uid: 9437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,39.5 + parent: 2 + - uid: 9438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,53.5 + parent: 2 + - uid: 9439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,50.5 + parent: 2 + - uid: 9440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,50.5 + parent: 2 + - uid: 9441 + components: + - type: Transform + pos: -6.5,45.5 + parent: 2 + - uid: 9442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,42.5 + parent: 2 + - uid: 9443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,59.5 + parent: 2 + - uid: 9444 + components: + - type: Transform + pos: -0.5,59.5 + parent: 2 + - uid: 9445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,47.5 + parent: 2 + - uid: 9446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,55.5 + parent: 2 + - uid: 9447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,55.5 + parent: 2 + - uid: 9448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,52.5 + parent: 2 + - uid: 9449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,39.5 + parent: 2 + - uid: 9450 + components: + - type: Transform + pos: 20.5,39.5 + parent: 2 + - uid: 9451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,31.5 + parent: 2 + - uid: 9452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,39.5 + parent: 2 + - uid: 9453 + components: + - type: Transform + pos: 43.5,39.5 + parent: 2 + - uid: 9454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,38.5 + parent: 2 + - uid: 9455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,29.5 + parent: 2 + - uid: 9456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,10.5 + parent: 2 + - uid: 9457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,18.5 + parent: 2 + - uid: 9458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,18.5 + parent: 2 + - uid: 9459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,23.5 + parent: 2 + - uid: 9460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,23.5 + parent: 2 + - uid: 9461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,26.5 + parent: 2 + - uid: 9462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,21.5 + parent: 2 + - uid: 9463 + components: + - type: Transform + pos: 32.5,16.5 + parent: 2 + - uid: 9464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,1.5 + parent: 2 + - uid: 9465 + components: + - type: Transform + pos: 39.5,7.5 + parent: 2 + - uid: 9466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-0.5 + parent: 2 + - uid: 9467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-55.5 + parent: 2 + - uid: 9468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-53.5 + parent: 2 + - uid: 9469 + components: + - type: Transform + pos: 10.5,-52.5 + parent: 2 + - uid: 9470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-55.5 + parent: 2 + - uid: 9471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-45.5 + parent: 2 + - uid: 9472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-40.5 + parent: 2 + - uid: 9473 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 2 + - uid: 9474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-41.5 + parent: 2 + - uid: 9475 + components: + - type: Transform + pos: 30.5,-40.5 + parent: 2 + - uid: 9476 + components: + - type: Transform + pos: -15.5,-51.5 + parent: 2 + - uid: 9477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-51.5 + parent: 2 + - uid: 9478 + components: + - type: Transform + pos: -21.5,-43.5 + parent: 2 + - uid: 9479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-43.5 + parent: 2 + - uid: 9480 + components: + - type: Transform + pos: -32.5,-42.5 + parent: 2 + - uid: 9481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-37.5 + parent: 2 + - uid: 9482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-37.5 + parent: 2 + - uid: 9483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-34.5 + parent: 2 + - uid: 9484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,46.5 + parent: 2 + - uid: 9485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,47.5 + parent: 2 + - uid: 9486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,46.5 + parent: 2 + - uid: 22681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,11.5 + parent: 2 + - uid: 24253 + components: + - type: Transform + pos: 37.5,6.5 + parent: 2 +- proto: DisposalJunction + entities: + - uid: 9487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-27.5 + parent: 2 + - uid: 9488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-42.5 + parent: 2 + - uid: 9489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,6.5 + parent: 2 + - uid: 9490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,0.5 + parent: 2 + - uid: 9491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-30.5 + parent: 2 + - uid: 9492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-7.5 + parent: 2 + - uid: 9493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-27.5 + parent: 2 + - uid: 9494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,7.5 + parent: 2 + - uid: 9495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-27.5 + parent: 2 + - uid: 9496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-24.5 + parent: 2 + - uid: 9497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-24.5 + parent: 2 + - uid: 9498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-24.5 + parent: 2 + - uid: 9499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-24.5 + parent: 2 + - uid: 9500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-24.5 + parent: 2 + - uid: 9501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 2 + - uid: 9502 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 9503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 2 + - uid: 9504 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - uid: 9505 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 9506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,19.5 + parent: 2 + - uid: 9507 + components: + - type: Transform + pos: 0.5,19.5 + parent: 2 + - uid: 9508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,28.5 + parent: 2 + - uid: 9509 + components: + - type: Transform + pos: -23.5,35.5 + parent: 2 + - uid: 9510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,10.5 + parent: 2 + - uid: 9511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,28.5 + parent: 2 + - uid: 9512 + components: + - type: Transform + pos: -2.5,39.5 + parent: 2 + - uid: 9513 + components: + - type: Transform + pos: 29.5,31.5 + parent: 2 + - uid: 9514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,12.5 + parent: 2 + - uid: 9515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,16.5 + parent: 2 + - uid: 9516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,7.5 + parent: 2 + - uid: 9517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-52.5 + parent: 2 +- proto: DisposalJunctionFlipped + entities: + - uid: 8987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 2 + - uid: 9518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-8.5 + parent: 2 + - uid: 9519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,6.5 + parent: 2 + - uid: 9520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,6.5 + parent: 2 + - uid: 9521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-31.5 + parent: 2 + - uid: 9522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-22.5 + parent: 2 + - uid: 9523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-27.5 + parent: 2 + - uid: 9524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-43.5 + parent: 2 + - uid: 9525 + components: + - type: Transform + pos: -42.5,-39.5 + parent: 2 + - uid: 9526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-24.5 + parent: 2 + - uid: 9527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-24.5 + parent: 2 + - uid: 9528 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 9529 + components: + - type: Transform + pos: 0.5,21.5 + parent: 2 + - uid: 9530 + components: + - type: Transform + pos: -0.5,52.5 + parent: 2 + - uid: 9531 + components: + - type: Transform + pos: 29.5,38.5 + parent: 2 + - uid: 9532 + components: + - type: Transform + pos: 29.5,29.5 + parent: 2 + - uid: 9533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,18.5 + parent: 2 + - uid: 9534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,26.5 + parent: 2 + - uid: 9535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-45.5 + parent: 2 + - uid: 9536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-40.5 + parent: 2 +- proto: DisposalPipe + entities: + - uid: 276 + components: + - type: Transform + pos: 8.5,10.5 + parent: 2 + - uid: 9537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-37.5 + parent: 2 + - uid: 9538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-40.5 + parent: 2 + - uid: 9539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-43.5 + parent: 2 + - uid: 9540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-46.5 + parent: 2 + - uid: 9541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-49.5 + parent: 2 + - uid: 9542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-33.5 + parent: 2 + - uid: 9543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,62.5 + parent: 2 + - uid: 9544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,63.5 + parent: 2 + - uid: 9545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,64.5 + parent: 2 + - uid: 9546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,65.5 + parent: 2 + - uid: 9547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,66.5 + parent: 2 + - uid: 9548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,67.5 + parent: 2 + - uid: 9549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,68.5 + parent: 2 + - uid: 9550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,62.5 + parent: 2 + - uid: 9551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,63.5 + parent: 2 + - uid: 9552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,64.5 + parent: 2 + - uid: 9553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,65.5 + parent: 2 + - uid: 9554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,66.5 + parent: 2 + - uid: 9555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,67.5 + parent: 2 + - uid: 9556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,68.5 + parent: 2 + - uid: 9557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-31.5 + parent: 2 + - uid: 9558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-31.5 + parent: 2 + - uid: 9559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,10.5 + parent: 2 + - uid: 9560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,10.5 + parent: 2 + - uid: 9561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,10.5 + parent: 2 + - uid: 9562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,10.5 + parent: 2 + - uid: 9563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,10.5 + parent: 2 + - uid: 9564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,10.5 + parent: 2 + - uid: 9565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,10.5 + parent: 2 + - uid: 9566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,10.5 + parent: 2 + - uid: 9567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,6.5 + parent: 2 + - uid: 9568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,9.5 + parent: 2 + - uid: 9569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,8.5 + parent: 2 + - uid: 9570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,7.5 + parent: 2 + - uid: 9571 + components: + - type: Transform + pos: -30.5,5.5 + parent: 2 + - uid: 9572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,6.5 + parent: 2 + - uid: 9573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,6.5 + parent: 2 + - uid: 9574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,7.5 + parent: 2 + - uid: 9575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,8.5 + parent: 2 + - uid: 9576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,9.5 + parent: 2 + - uid: 9577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,10.5 + parent: 2 + - uid: 9578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,11.5 + parent: 2 + - uid: 9579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,12.5 + parent: 2 + - uid: 9580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,13.5 + parent: 2 + - uid: 9581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,14.5 + parent: 2 + - uid: 9582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,14.5 + parent: 2 + - uid: 9583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,14.5 + parent: 2 + - uid: 9584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,15.5 + parent: 2 + - uid: 9585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,6.5 + parent: 2 + - uid: 9586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,6.5 + parent: 2 + - uid: 9587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,6.5 + parent: 2 + - uid: 9588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,0.5 + parent: 2 + - uid: 9589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,1.5 + parent: 2 + - uid: 9590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,2.5 + parent: 2 + - uid: 9591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,3.5 + parent: 2 + - uid: 9592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,4.5 + parent: 2 + - uid: 9593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,5.5 + parent: 2 + - uid: 9594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-6.5 + parent: 2 + - uid: 9595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-5.5 + parent: 2 + - uid: 9596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-4.5 + parent: 2 + - uid: 9597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-3.5 + parent: 2 + - uid: 9598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-2.5 + parent: 2 + - uid: 9599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-1.5 + parent: 2 + - uid: 9600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-0.5 + parent: 2 + - uid: 9601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-2.5 + parent: 2 + - uid: 9602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-2.5 + parent: 2 + - uid: 9603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-2.5 + parent: 2 + - uid: 9604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-3.5 + parent: 2 + - uid: 9605 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 9606 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 2 + - uid: 9607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 2 + - uid: 9608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 2 + - uid: 9609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-0.5 + parent: 2 + - uid: 9610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,0.5 + parent: 2 + - uid: 9611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,1.5 + parent: 2 + - uid: 9612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,2.5 + parent: 2 + - uid: 9613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,3.5 + parent: 2 + - uid: 9614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,4.5 + parent: 2 + - uid: 9615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,5.5 + parent: 2 + - uid: 9616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-28.5 + parent: 2 + - uid: 9617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-27.5 + parent: 2 + - uid: 9618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-26.5 + parent: 2 + - uid: 9619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-25.5 + parent: 2 + - uid: 9620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-24.5 + parent: 2 + - uid: 9621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-23.5 + parent: 2 + - uid: 9622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-22.5 + parent: 2 + - uid: 9623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-22.5 + parent: 2 + - uid: 9624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-22.5 + parent: 2 + - uid: 9625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-22.5 + parent: 2 + - uid: 9626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-22.5 + parent: 2 + - uid: 9627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-22.5 + parent: 2 + - uid: 9628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-22.5 + parent: 2 + - uid: 9629 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 2 + - uid: 9630 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 9631 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 + - uid: 9632 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 2 + - uid: 9633 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 2 + - uid: 9634 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 9635 + components: + - type: Transform + pos: -37.5,-15.5 + parent: 2 + - uid: 9636 + components: + - type: Transform + pos: -37.5,-14.5 + parent: 2 + - uid: 9637 + components: + - type: Transform + pos: -37.5,-13.5 + parent: 2 + - uid: 9638 + components: + - type: Transform + pos: -37.5,-12.5 + parent: 2 + - uid: 9639 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 2 + - uid: 9640 + components: + - type: Transform + pos: -37.5,-10.5 + parent: 2 + - uid: 9641 + components: + - type: Transform + pos: -37.5,-9.5 + parent: 2 + - uid: 9642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-18.5 + parent: 2 + - uid: 9643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-18.5 + parent: 2 + - uid: 9644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-18.5 + parent: 2 + - uid: 9645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-19.5 + parent: 2 + - uid: 9646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-20.5 + parent: 2 + - uid: 9647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-21.5 + parent: 2 + - uid: 9648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-22.5 + parent: 2 + - uid: 9649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-22.5 + parent: 2 + - uid: 9650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-22.5 + parent: 2 + - uid: 9651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-22.5 + parent: 2 + - uid: 9652 + components: + - type: Transform + pos: -21.5,-32.5 + parent: 2 + - uid: 9653 + components: + - type: Transform + pos: -21.5,-31.5 + parent: 2 + - uid: 9654 + components: + - type: Transform + pos: -21.5,-30.5 + parent: 2 + - uid: 9655 + components: + - type: Transform + pos: -21.5,-29.5 + parent: 2 + - uid: 9656 + components: + - type: Transform + pos: -21.5,-28.5 + parent: 2 + - uid: 9657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-27.5 + parent: 2 + - uid: 9658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-27.5 + parent: 2 + - uid: 9659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-27.5 + parent: 2 + - uid: 9660 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 2 + - uid: 9661 + components: + - type: Transform + pos: -25.5,-29.5 + parent: 2 + - uid: 9662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-30.5 + parent: 2 + - uid: 9663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-30.5 + parent: 2 + - uid: 9664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-20.5 + parent: 2 + - uid: 9665 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 2 + - uid: 9666 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 2 + - uid: 9667 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 2 + - uid: 9668 + components: + - type: Transform + pos: -16.5,-24.5 + parent: 2 + - uid: 9669 + components: + - type: Transform + pos: -16.5,-25.5 + parent: 2 + - uid: 9670 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 2 + - uid: 9671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-27.5 + parent: 2 + - uid: 9672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-27.5 + parent: 2 + - uid: 9673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-27.5 + parent: 2 + - uid: 9674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-27.5 + parent: 2 + - uid: 9675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-21.5 + parent: 2 + - uid: 9676 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 2 + - uid: 9677 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - uid: 9678 + components: + - type: Transform + pos: -10.5,-24.5 + parent: 2 + - uid: 9679 + components: + - type: Transform + pos: -10.5,-25.5 + parent: 2 + - uid: 9680 + components: + - type: Transform + pos: -10.5,-26.5 + parent: 2 + - uid: 9681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-27.5 + parent: 2 + - uid: 9682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-27.5 + parent: 2 + - uid: 9683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-27.5 + parent: 2 + - uid: 9684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-27.5 + parent: 2 + - uid: 9685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-27.5 + parent: 2 + - uid: 9686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-52.5 + parent: 2 + - uid: 9687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-52.5 + parent: 2 + - uid: 9688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-52.5 + parent: 2 + - uid: 9689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-52.5 + parent: 2 + - uid: 9690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-52.5 + parent: 2 + - uid: 9691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-51.5 + parent: 2 + - uid: 9692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-50.5 + parent: 2 + - uid: 9693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-49.5 + parent: 2 + - uid: 9694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-48.5 + parent: 2 + - uid: 9695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-47.5 + parent: 2 + - uid: 9696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-46.5 + parent: 2 + - uid: 9697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-45.5 + parent: 2 + - uid: 9698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-44.5 + parent: 2 + - uid: 9699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-41.5 + parent: 2 + - uid: 9700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-40.5 + parent: 2 + - uid: 9701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-39.5 + parent: 2 + - uid: 9702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-38.5 + parent: 2 + - uid: 9703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-37.5 + parent: 2 + - uid: 9704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-36.5 + parent: 2 + - uid: 9705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-35.5 + parent: 2 + - uid: 9706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-34.5 + parent: 2 + - uid: 9707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-33.5 + parent: 2 + - uid: 9708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-32.5 + parent: 2 + - uid: 9709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-31.5 + parent: 2 + - uid: 9710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-31.5 + parent: 2 + - uid: 9711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-31.5 + parent: 2 + - uid: 9712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-31.5 + parent: 2 + - uid: 9713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-29.5 + parent: 2 + - uid: 9714 + components: + - type: Transform + pos: -45.5,-30.5 + parent: 2 + - uid: 9715 + components: + - type: Transform + pos: -45.5,-31.5 + parent: 2 + - uid: 9716 + components: + - type: Transform + pos: -45.5,-32.5 + parent: 2 + - uid: 9717 + components: + - type: Transform + pos: -45.5,-33.5 + parent: 2 + - uid: 9718 + components: + - type: Transform + pos: -45.5,-34.5 + parent: 2 + - uid: 9719 + components: + - type: Transform + pos: -45.5,-35.5 + parent: 2 + - uid: 9720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-36.5 + parent: 2 + - uid: 9721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-36.5 + parent: 2 + - uid: 9722 + components: + - type: Transform + pos: -42.5,-37.5 + parent: 2 + - uid: 9723 + components: + - type: Transform + pos: -42.5,-38.5 + parent: 2 + - uid: 9724 + components: + - type: Transform + pos: -42.5,-40.5 + parent: 2 + - uid: 9725 + components: + - type: Transform + pos: -42.5,-41.5 + parent: 2 + - uid: 9726 + components: + - type: Transform + pos: -42.5,-42.5 + parent: 2 + - uid: 9727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-43.5 + parent: 2 + - uid: 9728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-43.5 + parent: 2 + - uid: 9729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-43.5 + parent: 2 + - uid: 9730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-43.5 + parent: 2 + - uid: 9731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-43.5 + parent: 2 + - uid: 9732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-43.5 + parent: 2 + - uid: 9733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-43.5 + parent: 2 + - uid: 9734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-43.5 + parent: 2 + - uid: 9735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-31.5 + parent: 2 + - uid: 9736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-31.5 + parent: 2 + - uid: 9737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-30.5 + parent: 2 + - uid: 9738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-29.5 + parent: 2 + - uid: 9739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-28.5 + parent: 2 + - uid: 9740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-27.5 + parent: 2 + - uid: 9741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-26.5 + parent: 2 + - uid: 9742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-25.5 + parent: 2 + - uid: 9743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-24.5 + parent: 2 + - uid: 9744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-24.5 + parent: 2 + - uid: 9745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 2 + - uid: 9746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-24.5 + parent: 2 + - uid: 9747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-24.5 + parent: 2 + - uid: 9748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-24.5 + parent: 2 + - uid: 9749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-24.5 + parent: 2 + - uid: 9750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-24.5 + parent: 2 + - uid: 9751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-24.5 + parent: 2 + - uid: 9752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-24.5 + parent: 2 + - uid: 9753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-24.5 + parent: 2 + - uid: 9754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-24.5 + parent: 2 + - uid: 9755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 2 + - uid: 9756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-25.5 + parent: 2 + - uid: 9757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-26.5 + parent: 2 + - uid: 9758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-27.5 + parent: 2 + - uid: 9759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-27.5 + parent: 2 + - uid: 9760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-27.5 + parent: 2 + - uid: 9761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-27.5 + parent: 2 + - uid: 9762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-27.5 + parent: 2 + - uid: 9763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-27.5 + parent: 2 + - uid: 9764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-27.5 + parent: 2 + - uid: 9765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-27.5 + parent: 2 + - uid: 9766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-27.5 + parent: 2 + - uid: 9767 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 2 + - uid: 9768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-24.5 + parent: 2 + - uid: 9769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-33.5 + parent: 2 + - uid: 9770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-34.5 + parent: 2 + - uid: 9771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-35.5 + parent: 2 + - uid: 9772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-36.5 + parent: 2 + - uid: 9773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-36.5 + parent: 2 + - uid: 9774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-19.5 + parent: 2 + - uid: 9775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-19.5 + parent: 2 + - uid: 9776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-20.5 + parent: 2 + - uid: 9777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-21.5 + parent: 2 + - uid: 9778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-22.5 + parent: 2 + - uid: 9779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-23.5 + parent: 2 + - uid: 9780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-24.5 + parent: 2 + - uid: 9781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-24.5 + parent: 2 + - uid: 9782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-24.5 + parent: 2 + - uid: 9783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-24.5 + parent: 2 + - uid: 9784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-24.5 + parent: 2 + - uid: 9785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-24.5 + parent: 2 + - uid: 9786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-24.5 + parent: 2 + - uid: 9787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-24.5 + parent: 2 + - uid: 9788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-24.5 + parent: 2 + - uid: 9789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-30.5 + parent: 2 + - uid: 9790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-30.5 + parent: 2 + - uid: 9791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-30.5 + parent: 2 + - uid: 9792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-29.5 + parent: 2 + - uid: 9793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-28.5 + parent: 2 + - uid: 9794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-27.5 + parent: 2 + - uid: 9795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-26.5 + parent: 2 + - uid: 9796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-25.5 + parent: 2 + - uid: 9797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-21.5 + parent: 2 + - uid: 9798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-21.5 + parent: 2 + - uid: 9799 + components: + - type: Transform + pos: 31.5,-22.5 + parent: 2 + - uid: 9800 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - uid: 9801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-24.5 + parent: 2 + - uid: 9802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-24.5 + parent: 2 + - uid: 9803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-24.5 + parent: 2 + - uid: 9804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-24.5 + parent: 2 + - uid: 9805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-24.5 + parent: 2 + - uid: 9806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-24.5 + parent: 2 + - uid: 9807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-24.5 + parent: 2 + - uid: 9808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-24.5 + parent: 2 + - uid: 9809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-24.5 + parent: 2 + - uid: 9810 + components: + - type: Transform + pos: 39.5,-21.5 + parent: 2 + - uid: 9811 + components: + - type: Transform + pos: 39.5,-22.5 + parent: 2 + - uid: 9812 + components: + - type: Transform + pos: 39.5,-23.5 + parent: 2 + - uid: 9813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-24.5 + parent: 2 + - uid: 9814 + components: + - type: Transform + pos: 40.5,-25.5 + parent: 2 + - uid: 9815 + components: + - type: Transform + pos: 40.5,-26.5 + parent: 2 + - uid: 9816 + components: + - type: Transform + pos: 40.5,-27.5 + parent: 2 + - uid: 9817 + components: + - type: Transform + pos: 40.5,-28.5 + parent: 2 + - uid: 9818 + components: + - type: Transform + pos: 40.5,-29.5 + parent: 2 + - uid: 9819 + components: + - type: Transform + pos: 40.5,-30.5 + parent: 2 + - uid: 9820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-32.5 + parent: 2 + - uid: 9821 + components: + - type: Transform + pos: 40.5,-31.5 + parent: 2 + - uid: 9822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-12.5 + parent: 2 + - uid: 9823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-13.5 + parent: 2 + - uid: 9824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-14.5 + parent: 2 + - uid: 9825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-15.5 + parent: 2 + - uid: 9826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-16.5 + parent: 2 + - uid: 9827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-17.5 + parent: 2 + - uid: 9828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-18.5 + parent: 2 + - uid: 9829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-19.5 + parent: 2 + - uid: 9830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-20.5 + parent: 2 + - uid: 9831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-21.5 + parent: 2 + - uid: 9832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-22.5 + parent: 2 + - uid: 9833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-23.5 + parent: 2 + - uid: 9834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 2 + - uid: 9835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 2 + - uid: 9836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 2 + - uid: 9837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 2 + - uid: 9838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-9.5 + parent: 2 + - uid: 9839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 2 + - uid: 9840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-9.5 + parent: 2 + - uid: 9841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-9.5 + parent: 2 + - uid: 9842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-9.5 + parent: 2 + - uid: 9843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-9.5 + parent: 2 + - uid: 9844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-9.5 + parent: 2 + - uid: 9845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-9.5 + parent: 2 + - uid: 9846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-9.5 + parent: 2 + - uid: 9847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-9.5 + parent: 2 + - uid: 9848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-9.5 + parent: 2 + - uid: 9849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 2 + - uid: 9850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-9.5 + parent: 2 + - uid: 9851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-9.5 + parent: 2 + - uid: 9852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-8.5 + parent: 2 + - uid: 9853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-8.5 + parent: 2 + - uid: 9854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-8.5 + parent: 2 + - uid: 9855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-8.5 + parent: 2 + - uid: 9856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 2 + - uid: 9857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-8.5 + parent: 2 + - uid: 9858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-8.5 + parent: 2 + - uid: 9859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-8.5 + parent: 2 + - uid: 9860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-8.5 + parent: 2 + - uid: 9861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-8.5 + parent: 2 + - uid: 9862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 2 + - uid: 9863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-8.5 + parent: 2 + - uid: 9864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 2 + - uid: 9865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 2 + - uid: 9866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 2 + - uid: 9867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 2 + - uid: 9868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 2 + - uid: 9869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + - uid: 9870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 2 + - uid: 9871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 2 + - uid: 9872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 2 + - uid: 9873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 2 + - uid: 9874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 2 + - uid: 9875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 2 + - uid: 9876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 2 + - uid: 9877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - uid: 9878 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 9879 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 9880 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 2 + - uid: 9881 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 + - uid: 9882 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 + - uid: 9883 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 9884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 2 + - uid: 9885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 2 + - uid: 9886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 2 + - uid: 9887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 2 + - uid: 9888 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 9889 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 9890 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 9891 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 9892 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 9893 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - uid: 9894 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 9895 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 9896 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 9897 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 9898 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 9899 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 9900 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 + - uid: 9901 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 9902 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 9903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 2 + - uid: 9904 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 9905 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 9906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,16.5 + parent: 2 + - uid: 9907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,15.5 + parent: 2 + - uid: 9908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,14.5 + parent: 2 + - uid: 9909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,13.5 + parent: 2 + - uid: 9910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,12.5 + parent: 2 + - uid: 9911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,11.5 + parent: 2 + - uid: 9912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 2 + - uid: 9913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,9.5 + parent: 2 + - uid: 9914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 2 + - uid: 9915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 2 + - uid: 9917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,17.5 + parent: 2 + - uid: 9918 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 9919 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 + - uid: 9920 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - uid: 9921 + components: + - type: Transform + pos: -2.5,12.5 + parent: 2 + - uid: 9922 + components: + - type: Transform + pos: -2.5,11.5 + parent: 2 + - uid: 9923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,10.5 + parent: 2 + - uid: 9924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 2 + - uid: 9925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 2 + - uid: 9926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 2 + - uid: 9927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 2 + - uid: 9928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 2 + - uid: 9929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 2 + - uid: 9930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 2 + - uid: 9931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,19.5 + parent: 2 + - uid: 9932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,19.5 + parent: 2 + - uid: 9933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,18.5 + parent: 2 + - uid: 9934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,17.5 + parent: 2 + - uid: 9935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,16.5 + parent: 2 + - uid: 9936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,15.5 + parent: 2 + - uid: 9937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 2 + - uid: 9938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 2 + - uid: 9939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 2 + - uid: 9940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 2 + - uid: 9941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,26.5 + parent: 2 + - uid: 9942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,26.5 + parent: 2 + - uid: 9943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,26.5 + parent: 2 + - uid: 9944 + components: + - type: Transform + pos: 0.5,25.5 + parent: 2 + - uid: 9945 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - uid: 9946 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 9947 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - uid: 9948 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 + - uid: 9949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,28.5 + parent: 2 + - uid: 9950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,28.5 + parent: 2 + - uid: 9951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,28.5 + parent: 2 + - uid: 9952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,28.5 + parent: 2 + - uid: 9953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,28.5 + parent: 2 + - uid: 9954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,28.5 + parent: 2 + - uid: 9955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,28.5 + parent: 2 + - uid: 9956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,28.5 + parent: 2 + - uid: 9957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,28.5 + parent: 2 + - uid: 9958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,27.5 + parent: 2 + - uid: 9959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,26.5 + parent: 2 + - uid: 9960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,25.5 + parent: 2 + - uid: 9961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,24.5 + parent: 2 + - uid: 9962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,23.5 + parent: 2 + - uid: 9963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,22.5 + parent: 2 + - uid: 9964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,21.5 + parent: 2 + - uid: 9965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,20.5 + parent: 2 + - uid: 9966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,19.5 + parent: 2 + - uid: 9967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,19.5 + parent: 2 + - uid: 9968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,19.5 + parent: 2 + - uid: 9969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,19.5 + parent: 2 + - uid: 9970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,19.5 + parent: 2 + - uid: 9971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,19.5 + parent: 2 + - uid: 9972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,19.5 + parent: 2 + - uid: 9973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,19.5 + parent: 2 + - uid: 9974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,19.5 + parent: 2 + - uid: 9975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,19.5 + parent: 2 + - uid: 9976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,19.5 + parent: 2 + - uid: 9977 + components: + - type: Transform + pos: -12.5,30.5 + parent: 2 + - uid: 9978 + components: + - type: Transform + pos: -12.5,29.5 + parent: 2 + - uid: 9979 + components: + - type: Transform + pos: -26.5,33.5 + parent: 2 + - uid: 9980 + components: + - type: Transform + pos: -26.5,34.5 + parent: 2 + - uid: 9981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,35.5 + parent: 2 + - uid: 9982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,38.5 + parent: 2 + - uid: 9983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,38.5 + parent: 2 + - uid: 9984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,37.5 + parent: 2 + - uid: 9985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,36.5 + parent: 2 + - uid: 9986 + components: + - type: Transform + pos: -23.5,34.5 + parent: 2 + - uid: 9987 + components: + - type: Transform + pos: -23.5,33.5 + parent: 2 + - uid: 9988 + components: + - type: Transform + pos: -23.5,32.5 + parent: 2 + - uid: 9989 + components: + - type: Transform + pos: -23.5,31.5 + parent: 2 + - uid: 9990 + components: + - type: Transform + pos: -23.5,30.5 + parent: 2 + - uid: 9991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,29.5 + parent: 2 + - uid: 9992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,29.5 + parent: 2 + - uid: 9993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,29.5 + parent: 2 + - uid: 9994 + components: + - type: Transform + pos: -27.5,28.5 + parent: 2 + - uid: 9995 + components: + - type: Transform + pos: -27.5,27.5 + parent: 2 + - uid: 9996 + components: + - type: Transform + pos: -27.5,26.5 + parent: 2 + - uid: 9997 + components: + - type: Transform + pos: -27.5,25.5 + parent: 2 + - uid: 9998 + components: + - type: Transform + pos: -27.5,24.5 + parent: 2 + - uid: 9999 + components: + - type: Transform + pos: -27.5,23.5 + parent: 2 + - uid: 10000 + components: + - type: Transform + pos: -27.5,22.5 + parent: 2 + - uid: 10001 + components: + - type: Transform + pos: -27.5,21.5 + parent: 2 + - uid: 10002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,17.5 + parent: 2 + - uid: 10003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,18.5 + parent: 2 + - uid: 10004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,19.5 + parent: 2 + - uid: 10005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,20.5 + parent: 2 + - uid: 10006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,20.5 + parent: 2 + - uid: 10007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,16.5 + parent: 2 + - uid: 10008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,16.5 + parent: 2 + - uid: 10009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,16.5 + parent: 2 + - uid: 10010 + components: + - type: Transform + pos: -20.5,15.5 + parent: 2 + - uid: 10011 + components: + - type: Transform + pos: -20.5,14.5 + parent: 2 + - uid: 10012 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - uid: 10013 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 10014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,11.5 + parent: 2 + - uid: 10015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,11.5 + parent: 2 + - uid: 10016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,11.5 + parent: 2 + - uid: 10017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,11.5 + parent: 2 + - uid: 10018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,11.5 + parent: 2 + - uid: 10019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,11.5 + parent: 2 + - uid: 10020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,11.5 + parent: 2 + - uid: 10021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,11.5 + parent: 2 + - uid: 10022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,11.5 + parent: 2 + - uid: 10023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,11.5 + parent: 2 + - uid: 10024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,11.5 + parent: 2 + - uid: 10025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,11.5 + parent: 2 + - uid: 10026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,11.5 + parent: 2 + - uid: 10027 + components: + - type: Transform + pos: -2.5,38.5 + parent: 2 + - uid: 10028 + components: + - type: Transform + pos: -2.5,37.5 + parent: 2 + - uid: 10029 + components: + - type: Transform + pos: -2.5,36.5 + parent: 2 + - uid: 10030 + components: + - type: Transform + pos: -2.5,35.5 + parent: 2 + - uid: 10031 + components: + - type: Transform + pos: -2.5,34.5 + parent: 2 + - uid: 10032 + components: + - type: Transform + pos: -2.5,33.5 + parent: 2 + - uid: 10033 + components: + - type: Transform + pos: -2.5,32.5 + parent: 2 + - uid: 10034 + components: + - type: Transform + pos: -2.5,31.5 + parent: 2 + - uid: 10035 + components: + - type: Transform + pos: -2.5,30.5 + parent: 2 + - uid: 10036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,43.5 + parent: 2 + - uid: 10037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,44.5 + parent: 2 + - uid: 10038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,45.5 + parent: 2 + - uid: 10039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,46.5 + parent: 2 + - uid: 10040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,47.5 + parent: 2 + - uid: 10041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,46.5 + parent: 2 + - uid: 10042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,47.5 + parent: 2 + - uid: 10043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,47.5 + parent: 2 + - uid: 10044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,47.5 + parent: 2 + - uid: 10045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,47.5 + parent: 2 + - uid: 10046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,42.5 + parent: 2 + - uid: 10047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,42.5 + parent: 2 + - uid: 10048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,42.5 + parent: 2 + - uid: 10049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,42.5 + parent: 2 + - uid: 10050 + components: + - type: Transform + pos: -4.5,41.5 + parent: 2 + - uid: 10051 + components: + - type: Transform + pos: -4.5,40.5 + parent: 2 + - uid: 10052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,39.5 + parent: 2 + - uid: 10053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,53.5 + parent: 2 + - uid: 10054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,52.5 + parent: 2 + - uid: 10055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,51.5 + parent: 2 + - uid: 10056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,50.5 + parent: 2 + - uid: 10057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,50.5 + parent: 2 + - uid: 10058 + components: + - type: Transform + pos: -10.5,49.5 + parent: 2 + - uid: 10059 + components: + - type: Transform + pos: -10.5,48.5 + parent: 2 + - uid: 10060 + components: + - type: Transform + pos: -10.5,47.5 + parent: 2 + - uid: 10061 + components: + - type: Transform + pos: -10.5,46.5 + parent: 2 + - uid: 10062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,45.5 + parent: 2 + - uid: 10063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,45.5 + parent: 2 + - uid: 10064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,45.5 + parent: 2 + - uid: 10065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,44.5 + parent: 2 + - uid: 10066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,43.5 + parent: 2 + - uid: 10067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,42.5 + parent: 2 + - uid: 10068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,59.5 + parent: 2 + - uid: 10069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,58.5 + parent: 2 + - uid: 10070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,57.5 + parent: 2 + - uid: 10071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,56.5 + parent: 2 + - uid: 10072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,55.5 + parent: 2 + - uid: 10073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,54.5 + parent: 2 + - uid: 10074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,53.5 + parent: 2 + - uid: 10075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,51.5 + parent: 2 + - uid: 10076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,50.5 + parent: 2 + - uid: 10077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,49.5 + parent: 2 + - uid: 10078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,48.5 + parent: 2 + - uid: 10079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,55.5 + parent: 2 + - uid: 10080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,55.5 + parent: 2 + - uid: 10081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,55.5 + parent: 2 + - uid: 10082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,53.5 + parent: 2 + - uid: 10083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,54.5 + parent: 2 + - uid: 10084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,52.5 + parent: 2 + - uid: 10085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,52.5 + parent: 2 + - uid: 10086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,52.5 + parent: 2 + - uid: 10087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,52.5 + parent: 2 + - uid: 10088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,39.5 + parent: 2 + - uid: 10089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,39.5 + parent: 2 + - uid: 10090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,38.5 + parent: 2 + - uid: 10091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,37.5 + parent: 2 + - uid: 10092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,36.5 + parent: 2 + - uid: 10093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,35.5 + parent: 2 + - uid: 10094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,34.5 + parent: 2 + - uid: 10095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,33.5 + parent: 2 + - uid: 10096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,32.5 + parent: 2 + - uid: 10097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,31.5 + parent: 2 + - uid: 10098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,31.5 + parent: 2 + - uid: 10099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,31.5 + parent: 2 + - uid: 10100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,31.5 + parent: 2 + - uid: 10101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,31.5 + parent: 2 + - uid: 10102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,31.5 + parent: 2 + - uid: 10103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,31.5 + parent: 2 + - uid: 10104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,31.5 + parent: 2 + - uid: 10105 + components: + - type: Transform + pos: 29.5,37.5 + parent: 2 + - uid: 10106 + components: + - type: Transform + pos: 29.5,36.5 + parent: 2 + - uid: 10107 + components: + - type: Transform + pos: 29.5,35.5 + parent: 2 + - uid: 10108 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 10109 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 + - uid: 10110 + components: + - type: Transform + pos: 29.5,32.5 + parent: 2 + - uid: 10111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,38.5 + parent: 2 + - uid: 10112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,38.5 + parent: 2 + - uid: 10113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,38.5 + parent: 2 + - uid: 10114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,38.5 + parent: 2 + - uid: 10115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,38.5 + parent: 2 + - uid: 10116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,38.5 + parent: 2 + - uid: 10117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,38.5 + parent: 2 + - uid: 10118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,38.5 + parent: 2 + - uid: 10119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,38.5 + parent: 2 + - uid: 10120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,38.5 + parent: 2 + - uid: 10121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,38.5 + parent: 2 + - uid: 10122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,38.5 + parent: 2 + - uid: 10123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,38.5 + parent: 2 + - uid: 10124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,29.5 + parent: 2 + - uid: 10125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,29.5 + parent: 2 + - uid: 10126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,29.5 + parent: 2 + - uid: 10127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,29.5 + parent: 2 + - uid: 10128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,29.5 + parent: 2 + - uid: 10129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,29.5 + parent: 2 + - uid: 10130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,29.5 + parent: 2 + - uid: 10131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,29.5 + parent: 2 + - uid: 10132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,29.5 + parent: 2 + - uid: 10133 + components: + - type: Transform + pos: 29.5,30.5 + parent: 2 + - uid: 10134 + components: + - type: Transform + pos: 29.5,28.5 + parent: 2 + - uid: 10135 + components: + - type: Transform + pos: 29.5,27.5 + parent: 2 + - uid: 10136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,26.5 + parent: 2 + - uid: 10137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,26.5 + parent: 2 + - uid: 10138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,26.5 + parent: 2 + - uid: 10139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,26.5 + parent: 2 + - uid: 10140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,26.5 + parent: 2 + - uid: 10141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,10.5 + parent: 2 + - uid: 10142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,10.5 + parent: 2 + - uid: 10143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,10.5 + parent: 2 + - uid: 10144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,10.5 + parent: 2 + - uid: 10145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,11.5 + parent: 2 + - uid: 10146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,13.5 + parent: 2 + - uid: 10147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,14.5 + parent: 2 + - uid: 10148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,15.5 + parent: 2 + - uid: 10149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,16.5 + parent: 2 + - uid: 10150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,17.5 + parent: 2 + - uid: 10151 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 + - uid: 10152 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 + - uid: 10153 + components: + - type: Transform + pos: 22.5,21.5 + parent: 2 + - uid: 10154 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2 + - uid: 10155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,24.5 + parent: 2 + - uid: 10156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,25.5 + parent: 2 + - uid: 10157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,26.5 + parent: 2 + - uid: 10158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,26.5 + parent: 2 + - uid: 10159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,26.5 + parent: 2 + - uid: 10160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,26.5 + parent: 2 + - uid: 10161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,26.5 + parent: 2 + - uid: 10162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,26.5 + parent: 2 + - uid: 10163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,26.5 + parent: 2 + - uid: 10164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,26.5 + parent: 2 + - uid: 10165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,26.5 + parent: 2 + - uid: 10166 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 10167 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 10168 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - uid: 10169 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 10170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,21.5 + parent: 2 + - uid: 10171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,21.5 + parent: 2 + - uid: 10172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,21.5 + parent: 2 + - uid: 10173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,21.5 + parent: 2 + - uid: 10174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,21.5 + parent: 2 + - uid: 10175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,21.5 + parent: 2 + - uid: 10176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 2 + - uid: 10177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,21.5 + parent: 2 + - uid: 10178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,21.5 + parent: 2 + - uid: 10179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,21.5 + parent: 2 + - uid: 10180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,21.5 + parent: 2 + - uid: 10181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,21.5 + parent: 2 + - uid: 10182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,14.5 + parent: 2 + - uid: 10183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,15.5 + parent: 2 + - uid: 10184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,16.5 + parent: 2 + - uid: 10185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,16.5 + parent: 2 + - uid: 10186 + components: + - type: Transform + pos: 29.5,17.5 + parent: 2 + - uid: 10187 + components: + - type: Transform + pos: 29.5,18.5 + parent: 2 + - uid: 10188 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - uid: 10189 + components: + - type: Transform + pos: 29.5,20.5 + parent: 2 + - uid: 10190 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 + - uid: 10191 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 10192 + components: + - type: Transform + pos: 29.5,23.5 + parent: 2 + - uid: 10193 + components: + - type: Transform + pos: 29.5,24.5 + parent: 2 + - uid: 10194 + components: + - type: Transform + pos: 29.5,25.5 + parent: 2 + - uid: 10195 + components: + - type: Transform + pos: 39.5,2.5 + parent: 2 + - uid: 10196 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - uid: 10197 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 10198 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2 + - uid: 10199 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 + - uid: 10200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,7.5 + parent: 2 + - uid: 10201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,7.5 + parent: 2 + - uid: 10202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,7.5 + parent: 2 + - uid: 10203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,7.5 + parent: 2 + - uid: 10204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,7.5 + parent: 2 + - uid: 10205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,7.5 + parent: 2 + - uid: 10206 + components: + - type: Transform + pos: 32.5,10.5 + parent: 2 + - uid: 10207 + components: + - type: Transform + pos: 32.5,9.5 + parent: 2 + - uid: 10208 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 10209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,7.5 + parent: 2 + - uid: 10210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,7.5 + parent: 2 + - uid: 10211 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 10212 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 + - uid: 10213 + components: + - type: Transform + pos: 29.5,10.5 + parent: 2 + - uid: 10214 + components: + - type: Transform + pos: 29.5,11.5 + parent: 2 + - uid: 10215 + components: + - type: Transform + pos: 29.5,12.5 + parent: 2 + - uid: 10216 + components: + - type: Transform + pos: 29.5,13.5 + parent: 2 + - uid: 10217 + components: + - type: Transform + pos: 29.5,14.5 + parent: 2 + - uid: 10218 + components: + - type: Transform + pos: 29.5,15.5 + parent: 2 + - uid: 10219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 2 + - uid: 10220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 2 + - uid: 10221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-0.5 + parent: 2 + - uid: 10222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-0.5 + parent: 2 + - uid: 10223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-0.5 + parent: 2 + - uid: 10224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-0.5 + parent: 2 + - uid: 10225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,0.5 + parent: 2 + - uid: 10226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,1.5 + parent: 2 + - uid: 10227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,2.5 + parent: 2 + - uid: 10228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,3.5 + parent: 2 + - uid: 10229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,4.5 + parent: 2 + - uid: 10230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,5.5 + parent: 2 + - uid: 10231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,6.5 + parent: 2 + - uid: 10232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-55.5 + parent: 2 + - uid: 10233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-55.5 + parent: 2 + - uid: 10234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-54.5 + parent: 2 + - uid: 10235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-53.5 + parent: 2 + - uid: 10236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-52.5 + parent: 2 + - uid: 10237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-52.5 + parent: 2 + - uid: 10238 + components: + - type: Transform + pos: 7.5,-51.5 + parent: 2 + - uid: 10239 + components: + - type: Transform + pos: 7.5,-50.5 + parent: 2 + - uid: 10240 + components: + - type: Transform + pos: 7.5,-49.5 + parent: 2 + - uid: 10241 + components: + - type: Transform + pos: 7.5,-48.5 + parent: 2 + - uid: 10242 + components: + - type: Transform + pos: 7.5,-47.5 + parent: 2 + - uid: 10243 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 2 + - uid: 10244 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - uid: 10245 + components: + - type: Transform + pos: 6.5,-43.5 + parent: 2 + - uid: 10246 + components: + - type: Transform + pos: 6.5,-42.5 + parent: 2 + - uid: 10247 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 2 + - uid: 10248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-40.5 + parent: 2 + - uid: 10249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-40.5 + parent: 2 + - uid: 10250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-40.5 + parent: 2 + - uid: 10251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-40.5 + parent: 2 + - uid: 10252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-39.5 + parent: 2 + - uid: 10253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-38.5 + parent: 2 + - uid: 10254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-37.5 + parent: 2 + - uid: 10255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-36.5 + parent: 2 + - uid: 10256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-35.5 + parent: 2 + - uid: 10257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-34.5 + parent: 2 + - uid: 10258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-33.5 + parent: 2 + - uid: 10259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-32.5 + parent: 2 + - uid: 10260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-31.5 + parent: 2 + - uid: 10261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-30.5 + parent: 2 + - uid: 10262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-29.5 + parent: 2 + - uid: 10263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-28.5 + parent: 2 + - uid: 10264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-27.5 + parent: 2 + - uid: 10265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-41.5 + parent: 2 + - uid: 10266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-40.5 + parent: 2 + - uid: 10267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-40.5 + parent: 2 + - uid: 10268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-40.5 + parent: 2 + - uid: 10269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-40.5 + parent: 2 + - uid: 10270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-40.5 + parent: 2 + - uid: 10271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-40.5 + parent: 2 + - uid: 10272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-40.5 + parent: 2 + - uid: 10273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-40.5 + parent: 2 + - uid: 10274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-40.5 + parent: 2 + - uid: 10275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-40.5 + parent: 2 + - uid: 10276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-40.5 + parent: 2 + - uid: 10277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-40.5 + parent: 2 + - uid: 10278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-40.5 + parent: 2 + - uid: 10279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-40.5 + parent: 2 + - uid: 10280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-40.5 + parent: 2 + - uid: 10281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-40.5 + parent: 2 + - uid: 10282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-40.5 + parent: 2 + - uid: 10283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-40.5 + parent: 2 + - uid: 10284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-40.5 + parent: 2 + - uid: 10285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-40.5 + parent: 2 + - uid: 10286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-40.5 + parent: 2 + - uid: 10287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-40.5 + parent: 2 + - uid: 10288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-40.5 + parent: 2 + - uid: 10289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-60.5 + parent: 2 + - uid: 10290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-59.5 + parent: 2 + - uid: 10291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-58.5 + parent: 2 + - uid: 10292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-57.5 + parent: 2 + - uid: 10293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-56.5 + parent: 2 + - uid: 10294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-55.5 + parent: 2 + - uid: 10295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-54.5 + parent: 2 + - uid: 10296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-53.5 + parent: 2 + - uid: 10297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-52.5 + parent: 2 + - uid: 10298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-51.5 + parent: 2 + - uid: 10299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-51.5 + parent: 2 + - uid: 10300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-51.5 + parent: 2 + - uid: 10301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-51.5 + parent: 2 + - uid: 10302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-51.5 + parent: 2 + - uid: 10303 + components: + - type: Transform + pos: -21.5,-50.5 + parent: 2 + - uid: 10304 + components: + - type: Transform + pos: -21.5,-49.5 + parent: 2 + - uid: 10305 + components: + - type: Transform + pos: -21.5,-48.5 + parent: 2 + - uid: 10306 + components: + - type: Transform + pos: -21.5,-47.5 + parent: 2 + - uid: 10307 + components: + - type: Transform + pos: -21.5,-46.5 + parent: 2 + - uid: 10308 + components: + - type: Transform + pos: -21.5,-45.5 + parent: 2 + - uid: 10309 + components: + - type: Transform + pos: -21.5,-44.5 + parent: 2 + - uid: 10310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-43.5 + parent: 2 + - uid: 10311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-43.5 + parent: 2 + - uid: 10312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-43.5 + parent: 2 + - uid: 10313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-43.5 + parent: 2 + - uid: 10314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-43.5 + parent: 2 + - uid: 10315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-43.5 + parent: 2 + - uid: 10316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-43.5 + parent: 2 + - uid: 10317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-43.5 + parent: 2 + - uid: 10318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-43.5 + parent: 2 + - uid: 10319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-43.5 + parent: 2 + - uid: 10320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-36.5 + parent: 2 + - uid: 10321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-35.5 + parent: 2 + - uid: 15038 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - uid: 15158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,11.5 + parent: 2 + - uid: 15894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-53.5 + parent: 2 + - uid: 17534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-53.5 + parent: 2 + - uid: 23295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-53.5 + parent: 2 + - uid: 24233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,14.5 + parent: 2 + - uid: 24252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,6.5 + parent: 2 +- proto: DisposalPipeBroken + entities: + - uid: 10322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-36.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 10323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-34.5 + parent: 2 + - uid: 10324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-37.5 + parent: 2 + - uid: 10325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-40.5 + parent: 2 + - uid: 10326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-43.5 + parent: 2 + - uid: 10327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-46.5 + parent: 2 + - uid: 10328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-49.5 + parent: 2 + - uid: 10329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-49.5 + parent: 2 + - uid: 10330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-46.5 + parent: 2 + - uid: 10331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-43.5 + parent: 2 + - uid: 10332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-40.5 + parent: 2 + - uid: 10333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-37.5 + parent: 2 + - uid: 10334 + components: + - type: Transform + pos: -12.5,-32.5 + parent: 2 + - uid: 10335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,61.5 + parent: 2 + - uid: 10336 + components: + - type: Transform + pos: 6.5,69.5 + parent: 2 + - uid: 10337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,61.5 + parent: 2 + - uid: 10338 + components: + - type: Transform + pos: -4.5,69.5 + parent: 2 + - uid: 10339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-31.5 + parent: 2 + - uid: 10340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,9.5 + parent: 2 + - uid: 10341 + components: + - type: Transform + pos: -44.5,16.5 + parent: 2 + - uid: 10342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,4.5 + parent: 2 + - uid: 10343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,0.5 + parent: 2 + - uid: 10344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-7.5 + parent: 2 + - uid: 10345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-2.5 + parent: 2 + - uid: 10346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-32.5 + parent: 2 + - uid: 10347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-18.5 + parent: 2 + - uid: 10348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-33.5 + parent: 2 + - uid: 10349 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 2 + - uid: 10350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-21.5 + parent: 2 + - uid: 10351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-52.5 + parent: 2 + - uid: 10352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-29.5 + parent: 2 + - uid: 10353 + components: + - type: Transform + pos: -41.5,-38.5 + parent: 2 + - uid: 10354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-32.5 + parent: 2 + - uid: 10355 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 2 + - uid: 10356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-32.5 + parent: 2 + - uid: 10357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-19.5 + parent: 2 + - uid: 10358 + components: + - type: Transform + pos: 30.5,-29.5 + parent: 2 + - uid: 10359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-30.5 + parent: 2 + - uid: 10360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-21.5 + parent: 2 + - uid: 10361 + components: + - type: Transform + pos: 39.5,-20.5 + parent: 2 + - uid: 10362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-32.5 + parent: 2 + - uid: 10363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-12.5 + parent: 2 + - uid: 10364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 2 + - uid: 10365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 2 + - uid: 10366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 2 + - uid: 10367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 2 + - uid: 10368 + components: + - type: Transform + pos: 9.5,9.5 + parent: 2 + - uid: 10369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,17.5 + parent: 2 + - uid: 10370 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 10371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,18.5 + parent: 2 + - uid: 10372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,25.5 + parent: 2 + - uid: 10373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,28.5 + parent: 2 + - uid: 10374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,31.5 + parent: 2 + - uid: 10375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,38.5 + parent: 2 + - uid: 10376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,32.5 + parent: 2 + - uid: 10377 + components: + - type: Transform + pos: -2.5,40.5 + parent: 2 + - uid: 10378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,46.5 + parent: 2 + - uid: 10379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,53.5 + parent: 2 + - uid: 10380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,58.5 + parent: 2 + - uid: 10381 + components: + - type: Transform + pos: 8.5,56.5 + parent: 2 + - uid: 10382 + components: + - type: Transform + pos: 17.5,40.5 + parent: 2 + - uid: 10383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,39.5 + parent: 2 + - uid: 10384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,39.5 + parent: 2 + - uid: 10385 + components: + - type: Transform + pos: 39.5,30.5 + parent: 2 + - uid: 10386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,10.5 + parent: 2 + - uid: 10387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,12.5 + parent: 2 + - uid: 10388 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 10389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,13.5 + parent: 2 + - uid: 10390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,1.5 + parent: 2 + - uid: 10391 + components: + - type: Transform + pos: 32.5,11.5 + parent: 2 + - uid: 10392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 2 + - uid: 10393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-45.5 + parent: 2 + - uid: 10394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-53.5 + parent: 2 + - uid: 10395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-56.5 + parent: 2 + - uid: 10396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-41.5 + parent: 2 + - uid: 10397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-61.5 + parent: 2 + - uid: 10398 + components: + - type: Transform + pos: 33.5,-36.5 + parent: 2 + - uid: 10399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-34.5 + parent: 2 + - uid: 22840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,11.5 + parent: 2 +- proto: DisposalUnit + entities: + - uid: 10400 + components: + - type: Transform + pos: 32.5,-41.5 + parent: 2 + - uid: 10401 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 2 + - uid: 10402 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 10403 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 10404 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 + - uid: 10405 + components: + - type: Transform + pos: -7.5,9.5 + parent: 2 + - uid: 10406 + components: + - type: Transform + pos: 9.5,9.5 + parent: 2 + - uid: 10407 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 10408 + components: + - type: Transform + pos: 7.5,17.5 + parent: 2 + - uid: 10409 + components: + - type: Transform + pos: 10.5,11.5 + parent: 2 + - uid: 10410 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 2 + - uid: 10411 + components: + - type: Transform + pos: -30.5,4.5 + parent: 2 + - uid: 10412 + components: + - type: Transform + pos: -25.5,9.5 + parent: 2 + - uid: 10413 + components: + - type: Transform + pos: -32.5,8.5 + parent: 2 + - uid: 10414 + components: + - type: Transform + pos: -43.5,9.5 + parent: 2 + - uid: 10415 + components: + - type: Transform + pos: -36.5,0.5 + parent: 2 + - uid: 10416 + components: + - type: Transform + pos: -37.5,-7.5 + parent: 2 + - uid: 10417 + components: + - type: Transform + pos: -28.5,-20.5 + parent: 2 + - uid: 10418 + components: + - type: Transform + pos: -28.5,-32.5 + parent: 2 + - uid: 10419 + components: + - type: Transform + pos: -20.5,-18.5 + parent: 2 + - uid: 10420 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 2 + - uid: 10421 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 2 + - uid: 10422 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 2 + - uid: 10423 + components: + - type: Transform + pos: -20.5,-33.5 + parent: 2 + - uid: 10424 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 2 + - uid: 10425 + components: + - type: Transform + pos: -8.5,-30.5 + parent: 2 + - uid: 10426 + components: + - type: Transform + pos: -13.5,-37.5 + parent: 2 + - uid: 10427 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 2 + - uid: 10428 + components: + - type: Transform + pos: -13.5,-43.5 + parent: 2 + - uid: 10429 + components: + - type: Transform + pos: -13.5,-49.5 + parent: 2 + - uid: 10430 + components: + - type: Transform + pos: -13.5,-46.5 + parent: 2 + - uid: 10431 + components: + - type: Transform + pos: -41.5,-38.5 + parent: 2 + - uid: 10432 + components: + - type: Transform + pos: -47.5,-29.5 + parent: 2 + - uid: 10433 + components: + - type: Transform + pos: -39.5,-52.5 + parent: 2 + - uid: 10434 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 2 + - uid: 10435 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 10436 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 10437 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 10438 + components: + - type: Transform + pos: 32.5,11.5 + parent: 2 + - uid: 10439 + components: + - type: Transform + pos: 32.5,13.5 + parent: 2 + - uid: 10440 + components: + - type: Transform + pos: 40.5,1.5 + parent: 2 + - uid: 10441 + components: + - type: Transform + pos: 39.5,30.5 + parent: 2 + - uid: 10442 + components: + - type: Transform + pos: 17.5,40.5 + parent: 2 + - uid: 10443 + components: + - type: Transform + pos: 30.5,39.5 + parent: 2 + - uid: 10444 + components: + - type: Transform + pos: 42.5,39.5 + parent: 2 + - uid: 10445 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 2 + - uid: 10446 + components: + - type: Transform + pos: -2.5,18.5 + parent: 2 + - uid: 10447 + components: + - type: Transform + pos: -2.5,28.5 + parent: 2 + - uid: 10448 + components: + - type: Transform + pos: -11.5,31.5 + parent: 2 + - uid: 10449 + components: + - type: Transform + pos: -20.5,38.5 + parent: 2 + - uid: 10450 + components: + - type: Transform + pos: -26.5,32.5 + parent: 2 + - uid: 10451 + components: + - type: Transform + pos: -26.5,30.5 + parent: 2 + - uid: 10452 + components: + - type: Transform + pos: -42.5,37.5 + parent: 2 + - uid: 10453 + components: + - type: Transform + pos: -2.5,40.5 + parent: 2 + - uid: 10454 + components: + - type: Transform + pos: -5.5,53.5 + parent: 2 + - uid: 10455 + components: + - type: Transform + pos: 9.5,46.5 + parent: 2 + - uid: 10456 + components: + - type: Transform + pos: 8.5,56.5 + parent: 2 + - uid: 10457 + components: + - type: Transform + pos: -4.5,61.5 + parent: 2 + - uid: 10458 + components: + - type: Transform + pos: 6.5,61.5 + parent: 2 + - uid: 10459 + components: + - type: Transform + pos: -2.5,58.5 + parent: 2 + - uid: 10460 + components: + - type: Transform + pos: 6.5,69.5 + parent: 2 + - uid: 10461 + components: + - type: Transform + pos: -4.5,69.5 + parent: 2 + - uid: 10462 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 2 + - uid: 10463 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 2 + - uid: 10464 + components: + - type: Transform + pos: 42.5,-32.5 + parent: 2 + - uid: 10465 + components: + - type: Transform + pos: 47.5,-31.5 + parent: 2 + - uid: 10466 + components: + - type: Transform + pos: 30.5,-29.5 + parent: 2 + - uid: 10467 + components: + - type: Transform + pos: 25.5,-30.5 + parent: 2 + - uid: 10468 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 2 + - uid: 10469 + components: + - type: Transform + pos: 10.5,-32.5 + parent: 2 + - uid: 10470 + components: + - type: Transform + pos: 39.5,-20.5 + parent: 2 + - uid: 10471 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 2 + - uid: 10472 + components: + - type: Transform + pos: 8.5,-45.5 + parent: 2 + - uid: 10473 + components: + - type: Transform + pos: 14.5,-53.5 + parent: 2 + - uid: 10474 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 2 + - uid: 10475 + components: + - type: Transform + pos: -15.5,-61.5 + parent: 2 + - uid: 10476 + components: + - type: Transform + pos: 4.5,25.5 + parent: 2 + - uid: 10477 + components: + - type: Transform + pos: 19.5,23.5 + parent: 2 + - uid: 10478 + components: + - type: Transform + pos: 33.5,-36.5 + parent: 2 +- proto: DisposalYJunction + entities: + - uid: 10479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-30.5 + parent: 2 + - uid: 10480 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - uid: 10481 + components: + - type: Transform + pos: -4.5,42.5 + parent: 2 + - uid: 10482 + components: + - type: Transform + pos: 0.5,47.5 + parent: 2 + - uid: 10483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,26.5 + parent: 2 +- proto: DogBed + entities: + - uid: 10484 + components: + - type: Transform + pos: 44.5,-32.5 + parent: 2 + - uid: 10485 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 2 + - uid: 10486 + components: + - type: Transform + pos: -30.5,5.5 + parent: 2 + - uid: 10487 + components: + - type: Transform + pos: -17.5,-24.5 + parent: 2 + - uid: 10488 + components: + - type: Transform + pos: -14.5,31.5 + parent: 2 + - uid: 10489 + components: + - type: Transform + pos: -21.5,43.5 + parent: 2 + - uid: 10490 + components: + - type: Transform + pos: -4.5,56.5 + parent: 2 + - uid: 10491 + components: + - type: Transform + pos: 9.5,47.5 + parent: 2 + - uid: 10492 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 2 +- proto: DonkpocketBoxSpawner + entities: + - uid: 10493 + components: + - type: Transform + pos: -17.5,-13.5 + parent: 2 + - uid: 10494 + components: + - type: Transform + pos: -17.5,-13.5 + parent: 2 + - uid: 10495 + components: + - type: Transform + pos: 40.5,-18.5 + parent: 2 + - uid: 10496 + components: + - type: Transform + pos: 3.5,-52.5 + parent: 2 + - uid: 10497 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 2 +- proto: DoorElectronics + entities: + - uid: 10498 + components: + - type: Transform + pos: -14.419886,-55.436817 + parent: 2 +- proto: DresserChiefEngineerFilled + entities: + - uid: 8812 + components: + - type: Transform + pos: 14.5,-50.5 + parent: 2 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 8814 + components: + - type: Transform + pos: 26.5,-20.5 + parent: 2 +- proto: DresserFilled + entities: + - uid: 10499 + components: + - type: Transform + pos: 40.5,15.5 + parent: 2 + - uid: 10500 + components: + - type: Transform + pos: -7.5,56.5 + parent: 2 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 5802 + components: + - type: Transform + pos: 6.5,50.5 + parent: 2 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 8770 + components: + - type: Transform + pos: -22.5,45.5 + parent: 2 +- proto: DresserQuarterMasterFilled + entities: + - uid: 8811 + components: + - type: Transform + pos: -23.5,4.5 + parent: 2 +- proto: DresserResearchDirectorFilled + entities: + - uid: 10914 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 2 +- proto: Drill + entities: + - uid: 10552 + components: + - type: Transform + pos: 19.632008,-16.266129 + parent: 2 +- proto: DrinkBeerBottleFull + entities: + - uid: 10553 + components: + - type: Transform + pos: -43.631714,-50.019222 + parent: 2 + - uid: 10554 + components: + - type: Transform + pos: -43.417263,-49.674236 + parent: 2 + - uid: 10555 + components: + - type: Transform + pos: 44.742184,-66.245926 + parent: 2 + - uid: 10556 + components: + - type: Transform + pos: 44.909847,-66.03643 + parent: 2 +- proto: DrinkBottleBeer + entities: + - uid: 10557 + components: + - type: Transform + pos: -23.917133,-14.595512 + parent: 2 + - uid: 10558 + components: + - type: Transform + pos: 11.279647,26.776213 + parent: 2 + - uid: 10559 + components: + - type: Transform + pos: 11.419507,26.953367 + parent: 2 + - uid: 10560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.708551,26.51514 + parent: 2 +- proto: DrinkBottleWine + entities: + - uid: 10561 + components: + - type: Transform + pos: -44.7997,-36.270035 + parent: 2 +- proto: DrinkChampagneBottleFull + entities: + - uid: 10562 + components: + - type: Transform + pos: 23.63028,35.828766 + parent: 2 + - uid: 10563 + components: + - type: Transform + pos: 10.704861,54.94718 + parent: 2 +- proto: DrinkChangelingStingCan + entities: + - uid: 10564 + components: + - type: Transform + pos: -29.491821,-60.314552 + parent: 2 +- proto: DrinkClownBloodGlass + entities: + - uid: 10538 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: DrinkDeadRumGlass + entities: + - uid: 10565 + components: + - type: Transform + pos: -34.82376,39.766514 + parent: 2 +- proto: DrinkDrGibbCan + entities: + - uid: 10566 + components: + - type: Transform + pos: -27.281612,-66.12426 + parent: 2 +- proto: DrinkFourteenLokoCan + entities: + - uid: 10567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.290928,-66.617744 + parent: 2 +- proto: DrinkGildlagerBottleFull + entities: + - uid: 10568 + components: + - type: Transform + pos: -35.58466,17.12171 + parent: 2 +- proto: DrinkGildlagerGlass + entities: + - uid: 10569 + components: + - type: Transform + pos: -35.689552,16.660172 + parent: 2 + - uid: 10570 + components: + - type: Transform + pos: -35.52172,16.765066 + parent: 2 + - uid: 10571 + components: + - type: Transform + pos: -35.395847,16.660172 + parent: 2 +- proto: DrinkGinBottleFull + entities: + - uid: 996 + components: + - type: Transform + parent: 995 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkGlass + entities: + - uid: 10572 + components: + - type: Transform + pos: 25.323677,5.74332 + parent: 2 + - uid: 10573 + components: + - type: Transform + pos: 16.337538,12.790525 + parent: 2 + - uid: 10575 + components: + - type: Transform + parent: 10574 + - type: Physics + canCollide: False + - uid: 10577 + components: + - type: Transform + parent: 10576 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10578 + components: + - type: Transform + parent: 10576 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkGoldenCup + entities: + - uid: 10581 + components: + - type: Transform + pos: -31.409832,17.016815 + parent: 2 +- proto: DrinkGrapeCan + entities: + - uid: 10582 + components: + - type: Transform + pos: -27.682144,-66.15219 + parent: 2 + - uid: 10583 + components: + - type: Transform + pos: 29.740402,-34.127605 + parent: 2 + - uid: 10584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.86793,-66.77665 + parent: 2 +- proto: DrinkHosFlask + entities: + - uid: 10586 + components: + - type: Transform + pos: -22.406532,40.797153 + parent: 2 +- proto: DrinkIcedTeaCan + entities: + - uid: 10587 + components: + - type: Transform + pos: -27.738033,-66.45014 + parent: 2 +- proto: DrinkMilkCarton + entities: + - uid: 10588 + components: + - type: Transform + pos: 42.39777,-29.082644 + parent: 2 +- proto: DrinkMugBlue + entities: + - uid: 10589 + components: + - type: Transform + pos: 18.680553,8.524305 + parent: 2 +- proto: DrinkMugDog + entities: + - uid: 10590 + components: + - type: Transform + pos: -42.624443,34.60872 + parent: 2 + - uid: 10591 + components: + - type: Transform + pos: 18.667133,21.53536 + parent: 2 +- proto: DrinkMugRainbow + entities: + - uid: 10592 + components: + - type: Transform + pos: -14.723443,35.313038 + parent: 2 +- proto: DrinkPoisonWinebottleFull + entities: + - uid: 10593 + components: + - type: Transform + pos: -33.711823,26.7967 + parent: 2 +- proto: DrinkPoisonWineGlass + entities: + - uid: 10594 + components: + - type: Transform + pos: -33.33886,26.68481 + parent: 2 + - uid: 10595 + components: + - type: Transform + pos: -33.51291,26.572924 + parent: 2 +- proto: DrinkPwrGameCan + entities: + - uid: 10596 + components: + - type: Transform + pos: 14.313516,-2.105032 + parent: 2 + - uid: 10597 + components: + - type: Transform + pos: 14.43939,-2.35678 + parent: 2 + - uid: 10598 + components: + - type: Transform + pos: 14.2296,-2.377759 + parent: 2 + - uid: 10599 + components: + - type: Transform + pos: 14.733096,-2.084053 + parent: 2 + - uid: 10600 + components: + - type: Transform + pos: 14.712117,-2.35678 + parent: 2 + - uid: 10601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.499057,-3.203574 + parent: 2 + - type: Openable + opened: True +- proto: DrinkShaker + entities: + - uid: 10602 + components: + - type: Transform + pos: 18.20451,14.569038 + parent: 2 + - uid: 10603 + components: + - type: Transform + pos: 18.225487,14.7998085 + parent: 2 + - uid: 10604 + components: + - type: Transform + pos: -2.7981777,55.697433 + parent: 2 +- proto: DrinkShotGlass + entities: + - uid: 10605 + components: + - type: Transform + pos: -44.215233,-36.548958 + parent: 2 + - uid: 10606 + components: + - type: Transform + pos: -44.215233,-36.29721 + parent: 2 +- proto: DrinkSodaWaterCan + entities: + - uid: 10607 + components: + - type: Transform + pos: -27.467907,-66.40359 + parent: 2 + - uid: 10608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.369774,-34.568165 + parent: 2 +- proto: DrinkSoyMilkCarton + entities: + - uid: 10609 + components: + - type: Transform + pos: 42.63087,-28.998726 + parent: 2 +- proto: Dropper + entities: + - uid: 10610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.219715,-27.447004 + parent: 2 + - uid: 10611 + components: + - type: Transform + pos: -5.5465403,-31.55518 + parent: 2 + - uid: 10612 + components: + - type: Transform + pos: 38.544987,-33.769985 + parent: 2 +- proto: EffectHearts + entities: + - uid: 10613 + components: + - type: Transform + pos: 5.3385115,24.668749 + parent: 2 +- proto: EmergencyLight + entities: + - uid: 10614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,35.5 + parent: 2 + - uid: 10615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,45.5 + parent: 2 + - uid: 10616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-58.5 + parent: 2 + - uid: 10617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,53.5 + parent: 2 + - uid: 10618 + components: + - type: Transform + pos: 8.5,56.5 + parent: 2 + - uid: 10619 + components: + - type: Transform + pos: -6.5,40.5 + parent: 2 + - uid: 10620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,41.5 + parent: 2 + - uid: 10621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,26.5 + parent: 2 + - uid: 10622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,31.5 + parent: 2 + - uid: 10623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,43.5 + parent: 2 + - uid: 10624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,36.5 + parent: 2 + - uid: 10625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,24.5 + parent: 2 + - uid: 10626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 2 + - uid: 10627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-59.5 + parent: 2 + - uid: 10628 + components: + - type: Transform + pos: -7.5,9.5 + parent: 2 + - uid: 10629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,40.5 + parent: 2 + - uid: 10630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,34.5 + parent: 2 + - uid: 10631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 2 + - uid: 10632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,3.5 + parent: 2 + - uid: 10633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 2 + - uid: 10634 + components: + - type: Transform + pos: -19.5,36.5 + parent: 2 + - uid: 10635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,8.5 + parent: 2 + - uid: 10636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,14.5 + parent: 2 + - uid: 10637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,15.5 + parent: 2 + - uid: 10638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,12.5 + parent: 2 + - uid: 10639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,8.5 + parent: 2 + - uid: 10640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,9.5 + parent: 2 + - uid: 10641 + components: + - type: Transform + pos: 23.5,19.5 + parent: 2 + - uid: 10642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,39.5 + parent: 2 + - uid: 10643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,45.5 + parent: 2 + - uid: 10644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,33.5 + parent: 2 + - uid: 10645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-53.5 + parent: 2 + - uid: 10646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-0.5 + parent: 2 + - uid: 10647 + components: + - type: Transform + pos: 25.5,2.5 + parent: 2 + - uid: 10648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 2 + - uid: 10649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-4.5 + parent: 2 + - uid: 10650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-8.5 + parent: 2 + - uid: 10651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-8.5 + parent: 2 + - uid: 10652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,5.5 + parent: 2 + - uid: 10653 + components: + - type: Transform + pos: 41.5,15.5 + parent: 2 + - uid: 10654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,33.5 + parent: 2 + - uid: 10655 + components: + - type: Transform + pos: 33.5,20.5 + parent: 2 + - uid: 10656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-49.5 + parent: 2 + - uid: 10657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,28.5 + parent: 2 + - uid: 10658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,18.5 + parent: 2 + - uid: 10659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,24.5 + parent: 2 + - uid: 10660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,23.5 + parent: 2 + - uid: 10661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,26.5 + parent: 2 + - uid: 10662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,37.5 + parent: 2 + - uid: 10663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,40.5 + parent: 2 + - uid: 10664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,25.5 + parent: 2 + - uid: 10665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,29.5 + parent: 2 + - uid: 10666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,43.5 + parent: 2 + - uid: 10667 + components: + - type: Transform + pos: -41.5,20.5 + parent: 2 + - uid: 10668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,39.5 + parent: 2 + - uid: 10669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,22.5 + parent: 2 + - uid: 10670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-15.5 + parent: 2 + - uid: 10671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-45.5 + parent: 2 + - uid: 10672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-25.5 + parent: 2 + - uid: 10673 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 + - uid: 10674 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 + - uid: 10675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-29.5 + parent: 2 + - uid: 10676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,34.5 + parent: 2 + - uid: 10677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-32.5 + parent: 2 + - uid: 10678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,28.5 + parent: 2 + - uid: 10679 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 2 + - uid: 10680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-69.5 + parent: 2 + - uid: 10681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-15.5 + parent: 2 + - uid: 10682 + components: + - type: Transform + pos: -7.5,29.5 + parent: 2 + - uid: 10683 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 + - uid: 10684 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 2 + - uid: 10685 + components: + - type: Transform + pos: -3.5,-55.5 + parent: 2 + - uid: 10686 + components: + - type: Transform + pos: -7.5,20.5 + parent: 2 + - uid: 10687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 2 + - uid: 10688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,23.5 + parent: 2 + - uid: 10689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-27.5 + parent: 2 + - uid: 10690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-38.5 + parent: 2 + - uid: 10691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,22.5 + parent: 2 + - uid: 10692 + components: + - type: Transform + pos: -20.5,29.5 + parent: 2 + - uid: 10693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-58.5 + parent: 2 + - uid: 10694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-69.5 + parent: 2 + - uid: 10695 + components: + - type: Transform + pos: 12.5,-57.5 + parent: 2 + - uid: 10696 + components: + - type: Transform + pos: 14.5,-40.5 + parent: 2 + - uid: 10697 + components: + - type: Transform + pos: 28.5,-39.5 + parent: 2 + - uid: 10698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-55.5 + parent: 2 + - uid: 10699 + components: + - type: Transform + pos: 27.5,-57.5 + parent: 2 + - uid: 10700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-43.5 + parent: 2 + - uid: 10701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-28.5 + parent: 2 + - uid: 10702 + components: + - type: Transform + pos: -20.5,-26.5 + parent: 2 + - uid: 10703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-31.5 + parent: 2 + - uid: 10704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-29.5 + parent: 2 + - uid: 10705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-42.5 + parent: 2 + - uid: 10706 + components: + - type: Transform + pos: -39.5,-41.5 + parent: 2 + - uid: 10707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-32.5 + parent: 2 + - uid: 10708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-52.5 + parent: 2 + - uid: 10709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-33.5 + parent: 2 + - uid: 10710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-32.5 + parent: 2 + - uid: 10711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-42.5 + parent: 2 + - uid: 10712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-49.5 + parent: 2 + - uid: 10713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-23.5 + parent: 2 + - uid: 10714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-12.5 + parent: 2 + - uid: 10715 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 2 + - uid: 10716 + components: + - type: Transform + pos: -22.5,-16.5 + parent: 2 + - uid: 10717 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 2 + - uid: 10718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-10.5 + parent: 2 + - uid: 10719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-1.5 + parent: 2 + - uid: 10720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-6.5 + parent: 2 + - uid: 10721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,4.5 + parent: 2 + - uid: 10722 + components: + - type: Transform + pos: -28.5,13.5 + parent: 2 + - uid: 10723 + components: + - type: Transform + pos: -33.5,17.5 + parent: 2 + - uid: 10724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,7.5 + parent: 2 + - uid: 10725 + components: + - type: Transform + pos: -42.5,17.5 + parent: 2 + - uid: 10726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 2 + - uid: 10727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-10.5 + parent: 2 + - uid: 10728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-23.5 + parent: 2 + - uid: 10729 + components: + - type: Transform + pos: -43.5,-15.5 + parent: 2 + - uid: 10730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-0.5 + parent: 2 + - uid: 10731 + components: + - type: Transform + pos: -28.5,2.5 + parent: 2 +- proto: EmergencyRollerBedSpawnFolded + entities: + - uid: 10732 + components: + - type: Transform + pos: -38.484848,-16.936386 + parent: 2 + - uid: 10733 + components: + - type: Transform + pos: -38.303215,-16.698956 + parent: 2 +- proto: Emitter + entities: + - uid: 10734 + components: + - type: Transform + pos: 14.5,-58.5 + parent: 2 + - uid: 10735 + components: + - type: Transform + pos: 14.5,-57.5 + parent: 2 + - uid: 10736 + components: + - type: Transform + pos: 14.5,-59.5 + parent: 2 + - uid: 10737 + components: + - type: Transform + pos: 14.5,-60.5 + parent: 2 + - uid: 10738 + components: + - type: Transform + pos: 12.5,-67.5 + parent: 2 + - uid: 10739 + components: + - type: Transform + pos: 11.5,-67.5 + parent: 2 + - uid: 10740 + components: + - type: Transform + pos: 13.5,-67.5 + parent: 2 + - uid: 10741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-69.5 + parent: 2 + - uid: 10742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-69.5 + parent: 2 +- proto: EncryptionKeyCargo + entities: + - uid: 10744 + components: + - type: Transform + parent: 10743 + - type: Physics + canCollide: False + - uid: 10745 + components: + - type: Transform + pos: 4.3336377,44.696342 + parent: 2 +- proto: EncryptionKeyCommand + entities: + - uid: 10747 + components: + - type: Transform + parent: 10746 + - type: Physics + canCollide: False + - uid: 10748 + components: + - type: Transform + pos: 4.492146,44.761612 + parent: 2 +- proto: EncryptionKeyCommon + entities: + - uid: 10750 + components: + - type: Transform + parent: 10749 + - type: Physics + canCollide: False + - uid: 10751 + components: + - type: Transform + pos: 4.6226816,44.612427 + parent: 2 +- proto: EncryptionKeyEngineering + entities: + - uid: 10753 + components: + - type: Transform + parent: 10752 + - type: Physics + canCollide: False + - uid: 10754 + components: + - type: Transform + pos: 4.7718663,44.752285 + parent: 2 +- proto: EncryptionKeyJustice + entities: + - uid: 23866 + components: + - type: Transform + pos: 5.429473,44.565796 + parent: 2 +- proto: EncryptionKeyMedical + entities: + - uid: 10756 + components: + - type: Transform + parent: 10755 + - type: Physics + canCollide: False + - uid: 10757 + components: + - type: Transform + pos: 4.8930783,44.659046 + parent: 2 +- proto: EncryptionKeyMedicalScience + entities: + - uid: 10758 + components: + - type: Transform + pos: 5.648323,44.659046 + parent: 2 +- proto: EncryptionKeyScience + entities: + - uid: 10760 + components: + - type: Transform + parent: 10759 + - type: Physics + canCollide: False + - uid: 10761 + components: + - type: Transform + pos: 5.1355023,44.71499 + parent: 2 +- proto: EncryptionKeySecurity + entities: + - uid: 10763 + components: + - type: Transform + parent: 10762 + - type: Physics + canCollide: False + - uid: 10764 + components: + - type: Transform + pos: 5.1634746,44.62175 + parent: 2 +- proto: EncryptionKeyService + entities: + - uid: 10766 + components: + - type: Transform + parent: 10765 + - type: Physics + canCollide: False + - uid: 10767 + components: + - type: Transform + pos: 5.4711666,44.71499 + parent: 2 +- proto: ExosuitFabricator + entities: + - uid: 10768 + components: + - type: Transform + pos: -19.5,-23.5 + parent: 2 + - uid: 10769 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 2 +- proto: ExplosivesSignMed + entities: + - uid: 10770 + components: + - type: Transform + pos: -15.5,-29.5 + parent: 2 +- proto: ExtendedEmergencyOxygenTankFilled + entities: + - uid: 10771 + components: + - type: Transform + pos: -7.645706,-64.09039 + parent: 2 + - uid: 10772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.39085,-64.121475 + parent: 2 +- proto: ExtinguisherCabinet + entities: + - uid: 10773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-34.5 + parent: 2 + - uid: 10774 + components: + - type: Transform + pos: -2.5,-29.5 + parent: 2 + - uid: 10775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-38.5 + parent: 2 + - uid: 10776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-50.5 + parent: 2 + - uid: 10777 + components: + - type: Transform + pos: -18.5,-54.5 + parent: 2 + - uid: 10778 + components: + - type: Transform + pos: -11.5,-54.5 + parent: 2 + - uid: 10779 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 2 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 10780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 2 + - uid: 10781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 2 + - uid: 10782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,9.5 + parent: 2 + - uid: 10783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 2 + - uid: 10784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,4.5 + parent: 2 + - uid: 10785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 2 + - uid: 10786 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 + - uid: 10787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,13.5 + parent: 2 + - uid: 10788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,17.5 + parent: 2 + - uid: 10789 + components: + - type: Transform + pos: -1.5,15.5 + parent: 2 + - uid: 10790 + components: + - type: Transform + pos: 3.5,20.5 + parent: 2 + - uid: 10791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,14.5 + parent: 2 + - uid: 10792 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 2 + - uid: 10793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-1.5 + parent: 2 + - uid: 10794 + components: + - type: Transform + pos: -24.5,3.5 + parent: 2 + - uid: 10795 + components: + - type: Transform + pos: -31.5,8.5 + parent: 2 + - uid: 10796 + components: + - type: Transform + pos: -28.5,14.5 + parent: 2 + - uid: 10797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,7.5 + parent: 2 + - uid: 10798 + components: + - type: Transform + pos: -25.5,-14.5 + parent: 2 + - uid: 10799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-15.5 + parent: 2 + - uid: 10800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,14.5 + parent: 2 + - uid: 10801 + components: + - type: Transform + pos: -40.5,18.5 + parent: 2 + - uid: 10802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-16.5 + parent: 2 + - uid: 10803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-27.5 + parent: 2 + - uid: 10804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-31.5 + parent: 2 + - uid: 10805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-26.5 + parent: 2 + - uid: 10806 + components: + - type: Transform + pos: -35.5,-41.5 + parent: 2 + - uid: 10807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-25.5 + parent: 2 + - uid: 10808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-15.5 + parent: 2 + - uid: 10809 + components: + - type: Transform + pos: -13.5,-22.5 + parent: 2 + - uid: 10810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-21.5 + parent: 2 + - uid: 10811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-29.5 + parent: 2 + - uid: 10812 + components: + - type: Transform + pos: -40.5,-44.5 + parent: 2 + - uid: 10813 + components: + - type: Transform + pos: -40.5,-34.5 + parent: 2 + - uid: 10814 + components: + - type: Transform + pos: -35.5,-53.5 + parent: 2 + - uid: 10815 + components: + - type: Transform + pos: 24.5,3.5 + parent: 2 + - uid: 10816 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 2 + - uid: 10817 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 + - uid: 10818 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 2 + - uid: 10819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,12.5 + parent: 2 + - uid: 10820 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 10821 + components: + - type: Transform + pos: 27.5,18.5 + parent: 2 + - uid: 10822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,19.5 + parent: 2 + - uid: 10823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,28.5 + parent: 2 + - uid: 10824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,38.5 + parent: 2 + - uid: 10825 + components: + - type: Transform + pos: 16.5,41.5 + parent: 2 + - uid: 10826 + components: + - type: Transform + pos: 31.5,36.5 + parent: 2 + - uid: 10827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-13.5 + parent: 2 + - uid: 10828 + components: + - type: Transform + pos: -19.5,23.5 + parent: 2 + - uid: 10829 + components: + - type: Transform + pos: -19.5,23.5 + parent: 2 + - uid: 10830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,29.5 + parent: 2 + - uid: 10831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,33.5 + parent: 2 + - uid: 10832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,37.5 + parent: 2 + - uid: 10833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,32.5 + parent: 2 + - uid: 10834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,38.5 + parent: 2 + - uid: 10835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,24.5 + parent: 2 + - uid: 10836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,23.5 + parent: 2 + - uid: 10837 + components: + - type: Transform + pos: -30.5,31.5 + parent: 2 + - uid: 10838 + components: + - type: Transform + pos: -2.5,41.5 + parent: 2 + - uid: 10839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,34.5 + parent: 2 + - uid: 10840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,33.5 + parent: 2 + - uid: 10841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,37.5 + parent: 2 + - uid: 10842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,41.5 + parent: 2 + - uid: 10843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,50.5 + parent: 2 + - uid: 10844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,52.5 + parent: 2 + - uid: 10845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,57.5 + parent: 2 + - uid: 10846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,46.5 + parent: 2 + - uid: 10847 + components: + - type: Transform + pos: 10.5,48.5 + parent: 2 + - uid: 10848 + components: + - type: Transform + pos: 11.5,52.5 + parent: 2 + - uid: 10849 + components: + - type: Transform + pos: 9.5,70.5 + parent: 2 + - uid: 10850 + components: + - type: Transform + pos: -6.5,70.5 + parent: 2 + - uid: 10851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,79.5 + parent: 2 + - uid: 10852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,80.5 + parent: 2 + - uid: 10853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-13.5 + parent: 2 + - uid: 10854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 2 + - uid: 10855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-20.5 + parent: 2 + - uid: 10856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-17.5 + parent: 2 + - uid: 10857 + components: + - type: Transform + pos: 48.5,-29.5 + parent: 2 + - uid: 10858 + components: + - type: Transform + pos: 48.5,-33.5 + parent: 2 + - uid: 10859 + components: + - type: Transform + pos: 40.5,-35.5 + parent: 2 + - uid: 10860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-31.5 + parent: 2 + - uid: 10861 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 2 + - uid: 10862 + components: + - type: Transform + pos: 18.5,-33.5 + parent: 2 + - uid: 10863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-33.5 + parent: 2 + - uid: 10864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-28.5 + parent: 2 + - uid: 10865 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 + - uid: 10866 + components: + - type: Transform + pos: 21.5,-38.5 + parent: 2 + - uid: 10867 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 + - uid: 10868 + components: + - type: Transform + pos: -1.5,-43.5 + parent: 2 + - uid: 10869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-50.5 + parent: 2 + - uid: 10870 + components: + - type: Transform + pos: 14.5,-49.5 + parent: 2 + - uid: 10871 + components: + - type: Transform + pos: -4.5,-54.5 + parent: 2 + - uid: 10872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-60.5 + parent: 2 + - uid: 10873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-61.5 + parent: 2 + - uid: 10874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-61.5 + parent: 2 + - uid: 10875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-68.5 + parent: 2 + - uid: 10876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-73.5 + parent: 2 + - uid: 10877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-45.5 + parent: 2 + - uid: 10878 + components: + - type: Transform + pos: 35.5,-47.5 + parent: 2 + - uid: 10879 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 2 +- proto: FaxMachineBase + entities: + - uid: 10880 + components: + - type: Transform + pos: 17.5,21.5 + parent: 2 + - type: FaxMachine + name: Reporter + - uid: 10881 + components: + - type: Transform + pos: 4.5,27.5 + parent: 2 + - type: FaxMachine + name: Blueshield + - uid: 10882 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - type: FaxMachine + name: Advocacia + - uid: 10883 + components: + - type: Transform + pos: -43.5,11.5 + parent: 2 + - type: FaxMachine + name: Carga + - uid: 10884 + components: + - type: Transform + pos: -27.5,-32.5 + parent: 2 + - type: FaxMachine + name: Ciência + - uid: 10885 + components: + - type: Transform + pos: -8.5,31.5 + parent: 2 + - type: FaxMachine + name: Segurança + - uid: 10886 + components: + - type: Transform + pos: -1.5,62.5 + parent: 2 + - type: FaxMachine + name: Ponte + - uid: 10887 + components: + - type: Transform + pos: 8.5,-44.5 + parent: 2 + - type: FaxMachine + name: Engenharia + - uid: 10888 + components: + - type: Transform + pos: 9.5,48.5 + parent: 2 + - type: FaxMachine + name: HoP + - uid: 10889 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - type: FaxMachine + name: Correio + - uid: 10890 + components: + - type: Transform + pos: 35.5,11.5 + parent: 2 + - type: FaxMachine + name: Bar + - uid: 10891 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 2 + - type: FaxMachine + name: Médico Chefe + - uid: 10892 + components: + - type: Transform + pos: 41.5,-25.5 + parent: 2 + - type: FaxMachine + name: Médica + - uid: 10893 + components: + - type: Transform + pos: 11.5,-51.5 + parent: 2 + - type: FaxMachine + name: Engenheiro Chefe + - uid: 10894 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 2 + - type: FaxMachine + name: Diretor de Pesquisa + - uid: 10895 + components: + - type: Transform + pos: -25.5,6.5 + parent: 2 + - type: FaxMachine + name: Intendente de Carga + - uid: 10896 + components: + - type: Transform + pos: -26.5,44.5 + parent: 2 + - type: FaxMachine + name: Segurança Chefe + - uid: 10897 + components: + - type: Transform + pos: 42.5,0.5 + parent: 2 + - type: FaxMachine + name: Biblioteca +- proto: FaxMachineCaptain + entities: + - uid: 10898 + components: + - type: Transform + pos: -8.5,48.5 + parent: 2 + - type: FaxMachine + name: Capitão +- proto: filingCabinetDrawerRandom + entities: + - uid: 10899 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 2 + - uid: 10901 + components: + - type: Transform + pos: -14.5,33.5 + parent: 2 +- proto: filingCabinetRandom + entities: + - uid: 10903 + components: + - type: Transform + pos: 5.5,27.5 + parent: 2 + - uid: 10904 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 2 + - uid: 10905 + components: + - type: Transform + pos: -35.5,14.5 + parent: 2 + - uid: 10906 + components: + - type: Transform + pos: -21.5,19.5 + parent: 2 + - uid: 10907 + components: + - type: Transform + pos: -20.5,31.5 + parent: 2 + - uid: 10908 + components: + - type: Transform + pos: -8.702238,47.498413 + parent: 2 + - uid: 10909 + components: + - type: Transform + pos: -8.261679,47.498413 + parent: 2 + - uid: 10910 + components: + - type: Transform + pos: 9.766728,52.488533 + parent: 2 + - uid: 10911 + components: + - type: Transform + pos: 9.242252,52.488533 + parent: 2 + - uid: 10912 + components: + - type: Transform + pos: 44.5,-20.5 + parent: 2 +- proto: filingCabinetTallRandom + entities: + - uid: 10915 + components: + - type: Transform + pos: -25.775326,-20.530376 + parent: 2 + - uid: 10916 + components: + - type: Transform + pos: -25.271828,-20.530376 + parent: 2 +- proto: FireAlarm + entities: + - uid: 10917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 11147 + - 11264 + - 11265 + - 11269 + - uid: 10918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 11152 + - 11153 + - 11154 + - 11155 + - 11268 + - 11267 + - 11156 + - 11157 + - 11375 + - 11374 + - 11373 + - 11372 + - uid: 10919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 11152 + - 11153 + - 11154 + - 11155 + - 11268 + - 11267 + - 11156 + - 11157 + - 11375 + - 11374 + - 11373 + - 11372 + - uid: 10920 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 11152 + - 11153 + - 11154 + - 11155 + - 11268 + - 11267 + - 11156 + - 11157 + - 11375 + - 11374 + - 11373 + - 11372 + - uid: 10921 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 11152 + - 11153 + - 11154 + - 11155 + - 11268 + - 11267 + - 11156 + - 11157 + - 11375 + - 11374 + - 11373 + - 11372 + - uid: 10922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 11152 + - 11153 + - 11154 + - 11155 + - 11268 + - 11267 + - 11156 + - 11157 + - 11375 + - 11374 + - 11373 + - 11372 + - uid: 10923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 11152 + - 11153 + - 11154 + - 11155 + - 11268 + - 11267 + - 11156 + - 11157 + - 11375 + - 11374 + - 11373 + - 11372 + - uid: 10924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 11152 + - 11153 + - 11154 + - 11155 + - 11268 + - 11267 + - 11156 + - 11157 + - 11375 + - 11374 + - 11373 + - 11372 + - uid: 10925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 11152 + - 11153 + - 11154 + - 11155 + - 11268 + - 11267 + - 11156 + - 11157 + - 11375 + - 11374 + - 11373 + - 11372 + - uid: 10926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 11377 + - 11372 + - 11234 + - 11376 + - uid: 10927 + components: + - type: Transform + pos: -15.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 11377 + - uid: 10928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 11373 + - 11234 + - uid: 10929 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 11378 + - 11379 + - 11374 + - uid: 10930 + components: + - type: Transform + pos: 9.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 11101 + - 11379 + - uid: 10931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 11375 + - 11090 + - uid: 10932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 11156 + - 11157 + - 11300 + - 11299 + - 11298 + - 11307 + - 11308 + - 11175 + - 11224 + - 11225 + - 11310 + - 11311 + - 11309 + - uid: 10933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 11371 + - 11138 + - uid: 10934 + components: + - type: Transform + pos: -29.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 11371 + - 11148 + - 11149 + - 11150 + - 11151 + - 11153 + - 11152 + - uid: 10935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 11364 + - 11362 + - 11365 + - uid: 10936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 11158 + - 11159 + - 11160 + - 11363 + - 11361 + - 11360 + - 11359 + - 11358 + - 11357 + - 11362 + - uid: 10937 + components: + - type: Transform + pos: -38.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 11357 + - 11358 + - 11359 + - 11360 + - 11366 + - 11367 + - uid: 10938 + components: + - type: Transform + pos: -36.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 11366 + - 11368 + - 11369 + - uid: 10939 + components: + - type: Transform + pos: -36.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 11370 + - 11356 + - 11368 + - 11369 + - uid: 10940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 11355 + - uid: 10941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 11163 + - 11161 + - 11162 + - 11160 + - 11159 + - 11158 + - 11151 + - 11150 + - 11149 + - 11148 + - 11356 + - 11355 + - uid: 10942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 11363 + - uid: 10943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,14.5 + parent: 2 + - type: DeviceList + devices: + - 11367 + - uid: 10944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 11341 + - 11340 + - uid: 10945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 11163 + - 11162 + - 11161 + - 11341 + - 11353 + - 11170 + - 11339 + - 11167 + - 11168 + - 11169 + - 11354 + - uid: 10946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 11169 + - 11168 + - 11167 + - 11338 + - 11164 + - 11165 + - 11166 + - 11337 + - 11336 + - 11335 + - 11334 + - 11333 + - 11173 + - 11172 + - 11171 + - 11121 + - uid: 10947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 11164 + - 11165 + - 11166 + - 11344 + - 11345 + - 11346 + - 11343 + - 11342 + - 11120 + - uid: 10948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-36.5 + parent: 2 + - uid: 10949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 11337 + - uid: 10950 + components: + - type: Transform + pos: -36.5,-40.5 + parent: 2 + - type: DeviceList + devices: + - 11348 + - 11347 + - 11344 + - 11345 + - uid: 10951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 11340 + - 11170 + - 11339 + - 11334 + - uid: 10952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-25.5 + parent: 2 + - type: DeviceList + devices: + - 11340 + - 11170 + - 11339 + - 11334 + - uid: 10953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-23.5 + parent: 2 + - type: DeviceList + devices: + - 11307 + - uid: 10954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 11335 + - 11135 + - uid: 10955 + components: + - type: Transform + pos: -6.5,-25.5 + parent: 2 + - type: DeviceList + devices: + - 11173 + - 11172 + - 11171 + - 11330 + - 11332 + - uid: 10956 + components: + - type: Transform + pos: -5.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 11175 + - 11330 + - 11174 + - uid: 10957 + components: + - type: Transform + pos: -5.5,-29.5 + parent: 2 + - uid: 10958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 11176 + - 11177 + - 11179 + - 11180 + - 11181 + - 11178 + - 14672 + - 14913 + - uid: 10959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-46.5 + parent: 2 + - type: DeviceList + devices: + - 11179 + - 11180 + - 11176 + - 11177 + - 11181 + - 11178 + - 11228 + - 11122 + - uid: 10960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-37.5 + parent: 2 + - type: DeviceList + devices: + - 11347 + - 11348 + - 11118 + - uid: 10961 + components: + - type: Transform + pos: -19.5,-54.5 + parent: 2 + - type: DeviceList + devices: + - 11231 + - 11230 + - 11134 + - uid: 10962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 11309 + - 11331 + - uid: 10963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 11182 + - 11183 + - 11184 + - 11185 + - 11266 + - 11267 + - 11268 + - 11265 + - 11264 + - uid: 10964 + components: + - type: Transform + pos: 27.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 11182 + - 11183 + - 11184 + - 11185 + - 11266 + - 11267 + - 11268 + - 11265 + - 11264 + - uid: 10965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 11126 + - 11266 + - 11185 + - uid: 10966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-14.5 + parent: 2 + - type: DeviceList + devices: + - 11297 + - 11296 + - 11295 + - 11129 + - uid: 10967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 11197 + - 11196 + - 11195 + - 11192 + - 11193 + - 11194 + - 11186 + - 11187 + - 11188 + - 11189 + - 11190 + - 11191 + - 11184 + - 11183 + - 11182 + - 11262 + - uid: 10968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 11194 + - 11193 + - 11192 + - 11229 + - 11235 + - 11236 + - 11237 + - 11238 + - uid: 10969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 11243 + - 11240 + - 11239 + - 11238 + - 11237 + - 11236 + - 11235 + - 11242 + - uid: 10970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 11195 + - 11196 + - 11197 + - 11245 + - 11229 + - 11242 + - 11244 + - 11247 + - 11246 + - uid: 10971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 11091 + - 11243 + - uid: 10972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 11102 + - uid: 10973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 11186 + - 11187 + - 11188 + - 11189 + - 11190 + - 11191 + - 11241 + - 11240 + - 11239 + - uid: 10974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 11197 + - 11196 + - 11195 + - 11192 + - 11193 + - 11194 + - 11186 + - 11187 + - 11188 + - 11189 + - 11190 + - 11191 + - 11094 + - 11184 + - 11183 + - 11182 + - 11262 + - 11093 + - uid: 10975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 11248 + - 11245 + - 11247 + - 11246 + - uid: 10976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 11144 + - 11248 + - uid: 10977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 11263 + - uid: 10978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,11.5 + parent: 2 + - uid: 10979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 11145 + - uid: 10980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,28.5 + parent: 2 + - type: DeviceList + devices: + - 11258 + - 11256 + - 11257 + - 11250 + - uid: 10981 + components: + - type: Transform + pos: 35.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 11198 + - 11199 + - 11200 + - 11201 + - 11202 + - 11203 + - 11250 + - 11249 + - 11244 + - 11145 + - uid: 10982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,37.5 + parent: 2 + - type: DeviceList + devices: + - 11259 + - 11260 + - 11256 + - uid: 10983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,44.5 + parent: 2 + - type: DeviceList + devices: + - 11261 + - 11259 + - uid: 10984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,42.5 + parent: 2 + - type: DeviceList + devices: + - 11261 + - 11257 + - uid: 10985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 11198 + - 11199 + - 11200 + - 11201 + - 11202 + - 11203 + - 11250 + - 11249 + - 11244 + - 11145 + - uid: 10986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,37.5 + parent: 2 + - type: DeviceList + devices: + - 11203 + - 11202 + - 11201 + - 11253 + - 11254 + - 11255 + - uid: 10987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,33.5 + parent: 2 + - type: DeviceList + devices: + - 11206 + - 11205 + - 11204 + - 11252 + - 11251 + - uid: 10988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-14.5 + parent: 2 + - type: DeviceList + devices: + - 11269 + - uid: 10989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 11380 + - 11141 + - uid: 10990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 11402 + - 11401 + - 11395 + - 11394 + - 11211 + - 11212 + - 11213 + - 11393 + - 11400 + - 11398 + - uid: 10991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 11388 + - 11387 + - 11208 + - 11209 + - 11210 + - 11385 + - 11386 + - 11383 + - 11384 + - 11211 + - 11212 + - 11213 + - uid: 10992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 11388 + - 11387 + - 11208 + - 11209 + - 11210 + - 11385 + - 11386 + - 11383 + - 11384 + - 11211 + - 11212 + - 11213 + - uid: 10993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 11386 + - 11389 + - 11390 + - uid: 10994 + components: + - type: Transform + pos: -15.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 11392 + - uid: 10995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 11393 + - 11391 + - uid: 10996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 11402 + - 11401 + - 11395 + - 11394 + - 11211 + - 11212 + - 11213 + - 11393 + - 11400 + - 11398 + - uid: 10997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,38.5 + parent: 2 + - type: DeviceList + devices: + - 11390 + - 11226 + - uid: 10998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,37.5 + parent: 2 + - type: DeviceList + devices: + - 11398 + - 11399 + - uid: 10999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,42.5 + parent: 2 + - type: DeviceList + devices: + - 11399 + - uid: 11000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,39.5 + parent: 2 + - type: DeviceList + devices: + - 11400 + - uid: 11001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,25.5 + parent: 2 + - type: DeviceList + devices: + - 11403 + - 11408 + - 11409 + - uid: 11002 + components: + - type: Transform + pos: -37.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 11404 + - 11403 + - 11402 + - uid: 11003 + components: + - type: Transform + pos: -33.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 11402 + - 11401 + - 11395 + - 11394 + - 11211 + - 11212 + - 11213 + - 11393 + - 11400 + - 11398 + - uid: 11004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,25.5 + parent: 2 + - type: DeviceList + devices: + - 11409 + - uid: 11005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,40.5 + parent: 2 + - type: DeviceList + devices: + - 11215 + - 11214 + - 11397 + - 11396 + - 11142 + - uid: 11006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 11411 + - uid: 11007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,33.5 + parent: 2 + - type: DeviceList + devices: + - 11412 + - 11413 + - uid: 11008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,40.5 + parent: 2 + - type: DeviceList + devices: + - 11216 + - 11217 + - 11218 + - 11219 + - 11412 + - 11214 + - 11215 + - 11223 + - 11222 + - 11221 + - 11220 + - uid: 11009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,42.5 + parent: 2 + - type: DeviceList + devices: + - 11223 + - 11222 + - 11221 + - 11220 + - 11414 + - 11415 + - 11416 + - 11417 + - uid: 11010 + components: + - type: Transform + pos: -6.5,51.5 + parent: 2 + - type: DeviceList + devices: + - 11425 + - 11424 + - uid: 11011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,51.5 + parent: 2 + - type: DeviceList + devices: + - 11424 + - 11423 + - uid: 11012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,53.5 + parent: 2 + - type: DeviceList + devices: + - 11223 + - 11222 + - 11221 + - 11220 + - 11414 + - 11415 + - 11416 + - 11417 + - uid: 11013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,46.5 + parent: 2 + - type: DeviceList + devices: + - 11414 + - 11420 + - 11419 + - uid: 11014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,51.5 + parent: 2 + - type: DeviceList + devices: + - 11415 + - 11420 + - 11418 + - uid: 11015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,57.5 + parent: 2 + - type: DeviceList + devices: + - 11423 + - 11422 + - 11421 + - 11418 + - uid: 11016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,76.5 + parent: 2 + - uid: 11017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,84.5 + parent: 2 + - uid: 11018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,83.5 + parent: 2 + - uid: 11019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,74.5 + parent: 2 + - uid: 11020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 11096 + - 11098 + - 11124 + - 11296 + - 11297 + - uid: 11021 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 11096 + - 11098 + - 11124 + - 11296 + - 11297 + - uid: 11022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 11297 + - 11296 + - 11295 + - 11129 + - uid: 11023 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 11293 + - uid: 11024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 11277 + - 11095 + - uid: 11025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 11097 + - 11276 + - 11275 + - 11274 + - uid: 11026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 11270 + - uid: 11027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-27.5 + parent: 2 + - type: DeviceList + devices: + - 11272 + - 11273 + - 11283 + - 11125 + - uid: 11028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-33.5 + parent: 2 + - type: DeviceList + devices: + - 11272 + - 11273 + - 11283 + - 11125 + - uid: 11029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-30.5 + parent: 2 + - type: DeviceList + devices: + - 11283 + - uid: 11030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 11284 + - uid: 11031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 2 + - type: DeviceList + devices: + - 11279 + - 11278 + - 11284 + - 11128 + - uid: 11032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-33.5 + parent: 2 + - type: DeviceList + devices: + - 11285 + - 11286 + - 11287 + - uid: 11033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 11156 + - 11157 + - 11300 + - 11299 + - 11298 + - 11307 + - 11308 + - 11175 + - 11224 + - 11225 + - 11310 + - 11311 + - 11309 + - uid: 11034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 11280 + - 11281 + - 11282 + - 11285 + - 11286 + - 11287 + - 11295 + - 11294 + - 11292 + - 11291 + - 11290 + - 11289 + - 11288 + - 11293 + - uid: 11035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 11300 + - 11299 + - 11298 + - 11292 + - 11291 + - 11290 + - 11303 + - 11302 + - 11301 + - 11304 + - 11305 + - 11306 + - uid: 11036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 11300 + - 11299 + - 11298 + - 11292 + - 11291 + - 11290 + - 11303 + - 11302 + - 11301 + - 11304 + - 11305 + - 11306 + - uid: 11037 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 11314 + - 11315 + - 11318 + - 11324 + - 11323 + - 11131 + - 11130 + - uid: 11038 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 11310 + - 11311 + - 11315 + - 11314 + - 11313 + - 11312 + - uid: 11039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-47.5 + parent: 2 + - type: DeviceList + devices: + - 11225 + - 11224 + - 11312 + - 11313 + - 11318 + - 11317 + - 11316 + - 11320 + - 11321 + - 11319 + - 11322 + - 11132 + - uid: 11040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-56.5 + parent: 2 + - type: DeviceList + devices: + - 11225 + - 11224 + - 11312 + - 11313 + - 11318 + - 11317 + - 11316 + - 11320 + - 11321 + - 11319 + - 11322 + - 11132 + - uid: 11041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-49.5 + parent: 2 + - type: DeviceList + devices: + - 11225 + - 11224 + - 11312 + - 11313 + - 11318 + - 11317 + - 11316 + - 11320 + - 11321 + - 11319 + - 11322 + - 11132 + - uid: 11042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-56.5 + parent: 2 + - type: DeviceList + devices: + - 11319 + - uid: 11043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-43.5 + parent: 2 + - type: DeviceList + devices: + - 11323 + - 11227 + - uid: 11044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-66.5 + parent: 2 + - type: DeviceList + devices: + - 11327 + - 11328 + - 11326 + - 11329 + - 11233 + - 11232 + - uid: 11045 + components: + - type: Transform + pos: -3.5,-54.5 + parent: 2 + - type: DeviceList + devices: + - 11230 + - 11231 + - 11327 + - 11325 + - 11133 + - uid: 11046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-56.5 + parent: 2 + - type: DeviceList + devices: + - 11326 + - 11325 + - 11321 + - 11320 + - uid: 11047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-55.5 + parent: 2 + - type: DeviceList + devices: + - 11230 + - 11231 + - 11327 + - 11325 + - 11133 + - uid: 11048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-65.5 + parent: 2 + - type: DeviceList + devices: + - 11232 + - 11233 + - uid: 11049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-77.5 + parent: 2 + - type: DeviceList + devices: + - 11327 + - 11328 + - 11326 + - 11329 + - 11233 + - 11232 + - uid: 11050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-77.5 + parent: 2 + - type: DeviceList + devices: + - 11327 + - 11328 + - 11326 + - 11329 + - 11233 + - 11232 + - uid: 11051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-71.5 + parent: 2 + - type: DeviceList + devices: + - 11327 + - 11328 + - 11326 + - 11329 + - 11233 + - 11232 + - uid: 11052 + components: + - type: Transform + pos: 0.5,-61.5 + parent: 2 + - type: DeviceList + devices: + - 11327 + - 11328 + - 11326 + - 11329 + - 11233 + - 11232 + - uid: 11053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 11197 + - 11196 + - 11195 + - 11192 + - 11193 + - 11194 + - 11186 + - 11187 + - 11188 + - 11189 + - 11190 + - 11191 + - 11094 + - 11184 + - 11183 + - 11182 + - 11262 + - 11093 + - uid: 11054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 11147 + - 11264 + - 11265 + - 11269 + - uid: 11055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 11147 + - 11270 + - 11282 + - 11281 + - 11280 + - 11279 + - 11278 + - 11277 + - 11276 + - 11275 + - 11274 + - 11272 + - 11273 + - 11271 + - uid: 11056 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 11147 + - 11270 + - 11282 + - 11281 + - 11280 + - 11279 + - 11278 + - 11277 + - 11276 + - 11275 + - 11274 + - 11272 + - 11273 + - 11271 + - uid: 11057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-27.5 + parent: 2 + - type: DeviceList + devices: + - 11280 + - 11281 + - 11282 + - 11285 + - 11286 + - 11287 + - 11295 + - 11294 + - 11292 + - 11291 + - 11290 + - 11289 + - 11288 + - 11293 + - uid: 11058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-33.5 + parent: 2 + - type: DeviceList + devices: + - 11288 + - 11289 + - 11306 + - 11305 + - 11304 + - 11123 + - uid: 11059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-41.5 + parent: 2 + - type: DeviceList + devices: + - 11156 + - 11157 + - 11300 + - 11299 + - 11298 + - 11307 + - 11308 + - 11175 + - 11224 + - 11225 + - 11310 + - 11311 + - 11309 + - uid: 11060 + components: + - type: Transform + pos: 24.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 11314 + - 11315 + - 11318 + - 11324 + - 11323 + - uid: 11061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-59.5 + parent: 2 + - type: DeviceList + devices: + - 11231 + - 11230 + - 11134 + - uid: 11062 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 11173 + - 11172 + - 11171 + - 11330 + - 11332 + - uid: 11063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 11169 + - 11168 + - 11167 + - 11338 + - 11164 + - 11165 + - 11166 + - 11337 + - 11336 + - 11335 + - 11334 + - 11333 + - 11173 + - 11172 + - 11171 + - 11121 + - uid: 11064 + components: + - type: Transform + pos: -36.5,-44.5 + parent: 2 + - type: DeviceList + devices: + - 11351 + - 11350 + - 11346 + - 11349 + - uid: 11065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-53.5 + parent: 2 + - type: DeviceList + devices: + - 11351 + - 11350 + - 11346 + - 11349 + - uid: 11066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-23.5 + parent: 2 + - type: DeviceList + devices: + - 11333 + - 11352 + - uid: 11067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-24.5 + parent: 2 + - uid: 11068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 11163 + - 11162 + - 11161 + - 11341 + - 11353 + - 11170 + - 11339 + - 11167 + - 11168 + - 11169 + - 11354 + - uid: 11069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 11163 + - 11161 + - 11162 + - 11160 + - 11159 + - 11158 + - 11151 + - 11150 + - 11149 + - 11148 + - 11356 + - 11355 + - uid: 11070 + components: + - type: Transform + pos: -24.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 11364 + - 11099 + - uid: 11071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 11361 + - 11365 + - 11137 + - uid: 11072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 11366 + - 11368 + - 11369 + - uid: 11073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 11353 + - 11370 + - 11136 + - uid: 11074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 11371 + - 11148 + - 11149 + - 11150 + - 11151 + - 11153 + - 11152 + - uid: 11075 + components: + - type: Transform + pos: -4.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 11380 + - 11381 + - 11382 + - 11376 + - 11207 + - 11140 + - uid: 11076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 11392 + - 11391 + - 11385 + - 11389 + - uid: 11077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 11407 + - 11406 + - 11405 + - 11404 + - uid: 11078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 11401 + - uid: 11079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 11408 + - uid: 11080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 11154 + - 11155 + - 11207 + - 11378 + - 11410 + - 11216 + - 11217 + - 11218 + - 11219 + - 11411 + - uid: 11081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 11154 + - 11155 + - 11207 + - 11378 + - 11410 + - 11216 + - 11217 + - 11218 + - 11219 + - 11411 + - uid: 11082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,24.5 + parent: 2 + - type: DeviceList + devices: + - 11410 + - 11143 + - uid: 11083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,40.5 + parent: 2 + - type: DeviceList + devices: + - 11413 + - uid: 11084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 11104 +- proto: FireAxeCabinetFilled + entities: + - uid: 11085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,55.5 + parent: 2 + - uid: 11086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-56.5 + parent: 2 +- proto: FireExtinguisher + entities: + - uid: 11087 + components: + - type: Transform + pos: -22.658726,-31.175625 + parent: 2 + - uid: 11088 + components: + - type: Transform + pos: 36.285145,-46.385895 + parent: 2 +- proto: Firelock + entities: + - uid: 11089 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 2 + - uid: 11090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,14.5 + parent: 2 + - uid: 11091 + components: + - type: Transform + pos: 23.5,24.5 + parent: 2 + - uid: 11092 + components: + - type: Transform + pos: 44.5,23.5 + parent: 2 + - uid: 11093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,11.5 + parent: 2 + - uid: 11094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,5.5 + parent: 2 + - uid: 11095 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 2 + - uid: 11096 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 + - uid: 11097 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 2 + - uid: 11098 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 + - uid: 11099 + components: + - type: Transform + pos: -22.5,7.5 + parent: 2 + - uid: 11100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,16.5 + parent: 2 + - uid: 11101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,18.5 + parent: 2 + - uid: 11102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,17.5 + parent: 2 + - uid: 11103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,26.5 + parent: 2 + - uid: 11104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,24.5 + parent: 2 + - uid: 11105 + components: + - type: Transform + pos: -7.5,45.5 + parent: 2 + - uid: 11106 + components: + - type: Transform + pos: -3.5,46.5 + parent: 2 + - uid: 11107 + components: + - type: Transform + pos: -26.5,16.5 + parent: 2 + - uid: 11108 + components: + - type: Transform + pos: -27.5,22.5 + parent: 2 + - uid: 11109 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 11110 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 + - uid: 11111 + components: + - type: Transform + pos: -5.5,-50.5 + parent: 2 + - uid: 11112 + components: + - type: Transform + pos: 21.5,-34.5 + parent: 2 + - uid: 11113 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - uid: 11114 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 2 + - uid: 11115 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 2 + - uid: 11116 + components: + - type: Transform + pos: -38.5,-28.5 + parent: 2 + - uid: 11117 + components: + - type: Transform + pos: -39.5,-28.5 + parent: 2 + - uid: 11118 + components: + - type: Transform + pos: -40.5,-30.5 + parent: 2 + - uid: 11119 + components: + - type: Transform + pos: -38.5,-34.5 + parent: 2 + - uid: 11120 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 + - uid: 11121 + components: + - type: Transform + pos: -36.5,-32.5 + parent: 2 + - uid: 11122 + components: + - type: Transform + pos: -12.5,-50.5 + parent: 2 + - uid: 11123 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 2 + - uid: 11124 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 2 + - uid: 11125 + components: + - type: Transform + pos: 37.5,-31.5 + parent: 2 + - uid: 11126 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 + - uid: 11127 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - uid: 11128 + components: + - type: Transform + pos: 27.5,-33.5 + parent: 2 + - uid: 11129 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 + - uid: 11130 + components: + - type: Transform + pos: 13.5,-39.5 + parent: 2 + - uid: 11131 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 2 + - uid: 11132 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 2 + - uid: 11133 + components: + - type: Transform + pos: -5.5,-54.5 + parent: 2 + - uid: 11134 + components: + - type: Transform + pos: -15.5,-54.5 + parent: 2 + - uid: 11135 + components: + - type: Transform + pos: -21.5,-34.5 + parent: 2 + - uid: 11136 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 2 + - uid: 11137 + components: + - type: Transform + pos: -24.5,11.5 + parent: 2 + - uid: 11138 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 2 + - uid: 11139 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 11140 + components: + - type: Transform + pos: -16.5,17.5 + parent: 2 + - uid: 11141 + components: + - type: Transform + pos: -20.5,17.5 + parent: 2 + - uid: 11142 + components: + - type: Transform + pos: -4.5,41.5 + parent: 2 + - uid: 11143 + components: + - type: Transform + pos: 7.5,23.5 + parent: 2 + - uid: 11144 + components: + - type: Transform + pos: 42.5,20.5 + parent: 2 + - uid: 11145 + components: + - type: Transform + pos: 38.5,25.5 + parent: 2 +- proto: FirelockFrame + entities: + - uid: 11146 + components: + - type: Transform + pos: 32.5,-36.5 + parent: 2 +- proto: FirelockGlass + entities: + - uid: 11147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-13.5 + parent: 2 + - uid: 11148 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 2 + - uid: 11149 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 + - uid: 11150 + components: + - type: Transform + pos: -30.5,1.5 + parent: 2 + - uid: 11151 + components: + - type: Transform + pos: -30.5,2.5 + parent: 2 + - uid: 11152 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 11153 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 11154 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 11155 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 11156 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 + - uid: 11157 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 2 + - uid: 11158 + components: + - type: Transform + pos: -32.5,3.5 + parent: 2 + - uid: 11159 + components: + - type: Transform + pos: -33.5,3.5 + parent: 2 + - uid: 11160 + components: + - type: Transform + pos: -34.5,3.5 + parent: 2 + - uid: 11161 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 2 + - uid: 11162 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 2 + - uid: 11163 + components: + - type: Transform + pos: -32.5,-14.5 + parent: 2 + - uid: 11164 + components: + - type: Transform + pos: -32.5,-35.5 + parent: 2 + - uid: 11165 + components: + - type: Transform + pos: -33.5,-35.5 + parent: 2 + - uid: 11166 + components: + - type: Transform + pos: -34.5,-35.5 + parent: 2 + - uid: 11167 + components: + - type: Transform + pos: -32.5,-25.5 + parent: 2 + - uid: 11168 + components: + - type: Transform + pos: -33.5,-25.5 + parent: 2 + - uid: 11169 + components: + - type: Transform + pos: -34.5,-25.5 + parent: 2 + - uid: 11170 + components: + - type: Transform + pos: -27.5,-21.5 + parent: 2 + - uid: 11171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-28.5 + parent: 2 + - uid: 11172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-27.5 + parent: 2 + - uid: 11173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-26.5 + parent: 2 + - uid: 11174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-34.5 + parent: 2 + - uid: 11175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-31.5 + parent: 2 + - uid: 11176 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 2 + - uid: 11177 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 2 + - uid: 11178 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 2 + - uid: 11179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-46.5 + parent: 2 + - uid: 11180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-46.5 + parent: 2 + - uid: 11181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-46.5 + parent: 2 + - uid: 11182 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 11183 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 11184 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 11185 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - uid: 11186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,12.5 + parent: 2 + - uid: 11187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,12.5 + parent: 2 + - uid: 11188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,12.5 + parent: 2 + - uid: 11189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,12.5 + parent: 2 + - uid: 11190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,12.5 + parent: 2 + - uid: 11191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,12.5 + parent: 2 + - uid: 11192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,12.5 + parent: 2 + - uid: 11193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,12.5 + parent: 2 + - uid: 11194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,12.5 + parent: 2 + - uid: 11195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,12.5 + parent: 2 + - uid: 11196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,12.5 + parent: 2 + - uid: 11197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,12.5 + parent: 2 + - uid: 11198 + components: + - type: Transform + pos: 41.5,29.5 + parent: 2 + - uid: 11199 + components: + - type: Transform + pos: 41.5,28.5 + parent: 2 + - uid: 11200 + components: + - type: Transform + pos: 41.5,27.5 + parent: 2 + - uid: 11201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,34.5 + parent: 2 + - uid: 11202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,34.5 + parent: 2 + - uid: 11203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,34.5 + parent: 2 + - uid: 11204 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 11205 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 11206 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 + - uid: 11207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,19.5 + parent: 2 + - uid: 11208 + components: + - type: Transform + pos: -2.5,25.5 + parent: 2 + - uid: 11209 + components: + - type: Transform + pos: -7.5,25.5 + parent: 2 + - uid: 11210 + components: + - type: Transform + pos: -11.5,25.5 + parent: 2 + - uid: 11211 + components: + - type: Transform + pos: -17.5,27.5 + parent: 2 + - uid: 11212 + components: + - type: Transform + pos: -17.5,28.5 + parent: 2 + - uid: 11213 + components: + - type: Transform + pos: -17.5,29.5 + parent: 2 + - uid: 11214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,37.5 + parent: 2 + - uid: 11215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,38.5 + parent: 2 + - uid: 11216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,31.5 + parent: 2 + - uid: 11217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,31.5 + parent: 2 + - uid: 11218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,31.5 + parent: 2 + - uid: 11219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,31.5 + parent: 2 + - uid: 11220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,41.5 + parent: 2 + - uid: 11221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,41.5 + parent: 2 + - uid: 11222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,41.5 + parent: 2 + - uid: 11223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,41.5 + parent: 2 + - uid: 11224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-43.5 + parent: 2 + - uid: 11225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-43.5 + parent: 2 + - uid: 11226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,40.5 + parent: 2 + - uid: 11227 + components: + - type: Transform + pos: 39.5,-43.5 + parent: 2 + - uid: 11228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-48.5 + parent: 2 + - uid: 11229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,14.5 + parent: 2 + - uid: 11230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-58.5 + parent: 2 + - uid: 11231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-57.5 + parent: 2 + - uid: 11232 + components: + - type: Transform + pos: 9.5,-64.5 + parent: 2 + - uid: 11233 + components: + - type: Transform + pos: 9.5,-63.5 + parent: 2 + - uid: 11234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,15.5 + parent: 2 + - uid: 11235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,15.5 + parent: 2 + - uid: 11236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,15.5 + parent: 2 + - uid: 11237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,15.5 + parent: 2 + - uid: 11238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,15.5 + parent: 2 + - uid: 11239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,15.5 + parent: 2 + - uid: 11240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,15.5 + parent: 2 + - uid: 11241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,15.5 + parent: 2 + - uid: 11242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,16.5 + parent: 2 + - uid: 11243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,20.5 + parent: 2 + - uid: 11244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,21.5 + parent: 2 + - uid: 11245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,16.5 + parent: 2 + - uid: 11246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,14.5 + parent: 2 + - uid: 11247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,15.5 + parent: 2 + - uid: 11248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,18.5 + parent: 2 + - uid: 11249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,23.5 + parent: 2 + - uid: 11250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,31.5 + parent: 2 + - uid: 11251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,35.5 + parent: 2 + - uid: 11252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,38.5 + parent: 2 + - uid: 11253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,35.5 + parent: 2 + - uid: 11254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,38.5 + parent: 2 + - uid: 11255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,39.5 + parent: 2 + - uid: 11256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,39.5 + parent: 2 + - uid: 11257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,41.5 + parent: 2 + - uid: 11258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,35.5 + parent: 2 + - uid: 11259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,41.5 + parent: 2 + - uid: 11260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,37.5 + parent: 2 + - uid: 11261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,43.5 + parent: 2 + - uid: 11262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,7.5 + parent: 2 + - uid: 11263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,11.5 + parent: 2 + - uid: 11264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 2 + - uid: 11265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 2 + - uid: 11266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-1.5 + parent: 2 + - uid: 11267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,0.5 + parent: 2 + - uid: 11268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,1.5 + parent: 2 + - uid: 11269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-13.5 + parent: 2 + - uid: 11270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-16.5 + parent: 2 + - uid: 11271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-24.5 + parent: 2 + - uid: 11272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-26.5 + parent: 2 + - uid: 11273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-26.5 + parent: 2 + - uid: 11274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-22.5 + parent: 2 + - uid: 11275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-22.5 + parent: 2 + - uid: 11276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-22.5 + parent: 2 + - uid: 11277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-22.5 + parent: 2 + - uid: 11278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-26.5 + parent: 2 + - uid: 11279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-26.5 + parent: 2 + - uid: 11280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-25.5 + parent: 2 + - uid: 11281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-24.5 + parent: 2 + - uid: 11282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-23.5 + parent: 2 + - uid: 11283 + components: + - type: Transform + pos: 43.5,-31.5 + parent: 2 + - uid: 11284 + components: + - type: Transform + pos: 29.5,-30.5 + parent: 2 + - uid: 11285 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 2 + - uid: 11286 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 2 + - uid: 11287 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 2 + - uid: 11288 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 2 + - uid: 11289 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 2 + - uid: 11290 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 2 + - uid: 11291 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 2 + - uid: 11292 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 2 + - uid: 11293 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 2 + - uid: 11294 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 + - uid: 11295 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 + - uid: 11296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 2 + - uid: 11297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-12.5 + parent: 2 + - uid: 11298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-25.5 + parent: 2 + - uid: 11299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-24.5 + parent: 2 + - uid: 11300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-23.5 + parent: 2 + - uid: 11301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 2 + - uid: 11302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-20.5 + parent: 2 + - uid: 11303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-20.5 + parent: 2 + - uid: 11304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-28.5 + parent: 2 + - uid: 11305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-28.5 + parent: 2 + - uid: 11306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-28.5 + parent: 2 + - uid: 11307 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 11308 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 2 + - uid: 11309 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 2 + - uid: 11310 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 2 + - uid: 11311 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 2 + - uid: 11312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-43.5 + parent: 2 + - uid: 11313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-43.5 + parent: 2 + - uid: 11314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-41.5 + parent: 2 + - uid: 11315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-40.5 + parent: 2 + - uid: 11316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-50.5 + parent: 2 + - uid: 11317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-49.5 + parent: 2 + - uid: 11318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-47.5 + parent: 2 + - uid: 11319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-52.5 + parent: 2 + - uid: 11320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-53.5 + parent: 2 + - uid: 11321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-55.5 + parent: 2 + - uid: 11322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-57.5 + parent: 2 + - uid: 11323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-44.5 + parent: 2 + - uid: 11324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-51.5 + parent: 2 + - uid: 11325 + components: + - type: Transform + pos: 1.5,-57.5 + parent: 2 + - uid: 11326 + components: + - type: Transform + pos: 3.5,-61.5 + parent: 2 + - uid: 11327 + components: + - type: Transform + pos: -3.5,-61.5 + parent: 2 + - uid: 11328 + components: + - type: Transform + pos: 0.5,-65.5 + parent: 2 + - uid: 11329 + components: + - type: Transform + pos: 7.5,-61.5 + parent: 2 + - uid: 11330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-29.5 + parent: 2 + - uid: 11331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-38.5 + parent: 2 + - uid: 11332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-27.5 + parent: 2 + - uid: 11333 + components: + - type: Transform + pos: -16.5,-25.5 + parent: 2 + - uid: 11334 + components: + - type: Transform + pos: -22.5,-25.5 + parent: 2 + - uid: 11335 + components: + - type: Transform + pos: -21.5,-29.5 + parent: 2 + - uid: 11336 + components: + - type: Transform + pos: -24.5,-32.5 + parent: 2 + - uid: 11337 + components: + - type: Transform + pos: -29.5,-33.5 + parent: 2 + - uid: 11338 + components: + - type: Transform + pos: -29.5,-28.5 + parent: 2 + - uid: 11339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-22.5 + parent: 2 + - uid: 11340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-17.5 + parent: 2 + - uid: 11341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-17.5 + parent: 2 + - uid: 11342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-40.5 + parent: 2 + - uid: 11343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-37.5 + parent: 2 + - uid: 11344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-42.5 + parent: 2 + - uid: 11345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-43.5 + parent: 2 + - uid: 11346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-44.5 + parent: 2 + - uid: 11347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-37.5 + parent: 2 + - uid: 11348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-37.5 + parent: 2 + - uid: 11349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-47.5 + parent: 2 + - uid: 11350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-46.5 + parent: 2 + - uid: 11351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-50.5 + parent: 2 + - uid: 11352 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 2 + - uid: 11353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-19.5 + parent: 2 + - uid: 11354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-25.5 + parent: 2 + - uid: 11355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-11.5 + parent: 2 + - uid: 11356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 2 + - uid: 11357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,6.5 + parent: 2 + - uid: 11358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,7.5 + parent: 2 + - uid: 11359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,9.5 + parent: 2 + - uid: 11360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,10.5 + parent: 2 + - uid: 11361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,10.5 + parent: 2 + - uid: 11362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,6.5 + parent: 2 + - uid: 11363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,13.5 + parent: 2 + - uid: 11364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,7.5 + parent: 2 + - uid: 11365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,9.5 + parent: 2 + - uid: 11366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,5.5 + parent: 2 + - uid: 11367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,13.5 + parent: 2 + - uid: 11368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-6.5 + parent: 2 + - uid: 11369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-6.5 + parent: 2 + - uid: 11370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-14.5 + parent: 2 + - uid: 11371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-1.5 + parent: 2 + - uid: 11372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 2 + - uid: 11373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 2 + - uid: 11374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,12.5 + parent: 2 + - uid: 11375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,10.5 + parent: 2 + - uid: 11376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,17.5 + parent: 2 + - uid: 11377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,11.5 + parent: 2 + - uid: 11378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,18.5 + parent: 2 + - uid: 11379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,18.5 + parent: 2 + - uid: 11380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,19.5 + parent: 2 + - uid: 11381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,21.5 + parent: 2 + - uid: 11382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,21.5 + parent: 2 + - uid: 11383 + components: + - type: Transform + pos: -14.5,24.5 + parent: 2 + - uid: 11384 + components: + - type: Transform + pos: -16.5,24.5 + parent: 2 + - uid: 11385 + components: + - type: Transform + pos: -15.5,30.5 + parent: 2 + - uid: 11386 + components: + - type: Transform + pos: -12.5,30.5 + parent: 2 + - uid: 11387 + components: + - type: Transform + pos: -4.5,32.5 + parent: 2 + - uid: 11388 + components: + - type: Transform + pos: -2.5,32.5 + parent: 2 + - uid: 11389 + components: + - type: Transform + pos: -13.5,32.5 + parent: 2 + - uid: 11390 + components: + - type: Transform + pos: -9.5,36.5 + parent: 2 + - uid: 11391 + components: + - type: Transform + pos: -18.5,32.5 + parent: 2 + - uid: 11392 + components: + - type: Transform + pos: -16.5,37.5 + parent: 2 + - uid: 11393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,30.5 + parent: 2 + - uid: 11394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,26.5 + parent: 2 + - uid: 11395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,26.5 + parent: 2 + - uid: 11396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,35.5 + parent: 2 + - uid: 11397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,35.5 + parent: 2 + - uid: 11398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,37.5 + parent: 2 + - uid: 11399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,42.5 + parent: 2 + - uid: 11400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,35.5 + parent: 2 + - uid: 11401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,26.5 + parent: 2 + - uid: 11402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,29.5 + parent: 2 + - uid: 11403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,27.5 + parent: 2 + - uid: 11404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,29.5 + parent: 2 + - uid: 11405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,32.5 + parent: 2 + - uid: 11406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,35.5 + parent: 2 + - uid: 11407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,38.5 + parent: 2 + - uid: 11408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,24.5 + parent: 2 + - uid: 11409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,26.5 + parent: 2 + - uid: 11410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,26.5 + parent: 2 + - uid: 11411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,29.5 + parent: 2 + - uid: 11412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,34.5 + parent: 2 + - uid: 11413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,36.5 + parent: 2 + - uid: 11414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,47.5 + parent: 2 + - uid: 11415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,52.5 + parent: 2 + - uid: 11416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,54.5 + parent: 2 + - uid: 11417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,54.5 + parent: 2 + - uid: 11418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,57.5 + parent: 2 + - uid: 11419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,49.5 + parent: 2 + - uid: 11420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,51.5 + parent: 2 + - uid: 11421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,57.5 + parent: 2 + - uid: 11422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,57.5 + parent: 2 + - uid: 11423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,57.5 + parent: 2 + - uid: 11424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,51.5 + parent: 2 + - uid: 11425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,50.5 + parent: 2 + - uid: 11426 + components: + - type: Transform + pos: -10.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 37 +- proto: Fireplace + entities: + - uid: 11427 + components: + - type: Transform + pos: -5.5,56.5 + parent: 2 +- proto: Flash + entities: + - uid: 11428 + components: + - type: Transform + pos: -16.97403,11.588499 + parent: 2 + - uid: 11429 + components: + - type: Transform + pos: -19.61,-22.436773 + parent: 2 + - uid: 11430 + components: + - type: Transform + pos: -19.768509,-22.390152 + parent: 2 + - uid: 11431 + components: + - type: Transform + pos: -19.70324,-22.306236 + parent: 2 + - uid: 11432 + components: + - type: Transform + pos: -19.582027,-22.352856 + parent: 2 + - uid: 11433 + components: + - type: Transform + pos: -19.572704,-22.26894 + parent: 2 + - uid: 11434 + components: + - type: Transform + pos: -4.166085,-37.38082 + parent: 2 + - uid: 11435 + components: + - type: Transform + pos: 43.55587,-16.87266 + parent: 2 + - uid: 11436 + components: + - type: Transform + pos: 4.6424813,-18.514095 + parent: 2 +- proto: FlashlightSeclite + entities: + - uid: 11437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.756112,-24.589926 + parent: 2 +- proto: Floodlight + entities: + - uid: 11438 + components: + - type: Transform + pos: -24.347862,15.685556 + parent: 2 + - uid: 11439 + components: + - type: Transform + pos: -25.648563,21.706535 + parent: 2 + - uid: 11440 + components: + - type: Transform + pos: -8.521772,38.478157 + parent: 2 +- proto: FloorDrain + entities: + - uid: 11441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-27.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-10.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-27.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11444 + components: + - type: Transform + pos: -3.5,-32.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11445 + components: + - type: Transform + pos: 22.5,21.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11446 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,51.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,51.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-10.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,12.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-18.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-30.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloraTree01 + entities: + - uid: 11453 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 2 +- proto: FloraTree03 + entities: + - uid: 11454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 2 +- proto: FloraTreeLarge01 + entities: + - uid: 11455 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 +- proto: FloraTreeLarge04 + entities: + - uid: 11456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,4.5 + parent: 2 +- proto: FoamBlade + entities: + - uid: 11457 + components: + - type: Transform + pos: 38.44899,3.6804004 + parent: 2 +- proto: FoodApple + entities: + - uid: 11458 + components: + - type: Transform + pos: -35.58671,-62.39567 + parent: 2 +- proto: FoodBowlBig + entities: + - uid: 11459 + components: + - type: Transform + pos: -42.46283,33.323154 + parent: 2 +- proto: FoodBowlBigTrash + entities: + - uid: 11460 + components: + - type: Transform + pos: -27.877434,15.233183 + parent: 2 +- proto: FoodBoxDonkpocket + entities: + - uid: 11462 + components: + - type: Transform + pos: -43.297028,-9.454086 + parent: 2 +- proto: FoodBoxDonut + entities: + - uid: 11463 + components: + - type: Transform + pos: 24.600113,9.624147 + parent: 2 + - uid: 11464 + components: + - type: Transform + pos: 14.368227,42.899357 + parent: 2 + - uid: 11465 + components: + - type: Transform + pos: 6.649834,48.905804 + parent: 2 + - uid: 11466 + components: + - type: Transform + pos: 8.730892,54.729946 + parent: 2 + - uid: 11467 + components: + - type: Transform + pos: -3.4389992,52.02765 + parent: 2 +- proto: FoodBoxNugget + entities: + - uid: 11468 + components: + - type: Transform + pos: 26.666939,19.03567 + parent: 2 +- proto: FoodBoxPizzaFilled + entities: + - uid: 11469 + components: + - type: Transform + pos: -29.677326,-14.227869 + parent: 2 +- proto: FoodBreadMimanaSlice + entities: + - uid: 11470 + components: + - type: Transform + pos: -4.3876634,-14.44239 + parent: 2 +- proto: FoodBurgerCheese + entities: + - uid: 11471 + components: + - type: Transform + pos: 18.205593,21.53536 + parent: 2 +- proto: FoodBurgerClown + entities: + - uid: 10535 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FoodBurgerEmpowered + entities: + - uid: 11472 + components: + - type: Transform + pos: -46.584095,-32.412216 + parent: 2 + - uid: 11473 + components: + - type: Transform + pos: -33.68074,26.112938 + parent: 2 +- proto: FoodBurgerMime + entities: + - uid: 10518 + components: + - type: Transform + parent: 10501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FoodBurgerRobot + entities: + - uid: 11474 + components: + - type: Transform + pos: -23.599743,-39.49461 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: FoodBurgerSuper + entities: + - uid: 11475 + components: + - type: Transform + pos: -33.507736,17.583248 + parent: 2 +- proto: FoodCakeClown + entities: + - uid: 10548 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FoodCakeClownSlice + entities: + - uid: 10537 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 11476 + components: + - type: Transform + pos: -25.573101,-41.63894 + parent: 2 +- proto: FoodCarrot + entities: + - uid: 11477 + components: + - type: Transform + pos: -42.207973,34.83871 + parent: 2 +- proto: FoodCartCold + entities: + - uid: 11478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,21.5 + parent: 2 +- proto: FoodCartHot + entities: + - uid: 11479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,21.5 + parent: 2 + - uid: 11480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,25.5 + parent: 2 +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 11481 + components: + - type: Transform + pos: 22.885715,17.965763 + parent: 2 +- proto: FoodDonutChaos + entities: + - uid: 11482 + components: + - type: Transform + pos: -3.4952793,51.595394 + parent: 2 +- proto: FoodDough + entities: + - uid: 11483 + components: + - type: Transform + pos: 26.463253,17.454433 + parent: 2 + - uid: 11484 + components: + - type: Transform + pos: 26.589005,17.642982 + parent: 2 +- proto: FoodDoughFlat + entities: + - uid: 11485 + components: + - type: Transform + pos: 26.485119,18.308397 + parent: 2 +- proto: FoodFrozenSnowconeClown + entities: + - uid: 10540 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSnowconeMime + entities: + - uid: 10508 + components: + - type: Transform + parent: 10501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FoodMealNachos + entities: + - uid: 11486 + components: + - type: Transform + pos: -22.903801,40.606133 + parent: 2 +- proto: FoodMeatClown + entities: + - uid: 10529 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatGoliath + entities: + - uid: 11487 + components: + - type: Transform + pos: -4.485483,-11.321461 + parent: 2 + - type: CollisionWake + enabled: False +- proto: FoodPlate + entities: + - uid: 11488 + components: + - type: Transform + pos: -23.52546,-62.486492 + parent: 2 +- proto: FoodPlateSmallTrash + entities: + - uid: 11489 + components: + - type: Transform + pos: 19.489384,-36.50554 + parent: 2 +- proto: FoodPlateTrash + entities: + - uid: 11490 + components: + - type: Transform + pos: -19.53099,-36.465023 + parent: 2 +- proto: FoodPoppy + entities: + - uid: 11491 + components: + - type: Transform + pos: 17.5766,30.411772 + parent: 2 + - uid: 11492 + components: + - type: Transform + pos: 17.534641,32.775406 + parent: 2 +- proto: FoodShakerPepper + entities: + - uid: 11493 + components: + - type: Transform + pos: 19.499203,5.1753497 + parent: 2 + - uid: 11494 + components: + - type: Transform + pos: 25.507118,5.1008615 + parent: 2 + - uid: 11495 + components: + - type: Transform + pos: 23.285427,9.736036 + parent: 2 + - uid: 11496 + components: + - type: Transform + pos: 26.27533,18.909794 + parent: 2 +- proto: FoodShakerSalt + entities: + - uid: 11497 + components: + - type: Transform + pos: 19.499203,5.026374 + parent: 2 + - uid: 11498 + components: + - type: Transform + pos: 25.507118,4.961197 + parent: 2 + - uid: 11499 + components: + - type: Transform + pos: 23.467247,9.652121 + parent: 2 + - uid: 11500 + components: + - type: Transform + pos: 26.34526,18.727978 + parent: 2 +- proto: FoodSnackMREBrownieOpen + entities: + - uid: 11501 + components: + - type: Transform + pos: -8.392583,56.64848 + parent: 2 +- proto: FoodSoupClown + entities: + - uid: 10534 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FoodTartGapple + entities: + - uid: 11502 + components: + - type: Transform + pos: -31.47277,16.555275 + parent: 2 +- proto: FoodTartMime + entities: + - uid: 10503 + components: + - type: Transform + parent: 10501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FoodTartMimeSlice + entities: + - uid: 10505 + components: + - type: Transform + parent: 10501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: FoodTinPeachesMaint + entities: + - uid: 11503 + components: + - type: Transform + pos: -19.632843,-47.462822 + parent: 2 + - uid: 11504 + components: + - type: Transform + pos: -19.360119,-47.315968 + parent: 2 +- proto: FoodTinPeachesMaintTrash + entities: + - uid: 11505 + components: + - type: Transform + pos: -27.217201,17.785725 + parent: 2 + - uid: 11506 + components: + - type: Transform + pos: -27.364056,17.408104 + parent: 2 + - uid: 11507 + components: + - type: Transform + pos: -27.615803,17.743767 + parent: 2 +- proto: FoodTomato + entities: + - uid: 11508 + components: + - type: Transform + pos: 40.67086,-34.31078 + parent: 2 +- proto: Fork + entities: + - uid: 11509 + components: + - type: Transform + pos: 26.320393,9.959812 + parent: 2 +- proto: FuelDispenser + entities: + - uid: 11510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-49.5 + parent: 2 + - uid: 11511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-57.5 + parent: 2 + - uid: 11512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-61.5 + parent: 2 + - uid: 11513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-63.5 + parent: 2 + - uid: 11514 + components: + - type: Transform + pos: 31.5,-40.5 + parent: 2 + - uid: 11515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-64.5 + parent: 2 + - uid: 11516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,16.5 + parent: 2 +- proto: GasAnalyzer + entities: + - uid: 11517 + components: + - type: Transform + pos: 2.3468375,-58.35682 + parent: 2 + - uid: 11518 + components: + - type: Transform + pos: -7.414138,-63.179836 + parent: 2 + - uid: 11519 + components: + - type: Transform + pos: 29.694004,-52.230232 + parent: 2 +- proto: GasCanisterBrokenBase + entities: + - uid: 11520 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 2 + - uid: 11521 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 2 + - uid: 11522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,47.5 + parent: 2 + - uid: 11523 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 + - uid: 11524 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 2 + - uid: 11525 + components: + - type: Transform + pos: -26.5,-60.5 + parent: 2 + - uid: 11526 + components: + - type: Transform + pos: -31.5,-54.5 + parent: 2 + - uid: 11527 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 2 +- proto: GasFilter + entities: + - uid: 11528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-73.5 + parent: 2 + - uid: 11529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-73.5 + parent: 2 + - uid: 11530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-73.5 + parent: 2 + - uid: 11531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-73.5 + parent: 2 + - uid: 11532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11533 + components: + - type: Transform + pos: 23.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11534 + components: + - type: Transform + pos: 23.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11537 + components: + - type: Transform + pos: 38.5,-45.5 + parent: 2 +- proto: GasFilterFlipped + entities: + - uid: 11538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-64.5 + parent: 2 + - uid: 11539 + components: + - type: Transform + pos: 28.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 11540 + components: + - type: Transform + pos: 28.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 11541 + components: + - type: Transform + pos: 28.5,-58.5 + parent: 2 +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 11542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-62.5 + parent: 2 +- proto: GasMinerNitrousOxide + entities: + - uid: 11543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-62.5 + parent: 2 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 11544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-58.5 + parent: 2 +- proto: GasMinerWaterVapor + entities: + - uid: 11545 + components: + - type: Transform + pos: 37.5,-54.5 + parent: 2 +- proto: GasMixer + entities: + - uid: 11546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' +- proto: GasMixerFlipped + entities: + - uid: 11548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-49.5 + parent: 2 + - uid: 11549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11551 + components: + - type: Transform + pos: 22.5,-59.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 + - type: AtmosPipeColor + color: '#8800FFFF' +- proto: GasOutletInjector + entities: + - uid: 11552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-42.5 + parent: 2 + - uid: 11553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-47.5 + parent: 2 + - uid: 11554 + components: + - type: Transform + pos: -29.5,26.5 + parent: 2 + - uid: 11555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-53.5 + parent: 2 + - uid: 11560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-48.5 + parent: 2 + - uid: 11565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-42.5 + parent: 2 + - uid: 11566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-74.5 + parent: 2 +- proto: GasPassiveVent + entities: + - uid: 612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-68.5 + parent: 2 + - uid: 613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-69.5 + parent: 2 + - uid: 614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-70.5 + parent: 2 + - uid: 11567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 11570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#03E8FCFF' + - uid: 11573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#9003FCFF' + - uid: 14655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-70.5 + parent: 2 + - uid: 14656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-69.5 + parent: 2 + - uid: 14657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-68.5 + parent: 2 +- proto: GasPipeBend + entities: + - uid: 11574 + components: + - type: Transform + pos: 44.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11576 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 2 + - uid: 11577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-41.5 + parent: 2 + - uid: 11579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-42.5 + parent: 2 + - uid: 11580 + components: + - type: Transform + pos: -8.5,-41.5 + parent: 2 + - uid: 11581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-29.5 + parent: 2 + - uid: 11582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-27.5 + parent: 2 + - uid: 11583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-30.5 + parent: 2 + - uid: 11584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11586 + components: + - type: Transform + pos: -24.5,-34.5 + parent: 2 + - uid: 11587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-36.5 + parent: 2 + - uid: 11588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC1703FF' + - uid: 11590 + components: + - type: Transform + pos: 5.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC1703FF' + - uid: 11595 + components: + - type: Transform + pos: 7.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC1703FF' + - uid: 11596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC6603FF' + - uid: 11597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-67.5 + parent: 2 + - uid: 11598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-67.5 + parent: 2 + - uid: 11599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-67.5 + parent: 2 + - uid: 11600 + components: + - type: Transform + pos: 2.5,-67.5 + parent: 2 + - uid: 11601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-70.5 + parent: 2 + - uid: 11602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-70.5 + parent: 2 + - uid: 11603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-70.5 + parent: 2 + - uid: 11609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-68.5 + parent: 2 + - uid: 11610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#03E8FCFF' + - uid: 11612 + components: + - type: Transform + pos: 20.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 11614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11615 + components: + - type: Transform + pos: 29.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 11616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#03E8FCFF' + - uid: 11618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11619 + components: + - type: Transform + pos: 24.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-45.5 + parent: 2 + - uid: 11624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-44.5 + parent: 2 + - uid: 11625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-48.5 + parent: 2 + - uid: 11626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 11627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 11628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 11629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 11630 + components: + - type: Transform + pos: 28.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFA500FF' + - uid: 11635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFA500FF' + - uid: 11636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-37.5 + parent: 2 + - uid: 11638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11640 + components: + - type: Transform + pos: 27.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11642 + components: + - type: Transform + pos: 25.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11643 + components: + - type: Transform + pos: 25.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11648 + components: + - type: Transform + pos: -41.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-37.5 + parent: 2 + - uid: 11651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11654 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11655 + components: + - type: Transform + pos: 6.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11674 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11676 + components: + - type: Transform + pos: -16.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11686 + components: + - type: Transform + pos: 7.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11688 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11690 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11693 + components: + - type: Transform + pos: 28.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11694 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11697 + components: + - type: Transform + pos: 44.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11699 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11703 + components: + - type: Transform + pos: 34.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11705 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11706 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11709 + components: + - type: Transform + pos: 8.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11725 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11727 + components: + - type: Transform + pos: 32.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11728 + components: + - type: Transform + pos: 41.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11732 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11733 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11736 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11743 + components: + - type: Transform + pos: 30.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11744 + components: + - type: Transform + pos: 33.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11746 + components: + - type: Transform + pos: 16.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11749 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11751 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11753 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11755 + components: + - type: Transform + pos: -24.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11757 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11761 + components: + - type: Transform + pos: -28.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11767 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11778 + components: + - type: Transform + pos: -29.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11780 + components: + - type: Transform + pos: -26.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11783 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11788 + components: + - type: Transform + pos: -3.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11789 + components: + - type: Transform + pos: -14.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11799 + components: + - type: Transform + pos: -22.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11810 + components: + - type: Transform + pos: 6.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11812 + components: + - type: Transform + pos: 3.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11818 + components: + - type: Transform + pos: -4.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11821 + components: + - type: Transform + pos: -3.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11828 + components: + - type: Transform + pos: 5.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11830 + components: + - type: Transform + pos: 6.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11837 + components: + - type: Transform + pos: -5.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-28.5 + parent: 2 + - uid: 11843 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-30.5 + parent: 2 +- proto: GasPipeFourway + entities: + - uid: 11846 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 2 + - uid: 11847 + components: + - type: Transform + pos: 1.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11848 + components: + - type: Transform + pos: 28.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11849 + components: + - type: Transform + pos: 23.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11850 + components: + - type: Transform + pos: 28.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 11851 + components: + - type: Transform + pos: -22.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11852 + components: + - type: Transform + pos: -12.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11853 + components: + - type: Transform + pos: -12.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11854 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11855 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11856 + components: + - type: Transform + pos: 38.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11857 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11858 + components: + - type: Transform + pos: -4.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11859 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11860 + components: + - type: Transform + pos: -34.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11861 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11862 + components: + - type: Transform + pos: 1.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11863 + components: + - type: Transform + pos: -16.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11864 + components: + - type: Transform + pos: -16.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11865 + components: + - type: Transform + pos: -35.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11866 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11867 + components: + - type: Transform + pos: 0.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11868 + components: + - type: Transform + pos: 28.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11869 + components: + - type: Transform + pos: 28.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11870 + components: + - type: Transform + pos: 28.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11871 + components: + - type: Transform + pos: 8.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11872 + components: + - type: Transform + pos: -2.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11873 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11874 + components: + - type: Transform + pos: 16.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11875 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11876 + components: + - type: Transform + pos: -32.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11877 + components: + - type: Transform + pos: -10.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11878 + components: + - type: Transform + pos: -14.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11879 + components: + - type: Transform + pos: -14.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11880 + components: + - type: Transform + pos: -4.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPipeStraight + entities: + - uid: 11881 + components: + - type: Transform + pos: -4.5,63.5 + parent: 2 + - uid: 11882 + components: + - type: Transform + pos: -10.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11883 + components: + - type: Transform + pos: 44.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11886 + components: + - type: Transform + pos: -6.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11888 + components: + - type: Transform + pos: 8.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11889 + components: + - type: Transform + pos: 8.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11891 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 2 + - uid: 11892 + components: + - type: Transform + pos: -11.5,-39.5 + parent: 2 + - uid: 11893 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 2 + - uid: 11894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-41.5 + parent: 2 + - uid: 11895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-47.5 + parent: 2 + - uid: 11896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-47.5 + parent: 2 + - uid: 11897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-45.5 + parent: 2 + - uid: 11898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-45.5 + parent: 2 + - uid: 11899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-47.5 + parent: 2 + - uid: 11900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-47.5 + parent: 2 + - uid: 11901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-45.5 + parent: 2 + - uid: 11902 + components: + - type: Transform + pos: -29.5,25.5 + parent: 2 + - uid: 11903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11907 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-37.5 + parent: 2 + - uid: 11912 + components: + - type: Transform + pos: -12.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11914 + components: + - type: Transform + pos: 26.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#20FC03FF' + - uid: 11918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#20FC03FF' + - uid: 11919 + components: + - type: Transform + pos: -4.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#20FC03FF' + - uid: 11920 + components: + - type: Transform + pos: -4.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#20FC03FF' + - uid: 11921 + components: + - type: Transform + pos: -4.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#20FC03FF' + - uid: 11922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#20FC03FF' + - uid: 11923 + components: + - type: Transform + pos: -0.5,-65.5 + parent: 2 + - uid: 11924 + components: + - type: Transform + pos: 1.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11926 + components: + - type: Transform + pos: 5.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11927 + components: + - type: Transform + pos: 5.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11928 + components: + - type: Transform + pos: 5.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11929 + components: + - type: Transform + pos: 5.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11930 + components: + - type: Transform + pos: 5.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11931 + components: + - type: Transform + pos: 5.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11932 + components: + - type: Transform + pos: 5.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11933 + components: + - type: Transform + pos: 5.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11934 + components: + - type: Transform + pos: 5.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC1703FF' + - uid: 11940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC1703FF' + - uid: 11941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC1703FF' + - uid: 11942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC1703FF' + - uid: 11943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC1703FF' + - uid: 11944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC6603FF' + - uid: 11945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC1703FF' + - uid: 11946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC1703FF' + - uid: 11947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC1703FF' + - uid: 11948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC6603FF' + - uid: 11951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC6603FF' + - uid: 11952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC6603FF' + - uid: 11953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-70.5 + parent: 2 + - uid: 11954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-68.5 + parent: 2 + - uid: 11955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-70.5 + parent: 2 + - uid: 11956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-68.5 + parent: 2 + - uid: 11957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-69.5 + parent: 2 + - uid: 11981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11986 + components: + - type: Transform + pos: 20.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 11987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 11988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11990 + components: + - type: Transform + pos: 23.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11994 + components: + - type: Transform + pos: 32.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11995 + components: + - type: Transform + pos: 28.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11996 + components: + - type: Transform + pos: 32.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 11998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11999 + components: + - type: Transform + pos: 26.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12000 + components: + - type: Transform + pos: 26.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12002 + components: + - type: Transform + pos: 23.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12003 + components: + - type: Transform + pos: 23.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#9003FCFF' + - uid: 12005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#9003FCFF' + - uid: 12006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#9003FCFF' + - uid: 12007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12009 + components: + - type: Transform + pos: 26.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12010 + components: + - type: Transform + pos: 28.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 12011 + components: + - type: Transform + pos: 23.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12012 + components: + - type: Transform + pos: 22.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#03E8FCFF' + - uid: 12013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12014 + components: + - type: Transform + pos: 26.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 12016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#03E8FCFF' + - uid: 12017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#03E8FCFF' + - uid: 12018 + components: + - type: Transform + pos: 26.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12019 + components: + - type: Transform + pos: 26.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12020 + components: + - type: Transform + pos: 26.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#03E8FCFF' + - uid: 12022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 12023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#03E8FCFF' + - uid: 12024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 12025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#03E8FCFF' + - uid: 12026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 12027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 12028 + components: + - type: Transform + pos: 26.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 12030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 12031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 12032 + components: + - type: Transform + pos: 26.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 12033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12053 + components: + - type: Transform + pos: 26.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12054 + components: + - type: Transform + pos: 28.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 12055 + components: + - type: Transform + pos: 26.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12057 + components: + - type: Transform + pos: 28.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 12058 + components: + - type: Transform + pos: 28.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 12059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 12060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12061 + components: + - type: Transform + pos: 32.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12078 + components: + - type: Transform + pos: 23.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12079 + components: + - type: Transform + pos: 23.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12080 + components: + - type: Transform + pos: 23.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12081 + components: + - type: Transform + pos: 23.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12082 + components: + - type: Transform + pos: 23.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-44.5 + parent: 2 + - uid: 12099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-44.5 + parent: 2 + - uid: 12100 + components: + - type: Transform + pos: 38.5,-46.5 + parent: 2 + - uid: 12101 + components: + - type: Transform + pos: 38.5,-47.5 + parent: 2 + - uid: 12102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-48.5 + parent: 2 + - uid: 12103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-45.5 + parent: 2 + - uid: 12104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 12105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 12106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 12107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 12109 + components: + - type: Transform + pos: -24.5,-35.5 + parent: 2 + - uid: 12110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 12111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 12112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 12113 + components: + - type: Transform + pos: 32.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 12114 + components: + - type: Transform + pos: 32.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 12115 + components: + - type: Transform + pos: 32.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 12116 + components: + - type: Transform + pos: 32.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 12117 + components: + - type: Transform + pos: 32.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 12118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 12119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 12120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 12121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 12122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 12123 + components: + - type: Transform + pos: -24.5,-36.5 + parent: 2 + - uid: 12124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 12125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 12126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 12127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 12128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 12129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 12130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 12131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 12132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 12133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 12134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 12135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 12136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 12137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 12138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 12139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 12140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 12141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 12142 + components: + - type: Transform + pos: 28.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 12143 + components: + - type: Transform + pos: 28.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 12144 + components: + - type: Transform + pos: 28.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 12145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-42.5 + parent: 2 + - uid: 12154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 12155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 12156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFA500FF' + - uid: 12157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFA500FF' + - uid: 12158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12167 + components: + - type: Transform + pos: 27.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-41.5 + parent: 2 + - uid: 12169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12172 + components: + - type: Transform + pos: 27.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12173 + components: + - type: Transform + pos: 25.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12174 + components: + - type: Transform + pos: 25.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12191 + components: + - type: Transform + pos: 25.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12234 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12235 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12236 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12237 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12238 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12239 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12246 + components: + - type: Transform + pos: -6.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12247 + components: + - type: Transform + pos: -6.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12261 + components: + - type: Transform + pos: -24.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12262 + components: + - type: Transform + pos: -24.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12268 + components: + - type: Transform + pos: -32.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12271 + components: + - type: Transform + pos: -32.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12272 + components: + - type: Transform + pos: -32.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12273 + components: + - type: Transform + pos: -32.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12274 + components: + - type: Transform + pos: -32.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12275 + components: + - type: Transform + pos: -32.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12276 + components: + - type: Transform + pos: -32.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12301 + components: + - type: Transform + pos: -6.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-37.5 + parent: 2 + - uid: 12303 + components: + - type: Transform + pos: -12.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12304 + components: + - type: Transform + pos: -12.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12305 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12312 + components: + - type: Transform + pos: -12.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12341 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12366 + components: + - type: Transform + pos: 38.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12367 + components: + - type: Transform + pos: 38.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12368 + components: + - type: Transform + pos: 38.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12369 + components: + - type: Transform + pos: 38.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12370 + components: + - type: Transform + pos: 38.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12372 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12373 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12374 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12375 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12376 + components: + - type: Transform + pos: 38.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12377 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12395 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12396 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12397 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12414 + components: + - type: Transform + pos: 5.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12415 + components: + - type: Transform + pos: 5.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12416 + components: + - type: Transform + pos: 5.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12421 + components: + - type: Transform + pos: 6.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12422 + components: + - type: Transform + pos: 6.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12423 + components: + - type: Transform + pos: 6.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12424 + components: + - type: Transform + pos: 6.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12427 + components: + - type: Transform + pos: 2.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12433 + components: + - type: Transform + pos: -21.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12445 + components: + - type: Transform + pos: -4.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12446 + components: + - type: Transform + pos: -3.5,-61.5 + parent: 2 + - uid: 12447 + components: + - type: Transform + pos: -4.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12448 + components: + - type: Transform + pos: -4.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12449 + components: + - type: Transform + pos: -4.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12450 + components: + - type: Transform + pos: -5.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12451 + components: + - type: Transform + pos: -5.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12452 + components: + - type: Transform + pos: -5.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12453 + components: + - type: Transform + pos: -5.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12454 + components: + - type: Transform + pos: -5.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12455 + components: + - type: Transform + pos: -5.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12456 + components: + - type: Transform + pos: -5.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12457 + components: + - type: Transform + pos: -5.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12475 + components: + - type: Transform + pos: 6.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12476 + components: + - type: Transform + pos: 6.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12477 + components: + - type: Transform + pos: 6.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12478 + components: + - type: Transform + pos: 6.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12479 + components: + - type: Transform + pos: 6.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12480 + components: + - type: Transform + pos: 6.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12481 + components: + - type: Transform + pos: 6.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12482 + components: + - type: Transform + pos: 6.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12483 + components: + - type: Transform + pos: 6.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12511 + components: + - type: Transform + pos: -21.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12512 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12514 + components: + - type: Transform + pos: -23.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12515 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12516 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12517 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12518 + components: + - type: Transform + pos: -21.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12534 + components: + - type: Transform + pos: -34.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 12548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 12549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 12550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 12551 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12571 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12572 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12573 + components: + - type: Transform + pos: -34.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12574 + components: + - type: Transform + pos: -34.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12575 + components: + - type: Transform + pos: -34.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12576 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12577 + components: + - type: Transform + pos: -34.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12578 + components: + - type: Transform + pos: -34.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12579 + components: + - type: Transform + pos: -34.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12580 + components: + - type: Transform + pos: -34.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12581 + components: + - type: Transform + pos: -34.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12582 + components: + - type: Transform + pos: -34.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12601 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12623 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12624 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12625 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12626 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12627 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12628 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12638 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12639 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12640 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12641 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12642 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12643 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12644 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12645 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12646 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12647 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12648 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12649 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12650 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12651 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12669 + components: + - type: Transform + pos: -16.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12670 + components: + - type: Transform + pos: -16.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12671 + components: + - type: Transform + pos: -16.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12672 + components: + - type: Transform + pos: -16.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12673 + components: + - type: Transform + pos: -16.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12674 + components: + - type: Transform + pos: -16.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12675 + components: + - type: Transform + pos: -16.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12676 + components: + - type: Transform + pos: -16.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12681 + components: + - type: Transform + pos: 32.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12706 + components: + - type: Transform + pos: -24.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12725 + components: + - type: Transform + pos: -35.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12726 + components: + - type: Transform + pos: -35.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12731 + components: + - type: Transform + pos: 0.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12741 + components: + - type: Transform + pos: -39.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12745 + components: + - type: Transform + pos: -24.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12746 + components: + - type: Transform + pos: -24.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12747 + components: + - type: Transform + pos: -24.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12748 + components: + - type: Transform + pos: -24.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12749 + components: + - type: Transform + pos: -24.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12761 + components: + - type: Transform + pos: 0.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12762 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12763 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12764 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12765 + components: + - type: Transform + pos: 0.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12766 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12767 + components: + - type: Transform + pos: 0.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12768 + components: + - type: Transform + pos: 0.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12769 + components: + - type: Transform + pos: 0.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12770 + components: + - type: Transform + pos: 0.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12771 + components: + - type: Transform + pos: 0.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12772 + components: + - type: Transform + pos: 0.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12773 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12774 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12797 + components: + - type: Transform + pos: -2.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12798 + components: + - type: Transform + pos: -2.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12799 + components: + - type: Transform + pos: -2.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12800 + components: + - type: Transform + pos: -2.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12804 + components: + - type: Transform + pos: -6.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12805 + components: + - type: Transform + pos: -6.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12806 + components: + - type: Transform + pos: -6.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12807 + components: + - type: Transform + pos: -6.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12808 + components: + - type: Transform + pos: -6.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12811 + components: + - type: Transform + pos: 4.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12812 + components: + - type: Transform + pos: 4.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12813 + components: + - type: Transform + pos: 4.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12814 + components: + - type: Transform + pos: 4.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12874 + components: + - type: Transform + pos: 28.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12875 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12876 + components: + - type: Transform + pos: 28.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12877 + components: + - type: Transform + pos: 28.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12878 + components: + - type: Transform + pos: 28.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12886 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12887 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12888 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12889 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12890 + components: + - type: Transform + pos: 21.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12904 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12905 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12906 + components: + - type: Transform + pos: 28.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12925 + components: + - type: Transform + pos: 28.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12926 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12947 + components: + - type: Transform + pos: 19.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12948 + components: + - type: Transform + pos: 19.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12949 + components: + - type: Transform + pos: 19.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12950 + components: + - type: Transform + pos: 19.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12951 + components: + - type: Transform + pos: 19.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12952 + components: + - type: Transform + pos: 19.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12953 + components: + - type: Transform + pos: 28.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12954 + components: + - type: Transform + pos: 28.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12955 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 12961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12965 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12966 + components: + - type: Transform + pos: 14.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12967 + components: + - type: Transform + pos: 14.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12975 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12976 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12977 + components: + - type: Transform + pos: 44.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12978 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12979 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12980 + components: + - type: Transform + pos: 44.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12982 + components: + - type: Transform + pos: 44.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12991 + components: + - type: Transform + pos: 44.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12992 + components: + - type: Transform + pos: 44.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12996 + components: + - type: Transform + pos: -24.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13009 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13010 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13011 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13012 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13013 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13015 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13029 + components: + - type: Transform + pos: 30.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13034 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13053 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13054 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13055 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13056 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13069 + components: + - type: Transform + pos: 43.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13070 + components: + - type: Transform + pos: 43.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13071 + components: + - type: Transform + pos: 43.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13072 + components: + - type: Transform + pos: 43.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13073 + components: + - type: Transform + pos: 43.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13087 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 + - uid: 13088 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13089 + components: + - type: Transform + pos: 6.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13090 + components: + - type: Transform + pos: 6.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13091 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13102 + components: + - type: Transform + pos: 8.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13103 + components: + - type: Transform + pos: 8.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13104 + components: + - type: Transform + pos: 8.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13105 + components: + - type: Transform + pos: 8.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13106 + components: + - type: Transform + pos: 8.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13111 + components: + - type: Transform + pos: 30.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13114 + components: + - type: Transform + pos: 30.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13119 + components: + - type: Transform + pos: 42.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13121 + components: + - type: Transform + pos: 42.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13123 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13127 + components: + - type: Transform + pos: 42.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13139 + components: + - type: Transform + pos: -2.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13140 + components: + - type: Transform + pos: -2.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13141 + components: + - type: Transform + pos: -2.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13142 + components: + - type: Transform + pos: -2.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13143 + components: + - type: Transform + pos: -2.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13147 + components: + - type: Transform + pos: -6.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13148 + components: + - type: Transform + pos: -6.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13149 + components: + - type: Transform + pos: -6.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13150 + components: + - type: Transform + pos: -6.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13151 + components: + - type: Transform + pos: -6.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13152 + components: + - type: Transform + pos: -6.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13153 + components: + - type: Transform + pos: -6.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13171 + components: + - type: Transform + pos: 7.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13172 + components: + - type: Transform + pos: 7.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13173 + components: + - type: Transform + pos: 7.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13184 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13185 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13186 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13187 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13188 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13189 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13190 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13194 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13195 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13196 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13197 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13198 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13199 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13200 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13201 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13202 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13203 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13224 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13225 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13226 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13227 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13228 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13229 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13281 + components: + - type: Transform + pos: 31.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13282 + components: + - type: Transform + pos: 31.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13283 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13307 + components: + - type: Transform + pos: 36.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13308 + components: + - type: Transform + pos: 32.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC1303FF' + - uid: 13309 + components: + - type: Transform + pos: 32.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13310 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13315 + components: + - type: Transform + pos: 36.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13317 + components: + - type: Transform + pos: 36.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13318 + components: + - type: Transform + pos: 36.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13319 + components: + - type: Transform + pos: 36.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13320 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13348 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13349 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13350 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13351 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13367 + components: + - type: Transform + pos: 30.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13368 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13369 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13370 + components: + - type: Transform + pos: 30.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13371 + components: + - type: Transform + pos: 30.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13403 + components: + - type: Transform + pos: 42.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13404 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13405 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13406 + components: + - type: Transform + pos: 30.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13407 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13411 + components: + - type: Transform + pos: 26.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13412 + components: + - type: Transform + pos: 26.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13417 + components: + - type: Transform + pos: 22.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13418 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13419 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13420 + components: + - type: Transform + pos: 22.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13421 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13446 + components: + - type: Transform + pos: 38.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13447 + components: + - type: Transform + pos: 38.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13448 + components: + - type: Transform + pos: 38.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13449 + components: + - type: Transform + pos: 38.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13450 + components: + - type: Transform + pos: 38.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13468 + components: + - type: Transform + pos: 30.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13483 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13484 + components: + - type: Transform + pos: 33.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13509 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13569 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13570 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13571 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13572 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13573 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13577 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13578 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13579 + components: + - type: Transform + pos: -32.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13580 + components: + - type: Transform + pos: -32.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13581 + components: + - type: Transform + pos: -32.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13582 + components: + - type: Transform + pos: -32.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13586 + components: + - type: Transform + pos: -28.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13587 + components: + - type: Transform + pos: -28.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13591 + components: + - type: Transform + pos: -24.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13593 + components: + - type: Transform + pos: -32.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13594 + components: + - type: Transform + pos: -32.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13595 + components: + - type: Transform + pos: -32.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13596 + components: + - type: Transform + pos: -32.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13597 + components: + - type: Transform + pos: -32.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13615 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13618 + components: + - type: Transform + pos: -40.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13621 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13622 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13623 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13628 + components: + - type: Transform + pos: -38.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13629 + components: + - type: Transform + pos: -38.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13630 + components: + - type: Transform + pos: -38.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13631 + components: + - type: Transform + pos: -38.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13632 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13633 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13634 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13635 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13636 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13637 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13638 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13639 + components: + - type: Transform + pos: -32.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13640 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13641 + components: + - type: Transform + pos: -32.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13642 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13643 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13644 + components: + - type: Transform + pos: -32.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13645 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13646 + components: + - type: Transform + pos: -32.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13660 + components: + - type: Transform + pos: -28.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13661 + components: + - type: Transform + pos: -28.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13662 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13663 + components: + - type: Transform + pos: -28.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13664 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13665 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13666 + components: + - type: Transform + pos: -28.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13668 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13669 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13674 + components: + - type: Transform + pos: -22.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13675 + components: + - type: Transform + pos: -22.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13676 + components: + - type: Transform + pos: -22.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13677 + components: + - type: Transform + pos: -20.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13678 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13679 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13680 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13695 + components: + - type: Transform + pos: -17.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13696 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13697 + components: + - type: Transform + pos: -15.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13698 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13699 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13717 + components: + - type: Transform + pos: -9.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13731 + components: + - type: Transform + pos: -10.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13737 + components: + - type: Transform + pos: -10.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13738 + components: + - type: Transform + pos: -10.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13739 + components: + - type: Transform + pos: -10.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13740 + components: + - type: Transform + pos: -10.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13757 + components: + - type: Transform + pos: -4.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13758 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13759 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13780 + components: + - type: Transform + pos: -34.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13781 + components: + - type: Transform + pos: -34.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13782 + components: + - type: Transform + pos: -34.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13794 + components: + - type: Transform + pos: -43.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13803 + components: + - type: Transform + pos: -34.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13804 + components: + - type: Transform + pos: -34.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13805 + components: + - type: Transform + pos: -34.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13806 + components: + - type: Transform + pos: -34.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13817 + components: + - type: Transform + pos: -34.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13818 + components: + - type: Transform + pos: -34.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13819 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13820 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13821 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13822 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13823 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13824 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13825 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13826 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13827 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13828 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13829 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13830 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13831 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13832 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13833 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13834 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13840 + components: + - type: Transform + pos: 6.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13850 + components: + - type: Transform + pos: -9.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13851 + components: + - type: Transform + pos: -9.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13852 + components: + - type: Transform + pos: -9.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13853 + components: + - type: Transform + pos: -9.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13864 + components: + - type: Transform + pos: -10.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13865 + components: + - type: Transform + pos: -10.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13871 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13872 + components: + - type: Transform + pos: -11.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13887 + components: + - type: Transform + pos: -14.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13888 + components: + - type: Transform + pos: -14.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13889 + components: + - type: Transform + pos: -14.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13890 + components: + - type: Transform + pos: -14.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13891 + components: + - type: Transform + pos: -14.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13892 + components: + - type: Transform + pos: -14.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13893 + components: + - type: Transform + pos: -14.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13894 + components: + - type: Transform + pos: -14.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13896 + components: + - type: Transform + pos: -12.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13897 + components: + - type: Transform + pos: -12.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13898 + components: + - type: Transform + pos: -12.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13899 + components: + - type: Transform + pos: -12.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13900 + components: + - type: Transform + pos: -12.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13904 + components: + - type: Transform + pos: -8.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13905 + components: + - type: Transform + pos: -8.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13906 + components: + - type: Transform + pos: -8.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13911 + components: + - type: Transform + pos: -7.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13912 + components: + - type: Transform + pos: -7.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13913 + components: + - type: Transform + pos: -7.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13914 + components: + - type: Transform + pos: -7.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13917 + components: + - type: Transform + pos: -3.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13918 + components: + - type: Transform + pos: -3.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13919 + components: + - type: Transform + pos: -3.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13920 + components: + - type: Transform + pos: -3.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13921 + components: + - type: Transform + pos: -3.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13926 + components: + - type: Transform + pos: -14.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13927 + components: + - type: Transform + pos: -14.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13928 + components: + - type: Transform + pos: -14.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13941 + components: + - type: Transform + pos: -19.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13958 + components: + - type: Transform + pos: -20.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13960 + components: + - type: Transform + pos: -22.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13961 + components: + - type: Transform + pos: -22.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13962 + components: + - type: Transform + pos: -22.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13963 + components: + - type: Transform + pos: -22.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13973 + components: + - type: Transform + pos: -22.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13974 + components: + - type: Transform + pos: -22.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13975 + components: + - type: Transform + pos: -22.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13998 + components: + - type: Transform + pos: -41.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14032 + components: + - type: Transform + pos: -37.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14034 + components: + - type: Transform + pos: -35.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14035 + components: + - type: Transform + pos: -35.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14039 + components: + - type: Transform + pos: -23.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14040 + components: + - type: Transform + pos: -23.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14058 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14059 + components: + - type: Transform + pos: 1.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14060 + components: + - type: Transform + pos: 1.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14061 + components: + - type: Transform + pos: 1.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14062 + components: + - type: Transform + pos: 1.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14069 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14070 + components: + - type: Transform + pos: 1.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14071 + components: + - type: Transform + pos: 1.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14078 + components: + - type: Transform + pos: 6.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14081 + components: + - type: Transform + pos: 1.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14082 + components: + - type: Transform + pos: 1.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14083 + components: + - type: Transform + pos: 1.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14084 + components: + - type: Transform + pos: 1.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14085 + components: + - type: Transform + pos: 1.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14086 + components: + - type: Transform + pos: 1.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14087 + components: + - type: Transform + pos: 1.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14088 + components: + - type: Transform + pos: 1.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14089 + components: + - type: Transform + pos: 1.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14090 + components: + - type: Transform + pos: 1.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14103 + components: + - type: Transform + pos: 1.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14104 + components: + - type: Transform + pos: 1.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14105 + components: + - type: Transform + pos: 1.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14106 + components: + - type: Transform + pos: 1.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14107 + components: + - type: Transform + pos: 1.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14112 + components: + - type: Transform + pos: -3.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14115 + components: + - type: Transform + pos: -7.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14116 + components: + - type: Transform + pos: -7.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14117 + components: + - type: Transform + pos: -7.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14118 + components: + - type: Transform + pos: -7.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14119 + components: + - type: Transform + pos: -7.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14120 + components: + - type: Transform + pos: -7.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14121 + components: + - type: Transform + pos: -7.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14171 + components: + - type: Transform + pos: 8.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14172 + components: + - type: Transform + pos: 8.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14173 + components: + - type: Transform + pos: 7.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14174 + components: + - type: Transform + pos: 7.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,81.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14205 + components: + - type: Transform + pos: -4.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14206 + components: + - type: Transform + pos: -5.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14208 + components: + - type: Transform + pos: 44.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14209 + components: + - type: Transform + pos: 44.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14210 + components: + - type: Transform + pos: 44.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14211 + components: + - type: Transform + pos: 44.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14237 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14238 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14239 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14240 + components: + - type: Transform + pos: 18.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14241 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14242 + components: + - type: Transform + pos: -10.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14243 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14244 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14245 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14246 + components: + - type: Transform + pos: -12.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14247 + components: + - type: Transform + pos: -12.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-29.5 + parent: 2 +- proto: GasPipeTJunction + entities: + - uid: 14249 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 2 + - uid: 14250 + components: + - type: Transform + pos: 32.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14251 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 2 + - uid: 14252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-51.5 + parent: 2 + - uid: 14253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-51.5 + parent: 2 + - uid: 14254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-47.5 + parent: 2 + - uid: 14255 + components: + - type: Transform + pos: -36.5,-45.5 + parent: 2 + - uid: 14256 + components: + - type: Transform + pos: -36.5,-45.5 + parent: 2 + - uid: 14257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14262 + components: + - type: Transform + pos: -0.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#20FC03FF' + - uid: 14263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#20FC03FF' + - uid: 14264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#20FC03FF' + - uid: 14265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC1703FF' + - uid: 14266 + components: + - type: Transform + pos: 3.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 14267 + components: + - type: Transform + pos: 4.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 14268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 14269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 14270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 14271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 14272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 14273 + components: + - type: Transform + pos: -1.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 14274 + components: + - type: Transform + pos: -0.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 14275 + components: + - type: Transform + pos: 1.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 14276 + components: + - type: Transform + pos: 2.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 14277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC6603FF' + - uid: 14278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-69.5 + parent: 2 + - uid: 14279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-68.5 + parent: 2 + - uid: 14280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-68.5 + parent: 2 + - uid: 14281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-69.5 + parent: 2 + - uid: 14282 + components: + - type: Transform + pos: 1.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 14283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 14284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 14285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 14286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 14287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 14288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 14289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 14291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 14292 + components: + - type: Transform + pos: 22.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 14293 + components: + - type: Transform + pos: 20.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 14294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 14295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 14296 + components: + - type: Transform + pos: 26.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#323232FF' + - uid: 14297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14303 + components: + - type: Transform + pos: 12.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14304 + components: + - type: Transform + pos: -6.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14309 + components: + - type: Transform + pos: -32.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14318 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14320 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14330 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14341 + components: + - type: Transform + pos: -37.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14344 + components: + - type: Transform + pos: -30.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14357 + components: + - type: Transform + pos: -12.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14359 + components: + - type: Transform + pos: -8.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14361 + components: + - type: Transform + pos: -11.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14364 + components: + - type: Transform + pos: -23.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14365 + components: + - type: Transform + pos: -19.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14368 + components: + - type: Transform + pos: -35.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14384 + components: + - type: Transform + pos: 4.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14405 + components: + - type: Transform + pos: 36.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14406 + components: + - type: Transform + pos: 40.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14413 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14415 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14426 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14427 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14431 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14433 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14434 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14438 + components: + - type: Transform + pos: 40.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14441 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14443 + components: + - type: Transform + pos: 41.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14445 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14446 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14448 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14462 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14469 + components: + - type: Transform + pos: 22.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14471 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14472 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14473 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14475 + components: + - type: Transform + pos: -28.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14477 + components: + - type: Transform + pos: -39.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14483 + components: + - type: Transform + pos: -31.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14485 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14487 + components: + - type: Transform + pos: -20.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14491 + components: + - type: Transform + pos: -9.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14492 + components: + - type: Transform + pos: -8.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14498 + components: + - type: Transform + pos: -2.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14511 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14512 + components: + - type: Transform + pos: -9.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14515 + components: + - type: Transform + pos: -11.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14517 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14519 + components: + - type: Transform + pos: -12.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14520 + components: + - type: Transform + pos: -10.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14521 + components: + - type: Transform + pos: -7.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14524 + components: + - type: Transform + pos: -20.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14528 + components: + - type: Transform + pos: -25.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14529 + components: + - type: Transform + pos: -28.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14530 + components: + - type: Transform + pos: -35.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14531 + components: + - type: Transform + pos: -36.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14534 + components: + - type: Transform + pos: -37.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14537 + components: + - type: Transform + pos: -4.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14539 + components: + - type: Transform + pos: 2.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14546 + components: + - type: Transform + pos: -3.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14547 + components: + - type: Transform + pos: -4.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14551 + components: + - type: Transform + pos: 2.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14552 + components: + - type: Transform + pos: -2.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14558 + components: + - type: Transform + pos: 1.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPort + entities: + - uid: 14561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-37.5 + parent: 2 + - uid: 14562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-37.5 + parent: 2 + - uid: 14563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-52.5 + parent: 2 + - uid: 14564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-51.5 + parent: 2 + - uid: 14565 + components: + - type: Transform + pos: -31.5,-50.5 + parent: 2 + - uid: 14566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-50.5 + parent: 2 + - uid: 14567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-49.5 + parent: 2 + - uid: 14568 + components: + - type: Transform + pos: -32.5,-48.5 + parent: 2 + - uid: 14569 + components: + - type: Transform + pos: -33.5,-51.5 + parent: 2 + - uid: 14570 + components: + - type: Transform + pos: -33.5,-51.5 + parent: 2 + - uid: 14571 + components: + - type: Transform + pos: -34.5,-51.5 + parent: 2 + - uid: 14572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-47.5 + parent: 2 + - uid: 14573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-45.5 + parent: 2 + - uid: 14574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,23.5 + parent: 2 + - uid: 14575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-27.5 + parent: 2 + - uid: 14576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-28.5 + parent: 2 + - uid: 14577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-76.5 + parent: 2 + - uid: 14582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-76.5 + parent: 2 + - uid: 14583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-66.5 + parent: 2 + - uid: 14584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-66.5 + parent: 2 + - uid: 14585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC1703FF' + - uid: 14586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FC1703FF' + - uid: 14587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 14588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-59.5 + parent: 2 + - uid: 14589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 14590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-58.5 + parent: 2 + - uid: 14591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 14592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-58.5 + parent: 2 + - uid: 14593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-57.5 + parent: 2 + - uid: 14594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-46.5 + parent: 2 + - uid: 14595 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 2 +- proto: GasPressurePump + entities: + - uid: 14596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-47.5 + parent: 2 + - uid: 14597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-47.5 + parent: 2 + - uid: 14598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-45.5 + parent: 2 + - uid: 14599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-45.5 + parent: 2 + - uid: 14600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,24.5 + parent: 2 + - uid: 14601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 14603 + components: + - type: Transform + pos: -4.5,-69.5 + parent: 2 + - uid: 14604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-70.5 + parent: 2 + - uid: 14605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-68.5 + parent: 2 + - uid: 14606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-66.5 + parent: 2 + - uid: 14607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-65.5 + parent: 2 + - uid: 14608 + components: + - type: Transform + pos: 1.5,-66.5 + parent: 2 + - uid: 14609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-64.5 + parent: 2 + - uid: 14610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-65.5 + parent: 2 + - uid: 14611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 14612 + components: + - type: Transform + pos: 26.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 14613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 14614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 14615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 14616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 14617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-44.5 + parent: 2 + - uid: 14618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-45.5 + parent: 2 + - uid: 14619 + components: + - type: Transform + pos: -4.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 14620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14621 + components: + - type: Transform + pos: 1.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF8000FF' + - uid: 14622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 14623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 14624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 14625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' + - uid: 14626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-42.5 + parent: 2 + - uid: 14627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#9003FCFF' + - uid: 14628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasThermoMachineFreezer + entities: + - uid: 14629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-52.5 + parent: 2 + - uid: 14630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-29.5 + parent: 2 + - uid: 14631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-76.5 + parent: 2 + - uid: 14632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-76.5 + parent: 2 + - uid: 14633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-54.5 + parent: 2 + - uid: 14634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 14635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 14636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-34.5 + parent: 2 +- proto: GasThermoMachineHeater + entities: + - uid: 14637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-52.5 + parent: 2 + - uid: 14638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-55.5 + parent: 2 + - uid: 14639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#8800FFFF' +- proto: GasThermoMachineHeaterEnabled + entities: + - uid: 14640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' +- proto: GasValve + entities: + - uid: 14641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-42.5 + parent: 2 + - type: GasValve + open: False + - uid: 14642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-46.5 + parent: 2 + - type: GasValve + open: False + - uid: 14643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-41.5 + parent: 2 + - uid: 14644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-45.5 + parent: 2 + - uid: 14645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-47.5 + parent: 2 + - uid: 14646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-46.5 + parent: 2 + - uid: 14647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 14648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 14649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00BFFF' + - uid: 14650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasVentPump + entities: + - uid: 14651 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-37.5 + parent: 2 + - uid: 14658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14662 + components: + - type: Transform + pos: 11.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14664 + components: + - type: Transform + pos: -10.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14670 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#031CFCFF' + - uid: 14672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14674 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14675 + components: + - type: Transform + pos: 40.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14678 + components: + - type: Transform + pos: -4.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14683 + components: + - type: Transform + pos: -30.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14690 + components: + - type: Transform + pos: -34.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14691 + components: + - type: Transform + pos: -22.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14693 + components: + - type: Transform + pos: -9.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14694 + components: + - type: Transform + pos: 11.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14695 + components: + - type: Transform + pos: -10.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14696 + components: + - type: Transform + pos: -19.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14700 + components: + - type: Transform + pos: -30.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14702 + components: + - type: Transform + pos: -31.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14705 + components: + - type: Transform + pos: -2.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14706 + components: + - type: Transform + pos: -9.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14709 + components: + - type: Transform + pos: -5.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14711 + components: + - type: Transform + pos: 5.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14715 + components: + - type: Transform + pos: 22.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14718 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14720 + components: + - type: Transform + pos: 21.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14721 + components: + - type: Transform + pos: 19.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14724 + components: + - type: Transform + pos: 14.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14729 + components: + - type: Transform + pos: 40.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14731 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14734 + components: + - type: Transform + pos: 42.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14735 + components: + - type: Transform + pos: 9.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14739 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14740 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14744 + components: + - type: Transform + pos: 45.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14749 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14751 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14753 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14757 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14758 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14759 + components: + - type: Transform + pos: -22.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14764 + components: + - type: Transform + pos: -3.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14769 + components: + - type: Transform + pos: -33.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14781 + components: + - type: Transform + pos: -11.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14783 + components: + - type: Transform + pos: -19.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14785 + components: + - type: Transform + pos: -24.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14788 + components: + - type: Transform + pos: -37.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14796 + components: + - type: Transform + pos: 7.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14797 + components: + - type: Transform + pos: 0.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14802 + components: + - type: Transform + pos: 7.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,82.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14804 + components: + - type: Transform + pos: -4.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14810 + components: + - type: Transform + pos: 5.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14814 + components: + - type: Transform + pos: -12.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentScrubber + entities: + - uid: 14815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-45.5 + parent: 2 + - uid: 14820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-44.5 + parent: 2 + - uid: 14821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14826 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14830 + components: + - type: Transform + pos: -38.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14837 + components: + - type: Transform + pos: -2.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14850 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14853 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14855 + components: + - type: Transform + pos: 32.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14870 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14874 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14876 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14881 + components: + - type: Transform + pos: 39.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14887 + components: + - type: Transform + pos: 15.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14888 + components: + - type: Transform + pos: 21.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14890 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14897 + components: + - type: Transform + pos: -32.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14898 + components: + - type: Transform + pos: -41.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14902 + components: + - type: Transform + pos: -21.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14919 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14922 + components: + - type: Transform + pos: -33.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14923 + components: + - type: Transform + pos: -43.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14940 + components: + - type: Transform + pos: -14.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14941 + components: + - type: Transform + pos: -9.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14959 + components: + - type: Transform + pos: 5.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14961 + components: + - type: Transform + pos: 8.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14962 + components: + - type: Transform + pos: 1.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14965 + components: + - type: Transform + pos: 0.5,71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14968 + components: + - type: Transform + pos: 8.5,84.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14969 + components: + - type: Transform + pos: 1.5,85.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,83.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14976 + components: + - type: Transform + pos: -10.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: Gateway + entities: + - uid: 14977 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 2 +- proto: GeigerCounter + entities: + - uid: 14978 + components: + - type: Transform + pos: -7.492387,-64.15177 + parent: 2 +- proto: GeneratorBasic15kW + entities: + - uid: 14979 + components: + - type: Transform + pos: -6.5,76.5 + parent: 2 +- proto: Girder + entities: + - uid: 14980 + components: + - type: Transform + pos: -19.5,12.5 + parent: 2 + - uid: 14981 + components: + - type: Transform + anchored: False + pos: -50.549862,14.541412 + parent: 2 + - type: Physics + bodyType: Dynamic + - uid: 14982 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 14983 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 2 + - uid: 14984 + components: + - type: Transform + pos: -18.5,16.5 + parent: 2 + - uid: 14985 + components: + - type: Transform + pos: -54.5,12.5 + parent: 2 + - uid: 14986 + components: + - type: Transform + pos: -58.5,28.5 + parent: 2 + - uid: 14987 + components: + - type: Transform + pos: 36.5,-34.5 + parent: 2 + - uid: 14988 + components: + - type: Transform + pos: 37.5,-36.5 + parent: 2 + - uid: 14989 + components: + - type: Transform + pos: 44.5,-37.5 + parent: 2 +- proto: GlimmerProber + entities: + - uid: 14990 + components: + - type: Transform + pos: -24.5,-39.5 + parent: 2 +- proto: GravityGenerator + entities: + - uid: 14991 + components: + - type: Transform + pos: 7.5,31.5 + parent: 2 +- proto: Grille + entities: + - uid: 615 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 2 + - uid: 9182 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 2 + - uid: 9213 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 + - uid: 14992 + components: + - type: Transform + pos: 3.5,25.5 + parent: 2 + - uid: 14993 + components: + - type: Transform + pos: 3.5,27.5 + parent: 2 + - uid: 14994 + components: + - type: Transform + pos: -3.5,12.5 + parent: 2 + - uid: 14995 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - uid: 14996 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 14997 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - uid: 14998 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 14999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,17.5 + parent: 2 + - uid: 15000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,17.5 + parent: 2 + - uid: 15001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,17.5 + parent: 2 + - uid: 15002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,12.5 + parent: 2 + - uid: 15003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,10.5 + parent: 2 + - uid: 15004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,17.5 + parent: 2 + - uid: 15005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,16.5 + parent: 2 + - uid: 15006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,19.5 + parent: 2 + - uid: 15007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,19.5 + parent: 2 + - uid: 15008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,17.5 + parent: 2 + - uid: 15009 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 15010 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 15011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,2.5 + parent: 2 + - uid: 15012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 2 + - uid: 15013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 2 + - uid: 15014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 2 + - uid: 15016 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - uid: 15017 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 15018 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - uid: 15019 + components: + - type: Transform + pos: -31.5,-3.5 + parent: 2 + - uid: 15020 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 2 + - uid: 15021 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 2 + - uid: 15022 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - uid: 15023 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - uid: 15024 + components: + - type: Transform + pos: -26.5,6.5 + parent: 2 + - uid: 15025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,5.5 + parent: 2 + - uid: 15026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,5.5 + parent: 2 + - uid: 15027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,13.5 + parent: 2 + - uid: 15028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,13.5 + parent: 2 + - uid: 15029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,13.5 + parent: 2 + - uid: 15030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,13.5 + parent: 2 + - uid: 15031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,11.5 + parent: 2 + - uid: 15032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,10.5 + parent: 2 + - uid: 15033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,9.5 + parent: 2 + - uid: 15034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,8.5 + parent: 2 + - uid: 15035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,11.5 + parent: 2 + - uid: 15036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,1.5 + parent: 2 + - uid: 15037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,0.5 + parent: 2 + - uid: 15039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 2 + - uid: 15040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-2.5 + parent: 2 + - uid: 15041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-3.5 + parent: 2 + - uid: 15042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-6.5 + parent: 2 + - uid: 15043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-5.5 + parent: 2 + - uid: 15044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-4.5 + parent: 2 + - uid: 15045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-3.5 + parent: 2 + - uid: 15046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-4.5 + parent: 2 + - uid: 15047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-3.5 + parent: 2 + - uid: 15048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-2.5 + parent: 2 + - uid: 15049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,4.5 + parent: 2 + - uid: 15050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,3.5 + parent: 2 + - uid: 15051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,2.5 + parent: 2 + - uid: 15052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,3.5 + parent: 2 + - uid: 15053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,2.5 + parent: 2 + - uid: 15054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,1.5 + parent: 2 + - uid: 15055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-8.5 + parent: 2 + - uid: 15056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-9.5 + parent: 2 + - uid: 15057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-10.5 + parent: 2 + - uid: 15058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-10.5 + parent: 2 + - uid: 15059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-10.5 + parent: 2 + - uid: 15060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-10.5 + parent: 2 + - uid: 15061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-10.5 + parent: 2 + - uid: 15062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-12.5 + parent: 2 + - uid: 15063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-12.5 + parent: 2 + - uid: 15064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,16.5 + parent: 2 + - uid: 15065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,17.5 + parent: 2 + - uid: 15066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-17.5 + parent: 2 + - uid: 15067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-16.5 + parent: 2 + - uid: 15068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-23.5 + parent: 2 + - uid: 15069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-15.5 + parent: 2 + - uid: 15070 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 + - uid: 15071 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 2 + - uid: 15072 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 2 + - uid: 15073 + components: + - type: Transform + pos: -30.5,-25.5 + parent: 2 + - uid: 15074 + components: + - type: Transform + pos: -28.5,-25.5 + parent: 2 + - uid: 15075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-28.5 + parent: 2 + - uid: 15076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-28.5 + parent: 2 + - uid: 15077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-35.5 + parent: 2 + - uid: 15078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-34.5 + parent: 2 + - uid: 15079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-33.5 + parent: 2 + - uid: 15080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-33.5 + parent: 2 + - uid: 15081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-34.5 + parent: 2 + - uid: 15082 + components: + - type: Transform + pos: -29.5,-36.5 + parent: 2 + - uid: 15083 + components: + - type: Transform + pos: -34.5,-44.5 + parent: 2 + - uid: 15084 + components: + - type: Transform + pos: -32.5,-44.5 + parent: 2 + - uid: 15085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-31.5 + parent: 2 + - uid: 15086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-30.5 + parent: 2 + - uid: 15087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-25.5 + parent: 2 + - uid: 15088 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 2 + - uid: 15089 + components: + - type: Transform + pos: -21.5,-25.5 + parent: 2 + - uid: 15090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-25.5 + parent: 2 + - uid: 15091 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 2 + - uid: 15092 + components: + - type: Transform + pos: -16.5,-29.5 + parent: 2 + - uid: 15093 + components: + - type: Transform + pos: -17.5,-29.5 + parent: 2 + - uid: 15094 + components: + - type: Transform + pos: -19.5,-31.5 + parent: 2 + - uid: 15095 + components: + - type: Transform + pos: -19.5,-30.5 + parent: 2 + - uid: 15096 + components: + - type: Transform + pos: -12.5,-33.5 + parent: 2 + - uid: 15097 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 2 + - uid: 15098 + components: + - type: Transform + pos: -4.5,-26.5 + parent: 2 + - uid: 15099 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 2 + - uid: 15100 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 2 + - uid: 15101 + components: + - type: Transform + pos: -4.5,-28.5 + parent: 2 + - uid: 15102 + components: + - type: Transform + pos: -6.5,-29.5 + parent: 2 + - uid: 15103 + components: + - type: Transform + pos: -8.5,-29.5 + parent: 2 + - uid: 15104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-32.5 + parent: 2 + - uid: 15105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-33.5 + parent: 2 + - uid: 15106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-34.5 + parent: 2 + - uid: 15107 + components: + - type: Transform + pos: -14.5,-37.5 + parent: 2 + - uid: 15108 + components: + - type: Transform + pos: -14.5,-35.5 + parent: 2 + - uid: 15109 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 2 + - uid: 15110 + components: + - type: Transform + pos: -14.5,-49.5 + parent: 2 + - uid: 15111 + components: + - type: Transform + pos: -14.5,-47.5 + parent: 2 + - uid: 15112 + components: + - type: Transform + pos: -14.5,-46.5 + parent: 2 + - uid: 15113 + components: + - type: Transform + pos: -14.5,-44.5 + parent: 2 + - uid: 15114 + components: + - type: Transform + pos: -14.5,-43.5 + parent: 2 + - uid: 15115 + components: + - type: Transform + pos: -14.5,-41.5 + parent: 2 + - uid: 15116 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 2 + - uid: 15117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-49.5 + parent: 2 + - uid: 15118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-47.5 + parent: 2 + - uid: 15119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-43.5 + parent: 2 + - uid: 15120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-41.5 + parent: 2 + - uid: 15121 + components: + - type: Transform + pos: -44.5,-42.5 + parent: 2 + - uid: 15122 + components: + - type: Transform + pos: -45.5,-40.5 + parent: 2 + - uid: 15123 + components: + - type: Transform + pos: -45.5,-39.5 + parent: 2 + - uid: 15124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-30.5 + parent: 2 + - uid: 15125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-31.5 + parent: 2 + - uid: 15126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-32.5 + parent: 2 + - uid: 15127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-33.5 + parent: 2 + - uid: 15128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-36.5 + parent: 2 + - uid: 15129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-46.5 + parent: 2 + - uid: 15130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-48.5 + parent: 2 + - uid: 15131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-48.5 + parent: 2 + - uid: 15132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-51.5 + parent: 2 + - uid: 15133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-51.5 + parent: 2 + - uid: 15134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-50.5 + parent: 2 + - uid: 15135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-49.5 + parent: 2 + - uid: 15136 + components: + - type: Transform + pos: -37.5,-55.5 + parent: 2 + - uid: 15137 + components: + - type: Transform + pos: -37.5,-59.5 + parent: 2 + - uid: 15138 + components: + - type: Transform + pos: -32.5,-61.5 + parent: 2 + - uid: 15139 + components: + - type: Transform + pos: -35.5,-65.5 + parent: 2 + - uid: 15140 + components: + - type: Transform + pos: -37.5,-63.5 + parent: 2 + - uid: 15141 + components: + - type: Transform + pos: -31.5,-65.5 + parent: 2 + - uid: 15142 + components: + - type: Transform + pos: -30.5,-65.5 + parent: 2 + - uid: 15143 + components: + - type: Transform + pos: -29.5,-65.5 + parent: 2 + - uid: 15144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-37.5 + parent: 2 + - uid: 15145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-35.5 + parent: 2 + - uid: 15146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-1.5 + parent: 2 + - uid: 15147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-1.5 + parent: 2 + - uid: 15148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,3.5 + parent: 2 + - uid: 15149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,3.5 + parent: 2 + - uid: 15150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,3.5 + parent: 2 + - uid: 15151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-1.5 + parent: 2 + - uid: 15152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-1.5 + parent: 2 + - uid: 15153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,2.5 + parent: 2 + - uid: 15154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,1.5 + parent: 2 + - uid: 15155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,0.5 + parent: 2 + - uid: 15156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,6.5 + parent: 2 + - uid: 15157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,8.5 + parent: 2 + - uid: 15159 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 + - uid: 15160 + components: + - type: Transform + pos: 33.5,12.5 + parent: 2 + - uid: 15161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,21.5 + parent: 2 + - uid: 15162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,21.5 + parent: 2 + - uid: 15163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,17.5 + parent: 2 + - uid: 15164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,17.5 + parent: 2 + - uid: 15165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,18.5 + parent: 2 + - uid: 15166 + components: + - type: Transform + pos: 44.5,13.5 + parent: 2 + - uid: 15167 + components: + - type: Transform + pos: 44.5,14.5 + parent: 2 + - uid: 15168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,8.5 + parent: 2 + - uid: 15169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,7.5 + parent: 2 + - uid: 15170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,6.5 + parent: 2 + - uid: 15171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-0.5 + parent: 2 + - uid: 15172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,17.5 + parent: 2 + - uid: 15173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,17.5 + parent: 2 + - uid: 15174 + components: + - type: Transform + pos: 58.5,32.5 + parent: 2 + - uid: 15175 + components: + - type: Transform + pos: 59.5,32.5 + parent: 2 + - uid: 15176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,22.5 + parent: 2 + - uid: 15177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,24.5 + parent: 2 + - uid: 15178 + components: + - type: Transform + pos: 11.5,28.5 + parent: 2 + - uid: 15179 + components: + - type: Transform + pos: 12.5,28.5 + parent: 2 + - uid: 15180 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 + - uid: 15181 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 15182 + components: + - type: Transform + pos: 32.5,31.5 + parent: 2 + - uid: 15183 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 15184 + components: + - type: Transform + pos: 36.5,31.5 + parent: 2 + - uid: 15185 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 15186 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 + - uid: 15187 + components: + - type: Transform + pos: 26.5,30.5 + parent: 2 + - uid: 15188 + components: + - type: Transform + pos: 26.5,32.5 + parent: 2 + - uid: 15189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,36.5 + parent: 2 + - uid: 15190 + components: + - type: Transform + pos: 12.5,35.5 + parent: 2 + - uid: 15191 + components: + - type: Transform + pos: 12.5,36.5 + parent: 2 + - uid: 15192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,43.5 + parent: 2 + - uid: 15193 + components: + - type: Transform + pos: 21.5,47.5 + parent: 2 + - uid: 15194 + components: + - type: Transform + pos: 21.5,46.5 + parent: 2 + - uid: 15195 + components: + - type: Transform + pos: 19.5,47.5 + parent: 2 + - uid: 15196 + components: + - type: Transform + pos: 19.5,46.5 + parent: 2 + - uid: 15197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,41.5 + parent: 2 + - uid: 15198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,41.5 + parent: 2 + - uid: 15199 + components: + - type: Transform + pos: 41.5,32.5 + parent: 2 + - uid: 15200 + components: + - type: Transform + pos: 41.5,33.5 + parent: 2 + - uid: 15201 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - uid: 15202 + components: + - type: Transform + pos: 41.5,36.5 + parent: 2 + - uid: 15203 + components: + - type: Transform + pos: 41.5,37.5 + parent: 2 + - uid: 15204 + components: + - type: Transform + pos: 41.5,39.5 + parent: 2 + - uid: 15205 + components: + - type: Transform + pos: 41.5,40.5 + parent: 2 + - uid: 15206 + components: + - type: Transform + pos: 41.5,41.5 + parent: 2 + - uid: 15207 + components: + - type: Transform + pos: 41.5,42.5 + parent: 2 + - uid: 15208 + components: + - type: Transform + pos: 40.5,42.5 + parent: 2 + - uid: 15209 + components: + - type: Transform + pos: 39.5,42.5 + parent: 2 + - uid: 15210 + components: + - type: Transform + pos: 38.5,42.5 + parent: 2 + - uid: 15211 + components: + - type: Transform + pos: 37.5,42.5 + parent: 2 + - uid: 15212 + components: + - type: Transform + pos: 36.5,42.5 + parent: 2 + - uid: 15213 + components: + - type: Transform + pos: 35.5,42.5 + parent: 2 + - uid: 15214 + components: + - type: Transform + pos: 34.5,42.5 + parent: 2 + - uid: 15215 + components: + - type: Transform + pos: 33.5,42.5 + parent: 2 + - uid: 15216 + components: + - type: Transform + pos: 32.5,42.5 + parent: 2 + - uid: 15217 + components: + - type: Transform + pos: 45.5,45.5 + parent: 2 + - uid: 15218 + components: + - type: Transform + pos: 45.5,44.5 + parent: 2 + - uid: 15219 + components: + - type: Transform + pos: 45.5,43.5 + parent: 2 + - uid: 15220 + components: + - type: Transform + pos: 45.5,42.5 + parent: 2 + - uid: 15221 + components: + - type: Transform + pos: 45.5,36.5 + parent: 2 + - uid: 15222 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 15223 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 + - uid: 15224 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 15225 + components: + - type: Transform + pos: 45.5,28.5 + parent: 2 + - uid: 15226 + components: + - type: Transform + pos: 45.5,27.5 + parent: 2 + - uid: 15227 + components: + - type: Transform + pos: 44.5,47.5 + parent: 2 + - uid: 15228 + components: + - type: Transform + pos: 42.5,47.5 + parent: 2 + - uid: 15229 + components: + - type: Transform + pos: 44.5,49.5 + parent: 2 + - uid: 15230 + components: + - type: Transform + pos: 42.5,49.5 + parent: 2 + - uid: 15231 + components: + - type: Transform + pos: 45.5,37.5 + parent: 2 + - uid: 15232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,47.5 + parent: 2 + - uid: 15233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,46.5 + parent: 2 + - uid: 15234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-13.5 + parent: 2 + - uid: 15235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-13.5 + parent: 2 + - uid: 15236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-13.5 + parent: 2 + - uid: 15237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-11.5 + parent: 2 + - uid: 15238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-10.5 + parent: 2 + - uid: 15239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-8.5 + parent: 2 + - uid: 15240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-7.5 + parent: 2 + - uid: 15241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-13.5 + parent: 2 + - uid: 15242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-11.5 + parent: 2 + - uid: 15243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-7.5 + parent: 2 + - uid: 15244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-7.5 + parent: 2 + - uid: 15245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-5.5 + parent: 2 + - uid: 15246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-15.5 + parent: 2 + - uid: 15247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-15.5 + parent: 2 + - uid: 15248 + components: + - type: Transform + pos: -17.5,18.5 + parent: 2 + - uid: 15249 + components: + - type: Transform + pos: -17.5,20.5 + parent: 2 + - uid: 15250 + components: + - type: Transform + pos: -12.5,21.5 + parent: 2 + - uid: 15251 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - uid: 15252 + components: + - type: Transform + pos: -15.5,21.5 + parent: 2 + - uid: 15253 + components: + - type: Transform + pos: -9.5,21.5 + parent: 2 + - uid: 15254 + components: + - type: Transform + pos: -8.5,21.5 + parent: 2 + - uid: 15255 + components: + - type: Transform + pos: -6.5,21.5 + parent: 2 + - uid: 15256 + components: + - type: Transform + pos: -5.5,21.5 + parent: 2 + - uid: 15257 + components: + - type: Transform + pos: -3.5,21.5 + parent: 2 + - uid: 15258 + components: + - type: Transform + pos: -2.5,21.5 + parent: 2 + - uid: 15259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,24.5 + parent: 2 + - uid: 15260 + components: + - type: Transform + pos: -17.5,25.5 + parent: 2 + - uid: 15261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,25.5 + parent: 2 + - uid: 15262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,25.5 + parent: 2 + - uid: 15263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,25.5 + parent: 2 + - uid: 15264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,25.5 + parent: 2 + - uid: 15265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,25.5 + parent: 2 + - uid: 15266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,25.5 + parent: 2 + - uid: 15267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,26.5 + parent: 2 + - uid: 15268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,26.5 + parent: 2 + - uid: 15269 + components: + - type: Transform + pos: -16.5,30.5 + parent: 2 + - uid: 15270 + components: + - type: Transform + pos: -14.5,30.5 + parent: 2 + - uid: 15271 + components: + - type: Transform + pos: -11.5,30.5 + parent: 2 + - uid: 15272 + components: + - type: Transform + pos: -13.5,31.5 + parent: 2 + - uid: 15273 + components: + - type: Transform + pos: -8.5,36.5 + parent: 2 + - uid: 15274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,37.5 + parent: 2 + - uid: 15275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,39.5 + parent: 2 + - uid: 15276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,38.5 + parent: 2 + - uid: 15277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,40.5 + parent: 2 + - uid: 15278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,37.5 + parent: 2 + - uid: 15279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,37.5 + parent: 2 + - uid: 15280 + components: + - type: Transform + pos: -24.5,46.5 + parent: 2 + - uid: 15281 + components: + - type: Transform + pos: -23.5,46.5 + parent: 2 + - uid: 15282 + components: + - type: Transform + pos: -22.5,46.5 + parent: 2 + - uid: 15283 + components: + - type: Transform + pos: -21.5,46.5 + parent: 2 + - uid: 15284 + components: + - type: Transform + pos: -21.5,45.5 + parent: 2 + - uid: 15285 + components: + - type: Transform + pos: -20.5,45.5 + parent: 2 + - uid: 15286 + components: + - type: Transform + pos: -20.5,44.5 + parent: 2 + - uid: 15287 + components: + - type: Transform + pos: -20.5,43.5 + parent: 2 + - uid: 15288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,36.5 + parent: 2 + - uid: 15289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,34.5 + parent: 2 + - uid: 15290 + components: + - type: Transform + pos: -35.5,33.5 + parent: 2 + - uid: 15291 + components: + - type: Transform + pos: -35.5,36.5 + parent: 2 + - uid: 15292 + components: + - type: Transform + pos: -35.5,39.5 + parent: 2 + - uid: 15293 + components: + - type: Transform + pos: -38.5,28.5 + parent: 2 + - uid: 15294 + components: + - type: Transform + pos: -38.5,30.5 + parent: 2 + - uid: 15295 + components: + - type: Transform + pos: -43.5,32.5 + parent: 2 + - uid: 15296 + components: + - type: Transform + pos: -43.5,33.5 + parent: 2 + - uid: 15297 + components: + - type: Transform + pos: -43.5,34.5 + parent: 2 + - uid: 15298 + components: + - type: Transform + pos: -41.5,38.5 + parent: 2 + - uid: 15299 + components: + - type: Transform + pos: -40.5,38.5 + parent: 2 + - uid: 15300 + components: + - type: Transform + pos: -38.5,39.5 + parent: 2 + - uid: 15301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,27.5 + parent: 2 + - uid: 15302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,27.5 + parent: 2 + - uid: 15303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,23.5 + parent: 2 + - uid: 15304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,28.5 + parent: 2 + - uid: 15305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,30.5 + parent: 2 + - uid: 15306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,32.5 + parent: 2 + - uid: 15307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,35.5 + parent: 2 + - uid: 15308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,45.5 + parent: 2 + - uid: 15309 + components: + - type: Transform + pos: 4.5,36.5 + parent: 2 + - uid: 15310 + components: + - type: Transform + pos: 5.5,36.5 + parent: 2 + - uid: 15311 + components: + - type: Transform + pos: 6.5,36.5 + parent: 2 + - uid: 15312 + components: + - type: Transform + pos: -12.5,47.5 + parent: 2 + - uid: 15313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,50.5 + parent: 2 + - uid: 15314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,51.5 + parent: 2 + - uid: 15315 + components: + - type: Transform + pos: -9.5,55.5 + parent: 2 + - uid: 15316 + components: + - type: Transform + pos: -4.5,57.5 + parent: 2 + - uid: 15317 + components: + - type: Transform + pos: -2.5,57.5 + parent: 2 + - uid: 15318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,48.5 + parent: 2 + - uid: 15319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,51.5 + parent: 2 + - uid: 15320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,46.5 + parent: 2 + - uid: 15321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,46.5 + parent: 2 + - uid: 15322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,45.5 + parent: 2 + - uid: 15323 + components: + - type: Transform + pos: 3.5,53.5 + parent: 2 + - uid: 15324 + components: + - type: Transform + pos: 6.5,57.5 + parent: 2 + - uid: 15325 + components: + - type: Transform + pos: 11.5,55.5 + parent: 2 + - uid: 15326 + components: + - type: Transform + pos: 11.5,54.5 + parent: 2 + - uid: 15327 + components: + - type: Transform + pos: 11.5,53.5 + parent: 2 + - uid: 15328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,54.5 + parent: 2 + - uid: 15329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,54.5 + parent: 2 + - uid: 15330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,57.5 + parent: 2 + - uid: 15331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,57.5 + parent: 2 + - uid: 15332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,60.5 + parent: 2 + - uid: 15333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,61.5 + parent: 2 + - uid: 15334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,61.5 + parent: 2 + - uid: 15335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,62.5 + parent: 2 + - uid: 15336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,62.5 + parent: 2 + - uid: 15337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,62.5 + parent: 2 + - uid: 15338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,63.5 + parent: 2 + - uid: 15339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,63.5 + parent: 2 + - uid: 15340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,63.5 + parent: 2 + - uid: 15341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,63.5 + parent: 2 + - uid: 15342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,63.5 + parent: 2 + - uid: 15343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,63.5 + parent: 2 + - uid: 15344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,63.5 + parent: 2 + - uid: 15345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,63.5 + parent: 2 + - uid: 15346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,62.5 + parent: 2 + - uid: 15347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,62.5 + parent: 2 + - uid: 15348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,62.5 + parent: 2 + - uid: 15349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,61.5 + parent: 2 + - uid: 15350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,61.5 + parent: 2 + - uid: 15351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,60.5 + parent: 2 + - uid: 15352 + components: + - type: Transform + pos: -45.5,32.5 + parent: 2 + - uid: 15353 + components: + - type: Transform + pos: -45.5,35.5 + parent: 2 + - uid: 15354 + components: + - type: Transform + pos: -55.5,32.5 + parent: 2 + - uid: 15355 + components: + - type: Transform + pos: -56.5,32.5 + parent: 2 + - uid: 15356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,40.5 + parent: 2 + - uid: 15357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,42.5 + parent: 2 + - uid: 15358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,46.5 + parent: 2 + - uid: 15359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,46.5 + parent: 2 + - uid: 15360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,48.5 + parent: 2 + - uid: 15361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,48.5 + parent: 2 + - uid: 15362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,48.5 + parent: 2 + - uid: 15363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,48.5 + parent: 2 + - uid: 15364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,48.5 + parent: 2 + - uid: 15365 + components: + - type: Transform + pos: 0.5,73.5 + parent: 2 + - uid: 15366 + components: + - type: Transform + pos: -3.5,68.5 + parent: 2 + - uid: 15367 + components: + - type: Transform + pos: -2.5,68.5 + parent: 2 + - uid: 15368 + components: + - type: Transform + pos: 5.5,68.5 + parent: 2 + - uid: 15369 + components: + - type: Transform + pos: 1.5,73.5 + parent: 2 + - uid: 15370 + components: + - type: Transform + pos: 2.5,73.5 + parent: 2 + - uid: 15371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,86.5 + parent: 2 + - uid: 15372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,86.5 + parent: 2 + - uid: 15373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,86.5 + parent: 2 + - uid: 15374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,86.5 + parent: 2 + - uid: 15375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,86.5 + parent: 2 + - uid: 15376 + components: + - type: Transform + pos: 0.5,81.5 + parent: 2 + - uid: 15377 + components: + - type: Transform + pos: 2.5,81.5 + parent: 2 + - uid: 15378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-12.5 + parent: 2 + - uid: 15379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-12.5 + parent: 2 + - uid: 15380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-12.5 + parent: 2 + - uid: 15381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-12.5 + parent: 2 + - uid: 15382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-17.5 + parent: 2 + - uid: 15383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 2 + - uid: 15384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 2 + - uid: 15385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 2 + - uid: 15386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-21.5 + parent: 2 + - uid: 15387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-21.5 + parent: 2 + - uid: 15388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-22.5 + parent: 2 + - uid: 15389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-22.5 + parent: 2 + - uid: 15390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-22.5 + parent: 2 + - uid: 15391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-22.5 + parent: 2 + - uid: 15392 + components: + - type: Transform + pos: 39.5,-17.5 + parent: 2 + - uid: 15393 + components: + - type: Transform + pos: 39.5,-15.5 + parent: 2 + - uid: 15394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-20.5 + parent: 2 + - uid: 15395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-21.5 + parent: 2 + - uid: 15396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-22.5 + parent: 2 + - uid: 15397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-23.5 + parent: 2 + - uid: 15398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-25.5 + parent: 2 + - uid: 15399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-24.5 + parent: 2 + - uid: 15400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-23.5 + parent: 2 + - uid: 15401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-22.5 + parent: 2 + - uid: 15402 + components: + - type: Transform + pos: 48.5,-30.5 + parent: 2 + - uid: 15403 + components: + - type: Transform + pos: 48.5,-32.5 + parent: 2 + - uid: 15404 + components: + - type: Transform + pos: 41.5,-26.5 + parent: 2 + - uid: 15405 + components: + - type: Transform + pos: 38.5,-26.5 + parent: 2 + - uid: 15406 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 2 + - uid: 15407 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 2 + - uid: 15408 + components: + - type: Transform + pos: 29.5,-28.5 + parent: 2 + - uid: 15409 + components: + - type: Transform + pos: 29.5,-29.5 + parent: 2 + - uid: 15410 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 2 + - uid: 15411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-28.5 + parent: 2 + - uid: 15412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-32.5 + parent: 2 + - uid: 15413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-28.5 + parent: 2 + - uid: 15414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-28.5 + parent: 2 + - uid: 15415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-28.5 + parent: 2 + - uid: 15416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-20.5 + parent: 2 + - uid: 15417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-20.5 + parent: 2 + - uid: 15418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-20.5 + parent: 2 + - uid: 15419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-19.5 + parent: 2 + - uid: 15420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-39.5 + parent: 2 + - uid: 15421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-42.5 + parent: 2 + - uid: 15422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-43.5 + parent: 2 + - uid: 15423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-43.5 + parent: 2 + - uid: 15424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-43.5 + parent: 2 + - uid: 15425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-43.5 + parent: 2 + - uid: 15426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-42.5 + parent: 2 + - uid: 15427 + components: + - type: Transform + pos: 5.5,-48.5 + parent: 2 + - uid: 15428 + components: + - type: Transform + pos: 5.5,-47.5 + parent: 2 + - uid: 15429 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 2 + - uid: 15430 + components: + - type: Transform + pos: 3.5,-47.5 + parent: 2 + - uid: 15431 + components: + - type: Transform + pos: 2.5,-47.5 + parent: 2 + - uid: 15432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-51.5 + parent: 2 + - uid: 15433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-48.5 + parent: 2 + - uid: 15434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-46.5 + parent: 2 + - uid: 15435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-54.5 + parent: 2 + - uid: 15436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-56.5 + parent: 2 + - uid: 15437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-49.5 + parent: 2 + - uid: 15438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-49.5 + parent: 2 + - uid: 15439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-49.5 + parent: 2 + - uid: 15440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-19.5 + parent: 2 + - uid: 15441 + components: + - type: Transform + pos: 12.5,23.5 + parent: 2 + - uid: 15442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-55.5 + parent: 2 + - uid: 15443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-54.5 + parent: 2 + - uid: 15444 + components: + - type: Transform + pos: 33.5,-53.5 + parent: 2 + - uid: 15445 + components: + - type: Transform + pos: -43.5,20.5 + parent: 2 + - uid: 15446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-61.5 + parent: 2 + - uid: 15447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-61.5 + parent: 2 + - uid: 15448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-61.5 + parent: 2 + - uid: 15449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-61.5 + parent: 2 + - uid: 15450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-62.5 + parent: 2 + - uid: 15451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-62.5 + parent: 2 + - uid: 15452 + components: + - type: Transform + pos: 9.5,-70.5 + parent: 2 + - uid: 15453 + components: + - type: Transform + pos: 9.5,-69.5 + parent: 2 + - uid: 15454 + components: + - type: Transform + pos: 9.5,-68.5 + parent: 2 + - uid: 15455 + components: + - type: Transform + pos: 11.5,-71.5 + parent: 2 + - uid: 15456 + components: + - type: Transform + pos: 12.5,-71.5 + parent: 2 + - uid: 15457 + components: + - type: Transform + pos: 13.5,-71.5 + parent: 2 + - uid: 15458 + components: + - type: Transform + pos: 15.5,-62.5 + parent: 2 + - uid: 15459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-71.5 + parent: 2 + - uid: 15460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-71.5 + parent: 2 + - uid: 15461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-71.5 + parent: 2 + - uid: 15462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-70.5 + parent: 2 + - uid: 15463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-69.5 + parent: 2 + - uid: 15464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-68.5 + parent: 2 + - uid: 15465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-74.5 + parent: 2 + - uid: 15466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-77.5 + parent: 2 + - uid: 15467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-77.5 + parent: 2 + - uid: 15468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-77.5 + parent: 2 + - uid: 15469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-77.5 + parent: 2 + - uid: 15470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-77.5 + parent: 2 + - uid: 15471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-77.5 + parent: 2 + - uid: 15472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-77.5 + parent: 2 + - uid: 15473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-77.5 + parent: 2 + - uid: 15474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-74.5 + parent: 2 + - uid: 15475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-48.5 + parent: 2 + - uid: 15476 + components: + - type: Transform + pos: 20.5,-52.5 + parent: 2 + - uid: 15477 + components: + - type: Transform + pos: 19.5,-54.5 + parent: 2 + - uid: 15478 + components: + - type: Transform + pos: 19.5,-58.5 + parent: 2 + - uid: 15479 + components: + - type: Transform + pos: 19.5,-62.5 + parent: 2 + - uid: 15480 + components: + - type: Transform + pos: 21.5,-64.5 + parent: 2 + - uid: 15481 + components: + - type: Transform + pos: 21.5,-52.5 + parent: 2 + - uid: 15482 + components: + - type: Transform + pos: 21.5,-53.5 + parent: 2 + - uid: 15483 + components: + - type: Transform + pos: 21.5,-54.5 + parent: 2 + - uid: 15484 + components: + - type: Transform + pos: 21.5,-55.5 + parent: 2 + - uid: 15485 + components: + - type: Transform + pos: 21.5,-57.5 + parent: 2 + - uid: 15486 + components: + - type: Transform + pos: 21.5,-58.5 + parent: 2 + - uid: 15487 + components: + - type: Transform + pos: 21.5,-59.5 + parent: 2 + - uid: 15488 + components: + - type: Transform + pos: 21.5,-61.5 + parent: 2 + - uid: 15489 + components: + - type: Transform + pos: 21.5,-62.5 + parent: 2 + - uid: 15490 + components: + - type: Transform + pos: 21.5,-63.5 + parent: 2 + - uid: 15491 + components: + - type: Transform + pos: 24.5,-65.5 + parent: 2 + - uid: 15492 + components: + - type: Transform + pos: 26.5,-65.5 + parent: 2 + - uid: 15493 + components: + - type: Transform + pos: 27.5,-65.5 + parent: 2 + - uid: 15494 + components: + - type: Transform + pos: 28.5,-65.5 + parent: 2 + - uid: 15495 + components: + - type: Transform + pos: 30.5,-65.5 + parent: 2 + - uid: 15496 + components: + - type: Transform + pos: 31.5,-65.5 + parent: 2 + - uid: 15497 + components: + - type: Transform + pos: 32.5,-65.5 + parent: 2 + - uid: 15498 + components: + - type: Transform + pos: 33.5,-63.5 + parent: 2 + - uid: 15499 + components: + - type: Transform + pos: 33.5,-62.5 + parent: 2 + - uid: 15500 + components: + - type: Transform + pos: 33.5,-61.5 + parent: 2 + - uid: 15501 + components: + - type: Transform + pos: 33.5,-59.5 + parent: 2 + - uid: 15502 + components: + - type: Transform + pos: 33.5,-58.5 + parent: 2 + - uid: 15503 + components: + - type: Transform + pos: 33.5,-57.5 + parent: 2 + - uid: 15504 + components: + - type: Transform + pos: 38.5,-47.5 + parent: 2 + - uid: 15505 + components: + - type: Transform + pos: 39.5,-44.5 + parent: 2 + - uid: 15506 + components: + - type: Transform + pos: 41.5,-44.5 + parent: 2 + - uid: 15507 + components: + - type: Transform + pos: 41.5,-42.5 + parent: 2 + - uid: 15508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-48.5 + parent: 2 + - uid: 15509 + components: + - type: Transform + pos: 27.5,-67.5 + parent: 2 + - uid: 15510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-54.5 + parent: 2 + - uid: 15511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-58.5 + parent: 2 + - uid: 15512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-62.5 + parent: 2 + - uid: 15513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-31.5 + parent: 2 + - uid: 15514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-34.5 + parent: 2 + - uid: 15515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,36.5 + parent: 2 + - uid: 15516 + components: + - type: Transform + pos: -11.5,-25.5 + parent: 2 + - uid: 15517 + components: + - type: Transform + pos: -9.5,-25.5 + parent: 2 + - uid: 15518 + components: + - type: Transform + pos: -8.5,-25.5 + parent: 2 + - uid: 19032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,13.5 + parent: 2 + - uid: 22837 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 +- proto: GrilleBroken + entities: + - uid: 15519 + components: + - type: Transform + pos: -25.5,-44.5 + parent: 2 + - uid: 15520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,7.5 + parent: 2 + - uid: 15521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,8.5 + parent: 2 + - uid: 15522 + components: + - type: Transform + pos: -46.5,-27.5 + parent: 2 + - uid: 15523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-54.5 + parent: 2 + - uid: 15524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-58.5 + parent: 2 + - uid: 15525 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - uid: 15526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,17.5 + parent: 2 + - uid: 15527 + components: + - type: Transform + pos: -24.5,-9.5 + parent: 2 + - uid: 15528 + components: + - type: Transform + pos: -21.5,11.5 + parent: 2 + - uid: 15529 + components: + - type: Transform + pos: -38.5,-33.5 + parent: 2 + - uid: 15530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-54.5 + parent: 2 + - uid: 15531 + components: + - type: Transform + pos: -26.5,-60.5 + parent: 2 + - uid: 15532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-51.5 + parent: 2 + - uid: 15533 + components: + - type: Transform + pos: -25.5,15.5 + parent: 2 + - uid: 15534 + components: + - type: Transform + pos: -29.5,-55.5 + parent: 2 + - uid: 15535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-3.5 + parent: 2 + - uid: 15536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,27.5 + parent: 2 + - uid: 15537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,17.5 + parent: 2 + - uid: 15538 + components: + - type: Transform + pos: -9.5,45.5 + parent: 2 + - uid: 15539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-60.5 + parent: 2 + - uid: 15540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-59.5 + parent: 2 + - uid: 15541 + components: + - type: Transform + pos: -24.5,-60.5 + parent: 2 + - uid: 15542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-60.5 + parent: 2 + - uid: 15543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-43.5 + parent: 2 +- proto: GunSafeDisabler + entities: + - uid: 15547 + components: + - type: Transform + pos: -13.5,38.5 + parent: 2 +- proto: GunSafeLaserCarbine + entities: + - uid: 15548 + components: + - type: Transform + pos: -15.5,38.5 + parent: 2 +- proto: GunSafePistolMk58 + entities: + - uid: 15549 + components: + - type: Transform + pos: -31.5,14.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: Handcuffs + entities: + - uid: 15550 + components: + - type: Transform + pos: 43.518574,-16.785635 + parent: 2 + - uid: 15551 + components: + - type: Transform + pos: -8.463599,39.628452 + parent: 2 + - uid: 15552 + components: + - type: Transform + pos: 4.5119452,-19.054888 + parent: 2 + - uid: 15553 + components: + - type: Transform + pos: 4.5865374,-18.955433 + parent: 2 +- proto: HandheldGPSBasic + entities: + - uid: 15554 + components: + - type: Transform + pos: -44.50894,-35.43707 + parent: 2 +- proto: HandLabeler + entities: + - uid: 15555 + components: + - type: Transform + pos: 7.3101997,-29.177414 + parent: 2 + - uid: 15556 + components: + - type: Transform + pos: -20.372799,-11.412489 + parent: 2 + - uid: 15557 + components: + - type: Transform + pos: -30.58112,-6.4709306 + parent: 2 + - uid: 15558 + components: + - type: Transform + pos: -43.39614,10.873777 + parent: 2 + - uid: 15559 + components: + - type: Transform + pos: -36.55538,-30.565886 + parent: 2 + - uid: 15560 + components: + - type: Transform + pos: -44.475636,-38.837975 + parent: 2 + - uid: 15561 + components: + - type: Transform + pos: 19.690182,16.596298 + parent: 2 + - uid: 15562 + components: + - type: Transform + pos: 19.492775,-18.4637 + parent: 2 + - uid: 15563 + components: + - type: Transform + pos: 28.6381,-14.243845 + parent: 2 + - uid: 15564 + components: + - type: Transform + pos: 38.52634,-34.40402 + parent: 2 + - uid: 15565 + components: + - type: Transform + pos: 7.812145,-29.671413 + parent: 2 +- proto: HappyHonkMime + entities: + - uid: 10519 + components: + - type: Transform + parent: 10501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: HeatExchanger + entities: + - uid: 15566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-68.5 + parent: 2 + - uid: 15567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-68.5 + parent: 2 + - uid: 15568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-68.5 + parent: 2 + - uid: 15569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-68.5 + parent: 2 + - uid: 15570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-70.5 + parent: 2 + - uid: 15571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-70.5 + parent: 2 + - uid: 15572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-70.5 + parent: 2 + - uid: 15573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-70.5 + parent: 2 +- proto: HighSecArmoryLocked + entities: + - uid: 15574 + components: + - type: Transform + pos: -16.5,37.5 + parent: 2 +- proto: HighSecCommandLocked + entities: + - uid: 15575 + components: + - type: Transform + pos: 7.5,73.5 + parent: 2 + - uid: 15576 + components: + - type: Transform + pos: -4.5,73.5 + parent: 2 + - uid: 15577 + components: + - type: Transform + pos: 7.5,81.5 + parent: 2 + - uid: 15578 + components: + - type: Transform + pos: 4.5,84.5 + parent: 2 + - uid: 15579 + components: + - type: Transform + pos: -1.5,84.5 + parent: 2 + - uid: 15580 + components: + - type: Transform + pos: -4.5,81.5 + parent: 2 + - uid: 15581 + components: + - type: Transform + pos: -33.5,13.5 + parent: 2 + - uid: 15582 + components: + - type: Transform + pos: -3.5,-38.5 + parent: 2 + - uid: 15583 + components: + - type: Transform + pos: 3.5,29.5 + parent: 2 + - uid: 15584 + components: + - type: Transform + pos: 3.5,34.5 + parent: 2 + - uid: 15585 + components: + - type: Transform + pos: -1.5,70.5 + parent: 2 + - uid: 15586 + components: + - type: Transform + pos: 4.5,70.5 + parent: 2 + - uid: 15587 + components: + - type: Transform + pos: 1.5,81.5 + parent: 2 +- proto: Holoprojector + entities: + - uid: 15588 + components: + - type: Transform + pos: 7.4954042,13.451323 + parent: 2 +- proto: HospitalCurtainsOpen + entities: + - uid: 15589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-49.5 + parent: 2 + - uid: 15590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-47.5 + parent: 2 + - uid: 15591 + components: + - type: Transform + pos: 39.5,22.5 + parent: 2 + - uid: 15592 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 + - uid: 15593 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 + - uid: 15594 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 15595 + components: + - type: Transform + pos: 36.5,31.5 + parent: 2 + - uid: 15596 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 15597 + components: + - type: Transform + pos: 32.5,31.5 + parent: 2 + - uid: 15598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,36.5 + parent: 2 + - uid: 15599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,36.5 + parent: 2 + - uid: 15600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,36.5 + parent: 2 + - uid: 15601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,24.5 + parent: 2 + - uid: 15602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-26.5 + parent: 2 + - uid: 15603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-26.5 + parent: 2 + - uid: 15604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-35.5 + parent: 2 + - uid: 15605 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 + - uid: 15606 + components: + - type: Transform + pos: -34.5,-58.5 + parent: 2 + - uid: 15607 + components: + - type: Transform + pos: -34.5,-60.5 + parent: 2 +- proto: hydroponicsSoil + entities: + - uid: 15608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 2 + - uid: 15609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 2 + - uid: 15610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 2 + - uid: 15611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 2 + - uid: 15612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 2 + - uid: 15613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 2 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 15614 + components: + - type: Transform + pos: -41.665028,30.54518 + parent: 2 +- proto: HydroponicsToolSpade + entities: + - uid: 15615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.62307,30.398327 + parent: 2 +- proto: hydroponicsTray + entities: + - uid: 15616 + components: + - type: Transform + pos: 33.5,13.5 + parent: 2 + - uid: 15617 + components: + - type: Transform + pos: 34.5,13.5 + parent: 2 + - uid: 15618 + components: + - type: Transform + pos: 35.5,13.5 + parent: 2 + - uid: 15619 + components: + - type: Transform + pos: 36.5,13.5 + parent: 2 + - uid: 15620 + components: + - type: Transform + pos: 38.5,14.5 + parent: 2 + - uid: 15621 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - uid: 15622 + components: + - type: Transform + pos: 38.5,16.5 + parent: 2 + - uid: 15623 + components: + - type: Transform + pos: 38.5,17.5 + parent: 2 + - uid: 15624 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 + - uid: 15625 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 15626 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 + - uid: 15627 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 15628 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 15629 + components: + - type: Transform + pos: 34.5,15.5 + parent: 2 + - uid: 15630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,17.5 + parent: 2 + - uid: 15631 + components: + - type: Transform + pos: -41.5,28.5 + parent: 2 + - uid: 15632 + components: + - type: Transform + pos: -40.5,28.5 + parent: 2 + - uid: 15633 + components: + - type: Transform + pos: -39.5,28.5 + parent: 2 +- proto: HydroponicsTrayMachineCircuitboard + entities: + - uid: 15634 + components: + - type: Transform + pos: -2.4294145,-35.356567 + parent: 2 +- proto: IDComputerCircuitboard + entities: + - uid: 15635 + components: + - type: Transform + pos: -4.5,-40.5 + parent: 2 +- proto: Igniter + entities: + - uid: 15636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.476173,-43.527416 + parent: 2 + - type: DeviceLinkSink + links: + - 18002 +- proto: IngotGold + entities: + - uid: 9171 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 +- proto: IngotSilver + entities: + - uid: 9172 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 +- proto: IntercomAll + entities: + - uid: 15637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,47.5 + parent: 2 + - uid: 15638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,52.5 + parent: 2 + - uid: 15639 + components: + - type: Transform + pos: 3.5,80.5 + parent: 2 + - uid: 15640 + components: + - type: Transform + pos: -0.5,80.5 + parent: 2 + - uid: 15641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,74.5 + parent: 2 + - uid: 15642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,74.5 + parent: 2 +- proto: IntercomAssesmbly + entities: + - uid: 15643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-33.5 + parent: 2 +- proto: IntercomCommand + entities: + - uid: 15644 + components: + - type: Transform + pos: 4.5,28.5 + parent: 2 + - uid: 15645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,3.5 + parent: 2 + - uid: 15646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,6.5 + parent: 2 + - uid: 15647 + components: + - type: Transform + pos: -27.5,14.5 + parent: 2 + - uid: 15648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,3.5 + parent: 2 + - uid: 15649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,5.5 + parent: 2 + - uid: 15650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-0.5 + parent: 2 + - uid: 15651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-14.5 + parent: 2 + - uid: 15652 + components: + - type: Transform + pos: -43.5,-6.5 + parent: 2 + - uid: 15653 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 2 + - uid: 15654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,16.5 + parent: 2 + - uid: 15655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-21.5 + parent: 2 + - uid: 15656 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 2 + - uid: 15657 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 15658 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 2 + - uid: 15659 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 2 + - uid: 15660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,42.5 + parent: 2 + - uid: 15661 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 + - uid: 15662 + components: + - type: Transform + pos: 6.5,45.5 + parent: 2 + - uid: 15663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,51.5 + parent: 2 + - uid: 15664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,71.5 + parent: 2 + - uid: 15665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,71.5 + parent: 2 + - uid: 15666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,71.5 + parent: 2 + - uid: 15667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,78.5 + parent: 2 + - uid: 15668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,81.5 + parent: 2 + - uid: 15669 + components: + - type: Transform + pos: -6.5,84.5 + parent: 2 + - uid: 15670 + components: + - type: Transform + pos: 1.5,85.5 + parent: 2 + - uid: 15671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,78.5 + parent: 2 + - uid: 15672 + components: + - type: Transform + pos: 10.5,-49.5 + parent: 2 +- proto: IntercomCommon + entities: + - uid: 15673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,7.5 + parent: 2 + - uid: 15674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,12.5 + parent: 2 + - uid: 15675 + components: + - type: Transform + pos: -22.5,3.5 + parent: 2 + - uid: 15676 + components: + - type: Transform + pos: -43.5,-14.5 + parent: 2 + - uid: 15677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,18.5 + parent: 2 + - uid: 15678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,14.5 + parent: 2 + - uid: 15679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-1.5 + parent: 2 + - uid: 15680 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - uid: 15681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,3.5 + parent: 2 + - uid: 15682 + components: + - type: Transform + pos: 39.5,-1.5 + parent: 2 + - uid: 15683 + components: + - type: Transform + pos: 32.5,25.5 + parent: 2 + - uid: 15684 + components: + - type: Transform + pos: 17.5,34.5 + parent: 2 + - uid: 15685 + components: + - type: Transform + pos: 22.5,34.5 + parent: 2 + - uid: 15686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,41.5 + parent: 2 + - uid: 15687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,37.5 + parent: 2 + - uid: 15688 + components: + - type: Transform + pos: 21.5,41.5 + parent: 2 + - uid: 15689 + components: + - type: Transform + pos: 24.5,41.5 + parent: 2 + - uid: 15690 + components: + - type: Transform + pos: 24.5,37.5 + parent: 2 + - uid: 15691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-13.5 + parent: 2 + - uid: 15692 + components: + - type: Transform + pos: -18.5,26.5 + parent: 2 + - uid: 15693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,23.5 + parent: 2 + - uid: 15694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,23.5 + parent: 2 + - uid: 15695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,23.5 + parent: 2 + - uid: 15696 + components: + - type: Transform + pos: -31.5,31.5 + parent: 2 + - uid: 15697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,31.5 + parent: 2 + - uid: 15698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,21.5 + parent: 2 + - uid: 15699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,23.5 + parent: 2 + - uid: 15700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,24.5 + parent: 2 + - uid: 15701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,38.5 + parent: 2 + - uid: 15702 + components: + - type: Transform + pos: 39.5,-19.5 + parent: 2 + - uid: 15703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-19.5 + parent: 2 + - uid: 15704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-19.5 + parent: 2 + - uid: 15705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 2 +- proto: IntercomEngineering + entities: + - uid: 15706 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 2 + - uid: 15707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-58.5 + parent: 2 + - uid: 15708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-58.5 + parent: 2 + - uid: 15709 + components: + - type: Transform + pos: -12.5,-54.5 + parent: 2 + - uid: 15710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-45.5 + parent: 2 + - uid: 15711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-36.5 + parent: 2 + - uid: 15712 + components: + - type: Transform + pos: 22.5,-38.5 + parent: 2 + - uid: 15713 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 2 + - uid: 15714 + components: + - type: Transform + pos: -2.5,-54.5 + parent: 2 + - uid: 15715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-59.5 + parent: 2 + - uid: 15716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-58.5 + parent: 2 + - uid: 15717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-64.5 + parent: 2 + - uid: 15718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-66.5 + parent: 2 + - uid: 15719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-67.5 + parent: 2 + - uid: 15720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-67.5 + parent: 2 + - uid: 15721 + components: + - type: Transform + pos: 2.5,-71.5 + parent: 2 + - uid: 15722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-65.5 + parent: 2 + - uid: 15723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-60.5 + parent: 2 + - uid: 15724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-60.5 + parent: 2 + - uid: 15725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-47.5 + parent: 2 + - uid: 15726 + components: + - type: Transform + pos: 34.5,-47.5 + parent: 2 +- proto: IntercomMedical + entities: + - uid: 15727 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 2 + - uid: 15728 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 2 + - uid: 15729 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 2 + - uid: 15730 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 2 + - uid: 15731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-19.5 + parent: 2 + - uid: 15732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-35.5 + parent: 2 + - uid: 15733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-28.5 + parent: 2 + - uid: 15734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-26.5 + parent: 2 + - uid: 15735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-31.5 + parent: 2 + - uid: 15736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-30.5 + parent: 2 + - uid: 15737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-29.5 + parent: 2 + - uid: 15738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-32.5 + parent: 2 + - uid: 15739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-29.5 + parent: 2 + - uid: 15740 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 15741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-21.5 + parent: 2 + - uid: 15742 + components: + - type: Transform + pos: 11.5,-33.5 + parent: 2 +- proto: IntercomScience + entities: + - uid: 15743 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 15744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-27.5 + parent: 2 + - uid: 15745 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 2 + - uid: 15746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-22.5 + parent: 2 + - uid: 15747 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 2 + - uid: 15748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-21.5 + parent: 2 + - uid: 15749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-29.5 + parent: 2 + - uid: 15750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-33.5 + parent: 2 + - uid: 15751 + components: + - type: Transform + pos: -3.5,-29.5 + parent: 2 + - uid: 15752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-29.5 + parent: 2 + - uid: 15753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-34.5 + parent: 2 + - uid: 15754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-39.5 + parent: 2 + - uid: 15755 + components: + - type: Transform + pos: -40.5,-40.5 + parent: 2 + - uid: 15756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-33.5 + parent: 2 + - uid: 15757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-14.5 + parent: 2 + - uid: 15758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-34.5 + parent: 2 +- proto: IntercomSecurity + entities: + - uid: 15759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,12.5 + parent: 2 + - uid: 15760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,15.5 + parent: 2 + - uid: 15761 + components: + - type: Transform + pos: -13.5,13.5 + parent: 2 + - uid: 15762 + components: + - type: Transform + pos: -9.5,13.5 + parent: 2 + - uid: 15763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,18.5 + parent: 2 + - uid: 15764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-36.5 + parent: 2 + - uid: 15765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-3.5 + parent: 2 + - uid: 15766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-15.5 + parent: 2 + - uid: 15767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,19.5 + parent: 2 + - uid: 15768 + components: + - type: Transform + pos: -7.5,30.5 + parent: 2 + - uid: 15769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,30.5 + parent: 2 + - uid: 15770 + components: + - type: Transform + pos: -17.5,37.5 + parent: 2 + - uid: 15771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,31.5 + parent: 2 + - uid: 15772 + components: + - type: Transform + pos: -13.5,41.5 + parent: 2 + - uid: 15773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,33.5 + parent: 2 + - uid: 15774 + components: + - type: Transform + pos: -21.5,30.5 + parent: 2 + - uid: 15775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,41.5 + parent: 2 + - uid: 15776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,37.5 + parent: 2 + - uid: 15777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,35.5 + parent: 2 + - uid: 15778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 2 + - uid: 15779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-48.5 + parent: 2 +- proto: IntercomService + entities: + - uid: 15780 + components: + - type: Transform + pos: 9.5,16.5 + parent: 2 + - uid: 15781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,17.5 + parent: 2 + - uid: 15782 + components: + - type: Transform + pos: 24.5,20.5 + parent: 2 + - uid: 15783 + components: + - type: Transform + pos: 25.5,24.5 + parent: 2 + - uid: 15784 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - uid: 15785 + components: + - type: Transform + pos: 35.5,20.5 + parent: 2 + - uid: 15786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,19.5 + parent: 2 +- proto: IntercomSupply + entities: + - uid: 15787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-7.5 + parent: 2 +- proto: JanitorialTrolley + entities: + - uid: 15788 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 15789 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 +- proto: JetpackBlack + entities: + - uid: 15790 + components: + - type: Transform + pos: -4.621241,-24.60965 + parent: 2 + - uid: 15791 + components: + - type: Transform + pos: -4.3694925,-24.488438 + parent: 2 + - uid: 15792 + components: + - type: Transform + pos: -4.6025934,-24.395197 + parent: 2 + - uid: 15793 + components: + - type: Transform + pos: -4.434761,-24.572353 + parent: 2 +- proto: JetpackBlue + entities: + - uid: 15794 + components: + - type: Transform + pos: 2.30956,-59.56945 + parent: 2 + - uid: 15795 + components: + - type: Transform + pos: 2.524012,-59.40162 + parent: 2 +- proto: KitchenElectricGrill + entities: + - uid: 15796 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 2 + - type: ItemPlacer + placedEntities: + - 11487 + - uid: 15797 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 +- proto: KitchenKnife + entities: + - uid: 15798 + components: + - type: Transform + pos: -26.501507,-63.49208 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 15799 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 2 + - uid: 15800 + components: + - type: Transform + pos: -26.5,-62.5 + parent: 2 + - uid: 15801 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 15802 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 15803 + components: + - type: Transform + pos: -40.5,34.5 + parent: 2 + - uid: 15804 + components: + - type: Transform + pos: 40.5,-14.5 + parent: 2 + - uid: 15805 + components: + - type: Transform + pos: 2.5,-52.5 + parent: 2 + - uid: 15806 + components: + - type: Transform + pos: -6.5,-31.5 + parent: 2 +- proto: KitchenReagentGrinder + entities: + - uid: 837 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 2 + - type: ContainerContainer + containers: + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 838 + inputContainer: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10574 + components: + - type: Transform + pos: -41.5,30.5 + parent: 2 + - type: ContainerContainer + containers: + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 10575 + inputContainer: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 15807 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 2 + - uid: 15808 + components: + - type: Transform + pos: 18.5,14.5 + parent: 2 + - uid: 15809 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - uid: 15810 + components: + - type: Transform + pos: 37.5,12.5 + parent: 2 + - uid: 15811 + components: + - type: Transform + pos: -2.5,55.5 + parent: 2 + - uid: 15812 + components: + - type: Transform + pos: 39.5,-34.5 + parent: 2 + - type: ContainerContainer + containers: + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 15813 + inputContainer: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] +- proto: KitchenSpike + entities: + - uid: 15814 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 2 + - uid: 15815 + components: + - type: Transform + pos: -3.5,-33.5 + parent: 2 + - uid: 15816 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 + - uid: 15817 + components: + - type: Transform + pos: 25.5,21.5 + parent: 2 +- proto: Lamp + entities: + - uid: 15818 + components: + - type: Transform + pos: -3.5759635,15.020327 + parent: 2 + - uid: 15819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.522073,42.801456 + parent: 2 +- proto: LampGold + entities: + - uid: 15820 + components: + - type: Transform + pos: -13.598702,-2.129864 + parent: 2 + - uid: 15821 + components: + - type: Transform + pos: -17.597763,-5.2205453 + parent: 2 + - uid: 15822 + components: + - type: Transform + pos: -19.62041,22.866505 + parent: 2 + - uid: 15823 + components: + - type: Transform + pos: -26.568039,45.785202 + parent: 2 + - uid: 15824 + components: + - type: Transform + pos: -8.597343,50.015892 + parent: 2 + - uid: 15825 + components: + - type: Transform + pos: -8.644331,56.90023 + parent: 2 + - uid: 15826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.40474,-34.169563 + parent: 2 +- proto: LampInterrogator + entities: + - uid: 15827 + components: + - type: Transform + pos: -25.43687,24.872316 + parent: 2 +- proto: LargeBeaker + entities: + - uid: 8616 + components: + - type: Transform + parent: 8615 + - type: Physics + canCollide: False + - uid: 8618 + components: + - type: Transform + parent: 8617 + - type: Physics + canCollide: False + - uid: 15813 + components: + - type: Transform + parent: 15812 + - type: Physics + canCollide: False + - uid: 15828 + components: + - type: Transform + pos: -26.885696,-16.267149 + parent: 2 + - uid: 15829 + components: + - type: Transform + pos: -36.443493,-30.048403 + parent: 2 + - uid: 15830 + components: + - type: Transform + pos: -36.779156,-27.544907 + parent: 2 + - uid: 15831 + components: + - type: Transform + pos: -36.79314,-27.223228 + parent: 2 + - uid: 15832 + components: + - type: Transform + pos: -5.3724923,-31.250595 + parent: 2 +- proto: LegionnaireBonfire + entities: + - uid: 15833 + components: + - type: Transform + pos: 0.5,-50.5 + parent: 2 +- proto: Lighter + entities: + - uid: 15834 + components: + - type: Transform + pos: 17.475067,12.604044 + parent: 2 + - uid: 15835 + components: + - type: Transform + pos: 10.483806,54.125267 + parent: 2 +- proto: LightReplacerEmpty + entities: + - uid: 15836 + components: + - type: Transform + pos: 1.4214635,-44.14184 + parent: 2 +- proto: LiquidOxygenCanister + entities: + - uid: 15839 + components: + - type: Transform + pos: -28.5,-39.5 + parent: 2 + - uid: 15840 + components: + - type: Transform + pos: -28.5,-38.5 + parent: 2 + - uid: 15841 + components: + - type: Transform + pos: -28.5,-37.5 + parent: 2 +- proto: LockerAtmosphericsFilled + entities: + - uid: 15842 + components: + - type: Transform + pos: 10.5,-48.5 + parent: 2 + - uid: 15843 + components: + - type: Transform + pos: 11.5,-48.5 + parent: 2 + - uid: 15844 + components: + - type: Transform + pos: 12.5,-48.5 + parent: 2 + - uid: 15845 + components: + - type: Transform + pos: 13.5,-48.5 + parent: 2 + - uid: 15846 + components: + - type: Transform + pos: 34.5,-41.5 + parent: 2 +- proto: LockerBooze + entities: + - uid: 8887 + components: + - type: Transform + pos: 24.5,35.5 + parent: 2 + - type: Lock + locked: False + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8888 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15847 + components: + - type: Transform + pos: -19.5,-43.5 + parent: 2 + - uid: 15848 + components: + - type: Transform + pos: 23.5,40.5 + parent: 2 + - type: Lock + locked: False + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15849 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerBoozeFilled + entities: + - uid: 15850 + components: + - type: Transform + pos: 17.5,18.5 + parent: 2 +- proto: LockerBotanistFilled + entities: + - uid: 15851 + components: + - type: Transform + pos: 41.5,17.5 + parent: 2 + - uid: 15852 + components: + - type: Transform + pos: 42.5,17.5 + parent: 2 + - uid: 15853 + components: + - type: Transform + pos: 43.5,17.5 + parent: 2 +- proto: LockerBrigmedicFilledHardsuit + entities: + - uid: 15854 + components: + - type: Transform + pos: -27.5,36.5 + parent: 2 +- proto: LockerCaptainFilled + entities: + - uid: 15855 + components: + - type: Transform + pos: -5.5,49.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15856 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerChemistryFilled + entities: + - uid: 15857 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 2 + - uid: 15858 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 2 + - uid: 15859 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 2 + - uid: 15860 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 2 + - uid: 15861 + components: + - type: Transform + pos: 9.5,-32.5 + parent: 2 +- proto: LockerChiefEngineerFilled + entities: + - uid: 8799 + components: + - type: Transform + pos: 14.5,-55.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8801 + - 8800 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerChiefJusticeFilled + entities: + - uid: 20020 + components: + - type: Transform + pos: -15.5,9.5 + parent: 2 +- proto: LockerChiefMedicalOfficerFilled + entities: + - uid: 15862 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15863 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerClerkFilled + entities: + - uid: 271 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 +- proto: LockerClown + entities: + - uid: 10524 + components: + - type: Transform + pos: 43.5,13.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10525 + - 10526 + - 10527 + - 10528 + - 10529 + - 10530 + - 10531 + - 10532 + - 10533 + - 10534 + - 10535 + - 10536 + - 10537 + - 10538 + - 10539 + - 10540 + - 10541 + - 10542 + - 10543 + - 10544 + - 10545 + - 10546 + - 10547 + - 10548 + - 10549 + - 10550 + - 10551 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerDetectiveFilled + entities: + - uid: 15864 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 15865 + components: + - type: Transform + pos: 4.5,-57.5 + parent: 2 +- proto: LockerEngineerFilled + entities: + - uid: 15866 + components: + - type: Transform + pos: 4.5,-60.5 + parent: 2 + - uid: 15867 + components: + - type: Transform + pos: 4.5,-59.5 + parent: 2 + - uid: 15868 + components: + - type: Transform + pos: 4.5,-58.5 + parent: 2 +- proto: LockerEvidence + entities: + - uid: 15869 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - uid: 15870 + components: + - type: Transform + pos: 45.5,-18.5 + parent: 2 + - uid: 15871 + components: + - type: Transform + pos: -16.5,40.5 + parent: 2 + - uid: 15872 + components: + - type: Transform + pos: -20.5,33.5 + parent: 2 + - uid: 15873 + components: + - type: Transform + pos: -20.5,34.5 + parent: 2 + - uid: 15874 + components: + - type: Transform + pos: -20.5,35.5 + parent: 2 + - uid: 15875 + components: + - type: Transform + pos: -20.5,36.5 + parent: 2 + - uid: 15876 + components: + - type: Transform + pos: -32.5,26.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15877 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15878 + components: + - type: Transform + pos: -35.5,22.5 + parent: 2 + - uid: 15879 + components: + - type: Transform + pos: -35.5,21.5 + parent: 2 + - uid: 15880 + components: + - type: Transform + pos: -35.5,20.5 + parent: 2 + - uid: 15881 + components: + - type: Transform + pos: -35.5,19.5 + parent: 2 + - uid: 15882 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 2 + - uid: 15883 + components: + - type: Transform + pos: 2.5,-48.5 + parent: 2 + - uid: 15884 + components: + - type: Transform + pos: -27.5,-35.5 + parent: 2 +- proto: LockerForensicMantisFilled + entities: + - uid: 15885 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 2 +- proto: LockerFreezer + entities: + - uid: 15886 + components: + - type: Transform + pos: -22.5,-67.5 + parent: 2 + - uid: 15887 + components: + - type: Transform + pos: -22.5,-68.5 + parent: 2 + - uid: 15888 + components: + - type: Transform + pos: 24.5,19.5 + parent: 2 + - uid: 15889 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - uid: 15890 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - uid: 15891 + components: + - type: Transform + pos: 24.5,23.5 + parent: 2 + - uid: 15892 + components: + - type: Transform + pos: 24.5,27.5 + parent: 2 +- proto: LockerFreezerBase + entities: + - uid: 10576 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10577 + - 10579 + - 10580 + - 10578 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15893 + components: + - type: Transform + pos: -82.5,-52.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 8815 + components: + - type: Transform + pos: 7.4989414,50.50517 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10900 + - 10902 + - 15895 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 8883 + components: + - type: Transform + pos: -23.5,45.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8885 + - 8884 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedicalFilled + entities: + - uid: 15896 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 2 + - uid: 15897 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 2 + - uid: 15898 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 +- proto: LockerMedicineFilled + entities: + - uid: 15899 + components: + - type: Transform + pos: -28.5,37.5 + parent: 2 + - type: Lock + locked: False + - uid: 15900 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 + - uid: 15901 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 2 + - uid: 15902 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 2 + - uid: 15903 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 2 +- proto: LockerMime + entities: + - uid: 10501 + components: + - type: Transform + pos: 43.5,15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10502 + - 10503 + - 10504 + - 10505 + - 10506 + - 10507 + - 10508 + - 10509 + - 10510 + - 10511 + - 10512 + - 10513 + - 10514 + - 10515 + - 10516 + - 10517 + - 10518 + - 10519 + - 10520 + - 10521 + - 10522 + - 10523 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerParamedicFilled + entities: + - uid: 15904 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 +- proto: LockerQuarterMasterFilled + entities: + - uid: 15905 + components: + - type: Transform + pos: -25.5,4.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15906 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerRepresentative + entities: + - uid: 22310 + components: + - type: Transform + pos: 7.5,27.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 22311 + - 22312 + - 22313 + - 22314 + - 22316 + - 22317 + - 22318 + - 22319 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerResearchDirectorFilled + entities: + - uid: 15907 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15908 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 15909 + components: + - type: Transform + pos: -36.5,-10.5 + parent: 2 + - uid: 15910 + components: + - type: Transform + pos: -36.5,-11.5 + parent: 2 + - uid: 15911 + components: + - type: Transform + pos: -36.5,-12.5 + parent: 2 +- proto: LockerScienceFilled + entities: + - uid: 15912 + components: + - type: Transform + pos: -38.5,-41.5 + parent: 2 + - uid: 15913 + components: + - type: Transform + pos: -44.5,-40.5 + parent: 2 + - uid: 15914 + components: + - type: Transform + pos: -39.5,-41.5 + parent: 2 + - uid: 15915 + components: + - type: Transform + pos: -44.5,-41.5 + parent: 2 +- proto: LockerSecurityFilled + entities: + - uid: 15916 + components: + - type: Transform + pos: -11.5,35.5 + parent: 2 + - uid: 15917 + components: + - type: Transform + pos: -11.5,34.5 + parent: 2 + - uid: 15918 + components: + - type: Transform + pos: -10.5,34.5 + parent: 2 + - uid: 15919 + components: + - type: Transform + pos: -10.5,35.5 + parent: 2 + - uid: 15920 + components: + - type: Transform + pos: -11.5,36.5 + parent: 2 +- proto: LockerWardenFilled + entities: + - uid: 15921 + components: + - type: Transform + pos: -14.5,36.5 + parent: 2 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 15922 + components: + - type: Transform + pos: 14.5,-48.5 + parent: 2 +- proto: LunchboxCommandFilledRandom + entities: + - uid: 22311 + components: + - type: Transform + parent: 22310 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: MachineAnomalyGenerator + entities: + - uid: 15923 + components: + - type: Transform + pos: -43.5,-30.5 + parent: 2 +- proto: MachineAnomalyVessel + entities: + - uid: 15924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-39.5 + parent: 2 + - uid: 15925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-38.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 15926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-39.5 + parent: 2 + - uid: 15927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-38.5 + parent: 2 +- proto: MachineArtifactAnalyzer + entities: + - uid: 15928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8978 +- proto: MachineCentrifuge + entities: + - uid: 15929 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 2 +- proto: MachineElectrolysisUnit + entities: + - uid: 15930 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 2 +- proto: MachineFrame + entities: + - uid: 15931 + components: + - type: Transform + pos: 45.5,-40.5 + parent: 2 + - uid: 15932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-40.5 + parent: 2 +- proto: MachineFrameDestroyed + entities: + - uid: 15934 + components: + - type: Transform + pos: 40.5,-40.5 + parent: 2 + - uid: 15935 + components: + - type: Transform + pos: 36.5,-39.5 + parent: 2 + - uid: 15936 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 2 +- proto: MagazinePistol + entities: + - uid: 15937 + components: + - type: Transform + pos: 6.422253,27.666708 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: MagazinePistolRubber + entities: + - uid: 15938 + components: + - type: Transform + pos: 6.4003363,27.67767 + parent: 2 + - type: Physics + angularDamping: 0 + linearDamping: 0 +- proto: MagazinePistolSubMachineGun + entities: + - uid: 15939 + components: + - type: Transform + pos: -13.498616,40.531715 + parent: 2 + - uid: 15940 + components: + - type: Transform + pos: -13.386728,40.587658 + parent: 2 + - uid: 15941 + components: + - type: Transform + pos: -13.46132,40.531715 + parent: 2 + - uid: 15942 + components: + - type: Transform + pos: -13.433348,40.578335 + parent: 2 + - uid: 15943 + components: + - type: Transform + pos: -13.36808,40.624954 + parent: 2 +- proto: MagazinePistolSubMachineGunRubber + entities: + - uid: 15944 + components: + - type: Transform + pos: -13.4147,40.578335 + parent: 2 + - uid: 15945 + components: + - type: Transform + pos: -13.4147,40.578335 + parent: 2 +- proto: MagazineRifle + entities: + - uid: 15946 + components: + - type: Transform + pos: -13.62267,40.460464 + parent: 2 + - uid: 15947 + components: + - type: Transform + pos: -13.291159,40.536873 + parent: 2 + - uid: 15948 + components: + - type: Transform + pos: -13.3485365,40.492302 + parent: 2 + - uid: 15949 + components: + - type: Transform + pos: -13.578044,40.54324 + parent: 2 + - uid: 15950 + components: + - type: Transform + pos: -13.507916,40.626015 + parent: 2 +- proto: MagazineRifleRubber + entities: + - uid: 15951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.367661,40.766098 + parent: 2 + - uid: 15952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.367661,40.66422 + parent: 2 +- proto: MailingUnit + entities: + - uid: 296 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 2 + - uid: 15953 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 2 + - type: MailingUnit + tag: Cargo + - uid: 15954 + components: + - type: Transform + pos: -6.5,30.5 + parent: 2 + - type: MailingUnit + tag: Segurança + - uid: 15955 + components: + - type: Transform + pos: -20.5,32.5 + parent: 2 + - uid: 16321 + components: + - type: Transform + pos: -2.5,-44.5 + parent: 2 + - type: MailingUnit + tag: Engenharia + - uid: 16325 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 2 + - type: MailingUnit + tag: Atmosferica + - uid: 22642 + components: + - type: Transform + pos: 38.5,2.5 + parent: 2 + - uid: 22643 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 + - uid: 22671 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 22676 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 22677 + components: + - type: Transform + pos: 10.5,15.5 + parent: 2 + - uid: 22678 + components: + - type: Transform + pos: -35.5,-33.5 + parent: 2 + - uid: 24030 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 2 + - type: MailingUnit + tag: Medicina +- proto: MailTeleporter + entities: + - uid: 15956 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 2 +- proto: MaintenanceFluffSpawner + entities: + - uid: 15957 + components: + - type: Transform + pos: -23.5,-44.5 + parent: 2 + - uid: 15958 + components: + - type: Transform + pos: -19.5,-37.5 + parent: 2 + - uid: 15959 + components: + - type: Transform + pos: -41.5,-25.5 + parent: 2 + - uid: 15960 + components: + - type: Transform + pos: -29.5,21.5 + parent: 2 + - uid: 15961 + components: + - type: Transform + pos: -11.5,48.5 + parent: 2 + - uid: 15962 + components: + - type: Transform + pos: 16.5,27.5 + parent: 2 + - uid: 15963 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 2 +- proto: MaintenancePlantSpawner + entities: + - uid: 15964 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 2 + - uid: 15965 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 15966 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - uid: 15967 + components: + - type: Transform + pos: -25.5,15.5 + parent: 2 + - uid: 15968 + components: + - type: Transform + pos: -2.5,43.5 + parent: 2 + - uid: 15969 + components: + - type: Transform + pos: 5.5,-37.5 + parent: 2 + - uid: 15970 + components: + - type: Transform + pos: -29.5,-44.5 + parent: 2 + - uid: 15971 + components: + - type: Transform + pos: -24.5,-62.5 + parent: 2 + - uid: 15972 + components: + - type: Transform + pos: -3.5,-53.5 + parent: 2 + - uid: 15973 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 +- proto: MaintenanceToolSpawner + entities: + - uid: 15974 + components: + - type: Transform + pos: -19.5,-42.5 + parent: 2 + - uid: 15975 + components: + - type: Transform + pos: -38.5,-22.5 + parent: 2 + - uid: 15976 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 2 + - uid: 15977 + components: + - type: Transform + pos: -18.5,14.5 + parent: 2 + - uid: 15978 + components: + - type: Transform + pos: 23.5,27.5 + parent: 2 + - uid: 15979 + components: + - type: Transform + pos: 20.5,27.5 + parent: 2 + - uid: 15980 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 15981 + components: + - type: Transform + pos: -22.5,-52.5 + parent: 2 + - uid: 15982 + components: + - type: Transform + pos: -26.5,-56.5 + parent: 2 + - uid: 15983 + components: + - type: Transform + pos: -25.5,-56.5 + parent: 2 + - uid: 15984 + components: + - type: Transform + pos: -6.5,-51.5 + parent: 2 + - uid: 15985 + components: + - type: Transform + pos: 6.5,-37.5 + parent: 2 + - uid: 15986 + components: + - type: Transform + pos: -2.5,-50.5 + parent: 2 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 15987 + components: + - type: Transform + pos: -21.5,-42.5 + parent: 2 + - uid: 15988 + components: + - type: Transform + pos: -46.5,-25.5 + parent: 2 + - uid: 15989 + components: + - type: Transform + pos: -23.5,21.5 + parent: 2 + - uid: 15990 + components: + - type: Transform + pos: -29.5,-64.5 + parent: 2 + - uid: 15991 + components: + - type: Transform + pos: -7.5,-51.5 + parent: 2 + - uid: 15992 + components: + - type: Transform + pos: 7.5,-37.5 + parent: 2 +- proto: Matchbox + entities: + - uid: 15993 + components: + - type: Transform + pos: 18.550014,8.925238 + parent: 2 + - uid: 15994 + components: + - type: Transform + pos: 17.344532,12.520128 + parent: 2 + - uid: 15995 + components: + - type: Transform + pos: 25.54633,33.540943 + parent: 2 + - uid: 15996 + components: + - type: Transform + pos: -2.5324435,56.50862 + parent: 2 +- proto: MaterialBones1 + entities: + - uid: 15997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.15635538,-50.569748 + parent: 2 + - uid: 15998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.3093797,-51.854664 + parent: 2 + - uid: 15999 + components: + - type: Transform + pos: 0.7005973,-52.431946 + parent: 2 + - uid: 16000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.547573,-52.338837 + parent: 2 + - uid: 16001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.8123738,-51.14703 + parent: 2 +- proto: MaterialCardboard + entities: + - uid: 16002 + components: + - type: Transform + pos: 26.476929,25.55731 + parent: 2 +- proto: MaterialCardboard10 + entities: + - uid: 16003 + components: + - type: Transform + pos: -30.46923,-3.403332 + parent: 2 +- proto: MaterialCloth + entities: + - uid: 10902 + components: + - type: Transform + parent: 8815 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: MaterialDurathread + entities: + - uid: 10900 + components: + - type: Transform + parent: 8815 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: MaterialReclaimer + entities: + - uid: 16004 + components: + - type: Transform + pos: -44.5,14.5 + parent: 2 +- proto: MaterialWoodPlank1 + entities: + - uid: 16005 + components: + - type: Transform + pos: -13.5,6.5 + parent: 2 + - uid: 16006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5517,-58.470978 + parent: 2 + - uid: 16007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.530666,-64.49116 + parent: 2 + - uid: 16008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.522465,-64.39292 + parent: 2 + - uid: 16009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.531445,-63.51303 + parent: 2 +- proto: MatterBinStockPart + entities: + - uid: 16010 + components: + - type: Transform + pos: 24.282856,-39.229134 + parent: 2 + - uid: 16011 + components: + - type: Transform + pos: 24.632507,-39.341022 + parent: 2 +- proto: Mattress + entities: + - uid: 16012 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - uid: 16013 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 2 + - uid: 16014 + components: + - type: Transform + pos: 32.5,-34.5 + parent: 2 + - uid: 16015 + components: + - type: Transform + pos: 41.5,-36.5 + parent: 2 + - uid: 16016 + components: + - type: Transform + pos: 47.5,-36.5 + parent: 2 +- proto: MedicalBed + entities: + - uid: 16017 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 2 + - uid: 16018 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 2 + - uid: 16019 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 2 + - uid: 16020 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 2 + - uid: 16021 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 2 + - uid: 16022 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 2 +- proto: MedicalScanner + entities: + - uid: 825 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 2 + - uid: 16023 + components: + - type: Transform + pos: 30.5,-27.5 + parent: 2 +- proto: MedicalTechFab + entities: + - uid: 16024 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 2 +- proto: MediumXenoArtifactItem + entities: + - uid: 9161 + components: + - type: Transform + parent: 9160 + - type: Artifact + isSuppressed: True + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage +- proto: MedkitAdvancedFilled + entities: + - uid: 16030 + components: + - type: Transform + pos: -14.453555,38.475426 + parent: 2 + - uid: 16031 + components: + - type: Transform + pos: -0.5451498,62.658527 + parent: 2 +- proto: MedkitBruteFilled + entities: + - uid: 16032 + components: + - type: Transform + pos: 16.380516,-20.358416 + parent: 2 + - uid: 16033 + components: + - type: Transform + pos: 16.380516,-20.240313 + parent: 2 +- proto: MedkitBurnFilled + entities: + - uid: 16034 + components: + - type: Transform + pos: 22.513134,-14.547533 + parent: 2 + - uid: 16035 + components: + - type: Transform + pos: 16.63013,-19.48196 + parent: 2 + - uid: 16036 + components: + - type: Transform + pos: 16.63013,-19.320343 + parent: 2 +- proto: MedkitCombatFilled + entities: + - uid: 16037 + components: + - type: Transform + pos: 4.469173,-21.368795 + parent: 2 +- proto: MedkitFilled + entities: + - uid: 826 + components: + - type: Transform + pos: -19.489769,-20.498121 + parent: 2 + - uid: 1039 + components: + - type: Transform + pos: -19.489769,-20.308727 + parent: 2 + - uid: 1121 + components: + - type: Transform + pos: -19.489769,-20.119333 + parent: 2 + - uid: 1186 + components: + - type: Transform + pos: -37.5,-35.5 + parent: 2 + - uid: 4549 + components: + - type: Transform + pos: -37.5,-35.5 + parent: 2 + - uid: 8853 + components: + - type: Transform + parent: 8848 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16038 + components: + - type: Transform + pos: 42.70952,36.55479 + parent: 2 + - uid: 16039 + components: + - type: Transform + pos: -30.527771,32.556423 + parent: 2 + - uid: 16040 + components: + - type: Transform + pos: -0.5241709,62.532654 + parent: 2 + - uid: 16041 + components: + - type: Transform + pos: 16.43153,-19.693304 + parent: 2 + - uid: 16042 + components: + - type: Transform + pos: 16.43153,-19.562767 + parent: 2 + - uid: 16043 + components: + - type: Transform + pos: 13.718545,-32.476097 + parent: 2 +- proto: MedkitOxygenFilled + entities: + - uid: 16044 + components: + - type: Transform + pos: 16.579979,-20.544226 + parent: 2 + - uid: 16045 + components: + - type: Transform + pos: 16.573212,-20.426792 + parent: 2 +- proto: MedkitRadiationFilled + entities: + - uid: 16046 + components: + - type: Transform + pos: 16.585644,-18.586855 + parent: 2 + - uid: 16047 + components: + - type: Transform + pos: 16.585644,-18.71739 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 4560 + components: + - type: Transform + pos: -43.5,-50.5 + parent: 2 + - uid: 16049 + components: + - type: Transform + pos: 16.417812,-18.331999 + parent: 2 + - uid: 16050 + components: + - type: Transform + pos: 16.417812,-18.450102 + parent: 2 +- proto: MegaSprayBottle + entities: + - uid: 16051 + components: + - type: Transform + pos: 32.662113,19.936192 + parent: 2 +- proto: MetempsychoticMachine + entities: + - uid: 819 + components: + - type: Transform + pos: 32.5,-27.5 + parent: 2 +- proto: MicroManipulatorStockPart + entities: + - uid: 16052 + components: + - type: Transform + pos: 23.52761,-39.38298 + parent: 2 + - uid: 16053 + components: + - type: Transform + pos: 23.625511,-39.49487 + parent: 2 +- proto: MicrowaveMachineCircuitboard + entities: + - uid: 16054 + components: + - type: Transform + pos: -6.4888306,-12.404985 + parent: 2 +- proto: MiningDrill + entities: + - uid: 16055 + components: + - type: Transform + pos: -42.473663,-9.2381115 + parent: 2 +- proto: Mirror + entities: + - uid: 16056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,13.5 + parent: 2 + - uid: 16057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,21.5 + parent: 2 + - uid: 16058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,22.5 + parent: 2 + - uid: 16059 + components: + - type: Transform + pos: -10.5,53.5 + parent: 2 + - uid: 16060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-29.5 + parent: 2 +- proto: MMI + entities: + - uid: 16061 + components: + - type: Transform + pos: -19.531075,-16.07982 + parent: 2 + - uid: 16062 + components: + - type: Transform + pos: -19.447159,-16.233667 + parent: 2 +- proto: ModularGrenade + entities: + - uid: 16063 + components: + - type: Transform + pos: -41.45344,-32.7873 + parent: 2 + - uid: 16064 + components: + - type: Transform + pos: 7.25298,13.699963 + parent: 2 + - uid: 16065 + components: + - type: Transform + pos: 7.538916,13.339434 + parent: 2 + - uid: 16066 + components: + - type: Transform + pos: 7.7502604,13.4451065 + parent: 2 + - uid: 16067 + components: + - type: Transform + pos: -10.706679,-55.53336 + parent: 2 + - uid: 16068 + components: + - type: Transform + pos: -10.706679,-55.24742 + parent: 2 + - uid: 16069 + components: + - type: Transform + pos: -41.57844,-32.7873 + parent: 2 + - uid: 16070 + components: + - type: Transform + pos: -41.305004,-32.784176 + parent: 2 + - uid: 16071 + components: + - type: Transform + pos: 30.36745,-52.382015 + parent: 2 +- proto: MopBucket + entities: + - uid: 16076 + components: + - type: Transform + pos: -10.526969,-40.502083 + parent: 2 +- proto: MopBucketFull + entities: + - uid: 16077 + components: + - type: Transform + pos: 21.555202,27.513826 + parent: 2 +- proto: MopItem + entities: + - uid: 16078 + components: + - type: Transform + pos: 9.276443,11.439346 + parent: 2 + - uid: 16079 + components: + - type: Transform + pos: -10.547948,-40.502083 + parent: 2 +- proto: Morgue + entities: + - uid: 16080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-18.5 + parent: 2 + - uid: 16081 + components: + - type: Transform + pos: -36.5,39.5 + parent: 2 + - uid: 16082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 2 + - uid: 16083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-9.5 + parent: 2 + - uid: 16084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-10.5 + parent: 2 + - uid: 16085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-8.5 + parent: 2 + - uid: 16086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 2 + - uid: 16087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-10.5 + parent: 2 + - uid: 16088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-8.5 + parent: 2 + - uid: 16089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-9.5 + parent: 2 + - uid: 16090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-10.5 + parent: 2 +- proto: MouseTimedSpawner + entities: + - uid: 16091 + components: + - type: Transform + pos: -32.5,20.5 + parent: 2 +- proto: Multitool + entities: + - uid: 16092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.343704,-13.085022 + parent: 2 + - uid: 16093 + components: + - type: Transform + pos: -43.685184,10.920397 + parent: 2 + - uid: 16094 + components: + - type: Transform + pos: -22.323101,-30.658142 + parent: 2 + - uid: 16095 + components: + - type: Transform + pos: -6.2626686,-21.5607 + parent: 2 + - uid: 16096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.198826,-50.85587 + parent: 2 + - uid: 16097 + components: + - type: Transform + pos: -41.18152,-33.136368 + parent: 2 + - uid: 22329 + components: + - type: Transform + pos: 31.105812,-31.412148 + parent: 2 +- proto: NetworkConfigurator + entities: + - uid: 16098 + components: + - type: Transform + pos: 41.690483,19.640884 + parent: 2 +- proto: NitrogenCanister + entities: + - uid: 16099 + components: + - type: Transform + pos: -6.5,-37.5 + parent: 2 + - uid: 16100 + components: + - type: Transform + pos: -29.5,-39.5 + parent: 2 + - uid: 16101 + components: + - type: Transform + pos: -29.5,-38.5 + parent: 2 + - uid: 16102 + components: + - type: Transform + pos: -29.5,-37.5 + parent: 2 + - uid: 16103 + components: + - type: Transform + pos: 9.5,78.5 + parent: 2 + - uid: 16104 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 + - uid: 16105 + components: + - type: Transform + pos: -42.5,-25.5 + parent: 2 + - uid: 16106 + components: + - type: Transform + pos: -29.5,-50.5 + parent: 2 + - uid: 16107 + components: + - type: Transform + pos: 14.5,-37.5 + parent: 2 + - uid: 16108 + components: + - type: Transform + pos: 17.5,-49.5 + parent: 2 + - uid: 16109 + components: + - type: Transform + pos: 17.5,-50.5 + parent: 2 + - uid: 16110 + components: + - type: Transform + pos: 17.5,-51.5 + parent: 2 + - uid: 16111 + components: + - type: Transform + pos: 16.5,-62.5 + parent: 2 + - uid: 16112 + components: + - type: Transform + pos: -7.5,-53.5 + parent: 2 + - uid: 16113 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 16114 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 2 + - uid: 16115 + components: + - type: Transform + pos: -32.5,19.5 + parent: 2 + - uid: 16116 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 2 + - uid: 22955 + components: + - type: Transform + pos: 3.5,-66.5 + parent: 2 + - uid: 22956 + components: + - type: Transform + pos: 4.5,-66.5 + parent: 2 +- proto: NitrousOxideCanister + entities: + - uid: 16117 + components: + - type: Transform + pos: -27.5,32.5 + parent: 2 + - uid: 16118 + components: + - type: Transform + pos: -29.5,23.5 + parent: 2 + - uid: 16119 + components: + - type: Transform + pos: 25.5,-31.5 + parent: 2 + - uid: 16120 + components: + - type: Transform + pos: 19.5,-51.5 + parent: 2 + - uid: 16121 + components: + - type: Transform + pos: 38.5,-62.5 + parent: 2 +- proto: NodeScanner + entities: + - uid: 16122 + components: + - type: Transform + pos: -44.384266,-35.857845 + parent: 2 + - uid: 16123 + components: + - type: Transform + pos: -44.617367,-36.035 + parent: 2 +- proto: NoticeBoard + entities: + - uid: 16124 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 16125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,15.5 + parent: 2 +- proto: NuclearBomb + entities: + - uid: 16126 + components: + - type: Transform + pos: -33.5,15.5 + parent: 2 +- proto: OperatingTable + entities: + - uid: 16127 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 2 + - uid: 16128 + components: + - type: Transform + pos: -28.5,38.5 + parent: 2 + - uid: 16129 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 2 + - uid: 16130 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 2 +- proto: OracleSpawner + entities: + - uid: 14817 + components: + - type: Transform + pos: -31.5,-23.5 + parent: 2 +- proto: OreProcessor + entities: + - uid: 16131 + components: + - type: Transform + pos: -39.5,-6.5 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 16132 + components: + - type: Transform + pos: -43.5,-13.5 + parent: 2 + - uid: 16133 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 2 + - uid: 16134 + components: + - type: Transform + pos: -7.5,-37.5 + parent: 2 + - uid: 16135 + components: + - type: Transform + pos: 9.5,77.5 + parent: 2 + - uid: 16136 + components: + - type: Transform + pos: 28.5,-27.5 + parent: 2 + - uid: 16137 + components: + - type: Transform + pos: -22.5,12.5 + parent: 2 + - uid: 16138 + components: + - type: Transform + pos: -6.5,-53.5 + parent: 2 + - uid: 16139 + components: + - type: Transform + pos: 16.5,-49.5 + parent: 2 + - uid: 16140 + components: + - type: Transform + pos: 16.5,-50.5 + parent: 2 + - uid: 16141 + components: + - type: Transform + pos: 16.5,-51.5 + parent: 2 + - uid: 16142 + components: + - type: Transform + pos: -29.5,-52.5 + parent: 2 + - uid: 16143 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 2 + - uid: 16144 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 2 + - uid: 16145 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 + - uid: 16146 + components: + - type: Transform + pos: 14.5,-36.5 + parent: 2 + - uid: 16147 + components: + - type: Transform + pos: -31.5,19.5 + parent: 2 + - uid: 16148 + components: + - type: Transform + pos: 29.5,-12.5 + parent: 2 + - uid: 16149 + components: + - type: Transform + pos: 16.5,-58.5 + parent: 2 +- proto: PaperBin10 + entities: + - uid: 16150 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 + - uid: 16151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,5.5 + parent: 2 + - uid: 16152 + components: + - type: Transform + pos: -39.974483,8.601084 + parent: 2 + - uid: 16153 + components: + - type: Transform + pos: -36.314747,6.548981 + parent: 2 + - uid: 16154 + components: + - type: Transform + pos: -33.320435,-25.397486 + parent: 2 + - uid: 16155 + components: + - type: Transform + pos: -36.5,-27.5 + parent: 2 + - uid: 16156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-21.5 + parent: 2 + - uid: 16157 + components: + - type: Transform + pos: -14.5,-22.5 + parent: 2 + - uid: 16158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-64.5 + parent: 2 + - uid: 16159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-4.5 + parent: 2 + - uid: 16160 + components: + - type: Transform + pos: 26.5,10.5 + parent: 2 + - uid: 16161 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - uid: 16162 + components: + - type: Transform + pos: 41.5,4.5 + parent: 2 + - uid: 16163 + components: + - type: Transform + pos: 25.5,29.5 + parent: 2 + - uid: 16164 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 + - uid: 16165 + components: + - type: Transform + pos: 43.5,-17.5 + parent: 2 + - uid: 16166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,21.5 + parent: 2 + - uid: 16167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,24.5 + parent: 2 + - uid: 16168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,32.5 + parent: 2 + - uid: 16169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,31.5 + parent: 2 + - uid: 16170 + components: + - type: Transform + pos: -24.5,40.5 + parent: 2 + - uid: 16171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,30.5 + parent: 2 + - uid: 16172 + components: + - type: Transform + pos: -25.5,27.5 + parent: 2 + - uid: 16173 + components: + - type: Transform + pos: -8.5,55.5 + parent: 2 + - uid: 16174 + components: + - type: Transform + pos: 6.5,48.5 + parent: 2 + - uid: 16175 + components: + - type: Transform + pos: 10.5,52.5 + parent: 2 + - uid: 16176 + components: + - type: Transform + pos: -6.5,83.5 + parent: 2 + - uid: 16177 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 2 + - uid: 16178 + components: + - type: Transform + pos: 45.5,-20.5 + parent: 2 + - uid: 16179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-26.5 + parent: 2 + - uid: 16180 + components: + - type: Transform + pos: 41.5,-34.5 + parent: 2 + - uid: 16181 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 2 + - uid: 16182 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - uid: 16183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-43.5 + parent: 2 + - uid: 16184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-49.5 + parent: 2 + - uid: 16185 + components: + - type: Transform + pos: 7.5,25.5 + parent: 2 + - uid: 16186 + components: + - type: Transform + pos: 36.5,-46.5 + parent: 2 +- proto: PaperCaptainsThoughts + entities: + - uid: 16187 + components: + - type: Transform + pos: -4.6271625,-37.31797 + parent: 2 + - uid: 16188 + components: + - type: Transform + pos: -8.264277,49.208706 + parent: 2 +- proto: PaperOffice + entities: + - uid: 1157 + components: + - type: MetaData + name: Formulário de Trabalho + - type: Transform + parent: 1156 + - type: Paper + content: >- + [color=#002159]█▀▀▀▀▀▀▀▀▀▀▀▀▀▀█▄ + + █   ▀██   █▄     █           █ + + █       ▀   █▀█▄█   ▄       █ [head=1]Nanotrasen[/head] + + █           █     ▀█   ██▄   █ + + ▀█▄▄▄▄▄▄▄▄▄▄▄▄▄▄█ [head=1]Technologies[/head][/color] + + + [color=#002159][head=1] FORMULÁRIO DE TRABALHO [/head] + + [/color] + + [head=2] Informações [/head] + + + Nome: + + Idade: + + Raça: + + Descrição: + + Habilidades: + + Afiliação com a Nanotrasen: + + + [color=#002159][head=2] Trabalho [/head][/color] + + + Trabalho atual: + + Trabalho que quer: + + Motivo: + + + [color=#002159][head=2] O que fazer [/head][/color] + + + [bullet/] Este papel [bold][color=#ff0000]DEVE[/color][/bold] ser entregue ao head do departamento em que a pessoa quer o emprego. + + + [bullet/] Se você (head do departamento) permite que esta pessoa trabalhe no seu departamento, carimbe este papel e entregue no meu escritório. + + + [bullet/] Se você não permite, me avise pelo rádio ou simplesmente não devolva o papel. + + + [bullet/] Não irei dar trabalho para pessoas sem este papel estar carimbado. + - type: Physics + canCollide: False + - uid: 16189 + components: + - type: Transform + pos: -12.441007,-24.24285 + parent: 2 + - uid: 16190 + components: + - type: Transform + pos: -12.35882,-24.27025 + parent: 2 + - uid: 16191 + components: + - type: Transform + pos: -10.318714,15.583685 + parent: 2 + - uid: 16192 + components: + - type: Transform + pos: -10.318714,15.583685 + parent: 2 + - uid: 16193 + components: + - type: Transform + pos: -2.969903,14.600746 + parent: 2 + - uid: 16194 + components: + - type: Transform + pos: -2.969903,14.600746 + parent: 2 + - uid: 16195 + components: + - type: Transform + pos: -2.969903,14.600746 + parent: 2 + - uid: 16196 + components: + - type: Transform + pos: 41.476032,19.53832 + parent: 2 + - uid: 16197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.479774,3.5221295 + parent: 2 + - uid: 16198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.628956,3.6899614 + parent: 2 + - uid: 16199 + components: + - type: Transform + pos: 42.73152,3.5501013 + parent: 2 + - uid: 16200 + components: + - type: Transform + pos: 35.40297,28.736885 + parent: 2 + - uid: 16201 + components: + - type: Transform + pos: 35.51486,28.54419 + parent: 2 + - uid: 16202 + components: + - type: Transform + pos: 35.63918,28.687159 + parent: 2 + - uid: 16203 + components: + - type: Transform + pos: 38.436382,28.556622 + parent: 2 + - uid: 16204 + components: + - type: Transform + pos: 38.622864,28.569054 + parent: 2 + - uid: 16205 + components: + - type: Transform + pos: 38.492325,28.705805 + parent: 2 + - uid: 16206 + components: + - type: Transform + pos: 42.363365,36.72612 + parent: 2 + - uid: 16207 + components: + - type: Transform + pos: 42.384346,36.621223 + parent: 2 + - uid: 16208 + components: + - type: Transform + pos: -5.5053062,33.51533 + parent: 2 + - uid: 16209 + components: + - type: Transform + pos: 5.291128,47.58555 + parent: 2 + - uid: 16210 + components: + - type: Transform + pos: 5.291128,47.58555 + parent: 2 + - uid: 16211 + components: + - type: Transform + pos: 5.291128,47.58555 + parent: 2 + - uid: 16212 + components: + - type: Transform + pos: 5.291128,47.58555 + parent: 2 + - uid: 16213 + components: + - type: Transform + pos: 5.291128,47.58555 + parent: 2 + - uid: 16214 + components: + - type: Transform + pos: 5.291128,47.58555 + parent: 2 + - uid: 16215 + components: + - type: Transform + pos: 5.291128,47.58555 + parent: 2 + - uid: 16216 + components: + - type: Transform + pos: 5.291128,47.58555 + parent: 2 + - uid: 16217 + components: + - type: Transform + pos: 5.291128,47.58555 + parent: 2 + - uid: 16218 + components: + - type: Transform + pos: 5.291128,47.58555 + parent: 2 + - uid: 16219 + components: + - type: Transform + pos: 5.291128,47.58555 + parent: 2 + - uid: 16220 + components: + - type: Transform + pos: 30.418941,-31.47602 + parent: 2 + - uid: 16221 + components: + - type: Transform + pos: 30.540154,-31.326838 + parent: 2 + - uid: 16222 + components: + - type: Transform + pos: 30.633392,-31.466698 + parent: 2 + - uid: 16223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.36278,-34.646008 + parent: 2 + - uid: 16224 + components: + - type: Transform + pos: -30.233414,-5.0676875 + parent: 2 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + content: > + [color=#002159]█▀▀▀▀▀▀▀▀▀▀▀▀▀▀█▄ + + █   ▀██   █▄     █           █ + + █       ▀   █▀█▄█   ▄       █ [head=1]Nanotrasen[/head] + + █           █     ▀█   ██▄   █ + + ▀█▄▄▄▄▄▄▄▄▄▄▄▄▄▄█ [head=1]Technologies[/head][/color] + + + [bold]--------------------------------------------------------------------------[/bold] + + O sistema de correios da estação ainda não estão terminados e ficará pronto em tempo inderteminado. Para entregar coisas em deptos especificos, adicionamos aberturas na maints de cada depto para entrega. + - uid: 16225 + components: + - type: Transform + pos: -12.340555,-24.334187 + parent: 2 + - uid: 16226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.587118,-24.39812 + parent: 2 +- proto: PartRodMetal + entities: + - uid: 16227 + components: + - type: Transform + pos: -36.48147,-18.219297 + parent: 2 + - uid: 16228 + components: + - type: Transform + pos: -6.4957685,-21.430162 + parent: 2 + - uid: 16229 + components: + - type: Transform + pos: 20.485275,25.562778 + parent: 2 + - uid: 16230 + components: + - type: Transform + pos: -14.573731,-61.28659 + parent: 2 + - uid: 16231 + components: + - type: Transform + pos: -10.409327,-55.51623 + parent: 2 + - uid: 16232 + components: + - type: Transform + pos: 22.526024,-45.307453 + parent: 2 +- proto: PartRodMetal1 + entities: + - uid: 16233 + components: + - type: Transform + pos: -61.468468,26.457985 + parent: 2 + - uid: 16234 + components: + - type: Transform + pos: -50.5,17.5 + parent: 2 + - uid: 16235 + components: + - type: Transform + pos: -64.5,23.5 + parent: 2 + - uid: 16236 + components: + - type: Transform + pos: -62.5,26.5 + parent: 2 + - uid: 16237 + components: + - type: Transform + pos: -62.5,25.5 + parent: 2 + - uid: 16238 + components: + - type: Transform + pos: -58.5,27.5 + parent: 2 + - uid: 16239 + components: + - type: Transform + pos: -54.5,27.5 + parent: 2 +- proto: Pen + entities: + - uid: 16240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.62738,-3.3543878 + parent: 2 + - uid: 16241 + components: + - type: Transform + pos: -15.483094,-6.4231343 + parent: 2 + - uid: 16242 + components: + - type: Transform + pos: -36.29377,6.5070233 + parent: 2 + - uid: 16243 + components: + - type: Transform + pos: -33.320435,-25.397486 + parent: 2 + - uid: 16244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.661369,-22.297771 + parent: 2 + - uid: 16245 + components: + - type: Transform + pos: 26.488224,10.505266 + parent: 2 + - uid: 16246 + components: + - type: Transform + pos: 40.527912,13.475346 + parent: 2 + - uid: 16247 + components: + - type: Transform + pos: 41.510075,4.5384464 + parent: 2 + - uid: 16248 + components: + - type: Transform + pos: 25.548351,29.502483 + parent: 2 + - uid: 16249 + components: + - type: Transform + pos: 13.501094,42.53572 + parent: 2 + - uid: 16250 + components: + - type: Transform + pos: 23.42049,39.683567 + parent: 2 + - uid: 16251 + components: + - type: Transform + pos: 43.51236,-17.488043 + parent: 2 + - uid: 16252 + components: + - type: Transform + pos: -19.515514,20.852518 + parent: 2 + - uid: 16253 + components: + - type: Transform + pos: -24.933372,24.515673 + parent: 2 + - uid: 16254 + components: + - type: Transform + pos: -5.5146303,32.48969 + parent: 2 + - uid: 16255 + components: + - type: Transform + pos: -16.509304,31.552294 + parent: 2 + - uid: 16256 + components: + - type: Transform + pos: -24.51992,40.548824 + parent: 2 + - uid: 16257 + components: + - type: Transform + pos: -37.48929,30.520847 + parent: 2 + - uid: 16258 + components: + - type: Transform + pos: -25.5015,27.489347 + parent: 2 + - uid: 16259 + components: + - type: Transform + pos: -8.495046,49.124786 + parent: 2 + - uid: 16260 + components: + - type: Transform + pos: 5.333086,47.648487 + parent: 2 + - uid: 16261 + components: + - type: Transform + pos: 10.521973,52.51754 + parent: 2 + - uid: 16262 + components: + - type: Transform + pos: -6.499563,83.488266 + parent: 2 + - uid: 16263 + components: + - type: Transform + pos: 22.931149,-20.437773 + parent: 2 + - uid: 16264 + components: + - type: Transform + pos: 45.47221,-20.459116 + parent: 2 + - uid: 16265 + components: + - type: Transform + pos: 39.510532,-26.473282 + parent: 2 + - uid: 16266 + components: + - type: Transform + pos: 41.500698,-34.448414 + parent: 2 + - uid: 16267 + components: + - type: Transform + pos: 30.931763,-31.420078 + parent: 2 + - uid: 16268 + components: + - type: Transform + pos: 6.4996448,-28.510612 + parent: 2 + - uid: 16269 + components: + - type: Transform + pos: 8.514117,-20.45272 + parent: 2 + - uid: 16270 + components: + - type: Transform + pos: -0.4732281,-43.503067 + parent: 2 + - uid: 16271 + components: + - type: Transform + pos: 5.504001,-49.484642 + parent: 2 + - uid: 16272 + components: + - type: Transform + pos: 11.37772,-51.005104 + parent: 2 + - uid: 16273 + components: + - type: Transform + pos: 7.162602,25.46121 + parent: 2 + - uid: 16274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.075729,-24.407255 + parent: 2 +- proto: PenCap + entities: + - uid: 16275 + components: + - type: Transform + pos: -4.731953,-37.44367 + parent: 2 + - uid: 16276 + components: + - type: Transform + pos: -8.532443,55.627502 + parent: 2 +- proto: PenHop + entities: + - uid: 16277 + components: + - type: Transform + pos: 6.486932,48.61696 + parent: 2 +- proto: PersonalAI + entities: + - uid: 15849 + components: + - type: Transform + parent: 15848 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.470055,-3.3978996 + parent: 2 + - uid: 16279 + components: + - type: Transform + pos: -17.635727,-22.446955 + parent: 2 + - uid: 16280 + components: + - type: Transform + pos: -4.43854,-37.48557 + parent: 2 + - uid: 16281 + components: + - type: Transform + pos: 22.530182,10.4912815 + parent: 2 + - uid: 16282 + components: + - type: Transform + pos: 7.761195,54.535522 + parent: 2 + - uid: 16283 + components: + - type: Transform + pos: -5.4023366,74.6485 + parent: 2 +- proto: PetCarrier + entities: + - uid: 8801 + components: + - type: Transform + parent: 8799 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8885 + components: + - type: Transform + parent: 8883 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15856 + components: + - type: Transform + parent: 15855 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15863 + components: + - type: Transform + parent: 15862 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 15895 + components: + - type: Transform + parent: 8815 + - type: Physics + angularDamping: 0 + linearDamping: 0 + fixedRotation: False + canCollide: False + - type: InsideEntityStorage + - uid: 15906 + components: + - type: Transform + parent: 15905 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15908 + components: + - type: Transform + parent: 15907 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PhoneInstrument + entities: + - uid: 16284 + components: + - type: Transform + pos: -13.300335,-2.2604 + parent: 2 + - uid: 16285 + components: + - type: Transform + pos: -26.33136,45.398384 + parent: 2 + - uid: 16286 + components: + - type: Transform + pos: 8.98264,54.600792 + parent: 2 + - uid: 16287 + components: + - type: Transform + pos: 9.387393,82.53901 + parent: 2 +- proto: PianoInstrument + entities: + - uid: 16288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,4.5 + parent: 2 +- proto: PillCanister + entities: + - uid: 8747 + components: + - type: Transform + parent: 8746 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16289 + components: + - type: Transform + pos: 34.350876,-34.67065 + parent: 2 + - uid: 16290 + components: + - type: Transform + pos: 36.3752,-29.338015 + parent: 2 + - uid: 16291 + components: + - type: Transform + pos: 36.61141,-29.543142 + parent: 2 + - uid: 16292 + components: + - type: Transform + pos: 28.24926,-31.429379 + parent: 2 + - uid: 16293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.566922,-38.444157 + parent: 2 + - uid: 16294 + components: + - type: Transform + pos: 12.455034,-38.4022 + parent: 2 +- proto: PinpointerNuclear + entities: + - uid: 16295 + components: + - type: Transform + pos: -31.654495,17.071499 + parent: 2 +- proto: PlasmaCanister + entities: + - uid: 16296 + components: + - type: Transform + pos: 18.5,-51.5 + parent: 2 + - uid: 16297 + components: + - type: Transform + pos: 18.5,-50.5 + parent: 2 + - uid: 16298 + components: + - type: Transform + pos: 38.5,-58.5 + parent: 2 + - type: GasCanister + releaseValve: True + releasePressure: 1013.25 + - type: Lock + locked: False +- proto: PlasmaTankFilled + entities: + - uid: 16305 + components: + - type: Transform + pos: -7.4577236,-65.04376 + parent: 2 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 16306 + components: + - type: Transform + pos: -45.5,1.5 + parent: 2 + - uid: 16307 + components: + - type: Transform + pos: -45.5,-2.5 + parent: 2 + - uid: 16308 + components: + - type: Transform + pos: -45.5,18.5 + parent: 2 + - uid: 16309 + components: + - type: Transform + pos: 20.5,47.5 + parent: 2 +- proto: PlasticFlapsClear + entities: + - uid: 16310 + components: + - type: Transform + pos: -43.5,4.5 + parent: 2 + - uid: 16311 + components: + - type: Transform + pos: -44.5,-2.5 + parent: 2 + - uid: 16312 + components: + - type: Transform + pos: -43.5,-5.5 + parent: 2 + - uid: 16313 + components: + - type: Transform + pos: -36.5,12.5 + parent: 2 + - uid: 16314 + components: + - type: Transform + pos: -42.5,12.5 + parent: 2 + - uid: 16315 + components: + - type: Transform + pos: -44.5,5.5 + parent: 2 + - uid: 16316 + components: + - type: Transform + pos: -40.5,16.5 + parent: 2 + - uid: 16317 + components: + - type: Transform + pos: -44.5,1.5 + parent: 2 +- proto: PlasticFlapsOpaque + entities: + - uid: 16318 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 2 + - uid: 16323 + components: + - type: Transform + pos: -27.5,26.5 + parent: 2 +- proto: Plunger + entities: + - uid: 16326 + components: + - type: Transform + pos: 7.5468035,13.295443 + parent: 2 + - uid: 16327 + components: + - type: Transform + pos: 7.3603234,13.174231 + parent: 2 +- proto: PlushieCoffeeFox + entities: + - uid: 20026 + components: + - type: Transform + pos: -17.484127,12.425354 + parent: 2 +- proto: PlushieMoth + entities: + - uid: 16328 + components: + - type: Transform + pos: -23.665382,-13.840267 + parent: 2 + - uid: 16329 + components: + - type: Transform + pos: -38.5,14.5 + parent: 2 + - uid: 16330 + components: + - type: Transform + pos: -37.5,14.5 + parent: 2 + - uid: 16331 + components: + - type: Transform + pos: -37.5,15.5 + parent: 2 + - uid: 16332 + components: + - type: Transform + pos: -37.5,16.5 + parent: 2 + - uid: 16333 + components: + - type: Transform + pos: -37.5,17.5 + parent: 2 + - uid: 16334 + components: + - type: Transform + pos: -38.5,17.5 + parent: 2 + - uid: 16335 + components: + - type: Transform + pos: -38.5,16.5 + parent: 2 + - uid: 16336 + components: + - type: Transform + pos: -38.5,15.5 + parent: 2 + - uid: 16337 + components: + - type: Transform + pos: 43.132454,4.7062783 + parent: 2 +- proto: PlushieNuke + entities: + - uid: 16338 + components: + - type: Transform + pos: -33.4985,39.59751 + parent: 2 +- proto: PlushieRGBee + entities: + - uid: 16339 + components: + - type: Transform + pos: -25.558392,-67.50694 + parent: 2 +- proto: PlushieSlime + entities: + - uid: 16340 + components: + - type: Transform + pos: -33.4985,36.450657 + parent: 2 +- proto: PlushieSnake + entities: + - uid: 16341 + components: + - type: Transform + pos: -33.477524,33.4087 + parent: 2 +- proto: PlushieSpaceLizard + entities: + - uid: 16342 + components: + - type: Transform + pos: -45.54679,-18.494848 + parent: 2 +- proto: PlushieXeno + entities: + - uid: 16343 + components: + - type: Transform + pos: -1.5916812,-97.51262 + parent: 2 +- proto: PortableFlasher + entities: + - uid: 16344 + components: + - type: Transform + pos: -17.5,38.5 + parent: 2 +- proto: PortableGeneratorJrPacman + entities: + - uid: 16345 + components: + - type: Transform + pos: -2.5,-53.5 + parent: 2 + - uid: 16346 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 2 + - uid: 16347 + components: + - type: Transform + pos: -25.5,-54.5 + parent: 2 + - uid: 16348 + components: + - type: Transform + pos: -21.5,-37.5 + parent: 2 + - uid: 16349 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 2 + - uid: 16350 + components: + - type: Transform + pos: 42.5,23.5 + parent: 2 + - uid: 16351 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - uid: 16352 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 2 + - uid: 16353 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 +- proto: PortableGeneratorPacman + entities: + - uid: 16354 + components: + - type: Transform + pos: 10.5,-58.5 + parent: 2 + - uid: 16355 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 16356 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 2 + - uid: 16357 + components: + - type: Transform + pos: 8.5,44.5 + parent: 2 + - uid: 16358 + components: + - type: Transform + pos: 0.5,-58.5 + parent: 2 + - uid: 16359 + components: + - type: Transform + pos: -26.5,-66.5 + parent: 2 + - uid: 16360 + components: + - type: Transform + pos: 11.5,46.5 + parent: 2 +- proto: PortableGeneratorPacmanMachineCircuitboard + entities: + - uid: 16361 + components: + - type: Transform + pos: -2.5222745,-37.56796 + parent: 2 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 16362 + components: + - type: Transform + pos: 10.5,-57.5 + parent: 2 +- proto: PortableGeneratorSuperPacmanMachineCircuitboard + entities: + - uid: 16363 + components: + - type: Transform + pos: -2.5,-40.5 + parent: 2 +- proto: PortableScrubber + entities: + - uid: 16364 + components: + - type: Transform + pos: -30.5,-41.5 + parent: 2 + - uid: 16365 + components: + - type: Transform + pos: -29.5,-41.5 + parent: 2 + - uid: 16366 + components: + - type: Transform + pos: -39.5,-51.5 + parent: 2 + - uid: 16367 + components: + - type: Transform + pos: 9.5,76.5 + parent: 2 + - uid: 16368 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 2 + - uid: 16369 + components: + - type: Transform + pos: 2.5,-39.5 + parent: 2 + - uid: 16370 + components: + - type: Transform + pos: 36.5,-48.5 + parent: 2 + - uid: 16371 + components: + - type: Transform + pos: 7.5,-76.5 + parent: 2 + - uid: 16372 + components: + - type: Transform + pos: -6.5,-76.5 + parent: 2 + - uid: 16373 + components: + - type: Transform + pos: 35.5,-48.5 + parent: 2 + - uid: 16374 + components: + - type: Transform + pos: 37.5,-48.5 + parent: 2 + - uid: 16375 + components: + - type: Transform + pos: 38.5,-48.5 + parent: 2 +- proto: PosterContrabandClown + entities: + - uid: 16376 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 +- proto: PosterContrabandUnreadableAnnouncement + entities: + - uid: 16377 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 +- proto: PosterLegitCleanliness + entities: + - uid: 16378 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 + - uid: 16379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 2 +- proto: PosterLegitMime + entities: + - uid: 818 + components: + - type: Transform + pos: 44.5,15.5 + parent: 2 +- proto: PosterLegitSafetyMothDelam + entities: + - uid: 16380 + components: + - type: Transform + pos: -39.5,16.5 + parent: 2 +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 16381 + components: + - type: Transform + pos: -36.5,17.5 + parent: 2 + - uid: 16382 + components: + - type: Transform + pos: -38.5,18.5 + parent: 2 + - uid: 16383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,19.5 + parent: 2 +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 16384 + components: + - type: Transform + pos: -36.5,14.5 + parent: 2 +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 16385 + components: + - type: Transform + pos: -37.5,18.5 + parent: 2 +- proto: PottedPlant0 + entities: + - uid: 16386 + components: + - type: Transform + pos: -16.5,11.5 + parent: 2 +- proto: PottedPlant12 + entities: + - uid: 16387 + components: + - type: Transform + pos: -13.5,14.5 + parent: 2 +- proto: PottedPlantBioluminscent + entities: + - uid: 16388 + components: + - type: Transform + pos: -9.5,14.5 + parent: 2 +- proto: PottedPlantRandom + entities: + - uid: 16389 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 2 + - uid: 16390 + components: + - type: Transform + pos: -29.5,4.5 + parent: 2 + - uid: 16391 + components: + - type: Transform + pos: -32.5,7.5 + parent: 2 + - uid: 16392 + components: + - type: Transform + pos: -36.5,4.5 + parent: 2 + - uid: 16393 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 2 + - uid: 16394 + components: + - type: Transform + pos: -41.5,-29.5 + parent: 2 + - uid: 16395 + components: + - type: Transform + pos: -35.5,-36.5 + parent: 2 + - uid: 16396 + components: + - type: Transform + pos: -40.5,-41.5 + parent: 2 + - uid: 16397 + components: + - type: Transform + pos: -45.5,-29.5 + parent: 2 + - uid: 16398 + components: + - type: Transform + pos: -3.5,-40.5 + parent: 2 + - uid: 16399 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 + - uid: 16400 + components: + - type: Transform + pos: 31.5,11.5 + parent: 2 + - uid: 16401 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 2 + - uid: 16402 + components: + - type: Transform + pos: 40.5,0.5 + parent: 2 + - uid: 16403 + components: + - type: Transform + pos: 34.5,26.5 + parent: 2 + - uid: 16404 + components: + - type: Transform + pos: 40.5,26.5 + parent: 2 + - uid: 16405 + components: + - type: Transform + pos: 34.5,30.5 + parent: 2 + - uid: 16406 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 16407 + components: + - type: Transform + pos: 40.5,30.5 + parent: 2 + - uid: 16408 + components: + - type: Transform + pos: 25.5,30.5 + parent: 2 + - uid: 16409 + components: + - type: Transform + pos: 25.5,32.5 + parent: 2 + - uid: 16410 + components: + - type: Transform + pos: 21.5,36.5 + parent: 2 + - uid: 16411 + components: + - type: Transform + pos: 19.5,36.5 + parent: 2 + - uid: 16412 + components: + - type: Transform + pos: 21.5,40.5 + parent: 2 + - uid: 16413 + components: + - type: Transform + pos: 19.5,40.5 + parent: 2 + - uid: 16414 + components: + - type: Transform + pos: 26.5,38.5 + parent: 2 + - uid: 16415 + components: + - type: Transform + pos: 25.5,35.5 + parent: 2 + - uid: 16416 + components: + - type: Transform + pos: 42.5,46.5 + parent: 2 + - uid: 16417 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 2 + - uid: 16418 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 2 + - uid: 16419 + components: + - type: Transform + pos: -2.5,29.5 + parent: 2 + - uid: 16420 + components: + - type: Transform + pos: -8.5,32.5 + parent: 2 + - uid: 16421 + components: + - type: Transform + pos: -30.5,30.5 + parent: 2 + - uid: 16422 + components: + - type: Transform + pos: -6.5,40.5 + parent: 2 + - uid: 16423 + components: + - type: Transform + pos: 4.5,54.5 + parent: 2 + - uid: 16424 + components: + - type: Transform + pos: -3.5,61.5 + parent: 2 + - uid: 16425 + components: + - type: Transform + pos: 46.5,-22.5 + parent: 2 + - uid: 16426 + components: + - type: Transform + pos: 41.5,-33.5 + parent: 2 + - uid: 16427 + components: + - type: Transform + pos: 44.5,-29.5 + parent: 2 + - uid: 16428 + components: + - type: Transform + pos: 5.5,-32.5 + parent: 2 + - uid: 16429 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - uid: 16430 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 2 + - uid: 16431 + components: + - type: Transform + pos: 10.5,-27.5 + parent: 2 + - uid: 16432 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 2 + - uid: 16433 + components: + - type: Transform + pos: 4.5,-44.5 + parent: 2 + - uid: 16434 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 2 + - uid: 16435 + components: + - type: Transform + pos: 8.5,-56.5 + parent: 2 + - uid: 16436 + components: + - type: Transform + pos: 0.5,-60.5 + parent: 2 + - uid: 16437 + components: + - type: Transform + pos: 0.5,-55.5 + parent: 2 + - uid: 16438 + components: + - type: Transform + pos: -7.5,-55.5 + parent: 2 + - uid: 16439 + components: + - type: Transform + pos: -7.5,-60.5 + parent: 2 + - uid: 16440 + components: + - type: Transform + pos: -16.5,-61.5 + parent: 2 + - uid: 16441 + components: + - type: Transform + pos: -16.5,-55.5 + parent: 2 + - uid: 16442 + components: + - type: Transform + pos: -7.5,-67.5 + parent: 2 + - uid: 16443 + components: + - type: Transform + pos: -7.5,-71.5 + parent: 2 + - uid: 16444 + components: + - type: Transform + pos: -7.5,-75.5 + parent: 2 + - uid: 16445 + components: + - type: Transform + pos: 8.5,-75.5 + parent: 2 + - uid: 16446 + components: + - type: Transform + pos: 8.5,-71.5 + parent: 2 + - uid: 16447 + components: + - type: Transform + pos: 8.5,-67.5 + parent: 2 + - uid: 16448 + components: + - type: Transform + pos: 8.5,-62.5 + parent: 2 + - uid: 16449 + components: + - type: Transform + pos: 32.5,-64.5 + parent: 2 + - uid: 16450 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 2 + - uid: 16451 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 2 +- proto: PottedPlantRandomPlastic + entities: + - uid: 16452 + components: + - type: Transform + pos: -32.5,-64.5 + parent: 2 +- proto: PottedPlantRD + entities: + - uid: 16453 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 2 + - uid: 16454 + components: + - type: Transform + pos: -25.5,5.5 + parent: 2 + - uid: 16455 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 2 +- proto: PowerCellHighPrinted + entities: + - uid: 16456 + components: + - type: Transform + pos: 12.613555,-55.42685 + parent: 2 +- proto: PowerCellMedium + entities: + - uid: 16457 + components: + - type: Transform + pos: 4.5929947,13.672501 + parent: 2 + - uid: 16458 + components: + - type: Transform + pos: 4.686235,13.476696 + parent: 2 + - uid: 16459 + components: + - type: Transform + pos: 40.631042,19.56979 + parent: 2 +- proto: PowerCellMediumPrinted + entities: + - uid: 16460 + components: + - type: Transform + pos: -33.412727,-28.394 + parent: 2 + - uid: 16461 + components: + - type: Transform + pos: 29.644543,-14.425663 + parent: 2 + - uid: 16462 + components: + - type: Transform + pos: -12.363941,-61.440437 + parent: 2 + - uid: 16463 + components: + - type: Transform + pos: -5.3861656,-62.43858 + parent: 2 + - uid: 16464 + components: + - type: Transform + pos: 22.630917,-43.39836 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 16465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-14.5 + parent: 2 + - uid: 16466 + components: + - type: Transform + pos: -6.5,36.5 + parent: 2 + - uid: 16467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,27.5 + parent: 2 + - uid: 16468 + components: + - type: Transform + pos: -3.5,52.5 + parent: 2 + - uid: 16469 + components: + - type: Transform + pos: 2.5,62.5 + parent: 2 + - uid: 16470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-18.5 + parent: 2 + - uid: 16471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-31.5 + parent: 2 + - uid: 16472 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 16473 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - uid: 16474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-28.5 + parent: 2 + - uid: 16475 + components: + - type: Transform + pos: -26.5,-20.5 + parent: 2 + - uid: 16476 + components: + - type: Transform + pos: -47.5,-31.5 + parent: 2 + - uid: 16477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,19.5 + parent: 2 + - uid: 16478 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 2 + - uid: 16479 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 2 + - uid: 16480 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 2 + - uid: 16481 + components: + - type: Transform + pos: 7.5,-44.5 + parent: 2 + - uid: 16482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-55.5 + parent: 2 + - uid: 16483 + components: + - type: Transform + pos: -12.5,-61.5 + parent: 2 + - uid: 16484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-62.5 + parent: 2 + - uid: 16485 + components: + - type: Transform + pos: 22.5,-43.5 + parent: 2 + - uid: 16486 + components: + - type: Transform + pos: 27.5,-62.5 + parent: 2 + - uid: 16487 + components: + - type: Transform + pos: 10.5,55.5 + parent: 2 + - uid: 16488 + components: + - type: Transform + pos: -28.5,30.5 + parent: 2 + - uid: 16489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-23.5 + parent: 2 + - uid: 16490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-30.5 + parent: 2 + - uid: 16491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-14.5 + parent: 2 + - uid: 16492 + components: + - type: Transform + pos: -2.5,20.5 + parent: 2 + - uid: 16493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,23.5 + parent: 2 + - uid: 16494 + components: + - type: Transform + pos: -24.5,45.5 + parent: 2 + - uid: 16495 + components: + - type: Transform + pos: -17.5,31.5 + parent: 2 + - uid: 16496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,9.5 + parent: 2 + - uid: 16497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-7.5 + parent: 2 + - uid: 16498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-42.5 + parent: 2 + - uid: 16499 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - uid: 16500 + components: + - type: Transform + pos: 41.5,-12.5 + parent: 2 + - uid: 16501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,7.5 + parent: 2 + - uid: 16502 + components: + - type: Transform + pos: -2.5,27.5 + parent: 2 +- proto: PowerCellSmall + entities: + - uid: 16503 + components: + - type: Transform + pos: 4.630291,17.663177 + parent: 2 + - uid: 16504 + components: + - type: Transform + pos: 4.4811068,17.476696 + parent: 2 + - uid: 16505 + components: + - type: Transform + pos: -26.386574,-20.414513 + parent: 2 +- proto: PowerComputerCircuitboard + entities: + - uid: 16506 + components: + - type: Transform + pos: 3.5384958,72.5737 + parent: 2 +- proto: Poweredlight + entities: + - uid: 16507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18433 + - uid: 16508 + components: + - type: Transform + pos: 6.5,27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18342 + - uid: 16509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18363 + - uid: 16510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 2 + - uid: 16511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,12.5 + parent: 2 + - uid: 16512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,12.5 + parent: 2 + - uid: 16513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,7.5 + parent: 2 + - uid: 16514 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 16515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 2 + - uid: 16516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 2 + - uid: 16517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 2 + - uid: 16518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 2 + - uid: 16519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 2 + - uid: 16520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-0.5 + parent: 2 + - uid: 16521 + components: + - type: Transform + pos: -10.5,2.5 + parent: 2 + - uid: 16522 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18318 + - uid: 16523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,11.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18315 + - uid: 16524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18316 + - uid: 16525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,10.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18316 + - uid: 16526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18316 + - uid: 16527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18316 + - uid: 16528 + components: + - type: Transform + pos: -14.5,16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18316 + - uid: 16529 + components: + - type: Transform + pos: -8.5,16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18316 + - uid: 16530 + components: + - type: Transform + pos: -4.5,16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18317 + - uid: 16531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18318 + - uid: 16532 + components: + - type: Transform + pos: 10.5,19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18318 + - uid: 16533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18318 + - uid: 16534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18319 + - uid: 16535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18319 + - uid: 16536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18314 + - uid: 16537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18314 + - uid: 16538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-0.5 + parent: 2 + - uid: 16539 + components: + - type: Transform + pos: -16.5,2.5 + parent: 2 + - uid: 16540 + components: + - type: Transform + pos: -29.5,2.5 + parent: 2 + - uid: 16541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18313 + - uid: 16542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18312 + - uid: 16543 + components: + - type: Transform + pos: -28.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18312 + - uid: 16544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18322 + - uid: 16545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18322 + - uid: 16546 + components: + - type: Transform + pos: -39.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18322 + - uid: 16547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,8.5 + parent: 2 + - uid: 16548 + components: + - type: Transform + pos: -41.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18323 + - uid: 16549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18323 + - uid: 16550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18323 + - uid: 16551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18323 + - uid: 16552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18323 + - uid: 16553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18321 + - uid: 16554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18321 + - uid: 16555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18321 + - uid: 16556 + components: + - type: Transform + pos: -43.5,-7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18321 + - uid: 16557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18324 + - uid: 16558 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18324 + - uid: 16559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-10.5 + parent: 2 + - uid: 16560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-4.5 + parent: 2 + - uid: 16561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,16.5 + parent: 2 + - uid: 16562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,16.5 + parent: 2 + - uid: 16563 + components: + - type: Transform + pos: -42.5,17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18325 + - uid: 16564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18326 + - uid: 16565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18327 + - uid: 16566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-21.5 + parent: 2 + - uid: 16567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-24.5 + parent: 2 + - uid: 16568 + components: + - type: Transform + pos: -28.5,-20.5 + parent: 2 + - uid: 16569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-15.5 + parent: 2 + - uid: 16570 + components: + - type: Transform + pos: -27.5,-29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18341 + - uid: 16571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18341 + - uid: 16572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18341 + - uid: 16573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-35.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18328 + - uid: 16574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-36.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18329 + - uid: 16575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-40.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18329 + - uid: 16576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-40.5 + parent: 2 + - uid: 16577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18329 + - uid: 16578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18343 + - uid: 16579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18341 + - uid: 16580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18340 + - uid: 16581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18333 + - uid: 16582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18330 + - uid: 16583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18330 + - uid: 16584 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18330 + - uid: 16585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18330 + - uid: 16586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18330 + - uid: 16587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18330 + - uid: 16588 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18331 + - uid: 16589 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18331 + - uid: 16590 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18332 + - uid: 16591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18334 + - uid: 16592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18334 + - uid: 16593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18348 + - uid: 16594 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18348 + - uid: 16595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18336 + - 18335 + - uid: 16596 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18336 + - 18335 + - uid: 16597 + components: + - type: Transform + pos: -9.5,-35.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18335 + - uid: 16598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-37.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18335 + - uid: 16599 + components: + - type: Transform + pos: -10.5,-39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18335 + - uid: 16600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-45.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18335 + - uid: 16601 + components: + - type: Transform + pos: -10.5,-47.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18335 + - uid: 16602 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18340 + - uid: 16603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18340 + - uid: 16604 + components: + - type: Transform + pos: -6.5,-26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18340 + - uid: 16605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-43.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18349 + - uid: 16606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-43.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18349 + - uid: 16607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18349 + - uid: 16608 + components: + - type: Transform + pos: -42.5,-49.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18350 + - uid: 16609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18350 + - uid: 16610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-50.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18350 + - uid: 16611 + components: + - type: Transform + pos: -36.5,-45.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18350 + - uid: 16612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-37.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18345 + - uid: 16613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18345 + - uid: 16614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18345 + - uid: 16615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-33.5 + parent: 2 + - uid: 16616 + components: + - type: Transform + pos: -46.5,-29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18345 + - uid: 16617 + components: + - type: Transform + pos: -46.5,-29.5 + parent: 2 + - uid: 16618 + components: + - type: Transform + pos: -43.5,-29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18345 + - uid: 16619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-36.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18345 + - uid: 16620 + components: + - type: Transform + pos: -3.5,-35.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18337 + - uid: 16621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-0.5 + parent: 2 + - uid: 16622 + components: + - type: Transform + pos: 24.5,2.5 + parent: 2 + - uid: 16623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-0.5 + parent: 2 + - uid: 16624 + components: + - type: Transform + pos: 34.5,2.5 + parent: 2 + - uid: 16625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18339 + - 18338 + - uid: 16626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18357 + - 18356 + - uid: 16627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18357 + - 18356 + - uid: 16628 + components: + - type: Transform + pos: 24.5,19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18355 + - uid: 16629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18355 + - uid: 16630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18355 + - uid: 16631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18355 + - uid: 16632 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18354 + - uid: 16633 + components: + - type: Transform + pos: 18.5,14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18358 + - uid: 16634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18358 + - uid: 16635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18358 + - uid: 16636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18359 + - uid: 16637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18359 + - uid: 16638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18359 + - uid: 16639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18359 + - uid: 16640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18359 + - uid: 16641 + components: + - type: Transform + pos: 32.5,11.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18359 + - uid: 16642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18360 + - uid: 16643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18360 + - uid: 16644 + components: + - type: Transform + pos: 35.5,19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18360 + - uid: 16645 + components: + - type: Transform + pos: 41.5,19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18361 + - uid: 16646 + components: + - type: Transform + pos: 42.5,15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18362 + - uid: 16647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18362 + - uid: 16648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18364 + - uid: 16649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18365 + - uid: 16650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18366 + - uid: 16651 + components: + - type: Transform + pos: 22.5,33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18366 + - uid: 16652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18366 + - uid: 16653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18366 + - uid: 16654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,35.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18368 + - uid: 16655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18367 + - uid: 16656 + components: + - type: Transform + pos: 16.5,40.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18367 + - uid: 16657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18374 + - uid: 16658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18374 + - uid: 16659 + components: + - type: Transform + pos: 39.5,30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18374 + - uid: 16660 + components: + - type: Transform + pos: 33.5,30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18374 + - uid: 16661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18373 + - uid: 16662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18373 + - uid: 16663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,37.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18375 + - uid: 16664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18375 + - uid: 16665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18375 + - uid: 16666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18359 + - uid: 16667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18359 + - uid: 16668 + components: + - type: Transform + pos: 39.5,-2.5 + parent: 2 + - uid: 16669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-12.5 + parent: 2 + - uid: 16670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-9.5 + parent: 2 + - uid: 16671 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 2 + - uid: 16672 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 2 + - uid: 16673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-6.5 + parent: 2 + - uid: 16674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-6.5 + parent: 2 + - uid: 16675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-12.5 + parent: 2 + - uid: 16676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-9.5 + parent: 2 + - uid: 16677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-4.5 + parent: 2 + - uid: 16678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-5.5 + parent: 2 + - uid: 16679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18377 + - uid: 16680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,18.5 + parent: 2 + - uid: 16681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,18.5 + parent: 2 + - uid: 16682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,18.5 + parent: 2 + - uid: 16683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18378 + - uid: 16684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18378 + - uid: 16685 + components: + - type: Transform + pos: -18.5,25.5 + parent: 2 + - uid: 16686 + components: + - type: Transform + pos: -21.5,25.5 + parent: 2 + - uid: 16687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18380 + - uid: 16688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,26.5 + parent: 2 + - uid: 16689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,26.5 + parent: 2 + - uid: 16690 + components: + - type: Transform + pos: -13.5,29.5 + parent: 2 + - uid: 16691 + components: + - type: Transform + pos: -9.5,29.5 + parent: 2 + - uid: 16692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,29.5 + parent: 2 + - uid: 16693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,34.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18383 + - uid: 16694 + components: + - type: Transform + pos: -11.5,36.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18383 + - uid: 16695 + components: + - type: Transform + pos: -6.5,34.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18383 + - uid: 16696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,34.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18384 + - uid: 16697 + components: + - type: Transform + pos: -17.5,40.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18385 + - uid: 16698 + components: + - type: Transform + pos: -12.5,40.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18385 + - uid: 16699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18385 + - uid: 16700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,34.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18386 + - uid: 16701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18387 + - uid: 16702 + components: + - type: Transform + pos: -9.5,43.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18387 + - uid: 16703 + components: + - type: Transform + pos: -21.5,41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18388 + - uid: 16704 + components: + - type: Transform + pos: -25.5,41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18388 + - uid: 16705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,44.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18389 + - uid: 16706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,43.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18389 + - uid: 16707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18390 + - uid: 16708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,34.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18390 + - uid: 16709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18390 + - uid: 16710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,39.5 + parent: 2 + - uid: 16711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18382 + - uid: 16712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18382 + - uid: 16713 + components: + - type: Transform + pos: -32.5,26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18382 + - uid: 16714 + components: + - type: Transform + pos: -30.5,26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18382 + - uid: 16715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18394 + - uid: 16716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18394 + - uid: 16717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,34.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18394 + - uid: 16718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,37.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18394 + - uid: 16719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,35.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18394 + - uid: 16720 + components: + - type: Transform + pos: -41.5,26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18396 + - uid: 16721 + components: + - type: Transform + pos: -39.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18395 + - uid: 16722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18395 + - uid: 16723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18395 + - uid: 16724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18395 + - uid: 16725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18395 + - uid: 16726 + components: + - type: Transform + pos: -36.5,30.5 + parent: 2 + - uid: 16727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,28.5 + parent: 2 + - uid: 16728 + components: + - type: Transform + pos: -27.5,30.5 + parent: 2 + - uid: 16729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,27.5 + parent: 2 + - uid: 16730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,33.5 + parent: 2 + - uid: 16731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,33.5 + parent: 2 + - uid: 16732 + components: + - type: Transform + pos: -18.5,29.5 + parent: 2 + - uid: 16733 + components: + - type: Transform + pos: -5.5,40.5 + parent: 2 + - uid: 16734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,34.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18398 + - uid: 16735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,40.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18398 + - uid: 16736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,40.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18398 + - uid: 16737 + components: + - type: Transform + pos: 6.5,44.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18398 + - uid: 16738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,47.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18399 + - uid: 16739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,51.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18400 + - uid: 16740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,54.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18400 + - uid: 16741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,46.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18401 + - uid: 16742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,48.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18401 + - uid: 16743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,49.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18401 + - uid: 16744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18402 + - uid: 16745 + components: + - type: Transform + pos: 7.5,56.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18402 + - uid: 16746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,49.5 + parent: 2 + - uid: 16747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,49.5 + parent: 2 + - uid: 16748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,43.5 + parent: 2 + - uid: 16749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,40.5 + parent: 2 + - uid: 16750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,36.5 + parent: 2 + - uid: 16751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,32.5 + parent: 2 + - uid: 16752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,28.5 + parent: 2 + - uid: 16753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,22.5 + parent: 2 + - uid: 16754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 2 + - uid: 16755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,51.5 + parent: 2 + - uid: 16756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,58.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18403 + - uid: 16757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,58.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18403 + - uid: 16758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,59.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18403 + - uid: 16759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,59.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18403 + - uid: 16760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,70.5 + parent: 2 + - uid: 16761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,71.5 + parent: 2 + - uid: 16762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,70.5 + parent: 2 + - uid: 16763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,71.5 + parent: 2 + - uid: 16764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,69.5 + parent: 2 + - uid: 16765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,77.5 + parent: 2 + - uid: 16766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,74.5 + parent: 2 + - uid: 16767 + components: + - type: Transform + pos: 8.5,80.5 + parent: 2 + - uid: 16768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,82.5 + parent: 2 + - uid: 16769 + components: + - type: Transform + pos: 6.5,85.5 + parent: 2 + - uid: 16770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,82.5 + parent: 2 + - uid: 16771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,82.5 + parent: 2 + - uid: 16772 + components: + - type: Transform + pos: 1.5,85.5 + parent: 2 + - uid: 16773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,82.5 + parent: 2 + - uid: 16774 + components: + - type: Transform + pos: -3.5,85.5 + parent: 2 + - uid: 16775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,77.5 + parent: 2 + - uid: 16776 + components: + - type: Transform + pos: -5.5,80.5 + parent: 2 + - uid: 16777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,74.5 + parent: 2 + - uid: 16778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-11.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18404 + - uid: 16779 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18405 + - uid: 16780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18405 + - uid: 16781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18406 + - uid: 16782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18406 + - uid: 16783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18407 + - uid: 16784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18407 + - uid: 16785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18407 + - uid: 16786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18408 + - uid: 16787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18408 + - uid: 16788 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18408 + - uid: 16789 + components: + - type: Transform + pos: 33.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18408 + - uid: 16790 + components: + - type: Transform + pos: 45.5,-20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18410 + - uid: 16791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18409 + - uid: 16792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18410 + - uid: 16793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-34.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18412 + - 18411 + - uid: 16794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18412 + - 18411 + - uid: 16795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18412 + - 18411 + - uid: 16796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-34.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18412 + - 18411 + - uid: 16797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18412 + - 18411 + - uid: 16798 + components: + - type: Transform + pos: 46.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18412 + - 18411 + - uid: 16799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18413 + - uid: 16800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18413 + - uid: 16801 + components: + - type: Transform + pos: 28.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18413 + - uid: 16802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18413 + - uid: 16803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-31.5 + parent: 2 + - uid: 16804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18414 + - uid: 16805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18414 + - uid: 16806 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18415 + - uid: 16807 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18416 + - uid: 16808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18417 + - uid: 16809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18417 + - uid: 16810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18417 + - uid: 16811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18417 + - uid: 16812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18418 + - uid: 16813 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18418 + - uid: 16814 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18418 + - uid: 16815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18418 + - uid: 16816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18418 + - uid: 16817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18418 + - uid: 16818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18418 + - uid: 16819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18419 + - uid: 16820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18419 + - uid: 16821 + components: + - type: Transform + pos: 35.5,-23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18419 + - uid: 16822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18419 + - uid: 16823 + components: + - type: Transform + pos: 40.5,-20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18419 + - uid: 16824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18419 + - uid: 16825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-29.5 + parent: 2 + - uid: 16826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-25.5 + parent: 2 + - uid: 16827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 2 + - uid: 16828 + components: + - type: Transform + pos: 6.5,-39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18421 + - uid: 16829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-40.5 + parent: 2 + - uid: 16830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-34.5 + parent: 2 + - uid: 16831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-48.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18422 + - uid: 16832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-46.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18422 + - uid: 16833 + components: + - type: Transform + pos: 7.5,-44.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18422 + - uid: 16834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-49.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18424 + - uid: 16835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-50.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18422 + - uid: 16836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-55.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18422 + - uid: 16837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-55.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18423 + - uid: 16838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18423 + - uid: 16839 + components: + - type: Transform + pos: 14.5,44.5 + parent: 2 + - uid: 16840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,44.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18373 + - uid: 16841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18418 + - uid: 16842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18342 + - uid: 16843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-58.5 + parent: 2 + - uid: 16844 + components: + - type: Transform + pos: 3.5,-52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18426 + - uid: 16845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-58.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18426 + - uid: 16846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-60.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18428 + - uid: 16847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-60.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18428 + - uid: 16848 + components: + - type: Transform + pos: -4.5,-55.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18428 + - uid: 16849 + components: + - type: Transform + pos: -2.5,-55.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18428 + - uid: 16850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-58.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18428 + - uid: 16851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-62.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18429 + - uid: 16852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-62.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18429 + - uid: 16853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-57.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18429 + - uid: 16854 + components: + - type: Transform + pos: -14.5,-55.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18429 + - uid: 16855 + components: + - type: Transform + pos: -10.5,-55.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18429 + - uid: 16856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-59.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18429 + - uid: 16857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-66.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18430 + - uid: 16858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-65.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18430 + - uid: 16859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-69.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18430 + - uid: 16860 + components: + - type: Transform + pos: 10.5,-62.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18430 + - uid: 16861 + components: + - type: Transform + pos: 14.5,-62.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18430 + - uid: 16862 + components: + - type: Transform + pos: -6.5,-62.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18427 + - uid: 16863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-65.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18427 + - uid: 16864 + components: + - type: Transform + pos: -0.5,-62.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18427 + - uid: 16865 + components: + - type: Transform + pos: 5.5,-62.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18427 + - uid: 16866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-66.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18427 + - uid: 16867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-73.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18427 + - uid: 16868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-73.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18427 + - uid: 16869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-76.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18427 + - uid: 16870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-76.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18427 + - uid: 16871 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18420 + - uid: 16872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-43.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18420 + - uid: 16873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-45.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18420 + - uid: 16874 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18420 + - uid: 16875 + components: + - type: Transform + pos: 27.5,-39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18420 + - uid: 16876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-48.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18420 + - uid: 16877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-56.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18431 + - uid: 16878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-56.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18431 + - uid: 16879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18431 + - uid: 16880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-56.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18431 + - uid: 16881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-60.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18431 + - uid: 16882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-60.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18431 + - uid: 16883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-64.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18431 + - uid: 16884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-64.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18431 + - uid: 16885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-51.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18431 + - uid: 16886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-45.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18420 + - uid: 16887 + components: + - type: Transform + pos: 36.5,-48.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18425 + - uid: 16888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-45.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18433 + - uid: 16889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18434 + - uid: 16890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18434 + - uid: 16891 + components: + - type: Transform + pos: 46.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18377 + - uid: 16892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-12.5 + parent: 2 + - uid: 16893 + components: + - type: Transform + pos: 46.5,-6.5 + parent: 2 + - uid: 16894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-4.5 + parent: 2 +- proto: PoweredlightEmpty + entities: + - uid: 16895 + components: + - type: Transform + pos: 16.5,-30.5 + parent: 2 + - uid: 16896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-32.5 + parent: 2 +- proto: PoweredlightLED + entities: + - uid: 16897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18376 + - uid: 16898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18376 + - uid: 16899 + components: + - type: Transform + pos: 33.5,41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18376 + - uid: 16900 + components: + - type: Transform + pos: 39.5,41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18376 + - uid: 16901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,77.5 + parent: 2 + - uid: 16902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,77.5 + parent: 2 +- proto: PoweredLightPostSmall + entities: + - uid: 16903 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 16904 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 16905 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 + - uid: 16906 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 16907 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 16908 + components: + - type: Transform + pos: -5.5,7.5 + parent: 2 + - uid: 16909 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 + - uid: 16910 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 16911 + components: + - type: Transform + pos: -54.5,-55.5 + parent: 2 + - uid: 16912 + components: + - type: Transform + pos: -54.5,-49.5 + parent: 2 + - uid: 16913 + components: + - type: Transform + pos: -64.5,-56.5 + parent: 2 + - uid: 16914 + components: + - type: Transform + pos: -69.5,-55.5 + parent: 2 + - uid: 16915 + components: + - type: Transform + pos: -69.5,-49.5 + parent: 2 + - uid: 16916 + components: + - type: Transform + pos: -71.5,-51.5 + parent: 2 + - uid: 16917 + components: + - type: Transform + pos: -74.5,-53.5 + parent: 2 + - uid: 16918 + components: + - type: Transform + pos: -74.5,-51.5 + parent: 2 + - uid: 16919 + components: + - type: Transform + pos: -80.5,-45.5 + parent: 2 + - uid: 16920 + components: + - type: Transform + pos: -80.5,-59.5 + parent: 2 + - uid: 16921 + components: + - type: Transform + pos: -87.5,-52.5 + parent: 2 + - uid: 16922 + components: + - type: Transform + pos: -16.5,-71.5 + parent: 2 + - uid: 16923 + components: + - type: Transform + pos: 22.5,-53.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18431 + - uid: 16924 + components: + - type: Transform + pos: 27.5,-50.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18431 + - uid: 16925 + components: + - type: Transform + pos: 27.5,-46.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18420 + - uid: 16926 + components: + - type: Transform + pos: 22.5,-42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18420 + - uid: 16927 + components: + - type: Transform + pos: 27.5,-42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18420 + - uid: 16928 + components: + - type: Transform + pos: 22.5,-46.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18420 + - uid: 16929 + components: + - type: Transform + pos: 16.5,-42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18420 + - uid: 16930 + components: + - type: Transform + pos: 16.5,-46.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18420 + - uid: 16931 + components: + - type: Transform + pos: -12.5,-74.5 + parent: 2 + - uid: 16932 + components: + - type: Transform + pos: 13.5,-74.5 + parent: 2 + - uid: 16933 + components: + - type: Transform + pos: -9.5,-63.5 + parent: 2 +- proto: PoweredlightSodium + entities: + - uid: 16934 + components: + - type: Transform + pos: -44.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18327 + - uid: 16935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18327 +- proto: PoweredSmallLight + entities: + - uid: 8813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,2.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 18346 + - uid: 10913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,9.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 18346 + - uid: 16936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-66.5 + parent: 2 + - uid: 16937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,48.5 + parent: 2 + - uid: 16938 + components: + - type: Transform + pos: 43.5,0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18347 + - uid: 16939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-58.5 + parent: 2 + - uid: 16940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18344 + - uid: 16941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,6.5 + parent: 2 + - uid: 16942 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 16943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 2 + - uid: 16944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18432 + - uid: 16945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,7.5 + parent: 2 + - uid: 16946 + components: + - type: Transform + pos: -21.5,12.5 + parent: 2 + - uid: 16947 + components: + - type: Transform + pos: -27.5,13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18320 + - uid: 16948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,10.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18320 + - uid: 16949 + components: + - type: Transform + pos: -39.5,-25.5 + parent: 2 + - uid: 16950 + components: + - type: Transform + pos: -48.5,-25.5 + parent: 2 + - uid: 16951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-27.5 + parent: 2 + - uid: 16952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-31.5 + parent: 2 + - uid: 16953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-31.5 + parent: 2 + - uid: 16954 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18335 + - uid: 16955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-36.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18335 + - uid: 16956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18335 + - uid: 16957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18335 + - uid: 16958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-45.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18335 + - uid: 16959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-48.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18335 + - uid: 16960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18335 + - uid: 16961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-48.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18335 + - uid: 16962 + components: + - type: Transform + pos: -39.5,-45.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18350 + - uid: 16963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-47.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18350 + - uid: 16964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-43.5 + parent: 2 + - uid: 16965 + components: + - type: Transform + pos: -34.5,-54.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18351 + - uid: 16966 + components: + - type: Transform + pos: -36.5,-62.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18352 + - uid: 16967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-62.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18353 + - uid: 16968 + components: + - type: Transform + pos: -32.5,-58.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18353 + - uid: 16969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-63.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18353 + - uid: 16970 + components: + - type: Transform + pos: -26.5,-66.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18353 + - uid: 16971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-67.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18353 + - uid: 16972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-53.5 + parent: 2 + - uid: 16973 + components: + - type: Transform + pos: -11.5,-51.5 + parent: 2 + - uid: 16974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-52.5 + parent: 2 + - uid: 16975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-40.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18337 + - uid: 16976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-4.5 + parent: 2 + - uid: 16977 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 2 + - uid: 16978 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - uid: 16979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,23.5 + parent: 2 + - uid: 16980 + components: + - type: Transform + pos: 40.5,24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18363 + - uid: 16981 + components: + - type: Transform + pos: 18.5,27.5 + parent: 2 + - uid: 16982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,33.5 + parent: 2 + - uid: 16983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,44.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18370 + - uid: 16984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,44.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18370 + - uid: 16985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,35.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18372 + - uid: 16986 + components: + - type: Transform + pos: 24.5,40.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18371 + - uid: 16987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,41.5 + parent: 2 + - uid: 16988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,41.5 + parent: 2 + - uid: 16989 + components: + - type: Transform + pos: 46.5,39.5 + parent: 2 + - uid: 16990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,32.5 + parent: 2 + - uid: 16991 + components: + - type: Transform + pos: -21.5,16.5 + parent: 2 + - uid: 16992 + components: + - type: Transform + pos: -28.5,21.5 + parent: 2 + - uid: 16993 + components: + - type: Transform + pos: -28.5,17.5 + parent: 2 + - uid: 16994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,23.5 + parent: 2 + - uid: 16995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18379 + - uid: 16996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18381 + - uid: 16997 + components: + - type: Transform + pos: -11.5,43.5 + parent: 2 + - uid: 16998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,41.5 + parent: 2 + - uid: 16999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,41.5 + parent: 2 + - uid: 17000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,41.5 + parent: 2 + - uid: 17001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,41.5 + parent: 2 + - uid: 17002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18393 + - uid: 17003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,36.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18392 + - uid: 17004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18391 + - uid: 17005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,33.5 + parent: 2 + - uid: 17006 + components: + - type: Transform + pos: -4.5,45.5 + parent: 2 + - uid: 17007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,46.5 + parent: 2 + - uid: 17008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,51.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18399 + - uid: 17009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,49.5 + parent: 2 + - uid: 17010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,48.5 + parent: 2 + - uid: 17011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,32.5 + parent: 2 + - uid: 17012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,75.5 + parent: 2 + - uid: 17013 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18404 + - uid: 17014 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18404 + - uid: 17015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18346 + - uid: 17016 + components: + - type: Transform + pos: 43.5,-36.5 + parent: 2 + - uid: 17017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18346 + - uid: 17018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18346 + - uid: 17019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-61.5 + parent: 2 + - uid: 17020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-58.5 + parent: 2 + - uid: 17021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-66.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18427 + - uid: 17022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-66.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18427 + - uid: 17023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-70.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18427 + - uid: 17024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-70.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18427 + - uid: 17025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-52.5 + parent: 2 + - uid: 17026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-60.5 + parent: 2 + - uid: 17027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-55.5 + parent: 2 + - uid: 17028 + components: + - type: Transform + pos: 10.5,22.5 + parent: 2 + - uid: 17029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-58.5 + parent: 2 + - uid: 17030 + components: + - type: Transform + pos: 17.5,-61.5 + parent: 2 + - uid: 17031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-62.5 + parent: 2 + - uid: 17032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-58.5 + parent: 2 + - uid: 17033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-54.5 + parent: 2 + - uid: 17034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-54.5 + parent: 2 + - uid: 17035 + components: + - type: Transform + pos: 26.5,-72.5 + parent: 2 + - uid: 17036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-66.5 + parent: 2 + - uid: 17037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-28.5 + parent: 2 + - uid: 17038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-57.5 + parent: 2 + - uid: 17039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-50.5 + parent: 2 + - uid: 17040 + components: + - type: Transform + pos: 43.5,-46.5 + parent: 2 + - uid: 17041 + components: + - type: Transform + pos: 40.5,-42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18433 + - uid: 17042 + components: + - type: Transform + pos: 46.5,-36.5 + parent: 2 + - uid: 17043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-40.5 + parent: 2 + - uid: 17044 + components: + - type: Transform + pos: 35.5,-36.5 + parent: 2 + - uid: 17045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-4.5 + parent: 2 + - uid: 17046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-69.5 + parent: 2 + - uid: 17047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-69.5 + parent: 2 +- proto: PoweredSmallLightEmpty + entities: + - uid: 17048 + components: + - type: Transform + pos: 40.5,-36.5 + parent: 2 + - uid: 17049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 2 + - uid: 17050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-33.5 + parent: 2 + - uid: 17051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-28.5 + parent: 2 + - uid: 17052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-33.5 + parent: 2 + - uid: 17053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-40.5 + parent: 2 + - uid: 17054 + components: + - type: Transform + pos: 33.5,-36.5 + parent: 2 + - uid: 17055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-37.5 + parent: 2 + - uid: 17056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-37.5 + parent: 2 +- proto: Protolathe + entities: + - uid: 17063 + components: + - type: Transform + pos: -36.5,-1.5 + parent: 2 + - uid: 17064 + components: + - type: Transform + pos: -33.5,-27.5 + parent: 2 + - uid: 17065 + components: + - type: Transform + pos: -22.5,-18.5 + parent: 2 + - uid: 17066 + components: + - type: Transform + pos: 0.5,-48.5 + parent: 2 + - uid: 17067 + components: + - type: Transform + pos: 27.5,-39.5 + parent: 2 +- proto: ProximitySensor + entities: + - uid: 17068 + components: + - type: Transform + pos: -19.348927,-22.464745 + parent: 2 + - uid: 17069 + components: + - type: Transform + pos: -19.199741,-22.4088 + parent: 2 + - uid: 17070 + components: + - type: Transform + pos: -36.75127,-52.490677 + parent: 2 + - uid: 17071 + components: + - type: Transform + pos: -36.608303,-52.34149 + parent: 2 + - uid: 17072 + components: + - type: Transform + pos: -36.3348,-52.509327 + parent: 2 + - uid: 17073 + components: + - type: Transform + pos: -36.32237,-52.105286 + parent: 2 +- proto: Rack + entities: + - uid: 17074 + components: + - type: Transform + pos: 10.5,-59.5 + parent: 2 + - uid: 17075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,27.5 + parent: 2 + - uid: 17076 + components: + - type: Transform + pos: -26.5,-56.5 + parent: 2 + - uid: 17077 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - uid: 17078 + components: + - type: Transform + pos: -7.5,12.5 + parent: 2 + - uid: 17079 + components: + - type: Transform + pos: -6.5,12.5 + parent: 2 + - uid: 17080 + components: + - type: Transform + pos: -6.5,14.5 + parent: 2 + - uid: 17081 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - uid: 17082 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 17083 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 2 + - uid: 17084 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 2 + - uid: 17085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,13.5 + parent: 2 + - uid: 17086 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 2 + - uid: 17087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-22.5 + parent: 2 + - uid: 17088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-24.5 + parent: 2 + - uid: 17089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-25.5 + parent: 2 + - uid: 17090 + components: + - type: Transform + pos: -46.5,-25.5 + parent: 2 + - uid: 17091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-22.5 + parent: 2 + - uid: 17092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-23.5 + parent: 2 + - uid: 17093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 2 + - uid: 17094 + components: + - type: Transform + pos: -4.5,-24.5 + parent: 2 + - uid: 17095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-35.5 + parent: 2 + - uid: 17096 + components: + - type: Transform + pos: -19.5,-37.5 + parent: 2 + - uid: 17097 + components: + - type: Transform + pos: -23.5,-44.5 + parent: 2 + - uid: 17098 + components: + - type: Transform + pos: -19.5,-47.5 + parent: 2 + - uid: 17099 + components: + - type: Transform + pos: -29.5,-51.5 + parent: 2 + - uid: 17100 + components: + - type: Transform + pos: -29.5,-51.5 + parent: 2 + - uid: 17101 + components: + - type: Transform + pos: -34.5,-62.5 + parent: 2 + - uid: 17102 + components: + - type: Transform + pos: -36.5,-62.5 + parent: 2 + - uid: 17103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-66.5 + parent: 2 + - uid: 17104 + components: + - type: Transform + pos: -11.5,-53.5 + parent: 2 + - uid: 17105 + components: + - type: Transform + pos: -7.5,-51.5 + parent: 2 + - uid: 17106 + components: + - type: Transform + pos: -6.5,-51.5 + parent: 2 + - uid: 17107 + components: + - type: Transform + pos: -2.5,-40.5 + parent: 2 + - uid: 17108 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 2 + - uid: 17109 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 2 + - uid: 17110 + components: + - type: Transform + pos: -4.5,-40.5 + parent: 2 + - uid: 17111 + components: + - type: Transform + pos: -4.5,-37.5 + parent: 2 + - uid: 17112 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 2 + - uid: 17113 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 2 + - uid: 17114 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 2 + - uid: 17115 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 2 + - uid: 17116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,16.5 + parent: 2 + - uid: 17117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,27.5 + parent: 2 + - uid: 17118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,27.5 + parent: 2 + - uid: 17119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,25.5 + parent: 2 + - uid: 17120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,27.5 + parent: 2 + - uid: 17121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,25.5 + parent: 2 + - uid: 17122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,27.5 + parent: 2 + - uid: 17123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,14.5 + parent: 2 + - uid: 17124 + components: + - type: Transform + pos: -23.5,18.5 + parent: 2 + - uid: 17125 + components: + - type: Transform + pos: -23.5,21.5 + parent: 2 + - uid: 17126 + components: + - type: Transform + pos: -29.5,21.5 + parent: 2 + - uid: 17127 + components: + - type: Transform + pos: -14.5,40.5 + parent: 2 + - uid: 17128 + components: + - type: Transform + pos: -14.5,38.5 + parent: 2 + - uid: 17129 + components: + - type: Transform + pos: -13.5,40.5 + parent: 2 + - uid: 17130 + components: + - type: Transform + pos: -12.5,40.5 + parent: 2 + - uid: 17131 + components: + - type: Transform + pos: -15.5,40.5 + parent: 2 + - uid: 17132 + components: + - type: Transform + pos: -11.5,48.5 + parent: 2 + - uid: 17133 + components: + - type: Transform + pos: 8.5,84.5 + parent: 2 + - uid: 17134 + components: + - type: Transform + pos: 7.5,85.5 + parent: 2 + - uid: 17135 + components: + - type: Transform + pos: -6.5,75.5 + parent: 2 + - uid: 17136 + components: + - type: Transform + pos: 47.5,-29.5 + parent: 2 + - uid: 17137 + components: + - type: Transform + pos: 46.5,-29.5 + parent: 2 + - uid: 17138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-27.5 + parent: 2 + - uid: 17139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-29.5 + parent: 2 + - uid: 17140 + components: + - type: Transform + pos: 15.5,-36.5 + parent: 2 + - uid: 17141 + components: + - type: Transform + pos: 24.5,-34.5 + parent: 2 + - uid: 17142 + components: + - type: Transform + pos: 25.5,-34.5 + parent: 2 + - uid: 17143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-52.5 + parent: 2 + - uid: 17144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-51.5 + parent: 2 + - uid: 17145 + components: + - type: Transform + pos: -9.5,-55.5 + parent: 2 + - uid: 17146 + components: + - type: Transform + pos: -16.5,-56.5 + parent: 2 + - uid: 17147 + components: + - type: Transform + pos: 29.5,-39.5 + parent: 2 + - uid: 17148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-39.5 + parent: 2 + - uid: 17149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-39.5 + parent: 2 + - uid: 17150 + components: + - type: Transform + pos: -36.5,-58.5 + parent: 2 + - uid: 17151 + components: + - type: Transform + pos: -36.5,-60.5 + parent: 2 + - uid: 17152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 2 + - uid: 17153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-35.5 + parent: 2 + - uid: 17154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-37.5 + parent: 2 + - uid: 17155 + components: + - type: Transform + pos: -25.5,-56.5 + parent: 2 + - uid: 17156 + components: + - type: Transform + pos: 6.5,-37.5 + parent: 2 + - uid: 17157 + components: + - type: Transform + pos: 7.5,-37.5 + parent: 2 + - uid: 17158 + components: + - type: Transform + pos: -2.5,-50.5 + parent: 2 + - uid: 17159 + components: + - type: Transform + pos: 36.5,-36.5 + parent: 2 + - uid: 17160 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 2 + - uid: 17161 + components: + - type: Transform + pos: 7.5,-34.5 + parent: 2 + - uid: 17162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-60.5 + parent: 2 +- proto: RadiationCollectorNoTank + entities: + - uid: 17163 + components: + - type: Transform + pos: 3.5,-68.5 + parent: 2 + - uid: 17164 + components: + - type: Transform + pos: 3.5,-70.5 + parent: 2 + - uid: 17165 + components: + - type: Transform + pos: -2.5,-70.5 + parent: 2 + - uid: 17166 + components: + - type: Transform + pos: -2.5,-68.5 + parent: 2 + - uid: 17169 + components: + - type: Transform + pos: 2.5,-68.5 + parent: 2 + - uid: 17170 + components: + - type: Transform + pos: 2.5,-70.5 + parent: 2 + - uid: 17171 + components: + - type: Transform + pos: -1.5,-68.5 + parent: 2 + - uid: 17172 + components: + - type: Transform + pos: -1.5,-70.5 + parent: 2 +- proto: RadioHandheld + entities: + - uid: 17173 + components: + - type: Transform + pos: -36.28194,-18.423845 + parent: 2 + - uid: 17174 + components: + - type: Transform + pos: -36.36586,-18.283985 + parent: 2 + - uid: 17175 + components: + - type: Transform + pos: -30.711529,-34.43418 + parent: 2 + - uid: 17176 + components: + - type: Transform + pos: 29.705189,-4.5692544 + parent: 2 + - uid: 17177 + components: + - type: Transform + pos: 43.537224,-18.265045 + parent: 2 + - uid: 17178 + components: + - type: Transform + pos: -6.4682493,78.6944 + parent: 2 + - uid: 17179 + components: + - type: Transform + pos: 4.337897,-18.688145 + parent: 2 +- proto: Railing + entities: + - uid: 17180 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - uid: 17181 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - uid: 17182 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 2 + - uid: 17183 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 17184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 2 + - uid: 17185 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 17186 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 17187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 2 + - uid: 17188 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - uid: 17189 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 2 + - uid: 17190 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 17191 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 + - uid: 17192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 2 + - uid: 17193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 2 + - uid: 17194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 2 + - uid: 17195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 2 + - uid: 17196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 2 + - uid: 17197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 2 + - uid: 17198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,7.5 + parent: 2 + - uid: 17199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 2 + - uid: 17200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 2 + - uid: 17201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,9.5 + parent: 2 + - uid: 17202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,8.5 + parent: 2 + - uid: 17203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 2 + - uid: 17204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 2 + - uid: 17205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 2 + - uid: 17206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 2 + - uid: 17207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 2 + - uid: 17208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 2 + - uid: 17209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,2.5 + parent: 2 + - uid: 17210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,11.5 + parent: 2 + - uid: 17211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,10.5 + parent: 2 + - uid: 17212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,9.5 + parent: 2 + - uid: 17213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,8.5 + parent: 2 + - uid: 17214 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 2 + - uid: 17215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,3.5 + parent: 2 + - uid: 17216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-10.5 + parent: 2 + - uid: 17217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-11.5 + parent: 2 + - uid: 17218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-12.5 + parent: 2 + - uid: 17219 + components: + - type: Transform + pos: -38.5,-63.5 + parent: 2 + - uid: 17220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-62.5 + parent: 2 + - uid: 17221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-60.5 + parent: 2 + - uid: 17222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-59.5 + parent: 2 + - uid: 17223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-58.5 + parent: 2 + - uid: 17224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-57.5 + parent: 2 + - uid: 17225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-56.5 + parent: 2 + - uid: 17226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-55.5 + parent: 2 + - uid: 17227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-54.5 + parent: 2 + - uid: 17228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-40.5 + parent: 2 + - uid: 17229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-39.5 + parent: 2 + - uid: 17230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-39.5 + parent: 2 + - uid: 17231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-40.5 + parent: 2 + - uid: 17232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,11.5 + parent: 2 + - uid: 17233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,10.5 + parent: 2 + - uid: 17234 + components: + - type: Transform + pos: 33.5,9.5 + parent: 2 + - uid: 17235 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 17236 + components: + - type: Transform + pos: 35.5,9.5 + parent: 2 + - uid: 17237 + components: + - type: Transform + pos: 40.5,24.5 + parent: 2 + - uid: 17238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,43.5 + parent: 2 + - uid: 17239 + components: + - type: Transform + pos: -13.5,44.5 + parent: 2 + - uid: 17240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-60.5 + parent: 2 + - uid: 17241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-61.5 + parent: 2 + - uid: 17242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-55.5 + parent: 2 + - uid: 17243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-65.5 + parent: 2 + - uid: 17244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-66.5 + parent: 2 + - uid: 17245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-67.5 + parent: 2 + - uid: 17246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-68.5 + parent: 2 + - uid: 17247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-69.5 + parent: 2 + - uid: 17248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-70.5 + parent: 2 + - uid: 17249 + components: + - type: Transform + pos: -15.5,-71.5 + parent: 2 + - uid: 17250 + components: + - type: Transform + pos: -14.5,-71.5 + parent: 2 + - uid: 17251 + components: + - type: Transform + pos: -13.5,-71.5 + parent: 2 + - uid: 17252 + components: + - type: Transform + pos: -12.5,-71.5 + parent: 2 + - uid: 17253 + components: + - type: Transform + pos: -11.5,-71.5 + parent: 2 + - uid: 17254 + components: + - type: Transform + pos: -10.5,-71.5 + parent: 2 + - uid: 17255 + components: + - type: Transform + pos: -9.5,-71.5 + parent: 2 + - uid: 17256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-65.5 + parent: 2 + - uid: 17257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-66.5 + parent: 2 + - uid: 17258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-67.5 + parent: 2 + - uid: 17259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-68.5 + parent: 2 + - uid: 17260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-69.5 + parent: 2 + - uid: 17261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-69.5 + parent: 2 + - uid: 17262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-69.5 + parent: 2 + - uid: 17263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-67.5 + parent: 2 + - uid: 17264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-67.5 + parent: 2 + - uid: 17265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-67.5 + parent: 2 + - uid: 17266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-67.5 + parent: 2 + - uid: 17267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-67.5 + parent: 2 + - uid: 17268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-66.5 + parent: 2 + - uid: 17269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-60.5 + parent: 2 + - uid: 17270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-59.5 + parent: 2 + - uid: 17271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-58.5 + parent: 2 + - uid: 17272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-56.5 + parent: 2 + - uid: 17273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-55.5 + parent: 2 + - uid: 17274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-54.5 + parent: 2 + - uid: 17275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-53.5 + parent: 2 + - uid: 17276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-52.5 + parent: 2 + - uid: 17277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-51.5 + parent: 2 + - uid: 17278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-50.5 + parent: 2 + - uid: 17279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-45.5 + parent: 2 + - uid: 17280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-46.5 + parent: 2 + - uid: 17281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-48.5 + parent: 2 + - uid: 17282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-49.5 + parent: 2 + - uid: 17283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-47.5 + parent: 2 + - uid: 17284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-72.5 + parent: 2 + - uid: 17285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-71.5 + parent: 2 + - uid: 17286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-70.5 + parent: 2 + - uid: 23107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-23.5 + parent: 2 + - uid: 23867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-24.5 + parent: 2 + - uid: 23868 + components: + - type: Transform + pos: -31.5,-22.5 + parent: 2 + - uid: 23878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-20.5 + parent: 2 + - uid: 23879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-21.5 + parent: 2 + - uid: 23880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-20.5 + parent: 2 +- proto: RailingCorner + entities: + - uid: 17287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 2 + - uid: 17288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 2 + - uid: 17289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 2 + - uid: 17290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 2 + - uid: 17291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 2 + - uid: 17292 + components: + - type: Transform + pos: -1.5,3.5 + parent: 2 + - uid: 17293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 2 + - uid: 17294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 2 + - uid: 17295 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 17296 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 17297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,4.5 + parent: 2 + - uid: 17298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 2 + - uid: 17299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,11.5 + parent: 2 + - uid: 17300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-63.5 + parent: 2 + - uid: 17301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,9.5 + parent: 2 + - uid: 17302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-59.5 + parent: 2 + - uid: 17303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-56.5 + parent: 2 + - uid: 17304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-71.5 + parent: 2 + - uid: 17305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-49.5 + parent: 2 + - uid: 17306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-47.5 + parent: 2 + - uid: 17307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-69.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 17308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 2 + - uid: 17309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 2 + - uid: 17310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - uid: 17311 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 17312 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 17313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 2 + - uid: 17314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - uid: 17315 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 17316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 2 + - uid: 17317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 2 + - uid: 17318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 2 + - uid: 17319 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 17320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + - uid: 17321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + - uid: 17322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 17323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 2 + - uid: 17324 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 17325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 2 + - uid: 17326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + - uid: 17327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 2 + - uid: 17328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 2 + - uid: 17329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 2 + - uid: 17330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 2 + - uid: 17331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 2 + - uid: 17332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 2 + - uid: 17333 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 + - uid: 17334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 2 + - uid: 17335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 2 + - uid: 17336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 2 + - uid: 17337 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - uid: 17338 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - uid: 17339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 2 + - uid: 17340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 2 + - uid: 17341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 2 + - uid: 17342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 2 + - uid: 17343 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 + - uid: 17344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 2 + - uid: 17345 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - uid: 17346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 2 + - uid: 17347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 2 + - uid: 17348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 2 + - uid: 17349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 2 + - uid: 17350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 2 + - uid: 17351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 2 + - uid: 17352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 2 + - uid: 17353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 2 + - uid: 17354 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 17355 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 17356 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 17357 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 17358 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 17359 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 17360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 2 + - uid: 17361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 2 + - uid: 17362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 2 + - uid: 17363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 2 + - uid: 17364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 2 + - uid: 17365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,2.5 + parent: 2 + - uid: 17366 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 + - uid: 17367 + components: + - type: Transform + pos: -2.5,4.5 + parent: 2 + - uid: 17368 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 17369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,10.5 + parent: 2 + - uid: 17370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,10.5 + parent: 2 + - uid: 17371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 2 + - uid: 17372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 2 + - uid: 17373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 2 + - uid: 17374 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 17375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 2 + - uid: 17376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,5.5 + parent: 2 + - uid: 17377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,7.5 + parent: 2 + - uid: 17378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 2 + - uid: 17379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,9.5 + parent: 2 + - uid: 17380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,10.5 + parent: 2 + - uid: 17381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 2 + - uid: 17382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 2 + - uid: 17383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,8.5 + parent: 2 + - uid: 17384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,7.5 + parent: 2 + - uid: 17385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,5.5 + parent: 2 + - uid: 17386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,4.5 + parent: 2 + - uid: 17387 + components: + - type: Transform + pos: -41.5,11.5 + parent: 2 + - uid: 17388 + components: + - type: Transform + pos: -43.5,7.5 + parent: 2 + - uid: 17389 + components: + - type: Transform + pos: -43.5,7.5 + parent: 2 + - uid: 17390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-13.5 + parent: 2 + - uid: 17391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,44.5 + parent: 2 + - uid: 17392 + components: + - type: Transform + pos: -15.5,-59.5 + parent: 2 + - uid: 17393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-56.5 + parent: 2 + - uid: 17394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-69.5 + parent: 2 + - uid: 17395 + components: + - type: Transform + pos: 35.5,-67.5 + parent: 2 + - uid: 17396 + components: + - type: Transform + pos: 41.5,-60.5 + parent: 2 + - uid: 17397 + components: + - type: Transform + pos: 43.5,-49.5 + parent: 2 + - uid: 17398 + components: + - type: Transform + pos: 45.5,-47.5 + parent: 2 + - uid: 23871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-24.5 + parent: 2 + - uid: 23872 + components: + - type: Transform + pos: -30.5,-24.5 + parent: 2 + - uid: 23873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-22.5 + parent: 2 + - uid: 23874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-22.5 + parent: 2 + - uid: 23875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-19.5 + parent: 2 + - uid: 23876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-21.5 + parent: 2 + - uid: 23877 + components: + - type: Transform + pos: -30.5,-21.5 + parent: 2 +- proto: RandomArcade + entities: + - uid: 17399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,8.5 + parent: 2 + - uid: 17400 + components: + - type: Transform + pos: -39.5,37.5 + parent: 2 +- proto: RandomArtifactSpawner + entities: + - uid: 17401 + components: + - type: Transform + pos: -11.5,-31.5 + parent: 2 + - uid: 17402 + components: + - type: Transform + pos: -17.5,-31.5 + parent: 2 +- proto: RandomInstruments + entities: + - uid: 17403 + components: + - type: Transform + pos: -22.5,-31.5 + parent: 2 + - uid: 17404 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 + - uid: 17405 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 + - uid: 17406 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 +- proto: RandomPainting + entities: + - uid: 17407 + components: + - type: Transform + pos: 15.5,45.5 + parent: 2 +- proto: RandomPosterAny + entities: + - uid: 17408 + components: + - type: Transform + pos: 39.5,-37.5 + parent: 2 +- proto: RandomPosterContraband + entities: + - uid: 17409 + components: + - type: Transform + pos: 42.5,11.5 + parent: 2 + - uid: 17410 + components: + - type: Transform + pos: 37.5,11.5 + parent: 2 + - uid: 17411 + components: + - type: Transform + pos: -31.5,33.5 + parent: 2 + - uid: 17412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,26.5 + parent: 2 + - uid: 17413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,23.5 + parent: 2 + - uid: 17415 + components: + - type: Transform + pos: 45.5,-36.5 + parent: 2 + - uid: 17416 + components: + - type: Transform + pos: 37.5,-35.5 + parent: 2 + - uid: 17417 + components: + - type: Transform + pos: 32.5,-35.5 + parent: 2 + - uid: 17418 + components: + - type: Transform + pos: 19.5,24.5 + parent: 2 + - uid: 17419 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 + - uid: 17420 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 17421 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 17422 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 + - uid: 17423 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 2 + - uid: 17424 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 2 + - uid: 17425 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 2 + - uid: 17426 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 17427 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 2 + - uid: 17428 + components: + - type: Transform + pos: -45.5,-28.5 + parent: 2 + - uid: 17429 + components: + - type: Transform + pos: -40.5,-24.5 + parent: 2 + - uid: 17430 + components: + - type: Transform + pos: -37.5,-30.5 + parent: 2 + - uid: 17431 + components: + - type: Transform + pos: -28.5,-60.5 + parent: 2 + - uid: 17432 + components: + - type: Transform + pos: -32.5,-65.5 + parent: 2 + - uid: 17433 + components: + - type: Transform + pos: -23.5,-51.5 + parent: 2 + - uid: 17434 + components: + - type: Transform + pos: -8.5,-51.5 + parent: 2 + - uid: 17435 + components: + - type: Transform + pos: -22.5,-46.5 + parent: 2 + - uid: 17436 + components: + - type: Transform + pos: -5.5,-42.5 + parent: 2 + - uid: 17437 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 2 + - uid: 17438 + components: + - type: Transform + pos: 21.5,-35.5 + parent: 2 + - uid: 17439 + components: + - type: Transform + pos: -14.5,6.5 + parent: 2 + - uid: 17440 + components: + - type: Transform + pos: -21.5,13.5 + parent: 2 + - uid: 17441 + components: + - type: Transform + pos: -26.5,17.5 + parent: 2 + - uid: 17442 + components: + - type: Transform + pos: -28.5,23.5 + parent: 2 + - uid: 17443 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 + - uid: 20564 + components: + - type: Transform + pos: 13.5,34.5 + parent: 2 +- proto: RandomPosterLegit + entities: + - uid: 15544 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 2 + - uid: 17444 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 2 + - uid: 17445 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 17446 + components: + - type: Transform + pos: -6.5,10.5 + parent: 2 + - uid: 17447 + components: + - type: Transform + pos: -8.5,7.5 + parent: 2 + - uid: 17448 + components: + - type: Transform + pos: 11.5,6.5 + parent: 2 + - uid: 17449 + components: + - type: Transform + pos: -14.5,9.5 + parent: 2 + - uid: 17450 + components: + - type: Transform + pos: -18.5,11.5 + parent: 2 + - uid: 17451 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 17452 + components: + - type: Transform + pos: -8.5,12.5 + parent: 2 + - uid: 17453 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 17454 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 2 + - uid: 17455 + components: + - type: Transform + pos: -17.5,3.5 + parent: 2 + - uid: 17456 + components: + - type: Transform + pos: -35.5,5.5 + parent: 2 + - uid: 17457 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 2 + - uid: 17458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,3.5 + parent: 2 + - uid: 17459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,3.5 + parent: 2 + - uid: 17460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,3.5 + parent: 2 + - uid: 17461 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 2 + - uid: 17462 + components: + - type: Transform + pos: 34.5,3.5 + parent: 2 + - uid: 17463 + components: + - type: Transform + pos: 32.5,21.5 + parent: 2 + - uid: 17464 + components: + - type: Transform + pos: 39.5,12.5 + parent: 2 + - uid: 17465 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 2 + - uid: 17466 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - uid: 17467 + components: + - type: Transform + pos: 31.5,37.5 + parent: 2 + - uid: 17468 + components: + - type: Transform + pos: 42.5,-16.5 + parent: 2 + - uid: 17469 + components: + - type: Transform + pos: -1.5,28.5 + parent: 2 + - uid: 17470 + components: + - type: Transform + pos: -31.5,37.5 + parent: 2 + - uid: 17471 + components: + - type: Transform + pos: -29.5,27.5 + parent: 2 + - uid: 17472 + components: + - type: Transform + pos: -32.5,27.5 + parent: 2 + - uid: 17473 + components: + - type: Transform + pos: -26.5,31.5 + parent: 2 + - uid: 17474 + components: + - type: Transform + pos: 3.5,39.5 + parent: 2 + - uid: 17475 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 2 + - uid: 17476 + components: + - type: Transform + pos: 35.5,-18.5 + parent: 2 + - uid: 17477 + components: + - type: Transform + pos: 24.5,-30.5 + parent: 2 + - uid: 17478 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 2 + - uid: 17479 + components: + - type: Transform + pos: 12.5,-39.5 + parent: 2 + - uid: 17480 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 2 + - uid: 17481 + components: + - type: Transform + pos: 25.5,-38.5 + parent: 2 + - uid: 17482 + components: + - type: Transform + pos: -2.5,-49.5 + parent: 2 + - uid: 17483 + components: + - type: Transform + pos: 3.5,-51.5 + parent: 2 + - uid: 17484 + components: + - type: Transform + pos: 27.5,22.5 + parent: 2 + - uid: 17485 + components: + - type: Transform + pos: 48.5,-40.5 + parent: 2 +- proto: RandomSpawner + entities: + - uid: 17486 + components: + - type: Transform + pos: -44.5,16.5 + parent: 2 + - uid: 17487 + components: + - type: Transform + pos: -43.5,16.5 + parent: 2 + - uid: 17488 + components: + - type: Transform + pos: -42.5,16.5 + parent: 2 + - uid: 17489 + components: + - type: Transform + pos: -43.5,16.5 + parent: 2 + - uid: 17490 + components: + - type: Transform + pos: -44.5,16.5 + parent: 2 + - uid: 17491 + components: + - type: Transform + pos: -43.5,16.5 + parent: 2 + - uid: 17492 + components: + - type: Transform + pos: -42.5,16.5 + parent: 2 + - uid: 17493 + components: + - type: Transform + pos: -20.5,-44.5 + parent: 2 + - uid: 17494 + components: + - type: Transform + pos: -20.5,-47.5 + parent: 2 + - uid: 17495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-44.5 + parent: 2 + - uid: 17496 + components: + - type: Transform + pos: -27.5,-43.5 + parent: 2 + - uid: 17497 + components: + - type: Transform + pos: -29.5,-51.5 + parent: 2 + - uid: 17498 + components: + - type: Transform + pos: -13.5,-52.5 + parent: 2 + - uid: 17499 + components: + - type: Transform + pos: 24.5,25.5 + parent: 2 + - uid: 17500 + components: + - type: Transform + pos: -17.5,14.5 + parent: 2 + - uid: 17501 + components: + - type: Transform + pos: -17.5,16.5 + parent: 2 + - uid: 17502 + components: + - type: Transform + pos: -33.5,19.5 + parent: 2 + - uid: 17503 + components: + - type: Transform + pos: -28.5,17.5 + parent: 2 + - uid: 17504 + components: + - type: Transform + pos: -27.5,15.5 + parent: 2 + - uid: 17505 + components: + - type: Transform + pos: -29.5,16.5 + parent: 2 + - uid: 17506 + components: + - type: Transform + pos: 34.5,-28.5 + parent: 2 + - uid: 17507 + components: + - type: Transform + pos: 30.5,-36.5 + parent: 2 + - uid: 17508 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 2 + - uid: 17509 + components: + - type: Transform + pos: 34.5,-36.5 + parent: 2 + - uid: 17510 + components: + - type: Transform + pos: 39.5,-39.5 + parent: 2 + - uid: 17511 + components: + - type: Transform + pos: 44.5,-40.5 + parent: 2 + - uid: 17512 + components: + - type: Transform + pos: 46.5,-38.5 + parent: 2 + - uid: 17513 + components: + - type: Transform + pos: 34.5,-39.5 + parent: 2 + - uid: 17514 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 2 + - uid: 17515 + components: + - type: Transform + pos: 8.5,-37.5 + parent: 2 +- proto: RandomSpawner100 + entities: + - uid: 17516 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - uid: 17517 + components: + - type: Transform + pos: -24.5,-13.5 + parent: 2 + - uid: 17518 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - uid: 17519 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 17520 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 2 + - uid: 17521 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - uid: 17522 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 2 + - uid: 17523 + components: + - type: Transform + pos: 20.5,-37.5 + parent: 2 + - uid: 17524 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 2 + - uid: 17525 + components: + - type: Transform + pos: 20.5,-36.5 + parent: 2 + - uid: 17526 + components: + - type: Transform + pos: 18.5,-36.5 + parent: 2 +- proto: RandomVendingDrinks + entities: + - uid: 17527 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 17528 + components: + - type: Transform + pos: -35.5,-38.5 + parent: 2 + - uid: 17529 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 2 + - uid: 17530 + components: + - type: Transform + pos: 4.5,-39.5 + parent: 2 + - uid: 17531 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 2 +- proto: RandomVendingSnacks + entities: + - uid: 11461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,9.5 + parent: 2 + - uid: 17532 + components: + - type: Transform + pos: -35.5,-39.5 + parent: 2 + - uid: 17533 + components: + - type: Transform + pos: -29.5,30.5 + parent: 2 + - uid: 17535 + components: + - type: Transform + pos: -6.5,71.5 + parent: 2 + - uid: 17536 + components: + - type: Transform + pos: 5.5,-39.5 + parent: 2 + - uid: 17537 + components: + - type: Transform + pos: 6.5,-39.5 + parent: 2 + - uid: 17538 + components: + - type: Transform + pos: 8.5,-55.5 + parent: 2 + - uid: 17539 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 2 + - uid: 23860 + components: + - type: Transform + pos: 6.5,56.5 + parent: 2 +- proto: RCD + entities: + - uid: 17540 + components: + - type: Transform + pos: 14.512725,-51.577976 + parent: 2 +- proto: RCDAmmo + entities: + - uid: 17541 + components: + - type: Transform + pos: 14.276517,-52.592392 + parent: 2 + - uid: 17542 + components: + - type: Transform + pos: 14.276517,-52.45564 + parent: 2 + - uid: 17543 + components: + - type: Transform + pos: 14.276517,-52.306458 + parent: 2 +- proto: ReagentContainerFlourSmall + entities: + - uid: 17544 + components: + - type: Transform + pos: -42.587147,33.57065 + parent: 2 +- proto: Recycler + entities: + - uid: 17545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19980 +- proto: ReinforcedGirder + entities: + - uid: 17546 + components: + - type: Transform + anchored: False + pos: -45.5,19.5 + parent: 2 + - type: Physics + bodyType: Dynamic + - uid: 17547 + components: + - type: Transform + anchored: False + pos: -53.483994,13.556776 + parent: 2 + - type: Physics + bodyType: Dynamic + - uid: 17548 + components: + - type: Transform + pos: -58.5,31.5 + parent: 2 + - uid: 17549 + components: + - type: Transform + pos: -59.5,31.5 + parent: 2 + - uid: 17550 + components: + - type: Transform + pos: -60.5,31.5 + parent: 2 + - uid: 17551 + components: + - type: Transform + pos: -63.5,30.5 + parent: 2 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 17552 + components: + - type: Transform + pos: -17.5,-29.5 + parent: 2 + - uid: 17553 + components: + - type: Transform + pos: -16.5,-29.5 + parent: 2 + - uid: 17554 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 2 + - uid: 17555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-48.5 + parent: 2 + - uid: 17556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,37.5 + parent: 2 + - uid: 17557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,39.5 + parent: 2 + - uid: 17558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-61.5 + parent: 2 + - uid: 17559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-61.5 + parent: 2 + - uid: 17560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-61.5 + parent: 2 + - uid: 17561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-61.5 + parent: 2 + - uid: 17562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-62.5 + parent: 2 + - uid: 17563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-62.5 + parent: 2 + - uid: 17564 + components: + - type: Transform + pos: 9.5,-68.5 + parent: 2 + - uid: 17565 + components: + - type: Transform + pos: 9.5,-69.5 + parent: 2 + - uid: 17566 + components: + - type: Transform + pos: 9.5,-70.5 + parent: 2 + - uid: 17567 + components: + - type: Transform + pos: 11.5,-71.5 + parent: 2 + - uid: 17568 + components: + - type: Transform + pos: 12.5,-71.5 + parent: 2 + - uid: 17569 + components: + - type: Transform + pos: 13.5,-71.5 + parent: 2 + - uid: 17570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-77.5 + parent: 2 + - uid: 17571 + components: + - type: Transform + pos: 15.5,-62.5 + parent: 2 + - uid: 17572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-71.5 + parent: 2 + - uid: 17573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-71.5 + parent: 2 + - uid: 17574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-71.5 + parent: 2 + - uid: 17575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-74.5 + parent: 2 + - uid: 17576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-77.5 + parent: 2 + - uid: 17577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-77.5 + parent: 2 + - uid: 17578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-77.5 + parent: 2 + - uid: 17579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-77.5 + parent: 2 + - uid: 17580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-77.5 + parent: 2 + - uid: 17581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-77.5 + parent: 2 + - uid: 17582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-77.5 + parent: 2 + - uid: 17583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-74.5 + parent: 2 + - uid: 17584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-70.5 + parent: 2 + - uid: 17585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-69.5 + parent: 2 + - uid: 17586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-68.5 + parent: 2 + - uid: 17587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-58.5 + parent: 2 + - uid: 17588 + components: + - type: Transform + pos: 19.5,-62.5 + parent: 2 + - uid: 17589 + components: + - type: Transform + pos: 19.5,-54.5 + parent: 2 + - uid: 17590 + components: + - type: Transform + pos: 39.5,-44.5 + parent: 2 + - uid: 17591 + components: + - type: Transform + pos: 41.5,-44.5 + parent: 2 + - uid: 17592 + components: + - type: Transform + pos: 41.5,-42.5 + parent: 2 + - uid: 17593 + components: + - type: Transform + pos: 27.5,-67.5 + parent: 2 + - uid: 17594 + components: + - type: Transform + pos: 35.5,-58.5 + parent: 2 + - uid: 17595 + components: + - type: Transform + pos: 35.5,-54.5 + parent: 2 + - uid: 17596 + components: + - type: Transform + pos: 35.5,-62.5 + parent: 2 +- proto: ReinforcedWindow + entities: + - uid: 17597 + components: + - type: Transform + pos: -8.5,-25.5 + parent: 2 + - uid: 17598 + components: + - type: Transform + pos: -11.5,-25.5 + parent: 2 + - uid: 17599 + components: + - type: Transform + pos: 3.5,27.5 + parent: 2 + - uid: 17600 + components: + - type: Transform + pos: 3.5,25.5 + parent: 2 + - uid: 17601 + components: + - type: Transform + pos: -3.5,12.5 + parent: 2 + - uid: 17602 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - uid: 17603 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 17604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,17.5 + parent: 2 + - uid: 17605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,17.5 + parent: 2 + - uid: 17606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,17.5 + parent: 2 + - uid: 17607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,16.5 + parent: 2 + - uid: 17608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,17.5 + parent: 2 + - uid: 17609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,19.5 + parent: 2 + - uid: 17610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,19.5 + parent: 2 + - uid: 17611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,17.5 + parent: 2 + - uid: 17612 + components: + - type: Transform + pos: -26.5,6.5 + parent: 2 + - uid: 17613 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - uid: 17614 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - uid: 17615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,8.5 + parent: 2 + - uid: 17616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,9.5 + parent: 2 + - uid: 17617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,10.5 + parent: 2 + - uid: 17618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,11.5 + parent: 2 + - uid: 17619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,5.5 + parent: 2 + - uid: 17620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,5.5 + parent: 2 + - uid: 17621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,11.5 + parent: 2 + - uid: 17622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,1.5 + parent: 2 + - uid: 17623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,0.5 + parent: 2 + - uid: 17625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 2 + - uid: 17626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-2.5 + parent: 2 + - uid: 17627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-3.5 + parent: 2 + - uid: 17628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-6.5 + parent: 2 + - uid: 17629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-2.5 + parent: 2 + - uid: 17630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-3.5 + parent: 2 + - uid: 17631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-4.5 + parent: 2 + - uid: 17632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-3.5 + parent: 2 + - uid: 17633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-4.5 + parent: 2 + - uid: 17634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-5.5 + parent: 2 + - uid: 17635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,3.5 + parent: 2 + - uid: 17636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,2.5 + parent: 2 + - uid: 17637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,1.5 + parent: 2 + - uid: 17638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,4.5 + parent: 2 + - uid: 17639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,3.5 + parent: 2 + - uid: 17640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,2.5 + parent: 2 + - uid: 17641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-8.5 + parent: 2 + - uid: 17642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-9.5 + parent: 2 + - uid: 17643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-10.5 + parent: 2 + - uid: 17644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-10.5 + parent: 2 + - uid: 17645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-10.5 + parent: 2 + - uid: 17646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-10.5 + parent: 2 + - uid: 17647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-10.5 + parent: 2 + - uid: 17648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-12.5 + parent: 2 + - uid: 17649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-12.5 + parent: 2 + - uid: 17650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,16.5 + parent: 2 + - uid: 17651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,17.5 + parent: 2 + - uid: 17652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-15.5 + parent: 2 + - uid: 17653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-23.5 + parent: 2 + - uid: 17654 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 + - uid: 17655 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 2 + - uid: 17656 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 2 + - uid: 17657 + components: + - type: Transform + pos: -28.5,-25.5 + parent: 2 + - uid: 17658 + components: + - type: Transform + pos: -30.5,-25.5 + parent: 2 + - uid: 17659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-28.5 + parent: 2 + - uid: 17660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-28.5 + parent: 2 + - uid: 17661 + components: + - type: Transform + pos: -29.5,-36.5 + parent: 2 + - uid: 17662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-33.5 + parent: 2 + - uid: 17663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-33.5 + parent: 2 + - uid: 17664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-34.5 + parent: 2 + - uid: 17665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-35.5 + parent: 2 + - uid: 17666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-34.5 + parent: 2 + - uid: 17667 + components: + - type: Transform + pos: -32.5,-44.5 + parent: 2 + - uid: 17668 + components: + - type: Transform + pos: -34.5,-44.5 + parent: 2 + - uid: 17669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-30.5 + parent: 2 + - uid: 17670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-31.5 + parent: 2 + - uid: 17671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-25.5 + parent: 2 + - uid: 17672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-25.5 + parent: 2 + - uid: 17673 + components: + - type: Transform + pos: -19.5,-30.5 + parent: 2 + - uid: 17674 + components: + - type: Transform + pos: -19.5,-31.5 + parent: 2 + - uid: 17675 + components: + - type: Transform + pos: -12.5,-33.5 + parent: 2 + - uid: 17676 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 2 + - uid: 17677 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 2 + - uid: 17678 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 2 + - uid: 17679 + components: + - type: Transform + pos: -4.5,-26.5 + parent: 2 + - uid: 17680 + components: + - type: Transform + pos: -4.5,-28.5 + parent: 2 + - uid: 17681 + components: + - type: Transform + pos: -6.5,-29.5 + parent: 2 + - uid: 17682 + components: + - type: Transform + pos: -8.5,-29.5 + parent: 2 + - uid: 17683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-32.5 + parent: 2 + - uid: 17684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-33.5 + parent: 2 + - uid: 17685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-34.5 + parent: 2 + - uid: 17686 + components: + - type: Transform + pos: -14.5,-35.5 + parent: 2 + - uid: 17687 + components: + - type: Transform + pos: -14.5,-37.5 + parent: 2 + - uid: 17688 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 2 + - uid: 17689 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 2 + - uid: 17690 + components: + - type: Transform + pos: -14.5,-41.5 + parent: 2 + - uid: 17691 + components: + - type: Transform + pos: -14.5,-43.5 + parent: 2 + - uid: 17692 + components: + - type: Transform + pos: -14.5,-44.5 + parent: 2 + - uid: 17693 + components: + - type: Transform + pos: -14.5,-46.5 + parent: 2 + - uid: 17694 + components: + - type: Transform + pos: -14.5,-47.5 + parent: 2 + - uid: 17695 + components: + - type: Transform + pos: -14.5,-49.5 + parent: 2 + - uid: 17696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-47.5 + parent: 2 + - uid: 17697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-49.5 + parent: 2 + - uid: 17698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-41.5 + parent: 2 + - uid: 17699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-43.5 + parent: 2 + - uid: 17700 + components: + - type: Transform + pos: -44.5,-42.5 + parent: 2 + - uid: 17701 + components: + - type: Transform + pos: -45.5,-40.5 + parent: 2 + - uid: 17702 + components: + - type: Transform + pos: -45.5,-39.5 + parent: 2 + - uid: 17703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-36.5 + parent: 2 + - uid: 17704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-33.5 + parent: 2 + - uid: 17705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-32.5 + parent: 2 + - uid: 17706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-31.5 + parent: 2 + - uid: 17707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-30.5 + parent: 2 + - uid: 17708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-49.5 + parent: 2 + - uid: 17709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-50.5 + parent: 2 + - uid: 17710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-51.5 + parent: 2 + - uid: 17711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-51.5 + parent: 2 + - uid: 17712 + components: + - type: Transform + pos: -37.5,-55.5 + parent: 2 + - uid: 17713 + components: + - type: Transform + pos: -37.5,-59.5 + parent: 2 + - uid: 17714 + components: + - type: Transform + pos: -37.5,-63.5 + parent: 2 + - uid: 17715 + components: + - type: Transform + pos: -35.5,-65.5 + parent: 2 + - uid: 17716 + components: + - type: Transform + pos: -31.5,-65.5 + parent: 2 + - uid: 17717 + components: + - type: Transform + pos: -30.5,-65.5 + parent: 2 + - uid: 17718 + components: + - type: Transform + pos: -29.5,-65.5 + parent: 2 + - uid: 17719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-35.5 + parent: 2 + - uid: 17720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-37.5 + parent: 2 + - uid: 17721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-1.5 + parent: 2 + - uid: 17722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-1.5 + parent: 2 + - uid: 17723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,17.5 + parent: 2 + - uid: 17724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,18.5 + parent: 2 + - uid: 17725 + components: + - type: Transform + pos: 44.5,14.5 + parent: 2 + - uid: 17726 + components: + - type: Transform + pos: 44.5,13.5 + parent: 2 + - uid: 17727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-0.5 + parent: 2 + - uid: 17728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,8.5 + parent: 2 + - uid: 17729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,7.5 + parent: 2 + - uid: 17730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,6.5 + parent: 2 + - uid: 17731 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 17732 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 + - uid: 17733 + components: + - type: Transform + pos: 12.5,28.5 + parent: 2 + - uid: 17734 + components: + - type: Transform + pos: 11.5,28.5 + parent: 2 + - uid: 17735 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 + - uid: 17736 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 17737 + components: + - type: Transform + pos: 36.5,31.5 + parent: 2 + - uid: 17738 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 17739 + components: + - type: Transform + pos: 32.5,31.5 + parent: 2 + - uid: 17740 + components: + - type: Transform + pos: 12.5,36.5 + parent: 2 + - uid: 17741 + components: + - type: Transform + pos: 12.5,35.5 + parent: 2 + - uid: 17742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,43.5 + parent: 2 + - uid: 17743 + components: + - type: Transform + pos: 19.5,47.5 + parent: 2 + - uid: 17744 + components: + - type: Transform + pos: 19.5,46.5 + parent: 2 + - uid: 17745 + components: + - type: Transform + pos: 21.5,47.5 + parent: 2 + - uid: 17746 + components: + - type: Transform + pos: 21.5,46.5 + parent: 2 + - uid: 17747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,41.5 + parent: 2 + - uid: 17748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,41.5 + parent: 2 + - uid: 17749 + components: + - type: Transform + pos: 41.5,32.5 + parent: 2 + - uid: 17750 + components: + - type: Transform + pos: 41.5,33.5 + parent: 2 + - uid: 17751 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - uid: 17752 + components: + - type: Transform + pos: 41.5,36.5 + parent: 2 + - uid: 17753 + components: + - type: Transform + pos: 41.5,37.5 + parent: 2 + - uid: 17754 + components: + - type: Transform + pos: 41.5,39.5 + parent: 2 + - uid: 17755 + components: + - type: Transform + pos: 41.5,40.5 + parent: 2 + - uid: 17756 + components: + - type: Transform + pos: 41.5,41.5 + parent: 2 + - uid: 17757 + components: + - type: Transform + pos: 41.5,42.5 + parent: 2 + - uid: 17758 + components: + - type: Transform + pos: 40.5,42.5 + parent: 2 + - uid: 17759 + components: + - type: Transform + pos: 39.5,42.5 + parent: 2 + - uid: 17760 + components: + - type: Transform + pos: 38.5,42.5 + parent: 2 + - uid: 17761 + components: + - type: Transform + pos: 37.5,42.5 + parent: 2 + - uid: 17762 + components: + - type: Transform + pos: 36.5,42.5 + parent: 2 + - uid: 17763 + components: + - type: Transform + pos: 35.5,42.5 + parent: 2 + - uid: 17764 + components: + - type: Transform + pos: 34.5,42.5 + parent: 2 + - uid: 17765 + components: + - type: Transform + pos: 33.5,42.5 + parent: 2 + - uid: 17766 + components: + - type: Transform + pos: 32.5,42.5 + parent: 2 + - uid: 17767 + components: + - type: Transform + pos: 45.5,27.5 + parent: 2 + - uid: 17768 + components: + - type: Transform + pos: 45.5,28.5 + parent: 2 + - uid: 17769 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 17770 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 + - uid: 17771 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 17772 + components: + - type: Transform + pos: 45.5,36.5 + parent: 2 + - uid: 17773 + components: + - type: Transform + pos: 45.5,37.5 + parent: 2 + - uid: 17774 + components: + - type: Transform + pos: 45.5,42.5 + parent: 2 + - uid: 17775 + components: + - type: Transform + pos: 45.5,43.5 + parent: 2 + - uid: 17776 + components: + - type: Transform + pos: 45.5,44.5 + parent: 2 + - uid: 17777 + components: + - type: Transform + pos: 45.5,45.5 + parent: 2 + - uid: 17778 + components: + - type: Transform + pos: 42.5,47.5 + parent: 2 + - uid: 17779 + components: + - type: Transform + pos: 44.5,47.5 + parent: 2 + - uid: 17780 + components: + - type: Transform + pos: 42.5,49.5 + parent: 2 + - uid: 17781 + components: + - type: Transform + pos: 44.5,49.5 + parent: 2 + - uid: 17782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-13.5 + parent: 2 + - uid: 17783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-13.5 + parent: 2 + - uid: 17784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-13.5 + parent: 2 + - uid: 17785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-11.5 + parent: 2 + - uid: 17786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-10.5 + parent: 2 + - uid: 17787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-8.5 + parent: 2 + - uid: 17788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-7.5 + parent: 2 + - uid: 17789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-11.5 + parent: 2 + - uid: 17790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-5.5 + parent: 2 + - uid: 17791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-7.5 + parent: 2 + - uid: 17792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-7.5 + parent: 2 + - uid: 17793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-13.5 + parent: 2 + - uid: 17794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-15.5 + parent: 2 + - uid: 17795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-15.5 + parent: 2 + - uid: 17796 + components: + - type: Transform + pos: -17.5,18.5 + parent: 2 + - uid: 17797 + components: + - type: Transform + pos: -17.5,20.5 + parent: 2 + - uid: 17798 + components: + - type: Transform + pos: -2.5,21.5 + parent: 2 + - uid: 17799 + components: + - type: Transform + pos: -3.5,21.5 + parent: 2 + - uid: 17800 + components: + - type: Transform + pos: -5.5,21.5 + parent: 2 + - uid: 17801 + components: + - type: Transform + pos: -6.5,21.5 + parent: 2 + - uid: 17802 + components: + - type: Transform + pos: -8.5,21.5 + parent: 2 + - uid: 17803 + components: + - type: Transform + pos: -9.5,21.5 + parent: 2 + - uid: 17804 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - uid: 17805 + components: + - type: Transform + pos: -12.5,21.5 + parent: 2 + - uid: 17806 + components: + - type: Transform + pos: -15.5,21.5 + parent: 2 + - uid: 17807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,24.5 + parent: 2 + - uid: 17808 + components: + - type: Transform + pos: -17.5,25.5 + parent: 2 + - uid: 17809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,25.5 + parent: 2 + - uid: 17810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,25.5 + parent: 2 + - uid: 17811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,25.5 + parent: 2 + - uid: 17812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,25.5 + parent: 2 + - uid: 17813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,25.5 + parent: 2 + - uid: 17814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,25.5 + parent: 2 + - uid: 17815 + components: + - type: Transform + pos: -14.5,30.5 + parent: 2 + - uid: 17816 + components: + - type: Transform + pos: -16.5,30.5 + parent: 2 + - uid: 17817 + components: + - type: Transform + pos: -11.5,30.5 + parent: 2 + - uid: 17818 + components: + - type: Transform + pos: -13.5,31.5 + parent: 2 + - uid: 17819 + components: + - type: Transform + pos: -8.5,36.5 + parent: 2 + - uid: 17820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,40.5 + parent: 2 + - uid: 17821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,38.5 + parent: 2 + - uid: 17822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,37.5 + parent: 2 + - uid: 17823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,37.5 + parent: 2 + - uid: 17824 + components: + - type: Transform + pos: -20.5,43.5 + parent: 2 + - uid: 17825 + components: + - type: Transform + pos: -20.5,44.5 + parent: 2 + - uid: 17826 + components: + - type: Transform + pos: -20.5,45.5 + parent: 2 + - uid: 17827 + components: + - type: Transform + pos: -21.5,45.5 + parent: 2 + - uid: 17828 + components: + - type: Transform + pos: -21.5,46.5 + parent: 2 + - uid: 17829 + components: + - type: Transform + pos: -22.5,46.5 + parent: 2 + - uid: 17830 + components: + - type: Transform + pos: -23.5,46.5 + parent: 2 + - uid: 17831 + components: + - type: Transform + pos: -24.5,46.5 + parent: 2 + - uid: 17832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,36.5 + parent: 2 + - uid: 17833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,34.5 + parent: 2 + - uid: 17834 + components: + - type: Transform + pos: -35.5,39.5 + parent: 2 + - uid: 17835 + components: + - type: Transform + pos: -35.5,36.5 + parent: 2 + - uid: 17836 + components: + - type: Transform + pos: -35.5,33.5 + parent: 2 + - uid: 17837 + components: + - type: Transform + pos: -38.5,39.5 + parent: 2 + - uid: 17838 + components: + - type: Transform + pos: -40.5,38.5 + parent: 2 + - uid: 17839 + components: + - type: Transform + pos: -41.5,38.5 + parent: 2 + - uid: 17840 + components: + - type: Transform + pos: -43.5,34.5 + parent: 2 + - uid: 17841 + components: + - type: Transform + pos: -43.5,33.5 + parent: 2 + - uid: 17842 + components: + - type: Transform + pos: -43.5,32.5 + parent: 2 + - uid: 17843 + components: + - type: Transform + pos: -38.5,30.5 + parent: 2 + - uid: 17844 + components: + - type: Transform + pos: -38.5,28.5 + parent: 2 + - uid: 17845 + components: + - type: Transform + pos: -37.5,27.5 + parent: 2 + - uid: 17846 + components: + - type: Transform + pos: -35.5,27.5 + parent: 2 + - uid: 17847 + components: + - type: Transform + pos: -40.5,23.5 + parent: 2 + - uid: 17848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,28.5 + parent: 2 + - uid: 17849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,30.5 + parent: 2 + - uid: 17850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,35.5 + parent: 2 + - uid: 17851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,32.5 + parent: 2 + - uid: 17852 + components: + - type: Transform + pos: 6.5,36.5 + parent: 2 + - uid: 17853 + components: + - type: Transform + pos: 5.5,36.5 + parent: 2 + - uid: 17854 + components: + - type: Transform + pos: 4.5,36.5 + parent: 2 + - uid: 17855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,45.5 + parent: 2 + - uid: 17856 + components: + - type: Transform + pos: -12.5,47.5 + parent: 2 + - uid: 17857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,50.5 + parent: 2 + - uid: 17858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,51.5 + parent: 2 + - uid: 17859 + components: + - type: Transform + pos: -9.5,55.5 + parent: 2 + - uid: 17860 + components: + - type: Transform + pos: -4.5,57.5 + parent: 2 + - uid: 17861 + components: + - type: Transform + pos: -2.5,57.5 + parent: 2 + - uid: 17862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,48.5 + parent: 2 + - uid: 17863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,51.5 + parent: 2 + - uid: 17864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,45.5 + parent: 2 + - uid: 17865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,46.5 + parent: 2 + - uid: 17866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,46.5 + parent: 2 + - uid: 17867 + components: + - type: Transform + pos: 11.5,55.5 + parent: 2 + - uid: 17868 + components: + - type: Transform + pos: 11.5,54.5 + parent: 2 + - uid: 17869 + components: + - type: Transform + pos: 11.5,53.5 + parent: 2 + - uid: 17870 + components: + - type: Transform + pos: 6.5,57.5 + parent: 2 + - uid: 17871 + components: + - type: Transform + pos: 3.5,53.5 + parent: 2 + - uid: 17872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,57.5 + parent: 2 + - uid: 17873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,57.5 + parent: 2 + - uid: 17874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,54.5 + parent: 2 + - uid: 17875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,54.5 + parent: 2 + - uid: 17876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,60.5 + parent: 2 + - uid: 17877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,61.5 + parent: 2 + - uid: 17878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,61.5 + parent: 2 + - uid: 17879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,62.5 + parent: 2 + - uid: 17880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,62.5 + parent: 2 + - uid: 17881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,62.5 + parent: 2 + - uid: 17882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,63.5 + parent: 2 + - uid: 17883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,63.5 + parent: 2 + - uid: 17884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,63.5 + parent: 2 + - uid: 17885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,63.5 + parent: 2 + - uid: 17886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,63.5 + parent: 2 + - uid: 17887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,63.5 + parent: 2 + - uid: 17888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,63.5 + parent: 2 + - uid: 17889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,63.5 + parent: 2 + - uid: 17890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,62.5 + parent: 2 + - uid: 17891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,62.5 + parent: 2 + - uid: 17892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,62.5 + parent: 2 + - uid: 17893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,61.5 + parent: 2 + - uid: 17894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,61.5 + parent: 2 + - uid: 17895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,60.5 + parent: 2 + - uid: 17896 + components: + - type: Transform + pos: -2.5,68.5 + parent: 2 + - uid: 17897 + components: + - type: Transform + pos: -3.5,68.5 + parent: 2 + - uid: 17898 + components: + - type: Transform + pos: 5.5,68.5 + parent: 2 + - uid: 17899 + components: + - type: Transform + pos: 2.5,73.5 + parent: 2 + - uid: 17900 + components: + - type: Transform + pos: 1.5,73.5 + parent: 2 + - uid: 17901 + components: + - type: Transform + pos: 0.5,73.5 + parent: 2 + - uid: 17902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,86.5 + parent: 2 + - uid: 17903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,86.5 + parent: 2 + - uid: 17904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,86.5 + parent: 2 + - uid: 17905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,86.5 + parent: 2 + - uid: 17906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,86.5 + parent: 2 + - uid: 17907 + components: + - type: Transform + pos: 2.5,81.5 + parent: 2 + - uid: 17908 + components: + - type: Transform + pos: 0.5,81.5 + parent: 2 + - uid: 17909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-12.5 + parent: 2 + - uid: 17910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-12.5 + parent: 2 + - uid: 17911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-12.5 + parent: 2 + - uid: 17912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-12.5 + parent: 2 + - uid: 17913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 2 + - uid: 17914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-17.5 + parent: 2 + - uid: 17915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 2 + - uid: 17916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 2 + - uid: 17917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-21.5 + parent: 2 + - uid: 17918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-21.5 + parent: 2 + - uid: 17919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-22.5 + parent: 2 + - uid: 17920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-22.5 + parent: 2 + - uid: 17921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-22.5 + parent: 2 + - uid: 17922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-22.5 + parent: 2 + - uid: 17923 + components: + - type: Transform + pos: 39.5,-15.5 + parent: 2 + - uid: 17924 + components: + - type: Transform + pos: 39.5,-17.5 + parent: 2 + - uid: 17925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-22.5 + parent: 2 + - uid: 17926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-23.5 + parent: 2 + - uid: 17927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-24.5 + parent: 2 + - uid: 17928 + components: + - type: Transform + pos: 48.5,-30.5 + parent: 2 + - uid: 17929 + components: + - type: Transform + pos: 48.5,-32.5 + parent: 2 + - uid: 17930 + components: + - type: Transform + pos: 41.5,-26.5 + parent: 2 + - uid: 17931 + components: + - type: Transform + pos: 38.5,-26.5 + parent: 2 + - uid: 17932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-20.5 + parent: 2 + - uid: 17933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-28.5 + parent: 2 + - uid: 17934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-28.5 + parent: 2 + - uid: 17935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-28.5 + parent: 2 + - uid: 17936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-28.5 + parent: 2 + - uid: 17937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-32.5 + parent: 2 + - uid: 17938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-20.5 + parent: 2 + - uid: 17939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-20.5 + parent: 2 + - uid: 17940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-19.5 + parent: 2 + - uid: 17941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-39.5 + parent: 2 + - uid: 17942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-42.5 + parent: 2 + - uid: 17943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-43.5 + parent: 2 + - uid: 17944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-43.5 + parent: 2 + - uid: 17945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-43.5 + parent: 2 + - uid: 17946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-43.5 + parent: 2 + - uid: 17947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-42.5 + parent: 2 + - uid: 17948 + components: + - type: Transform + pos: 2.5,-47.5 + parent: 2 + - uid: 17949 + components: + - type: Transform + pos: 3.5,-47.5 + parent: 2 + - uid: 17950 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 2 + - uid: 17951 + components: + - type: Transform + pos: 5.5,-47.5 + parent: 2 + - uid: 17952 + components: + - type: Transform + pos: 5.5,-48.5 + parent: 2 + - uid: 17953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-46.5 + parent: 2 + - uid: 17954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-48.5 + parent: 2 + - uid: 17955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-51.5 + parent: 2 + - uid: 17956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-54.5 + parent: 2 + - uid: 17957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-56.5 + parent: 2 + - uid: 17958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-49.5 + parent: 2 + - uid: 17959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-49.5 + parent: 2 + - uid: 17960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-49.5 + parent: 2 + - uid: 17961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-54.5 + parent: 2 + - uid: 17962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-55.5 + parent: 2 + - uid: 17963 + components: + - type: Transform + pos: -43.5,20.5 + parent: 2 + - uid: 17964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-48.5 + parent: 2 + - uid: 17965 + components: + - type: Transform + pos: 20.5,-52.5 + parent: 2 + - uid: 17966 + components: + - type: Transform + pos: 21.5,-53.5 + parent: 2 + - uid: 17967 + components: + - type: Transform + pos: 21.5,-52.5 + parent: 2 + - uid: 17968 + components: + - type: Transform + pos: 21.5,-54.5 + parent: 2 + - uid: 17969 + components: + - type: Transform + pos: 21.5,-55.5 + parent: 2 + - uid: 17970 + components: + - type: Transform + pos: 21.5,-57.5 + parent: 2 + - uid: 17971 + components: + - type: Transform + pos: 21.5,-58.5 + parent: 2 + - uid: 17972 + components: + - type: Transform + pos: 21.5,-59.5 + parent: 2 + - uid: 17973 + components: + - type: Transform + pos: 21.5,-61.5 + parent: 2 + - uid: 17974 + components: + - type: Transform + pos: 21.5,-62.5 + parent: 2 + - uid: 17975 + components: + - type: Transform + pos: 21.5,-63.5 + parent: 2 + - uid: 17976 + components: + - type: Transform + pos: 21.5,-64.5 + parent: 2 + - uid: 17977 + components: + - type: Transform + pos: 24.5,-65.5 + parent: 2 + - uid: 17978 + components: + - type: Transform + pos: 26.5,-65.5 + parent: 2 + - uid: 17979 + components: + - type: Transform + pos: 27.5,-65.5 + parent: 2 + - uid: 17980 + components: + - type: Transform + pos: 28.5,-65.5 + parent: 2 + - uid: 17981 + components: + - type: Transform + pos: 30.5,-65.5 + parent: 2 + - uid: 17982 + components: + - type: Transform + pos: 31.5,-65.5 + parent: 2 + - uid: 17983 + components: + - type: Transform + pos: 32.5,-65.5 + parent: 2 + - uid: 17984 + components: + - type: Transform + pos: 33.5,-57.5 + parent: 2 + - uid: 17985 + components: + - type: Transform + pos: 33.5,-58.5 + parent: 2 + - uid: 17986 + components: + - type: Transform + pos: 33.5,-59.5 + parent: 2 + - uid: 17987 + components: + - type: Transform + pos: 33.5,-61.5 + parent: 2 + - uid: 17988 + components: + - type: Transform + pos: 33.5,-62.5 + parent: 2 + - uid: 17989 + components: + - type: Transform + pos: 33.5,-63.5 + parent: 2 + - uid: 17990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-48.5 + parent: 2 + - uid: 17991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-47.5 + parent: 2 + - uid: 17992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-31.5 + parent: 2 + - uid: 17993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-34.5 + parent: 2 + - uid: 17994 + components: + - type: Transform + pos: 33.5,-53.5 + parent: 2 + - uid: 17995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,36.5 + parent: 2 + - uid: 17996 + components: + - type: Transform + pos: -9.5,-25.5 + parent: 2 + - uid: 22835 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 +- proto: RemoteSignaller + entities: + - uid: 17997 + components: + - type: Transform + pos: -36.69524,-30.216236 + parent: 2 + - uid: 17998 + components: + - type: Transform + pos: -37.428818,-51.94367 + parent: 2 + - uid: 17999 + components: + - type: Transform + pos: -37.584217,-51.813133 + parent: 2 + - uid: 18000 + components: + - type: Transform + pos: -37.354225,-51.757187 + parent: 2 + - uid: 18001 + components: + - type: Transform + pos: -37.47233,-51.63287 + parent: 2 + - uid: 18002 + components: + - type: Transform + pos: 36.77558,-46.458874 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15636: + - Pressed: Trigger +- proto: ResearchAndDevelopmentServer + entities: + - uid: 18003 + components: + - type: Transform + pos: -24.5,-37.5 + parent: 2 +- proto: ResearchDisk + entities: + - uid: 18004 + components: + - type: Transform + pos: -25.474854,-39.43875 + parent: 2 + - uid: 18005 + components: + - type: Transform + pos: -23.451546,-39.448074 + parent: 2 +- proto: RevolverCapGun + entities: + - uid: 18006 + components: + - type: Transform + pos: 38.38097,-7.897862 + parent: 2 +- proto: RiotShield + entities: + - uid: 18007 + components: + - type: Transform + pos: -12.615384,40.555973 + parent: 2 + - uid: 18008 + components: + - type: Transform + pos: -12.424128,40.64512 + parent: 2 +- proto: RitualDagger + entities: + - uid: 18009 + components: + - type: Transform + pos: 15.515292,33.45173 + parent: 2 +- proto: RollerBed + entities: + - uid: 18010 + components: + - type: Transform + pos: 44.5,-34.5 + parent: 2 + - uid: 18011 + components: + - type: Transform + pos: 45.5,-34.5 + parent: 2 + - uid: 18012 + components: + - type: Transform + pos: 46.5,-34.5 + parent: 2 + - uid: 18013 + components: + - type: Transform + pos: 47.5,-34.5 + parent: 2 + - uid: 18014 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 2 + - uid: 18015 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 2 + - uid: 18016 + components: + - type: Transform + pos: 20.5,-28.5 + parent: 2 +- proto: RollingPin + entities: + - uid: 18017 + components: + - type: Transform + pos: -42.493908,32.449837 + parent: 2 + - uid: 18018 + components: + - type: Transform + pos: 26.568108,18.219398 + parent: 2 +- proto: RubberStampApproved + entities: + - uid: 18019 + components: + - type: Transform + pos: -2.6808589,14.656691 + parent: 2 + - uid: 18020 + components: + - type: Transform + pos: -39.564224,8.768915 + parent: 2 + - uid: 18021 + components: + - type: Transform + pos: -23.592323,40.68254 + parent: 2 + - uid: 18022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.577986,-23.429962 + parent: 2 +- proto: RubberStampCaptain + entities: + - uid: 18023 + components: + - type: Transform + pos: -8.266708,55.473656 + parent: 2 +- proto: RubberStampClown + entities: + - uid: 18024 + components: + - type: Transform + pos: 40.318123,12.6082115 + parent: 2 +- proto: RubberStampCMO + entities: + - uid: 18025 + components: + - type: Transform + pos: 25.30877,-19.556654 + parent: 2 +- proto: RubberStampDenied + entities: + - uid: 18026 + components: + - type: Transform + pos: -2.8113947,14.84317 + parent: 2 + - uid: 18027 + components: + - type: Transform + pos: -39.303154,8.852831 + parent: 2 + - uid: 18028 + components: + - type: Transform + pos: -23.401066,40.548824 + parent: 2 + - uid: 18029 + components: + - type: Transform + pos: -12.7514925,-23.34776 + parent: 2 +- proto: RubberStampQm + entities: + - uid: 18030 + components: + - type: Transform + pos: -27.790066,5.535928 + parent: 2 +- proto: SalvageCanisterSpawner + entities: + - uid: 18031 + components: + - type: Transform + pos: -36.5,-17.5 + parent: 2 + - uid: 18032 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 2 + - uid: 18033 + components: + - type: Transform + pos: -28.5,-46.5 + parent: 2 + - uid: 18034 + components: + - type: Transform + pos: -21.5,-39.5 + parent: 2 + - uid: 18035 + components: + - type: Transform + pos: -19.5,-49.5 + parent: 2 + - uid: 18036 + components: + - type: Transform + pos: 44.5,21.5 + parent: 2 + - uid: 18037 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 18038 + components: + - type: Transform + pos: 25.5,25.5 + parent: 2 + - uid: 18039 + components: + - type: Transform + pos: -11.5,45.5 + parent: 2 + - uid: 18040 + components: + - type: Transform + pos: 9.5,75.5 + parent: 2 +- proto: SalvageMagnet + entities: + - uid: 18041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-19.5 + parent: 2 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 18042 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 2 +- proto: Saw + entities: + - uid: 18043 + components: + - type: Transform + pos: 19.268372,-16.508553 + parent: 2 +- proto: SawElectric + entities: + - uid: 18044 + components: + - type: Transform + pos: 20.377926,-16.564495 + parent: 2 +- proto: Scalpel + entities: + - uid: 18045 + components: + - type: Transform + pos: 20.433872,-16.228832 + parent: 2 +- proto: ScalpelAdvanced + entities: + - uid: 18046 + components: + - type: Transform + pos: -33.46318,25.802137 + parent: 2 +- proto: ScalpelShiv + entities: + - uid: 18047 + components: + - type: Transform + pos: -3.5694814,-14.4214115 + parent: 2 +- proto: Screwdriver + entities: + - uid: 18048 + components: + - type: Transform + pos: 4.509079,15.69581 + parent: 2 + - uid: 18049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.621513,-50.706684 + parent: 2 + - uid: 18050 + components: + - type: Transform + pos: -19.541893,-41.382526 + parent: 2 + - uid: 18051 + components: + - type: Transform + pos: 23.560352,36.23436 + parent: 2 + - uid: 18052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.379181,34.68983 + parent: 2 + - uid: 18053 + components: + - type: Transform + pos: 4.5338135,44.37522 + parent: 2 + - uid: 18054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5661516,80.44264 + parent: 2 + - uid: 18055 + components: + - type: Transform + pos: 4.4835577,-18.278255 + parent: 2 + - uid: 18056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.694046,-32.63298 + parent: 2 +- proto: SecurityTechFab + entities: + - uid: 18057 + components: + - type: Transform + pos: -11.5,38.5 + parent: 2 +- proto: SeedExtractor + entities: + - uid: 18058 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 2 + - uid: 18059 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 + - uid: 18060 + components: + - type: Transform + pos: -42.5,30.5 + parent: 2 +- proto: SheetGlass + entities: + - uid: 18061 + components: + - type: Transform + pos: 7.527253,85.57397 + parent: 2 + - uid: 18062 + components: + - type: Transform + pos: -6.362105,74.75126 + parent: 2 + - uid: 18063 + components: + - type: Transform + pos: -25.313526,-24.474699 + parent: 2 + - uid: 18064 + components: + - type: Transform + pos: -36.37923,-29.59225 + parent: 2 +- proto: SheetGlass1 + entities: + - uid: 18065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.30182,-37.681477 + parent: 2 +- proto: SheetGlass10 + entities: + - uid: 18066 + components: + - type: Transform + pos: 22.42968,-44.351597 + parent: 2 + - uid: 18067 + components: + - type: Transform + pos: 19.614388,-18.401928 + parent: 2 + - uid: 18068 + components: + - type: Transform + pos: 34.464607,-14.403328 + parent: 2 + - uid: 18069 + components: + - type: Transform + pos: -10.411487,-55.40177 + parent: 2 + - uid: 18070 + components: + - type: Transform + pos: 22.547783,-44.419975 + parent: 2 +- proto: SheetPaper + entities: + - uid: 18071 + components: + - type: Transform + pos: -36.676533,-64.364944 + parent: 2 + - uid: 18072 + components: + - type: Transform + pos: -36.3412,-64.2183 + parent: 2 +- proto: SheetPGlass1 + entities: + - uid: 18073 + components: + - type: Transform + pos: -22.560863,-30.476324 + parent: 2 + - uid: 18074 + components: + - type: Transform + pos: -22.574848,-30.44835 + parent: 2 + - uid: 18075 + components: + - type: Transform + pos: -22.574848,-30.44835 + parent: 2 + - uid: 18076 + components: + - type: Transform + pos: -22.574848,-30.44835 + parent: 2 + - uid: 18077 + components: + - type: Transform + pos: -22.574848,-30.44835 + parent: 2 +- proto: SheetPlasma + entities: + - uid: 18078 + components: + - type: Transform + pos: 10.434816,-59.358215 + parent: 2 + - uid: 18079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.55043,-30.410664 + parent: 2 + - uid: 18080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.36395,-30.606468 + parent: 2 + - uid: 18081 + components: + - type: Transform + pos: 7.5232,44.594135 + parent: 2 + - uid: 18082 + components: + - type: Transform + pos: -5.7939453,74.67647 + parent: 2 +- proto: SheetPlasma1 + entities: + - uid: 18083 + components: + - type: Transform + pos: -27.473106,-16.434982 + parent: 2 + - uid: 18084 + components: + - type: Transform + pos: -36.401535,-30.328123 + parent: 2 + - uid: 18085 + components: + - type: Transform + pos: -5.6273484,-30.952227 + parent: 2 + - uid: 18086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.40979,-34.264156 + parent: 2 + - uid: 18087 + components: + - type: Transform + pos: -13.482822,-61.38449 + parent: 2 +- proto: SheetPlasteel1 + entities: + - uid: 18088 + components: + - type: Transform + pos: -45.546013,19.49592 + parent: 2 + - uid: 18089 + components: + - type: Transform + pos: -58.5,30.5 + parent: 2 + - uid: 18090 + components: + - type: Transform + pos: -59.5,31.5 + parent: 2 + - uid: 18091 + components: + - type: Transform + pos: -60.5,31.5 + parent: 2 + - uid: 18092 + components: + - type: Transform + pos: -63.5,29.5 + parent: 2 + - uid: 18093 + components: + - type: Transform + pos: -69.46847,19.457985 + parent: 2 +- proto: SheetPlasteel10 + entities: + - uid: 18094 + components: + - type: Transform + pos: 22.516705,-44.73699 + parent: 2 +- proto: SheetPlastic + entities: + - uid: 18095 + components: + - type: Transform + pos: -36.236694,-29.348978 + parent: 2 + - uid: 18096 + components: + - type: Transform + pos: -25.938526,-24.443449 + parent: 2 +- proto: SheetSteel + entities: + - uid: 18097 + components: + - type: Transform + pos: -26.563526,-24.443449 + parent: 2 + - uid: 18098 + components: + - type: Transform + pos: 22.53535,-44.065662 + parent: 2 + - uid: 18099 + components: + - type: Transform + pos: 22.53535,-44.065662 + parent: 2 + - uid: 18100 + components: + - type: Transform + pos: 22.53535,-44.065662 + parent: 2 + - uid: 18101 + components: + - type: Transform + pos: 8.5342455,84.55299 + parent: 2 + - uid: 18102 + components: + - type: Transform + pos: -36.692863,-29.365276 + parent: 2 +- proto: SheetSteel1 + entities: + - uid: 18103 + components: + - type: Transform + pos: -18.463707,-14.5383625 + parent: 2 + - uid: 18104 + components: + - type: Transform + pos: -62.5,30.5 + parent: 2 + - uid: 18105 + components: + - type: Transform + pos: 30.525955,-52.2981 + parent: 2 + - uid: 18106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.309597,-39.80526 + parent: 2 + - uid: 18107 + components: + - type: Transform + pos: 44.5,-36.5 + parent: 2 +- proto: SheetSteel10 + entities: + - uid: 18108 + components: + - type: Transform + pos: 19.399937,-18.1968 + parent: 2 + - uid: 18109 + components: + - type: Transform + pos: 33.49695,-14.397692 + parent: 2 +- proto: SheetUranium + entities: + - uid: 18110 + components: + - type: Transform + pos: 10.6910715,-59.547028 + parent: 2 +- proto: ShellTranquilizer + entities: + - uid: 18111 + components: + - type: Transform + pos: -26.556175,-48.50991 + parent: 2 + - uid: 18112 + components: + - type: Transform + pos: -28.400486,-47.378624 + parent: 2 +- proto: ShowcaseRobot + entities: + - uid: 18113 + components: + - type: Transform + pos: -4.5,85.5 + parent: 2 + - uid: 18114 + components: + - type: Transform + pos: 1.5,69.5 + parent: 2 +- proto: ShowcaseRobotMarauder + entities: + - uid: 18115 + components: + - type: Transform + pos: -5.5,84.5 + parent: 2 +- proto: ShuttersNormal + entities: + - uid: 18116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18239 + - uid: 18117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18239 + - uid: 18118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18240 + - uid: 18119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-10.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18240 + - uid: 18120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,11.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18243 + - uid: 18121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18243 + - uid: 18122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18277 + - 18276 + - uid: 18123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18277 + - 18276 + - uid: 18124 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18278 + - uid: 18125 + components: + - type: Transform + pos: -30.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18278 + - uid: 18126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-35.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18274 + - 18275 + - uid: 18127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-36.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18274 + - 18275 + - uid: 18128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-37.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18246 + - 18247 + - uid: 18129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18246 + - 18247 + - uid: 18130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18246 + - 18247 + - uid: 18131 + components: + - type: Transform + pos: 20.5,15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18284 + - uid: 18132 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18284 + - uid: 18133 + components: + - type: Transform + pos: 24.5,15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18284 + - uid: 18134 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18284 + - uid: 18135 + components: + - type: Transform + pos: 26.5,15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18284 + - uid: 18136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18284 + - uid: 18137 + components: + - type: Transform + pos: -12.5,37.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18260 + - 18311 + - uid: 18138 + components: + - type: Transform + pos: -15.5,37.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18260 + - 18311 + - uid: 18139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18260 + - 18311 + - uid: 18140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-49.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18292 + - 18272 + - uid: 18141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-48.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18292 + - 18272 + - uid: 18142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-50.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18292 + - 18272 +- proto: ShuttersNormalOpen + entities: + - uid: 18143 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18268 + - uid: 18144 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18269 + - uid: 18145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18295 + - uid: 18146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18263 + - uid: 18147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18263 + - uid: 18148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18309 + - uid: 18149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18309 + - uid: 18150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18309 + - uid: 18151 + components: + - type: Transform + pos: -3.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18308 + - uid: 18152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18306 + - uid: 18153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18307 + - uid: 18154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18306 + - uid: 18155 + components: + - type: Transform + pos: -15.5,-25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18304 + - uid: 18156 + components: + - type: Transform + pos: -17.5,-25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18304 + - uid: 18157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-59.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18303 + - uid: 18158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-63.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18301 + - uid: 18159 + components: + - type: Transform + pos: -35.5,-65.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18301 + - uid: 18160 + components: + - type: Transform + pos: -31.5,-65.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18300 + - uid: 18161 + components: + - type: Transform + pos: -30.5,-65.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18300 + - uid: 18162 + components: + - type: Transform + pos: -29.5,-65.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18300 + - uid: 18163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18296 + - uid: 18164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18296 + - uid: 18165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18296 + - uid: 18166 + components: + - type: Transform + pos: 33.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18297 + - uid: 18167 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18297 + - uid: 18168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18271 + - uid: 18169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18271 + - uid: 18170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18298 + - uid: 18171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18298 + - uid: 18172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18296 + - uid: 18173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18296 + - uid: 18174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18296 + - uid: 18175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18299 + - uid: 18176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18295 + - uid: 18177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,43.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18294 + - uid: 18178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,35.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18293 + - uid: 18179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,36.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18293 + - uid: 18180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18273 + - uid: 18181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,50.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18302 + - uid: 18182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,51.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18302 + - uid: 18183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,47.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18282 + - uid: 18184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,48.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18282 + - uid: 18185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,49.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18282 + - uid: 18186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,51.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18282 + - uid: 18187 + components: + - type: Transform + pos: 7.5,45.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18282 + - uid: 18188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,53.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18285 + - uid: 18189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,54.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18285 + - uid: 18190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,55.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18285 + - uid: 18191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18288 + - uid: 18192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18288 + - uid: 18193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18288 + - uid: 18194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18288 + - uid: 18195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18288 + - uid: 18196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18289 + - uid: 18197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18289 + - uid: 18198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18289 + - uid: 18199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18289 + - uid: 18200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18289 + - uid: 18201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18289 + - uid: 18202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18289 + - uid: 18203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18289 + - uid: 18204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18289 + - uid: 18205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-51.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18310 + - uid: 18206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-49.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18310 + - uid: 18207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-49.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18310 + - uid: 18208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-49.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18310 + - uid: 18209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18271 + - uid: 18210 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18305 + - uid: 18211 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18305 + - uid: 18212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18273 + - uid: 18213 + components: + - type: Transform + pos: 22.5,3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18268 + - uid: 18214 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18268 + - uid: 18215 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18269 +- proto: ShuttersRadiationOpen + entities: + - uid: 18216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-68.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18265 + - uid: 18217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-69.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18265 + - uid: 18218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-70.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18265 + - uid: 18219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-68.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18265 + - uid: 18220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-69.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18265 + - uid: 18221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-70.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18265 +- proto: ShuttersWindow + entities: + - uid: 18222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18245 + - uid: 18223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18245 + - uid: 18224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18245 + - uid: 18225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18245 + - uid: 18226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18245 + - uid: 18227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18245 + - uid: 18228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18245 +- proto: ShuttersWindowOpen + entities: + - uid: 18229 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18248 + - uid: 18230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-36.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18249 + - uid: 18231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18250 + - uid: 18232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18251 + - uid: 18233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-45.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18252 + - uid: 18234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-48.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18253 + - uid: 18235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18254 + - uid: 18236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,46.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18282 + - uid: 18237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,50.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18282 +- proto: SignalButton + entities: + - uid: 18238 + components: + - type: MetaData + name: Espaçar + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.502998,-33.73403 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1001: + - Pressed: Toggle + 1002: + - Pressed: Toggle + - uid: 18239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18117: + - Pressed: Toggle + 18116: + - Pressed: Toggle + - uid: 18240 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18118: + - Pressed: Toggle + 18119: + - Pressed: Toggle + - uid: 18241 + components: + - type: Transform + pos: -44.30047,-0.23135054 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 998: + - Pressed: Toggle + - uid: 18242 + components: + - type: Transform + pos: -44.824947,-0.23135054 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 999: + - Pressed: Toggle + - uid: 18243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18120: + - Pressed: Toggle + 18121: + - Pressed: Toggle + - uid: 18244 + components: + - type: Transform + pos: -40.389587,15.495882 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1000: + - Pressed: Toggle + - uid: 18245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.781517,-17.427288 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18228: + - Pressed: Toggle + 18227: + - Pressed: Toggle + 18226: + - Pressed: Toggle + 18225: + - Pressed: Toggle + 18224: + - Pressed: Toggle + 18223: + - Pressed: Toggle + 18222: + - Pressed: Toggle + - uid: 18246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18130: + - Pressed: Toggle + 18129: + - Pressed: Toggle + 18128: + - Pressed: Toggle + - uid: 18247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18130: + - Pressed: Toggle + 18129: + - Pressed: Toggle + 18128: + - Pressed: Toggle + - uid: 18248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18229: + - Pressed: Toggle + - uid: 18249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-35.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18230: + - Pressed: Toggle + - uid: 18250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-38.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18231: + - Pressed: Toggle + - uid: 18251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18232: + - Pressed: Toggle + - uid: 18252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-44.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18233: + - Pressed: Toggle + - uid: 18253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-47.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18234: + - Pressed: Toggle + - uid: 18254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-40.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18235: + - Pressed: Toggle + - uid: 18255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-45.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1007: + - Pressed: Toggle + 1006: + - Pressed: Toggle + 1005: + - Pressed: Toggle + - uid: 18256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-45.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1007: + - Pressed: Toggle + 1006: + - Pressed: Toggle + 1005: + - Pressed: Toggle + - uid: 18257 + components: + - type: MetaData + name: Entrada Sul + - type: Transform + rot: 3.141592653589793 rad + pos: -6.633511,34.39179 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1017: + - Pressed: Toggle + - uid: 18258 + components: + - type: MetaData + name: Entrada Norte + - type: Transform + rot: 3.141592653589793 rad + pos: -6.3164945,34.39179 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1018: + - Pressed: Toggle + 1019: + - Pressed: Toggle + - uid: 18259 + components: + - type: MetaData + name: Boltar Portas + - type: Transform + pos: -6.475003,34.690155 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 472: + - Pressed: DoorBolt + 473: + - Pressed: DoorBolt + - uid: 18260 + components: + - type: Transform + pos: -17.5,41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18138: + - Pressed: Toggle + 18137: + - Pressed: Toggle + 18139: + - Pressed: Toggle + - uid: 18261 + components: + - type: MetaData + name: Fechar entrada + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.4996314,-18.34956 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1024: + - Pressed: Toggle + 1025: + - Pressed: Toggle + 1026: + - Pressed: Toggle + - uid: 18262 + components: + - type: MetaData + name: Fechar med + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.4996314,-18.62928 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1027: + - Pressed: Toggle + 1028: + - Pressed: Toggle + 1029: + - Pressed: Toggle + - uid: 18263 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18147: + - Pressed: Toggle + 18146: + - Pressed: Toggle + - uid: 18264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-42.5 + parent: 2 + - uid: 18265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-67.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18219: + - Pressed: Toggle + 18220: + - Pressed: Toggle + 18221: + - Pressed: Toggle + 18216: + - Pressed: Toggle + 18217: + - Pressed: Toggle + 18218: + - Pressed: Toggle + - uid: 18266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-65.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1015: + - Pressed: Toggle + - uid: 18267 + components: + - type: MetaData + name: Porta + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.493671,-33.286476 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1016: + - Pressed: Toggle +- proto: SignalButtonDirectional + entities: + - uid: 18268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18143: + - Pressed: Toggle + 18213: + - Pressed: Toggle + 18214: + - Pressed: Toggle + - uid: 18269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18215: + - Pressed: Toggle + 18144: + - Pressed: Toggle + - uid: 18270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-61.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1012: + - Pressed: Toggle + 1011: + - Pressed: Toggle + 1010: + - Pressed: Toggle + - uid: 18271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18169: + - Pressed: Toggle + 18209: + - Pressed: Toggle + 18168: + - Pressed: Toggle + - uid: 18272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-52.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18142: + - Pressed: Toggle + 18140: + - Pressed: Toggle + 18141: + - Pressed: Toggle + - uid: 18273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18212: + - Pressed: Toggle + 18180: + - Pressed: Toggle + - uid: 18274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-33.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18126: + - Pressed: Toggle + 18127: + - Pressed: Toggle + - uid: 18275 + components: + - type: Transform + pos: -39.5,-34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18126: + - Pressed: Toggle + 18127: + - Pressed: Toggle + - uid: 18276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18122: + - Pressed: Toggle + 18123: + - Pressed: Toggle + - uid: 18277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18122: + - Pressed: Toggle + 18123: + - Pressed: Toggle + - uid: 18278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18124: + - Pressed: Toggle + 18125: + - Pressed: Toggle + - uid: 18279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-24.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1003: + - Pressed: Toggle + 1004: + - Pressed: Toggle + - uid: 18280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.4963,38.694504 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 150: + - Pressed: DoorBolt + - uid: 18281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.502518,35.30276 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 149: + - Pressed: DoorBolt + - uid: 18282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,50.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18186: + - Pressed: Toggle + 18185: + - Pressed: Toggle + 18184: + - Pressed: Toggle + 18183: + - Pressed: Toggle + 18187: + - Pressed: Toggle + 18237: + - Pressed: Toggle + 18236: + - Pressed: Toggle + - uid: 18283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,57.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1021: + - Pressed: Toggle + 1020: + - Pressed: Toggle + - uid: 18284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18132: + - Pressed: Toggle + 18131: + - Pressed: Toggle + 18133: + - Pressed: Toggle + 18134: + - Pressed: Toggle + 18135: + - Pressed: Toggle + 18136: + - Pressed: Toggle + - uid: 18285 + components: + - type: Transform + pos: 10.5,56.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18190: + - Pressed: Toggle + 18189: + - Pressed: Toggle + 18188: + - Pressed: Toggle + - uid: 18286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,69.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1022: + - Pressed: Toggle + - uid: 18287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,69.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1023: + - Pressed: Toggle + - uid: 18288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.502407,-21.314362 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18191: + - Pressed: Toggle + 18192: + - Pressed: Toggle + 18193: + - Pressed: Toggle + 18194: + - Pressed: Toggle + 18195: + - Pressed: Toggle + - uid: 18289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-31.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18197: + - Pressed: Toggle + 18196: + - Pressed: Toggle + 18199: + - Pressed: Toggle + 18200: + - Pressed: Toggle + 18201: + - Pressed: Toggle + 18202: + - Pressed: Toggle + 18203: + - Pressed: Toggle + 18198: + - Pressed: Toggle + 18204: + - Pressed: Toggle + - uid: 18290 + components: + - type: Transform + pos: 10.5,-61.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1012: + - Pressed: Toggle + 1011: + - Pressed: Toggle + 1010: + - Pressed: Toggle + - uid: 18291 + components: + - type: MetaData + name: SuperMatter lockdown + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-54.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1032: + - Pressed: Toggle + 1031: + - Pressed: Toggle + 1030: + - Pressed: Toggle + 22610: + - Pressed: Toggle + 22641: + - Pressed: Toggle + 22611: + - Pressed: Toggle + 22640: + - Pressed: Toggle + 154: + - Pressed: Toggle + 22613: + - Pressed: Toggle + 21926: + - Pressed: Toggle + 21933: + - Pressed: Toggle + 21934: + - Pressed: Toggle + 414: + - Pressed: Toggle + 21935: + - Pressed: Toggle + 22845: + - Pressed: Toggle + 21936: + - Pressed: Toggle + 288: + - Pressed: Toggle + 272: + - Pressed: Toggle + 22486: + - Pressed: Toggle + 22464: + - Pressed: Toggle + 189: + - Pressed: Toggle + 22488: + - Pressed: Toggle + 22513: + - Pressed: Toggle + 21918: + - Pressed: Toggle + 21925: + - Pressed: Toggle + - uid: 18292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-52.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18142: + - Pressed: Toggle + 18140: + - Pressed: Toggle + 18141: + - Pressed: Toggle + - uid: 18293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18178: + - Pressed: Toggle + 18179: + - Pressed: Toggle + - uid: 18294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18177: + - Pressed: Toggle + - uid: 18295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,40.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18145: + - Pressed: Toggle + 18176: + - Pressed: Toggle + - uid: 18296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,0.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18165: + - Pressed: Toggle + 18164: + - Pressed: Toggle + 18163: + - Pressed: Toggle + 18174: + - Pressed: Toggle + 18173: + - Pressed: Toggle + 18172: + - Pressed: Toggle + - uid: 18297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,12.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18167: + - Pressed: Toggle + 18166: + - Pressed: Toggle + - uid: 18298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,12.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18171: + - Pressed: Toggle + 18170: + - Pressed: Toggle + - uid: 18299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-2.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18175: + - Pressed: Toggle + - uid: 18300 + components: + - type: Transform + pos: -28.5,-61.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18162: + - Pressed: Toggle + 18161: + - Pressed: Toggle + 18160: + - Pressed: Toggle + - uid: 18301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-64.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18159: + - Pressed: Toggle + 18158: + - Pressed: Toggle + - uid: 18302 + components: + - type: Transform + pos: -11.5,52.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18182: + - Pressed: Toggle + 18181: + - Pressed: Toggle + - uid: 18303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-60.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18157: + - Pressed: Toggle + - uid: 18304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-24.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18156: + - Pressed: Toggle + 18155: + - Pressed: Toggle + - uid: 18305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-21.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18211: + - Pressed: Toggle + 18210: + - Pressed: Toggle + - uid: 18306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18154: + - Pressed: Toggle + 18152: + - Pressed: Toggle + - uid: 18307 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18153: + - Pressed: Toggle + - uid: 18308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18151: + - Pressed: Toggle + - uid: 18309 + components: + - type: Transform + pos: -13.5,17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18148: + - Pressed: Toggle + 18149: + - Pressed: Toggle + 18150: + - Pressed: Toggle + - uid: 18310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-53.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18205: + - Pressed: Toggle + 18208: + - Pressed: Toggle + 18207: + - Pressed: Toggle + 18206: + - Pressed: Toggle + - uid: 18311 + components: + - type: MetaData + name: Abrir vault + - type: Transform + pos: -17.5,37.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18138: + - Pressed: Toggle + 18137: + - Pressed: Toggle + 18139: + - Pressed: Toggle +- proto: SignalSwitch + entities: + - uid: 18312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.554577,8.128508 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16543: + - Status: Toggle + 16542: + - Status: Toggle + - uid: 18313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.535362,6.516772 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16541: + - Status: Toggle + - uid: 18314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-2.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16536: + - Status: Toggle + 16537: + - Status: Toggle + - uid: 18315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,12.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16523: + - Status: Toggle + - uid: 18316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.523469,13.046127 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16525: + - Status: Toggle + 16524: + - Status: Toggle + 16526: + - Status: Toggle + 16529: + - Status: Toggle + 16528: + - Status: Toggle + 16527: + - Status: Toggle + - uid: 18317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,12.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16530: + - Status: Toggle + - uid: 18318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16531: + - Status: Toggle + 16522: + - Status: Toggle + 16533: + - Status: Toggle + 16532: + - Status: Toggle + - uid: 18319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,14.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16534: + - Status: Toggle + 16535: + - Status: Toggle + - uid: 18320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16947: + - Status: Toggle + 16948: + - Status: Toggle + - uid: 18321 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16556: + - Status: Toggle + 16555: + - Status: Toggle + 16554: + - Status: Toggle + 16553: + - Status: Toggle + - uid: 18322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16544: + - Status: Toggle + 16546: + - Status: Toggle + 16545: + - Status: Toggle + - uid: 18323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16548: + - Status: Toggle + 16549: + - Status: Toggle + 16552: + - Status: Toggle + 16551: + - Status: Toggle + 16550: + - Status: Toggle + - uid: 18324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16558: + - Status: Toggle + 16557: + - Status: Toggle + - uid: 18325 + components: + - type: Transform + pos: -40.63201,15.495882 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16563: + - Status: Toggle + - uid: 18326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16564: + - Status: Toggle + - uid: 18327 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16565: + - Status: Toggle + 16934: + - Status: Toggle + 16935: + - Status: Toggle + - uid: 18328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16573: + - Status: Toggle + - uid: 18329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16575: + - Status: Toggle + 16577: + - Status: Toggle + 16574: + - Status: Toggle + - uid: 18330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16586: + - Status: Toggle + 16587: + - Status: Toggle + 16584: + - Status: Toggle + 16582: + - Status: Toggle + 16585: + - Status: Toggle + 16583: + - Status: Toggle + - uid: 18331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16589: + - Status: Toggle + 16588: + - Status: Toggle + 1016: + - Status: Toggle + - uid: 18332 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16590: + - Status: Toggle + - uid: 18333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16581: + - Status: Toggle + - uid: 18334 + components: + - type: Transform + pos: -22.5,-29.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16592: + - Status: Toggle + 16591: + - Status: Toggle + - uid: 18335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16598: + - Status: Toggle + 16597: + - Status: Toggle + 16596: + - Status: Toggle + 16595: + - Status: Toggle + 16954: + - Status: Toggle + 16955: + - Status: Toggle + 16956: + - Status: Toggle + 16957: + - Status: Toggle + 16958: + - Status: Toggle + 16959: + - Status: Toggle + 16960: + - Status: Toggle + 16961: + - Status: Toggle + 16601: + - Status: Toggle + 16600: + - Status: Toggle + 16599: + - Status: Toggle + - uid: 18336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16596: + - Status: Toggle + 16595: + - Status: Toggle + - uid: 18337 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16620: + - Status: Toggle + 16975: + - Status: Toggle + - uid: 18338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16625: + - Status: Toggle + - uid: 18339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16625: + - Status: Toggle + - uid: 18340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-29.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16580: + - Status: Toggle + 16602: + - Status: Toggle + 16603: + - Status: Toggle + 16604: + - Status: Toggle + - uid: 18341 + components: + - type: Transform + pos: -27.5,-28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16570: + - Status: Toggle + 16579: + - Status: Toggle + 16571: + - Status: Toggle + 16572: + - Status: Toggle + - uid: 18342 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16508: + - Status: Toggle + 16842: + - Status: Toggle + - uid: 18343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-40.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16578: + - Status: Toggle + - uid: 18344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16940: + - Status: Toggle + - uid: 18345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-33.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16613: + - Status: Toggle + 16616: + - Status: Toggle + 16618: + - Status: Toggle + 16614: + - Status: Toggle + 16619: + - Status: Toggle + 16612: + - Status: Toggle +- proto: SignalSwitchDirectional + entities: + - uid: 18346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17015: + - Status: Toggle + 17018: + - Status: Toggle + 17017: + - Status: Toggle + 8813: + - Status: Toggle + 10913: + - Status: Toggle + - uid: 18347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-2.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16938: + - Status: Toggle + - uid: 18348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.4998345,-24.30895 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16593: + - Status: Toggle + 16594: + - Status: Toggle + - uid: 18349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-39.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16607: + - Status: Toggle + 16605: + - Status: Toggle + 16606: + - Status: Toggle + - uid: 18350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-49.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16610: + - Status: Toggle + 16611: + - Status: Toggle + 16609: + - Status: Toggle + 16962: + - Status: Toggle + 16608: + - Status: Toggle + 16963: + - Status: Toggle + - uid: 18351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-57.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16965: + - Status: Toggle + - uid: 18352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-62.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16966: + - Status: Toggle + - uid: 18353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-59.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16968: + - Status: Toggle + 16967: + - Status: Toggle + 16969: + - Status: Toggle + 16970: + - Status: Toggle + 16971: + - Status: Toggle + - uid: 18354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16632: + - Status: Toggle + - uid: 18355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16631: + - Status: Toggle + 16630: + - Status: Toggle + 16629: + - Status: Toggle + 16628: + - Status: Toggle + - uid: 18356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16626: + - Status: Toggle + 16627: + - Status: Toggle + - uid: 18357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16626: + - Status: Toggle + 16627: + - Status: Toggle + - uid: 18358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,12.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16634: + - Status: Toggle + 16635: + - Status: Toggle + 16633: + - Status: Toggle + - uid: 18359 + components: + - type: Transform + pos: 27.5,12.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16636: + - Status: Toggle + 16637: + - Status: Toggle + 16638: + - Status: Toggle + 16639: + - Status: Toggle + 16640: + - Status: Toggle + 16641: + - Status: Toggle + 16667: + - Status: Toggle + 16666: + - Status: Toggle + - uid: 18360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16643: + - Status: Toggle + 16644: + - Status: Toggle + 16642: + - Status: Toggle + - uid: 18361 + components: + - type: Transform + pos: 40.5,20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16645: + - Status: Toggle + - uid: 18362 + components: + - type: Transform + pos: 41.5,16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16646: + - Status: Toggle + 16647: + - Status: Toggle + - uid: 18363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,23.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16980: + - Status: Toggle + 16509: + - Status: Toggle + - uid: 18364 + components: + - type: Transform + pos: 34.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16648: + - Status: Toggle + - uid: 18365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,24.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16649: + - Status: Toggle + - uid: 18366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,35.5 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 16651: + - Status: Toggle + 16650: + - Status: Toggle + 16652: + - Status: Toggle + 16653: + - Status: Toggle + - uid: 18367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,37.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16655: + - Status: Toggle + 16656: + - Status: Toggle + - uid: 18368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16654: + - Status: Toggle + - uid: 18369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,41.5 + parent: 2 + - uid: 18370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16983: + - Status: Toggle + 16984: + - Status: Toggle + - uid: 18371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,38.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16986: + - Status: Toggle + - uid: 18372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,35.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16985: + - Status: Toggle + - uid: 18373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16662: + - Status: Toggle + 16661: + - Status: Toggle + 16840: + - Status: Toggle + - uid: 18374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16657: + - Status: Toggle + 16660: + - Status: Toggle + 16659: + - Status: Toggle + 16658: + - Status: Toggle + - uid: 18375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16665: + - Status: Toggle + 16664: + - Status: Toggle + 16663: + - Status: Toggle + - uid: 18376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,40.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16899: + - Status: Toggle + 16900: + - Status: Toggle + 16898: + - Status: Toggle + 16897: + - Status: Toggle + - uid: 18377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16679: + - Status: Toggle + 16891: + - Status: Toggle + - uid: 18378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16683: + - Status: Toggle + 16684: + - Status: Toggle + - uid: 18379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16995: + - Status: Toggle + - uid: 18380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,21.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16687: + - Status: Toggle + - uid: 18381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16996: + - Status: Toggle + - uid: 18382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16711: + - Status: Toggle + 16712: + - Status: Toggle + 16714: + - Status: Toggle + 16713: + - Status: Toggle + - uid: 18383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,31.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16693: + - Status: Toggle + 16694: + - Status: Toggle + 16695: + - Status: Toggle + - uid: 18384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,30.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16696: + - Status: Toggle + - uid: 18385 + components: + - type: Transform + pos: -16.5,41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16697: + - Status: Toggle + 16698: + - Status: Toggle + 16699: + - Status: Toggle + - uid: 18386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,31.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16700: + - Status: Toggle + - uid: 18387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,37.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16701: + - Status: Toggle + 16702: + - Status: Toggle + - uid: 18388 + components: + - type: Transform + pos: -24.5,42.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16704: + - Status: Toggle + 16703: + - Status: Toggle + - uid: 18389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,42.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16706: + - Status: Toggle + 16705: + - Status: Toggle + - uid: 18390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16708: + - Status: Toggle + 16707: + - Status: Toggle + 16709: + - Status: Toggle + - uid: 18391 + components: + - type: Transform + pos: -32.5,34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17004: + - Status: Toggle + - uid: 18392 + components: + - type: Transform + pos: -32.5,37.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17003: + - Status: Toggle + - uid: 18393 + components: + - type: Transform + pos: -32.5,40.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17002: + - Status: Toggle + - uid: 18394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,31.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16716: + - Status: Toggle + 16715: + - Status: Toggle + 16719: + - Status: Toggle + 16717: + - Status: Toggle + 16718: + - Status: Toggle + - uid: 18395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,23.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16725: + - Status: Toggle + 16724: + - Status: Toggle + 16721: + - Status: Toggle + 16723: + - Status: Toggle + 16722: + - Status: Toggle + - uid: 18396 + components: + - type: Transform + pos: -42.5,27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16720: + - Status: Toggle + - uid: 18397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,30.5 + parent: 2 + - uid: 18398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,33.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16734: + - Status: Toggle + 16736: + - Status: Toggle + 16735: + - Status: Toggle + 16737: + - Status: Toggle + - uid: 18399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,50.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16738: + - Status: Toggle + 17008: + - Status: Toggle + - uid: 18400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,56.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16740: + - Status: Toggle + 16739: + - Status: Toggle + - uid: 18401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,49.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16741: + - Status: Toggle + 16742: + - Status: Toggle + 16743: + - Status: Toggle + - uid: 18402 + components: + - type: Transform + pos: 7.5,57.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16745: + - Status: Toggle + 16744: + - Status: Toggle + - uid: 18403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,57.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16757: + - Status: Toggle + 16758: + - Status: Toggle + 16756: + - Status: Toggle + 16759: + - Status: Toggle + - uid: 18404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17013: + - Status: Toggle + 17014: + - Status: Toggle + 16778: + - Status: Toggle + - uid: 18405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16779: + - Status: Toggle + 16780: + - Status: Toggle + - uid: 18406 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16782: + - Status: Toggle + 16781: + - Status: Toggle + - uid: 18407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16785: + - Status: Toggle + 16784: + - Status: Toggle + 16783: + - Status: Toggle + - uid: 18408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16786: + - Status: Toggle + 16787: + - Status: Toggle + 16788: + - Status: Toggle + 16789: + - Status: Toggle + - uid: 18409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16791: + - Status: Toggle + - uid: 18410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-21.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16792: + - Status: Toggle + 16790: + - Status: Toggle + - uid: 18411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16795: + - Status: Toggle + 16793: + - Status: Toggle + 16797: + - Status: Toggle + 16798: + - Status: Toggle + 16794: + - Status: Toggle + 16796: + - Status: Toggle + - uid: 18412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16794: + - Status: Toggle + 16793: + - Status: Toggle + 16795: + - Status: Toggle + 16797: + - Status: Toggle + 16798: + - Status: Toggle + 16796: + - Status: Toggle + - uid: 18413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-33.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16800: + - Status: Toggle + 16799: + - Status: Toggle + 16801: + - Status: Toggle + 16802: + - Status: Toggle + - uid: 18414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-33.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16804: + - Status: Toggle + 16805: + - Status: Toggle + - uid: 18415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16806: + - Status: Toggle + - uid: 18416 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16807: + - Status: Toggle + - uid: 18417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16811: + - Status: Toggle + 16809: + - Status: Toggle + 16810: + - Status: Toggle + 16808: + - Status: Toggle + - uid: 18418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16818: + - Status: Toggle + 16815: + - Status: Toggle + 16817: + - Status: Toggle + 16816: + - Status: Toggle + 16814: + - Status: Toggle + 16813: + - Status: Toggle + 16812: + - Status: Toggle + 16841: + - Status: Toggle + - uid: 18419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16820: + - Status: Toggle + 16819: + - Status: Toggle + 16822: + - Status: Toggle + 16821: + - Status: Toggle + 16823: + - Status: Toggle + 16824: + - Status: Toggle + - uid: 18420 + components: + - type: Transform + pos: 11.5,-39.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16872: + - Status: Toggle + 16873: + - Status: Toggle + 16876: + - Status: Toggle + 16871: + - Status: Toggle + 16875: + - Status: Toggle + 16886: + - Status: Toggle + 16929: + - Status: Toggle + 16930: + - Status: Toggle + 16926: + - Status: Toggle + 16928: + - Status: Toggle + 16927: + - Status: Toggle + 16925: + - Status: Toggle + 16874: + - Status: Toggle + - uid: 18421 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16828: + - Status: Toggle + - uid: 18422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-51.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16835: + - Status: Toggle + 16836: + - Status: Toggle + 16833: + - Status: Toggle + 16832: + - Status: Toggle + 16831: + - Status: Toggle + - uid: 18423 + components: + - type: Transform + pos: 10.5,-49.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16838: + - Status: Toggle + 16837: + - Status: Toggle + - uid: 18424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-51.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16834: + - Status: Toggle + - uid: 18425 + components: + - type: Transform + pos: 34.5,-47.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16887: + - Status: Toggle + - uid: 18426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-53.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16844: + - Status: Toggle + 16845: + - Status: Toggle + - uid: 18427 + components: + - type: Transform + pos: -1.5,-61.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16864: + - Status: Toggle + 16862: + - Status: Toggle + 16865: + - Status: Toggle + 16866: + - Status: Toggle + 16867: + - Status: Toggle + 16870: + - Status: Toggle + 16869: + - Status: Toggle + 16863: + - Status: Toggle + 16868: + - Status: Toggle + 17021: + - Status: Toggle + 17022: + - Status: Toggle + 17024: + - Status: Toggle + 17023: + - Status: Toggle + - uid: 18428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-61.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16847: + - Status: Toggle + 16849: + - Status: Toggle + 16846: + - Status: Toggle + 16848: + - Status: Toggle + 16850: + - Status: Toggle + - uid: 18429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-60.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16856: + - Status: Toggle + 16855: + - Status: Toggle + 16854: + - Status: Toggle + 16853: + - Status: Toggle + 16852: + - Status: Toggle + 16851: + - Status: Toggle + - uid: 18430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-66.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16857: + - Status: Toggle + 16858: + - Status: Toggle + 16859: + - Status: Toggle + 16861: + - Status: Toggle + 16860: + - Status: Toggle + - uid: 18431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-56.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16877: + - Status: Toggle + 16923: + - Status: Toggle + 16924: + - Status: Toggle + 16881: + - Status: Toggle + 16883: + - Status: Toggle + 16884: + - Status: Toggle + 16882: + - Status: Toggle + 16879: + - Status: Toggle + 16885: + - Status: Toggle + 16878: + - Status: Toggle + 16880: + - Status: Toggle + - uid: 18432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16944: + - Status: Toggle + - uid: 18433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-47.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16507: + - Status: Toggle + 16888: + - Status: Toggle + 17041: + - Status: Toggle + - uid: 18434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16890: + - Status: Toggle + 16889: + - Status: Toggle +- proto: SignalTrigger + entities: + - uid: 18435 + components: + - type: Transform + pos: -41.34336,-33.515427 + parent: 2 + - uid: 18436 + components: + - type: Transform + pos: -41.34336,-33.515427 + parent: 2 +- proto: SignAnomaly2 + entities: + - uid: 18437 + components: + - type: Transform + pos: -44.5,-37.5 + parent: 2 +- proto: SignAtmos + entities: + - uid: 18438 + components: + - type: Transform + pos: 9.5,-39.5 + parent: 2 + - uid: 18439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-43.5 + parent: 2 +- proto: SignBar + entities: + - uid: 18440 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 18441 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 +- proto: SignBio + entities: + - uid: 18442 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - uid: 18443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-26.5 + parent: 2 + - uid: 18444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-26.5 + parent: 2 +- proto: SignCargo + entities: + - uid: 18445 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 18446 + components: + - type: Transform + pos: -31.5,3.5 + parent: 2 +- proto: SignChapel + entities: + - uid: 18447 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 +- proto: SignChemistry1 + entities: + - uid: 18448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-35.5 + parent: 2 + - uid: 18449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-35.5 + parent: 2 +- proto: SignCloning + entities: + - uid: 18450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-26.5 + parent: 2 + - uid: 18451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-26.5 + parent: 2 +- proto: SignCryogenicsMed + entities: + - uid: 18452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,22.5 + parent: 2 +- proto: SignDoors + entities: + - uid: 18453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-9.5 + parent: 2 +- proto: SignEngineering + entities: + - uid: 18454 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 2 + - uid: 18455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-38.5 + parent: 2 + - uid: 18456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-43.5 + parent: 2 +- proto: SignEscapePods + entities: + - uid: 18457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-27.5 + parent: 2 + - uid: 18458 + components: + - type: Transform + pos: -35.5,-35.5 + parent: 2 + - uid: 18459 + components: + - type: Transform + pos: 31.5,31.5 + parent: 2 + - uid: 18460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,40.5 + parent: 2 + - uid: 18461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,37.5 + parent: 2 +- proto: SignFire + entities: + - uid: 18462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-53.5 + parent: 2 + - uid: 18463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-62.5 + parent: 2 +- proto: SignGravity + entities: + - uid: 18464 + components: + - type: Transform + pos: 3.5,31.5 + parent: 2 +- proto: SignHead + entities: + - uid: 18465 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 18466 + components: + - type: Transform + pos: 3.5,54.5 + parent: 2 + - uid: 18467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,54.5 + parent: 2 + - uid: 18468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,51.5 + parent: 2 + - uid: 18469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-22.5 + parent: 2 +- proto: SignHydro2 + entities: + - uid: 18470 + components: + - type: Transform + pos: 32.5,3.5 + parent: 2 + - uid: 18471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,12.5 + parent: 2 + - uid: 18472 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 +- proto: SignJanitor + entities: + - uid: 18473 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 +- proto: SignKiddiePlaque + entities: + - uid: 18474 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 18475 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 18476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-13.5 + parent: 2 + - uid: 18477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-13.5 + parent: 2 + - uid: 18478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,37.5 + parent: 2 + - uid: 18479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,33.5 + parent: 2 + - uid: 18480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 2 + - uid: 18481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-27.5 + parent: 2 +- proto: SignNosmoking + entities: + - uid: 18482 + components: + - type: Transform + pos: -19.5,-25.5 + parent: 2 + - uid: 18483 + components: + - type: Transform + pos: -24.5,-67.5 + parent: 2 + - uid: 18484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,12.5 + parent: 2 + - uid: 18485 + components: + - type: Transform + pos: 18.5,34.5 + parent: 2 + - uid: 18486 + components: + - type: Transform + pos: 15.5,-39.5 + parent: 2 + - uid: 18487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-54.5 + parent: 2 + - uid: 18488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-61.5 + parent: 2 + - uid: 18489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-61.5 + parent: 2 +- proto: SignRadiationMed + entities: + - uid: 18490 + components: + - type: Transform + pos: -39.5,15.5 + parent: 2 + - uid: 18491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-59.5 + parent: 2 + - uid: 18492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-54.5 + parent: 2 + - uid: 18493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-57.5 + parent: 2 + - uid: 18494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-57.5 + parent: 2 +- proto: SignRobo + entities: + - uid: 18495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-19.5 + parent: 2 +- proto: SignScience + entities: + - uid: 18496 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 2 + - uid: 18497 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 2 + - uid: 18498 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 2 + - uid: 18499 + components: + - type: Transform + pos: -31.5,-25.5 + parent: 2 + - uid: 18500 + components: + - type: Transform + pos: -27.5,-25.5 + parent: 2 +- proto: SignSecurearea + entities: + - uid: 18501 + components: + - type: Transform + pos: 8.5,-61.5 + parent: 2 + - uid: 18502 + components: + - type: Transform + pos: 14.5,-61.5 + parent: 2 + - uid: 18503 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 18504 + components: + - type: Transform + pos: -32.5,13.5 + parent: 2 + - uid: 18505 + components: + - type: Transform + pos: -34.5,18.5 + parent: 2 + - uid: 18506 + components: + - type: Transform + pos: -80.5,-55.5 + parent: 2 + - uid: 18507 + components: + - type: Transform + pos: -80.5,-49.5 + parent: 2 + - uid: 18508 + components: + - type: Transform + pos: -77.5,-54.5 + parent: 2 + - uid: 18509 + components: + - type: Transform + pos: -77.5,-50.5 + parent: 2 + - uid: 18510 + components: + - type: Transform + pos: -83.5,-50.5 + parent: 2 + - uid: 18511 + components: + - type: Transform + pos: -83.5,-54.5 + parent: 2 + - uid: 18512 + components: + - type: Transform + pos: -33.5,34.5 + parent: 2 + - uid: 18513 + components: + - type: Transform + pos: -33.5,37.5 + parent: 2 + - uid: 18514 + components: + - type: Transform + pos: -33.5,40.5 + parent: 2 + - uid: 18515 + components: + - type: Transform + pos: -9.5,46.5 + parent: 2 + - uid: 18516 + components: + - type: Transform + pos: -3.5,41.5 + parent: 2 + - uid: 18517 + components: + - type: Transform + pos: -1.5,43.5 + parent: 2 + - uid: 18518 + components: + - type: Transform + pos: 11.5,51.5 + parent: 2 + - uid: 18519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,76.5 + parent: 2 + - uid: 18520 + components: + - type: Transform + pos: 6.5,-61.5 + parent: 2 + - uid: 18521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-65.5 + parent: 2 + - uid: 18522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-65.5 + parent: 2 + - uid: 18523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-71.5 + parent: 2 + - uid: 18524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-71.5 + parent: 2 +- proto: SignSecurity + entities: + - uid: 18525 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - uid: 18526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,20.5 + parent: 2 + - uid: 18527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,18.5 + parent: 2 + - uid: 18528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,36.5 + parent: 2 + - uid: 18529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,39.5 + parent: 2 +- proto: SignShock + entities: + - uid: 18530 + components: + - type: Transform + pos: -34.5,13.5 + parent: 2 + - uid: 18531 + components: + - type: Transform + pos: -32.5,18.5 + parent: 2 + - uid: 18532 + components: + - type: Transform + pos: -32.5,-54.5 + parent: 2 + - uid: 18533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,35.5 + parent: 2 + - uid: 18534 + components: + - type: Transform + pos: 5.5,45.5 + parent: 2 +- proto: SignSmoking + entities: + - uid: 18535 + components: + - type: Transform + pos: -22.5,-65.5 + parent: 2 + - uid: 18536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-21.5 + parent: 2 + - uid: 18537 + components: + - type: Transform + pos: 0.5,-77.5 + parent: 2 + - uid: 18538 + components: + - type: Transform + pos: 37.5,-41.5 + parent: 2 +- proto: SignSomethingOld + entities: + - uid: 18539 + components: + - type: Transform + pos: 37.5,-39.5 + parent: 2 +- proto: SignSomethingOld2 + entities: + - uid: 18540 + components: + - type: Transform + pos: 35.5,-35.5 + parent: 2 +- proto: SignSpace + entities: + - uid: 18541 + components: + - type: Transform + pos: -39.5,-15.5 + parent: 2 + - uid: 18542 + components: + - type: Transform + pos: -36.5,-56.5 + parent: 2 + - uid: 18543 + components: + - type: Transform + pos: 18.5,46.5 + parent: 2 + - uid: 18544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-13.5 + parent: 2 + - uid: 18545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-5.5 + parent: 2 + - uid: 18546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-60.5 + parent: 2 +- proto: SignTelecomms + entities: + - uid: 18547 + components: + - type: Transform + pos: 3.5,36.5 + parent: 2 + - uid: 18548 + components: + - type: Transform + pos: -25.5,-32.5 + parent: 2 +- proto: SignVirology + entities: + - uid: 18549 + components: + - type: Transform + pos: 37.5,-32.5 + parent: 2 + - uid: 18550 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 2 +- proto: SinkWide + entities: + - uid: 18552 + components: + - type: Transform + pos: 19.5,14.5 + parent: 2 + - uid: 18553 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 18554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-13.5 + parent: 2 + - uid: 18555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-13.5 + parent: 2 + - uid: 18556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-27.5 + parent: 2 + - uid: 18557 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 + - uid: 18558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-49.5 + parent: 2 + - uid: 18559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-35.5 + parent: 2 + - uid: 18560 + components: + - type: Transform + pos: 20.5,18.5 + parent: 2 + - uid: 18561 + components: + - type: Transform + pos: 36.5,24.5 + parent: 2 + - uid: 18562 + components: + - type: Transform + pos: 37.5,24.5 + parent: 2 + - uid: 18563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,21.5 + parent: 2 + - uid: 18564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,22.5 + parent: 2 + - uid: 18565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,38.5 + parent: 2 + - uid: 18566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,32.5 + parent: 2 + - uid: 18567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,35.5 + parent: 2 + - uid: 18568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,38.5 + parent: 2 + - uid: 18569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,36.5 + parent: 2 + - uid: 18570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,29.5 + parent: 2 + - uid: 18571 + components: + - type: Transform + pos: -10.5,52.5 + parent: 2 + - uid: 18572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-15.5 + parent: 2 + - uid: 18573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-28.5 + parent: 2 + - uid: 18574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-20.5 + parent: 2 + - uid: 18575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-19.5 + parent: 2 + - uid: 18576 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 2 + - uid: 18577 + components: + - type: Transform + pos: 21.5,-50.5 + parent: 2 + - uid: 18578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 2 +- proto: SmallLight + entities: + - uid: 18579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-69.5 + parent: 2 + - uid: 18580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-66.5 + parent: 2 +- proto: SmartFridge + entities: + - uid: 9916 + components: + - type: Transform + pos: -34.5,-25.5 + parent: 2 + - uid: 12885 + components: + - type: Transform + pos: -32.5,-23.5 + parent: 2 + - uid: 18582 + components: + - type: Transform + pos: -20.5,-19.5 + parent: 2 + - uid: 18583 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 2 + - uid: 18584 + components: + - type: Transform + pos: -25.5,-61.5 + parent: 2 + - uid: 18585 + components: + - type: Transform + pos: 27.5,16.5 + parent: 2 + - uid: 18586 + components: + - type: Transform + pos: 34.5,20.5 + parent: 2 + - uid: 18587 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 2 + - uid: 18588 + components: + - type: Transform + pos: 42.5,-27.5 + parent: 2 + - uid: 18589 + components: + - type: Transform + pos: 42.5,-30.5 + parent: 2 + - uid: 18590 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 2 + - uid: 18591 + components: + - type: Transform + pos: 5.5,-53.5 + parent: 2 + - uid: 18592 + components: + - type: Transform + pos: 47.5,-38.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 18593 + components: + - type: Transform + pos: 35.5,-46.5 + parent: 2 + - uid: 18594 + components: + - type: MetaData + name: SMES Solares Sudoeste + - type: Transform + pos: -35.5,-56.5 + parent: 2 + - uid: 18595 + components: + - type: MetaData + name: SMES Solares Nordeste + - type: Transform + pos: 45.5,24.5 + parent: 2 + - uid: 18596 + components: + - type: MetaData + name: SMES Gravidade + - type: Transform + pos: 4.5,32.5 + parent: 2 + - uid: 18597 + components: + - type: MetaData + name: SMES da I.A. + - type: Transform + pos: -3.5,77.5 + parent: 2 + - uid: 18598 + components: + - type: MetaData + name: SMES Telecomunicações + - type: Transform + pos: 8.5,34.5 + parent: 2 + - uid: 18599 + components: + - type: MetaData + name: SMES Banco + - type: Transform + pos: -19.5,-55.5 + parent: 2 + - uid: 18600 + components: + - type: MetaData + name: SMES Banco + - type: Transform + pos: -18.5,-55.5 + parent: 2 + - uid: 18601 + components: + - type: MetaData + name: SMES Banco + - type: Transform + pos: -17.5,-55.5 + parent: 2 + - uid: 18602 + components: + - type: MetaData + name: SMES Banco + - type: Transform + pos: -20.5,-58.5 + parent: 2 + - uid: 18603 + components: + - type: MetaData + name: SMES Banco + - type: Transform + pos: -20.5,-57.5 + parent: 2 + - uid: 18604 + components: + - type: MetaData + name: SMES Banco + - type: Transform + pos: -20.5,-56.5 + parent: 2 +- proto: SMESMachineCircuitboard + entities: + - uid: 18605 + components: + - type: Transform + pos: -2.410386,-37.406345 + parent: 2 +- proto: Soap + entities: + - uid: 18606 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - uid: 18607 + components: + - type: Transform + pos: 14.411409,27.48134 + parent: 2 +- proto: SoapNT + entities: + - uid: 18608 + components: + - type: Transform + pos: 40.506535,21.44361 + parent: 2 +- proto: soda_dispenser + entities: + - uid: 18609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-62.5 + parent: 2 + - uid: 18610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,14.5 + parent: 2 +- proto: SolarAssembly + entities: + - uid: 18611 + components: + - type: Transform + pos: 11.5,-70.5 + parent: 2 + - uid: 18612 + components: + - type: Transform + pos: 12.5,-70.5 + parent: 2 + - uid: 18613 + components: + - type: Transform + pos: 13.5,-69.5 + parent: 2 + - uid: 18614 + components: + - type: Transform + pos: 11.5,-69.5 + parent: 2 +- proto: SolarControlComputerCircuitboard + entities: + - uid: 18615 + components: + - type: Transform + pos: -2.34201,-37.3504 + parent: 2 +- proto: SolarPanel + entities: + - uid: 18616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-63.5 + parent: 2 + - uid: 18617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-57.5 + parent: 2 + - uid: 18618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-58.5 + parent: 2 + - uid: 18619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-59.5 + parent: 2 + - uid: 18620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-63.5 + parent: 2 + - uid: 18621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-64.5 + parent: 2 + - uid: 18622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-65.5 + parent: 2 + - uid: 18623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-65.5 + parent: 2 + - uid: 18624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-64.5 + parent: 2 + - uid: 18625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-63.5 + parent: 2 + - uid: 18626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-59.5 + parent: 2 + - uid: 18627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-58.5 + parent: 2 + - uid: 18628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-57.5 + parent: 2 + - uid: 18629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-57.5 + parent: 2 + - uid: 18630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-58.5 + parent: 2 + - uid: 18631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-59.5 + parent: 2 + - uid: 18632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-57.5 + parent: 2 + - uid: 18633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-58.5 + parent: 2 + - uid: 18634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-59.5 + parent: 2 + - uid: 18635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-64.5 + parent: 2 + - uid: 18636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-65.5 + parent: 2 + - uid: 18637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-63.5 + parent: 2 + - uid: 18638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-64.5 + parent: 2 + - uid: 18639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-65.5 + parent: 2 + - uid: 18640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-63.5 + parent: 2 + - uid: 18641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-64.5 + parent: 2 + - uid: 18642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-65.5 + parent: 2 + - uid: 18643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-66.5 + parent: 2 + - uid: 18644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-63.5 + parent: 2 + - uid: 18645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-64.5 + parent: 2 + - uid: 18646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-65.5 + parent: 2 + - uid: 18647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-66.5 + parent: 2 + - uid: 18648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-63.5 + parent: 2 + - uid: 18649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-64.5 + parent: 2 + - uid: 18650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-65.5 + parent: 2 + - uid: 18651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-66.5 + parent: 2 + - uid: 18652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-67.5 + parent: 2 + - uid: 18653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-63.5 + parent: 2 + - uid: 18654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-64.5 + parent: 2 + - uid: 18655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-65.5 + parent: 2 + - uid: 18656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-66.5 + parent: 2 + - uid: 18657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-67.5 + parent: 2 + - uid: 18658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-59.5 + parent: 2 + - uid: 18659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-58.5 + parent: 2 + - uid: 18660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-57.5 + parent: 2 + - uid: 18661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-56.5 + parent: 2 + - uid: 18662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-55.5 + parent: 2 + - uid: 18663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-55.5 + parent: 2 + - uid: 18664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-56.5 + parent: 2 + - uid: 18665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-57.5 + parent: 2 + - uid: 18666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-58.5 + parent: 2 + - uid: 18667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-59.5 + parent: 2 + - uid: 18668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-59.5 + parent: 2 + - uid: 18669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-58.5 + parent: 2 + - uid: 18670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-57.5 + parent: 2 + - uid: 18671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-56.5 + parent: 2 + - uid: 18672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-56.5 + parent: 2 + - uid: 18673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-57.5 + parent: 2 + - uid: 18674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-58.5 + parent: 2 + - uid: 18675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-59.5 + parent: 2 + - uid: 18676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,25.5 + parent: 2 + - uid: 18677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,17.5 + parent: 2 + - uid: 18678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,18.5 + parent: 2 + - uid: 18679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,19.5 + parent: 2 + - uid: 18680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,20.5 + parent: 2 + - uid: 18681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,21.5 + parent: 2 + - uid: 18682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,21.5 + parent: 2 + - uid: 18683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,20.5 + parent: 2 + - uid: 18684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,19.5 + parent: 2 + - uid: 18685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,18.5 + parent: 2 + - uid: 18686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,17.5 + parent: 2 + - uid: 18687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,26.5 + parent: 2 + - uid: 18688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,27.5 + parent: 2 + - uid: 18689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,28.5 + parent: 2 + - uid: 18690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,29.5 + parent: 2 + - uid: 18691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,29.5 + parent: 2 + - uid: 18692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,28.5 + parent: 2 + - uid: 18693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,27.5 + parent: 2 + - uid: 18694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,26.5 + parent: 2 + - uid: 18695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,25.5 + parent: 2 + - uid: 18696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,18.5 + parent: 2 + - uid: 18697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,19.5 + parent: 2 + - uid: 18698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,20.5 + parent: 2 + - uid: 18699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,21.5 + parent: 2 + - uid: 18700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,18.5 + parent: 2 + - uid: 18701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,19.5 + parent: 2 + - uid: 18702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,20.5 + parent: 2 + - uid: 18703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,21.5 + parent: 2 + - uid: 18704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,25.5 + parent: 2 + - uid: 18705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,26.5 + parent: 2 + - uid: 18706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,27.5 + parent: 2 + - uid: 18707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,28.5 + parent: 2 + - uid: 18708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,28.5 + parent: 2 + - uid: 18709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,27.5 + parent: 2 + - uid: 18710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,26.5 + parent: 2 + - uid: 18711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,25.5 + parent: 2 + - uid: 18712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,27.5 + parent: 2 + - uid: 18713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,26.5 + parent: 2 + - uid: 18714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,25.5 + parent: 2 + - uid: 18715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,27.5 + parent: 2 + - uid: 18716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,26.5 + parent: 2 + - uid: 18717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,25.5 + parent: 2 + - uid: 18718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,21.5 + parent: 2 + - uid: 18719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,20.5 + parent: 2 + - uid: 18720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,19.5 + parent: 2 + - uid: 18721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,21.5 + parent: 2 + - uid: 18722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,20.5 + parent: 2 + - uid: 18723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,19.5 + parent: 2 + - uid: 18724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,19.5 + parent: 2 + - uid: 18725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,20.5 + parent: 2 + - uid: 18726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,21.5 + parent: 2 + - uid: 18727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,21.5 + parent: 2 + - uid: 18728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,20.5 + parent: 2 + - uid: 18729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,19.5 + parent: 2 + - uid: 18730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,25.5 + parent: 2 + - uid: 18731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,26.5 + parent: 2 + - uid: 18732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,27.5 + parent: 2 + - uid: 18733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,27.5 + parent: 2 + - uid: 18734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,26.5 + parent: 2 + - uid: 18735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,25.5 + parent: 2 + - uid: 18736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,29.5 + parent: 2 + - uid: 18737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,28.5 + parent: 2 + - uid: 18738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,29.5 + parent: 2 + - uid: 18739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,28.5 + parent: 2 + - uid: 18740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,27.5 + parent: 2 + - uid: 18741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,28.5 + parent: 2 + - uid: 18742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,27.5 + parent: 2 + - uid: 18743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,28.5 + parent: 2 + - uid: 18744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,27.5 + parent: 2 + - uid: 18745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,26.5 + parent: 2 + - uid: 18746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,27.5 + parent: 2 + - uid: 18747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,26.5 + parent: 2 + - uid: 18748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,25.5 + parent: 2 + - uid: 18749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,27.5 + parent: 2 + - uid: 18750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,26.5 + parent: 2 + - uid: 18751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,25.5 + parent: 2 + - uid: 18752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,27.5 + parent: 2 + - uid: 18753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,26.5 + parent: 2 + - uid: 18754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,25.5 + parent: 2 + - uid: 18755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,27.5 + parent: 2 + - uid: 18756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,26.5 + parent: 2 + - uid: 18757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,25.5 + parent: 2 + - uid: 18758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,21.5 + parent: 2 + - uid: 18759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,20.5 + parent: 2 + - uid: 18760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,19.5 + parent: 2 + - uid: 18761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,19.5 + parent: 2 + - uid: 18762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,20.5 + parent: 2 + - uid: 18763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,21.5 + parent: 2 + - uid: 18764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,21.5 + parent: 2 + - uid: 18765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,20.5 + parent: 2 + - uid: 18766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,19.5 + parent: 2 + - uid: 18767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,20.5 + parent: 2 + - uid: 18768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,19.5 + parent: 2 + - uid: 18769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-63.5 + parent: 2 + - uid: 18770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-51.5 + parent: 2 + - uid: 18771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-52.5 + parent: 2 + - uid: 18772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-53.5 + parent: 2 + - uid: 18773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-54.5 + parent: 2 + - uid: 18774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-55.5 + parent: 2 + - uid: 18775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-51.5 + parent: 2 + - uid: 18776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-52.5 + parent: 2 + - uid: 18777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-53.5 + parent: 2 + - uid: 18778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-54.5 + parent: 2 + - uid: 18779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-55.5 + parent: 2 + - uid: 18780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-62.5 + parent: 2 + - uid: 18781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-61.5 + parent: 2 + - uid: 18782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-60.5 + parent: 2 + - uid: 18783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-59.5 + parent: 2 + - uid: 18784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-60.5 + parent: 2 + - uid: 18785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-61.5 + parent: 2 + - uid: 18786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-62.5 + parent: 2 + - uid: 18787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-63.5 + parent: 2 + - uid: 18788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-59.5 + parent: 2 + - uid: 18789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-55.5 + parent: 2 + - uid: 18790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-54.5 + parent: 2 + - uid: 18791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-53.5 + parent: 2 + - uid: 18792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-52.5 + parent: 2 + - uid: 18793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-53.5 + parent: 2 + - uid: 18794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-54.5 + parent: 2 + - uid: 18795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-55.5 + parent: 2 + - uid: 18796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-52.5 + parent: 2 + - uid: 18797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-53.5 + parent: 2 + - uid: 18798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-54.5 + parent: 2 + - uid: 18799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-55.5 + parent: 2 + - uid: 18800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-53.5 + parent: 2 + - uid: 18801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-54.5 + parent: 2 + - uid: 18802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-55.5 + parent: 2 + - uid: 18803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-53.5 + parent: 2 + - uid: 18804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-54.5 + parent: 2 + - uid: 18805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-55.5 + parent: 2 + - uid: 18806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-53.5 + parent: 2 + - uid: 18807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-54.5 + parent: 2 + - uid: 18808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-55.5 + parent: 2 + - uid: 18809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-59.5 + parent: 2 + - uid: 18810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-60.5 + parent: 2 + - uid: 18811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-61.5 + parent: 2 + - uid: 18812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-59.5 + parent: 2 + - uid: 18813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-59.5 + parent: 2 + - uid: 18814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-60.5 + parent: 2 + - uid: 18815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-61.5 + parent: 2 + - uid: 18816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-59.5 + parent: 2 + - uid: 18817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-60.5 + parent: 2 + - uid: 18818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-61.5 + parent: 2 + - uid: 18819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-60.5 + parent: 2 + - uid: 18820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-61.5 + parent: 2 + - uid: 18821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-60.5 + parent: 2 + - uid: 18822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-61.5 + parent: 2 + - uid: 18823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-62.5 + parent: 2 + - uid: 18824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-59.5 + parent: 2 + - uid: 18825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-60.5 + parent: 2 + - uid: 18826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-61.5 + parent: 2 + - uid: 18827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-62.5 + parent: 2 + - uid: 18828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-59.5 + parent: 2 +- proto: SolarPanelBroken + entities: + - uid: 18829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,26.5 + parent: 2 + - uid: 18830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,26.5 + parent: 2 + - uid: 18831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,21.5 + parent: 2 +- proto: SolarTracker + entities: + - uid: 18832 + components: + - type: Transform + pos: -56.5,-61.5 + parent: 2 + - uid: 18833 + components: + - type: Transform + pos: 75.5,23.5 + parent: 2 + - uid: 18834 + components: + - type: Transform + pos: -72.5,23.5 + parent: 2 + - uid: 18835 + components: + - type: Transform + pos: 57.5,-57.5 + parent: 2 +- proto: SolidSecretDoor + entities: + - uid: 18836 + components: + - type: Transform + pos: 13.5,34.5 + parent: 2 + - uid: 18837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,17.5 + parent: 2 + - uid: 18838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-36.5 + parent: 2 +- proto: SophicScribeSpawner + entities: + - uid: 15546 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 2 +- proto: SpaceCash10 + entities: + - uid: 18839 + components: + - type: Transform + pos: 23.560352,36.7938 + parent: 2 +- proto: SpaceVillainArcadeComputerCircuitboard + entities: + - uid: 18840 + components: + - type: Transform + pos: -25.481606,13.547287 + parent: 2 +- proto: SpawnMobAlexander + entities: + - uid: 18841 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 +- proto: SpawnMobButterfly + entities: + - uid: 23881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-21.5 + parent: 2 + - uid: 23882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-22.5 + parent: 2 + - uid: 23883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-24.5 + parent: 2 + - uid: 23884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-23.5 + parent: 2 +- proto: SpawnMobCatException + entities: + - uid: 18842 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 2 +- proto: SpawnMobCleanBot + entities: + - uid: 18843 + components: + - type: Transform + pos: 9.5,79.5 + parent: 2 + - uid: 18844 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 2 +- proto: SpawnMobCorgi + entities: + - uid: 18845 + components: + - type: Transform + pos: 9.5,47.5 + parent: 2 +- proto: SpawnMobCrab + entities: + - uid: 18846 + components: + - type: Transform + pos: 27.5,-52.5 + parent: 2 +- proto: SpawnMobFrog + entities: + - uid: 18847 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 +- proto: SpawnMobMcGriff + entities: + - uid: 18848 + components: + - type: Transform + pos: -14.5,31.5 + parent: 2 +- proto: SpawnMobMedibot + entities: + - uid: 18849 + components: + - type: Transform + pos: 8.5,75.5 + parent: 2 + - uid: 18850 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 2 +- proto: SpawnMobMonkey + entities: + - uid: 4561 + components: + - type: Transform + pos: 16.5,-30.5 + parent: 2 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 18851 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 +- proto: SpawnMobMouse + entities: + - uid: 18852 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 2 +- proto: SpawnMobParrot + entities: + - uid: 18853 + components: + - type: Transform + pos: 13.5,-50.5 + parent: 2 +- proto: SpawnMobRaccoonMorticia + entities: + - uid: 18854 + components: + - type: Transform + pos: -30.5,5.5 + parent: 2 +- proto: SpawnMobShiva + entities: + - uid: 18855 + components: + - type: Transform + pos: -21.5,43.5 + parent: 2 +- proto: SpawnMobSlothPaperwork + entities: + - uid: 18856 + components: + - type: Transform + pos: -39.5,-0.5 + parent: 2 +- proto: SpawnMobSmile + entities: + - uid: 18857 + components: + - type: Transform + pos: -17.5,-24.5 + parent: 2 +- proto: SpawnPointAtmos + entities: + - uid: 18858 + components: + - type: Transform + pos: 10.5,-47.5 + parent: 2 + - uid: 18859 + components: + - type: Transform + pos: 11.5,-47.5 + parent: 2 + - uid: 18860 + components: + - type: Transform + pos: 12.5,-47.5 + parent: 2 + - uid: 18861 + components: + - type: Transform + pos: 13.5,-47.5 + parent: 2 +- proto: SpawnPointBartender + entities: + - uid: 18862 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 +- proto: SpawnPointBorg + entities: + - uid: 18863 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 2 + - uid: 23861 + components: + - type: Transform + pos: -30.5,-17.5 + parent: 2 +- proto: SpawnPointBotanist + entities: + - uid: 18864 + components: + - type: Transform + pos: 41.5,18.5 + parent: 2 + - uid: 18865 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 + - uid: 18866 + components: + - type: Transform + pos: 43.5,18.5 + parent: 2 +- proto: SpawnPointBrigmedic + entities: + - uid: 18867 + components: + - type: Transform + pos: -28.5,34.5 + parent: 2 +- proto: SpawnPointCaptain + entities: + - uid: 18869 + components: + - type: Transform + pos: 6.5,54.5 + parent: 2 +- proto: SpawnPointCargoTechnician + entities: + - uid: 18870 + components: + - type: Transform + pos: -39.5,9.5 + parent: 2 + - uid: 18871 + components: + - type: Transform + pos: -41.5,8.5 + parent: 2 + - uid: 18872 + components: + - type: Transform + pos: -40.5,7.5 + parent: 2 + - uid: 18873 + components: + - type: Transform + pos: -39.5,7.5 + parent: 2 + - uid: 18874 + components: + - type: Transform + pos: -38.5,8.5 + parent: 2 +- proto: SpawnPointChaplain + entities: + - uid: 18875 + components: + - type: Transform + pos: 13.5,43.5 + parent: 2 +- proto: SpawnPointChef + entities: + - uid: 18876 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 + - uid: 18877 + components: + - type: Transform + pos: 22.5,18.5 + parent: 2 +- proto: SpawnPointChemist + entities: + - uid: 18878 + components: + - type: Transform + pos: 9.5,-31.5 + parent: 2 + - uid: 18879 + components: + - type: Transform + pos: 8.5,-31.5 + parent: 2 +- proto: SpawnPointChiefEngineer + entities: + - uid: 18880 + components: + - type: Transform + pos: 9.5,53.5 + parent: 2 +- proto: SpawnPointChiefJustice + entities: + - uid: 948 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 18881 + components: + - type: Transform + pos: 8.5,55.5 + parent: 2 +- proto: SpawnPointClerk + entities: + - uid: 21917 + components: + - type: Transform + pos: -5.5,15.5 + parent: 2 +- proto: SpawnPointClown + entities: + - uid: 18882 + components: + - type: Transform + pos: 43.5,12.5 + parent: 2 +- proto: SpawnPointDetective + entities: + - uid: 18883 + components: + - type: Transform + pos: -20.5,21.5 + parent: 2 +- proto: SpawnPointForensicMantis + entities: + - uid: 18884 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 2 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 18885 + components: + - type: Transform + pos: 7.5,55.5 + parent: 2 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 18886 + components: + - type: Transform + pos: 9.5,55.5 + parent: 2 +- proto: SpawnPointJanitor + entities: + - uid: 18887 + components: + - type: Transform + pos: 9.5,12.5 + parent: 2 + - uid: 18888 + components: + - type: Transform + pos: 8.5,12.5 + parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 23885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,33.5 + parent: 2 + - uid: 23886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,36.5 + parent: 2 + - uid: 23887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,37.5 + parent: 2 + - uid: 23888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,40.5 + parent: 2 + - uid: 23889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,28.5 + parent: 2 + - uid: 23890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,28.5 + parent: 2 + - uid: 23891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,27.5 + parent: 2 +- proto: SpawnPointLawyer + entities: + - uid: 18889 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 +- proto: SpawnPointLibrarian + entities: + - uid: 18891 + components: + - type: Transform + pos: 43.5,-0.5 + parent: 2 +- proto: SpawnPointMailCarrier + entities: + - uid: 18892 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 2 + - uid: 18893 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 2 +- proto: SpawnPointMedicalBorg + entities: + - uid: 18957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-25.5 + parent: 2 + - uid: 23859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-26.5 + parent: 2 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 18894 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 2 + - uid: 18895 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 2 + - uid: 18896 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 2 +- proto: SpawnPointMedicalIntern + entities: + - uid: 18897 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 2 + - uid: 18898 + components: + - type: Transform + pos: 41.5,-17.5 + parent: 2 +- proto: SpawnPointMime + entities: + - uid: 18899 + components: + - type: Transform + pos: 43.5,14.5 + parent: 2 +- proto: SpawnPointMusician + entities: + - uid: 18900 + components: + - type: Transform + pos: 41.5,15.5 + parent: 2 +- proto: SpawnPointObserver + entities: + - uid: 18901 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 +- proto: SpawnPointParamedic + entities: + - uid: 18902 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 +- proto: SpawnPointPassenger + entities: + - uid: 18903 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 2 + - uid: 18904 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 2 + - uid: 18905 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 2 + - uid: 18906 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - uid: 18907 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 2 + - uid: 18908 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 2 + - uid: 18909 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 2 + - uid: 18910 + components: + - type: Transform + pos: 40.5,-9.5 + parent: 2 + - uid: 18911 + components: + - type: Transform + pos: 39.5,-12.5 + parent: 2 + - uid: 18912 + components: + - type: Transform + pos: 42.5,-12.5 + parent: 2 + - uid: 18913 + components: + - type: Transform + pos: 43.5,-12.5 + parent: 2 + - uid: 18914 + components: + - type: Transform + pos: 26.5,4.5 + parent: 2 + - uid: 18915 + components: + - type: Transform + pos: 20.5,5.5 + parent: 2 + - uid: 18916 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 18917 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - uid: 18918 + components: + - type: Transform + pos: 27.5,11.5 + parent: 2 + - uid: 18919 + components: + - type: Transform + pos: 27.5,9.5 + parent: 2 + - uid: 18920 + components: + - type: Transform + pos: 22.5,8.5 + parent: 2 + - uid: 18921 + components: + - type: Transform + pos: 40.5,24.5 + parent: 2 + - uid: 18922 + components: + - type: Transform + pos: 26.5,35.5 + parent: 2 + - uid: 18923 + components: + - type: Transform + pos: 26.5,40.5 + parent: 2 + - uid: 18924 + components: + - type: Transform + pos: 36.5,28.5 + parent: 2 + - uid: 18925 + components: + - type: Transform + pos: 34.5,28.5 + parent: 2 + - uid: 18926 + components: + - type: Transform + pos: 39.5,28.5 + parent: 2 + - uid: 18927 + components: + - type: Transform + pos: -13.5,8.5 + parent: 2 + - uid: 18928 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 + - uid: 18929 + components: + - type: Transform + pos: -10.5,9.5 + parent: 2 + - uid: 18930 + components: + - type: Transform + pos: 32.5,-34.5 + parent: 2 + - uid: 18931 + components: + - type: Transform + pos: -34.5,-58.5 + parent: 2 + - uid: 18932 + components: + - type: Transform + pos: -34.5,-60.5 + parent: 2 + - uid: 18933 + components: + - type: Transform + pos: -29.5,-63.5 + parent: 2 + - uid: 18934 + components: + - type: Transform + pos: -29.5,-63.5 + parent: 2 + - uid: 18935 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 18936 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 18937 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - uid: 18938 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 18939 + components: + - type: Transform + pos: -6.5,6.5 + parent: 2 + - uid: 18940 + components: + - type: Transform + pos: -4.5,39.5 + parent: 2 + - uid: 18941 + components: + - type: Transform + pos: -8.5,18.5 + parent: 2 + - uid: 18942 + components: + - type: Transform + pos: -6.5,18.5 + parent: 2 + - uid: 18943 + components: + - type: Transform + pos: 32.5,5.5 + parent: 2 + - uid: 18944 + components: + - type: Transform + pos: 35.5,4.5 + parent: 2 + - uid: 18945 + components: + - type: Transform + pos: 42.5,5.5 + parent: 2 + - uid: 18946 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 2 + - uid: 18947 + components: + - type: Transform + pos: 36.5,22.5 + parent: 2 + - uid: 18948 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 + - uid: 18949 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 + - uid: 18950 + components: + - type: Transform + pos: 42.5,41.5 + parent: 2 + - uid: 18951 + components: + - type: Transform + pos: 21.5,32.5 + parent: 2 + - uid: 18952 + components: + - type: Transform + pos: 23.5,33.5 + parent: 2 + - uid: 18953 + components: + - type: Transform + pos: 22.5,29.5 + parent: 2 +- proto: SpawnPointPrisoner + entities: + - uid: 21916 + components: + - type: Transform + pos: -32.5,36.5 + parent: 2 + - uid: 23978 + components: + - type: Transform + pos: -40.5,33.5 + parent: 2 + - uid: 23979 + components: + - type: Transform + pos: -38.5,35.5 + parent: 2 +- proto: SpawnPointPrisonGuard + entities: + - uid: 23975 + components: + - type: Transform + pos: -36.5,29.5 + parent: 2 + - uid: 23976 + components: + - type: Transform + pos: -39.5,21.5 + parent: 2 + - uid: 23977 + components: + - type: Transform + pos: -7.5,28.5 + parent: 2 +- proto: SpawnPointProsecutor + entities: + - uid: 18890 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 +- proto: SpawnPointPsychologist + entities: + - uid: 18954 + components: + - type: Transform + pos: 44.5,-23.5 + parent: 2 +- proto: SpawnPointQuartermaster + entities: + - uid: 18955 + components: + - type: Transform + pos: 7.5,53.5 + parent: 2 +- proto: SpawnPointReporter + entities: + - uid: 18956 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 +- proto: SpawnPointResearchAssistant + entities: + - uid: 8899 + components: + - type: Transform + pos: -42.5,-50.5 + parent: 2 + - uid: 22320 + components: + - type: Transform + pos: -2.5,-31.5 + parent: 2 + - uid: 22321 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 2 + - uid: 22322 + components: + - type: Transform + pos: -4.5,-31.5 + parent: 2 + - uid: 22323 + components: + - type: Transform + pos: -35.5,-28.5 + parent: 2 + - uid: 22324 + components: + - type: Transform + pos: -35.5,-26.5 + parent: 2 + - uid: 22325 + components: + - type: Transform + pos: -38.5,-52.5 + parent: 2 + - uid: 22326 + components: + - type: Transform + pos: -38.5,-50.5 + parent: 2 + - uid: 22327 + components: + - type: Transform + pos: -30.5,-47.5 + parent: 2 +- proto: SpawnPointResearchDirector + entities: + - uid: 18958 + components: + - type: Transform + pos: 8.5,53.5 + parent: 2 +- proto: SpawnPointRoboticist + entities: + - uid: 20567 + components: + - type: Transform + pos: -21.5,-17.5 + parent: 2 + - uid: 20711 + components: + - type: Transform + pos: -25.5,-23.5 + parent: 2 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 18959 + components: + - type: Transform + pos: -37.5,-12.5 + parent: 2 + - uid: 18960 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 2 + - uid: 18961 + components: + - type: Transform + pos: -37.5,-10.5 + parent: 2 +- proto: SpawnPointScientist + entities: + - uid: 18962 + components: + - type: Transform + pos: -3.5,-31.5 + parent: 2 + - uid: 18963 + components: + - type: Transform + pos: -35.5,-51.5 + parent: 2 + - uid: 18964 + components: + - type: Transform + pos: -45.5,-36.5 + parent: 2 + - uid: 18965 + components: + - type: Transform + pos: -45.5,-35.5 + parent: 2 + - uid: 18966 + components: + - type: Transform + pos: -43.5,-35.5 + parent: 2 + - uid: 18967 + components: + - type: Transform + pos: -43.5,-36.5 + parent: 2 + - uid: 18968 + components: + - type: Transform + pos: -42.5,-32.5 + parent: 2 + - uid: 18969 + components: + - type: Transform + pos: -39.5,-42.5 + parent: 2 + - uid: 18970 + components: + - type: Transform + pos: -38.5,-42.5 + parent: 2 + - uid: 18971 + components: + - type: Transform + pos: -42.5,-49.5 + parent: 2 +- proto: SpawnPointSecurityCadet + entities: + - uid: 18972 + components: + - type: Transform + pos: -5.5,38.5 + parent: 2 + - uid: 18973 + components: + - type: Transform + pos: -4.5,38.5 + parent: 2 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 18974 + components: + - type: Transform + pos: -9.5,34.5 + parent: 2 + - uid: 18975 + components: + - type: Transform + pos: -9.5,35.5 + parent: 2 + - uid: 18976 + components: + - type: Transform + pos: -12.5,36.5 + parent: 2 + - uid: 18977 + components: + - type: Transform + pos: -12.5,35.5 + parent: 2 + - uid: 18978 + components: + - type: Transform + pos: -12.5,34.5 + parent: 2 +- proto: SpawnPointServiceWorker + entities: + - uid: 18979 + components: + - type: Transform + pos: 33.5,11.5 + parent: 2 + - uid: 18980 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 +- proto: SpawnPointStationEngineer + entities: + - uid: 18981 + components: + - type: Transform + pos: 3.5,-60.5 + parent: 2 + - uid: 18982 + components: + - type: Transform + pos: 3.5,-59.5 + parent: 2 + - uid: 18983 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 2 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 18984 + components: + - type: Transform + pos: 3.5,-53.5 + parent: 2 + - uid: 18985 + components: + - type: Transform + pos: 4.5,-53.5 + parent: 2 +- proto: SpawnPointWarden + entities: + - uid: 18986 + components: + - type: Transform + pos: -16.5,34.5 + parent: 2 +- proto: SpearBone + entities: + - uid: 18987 + components: + - type: Transform + pos: 15.473252,31.482315 + parent: 2 +- proto: SpiderWeb + entities: + - uid: 18988 + components: + - type: Transform + pos: 43.5,-37.5 + parent: 2 + - uid: 18989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-36.5 + parent: 2 + - uid: 18990 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 2 + - uid: 18994 + components: + - type: Transform + pos: -23.5,-60.5 + parent: 2 + - uid: 18995 + components: + - type: Transform + pos: -22.5,-58.5 + parent: 2 + - uid: 18996 + components: + - type: Transform + pos: -23.5,-58.5 + parent: 2 + - uid: 18997 + components: + - type: Transform + pos: -24.5,-59.5 + parent: 2 + - uid: 18998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-36.5 + parent: 2 + - uid: 18999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-38.5 + parent: 2 + - uid: 19000 + components: + - type: Transform + pos: 42.5,-40.5 + parent: 2 + - uid: 19001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-40.5 + parent: 2 + - uid: 19002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-39.5 + parent: 2 + - uid: 19003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-36.5 + parent: 2 + - uid: 19004 + components: + - type: Transform + pos: 35.5,-39.5 + parent: 2 + - uid: 19005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-39.5 + parent: 2 + - uid: 19006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-36.5 + parent: 2 + - uid: 19007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-34.5 + parent: 2 + - uid: 19008 + components: + - type: Transform + pos: 34.5,-37.5 + parent: 2 + - uid: 19009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-36.5 + parent: 2 + - uid: 19010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-34.5 + parent: 2 + - uid: 19011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-34.5 + parent: 2 +- proto: SprayBottle + entities: + - uid: 19014 + components: + - type: Transform + pos: 15.496991,-36.53507 + parent: 2 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 19015 + components: + - type: Transform + pos: 7.25298,12.605946 + parent: 2 +- proto: SprayBottleWater + entities: + - uid: 19016 + components: + - type: Transform + pos: 38.27459,-33.275814 + parent: 2 + - uid: 19017 + components: + - type: Transform + pos: 38.367832,-33.229195 + parent: 2 +- proto: SprayPainter + entities: + - uid: 19018 + components: + - type: Transform + pos: 4.397191,15.891615 + parent: 2 + - uid: 19019 + components: + - type: Transform + pos: -36.55078,-62.416622 + parent: 2 +- proto: Stairs + entities: + - uid: 18581 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - uid: 19020 + components: + - type: Transform + pos: 19.5,38.5 + parent: 2 + - uid: 19021 + components: + - type: Transform + pos: 20.5,38.5 + parent: 2 + - uid: 19022 + components: + - type: Transform + pos: 21.5,38.5 + parent: 2 + - uid: 19023 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 19024 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 19026 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 19027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 19028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - uid: 19030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 2 + - uid: 19031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - uid: 19033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 + - uid: 19034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 2 + - uid: 19035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 2 + - uid: 19036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 2 + - uid: 19037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + - uid: 19038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 2 + - uid: 19039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-57.5 + parent: 2 + - uid: 19040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-58.5 + parent: 2 + - uid: 19041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-60.5 + parent: 2 + - uid: 19042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-60.5 + parent: 2 + - uid: 19043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-60.5 + parent: 2 + - uid: 19044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-60.5 + parent: 2 + - uid: 19720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 2 + - uid: 22841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 2 +- proto: StairStage + entities: + - uid: 19045 + components: + - type: Transform + pos: 32.5,9.5 + parent: 2 +- proto: StasisBed + entities: + - uid: 19046 + components: + - type: Transform + pos: -30.5,35.5 + parent: 2 + - uid: 19047 + components: + - type: Transform + pos: 25.5,-32.5 + parent: 2 + - uid: 19048 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 2 +- proto: StationMap + entities: + - uid: 19049 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 19050 + components: + - type: Transform + pos: -27.5,3.5 + parent: 2 + - uid: 19051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-15.5 + parent: 2 + - uid: 19052 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 2 + - uid: 19053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,10.5 + parent: 2 + - uid: 19054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,7.5 + parent: 2 + - uid: 19055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,21.5 + parent: 2 + - uid: 19056 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - uid: 19057 + components: + - type: Transform + pos: 24.5,34.5 + parent: 2 + - uid: 19058 + components: + - type: Transform + pos: 30.5,40.5 + parent: 2 + - uid: 19059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-17.5 + parent: 2 + - uid: 19060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,27.5 + parent: 2 + - uid: 19061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,45.5 + parent: 2 + - uid: 19062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,45.5 + parent: 2 + - uid: 19063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,48.5 + parent: 2 + - uid: 19064 + components: + - type: Transform + pos: -8.5,57.5 + parent: 2 + - uid: 19065 + components: + - type: Transform + pos: 13.5,51.5 + parent: 2 + - uid: 19066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,51.5 + parent: 2 + - uid: 19067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-19.5 + parent: 2 + - uid: 19068 + components: + - type: Transform + pos: 35.5,-22.5 + parent: 2 + - uid: 19069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,38.5 + parent: 2 + - uid: 19070 + components: + - type: Transform + pos: 14.5,45.5 + parent: 2 + - uid: 19071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-23.5 + parent: 2 + - uid: 19072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 2 + - uid: 19073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-40.5 + parent: 2 + - uid: 19074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-1.5 + parent: 2 + - uid: 19075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,30.5 + parent: 2 + - uid: 19076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-13.5 + parent: 2 + - uid: 19077 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 2 + - uid: 19078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,21.5 + parent: 2 + - uid: 19079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,39.5 + parent: 2 +- proto: StationRecordsComputerCircuitboard + entities: + - uid: 19080 + components: + - type: Transform + pos: -0.54542005,72.60167 + parent: 2 +- proto: SteelBench + entities: + - uid: 19081 + components: + - type: Transform + pos: -30.5,-10.5 + parent: 2 + - uid: 19082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-14.5 + parent: 2 + - uid: 19083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-14.5 + parent: 2 + - uid: 19084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-14.5 + parent: 2 + - uid: 19085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,18.5 + parent: 2 + - uid: 19086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,18.5 + parent: 2 + - uid: 19087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,18.5 + parent: 2 + - uid: 19088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,24.5 + parent: 2 + - uid: 19089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,24.5 + parent: 2 + - uid: 19090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,24.5 + parent: 2 + - uid: 19091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,24.5 + parent: 2 + - uid: 19092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,22.5 + parent: 2 + - uid: 19093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,23.5 + parent: 2 + - uid: 19094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,24.5 + parent: 2 + - uid: 19095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,23.5 + parent: 2 + - uid: 19096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,23.5 + parent: 2 +- proto: Stool + entities: + - uid: 19097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-64.5 + parent: 2 + - uid: 19098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,4.5 + parent: 2 + - uid: 19099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,8.5 + parent: 2 + - uid: 19100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,9.5 + parent: 2 + - uid: 19101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,9.5 + parent: 2 + - uid: 19102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,8.5 + parent: 2 + - uid: 19103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,0.5 + parent: 2 + - uid: 19104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-0.5 + parent: 2 + - uid: 19105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-0.5 + parent: 2 + - uid: 19106 + components: + - type: Transform + pos: -33.5,39.5 + parent: 2 + - uid: 19107 + components: + - type: Transform + pos: -33.5,36.5 + parent: 2 + - uid: 19108 + components: + - type: Transform + pos: -33.5,33.5 + parent: 2 + - uid: 19109 + components: + - type: Transform + pos: -38.5,35.5 + parent: 2 + - uid: 19110 + components: + - type: Transform + pos: -39.5,35.5 + parent: 2 + - uid: 19111 + components: + - type: Transform + pos: -40.5,35.5 + parent: 2 + - uid: 19112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,33.5 + parent: 2 + - uid: 19113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,33.5 + parent: 2 + - uid: 19114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,33.5 + parent: 2 + - uid: 19115 + components: + - type: Transform + pos: 41.5,-17.5 + parent: 2 + - uid: 19116 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 2 +- proto: StoolBar + entities: + - uid: 19117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-64.5 + parent: 2 + - uid: 19118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-63.5 + parent: 2 + - uid: 19119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-62.5 + parent: 2 + - uid: 19120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,11.5 + parent: 2 + - uid: 19121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,11.5 + parent: 2 + - uid: 19122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,11.5 + parent: 2 + - uid: 19123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,11.5 + parent: 2 + - uid: 19124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,11.5 + parent: 2 + - uid: 19125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,10.5 + parent: 2 + - uid: 19126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,9.5 + parent: 2 + - uid: 19127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,8.5 + parent: 2 + - uid: 19128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,8.5 + parent: 2 + - uid: 19129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,8.5 + parent: 2 + - uid: 19130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,8.5 + parent: 2 + - uid: 19131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,8.5 + parent: 2 + - uid: 19132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,9.5 + parent: 2 + - uid: 19133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,10.5 + parent: 2 + - uid: 19134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,11.5 + parent: 2 + - uid: 19135 + components: + - type: Transform + pos: -14.5,-60.5 + parent: 2 + - uid: 19136 + components: + - type: Transform + pos: -13.5,-60.5 + parent: 2 + - uid: 19137 + components: + - type: Transform + pos: -12.5,-60.5 + parent: 2 +- proto: StorageCanister + entities: + - uid: 19138 + components: + - type: Transform + pos: 16.5,-54.5 + parent: 2 + - uid: 19139 + components: + - type: Transform + pos: -30.5,-37.5 + parent: 2 + - uid: 19140 + components: + - type: Transform + pos: -30.5,-38.5 + parent: 2 + - uid: 19141 + components: + - type: Transform + pos: -30.5,-39.5 + parent: 2 + - uid: 19142 + components: + - type: Transform + pos: 10.5,-62.5 + parent: 2 + - uid: 19143 + components: + - type: Transform + pos: 35.5,-51.5 + parent: 2 + - uid: 19144 + components: + - type: Transform + pos: 36.5,-51.5 + parent: 2 + - uid: 19145 + components: + - type: Transform + pos: 37.5,-51.5 + parent: 2 + - uid: 19146 + components: + - type: Transform + pos: 38.5,-51.5 + parent: 2 + - uid: 19147 + components: + - type: Transform + pos: 34.5,-43.5 + parent: 2 + - uid: 22957 + components: + - type: Transform + pos: -1.5,-76.5 + parent: 2 + - uid: 23088 + components: + - type: Transform + pos: 2.5,-76.5 + parent: 2 + - uid: 23089 + components: + - type: Transform + pos: -3.5,-66.5 + parent: 2 + - uid: 23095 + components: + - type: Transform + pos: -2.5,-66.5 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 19148 + components: + - type: Transform + pos: -2.5,49.5 + parent: 2 + - uid: 19149 + components: + - type: MetaData + name: Substarion da Médica + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - uid: 19150 + components: + - type: MetaData + name: Substation da Segurança + - type: Transform + pos: -29.5,15.5 + parent: 2 + - uid: 19151 + components: + - type: MetaData + name: Substation do Serviço + - type: Transform + pos: 9.5,22.5 + parent: 2 + - uid: 19152 + components: + - type: Transform + pos: 5.5,32.5 + parent: 2 + - uid: 19153 + components: + - type: Transform + pos: 8.5,35.5 + parent: 2 + - uid: 19154 + components: + - type: MetaData + name: Substation da Engenharia + - type: Transform + pos: 0.5,-53.5 + parent: 2 + - uid: 19155 + components: + - type: MetaData + name: Substation da Ciência + - type: Transform + pos: -22.5,-54.5 + parent: 2 + - uid: 19156 + components: + - type: MetaData + name: Substation da Carga + - type: Transform + pos: -16.5,-15.5 + parent: 2 + - uid: 19157 + components: + - type: MetaData + name: Substation da I.A. + - type: Transform + pos: -3.5,76.5 + parent: 2 +- proto: SuitStorageAtmos + entities: + - uid: 19158 + components: + - type: Transform + pos: 20.5,-51.5 + parent: 2 + - uid: 19159 + components: + - type: Transform + pos: 20.5,-50.5 + parent: 2 +- proto: SuitStorageCaptain + entities: + - uid: 19160 + components: + - type: Transform + pos: -5.5,47.5 + parent: 2 +- proto: SuitStorageCE + entities: + - uid: 19161 + components: + - type: Transform + pos: 14.5,-54.5 + parent: 2 +- proto: SuitStorageCMO + entities: + - uid: 19162 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 +- proto: SuitStorageEngi + entities: + - uid: 19163 + components: + - type: Transform + pos: 2.5,-54.5 + parent: 2 + - uid: 19164 + components: + - type: Transform + pos: 2.5,-55.5 + parent: 2 + - uid: 19165 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 2 +- proto: SuitStorageEVA + entities: + - uid: 19166 + components: + - type: Transform + pos: -43.5,-7.5 + parent: 2 + - uid: 19167 + components: + - type: Transform + pos: -44.5,-7.5 + parent: 2 + - uid: 19168 + components: + - type: Transform + pos: -6.5,-20.5 + parent: 2 + - uid: 19169 + components: + - type: Transform + pos: -5.5,-20.5 + parent: 2 + - uid: 19170 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 2 + - uid: 19171 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 2 + - uid: 19172 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 + - uid: 19173 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 2 + - uid: 19174 + components: + - type: Transform + pos: -5.5,-24.5 + parent: 2 + - uid: 19175 + components: + - type: Transform + pos: -6.5,-24.5 + parent: 2 + - uid: 19176 + components: + - type: Transform + pos: -8.5,42.5 + parent: 2 + - uid: 19177 + components: + - type: Transform + pos: -8.5,41.5 + parent: 2 + - uid: 19178 + components: + - type: Transform + pos: 13.5,50.5 + parent: 2 + - uid: 19179 + components: + - type: Transform + pos: 13.5,49.5 + parent: 2 +- proto: SuitStorageHOS + entities: + - uid: 19180 + components: + - type: Transform + pos: -25.5,45.5 + parent: 2 +- proto: SuitStorageRD + entities: + - uid: 19181 + components: + - type: Transform + pos: -17.5,-19.5 + parent: 2 +- proto: SuitStorageSalv + entities: + - uid: 19182 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 2 + - uid: 19183 + components: + - type: Transform + pos: -39.5,-13.5 + parent: 2 + - uid: 19184 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 +- proto: SuitStorageSec + entities: + - uid: 19185 + components: + - type: Transform + pos: -11.5,40.5 + parent: 2 + - uid: 19186 + components: + - type: Transform + pos: -11.5,39.5 + parent: 2 +- proto: SuitStorageWarden + entities: + - uid: 19187 + components: + - type: Transform + pos: -17.5,33.5 + parent: 2 +- proto: Supermatter + entities: + - uid: 19188 + components: + - type: Transform + pos: 0.5,-69.5 + parent: 2 +- proto: SurveillanceCameraCommand + entities: + - uid: 19189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Portal + - uid: 19190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Vault + - uid: 19191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-22.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Emergency Equipment + - uid: 19192 + components: + - type: Transform + pos: -3.5,-40.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Expensive Plate Deposit + - uid: 19193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Gravity + - uid: 19194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,40.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Comms + - uid: 19195 + components: + - type: Transform + pos: -7.5,47.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain Bedroom + - uid: 19196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,56.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain office + - uid: 19197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,49.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Head of Personel + - uid: 19198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,46.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HoP Expedition + - uid: 19199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,54.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge - Meeting Room + - uid: 19200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,59.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge - 2 + - uid: 19201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,59.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge - 1 + - uid: 19202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,72.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: A.I. Southeast + - uid: 19203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,72.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: I.A Southwest + - uid: 19204 + components: + - type: Transform + pos: 1.5,69.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: A.I. South + - uid: 19205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,77.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: A.I. East + - uid: 19206 + components: + - type: Transform + pos: 5.5,82.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: A.I. North East + - uid: 19207 + components: + - type: Transform + pos: -2.5,82.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: A.I. Northwest + - uid: 19208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,76.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: A.I. West + - uid: 19209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,76.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: A.I. Exterior + - uid: 19211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,55.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge Entrance + - uid: 22328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Representative Office +- proto: SurveillanceCameraEngineering + entities: + - uid: 19212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Auxiliary Engineering + - uid: 19213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Common Plate Deposit + - uid: 19214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,24.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Northeast Solar + - uid: 19215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-50.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Hallway + - uid: 19216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-53.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Office of the Chief Engineer + - uid: 19217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-58.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Decontamination + - uid: 19218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-55.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: AME + - uid: 19219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-59.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: SMES Bank + - uid: 19220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-57.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engineering Depot + - uid: 19221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-66.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Emitters + - uid: 19222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-67.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: SM Cooling + - uid: 19223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-62.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Supermatter North + - uid: 19224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-72.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Supermatter South + - uid: 19225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-49.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Tank Depot + - uid: 19226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-44.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG + - uid: 19227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-39.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG 2 + - uid: 19228 + components: + - type: Transform + pos: 19.5,-51.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Canisters + - uid: 19229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-39.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Prohibited + - uid: 19230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-69.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Supermatter West + - uid: 19231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-43.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG mixer + - uid: 19232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-57.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Southeast Solar + - uid: 19233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-57.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmospheric South + - uid: 19234 + components: + - type: Transform + pos: 27.5,-55.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North Astmospheric + - uid: 19235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-58.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Equipment Room + - uid: 19236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-45.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Front desk + - uid: 19237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-69.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: East Supermatter +- proto: SurveillanceCameraGeneral + entities: + - uid: 19238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Epis Corridor + - uid: 19239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Midwest + - uid: 19240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: West Corridor 2 + - uid: 19241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Station Center + - uid: 19242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North Center + - uid: 19243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: East Center + - uid: 19244 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South Center + - uid: 19245 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cargo Corridor/Epis 2 + - uid: 19246 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cargo Corridor/Epis 1 + - uid: 19247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: East Bar + - uid: 19248 + components: + - type: Transform + pos: 27.5,5.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Downtown Bar + - uid: 19249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: West Bar + - uid: 19250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Librarian's Room + - uid: 19251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Security Point + - uid: 19252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Library + - uid: 19253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Service/Dorms Corridor + - uid: 19254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,27.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dormitory Entrance + - uid: 19255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Hologram Room + - uid: 19256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,39.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorms + - uid: 19257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Central part of the Dormitory + - uid: 19258 + components: + - type: Transform + pos: 44.5,26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals Corridor 1 + - uid: 19259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals Corridor 2 + - uid: 19260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North Evacuation + - uid: 19261 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South Evacuation + - uid: 19262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Sec/Bridge Corridor 1 + - uid: 19263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Sec/Bridge Corridor 2 + - uid: 19264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,43.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Sec/Bridge Corridor 3 + - uid: 19265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evacuation Entrance and Bar + - uid: 19266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Eng/Med Corridor 1 + - uid: 19267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Eng/Med Corridor 2 +- proto: SurveillanceCameraMedical + entities: + - uid: 19268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Equipment Area + - uid: 19269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgical Ward + - uid: 19270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Morgue + - uid: 19271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-17.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Office of the Chief Medical Officer + - uid: 19272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-14.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Experiment Workshop + - uid: 19273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-14.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Rest Area + - uid: 19274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology + - uid: 19275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Quarantine + - uid: 19276 + components: + - type: Transform + pos: 45.5,-25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Psychologist's Office + - uid: 19277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-29.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Cryogenic + - uid: 19278 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Genetics + - uid: 19279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemical + - uid: 19280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Security Point + - uid: 19281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Front desk + - uid: 19282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Northeast Corridor + - uid: 19283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Treatment Area + - uid: 19284 + components: + - type: Transform + pos: 28.5,-25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: East Corridor +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 19285 + components: + - type: Transform + pos: 4.5,39.5 + parent: 2 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 19286 + components: + - type: Transform + pos: 8.5,41.5 + parent: 2 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 19287 + components: + - type: Transform + pos: 8.5,38.5 + parent: 2 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 19288 + components: + - type: Transform + pos: 8.5,39.5 + parent: 2 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 19289 + components: + - type: Transform + pos: 4.5,37.5 + parent: 2 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 19290 + components: + - type: Transform + pos: 8.5,37.5 + parent: 2 +- proto: SurveillanceCameraRouterService + entities: + - uid: 19291 + components: + - type: Transform + pos: 4.5,38.5 + parent: 2 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 19292 + components: + - type: Transform + pos: 4.5,41.5 + parent: 2 +- proto: SurveillanceCameraScience + entities: + - uid: 19293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-23.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Reception of Science + - uid: 19294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Garage + - uid: 19295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Security Point + - uid: 19296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: South Corridor + - uid: 19297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Robotics 2 + - uid: 19298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-24.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Director's Office + - uid: 19299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Director's Room + - uid: 19300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-46.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Target Shooting + - uid: 19301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-50.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Toxins + - uid: 19302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-49.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Launch + - uid: 19303 + components: + - type: Transform + pos: -41.5,-43.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Dock + - uid: 19304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Anomalous Deposit + - uid: 19305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Anomalous Laboratory + - uid: 19306 + components: + - type: Transform + pos: -11.5,-49.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: South Experiment Cell + - uid: 19307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-42.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Special Experiment Cell + - uid: 19308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: North Experiment Cells + - uid: 19309 + components: + - type: Transform + pos: -3.5,-33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Entrance to Xenobiology + - uid: 19310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Rest Area + - uid: 19311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Research Workshop + - uid: 19312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Artifacts Laboratory + - uid: 19313 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: East Corridor + - uid: 19314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Tank Depot + - uid: 19315 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Robotics 1 +- proto: SurveillanceCameraSecurity + entities: + - uid: 19316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Advocacy + - uid: 19317 + components: + - type: Transform + pos: -31.5,23.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Execution + - uid: 19318 + components: + - type: Transform + pos: 44.5,-18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Evacuation Sacurity Point + - uid: 19319 + components: + - type: Transform + pos: -8.5,18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: South Corridor + - uid: 19320 + components: + - type: Transform + pos: -14.5,38.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory + - uid: 19321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Evidence Cabinet + - uid: 19322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,42.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: EVA + - uid: 19323 + components: + - type: Transform + pos: -22.5,38.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: HoS room 1 + - uid: 19324 + components: + - type: Transform + pos: -24.5,43.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: HoS Room + - uid: 19325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig Medical Wing + - uid: 19326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma 2 + - uid: 19327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,39.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma 1 + - uid: 19328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Expedition Control Brig + - uid: 19329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Transfer + - uid: 19330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Inner Corridor + - uid: 19331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig Corridor 2 + - uid: 19332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,29.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig Corridor 1 + - uid: 19333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig Entry + - uid: 19334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,40.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Front desk + - uid: 19335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig - Warden + - uid: 19336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,24.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Interrogation + - uid: 19337 + components: + - type: Transform + pos: -15.5,43.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Exterior + - uid: 19338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Court + - uid: 19339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Brig Security + - uid: 19340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Detective's Office + - uid: 23865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Chief Justice room +- proto: SurveillanceCameraService + entities: + - uid: 19341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Janitor + - uid: 19342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,14.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Bar Counter + - uid: 19343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,17.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Bartender's Room + - uid: 19344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Kitchen + - uid: 19345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,22.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Freezer + - uid: 19346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Botany + - uid: 19347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Botany Deposit + - uid: 19348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Theater + - uid: 19349 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Capela + - uid: 19350 + components: + - type: Transform + pos: 14.5,35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Crematorium + - uid: 19351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Chapel Corridor + - uid: 19352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,38.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Chapel Deposit + - uid: 19353 + components: + - type: Transform + pos: 21.5,42.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Wake + - uid: 19354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,44.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Priest's Room +- proto: SurveillanceCameraSupply + entities: + - uid: 19355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Reception + - uid: 19356 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Mail + - uid: 19357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,5.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Quartermaster's Office + - uid: 19358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Quartermaster's Room + - uid: 19359 + components: + - type: Transform + pos: -28.5,10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Deposit + - uid: 19360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Front desk + - uid: 19361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Área principal + - uid: 19362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Miners + - uid: 19363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-17.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Magnet +- proto: SurveillanceCameraWirelessRouterBase + entities: + - uid: 19364 + components: + - type: Transform + pos: 7.5,38.5 + parent: 2 +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 19365 + components: + - type: Transform + pos: 5.5,38.5 + parent: 2 +- proto: SurveillanceWirelessCameraAnchoredEntertainment + entities: + - uid: 19366 + components: + - type: Transform + pos: -12.5,16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: 24 Hour Court +- proto: SurveillanceWirelessCameraMovableConstructed + entities: + - uid: 19367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,23.5 + parent: 2 + - uid: 19368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,22.5 + parent: 2 +- proto: SynthesizerInstrument + entities: + - uid: 19369 + components: + - type: Transform + pos: 37.525913,5.4845967 + parent: 2 +- proto: Syringe + entities: + - uid: 19370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.53238,38.676575 + parent: 2 + - uid: 19371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.826675,-28.196861 + parent: 2 + - uid: 19372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.363167,-34.497257 + parent: 2 + - uid: 19373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.509636,-34.21152 + parent: 2 +- proto: Table + entities: + - uid: 19374 + components: + - type: Transform + pos: -2.5,27.5 + parent: 2 + - uid: 19375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,9.5 + parent: 2 + - uid: 19376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,49.5 + parent: 2 + - uid: 19377 + components: + - type: Transform + pos: -13.5,6.5 + parent: 2 + - uid: 19378 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - uid: 19379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,17.5 + parent: 2 + - uid: 19380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,16.5 + parent: 2 + - uid: 19381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,15.5 + parent: 2 + - uid: 19382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 2 + - uid: 19383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,13.5 + parent: 2 + - uid: 19384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,15.5 + parent: 2 + - uid: 19385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,16.5 + parent: 2 + - uid: 19386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,19.5 + parent: 2 + - uid: 19387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,19.5 + parent: 2 + - uid: 19388 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - uid: 19389 + components: + - type: Transform + pos: 7.5,12.5 + parent: 2 + - uid: 19390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 2 + - uid: 19391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 2 + - uid: 19392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 2 + - uid: 19393 + components: + - type: Transform + pos: -17.5,-13.5 + parent: 2 + - uid: 19394 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 + - uid: 19395 + components: + - type: Transform + pos: -20.5,-12.5 + parent: 2 + - uid: 19396 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - uid: 19397 + components: + - type: Transform + pos: -40.5,8.5 + parent: 2 + - uid: 19398 + components: + - type: Transform + pos: -39.5,8.5 + parent: 2 + - uid: 19399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-9.5 + parent: 2 + - uid: 19400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-9.5 + parent: 2 + - uid: 19401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-9.5 + parent: 2 + - uid: 19402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-7.5 + parent: 2 + - uid: 19403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-14.5 + parent: 2 + - uid: 19404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-14.5 + parent: 2 + - uid: 19405 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 2 + - uid: 19406 + components: + - type: Transform + pos: -26.5,-16.5 + parent: 2 + - uid: 19407 + components: + - type: Transform + pos: -26.5,-18.5 + parent: 2 + - uid: 19408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-15.5 + parent: 2 + - uid: 19409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-16.5 + parent: 2 + - uid: 19410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-17.5 + parent: 2 + - uid: 19411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-18.5 + parent: 2 + - uid: 19412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-27.5 + parent: 2 + - uid: 19413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-28.5 + parent: 2 + - uid: 19414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-28.5 + parent: 2 + - uid: 19415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-34.5 + parent: 2 + - uid: 19416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-32.5 + parent: 2 + - uid: 19417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-39.5 + parent: 2 + - uid: 19418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-38.5 + parent: 2 + - uid: 19419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-36.5 + parent: 2 + - uid: 19420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-35.5 + parent: 2 + - uid: 19421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-52.5 + parent: 2 + - uid: 19422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-51.5 + parent: 2 + - uid: 19423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-50.5 + parent: 2 + - uid: 19424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-52.5 + parent: 2 + - uid: 19425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-51.5 + parent: 2 + - uid: 19426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-50.5 + parent: 2 + - uid: 19427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-48.5 + parent: 2 + - uid: 19428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-46.5 + parent: 2 + - uid: 19429 + components: + - type: Transform + pos: -29.5,-47.5 + parent: 2 + - uid: 19430 + components: + - type: Transform + pos: -29.5,-47.5 + parent: 2 + - uid: 19431 + components: + - type: Transform + pos: -21.5,-42.5 + parent: 2 + - uid: 19432 + components: + - type: Transform + pos: -21.5,-41.5 + parent: 2 + - uid: 19433 + components: + - type: Transform + pos: -19.5,-41.5 + parent: 2 + - uid: 19434 + components: + - type: Transform + pos: -19.5,-42.5 + parent: 2 + - uid: 19435 + components: + - type: Transform + pos: -19.5,-45.5 + parent: 2 + - uid: 19436 + components: + - type: Transform + pos: -22.5,-52.5 + parent: 2 + - uid: 19437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-63.5 + parent: 2 + - uid: 19438 + components: + - type: Transform + pos: -35.5,-62.5 + parent: 2 + - uid: 19439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-66.5 + parent: 2 + - uid: 19440 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 + - uid: 19441 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 19442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,14.5 + parent: 2 + - uid: 19443 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 + - uid: 19444 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 19445 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 19446 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 19447 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 19448 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - uid: 19449 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 + - uid: 19450 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - uid: 19451 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - uid: 19452 + components: + - type: Transform + pos: 37.5,12.5 + parent: 2 + - uid: 19453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,19.5 + parent: 2 + - uid: 19454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,19.5 + parent: 2 + - uid: 19455 + components: + - type: Transform + pos: 18.5,27.5 + parent: 2 + - uid: 19456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,26.5 + parent: 2 + - uid: 19457 + components: + - type: Transform + pos: 36.5,30.5 + parent: 2 + - uid: 19458 + components: + - type: Transform + pos: 32.5,28.5 + parent: 2 + - uid: 19459 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - uid: 19460 + components: + - type: Transform + pos: 35.5,28.5 + parent: 2 + - uid: 19461 + components: + - type: Transform + pos: 38.5,28.5 + parent: 2 + - uid: 19462 + components: + - type: Transform + pos: -8.5,31.5 + parent: 2 + - uid: 19463 + components: + - type: Transform + pos: -8.5,35.5 + parent: 2 + - uid: 19464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,35.5 + parent: 2 + - uid: 19465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,34.5 + parent: 2 + - uid: 19466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,31.5 + parent: 2 + - uid: 19467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,31.5 + parent: 2 + - uid: 19468 + components: + - type: Transform + pos: -8.5,37.5 + parent: 2 + - uid: 19469 + components: + - type: Transform + pos: -8.5,39.5 + parent: 2 + - uid: 19470 + components: + - type: Transform + pos: -41.5,30.5 + parent: 2 + - uid: 19471 + components: + - type: Transform + pos: -40.5,34.5 + parent: 2 + - uid: 19472 + components: + - type: Transform + pos: -39.5,34.5 + parent: 2 + - uid: 19473 + components: + - type: Transform + pos: -38.5,34.5 + parent: 2 + - uid: 19474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,22.5 + parent: 2 + - uid: 19475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,21.5 + parent: 2 + - uid: 19476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,30.5 + parent: 2 + - uid: 19477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,30.5 + parent: 2 + - uid: 19478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,30.5 + parent: 2 + - uid: 19479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,36.5 + parent: 2 + - uid: 19480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,48.5 + parent: 2 + - uid: 19481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-14.5 + parent: 2 + - uid: 19482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-14.5 + parent: 2 + - uid: 19483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-14.5 + parent: 2 + - uid: 19484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-14.5 + parent: 2 + - uid: 19485 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 2 + - uid: 19486 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 2 + - uid: 19487 + components: + - type: Transform + pos: 42.5,-28.5 + parent: 2 + - uid: 19488 + components: + - type: Transform + pos: 42.5,-29.5 + parent: 2 + - uid: 19489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-33.5 + parent: 2 + - uid: 19490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-34.5 + parent: 2 + - uid: 19491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-34.5 + parent: 2 + - uid: 19492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-34.5 + parent: 2 + - uid: 19493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-34.5 + parent: 2 + - uid: 19494 + components: + - type: Transform + pos: 30.5,-31.5 + parent: 2 + - uid: 19495 + components: + - type: Transform + pos: 31.5,-31.5 + parent: 2 + - uid: 19496 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 2 + - uid: 19497 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 2 + - uid: 19498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-29.5 + parent: 2 + - uid: 19499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-29.5 + parent: 2 + - uid: 19500 + components: + - type: Transform + pos: 8.5,-42.5 + parent: 2 + - uid: 19501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-52.5 + parent: 2 + - uid: 19502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-52.5 + parent: 2 + - uid: 19503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-52.5 + parent: 2 + - uid: 19504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-53.5 + parent: 2 + - uid: 19505 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 2 + - uid: 19506 + components: + - type: Transform + pos: 24.5,-39.5 + parent: 2 + - uid: 19507 + components: + - type: Transform + pos: 25.5,-39.5 + parent: 2 + - uid: 19508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-46.5 + parent: 2 + - uid: 19509 + components: + - type: Transform + pos: 22.5,-43.5 + parent: 2 + - uid: 19510 + components: + - type: Transform + pos: 22.5,-44.5 + parent: 2 + - uid: 19511 + components: + - type: Transform + pos: 22.5,-45.5 + parent: 2 + - uid: 19512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,5.5 + parent: 2 + - uid: 19513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,4.5 + parent: 2 + - uid: 19514 + components: + - type: Transform + pos: 41.5,-25.5 + parent: 2 + - uid: 19515 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 + - uid: 19516 + components: + - type: Transform + pos: 17.5,21.5 + parent: 2 + - uid: 19517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-40.5 + parent: 2 + - uid: 19518 + components: + - type: Transform + pos: 33.5,-39.5 + parent: 2 + - uid: 19519 + components: + - type: Transform + pos: 32.5,-38.5 + parent: 2 + - uid: 19520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-23.5 + parent: 2 + - uid: 19521 + components: + - type: Transform + pos: -2.5,20.5 + parent: 2 + - uid: 19522 + components: + - type: Transform + pos: 41.5,-12.5 + parent: 2 + - uid: 19523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,7.5 + parent: 2 + - uid: 19524 + components: + - type: Transform + pos: 9.5,48.5 + parent: 2 +- proto: TableCarpet + entities: + - uid: 19525 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 2 + - uid: 19526 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 2 + - uid: 19527 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 2 + - uid: 19528 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 2 + - uid: 19529 + components: + - type: Transform + pos: -11.5,-24.5 + parent: 2 + - uid: 19530 + components: + - type: Transform + pos: -31.5,-60.5 + parent: 2 + - uid: 19531 + components: + - type: Transform + pos: -29.5,-60.5 + parent: 2 + - uid: 19532 + components: + - type: Transform + pos: -29.5,-64.5 + parent: 2 + - uid: 19533 + components: + - type: Transform + pos: -30.5,-64.5 + parent: 2 +- proto: TableFrame + entities: + - uid: 19534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-58.5 + parent: 2 + - uid: 19535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-64.5 + parent: 2 + - uid: 19536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-63.5 + parent: 2 + - uid: 19537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-62.5 + parent: 2 + - uid: 19538 + components: + - type: Transform + pos: 10.5,-36.5 + parent: 2 + - uid: 19539 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 2 + - uid: 19540 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 2 + - uid: 19541 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 2 + - uid: 19542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-39.5 + parent: 2 + - uid: 19543 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 + - uid: 19544 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 + - uid: 19545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-39.5 + parent: 2 + - uid: 19546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-40.5 + parent: 2 + - uid: 19547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-40.5 + parent: 2 + - uid: 19548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-40.5 + parent: 2 + - uid: 19549 + components: + - type: Transform + pos: 32.5,-39.5 + parent: 2 +- proto: TableGlass + entities: + - uid: 19550 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 2 + - uid: 19551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,32.5 + parent: 2 + - uid: 19552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,32.5 + parent: 2 + - uid: 19553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,37.5 + parent: 2 + - uid: 19554 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 2 + - uid: 19555 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 2 + - uid: 19556 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 + - uid: 19557 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 2 + - uid: 19558 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 2 + - uid: 19559 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 2 + - uid: 19560 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 2 + - uid: 19561 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 2 + - uid: 19562 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 2 + - uid: 19563 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 2 + - uid: 19564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-14.5 + parent: 2 + - uid: 19565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-14.5 + parent: 2 + - uid: 19566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-14.5 + parent: 2 + - uid: 19567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-32.5 + parent: 2 + - uid: 19568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-31.5 + parent: 2 + - uid: 19569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-32.5 + parent: 2 + - uid: 19570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-31.5 + parent: 2 + - uid: 19571 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 2 + - uid: 19572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-32.5 + parent: 2 + - uid: 19573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-32.5 + parent: 2 + - uid: 19574 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 2 +- proto: TablePlasmaGlass + entities: + - uid: 19575 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 + - uid: 19576 + components: + - type: Transform + pos: 19.5,32.5 + parent: 2 + - uid: 19577 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 19578 + components: + - type: Transform + pos: 17.5,30.5 + parent: 2 + - uid: 19579 + components: + - type: Transform + pos: 17.5,31.5 + parent: 2 + - uid: 19580 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 + - uid: 19581 + components: + - type: Transform + pos: 17.5,33.5 + parent: 2 + - uid: 19582 + components: + - type: Transform + pos: 15.5,36.5 + parent: 2 + - uid: 19583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,45.5 + parent: 2 + - uid: 19584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,45.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 19585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,26.5 + parent: 2 + - uid: 19586 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 2 + - uid: 19587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-3.5 + parent: 2 + - uid: 19588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-4.5 + parent: 2 + - uid: 19589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-5.5 + parent: 2 + - uid: 19590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-6.5 + parent: 2 + - uid: 19591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-6.5 + parent: 2 + - uid: 19592 + components: + - type: Transform + pos: -27.5,5.5 + parent: 2 + - uid: 19593 + components: + - type: Transform + pos: -28.5,5.5 + parent: 2 + - uid: 19594 + components: + - type: Transform + pos: -43.5,10.5 + parent: 2 + - uid: 19595 + components: + - type: Transform + pos: -43.5,11.5 + parent: 2 + - uid: 19596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,6.5 + parent: 2 + - uid: 19597 + components: + - type: Transform + pos: -31.5,17.5 + parent: 2 + - uid: 19598 + components: + - type: Transform + pos: -31.5,16.5 + parent: 2 + - uid: 19599 + components: + - type: Transform + pos: -35.5,17.5 + parent: 2 + - uid: 19600 + components: + - type: Transform + pos: -35.5,16.5 + parent: 2 + - uid: 19601 + components: + - type: Transform + pos: -33.5,17.5 + parent: 2 + - uid: 19602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,15.5 + parent: 2 + - uid: 19603 + components: + - type: Transform + pos: -33.5,-25.5 + parent: 2 + - uid: 19604 + components: + - type: Transform + pos: -27.5,-21.5 + parent: 2 + - uid: 19605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-30.5 + parent: 2 + - uid: 19606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-29.5 + parent: 2 + - uid: 19607 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 2 + - uid: 19608 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 2 + - uid: 19609 + components: + - type: Transform + pos: -26.5,-20.5 + parent: 2 + - uid: 19610 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 2 + - uid: 19611 + components: + - type: Transform + pos: -25.5,-24.5 + parent: 2 + - uid: 19612 + components: + - type: Transform + pos: -26.5,-23.5 + parent: 2 + - uid: 19613 + components: + - type: Transform + pos: -19.5,-24.5 + parent: 2 + - uid: 19614 + components: + - type: Transform + pos: -19.5,-22.5 + parent: 2 + - uid: 19615 + components: + - type: Transform + pos: -19.5,-20.5 + parent: 2 + - uid: 19616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-22.5 + parent: 2 + - uid: 19617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-22.5 + parent: 2 + - uid: 19618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-30.5 + parent: 2 + - uid: 19619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-31.5 + parent: 2 + - uid: 19620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-31.5 + parent: 2 + - uid: 19621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-34.5 + parent: 2 + - uid: 19622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-30.5 + parent: 2 + - uid: 19623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-31.5 + parent: 2 + - uid: 19624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-30.5 + parent: 2 + - uid: 19625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-31.5 + parent: 2 + - uid: 19626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-33.5 + parent: 2 + - uid: 19627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-35.5 + parent: 2 + - uid: 19628 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 2 + - uid: 19629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-41.5 + parent: 2 + - uid: 19630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-44.5 + parent: 2 + - uid: 19631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-47.5 + parent: 2 + - uid: 19632 + components: + - type: Transform + pos: -47.5,-31.5 + parent: 2 + - uid: 19633 + components: + - type: Transform + pos: -47.5,-30.5 + parent: 2 + - uid: 19634 + components: + - type: Transform + pos: -47.5,-32.5 + parent: 2 + - uid: 19635 + components: + - type: Transform + pos: -46.5,-32.5 + parent: 2 + - uid: 19636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-49.5 + parent: 2 + - uid: 19637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-50.5 + parent: 2 + - uid: 19638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-1.5 + parent: 2 + - uid: 19639 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 2 + - uid: 19640 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 2 + - uid: 19641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,11.5 + parent: 2 + - uid: 19642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,10.5 + parent: 2 + - uid: 19643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,9.5 + parent: 2 + - uid: 19644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,9.5 + parent: 2 + - uid: 19645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,9.5 + parent: 2 + - uid: 19646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,9.5 + parent: 2 + - uid: 19647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,9.5 + parent: 2 + - uid: 19648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,10.5 + parent: 2 + - uid: 19649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,11.5 + parent: 2 + - uid: 19650 + components: + - type: Transform + pos: 20.5,15.5 + parent: 2 + - uid: 19651 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - uid: 19652 + components: + - type: Transform + pos: 24.5,15.5 + parent: 2 + - uid: 19653 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 + - uid: 19654 + components: + - type: Transform + pos: 26.5,15.5 + parent: 2 + - uid: 19655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,12.5 + parent: 2 + - uid: 19656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,12.5 + parent: 2 + - uid: 19657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,12.5 + parent: 2 + - uid: 19658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,12.5 + parent: 2 + - uid: 19659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,14.5 + parent: 2 + - uid: 19660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,15.5 + parent: 2 + - uid: 19661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,36.5 + parent: 2 + - uid: 19662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-18.5 + parent: 2 + - uid: 19663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-17.5 + parent: 2 + - uid: 19664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-16.5 + parent: 2 + - uid: 19665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,16.5 + parent: 2 + - uid: 19666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,24.5 + parent: 2 + - uid: 19667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,24.5 + parent: 2 + - uid: 19668 + components: + - type: Transform + pos: -13.5,32.5 + parent: 2 + - uid: 19669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,34.5 + parent: 2 + - uid: 19670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,33.5 + parent: 2 + - uid: 19671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,32.5 + parent: 2 + - uid: 19672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,34.5 + parent: 2 + - uid: 19673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,32.5 + parent: 2 + - uid: 19674 + components: + - type: Transform + pos: -18.5,40.5 + parent: 2 + - uid: 19675 + components: + - type: Transform + pos: -18.5,39.5 + parent: 2 + - uid: 19676 + components: + - type: Transform + pos: -18.5,38.5 + parent: 2 + - uid: 19677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,25.5 + parent: 2 + - uid: 19678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,26.5 + parent: 2 + - uid: 19679 + components: + - type: Transform + pos: -42.5,31.5 + parent: 2 + - uid: 19680 + components: + - type: Transform + pos: -42.5,32.5 + parent: 2 + - uid: 19681 + components: + - type: Transform + pos: -42.5,33.5 + parent: 2 + - uid: 19682 + components: + - type: Transform + pos: -42.5,34.5 + parent: 2 + - uid: 19683 + components: + - type: Transform + pos: -37.5,39.5 + parent: 2 + - uid: 19684 + components: + - type: Transform + pos: -35.5,23.5 + parent: 2 + - uid: 19685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,47.5 + parent: 2 + - uid: 19686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,62.5 + parent: 2 + - uid: 19687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,62.5 + parent: 2 + - uid: 19688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,62.5 + parent: 2 + - uid: 19689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,62.5 + parent: 2 + - uid: 19690 + components: + - type: Transform + pos: 2.5,69.5 + parent: 2 + - uid: 19691 + components: + - type: Transform + pos: 0.5,69.5 + parent: 2 + - uid: 19692 + components: + - type: Transform + pos: -0.5,69.5 + parent: 2 + - uid: 19693 + components: + - type: Transform + pos: -0.5,72.5 + parent: 2 + - uid: 19694 + components: + - type: Transform + pos: 3.5,72.5 + parent: 2 + - uid: 19695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,74.5 + parent: 2 + - uid: 19696 + components: + - type: Transform + pos: 9.5,82.5 + parent: 2 + - uid: 19697 + components: + - type: Transform + pos: 9.5,83.5 + parent: 2 + - uid: 19698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,85.5 + parent: 2 + - uid: 19699 + components: + - type: Transform + pos: -6.5,82.5 + parent: 2 + - uid: 19700 + components: + - type: Transform + pos: -6.5,83.5 + parent: 2 + - uid: 19701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,80.5 + parent: 2 + - uid: 19702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,80.5 + parent: 2 + - uid: 19703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,79.5 + parent: 2 + - uid: 19704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,78.5 + parent: 2 + - uid: 19705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,74.5 + parent: 2 + - uid: 19706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,74.5 + parent: 2 + - uid: 19707 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 2 + - uid: 19708 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 2 + - uid: 19709 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 2 + - uid: 19710 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 2 + - uid: 19711 + components: + - type: Transform + pos: 39.5,-26.5 + parent: 2 + - uid: 19712 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 2 + - uid: 19713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-28.5 + parent: 2 + - uid: 19714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-28.5 + parent: 2 + - uid: 19715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-30.5 + parent: 2 + - uid: 19716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-19.5 + parent: 2 + - uid: 19717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 2 + - uid: 19718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-20.5 + parent: 2 + - uid: 19719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-20.5 + parent: 2 + - uid: 19721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-43.5 + parent: 2 + - uid: 19722 + components: + - type: Transform + pos: 1.5,-44.5 + parent: 2 + - uid: 19723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-44.5 + parent: 2 + - uid: 19724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-44.5 + parent: 2 + - uid: 19725 + components: + - type: Transform + pos: 5.5,-49.5 + parent: 2 + - uid: 19726 + components: + - type: Transform + pos: 2.5,-50.5 + parent: 2 + - uid: 19727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-50.5 + parent: 2 + - uid: 19728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-51.5 + parent: 2 + - uid: 19729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-55.5 + parent: 2 + - uid: 19730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-59.5 + parent: 2 + - uid: 19731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-58.5 + parent: 2 + - uid: 19732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-63.5 + parent: 2 + - uid: 19733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-63.5 + parent: 2 + - uid: 19734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-61.5 + parent: 2 + - uid: 19735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-61.5 + parent: 2 + - uid: 19736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-61.5 + parent: 2 + - uid: 19737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-55.5 + parent: 2 + - uid: 19738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-55.5 + parent: 2 + - uid: 19739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,25.5 + parent: 2 + - uid: 19740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,25.5 + parent: 2 + - uid: 19741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,27.5 + parent: 2 + - uid: 19742 + components: + - type: Transform + pos: -6.5,-62.5 + parent: 2 + - uid: 19743 + components: + - type: Transform + pos: -7.5,-62.5 + parent: 2 + - uid: 19744 + components: + - type: Transform + pos: -5.5,-62.5 + parent: 2 + - uid: 19745 + components: + - type: Transform + pos: -7.5,-63.5 + parent: 2 + - uid: 19746 + components: + - type: Transform + pos: -7.5,-64.5 + parent: 2 + - uid: 19747 + components: + - type: Transform + pos: -7.5,-65.5 + parent: 2 + - uid: 19748 + components: + - type: Transform + pos: -7.5,-66.5 + parent: 2 + - uid: 19749 + components: + - type: Transform + pos: 29.5,-52.5 + parent: 2 + - uid: 19750 + components: + - type: Transform + pos: 29.5,-51.5 + parent: 2 + - uid: 19751 + components: + - type: Transform + pos: 30.5,-52.5 + parent: 2 + - uid: 19752 + components: + - type: Transform + pos: 30.5,-51.5 + parent: 2 + - uid: 19753 + components: + - type: Transform + pos: 25.5,-62.5 + parent: 2 + - uid: 19754 + components: + - type: Transform + pos: 26.5,-62.5 + parent: 2 + - uid: 19755 + components: + - type: Transform + pos: 27.5,-62.5 + parent: 2 + - uid: 19756 + components: + - type: Transform + pos: 28.5,-62.5 + parent: 2 + - uid: 19757 + components: + - type: Transform + pos: 29.5,-62.5 + parent: 2 + - uid: 19758 + components: + - type: Transform + pos: -25.5,6.5 + parent: 2 + - uid: 21938 + components: + - type: Transform + pos: 0.5,-43.5 + parent: 2 +- proto: TableReinforcedGlass + entities: + - uid: 19759 + components: + - type: Transform + pos: -41.5,-33.5 + parent: 2 + - uid: 19760 + components: + - type: Transform + pos: -41.5,-32.5 + parent: 2 +- proto: TableStone + entities: + - uid: 19761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 2 + - uid: 19762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 2 + - uid: 19763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 2 + - uid: 19764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,44.5 + parent: 2 + - uid: 19765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,44.5 + parent: 2 + - uid: 19766 + components: + - type: Transform + pos: 7.5,44.5 + parent: 2 +- proto: TableWood + entities: + - uid: 19767 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 2 + - uid: 19768 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 + - uid: 19769 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 2 + - uid: 19770 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 2 + - uid: 19771 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 + - uid: 19772 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 2 + - uid: 19773 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 2 + - uid: 19774 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 + - uid: 19775 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 2 + - uid: 19776 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - uid: 19777 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 2 + - uid: 19778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,13.5 + parent: 2 + - uid: 19779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,13.5 + parent: 2 + - uid: 19780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,13.5 + parent: 2 + - uid: 19781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,13.5 + parent: 2 + - uid: 19782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,15.5 + parent: 2 + - uid: 19783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,15.5 + parent: 2 + - uid: 19784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,15.5 + parent: 2 + - uid: 19785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,11.5 + parent: 2 + - uid: 19786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,11.5 + parent: 2 + - uid: 19787 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - uid: 19788 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 + - uid: 19789 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - uid: 19790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-64.5 + parent: 2 + - uid: 19791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-64.5 + parent: 2 + - uid: 19792 + components: + - type: Transform + pos: -22.5,-62.5 + parent: 2 + - uid: 19793 + components: + - type: Transform + pos: -22.5,-63.5 + parent: 2 + - uid: 19794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,5.5 + parent: 2 + - uid: 19795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,4.5 + parent: 2 + - uid: 19796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,5.5 + parent: 2 + - uid: 19797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,4.5 + parent: 2 + - uid: 19798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,5.5 + parent: 2 + - uid: 19799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,4.5 + parent: 2 + - uid: 19800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,5.5 + parent: 2 + - uid: 19801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,4.5 + parent: 2 + - uid: 19802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,9.5 + parent: 2 + - uid: 19803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,8.5 + parent: 2 + - uid: 19805 + components: + - type: Transform + pos: 15.5,18.5 + parent: 2 + - uid: 19806 + components: + - type: Transform + pos: 35.5,11.5 + parent: 2 + - uid: 19807 + components: + - type: Transform + pos: 40.5,12.5 + parent: 2 + - uid: 19808 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - uid: 19809 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 + - uid: 19810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,5.5 + parent: 2 + - uid: 19811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,4.5 + parent: 2 + - uid: 19812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,4.5 + parent: 2 + - uid: 19813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,3.5 + parent: 2 + - uid: 19814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,1.5 + parent: 2 + - uid: 19815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,0.5 + parent: 2 + - uid: 19816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,3.5 + parent: 2 + - uid: 19817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,4.5 + parent: 2 + - uid: 19818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,3.5 + parent: 2 + - uid: 19819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,4.5 + parent: 2 + - uid: 19820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,4.5 + parent: 2 + - uid: 19821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,3.5 + parent: 2 + - uid: 19822 + components: + - type: Transform + pos: 11.5,26.5 + parent: 2 + - uid: 19823 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 + - uid: 19824 + components: + - type: Transform + pos: 13.5,27.5 + parent: 2 + - uid: 19825 + components: + - type: Transform + pos: 12.5,27.5 + parent: 2 + - uid: 19826 + components: + - type: Transform + pos: 25.5,33.5 + parent: 2 + - uid: 19827 + components: + - type: Transform + pos: 25.5,29.5 + parent: 2 + - uid: 19828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,34.5 + parent: 2 + - uid: 19829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,35.5 + parent: 2 + - uid: 19830 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 + - uid: 19831 + components: + - type: Transform + pos: 14.5,42.5 + parent: 2 + - uid: 19832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,35.5 + parent: 2 + - uid: 19833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,36.5 + parent: 2 + - uid: 19834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,38.5 + parent: 2 + - uid: 19835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,39.5 + parent: 2 + - uid: 19836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-2.5 + parent: 2 + - uid: 19837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-2.5 + parent: 2 + - uid: 19838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-3.5 + parent: 2 + - uid: 19839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-3.5 + parent: 2 + - uid: 19840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,22.5 + parent: 2 + - uid: 19841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,22.5 + parent: 2 + - uid: 19842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,22.5 + parent: 2 + - uid: 19843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,21.5 + parent: 2 + - uid: 19844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,20.5 + parent: 2 + - uid: 19845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,40.5 + parent: 2 + - uid: 19846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,40.5 + parent: 2 + - uid: 19847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,40.5 + parent: 2 + - uid: 19848 + components: + - type: Transform + pos: -26.5,43.5 + parent: 2 + - uid: 19849 + components: + - type: Transform + pos: -26.5,44.5 + parent: 2 + - uid: 19850 + components: + - type: Transform + pos: -26.5,45.5 + parent: 2 + - uid: 19851 + components: + - type: Transform + pos: -28.5,30.5 + parent: 2 + - uid: 19852 + components: + - type: Transform + pos: -25.5,27.5 + parent: 2 + - uid: 19853 + components: + - type: Transform + pos: -8.5,48.5 + parent: 2 + - uid: 19854 + components: + - type: Transform + pos: -8.5,49.5 + parent: 2 + - uid: 19855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,51.5 + parent: 2 + - uid: 19856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,52.5 + parent: 2 + - uid: 19857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,53.5 + parent: 2 + - uid: 19858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,54.5 + parent: 2 + - uid: 19859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,55.5 + parent: 2 + - uid: 19860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,56.5 + parent: 2 + - uid: 19861 + components: + - type: Transform + pos: -2.5,56.5 + parent: 2 + - uid: 19862 + components: + - type: Transform + pos: -2.5,55.5 + parent: 2 + - uid: 19863 + components: + - type: Transform + pos: 10.5,52.5 + parent: 2 + - uid: 19864 + components: + - type: Transform + pos: 10.5,53.5 + parent: 2 + - uid: 19865 + components: + - type: Transform + pos: 10.5,54.5 + parent: 2 + - uid: 19866 + components: + - type: Transform + pos: 10.5,55.5 + parent: 2 + - uid: 19867 + components: + - type: Transform + pos: 9.5,54.5 + parent: 2 + - uid: 19868 + components: + - type: Transform + pos: 8.5,54.5 + parent: 2 + - uid: 19869 + components: + - type: Transform + pos: 7.5,54.5 + parent: 2 + - uid: 19870 + components: + - type: Transform + pos: 41.5,-18.5 + parent: 2 + - uid: 19871 + components: + - type: Transform + pos: 40.5,-18.5 + parent: 2 + - uid: 19872 + components: + - type: Transform + pos: 40.5,-14.5 + parent: 2 + - uid: 19873 + components: + - type: Transform + pos: 46.5,-20.5 + parent: 2 + - uid: 19874 + components: + - type: Transform + pos: 45.5,-20.5 + parent: 2 + - uid: 19875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-25.5 + parent: 2 + - uid: 19876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-25.5 + parent: 2 + - uid: 19877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-34.5 + parent: 2 + - uid: 19878 + components: + - type: Transform + pos: -24.5,45.5 + parent: 2 + - uid: 22838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,16.5 + parent: 2 +- proto: TargetClown + entities: + - uid: 19879 + components: + - type: Transform + pos: -24.5,-47.5 + parent: 2 + - uid: 19880 + components: + - type: Transform + pos: -79.5,-52.5 + parent: 2 + - uid: 19881 + components: + - type: Transform + pos: -24.5,-41.5 + parent: 2 + - uid: 19882 + components: + - type: Transform + pos: -41.5,31.5 + parent: 2 +- proto: TargetHuman + entities: + - uid: 19883 + components: + - type: Transform + pos: -40.5,31.5 + parent: 2 +- proto: TargetStrange + entities: + - uid: 19884 + components: + - type: Transform + pos: -80.5,-54.5 + parent: 2 +- proto: TargetSyndicate + entities: + - uid: 19885 + components: + - type: Transform + pos: -80.5,-50.5 + parent: 2 +- proto: TechnologyDisk + entities: + - uid: 19886 + components: + - type: Transform + pos: -27.669891,-44.49347 + parent: 2 + - uid: 19887 + components: + - type: Transform + pos: -25.293148,-39.587933 + parent: 2 + - uid: 19888 + components: + - type: Transform + pos: -23.605503,-39.354836 + parent: 2 +- proto: TegCenter + entities: + - uid: 19889 + components: + - type: Transform + pos: 13.5,-44.5 + parent: 2 +- proto: TegCirculator + entities: + - uid: 19890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-45.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' + - uid: 19891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-43.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' +- proto: TelecomServer + entities: + - uid: 10743 + components: + - type: Transform + pos: 4.5,42.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10744 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10746 + components: + - type: Transform + pos: 5.5,42.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10747 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10749 + components: + - type: Transform + pos: 7.5,42.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10750 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10752 + components: + - type: Transform + pos: 7.5,41.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10753 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10755 + components: + - type: Transform + pos: 5.5,41.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10756 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10759 + components: + - type: Transform + pos: 7.5,39.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10760 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10762 + components: + - type: Transform + pos: 8.5,42.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10763 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10765 + components: + - type: Transform + pos: 5.5,39.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10766 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] +- proto: TeslaCoil + entities: + - uid: 14818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-57.5 + parent: 2 + - uid: 15545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-57.5 + parent: 2 +- proto: TeslaGenerator + entities: + - uid: 14819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-57.5 + parent: 2 +- proto: TeslaGroundingRod + entities: + - uid: 24023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-70.5 + parent: 2 + - uid: 24024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-68.5 + parent: 2 +- proto: ThermomachineHeaterMachineCircuitBoard + entities: + - uid: 19892 + components: + - type: Transform + pos: 29.538464,-39.41129 + parent: 2 +- proto: TimerTrigger + entities: + - uid: 19893 + components: + - type: Transform + pos: -36.527496,-51.595573 + parent: 2 + - uid: 19894 + components: + - type: Transform + pos: -36.713974,-51.41531 + parent: 2 + - uid: 19895 + components: + - type: Transform + pos: -36.403175,-51.278557 + parent: 2 + - uid: 19896 + components: + - type: Transform + pos: -41.403442,-33.60449 + parent: 2 + - uid: 19897 + components: + - type: Transform + pos: -41.403442,-33.60449 + parent: 2 +- proto: TintedWindow + entities: + - uid: 19898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,10.5 + parent: 2 + - uid: 19899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,12.5 + parent: 2 + - uid: 19900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,36.5 + parent: 2 + - uid: 19901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,26.5 + parent: 2 + - uid: 19902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,26.5 + parent: 2 +- proto: ToiletDirtyWater + entities: + - uid: 19903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,24.5 + parent: 2 + - uid: 19904 + components: + - type: Transform + pos: -34.5,39.5 + parent: 2 + - uid: 19905 + components: + - type: Transform + pos: -34.5,36.5 + parent: 2 + - uid: 19906 + components: + - type: Transform + pos: -34.5,33.5 + parent: 2 +- proto: ToiletEmpty + entities: + - uid: 19907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,50.5 + parent: 2 +- proto: ToolboxArtistic + entities: + - uid: 19908 + components: + - type: Transform + pos: -36.508865,-62.37472 + parent: 2 +- proto: ToolboxElectricalFilled + entities: + - uid: 19909 + components: + - type: Transform + pos: 10.568084,19.735395 + parent: 2 + - uid: 19910 + components: + - type: Transform + pos: 10.400251,19.525606 + parent: 2 + - uid: 19911 + components: + - type: Transform + pos: -19.435326,-24.469978 + parent: 2 + - uid: 19912 + components: + - type: Transform + pos: -6.5703607,-21.23436 + parent: 2 + - uid: 19913 + components: + - type: Transform + pos: -31.5038,-60.377403 + parent: 2 + - uid: 19914 + components: + - type: Transform + pos: -6.555467,75.76762 + parent: 2 +- proto: ToolboxEmergencyFilled + entities: + - uid: 997 + components: + - type: Transform + parent: 995 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19915 + components: + - type: Transform + pos: -43.44388,-9.244297 + parent: 2 + - uid: 19916 + components: + - type: Transform + pos: -38.526768,-16.238062 + parent: 2 + - uid: 19917 + components: + - type: Transform + pos: -38.442932,-16.377728 + parent: 2 + - uid: 19918 + components: + - type: Transform + pos: -34.545593,-28.449944 + parent: 2 + - uid: 19919 + components: + - type: Transform + pos: -47.381298,-32.202427 + parent: 2 + - uid: 19920 + components: + - type: Transform + pos: -8.457224,37.476273 + parent: 2 +- proto: ToolboxGoldFilled + entities: + - uid: 9173 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 +- proto: ToolboxMechanicalFilled + entities: + - uid: 15877 + components: + - type: Transform + parent: 15876 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19921 + components: + - type: Transform + pos: 4.453135,16.575903 + parent: 2 + - uid: 19922 + components: + - type: Transform + pos: 4.518403,16.762384 + parent: 2 + - uid: 19923 + components: + - type: Transform + pos: 4.4717827,16.976835 + parent: 2 + - uid: 19924 + components: + - type: Transform + pos: -38.540737,-19.57605 + parent: 2 + - uid: 19925 + components: + - type: Transform + pos: -38.456905,-19.478285 + parent: 2 + - uid: 19926 + components: + - type: Transform + pos: -38.6106,-19.338621 + parent: 2 + - uid: 19927 + components: + - type: Transform + pos: -36.50349,-24.459915 + parent: 2 + - uid: 19928 + components: + - type: Transform + pos: -34.461678,-28.226166 + parent: 2 + - uid: 19929 + components: + - type: Transform + pos: -19.56586,-24.227554 + parent: 2 + - uid: 19930 + components: + - type: Transform + pos: -6.5050926,-21.430162 + parent: 2 + - uid: 19931 + components: + - type: Transform + pos: -44.55955,-38.22259 + parent: 2 + - uid: 19932 + components: + - type: Transform + pos: -44.48962,-38.348465 + parent: 2 + - uid: 19933 + components: + - type: Transform + pos: -47.465214,-31.95068 + parent: 2 + - uid: 19934 + components: + - type: Transform + pos: -11.517578,-53.4752 + parent: 2 + - uid: 19935 + components: + - type: Transform + pos: 41.28955,19.715477 + parent: 2 + - uid: 19936 + components: + - type: Transform + pos: -14.486763,34.5394 + parent: 2 + - uid: 19937 + components: + - type: Transform + pos: -8.559227,37.743702 + parent: 2 + - uid: 19938 + components: + - type: Transform + pos: -6.429593,75.50188 + parent: 2 + - uid: 19939 + components: + - type: Transform + pos: 28.511677,-14.453636 + parent: 2 +- proto: ToyAi + entities: + - uid: 19940 + components: + - type: Transform + pos: 1.4992511,77.624275 + parent: 2 +- proto: ToyAmongPequeno + entities: + - uid: 19941 + components: + - type: Transform + pos: 12.5,30.5 + parent: 2 +- proto: ToyFigurineBartender + entities: + - uid: 19942 + components: + - type: Transform + pos: 19.382366,12.697111 + parent: 2 +- proto: ToyFigurineCaptain + entities: + - uid: 19943 + components: + - type: Transform + pos: -8.336638,55.082047 + parent: 2 +- proto: ToyFigurineChef + entities: + - uid: 19944 + components: + - type: Transform + pos: 23.744114,17.729523 + parent: 2 +- proto: ToyFigurineChiefEngineer + entities: + - uid: 19945 + components: + - type: Transform + pos: 11.694183,-50.93051 + parent: 2 +- proto: ToyFigurineChiefMedicalOfficer + entities: + - uid: 19946 + components: + - type: Transform + pos: 25.700378,-19.332878 + parent: 2 +- proto: ToyFigurineClown + entities: + - uid: 10543 + components: + - type: Transform + parent: 10524 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 19947 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 19948 + components: + - type: Transform + pos: 40.7377,12.566254 + parent: 2 +- proto: ToyFigurineFootsoldier + entities: + - uid: 19949 + components: + - type: Transform + pos: -39.551273,34.797108 + parent: 2 +- proto: ToyFigurineHeadOfPersonnel + entities: + - uid: 19950 + components: + - type: Transform + pos: 6.654764,48.889687 + parent: 2 +- proto: ToyFigurineJanitor + entities: + - uid: 19951 + components: + - type: Transform + pos: 7.476756,13.849148 + parent: 2 +- proto: ToyFigurineLawyer + entities: + - uid: 19952 + components: + - type: Transform + pos: -3.016523,14.815199 + parent: 2 +- proto: ToyFigurineLibrarian + entities: + - uid: 19953 + components: + - type: Transform + pos: 42.899353,4.4172344 + parent: 2 +- proto: ToyFigurineMime + entities: + - uid: 10512 + components: + - type: Transform + parent: 10501 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 19954 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 19955 + components: + - type: Transform + pos: 40.7377,13.181639 + parent: 2 +- proto: ToyFigurineMusician + entities: + - uid: 19956 + components: + - type: Transform + pos: 40.318123,14.048771 + parent: 2 +- proto: ToyFigurineNukie + entities: + - uid: 19957 + components: + - type: Transform + pos: -39.339928,34.69765 + parent: 2 +- proto: ToyFigurineNukieElite + entities: + - uid: 19958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.40407538,-53.633064 + parent: 2 +- proto: ToyFigurineParamedic + entities: + - uid: 19959 + components: + - type: Transform + pos: 9.115516,-20.41076 + parent: 2 +- proto: ToyFigurineQuartermaster + entities: + - uid: 19960 + components: + - type: Transform + pos: -27.230625,5.716192 + parent: 2 +- proto: ToyFigurineQueen + entities: + - uid: 19961 + components: + - type: Transform + pos: 43.440147,4.333318 + parent: 2 +- proto: ToyFigurineResearchDirector + entities: + - uid: 19962 + components: + - type: Transform + pos: -15.687011,-22.381687 + parent: 2 +- proto: ToyFigurineSalvage + entities: + - uid: 19963 + components: + - type: Transform + pos: -43.548775,-9.3911495 + parent: 2 +- proto: ToyFigurineScientist + entities: + - uid: 19964 + components: + - type: Transform + pos: -27.35825,-21.383192 + parent: 2 +- proto: ToyFigurineSecurity + entities: + - uid: 19965 + components: + - type: Transform + pos: 3.8376749,62.768875 + parent: 2 +- proto: ToyFigurineWarden + entities: + - uid: 19966 + components: + - type: Transform + pos: 3.1570222,62.66631 + parent: 2 +- proto: ToyFigurineWizardFake + entities: + - uid: 19967 + components: + - type: Transform + pos: -26.585339,-67.36029 + parent: 2 + - uid: 19968 + components: + - type: Transform + pos: 30.784172,-6.8009963 + parent: 2 +- proto: ToyNuke + entities: + - uid: 19969 + components: + - type: Transform + pos: -80.53846,-52.465786 + parent: 2 +- proto: ToyRubberDuck + entities: + - uid: 19970 + components: + - type: Transform + pos: 40.674366,21.842209 + parent: 2 + - uid: 19971 + components: + - type: Transform + pos: -8.639301,49.365543 + parent: 2 +- proto: TrainingBomb + entities: + - uid: 19972 + components: + - type: Transform + pos: -17.5,40.5 + parent: 2 +- proto: TrashBananaPeel + entities: + - uid: 19973 + components: + - type: Transform + pos: 32.515907,9.50536 + parent: 2 + - uid: 19974 + components: + - type: Transform + pos: -27.531189,16.470947 + parent: 2 + - uid: 19975 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 2 +- proto: TwoWayLever + entities: + - uid: 19976 + components: + - type: Transform + pos: -39.5,11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23355: + - Left: Open + - Right: Open + - Middle: Close + 23354: + - Left: Close + - Right: Close + - Middle: Open + - uid: 19977 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9128: + - Left: Forward + - Right: Reverse + - Middle: Off + 9127: + - Left: Forward + - Right: Reverse + - Middle: Off + 9126: + - Left: Forward + - Right: Reverse + - Middle: Off + 9125: + - Left: Forward + - Right: Reverse + - Middle: Off + 9124: + - Left: Forward + - Right: Reverse + - Middle: Off + 9123: + - Left: Forward + - Right: Reverse + - Middle: Off + 9122: + - Left: Forward + - Right: Reverse + - Middle: Off + 9121: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 19978 + components: + - type: Transform + pos: -42.5,3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9129: + - Left: Forward + - Right: Reverse + - Middle: Off + 9130: + - Left: Forward + - Right: Reverse + - Middle: Off + 9131: + - Left: Forward + - Right: Reverse + - Middle: Off + 9132: + - Left: Forward + - Right: Reverse + - Middle: Off + 9133: + - Left: Forward + - Right: Reverse + - Middle: Off + 9134: + - Left: Forward + - Right: Reverse + - Middle: Off + 9135: + - Left: Forward + - Right: Reverse + - Middle: Off + 9136: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 19979 + components: + - type: Transform + pos: -42.5,11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9103: + - Left: Forward + - Right: Reverse + - Middle: Off + 9104: + - Left: Forward + - Right: Reverse + - Middle: Off + 9105: + - Left: Forward + - Right: Reverse + - Middle: Off + 9106: + - Left: Forward + - Right: Reverse + - Middle: Off + 9107: + - Left: Forward + - Right: Reverse + - Middle: Off + 9108: + - Left: Forward + - Right: Reverse + - Middle: Off + 9109: + - Left: Forward + - Right: Reverse + - Middle: Off + 9110: + - Left: Forward + - Right: Reverse + - Middle: Off + 9111: + - Left: Forward + - Right: Reverse + - Middle: Off + 9112: + - Left: Forward + - Right: Reverse + - Middle: Off + 9113: + - Left: Forward + - Right: Reverse + - Middle: Off + 9114: + - Left: Forward + - Right: Reverse + - Middle: Off + 9115: + - Left: Forward + - Right: Reverse + - Middle: Off + 9116: + - Left: Forward + - Right: Reverse + - Middle: Off + 9117: + - Left: Forward + - Right: Reverse + - Middle: Off + 9118: + - Left: Forward + - Right: Reverse + - Middle: Off + 9119: + - Left: Forward + - Right: Reverse + - Middle: Off + 9120: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 19980 + components: + - type: Transform + pos: -42.5,15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9145: + - Left: Forward + - Right: Reverse + - Middle: Off + 9146: + - Left: Forward + - Right: Reverse + - Middle: Off + 9147: + - Left: Forward + - Right: Reverse + - Middle: Off + 9148: + - Left: Forward + - Right: Reverse + - Middle: Off + 9149: + - Left: Forward + - Right: Reverse + - Middle: Off + 9150: + - Left: Forward + - Right: Reverse + - Middle: Off + 9151: + - Left: Forward + - Right: Reverse + - Middle: Off + 9152: + - Left: Forward + - Right: Reverse + - Middle: Off + 9153: + - Left: Forward + - Right: Reverse + - Middle: Off + 9154: + - Left: Forward + - Right: Reverse + - Middle: Off + 9155: + - Left: Forward + - Right: Reverse + - Middle: Off + 9156: + - Left: Forward + - Right: Reverse + - Middle: Off + 17545: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 19981 + components: + - type: Transform + pos: 0.98919,61.763584 + parent: 2 + - uid: 19982 + components: + - type: Transform + pos: 19.5,45.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1009: + - Left: Open + - Right: Open + - Middle: Close + - uid: 19983 + components: + - type: Transform + pos: 21.5,45.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9158: + - Left: Forward + - Right: Reverse + - Middle: Off + 9157: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 19984 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9099: + - Left: Forward + - Right: Reverse + - Middle: Off + 9098: + - Left: Forward + - Right: Reverse + - Middle: Off + 9159: + - Left: Forward + - Right: Reverse + - Middle: Off + 9102: + - Left: Forward + - Right: Reverse + - Middle: Off + 9101: + - Left: Forward + - Right: Reverse + - Middle: Off + 9100: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: UnfinishedMachineFrame + entities: + - uid: 19985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-11.5 + parent: 2 + - uid: 19986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,35.5 + parent: 2 + - uid: 19987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,7.5 + parent: 2 + - uid: 19988 + components: + - type: Transform + pos: -18.5,-14.5 + parent: 2 + - uid: 19989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-27.5 + parent: 2 + - uid: 19990 + components: + - type: Transform + pos: -21.5,-36.5 + parent: 2 + - uid: 19991 + components: + - type: Transform + pos: 19.5,27.5 + parent: 2 +- proto: UniformPrinter + entities: + - uid: 19993 + components: + - type: Transform + pos: 6.5,49.5 + parent: 2 +- proto: UniformScrubsColorGreen + entities: + - uid: 19994 + components: + - type: Transform + pos: 10.509234,-36.60511 + parent: 2 +- proto: UnstableMutagenChemistryBottle + entities: + - uid: 10579 + components: + - type: Transform + parent: 10576 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10580 + components: + - type: Transform + parent: 10576 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Vaccinator + entities: + - uid: 19995 + components: + - type: Transform + pos: 47.5,-30.5 + parent: 2 +- proto: VaccinatorMachineCircuitboard + entities: + - uid: 8635 + components: + - type: Transform + parent: 8628 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: VariantCubeBox + entities: + - uid: 19996 + components: + - type: Transform + pos: -31.47277,17.56227 + parent: 2 + - uid: 19997 + components: + - type: Transform + pos: -22.64478,-30.965834 + parent: 2 + - uid: 19998 + components: + - type: Transform + pos: -6.5973415,-30.622778 + parent: 2 + - uid: 19999 + components: + - type: Transform + pos: -6.4108615,-30.287115 + parent: 2 + - uid: 20000 + components: + - type: Transform + pos: -6.2181654,-30.486027 + parent: 2 + - uid: 20001 + components: + - type: Transform + pos: 47.621708,-29.59404 + parent: 2 + - uid: 20002 + components: + - type: Transform + pos: 47.391716,-29.46972 + parent: 2 +- proto: VendingBarDrobe + entities: + - uid: 20004 + components: + - type: Transform + pos: 15.5,16.5 + parent: 2 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 20005 + components: + - type: Transform + pos: 22.5,-39.5 + parent: 2 +- proto: VendingMachineBooze + entities: + - uid: 20006 + components: + - type: Transform + pos: -24.5,-61.5 + parent: 2 + - uid: 20007 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - uid: 20008 + components: + - type: Transform + pos: -19.5,18.5 + parent: 2 + - uid: 20009 + components: + - type: Transform + pos: -6.5,57.5 + parent: 2 + - uid: 20010 + components: + - type: Transform + pos: 5.5,51.5 + parent: 2 +- proto: VendingMachineCargoDrobe + entities: + - uid: 20011 + components: + - type: Transform + pos: -43.5,8.5 + parent: 2 +- proto: VendingMachineCart + entities: + - uid: 20012 + components: + - type: Transform + pos: 9.5,50.5 + parent: 2 +- proto: VendingMachineChapel + entities: + - uid: 20013 + components: + - type: Transform + pos: 13.5,44.5 + parent: 2 +- proto: VendingMachineChefDrobe + entities: + - uid: 20014 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 +- proto: VendingMachineChefvend + entities: + - uid: 20015 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 2 + - uid: 20016 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 +- proto: VendingMachineChemDrobe + entities: + - uid: 20017 + components: + - type: Transform + pos: 28.5,-18.5 + parent: 2 +- proto: VendingMachineChemicals + entities: + - uid: 20018 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 2 +- proto: VendingMachineCigs + entities: + - uid: 20019 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 20021 + components: + - type: Transform + pos: 27.5,5.5 + parent: 2 + - uid: 20022 + components: + - type: Transform + pos: 34.5,-12.5 + parent: 2 + - uid: 20023 + components: + - type: Transform + pos: 9.5,56.5 + parent: 2 +- proto: VendingMachineClothing + entities: + - uid: 20024 + components: + - type: Transform + pos: 35.5,26.5 + parent: 2 +- proto: VendingMachineCoffee + entities: + - uid: 20025 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 20027 + components: + - type: Transform + pos: -27.5,30.5 + parent: 2 + - uid: 20028 + components: + - type: Transform + pos: 4.5,56.5 + parent: 2 + - uid: 20029 + components: + - type: Transform + pos: -6.5,72.5 + parent: 2 + - uid: 20030 + components: + - type: Transform + pos: 15.5,21.5 + parent: 2 + - uid: 20072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,9.5 + parent: 2 +- proto: VendingMachineCola + entities: + - uid: 20031 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 +- proto: VendingMachineCondiments + entities: + - uid: 20032 + components: + - type: Transform + pos: 22.5,11.5 + parent: 2 +- proto: VendingMachineCourierDrobe + entities: + - uid: 20033 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 +- proto: VendingMachineCuraDrobe + entities: + - uid: 20034 + components: + - type: Transform + pos: 44.5,-1.5 + parent: 2 +- proto: VendingMachineDetDrobe + entities: + - uid: 20035 + components: + - type: Transform + pos: -21.5,18.5 + parent: 2 +- proto: VendingMachineDinnerware + entities: + - uid: 20036 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - uid: 20037 + components: + - type: Transform + pos: 19.5,18.5 + parent: 2 +- proto: VendingMachineDonut + entities: + - uid: 20038 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 +- proto: VendingMachineEngiDrobe + entities: + - uid: 20039 + components: + - type: Transform + pos: -16.5,-59.5 + parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 20040 + components: + - type: Transform + pos: -16.5,-60.5 + parent: 2 + - uid: 20041 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 2 + - uid: 20042 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 +- proto: VendingMachineGames + entities: + - uid: 20043 + components: + - type: Transform + pos: 43.5,9.5 + parent: 2 + - uid: 20044 + components: + - type: Transform + pos: -40.5,37.5 + parent: 2 +- proto: VendingMachineGeneDrobe + entities: + - uid: 20045 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 2 +- proto: VendingMachineHydrobe + entities: + - uid: 20046 + components: + - type: Transform + pos: 43.5,19.5 + parent: 2 +- proto: VendingMachineJaniDrobe + entities: + - uid: 20047 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 +- proto: VendingMachineLawDrobe + entities: + - uid: 20048 + components: + - type: Transform + pos: -6.5,16.5 + parent: 2 +- proto: VendingMachineMedical + entities: + - uid: 20049 + components: + - type: Transform + pos: -26.5,36.5 + parent: 2 + - uid: 20050 + components: + - type: Transform + pos: 9.5,72.5 + parent: 2 + - uid: 20051 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 2 + - uid: 20052 + components: + - type: Transform + pos: 42.5,-33.5 + parent: 2 + - uid: 20053 + components: + - type: Transform + pos: 23.5,-28.5 + parent: 2 + - uid: 20054 + components: + - type: Transform + pos: 41.5,-20.5 + parent: 2 +- proto: VendingMachineMediDrobe + entities: + - uid: 20055 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 2 +- proto: VendingMachineNutri + entities: + - uid: 20056 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 +- proto: VendingMachineRestockSeeds + entities: + - uid: 20057 + components: + - type: Transform + pos: 32.46631,19.665796 + parent: 2 +- proto: VendingMachineRoboDrobe + entities: + - uid: 20058 + components: + - type: Transform + pos: -22.5,-16.5 + parent: 2 +- proto: VendingMachineSalvage + entities: + - uid: 20059 + components: + - type: Transform + pos: -36.5,-9.5 + parent: 2 +- proto: VendingMachineSciDrobe + entities: + - uid: 20060 + components: + - type: Transform + pos: -36.5,-41.5 + parent: 2 +- proto: VendingMachineSec + entities: + - uid: 20061 + components: + - type: Transform + pos: -9.5,31.5 + parent: 2 +- proto: VendingMachineSecDrobe + entities: + - uid: 20062 + components: + - type: Transform + pos: -27.5,-34.5 + parent: 2 + - uid: 20063 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - uid: 20064 + components: + - type: Transform + pos: 45.5,-16.5 + parent: 2 + - uid: 20065 + components: + - type: Transform + pos: -8.5,34.5 + parent: 2 + - uid: 20066 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 2 +- proto: VendingMachineSeeds + entities: + - uid: 20067 + components: + - type: Transform + pos: 35.5,19.5 + parent: 2 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 20068 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 20069 + components: + - type: Transform + pos: -40.5,30.5 + parent: 2 +- proto: VendingMachineSnack + entities: + - uid: 20070 + components: + - type: Transform + pos: 32.5,-12.5 + parent: 2 +- proto: VendingMachineSnackBlue + entities: + - uid: 20071 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 +- proto: VendingMachineSnackOrange + entities: + - uid: 20073 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 20074 + components: + - type: Transform + pos: 40.5,-20.5 + parent: 2 +- proto: VendingMachineSustenance + entities: + - uid: 20075 + components: + - type: Transform + pos: -38.5,37.5 + parent: 2 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 20076 + components: + - type: Transform + pos: 2.5,-60.5 + parent: 2 + - uid: 20077 + components: + - type: Transform + pos: 18.5,-39.5 + parent: 2 + - uid: 23864 + components: + - type: Transform + pos: -4.5,-62.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 20078 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 2 + - uid: 20079 + components: + - type: Transform + pos: -37.5,-36.5 + parent: 2 + - uid: 20080 + components: + - type: Transform + pos: -34.5,-45.5 + parent: 2 + - uid: 20081 + components: + - type: Transform + pos: -8.5,43.5 + parent: 2 + - uid: 20082 + components: + - type: Transform + pos: -39.5,25.5 + parent: 2 + - uid: 20083 + components: + - type: Transform + pos: 12.5,51.5 + parent: 2 + - uid: 20084 + components: + - type: Transform + pos: 9.5,74.5 + parent: 2 + - uid: 20085 + components: + - type: Transform + pos: 9.5,74.5 + parent: 2 +- proto: VendingMachineTheater + entities: + - uid: 20086 + components: + - type: Transform + pos: 42.5,15.5 + parent: 2 + - uid: 20087 + components: + - type: Transform + pos: 37.5,26.5 + parent: 2 +- proto: VendingMachineVendomat + entities: + - uid: 20088 + components: + - type: Transform + pos: 31.5,5.5 + parent: 2 + - uid: 20089 + components: + - type: Transform + pos: -3.5,4.5 + parent: 2 + - uid: 20090 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 +- proto: VendingMachineViroDrobe + entities: + - uid: 20091 + components: + - type: Transform + pos: 42.5,-34.5 + parent: 2 +- proto: VendingMachineWallMedical + entities: + - uid: 20092 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 20093 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 2 + - uid: 20094 + components: + - type: Transform + pos: 44.5,-19.5 + parent: 2 + - uid: 20095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 2 + - uid: 20096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-26.5 + parent: 2 + - uid: 20097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-33.5 + parent: 2 + - uid: 20098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-33.5 + parent: 2 +- proto: VendingMachineYouTool + entities: + - uid: 20099 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 20100 + components: + - type: Transform + pos: 9.5,71.5 + parent: 2 + - uid: 20101 + components: + - type: Transform + pos: 28.5,-39.5 + parent: 2 + - uid: 20102 + components: + - type: Transform + pos: 3.5,-44.5 + parent: 2 +- proto: WallmountTelescreen + entities: + - uid: 20103 + components: + - type: Transform + pos: -28.5,-33.5 + parent: 2 + - uid: 20104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,26.5 + parent: 2 + - uid: 20105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,36.5 + parent: 2 + - uid: 20106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,26.5 + parent: 2 +- proto: WallmountTelevision + entities: + - uid: 20107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,25.5 + parent: 2 + - uid: 20108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 2 + - uid: 20109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-11.5 + parent: 2 + - uid: 20110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,44.5 + parent: 2 + - uid: 20111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-1.5 + parent: 2 + - uid: 20112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-9.5 + parent: 2 + - uid: 20113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-1.5 + parent: 2 + - uid: 20114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,33.5 + parent: 2 + - uid: 20115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,49.5 + parent: 2 +- proto: WallPlastitanium + entities: + - uid: 20116 + components: + - type: Transform + pos: 27.5,43.5 + parent: 2 + - uid: 20117 + components: + - type: Transform + pos: 31.5,43.5 + parent: 2 + - uid: 20118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,43.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 8905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-40.5 + parent: 2 + - uid: 8906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-50.5 + parent: 2 + - uid: 8907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-49.5 + parent: 2 + - uid: 8924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-49.5 + parent: 2 + - uid: 9024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-49.5 + parent: 2 + - uid: 9025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-19.5 + parent: 2 + - uid: 10585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-19.5 + parent: 2 + - uid: 15837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-19.5 + parent: 2 + - uid: 15838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-19.5 + parent: 2 + - uid: 15933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-19.5 + parent: 2 + - uid: 16025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-19.5 + parent: 2 + - uid: 16026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-19.5 + parent: 2 + - uid: 16027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-20.5 + parent: 2 + - uid: 16028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-20.5 + parent: 2 + - uid: 16029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-20.5 + parent: 2 + - uid: 16048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-20.5 + parent: 2 + - uid: 16072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-17.5 + parent: 2 + - uid: 16073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-16.5 + parent: 2 + - uid: 16074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 2 + - uid: 16075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 2 + - uid: 16324 + components: + - type: Transform + pos: 16.5,-37.5 + parent: 2 + - uid: 17057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-15.5 + parent: 2 + - uid: 17058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-15.5 + parent: 2 + - uid: 17059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-15.5 + parent: 2 + - uid: 17060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-15.5 + parent: 2 + - uid: 17061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-15.5 + parent: 2 + - uid: 17062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-15.5 + parent: 2 + - uid: 17167 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 2 + - uid: 17168 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - uid: 17414 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 + - uid: 18551 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 2 + - uid: 18868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-14.5 + parent: 2 + - uid: 18991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-15.5 + parent: 2 + - uid: 18992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-15.5 + parent: 2 + - uid: 18993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-15.5 + parent: 2 + - uid: 19012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-15.5 + parent: 2 + - uid: 19013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-15.5 + parent: 2 + - uid: 19210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-15.5 + parent: 2 + - uid: 19992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-16.5 + parent: 2 + - uid: 20003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-18.5 + parent: 2 + - uid: 20119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,49.5 + parent: 2 + - uid: 20120 + components: + - type: Transform + pos: 39.5,-54.5 + parent: 2 + - uid: 20121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-60.5 + parent: 2 + - uid: 20122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-61.5 + parent: 2 + - uid: 20123 + components: + - type: Transform + pos: 5.5,23.5 + parent: 2 + - uid: 20124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,25.5 + parent: 2 + - uid: 20125 + components: + - type: Transform + pos: -44.5,19.5 + parent: 2 + - uid: 20126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,27.5 + parent: 2 + - uid: 20127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-59.5 + parent: 2 + - uid: 20128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-58.5 + parent: 2 + - uid: 20129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-57.5 + parent: 2 + - uid: 20130 + components: + - type: Transform + pos: -43.5,19.5 + parent: 2 + - uid: 20131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,54.5 + parent: 2 + - uid: 20132 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 2 + - uid: 20133 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 2 + - uid: 20134 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 2 + - uid: 20135 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 2 + - uid: 20136 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 2 + - uid: 20137 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 2 + - uid: 20138 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 2 + - uid: 20139 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 2 + - uid: 20140 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 2 + - uid: 20141 + components: + - type: Transform + pos: -17.5,-18.5 + parent: 2 + - uid: 20142 + components: + - type: Transform + pos: -23.5,3.5 + parent: 2 + - uid: 20143 + components: + - type: Transform + pos: -24.5,3.5 + parent: 2 + - uid: 20144 + components: + - type: Transform + pos: -22.5,3.5 + parent: 2 + - uid: 20145 + components: + - type: Transform + pos: -27.5,3.5 + parent: 2 + - uid: 20146 + components: + - type: Transform + pos: -28.5,3.5 + parent: 2 + - uid: 20147 + components: + - type: Transform + pos: -29.5,3.5 + parent: 2 + - uid: 20148 + components: + - type: Transform + pos: -30.5,3.5 + parent: 2 + - uid: 20149 + components: + - type: Transform + pos: -31.5,3.5 + parent: 2 + - uid: 20150 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 + - uid: 20151 + components: + - type: Transform + pos: -26.5,3.5 + parent: 2 + - uid: 20152 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 + - uid: 20153 + components: + - type: Transform + pos: -31.5,8.5 + parent: 2 + - uid: 20154 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 20155 + components: + - type: Transform + pos: -29.5,9.5 + parent: 2 + - uid: 20156 + components: + - type: Transform + pos: -28.5,9.5 + parent: 2 + - uid: 20157 + components: + - type: Transform + pos: -27.5,9.5 + parent: 2 + - uid: 20158 + components: + - type: Transform + pos: -26.5,8.5 + parent: 2 + - uid: 20159 + components: + - type: Transform + pos: -26.5,4.5 + parent: 2 + - uid: 20160 + components: + - type: Transform + pos: -26.5,5.5 + parent: 2 + - uid: 20161 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 20162 + components: + - type: Transform + pos: -24.5,8.5 + parent: 2 + - uid: 20163 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - uid: 20164 + components: + - type: Transform + pos: -22.5,6.5 + parent: 2 + - uid: 20165 + components: + - type: Transform + pos: -22.5,5.5 + parent: 2 + - uid: 20166 + components: + - type: Transform + pos: -22.5,4.5 + parent: 2 + - uid: 20167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,13.5 + parent: 2 + - uid: 20168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,13.5 + parent: 2 + - uid: 20169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,14.5 + parent: 2 + - uid: 20170 + components: + - type: Transform + pos: -32.5,13.5 + parent: 2 + - uid: 20171 + components: + - type: Transform + pos: -34.5,13.5 + parent: 2 + - uid: 20172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,13.5 + parent: 2 + - uid: 20173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,13.5 + parent: 2 + - uid: 20174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,13.5 + parent: 2 + - uid: 20175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,13.5 + parent: 2 + - uid: 20176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,13.5 + parent: 2 + - uid: 20177 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 + - uid: 20178 + components: + - type: Transform + pos: -30.5,16.5 + parent: 2 + - uid: 20179 + components: + - type: Transform + pos: -30.5,17.5 + parent: 2 + - uid: 20180 + components: + - type: Transform + pos: -30.5,18.5 + parent: 2 + - uid: 20181 + components: + - type: Transform + pos: -31.5,18.5 + parent: 2 + - uid: 20182 + components: + - type: Transform + pos: -32.5,18.5 + parent: 2 + - uid: 20183 + components: + - type: Transform + pos: -33.5,18.5 + parent: 2 + - uid: 20184 + components: + - type: Transform + pos: -34.5,18.5 + parent: 2 + - uid: 20185 + components: + - type: Transform + pos: -35.5,18.5 + parent: 2 + - uid: 20186 + components: + - type: Transform + pos: -36.5,18.5 + parent: 2 + - uid: 20187 + components: + - type: Transform + pos: -36.5,17.5 + parent: 2 + - uid: 20188 + components: + - type: Transform + pos: -36.5,16.5 + parent: 2 + - uid: 20189 + components: + - type: Transform + pos: -36.5,15.5 + parent: 2 + - uid: 20190 + components: + - type: Transform + pos: -36.5,14.5 + parent: 2 + - uid: 20191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,18.5 + parent: 2 + - uid: 20192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,18.5 + parent: 2 + - uid: 20193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,18.5 + parent: 2 + - uid: 20194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,16.5 + parent: 2 + - uid: 20195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,15.5 + parent: 2 + - uid: 20196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,14.5 + parent: 2 + - uid: 20197 + components: + - type: Transform + pos: -43.5,18.5 + parent: 2 + - uid: 20198 + components: + - type: Transform + pos: -42.5,18.5 + parent: 2 + - uid: 20199 + components: + - type: Transform + pos: -41.5,18.5 + parent: 2 + - uid: 20200 + components: + - type: Transform + pos: -40.5,18.5 + parent: 2 + - uid: 20201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-36.5 + parent: 2 + - uid: 20202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-36.5 + parent: 2 + - uid: 20203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-36.5 + parent: 2 + - uid: 20204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-36.5 + parent: 2 + - uid: 20205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-36.5 + parent: 2 + - uid: 20206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-35.5 + parent: 2 + - uid: 20207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-33.5 + parent: 2 + - uid: 20208 + components: + - type: Transform + pos: -35.5,-44.5 + parent: 2 + - uid: 20209 + components: + - type: Transform + pos: -26.5,-37.5 + parent: 2 + - uid: 20210 + components: + - type: Transform + pos: -26.5,-38.5 + parent: 2 + - uid: 20211 + components: + - type: Transform + pos: -26.5,-39.5 + parent: 2 + - uid: 20212 + components: + - type: Transform + pos: -26.5,-40.5 + parent: 2 + - uid: 20213 + components: + - type: Transform + pos: -26.5,-41.5 + parent: 2 + - uid: 20214 + components: + - type: Transform + pos: -28.5,-42.5 + parent: 2 + - uid: 20215 + components: + - type: Transform + pos: -29.5,-42.5 + parent: 2 + - uid: 20216 + components: + - type: Transform + pos: -30.5,-42.5 + parent: 2 + - uid: 20217 + components: + - type: Transform + pos: -31.5,-42.5 + parent: 2 + - uid: 20218 + components: + - type: Transform + pos: -31.5,-41.5 + parent: 2 + - uid: 20219 + components: + - type: Transform + pos: -31.5,-44.5 + parent: 2 + - uid: 20220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-32.5 + parent: 2 + - uid: 20221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-32.5 + parent: 2 + - uid: 20222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-32.5 + parent: 2 + - uid: 20223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-33.5 + parent: 2 + - uid: 20224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-34.5 + parent: 2 + - uid: 20225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-34.5 + parent: 2 + - uid: 20226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-35.5 + parent: 2 + - uid: 20227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-36.5 + parent: 2 + - uid: 20228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-37.5 + parent: 2 + - uid: 20229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-38.5 + parent: 2 + - uid: 20230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-39.5 + parent: 2 + - uid: 20231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-19.5 + parent: 2 + - uid: 20232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-40.5 + parent: 2 + - uid: 20233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-40.5 + parent: 2 + - uid: 20234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-40.5 + parent: 2 + - uid: 20235 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 2 + - uid: 20236 + components: + - type: Transform + pos: -18.5,-24.5 + parent: 2 + - uid: 20237 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 2 + - uid: 20238 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 2 + - uid: 20239 + components: + - type: Transform + pos: -18.5,-21.5 + parent: 2 + - uid: 20240 + components: + - type: Transform + pos: -18.5,-20.5 + parent: 2 + - uid: 20241 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 2 + - uid: 20242 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 2 + - uid: 20243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-21.5 + parent: 2 + - uid: 20244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-22.5 + parent: 2 + - uid: 20245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-23.5 + parent: 2 + - uid: 20246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-24.5 + parent: 2 + - uid: 20247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-25.5 + parent: 2 + - uid: 20248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-25.5 + parent: 2 + - uid: 20249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-51.5 + parent: 2 + - uid: 20250 + components: + - type: Transform + pos: -19.5,-29.5 + parent: 2 + - uid: 20251 + components: + - type: Transform + pos: -14.5,-29.5 + parent: 2 + - uid: 20252 + components: + - type: Transform + pos: -13.5,-29.5 + parent: 2 + - uid: 20253 + components: + - type: Transform + pos: -12.5,-29.5 + parent: 2 + - uid: 20254 + components: + - type: Transform + pos: -11.5,-29.5 + parent: 2 + - uid: 20255 + components: + - type: Transform + pos: -10.5,-29.5 + parent: 2 + - uid: 20256 + components: + - type: Transform + pos: -9.5,-29.5 + parent: 2 + - uid: 20257 + components: + - type: Transform + pos: -15.5,-29.5 + parent: 2 + - uid: 20258 + components: + - type: Transform + pos: -20.5,-34.5 + parent: 2 + - uid: 20259 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 2 + - uid: 20260 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 2 + - uid: 20261 + components: + - type: Transform + pos: -15.5,-30.5 + parent: 2 + - uid: 20262 + components: + - type: Transform + pos: -15.5,-33.5 + parent: 2 + - uid: 20263 + components: + - type: Transform + pos: -18.5,-34.5 + parent: 2 + - uid: 20264 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 2 + - uid: 20265 + components: + - type: Transform + pos: -16.5,-34.5 + parent: 2 + - uid: 20266 + components: + - type: Transform + pos: -15.5,-34.5 + parent: 2 + - uid: 20267 + components: + - type: Transform + pos: -13.5,-33.5 + parent: 2 + - uid: 20268 + components: + - type: Transform + pos: -13.5,-32.5 + parent: 2 + - uid: 20269 + components: + - type: Transform + pos: -13.5,-31.5 + parent: 2 + - uid: 20270 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 2 + - uid: 20271 + components: + - type: Transform + pos: -13.5,-34.5 + parent: 2 + - uid: 20272 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 2 + - uid: 20273 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 2 + - uid: 20274 + components: + - type: Transform + pos: -2.5,-29.5 + parent: 2 + - uid: 20275 + components: + - type: Transform + pos: -3.5,-29.5 + parent: 2 + - uid: 20276 + components: + - type: Transform + pos: -4.5,-29.5 + parent: 2 + - uid: 20277 + components: + - type: Transform + pos: -5.5,-29.5 + parent: 2 + - uid: 20278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-30.5 + parent: 2 + - uid: 20279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-34.5 + parent: 2 + - uid: 20280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-34.5 + parent: 2 + - uid: 20281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-34.5 + parent: 2 + - uid: 20282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-34.5 + parent: 2 + - uid: 20283 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 2 + - uid: 20284 + components: + - type: Transform + pos: -18.5,-36.5 + parent: 2 + - uid: 20285 + components: + - type: Transform + pos: -18.5,-37.5 + parent: 2 + - uid: 20286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-35.5 + parent: 2 + - uid: 20287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-36.5 + parent: 2 + - uid: 20288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-37.5 + parent: 2 + - uid: 20289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-38.5 + parent: 2 + - uid: 20290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-38.5 + parent: 2 + - uid: 20291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-38.5 + parent: 2 + - uid: 20292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-38.5 + parent: 2 + - uid: 20293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-38.5 + parent: 2 + - uid: 20294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-38.5 + parent: 2 + - uid: 20295 + components: + - type: Transform + pos: -18.5,-39.5 + parent: 2 + - uid: 20296 + components: + - type: Transform + pos: -18.5,-40.5 + parent: 2 + - uid: 20297 + components: + - type: Transform + pos: -18.5,-41.5 + parent: 2 + - uid: 20298 + components: + - type: Transform + pos: -18.5,-42.5 + parent: 2 + - uid: 20299 + components: + - type: Transform + pos: -18.5,-43.5 + parent: 2 + - uid: 20300 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 2 + - uid: 20301 + components: + - type: Transform + pos: -18.5,-45.5 + parent: 2 + - uid: 20302 + components: + - type: Transform + pos: -18.5,-46.5 + parent: 2 + - uid: 20303 + components: + - type: Transform + pos: -18.5,-47.5 + parent: 2 + - uid: 20304 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 2 + - uid: 20305 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 2 + - uid: 20306 + components: + - type: Transform + pos: -17.5,-50.5 + parent: 2 + - uid: 20307 + components: + - type: Transform + pos: -16.5,-50.5 + parent: 2 + - uid: 20308 + components: + - type: Transform + pos: -15.5,-50.5 + parent: 2 + - uid: 20309 + components: + - type: Transform + pos: -14.5,-50.5 + parent: 2 + - uid: 20310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-50.5 + parent: 2 + - uid: 20311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-50.5 + parent: 2 + - uid: 20312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-50.5 + parent: 2 + - uid: 20313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-46.5 + parent: 2 + - uid: 20314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-50.5 + parent: 2 + - uid: 20315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-50.5 + parent: 2 + - uid: 20316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-48.5 + parent: 2 + - uid: 20317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-47.5 + parent: 2 + - uid: 20318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-46.5 + parent: 2 + - uid: 20319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-46.5 + parent: 2 + - uid: 20320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-46.5 + parent: 2 + - uid: 20321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-46.5 + parent: 2 + - uid: 20322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-46.5 + parent: 2 + - uid: 20323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-45.5 + parent: 2 + - uid: 20324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-44.5 + parent: 2 + - uid: 20325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-43.5 + parent: 2 + - uid: 20326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-42.5 + parent: 2 + - uid: 20327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-41.5 + parent: 2 + - uid: 20328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-40.5 + parent: 2 + - uid: 20329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-39.5 + parent: 2 + - uid: 20330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-45.5 + parent: 2 + - uid: 20331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-44.5 + parent: 2 + - uid: 20332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-39.5 + parent: 2 + - uid: 20333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-40.5 + parent: 2 + - uid: 20334 + components: + - type: Transform + pos: -36.5,-44.5 + parent: 2 + - uid: 20335 + components: + - type: Transform + pos: -37.5,-44.5 + parent: 2 + - uid: 20336 + components: + - type: Transform + pos: -38.5,-44.5 + parent: 2 + - uid: 20337 + components: + - type: Transform + pos: -39.5,-44.5 + parent: 2 + - uid: 20338 + components: + - type: Transform + pos: -40.5,-44.5 + parent: 2 + - uid: 20339 + components: + - type: Transform + pos: -41.5,-44.5 + parent: 2 + - uid: 20340 + components: + - type: Transform + pos: -42.5,-44.5 + parent: 2 + - uid: 20341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-44.5 + parent: 2 + - uid: 20342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-45.5 + parent: 2 + - uid: 20343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-45.5 + parent: 2 + - uid: 20344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-49.5 + parent: 2 + - uid: 20345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-49.5 + parent: 2 + - uid: 20346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-19.5 + parent: 2 + - uid: 20347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-52.5 + parent: 2 + - uid: 20348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-53.5 + parent: 2 + - uid: 20349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-53.5 + parent: 2 + - uid: 20350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-53.5 + parent: 2 + - uid: 20351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-53.5 + parent: 2 + - uid: 20352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-53.5 + parent: 2 + - uid: 20353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-53.5 + parent: 2 + - uid: 20354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-53.5 + parent: 2 + - uid: 20355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-53.5 + parent: 2 + - uid: 20356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-53.5 + parent: 2 + - uid: 20357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-52.5 + parent: 2 + - uid: 20358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-51.5 + parent: 2 + - uid: 20359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-49.5 + parent: 2 + - uid: 20360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-48.5 + parent: 2 + - uid: 20361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-48.5 + parent: 2 + - uid: 20362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-47.5 + parent: 2 + - uid: 20363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-45.5 + parent: 2 + - uid: 20364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-48.5 + parent: 2 + - uid: 20365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-48.5 + parent: 2 + - uid: 20366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-48.5 + parent: 2 + - uid: 20367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-48.5 + parent: 2 + - uid: 20368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-47.5 + parent: 2 + - uid: 20369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-45.5 + parent: 2 + - uid: 20370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-53.5 + parent: 2 + - uid: 20371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-53.5 + parent: 2 + - uid: 20372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-53.5 + parent: 2 + - uid: 20373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-53.5 + parent: 2 + - uid: 20374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-19.5 + parent: 2 + - uid: 20375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-25.5 + parent: 2 + - uid: 20376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-28.5 + parent: 2 + - uid: 20377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-49.5 + parent: 2 + - uid: 20378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-48.5 + parent: 2 + - uid: 20379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-45.5 + parent: 2 + - uid: 20380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-45.5 + parent: 2 + - uid: 20381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-45.5 + parent: 2 + - uid: 20382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-45.5 + parent: 2 + - uid: 20383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-45.5 + parent: 2 + - uid: 20384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-51.5 + parent: 2 + - uid: 20385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-53.5 + parent: 2 + - uid: 20386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-53.5 + parent: 2 + - uid: 20387 + components: + - type: Transform + pos: -75.5,-53.5 + parent: 2 + - uid: 20388 + components: + - type: Transform + pos: -76.5,-53.5 + parent: 2 + - uid: 20389 + components: + - type: Transform + pos: -77.5,-53.5 + parent: 2 + - uid: 20390 + components: + - type: Transform + pos: -75.5,-51.5 + parent: 2 + - uid: 20391 + components: + - type: Transform + pos: -76.5,-51.5 + parent: 2 + - uid: 20392 + components: + - type: Transform + pos: -77.5,-51.5 + parent: 2 + - uid: 20393 + components: + - type: Transform + pos: -83.5,-53.5 + parent: 2 + - uid: 20394 + components: + - type: Transform + pos: -83.5,-51.5 + parent: 2 + - uid: 20395 + components: + - type: Transform + pos: -83.5,-54.5 + parent: 2 + - uid: 20396 + components: + - type: Transform + pos: -82.5,-54.5 + parent: 2 + - uid: 20397 + components: + - type: Transform + pos: -77.5,-54.5 + parent: 2 + - uid: 20398 + components: + - type: Transform + pos: -78.5,-54.5 + parent: 2 + - uid: 20399 + components: + - type: Transform + pos: -77.5,-50.5 + parent: 2 + - uid: 20400 + components: + - type: Transform + pos: -78.5,-50.5 + parent: 2 + - uid: 20401 + components: + - type: Transform + pos: -83.5,-50.5 + parent: 2 + - uid: 20402 + components: + - type: Transform + pos: -82.5,-50.5 + parent: 2 + - uid: 20403 + components: + - type: Transform + pos: -82.5,-49.5 + parent: 2 + - uid: 20404 + components: + - type: Transform + pos: -81.5,-49.5 + parent: 2 + - uid: 20405 + components: + - type: Transform + pos: -80.5,-49.5 + parent: 2 + - uid: 20406 + components: + - type: Transform + pos: -79.5,-49.5 + parent: 2 + - uid: 20407 + components: + - type: Transform + pos: -78.5,-49.5 + parent: 2 + - uid: 20408 + components: + - type: Transform + pos: -78.5,-55.5 + parent: 2 + - uid: 20409 + components: + - type: Transform + pos: -79.5,-55.5 + parent: 2 + - uid: 20410 + components: + - type: Transform + pos: -80.5,-55.5 + parent: 2 + - uid: 20411 + components: + - type: Transform + pos: -81.5,-55.5 + parent: 2 + - uid: 20412 + components: + - type: Transform + pos: -82.5,-55.5 + parent: 2 + - uid: 20413 + components: + - type: Transform + pos: -83.5,-58.5 + parent: 2 + - uid: 20414 + components: + - type: Transform + pos: -84.5,-57.5 + parent: 2 + - uid: 20415 + components: + - type: Transform + pos: -85.5,-56.5 + parent: 2 + - uid: 20416 + components: + - type: Transform + pos: -86.5,-55.5 + parent: 2 + - uid: 20417 + components: + - type: Transform + pos: -77.5,-58.5 + parent: 2 + - uid: 20418 + components: + - type: Transform + pos: -76.5,-57.5 + parent: 2 + - uid: 20419 + components: + - type: Transform + pos: -75.5,-56.5 + parent: 2 + - uid: 20420 + components: + - type: Transform + pos: -74.5,-55.5 + parent: 2 + - uid: 20421 + components: + - type: Transform + pos: -74.5,-49.5 + parent: 2 + - uid: 20422 + components: + - type: Transform + pos: -75.5,-48.5 + parent: 2 + - uid: 20423 + components: + - type: Transform + pos: -76.5,-47.5 + parent: 2 + - uid: 20424 + components: + - type: Transform + pos: -77.5,-46.5 + parent: 2 + - uid: 20425 + components: + - type: Transform + pos: -83.5,-46.5 + parent: 2 + - uid: 20426 + components: + - type: Transform + pos: -84.5,-47.5 + parent: 2 + - uid: 20427 + components: + - type: Transform + pos: -85.5,-48.5 + parent: 2 + - uid: 20428 + components: + - type: Transform + pos: -86.5,-49.5 + parent: 2 + - uid: 20429 + components: + - type: Transform + pos: -21.5,-54.5 + parent: 2 + - uid: 20430 + components: + - type: Transform + pos: -20.5,-54.5 + parent: 2 + - uid: 20431 + components: + - type: Transform + pos: -19.5,-54.5 + parent: 2 + - uid: 20432 + components: + - type: Transform + pos: -18.5,-54.5 + parent: 2 + - uid: 20433 + components: + - type: Transform + pos: -21.5,-55.5 + parent: 2 + - uid: 20434 + components: + - type: Transform + pos: -21.5,-56.5 + parent: 2 + - uid: 20435 + components: + - type: Transform + pos: -21.5,-57.5 + parent: 2 + - uid: 20436 + components: + - type: Transform + pos: -55.5,-67.5 + parent: 2 + - uid: 20437 + components: + - type: Transform + pos: -54.5,-67.5 + parent: 2 + - uid: 20438 + components: + - type: Transform + pos: -53.5,-67.5 + parent: 2 + - uid: 20439 + components: + - type: Transform + pos: -52.5,-67.5 + parent: 2 + - uid: 20440 + components: + - type: Transform + pos: -50.5,-68.5 + parent: 2 + - uid: 20441 + components: + - type: Transform + pos: -49.5,-68.5 + parent: 2 + - uid: 20442 + components: + - type: Transform + pos: -48.5,-68.5 + parent: 2 + - uid: 20443 + components: + - type: Transform + pos: -47.5,-68.5 + parent: 2 + - uid: 20444 + components: + - type: Transform + pos: -47.5,-70.5 + parent: 2 + - uid: 20445 + components: + - type: Transform + pos: -48.5,-70.5 + parent: 2 + - uid: 20446 + components: + - type: Transform + pos: -45.5,-70.5 + parent: 2 + - uid: 20447 + components: + - type: Transform + pos: -44.5,-70.5 + parent: 2 + - uid: 20448 + components: + - type: Transform + pos: -43.5,-70.5 + parent: 2 + - uid: 20449 + components: + - type: Transform + pos: -42.5,-70.5 + parent: 2 + - uid: 20450 + components: + - type: Transform + pos: -41.5,-70.5 + parent: 2 + - uid: 20451 + components: + - type: Transform + pos: -40.5,-70.5 + parent: 2 + - uid: 20452 + components: + - type: Transform + pos: -39.5,-70.5 + parent: 2 + - uid: 20453 + components: + - type: Transform + pos: -38.5,-68.5 + parent: 2 + - uid: 20454 + components: + - type: Transform + pos: -37.5,-68.5 + parent: 2 + - uid: 20455 + components: + - type: Transform + pos: -36.5,-68.5 + parent: 2 + - uid: 20456 + components: + - type: Transform + pos: -35.5,-68.5 + parent: 2 + - uid: 20457 + components: + - type: Transform + pos: -34.5,-68.5 + parent: 2 + - uid: 20458 + components: + - type: Transform + pos: -33.5,-68.5 + parent: 2 + - uid: 20459 + components: + - type: Transform + pos: -34.5,-70.5 + parent: 2 + - uid: 20460 + components: + - type: Transform + pos: -35.5,-70.5 + parent: 2 + - uid: 20461 + components: + - type: Transform + pos: -36.5,-70.5 + parent: 2 + - uid: 20462 + components: + - type: Transform + pos: -32.5,-70.5 + parent: 2 + - uid: 20463 + components: + - type: Transform + pos: -31.5,-71.5 + parent: 2 + - uid: 20464 + components: + - type: Transform + pos: -30.5,-69.5 + parent: 2 + - uid: 20465 + components: + - type: Transform + pos: -30.5,-68.5 + parent: 2 + - uid: 20466 + components: + - type: Transform + pos: -29.5,-72.5 + parent: 2 + - uid: 20467 + components: + - type: Transform + pos: -28.5,-72.5 + parent: 2 + - uid: 20468 + components: + - type: Transform + pos: -27.5,-72.5 + parent: 2 + - uid: 20469 + components: + - type: Transform + pos: -26.5,-72.5 + parent: 2 + - uid: 20470 + components: + - type: Transform + pos: -26.5,-70.5 + parent: 2 + - uid: 20471 + components: + - type: Transform + pos: -24.5,-71.5 + parent: 2 + - uid: 20472 + components: + - type: Transform + pos: -23.5,-71.5 + parent: 2 + - uid: 20473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-60.5 + parent: 2 + - uid: 20474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-59.5 + parent: 2 + - uid: 20475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-58.5 + parent: 2 + - uid: 20476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-63.5 + parent: 2 + - uid: 20477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-54.5 + parent: 2 + - uid: 20478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-54.5 + parent: 2 + - uid: 20479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-54.5 + parent: 2 + - uid: 20480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-54.5 + parent: 2 + - uid: 20481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-54.5 + parent: 2 + - uid: 20482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-54.5 + parent: 2 + - uid: 20483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-54.5 + parent: 2 + - uid: 20484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-54.5 + parent: 2 + - uid: 20485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-54.5 + parent: 2 + - uid: 20486 + components: + - type: Transform + pos: -7.5,-54.5 + parent: 2 + - uid: 20487 + components: + - type: Transform + pos: -6.5,-54.5 + parent: 2 + - uid: 20488 + components: + - type: Transform + pos: -4.5,-54.5 + parent: 2 + - uid: 20489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-47.5 + parent: 2 + - uid: 20490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-49.5 + parent: 2 + - uid: 20491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-48.5 + parent: 2 + - uid: 20492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-47.5 + parent: 2 + - uid: 20493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-41.5 + parent: 2 + - uid: 20494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-41.5 + parent: 2 + - uid: 20495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-41.5 + parent: 2 + - uid: 20496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-41.5 + parent: 2 + - uid: 20497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-40.5 + parent: 2 + - uid: 20498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-39.5 + parent: 2 + - uid: 20499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-38.5 + parent: 2 + - uid: 20500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-38.5 + parent: 2 + - uid: 20501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-38.5 + parent: 2 + - uid: 20502 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 2 + - uid: 20503 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 2 + - uid: 20504 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 2 + - uid: 20505 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 2 + - uid: 20506 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 2 + - uid: 20507 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 2 + - uid: 20508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,11.5 + parent: 2 + - uid: 20509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,9.5 + parent: 2 + - uid: 20510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,9.5 + parent: 2 + - uid: 20511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,9.5 + parent: 2 + - uid: 20512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,11.5 + parent: 2 + - uid: 20513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,11.5 + parent: 2 + - uid: 20514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,11.5 + parent: 2 + - uid: 20515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,11.5 + parent: 2 + - uid: 20516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,11.5 + parent: 2 + - uid: 20517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,11.5 + parent: 2 + - uid: 20518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,13.5 + parent: 2 + - uid: 20519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,13.5 + parent: 2 + - uid: 20520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,13.5 + parent: 2 + - uid: 20521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,13.5 + parent: 2 + - uid: 20522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,13.5 + parent: 2 + - uid: 20523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,13.5 + parent: 2 + - uid: 20524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,13.5 + parent: 2 + - uid: 20525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,15.5 + parent: 2 + - uid: 20526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,15.5 + parent: 2 + - uid: 20527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,15.5 + parent: 2 + - uid: 20528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,15.5 + parent: 2 + - uid: 20529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,15.5 + parent: 2 + - uid: 20530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,15.5 + parent: 2 + - uid: 20531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,12.5 + parent: 2 + - uid: 20532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,12.5 + parent: 2 + - uid: 20533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,12.5 + parent: 2 + - uid: 20534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,14.5 + parent: 2 + - uid: 20535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,14.5 + parent: 2 + - uid: 20536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,14.5 + parent: 2 + - uid: 20537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,14.5 + parent: 2 + - uid: 20538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,17.5 + parent: 2 + - uid: 20539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,17.5 + parent: 2 + - uid: 20540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,17.5 + parent: 2 + - uid: 20541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,17.5 + parent: 2 + - uid: 20542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,16.5 + parent: 2 + - uid: 20543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,16.5 + parent: 2 + - uid: 20544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,16.5 + parent: 2 + - uid: 20545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,16.5 + parent: 2 + - uid: 20546 + components: + - type: Transform + pos: 64.5,31.5 + parent: 2 + - uid: 20547 + components: + - type: Transform + pos: 74.5,29.5 + parent: 2 + - uid: 20548 + components: + - type: Transform + pos: 73.5,29.5 + parent: 2 + - uid: 20549 + components: + - type: Transform + pos: 72.5,29.5 + parent: 2 + - uid: 20550 + components: + - type: Transform + pos: 71.5,29.5 + parent: 2 + - uid: 20551 + components: + - type: Transform + pos: 66.5,30.5 + parent: 2 + - uid: 20552 + components: + - type: Transform + pos: 67.5,30.5 + parent: 2 + - uid: 20553 + components: + - type: Transform + pos: 68.5,30.5 + parent: 2 + - uid: 20554 + components: + - type: Transform + pos: 69.5,30.5 + parent: 2 + - uid: 20555 + components: + - type: Transform + pos: 63.5,31.5 + parent: 2 + - uid: 20556 + components: + - type: Transform + pos: 62.5,31.5 + parent: 2 + - uid: 20557 + components: + - type: Transform + pos: 61.5,31.5 + parent: 2 + - uid: 20558 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 20559 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 + - uid: 20560 + components: + - type: Transform + pos: 4.5,23.5 + parent: 2 + - uid: 20561 + components: + - type: Transform + pos: 6.5,23.5 + parent: 2 + - uid: 20562 + components: + - type: Transform + pos: 11.5,22.5 + parent: 2 + - uid: 20563 + components: + - type: Transform + pos: 9.5,24.5 + parent: 2 + - uid: 20565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,45.5 + parent: 2 + - uid: 20566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,45.5 + parent: 2 + - uid: 20568 + components: + - type: Transform + pos: 47.5,46.5 + parent: 2 + - uid: 20569 + components: + - type: Transform + pos: 49.5,46.5 + parent: 2 + - uid: 20570 + components: + - type: Transform + pos: 50.5,46.5 + parent: 2 + - uid: 20571 + components: + - type: Transform + pos: 52.5,46.5 + parent: 2 + - uid: 20572 + components: + - type: Transform + pos: 53.5,46.5 + parent: 2 + - uid: 20573 + components: + - type: Transform + pos: 48.5,44.5 + parent: 2 + - uid: 20574 + components: + - type: Transform + pos: 49.5,44.5 + parent: 2 + - uid: 20575 + components: + - type: Transform + pos: 55.5,46.5 + parent: 2 + - uid: 20576 + components: + - type: Transform + pos: 56.5,46.5 + parent: 2 + - uid: 20577 + components: + - type: Transform + pos: 58.5,43.5 + parent: 2 + - uid: 20578 + components: + - type: Transform + pos: 58.5,42.5 + parent: 2 + - uid: 20579 + components: + - type: Transform + pos: 58.5,41.5 + parent: 2 + - uid: 20580 + components: + - type: Transform + pos: 58.5,40.5 + parent: 2 + - uid: 20581 + components: + - type: Transform + pos: 60.5,40.5 + parent: 2 + - uid: 20582 + components: + - type: Transform + pos: 60.5,39.5 + parent: 2 + - uid: 20583 + components: + - type: Transform + pos: 60.5,38.5 + parent: 2 + - uid: 20584 + components: + - type: Transform + pos: 60.5,37.5 + parent: 2 + - uid: 20585 + components: + - type: Transform + pos: 58.5,37.5 + parent: 2 + - uid: 20586 + components: + - type: Transform + pos: 58.5,36.5 + parent: 2 + - uid: 20587 + components: + - type: Transform + pos: 58.5,35.5 + parent: 2 + - uid: 20588 + components: + - type: Transform + pos: 58.5,34.5 + parent: 2 + - uid: 20589 + components: + - type: Transform + pos: 61.5,35.5 + parent: 2 + - uid: 20590 + components: + - type: Transform + pos: 61.5,34.5 + parent: 2 + - uid: 20591 + components: + - type: Transform + pos: 61.5,33.5 + parent: 2 + - uid: 20592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,51.5 + parent: 2 + - uid: 20593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,45.5 + parent: 2 + - uid: 20594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,45.5 + parent: 2 + - uid: 20595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,45.5 + parent: 2 + - uid: 20596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,45.5 + parent: 2 + - uid: 20597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,45.5 + parent: 2 + - uid: 20598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,45.5 + parent: 2 + - uid: 20599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,45.5 + parent: 2 + - uid: 20600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,47.5 + parent: 2 + - uid: 20601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,47.5 + parent: 2 + - uid: 20602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,47.5 + parent: 2 + - uid: 20603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,47.5 + parent: 2 + - uid: 20604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,47.5 + parent: 2 + - uid: 20605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,47.5 + parent: 2 + - uid: 20606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,49.5 + parent: 2 + - uid: 20607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,49.5 + parent: 2 + - uid: 20608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,49.5 + parent: 2 + - uid: 20609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,47.5 + parent: 2 + - uid: 20610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,47.5 + parent: 2 + - uid: 20611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,47.5 + parent: 2 + - uid: 20612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,50.5 + parent: 2 + - uid: 20613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,50.5 + parent: 2 + - uid: 20614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,46.5 + parent: 2 + - uid: 20615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,45.5 + parent: 2 + - uid: 20616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,49.5 + parent: 2 + - uid: 20617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,49.5 + parent: 2 + - uid: 20618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,49.5 + parent: 2 + - uid: 20619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,51.5 + parent: 2 + - uid: 20620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,51.5 + parent: 2 + - uid: 20621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,51.5 + parent: 2 + - uid: 20622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,51.5 + parent: 2 + - uid: 20623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,51.5 + parent: 2 + - uid: 20624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,49.5 + parent: 2 + - uid: 20625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,49.5 + parent: 2 + - uid: 20626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,49.5 + parent: 2 + - uid: 20627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,52.5 + parent: 2 + - uid: 20628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,54.5 + parent: 2 + - uid: 20629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,55.5 + parent: 2 + - uid: 20630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,54.5 + parent: 2 + - uid: 20631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,55.5 + parent: 2 + - uid: 20632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,56.5 + parent: 2 + - uid: 20633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,59.5 + parent: 2 + - uid: 20634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,58.5 + parent: 2 + - uid: 20635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-13.5 + parent: 2 + - uid: 20636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-13.5 + parent: 2 + - uid: 20637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-13.5 + parent: 2 + - uid: 20638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-14.5 + parent: 2 + - uid: 20639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-15.5 + parent: 2 + - uid: 20640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-16.5 + parent: 2 + - uid: 20641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-17.5 + parent: 2 + - uid: 20642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-18.5 + parent: 2 + - uid: 20643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-19.5 + parent: 2 + - uid: 20644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-19.5 + parent: 2 + - uid: 20645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-19.5 + parent: 2 + - uid: 20646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-19.5 + parent: 2 + - uid: 20647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-19.5 + parent: 2 + - uid: 20648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-19.5 + parent: 2 + - uid: 20649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-18.5 + parent: 2 + - uid: 20650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-17.5 + parent: 2 + - uid: 20651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-16.5 + parent: 2 + - uid: 20652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-15.5 + parent: 2 + - uid: 20653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,17.5 + parent: 2 + - uid: 20654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,17.5 + parent: 2 + - uid: 20655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,17.5 + parent: 2 + - uid: 20656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,17.5 + parent: 2 + - uid: 20657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,17.5 + parent: 2 + - uid: 20658 + components: + - type: Transform + pos: -22.5,18.5 + parent: 2 + - uid: 20659 + components: + - type: Transform + pos: -22.5,19.5 + parent: 2 + - uid: 20660 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 + - uid: 20661 + components: + - type: Transform + pos: -22.5,21.5 + parent: 2 + - uid: 20662 + components: + - type: Transform + pos: -22.5,22.5 + parent: 2 + - uid: 20663 + components: + - type: Transform + pos: -23.5,22.5 + parent: 2 + - uid: 20664 + components: + - type: Transform + pos: -24.5,22.5 + parent: 2 + - uid: 20665 + components: + - type: Transform + pos: -25.5,22.5 + parent: 2 + - uid: 20666 + components: + - type: Transform + pos: -26.5,22.5 + parent: 2 + - uid: 20667 + components: + - type: Transform + pos: -30.5,22.5 + parent: 2 + - uid: 20668 + components: + - type: Transform + pos: -29.5,22.5 + parent: 2 + - uid: 20669 + components: + - type: Transform + pos: -28.5,22.5 + parent: 2 + - uid: 20670 + components: + - type: Transform + pos: -28.5,23.5 + parent: 2 + - uid: 20671 + components: + - type: Transform + pos: -28.5,24.5 + parent: 2 + - uid: 20672 + components: + - type: Transform + pos: -28.5,25.5 + parent: 2 + - uid: 20673 + components: + - type: Transform + pos: -28.5,26.5 + parent: 2 + - uid: 20674 + components: + - type: Transform + pos: -28.5,27.5 + parent: 2 + - uid: 20675 + components: + - type: Transform + pos: -26.5,27.5 + parent: 2 + - uid: 20676 + components: + - type: Transform + pos: -26.5,26.5 + parent: 2 + - uid: 20677 + components: + - type: Transform + pos: -26.5,25.5 + parent: 2 + - uid: 20678 + components: + - type: Transform + pos: -26.5,24.5 + parent: 2 + - uid: 20679 + components: + - type: Transform + pos: -26.5,23.5 + parent: 2 + - uid: 20680 + components: + - type: Transform + pos: -31.5,22.5 + parent: 2 + - uid: 20681 + components: + - type: Transform + pos: -32.5,22.5 + parent: 2 + - uid: 20682 + components: + - type: Transform + pos: -33.5,22.5 + parent: 2 + - uid: 20683 + components: + - type: Transform + pos: -34.5,22.5 + parent: 2 + - uid: 20684 + components: + - type: Transform + pos: -34.5,21.5 + parent: 2 + - uid: 20685 + components: + - type: Transform + pos: -34.5,20.5 + parent: 2 + - uid: 20686 + components: + - type: Transform + pos: -34.5,19.5 + parent: 2 + - uid: 20687 + components: + - type: Transform + pos: -13.5,21.5 + parent: 2 + - uid: 20688 + components: + - type: Transform + pos: -1.5,18.5 + parent: 2 + - uid: 20689 + components: + - type: Transform + pos: -1.5,20.5 + parent: 2 + - uid: 20690 + components: + - type: Transform + pos: -10.5,21.5 + parent: 2 + - uid: 20691 + components: + - type: Transform + pos: -7.5,21.5 + parent: 2 + - uid: 20692 + components: + - type: Transform + pos: -4.5,21.5 + parent: 2 + - uid: 20693 + components: + - type: Transform + pos: -1.5,21.5 + parent: 2 + - uid: 20694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,23.5 + parent: 2 + - uid: 20695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,24.5 + parent: 2 + - uid: 20696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,25.5 + parent: 2 + - uid: 20697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,26.5 + parent: 2 + - uid: 20698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,22.5 + parent: 2 + - uid: 20699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,23.5 + parent: 2 + - uid: 20700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,24.5 + parent: 2 + - uid: 20701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,25.5 + parent: 2 + - uid: 20702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,22.5 + parent: 2 + - uid: 20703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,23.5 + parent: 2 + - uid: 20704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,24.5 + parent: 2 + - uid: 20705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,25.5 + parent: 2 + - uid: 20706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,26.5 + parent: 2 + - uid: 20707 + components: + - type: Transform + pos: -13.5,30.5 + parent: 2 + - uid: 20708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,27.5 + parent: 2 + - uid: 20709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,28.5 + parent: 2 + - uid: 20710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,29.5 + parent: 2 + - uid: 20712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,35.5 + parent: 2 + - uid: 20713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,36.5 + parent: 2 + - uid: 20714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,36.5 + parent: 2 + - uid: 20715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,33.5 + parent: 2 + - uid: 20716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,34.5 + parent: 2 + - uid: 20717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,37.5 + parent: 2 + - uid: 20718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,37.5 + parent: 2 + - uid: 20719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,36.5 + parent: 2 + - uid: 20720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,37.5 + parent: 2 + - uid: 20721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,36.5 + parent: 2 + - uid: 20722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,34.5 + parent: 2 + - uid: 20723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,31.5 + parent: 2 + - uid: 20724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,32.5 + parent: 2 + - uid: 20725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,35.5 + parent: 2 + - uid: 20726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,33.5 + parent: 2 + - uid: 20727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,35.5 + parent: 2 + - uid: 20728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,35.5 + parent: 2 + - uid: 20729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,35.5 + parent: 2 + - uid: 20730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,37.5 + parent: 2 + - uid: 20731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,37.5 + parent: 2 + - uid: 20732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,30.5 + parent: 2 + - uid: 20733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,31.5 + parent: 2 + - uid: 20734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,33.5 + parent: 2 + - uid: 20735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,34.5 + parent: 2 + - uid: 20736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,35.5 + parent: 2 + - uid: 20737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,36.5 + parent: 2 + - uid: 20738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,37.5 + parent: 2 + - uid: 20739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,37.5 + parent: 2 + - uid: 20740 + components: + - type: Transform + pos: -19.5,42.5 + parent: 2 + - uid: 20741 + components: + - type: Transform + pos: -19.5,40.5 + parent: 2 + - uid: 20742 + components: + - type: Transform + pos: -19.5,41.5 + parent: 2 + - uid: 20743 + components: + - type: Transform + pos: -19.5,38.5 + parent: 2 + - uid: 20744 + components: + - type: Transform + pos: -19.5,39.5 + parent: 2 + - uid: 20745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,42.5 + parent: 2 + - uid: 20746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,41.5 + parent: 2 + - uid: 20747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,42.5 + parent: 2 + - uid: 20748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,41.5 + parent: 2 + - uid: 20749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,42.5 + parent: 2 + - uid: 20750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,41.5 + parent: 2 + - uid: 20751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,42.5 + parent: 2 + - uid: 20752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,41.5 + parent: 2 + - uid: 20753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,42.5 + parent: 2 + - uid: 20754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,41.5 + parent: 2 + - uid: 20755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,42.5 + parent: 2 + - uid: 20756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,41.5 + parent: 2 + - uid: 20757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,42.5 + parent: 2 + - uid: 20758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,41.5 + parent: 2 + - uid: 20759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,42.5 + parent: 2 + - uid: 20760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,41.5 + parent: 2 + - uid: 20761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,42.5 + parent: 2 + - uid: 20762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,41.5 + parent: 2 + - uid: 20763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,40.5 + parent: 2 + - uid: 20764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,38.5 + parent: 2 + - uid: 20765 + components: + - type: Transform + pos: -20.5,37.5 + parent: 2 + - uid: 20766 + components: + - type: Transform + pos: -21.5,37.5 + parent: 2 + - uid: 20767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,37.5 + parent: 2 + - uid: 20768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,39.5 + parent: 2 + - uid: 20769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,40.5 + parent: 2 + - uid: 20770 + components: + - type: Transform + pos: -7.5,41.5 + parent: 2 + - uid: 20771 + components: + - type: Transform + pos: -7.5,42.5 + parent: 2 + - uid: 20772 + components: + - type: Transform + pos: -7.5,43.5 + parent: 2 + - uid: 20773 + components: + - type: Transform + pos: -7.5,44.5 + parent: 2 + - uid: 20774 + components: + - type: Transform + pos: -8.5,44.5 + parent: 2 + - uid: 20775 + components: + - type: Transform + pos: -9.5,44.5 + parent: 2 + - uid: 20776 + components: + - type: Transform + pos: -10.5,44.5 + parent: 2 + - uid: 20777 + components: + - type: Transform + pos: -11.5,44.5 + parent: 2 + - uid: 20778 + components: + - type: Transform + pos: -12.5,44.5 + parent: 2 + - uid: 20779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,41.5 + parent: 2 + - uid: 20780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,42.5 + parent: 2 + - uid: 20781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,37.5 + parent: 2 + - uid: 20782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,37.5 + parent: 2 + - uid: 20783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,37.5 + parent: 2 + - uid: 20784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,38.5 + parent: 2 + - uid: 20785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,39.5 + parent: 2 + - uid: 20786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,40.5 + parent: 2 + - uid: 20787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,41.5 + parent: 2 + - uid: 20788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,41.5 + parent: 2 + - uid: 20789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,42.5 + parent: 2 + - uid: 20790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,42.5 + parent: 2 + - uid: 20791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,42.5 + parent: 2 + - uid: 20792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,42.5 + parent: 2 + - uid: 20793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,42.5 + parent: 2 + - uid: 20794 + components: + - type: Transform + pos: -27.5,42.5 + parent: 2 + - uid: 20795 + components: + - type: Transform + pos: -27.5,43.5 + parent: 2 + - uid: 20796 + components: + - type: Transform + pos: -27.5,44.5 + parent: 2 + - uid: 20797 + components: + - type: Transform + pos: -27.5,45.5 + parent: 2 + - uid: 20798 + components: + - type: Transform + pos: -27.5,46.5 + parent: 2 + - uid: 20799 + components: + - type: Transform + pos: -26.5,46.5 + parent: 2 + - uid: 20800 + components: + - type: Transform + pos: -25.5,46.5 + parent: 2 + - uid: 20801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,40.5 + parent: 2 + - uid: 20802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,40.5 + parent: 2 + - uid: 20803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,40.5 + parent: 2 + - uid: 20804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,39.5 + parent: 2 + - uid: 20805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,38.5 + parent: 2 + - uid: 20806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,37.5 + parent: 2 + - uid: 20807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,36.5 + parent: 2 + - uid: 20808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,35.5 + parent: 2 + - uid: 20809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,34.5 + parent: 2 + - uid: 20810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,33.5 + parent: 2 + - uid: 20811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,32.5 + parent: 2 + - uid: 20812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,31.5 + parent: 2 + - uid: 20813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,41.5 + parent: 2 + - uid: 20814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,42.5 + parent: 2 + - uid: 20815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,42.5 + parent: 2 + - uid: 20816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,42.5 + parent: 2 + - uid: 20817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,23.5 + parent: 2 + - uid: 20818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,27.5 + parent: 2 + - uid: 20819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,27.5 + parent: 2 + - uid: 20820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,27.5 + parent: 2 + - uid: 20821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,27.5 + parent: 2 + - uid: 20822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,27.5 + parent: 2 + - uid: 20823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,27.5 + parent: 2 + - uid: 20824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,26.5 + parent: 2 + - uid: 20825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,25.5 + parent: 2 + - uid: 20826 + components: + - type: Transform + pos: -32.5,40.5 + parent: 2 + - uid: 20827 + components: + - type: Transform + pos: -33.5,40.5 + parent: 2 + - uid: 20828 + components: + - type: Transform + pos: -34.5,40.5 + parent: 2 + - uid: 20829 + components: + - type: Transform + pos: -35.5,40.5 + parent: 2 + - uid: 20830 + components: + - type: Transform + pos: -32.5,31.5 + parent: 2 + - uid: 20831 + components: + - type: Transform + pos: -33.5,31.5 + parent: 2 + - uid: 20832 + components: + - type: Transform + pos: -34.5,31.5 + parent: 2 + - uid: 20833 + components: + - type: Transform + pos: -35.5,31.5 + parent: 2 + - uid: 20834 + components: + - type: Transform + pos: -36.5,31.5 + parent: 2 + - uid: 20835 + components: + - type: Transform + pos: -37.5,31.5 + parent: 2 + - uid: 20836 + components: + - type: Transform + pos: -38.5,31.5 + parent: 2 + - uid: 20837 + components: + - type: Transform + pos: -36.5,40.5 + parent: 2 + - uid: 20838 + components: + - type: Transform + pos: -37.5,40.5 + parent: 2 + - uid: 20839 + components: + - type: Transform + pos: -38.5,40.5 + parent: 2 + - uid: 20840 + components: + - type: Transform + pos: -38.5,38.5 + parent: 2 + - uid: 20841 + components: + - type: Transform + pos: -39.5,38.5 + parent: 2 + - uid: 20842 + components: + - type: Transform + pos: -42.5,38.5 + parent: 2 + - uid: 20843 + components: + - type: Transform + pos: -43.5,38.5 + parent: 2 + - uid: 20844 + components: + - type: Transform + pos: -43.5,37.5 + parent: 2 + - uid: 20845 + components: + - type: Transform + pos: -43.5,36.5 + parent: 2 + - uid: 20846 + components: + - type: Transform + pos: -43.5,35.5 + parent: 2 + - uid: 20847 + components: + - type: Transform + pos: -43.5,31.5 + parent: 2 + - uid: 20848 + components: + - type: Transform + pos: -43.5,30.5 + parent: 2 + - uid: 20849 + components: + - type: Transform + pos: -43.5,29.5 + parent: 2 + - uid: 20850 + components: + - type: Transform + pos: -43.5,28.5 + parent: 2 + - uid: 20851 + components: + - type: Transform + pos: -43.5,27.5 + parent: 2 + - uid: 20852 + components: + - type: Transform + pos: -42.5,27.5 + parent: 2 + - uid: 20853 + components: + - type: Transform + pos: -41.5,27.5 + parent: 2 + - uid: 20854 + components: + - type: Transform + pos: -40.5,27.5 + parent: 2 + - uid: 20855 + components: + - type: Transform + pos: -39.5,27.5 + parent: 2 + - uid: 20856 + components: + - type: Transform + pos: -38.5,27.5 + parent: 2 + - uid: 20857 + components: + - type: Transform + pos: -38.5,25.5 + parent: 2 + - uid: 20858 + components: + - type: Transform + pos: -38.5,24.5 + parent: 2 + - uid: 20859 + components: + - type: Transform + pos: -38.5,23.5 + parent: 2 + - uid: 20860 + components: + - type: Transform + pos: -39.5,23.5 + parent: 2 + - uid: 20861 + components: + - type: Transform + pos: -41.5,23.5 + parent: 2 + - uid: 20862 + components: + - type: Transform + pos: -42.5,23.5 + parent: 2 + - uid: 20863 + components: + - type: Transform + pos: -43.5,23.5 + parent: 2 + - uid: 20864 + components: + - type: Transform + pos: -43.5,24.5 + parent: 2 + - uid: 20865 + components: + - type: Transform + pos: -43.5,25.5 + parent: 2 + - uid: 20866 + components: + - type: Transform + pos: -42.5,21.5 + parent: 2 + - uid: 20867 + components: + - type: Transform + pos: -41.5,21.5 + parent: 2 + - uid: 20868 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - uid: 20869 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - uid: 20870 + components: + - type: Transform + pos: 6.5,28.5 + parent: 2 + - uid: 20871 + components: + - type: Transform + pos: 4.5,28.5 + parent: 2 + - uid: 20872 + components: + - type: Transform + pos: 3.5,28.5 + parent: 2 + - uid: 20873 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 + - uid: 20874 + components: + - type: Transform + pos: 9.5,29.5 + parent: 2 + - uid: 20875 + components: + - type: Transform + pos: 9.5,30.5 + parent: 2 + - uid: 20876 + components: + - type: Transform + pos: 9.5,31.5 + parent: 2 + - uid: 20877 + components: + - type: Transform + pos: 9.5,32.5 + parent: 2 + - uid: 20878 + components: + - type: Transform + pos: 9.5,33.5 + parent: 2 + - uid: 20879 + components: + - type: Transform + pos: 8.5,33.5 + parent: 2 + - uid: 20880 + components: + - type: Transform + pos: 7.5,33.5 + parent: 2 + - uid: 20881 + components: + - type: Transform + pos: 6.5,33.5 + parent: 2 + - uid: 20882 + components: + - type: Transform + pos: 5.5,33.5 + parent: 2 + - uid: 20883 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 + - uid: 20884 + components: + - type: Transform + pos: 3.5,33.5 + parent: 2 + - uid: 20885 + components: + - type: Transform + pos: 3.5,32.5 + parent: 2 + - uid: 20886 + components: + - type: Transform + pos: 3.5,31.5 + parent: 2 + - uid: 20887 + components: + - type: Transform + pos: 3.5,30.5 + parent: 2 + - uid: 20888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,34.5 + parent: 2 + - uid: 20889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,35.5 + parent: 2 + - uid: 20890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,36.5 + parent: 2 + - uid: 20891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,37.5 + parent: 2 + - uid: 20892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,38.5 + parent: 2 + - uid: 20893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,39.5 + parent: 2 + - uid: 20894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,40.5 + parent: 2 + - uid: 20895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,41.5 + parent: 2 + - uid: 20896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,42.5 + parent: 2 + - uid: 20897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,43.5 + parent: 2 + - uid: 20898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,44.5 + parent: 2 + - uid: 20899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,45.5 + parent: 2 + - uid: 20900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,45.5 + parent: 2 + - uid: 20901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,45.5 + parent: 2 + - uid: 20902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,45.5 + parent: 2 + - uid: 20903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,45.5 + parent: 2 + - uid: 20904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,45.5 + parent: 2 + - uid: 20905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,44.5 + parent: 2 + - uid: 20906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,43.5 + parent: 2 + - uid: 20907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,42.5 + parent: 2 + - uid: 20908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,41.5 + parent: 2 + - uid: 20909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,40.5 + parent: 2 + - uid: 20910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,39.5 + parent: 2 + - uid: 20911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,38.5 + parent: 2 + - uid: 20912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,37.5 + parent: 2 + - uid: 20913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,36.5 + parent: 2 + - uid: 20914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,35.5 + parent: 2 + - uid: 20915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,46.5 + parent: 2 + - uid: 20916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,46.5 + parent: 2 + - uid: 20917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,46.5 + parent: 2 + - uid: 20918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,46.5 + parent: 2 + - uid: 20919 + components: + - type: Transform + pos: -4.5,47.5 + parent: 2 + - uid: 20920 + components: + - type: Transform + pos: -4.5,48.5 + parent: 2 + - uid: 20921 + components: + - type: Transform + pos: -4.5,49.5 + parent: 2 + - uid: 20922 + components: + - type: Transform + pos: -4.5,50.5 + parent: 2 + - uid: 20923 + components: + - type: Transform + pos: -3.5,50.5 + parent: 2 + - uid: 20924 + components: + - type: Transform + pos: -2.5,50.5 + parent: 2 + - uid: 20925 + components: + - type: Transform + pos: -1.5,50.5 + parent: 2 + - uid: 20926 + components: + - type: Transform + pos: -12.5,49.5 + parent: 2 + - uid: 20927 + components: + - type: Transform + pos: -11.5,49.5 + parent: 2 + - uid: 20928 + components: + - type: Transform + pos: -9.5,49.5 + parent: 2 + - uid: 20929 + components: + - type: Transform + pos: -9.5,48.5 + parent: 2 + - uid: 20930 + components: + - type: Transform + pos: -9.5,47.5 + parent: 2 + - uid: 20931 + components: + - type: Transform + pos: -9.5,46.5 + parent: 2 + - uid: 20932 + components: + - type: Transform + pos: -8.5,46.5 + parent: 2 + - uid: 20933 + components: + - type: Transform + pos: -9.5,51.5 + parent: 2 + - uid: 20934 + components: + - type: Transform + pos: -8.5,51.5 + parent: 2 + - uid: 20935 + components: + - type: Transform + pos: -5.5,50.5 + parent: 2 + - uid: 20936 + components: + - type: Transform + pos: -5.5,51.5 + parent: 2 + - uid: 20937 + components: + - type: Transform + pos: -6.5,51.5 + parent: 2 + - uid: 20938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,52.5 + parent: 2 + - uid: 20939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,52.5 + parent: 2 + - uid: 20940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,52.5 + parent: 2 + - uid: 20941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,53.5 + parent: 2 + - uid: 20942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,53.5 + parent: 2 + - uid: 20943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,53.5 + parent: 2 + - uid: 20944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,54.5 + parent: 2 + - uid: 20945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,56.5 + parent: 2 + - uid: 20946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,57.5 + parent: 2 + - uid: 20947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,57.5 + parent: 2 + - uid: 20948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,57.5 + parent: 2 + - uid: 20949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,51.5 + parent: 2 + - uid: 20950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,52.5 + parent: 2 + - uid: 20951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,53.5 + parent: 2 + - uid: 20952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,54.5 + parent: 2 + - uid: 20953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,55.5 + parent: 2 + - uid: 20954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,56.5 + parent: 2 + - uid: 20955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,57.5 + parent: 2 + - uid: 20956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,57.5 + parent: 2 + - uid: 20957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,45.5 + parent: 2 + - uid: 20958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,46.5 + parent: 2 + - uid: 20959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,47.5 + parent: 2 + - uid: 20960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,48.5 + parent: 2 + - uid: 20961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,50.5 + parent: 2 + - uid: 20962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,51.5 + parent: 2 + - uid: 20963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,51.5 + parent: 2 + - uid: 20964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,51.5 + parent: 2 + - uid: 20965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,50.5 + parent: 2 + - uid: 20966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,46.5 + parent: 2 + - uid: 20967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,49.5 + parent: 2 + - uid: 20968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,51.5 + parent: 2 + - uid: 20969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,52.5 + parent: 2 + - uid: 20970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,52.5 + parent: 2 + - uid: 20971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,52.5 + parent: 2 + - uid: 20972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,51.5 + parent: 2 + - uid: 20973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,51.5 + parent: 2 + - uid: 20974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,50.5 + parent: 2 + - uid: 20975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,49.5 + parent: 2 + - uid: 20976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,48.5 + parent: 2 + - uid: 20977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,48.5 + parent: 2 + - uid: 20978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,48.5 + parent: 2 + - uid: 20979 + components: + - type: Transform + pos: 4.5,51.5 + parent: 2 + - uid: 20980 + components: + - type: Transform + pos: 3.5,51.5 + parent: 2 + - uid: 20981 + components: + - type: Transform + pos: 3.5,54.5 + parent: 2 + - uid: 20982 + components: + - type: Transform + pos: 3.5,55.5 + parent: 2 + - uid: 20983 + components: + - type: Transform + pos: 3.5,56.5 + parent: 2 + - uid: 20984 + components: + - type: Transform + pos: 3.5,57.5 + parent: 2 + - uid: 20985 + components: + - type: Transform + pos: 4.5,57.5 + parent: 2 + - uid: 20986 + components: + - type: Transform + pos: 7.5,57.5 + parent: 2 + - uid: 20987 + components: + - type: Transform + pos: 8.5,57.5 + parent: 2 + - uid: 20988 + components: + - type: Transform + pos: 9.5,57.5 + parent: 2 + - uid: 20989 + components: + - type: Transform + pos: 10.5,57.5 + parent: 2 + - uid: 20990 + components: + - type: Transform + pos: 10.5,56.5 + parent: 2 + - uid: 20991 + components: + - type: Transform + pos: 11.5,56.5 + parent: 2 + - uid: 20992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,58.5 + parent: 2 + - uid: 20993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,58.5 + parent: 2 + - uid: 20994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,59.5 + parent: 2 + - uid: 20995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,59.5 + parent: 2 + - uid: 20996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,11.5 + parent: 2 + - uid: 20997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,11.5 + parent: 2 + - uid: 20998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,11.5 + parent: 2 + - uid: 20999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,11.5 + parent: 2 + - uid: 21000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,13.5 + parent: 2 + - uid: 21001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,13.5 + parent: 2 + - uid: 21002 + components: + - type: Transform + pos: -45.5,31.5 + parent: 2 + - uid: 21003 + components: + - type: Transform + pos: -45.5,33.5 + parent: 2 + - uid: 21004 + components: + - type: Transform + pos: -45.5,34.5 + parent: 2 + - uid: 21005 + components: + - type: Transform + pos: -45.5,36.5 + parent: 2 + - uid: 21006 + components: + - type: Transform + pos: -47.5,32.5 + parent: 2 + - uid: 21007 + components: + - type: Transform + pos: -47.5,31.5 + parent: 2 + - uid: 21008 + components: + - type: Transform + pos: -47.5,30.5 + parent: 2 + - uid: 21009 + components: + - type: Transform + pos: -47.5,35.5 + parent: 2 + - uid: 21010 + components: + - type: Transform + pos: -47.5,36.5 + parent: 2 + - uid: 21011 + components: + - type: Transform + pos: -47.5,37.5 + parent: 2 + - uid: 21012 + components: + - type: Transform + pos: -47.5,38.5 + parent: 2 + - uid: 21013 + components: + - type: Transform + pos: -49.5,35.5 + parent: 2 + - uid: 21014 + components: + - type: Transform + pos: -49.5,34.5 + parent: 2 + - uid: 21015 + components: + - type: Transform + pos: -49.5,33.5 + parent: 2 + - uid: 21016 + components: + - type: Transform + pos: -49.5,32.5 + parent: 2 + - uid: 21017 + components: + - type: Transform + pos: -49.5,31.5 + parent: 2 + - uid: 21018 + components: + - type: Transform + pos: -50.5,37.5 + parent: 2 + - uid: 21019 + components: + - type: Transform + pos: -50.5,38.5 + parent: 2 + - uid: 21020 + components: + - type: Transform + pos: -51.5,34.5 + parent: 2 + - uid: 21021 + components: + - type: Transform + pos: -51.5,33.5 + parent: 2 + - uid: 21022 + components: + - type: Transform + pos: -51.5,32.5 + parent: 2 + - uid: 21023 + components: + - type: Transform + pos: -53.5,34.5 + parent: 2 + - uid: 21024 + components: + - type: Transform + pos: -54.5,34.5 + parent: 2 + - uid: 21025 + components: + - type: Transform + pos: -55.5,34.5 + parent: 2 + - uid: 21026 + components: + - type: Transform + pos: -58.5,33.5 + parent: 2 + - uid: 21027 + components: + - type: Transform + pos: -59.5,33.5 + parent: 2 + - uid: 21028 + components: + - type: Transform + pos: -61.5,31.5 + parent: 2 + - uid: 21029 + components: + - type: Transform + pos: -64.5,30.5 + parent: 2 + - uid: 21030 + components: + - type: Transform + pos: -65.5,30.5 + parent: 2 + - uid: 21031 + components: + - type: Transform + pos: -66.5,30.5 + parent: 2 + - uid: 21032 + components: + - type: Transform + pos: -71.5,29.5 + parent: 2 + - uid: 21033 + components: + - type: Transform + pos: -70.5,29.5 + parent: 2 + - uid: 21034 + components: + - type: Transform + pos: -69.5,29.5 + parent: 2 + - uid: 21035 + components: + - type: Transform + pos: -68.5,29.5 + parent: 2 + - uid: 21036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,39.5 + parent: 2 + - uid: 21037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,40.5 + parent: 2 + - uid: 21038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,40.5 + parent: 2 + - uid: 21039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,40.5 + parent: 2 + - uid: 21040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,42.5 + parent: 2 + - uid: 21041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,42.5 + parent: 2 + - uid: 21042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,42.5 + parent: 2 + - uid: 21043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,44.5 + parent: 2 + - uid: 21044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,44.5 + parent: 2 + - uid: 21045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,44.5 + parent: 2 + - uid: 21046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,40.5 + parent: 2 + - uid: 21047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,42.5 + parent: 2 + - uid: 21048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,42.5 + parent: 2 + - uid: 21049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,42.5 + parent: 2 + - uid: 21050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,42.5 + parent: 2 + - uid: 21051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,44.5 + parent: 2 + - uid: 21052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,44.5 + parent: 2 + - uid: 21053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,44.5 + parent: 2 + - uid: 21054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,44.5 + parent: 2 + - uid: 21055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,44.5 + parent: 2 + - uid: 21056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,44.5 + parent: 2 + - uid: 21057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,42.5 + parent: 2 + - uid: 21058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,42.5 + parent: 2 + - uid: 21059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,42.5 + parent: 2 + - uid: 21060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,42.5 + parent: 2 + - uid: 21061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,44.5 + parent: 2 + - uid: 21062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,44.5 + parent: 2 + - uid: 21063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,44.5 + parent: 2 + - uid: 21064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,47.5 + parent: 2 + - uid: 21065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,47.5 + parent: 2 + - uid: 21066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,45.5 + parent: 2 + - uid: 21067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,45.5 + parent: 2 + - uid: 21068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,47.5 + parent: 2 + - uid: 21069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,48.5 + parent: 2 + - uid: 21070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,49.5 + parent: 2 + - uid: 21071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,50.5 + parent: 2 + - uid: 21072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,52.5 + parent: 2 + - uid: 21073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,52.5 + parent: 2 + - uid: 21074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,51.5 + parent: 2 + - uid: 21075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,55.5 + parent: 2 + - uid: 21076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,54.5 + parent: 2 + - uid: 21077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,55.5 + parent: 2 + - uid: 21078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,56.5 + parent: 2 + - uid: 21079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,58.5 + parent: 2 + - uid: 21080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,58.5 + parent: 2 + - uid: 21081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,59.5 + parent: 2 + - uid: 21082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,58.5 + parent: 2 + - uid: 21083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,57.5 + parent: 2 + - uid: 21084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,62.5 + parent: 2 + - uid: 21085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,61.5 + parent: 2 + - uid: 21086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,60.5 + parent: 2 + - uid: 21087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,61.5 + parent: 2 + - uid: 21088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,60.5 + parent: 2 + - uid: 21089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,59.5 + parent: 2 + - uid: 21090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,63.5 + parent: 2 + - uid: 21091 + components: + - type: Transform + pos: 9.5,58.5 + parent: 2 + - uid: 21092 + components: + - type: Transform + pos: 13.5,61.5 + parent: 2 + - uid: 21093 + components: + - type: Transform + pos: 13.5,60.5 + parent: 2 + - uid: 21094 + components: + - type: Transform + pos: 13.5,57.5 + parent: 2 + - uid: 21095 + components: + - type: Transform + pos: 13.5,58.5 + parent: 2 + - uid: 21096 + components: + - type: Transform + pos: 13.5,62.5 + parent: 2 + - uid: 21097 + components: + - type: Transform + pos: 11.5,60.5 + parent: 2 + - uid: 21098 + components: + - type: Transform + pos: 11.5,61.5 + parent: 2 + - uid: 21099 + components: + - type: Transform + pos: 9.5,63.5 + parent: 2 + - uid: 21100 + components: + - type: Transform + pos: 9.5,64.5 + parent: 2 + - uid: 21101 + components: + - type: Transform + pos: 9.5,65.5 + parent: 2 + - uid: 21102 + components: + - type: Transform + pos: -7.5,64.5 + parent: 2 + - uid: 21103 + components: + - type: Transform + pos: -7.5,65.5 + parent: 2 + - uid: 21104 + components: + - type: Transform + pos: -1.5,68.5 + parent: 2 + - uid: 21105 + components: + - type: Transform + pos: -0.5,68.5 + parent: 2 + - uid: 21106 + components: + - type: Transform + pos: 0.5,68.5 + parent: 2 + - uid: 21107 + components: + - type: Transform + pos: 1.5,68.5 + parent: 2 + - uid: 21108 + components: + - type: Transform + pos: 2.5,68.5 + parent: 2 + - uid: 21109 + components: + - type: Transform + pos: 3.5,68.5 + parent: 2 + - uid: 21110 + components: + - type: Transform + pos: 4.5,71.5 + parent: 2 + - uid: 21111 + components: + - type: Transform + pos: -5.5,68.5 + parent: 2 + - uid: 21112 + components: + - type: Transform + pos: -5.5,69.5 + parent: 2 + - uid: 21113 + components: + - type: Transform + pos: -6.5,69.5 + parent: 2 + - uid: 21114 + components: + - type: Transform + pos: -6.5,70.5 + parent: 2 + - uid: 21115 + components: + - type: Transform + pos: -7.5,70.5 + parent: 2 + - uid: 21116 + components: + - type: Transform + pos: -7.5,71.5 + parent: 2 + - uid: 21117 + components: + - type: Transform + pos: -7.5,72.5 + parent: 2 + - uid: 21118 + components: + - type: Transform + pos: 10.5,71.5 + parent: 2 + - uid: 21119 + components: + - type: Transform + pos: 10.5,70.5 + parent: 2 + - uid: 21120 + components: + - type: Transform + pos: 9.5,70.5 + parent: 2 + - uid: 21121 + components: + - type: Transform + pos: 9.5,69.5 + parent: 2 + - uid: 21122 + components: + - type: Transform + pos: 8.5,69.5 + parent: 2 + - uid: 21123 + components: + - type: Transform + pos: 8.5,68.5 + parent: 2 + - uid: 21124 + components: + - type: Transform + pos: 7.5,68.5 + parent: 2 + - uid: 21125 + components: + - type: Transform + pos: -7.5,73.5 + parent: 2 + - uid: 21126 + components: + - type: Transform + pos: -6.5,73.5 + parent: 2 + - uid: 21127 + components: + - type: Transform + pos: -5.5,73.5 + parent: 2 + - uid: 21128 + components: + - type: Transform + pos: -3.5,73.5 + parent: 2 + - uid: 21129 + components: + - type: Transform + pos: -2.5,73.5 + parent: 2 + - uid: 21130 + components: + - type: Transform + pos: -1.5,73.5 + parent: 2 + - uid: 21131 + components: + - type: Transform + pos: -1.5,69.5 + parent: 2 + - uid: 21132 + components: + - type: Transform + pos: -1.5,72.5 + parent: 2 + - uid: 21133 + components: + - type: Transform + pos: -1.5,71.5 + parent: 2 + - uid: 21134 + components: + - type: Transform + pos: -0.5,73.5 + parent: 2 + - uid: 21135 + components: + - type: Transform + pos: 3.5,73.5 + parent: 2 + - uid: 21136 + components: + - type: Transform + pos: 4.5,68.5 + parent: 2 + - uid: 21137 + components: + - type: Transform + pos: 4.5,69.5 + parent: 2 + - uid: 21138 + components: + - type: Transform + pos: 4.5,72.5 + parent: 2 + - uid: 21139 + components: + - type: Transform + pos: 4.5,73.5 + parent: 2 + - uid: 21140 + components: + - type: Transform + pos: 5.5,73.5 + parent: 2 + - uid: 21141 + components: + - type: Transform + pos: 9.5,73.5 + parent: 2 + - uid: 21142 + components: + - type: Transform + pos: 8.5,73.5 + parent: 2 + - uid: 21143 + components: + - type: Transform + pos: 10.5,72.5 + parent: 2 + - uid: 21144 + components: + - type: Transform + pos: 10.5,73.5 + parent: 2 + - uid: 21145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,73.5 + parent: 2 + - uid: 21146 + components: + - type: Transform + pos: 5.5,74.5 + parent: 2 + - uid: 21147 + components: + - type: Transform + pos: 5.5,75.5 + parent: 2 + - uid: 21148 + components: + - type: Transform + pos: 5.5,76.5 + parent: 2 + - uid: 21149 + components: + - type: Transform + pos: 5.5,77.5 + parent: 2 + - uid: 21150 + components: + - type: Transform + pos: 5.5,78.5 + parent: 2 + - uid: 21151 + components: + - type: Transform + pos: 5.5,79.5 + parent: 2 + - uid: 21152 + components: + - type: Transform + pos: 5.5,80.5 + parent: 2 + - uid: 21153 + components: + - type: Transform + pos: 5.5,81.5 + parent: 2 + - uid: 21154 + components: + - type: Transform + pos: 6.5,81.5 + parent: 2 + - uid: 21155 + components: + - type: Transform + pos: 8.5,81.5 + parent: 2 + - uid: 21156 + components: + - type: Transform + pos: 9.5,81.5 + parent: 2 + - uid: 21157 + components: + - type: Transform + pos: 10.5,81.5 + parent: 2 + - uid: 21158 + components: + - type: Transform + pos: 10.5,80.5 + parent: 2 + - uid: 21159 + components: + - type: Transform + pos: 10.5,79.5 + parent: 2 + - uid: 21160 + components: + - type: Transform + pos: 10.5,78.5 + parent: 2 + - uid: 21161 + components: + - type: Transform + pos: 10.5,77.5 + parent: 2 + - uid: 21162 + components: + - type: Transform + pos: 10.5,76.5 + parent: 2 + - uid: 21163 + components: + - type: Transform + pos: 10.5,75.5 + parent: 2 + - uid: 21164 + components: + - type: Transform + pos: 10.5,74.5 + parent: 2 + - uid: 21165 + components: + - type: Transform + pos: 10.5,82.5 + parent: 2 + - uid: 21166 + components: + - type: Transform + pos: 10.5,83.5 + parent: 2 + - uid: 21167 + components: + - type: Transform + pos: 10.5,84.5 + parent: 2 + - uid: 21168 + components: + - type: Transform + pos: 9.5,84.5 + parent: 2 + - uid: 21169 + components: + - type: Transform + pos: 9.5,85.5 + parent: 2 + - uid: 21170 + components: + - type: Transform + pos: 8.5,85.5 + parent: 2 + - uid: 21171 + components: + - type: Transform + pos: 8.5,86.5 + parent: 2 + - uid: 21172 + components: + - type: Transform + pos: 7.5,86.5 + parent: 2 + - uid: 21173 + components: + - type: Transform + pos: 6.5,86.5 + parent: 2 + - uid: 21174 + components: + - type: Transform + pos: 5.5,86.5 + parent: 2 + - uid: 21175 + components: + - type: Transform + pos: 4.5,86.5 + parent: 2 + - uid: 21176 + components: + - type: Transform + pos: 4.5,85.5 + parent: 2 + - uid: 21177 + components: + - type: Transform + pos: 4.5,83.5 + parent: 2 + - uid: 21178 + components: + - type: Transform + pos: 4.5,82.5 + parent: 2 + - uid: 21179 + components: + - type: Transform + pos: 4.5,81.5 + parent: 2 + - uid: 21180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,81.5 + parent: 2 + - uid: 21181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,81.5 + parent: 2 + - uid: 21182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,81.5 + parent: 2 + - uid: 21183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,82.5 + parent: 2 + - uid: 21184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,83.5 + parent: 2 + - uid: 21185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,85.5 + parent: 2 + - uid: 21186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,86.5 + parent: 2 + - uid: 21187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,81.5 + parent: 2 + - uid: 21188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,81.5 + parent: 2 + - uid: 21189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,81.5 + parent: 2 + - uid: 21190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,81.5 + parent: 2 + - uid: 21191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,81.5 + parent: 2 + - uid: 21192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,82.5 + parent: 2 + - uid: 21193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,83.5 + parent: 2 + - uid: 21194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,84.5 + parent: 2 + - uid: 21195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,84.5 + parent: 2 + - uid: 21196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,85.5 + parent: 2 + - uid: 21197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,85.5 + parent: 2 + - uid: 21198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,86.5 + parent: 2 + - uid: 21199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,86.5 + parent: 2 + - uid: 21200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,86.5 + parent: 2 + - uid: 21201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,86.5 + parent: 2 + - uid: 21202 + components: + - type: Transform + pos: -2.5,80.5 + parent: 2 + - uid: 21203 + components: + - type: Transform + pos: -2.5,79.5 + parent: 2 + - uid: 21204 + components: + - type: Transform + pos: -2.5,78.5 + parent: 2 + - uid: 21205 + components: + - type: Transform + pos: -2.5,77.5 + parent: 2 + - uid: 21206 + components: + - type: Transform + pos: -2.5,76.5 + parent: 2 + - uid: 21207 + components: + - type: Transform + pos: -2.5,75.5 + parent: 2 + - uid: 21208 + components: + - type: Transform + pos: -2.5,74.5 + parent: 2 + - uid: 21209 + components: + - type: Transform + pos: -7.5,74.5 + parent: 2 + - uid: 21210 + components: + - type: Transform + pos: -7.5,75.5 + parent: 2 + - uid: 21211 + components: + - type: Transform + pos: -7.5,76.5 + parent: 2 + - uid: 21212 + components: + - type: Transform + pos: -7.5,80.5 + parent: 2 + - uid: 21213 + components: + - type: Transform + pos: -7.5,79.5 + parent: 2 + - uid: 21214 + components: + - type: Transform + pos: -7.5,78.5 + parent: 2 + - uid: 21215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,78.5 + parent: 2 + - uid: 21216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,78.5 + parent: 2 + - uid: 21217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,76.5 + parent: 2 + - uid: 21218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,76.5 + parent: 2 + - uid: 21219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,72.5 + parent: 2 + - uid: 21220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,64.5 + parent: 2 + - uid: 21221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,65.5 + parent: 2 + - uid: 21222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,65.5 + parent: 2 + - uid: 21223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,66.5 + parent: 2 + - uid: 21224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,67.5 + parent: 2 + - uid: 21225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,67.5 + parent: 2 + - uid: 21226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,68.5 + parent: 2 + - uid: 21227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,69.5 + parent: 2 + - uid: 21228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,70.5 + parent: 2 + - uid: 21229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,69.5 + parent: 2 + - uid: 21230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,70.5 + parent: 2 + - uid: 21231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,71.5 + parent: 2 + - uid: 21232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,72.5 + parent: 2 + - uid: 21233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,73.5 + parent: 2 + - uid: 21234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,74.5 + parent: 2 + - uid: 21235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,75.5 + parent: 2 + - uid: 21236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,90.5 + parent: 2 + - uid: 21237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,74.5 + parent: 2 + - uid: 21238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,75.5 + parent: 2 + - uid: 21239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,76.5 + parent: 2 + - uid: 21240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,77.5 + parent: 2 + - uid: 21241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,78.5 + parent: 2 + - uid: 21242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,79.5 + parent: 2 + - uid: 21243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,74.5 + parent: 2 + - uid: 21244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,75.5 + parent: 2 + - uid: 21245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,76.5 + parent: 2 + - uid: 21246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,77.5 + parent: 2 + - uid: 21247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,78.5 + parent: 2 + - uid: 21248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,79.5 + parent: 2 + - uid: 21249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,78.5 + parent: 2 + - uid: 21250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,79.5 + parent: 2 + - uid: 21251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,80.5 + parent: 2 + - uid: 21252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,81.5 + parent: 2 + - uid: 21253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,81.5 + parent: 2 + - uid: 21254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,82.5 + parent: 2 + - uid: 21255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,83.5 + parent: 2 + - uid: 21256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,84.5 + parent: 2 + - uid: 21257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,85.5 + parent: 2 + - uid: 21258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,83.5 + parent: 2 + - uid: 21259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,84.5 + parent: 2 + - uid: 21260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,85.5 + parent: 2 + - uid: 21261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,86.5 + parent: 2 + - uid: 21262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,87.5 + parent: 2 + - uid: 21263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,87.5 + parent: 2 + - uid: 21264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,87.5 + parent: 2 + - uid: 21265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,89.5 + parent: 2 + - uid: 21266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,89.5 + parent: 2 + - uid: 21267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,89.5 + parent: 2 + - uid: 21268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,88.5 + parent: 2 + - uid: 21269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,88.5 + parent: 2 + - uid: 21270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,88.5 + parent: 2 + - uid: 21271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,88.5 + parent: 2 + - uid: 21272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,90.5 + parent: 2 + - uid: 21273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,90.5 + parent: 2 + - uid: 21274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,90.5 + parent: 2 + - uid: 21275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,92.5 + parent: 2 + - uid: 21276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,92.5 + parent: 2 + - uid: 21277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,92.5 + parent: 2 + - uid: 21278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,92.5 + parent: 2 + - uid: 21279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,90.5 + parent: 2 + - uid: 21280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,90.5 + parent: 2 + - uid: 21281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,90.5 + parent: 2 + - uid: 21282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,90.5 + parent: 2 + - uid: 21283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,90.5 + parent: 2 + - uid: 21284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,90.5 + parent: 2 + - uid: 21285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,87.5 + parent: 2 + - uid: 21286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,92.5 + parent: 2 + - uid: 21287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,92.5 + parent: 2 + - uid: 21288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,92.5 + parent: 2 + - uid: 21289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,92.5 + parent: 2 + - uid: 21290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,88.5 + parent: 2 + - uid: 21291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,88.5 + parent: 2 + - uid: 21292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,88.5 + parent: 2 + - uid: 21293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,88.5 + parent: 2 + - uid: 21294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,90.5 + parent: 2 + - uid: 21295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,90.5 + parent: 2 + - uid: 21296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,90.5 + parent: 2 + - uid: 21297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,87.5 + parent: 2 + - uid: 21298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,87.5 + parent: 2 + - uid: 21299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,89.5 + parent: 2 + - uid: 21300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,89.5 + parent: 2 + - uid: 21301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,89.5 + parent: 2 + - uid: 21302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,74.5 + parent: 2 + - uid: 21303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,85.5 + parent: 2 + - uid: 21304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,84.5 + parent: 2 + - uid: 21305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,83.5 + parent: 2 + - uid: 21306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,82.5 + parent: 2 + - uid: 21307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,81.5 + parent: 2 + - uid: 21308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,80.5 + parent: 2 + - uid: 21309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,86.5 + parent: 2 + - uid: 21310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,85.5 + parent: 2 + - uid: 21311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,84.5 + parent: 2 + - uid: 21312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,83.5 + parent: 2 + - uid: 21313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,84.5 + parent: 2 + - uid: 21314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,83.5 + parent: 2 + - uid: 21315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,82.5 + parent: 2 + - uid: 21316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,81.5 + parent: 2 + - uid: 21317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,81.5 + parent: 2 + - uid: 21318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,80.5 + parent: 2 + - uid: 21319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,78.5 + parent: 2 + - uid: 21320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,77.5 + parent: 2 + - uid: 21321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,76.5 + parent: 2 + - uid: 21322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,79.5 + parent: 2 + - uid: 21323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,78.5 + parent: 2 + - uid: 21324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,77.5 + parent: 2 + - uid: 21325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,76.5 + parent: 2 + - uid: 21326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,75.5 + parent: 2 + - uid: 21327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,73.5 + parent: 2 + - uid: 21328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,73.5 + parent: 2 + - uid: 21329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,72.5 + parent: 2 + - uid: 21330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,71.5 + parent: 2 + - uid: 21331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,70.5 + parent: 2 + - uid: 21332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,73.5 + parent: 2 + - uid: 21333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,72.5 + parent: 2 + - uid: 21334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,71.5 + parent: 2 + - uid: 21335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,70.5 + parent: 2 + - uid: 21336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,70.5 + parent: 2 + - uid: 21337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,69.5 + parent: 2 + - uid: 21338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,68.5 + parent: 2 + - uid: 21339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,68.5 + parent: 2 + - uid: 21340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,67.5 + parent: 2 + - uid: 21341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,66.5 + parent: 2 + - uid: 21342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,65.5 + parent: 2 + - uid: 21343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,74.5 + parent: 2 + - uid: 21344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,74.5 + parent: 2 + - uid: 21345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,80.5 + parent: 2 + - uid: 21346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,80.5 + parent: 2 + - uid: 21347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-17.5 + parent: 2 + - uid: 21348 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 2 + - uid: 21349 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 2 + - uid: 21350 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 2 + - uid: 21351 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 2 + - uid: 21352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-17.5 + parent: 2 + - uid: 21353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-18.5 + parent: 2 + - uid: 21354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-19.5 + parent: 2 + - uid: 21355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-20.5 + parent: 2 + - uid: 21356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-21.5 + parent: 2 + - uid: 21357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-22.5 + parent: 2 + - uid: 21358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-22.5 + parent: 2 + - uid: 21359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-21.5 + parent: 2 + - uid: 21360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-22.5 + parent: 2 + - uid: 21361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-26.5 + parent: 2 + - uid: 21362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-26.5 + parent: 2 + - uid: 21363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-26.5 + parent: 2 + - uid: 21364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-26.5 + parent: 2 + - uid: 21365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-26.5 + parent: 2 + - uid: 21366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-26.5 + parent: 2 + - uid: 21367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-26.5 + parent: 2 + - uid: 21368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-27.5 + parent: 2 + - uid: 21369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-28.5 + parent: 2 + - uid: 21370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-29.5 + parent: 2 + - uid: 21371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-33.5 + parent: 2 + - uid: 21372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-34.5 + parent: 2 + - uid: 21373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-35.5 + parent: 2 + - uid: 21374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-35.5 + parent: 2 + - uid: 21375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-35.5 + parent: 2 + - uid: 21376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-35.5 + parent: 2 + - uid: 21377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-35.5 + parent: 2 + - uid: 21378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-35.5 + parent: 2 + - uid: 21379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-35.5 + parent: 2 + - uid: 21380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-35.5 + parent: 2 + - uid: 21381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-35.5 + parent: 2 + - uid: 21382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-35.5 + parent: 2 + - uid: 21383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-35.5 + parent: 2 + - uid: 21384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-35.5 + parent: 2 + - uid: 21385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-34.5 + parent: 2 + - uid: 21386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-33.5 + parent: 2 + - uid: 21387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-32.5 + parent: 2 + - uid: 21388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-30.5 + parent: 2 + - uid: 21389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-29.5 + parent: 2 + - uid: 21390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-28.5 + parent: 2 + - uid: 21391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-27.5 + parent: 2 + - uid: 21392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-26.5 + parent: 2 + - uid: 21393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-34.5 + parent: 2 + - uid: 21394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-33.5 + parent: 2 + - uid: 21395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-32.5 + parent: 2 + - uid: 21396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-30.5 + parent: 2 + - uid: 21397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-29.5 + parent: 2 + - uid: 21398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-28.5 + parent: 2 + - uid: 21399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-27.5 + parent: 2 + - uid: 21400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-26.5 + parent: 2 + - uid: 21401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-26.5 + parent: 2 + - uid: 21402 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 2 + - uid: 21403 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 2 + - uid: 21404 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 2 + - uid: 21405 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 2 + - uid: 21406 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 + - uid: 21407 + components: + - type: Transform + pos: 8.5,-38.5 + parent: 2 + - uid: 21408 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 2 + - uid: 21409 + components: + - type: Transform + pos: 9.5,-39.5 + parent: 2 + - uid: 21410 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 2 + - uid: 21411 + components: + - type: Transform + pos: 11.5,-39.5 + parent: 2 + - uid: 21412 + components: + - type: Transform + pos: 12.5,-39.5 + parent: 2 + - uid: 21413 + components: + - type: Transform + pos: 14.5,-39.5 + parent: 2 + - uid: 21414 + components: + - type: Transform + pos: 15.5,-39.5 + parent: 2 + - uid: 21415 + components: + - type: Transform + pos: 15.5,-38.5 + parent: 2 + - uid: 21416 + components: + - type: Transform + pos: 15.5,-37.5 + parent: 2 + - uid: 21417 + components: + - type: Transform + pos: 17.5,-38.5 + parent: 2 + - uid: 21418 + components: + - type: Transform + pos: 17.5,-37.5 + parent: 2 + - uid: 21419 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 2 + - uid: 21420 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 2 + - uid: 21421 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 2 + - uid: 21422 + components: + - type: Transform + pos: 21.5,-38.5 + parent: 2 + - uid: 21423 + components: + - type: Transform + pos: 22.5,-38.5 + parent: 2 + - uid: 21424 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 2 + - uid: 21425 + components: + - type: Transform + pos: 24.5,-38.5 + parent: 2 + - uid: 21426 + components: + - type: Transform + pos: 25.5,-38.5 + parent: 2 + - uid: 21427 + components: + - type: Transform + pos: 26.5,-38.5 + parent: 2 + - uid: 21428 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 2 + - uid: 21429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-38.5 + parent: 2 + - uid: 21430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-38.5 + parent: 2 + - uid: 21431 + components: + - type: Transform + pos: 31.5,-39.5 + parent: 2 + - uid: 21432 + components: + - type: Transform + pos: 31.5,-40.5 + parent: 2 + - uid: 21433 + components: + - type: Transform + pos: 32.5,-40.5 + parent: 2 + - uid: 21434 + components: + - type: Transform + pos: 33.5,-40.5 + parent: 2 + - uid: 21435 + components: + - type: Transform + pos: 34.5,-40.5 + parent: 2 + - uid: 21436 + components: + - type: Transform + pos: 35.5,-40.5 + parent: 2 + - uid: 21437 + components: + - type: Transform + pos: 36.5,-40.5 + parent: 2 + - uid: 21438 + components: + - type: Transform + pos: 37.5,-40.5 + parent: 2 + - uid: 21439 + components: + - type: Transform + pos: 37.5,-41.5 + parent: 2 + - uid: 21440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-56.5 + parent: 2 + - uid: 21441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-43.5 + parent: 2 + - uid: 21442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-43.5 + parent: 2 + - uid: 21443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-43.5 + parent: 2 + - uid: 21444 + components: + - type: Transform + pos: -2.5,-49.5 + parent: 2 + - uid: 21445 + components: + - type: Transform + pos: -1.5,-49.5 + parent: 2 + - uid: 21446 + components: + - type: Transform + pos: -0.5,-49.5 + parent: 2 + - uid: 21447 + components: + - type: Transform + pos: 0.5,-49.5 + parent: 2 + - uid: 21448 + components: + - type: Transform + pos: 1.5,-49.5 + parent: 2 + - uid: 21449 + components: + - type: Transform + pos: 1.5,-48.5 + parent: 2 + - uid: 21450 + components: + - type: Transform + pos: 1.5,-47.5 + parent: 2 + - uid: 21451 + components: + - type: Transform + pos: 1.5,-50.5 + parent: 2 + - uid: 21452 + components: + - type: Transform + pos: 1.5,-51.5 + parent: 2 + - uid: 21453 + components: + - type: Transform + pos: 2.5,-51.5 + parent: 2 + - uid: 21454 + components: + - type: Transform + pos: 3.5,-51.5 + parent: 2 + - uid: 21455 + components: + - type: Transform + pos: 4.5,-51.5 + parent: 2 + - uid: 21456 + components: + - type: Transform + pos: 5.5,-51.5 + parent: 2 + - uid: 21457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-49.5 + parent: 2 + - uid: 21458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-50.5 + parent: 2 + - uid: 21459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-53.5 + parent: 2 + - uid: 21460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-54.5 + parent: 2 + - uid: 21461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-55.5 + parent: 2 + - uid: 21462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-56.5 + parent: 2 + - uid: 21463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-56.5 + parent: 2 + - uid: 21464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-56.5 + parent: 2 + - uid: 21465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-56.5 + parent: 2 + - uid: 21466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-56.5 + parent: 2 + - uid: 21467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-56.5 + parent: 2 + - uid: 21468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-56.5 + parent: 2 + - uid: 21469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-55.5 + parent: 2 + - uid: 21470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-54.5 + parent: 2 + - uid: 21471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-53.5 + parent: 2 + - uid: 21472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-52.5 + parent: 2 + - uid: 21473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-51.5 + parent: 2 + - uid: 21474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-50.5 + parent: 2 + - uid: 21475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-49.5 + parent: 2 + - uid: 21476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-49.5 + parent: 2 + - uid: 21477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-49.5 + parent: 2 + - uid: 21478 + components: + - type: Transform + pos: 33.5,-60.5 + parent: 2 + - uid: 21479 + components: + - type: Transform + pos: -43.5,21.5 + parent: 2 + - uid: 21480 + components: + - type: Transform + pos: -3.5,-54.5 + parent: 2 + - uid: 21481 + components: + - type: Transform + pos: -2.5,-54.5 + parent: 2 + - uid: 21482 + components: + - type: Transform + pos: -1.5,-54.5 + parent: 2 + - uid: 21483 + components: + - type: Transform + pos: -0.5,-54.5 + parent: 2 + - uid: 21484 + components: + - type: Transform + pos: 0.5,-54.5 + parent: 2 + - uid: 21485 + components: + - type: Transform + pos: 1.5,-54.5 + parent: 2 + - uid: 21486 + components: + - type: Transform + pos: 1.5,-53.5 + parent: 2 + - uid: 21487 + components: + - type: Transform + pos: 1.5,-52.5 + parent: 2 + - uid: 21488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-61.5 + parent: 2 + - uid: 21489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-61.5 + parent: 2 + - uid: 21490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-61.5 + parent: 2 + - uid: 21491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,26.5 + parent: 2 + - uid: 21492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-55.5 + parent: 2 + - uid: 21493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-64.5 + parent: 2 + - uid: 21494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-64.5 + parent: 2 + - uid: 21495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-64.5 + parent: 2 + - uid: 21496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-62.5 + parent: 2 + - uid: 21497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-64.5 + parent: 2 + - uid: 21498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-64.5 + parent: 2 + - uid: 21499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-62.5 + parent: 2 + - uid: 21500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-63.5 + parent: 2 + - uid: 21501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-62.5 + parent: 2 + - uid: 21502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-62.5 + parent: 2 + - uid: 21503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-62.5 + parent: 2 + - uid: 21504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-62.5 + parent: 2 + - uid: 21505 + components: + - type: Transform + pos: 15.5,-63.5 + parent: 2 + - uid: 21506 + components: + - type: Transform + pos: 15.5,-64.5 + parent: 2 + - uid: 21507 + components: + - type: Transform + pos: 15.5,-65.5 + parent: 2 + - uid: 21508 + components: + - type: Transform + pos: 15.5,-66.5 + parent: 2 + - uid: 21509 + components: + - type: Transform + pos: 15.5,-67.5 + parent: 2 + - uid: 21510 + components: + - type: Transform + pos: 15.5,-68.5 + parent: 2 + - uid: 21511 + components: + - type: Transform + pos: 15.5,-69.5 + parent: 2 + - uid: 21512 + components: + - type: Transform + pos: 15.5,-70.5 + parent: 2 + - uid: 21513 + components: + - type: Transform + pos: 15.5,-71.5 + parent: 2 + - uid: 21514 + components: + - type: Transform + pos: 14.5,-71.5 + parent: 2 + - uid: 21515 + components: + - type: Transform + pos: 10.5,-71.5 + parent: 2 + - uid: 21516 + components: + - type: Transform + pos: 9.5,-71.5 + parent: 2 + - uid: 21517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-67.5 + parent: 2 + - uid: 21518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-67.5 + parent: 2 + - uid: 21519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-67.5 + parent: 2 + - uid: 21520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-67.5 + parent: 2 + - uid: 21521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-67.5 + parent: 2 + - uid: 21522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-67.5 + parent: 2 + - uid: 21523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-67.5 + parent: 2 + - uid: 21524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-67.5 + parent: 2 + - uid: 21525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-66.5 + parent: 2 + - uid: 21526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-65.5 + parent: 2 + - uid: 21527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-65.5 + parent: 2 + - uid: 21528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-65.5 + parent: 2 + - uid: 21529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-65.5 + parent: 2 + - uid: 21530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-66.5 + parent: 2 + - uid: 21531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-71.5 + parent: 2 + - uid: 21532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-71.5 + parent: 2 + - uid: 21533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-71.5 + parent: 2 + - uid: 21534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-71.5 + parent: 2 + - uid: 21535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-71.5 + parent: 2 + - uid: 21536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-71.5 + parent: 2 + - uid: 21537 + components: + - type: Transform + pos: 16.5,-52.5 + parent: 2 + - uid: 21538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-63.5 + parent: 2 + - uid: 21539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-64.5 + parent: 2 + - uid: 21540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-65.5 + parent: 2 + - uid: 21541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-66.5 + parent: 2 + - uid: 21542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-67.5 + parent: 2 + - uid: 21543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-71.5 + parent: 2 + - uid: 21544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-72.5 + parent: 2 + - uid: 21545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-73.5 + parent: 2 + - uid: 21546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-75.5 + parent: 2 + - uid: 21547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-76.5 + parent: 2 + - uid: 21548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-76.5 + parent: 2 + - uid: 21549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-77.5 + parent: 2 + - uid: 21550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-77.5 + parent: 2 + - uid: 21551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-77.5 + parent: 2 + - uid: 21552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-77.5 + parent: 2 + - uid: 21553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-77.5 + parent: 2 + - uid: 21554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-77.5 + parent: 2 + - uid: 21555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-77.5 + parent: 2 + - uid: 21556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-77.5 + parent: 2 + - uid: 21557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-77.5 + parent: 2 + - uid: 21558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-76.5 + parent: 2 + - uid: 21559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-76.5 + parent: 2 + - uid: 21560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-75.5 + parent: 2 + - uid: 21561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-73.5 + parent: 2 + - uid: 21562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-72.5 + parent: 2 + - uid: 21563 + components: + - type: Transform + pos: 18.5,-52.5 + parent: 2 + - uid: 21564 + components: + - type: Transform + pos: 19.5,-52.5 + parent: 2 + - uid: 21565 + components: + - type: Transform + pos: 18.5,-64.5 + parent: 2 + - uid: 21566 + components: + - type: Transform + pos: 17.5,-64.5 + parent: 2 + - uid: 21567 + components: + - type: Transform + pos: 16.5,-64.5 + parent: 2 + - uid: 21568 + components: + - type: Transform + pos: 21.5,-65.5 + parent: 2 + - uid: 21569 + components: + - type: Transform + pos: 17.5,-52.5 + parent: 2 + - uid: 21570 + components: + - type: Transform + pos: 19.5,-64.5 + parent: 2 + - uid: 21571 + components: + - type: Transform + pos: 19.5,-60.5 + parent: 2 + - uid: 21572 + components: + - type: Transform + pos: 18.5,-60.5 + parent: 2 + - uid: 21573 + components: + - type: Transform + pos: 17.5,-60.5 + parent: 2 + - uid: 21574 + components: + - type: Transform + pos: 16.5,-60.5 + parent: 2 + - uid: 21575 + components: + - type: Transform + pos: 19.5,-56.5 + parent: 2 + - uid: 21576 + components: + - type: Transform + pos: 18.5,-56.5 + parent: 2 + - uid: 21577 + components: + - type: Transform + pos: 17.5,-56.5 + parent: 2 + - uid: 21578 + components: + - type: Transform + pos: 16.5,-56.5 + parent: 2 + - uid: 21579 + components: + - type: Transform + pos: 25.5,-65.5 + parent: 2 + - uid: 21580 + components: + - type: Transform + pos: 21.5,-60.5 + parent: 2 + - uid: 21581 + components: + - type: Transform + pos: 21.5,-56.5 + parent: 2 + - uid: 21582 + components: + - type: Transform + pos: 23.5,-65.5 + parent: 2 + - uid: 21583 + components: + - type: Transform + pos: 38.5,-41.5 + parent: 2 + - uid: 21584 + components: + - type: Transform + pos: 29.5,-65.5 + parent: 2 + - uid: 21585 + components: + - type: Transform + pos: 33.5,-65.5 + parent: 2 + - uid: 21586 + components: + - type: Transform + pos: 33.5,-64.5 + parent: 2 + - uid: 21587 + components: + - type: Transform + pos: 39.5,-41.5 + parent: 2 + - uid: 21588 + components: + - type: Transform + pos: 40.5,-41.5 + parent: 2 + - uid: 21589 + components: + - type: Transform + pos: 41.5,-41.5 + parent: 2 + - uid: 21590 + components: + - type: Transform + pos: 42.5,-41.5 + parent: 2 + - uid: 21591 + components: + - type: Transform + pos: 43.5,-41.5 + parent: 2 + - uid: 21592 + components: + - type: Transform + pos: 44.5,-41.5 + parent: 2 + - uid: 21593 + components: + - type: Transform + pos: 45.5,-41.5 + parent: 2 + - uid: 21594 + components: + - type: Transform + pos: 33.5,-56.5 + parent: 2 + - uid: 21595 + components: + - type: Transform + pos: 41.5,-45.5 + parent: 2 + - uid: 21596 + components: + - type: Transform + pos: 43.5,-45.5 + parent: 2 + - uid: 21597 + components: + - type: Transform + pos: 43.5,-44.5 + parent: 2 + - uid: 21598 + components: + - type: Transform + pos: 44.5,-44.5 + parent: 2 + - uid: 21599 + components: + - type: Transform + pos: 41.5,-47.5 + parent: 2 + - uid: 21600 + components: + - type: Transform + pos: 40.5,-47.5 + parent: 2 + - uid: 21601 + components: + - type: Transform + pos: 39.5,-47.5 + parent: 2 + - uid: 21602 + components: + - type: Transform + pos: 45.5,-44.5 + parent: 2 + - uid: 21603 + components: + - type: Transform + pos: 34.5,-52.5 + parent: 2 + - uid: 21604 + components: + - type: Transform + pos: 35.5,-52.5 + parent: 2 + - uid: 21605 + components: + - type: Transform + pos: 36.5,-52.5 + parent: 2 + - uid: 21606 + components: + - type: Transform + pos: 37.5,-52.5 + parent: 2 + - uid: 21607 + components: + - type: Transform + pos: 38.5,-52.5 + parent: 2 + - uid: 21608 + components: + - type: Transform + pos: 39.5,-52.5 + parent: 2 + - uid: 21609 + components: + - type: Transform + pos: 39.5,-49.5 + parent: 2 + - uid: 21610 + components: + - type: Transform + pos: 39.5,-50.5 + parent: 2 + - uid: 21611 + components: + - type: Transform + pos: 39.5,-51.5 + parent: 2 + - uid: 21612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-70.5 + parent: 2 + - uid: 21613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-70.5 + parent: 2 + - uid: 21614 + components: + - type: Transform + pos: 25.5,-67.5 + parent: 2 + - uid: 21615 + components: + - type: Transform + pos: 25.5,-68.5 + parent: 2 + - uid: 21616 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 2 + - uid: 21617 + components: + - type: Transform + pos: 25.5,-70.5 + parent: 2 + - uid: 21618 + components: + - type: Transform + pos: 25.5,-71.5 + parent: 2 + - uid: 21619 + components: + - type: Transform + pos: 26.5,-71.5 + parent: 2 + - uid: 21620 + components: + - type: Transform + pos: 28.5,-71.5 + parent: 2 + - uid: 21621 + components: + - type: Transform + pos: 29.5,-71.5 + parent: 2 + - uid: 21622 + components: + - type: Transform + pos: 29.5,-70.5 + parent: 2 + - uid: 21623 + components: + - type: Transform + pos: 29.5,-69.5 + parent: 2 + - uid: 21624 + components: + - type: Transform + pos: 29.5,-68.5 + parent: 2 + - uid: 21625 + components: + - type: Transform + pos: 29.5,-67.5 + parent: 2 + - uid: 21626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-53.5 + parent: 2 + - uid: 21627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-55.5 + parent: 2 + - uid: 21628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-57.5 + parent: 2 + - uid: 21629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-64.5 + parent: 2 + - uid: 21630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-64.5 + parent: 2 + - uid: 21631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-64.5 + parent: 2 + - uid: 21632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-64.5 + parent: 2 + - uid: 21633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-64.5 + parent: 2 + - uid: 21634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-63.5 + parent: 2 + - uid: 21635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-62.5 + parent: 2 + - uid: 21636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-61.5 + parent: 2 + - uid: 21637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-60.5 + parent: 2 + - uid: 21638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-60.5 + parent: 2 + - uid: 21639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-60.5 + parent: 2 + - uid: 21640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-60.5 + parent: 2 + - uid: 21641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-60.5 + parent: 2 + - uid: 21642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-59.5 + parent: 2 + - uid: 21643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-58.5 + parent: 2 + - uid: 21644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-57.5 + parent: 2 + - uid: 21645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-56.5 + parent: 2 + - uid: 21646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-56.5 + parent: 2 + - uid: 21647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-56.5 + parent: 2 + - uid: 21648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-56.5 + parent: 2 + - uid: 21649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-56.5 + parent: 2 + - uid: 21650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-55.5 + parent: 2 + - uid: 21651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-53.5 + parent: 2 + - uid: 21652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-59.5 + parent: 2 + - uid: 21653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-61.5 + parent: 2 + - uid: 21654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-63.5 + parent: 2 + - uid: 21655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-67.5 + parent: 2 + - uid: 21656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-67.5 + parent: 2 + - uid: 21657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-63.5 + parent: 2 + - uid: 21658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-61.5 + parent: 2 + - uid: 21659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-59.5 + parent: 2 + - uid: 21660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-57.5 + parent: 2 + - uid: 21661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-55.5 + parent: 2 + - uid: 21662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-53.5 + parent: 2 + - uid: 21663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-73.5 + parent: 2 + - uid: 21664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-73.5 + parent: 2 + - uid: 21665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-73.5 + parent: 2 + - uid: 21666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-71.5 + parent: 2 + - uid: 21667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-71.5 + parent: 2 + - uid: 21668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-75.5 + parent: 2 + - uid: 21669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-75.5 + parent: 2 + - uid: 21670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-75.5 + parent: 2 + - uid: 21671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-75.5 + parent: 2 + - uid: 21672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-75.5 + parent: 2 + - uid: 21673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-73.5 + parent: 2 + - uid: 21674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-73.5 + parent: 2 + - uid: 21675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-73.5 + parent: 2 + - uid: 21676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-72.5 + parent: 2 + - uid: 21677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-72.5 + parent: 2 + - uid: 21678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-72.5 + parent: 2 + - uid: 21679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-70.5 + parent: 2 + - uid: 21680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-70.5 + parent: 2 + - uid: 21681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-65.5 + parent: 2 + - uid: 21682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-66.5 + parent: 2 + - uid: 21683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-67.5 + parent: 2 + - uid: 21684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-66.5 + parent: 2 + - uid: 21685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-67.5 + parent: 2 + - uid: 21686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-65.5 + parent: 2 + - uid: 21687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-65.5 + parent: 2 + - uid: 21688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-65.5 + parent: 2 + - uid: 21689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-65.5 + parent: 2 + - uid: 21690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-65.5 + parent: 2 + - uid: 21691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-64.5 + parent: 2 + - uid: 21692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-64.5 + parent: 2 + - uid: 21693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-64.5 + parent: 2 + - uid: 21694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-64.5 + parent: 2 + - uid: 21695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-67.5 + parent: 2 + - uid: 21696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-63.5 + parent: 2 + - uid: 21697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-63.5 + parent: 2 + - uid: 21698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-63.5 + parent: 2 + - uid: 21699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-63.5 + parent: 2 + - uid: 21700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-67.5 + parent: 2 + - uid: 21701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-67.5 + parent: 2 + - uid: 21702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-67.5 + parent: 2 + - uid: 21703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-67.5 + parent: 2 + - uid: 21704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-69.5 + parent: 2 + - uid: 21705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-69.5 + parent: 2 + - uid: 21706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-69.5 + parent: 2 + - uid: 21707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-70.5 + parent: 2 + - uid: 21708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-53.5 + parent: 2 + - uid: 21709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-76.5 + parent: 2 + - uid: 21710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-52.5 + parent: 2 + - uid: 21711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-50.5 + parent: 2 + - uid: 21712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-47.5 + parent: 2 + - uid: 21713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-27.5 + parent: 2 + - uid: 21714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-28.5 + parent: 2 + - uid: 21715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-29.5 + parent: 2 + - uid: 21716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-28.5 + parent: 2 + - uid: 21717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-29.5 + parent: 2 + - uid: 21718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-30.5 + parent: 2 + - uid: 21719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-32.5 + parent: 2 + - uid: 21720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-33.5 + parent: 2 + - uid: 21721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-34.5 + parent: 2 + - uid: 21722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-36.5 + parent: 2 + - uid: 21723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-37.5 + parent: 2 + - uid: 21724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-38.5 + parent: 2 + - uid: 21725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-40.5 + parent: 2 + - uid: 21726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-41.5 + parent: 2 + - uid: 21727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-42.5 + parent: 2 + - uid: 21728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-44.5 + parent: 2 + - uid: 21729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-45.5 + parent: 2 + - uid: 21730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-46.5 + parent: 2 + - uid: 21731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-47.5 + parent: 2 + - uid: 21732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-48.5 + parent: 2 + - uid: 21733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-46.5 + parent: 2 + - uid: 21734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-45.5 + parent: 2 + - uid: 21735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-44.5 + parent: 2 + - uid: 21736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-45.5 + parent: 2 + - uid: 21737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-46.5 + parent: 2 + - uid: 21738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-50.5 + parent: 2 + - uid: 21739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-50.5 + parent: 2 + - uid: 21740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-50.5 + parent: 2 + - uid: 21741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-50.5 + parent: 2 + - uid: 21742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-51.5 + parent: 2 + - uid: 21743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-51.5 + parent: 2 + - uid: 21744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-51.5 + parent: 2 + - uid: 21745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-51.5 + parent: 2 + - uid: 21746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-75.5 + parent: 2 + - uid: 21747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-79.5 + parent: 2 + - uid: 21748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-78.5 + parent: 2 + - uid: 21749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-79.5 + parent: 2 + - uid: 21750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-79.5 + parent: 2 + - uid: 21751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-79.5 + parent: 2 + - uid: 21752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-79.5 + parent: 2 + - uid: 21753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-79.5 + parent: 2 + - uid: 21754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-79.5 + parent: 2 + - uid: 21755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-79.5 + parent: 2 + - uid: 21756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-79.5 + parent: 2 + - uid: 21757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-79.5 + parent: 2 + - uid: 21758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-81.5 + parent: 2 + - uid: 21759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-81.5 + parent: 2 + - uid: 21760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-81.5 + parent: 2 + - uid: 21761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-81.5 + parent: 2 + - uid: 21762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-81.5 + parent: 2 + - uid: 21763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-81.5 + parent: 2 + - uid: 21764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-82.5 + parent: 2 + - uid: 21765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-83.5 + parent: 2 + - uid: 21766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-84.5 + parent: 2 + - uid: 21767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-84.5 + parent: 2 + - uid: 21768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-85.5 + parent: 2 + - uid: 21769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-86.5 + parent: 2 + - uid: 21770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-87.5 + parent: 2 + - uid: 21771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-84.5 + parent: 2 + - uid: 21772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-85.5 + parent: 2 + - uid: 21773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-86.5 + parent: 2 + - uid: 21774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-87.5 + parent: 2 + - uid: 21775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-81.5 + parent: 2 + - uid: 21776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-81.5 + parent: 2 + - uid: 21777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-81.5 + parent: 2 + - uid: 21778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-81.5 + parent: 2 + - uid: 21779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-81.5 + parent: 2 + - uid: 21780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-76.5 + parent: 2 + - uid: 21781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-75.5 + parent: 2 + - uid: 21782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-78.5 + parent: 2 + - uid: 21783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-78.5 + parent: 2 + - uid: 21784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-79.5 + parent: 2 + - uid: 21785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-79.5 + parent: 2 + - uid: 21786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-79.5 + parent: 2 + - uid: 21787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-79.5 + parent: 2 + - uid: 21788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-86.5 + parent: 2 + - uid: 21789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-87.5 + parent: 2 + - uid: 21790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-88.5 + parent: 2 + - uid: 21791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-89.5 + parent: 2 + - uid: 21792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-90.5 + parent: 2 + - uid: 21793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-91.5 + parent: 2 + - uid: 21794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,28.5 + parent: 2 + - uid: 21886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,8.5 + parent: 2 + - uid: 21887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,8.5 + parent: 2 + - uid: 21888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,8.5 + parent: 2 + - uid: 21889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,8.5 + parent: 2 + - uid: 21890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,8.5 + parent: 2 + - uid: 21903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,9.5 + parent: 2 + - uid: 21904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,9.5 + parent: 2 + - uid: 21905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,10.5 + parent: 2 + - uid: 21906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,11.5 + parent: 2 + - uid: 21907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,12.5 + parent: 2 + - uid: 21908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,13.5 + parent: 2 + - uid: 21909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,13.5 + parent: 2 + - uid: 21910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,13.5 + parent: 2 + - uid: 21911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,13.5 + parent: 2 + - uid: 21912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,13.5 + parent: 2 + - uid: 21996 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 21997 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 + - uid: 21998 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 2 + - uid: 21999 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 2 + - uid: 22000 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 22007 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 2 + - uid: 22008 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 2 + - uid: 22009 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 2 + - uid: 22010 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 2 + - uid: 22011 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 2 + - uid: 22012 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 2 + - uid: 22013 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 2 + - uid: 22014 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 2 + - uid: 22015 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 + - uid: 22016 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - uid: 22017 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 + - uid: 22018 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 2 + - uid: 22019 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 22020 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 22030 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 + - uid: 22031 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 2 + - uid: 22032 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - uid: 22033 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 + - uid: 22039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-28.5 + parent: 2 + - uid: 22040 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 + - uid: 22041 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 + - uid: 22058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-28.5 + parent: 2 + - uid: 22059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-28.5 + parent: 2 + - uid: 22060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-28.5 + parent: 2 + - uid: 22061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-28.5 + parent: 2 + - uid: 22062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-28.5 + parent: 2 + - uid: 22063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-28.5 + parent: 2 + - uid: 22065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-28.5 + parent: 2 + - uid: 22066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-25.5 + parent: 2 + - uid: 22067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-25.5 + parent: 2 + - uid: 22068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-26.5 + parent: 2 + - uid: 22071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-27.5 + parent: 2 + - uid: 22072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-28.5 + parent: 2 + - uid: 22073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-29.5 + parent: 2 + - uid: 22078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-31.5 + parent: 2 + - uid: 22079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-32.5 + parent: 2 + - uid: 22080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-33.5 + parent: 2 + - uid: 22085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-34.5 + parent: 2 + - uid: 22086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-34.5 + parent: 2 + - uid: 22087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-29.5 + parent: 2 + - uid: 22088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-30.5 + parent: 2 + - uid: 22176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-31.5 + parent: 2 + - uid: 22177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-31.5 + parent: 2 + - uid: 22178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-34.5 + parent: 2 + - uid: 22179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-25.5 + parent: 2 + - uid: 22180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-25.5 + parent: 2 + - uid: 22181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-35.5 + parent: 2 + - uid: 22182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-36.5 + parent: 2 + - uid: 22187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-38.5 + parent: 2 + - uid: 22188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-39.5 + parent: 2 + - uid: 22189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-40.5 + parent: 2 + - uid: 22190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-37.5 + parent: 2 + - uid: 22191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-38.5 + parent: 2 + - uid: 22220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-39.5 + parent: 2 + - uid: 22227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-40.5 + parent: 2 + - uid: 22228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-40.5 + parent: 2 + - uid: 22229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-40.5 + parent: 2 + - uid: 22230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-40.5 + parent: 2 + - uid: 22231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-21.5 + parent: 2 + - uid: 22232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-22.5 + parent: 2 + - uid: 22233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-23.5 + parent: 2 + - uid: 22234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-24.5 + parent: 2 + - uid: 22235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-25.5 + parent: 2 + - uid: 22237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-25.5 + parent: 2 + - uid: 22238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-25.5 + parent: 2 + - uid: 22239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-25.5 + parent: 2 + - uid: 22240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-25.5 + parent: 2 + - uid: 22241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-25.5 + parent: 2 + - uid: 22242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-25.5 + parent: 2 + - uid: 22243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-24.5 + parent: 2 + - uid: 22244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-20.5 + parent: 2 + - uid: 22245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-44.5 + parent: 2 + - uid: 22246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-44.5 + parent: 2 + - uid: 22247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-44.5 + parent: 2 + - uid: 22249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-42.5 + parent: 2 + - uid: 22250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-42.5 + parent: 2 + - uid: 22251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-37.5 + parent: 2 + - uid: 22252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-37.5 + parent: 2 + - uid: 22253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-38.5 + parent: 2 + - uid: 22254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-41.5 + parent: 2 + - uid: 22255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-37.5 + parent: 2 + - uid: 22266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-33.5 + parent: 2 + - uid: 22267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-35.5 + parent: 2 + - uid: 22268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-35.5 + parent: 2 + - uid: 22269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-35.5 + parent: 2 + - uid: 22270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-33.5 + parent: 2 + - uid: 22273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-29.5 + parent: 2 + - uid: 22274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-51.5 + parent: 2 + - uid: 22275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-42.5 + parent: 2 + - uid: 22276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-41.5 + parent: 2 + - uid: 22277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-33.5 + parent: 2 + - uid: 22278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-42.5 + parent: 2 + - uid: 22279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-42.5 + parent: 2 + - uid: 22290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-53.5 + parent: 2 + - uid: 22291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-53.5 + parent: 2 + - uid: 22292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-51.5 + parent: 2 + - uid: 22293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-49.5 + parent: 2 + - uid: 22294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-49.5 + parent: 2 + - uid: 22297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-49.5 + parent: 2 + - uid: 22298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-47.5 + parent: 2 + - uid: 22299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-46.5 + parent: 2 + - uid: 22300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-45.5 + parent: 2 + - uid: 22301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-45.5 + parent: 2 + - uid: 22302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-42.5 + parent: 2 + - uid: 22303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-42.5 + parent: 2 + - uid: 22304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-42.5 + parent: 2 + - uid: 22403 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 22404 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 2 + - uid: 22405 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 22424 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 2 + - uid: 22425 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 22426 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 2 + - uid: 22427 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 2 + - uid: 22428 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 22429 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 2 + - uid: 22446 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 + - uid: 22447 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 2 + - uid: 22448 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 2 + - uid: 22451 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 2 + - uid: 22452 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 2 + - uid: 22453 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 2 + - uid: 22454 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 2 + - uid: 22682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,30.5 + parent: 2 + - uid: 22759 + components: + - type: Transform + pos: 39.5,-13.5 + parent: 2 + - uid: 22760 + components: + - type: Transform + pos: 40.5,-13.5 + parent: 2 + - uid: 22761 + components: + - type: Transform + pos: 41.5,-13.5 + parent: 2 + - uid: 22762 + components: + - type: Transform + pos: 47.5,-20.5 + parent: 2 + - uid: 22763 + components: + - type: Transform + pos: 47.5,-21.5 + parent: 2 + - uid: 22764 + components: + - type: Transform + pos: 47.5,-25.5 + parent: 2 + - uid: 22765 + components: + - type: Transform + pos: 33.5,-32.5 + parent: 2 + - uid: 22784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,21.5 + parent: 2 + - uid: 22846 + components: + - type: Transform + pos: 9.5,28.5 + parent: 2 + - uid: 22847 + components: + - type: Transform + pos: 12.5,45.5 + parent: 2 + - uid: 22848 + components: + - type: Transform + pos: -15.5,17.5 + parent: 2 + - uid: 22849 + components: + - type: Transform + pos: -14.5,17.5 + parent: 2 + - uid: 22881 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 2 + - uid: 22882 + components: + - type: Transform + pos: 33.5,-30.5 + parent: 2 + - uid: 22883 + components: + - type: Transform + pos: 33.5,-29.5 + parent: 2 + - uid: 22887 + components: + - type: Transform + pos: 33.5,-28.5 + parent: 2 + - uid: 22888 + components: + - type: Transform + pos: 33.5,-27.5 + parent: 2 + - uid: 22889 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 2 + - uid: 22890 + components: + - type: Transform + pos: 32.5,-32.5 + parent: 2 + - uid: 22891 + components: + - type: Transform + pos: 31.5,-32.5 + parent: 2 + - uid: 22892 + components: + - type: Transform + pos: 30.5,-32.5 + parent: 2 + - uid: 22893 + components: + - type: Transform + pos: 29.5,-32.5 + parent: 2 + - uid: 22894 + components: + - type: Transform + pos: 29.5,-33.5 + parent: 2 + - uid: 22895 + components: + - type: Transform + pos: 28.5,-33.5 + parent: 2 + - uid: 22896 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 2 + - uid: 22897 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 2 + - uid: 22898 + components: + - type: Transform + pos: 24.5,-33.5 + parent: 2 + - uid: 22899 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 2 + - uid: 22900 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 2 + - uid: 22901 + components: + - type: Transform + pos: 20.5,-33.5 + parent: 2 + - uid: 22902 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 2 + - uid: 22919 + components: + - type: Transform + pos: 18.5,-33.5 + parent: 2 + - uid: 22920 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 2 + - uid: 22921 + components: + - type: Transform + pos: 16.5,-33.5 + parent: 2 + - uid: 22922 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 2 + - uid: 22923 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 2 + - uid: 22924 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 2 + - uid: 22925 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 2 + - uid: 22926 + components: + - type: Transform + pos: 3.5,-31.5 + parent: 2 + - uid: 22929 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 2 + - uid: 22930 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 2 + - uid: 22931 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 2 + - uid: 22932 + components: + - type: Transform + pos: 6.5,-33.5 + parent: 2 + - uid: 22933 + components: + - type: Transform + pos: 7.5,-33.5 + parent: 2 + - uid: 22934 + components: + - type: Transform + pos: 8.5,-33.5 + parent: 2 + - uid: 22935 + components: + - type: Transform + pos: 9.5,-33.5 + parent: 2 + - uid: 22936 + components: + - type: Transform + pos: 10.5,-33.5 + parent: 2 + - uid: 22937 + components: + - type: Transform + pos: 11.5,-33.5 + parent: 2 + - uid: 22938 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 2 + - uid: 22939 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 2 + - uid: 22940 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 22941 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 2 + - uid: 22942 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 2 + - uid: 22944 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 2 + - uid: 22946 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 2 + - uid: 22947 + components: + - type: Transform + pos: 11.5,-27.5 + parent: 2 + - uid: 22952 + components: + - type: Transform + pos: 14.5,-33.5 + parent: 2 + - uid: 22953 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 2 + - uid: 22954 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 2 + - uid: 23467 + components: + - type: Transform + pos: -13.5,17.5 + parent: 2 + - uid: 23489 + components: + - type: Transform + pos: -7.5,17.5 + parent: 2 + - uid: 24027 + components: + - type: Transform + pos: -8.5,17.5 + parent: 2 + - uid: 24028 + components: + - type: Transform + pos: -1.5,17.5 + parent: 2 + - uid: 24029 + components: + - type: Transform + pos: -2.5,17.5 + parent: 2 + - uid: 24033 + components: + - type: Transform + pos: -3.5,17.5 + parent: 2 + - uid: 24034 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - uid: 24035 + components: + - type: Transform + pos: -5.5,17.5 + parent: 2 + - uid: 24036 + components: + - type: Transform + pos: -6.5,17.5 + parent: 2 + - uid: 24037 + components: + - type: Transform + pos: 10.5,28.5 + parent: 2 + - uid: 24038 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 + - uid: 24039 + components: + - type: Transform + pos: 16.5,28.5 + parent: 2 + - uid: 24040 + components: + - type: Transform + pos: 16.5,29.5 + parent: 2 + - uid: 24041 + components: + - type: Transform + pos: 16.5,30.5 + parent: 2 + - uid: 24042 + components: + - type: Transform + pos: 16.5,31.5 + parent: 2 + - uid: 24043 + components: + - type: Transform + pos: 16.5,32.5 + parent: 2 + - uid: 24044 + components: + - type: Transform + pos: 12.5,37.5 + parent: 2 + - uid: 24045 + components: + - type: Transform + pos: 12.5,41.5 + parent: 2 + - uid: 24046 + components: + - type: Transform + pos: 12.5,40.5 + parent: 2 + - uid: 24047 + components: + - type: Transform + pos: 12.5,39.5 + parent: 2 + - uid: 24048 + components: + - type: Transform + pos: 12.5,38.5 + parent: 2 + - uid: 24049 + components: + - type: Transform + pos: 12.5,34.5 + parent: 2 + - uid: 24050 + components: + - type: Transform + pos: 12.5,33.5 + parent: 2 + - uid: 24051 + components: + - type: Transform + pos: 12.5,32.5 + parent: 2 + - uid: 24052 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - uid: 24053 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 + - uid: 24054 + components: + - type: Transform + pos: 12.5,42.5 + parent: 2 + - uid: 24055 + components: + - type: Transform + pos: 12.5,44.5 + parent: 2 + - uid: 24056 + components: + - type: Transform + pos: -6.5,41.5 + parent: 2 + - uid: 24057 + components: + - type: Transform + pos: -5.5,41.5 + parent: 2 + - uid: 24058 + components: + - type: Transform + pos: -3.5,41.5 + parent: 2 + - uid: 24059 + components: + - type: Transform + pos: -2.5,41.5 + parent: 2 + - uid: 24060 + components: + - type: Transform + pos: -1.5,41.5 + parent: 2 + - uid: 24061 + components: + - type: Transform + pos: -1.5,40.5 + parent: 2 + - uid: 24062 + components: + - type: Transform + pos: -1.5,39.5 + parent: 2 + - uid: 24063 + components: + - type: Transform + pos: -1.5,46.5 + parent: 2 + - uid: 24064 + components: + - type: Transform + pos: -2.5,46.5 + parent: 2 + - uid: 24065 + components: + - type: Transform + pos: -1.5,47.5 + parent: 2 + - uid: 24066 + components: + - type: Transform + pos: -1.5,48.5 + parent: 2 + - uid: 24067 + components: + - type: Transform + pos: -1.5,49.5 + parent: 2 +- proto: WallRiveted + entities: + - uid: 21795 + components: + - type: Transform + pos: -83.5,-52.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 16320 + components: + - type: Transform + pos: -3.5,-44.5 + parent: 2 + - uid: 16322 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 19029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,15.5 + parent: 2 + - uid: 21796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-53.5 + parent: 2 + - uid: 21797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-61.5 + parent: 2 + - uid: 21798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-61.5 + parent: 2 + - uid: 21799 + components: + - type: Transform + pos: 48.5,-40.5 + parent: 2 + - uid: 21800 + components: + - type: Transform + pos: 33.5,-52.5 + parent: 2 + - uid: 21801 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - uid: 21802 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - uid: 21803 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 21804 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - uid: 21805 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 + - uid: 21806 + components: + - type: Transform + pos: -6.5,10.5 + parent: 2 + - uid: 21807 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - uid: 21808 + components: + - type: Transform + pos: -8.5,10.5 + parent: 2 + - uid: 21809 + components: + - type: Transform + pos: -8.5,7.5 + parent: 2 + - uid: 21810 + components: + - type: Transform + pos: -9.5,7.5 + parent: 2 + - uid: 21811 + components: + - type: Transform + pos: -9.5,6.5 + parent: 2 + - uid: 21812 + components: + - type: Transform + pos: -10.5,6.5 + parent: 2 + - uid: 21813 + components: + - type: Transform + pos: -10.5,3.5 + parent: 2 + - uid: 21814 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 2 + - uid: 21815 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 2 + - uid: 21816 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 2 + - uid: 21817 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 2 + - uid: 21818 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 2 + - uid: 21819 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 2 + - uid: 21820 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 2 + - uid: 21821 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 2 + - uid: 21822 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - uid: 21823 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 21824 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 21825 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - uid: 21826 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 21827 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 2 + - uid: 21828 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 + - uid: 21829 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 + - uid: 21830 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 21831 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 21832 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - uid: 21833 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 21834 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 2 + - uid: 21835 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - uid: 21836 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - uid: 21837 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 + - uid: 21838 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 21839 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 21840 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - uid: 21841 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 2 + - uid: 21842 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 + - uid: 21843 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - uid: 21844 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 21845 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 2 + - uid: 21846 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 21847 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 21848 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 21849 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 21850 + components: + - type: Transform + pos: 12.5,6.5 + parent: 2 + - uid: 21851 + components: + - type: Transform + pos: 11.5,6.5 + parent: 2 + - uid: 21852 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 21853 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 21854 + components: + - type: Transform + pos: 10.5,9.5 + parent: 2 + - uid: 21855 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 21856 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 + - uid: 21857 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 + - uid: 21858 + components: + - type: Transform + pos: 7.5,11.5 + parent: 2 + - uid: 21859 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 + - uid: 21860 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 21861 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 21862 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 2 + - uid: 21863 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 21864 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - uid: 21865 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 21866 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 21867 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - uid: 21868 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 21869 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 2 + - uid: 21870 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 21871 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - uid: 21872 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 21873 + components: + - type: Transform + pos: -10.5,7.5 + parent: 2 + - uid: 21874 + components: + - type: Transform + pos: -11.5,7.5 + parent: 2 + - uid: 21875 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 + - uid: 21876 + components: + - type: Transform + pos: -13.5,7.5 + parent: 2 + - uid: 21877 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 + - uid: 21878 + components: + - type: Transform + pos: -14.5,6.5 + parent: 2 + - uid: 21879 + components: + - type: Transform + pos: -14.5,5.5 + parent: 2 + - uid: 21880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,3.5 + parent: 2 + - uid: 21881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,3.5 + parent: 2 + - uid: 21882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,3.5 + parent: 2 + - uid: 21883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,4.5 + parent: 2 + - uid: 21884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,5.5 + parent: 2 + - uid: 21885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,7.5 + parent: 2 + - uid: 21891 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 2 + - uid: 21892 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 2 + - uid: 21893 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 + - uid: 21894 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 2 + - uid: 21895 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 2 + - uid: 21896 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 2 + - uid: 21897 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 + - uid: 21898 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 21899 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 2 + - uid: 21900 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - uid: 21901 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 21902 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 21913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,14.5 + parent: 2 + - uid: 21914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,15.5 + parent: 2 + - uid: 21915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,16.5 + parent: 2 + - uid: 21919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,11.5 + parent: 2 + - uid: 21920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,12.5 + parent: 2 + - uid: 21921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,13.5 + parent: 2 + - uid: 21922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,13.5 + parent: 2 + - uid: 21923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,14.5 + parent: 2 + - uid: 21924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,16.5 + parent: 2 + - uid: 21927 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - uid: 21928 + components: + - type: Transform + pos: -5.5,13.5 + parent: 2 + - uid: 21929 + components: + - type: Transform + pos: -5.5,12.5 + parent: 2 + - uid: 21930 + components: + - type: Transform + pos: -1.5,14.5 + parent: 2 + - uid: 21931 + components: + - type: Transform + pos: -1.5,15.5 + parent: 2 + - uid: 21932 + components: + - type: Transform + pos: -1.5,16.5 + parent: 2 + - uid: 21939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,14.5 + parent: 2 + - uid: 21940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,15.5 + parent: 2 + - uid: 21941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,20.5 + parent: 2 + - uid: 21942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,20.5 + parent: 2 + - uid: 21943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,20.5 + parent: 2 + - uid: 21944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,20.5 + parent: 2 + - uid: 21945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,20.5 + parent: 2 + - uid: 21946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,20.5 + parent: 2 + - uid: 21947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,13.5 + parent: 2 + - uid: 21948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,14.5 + parent: 2 + - uid: 21949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,14.5 + parent: 2 + - uid: 21950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,14.5 + parent: 2 + - uid: 21951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,15.5 + parent: 2 + - uid: 21952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,16.5 + parent: 2 + - uid: 21953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,20.5 + parent: 2 + - uid: 21954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,20.5 + parent: 2 + - uid: 21955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,20.5 + parent: 2 + - uid: 21956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,19.5 + parent: 2 + - uid: 21957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,17.5 + parent: 2 + - uid: 21958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,16.5 + parent: 2 + - uid: 21959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,16.5 + parent: 2 + - uid: 21960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,16.5 + parent: 2 + - uid: 21961 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 21962 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 + - uid: 21963 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 21964 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 + - uid: 21965 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - uid: 21966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,3.5 + parent: 2 + - uid: 21967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,3.5 + parent: 2 + - uid: 21968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,3.5 + parent: 2 + - uid: 21969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 2 + - uid: 21970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 2 + - uid: 21971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-1.5 + parent: 2 + - uid: 21972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,4.5 + parent: 2 + - uid: 21973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,5.5 + parent: 2 + - uid: 21974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,5.5 + parent: 2 + - uid: 21975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,5.5 + parent: 2 + - uid: 21976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,6.5 + parent: 2 + - uid: 21977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,7.5 + parent: 2 + - uid: 21978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,8.5 + parent: 2 + - uid: 21979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,9.5 + parent: 2 + - uid: 21980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 2 + - uid: 21981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,10.5 + parent: 2 + - uid: 21982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,16.5 + parent: 2 + - uid: 21983 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2 + - uid: 21984 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 21985 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 + - uid: 21986 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 + - uid: 21987 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 21988 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - uid: 21989 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 21990 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 21991 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 + - uid: 21992 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 + - uid: 21993 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 2 + - uid: 21994 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 + - uid: 21995 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 2 + - uid: 22001 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 22002 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - uid: 22003 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 + - uid: 22004 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 + - uid: 22005 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - uid: 22006 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - uid: 22021 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 22022 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 + - uid: 22023 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 22024 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 + - uid: 22025 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - uid: 22026 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 22027 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 22028 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 22029 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 + - uid: 22034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 2 + - uid: 22035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 2 + - uid: 22036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 2 + - uid: 22037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 2 + - uid: 22038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 2 + - uid: 22042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 2 + - uid: 22043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 2 + - uid: 22044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 2 + - uid: 22045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 2 + - uid: 22046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-15.5 + parent: 2 + - uid: 22047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-15.5 + parent: 2 + - uid: 22048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 2 + - uid: 22049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 2 + - uid: 22050 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 2 + - uid: 22051 + components: + - type: Transform + pos: -9.5,-14.5 + parent: 2 + - uid: 22052 + components: + - type: Transform + pos: -9.5,-12.5 + parent: 2 + - uid: 22053 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 + - uid: 22054 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 + - uid: 22055 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 2 + - uid: 22056 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 2 + - uid: 22057 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 2 + - uid: 22064 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 2 + - uid: 22069 + components: + - type: Transform + pos: -11.5,-17.5 + parent: 2 + - uid: 22070 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 2 + - uid: 22074 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 2 + - uid: 22075 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 22076 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 2 + - uid: 22077 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 2 + - uid: 22081 + components: + - type: Transform + pos: -21.5,-14.5 + parent: 2 + - uid: 22082 + components: + - type: Transform + pos: -21.5,-12.5 + parent: 2 + - uid: 22083 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 2 + - uid: 22084 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 2 + - uid: 22089 + components: + - type: Transform + pos: -25.5,-14.5 + parent: 2 + - uid: 22090 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 2 + - uid: 22091 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - uid: 22092 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 2 + - uid: 22093 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 2 + - uid: 22094 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 2 + - uid: 22095 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 2 + - uid: 22096 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 2 + - uid: 22097 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 2 + - uid: 22098 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 2 + - uid: 22099 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 2 + - uid: 22100 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 2 + - uid: 22101 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - uid: 22102 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 2 + - uid: 22103 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 2 + - uid: 22104 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 2 + - uid: 22105 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 2 + - uid: 22106 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 2 + - uid: 22107 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 22108 + components: + - type: Transform + pos: -31.5,-7.5 + parent: 2 + - uid: 22109 + components: + - type: Transform + pos: -31.5,-6.5 + parent: 2 + - uid: 22110 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 2 + - uid: 22111 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 + - uid: 22112 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 2 + - uid: 22113 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 2 + - uid: 22114 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 2 + - uid: 22115 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 + - uid: 22116 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 2 + - uid: 22117 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 2 + - uid: 22118 + components: + - type: Transform + pos: -19.5,3.5 + parent: 2 + - uid: 22119 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - uid: 22120 + components: + - type: Transform + pos: -24.5,9.5 + parent: 2 + - uid: 22121 + components: + - type: Transform + pos: -23.5,13.5 + parent: 2 + - uid: 22122 + components: + - type: Transform + pos: -22.5,13.5 + parent: 2 + - uid: 22123 + components: + - type: Transform + pos: -19.5,13.5 + parent: 2 + - uid: 22124 + components: + - type: Transform + pos: -21.5,13.5 + parent: 2 + - uid: 22125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,14.5 + parent: 2 + - uid: 22126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,14.5 + parent: 2 + - uid: 22127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,14.5 + parent: 2 + - uid: 22128 + components: + - type: Transform + pos: -35.5,2.5 + parent: 2 + - uid: 22129 + components: + - type: Transform + pos: -35.5,3.5 + parent: 2 + - uid: 22130 + components: + - type: Transform + pos: -35.5,4.5 + parent: 2 + - uid: 22131 + components: + - type: Transform + pos: -35.5,5.5 + parent: 2 + - uid: 22132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,5.5 + parent: 2 + - uid: 22133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,5.5 + parent: 2 + - uid: 22134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,5.5 + parent: 2 + - uid: 22135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,5.5 + parent: 2 + - uid: 22136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,5.5 + parent: 2 + - uid: 22137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,5.5 + parent: 2 + - uid: 22138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,6.5 + parent: 2 + - uid: 22139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,7.5 + parent: 2 + - uid: 22140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,12.5 + parent: 2 + - uid: 22141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,13.5 + parent: 2 + - uid: 22142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-4.5 + parent: 2 + - uid: 22143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-5.5 + parent: 2 + - uid: 22144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-6.5 + parent: 2 + - uid: 22145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-6.5 + parent: 2 + - uid: 22146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-6.5 + parent: 2 + - uid: 22147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-6.5 + parent: 2 + - uid: 22148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-6.5 + parent: 2 + - uid: 22149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-6.5 + parent: 2 + - uid: 22150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-6.5 + parent: 2 + - uid: 22151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-6.5 + parent: 2 + - uid: 22152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-0.5 + parent: 2 + - uid: 22153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 2 + - uid: 22154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-0.5 + parent: 2 + - uid: 22155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-7.5 + parent: 2 + - uid: 22156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-7.5 + parent: 2 + - uid: 22157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-7.5 + parent: 2 + - uid: 22158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-9.5 + parent: 2 + - uid: 22159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-10.5 + parent: 2 + - uid: 22160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-11.5 + parent: 2 + - uid: 22161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-12.5 + parent: 2 + - uid: 22162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-13.5 + parent: 2 + - uid: 22163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-14.5 + parent: 2 + - uid: 22164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-14.5 + parent: 2 + - uid: 22165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-14.5 + parent: 2 + - uid: 22166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-14.5 + parent: 2 + - uid: 22167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-14.5 + parent: 2 + - uid: 22168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-14.5 + parent: 2 + - uid: 22169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-14.5 + parent: 2 + - uid: 22170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-14.5 + parent: 2 + - uid: 22171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-14.5 + parent: 2 + - uid: 22172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-14.5 + parent: 2 + - uid: 22173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-13.5 + parent: 2 + - uid: 22174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-13.5 + parent: 2 + - uid: 22175 + components: + - type: Transform + pos: -31.5,-10.5 + parent: 2 + - uid: 22183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-15.5 + parent: 2 + - uid: 22184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,14.5 + parent: 2 + - uid: 22185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,15.5 + parent: 2 + - uid: 22186 + components: + - type: Transform + pos: -40.5,15.5 + parent: 2 + - uid: 22192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-19.5 + parent: 2 + - uid: 22193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-19.5 + parent: 2 + - uid: 22194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-18.5 + parent: 2 + - uid: 22195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-16.5 + parent: 2 + - uid: 22196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-15.5 + parent: 2 + - uid: 22197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-16.5 + parent: 2 + - uid: 22198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-17.5 + parent: 2 + - uid: 22199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-18.5 + parent: 2 + - uid: 22200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-20.5 + parent: 2 + - uid: 22201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-21.5 + parent: 2 + - uid: 22202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-21.5 + parent: 2 + - uid: 22203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-21.5 + parent: 2 + - uid: 22204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-21.5 + parent: 2 + - uid: 22205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-20.5 + parent: 2 + - uid: 22206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-14.5 + parent: 2 + - uid: 22207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-14.5 + parent: 2 + - uid: 22208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-14.5 + parent: 2 + - uid: 22209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-14.5 + parent: 2 + - uid: 22210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-22.5 + parent: 2 + - uid: 22211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-24.5 + parent: 2 + - uid: 22212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-24.5 + parent: 2 + - uid: 22213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-24.5 + parent: 2 + - uid: 22214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-24.5 + parent: 2 + - uid: 22215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-24.5 + parent: 2 + - uid: 22216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-24.5 + parent: 2 + - uid: 22217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-24.5 + parent: 2 + - uid: 22218 + components: + - type: Transform + pos: -35.5,-23.5 + parent: 2 + - uid: 22219 + components: + - type: Transform + pos: -35.5,-24.5 + parent: 2 + - uid: 22221 + components: + - type: Transform + pos: -43.5,-25.5 + parent: 2 + - uid: 22222 + components: + - type: Transform + pos: -43.5,-27.5 + parent: 2 + - uid: 22223 + components: + - type: Transform + pos: -47.5,-25.5 + parent: 2 + - uid: 22224 + components: + - type: Transform + pos: -47.5,-27.5 + parent: 2 + - uid: 22225 + components: + - type: Transform + pos: -49.5,-25.5 + parent: 2 + - uid: 22226 + components: + - type: Transform + pos: -49.5,-27.5 + parent: 2 + - uid: 22236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-28.5 + parent: 2 + - uid: 22248 + components: + - type: Transform + pos: -37.5,-34.5 + parent: 2 + - uid: 22256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-26.5 + parent: 2 + - uid: 22257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-27.5 + parent: 2 + - uid: 22258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-28.5 + parent: 2 + - uid: 22259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-26.5 + parent: 2 + - uid: 22260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-27.5 + parent: 2 + - uid: 22261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-28.5 + parent: 2 + - uid: 22262 + components: + - type: Transform + pos: -35.5,-34.5 + parent: 2 + - uid: 22263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-33.5 + parent: 2 + - uid: 22264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-33.5 + parent: 2 + - uid: 22265 + components: + - type: Transform + pos: -35.5,-35.5 + parent: 2 + - uid: 22271 + components: + - type: Transform + pos: -35.5,-40.5 + parent: 2 + - uid: 22272 + components: + - type: Transform + pos: -35.5,-41.5 + parent: 2 + - uid: 22280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-29.5 + parent: 2 + - uid: 22281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-25.5 + parent: 2 + - uid: 22282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-25.5 + parent: 2 + - uid: 22283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-25.5 + parent: 2 + - uid: 22284 + components: + - type: Transform + pos: -20.5,-25.5 + parent: 2 + - uid: 22285 + components: + - type: Transform + pos: -19.5,-25.5 + parent: 2 + - uid: 22286 + components: + - type: Transform + pos: -19.5,-19.5 + parent: 2 + - uid: 22287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-21.5 + parent: 2 + - uid: 22288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-21.5 + parent: 2 + - uid: 22289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-21.5 + parent: 2 + - uid: 22295 + components: + - type: Transform + pos: -22.5,-29.5 + parent: 2 + - uid: 22296 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 2 + - uid: 22305 + components: + - type: Transform + pos: -9.5,-30.5 + parent: 2 + - uid: 22306 + components: + - type: Transform + pos: -9.5,-31.5 + parent: 2 + - uid: 22307 + components: + - type: Transform + pos: -9.5,-32.5 + parent: 2 + - uid: 22308 + components: + - type: Transform + pos: -9.5,-33.5 + parent: 2 + - uid: 22309 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 2 + - uid: 22315 + components: + - type: Transform + pos: -41.5,-37.5 + parent: 2 + - uid: 22330 + components: + - type: Transform + pos: -21.5,-40.5 + parent: 2 + - uid: 22331 + components: + - type: Transform + pos: -23.5,-53.5 + parent: 2 + - uid: 22332 + components: + - type: Transform + pos: -22.5,-53.5 + parent: 2 + - uid: 22333 + components: + - type: Transform + pos: -22.5,-57.5 + parent: 2 + - uid: 22334 + components: + - type: Transform + pos: -24.5,-57.5 + parent: 2 + - uid: 22335 + components: + - type: Transform + pos: -27.5,-55.5 + parent: 2 + - uid: 22336 + components: + - type: Transform + pos: -32.5,-54.5 + parent: 2 + - uid: 22337 + components: + - type: Transform + pos: -32.5,-56.5 + parent: 2 + - uid: 22338 + components: + - type: Transform + pos: -31.5,-56.5 + parent: 2 + - uid: 22339 + components: + - type: Transform + pos: -29.5,-56.5 + parent: 2 + - uid: 22340 + components: + - type: Transform + pos: -33.5,-57.5 + parent: 2 + - uid: 22341 + components: + - type: Transform + pos: -36.5,-56.5 + parent: 2 + - uid: 22342 + components: + - type: Transform + pos: -36.5,-55.5 + parent: 2 + - uid: 22343 + components: + - type: Transform + pos: -38.5,-55.5 + parent: 2 + - uid: 22344 + components: + - type: Transform + pos: -37.5,-57.5 + parent: 2 + - uid: 22345 + components: + - type: Transform + pos: -37.5,-58.5 + parent: 2 + - uid: 22346 + components: + - type: Transform + pos: -37.5,-60.5 + parent: 2 + - uid: 22347 + components: + - type: Transform + pos: -36.5,-61.5 + parent: 2 + - uid: 22348 + components: + - type: Transform + pos: -34.5,-61.5 + parent: 2 + - uid: 22349 + components: + - type: Transform + pos: -25.5,-58.5 + parent: 2 + - uid: 22350 + components: + - type: Transform + pos: -26.5,-61.5 + parent: 2 + - uid: 22351 + components: + - type: Transform + pos: -28.5,-61.5 + parent: 2 + - uid: 22352 + components: + - type: Transform + pos: -33.5,-62.5 + parent: 2 + - uid: 22353 + components: + - type: Transform + pos: -37.5,-62.5 + parent: 2 + - uid: 22354 + components: + - type: Transform + pos: -37.5,-64.5 + parent: 2 + - uid: 22355 + components: + - type: Transform + pos: -34.5,-65.5 + parent: 2 + - uid: 22356 + components: + - type: Transform + pos: -32.5,-65.5 + parent: 2 + - uid: 22357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-61.5 + parent: 2 + - uid: 22358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-65.5 + parent: 2 + - uid: 22359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-65.5 + parent: 2 + - uid: 22360 + components: + - type: Transform + pos: -21.5,-66.5 + parent: 2 + - uid: 22361 + components: + - type: Transform + pos: -21.5,-68.5 + parent: 2 + - uid: 22362 + components: + - type: Transform + pos: -23.5,-69.5 + parent: 2 + - uid: 22363 + components: + - type: Transform + pos: -24.5,-67.5 + parent: 2 + - uid: 22364 + components: + - type: Transform + pos: -26.5,-68.5 + parent: 2 + - uid: 22365 + components: + - type: Transform + pos: -28.5,-68.5 + parent: 2 + - uid: 22366 + components: + - type: Transform + pos: -28.5,-67.5 + parent: 2 + - uid: 22367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-53.5 + parent: 2 + - uid: 22368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-51.5 + parent: 2 + - uid: 22369 + components: + - type: Transform + pos: -4.5,-53.5 + parent: 2 + - uid: 22370 + components: + - type: Transform + pos: -4.5,-52.5 + parent: 2 + - uid: 22371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-50.5 + parent: 2 + - uid: 22372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-49.5 + parent: 2 + - uid: 22373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-45.5 + parent: 2 + - uid: 22374 + components: + - type: Transform + pos: -3.5,-43.5 + parent: 2 + - uid: 22375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-43.5 + parent: 2 + - uid: 22376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-43.5 + parent: 2 + - uid: 22377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,3.5 + parent: 2 + - uid: 22378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,3.5 + parent: 2 + - uid: 22379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,3.5 + parent: 2 + - uid: 22380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,3.5 + parent: 2 + - uid: 22381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,3.5 + parent: 2 + - uid: 22382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,3.5 + parent: 2 + - uid: 22383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,3.5 + parent: 2 + - uid: 22384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,3.5 + parent: 2 + - uid: 22385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,3.5 + parent: 2 + - uid: 22386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,3.5 + parent: 2 + - uid: 22387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,3.5 + parent: 2 + - uid: 22388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,3.5 + parent: 2 + - uid: 22389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-1.5 + parent: 2 + - uid: 22390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-1.5 + parent: 2 + - uid: 22391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-1.5 + parent: 2 + - uid: 22392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-1.5 + parent: 2 + - uid: 22393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-1.5 + parent: 2 + - uid: 22394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-1.5 + parent: 2 + - uid: 22395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-1.5 + parent: 2 + - uid: 22396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-1.5 + parent: 2 + - uid: 22397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-1.5 + parent: 2 + - uid: 22398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-1.5 + parent: 2 + - uid: 22399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,3.5 + parent: 2 + - uid: 22400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-1.5 + parent: 2 + - uid: 22401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-0.5 + parent: 2 + - uid: 22402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,3.5 + parent: 2 + - uid: 22406 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 2 + - uid: 22407 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 2 + - uid: 22408 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 2 + - uid: 22409 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - uid: 22410 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 2 + - uid: 22411 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 + - uid: 22412 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - uid: 22413 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 22414 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - uid: 22415 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 2 + - uid: 22416 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 22417 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - uid: 22418 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 2 + - uid: 22419 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 + - uid: 22420 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 2 + - uid: 22421 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 2 + - uid: 22422 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 + - uid: 22423 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 2 + - uid: 22430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-13.5 + parent: 2 + - uid: 22431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-13.5 + parent: 2 + - uid: 22432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-12.5 + parent: 2 + - uid: 22433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-11.5 + parent: 2 + - uid: 22434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-11.5 + parent: 2 + - uid: 22435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-10.5 + parent: 2 + - uid: 22436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-9.5 + parent: 2 + - uid: 22437 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 2 + - uid: 22438 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 2 + - uid: 22439 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 22440 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 22441 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 2 + - uid: 22442 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 2 + - uid: 22443 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 2 + - uid: 22444 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 + - uid: 22445 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 2 + - uid: 22449 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 2 + - uid: 22450 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 22455 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 2 + - uid: 22456 + components: + - type: Transform + pos: 27.5,4.5 + parent: 2 + - uid: 22457 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - uid: 22458 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - uid: 22459 + components: + - type: Transform + pos: 22.5,12.5 + parent: 2 + - uid: 22460 + components: + - type: Transform + pos: 27.5,12.5 + parent: 2 + - uid: 22461 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 22462 + components: + - type: Transform + pos: 15.5,12.5 + parent: 2 + - uid: 22463 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - uid: 22465 + components: + - type: Transform + pos: 18.5,15.5 + parent: 2 + - uid: 22466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,15.5 + parent: 2 + - uid: 22467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,17.5 + parent: 2 + - uid: 22468 + components: + - type: Transform + pos: 27.5,15.5 + parent: 2 + - uid: 22469 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 22470 + components: + - type: Transform + pos: 15.5,19.5 + parent: 2 + - uid: 22471 + components: + - type: Transform + pos: 16.5,19.5 + parent: 2 + - uid: 22472 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 + - uid: 22473 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 22474 + components: + - type: Transform + pos: 18.5,18.5 + parent: 2 + - uid: 22475 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 22476 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - uid: 22477 + components: + - type: Transform + pos: 19.5,19.5 + parent: 2 + - uid: 22478 + components: + - type: Transform + pos: 20.5,19.5 + parent: 2 + - uid: 22479 + components: + - type: Transform + pos: 20.5,20.5 + parent: 2 + - uid: 22480 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 22481 + components: + - type: Transform + pos: 27.5,18.5 + parent: 2 + - uid: 22482 + components: + - type: Transform + pos: 27.5,19.5 + parent: 2 + - uid: 22483 + components: + - type: Transform + pos: 27.5,20.5 + parent: 2 + - uid: 22484 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 + - uid: 22485 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - uid: 22489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,21.5 + parent: 2 + - uid: 22490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,22.5 + parent: 2 + - uid: 22491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,23.5 + parent: 2 + - uid: 22492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,24.5 + parent: 2 + - uid: 22493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,21.5 + parent: 2 + - uid: 22494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,22.5 + parent: 2 + - uid: 22495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,23.5 + parent: 2 + - uid: 22496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,24.5 + parent: 2 + - uid: 22497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,24.5 + parent: 2 + - uid: 22498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,24.5 + parent: 2 + - uid: 22499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,24.5 + parent: 2 + - uid: 22500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,24.5 + parent: 2 + - uid: 22501 + components: + - type: Transform + pos: 32.5,12.5 + parent: 2 + - uid: 22502 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 + - uid: 22503 + components: + - type: Transform + pos: 35.5,12.5 + parent: 2 + - uid: 22504 + components: + - type: Transform + pos: 36.5,12.5 + parent: 2 + - uid: 22505 + components: + - type: Transform + pos: 36.5,11.5 + parent: 2 + - uid: 22506 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 + - uid: 22507 + components: + - type: Transform + pos: 36.5,9.5 + parent: 2 + - uid: 22508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,13.5 + parent: 2 + - uid: 22509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,21.5 + parent: 2 + - uid: 22510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,20.5 + parent: 2 + - uid: 22511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,19.5 + parent: 2 + - uid: 22512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,18.5 + parent: 2 + - uid: 22514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,21.5 + parent: 2 + - uid: 22515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,21.5 + parent: 2 + - uid: 22516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,21.5 + parent: 2 + - uid: 22517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,21.5 + parent: 2 + - uid: 22518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,20.5 + parent: 2 + - uid: 22519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,20.5 + parent: 2 + - uid: 22520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,20.5 + parent: 2 + - uid: 22521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,20.5 + parent: 2 + - uid: 22522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,20.5 + parent: 2 + - uid: 22523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,19.5 + parent: 2 + - uid: 22524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,16.5 + parent: 2 + - uid: 22525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,15.5 + parent: 2 + - uid: 22526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,14.5 + parent: 2 + - uid: 22527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,13.5 + parent: 2 + - uid: 22528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,12.5 + parent: 2 + - uid: 22529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,11.5 + parent: 2 + - uid: 22530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,11.5 + parent: 2 + - uid: 22531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,11.5 + parent: 2 + - uid: 22532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,20.5 + parent: 2 + - uid: 22533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,20.5 + parent: 2 + - uid: 22534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,20.5 + parent: 2 + - uid: 22535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,20.5 + parent: 2 + - uid: 22536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,19.5 + parent: 2 + - uid: 22537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,16.5 + parent: 2 + - uid: 22538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,16.5 + parent: 2 + - uid: 22539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,16.5 + parent: 2 + - uid: 22540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,16.5 + parent: 2 + - uid: 22541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,16.5 + parent: 2 + - uid: 22542 + components: + - type: Transform + pos: 44.5,15.5 + parent: 2 + - uid: 22543 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - uid: 22544 + components: + - type: Transform + pos: 44.5,11.5 + parent: 2 + - uid: 22545 + components: + - type: Transform + pos: 43.5,11.5 + parent: 2 + - uid: 22546 + components: + - type: Transform + pos: 40.5,11.5 + parent: 2 + - uid: 22547 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 2 + - uid: 22548 + components: + - type: Transform + pos: 39.5,-1.5 + parent: 2 + - uid: 22549 + components: + - type: Transform + pos: 40.5,-1.5 + parent: 2 + - uid: 22550 + components: + - type: Transform + pos: 41.5,-1.5 + parent: 2 + - uid: 22551 + components: + - type: Transform + pos: 41.5,-2.5 + parent: 2 + - uid: 22552 + components: + - type: Transform + pos: 42.5,-2.5 + parent: 2 + - uid: 22553 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 2 + - uid: 22554 + components: + - type: Transform + pos: 44.5,-2.5 + parent: 2 + - uid: 22555 + components: + - type: Transform + pos: 45.5,-2.5 + parent: 2 + - uid: 22556 + components: + - type: Transform + pos: 45.5,-1.5 + parent: 2 + - uid: 22557 + components: + - type: Transform + pos: 45.5,0.5 + parent: 2 + - uid: 22558 + components: + - type: Transform + pos: 45.5,1.5 + parent: 2 + - uid: 22559 + components: + - type: Transform + pos: 44.5,1.5 + parent: 2 + - uid: 22560 + components: + - type: Transform + pos: 43.5,1.5 + parent: 2 + - uid: 22561 + components: + - type: Transform + pos: 42.5,1.5 + parent: 2 + - uid: 22562 + components: + - type: Transform + pos: 41.5,0.5 + parent: 2 + - uid: 22563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,2.5 + parent: 2 + - uid: 22564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,3.5 + parent: 2 + - uid: 22565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,10.5 + parent: 2 + - uid: 22566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,10.5 + parent: 2 + - uid: 22567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,21.5 + parent: 2 + - uid: 22568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,22.5 + parent: 2 + - uid: 22569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,23.5 + parent: 2 + - uid: 22570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,24.5 + parent: 2 + - uid: 22571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,25.5 + parent: 2 + - uid: 22572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,25.5 + parent: 2 + - uid: 22573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,25.5 + parent: 2 + - uid: 22574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,24.5 + parent: 2 + - uid: 22575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,20.5 + parent: 2 + - uid: 22576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,21.5 + parent: 2 + - uid: 22577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,22.5 + parent: 2 + - uid: 22578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,22.5 + parent: 2 + - uid: 22579 + components: + - type: Transform + pos: 45.5,25.5 + parent: 2 + - uid: 22580 + components: + - type: Transform + pos: 46.5,25.5 + parent: 2 + - uid: 22581 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 22582 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 22583 + components: + - type: Transform + pos: 48.5,24.5 + parent: 2 + - uid: 22584 + components: + - type: Transform + pos: 49.5,24.5 + parent: 2 + - uid: 22585 + components: + - type: Transform + pos: 49.5,22.5 + parent: 2 + - uid: 22586 + components: + - type: Transform + pos: 48.5,22.5 + parent: 2 + - uid: 22587 + components: + - type: Transform + pos: 47.5,22.5 + parent: 2 + - uid: 22588 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 + - uid: 22589 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 22590 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - uid: 22591 + components: + - type: Transform + pos: 35.5,22.5 + parent: 2 + - uid: 22592 + components: + - type: Transform + pos: 35.5,23.5 + parent: 2 + - uid: 22593 + components: + - type: Transform + pos: 35.5,24.5 + parent: 2 + - uid: 22594 + components: + - type: Transform + pos: 35.5,25.5 + parent: 2 + - uid: 22595 + components: + - type: Transform + pos: 36.5,25.5 + parent: 2 + - uid: 22596 + components: + - type: Transform + pos: 37.5,25.5 + parent: 2 + - uid: 22597 + components: + - type: Transform + pos: 39.5,25.5 + parent: 2 + - uid: 22598 + components: + - type: Transform + pos: 40.5,25.5 + parent: 2 + - uid: 22599 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 + - uid: 22600 + components: + - type: Transform + pos: 39.5,23.5 + parent: 2 + - uid: 22601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,25.5 + parent: 2 + - uid: 22602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,25.5 + parent: 2 + - uid: 22603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,25.5 + parent: 2 + - uid: 22604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,25.5 + parent: 2 + - uid: 22605 + components: + - type: Transform + pos: 18.5,24.5 + parent: 2 + - uid: 22606 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 + - uid: 22607 + components: + - type: Transform + pos: 14.5,23.5 + parent: 2 + - uid: 22608 + components: + - type: Transform + pos: 10.5,23.5 + parent: 2 + - uid: 22609 + components: + - type: Transform + pos: 11.5,23.5 + parent: 2 + - uid: 22612 + components: + - type: Transform + pos: 15.5,27.5 + parent: 2 + - uid: 22614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,28.5 + parent: 2 + - uid: 22615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,28.5 + parent: 2 + - uid: 22616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,28.5 + parent: 2 + - uid: 22617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,28.5 + parent: 2 + - uid: 22618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,28.5 + parent: 2 + - uid: 22619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,28.5 + parent: 2 + - uid: 22620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,28.5 + parent: 2 + - uid: 22621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,28.5 + parent: 2 + - uid: 22622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,28.5 + parent: 2 + - uid: 22623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,28.5 + parent: 2 + - uid: 22624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,28.5 + parent: 2 + - uid: 22625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,27.5 + parent: 2 + - uid: 22626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,25.5 + parent: 2 + - uid: 22627 + components: + - type: Transform + pos: 41.5,26.5 + parent: 2 + - uid: 22628 + components: + - type: Transform + pos: 45.5,26.5 + parent: 2 + - uid: 22629 + components: + - type: Transform + pos: 41.5,30.5 + parent: 2 + - uid: 22630 + components: + - type: Transform + pos: 31.5,31.5 + parent: 2 + - uid: 22631 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - uid: 22632 + components: + - type: Transform + pos: 35.5,31.5 + parent: 2 + - uid: 22633 + components: + - type: Transform + pos: 37.5,31.5 + parent: 2 + - uid: 22634 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - uid: 22635 + components: + - type: Transform + pos: 41.5,31.5 + parent: 2 + - uid: 22636 + components: + - type: Transform + pos: 27.5,34.5 + parent: 2 + - uid: 22637 + components: + - type: Transform + pos: 26.5,34.5 + parent: 2 + - uid: 22638 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 + - uid: 22639 + components: + - type: Transform + pos: 26.5,33.5 + parent: 2 + - uid: 22644 + components: + - type: Transform + pos: 16.5,33.5 + parent: 2 + - uid: 22645 + components: + - type: Transform + pos: 16.5,34.5 + parent: 2 + - uid: 22646 + components: + - type: Transform + pos: 17.5,34.5 + parent: 2 + - uid: 22647 + components: + - type: Transform + pos: 18.5,34.5 + parent: 2 + - uid: 22648 + components: + - type: Transform + pos: 22.5,40.5 + parent: 2 + - uid: 22649 + components: + - type: Transform + pos: 25.5,34.5 + parent: 2 + - uid: 22650 + components: + - type: Transform + pos: 24.5,34.5 + parent: 2 + - uid: 22651 + components: + - type: Transform + pos: 23.5,34.5 + parent: 2 + - uid: 22652 + components: + - type: Transform + pos: 22.5,34.5 + parent: 2 + - uid: 22653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,35.5 + parent: 2 + - uid: 22654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,36.5 + parent: 2 + - uid: 22655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,36.5 + parent: 2 + - uid: 22656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,37.5 + parent: 2 + - uid: 22657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,35.5 + parent: 2 + - uid: 22658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,36.5 + parent: 2 + - uid: 22659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,37.5 + parent: 2 + - uid: 22660 + components: + - type: Transform + pos: 22.5,38.5 + parent: 2 + - uid: 22661 + components: + - type: Transform + pos: 22.5,39.5 + parent: 2 + - uid: 22662 + components: + - type: Transform + pos: 22.5,41.5 + parent: 2 + - uid: 22663 + components: + - type: Transform + pos: 21.5,41.5 + parent: 2 + - uid: 22664 + components: + - type: Transform + pos: 19.5,41.5 + parent: 2 + - uid: 22665 + components: + - type: Transform + pos: 18.5,41.5 + parent: 2 + - uid: 22666 + components: + - type: Transform + pos: 18.5,38.5 + parent: 2 + - uid: 22667 + components: + - type: Transform + pos: 18.5,40.5 + parent: 2 + - uid: 22668 + components: + - type: Transform + pos: 16.5,37.5 + parent: 2 + - uid: 22669 + components: + - type: Transform + pos: 15.5,37.5 + parent: 2 + - uid: 22670 + components: + - type: Transform + pos: 13.5,37.5 + parent: 2 + - uid: 22672 + components: + - type: Transform + pos: 17.5,41.5 + parent: 2 + - uid: 22673 + components: + - type: Transform + pos: 16.5,41.5 + parent: 2 + - uid: 22674 + components: + - type: Transform + pos: 14.5,41.5 + parent: 2 + - uid: 22675 + components: + - type: Transform + pos: 13.5,41.5 + parent: 2 + - uid: 22683 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - uid: 22684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,15.5 + parent: 2 + - uid: 22686 + components: + - type: Transform + pos: 14.5,34.5 + parent: 2 + - uid: 22687 + components: + - type: Transform + pos: 15.5,34.5 + parent: 2 + - uid: 22688 + components: + - type: Transform + pos: 15.5,32.5 + parent: 2 + - uid: 22691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,42.5 + parent: 2 + - uid: 22692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,44.5 + parent: 2 + - uid: 22693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,45.5 + parent: 2 + - uid: 22694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,45.5 + parent: 2 + - uid: 22695 + components: + - type: Transform + pos: 17.5,45.5 + parent: 2 + - uid: 22696 + components: + - type: Transform + pos: 24.5,42.5 + parent: 2 + - uid: 22697 + components: + - type: Transform + pos: 24.5,43.5 + parent: 2 + - uid: 22698 + components: + - type: Transform + pos: 24.5,44.5 + parent: 2 + - uid: 22699 + components: + - type: Transform + pos: 24.5,45.5 + parent: 2 + - uid: 22700 + components: + - type: Transform + pos: 24.5,41.5 + parent: 2 + - uid: 22701 + components: + - type: Transform + pos: 23.5,41.5 + parent: 2 + - uid: 22702 + components: + - type: Transform + pos: 23.5,45.5 + parent: 2 + - uid: 22703 + components: + - type: Transform + pos: 17.5,46.5 + parent: 2 + - uid: 22704 + components: + - type: Transform + pos: 18.5,46.5 + parent: 2 + - uid: 22705 + components: + - type: Transform + pos: 23.5,46.5 + parent: 2 + - uid: 22706 + components: + - type: Transform + pos: 22.5,46.5 + parent: 2 + - uid: 22707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,35.5 + parent: 2 + - uid: 22708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,37.5 + parent: 2 + - uid: 22709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,37.5 + parent: 2 + - uid: 22710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,37.5 + parent: 2 + - uid: 22711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,37.5 + parent: 2 + - uid: 22712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,37.5 + parent: 2 + - uid: 22713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,38.5 + parent: 2 + - uid: 22714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,40.5 + parent: 2 + - uid: 22715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,41.5 + parent: 2 + - uid: 22716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,40.5 + parent: 2 + - uid: 22717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,40.5 + parent: 2 + - uid: 22718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,40.5 + parent: 2 + - uid: 22719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,39.5 + parent: 2 + - uid: 22720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,37.5 + parent: 2 + - uid: 22721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,36.5 + parent: 2 + - uid: 22722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,32.5 + parent: 2 + - uid: 22723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,33.5 + parent: 2 + - uid: 22724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,34.5 + parent: 2 + - uid: 22725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,42.5 + parent: 2 + - uid: 22726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,42.5 + parent: 2 + - uid: 22727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,41.5 + parent: 2 + - uid: 22728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,42.5 + parent: 2 + - uid: 22729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,42.5 + parent: 2 + - uid: 22730 + components: + - type: Transform + pos: 45.5,30.5 + parent: 2 + - uid: 22731 + components: + - type: Transform + pos: 45.5,31.5 + parent: 2 + - uid: 22732 + components: + - type: Transform + pos: 45.5,33.5 + parent: 2 + - uid: 22733 + components: + - type: Transform + pos: 45.5,40.5 + parent: 2 + - uid: 22734 + components: + - type: Transform + pos: 45.5,41.5 + parent: 2 + - uid: 22735 + components: + - type: Transform + pos: 47.5,38.5 + parent: 2 + - uid: 22736 + components: + - type: Transform + pos: 41.5,43.5 + parent: 2 + - uid: 22737 + components: + - type: Transform + pos: 41.5,44.5 + parent: 2 + - uid: 22738 + components: + - type: Transform + pos: 41.5,45.5 + parent: 2 + - uid: 22739 + components: + - type: Transform + pos: 41.5,46.5 + parent: 2 + - uid: 22740 + components: + - type: Transform + pos: 41.5,47.5 + parent: 2 + - uid: 22741 + components: + - type: Transform + pos: 45.5,46.5 + parent: 2 + - uid: 22742 + components: + - type: Transform + pos: 45.5,47.5 + parent: 2 + - uid: 22743 + components: + - type: Transform + pos: 41.5,48.5 + parent: 2 + - uid: 22744 + components: + - type: Transform + pos: 41.5,49.5 + parent: 2 + - uid: 22745 + components: + - type: Transform + pos: 45.5,48.5 + parent: 2 + - uid: 22746 + components: + - type: Transform + pos: 45.5,49.5 + parent: 2 + - uid: 22747 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 + - uid: 22748 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - uid: 22749 + components: + - type: Transform + pos: 47.5,33.5 + parent: 2 + - uid: 22750 + components: + - type: Transform + pos: 46.5,33.5 + parent: 2 + - uid: 22751 + components: + - type: Transform + pos: 47.5,40.5 + parent: 2 + - uid: 22752 + components: + - type: Transform + pos: 46.5,40.5 + parent: 2 + - uid: 22753 + components: + - type: Transform + pos: 45.5,38.5 + parent: 2 + - uid: 22754 + components: + - type: Transform + pos: 46.5,38.5 + parent: 2 + - uid: 22755 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 + - uid: 22756 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 + - uid: 22757 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 2 + - uid: 22758 + components: + - type: Transform + pos: 39.5,-8.5 + parent: 2 + - uid: 22766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-9.5 + parent: 2 + - uid: 22767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-5.5 + parent: 2 + - uid: 22768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-3.5 + parent: 2 + - uid: 22769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-11.5 + parent: 2 + - uid: 22770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-5.5 + parent: 2 + - uid: 22771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-3.5 + parent: 2 + - uid: 22772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-3.5 + parent: 2 + - uid: 22773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,14.5 + parent: 2 + - uid: 22774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,15.5 + parent: 2 + - uid: 22775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,17.5 + parent: 2 + - uid: 22776 + components: + - type: Transform + pos: -26.5,15.5 + parent: 2 + - uid: 22777 + components: + - type: Transform + pos: -26.5,17.5 + parent: 2 + - uid: 22778 + components: + - type: Transform + pos: -26.5,18.5 + parent: 2 + - uid: 22779 + components: + - type: Transform + pos: -27.5,18.5 + parent: 2 + - uid: 22780 + components: + - type: Transform + pos: -29.5,18.5 + parent: 2 + - uid: 22781 + components: + - type: Transform + pos: -30.5,19.5 + parent: 2 + - uid: 22782 + components: + - type: Transform + pos: -30.5,21.5 + parent: 2 + - uid: 22783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,18.5 + parent: 2 + - uid: 22785 + components: + - type: Transform + pos: -18.5,23.5 + parent: 2 + - uid: 22786 + components: + - type: Transform + pos: -19.5,23.5 + parent: 2 + - uid: 22787 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 + - uid: 22788 + components: + - type: Transform + pos: -21.5,23.5 + parent: 2 + - uid: 22789 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - uid: 22790 + components: + - type: Transform + pos: -17.5,22.5 + parent: 2 + - uid: 22791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,26.5 + parent: 2 + - uid: 22792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,24.5 + parent: 2 + - uid: 22793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,26.5 + parent: 2 + - uid: 22794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,26.5 + parent: 2 + - uid: 22795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,22.5 + parent: 2 + - uid: 22796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,23.5 + parent: 2 + - uid: 22797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,24.5 + parent: 2 + - uid: 22798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,25.5 + parent: 2 + - uid: 22799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,22.5 + parent: 2 + - uid: 22800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,23.5 + parent: 2 + - uid: 22801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,24.5 + parent: 2 + - uid: 22802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,25.5 + parent: 2 + - uid: 22803 + components: + - type: Transform + pos: -10.5,30.5 + parent: 2 + - uid: 22804 + components: + - type: Transform + pos: -9.5,30.5 + parent: 2 + - uid: 22805 + components: + - type: Transform + pos: -8.5,30.5 + parent: 2 + - uid: 22806 + components: + - type: Transform + pos: -7.5,30.5 + parent: 2 + - uid: 22807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,31.5 + parent: 2 + - uid: 22808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,31.5 + parent: 2 + - uid: 22809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,31.5 + parent: 2 + - uid: 22810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,30.5 + parent: 2 + - uid: 22811 + components: + - type: Transform + pos: -20.5,30.5 + parent: 2 + - uid: 22812 + components: + - type: Transform + pos: -21.5,30.5 + parent: 2 + - uid: 22813 + components: + - type: Transform + pos: -21.5,31.5 + parent: 2 + - uid: 22814 + components: + - type: Transform + pos: -21.5,32.5 + parent: 2 + - uid: 22815 + components: + - type: Transform + pos: -21.5,33.5 + parent: 2 + - uid: 22816 + components: + - type: Transform + pos: -21.5,34.5 + parent: 2 + - uid: 22817 + components: + - type: Transform + pos: -21.5,35.5 + parent: 2 + - uid: 22818 + components: + - type: Transform + pos: -21.5,36.5 + parent: 2 + - uid: 22819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,31.5 + parent: 2 + - uid: 22820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,31.5 + parent: 2 + - uid: 22821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,31.5 + parent: 2 + - uid: 22822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,31.5 + parent: 2 + - uid: 22823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,31.5 + parent: 2 + - uid: 22824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,31.5 + parent: 2 + - uid: 22825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,32.5 + parent: 2 + - uid: 22826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,33.5 + parent: 2 + - uid: 22827 + components: + - type: Transform + pos: -32.5,34.5 + parent: 2 + - uid: 22828 + components: + - type: Transform + pos: -33.5,34.5 + parent: 2 + - uid: 22829 + components: + - type: Transform + pos: -34.5,34.5 + parent: 2 + - uid: 22830 + components: + - type: Transform + pos: -35.5,34.5 + parent: 2 + - uid: 22831 + components: + - type: Transform + pos: -32.5,37.5 + parent: 2 + - uid: 22832 + components: + - type: Transform + pos: -33.5,37.5 + parent: 2 + - uid: 22833 + components: + - type: Transform + pos: -34.5,37.5 + parent: 2 + - uid: 22834 + components: + - type: Transform + pos: -35.5,37.5 + parent: 2 + - uid: 22836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,20.5 + parent: 2 + - uid: 22839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,17.5 + parent: 2 + - uid: 22842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,43.5 + parent: 2 + - uid: 22843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,44.5 + parent: 2 + - uid: 22844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,45.5 + parent: 2 + - uid: 22850 + components: + - type: Transform + pos: -12.5,45.5 + parent: 2 + - uid: 22851 + components: + - type: Transform + pos: -12.5,46.5 + parent: 2 + - uid: 22852 + components: + - type: Transform + pos: -12.5,48.5 + parent: 2 + - uid: 22853 + components: + - type: Transform + pos: 41.5,-19.5 + parent: 2 + - uid: 22854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-12.5 + parent: 2 + - uid: 22855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-12.5 + parent: 2 + - uid: 22856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-17.5 + parent: 2 + - uid: 22857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-17.5 + parent: 2 + - uid: 22858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-17.5 + parent: 2 + - uid: 22859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-17.5 + parent: 2 + - uid: 22860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-17.5 + parent: 2 + - uid: 22861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-17.5 + parent: 2 + - uid: 22862 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 2 + - uid: 22863 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 2 + - uid: 22864 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 2 + - uid: 22865 + components: + - type: Transform + pos: 15.5,-21.5 + parent: 2 + - uid: 22866 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 2 + - uid: 22867 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 22868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-14.5 + parent: 2 + - uid: 22869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-15.5 + parent: 2 + - uid: 22870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-16.5 + parent: 2 + - uid: 22871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-17.5 + parent: 2 + - uid: 22872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-18.5 + parent: 2 + - uid: 22873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-19.5 + parent: 2 + - uid: 22874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-20.5 + parent: 2 + - uid: 22875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-21.5 + parent: 2 + - uid: 22876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-22.5 + parent: 2 + - uid: 22877 + components: + - type: Transform + pos: 40.5,-19.5 + parent: 2 + - uid: 22878 + components: + - type: Transform + pos: 39.5,-19.5 + parent: 2 + - uid: 22879 + components: + - type: Transform + pos: 39.5,-18.5 + parent: 2 + - uid: 22880 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 2 + - uid: 22884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-35.5 + parent: 2 + - uid: 22885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-35.5 + parent: 2 + - uid: 22886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-34.5 + parent: 2 + - uid: 22903 + components: + - type: Transform + pos: 24.5,-32.5 + parent: 2 + - uid: 22904 + components: + - type: Transform + pos: 24.5,-31.5 + parent: 2 + - uid: 22905 + components: + - type: Transform + pos: 24.5,-30.5 + parent: 2 + - uid: 22906 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 2 + - uid: 22907 + components: + - type: Transform + pos: 24.5,-28.5 + parent: 2 + - uid: 22908 + components: + - type: Transform + pos: 24.5,-27.5 + parent: 2 + - uid: 22909 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 2 + - uid: 22910 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 + - uid: 22911 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 2 + - uid: 22912 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 2 + - uid: 22913 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 2 + - uid: 22914 + components: + - type: Transform + pos: 32.5,-26.5 + parent: 2 + - uid: 22915 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 2 + - uid: 22916 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 2 + - uid: 22917 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 2 + - uid: 22918 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 2 + - uid: 22927 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 2 + - uid: 22928 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 2 + - uid: 22943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-29.5 + parent: 2 + - uid: 22945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 2 + - uid: 22948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-27.5 + parent: 2 + - uid: 22949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-26.5 + parent: 2 + - uid: 22950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-22.5 + parent: 2 + - uid: 22951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 2 + - uid: 22958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-26.5 + parent: 2 + - uid: 22959 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 2 + - uid: 22960 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 2 + - uid: 22961 + components: + - type: Transform + pos: 3.5,-37.5 + parent: 2 + - uid: 22962 + components: + - type: Transform + pos: 9.5,-34.5 + parent: 2 + - uid: 22963 + components: + - type: Transform + pos: 18.5,-35.5 + parent: 2 + - uid: 22964 + components: + - type: Transform + pos: 20.5,-35.5 + parent: 2 + - uid: 22965 + components: + - type: Transform + pos: 21.5,-37.5 + parent: 2 + - uid: 22966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-35.5 + parent: 2 + - uid: 22967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-35.5 + parent: 2 + - uid: 22968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-36.5 + parent: 2 + - uid: 22969 + components: + - type: Transform + pos: 37.5,-39.5 + parent: 2 + - uid: 22970 + components: + - type: Transform + pos: 48.5,-41.5 + parent: 2 + - uid: 22971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-44.5 + parent: 2 + - uid: 22972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-45.5 + parent: 2 + - uid: 22973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-52.5 + parent: 2 + - uid: 22974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-57.5 + parent: 2 + - uid: 22975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-57.5 + parent: 2 + - uid: 22976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-57.5 + parent: 2 + - uid: 22977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-57.5 + parent: 2 + - uid: 22978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-58.5 + parent: 2 + - uid: 22979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-59.5 + parent: 2 + - uid: 22980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-60.5 + parent: 2 + - uid: 22981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-58.5 + parent: 2 + - uid: 22982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-59.5 + parent: 2 + - uid: 22983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-60.5 + parent: 2 + - uid: 22984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-61.5 + parent: 2 + - uid: 22985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-61.5 + parent: 2 + - uid: 22986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-60.5 + parent: 2 + - uid: 22987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-59.5 + parent: 2 + - uid: 22988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-58.5 + parent: 2 + - uid: 22989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-55.5 + parent: 2 + - uid: 22990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-56.5 + parent: 2 + - uid: 22991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-61.5 + parent: 2 + - uid: 22992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-60.5 + parent: 2 + - uid: 22993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-59.5 + parent: 2 + - uid: 22994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-56.5 + parent: 2 + - uid: 22995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-61.5 + parent: 2 + - uid: 22996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-61.5 + parent: 2 + - uid: 22997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-61.5 + parent: 2 + - uid: 22998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-61.5 + parent: 2 + - uid: 22999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-61.5 + parent: 2 + - uid: 23000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-61.5 + parent: 2 + - uid: 23001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-61.5 + parent: 2 + - uid: 23002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-60.5 + parent: 2 + - uid: 23003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-60.5 + parent: 2 + - uid: 23004 + components: + - type: Transform + pos: 9.5,-67.5 + parent: 2 + - uid: 23005 + components: + - type: Transform + pos: 9.5,-66.5 + parent: 2 + - uid: 23006 + components: + - type: Transform + pos: 9.5,-65.5 + parent: 2 + - uid: 23007 + components: + - type: Transform + pos: 9.5,-62.5 + parent: 2 + - uid: 23008 + components: + - type: Transform + pos: 33.5,-41.5 + parent: 2 + - uid: 23009 + components: + - type: Transform + pos: 33.5,-42.5 + parent: 2 + - uid: 23010 + components: + - type: Transform + pos: 33.5,-43.5 + parent: 2 + - uid: 23011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-17.5 + parent: 2 + - uid: 23012 + components: + - type: Transform + pos: 33.5,-47.5 + parent: 2 + - uid: 23013 + components: + - type: Transform + pos: 34.5,-47.5 + parent: 2 + - uid: 23014 + components: + - type: Transform + pos: 35.5,-47.5 + parent: 2 + - uid: 23015 + components: + - type: Transform + pos: 36.5,-47.5 + parent: 2 + - uid: 23016 + components: + - type: Transform + pos: 37.5,-47.5 + parent: 2 + - uid: 23017 + components: + - type: Transform + pos: 39.5,-45.5 + parent: 2 + - uid: 23018 + components: + - type: Transform + pos: 40.5,-45.5 + parent: 2 + - uid: 23019 + components: + - type: Transform + pos: 39.5,-42.5 + parent: 2 + - uid: 23020 + components: + - type: Transform + pos: 43.5,-42.5 + parent: 2 + - uid: 23021 + components: + - type: Transform + pos: 44.5,-42.5 + parent: 2 + - uid: 23022 + components: + - type: Transform + pos: 45.5,-42.5 + parent: 2 + - uid: 23023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-54.5 + parent: 2 + - uid: 23024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-46.5 + parent: 2 + - uid: 23025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-45.5 + parent: 2 + - uid: 23026 + components: + - type: Transform + pos: 8.5,22.5 + parent: 2 + - uid: 23027 + components: + - type: Transform + pos: 42.5,11.5 + parent: 2 + - uid: 23028 + components: + - type: Transform + pos: 45.5,-36.5 + parent: 2 + - uid: 23029 + components: + - type: Transform + pos: 48.5,-38.5 + parent: 2 + - uid: 23030 + components: + - type: Transform + pos: 47.5,-37.5 + parent: 2 + - uid: 23031 + components: + - type: Transform + pos: 47.5,-41.5 + parent: 2 + - uid: 23032 + components: + - type: Transform + pos: 41.5,-37.5 + parent: 2 + - uid: 23033 + components: + - type: Transform + pos: 42.5,-37.5 + parent: 2 + - uid: 23034 + components: + - type: Transform + pos: 39.5,-36.5 + parent: 2 + - uid: 23035 + components: + - type: Transform + pos: -12.5,-25.5 + parent: 2 + - uid: 24068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,20.5 + parent: 2 +- proto: WallSolidRust + entities: + - uid: 23036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-14.5 + parent: 2 + - uid: 23037 + components: + - type: Transform + pos: 46.5,-41.5 + parent: 2 + - uid: 23038 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 2 + - uid: 23039 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - uid: 23040 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 2 + - uid: 23041 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 2 + - uid: 23042 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 2 + - uid: 23043 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 23044 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 + - uid: 23045 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 2 + - uid: 23046 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - uid: 23047 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 2 + - uid: 23048 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 2 + - uid: 23049 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 2 + - uid: 23050 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 2 + - uid: 23051 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - uid: 23052 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 + - uid: 23053 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 2 + - uid: 23054 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 2 + - uid: 23055 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 + - uid: 23056 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 2 + - uid: 23057 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 2 + - uid: 23058 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 2 + - uid: 23059 + components: + - type: Transform + pos: -17.5,-14.5 + parent: 2 + - uid: 23060 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 23061 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 2 + - uid: 23062 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 2 + - uid: 23063 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 + - uid: 23064 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 2 + - uid: 23065 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 2 + - uid: 23066 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 2 + - uid: 23067 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 2 + - uid: 23068 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 2 + - uid: 23069 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 2 + - uid: 23070 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 2 + - uid: 23071 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 2 + - uid: 23072 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 2 + - uid: 23073 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 + - uid: 23074 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 2 + - uid: 23075 + components: + - type: Transform + pos: -26.5,9.5 + parent: 2 + - uid: 23076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,8.5 + parent: 2 + - uid: 23077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,10.5 + parent: 2 + - uid: 23078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,12.5 + parent: 2 + - uid: 23079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,13.5 + parent: 2 + - uid: 23080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,14.5 + parent: 2 + - uid: 23081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,14.5 + parent: 2 + - uid: 23082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,14.5 + parent: 2 + - uid: 23083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-23.5 + parent: 2 + - uid: 23084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-24.5 + parent: 2 + - uid: 23085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-24.5 + parent: 2 + - uid: 23086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-24.5 + parent: 2 + - uid: 23087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-24.5 + parent: 2 + - uid: 23090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-38.5 + parent: 2 + - uid: 23091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-50.5 + parent: 2 + - uid: 23092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-50.5 + parent: 2 + - uid: 23093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-50.5 + parent: 2 + - uid: 23094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-49.5 + parent: 2 + - uid: 23108 + components: + - type: Transform + pos: -19.5,-40.5 + parent: 2 + - uid: 23109 + components: + - type: Transform + pos: -23.5,-51.5 + parent: 2 + - uid: 23110 + components: + - type: Transform + pos: -23.5,-52.5 + parent: 2 + - uid: 23111 + components: + - type: Transform + pos: -21.5,-53.5 + parent: 2 + - uid: 23112 + components: + - type: Transform + pos: -18.5,-53.5 + parent: 2 + - uid: 23113 + components: + - type: Transform + pos: -18.5,-52.5 + parent: 2 + - uid: 23114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-53.5 + parent: 2 + - uid: 23115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-53.5 + parent: 2 + - uid: 23116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-53.5 + parent: 2 + - uid: 23117 + components: + - type: Transform + pos: -27.5,-54.5 + parent: 2 + - uid: 23118 + components: + - type: Transform + pos: -27.5,-56.5 + parent: 2 + - uid: 23119 + components: + - type: Transform + pos: -27.5,-57.5 + parent: 2 + - uid: 23120 + components: + - type: Transform + pos: -26.5,-57.5 + parent: 2 + - uid: 23121 + components: + - type: Transform + pos: -25.5,-57.5 + parent: 2 + - uid: 23122 + components: + - type: Transform + pos: -23.5,-57.5 + parent: 2 + - uid: 23123 + components: + - type: Transform + pos: -30.5,-56.5 + parent: 2 + - uid: 23124 + components: + - type: Transform + pos: -36.5,-57.5 + parent: 2 + - uid: 23125 + components: + - type: Transform + pos: -35.5,-57.5 + parent: 2 + - uid: 23126 + components: + - type: Transform + pos: -34.5,-57.5 + parent: 2 + - uid: 23127 + components: + - type: Transform + pos: -32.5,-57.5 + parent: 2 + - uid: 23128 + components: + - type: Transform + pos: -37.5,-61.5 + parent: 2 + - uid: 23129 + components: + - type: Transform + pos: -35.5,-61.5 + parent: 2 + - uid: 23130 + components: + - type: Transform + pos: -33.5,-61.5 + parent: 2 + - uid: 23131 + components: + - type: Transform + pos: -33.5,-60.5 + parent: 2 + - uid: 23132 + components: + - type: Transform + pos: -33.5,-58.5 + parent: 2 + - uid: 23133 + components: + - type: Transform + pos: -29.5,-57.5 + parent: 2 + - uid: 23134 + components: + - type: Transform + pos: -29.5,-59.5 + parent: 2 + - uid: 23135 + components: + - type: Transform + pos: -28.5,-59.5 + parent: 2 + - uid: 23136 + components: + - type: Transform + pos: -28.5,-60.5 + parent: 2 + - uid: 23137 + components: + - type: Transform + pos: -25.5,-60.5 + parent: 2 + - uid: 23138 + components: + - type: Transform + pos: -33.5,-65.5 + parent: 2 + - uid: 23139 + components: + - type: Transform + pos: -33.5,-64.5 + parent: 2 + - uid: 23140 + components: + - type: Transform + pos: -36.5,-65.5 + parent: 2 + - uid: 23141 + components: + - type: Transform + pos: -37.5,-65.5 + parent: 2 + - uid: 23142 + components: + - type: Transform + pos: -27.5,-65.5 + parent: 2 + - uid: 23143 + components: + - type: Transform + pos: -28.5,-65.5 + parent: 2 + - uid: 23144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-62.5 + parent: 2 + - uid: 23145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-64.5 + parent: 2 + - uid: 23146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-61.5 + parent: 2 + - uid: 23147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-65.5 + parent: 2 + - uid: 23148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-65.5 + parent: 2 + - uid: 23149 + components: + - type: Transform + pos: -28.5,-66.5 + parent: 2 + - uid: 23150 + components: + - type: Transform + pos: -27.5,-68.5 + parent: 2 + - uid: 23151 + components: + - type: Transform + pos: -25.5,-68.5 + parent: 2 + - uid: 23152 + components: + - type: Transform + pos: -24.5,-68.5 + parent: 2 + - uid: 23153 + components: + - type: Transform + pos: -24.5,-69.5 + parent: 2 + - uid: 23154 + components: + - type: Transform + pos: -22.5,-69.5 + parent: 2 + - uid: 23155 + components: + - type: Transform + pos: -21.5,-69.5 + parent: 2 + - uid: 23156 + components: + - type: Transform + pos: -21.5,-67.5 + parent: 2 + - uid: 23157 + components: + - type: Transform + pos: -24.5,-66.5 + parent: 2 + - uid: 23158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,5.5 + parent: 2 + - uid: 23159 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 23160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,1.5 + parent: 2 + - uid: 23161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,4.5 + parent: 2 + - uid: 23162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,5.5 + parent: 2 + - uid: 23163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,9.5 + parent: 2 + - uid: 23164 + components: + - type: Transform + pos: 19.5,24.5 + parent: 2 + - uid: 23165 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 + - uid: 23166 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - uid: 23167 + components: + - type: Transform + pos: 14.5,24.5 + parent: 2 + - uid: 23168 + components: + - type: Transform + pos: 15.5,24.5 + parent: 2 + - uid: 23169 + components: + - type: Transform + pos: 16.5,24.5 + parent: 2 + - uid: 23170 + components: + - type: Transform + pos: 8.5,23.5 + parent: 2 + - uid: 23171 + components: + - type: Transform + pos: 9.5,23.5 + parent: 2 + - uid: 23172 + components: + - type: Transform + pos: 15.5,25.5 + parent: 2 + - uid: 23173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-35.5 + parent: 2 + - uid: 23174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-33.5 + parent: 2 + - uid: 23175 + components: + - type: Transform + pos: 9.5,-37.5 + parent: 2 + - uid: 23176 + components: + - type: Transform + pos: 9.5,-36.5 + parent: 2 + - uid: 23177 + components: + - type: Transform + pos: 17.5,-36.5 + parent: 2 + - uid: 23178 + components: + - type: Transform + pos: 17.5,-35.5 + parent: 2 + - uid: 23179 + components: + - type: Transform + pos: 19.5,-35.5 + parent: 2 + - uid: 23180 + components: + - type: Transform + pos: 21.5,-35.5 + parent: 2 + - uid: 23181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-34.5 + parent: 2 + - uid: 23182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-35.5 + parent: 2 + - uid: 23183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-35.5 + parent: 2 + - uid: 23184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-38.5 + parent: 2 + - uid: 23185 + components: + - type: Transform + pos: 37.5,-37.5 + parent: 2 + - uid: 23186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-56.5 + parent: 2 + - uid: 23187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-15.5 + parent: 2 + - uid: 23188 + components: + - type: Transform + pos: 45.5,-37.5 + parent: 2 + - uid: 23189 + components: + - type: Transform + pos: 48.5,-39.5 + parent: 2 + - uid: 23190 + components: + - type: Transform + pos: 48.5,-37.5 + parent: 2 + - uid: 23191 + components: + - type: Transform + pos: 42.5,-36.5 + parent: 2 + - uid: 23192 + components: + - type: Transform + pos: 48.5,-36.5 + parent: 2 + - uid: 23193 + components: + - type: Transform + pos: 39.5,-37.5 + parent: 2 + - uid: 23194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-2.5 + parent: 2 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 23195 + components: + - type: Transform + pos: -17.5,41.5 + parent: 2 + - uid: 23196 + components: + - type: Transform + pos: -1.5,71.5 + parent: 2 + - uid: 23197 + components: + - type: Transform + pos: -1.5,72.5 + parent: 2 + - uid: 23198 + components: + - type: Transform + pos: -1.5,69.5 + parent: 2 + - uid: 23199 + components: + - type: Transform + pos: 4.5,72.5 + parent: 2 + - uid: 23200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,79.5 + parent: 2 + - uid: 23201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,85.5 + parent: 2 + - uid: 23202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,76.5 + parent: 2 + - uid: 23203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,45.5 + parent: 2 +- proto: WallWood + entities: + - uid: 23204 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 23205 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - uid: 23206 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - uid: 23207 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 +- proto: WardrobeBlackFilled + entities: + - uid: 23208 + components: + - type: Transform + pos: 35.5,30.5 + parent: 2 + - uid: 23209 + components: + - type: Transform + pos: 42.5,45.5 + parent: 2 +- proto: WardrobeBlueFilled + entities: + - uid: 23210 + components: + - type: Transform + pos: 37.5,30.5 + parent: 2 +- proto: WardrobeChapelFilled + entities: + - uid: 23211 + components: + - type: Transform + pos: 14.5,40.5 + parent: 2 + - uid: 23212 + components: + - type: Transform + pos: 14.5,44.5 + parent: 2 + - uid: 23213 + components: + - type: Transform + pos: 17.5,42.5 + parent: 2 +- proto: WardrobeFormal + entities: + - uid: 23214 + components: + - type: Transform + pos: -35.5,-60.5 + parent: 2 + - uid: 23215 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 +- proto: WardrobeGeneticsFilled + entities: + - uid: 4562 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 2 + - uid: 23216 + components: + - type: Transform + pos: 32.5,-31.5 + parent: 2 +- proto: WardrobeGreenFilled + entities: + - uid: 23217 + components: + - type: Transform + pos: 42.5,44.5 + parent: 2 +- proto: WardrobeGreyFilled + entities: + - uid: 23218 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 +- proto: WardrobeMedicalDoctorFilled + entities: + - uid: 8848 + components: + - type: Transform + pos: -30.5,39.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8853 + - 8849 + - 8851 + - 8850 + - 8852 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WardrobeMixedFilled + entities: + - uid: 23219 + components: + - type: Transform + pos: 42.5,43.5 + parent: 2 +- proto: WardrobePinkFilled + entities: + - uid: 23220 + components: + - type: Transform + pos: 31.5,26.5 + parent: 2 +- proto: WardrobePrisonFilled + entities: + - uid: 23221 + components: + - type: Transform + pos: -12.5,24.5 + parent: 2 + - uid: 23222 + components: + - type: Transform + pos: -9.5,24.5 + parent: 2 + - uid: 23223 + components: + - type: Transform + pos: -9.5,23.5 + parent: 2 + - uid: 23224 + components: + - type: Transform + pos: -9.5,22.5 + parent: 2 + - uid: 23225 + components: + - type: Transform + pos: -3.5,24.5 + parent: 2 +- proto: WardrobeSalvageFilled + entities: + - uid: 23226 + components: + - type: Transform + pos: -36.5,-13.5 + parent: 2 +- proto: WardrobeVirologyFilled + entities: + - uid: 23227 + components: + - type: Transform + pos: 38.5,-29.5 + parent: 2 + - uid: 23228 + components: + - type: Transform + pos: 38.5,-30.5 + parent: 2 +- proto: WardrobeWhiteFilled + entities: + - uid: 23229 + components: + - type: Transform + pos: 32.5,26.5 + parent: 2 +- proto: WarningAir + entities: + - uid: 23230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-55.5 + parent: 2 +- proto: WarningN2 + entities: + - uid: 23231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-63.5 + parent: 2 +- proto: WarningN2O + entities: + - uid: 23232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-63.5 + parent: 2 +- proto: WarningO2 + entities: + - uid: 23233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-59.5 + parent: 2 +- proto: WarningPlasma + entities: + - uid: 23234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-59.5 + parent: 2 +- proto: WarningWaste + entities: + - uid: 23235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-55.5 + parent: 2 +- proto: WarpPoint + entities: + - uid: 23236 + components: + - type: Transform + pos: -80.5,-52.5 + parent: 2 + - type: WarpPoint + location: Lançador +- proto: WarpPointBombing + entities: + - uid: 23237 + components: + - type: Transform + pos: 20.5,31.5 + parent: 2 + - type: WarpPoint + location: Igreja +- proto: WaterCooler + entities: + - uid: 23238 + components: + - type: Transform + pos: 41.5,-16.5 + parent: 2 + - uid: 23239 + components: + - type: Transform + pos: 43.5,-20.5 + parent: 2 + - uid: 23240 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 2 +- proto: WaterTankFull + entities: + - uid: 23241 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 23242 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 23243 + components: + - type: Transform + pos: 9.5,19.5 + parent: 2 + - uid: 23244 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - uid: 23245 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 23246 + components: + - type: Transform + pos: -21.5,4.5 + parent: 2 + - uid: 23247 + components: + - type: Transform + pos: -41.5,15.5 + parent: 2 + - uid: 23248 + components: + - type: Transform + pos: -41.5,-27.5 + parent: 2 + - uid: 23249 + components: + - type: Transform + pos: -10.5,-44.5 + parent: 2 + - uid: 23250 + components: + - type: Transform + pos: -24.5,-44.5 + parent: 2 + - uid: 23251 + components: + - type: Transform + pos: -19.5,-53.5 + parent: 2 + - uid: 23252 + components: + - type: Transform + pos: -12.5,-53.5 + parent: 2 + - uid: 23253 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 2 + - uid: 23254 + components: + - type: Transform + pos: -32.5,21.5 + parent: 2 + - uid: 23255 + components: + - type: Transform + pos: -42.5,28.5 + parent: 2 + - uid: 23256 + components: + - type: Transform + pos: -2.5,45.5 + parent: 2 + - uid: 23257 + components: + - type: Transform + pos: 28.5,-36.5 + parent: 2 + - uid: 23258 + components: + - type: Transform + pos: 36.5,-41.5 + parent: 2 + - uid: 23259 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - uid: 23260 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 + - uid: 23261 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 2 +- proto: WaterTankHighCapacity + entities: + - uid: 23262 + components: + - type: Transform + pos: 37.5,19.5 + parent: 2 + - uid: 23263 + components: + - type: Transform + pos: 42.5,24.5 + parent: 2 + - uid: 23264 + components: + - type: Transform + pos: 26.5,27.5 + parent: 2 + - uid: 23265 + components: + - type: Transform + pos: 16.5,40.5 + parent: 2 + - uid: 23266 + components: + - type: Transform + pos: 17.5,-39.5 + parent: 2 + - uid: 23267 + components: + - type: Transform + pos: 29.5,-64.5 + parent: 2 +- proto: WaterVaporCanister + entities: + - uid: 23268 + components: + - type: Transform + pos: 38.5,-54.5 + parent: 2 + - uid: 23269 + components: + - type: Transform + pos: 18.5,-49.5 + parent: 2 + - uid: 23270 + components: + - type: Transform + pos: -27.5,-37.5 + parent: 2 +- proto: WeaponCapacitorRecharger + entities: + - uid: 23271 + components: + - type: Transform + pos: 30.5,-51.5 + parent: 2 + - uid: 23272 + components: + - type: Transform + pos: -10.5,15.5 + parent: 2 + - uid: 23273 + components: + - type: Transform + pos: -30.5,-34.5 + parent: 2 + - uid: 23274 + components: + - type: Transform + pos: -44.5,-36.5 + parent: 2 + - uid: 23275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-48.5 + parent: 2 + - uid: 23276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-4.5 + parent: 2 + - uid: 23277 + components: + - type: Transform + pos: 43.5,-16.5 + parent: 2 + - uid: 23278 + components: + - type: Transform + pos: -6.5,32.5 + parent: 2 + - uid: 23279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,32.5 + parent: 2 + - uid: 23280 + components: + - type: Transform + pos: -8.5,35.5 + parent: 2 + - uid: 23281 + components: + - type: Transform + pos: -14.5,35.5 + parent: 2 + - uid: 23282 + components: + - type: Transform + pos: -26.5,43.5 + parent: 2 + - uid: 23283 + components: + - type: Transform + pos: -38.5,21.5 + parent: 2 + - uid: 23284 + components: + - type: Transform + pos: -8.5,54.5 + parent: 2 + - uid: 23285 + components: + - type: Transform + pos: 3.5,62.5 + parent: 2 + - uid: 23286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-19.5 + parent: 2 + - uid: 23287 + components: + - type: Transform + pos: 2.5,-50.5 + parent: 2 +- proto: WeaponCapacitorRechargerCircuitboard + entities: + - uid: 23288 + components: + - type: Transform + pos: -23.339558,-16.57305 + parent: 2 +- proto: WeaponCrusher + entities: + - uid: 23289 + components: + - type: Transform + pos: -38.34513,-15.679401 + parent: 2 +- proto: WeaponCrusherDagger + entities: + - uid: 23290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.612595,-18.416832 + parent: 2 +- proto: WeaponCrusherGlaive + entities: + - uid: 23291 + components: + - type: Transform + pos: -38.401016,-15.497839 + parent: 2 +- proto: WeaponDisabler + entities: + - uid: 23292 + components: + - type: Transform + pos: -14.50828,35.01218 + parent: 2 +- proto: WeaponLaserCarbinePractice + entities: + - uid: 23293 + components: + - type: Transform + pos: -30.494923,-46.218987 + parent: 2 + - uid: 23294 + components: + - type: Transform + pos: -30.494923,-46.491714 + parent: 2 +- proto: WeaponPistolMk58 + entities: + - uid: 23296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.636597,40.22487 + parent: 2 + - uid: 23297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.477215,40.35222 + parent: 2 +- proto: WeaponRevolverDeckard + entities: + - uid: 23298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.322659,40.44136 + parent: 2 +- proto: WeaponRifleLecter + entities: + - uid: 23299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.715591,39.34965 + parent: 2 + - uid: 23300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.562584,39.473816 + parent: 2 +- proto: WeaponShotgunEnforcer + entities: + - uid: 23301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.466957,38.79569 + parent: 2 + - uid: 23302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.30439,38.98671 + parent: 2 +- proto: WeaponShotgunImprovised + entities: + - uid: 23303 + components: + - type: Transform + pos: -7.4090977,11.732128 + parent: 2 +- proto: WeaponShotgunKammerer + entities: + - uid: 23304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.734715,38.63332 + parent: 2 + - uid: 23305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.591274,38.73838 + parent: 2 +- proto: WeaponSubMachineGunDrozd + entities: + - uid: 23306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.438267,39.626633 + parent: 2 + - uid: 23307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.294827,39.798553 + parent: 2 +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 23308 + components: + - type: Transform + pos: -1.5,80.5 + parent: 2 + - uid: 23309 + components: + - type: Transform + pos: -1.5,74.5 + parent: 2 + - uid: 23310 + components: + - type: Transform + pos: 4.5,80.5 + parent: 2 + - uid: 23311 + components: + - type: Transform + pos: 4.5,74.5 + parent: 2 +- proto: WelderIndustrial + entities: + - uid: 23312 + components: + - type: Transform + pos: 7.649969,19.642628 + parent: 2 +- proto: WeldingFuelTankFull + entities: + - uid: 23313 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 + - uid: 23314 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 + - uid: 23315 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 2 + - uid: 23316 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 2 + - uid: 23317 + components: + - type: Transform + pos: -42.5,-27.5 + parent: 2 + - uid: 23318 + components: + - type: Transform + pos: -24.5,-16.5 + parent: 2 + - uid: 23319 + components: + - type: Transform + pos: -20.5,-53.5 + parent: 2 + - uid: 23320 + components: + - type: Transform + pos: -13.5,-53.5 + parent: 2 + - uid: 23321 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - uid: 23322 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 2 + - uid: 23323 + components: + - type: Transform + pos: 19.5,25.5 + parent: 2 + - uid: 23324 + components: + - type: Transform + pos: -23.5,19.5 + parent: 2 + - uid: 23325 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 2 + - uid: 23326 + components: + - type: Transform + pos: 0.5,-59.5 + parent: 2 + - uid: 23327 + components: + - type: Transform + pos: 37.5,-46.5 + parent: 2 + - uid: 23328 + components: + - type: Transform + pos: 10.5,22.5 + parent: 2 + - uid: 23329 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 + - uid: 23330 + components: + - type: Transform + pos: -2.5,44.5 + parent: 2 + - uid: 23331 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 + - uid: 23332 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 2 +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 23333 + components: + - type: Transform + pos: 9.5,80.5 + parent: 2 +- proto: Windoor + entities: + - uid: 23334 + components: + - type: Transform + pos: 40.5,-37.5 + parent: 2 + - uid: 23335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-37.5 + parent: 2 + - uid: 23336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-13.5 + parent: 2 + - uid: 23337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-13.5 + parent: 2 + - uid: 23338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,1.5 + parent: 2 + - uid: 23339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,47.5 + parent: 2 + - uid: 23340 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 2 + - uid: 23341 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 2 + - uid: 23342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-26.5 + parent: 2 + - uid: 23343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-31.5 + parent: 2 + - uid: 23344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-29.5 + parent: 2 + - uid: 23345 + components: + - type: Transform + pos: 46.5,-37.5 + parent: 2 + - uid: 23346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-37.5 + parent: 2 + - uid: 23347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,4.5 + parent: 2 +- proto: WindoorBarKitchenLocked + entities: + - uid: 23348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,13.5 + parent: 2 + - uid: 23349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,14.5 + parent: 2 +- proto: WindoorBarLocked + entities: + - uid: 23350 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 +- proto: WindoorCargoLocked + entities: + - uid: 23351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,6.5 + parent: 2 + - uid: 23352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,9.5 + parent: 2 + - uid: 23353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,10.5 + parent: 2 + - uid: 23354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19976 + - uid: 23355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19976 + - type: Door + secondsUntilStateChange: -188469.52 + state: Opening + - uid: 23356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-6.5 + parent: 2 +- proto: WindoorChapelLocked + entities: + - uid: 23357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,39.5 + parent: 2 + - uid: 23358 + components: + - type: Transform + pos: 20.5,46.5 + parent: 2 +- proto: WindoorHydroponicsLocked + entities: + - uid: 23359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,15.5 + parent: 2 + - uid: 23360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,14.5 + parent: 2 +- proto: WindoorKitchenLocked + entities: + - uid: 23361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,22.5 + parent: 2 + - uid: 23362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,15.5 + parent: 2 + - uid: 23363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,15.5 + parent: 2 + - uid: 23364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,15.5 + parent: 2 + - uid: 23365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,16.5 + parent: 2 + - uid: 23366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,15.5 + parent: 2 + - uid: 23367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,15.5 + parent: 2 +- proto: WindoorSecure + entities: + - uid: 23368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,15.5 + parent: 2 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 23369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,32.5 + parent: 2 + - uid: 23370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,38.5 + parent: 2 + - uid: 23371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,39.5 + parent: 2 + - uid: 23372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,40.5 + parent: 2 +- proto: WindoorSecureAtmosphericsLocked + entities: + - uid: 23373 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 2 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 23374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-22.5 + parent: 2 + - uid: 23375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-22.5 + parent: 2 + - uid: 23376 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 2 + - uid: 23377 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 2 + - uid: 23378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-30.5 + parent: 2 +- proto: WindoorSecureCommandLocked + entities: + - uid: 23379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-35.5 + parent: 2 + - uid: 23380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-24.5 + parent: 2 + - uid: 23381 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 2 + - uid: 23382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,29.5 + parent: 2 + - uid: 23383 + components: + - type: Transform + pos: 4.5,44.5 + parent: 2 + - uid: 23384 + components: + - type: Transform + pos: 5.5,44.5 + parent: 2 + - uid: 23385 + components: + - type: Transform + pos: 7.5,44.5 + parent: 2 + - uid: 23386 + components: + - type: Transform + pos: 8.5,44.5 + parent: 2 + - uid: 23387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,53.5 + parent: 2 + - uid: 23388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,69.5 + parent: 2 + - uid: 23389 + components: + - type: Transform + pos: 3.5,72.5 + parent: 2 + - uid: 23390 + components: + - type: Transform + pos: -0.5,72.5 + parent: 2 + - uid: 23391 + components: + - type: Transform + pos: -4.5,85.5 + parent: 2 + - uid: 23392 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 23393 + components: + - type: Transform + pos: -2.5,-44.5 + parent: 2 + - uid: 23394 + components: + - type: Transform + pos: -0.5,-43.5 + parent: 2 + - uid: 23395 + components: + - type: Transform + pos: 0.5,-43.5 + parent: 2 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 23396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,47.5 + parent: 2 +- proto: WindoorSecureJusticeLocked + entities: + - uid: 23436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,15.5 + parent: 2 + - uid: 23437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,10.5 + parent: 2 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 23397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-28.5 + parent: 2 + - uid: 23398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-19.5 + parent: 2 + - uid: 23399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-34.5 + parent: 2 + - uid: 23400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-34.5 + parent: 2 + - uid: 23401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-34.5 + parent: 2 + - uid: 23402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-34.5 + parent: 2 + - uid: 23403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-29.5 + parent: 2 + - uid: 23404 + components: + - type: Transform + pos: 39.5,-26.5 + parent: 2 + - uid: 23405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-20.5 + parent: 2 + - uid: 23406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-20.5 + parent: 2 + - uid: 23407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-32.5 + parent: 2 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 23408 + components: + - type: Transform + pos: -39.5,-6.5 + parent: 2 + - uid: 23409 + components: + - type: Transform + pos: -39.5,-6.5 + parent: 2 +- proto: WindoorSecureScienceLocked + entities: + - uid: 23410 + components: + - type: Transform + pos: -33.5,-25.5 + parent: 2 + - uid: 23411 + components: + - type: Transform + pos: -32.5,-25.5 + parent: 2 + - uid: 23412 + components: + - type: Transform + pos: -34.5,-25.5 + parent: 2 + - uid: 23413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-33.5 + parent: 2 + - uid: 23414 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 2 + - uid: 23415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-17.5 + parent: 2 + - uid: 23416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-21.5 + parent: 2 + - uid: 23417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-33.5 + parent: 2 + - uid: 23418 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 2 + - uid: 23419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-31.5 + parent: 2 + - uid: 23420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-36.5 + parent: 2 + - uid: 23421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-36.5 + parent: 2 + - uid: 23422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-39.5 + parent: 2 + - uid: 23423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-42.5 + parent: 2 + - uid: 23424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-45.5 + parent: 2 + - uid: 23425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-48.5 + parent: 2 + - uid: 23426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-48.5 + parent: 2 + - uid: 23427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-45.5 + parent: 2 + - uid: 23428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-42.5 + parent: 2 + - uid: 23429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-39.5 + parent: 2 + - uid: 23430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-42.5 + parent: 2 + - uid: 23431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-42.5 + parent: 2 + - uid: 23432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-51.5 + parent: 2 + - uid: 23433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-52.5 + parent: 2 + - uid: 23434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-47.5 + parent: 2 +- proto: WindoorSecureSecurityLawyerLocked + entities: + - uid: 23435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,15.5 + parent: 2 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 23438 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - uid: 23439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,27.5 + parent: 2 + - uid: 23440 + components: + - type: Transform + pos: -19.5,26.5 + parent: 2 + - uid: 23441 + components: + - type: Transform + pos: -20.5,26.5 + parent: 2 + - uid: 23442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1214 + - uid: 23443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1216 + - uid: 23444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1215 + - uid: 23445 + components: + - type: Transform + pos: -7.5,25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1215 + - uid: 23446 + components: + - type: Transform + pos: -6.5,30.5 + parent: 2 + - uid: 23447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,32.5 + parent: 2 + - uid: 23448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,33.5 + parent: 2 + - uid: 23449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,33.5 + parent: 2 + - uid: 23450 + components: + - type: Transform + pos: -30.5,25.5 + parent: 2 + - uid: 23451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,20.5 + parent: 2 + - uid: 23452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-19.5 + parent: 2 + - uid: 23453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-49.5 + parent: 2 +- proto: WindoorServiceLocked + entities: + - uid: 23454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,20.5 + parent: 2 +- proto: Window + entities: + - uid: 8730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,13.5 + parent: 2 + - uid: 22680 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 + - uid: 23455 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - uid: 23456 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 23457 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 23458 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 23459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,2.5 + parent: 2 + - uid: 23460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 2 + - uid: 23461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 2 + - uid: 23462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 2 + - uid: 23463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,13.5 + parent: 2 + - uid: 23464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,13.5 + parent: 2 + - uid: 23465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,13.5 + parent: 2 + - uid: 23466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,13.5 + parent: 2 + - uid: 23468 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - uid: 23469 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 23470 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - uid: 23471 + components: + - type: Transform + pos: -31.5,-3.5 + parent: 2 + - uid: 23472 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 2 + - uid: 23473 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 2 + - uid: 23474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-16.5 + parent: 2 + - uid: 23475 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 2 + - uid: 23476 + components: + - type: Transform + pos: -21.5,-25.5 + parent: 2 + - uid: 23477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-48.5 + parent: 2 + - uid: 23478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-46.5 + parent: 2 + - uid: 23479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-1.5 + parent: 2 + - uid: 23480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-1.5 + parent: 2 + - uid: 23481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,0.5 + parent: 2 + - uid: 23482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,1.5 + parent: 2 + - uid: 23483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,2.5 + parent: 2 + - uid: 23484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,3.5 + parent: 2 + - uid: 23485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,3.5 + parent: 2 + - uid: 23486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,3.5 + parent: 2 + - uid: 23487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,6.5 + parent: 2 + - uid: 23488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,8.5 + parent: 2 + - uid: 23490 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 + - uid: 23491 + components: + - type: Transform + pos: 33.5,12.5 + parent: 2 + - uid: 23492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,21.5 + parent: 2 + - uid: 23493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,21.5 + parent: 2 + - uid: 23494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,17.5 + parent: 2 + - uid: 23495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,22.5 + parent: 2 + - uid: 23496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,24.5 + parent: 2 + - uid: 23497 + components: + - type: Transform + pos: 26.5,30.5 + parent: 2 + - uid: 23498 + components: + - type: Transform + pos: 26.5,32.5 + parent: 2 + - uid: 23499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-20.5 + parent: 2 + - uid: 23500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-21.5 + parent: 2 + - uid: 23501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-22.5 + parent: 2 + - uid: 23502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-23.5 + parent: 2 + - uid: 23503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-25.5 + parent: 2 + - uid: 23504 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 2 + - uid: 23505 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 2 + - uid: 23506 + components: + - type: Transform + pos: 29.5,-28.5 + parent: 2 + - uid: 23507 + components: + - type: Transform + pos: 29.5,-29.5 + parent: 2 + - uid: 23508 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 2 + - uid: 23509 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 2 + - uid: 23510 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 2 + - uid: 23511 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 2 + - uid: 23512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-17.5 + parent: 2 + - uid: 23513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-19.5 + parent: 2 +- proto: WindowDirectional + entities: + - uid: 23514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,4.5 + parent: 2 + - uid: 23515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,5.5 + parent: 2 + - uid: 23516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,5.5 + parent: 2 + - uid: 23517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,4.5 + parent: 2 + - uid: 23518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,4.5 + parent: 2 + - uid: 23519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,5.5 + parent: 2 + - uid: 23520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,5.5 + parent: 2 + - uid: 23521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,4.5 + parent: 2 + - uid: 23522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,4.5 + parent: 2 + - uid: 23523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,5.5 + parent: 2 + - uid: 23524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,4.5 + parent: 2 + - uid: 23525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,5.5 + parent: 2 + - uid: 23526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,1.5 + parent: 2 + - uid: 23527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,1.5 + parent: 2 + - uid: 23528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,26.5 + parent: 2 + - uid: 23529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,26.5 + parent: 2 + - uid: 23530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,26.5 + parent: 2 + - uid: 23531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,26.5 + parent: 2 + - uid: 23532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,30.5 + parent: 2 + - uid: 23533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,30.5 + parent: 2 + - uid: 23534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,30.5 + parent: 2 + - uid: 23535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,30.5 + parent: 2 + - uid: 23536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,40.5 + parent: 2 + - uid: 23537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,38.5 + parent: 2 + - uid: 23538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,30.5 + parent: 2 + - uid: 23539 + components: + - type: Transform + pos: -30.5,37.5 + parent: 2 + - uid: 23540 + components: + - type: Transform + pos: -28.5,37.5 + parent: 2 + - uid: 23541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,38.5 + parent: 2 + - uid: 23542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,38.5 + parent: 2 + - uid: 23543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,38.5 + parent: 2 + - uid: 23544 + components: + - type: Transform + pos: -3.5,39.5 + parent: 2 + - uid: 23545 + components: + - type: Transform + pos: -4.5,39.5 + parent: 2 + - uid: 23546 + components: + - type: Transform + pos: -5.5,39.5 + parent: 2 + - uid: 23547 + components: + - type: Transform + pos: 43.5,-21.5 + parent: 2 + - uid: 23548 + components: + - type: Transform + pos: 45.5,-21.5 + parent: 2 + - uid: 23549 + components: + - type: Transform + pos: 46.5,-21.5 + parent: 2 + - uid: 23550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-34.5 + parent: 2 + - uid: 23551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-34.5 + parent: 2 + - uid: 23552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-34.5 + parent: 2 + - uid: 23553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-27.5 + parent: 2 + - uid: 23554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-32.5 + parent: 2 + - uid: 23555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-30.5 + parent: 2 + - uid: 23556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-23.5 + parent: 2 + - uid: 23557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-23.5 + parent: 2 + - uid: 23558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-23.5 + parent: 2 + - uid: 23559 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 2 + - uid: 23560 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 2 + - uid: 23561 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 2 + - uid: 23562 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 2 + - uid: 23563 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 2 + - uid: 23564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-23.5 + parent: 2 + - uid: 23565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-23.5 + parent: 2 + - uid: 23566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-27.5 + parent: 2 + - uid: 23567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-27.5 + parent: 2 + - uid: 23568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-27.5 + parent: 2 + - uid: 23569 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 23570 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 + - uid: 23571 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 2 + - uid: 23572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-20.5 + parent: 2 + - uid: 23573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-21.5 + parent: 2 + - uid: 23574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-22.5 + parent: 2 + - uid: 23575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,21.5 + parent: 2 + - uid: 23576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,21.5 + parent: 2 + - uid: 23577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,21.5 + parent: 2 + - uid: 23578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,21.5 + parent: 2 +- proto: WindowFrostedDirectional + entities: + - uid: 23579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,85.5 + parent: 2 + - uid: 23580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,74.5 + parent: 2 + - uid: 23581 + components: + - type: Transform + pos: -1.5,80.5 + parent: 2 + - uid: 23582 + components: + - type: Transform + pos: 4.5,80.5 + parent: 2 + - uid: 23583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,74.5 + parent: 2 +- proto: WindowReinforcedDirectional + entities: + - uid: 16299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-69.5 + parent: 2 + - uid: 16300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-68.5 + parent: 2 + - uid: 16301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-70.5 + parent: 2 + - uid: 16302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-70.5 + parent: 2 + - uid: 16303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-69.5 + parent: 2 + - uid: 16304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-68.5 + parent: 2 + - uid: 23584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 2 + - uid: 23585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 2 + - uid: 23586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 2 + - uid: 23587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 2 + - uid: 23588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 2 + - uid: 23589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 2 + - uid: 23590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 2 + - uid: 23591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 2 + - uid: 23592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + - uid: 23593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 2 + - uid: 23594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 2 + - uid: 23595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 2 + - uid: 23596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 2 + - uid: 23597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 2 + - uid: 23598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-8.5 + parent: 2 + - uid: 23599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 2 + - uid: 23600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 2 + - uid: 23601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 2 + - uid: 23602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 2 + - uid: 23603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 2 + - uid: 23604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 2 + - uid: 23605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 2 + - uid: 23606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 2 + - uid: 23607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 2 + - uid: 23608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 2 + - uid: 23609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 2 + - uid: 23610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-3.5 + parent: 2 + - uid: 23611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 2 + - uid: 23612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 2 + - uid: 23613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 2 + - uid: 23614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,3.5 + parent: 2 + - uid: 23615 + components: + - type: Transform + pos: -7.5,4.5 + parent: 2 + - uid: 23616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 2 + - uid: 23617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,5.5 + parent: 2 + - uid: 23618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,6.5 + parent: 2 + - uid: 23619 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 23620 + components: + - type: Transform + pos: -5.5,7.5 + parent: 2 + - uid: 23621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 2 + - uid: 23622 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 23623 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 23624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 2 + - uid: 23625 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 + - uid: 23626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 2 + - uid: 23627 + components: + - type: Transform + pos: -1.5,10.5 + parent: 2 + - uid: 23628 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 23629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 2 + - uid: 23630 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - uid: 23631 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 23632 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 23633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 2 + - uid: 23634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,7.5 + parent: 2 + - uid: 23635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,7.5 + parent: 2 + - uid: 23636 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 23637 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 23638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 2 + - uid: 23639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 2 + - uid: 23640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 2 + - uid: 23641 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 + - uid: 23642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,3.5 + parent: 2 + - uid: 23643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,14.5 + parent: 2 + - uid: 23644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,14.5 + parent: 2 + - uid: 23645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,16.5 + parent: 2 + - uid: 23646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,16.5 + parent: 2 + - uid: 23647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,14.5 + parent: 2 + - uid: 23648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,10.5 + parent: 2 + - uid: 23649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,10.5 + parent: 2 + - uid: 23650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,10.5 + parent: 2 + - uid: 23651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,10.5 + parent: 2 + - uid: 23652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-2.5 + parent: 2 + - uid: 23653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-2.5 + parent: 2 + - uid: 23654 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 23655 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 23656 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 2 + - uid: 23657 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 2 + - uid: 23658 + components: + - type: Transform + pos: -35.5,11.5 + parent: 2 + - uid: 23659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,6.5 + parent: 2 + - uid: 23660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,8.5 + parent: 2 + - uid: 23661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,8.5 + parent: 2 + - uid: 23662 + components: + - type: Transform + pos: -36.5,8.5 + parent: 2 + - uid: 23663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,15.5 + parent: 2 + - uid: 23664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,15.5 + parent: 2 + - uid: 23665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,15.5 + parent: 2 + - uid: 23666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-25.5 + parent: 2 + - uid: 23667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-25.5 + parent: 2 + - uid: 23668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-35.5 + parent: 2 + - uid: 23669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-33.5 + parent: 2 + - uid: 23670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-35.5 + parent: 2 + - uid: 23671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-16.5 + parent: 2 + - uid: 23672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-16.5 + parent: 2 + - uid: 23673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-18.5 + parent: 2 + - uid: 23674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-20.5 + parent: 2 + - uid: 23675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-20.5 + parent: 2 + - uid: 23676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-24.5 + parent: 2 + - uid: 23677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-24.5 + parent: 2 + - uid: 23678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-34.5 + parent: 2 + - uid: 23679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-34.5 + parent: 2 + - uid: 23680 + components: + - type: Transform + pos: -13.5,-35.5 + parent: 2 + - uid: 23681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-37.5 + parent: 2 + - uid: 23682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-37.5 + parent: 2 + - uid: 23683 + components: + - type: Transform + pos: -15.5,-37.5 + parent: 2 + - uid: 23684 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 2 + - uid: 23685 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 2 + - uid: 23686 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 2 + - uid: 23687 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 2 + - uid: 23688 + components: + - type: Transform + pos: -15.5,-40.5 + parent: 2 + - uid: 23689 + components: + - type: Transform + pos: -17.5,-43.5 + parent: 2 + - uid: 23690 + components: + - type: Transform + pos: -16.5,-43.5 + parent: 2 + - uid: 23691 + components: + - type: Transform + pos: -15.5,-43.5 + parent: 2 + - uid: 23692 + components: + - type: Transform + pos: -17.5,-46.5 + parent: 2 + - uid: 23693 + components: + - type: Transform + pos: -16.5,-46.5 + parent: 2 + - uid: 23694 + components: + - type: Transform + pos: -15.5,-46.5 + parent: 2 + - uid: 23695 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 2 + - uid: 23696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-40.5 + parent: 2 + - uid: 23697 + components: + - type: Transform + pos: -13.5,-41.5 + parent: 2 + - uid: 23698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-43.5 + parent: 2 + - uid: 23699 + components: + - type: Transform + pos: -13.5,-44.5 + parent: 2 + - uid: 23700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-46.5 + parent: 2 + - uid: 23701 + components: + - type: Transform + pos: -13.5,-47.5 + parent: 2 + - uid: 23702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-49.5 + parent: 2 + - uid: 23703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-39.5 + parent: 2 + - uid: 23704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-40.5 + parent: 2 + - uid: 23705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-41.5 + parent: 2 + - uid: 23706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-43.5 + parent: 2 + - uid: 23707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-44.5 + parent: 2 + - uid: 23708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-45.5 + parent: 2 + - uid: 23709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-29.5 + parent: 2 + - uid: 23710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-30.5 + parent: 2 + - uid: 23711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-29.5 + parent: 2 + - uid: 23712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-30.5 + parent: 2 + - uid: 23713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-45.5 + parent: 2 + - uid: 23714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-45.5 + parent: 2 + - uid: 23715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-45.5 + parent: 2 + - uid: 23716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,12.5 + parent: 2 + - uid: 23717 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 23718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,23.5 + parent: 2 + - uid: 23719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 2 + - uid: 23720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-8.5 + parent: 2 + - uid: 23721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-7.5 + parent: 2 + - uid: 23722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-6.5 + parent: 2 + - uid: 23723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-6.5 + parent: 2 + - uid: 23724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-6.5 + parent: 2 + - uid: 23725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-7.5 + parent: 2 + - uid: 23726 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 23727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 2 + - uid: 23728 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 2 + - uid: 23729 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 2 + - uid: 23730 + components: + - type: Transform + pos: 38.5,-8.5 + parent: 2 + - uid: 23731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-7.5 + parent: 2 + - uid: 23732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-7.5 + parent: 2 + - uid: 23733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-7.5 + parent: 2 + - uid: 23734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-6.5 + parent: 2 + - uid: 23735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-6.5 + parent: 2 + - uid: 23736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-6.5 + parent: 2 + - uid: 23737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-6.5 + parent: 2 + - uid: 23738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-7.5 + parent: 2 + - uid: 23739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-8.5 + parent: 2 + - uid: 23740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-9.5 + parent: 2 + - uid: 23741 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 2 + - uid: 23742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-9.5 + parent: 2 + - uid: 23743 + components: + - type: Transform + pos: 40.5,-8.5 + parent: 2 + - uid: 23744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 2 + - uid: 23745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 2 + - uid: 23746 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 2 + - uid: 23747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-2.5 + parent: 2 + - uid: 23748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 2 + - uid: 23749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-3.5 + parent: 2 + - uid: 23750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-2.5 + parent: 2 + - uid: 23751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,32.5 + parent: 2 + - uid: 23752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,34.5 + parent: 2 + - uid: 23753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,32.5 + parent: 2 + - uid: 23754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,34.5 + parent: 2 + - uid: 23755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,26.5 + parent: 2 + - uid: 23756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,25.5 + parent: 2 + - uid: 23757 + components: + - type: Transform + pos: -31.5,25.5 + parent: 2 + - uid: 23758 + components: + - type: Transform + pos: -29.5,25.5 + parent: 2 + - uid: 23759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,19.5 + parent: 2 + - uid: 23760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,21.5 + parent: 2 + - uid: 23761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,22.5 + parent: 2 + - uid: 23762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,32.5 + parent: 2 + - uid: 23763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,31.5 + parent: 2 + - uid: 23764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,30.5 + parent: 2 + - uid: 23765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,44.5 + parent: 2 + - uid: 23766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,44.5 + parent: 2 + - uid: 23767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,52.5 + parent: 2 + - uid: 23768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,53.5 + parent: 2 + - uid: 23769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,53.5 + parent: 2 + - uid: 23770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,53.5 + parent: 2 + - uid: 23771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,53.5 + parent: 2 + - uid: 23772 + components: + - type: Transform + pos: 3.5,47.5 + parent: 2 + - uid: 23773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,49.5 + parent: 2 + - uid: 23774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,49.5 + parent: 2 + - uid: 23775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,48.5 + parent: 2 + - uid: 23776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,47.5 + parent: 2 + - uid: 23777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,47.5 + parent: 2 + - uid: 23778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,48.5 + parent: 2 + - uid: 23779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,49.5 + parent: 2 + - uid: 23780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,56.5 + parent: 2 + - uid: 23781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,55.5 + parent: 2 + - uid: 23782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,56.5 + parent: 2 + - uid: 23783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,55.5 + parent: 2 + - uid: 23784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,62.5 + parent: 2 + - uid: 23785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,62.5 + parent: 2 + - uid: 23786 + components: + - type: Transform + pos: 6.5,62.5 + parent: 2 + - uid: 23787 + components: + - type: Transform + pos: -4.5,62.5 + parent: 2 + - uid: 23788 + components: + - type: Transform + pos: -4.5,68.5 + parent: 2 + - uid: 23789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,68.5 + parent: 2 + - uid: 23790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,68.5 + parent: 2 + - uid: 23791 + components: + - type: Transform + pos: 6.5,68.5 + parent: 2 + - uid: 23792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,69.5 + parent: 2 + - uid: 23793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,69.5 + parent: 2 + - uid: 23794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,72.5 + parent: 2 + - uid: 23795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,72.5 + parent: 2 + - uid: 23796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-20.5 + parent: 2 + - uid: 23797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-18.5 + parent: 2 + - uid: 23798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-18.5 + parent: 2 + - uid: 23799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-29.5 + parent: 2 + - uid: 23800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-29.5 + parent: 2 + - uid: 23801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-29.5 + parent: 2 + - uid: 23802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-26.5 + parent: 2 + - uid: 23803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-25.5 + parent: 2 + - uid: 23804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-25.5 + parent: 2 + - uid: 23805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-25.5 + parent: 2 + - uid: 23806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-26.5 + parent: 2 + - uid: 23807 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 2 + - uid: 23808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-32.5 + parent: 2 + - uid: 23809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-44.5 + parent: 2 + - uid: 23810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,27.5 + parent: 2 + - uid: 23811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,26.5 + parent: 2 + - uid: 23812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,25.5 + parent: 2 + - uid: 23813 + components: + - type: Transform + pos: 6.5,25.5 + parent: 2 + - uid: 23814 + components: + - type: Transform + pos: 7.5,25.5 + parent: 2 + - uid: 23815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-50.5 + parent: 2 + - uid: 23816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-51.5 + parent: 2 + - uid: 23817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-49.5 + parent: 2 +- proto: Wirecutter + entities: + - uid: 23818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.453682,-50.61966 + parent: 2 + - uid: 23819 + components: + - type: Transform + pos: 29.551594,-34.526207 + parent: 2 +- proto: WoodDoor + entities: + - uid: 23820 + components: + - type: Transform + pos: 20.5,41.5 + parent: 2 + - uid: 23821 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 2 + - uid: 23822 + components: + - type: Transform + pos: 18.5,35.5 + parent: 2 + - uid: 23823 + components: + - type: Transform + pos: -23.5,-65.5 + parent: 2 + - uid: 23824 + components: + - type: Transform + pos: -25.5,-65.5 + parent: 2 +- proto: Wrench + entities: + - uid: 23825 + components: + - type: Transform + pos: 4.518403,14.99651 + parent: 2 + - uid: 23826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.445876,-12.574354 + parent: 2 + - uid: 23827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.36044,-50.650738 + parent: 2 + - uid: 23828 + components: + - type: Transform + pos: 24.5243,-10.427906 + parent: 2 + - uid: 23829 + components: + - type: Transform + pos: 43.49371,-18.25883 + parent: 2 + - uid: 23830 + components: + - type: Transform + pos: -5.615103,80.51257 + parent: 2 + - uid: 23831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5839,-32.279396 + parent: 2 + - uid: 23832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.46088,-56.46564 + parent: 2 + - uid: 23833 + components: + - type: Transform + pos: -7.502454,-66.131325 + parent: 2 +- proto: Zipties + entities: + - uid: 8828 + components: + - type: Transform + parent: 8823 + - type: Physics + angularDamping: 0 + linearDamping: 0 + canCollide: False + - type: InsideEntityStorage + - uid: 23834 + components: + - type: Transform + pos: 46.49661,-29.494585 + parent: 2 + - uid: 23835 + components: + - type: Transform + pos: 46.390938,-29.618904 + parent: 2 + - uid: 23836 + components: + - type: Transform + pos: 46.602283,-29.364048 + parent: 2 +... diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index 33961b5acf..35a401a474 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -74072,13 +74072,6 @@ entities: - type: Transform pos: -13.373716,18.332554 parent: 31 -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 1423 - components: - - type: Transform - pos: -8.457573,20.768534 - parent: 31 - proto: WeaponWaterBlaster entities: - uid: 8127 diff --git a/Resources/Maps/shoukou.yml b/Resources/Maps/shoukou.yml index afd78ab15e..6c47a6e31a 100644 --- a/Resources/Maps/shoukou.yml +++ b/Resources/Maps/shoukou.yml @@ -29615,13 +29615,6 @@ entities: - type: Transform pos: 37.28408,-33.635246 parent: 34 -- proto: ClothingBeltKatanaSheathFilled - entities: - - uid: 11721 - components: - - type: Transform - pos: 39.44033,-33.510246 - parent: 34 - proto: ClothingBeltMartialBlack entities: - uid: 143 diff --git a/Resources/Maps/submarine.yml b/Resources/Maps/submarine.yml index f517f5a5ab..cabb1ff29f 100644 --- a/Resources/Maps/submarine.yml +++ b/Resources/Maps/submarine.yml @@ -173681,7 +173681,6 @@ entities: occludes: True ents: - 22261 - - 22260 - 22262 - 22263 paper_label: !type:ContainerSlot @@ -241045,15 +241044,6 @@ entities: - type: Transform pos: -11.293884,37.834354 parent: 2 -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 22260 - components: - - type: Transform - parent: 30282 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: WeaponTurretHostile entities: - uid: 9161 diff --git a/Resources/Maps/tortuga.yml b/Resources/Maps/tortuga.yml index 399a06a400..cb638de033 100644 --- a/Resources/Maps/tortuga.yml +++ b/Resources/Maps/tortuga.yml @@ -153158,7 +153158,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null diff --git a/Resources/Migrations/frontierMigrations.yml b/Resources/Migrations/frontierMigrations.yml new file mode 100644 index 0000000000..e8d607494e --- /dev/null +++ b/Resources/Migrations/frontierMigrations.yml @@ -0,0 +1,2 @@ +# 2024-08-22 - Frontier Mail - Add more to these when they come up as mapped. Part of the Frontier Mail port, blame Tortuga. +MailPAI: MailNFPAI diff --git a/Resources/Migrations/migration.yml b/Resources/Migrations/migration.yml index 7f19699ad8..2321aeabc1 100644 --- a/Resources/Migrations/migration.yml +++ b/Resources/Migrations/migration.yml @@ -126,28 +126,6 @@ DrinkGoldschlagerGlass: DrinkGildlagerGlass ClosetBase: ClosetSteelBase MonkeyCubeBox: VariantCubeBox -# 2024-01-08 -SalvagePartsT4Spawner: SalvageLootSpawner -SalvagePartsT3Spawner: SalvageLootSpawner -SalvagePartsT3T4Spawner: SalvageLootSpawner -SalvagePartsT2Spawner: SalvageLootSpawner -AdvancedCapacitorStockPart: CapacitorStockPart -SuperCapacitorStockPart: CapacitorStockPart -QuadraticCapacitorStockPart: CapacitorStockPart -NanoManipulatorStockPart: MicroManipulatorStockPart -PicoManipulatorStockPart: MicroManipulatorStockPart -FemtoManipulatorStockPart: MicroManipulatorStockPart -AdvancedMatterBinStockPart: MatterBinStockPart -SuperMatterBinStockPart: MatterBinStockPart -BluespaceMatterBinStockPart: MatterBinStockPart -AnsibleSubspaceStockPart: null -FilterSubspaceStockPart: null -AmplifierSubspaceStockPart: null -TreatmentSubspaceStockPart: null -AnalyzerSubspaceStockPart: null -CrystalSubspaceStockPart: null -TransmitterSubspaceStockPart: null - # 2024-01-10 ClothingHeadHatHoodRad: null @@ -182,7 +160,7 @@ ActionVehicleHorn: null CrateFunATV: null CrateFunSyndicateSegway: null MobTaxiBot: null -MobSupplyBot: null +# MobSupplyBot: null SpawnVehicleMotobike: null SpawnVehicleATV: null SpawnVehicleSecway: null @@ -234,6 +212,8 @@ AirlockShuttleEasyPryLocked: AirlockExternalShuttleLocked ClothingBackpackFilledDetective: ClothingBackpackSecurityFilledDetective ClothingBackpackDuffelFilledDetective: ClothingBackpackDuffelSecurityFilledDetective ClothingBackpackSatchelFilledDetective: ClothingBackpackSatchelSecurityFilledDetective +FoodChili: FoodChiliPepper +FoodChilly: FoodChillyPepper # 2024-03-16 ClothingHeadHatHairflower: FoodPoppy @@ -242,6 +222,8 @@ ClothingHeadHatHairflower: FoodPoppy RPED: null # 2024-03-30 +TraversalDistorterMachineCircuitboard: null +MachineTraversalDistorter: null # These are technically not equivalent, but it probably makes more sense to replace any existing SCAF stuff with SOME kind of armor, instead of just deleting it outright. ClothingHeadHelmetScaf: ClothingHeadHelmetBasic ClothingOuterArmorScaf: ClothingOuterArmorBasic @@ -254,3 +236,21 @@ BriefcaseSyndieBase: null # 2024-04-08 BodyBag_Container: BodyBag BodyBag_Folded: BodyBagFolded + +# 2024-04-26 +GlassBoxLaserBroken: GlassBoxBroken +ReinforcementRadioSyndicateMonkey: ReinforcementRadioSyndicateAncestor +ReinforcementRadioSyndicateMonkeyNukeops: ReinforcementRadioSyndicateAncestorNukeops + +# 2024-05-01 +DrinkBottleGoldschlager: DrinkBottleGildlager + +# 2024-11-10 WD EDIT +VendingMachinePride: RandomVending + +# 2024-30-10 WD EDIT +HoloprojectorEmpty: Holoprojector +HoloprojectorBorg: Holoprojector +HolofanProjectorEmpty: HolofanProjector +HoloprojectorFieldEmpty: HoloprojectorField +HoloprojectorSecurityEmpty: HoloprojectorSecurity \ No newline at end of file diff --git a/Resources/Prototypes/Accents/word_replacements.yml b/Resources/Prototypes/Accents/word_replacements.yml index a5269924f7..cb4cdf0683 100644 --- a/Resources/Prototypes/Accents/word_replacements.yml +++ b/Resources/Prototypes/Accents/word_replacements.yml @@ -425,3 +425,50 @@ chatsan-word-42: chatsan-replacement-42 chatsan-word-43: chatsan-replacement-43 chatsan-word-44: chatsan-replacement-44 + +- type: accent + id: liar + wordReplacements: + liar-word-1: liar-word-replacement-1 + liar-word-2: liar-word-replacement-2 + liar-word-3: liar-word-replacement-3 + liar-word-4: liar-word-replacement-4 + liar-word-5: liar-word-replacement-5 + liar-word-6: liar-word-replacement-6 + liar-word-7: liar-word-replacement-7 + liar-word-8: liar-word-replacement-8 + liar-word-9: liar-word-replacement-9 + liar-word-10: liar-word-replacement-10 + liar-word-11: liar-word-replacement-11 + liar-word-12: liar-word-replacement-12 + liar-word-13: liar-word-replacement-13 + liar-word-14: liar-word-replacement-14 + liar-word-15: liar-word-replacement-15 + liar-word-16: liar-word-replacement-16 + liar-word-17: liar-word-replacement-17 + liar-word-18: liar-word-replacement-18 + liar-word-19: liar-word-replacement-19 + liar-word-20: liar-word-replacement-20 + liar-word-21: liar-word-replacement-21 + liar-word-22: liar-word-replacement-22 + liar-word-23: liar-word-replacement-23 + liar-word-24: liar-word-replacement-24 + liar-word-25: liar-word-replacement-25 + liar-word-26: liar-word-replacement-26 + liar-word-27: liar-word-replacement-27 + liar-word-28: liar-word-replacement-28 + liar-word-29: liar-word-replacement-29 + liar-word-30: liar-word-replacement-30 + liar-word-31: liar-word-replacement-31 + liar-word-32: liar-word-replacement-32 + liar-word-33: liar-word-replacement-33 + liar-word-34: liar-word-replacement-34 + liar-word-34-2: liar-word-replacement-34 + liar-word-35: liar-word-replacement-35 + liar-word-36: liar-word-replacement-36 + liar-word-37: liar-word-replacement-37 + liar-word-38: liar-word-replacement-38 + liar-word-39: liar-word-replacement-39 + liar-word-40: liar-word-replacement-40 + liar-word-41: liar-word-replacement-41 + liar-word-42: liar-word-replacement-42 \ No newline at end of file diff --git a/Resources/Prototypes/Access/security.yml b/Resources/Prototypes/Access/security.yml index cfb6e60060..b64424d855 100644 --- a/Resources/Prototypes/Access/security.yml +++ b/Resources/Prototypes/Access/security.yml @@ -10,10 +10,9 @@ id: Armory name: id-card-access-level-armory -# Delta V: Removes Brig access because redundant -#- type: accessLevel -# id: Brig -# name: id-card-access-level-brig +- type: accessLevel + id: Brig + name: id-card-access-level-brig - type: accessLevel id: Detective @@ -25,14 +24,14 @@ - HeadOfSecurity - Security - Armory - #- Brig #Delta V removed + - Brig - Detective - Cryogenics - - Corpsman # DeltaV - add Corpsman access + - Corpsman - type: accessGroup id: Armory tags: - Security - Armory - # Brig #Delta V removed + - Brig diff --git a/Resources/Prototypes/Actions/polymorph.yml b/Resources/Prototypes/Actions/polymorph.yml index 7472fc0062..445dc8d9f5 100644 --- a/Resources/Prototypes/Actions/polymorph.yml +++ b/Resources/Prototypes/Actions/polymorph.yml @@ -14,3 +14,33 @@ - type: InstantAction event: !type:PolymorphActionEvent itemIconStyle: NoItem + +- type: entity + id: ActionPolymorphWizardSpider + name: Spider Polymorph + description: Polymorphs you into a Spider. + noSpawn: true + components: + - type: InstantAction + useDelay: 60 + event: !type:PolymorphActionEvent + protoId: WizardSpider + itemIconStyle: NoItem + icon: + sprite: Mobs/Animals/spider.rsi + state: tarantula + +- type: entity + id: ActionPolymorphWizardRod + name: Rod Form + description: CLANG! + noSpawn: true + components: + - type: InstantAction + useDelay: 60 + event: !type:PolymorphActionEvent + protoId: WizardRod + itemIconStyle: NoItem + icon: + sprite: Objects/Fun/immovable_rod.rsi + state: icon diff --git a/Resources/Prototypes/Actions/psionics.yml b/Resources/Prototypes/Actions/psionics.yml index 981d53884e..138823313a 100644 --- a/Resources/Prototypes/Actions/psionics.yml +++ b/Resources/Prototypes/Actions/psionics.yml @@ -146,3 +146,147 @@ icon: Interface/VerbIcons/psionic_invisibility_off.png event: !type:RemovePsionicInvisibilityOffPowerActionEvent +- type: entity + id: ActionHealingWord + name: action-name-healing-word + description: action-description-healing-word + noSpawn: true + components: + - type: EntityTargetAction + icon: { sprite : Interface/Actions/psionics.rsi, state: healing_word } + useDelay: 10 + checkCanAccess: false + range: 6 + itemIconStyle: BigAction + canTargetSelf: true + blacklist: + components: + - PsionicInsulation + - Mindbroken + event: !type:PsionicHealOtherPowerActionEvent + healingAmount: + groups: # These all get divided by the number of damage types in the group. So they're all -2.5. + Genetic: -2.5 + Toxin: -5 + Airloss: -5 + Brute: -7.5 + Burn: -10 + rotReduction: 10 + useDelay: 1 + doRevive: true + powerName: Healing Word + popupText: healing-word-begin + playSound: true + minGlimmer: 2 + maxGlimmer: 4 + glimmerSoundThreshold: 100 + glimmerPopupThreshold: 200 + glimmerDoAfterVisibilityThreshold: 70 + +- type: entity + id: ActionRevivify + name: action-name-revivify + description: action-description-revivify + noSpawn: true + components: + - type: EntityTargetAction + icon: { sprite : Interface/Actions/psionics.rsi, state: revivify } + useDelay: 120 + checkCanAccess: false + range: 2 + itemIconStyle: BigAction + canTargetSelf: false + blacklist: + components: + - PsionicInsulation + - Mindbroken + event: !type:PsionicHealOtherPowerActionEvent + healingAmount: + # These all get divided by the number of damage types in the group. So they're all -15 + # Additionally, they're multiplied by the caster's Amplification, which, + # assuming this is the only power they have, the multiplier is between 2.9-3.9 + groups: + Genetic: -15 + Toxin: -30 + Airloss: -60 # Except airloss, which heals 30 per type + Brute: -45 + Burn: -60 + rotReduction: 60 + doRevive: true + powerName: Revivify + popupText: revivify-begin + playSound: true + minGlimmer: 10 # These also get multiplied by caster stats. So, + maxGlimmer: 15 # keeping in mind the ~3.5x multiplier, this spikes glimmer by as much as 60 points. + glimmerSoundThreshold: 50 + glimmerPopupThreshold: 100 + glimmerDoAfterVisibilityThreshold: 35 + +- type: entity + id: ActionShadeskip + name: action-name-shadeskip + description: action-description-shadeskip + noSpawn: true + components: + - type: InstantAction + icon: { sprite : Interface/Actions/psionics.rsi, state: shadeskip } + useDelay: 45 + checkCanInteract: false + event: !type:AnomalyPowerActionEvent + settings: + powerName: "Shadeskip" + minGlimmer: 6 + maxGlimmer: 8 + glimmerSoundThreshold: 50 + doSupercritical: false + entitySpawnEntries: + - settings: + spawnOnPulse: true + spawnOnSuperCritical: true + minAmount: 5 + maxAmount: 8 + maxRange: 1.5 + spawns: + - ShadowKudzuWeak + - settings: + spawnOnPulse: true + spawnOnSuperCritical: true + minAmount: 1 + maxAmount: 1 + maxRange: 0.5 + spawns: + - EffectFlashShadeskip + +- type: entity + id: ActionTelekineticPulse + name: action-name-telekinetic-pulse + description: action-description-telekinetic-pulse + noSpawn: true + components: + - type: InstantAction + icon: { sprite : Interface/Actions/psionics.rsi, state: telekinetic_pulse } + useDelay: 45 + checkCanInteract: false + event: !type:AnomalyPowerActionEvent + settings: + powerName: "Telekinetic Pulse" + overchargeFeedback: "shadeskip-overcharge-feedback" # The text behind this is fine. + overchargeCooldown: 120 + overchargeRecoil: + groups: + Burn: -100 #This will be divided by the caster's Dampening. + minGlimmer: 6 + maxGlimmer: 8 + doSupercritical: false + entitySpawnEntries: + - settings: + spawnOnPulse: true + minAmount: 1 + maxAmount: 1 + maxRange: 0.5 + spawns: + - EffectFlashTelekineticPulse + gravity: + maxThrowRange: 3 + maxThrowStrength: 5 + spaceRange: 3 diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index 4f86447d3a..350f319588 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -54,7 +54,7 @@ itemIconStyle: BigAction priority: -20 icon: - sprite: _White/Clothing/Back/Backpacks/backpack.rsi #WWDP edit + sprite: Clothing/Back/Backpacks/backpack.rsi state: icon event: !type:OpenStorageImplantEvent @@ -92,7 +92,6 @@ state: gib event: !type:ActivateImplantEvent - - type: entity id: ActionActivateFreedomImplant name: Break Free @@ -130,6 +129,7 @@ noSpawn: true components: - type: InstantAction + checkCanInteract: false charges: 3 useDelay: 5 itemIconStyle: BigAction @@ -171,6 +171,21 @@ state: icon event: !type:UseDnaScramblerImplantEvent +- type: entity + id: ActionMorphGeras + 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. + noSpawn: true + components: + - type: InstantAction + itemIconStyle: BigAction + useDelay: 10 # prevent spam + priority: -20 + icon: + sprite: Mobs/Aliens/slimes.rsi + state: blue_adult_slime + event: !type:MorphIntoGeras + - type: entity id: ActionToggleSuitPiece name: Toggle Suit Piece diff --git a/Resources/Prototypes/AlertLevels/alert_levels.yml b/Resources/Prototypes/AlertLevels/alert_levels.yml index 5a8cb2dd12..db15dc1388 100644 --- a/Resources/Prototypes/AlertLevels/alert_levels.yml +++ b/Resources/Prototypes/AlertLevels/alert_levels.yml @@ -5,18 +5,22 @@ green: announcement: alert-level-green-announcement color: Green + emergencyLightColor: LawnGreen sound: /Audio/Announcements/Alerts/code_green.ogg shuttleTime: 600 blue: announcement: alert-level-blue-announcement sound: /Audio/Announcements/Alerts/code_blue.ogg color: DodgerBlue + forceEnableEmergencyLights: true + emergencyLightColor: DodgerBlue shuttleTime: 600 violet: announcement: alert-level-violet-announcement sound: /Audio/Announcements/Alerts/code_violet.ogg color: Violet emergencyLightColor: Violet + forceEnableEmergencyLights: true shuttleTime: 600 white: announcement: alert-level-white-announcement @@ -29,11 +33,14 @@ sound: /Audio/Announcements/Alerts/code_yellow.ogg color: Yellow emergencyLightColor: Goldenrod + forceEnableEmergencyLights: true shuttleTime: 600 red: announcement: alert-level-red-announcement sound: /Audio/Announcements/Alerts/code_red.ogg color: Red + emergencyLightColor: Red + forceEnableEmergencyLights: true shuttleTime: 600 gamma: announcement: alert-level-gamma-announcement diff --git a/Resources/Prototypes/Alerts/alerts.yml b/Resources/Prototypes/Alerts/alerts.yml index 4b922e0344..99badab10d 100644 --- a/Resources/Prototypes/Alerts/alerts.yml +++ b/Resources/Prototypes/Alerts/alerts.yml @@ -28,6 +28,7 @@ - alertType: Pacified - alertType: Offer - alertType: RecentlyBlocked # WD EDIT + - alertType: Deflecting - type: entity id: AlertSpriteView @@ -617,3 +618,11 @@ state: mood_happiness_bad name: alerts-mood-dead-name description: alerts-mood-dead-desc + +- type: alert + id: Deflecting + icons: + - sprite: /Textures/Interface/Alerts/deflecting.rsi + state: deflecting0 + name: alerts-deflecting-name + description: alerts-deflecting-desc diff --git a/Resources/Prototypes/Anomaly/behaviours.yml b/Resources/Prototypes/Anomaly/behaviours.yml index aa9ad2f90d..e39933c365 100644 --- a/Resources/Prototypes/Anomaly/behaviours.yml +++ b/Resources/Prototypes/Anomaly/behaviours.yml @@ -58,14 +58,14 @@ id: DelayedForce earnPointModifier: 1.15 description: anomaly-behavior-delayed-force - pulseFrequencyModifier: 0.5 + pulseFrequencyModifier: 2 pulsePowerModifier: 2 - type: anomalyBehavior id: Rapid earnPointModifier: 1.15 description: anomaly-behavior-rapid - pulseFrequencyModifier: 2 + pulseFrequencyModifier: 0.5 pulsePowerModifier: 0.5 - type: anomalyBehavior @@ -84,6 +84,7 @@ description: anomaly-behavior-reflect components: - type: Reflect + innate: true reflectProb: 0.5 reflects: - Energy diff --git a/Resources/Prototypes/Body/Organs/Friendstomach.yml b/Resources/Prototypes/Body/Organs/Friendstomach.yml new file mode 100644 index 0000000000..a20bbbe75b --- /dev/null +++ b/Resources/Prototypes/Body/Organs/Friendstomach.yml @@ -0,0 +1,15 @@ +- type: entity + id: OrganFriendStomach + parent: OrganAnimalStomach + noSpawn: true + components: + - type: Stomach + - type: SolutionContainerManager + solutions: + stomach: + maxVol: 100 + food: + maxVol: 50 + reagents: + - ReagentId: UncookedAnimalProteins + Quantity: 5 diff --git a/Resources/Prototypes/Body/Organs/diona.yml b/Resources/Prototypes/Body/Organs/diona.yml index 69fc630b9e..a2133f7f90 100644 --- a/Resources/Prototypes/Body/Organs/diona.yml +++ b/Resources/Prototypes/Body/Organs/diona.yml @@ -27,11 +27,12 @@ - type: entity id: OrganDionaBrain - parent: [BaseDionaOrgan, OrganHumanBrain] + parent: OrganHumanBrain name: brain description: "The source of incredible, unending intelligence. Honk." components: - type: Sprite + sprite: Mobs/Species/Diona/organs.rsi state: brain - type: SolutionContainerManager solutions: @@ -102,7 +103,7 @@ layers: - state: lung-l - state: lung-r - - type: Lung + - type: Lung - type: Metabolizer removeEmpty: true solutionOnBody: false @@ -131,7 +132,7 @@ description: "The source of incredible, unending intelligence. Honk." components: - type: Brain - - type: Nymph # This will make the organs turn into a nymph when they're removed. + - type: Nymph # This will make the organs turn into a nymph when they're removed. entityPrototype: OrganDionaNymphBrain transferMind: true @@ -170,11 +171,11 @@ - type: entity id: OrganDionaNymphStomach - parent: MobDionaNymphAccent + parent: MobDionaNymphAccent noSpawn: true name: diona nymph suffix: Stomach - description: Contains the stomach of a formerly fully-formed Diona. It doesn't taste any better for it. + description: Contains the stomach of a formerly fully-formed Diona. It doesn't taste any better for it. components: - type: IsDeadIC - type: Body @@ -186,7 +187,7 @@ noSpawn: true name: diona nymph suffix: Lungs - description: Contains the lungs of a formerly fully-formed Diona. Breathtaking. + description: Contains the lungs of a formerly fully-formed Diona. Breathtaking. components: - type: IsDeadIC - type: Body diff --git a/Resources/Prototypes/Body/Organs/human.yml b/Resources/Prototypes/Body/Organs/human.yml index 69081020ce..e6a04d4a60 100644 --- a/Resources/Prototypes/Body/Organs/human.yml +++ b/Resources/Prototypes/Body/Organs/human.yml @@ -6,6 +6,13 @@ - type: Sprite sprite: Mobs/Species/Human/organs.rsi - type: Organ + +- type: entity + id: BaseHumanOrgan + parent: BaseHumanOrganUnGibbable + abstract: true + components: + - type: Gibbable - type: Food - type: Extractable grindableSolutionName: organ @@ -27,13 +34,6 @@ tags: - Meat -- type: entity - id: BaseHumanOrgan - parent: BaseHumanOrganUnGibbable - abstract: true - components: - - type: Gibbable - - type: entity id: OrganHumanBrain parent: BaseHumanOrganUnGibbable @@ -67,7 +67,7 @@ - type: FlavorProfile flavors: - people - + - type: entity id: OrganHumanEyes parent: BaseHumanOrgan diff --git a/Resources/Prototypes/Body/Organs/slime.yml b/Resources/Prototypes/Body/Organs/slime.yml index 3da76c5d4a..5b908e75f4 100644 --- a/Resources/Prototypes/Body/Organs/slime.yml +++ b/Resources/Prototypes/Body/Organs/slime.yml @@ -1,6 +1,6 @@ - type: entity id: SentientSlimeCore - parent: [BaseItem, OrganHumanBrain] + parent: OrganHumanBrain name: sentient slime core description: "The source of incredible, unending gooeyness." components: @@ -34,7 +34,7 @@ - ReagentId: Slime Quantity: 10 - + - type: entity id: OrganSlimeLungs parent: BaseHumanOrgan diff --git a/Resources/Prototypes/Body/Parts/terminator.yml b/Resources/Prototypes/Body/Parts/terminator.yml deleted file mode 100644 index 58530da959..0000000000 --- a/Resources/Prototypes/Body/Parts/terminator.yml +++ /dev/null @@ -1,158 +0,0 @@ -- type: entity - abstract: true - parent: BaseItem - id: PartTerminator - name: nt-800 body part - components: - - type: Sprite - sprite: Mobs/Species/Terminator/parts.rsi - - type: Icon - sprite: Mobs/Species/Terminator/parts.rsi - - type: Damageable - damageContainer: Inorganic - damageModifierSet: Cybernetic - - type: BodyPart - - type: ContainerContainer - containers: - bodypart: !type:Container - ents: [] - - type: Gibbable - - type: StaticPrice - price: 200 - -- type: entity - parent: PartTerminator - id: TorsoTerminator - name: nt-800 torso - components: - - type: Sprite - state: torso_m - - type: Icon - state: torso_m - - type: BodyPart - partType: Torso - -- type: entity - parent: PartTerminator - id: HeadTerminator - name: nt-800 skull - description: Its red eyes have powered down... for now. - components: - - type: Sprite - state: skull_icon - - type: Icon - state: skull_icon - - type: BodyPart - partType: Head - # killing a terminators worth big bucks - - type: StaticPrice - price: 2000 - - type: Tag - tags: - - Head - -- type: entity - parent: PartTerminator - id: LeftArmTerminator - name: left nt-800 arm - components: - - type: Sprite - state: l_arm - - type: Icon - state: l_arm - - type: BodyPart - partType: Arm - symmetry: Left - -- type: entity - parent: PartTerminator - id: RightArmTerminator - name: right nt-800 arm - components: - - type: Sprite - state: r_arm - - type: Icon - state: r_arm - - type: BodyPart - partType: Arm - symmetry: Right - -- type: entity - parent: PartTerminator - id: LeftHandTerminator - name: left nt-800 hand - components: - - type: Sprite - state: l_hand - - type: Icon - state: l_hand - - type: BodyPart - partType: Hand - symmetry: Left - -- type: entity - parent: PartTerminator - id: RightHandTerminator - name: right nt-800 hand - components: - - type: Sprite - state: r_hand - - type: Icon - state: r_hand - - type: BodyPart - partType: Hand - symmetry: Right - -- type: entity - parent: PartTerminator - id: LeftLegTerminator - name: left nt-800 leg - components: - - type: Sprite - state: l_leg - - type: Icon - state: l_leg - - type: BodyPart - partType: Leg - symmetry: Left - - type: MovementBodyPart - -- type: entity - parent: PartTerminator - id: RightLegTerminator - name: right nt-800 leg - components: - - type: Sprite - state: r_leg - - type: Icon - state: r_leg - - type: BodyPart - partType: Leg - symmetry: Right - - type: MovementBodyPart - -- type: entity - parent: PartTerminator - id: LeftFootTerminator - name: left nt-800 foot - components: - - type: Sprite - state: l_foot - - type: Icon - state: l_foot - - type: BodyPart - partType: Foot - symmetry: Left - -- type: entity - parent: PartTerminator - id: RightFootTerminator - name: right nt-800 foot - components: - - type: Sprite - state: r_foot - - type: Icon - state: r_foot - - type: BodyPart - partType: Foot - symmetry: Right diff --git a/Resources/Prototypes/Body/Parts/vox.yml b/Resources/Prototypes/Body/Parts/vox.yml index b163ed0864..9f89a0c583 100644 --- a/Resources/Prototypes/Body/Parts/vox.yml +++ b/Resources/Prototypes/Body/Parts/vox.yml @@ -33,10 +33,10 @@ components: - type: Sprite sprite: Mobs/Species/Vox/parts.rsi - state: "torso_m" + state: "torso" - type: Icon sprite: Mobs/Species/Vox/parts.rsi - state: "torso_m" + state: "torso" - type: BodyPart partType: Torso - type: Extractable @@ -54,10 +54,10 @@ components: - type: Sprite sprite: Mobs/Species/Vox/parts.rsi - state: "head_m" + state: "head" - type: Icon sprite: Mobs/Species/Vox/parts.rsi - state: "head_m" + state: "head" - type: BodyPart partType: Head vital: true diff --git a/Resources/Prototypes/Body/Prototypes/Friendshaped.yml b/Resources/Prototypes/Body/Prototypes/Friendshaped.yml new file mode 100644 index 0000000000..0ab85a0343 --- /dev/null +++ b/Resources/Prototypes/Body/Prototypes/Friendshaped.yml @@ -0,0 +1,24 @@ +- type: body + id: Friendshaped + name: "Friend-Shaped" + root: torso + slots: + torso: + part: TorsoAnimal + connections: + - hands + - legs + organs: + lungs: OrganAnimalLungs + stomach: OrganFriendStomach + liver: OrganAnimalLiver + heart: OrganAnimalHeart + kidneys: OrganAnimalKidneys + hands: + part: HandsAnimal + legs: + part: LegsAnimal + connections: + - feet + feet: + part: FeetAnimal diff --git a/Resources/Prototypes/Body/Prototypes/terminator.yml b/Resources/Prototypes/Body/Prototypes/terminator.yml deleted file mode 100644 index c271a89d86..0000000000 --- a/Resources/Prototypes/Body/Prototypes/terminator.yml +++ /dev/null @@ -1,85 +0,0 @@ -# not quite human... -- type: body - id: TerminatorFlesh - name: exterminator - root: torso - slots: - head: - part: HeadHuman - connections: - - torso - organs: - brain: MobTerminatorEndoskeleton - torso: - part: TorsoHuman - connections: - - left arm - - right arm - - left leg - - right leg - right arm: - part: RightArmHuman - connections: - - right hand - left arm: - part: LeftArmHuman - connections: - - left hand - right hand: - part: RightHandHuman - left hand: - part: LeftHandHuman - right leg: - part: RightLegHuman - connections: - - right foot - left leg: - part: LeftLegHuman - connections: - - left foot - right foot: - part: RightFootHuman - left foot: - part: LeftFootHuman - -# TODO: terminator body parts -- type: body - id: TerminatorEndoskeleton - name: terminatorEndoskeleton - root: torso - slots: - head: - part: HeadTerminator - connections: - - torso - torso: - part: TorsoTerminator - connections: - - left arm - - right arm - - left leg - - right leg - right arm: - part: RightArmTerminator - connections: - - right hand - left arm: - part: LeftArmTerminator - connections: - - left hand - right hand: - part: RightHandTerminator - left hand: - part: LeftHandTerminator - right leg: - part: RightLegTerminator - connections: - - right foot - left leg: - part: LeftLegTerminator - connections: - - left foot - right foot: - part: RightFootTerminator - left foot: - part: LeftFootTerminator diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_engines.yml b/Resources/Prototypes/Catalog/Cargo/cargo_engines.yml index bd00b0c2d4..8d3bea5075 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_engines.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_engines.yml @@ -28,17 +28,17 @@ category: cargoproduct-category-name-engineering group: market -#- type: cargoProduct -# name: "emitter crate" -# id: EngineSingularityEmitter -# description: "Contains an emitter. Used only for dangerous applications." -# icon: -# sprite: Structures/Power/Generation/Singularity/emitter.rsi -# state: emitter2 -# product: CrateEngineeringSingularityEmitter -# cost: 3000 -# category: cargoproduct-category-name-engineering -# group: market +- type: cargoProduct + name: "emitter crate" + id: EngineSingularityEmitter + description: "Contains an emitter. Used only for dangerous applications." + icon: + sprite: Structures/Power/Generation/Singularity/emitter.rsi + state: emitter2 + product: CrateEngineeringSingularityEmitter + cost: 3000 + category: cargoproduct-category-name-engineering + group: market - type: cargoProduct id: EngineSingularityCollector diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_hardsuits.yml b/Resources/Prototypes/Catalog/Cargo/cargo_hardsuits.yml new file mode 100644 index 0000000000..a2f8b035b0 --- /dev/null +++ b/Resources/Prototypes/Catalog/Cargo/cargo_hardsuits.yml @@ -0,0 +1,92 @@ +# Engineering +- type: cargoProduct + id: EngineeringFotiaHardsuit + icon: + sprite: Clothing/OuterClothing/Hardsuits/atmospherics.rsi + state: icon + product: CrateEngineeringFotiaHardsuit + cost: 2250 + category: cargoproduct-category-name-hardsuits + group: market + +- type: cargoProduct + id: EngineeringLampsiHardsuit + icon: + sprite: Clothing/OuterClothing/Hardsuits/engineering.rsi + state: icon + product: CrateEngineeringLampsiHardsuit + cost: 2250 + category: cargoproduct-category-name-hardsuits + group: market + +# Logistics +- type: cargoProduct + id: LogisticsKritiHardsuit + icon: + sprite: Clothing/OuterClothing/Hardsuits/spatio.rsi + state: icon + product: CrateLogisticsKritiHardsuit + cost: 1250 + category: cargoproduct-category-name-hardsuits + group: market + +- type: cargoProduct + id: LogisticsLavrionHardsuit + icon: + sprite: Clothing/OuterClothing/Hardsuits/salvage.rsi + state: icon + product: CrateLogisticsLavrionHardsuit + cost: 3500 + category: cargoproduct-category-name-hardsuits + group: market + +# Security +- type: cargoProduct + id: SecurityShanlinTacsuit + icon: + sprite: Nyanotrasen/Clothing/OuterClothing/ReverseEngineering/syndicate.rsi + state: icon + product: CrateSecurityShanlinTacsuit + cost: 17500 + category: cargoproduct-category-name-hardsuits + group: market + +- type: cargoProduct + id: SecurityGuanYuTacsuit + icon: + sprite: Nyanotrasen/Clothing/OuterClothing/ReverseEngineering/juggernaut.rsi + state: icon + product: CrateSecurityGuanYuTacsuit + cost: 30000 + category: cargoproduct-category-name-hardsuits + group: market + +- type: cargoProduct + id: SecurityBaghaturTacsuit + icon: + sprite: DeltaV/Clothing/OuterClothing/Hardsuits/Combat/standard.rsi + state: icon + product: CrateSecurityBaghaturTacsuit + cost: 5000 + category: cargoproduct-category-name-hardsuits + group: market + +- type: cargoProduct + id: SecuritySuldeTacsuit + icon: + sprite: DeltaV/Clothing/OuterClothing/Hardsuits/Combat/riot.rsi + state: icon + product: CrateSecuritySuldeTacsuit + cost: 7500 + category: cargoproduct-category-name-hardsuits + group: market + +- type: cargoProduct + id: SecurityTsagaanTacsuit + icon: + sprite: DeltaV/Clothing/OuterClothing/Hardsuits/Combat/medical.rsi + state: icon + product: CrateSecurityTsagaanTacsuit + cost: 5500 + category: cargoproduct-category-name-hardsuits + group: market diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_medical.yml b/Resources/Prototypes/Catalog/Cargo/cargo_medical.yml index 1044c74294..1addf523e4 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_medical.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_medical.yml @@ -101,7 +101,7 @@ - type: cargoProduct id: MedicalBiosuit icon: - sprite: _White/Clothing/Head/Hoods/Bio/bio.rsi #WWDP edit + sprite: Clothing/Head/Hoods/Bio/bio.rsi state: icon product: CrateVirologyBiosuit cost: 800 diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_security.yml b/Resources/Prototypes/Catalog/Cargo/cargo_security.yml index 2ad7628ddb..e22f9fd5e7 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_security.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_security.yml @@ -34,7 +34,7 @@ sprite: DeltaV/Clothing/OuterClothing/Armor/riot.rsi # DeltaV - resprite state: icon product: CrateSecurityRiot - cost: 5500 + cost: 7500 category: cargoproduct-category-name-security group: market diff --git a/Resources/Prototypes/Catalog/Fills/Crates/engines.yml b/Resources/Prototypes/Catalog/Fills/Crates/engines.yml index 9b47036b01..79698b550a 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/engines.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/engines.yml @@ -42,7 +42,7 @@ components: - type: StorageFill contents: - - id: Emitter # TODO change to flatpack + - id: EmitterFlatpack # TODO change to flatpack - type: entity id: CrateEngineeringSingularityCollector diff --git a/Resources/Prototypes/Catalog/Fills/Crates/hardsuits.yml b/Resources/Prototypes/Catalog/Fills/Crates/hardsuits.yml new file mode 100644 index 0000000000..9d6f46c499 --- /dev/null +++ b/Resources/Prototypes/Catalog/Fills/Crates/hardsuits.yml @@ -0,0 +1,92 @@ +# Engineering +- type: entity + id: CrateEngineeringFotiaHardsuit + parent: CrateEngineering + name: fotia hardsuit crate + description: Contains a single HpI-19t "Fotia" hardsuit. Requires Engineering access to open. + components: + - type: StorageFill + contents: + - id: ClothingOuterHardsuitAtmos + +- type: entity + id: CrateEngineeringLampsiHardsuit + parent: CrateEngineering + name: lampsi hardsuit crate + description: Contains a single HpI-19r "Lampsi" hardsuit. Requires Engineering access to open. + components: + - type: StorageFill + contents: + - id: ClothingOuterHardsuitAtmos + +# Logistics +- type: entity + id: CrateLogisticsKritiHardsuit + parent: CrateGenericSteel + name: kriti hardsuit crate + description: Contains a single HpI-20s "Kriti" hardsuit. + components: + - type: StorageFill + contents: + - id: ClothingOuterHardsuitSpatio + +- type: entity + id: CrateLogisticsLavrionHardsuit + parent: CrateGenericSteel + name: lavrion hardsuit crate + description: Contains a single HpI-20a "Lavrion" hardsuit. + components: + - type: StorageFill + contents: + - id: ClothingOuterHardsuitSalvage + +# Security +- type: entity + id: CrateSecurityShanlinTacsuit + parent: CrateSecgear + name: shanlin tacsuit crate + description: Contains a single CSA-51a "Shanlin" tacsuit. Requires Security access to open. + components: + - type: StorageFill + contents: + - id: ClothingOuterHardsuitSyndieReverseEngineered + +- type: entity + id: CrateSecurityGuanYuTacsuit + parent: CrateSecgear + name: guan-yu tacsuit crate + description: Contains a single CSA-80UA "Guan-Yu" tacsuit. Requires Security access to open. + components: + - type: StorageFill + contents: + - id: ClothingOuterHardsuitJuggernautReverseEngineered + +- type: entity + id: CrateSecurityBaghaturTacsuit + parent: CrateSecgear + name: baghatur tacsuit crate + description: Contains a single FPA-83s "Baghatur" tacsuit. Requires Security access to open. + components: + - type: StorageFill + contents: + - id: ClothingOuterHardsuitCombatStandard + +- type: entity + id: CrateSecuritySuldeTacsuit + parent: CrateSecgear + name: sulde tacsuit crate + description: Contains a single FPA-93 - "Sulde Mk.II" tacsuit. Requires Security access to open. + components: + - type: StorageFill + contents: + - id: ClothingOuterHardsuitCombatRiot + +- type: entity + id: CrateSecurityTsagaanTacsuit + parent: CrateSecgear + name: tsagaan tacsuit crate + description: Contains a single FPA-86 - "Tsagaan Mk.II" tacsuit. Requires Security access to open. + components: + - type: StorageFill + contents: + - id: ClothingOuterHardsuitCombatMedical diff --git a/Resources/Prototypes/Catalog/Fills/Crates/service.yml b/Resources/Prototypes/Catalog/Fills/Crates/service.yml index 141f98edab..35e66ac4d3 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/service.yml @@ -20,7 +20,7 @@ - id: Plunger amount: 2 - id: BoxCleanerGrenades - + - type: entity id: CrateServiceReplacementLights parent: CrateGenericSteel @@ -88,6 +88,10 @@ - id: ClothingNeckCloakVoid - id: RevolverCapGun - id: BarberScissors + - id: ClothingUniformJumpskirtOldDress + - id: BikeHorn + - id: ClownRecorder + - id: ClothingBeltSuspenders - type: entity id: CrateServiceCustomSmokable diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml b/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml index e4d995e52e..b3efb6ec1d 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml @@ -65,13 +65,20 @@ components: - type: StorageFill contents: + - id: ClothingHeadHatWelding + - id: ClothingHeadHatWelding + - id: ClothingHeadHatWelding + prob: 0.5 + - id: Welder + - id: Welder - id: WelderMini + orGroup: thirdWelder - id: Welder - prob: 0.7 + prob: 0.33 + orGroup: thirdWelder - id: WelderIndustrial - prob: 0.5 - - id: ClothingHeadHatWelding - prob: 0.5 + prob: 0.33 + orGroup: thirdWelder - type: entity id: LockerAtmosphericsFilledHardsuit diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 752591da37..5898468c34 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -15,6 +15,8 @@ prob: 0.50 - id: DoorRemoteCargo - id: RubberStampQm + - id: RubberStampDenied + - id: RubberStampApproved - id: ClothingHeadsetAltCargo - id: BoxEncryptionKeyCargo - id: SpaceCashLuckyBill # DeltaV - LO steal objective, see Resources/Prototypes/DeltaV/Entities/Objects/Misc/first_bill.yml @@ -132,6 +134,8 @@ - id: DoorRemoteService - id: ClothingNeckGoldmedal - id: RubberStampHop + - id: RubberStampDenied + - id: RubberStampApproved - id: BoxEncryptionKeyPassenger - id: BoxEncryptionKeyService - id: AccessConfigurator @@ -315,7 +319,6 @@ - id: HoloprojectorSecurity - id: BookSecretDocuments - id: BoxPDASecurity # Delta-V - - id: WeaponEnergyGunMultiphase # DeltaV - HoS Energy Gun - id: HoSIDCard # Delta-V - id: LunchboxCommandFilledRandom # Delta-V Lunchboxes! prob: 0.3 @@ -344,7 +347,6 @@ - id: HoloprojectorSecurity - id: BookSecretDocuments - id: BoxPDASecurity # Delta-V - - id: WeaponEnergyGunMultiphase # DeltaV - HoS Energy Gun - id: HoSIDCard # Delta-V - id: LunchboxCommandFilledRandom # Delta-V Lunchboxes! prob: 0.3 diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml index 3a9211d248..547731a7c3 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml @@ -109,6 +109,8 @@ components: - type: StorageFill contents: + - id: PresentHalloweenRandom #Temporary edition for halloween time. WWDP edit + prob: 1 - id: Lantern prob: 0.50 - id: Wirecutter @@ -206,6 +208,14 @@ #- id: WeaponSniperMosin # prob: 0.0010 # orGroup: syndiemaintloot + # WD EDIT START + - id: ClothingEyesNightVisionGogglesSyndie + prob: 0.005 + orGroup: syndiemaintloot + - id: ClothingEyesThermalVisionGogglesSyndie + prob: 0.005 + orGroup: syndiemaintloot + # WD EDIT END - type: entity id: ClosetWallMaintenanceFilledRandom diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml index b86fa2e1f5..83bbdb435f 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml @@ -5,8 +5,6 @@ components: - type: StorageFill contents: - - id: ClothingOuterArmorDuraVest # DeltaV - ClothingOuterArmorBasicSlim replaced in favour of stabproof vest - - id: WeaponShotgunDoubleBarreledRubber - id: DrinkShaker - id: ClothingEyesHudBeer - id: HandLabeler @@ -17,8 +15,6 @@ prob: 0.5 - id: DrinkBottleBeer prob: 0.5 - - id: BoxBeanbag - amount: 2 - id: RagItem amount: 2 - id: LunchboxServiceFilledRandom # Delta-V Lunchboxes! diff --git a/Resources/Prototypes/Catalog/Fills/Paper/manuals.yml b/Resources/Prototypes/Catalog/Fills/Paper/manuals.yml index e13070d1ba..4893fa2557 100644 --- a/Resources/Prototypes/Catalog/Fills/Paper/manuals.yml +++ b/Resources/Prototypes/Catalog/Fills/Paper/manuals.yml @@ -19,7 +19,7 @@ key: enum.PaperUiKey.Key - type: UserInterface interfaces: - - key: enum.PaperUiKey.Key - type: PaperBoundUserInterface + enum.PaperUiKey.Key: + type: PaperBoundUserInterface - type: Paper content: book-text-holoparasite-info diff --git a/Resources/Prototypes/Catalog/Jukebox/Standard.yml b/Resources/Prototypes/Catalog/Jukebox/Standard.yml index e9d86874c5..7440428bd4 100644 --- a/Resources/Prototypes/Catalog/Jukebox/Standard.yml +++ b/Resources/Prototypes/Catalog/Jukebox/Standard.yml @@ -33,3 +33,9 @@ name: Qwertyquerty - Starlight path: path: /Audio/Jukebox/starlight.ogg + +- type: jukebox + id: sunset + name: PigeonBeans - Sunset + path: + path: /Audio/Jukebox/sunset.ogg diff --git a/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml b/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml index 975541a502..4689e26f8e 100644 --- a/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml +++ b/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml @@ -6,6 +6,7 @@ - DrinkColaBottleFull - DrinkCreamCartonXL - DrinkDrGibbJug + - DrinkEnergyDrinkJug - DrinkGreenTeaJug - DrinkIceJug - DrinkJuiceLimeCartonXL diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/boozeomat.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/boozeomat.yml index ac298b240a..1d86640d1c 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/boozeomat.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/boozeomat.yml @@ -7,6 +7,9 @@ DrinkVacuumFlask: 5 DrinkFlaskBar: 5 DrinkShaker: 5 + DrinkJigger: 5 + DrinkIceBucket: 2 + BarSpoon: 3 CustomDrinkJug: 2 #to allow for custom drinks in the soda/booze dispensers DrinkAbsintheBottleFull: 2 DrinkAleBottleFull: 5 @@ -15,6 +18,7 @@ DrinkCognacBottleFull: 4 DrinkCoconutWaterCarton: 3 DrinkColaBottleFull: 4 + DrinkEnergyDrinkCan: 8 DrinkMilkCarton: 2 DrinkCreamCarton: 5 DrinkGinBottleFull: 3 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chang.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chang.yml index 282f58535b..5befd85ca8 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chang.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chang.yml @@ -7,4 +7,5 @@ DrinkHellRamen: 3 FoodSnackChowMein: 3 FoodSnackDanDanNoodles: 3 + PairedChopsticks: 3 # rice? diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/curadrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/curadrobe.yml index aac1cbb3f4..fe332ea52d 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/curadrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/curadrobe.yml @@ -4,6 +4,7 @@ BooksBag: 2 BriefcaseBrown: 2 HandLabeler: 2 + Cane: 3 ClothingEyesGlasses: 2 ClothingEyesGlassesJamjar: 2 ClothingNeckScarfStripedGreen: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/detdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/detdrobe.yml index f45dd229a2..91e45c8391 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/detdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/detdrobe.yml @@ -4,7 +4,7 @@ ClothingUniformJumpsuitDetective: 2 ClothingUniformJumpskirtDetective: 2 ClothingShoesColorBrown: 2 - ClothingOuterCoatDetective: 2 + ClothingOuterCoatDetectiveLoadout: 2 ClothingHeadHatFedoraBrown: 2 ClothingUniformJumpsuitDetectiveGrey: 2 ClothingUniformJumpskirtDetectiveGrey: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/dinnerware.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/dinnerware.yml index 0b9a73aa6e..ba270a9af8 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/dinnerware.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/dinnerware.yml @@ -6,6 +6,7 @@ RollingPin: 4 Spoon: 4 Fork: 4 + PairedChopsticks: 4 FoodBowlBig: 10 FoodPlate: 10 FoodPlateSmall: 10 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/discount.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/discount.yml index ddf7943217..fc8492dcf1 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/discount.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/discount.yml @@ -4,6 +4,7 @@ FoodSnackCheesie: 3 FoodSnackChips: 3 FoodSnackBoritos: 3 + DrinkEnergyDrinkCan: 4 FoodSnackPopcorn: 3 FoodSnackEnergy: 3 CigPackMixed: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml index 6ac13d48d5..5f4600ed13 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml @@ -7,8 +7,7 @@ Bloodpack: 5 EpinephrineChemistryBottle: 3 Syringe: 5 - Portafib: 1 # DeltaV - Add Portafibs, see Prototypes/DeltaV/Entities/Objects/Devices/Medical/portafib.yml - ClothingEyesGlasses: 5 # SimpleStation14 NearsightedTrait + Portafib: 1 + ClothingEyesGlasses: 5 ClothingEyesHudMedical: 2 ClothingEyesEyepatchHudMedical: 2 - diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml index 01b58ae40f..723f944222 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml @@ -19,11 +19,12 @@ RiotShield: 2 RiotLaserShield: 2 RiotBulletShield: 2 - ClothingHeadHelmetInsulated: 2 # Nyanotrasen - Insulative headgear - ClothingHeadCage: 2 # Nyanotrasen - Insulative headgear - ClothingOuterArmorPlateCarrier: 2 # DeltaV - moved body armour from SecDrobe to SecTech + RadioHandheldSecurity: 5 + ClothingHeadHelmetInsulated: 2 + ClothingHeadCage: 2 + ClothingOuterArmorPlateCarrier: 2 ClothingOuterArmorDuraVest: 2 - ClothingHeadHelmetBasic: 2 # DeltaV - added helmets to the SecTech. Another line of defense between the tide and your grey matter. + ClothingHeadHelmetBasic: 2 BreachingCharge: 8 # security officers need to follow a diet regimen! contrabandInventory: diff --git a/Resources/Prototypes/Catalog/spellbook_catalog.yml b/Resources/Prototypes/Catalog/spellbook_catalog.yml new file mode 100644 index 0000000000..38b95c3273 --- /dev/null +++ b/Resources/Prototypes/Catalog/spellbook_catalog.yml @@ -0,0 +1,140 @@ +# Offensive +- type: listing + id: SpellbookFireball + name: spellbook-fireball-name + description: spellbook-fireball-desc + productAction: ActionFireball + productUpgradeId: SpellbookFireballUpgrade + cost: + WizCoin: 2 + categories: + - SpellbookOffensive + conditions: + - !type:ListingLimitedStockCondition + stock: 1 + +- type: listing + id: SpellbookRodForm + name: spellbook-polymorph-rod-name + description: spellbook-polymorph-rod-desc + productAction: ActionPolymorphWizardRod + cost: + WizCoin: 3 + categories: + - SpellbookOffensive + conditions: + - !type:ListingLimitedStockCondition + stock: 1 + +# Defensive +- type: listing + id: SpellbookForceWall + name: spellbook-force-wall-name + description: spellbook-force-wall-desc + productAction: ActionForceWall + cost: + WizCoin: 3 + categories: + - SpellbookDefensive + +# Utility +- type: listing + id: SpellbookPolymorphSpider + name: spellbook-polymoprh-spider-name + description: spellbook-polymorph-spider-desc + productAction: ActionPolymorphWizardSpider + cost: + WizCoin: 2 + categories: + - SpellbookUtility + conditions: + - !type:ListingLimitedStockCondition + stock: 1 + +- type: listing + id: SpellbookBlink + name: spellbook-blink-name + description: spellbook-blink-desc + productAction: ActionBlink + cost: + WizCoin: 1 + categories: + - SpellbookUtility + conditions: + - !type:ListingLimitedStockCondition + stock: 1 + +- type: listing + id: SpellbookCharge + name: spellbook-charge-name + description: spellbook-charge-desc + productAction: ActionChargeSpell + cost: + WizCoin: 1 + categories: + - SpellbookUtility + conditions: + - !type:ListingLimitedStockCondition + stock: 1 + +# Equipment +- type: listing + id: SpellbookWandDoor + name: spellbook-wand-polymorph-door-name + description: spellbook-wand-polymorph-door-description + productEntity: WeaponWandPolymorphDoor + cost: + WizCoin: 3 + categories: + - SpellbookEquipment + conditions: + - !type:ListingLimitedStockCondition + stock: 1 + +- type: listing + id: SpellbookWandPolymorphCarp + name: spellbook-wand-polymorph-carp-name + description: spellbook-wand-polymorph-carp-description + productEntity: WeaponWandPolymorphCarp + cost: + WizCoin: 3 + categories: + - SpellbookEquipment + conditions: + - !type:ListingLimitedStockCondition + stock: 1 + +# Event +- type: listing + id: SpellbookEventSummonGhosts + name: spellbook-event-summon-ghosts-name + description: spellbook-event-summon-ghosts-description + productAction: ActionSummonGhosts + cost: + WizCoin: 0 + categories: + - SpellbookEvents + conditions: + - !type:ListingLimitedStockCondition + stock: 1 + +# Upgrades +- type: listing + id: SpellbookFireballUpgrade + productUpgradeId: SpellbookFireballUpgrade + name: spellbook-upgrade-fireball-name + description: spellbook-upgrade-fireball-description + icon: + sprite: Objects/Magic/magicactions.rsi + state: fireball + cost: + WizCoin: 2 + categories: + - SpellbookOffensive + conditions: + - !type:BuyBeforeCondition + whitelist: + - SpellbookFireball + # manual for now + - !type:ListingLimitedStockCondition + stock: 2 diff --git a/Resources/Prototypes/Catalog/thief_toolbox_sets.yml b/Resources/Prototypes/Catalog/thief_toolbox_sets.yml index c102190e81..e70e93732f 100644 --- a/Resources/Prototypes/Catalog/thief_toolbox_sets.yml +++ b/Resources/Prototypes/Catalog/thief_toolbox_sets.yml @@ -14,13 +14,14 @@ - ClothingEyesChameleon - ClothingHeadsetChameleon - ClothingShoesChameleon + - ChameleonProjector - type: thiefBackpackSet id: ToolsSet name: thief-backpack-category-tools-name description: thief-backpack-category-tools-description sprite: - sprite: _White/Objects/Tools/jaws_of_life.rsi #WWDP edit + sprite: Objects/Tools/jaws_of_life.rsi state: jaws_pry content: - WelderIndustrialAdvanced diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index fc040e9e95..9e19f4ecbf 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -10,7 +10,7 @@ Telecrystal: 3 categories: - UplinkWeapons - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: UplinkRevolverPython @@ -21,7 +21,7 @@ Telecrystal: 8 # Originally was 13 TC but was not used due to high cost categories: - UplinkWeapons - saleLimit: 1 # WD EDIT + saleLimit: 1 # Inbuilt suppressor so it's sneaky + more expensive. - type: listing @@ -33,7 +33,7 @@ Telecrystal: 4 categories: - UplinkWeapons - saleLimit: 1 # WD EDIT + saleLimit: 1 # Poor accuracy, slow to fire, cheap option - type: listing @@ -45,7 +45,7 @@ Telecrystal: 1 categories: - UplinkWeapons - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: UplinkEsword @@ -57,7 +57,7 @@ Telecrystal: 8 categories: - UplinkWeapons - saleLimit: 2 # WD EDIT + saleLimit: 2 - type: listing id: UplinkEnergyDagger @@ -69,7 +69,7 @@ Telecrystal: 2 categories: - UplinkWeapons - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: UplinkThrowingKnivesKit @@ -91,7 +91,7 @@ Telecrystal: 8 categories: - UplinkWeapons - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: UplinkDisposableTurret @@ -107,7 +107,7 @@ blacklist: tags: - NukeOpsUplink - saleLimit: 2 # WD EDIT + saleLimit: 2 - type: listing id: BaseBallBatHomeRun @@ -120,7 +120,7 @@ Telecrystal: 16 categories: - UplinkWeapons - saleLimit: 1 # WD EDIT + saleLimit: 1 # Explosives @@ -223,7 +223,7 @@ whitelist: tags: - NukeOpsUplink - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: UplinkC4Bundle @@ -234,7 +234,7 @@ Telecrystal: 12 #you're buying bulk so its a 25% discount categories: - UplinkExplosives - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: UplinkEmpGrenade @@ -272,7 +272,7 @@ blacklist: tags: - NukeOpsUplink - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: UplinkSyndicateBombNukie @@ -288,7 +288,7 @@ whitelist: tags: - NukeOpsUplink - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: UplinkClusterGrenade @@ -393,21 +393,193 @@ #Utility -#- type: listing # -# id: UplinkHoloparaKit -# name: uplink-holopara-kit-name -# description: uplink-holopara-kit-desc -# icon: { sprite: /Textures/Objects/Misc/guardian_info.rsi, state: icon } -# productEntity: BoxHoloparasite -# cost: -# Telecrystal: 14 -# categories: -# - UplinkUtility -# conditions: -# - !type:StoreWhitelistCondition -# blacklist: -# tags: -# - NukeOpsUplink +- type: listing + id: UplinkZombieBundle + name: uplink-zombie-bundle-name + description: uplink-zombie-bundle-desc + icon: { sprite: /Textures/Structures/Wallmounts/signs.rsi, state: bio } + productEntity: ClothingBackpackDuffelZombieBundle + cost: + Telecrystal: 40 + categories: + - UplinkChemicals + conditions: + - !type:StoreWhitelistCondition + whitelist: + tags: + - NukeOpsUplink + - !type:BuyerWhitelistCondition + blacklist: + components: + - SurplusBundle + saleLimit: 1 + +- type: listing + id: UplinkNocturineChemistryBottle + name: uplink-nocturine-chemistry-bottle-name + description: uplink-nocturine-chemistry-bottle-desc + productEntity: NocturineChemistryBottle + cost: + Telecrystal: 6 + categories: + - UplinkChemicals + saleLimit: 1 + +- type: listing + id: UplinkCombatMedkit + name: uplink-combat-medkit-name + description: uplink-combat-medkit-desc + productEntity: MedkitCombatFilled + cost: + Telecrystal: 5 + categories: + - UplinkChemicals + saleLimit: 1 + +- type: listing + id: UplinkCombatMedipen + name: uplink-combat-medipen-name + description: uplink-combat-medipen-desc + productEntity: CombatMedipen + cost: + Telecrystal: 4 + categories: + - UplinkChemicals + saleLimit: 1 + +- type: listing + id: UplinkStimpack + name: uplink-stimpack-name + description: uplink-stimpack-desc + productEntity: Stimpack + cost: + Telecrystal: 4 + categories: + - UplinkChemicals + saleLimit: 1 + +- type: listing + id: UplinkStimkit + name: uplink-stimkit-name + description: uplink-stimkit-desc + productEntity: StimkitFilled + cost: + Telecrystal: 12 + categories: + - UplinkChemicals + saleLimit: 1 + +- type: listing + id: UplinkCigarettes + name: uplink-cigarettes-name + description: uplink-cigarettes-desc + productEntity: CigPackSyndicate + cost: + Telecrystal: 2 + categories: + - UplinkChemicals + +- type: listing + id: UplinkMedsBundle + name: uplink-meds-bundle-name + description: uplink-meds-bundle-desc + productEntity: ClothingBackpackDuffelSyndicateMedicalBundleFilled + cost: + Telecrystal: 20 + categories: + - UplinkChemicals + conditions: + - !type:StoreWhitelistCondition + whitelist: + tags: + - NukeOpsUplink + - !type:BuyerWhitelistCondition + blacklist: + components: + - SurplusBundle + saleLimit: 1 + +# Deception + +- type: listing + id: UplinkAgentIDCard + name: uplink-agent-id-card-name + description: uplink-agent-id-card-desc + productEntity: AgentIDCard + cost: + Telecrystal: 3 + categories: + - UplinkDeception + +- type: listing + id: UplinkStealthBox + name: uplink-stealth-box-name + description: uplink-stealth-box-desc + productEntity: StealthBox + cost: + Telecrystal: 5 + categories: + - UplinkDeception + +- type: listing + id: UplinkChameleonProjector + name: uplink-chameleon-projector-name + description: uplink-chameleon-projector-desc + productEntity: ChameleonProjector + cost: + Telecrystal: 7 + categories: + - UplinkDeception + +- type: listing + id: UplinkCyberpen + name: uplink-cyberpen-name + description: uplink-cyberpen-desc + productEntity: CyberPen + cost: + Telecrystal: 1 + categories: + - UplinkDeception + +- type: listing + id: UplinkDecoyDisk + name: uplink-decoy-disk-name + description: uplink-decoy-disk-desc + productEntity: NukeDiskFake + cost: + Telecrystal: 1 + categories: + - UplinkDeception + +- type: listing + id: UplinkUltrabrightLantern + name: uplink-ultrabright-lantern-name + description: uplink-ultrabright-lantern-desc + productEntity: LanternFlash + cost: + Telecrystal: 2 + categories: + - UplinkDeception + +- type: listing + id: UplinkBribe + name: uplink-bribe-name + description: uplink-bribe-desc + productEntity: BriefcaseSyndieLobbyingBundleFilled + cost: + Telecrystal: 4 + categories: + - UplinkDeception + +# - type: listing +# id: UplinkGigacancerScanner +# name: Ultragigacancer Health Analyzer +# description: Works like a normal health analyzer, other than giving everyone it scans ultragigacancer. +# productEntity: HandheldHealthAnalyzerGigacancer +# cost: +# Telecrystal: 5 +# categories: +# - UplinkDeception - type: listing id: UplinkHolster @@ -430,14 +602,15 @@ - UplinkUtility - type: listing - id: UplinkAgentIDCard - name: uplink-agent-id-card-name - description: uplink-agent-id-card-desc - productEntity: AgentIDCard + id: UplinkSyndicateMartyrModule + name: uplink-syndicate-martyr-module-name + description: uplink-syndicate-martyr-module-desc + productEntity: BorgModuleMartyr + icon: { sprite: /Textures/Objects/Specific/Robotics/borgmodule.rsi, state: syndicateborgbomb } cost: - Telecrystal: 3 + Telecrystal: 4 categories: - - UplinkUtility + - UplinkDisruption - type: listing id: UplinkJetpack @@ -464,7 +637,7 @@ blacklist: tags: - NukeOpsUplink - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: UplinkReinforcementRadioSyndicateNukeops # Version for Nukeops that spawns an agent with the NukeOperative component. @@ -481,7 +654,7 @@ whitelist: tags: - NukeOpsUplink - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: UplinkReinforcementRadioSyndicateCyborgAssault @@ -498,13 +671,13 @@ whitelist: tags: - NukeOpsUplink - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing - id: UplinkReinforcementRadioSyndicateMonkey - name: uplink-reinforcement-radio-monkey-name - description: uplink-reinforcement-radio-monkey-desc - productEntity: ReinforcementRadioSyndicateMonkey + id: UplinkReinforcementRadioSyndicateAncestor + name: uplink-reinforcement-radio-ancestor-name + description: uplink-reinforcement-radio-ancestor-desc + productEntity: ReinforcementRadioSyndicateAncestor icon: { sprite: Objects/Devices/communication.rsi, state: radio } cost: Telecrystal: 8 @@ -517,10 +690,10 @@ - NukeOpsUplink - type: listing - id: UplinkReinforcementRadioSyndicateMonkeyNukeops # Version for Nukeops that spawns a syndicate monkey with the NukeOperative component. - name: uplink-reinforcement-radio-monkey-name - description: uplink-reinforcement-radio-monkey-desc - productEntity: ReinforcementRadioSyndicateMonkeyNukeops + id: UplinkReinforcementRadioSyndicateAncestorNukeops # Version for Nukeops that spawns a syndicate monkey with the NukeOperative component. + name: uplink-reinforcement-radio-ancestor-name + description: uplink-reinforcement-radio-ancestor-desc + productEntity: ReinforcementRadioSyndicateAncestorNukeops icon: { sprite: Objects/Devices/communication.rsi, state: radio } cost: Telecrystal: 6 @@ -531,17 +704,7 @@ whitelist: tags: - NukeOpsUplink - saleLimit: 1 # WD EDIT - -- type: listing - id: UplinkStealthBox - name: uplink-stealth-box-name - description: uplink-stealth-box-desc - productEntity: StealthBox - cost: - Telecrystal: 5 - categories: - - UplinkUtility + saleLimit: 1 - type: listing id: UplinkHeadsetEncryptionKey @@ -595,11 +758,6 @@ Telecrystal: 2 categories: - UplinkUtility - conditions: - - !type:StoreWhitelistCondition - whitelist: - tags: - - NukeOpsUplink - type: listing id: UplinkRadioJammer @@ -637,7 +795,7 @@ id: UplinkStorageImplanter name: uplink-storage-implanter-name description: uplink-storage-implanter-desc - icon: { sprite: /Textures/_White/Clothing/Back/Backpacks/backpack.rsi, state: icon } #WWDP edit + icon: { sprite: /Textures/Clothing/Back/Backpacks/backpack.rsi, state: icon } productEntity: StorageImplanter cost: Telecrystal: 8 @@ -764,7 +922,7 @@ blacklist: tags: - NukeOpsUplink - saleBlacklist: true # WD EDIT + saleBlacklist: true - type: listing id: UplinkDeathRattle @@ -838,7 +996,7 @@ blacklist: components: - SurplusBundle - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: UplinkChemistryKitBundle @@ -862,25 +1020,6 @@ categories: - UplinkBundles -- type: listing - id: UplinkMedsBundle - name: uplink-meds-bundle-name - description: uplink-meds-bundle-desc - productEntity: ClothingBackpackDuffelSyndicateMedicalBundleFilled - cost: - Telecrystal: 20 - categories: - - UplinkBundles - conditions: - - !type:StoreWhitelistCondition - whitelist: - tags: - - NukeOpsUplink - - !type:BuyerWhitelistCondition - blacklist: - components: - - SurplusBundle - saleLimit: 1 # WD EDIT - type: listing id: UplinkSniperBundle @@ -892,7 +1031,7 @@ Telecrystal: 20 # WD EDIT categories: - UplinkBundles - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: UplinkC20RBundle @@ -904,7 +1043,7 @@ Telecrystal: 17 categories: - UplinkBundles - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: UplinkBulldogBundle @@ -916,7 +1055,7 @@ Telecrystal: 20 categories: - UplinkBundles - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: UplinkGrenadeLauncherBundle @@ -928,7 +1067,7 @@ Telecrystal: 25 categories: - UplinkBundles - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: UplinkL6SawBundle @@ -940,28 +1079,7 @@ Telecrystal: 30 categories: - UplinkBundles - saleLimit: 1 # WD EDIT - -- type: listing - id: UplinkZombieBundle - name: uplink-zombie-bundle-name - description: uplink-zombie-bundle-desc - icon: { sprite: /Textures/Structures/Wallmounts/signs.rsi, state: bio } - productEntity: ClothingBackpackDuffelZombieBundle - cost: - Telecrystal: 40 - categories: - - UplinkBundles - conditions: - - !type:StoreWhitelistCondition - whitelist: - tags: - - NukeOpsUplink - - !type:BuyerWhitelistCondition - blacklist: - components: - - SurplusBundle - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: UplinkSurplusBundle @@ -981,7 +1099,7 @@ blacklist: components: - SurplusBundle - saleBlacklist: true # WD EDIT + saleBlacklist: true - type: listing id: UplinkSuperSurplusBundle @@ -1001,7 +1119,7 @@ blacklist: components: - SurplusBundle - saleBlacklist: true # WD EDIT + saleBlacklist: true # Tools @@ -1140,7 +1258,7 @@ - !type:BuyerJobCondition whitelist: - Chaplain - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: uplinkRevolverCapGunFake @@ -1156,7 +1274,7 @@ whitelist: - Mime - Clown - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: uplinkBananaPeelExplosive @@ -1201,7 +1319,7 @@ - !type:BuyerJobCondition whitelist: - Clown - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: uplinkHotPotato @@ -1271,6 +1389,24 @@ - ResearchDirector - Chef +- type: listing + id: UplinkCaneBlade + name: uplink-cane-blade-name + description: uplink-cane-blade-desc + icon: { sprite: Objects/Weapons/Melee/cane.rsi, state: cane} + productEntity: CaneSheathFilled + cost: + Telecrystal: 5 + categories: + - UplinkJob + conditions: + - !type:BuyerJobCondition + whitelist: + - Librarian + - !type:BuyerWhitelistCondition + blacklist: + components: + - SurplusBundle - type: listing id: UplinkSingarityBeacon name: uplink-singularity-beacon-name @@ -1365,7 +1501,7 @@ Telecrystal: 8 categories: - UplinkArmor - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: UplinkHardsuitSyndieElite @@ -1377,7 +1513,7 @@ Telecrystal: 10 categories: - UplinkArmor - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: UplinkClothingOuterHardsuitJuggernaut @@ -1389,40 +1525,10 @@ Telecrystal: 12 categories: - UplinkArmor - saleLimit: 1 # WD EDIT + saleLimit: 1 # Misc -- type: listing - id: UplinkCyberpen - name: uplink-cyberpen-name - description: uplink-cyberpen-desc - productEntity: CyberPen - cost: - Telecrystal: 1 - categories: - - UplinkMisc - -- type: listing - id: UplinkDecoyDisk - name: uplink-decoy-disk-name - description: uplink-decoy-disk-desc - productEntity: NukeDiskFake - cost: - Telecrystal: 1 - categories: - - UplinkMisc - -- type: listing - id: UplinkCigarettes - name: uplink-cigarettes-name - description: uplink-cigarettes-desc - productEntity: CigPackSyndicate - cost: - Telecrystal: 2 - categories: - - UplinkMisc - - type: listing id: UplinkClothingConductingGloves name: uplink-clothing-conducting-gloves-name @@ -1450,7 +1556,7 @@ icon: { sprite: /Textures/Objects/Weapons/Melee/e_shield.rsi, state: eshield-on } productEntity: EnergyShield cost: - Telecrystal: 8 + Telecrystal: 6 # WD EDIT categories: - UplinkMisc conditions: @@ -1458,7 +1564,7 @@ whitelist: tags: - NukeOpsUplink - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: UplinkSoapSyndie @@ -1480,16 +1586,6 @@ categories: - UplinkMisc -- type: listing - id: UplinkUltrabrightLantern - name: uplink-ultrabright-lantern-name - description: uplink-ultrabright-lantern-desc - productEntity: LanternFlash - cost: - Telecrystal: 2 - categories: - - UplinkMisc - # - type: listing # id: UplinkGigacancerScanner # name: Ultragigacancer Health Analyzer @@ -1500,67 +1596,6 @@ # categories: # - UplinkMisc -- type: listing - id: UplinkNocturineChemistryBottle - name: uplink-nocturine-chemistry-bottle-name - description: uplink-nocturine-chemistry-bottle-desc - productEntity: NocturineChemistryBottle - cost: - Telecrystal: 6 - categories: - - UplinkMisc - -- type: listing - id: UplinkCombatMedkit - name: uplink-combat-medkit-name - description: uplink-combat-medkit-desc - productEntity: MedkitCombatFilled - cost: - Telecrystal: 5 - categories: - - UplinkMisc - -- type: listing - id: UplinkCombatMedipen - name: uplink-combat-medipen-name - description: uplink-combat-medipen-desc - productEntity: CombatMedipen - cost: - Telecrystal: 4 - categories: - - UplinkMisc - -- type: listing - id: UplinkStimpack - name: uplink-stimpack-name - description: uplink-stimpack-desc - productEntity: Stimpack - cost: - Telecrystal: 4 - categories: - - UplinkMisc - -- type: listing - id: UplinkStimkit - name: uplink-stimkit-name - description: uplink-stimkit-desc - productEntity: StimkitFilled - cost: - Telecrystal: 12 - categories: - - UplinkMisc - saleLimit: 1 # WD EDIT - -- type: listing - id: UplinkBribe - name: uplink-bribe-name - description: uplink-bribe-desc - productEntity: BriefcaseSyndieLobbyingBundleFilled - cost: - Telecrystal: 4 - categories: - - UplinkMisc - - type: listing id: UplinkMobCatMicrobomb name: uplink-mobcat-microbomb-name @@ -1576,7 +1611,7 @@ whitelist: tags: - NukeOpsUplink - saleLimit: 1 # WD EDIT + saleLimit: 1 - type: listing id: UplinkBackpackSyndicate diff --git a/Resources/Prototypes/CharacterItemGroups/backpackGroups.yml b/Resources/Prototypes/CharacterItemGroups/backpackGroups.yml new file mode 100644 index 0000000000..c12db85146 --- /dev/null +++ b/Resources/Prototypes/CharacterItemGroups/backpackGroups.yml @@ -0,0 +1,11 @@ +- type: characterItemGroup + id: LoadoutBackpacks + items: + - type: loadout + id: LoadoutBackpack + - type: loadout + id: LoadoutBackpackDuffel + - type: loadout + id: LoadoutBackpackSatchel + - type: loadout + id: LoadoutBackpackClown diff --git a/Resources/Prototypes/CharacterItemGroups/cargoGroups.yml b/Resources/Prototypes/CharacterItemGroups/cargoGroups.yml new file mode 100644 index 0000000000..6b12652b33 --- /dev/null +++ b/Resources/Prototypes/CharacterItemGroups/cargoGroups.yml @@ -0,0 +1,19 @@ +- type: characterItemGroup + id: LoadoutOuterCargo + items: + - type: loadout + id: LoadoutCargoOuterWinterCargo + - type: loadout + id: LoadoutCargoOuterWinterMiner + +- type: characterItemGroup + id: LoadoutNeckCargo + items: + - type: loadout + id: LoadoutCargoNeckGoliathCloak + +- type: characterItemGroup + id: LoadoutShoesCargo + items: + - type: loadout + id: LoadoutCargoShoesBootsWinterCargo diff --git a/Resources/Prototypes/CharacterItemGroups/engineeringGroups.yml b/Resources/Prototypes/CharacterItemGroups/engineeringGroups.yml new file mode 100644 index 0000000000..6db873cecf --- /dev/null +++ b/Resources/Prototypes/CharacterItemGroups/engineeringGroups.yml @@ -0,0 +1,39 @@ +- type: characterItemGroup + id: LoadoutUniformsEngineering + items: + - type: loadout + id: LoadoutEngineeringUniformHazard + - type: loadout + id: LoadoutEngineeringUniformJumpskirtSenior + - type: loadout + id: LoadoutEngineeringUniformJumpsuitSenior + +- type: characterItemGroup + id: LoadoutOuterEngineering + items: + - type: loadout + id: LoadoutEngineeringOuterHazard + - type: loadout + id: LoadoutEngineeringChickenSuit + +- type: characterItemGroup + id: LoadoutHeadEngineering + items: + - type: loadout + id: LoadoutEngineeringHeadBeret + - type: loadout + id: LoadoutEngineeringHeadHardhatBlue + - type: loadout + id: LoadoutEngineeringHeadHardhatOrange + - type: loadout + id: LoadoutEngineeringHeadHardhatRed + - type: loadout + id: LoadoutEngineeringHeadHardhatWhite + - type: loadout + id: LoadoutEngineeringHeadHardhatYellow + +- type: characterItemGroup + id: LoadoutEyesEngineering + items: + - type: loadout + id: LoadoutEngineeringEyesMeson \ No newline at end of file diff --git a/Resources/Prototypes/CharacterItemGroups/languageGroups.yml b/Resources/Prototypes/CharacterItemGroups/languageGroups.yml new file mode 100644 index 0000000000..a884992a23 --- /dev/null +++ b/Resources/Prototypes/CharacterItemGroups/languageGroups.yml @@ -0,0 +1,35 @@ +- type: characterItemGroup + id: TraitsLanguagesBasic + maxItems: 1 + items: + - type: trait + id: SignLanguage + - type: trait + id: SolCommon + - type: trait + id: Tradeband + - type: trait + id: Freespeak + - type: trait + id: Elyran + - type: trait + id: ValyrianStandard + - type: trait + id: Azaziba + +- type: characterItemGroup + id: TraitsAccents + maxItems: 1 + items: + - type: trait + id: FrontalLisp + - type: trait + id: Stutter + - type: trait + id: PirateAccent + - type: trait + id: Accentless + - type: trait + id: Southern + - type: trait + id: ScottishAccent \ No newline at end of file diff --git a/Resources/Prototypes/CharacterItemGroups/medicalGroups.yml b/Resources/Prototypes/CharacterItemGroups/medicalGroups.yml new file mode 100644 index 0000000000..396f07290f --- /dev/null +++ b/Resources/Prototypes/CharacterItemGroups/medicalGroups.yml @@ -0,0 +1,101 @@ +- type: characterItemGroup + id: LoadoutUniformsMedical + items: + - type: loadout + id: LoadoutMedicalUniformScrubsBlue + - type: loadout + id: LoadoutMedicalUniformScrubsGreen + - type: loadout + id: LoadoutMedicalUniformScrubsPurple + - type: loadout + id: LoadoutMedicalUniformScrubsCyan + - type: loadout + id: LoadoutMedicalUniformScrubsBlack + - type: loadout + id: LoadoutMedicalUniformScrubsPink + - type: loadout + id: LoadoutMedicalUniformScrubsCybersun + - type: loadout + id: LoadoutMedicalUniformParamedicJumpsuit + - type: loadout + id: LoadoutMedicalUniformParamedicJumpskirt + - type: loadout + id: LoadoutMedicalUniformJumpskirtSenior + - type: loadout + id: LoadoutMedicalUniformJumpsuitSenior + - type: loadout + id: LoadoutMedicalUniformJumpsuitChemShirt + +- type: characterItemGroup + id: LoadoutOuterMedical + items: + - type: loadout + id: LoadoutMedicalOuterLabcoat + - type: loadout + id: LoadoutMedicalOuterCybersunWindbreaker + - type: loadout + id: LoadoutMedicalOuterLabcoatChem + - type: loadout + id: LoadoutMedicalOuterApronChemist + +- type: characterItemGroup + id: LoadoutGlovesMedical + items: + - type: loadout + id: LoadoutMedicalGlovesNitrile + - type: loadout + id: LoadoutMedicalHandsGlovesChemist + +- type: characterItemGroup + id: LoadoutNeckMedical + items: + - type: loadout + id: LoadoutMedicalNeckStethoscope + - type: loadout + id: LoadoutMedicalBedsheetMedical + - type: loadout + id: LoadoutMedicalNeckTieChem + +- type: characterItemGroup + id: LoadoutHeadMedical + items: + - type: loadout + id: LoadoutMedicalHeadNurse + - type: loadout + id: LoadoutMedicalHeadBeretSeniorPhysician + - type: loadout + id: LoadoutMedicalHeadSurgcapBlue + - type: loadout + id: LoadoutMedicalHeadSurgcapPurple + - type: loadout + id: LoadoutMedicalHeadSurgcapGreen + - type: loadout + id: LoadoutMedicalHeadSurgcapCyan + - type: loadout + id: LoadoutMedicalHeadSurgcapBlack + - type: loadout + id: LoadoutMedicalHeadSurgcapPink + - type: loadout + id: LoadoutMedicalHeadSurgcapWhite + - type: loadout + id: LoadoutMedicalHeadSurgcapCybersun + +- type: characterItemGroup + id: LoadoutEyesMedical + items: + - type: loadout + id: LoadoutMedicalEyesHudMedical + - type: loadout + id: LoadoutMedicalEyesEyepatchHudMedical + - type: loadout + id: LoadoutMedicalEyesHudMedicalPrescription + - type: loadout + id: LoadoutMedicalEyesGlassesChemical + - type: loadout + id: LoadoutMedicalEyesGlassesChemist + +- type: characterItemGroup + id: LoadoutShoesMedical + items: + - type: loadout + id: LoadoutMedicalShoesEnclosedChem diff --git a/Resources/Prototypes/CharacterItemGroups/musicianInstrumentsGroups.yml b/Resources/Prototypes/CharacterItemGroups/musicianInstrumentsGroups.yml new file mode 100644 index 0000000000..ccad399e74 --- /dev/null +++ b/Resources/Prototypes/CharacterItemGroups/musicianInstrumentsGroups.yml @@ -0,0 +1,31 @@ +- type: characterItemGroup + id: LoadoutMusicianInstruments + maxItems: 3 + items: + - type: loadout + id: LoadoutItemSynthesizerInstrumentMusician + - type: loadout + id: LoadoutItemMicrophoneInstrumentMusician + - type: loadout + id: LoadoutItemKalimbaInstrumentMusician + - type: loadout + id: LoadoutItemTrumpetInstrumentMusician + - type: loadout + id: LoadoutItemElectricGuitarInstrumentMusician + - type: loadout + id: LoadoutItemBassGuitarInstrumentMusician + - type: loadout + id: LoadoutItemRockGuitarInstrumentMusician + - type: loadout + id: LoadoutItemAcousticGuitarInstrumentMusician + - type: loadout + id: LoadoutItemViolinInstrumentMusician + - type: loadout + id: LoadoutItemHarmonicaInstrumentMusician + - type: loadout + id: LoadoutItemAccordionInstrumentMusician + - type: loadout + id: LoadoutItemFluteInstrumentMusician + - type: loadout + id: LoadoutItemOcarinaInstrumentMusician + diff --git a/Resources/Prototypes/CharacterItemGroups/scienceGroups.yml b/Resources/Prototypes/CharacterItemGroups/scienceGroups.yml new file mode 100644 index 0000000000..e5e43760da --- /dev/null +++ b/Resources/Prototypes/CharacterItemGroups/scienceGroups.yml @@ -0,0 +1,103 @@ +- type: characterItemGroup + id: LoadoutUniformsScience + items: + - type: loadout + id: LoadoutScienceUniformJumpskirtSenior + - type: loadout + id: LoadoutScienceUniformJumpsuitSenior + - type: loadout + id: LoadoutScienceUniformJumpskirtRoboticist + - type: loadout + id: LoadoutScienceUniformJumpsuitRoboticist + - type: loadout + id: LoadoutScienceUniformJumpsuitMonasticRobeDark + - type: loadout + id: LoadoutScienceUniformJumpsuitMonasticRobeLight + +- type: characterItemGroup + id: LoadoutOuterScience + items: + - type: loadout + id: LoadoutScienceOuterCoat + - type: loadout + id: LoadoutScienceOuterLabcoat + - type: loadout + id: LoadoutSciencegOuterCoatRobo + - type: loadout + id: LoadoutScienceOuterWinterSci + - type: loadout + id: LoadoutScienceOuterLabcoatSeniorResearcher + - type: loadout + id: LoadoutScienceOuterExplorerLabcoat + - type: loadout + id: LoadoutOuterRobeTechPriest + - type: loadout + id: LoadoutOuterPlagueSuit + - type: loadout + id: LoadoutOuterNunRobe + - type: loadout + id: LoadoutOuterHoodieBlack + - type: loadout + id: LoadoutOuterHoodieChaplain + - type: loadout + id: LoadoutScienceOuterWinterCoatMantis + +- type: characterItemGroup + id: LoadoutGlovesScience + items: + - type: loadout + id: LoadoutScienceHandsGlovesColorPurple + - type: loadout + id: LoadoutScienceHandsGlovesLatex + - type: loadout + id: LoadoutScienceHandsGlovesRobohands + +- type: characterItemGroup + id: LoadoutNeckScience + items: + - type: loadout + id: LoadoutScienceNeckTieSci + - type: loadout + id: LoadoutScienceNeckScarfStripedPurple + - type: loadout + id: LoadoutScienceNeckStoleChaplain + - type: loadout + id: LoadoutScienceNeckScarfStripedBlack + +- type: characterItemGroup + id: LoadoutMaskScience + items: + - type: loadout + id: LoadoutScienceMaskPlague + +- type: characterItemGroup + id: LoadoutHeadScience + items: + - type: loadout + id: LoadoutScienceHeadHatBeret + - type: loadout + id: LoadoutHeadHoodTechPriest + - type: loadout + id: LoadoutScienceHeadHatFez + - type: loadout + id: LoadoutScienceHeadHatHoodNunHood + - type: loadout + id: LoadoutScienceHeadHatPlaguedoctor + - type: loadout + id: LoadoutScienceHeadHatWitch + - type: loadout + id: LoadoutScienceHeadHatWitch1 + +- type: characterItemGroup + id: LoadoutEyesScience + items: + - type: loadout + id: LoadoutScienceEyesHudDiagnostic + - type: loadout + id: LoadoutScienceEyesEyepatchHudDiag + +- type: characterItemGroup + id: LoadoutShoesScience + items: + - type: loadout + id: LoadoutScienceShoesBootsWinterSci diff --git a/Resources/Prototypes/CharacterItemGroups/securityGroups.yml b/Resources/Prototypes/CharacterItemGroups/securityGroups.yml new file mode 100644 index 0000000000..01a84566dd --- /dev/null +++ b/Resources/Prototypes/CharacterItemGroups/securityGroups.yml @@ -0,0 +1,215 @@ +- type: characterItemGroup + id: LoadoutUniformsSecurity + items: + - type: loadout + id: LoadoutSecurityUniformJumpsuitBlue + - type: loadout + id: LoadoutSecurityUniformJumpskirtBlue + - type: loadout + id: LoadoutSecurityUniformJumpsuitGrey + - type: loadout + id: LoadoutSecurityUniformJumpskirtGrey + - type: loadout + id: LoadoutSecurityUniformJumpsuitSenior + - type: loadout + id: LoadoutSecurityUniformJumpskirtSenior + - type: loadout + id: LoadoutSecurityUniformJumpsuitWardenBlue + - type: loadout + id: LoadoutSecurityUniformJumpskirtWardenBlue + - type: loadout + id: LoadoutSecurityUniformJumpsuitWardenGrey + - type: loadout + id: LoadoutSecurityUniformJumpskirtWardenGrey + - type: loadout + id: LoadoutSecurityUniformJumpsuitHoSBlue + - type: loadout + id: LoadoutSecurityUniformJumpskirtHoSBlue + - type: loadout + id: LoadoutSecurityUniformJumpsuitHoSGrey + - type: loadout + id: LoadoutSecurityUniformJumpskirtHoSGrey + - type: loadout + id: LoadoutUniformJumpsuitSecFormal + - type: loadout + id: LoadoutUniformJumpsuitSecSummer + +- type: characterItemGroup + id: LoadoutOuterSecurity + items: + - type: loadout + id: LoadoutClothingOuterArmorPlateCarrier + - type: loadout + id: LoadoutClothingOuterArmorDuraVest + - type: loadout + id: LoadoutClothingOuterCoatDetective + - type: loadout + id: LoadoutOuterVestDetective + - type: loadout + id: LoadoutClothingOuterCoatWarden + - type: loadout + id: LoadoutClothingOuterCoatHoSTrench + - type: loadout + id: LoadoutClothingOuterWinterHoS + - type: loadout + id: LoadoutClothingOuterArmorBasic + - type: loadout + id: LoadoutClothingOuterArmorSlim + +- type: characterItemGroup + id: LoadoutGlovesSecurity + items: + - type: loadout + id: LoadoutClothingHandsGlovesNitrile + +- type: characterItemGroup + id: LoadoutNeckSecurity + items: + - type: loadout + id: LoadoutClothingNeckCloakHos + - type: loadout + id: LoadoutClothingNeckMantleHOS + - type: loadout + id: LoadoutBedsheetBrigmedic + +- type: characterItemGroup + id: LoadoutHeadSecurity + items: + - type: loadout + id: LoadoutSecurityHeadHatBeret + - type: loadout + id: LoadoutClothingHeadHelmetBasic + - type: loadout + id: LoadoutClothingHeadHatBeretBrigmedic + - type: loadout + id: LoadoutClothingHeadHatBeretCorpsman + - type: loadout + id: LoadoutClothingHeadHatBeretWarden + - type: loadout + id: LoadoutClothingHeadHatBeretHoS + - type: loadout + id: LoadoutClothingHeadHelmetInsulated + +- type: characterItemGroup + id: LoadoutMaskSecurity + items: + - type: loadout + id: LoadoutSecurityMaskGasSwat + +- type: characterItemGroup + id: LoadoutBeltSecurity + items: + - type: loadout + id: LoadoutSecurityBeltWebbing + - type: loadout + id: LoadoutClothingBeltCorpsmanWebbing + - type: loadout + id: LoadoutClothingBeltSecurity + - type: loadout + id: LoadoutClothingBeltHolster + +- type: characterItemGroup + id: LoadoutEyesSecurity + items: + - type: loadout + id: LoadoutSecurityEyesHudSecurity + - type: loadout + id: ClothingEyesGlassesSunglasses + - type: loadout + id: LoadoutSecurityEyesEyepatchHudSecurity + - type: loadout + id: LoadoutSecurityEyesHudSecurityPrescription + - type: loadout + id: LoadoutClothingEyesGlassesSecurity + +- type: characterItemGroup + id: LoadoutShoesSecurity + items: + - type: loadout + id: LoadoutSecurityShoesJackboots + - type: loadout + id: LoadoutClothingShoesBootsCombat + +- type: characterItemGroup + maxItems: 5 + id: LoadoutEquipmentSecurity + items: + - type: loadout + id: LoadoutSecurityCombatKnife + - type: loadout + id: LoadoutSecurityFlash + - type: loadout + id: LoadoutMagazinePistol + - type: loadout + id: LoadoutMagazinePistolSpare + - type: loadout + id: LoadoutMagazinePistolRubber + - type: loadout + id: LoadoutMagazinePistolRubberSpare + - type: loadout + id: LoadoutSpeedLoaderMagnum + - type: loadout + id: LoadoutSpeedLoaderMagnumSpare + - type: loadout + id: LoadoutSpeedLoaderMagnumRubber + - type: loadout + id: LoadoutSpeedLoaderMagnumRubberSpare + +- type: characterItemGroup + maxItems: 1 + id: LoadoutWeaponSecurity + items: + - type: loadout + id: LoadoutSecurityDisabler + - type: loadout + id: LoadoutSecurityMk58 + - type: loadout + id: LoadoutSecurityMk58NonLethal + - type: loadout + id: LoadoutSecurityRevolver + - type: loadout + id: LoadoutSecurityRevolverNonLethal + - type: loadout + id: LoadoutSecurityRevolverDeckard + - type: loadout + id: LoadoutSecurityRevolverDeckardNonLethal + - type: loadout + id: LoadoutSecurityPistolN1984 + - type: loadout + id: LoadoutSecurityPistolN1984NonLethal + - type: loadout + id: LoadoutSecurityPistolViper + - type: loadout + id: LoadoutSecurityPistolViperNonLethal + - type: loadout + id: LoadoutSecurityEquipmentTruncheon + +- type: characterItemGroup + maxItems: 1 + id: LoadoutBackSecurity + items: + - type: loadout + id: LoadoutClothingBackSecurity + - type: loadout + id: LoadoutClothingBackSecuritySatchel + - type: loadout + id: LoadoutClothingBackSecurityDuffel + +- type: characterItemGroup + maxItems: 1 + id: LoadoutHoSWeapon + items: + - type: loadout + id: LoadoutCommandHoSPulsePistol + - type: loadout + id: LoadoutCommandHoSWt550 + - type: loadout + id: LoadoutCommandHoSKatanaSheath + - type: loadout + id: LoadoutCommandHoSC20r + - type: loadout + id: LoadoutCommandHoSBulldog + - type: loadout + id: LoadoutCommandHoSEnergySword + - type: loadout + id: LoadoutCommandHoSEnergyGun \ No newline at end of file diff --git a/Resources/Prototypes/CharacterItemGroups/serviceGroups.yml b/Resources/Prototypes/CharacterItemGroups/serviceGroups.yml new file mode 100644 index 0000000000..01ec0aaeea --- /dev/null +++ b/Resources/Prototypes/CharacterItemGroups/serviceGroups.yml @@ -0,0 +1,100 @@ +- type: characterItemGroup + id: LoadoutUniformsService + items: + - type: loadout + id: LoadoutServiceClownOutfitJester + - type: loadout + id: LoadoutServiceClownOutfitJesterAlt + - type: loadout + id: LoadoutServiceBartenderUniformPurple + - type: loadout + id: LoadoutServiceBotanistUniformOveralls + - type: loadout + id: LoadoutServiceLawyerUniformBlueSuit + - type: loadout + id: LoadoutServiceLawyerUniformBlueSkirt + - type: loadout + id: LoadoutServiceLawyerUniformRedSuit + - type: loadout + id: LoadoutServiceLawyerUniformRedSkirt + - type: loadout + id: LoadoutServiceLawyerUniformPurpleSuit + - type: loadout + id: LoadoutServiceLawyerUniformPurpleSkirt + - type: loadout + id: LoadoutServiceLawyerUniformGoodSuit + - type: loadout + id: LoadoutServiceLawyerUniformGoodSkirt + - type: loadout + id: LoadoutServiceReporterUniformJournalist + - type: loadout + id: LoadoutServiceReporterUniformDetectivesuit + - type: loadout + id: LoadoutServiceReporterUniformDetectiveskirt + +- type: characterItemGroup + id: LoadoutOuterService + items: + - type: loadout + id: LoadoutServiceClownOuterWinter + - type: loadout + id: LoadoutServiceClownOuterClownPriest + - type: loadout + id: LoadoutServiceMimeOuterWinter + +- type: characterItemGroup + id: LoadoutNeckService + items: + - type: loadout + id: LoadoutServiceClownBedsheetClown + - type: loadout + id: LoadoutServiceMimeBedsheetMime + +- type: characterItemGroup + id: LoadoutMaskService + items: + - type: loadout + id: LoadoutServiceClownMaskSexy + - type: loadout + id: LoadoutServiceMimeMaskSad + - type: loadout + id: LoadoutServiceMimeMaskScared + - type: loadout + id: LoadoutServiceMimeMaskSexy + +- type: characterItemGroup + id: LoadoutShoesService + items: + - type: loadout + id: LoadoutServiceClownBootsWinter + - type: loadout + id: LoadoutServiceMimeShoesBootsWinter + +- type: characterItemGroup + id: LoadoutEquipmentService + items: + - type: loadout + id: LoadoutServiceClownCowToolboxFilled + +# Bartender +- type: characterItemGroup + id: LoadoutBartenderOuterwear + items: + - type: loadout + id: LoadoutServiceBartenderArmorDuraVest + +- type: characterItemGroup + id: LoadoutBartenderAmmo + items: + - type: loadout + id: LoadoutServiceBartenderBoxBeanbags + - type: loadout + id: LoadoutServiceBartenderBoxLightRifleRubber + +- type: characterItemGroup + id: LoadoutBartenderWeapon + items: + - type: loadout + id: LoadoutServiceBartenderShotgunDoubleBarreledRubber + - type: loadout + id: LoadoutServiceBartenderMosinRubber diff --git a/Resources/Prototypes/Chemistry/metabolism_groups.yml b/Resources/Prototypes/Chemistry/metabolism_groups.yml index fc59edd81f..b2035671af 100644 --- a/Resources/Prototypes/Chemistry/metabolism_groups.yml +++ b/Resources/Prototypes/Chemistry/metabolism_groups.yml @@ -1,22 +1,29 @@ -# Default human metabolism groups. +# Default human metabolism groups. - type: metabolismGroup id: Poison + name: metabolism-group-poison - type: metabolismGroup id: Medicine + name: metabolism-group-medicine - type: metabolismGroup id: Narcotic + name: metabolism-group-narcotic - type: metabolismGroup id: Alcohol + name: metabolism-group-alcohol - type: metabolismGroup id: Food + name: metabolism-group-food - type: metabolismGroup id: Drink + name: metabolism-group-drink # Used for gases that have effects on being inhaled - type: metabolismGroup id: Gas + name: metabolism-group-gas diff --git a/Resources/Prototypes/Chemistry/metabolizer_types.yml b/Resources/Prototypes/Chemistry/metabolizer_types.yml index 316b8f02b5..b49fad6c27 100644 --- a/Resources/Prototypes/Chemistry/metabolizer_types.yml +++ b/Resources/Prototypes/Chemistry/metabolizer_types.yml @@ -3,52 +3,52 @@ - type: metabolizerType id: Animal - name: animal + name: metabolizer-type-animal - type: metabolizerType id: Bloodsucker - name: bloodsucker + name: metabolizer-type-bloodsucker - type: metabolizerType id: Dragon - name: dragon + name: metabolizer-type-dragon - type: metabolizerType id: Human - name: human + name: metabolizer-type-human - type: metabolizerType id: Slime - name: slime + name: metabolizer-type-slime - type: metabolizerType id: Vox - name: vox + name: metabolizer-type-vox - type: metabolizerType id: Rat - name: rat + name: metabolizer-type-rat - type: metabolizerType id: Plant - name: plant + name: metabolizer-type-plant - type: metabolizerType id: Dwarf - name: dwarf + name: metabolizer-type-dwarf - type: metabolizerType id: Moth - name: moth + name: metabolizer-type-moth - type: metabolizerType id: Arachnid - name: arachnid + name: metabolizer-type-arachnid - type: metabolizerType id: Vampiric - name: vampiric + name: metabolizer-type-vampiric - type: metabolizerType id: LiquorLifeline - name: liquorlifeline + name: metabolizer-type-liquorlifeline diff --git a/Resources/Prototypes/Damage/groups.yml b/Resources/Prototypes/Damage/groups.yml index 07bfe2edcd..71e4acdaea 100644 --- a/Resources/Prototypes/Damage/groups.yml +++ b/Resources/Prototypes/Damage/groups.yml @@ -1,5 +1,6 @@ - type: damageGroup id: Brute + name: damage-group-brute damageTypes: - Blunt - Slash @@ -7,6 +8,7 @@ - type: damageGroup id: Burn + name: damage-group-burn damageTypes: - Heat - Shock @@ -19,6 +21,7 @@ # bloodloss, not this whole group, unless you have a wonder drug that affects both. - type: damageGroup id: Airloss + name: damage-group-airloss damageTypes: - Asphyxiation - Bloodloss @@ -27,11 +30,13 @@ # Though there are probably some radioactive poisons. - type: damageGroup id: Toxin + name: damage-group-toxin damageTypes: - Poison - Radiation - type: damageGroup id: Genetic + name: damage-group-genetic damageTypes: - Cellular diff --git a/Resources/Prototypes/Damage/modifier_sets.yml b/Resources/Prototypes/Damage/modifier_sets.yml index 811d5a580c..39c956df62 100644 --- a/Resources/Prototypes/Damage/modifier_sets.yml +++ b/Resources/Prototypes/Damage/modifier_sets.yml @@ -198,12 +198,10 @@ - type: damageModifierSet id: Zombie #Blunt resistant and immune to biological threats, but can be hacked apart and burned coefficients: - Blunt: 0.7 - Slash: 1.1 - Piercing: 0.9 - Shock: 1.25 + Blunt: 0.6 + Piercing: 0.8 Cold: 0.3 - Heat: 1.5 + Heat: 1.25 Poison: 0.0 Radiation: 0.0 @@ -244,7 +242,7 @@ Piercing: 0.2 Shock: 0.0 Cold: 0.0 - Heat: -1 # heat damage cauterizes wounds, but will still hurt obviously. + Heat: -0.5 # heat damage cauterizes wounds, but will still hurt obviously. Poison: 0.0 Radiation: 0.0 Asphyxiation: 0.0 @@ -359,3 +357,10 @@ Slash: 0.6 Piercing: 0.6 Holy: 1.5 + +- type: damageModifierSet + id: DermalArmor + coefficients: + Blunt: 0.9 + Slash: 0.9 + Piercing: 0.9 diff --git a/Resources/Prototypes/Damage/types.yml b/Resources/Prototypes/Damage/types.yml index bacaf1f798..0107da2482 100644 --- a/Resources/Prototypes/Damage/types.yml +++ b/Resources/Prototypes/Damage/types.yml @@ -3,6 +3,7 @@ # Usually healed automatically if entity can breathe - type: damageType id: Asphyxiation + name: damage-type-asphyxiation armorCoefficientPrice: 5 armorFlatPrice: 50 @@ -11,57 +12,68 @@ # Represents there not enough blood to supply oxygen (or equivalent). - type: damageType id: Bloodloss + name: damage-type-bloodloss armorCoefficientPrice: 5 armorFlatPrice: 50 - type: damageType id: Blunt + name: damage-type-blunt armorCoefficientPrice: 2 armorFlatPrice: 10 - type: damageType id: Cellular + name: damage-type-cellular armorCoefficientPrice: 5 armorFlatPrice: 30 - type: damageType id: Caustic + name: damage-type-caustic armorCoefficientPrice: 5 armorFlatPrice: 30 - type: damageType id: Cold + name: damage-type-cold armorCoefficientPrice: 2.5 armorFlatPrice: 20 - type: damageType id: Heat + name: damage-type-heat armorCoefficientPrice: 2.5 armorFlatPrice: 20 - type: damageType id: Piercing + name: damage-type-piercing armorCoefficientPrice: 2 armorFlatPrice: 10 # Poison damage. Generally caused by various reagents being metabolised. - type: damageType id: Poison + name: damage-type-poison armorCoefficientPrice: 10 armorFlatPrice: 60 - type: damageType id: Radiation + name: damage-type-radiation armorCoefficientPrice: 2.5 armorFlatPrice: 16 - type: damageType id: Shock + name: damage-type-shock armorCoefficientPrice: 2.5 armorFlatPrice: 20 - type: damageType id: Slash + name: damage-type-slash armorCoefficientPrice: 2 armorFlatPrice: 10 @@ -69,5 +81,6 @@ # Exclusive for structures such as walls, airlocks and others. - type: damageType id: Structural + name: damage-type-structural armorCoefficientPrice: 1 armorFlatPrice: 1 diff --git a/Resources/Prototypes/Datasets/corporations.yml b/Resources/Prototypes/Datasets/corporations.yml new file mode 100644 index 0000000000..55b1d53d2f --- /dev/null +++ b/Resources/Prototypes/Datasets/corporations.yml @@ -0,0 +1,12 @@ +- type: dataset + id: TraitorCorporations + values: + - "CyberSun Industries" + - "Gorlex Marauders" + - "MI13" + - "Tiger Cooperative" + - "S.E.L.F." + - "Animal Rights Consortium" + - "Donk Corporation" + - "Waffle Corporation" + - "Interdyne Pharmaceutics" \ No newline at end of file diff --git a/Resources/Prototypes/Datasets/criminal_records.yml b/Resources/Prototypes/Datasets/criminal_records.yml index ee28309184..fe21757cd2 100644 --- a/Resources/Prototypes/Datasets/criminal_records.yml +++ b/Resources/Prototypes/Datasets/criminal_records.yml @@ -2,17 +2,23 @@ - type: dataset id: CriminalRecordsWantedReasonPlaceholders values: + - Ate a delicious valid salad - Ate their own shoes - Being a clown - Being a mime - Breathed the wrong way - Broke into evac - Did literally nothing + - Did their job - Didn't say hello to me - Drank one too many + - Had two toolboxes, that's too many - Lied on common radio - Looked at me funny + - Lubed up the entire way to evac + - Set AME up on time - Slipped the HoS - Stole the clown's mask - Told an unfunny joke - Wore a gasmask + - Wore boxing gloves diff --git a/Resources/Prototypes/Decals/Overlays/grayscale.yml b/Resources/Prototypes/Decals/Overlays/grayscale.yml index 00d1d88d20..dfebeee3f9 100644 --- a/Resources/Prototypes/Decals/Overlays/grayscale.yml +++ b/Resources/Prototypes/Decals/Overlays/grayscale.yml @@ -3,7 +3,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: fulltile_overlay - type: decal @@ -11,7 +11,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: brick_box - type: decal @@ -19,7 +19,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: brick_corner_ne - type: decal @@ -27,7 +27,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: brick_corner_nw - type: decal @@ -35,7 +35,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: brick_corner_se - type: decal @@ -43,7 +43,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: brick_corner_sw - type: decal @@ -51,7 +51,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: brick_end_e - type: decal @@ -59,7 +59,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: brick_end_n - type: decal @@ -67,7 +67,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: brick_end_s - type: decal @@ -75,7 +75,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: brick_end_w - type: decal @@ -83,7 +83,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: brick_line_e - type: decal @@ -91,7 +91,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: brick_line_n - type: decal @@ -99,7 +99,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: brick_line_s - type: decal @@ -107,7 +107,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: brick_line_w - type: decal @@ -115,7 +115,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: halftile_overlay - type: decal @@ -123,7 +123,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: halftile_overlay_90 - type: decal @@ -131,7 +131,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: halftile_overlay_180 - type: decal @@ -139,7 +139,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: halftile_overlay_270 - type: decal @@ -147,7 +147,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: quartertile_overlay - type: decal @@ -155,7 +155,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: quartertile_overlay_90 - type: decal @@ -163,7 +163,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: quartertile_overlay_180 - type: decal @@ -171,7 +171,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: quartertile_overlay_270 - type: decal @@ -179,7 +179,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: threequartertile_overlay - type: decal @@ -187,7 +187,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: threequartertile_overlay_90 - type: decal @@ -195,7 +195,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: threequartertile_overlay_180 - type: decal @@ -203,7 +203,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: threequartertile_overlay_270 - type: decal @@ -211,7 +211,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: mono - type: decal @@ -219,7 +219,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: checkerNESW - type: decal @@ -227,7 +227,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: checkerNWSE - type: decal @@ -235,7 +235,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: diagonal - type: decal @@ -243,7 +243,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: diagonal_checker_a - type: decal @@ -251,7 +251,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: diagonal_checker_b - type: decal @@ -259,7 +259,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: herringbone - type: decal @@ -267,7 +267,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile - type: decal @@ -275,7 +275,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile_checker_a - type: decal @@ -283,7 +283,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile_checker_b - type: decal @@ -291,7 +291,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile_diagonal - type: decal @@ -299,7 +299,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile_diagonal_a - type: decal @@ -307,7 +307,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile_diagonal_b - type: decal @@ -315,7 +315,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile_box - type: decal @@ -323,7 +323,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile_corner_ne - type: decal @@ -331,7 +331,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile_corner_nw - type: decal @@ -339,7 +339,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile_corner_se - type: decal @@ -347,7 +347,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile_corner_sw - type: decal @@ -355,7 +355,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile_end_e - type: decal @@ -363,7 +363,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile_end_n - type: decal @@ -371,7 +371,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile_end_s - type: decal @@ -379,7 +379,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile_end_w - type: decal @@ -387,7 +387,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile_inner_ne - type: decal @@ -395,7 +395,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile_inner_nw - type: decal @@ -403,7 +403,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile_inner_se - type: decal @@ -411,7 +411,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile_inner_sw - type: decal @@ -419,7 +419,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile_line_e - type: decal @@ -427,7 +427,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile_line_n - type: decal @@ -435,7 +435,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile_line_s - type: decal @@ -443,7 +443,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: minitile_line_w - type: decal @@ -451,7 +451,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: offset - type: decal @@ -459,7 +459,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: offset_checker_a - type: decal @@ -467,7 +467,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: offset_checker_b - type: decal @@ -475,7 +475,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: pavement - type: decal @@ -483,7 +483,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: pavement_checker_a - type: decal @@ -491,7 +491,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: pavement_checker_b - type: decal @@ -499,7 +499,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: pavement_vertical - type: decal @@ -507,7 +507,7 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: pavement_vertical_checker_a - type: decal @@ -515,5 +515,5 @@ tags: ["station", "overlay"] defaultCustomColor: true sprite: - sprite: _White/Decals/Overlays/greyscale.rsi + sprite: Decals/Overlays/greyscale.rsi state: pavement_vertical_checker_b diff --git a/Resources/Prototypes/Decals/bricktile_dark.yml b/Resources/Prototypes/Decals/bricktile_dark.yml index 7c2c4b3853..87dbc5d785 100644 --- a/Resources/Prototypes/Decals/bricktile_dark.yml +++ b/Resources/Prototypes/Decals/bricktile_dark.yml @@ -2,117 +2,117 @@ id: BrickTileDarkBox tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: dark_box - type: decal id: BrickTileDarkCornerNe tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: dark_corner_ne - type: decal id: BrickTileDarkCornerSe tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: dark_corner_se - type: decal id: BrickTileDarkCornerNw tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: dark_corner_nw - type: decal id: BrickTileDarkCornerSw tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: dark_corner_sw - type: decal id: BrickTileDarkInnerNe tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: dark_inner_ne - type: decal id: BrickTileDarkInnerSe tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: dark_inner_se - type: decal id: BrickTileDarkInnerNw tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: dark_inner_nw - type: decal id: BrickTileDarkInnerSw tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: dark_inner_sw - type: decal id: BrickTileDarkEndN tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: dark_end_n - type: decal id: BrickTileDarkEndE tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: dark_end_e - type: decal id: BrickTileDarkEndS tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: dark_end_s - type: decal id: BrickTileDarkEndW tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: dark_end_w - type: decal id: BrickTileDarkLineN tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: dark_line_n - type: decal id: BrickTileDarkLineE tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: dark_line_e - type: decal id: BrickTileDarkLineS tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: dark_line_s - type: decal id: BrickTileDarkLineW tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: dark_line_w diff --git a/Resources/Prototypes/Decals/bricktile_steel.yml b/Resources/Prototypes/Decals/bricktile_steel.yml index 03dc042f87..b45a05c19d 100644 --- a/Resources/Prototypes/Decals/bricktile_steel.yml +++ b/Resources/Prototypes/Decals/bricktile_steel.yml @@ -2,117 +2,117 @@ id: BrickTileSteelBox tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: steel_box - type: decal id: BrickTileSteelCornerNe tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: steel_corner_ne - type: decal id: BrickTileSteelCornerSe tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: steel_corner_se - type: decal id: BrickTileSteelCornerNw tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: steel_corner_nw - type: decal id: BrickTileSteelCornerSw tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: steel_corner_sw - type: decal id: BrickTileSteelInnerNe tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: steel_inner_ne - type: decal id: BrickTileSteelInnerSe tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: steel_inner_se - type: decal id: BrickTileSteelInnerNw tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: steel_inner_nw - type: decal id: BrickTileSteelInnerSw tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: steel_inner_sw - type: decal id: BrickTileSteelEndN tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: steel_end_n - type: decal id: BrickTileSteelEndE tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: steel_end_e - type: decal id: BrickTileSteelEndS tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: steel_end_s - type: decal id: BrickTileSteelEndW tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: steel_end_w - type: decal id: BrickTileSteelLineN tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: steel_line_n - type: decal id: BrickTileSteelLineE tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: steel_line_e - type: decal id: BrickTileSteelLineS tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: steel_line_s - type: decal id: BrickTileSteelLineW tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: steel_line_w diff --git a/Resources/Prototypes/Decals/bricktile_white.yml b/Resources/Prototypes/Decals/bricktile_white.yml index e1d1b3090c..7ec78b5653 100644 --- a/Resources/Prototypes/Decals/bricktile_white.yml +++ b/Resources/Prototypes/Decals/bricktile_white.yml @@ -2,117 +2,117 @@ id: BrickTileWhiteBox tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: white_box - type: decal id: BrickTileWhiteCornerNe tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: white_corner_ne - type: decal id: BrickTileWhiteCornerSe tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: white_corner_se - type: decal id: BrickTileWhiteCornerNw tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: white_corner_nw - type: decal id: BrickTileWhiteCornerSw tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: white_corner_sw - type: decal id: BrickTileWhiteInnerNe tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: white_inner_ne - type: decal id: BrickTileWhiteInnerSe tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: white_inner_se - type: decal id: BrickTileWhiteInnerNw tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: white_inner_nw - type: decal id: BrickTileWhiteInnerSw tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: white_inner_sw - type: decal id: BrickTileWhiteEndN tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: white_end_n - type: decal id: BrickTileWhiteEndE tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: white_end_e - type: decal id: BrickTileWhiteEndS tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: white_end_s - type: decal id: BrickTileWhiteEndW tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: white_end_w - type: decal id: BrickTileWhiteLineN tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: white_line_n - type: decal id: BrickTileWhiteLineE tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: white_line_e - type: decal id: BrickTileWhiteLineS tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: white_line_s - type: decal id: BrickTileWhiteLineW tags: ["station", "markings"] sprite: - sprite: _White/Decals/bricktile.rsi + sprite: Decals/bricktile.rsi state: white_line_w diff --git a/Resources/Prototypes/Decals/markings.yml b/Resources/Prototypes/Decals/markings.yml index aec2c7d490..12fb7204b7 100644 --- a/Resources/Prototypes/Decals/markings.yml +++ b/Resources/Prototypes/Decals/markings.yml @@ -2,7 +2,7 @@ id: Arrows tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: arrows - type: decal @@ -10,14 +10,14 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: arrows_greyscale - type: decal id: Bot tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: bot - type: decal @@ -25,14 +25,14 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: bot_greyscale - type: decal id: BotLeft tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: bot_left - type: decal @@ -40,14 +40,14 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: bot_left_greyscale - type: decal id: BotRight tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: bot_right - type: decal @@ -55,14 +55,14 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: bot_right_greyscale - type: decal id: Box tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: box - type: decal @@ -70,14 +70,14 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: box_greyscale - type: decal id: Caution tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: caution - type: decal @@ -85,14 +85,14 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: caution_greyscale - type: decal id: Delivery tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: delivery - type: decal @@ -100,14 +100,14 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: delivery_greyscale - type: decal id: LoadingArea tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: loading_area - type: decal @@ -115,14 +115,14 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: loading_area_greyscale - type: decal id: StandClear tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: standclear - type: decal @@ -130,14 +130,14 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: standclear_greyscale - type: decal id: WarnBox tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_box - type: decal @@ -145,7 +145,7 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_box_greyscale # TODO: Remove from here to... @@ -155,7 +155,7 @@ showMenu: false tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_end - type: decal @@ -163,7 +163,7 @@ showMenu: false tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_end_greyscale # TODO: Down here @@ -172,7 +172,7 @@ id: WarnFull tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_full - type: decal @@ -180,7 +180,7 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_full_greyscale # TODO: remove from here down to... @@ -190,7 +190,7 @@ showMenu: false tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warningline - type: decal @@ -198,7 +198,7 @@ showMenu: false tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warningline_greyscale - type: decal @@ -206,7 +206,7 @@ showMenu: false tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warninglinecorner - type: decal @@ -214,7 +214,7 @@ showMenu: false tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warninglinecorner_greyscale - type: decal @@ -222,7 +222,7 @@ showMenu: false tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warninglinecorner_flipped - type: decal @@ -230,7 +230,7 @@ showMenu: false tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warninglinecorner_flipped_greyscale - type: decal @@ -238,7 +238,7 @@ showMenu: false tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_corner - type: decal @@ -246,7 +246,7 @@ showMenu: false tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_corner_greyscale - type: decal @@ -254,7 +254,7 @@ showMenu: false tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_corner_flipped - type: decal @@ -262,7 +262,7 @@ showMenu: false tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_corner_flipped_greyscale # TODO: here @@ -272,7 +272,7 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_corner_greyscale_ne - type: decal @@ -280,7 +280,7 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_corner_greyscale_nw - type: decal @@ -288,7 +288,7 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_corner_greyscale_se - type: decal @@ -296,35 +296,35 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_corner_greyscale_sw - type: decal id: WarnCornerNE tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_corner_ne - type: decal id: WarnCornerNW tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_corner_nw - type: decal id: WarnCornerSE tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_corner_se - type: decal id: WarnCornerSW tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_corner_sw - type: decal @@ -332,7 +332,7 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_corner_small_greyscale_ne - type: decal @@ -340,7 +340,7 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_corner_small_greyscale_nw - type: decal @@ -348,7 +348,7 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_corner_small_greyscale_se - type: decal @@ -356,63 +356,63 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_corner_small_greyscale_sw - type: decal id: WarnCornerSmallNE tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_corner_small_ne - type: decal id: WarnCornerSmallNW tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_corner_small_nw - type: decal id: WarnCornerSmallSE tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_corner_small_se - type: decal id: WarnCornerSmallSW tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_corner_small_sw - type: decal id: WarnEndE tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_end_e - type: decal id: WarnEndN tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_end_n - type: decal id: WarnEndS tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_end_s - type: decal id: WarnEndW tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_end_w - type: decal @@ -420,7 +420,7 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_end_greyscale_e - type: decal @@ -428,7 +428,7 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_end_greyscale_n - type: decal @@ -436,7 +436,7 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_end_greyscale_s - type: decal @@ -444,35 +444,35 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_end_greyscale_w - type: decal id: WarnLineE tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_line_e - type: decal id: WarnLineW tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_line_n - type: decal id: WarnLineN tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_line_s - type: decal id: WarnLineS tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_line_w - type: decal @@ -480,7 +480,7 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_line_greyscale_e - type: decal @@ -488,7 +488,7 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_line_greyscale_n - type: decal @@ -496,7 +496,7 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_line_greyscale_s - type: decal @@ -504,19 +504,19 @@ tags: ["station", "markings"] defaultCustomColor: true sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: warn_line_greyscale_w - type: decal id: HatchSmall tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: hatch_small - type: decal id: VentSmall tags: ["station", "markings"] sprite: - sprite: _White/Decals/markings.rsi + sprite: Decals/markings.rsi state: vent_small diff --git a/Resources/Prototypes/Decals/minitile_dark.yml b/Resources/Prototypes/Decals/minitile_dark.yml index 87cedfbc6a..ea54205446 100644 --- a/Resources/Prototypes/Decals/minitile_dark.yml +++ b/Resources/Prototypes/Decals/minitile_dark.yml @@ -2,117 +2,117 @@ id: MiniTileDarkBox tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: dark_box - type: decal id: MiniTileDarkCornerNe tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: dark_corner_ne - type: decal id: MiniTileDarkCornerSe tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: dark_corner_se - type: decal id: MiniTileDarkCornerNw tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: dark_corner_nw - type: decal id: MiniTileDarkCornerSw tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: dark_corner_sw - type: decal id: MiniTileDarkInnerNe tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: dark_inner_ne - type: decal id: MiniTileDarkInnerSe tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: dark_inner_se - type: decal id: MiniTileDarkInnerNw tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: dark_inner_nw - type: decal id: MiniTileDarkInnerSw tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: dark_inner_sw - type: decal id: MiniTileDarkEndN tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: dark_end_n - type: decal id: MiniTileDarkEndE tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: dark_end_e - type: decal id: MiniTileDarkEndS tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: dark_end_s - type: decal id: MiniTileDarkEndW tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: dark_end_w - type: decal id: MiniTileDarkLineN tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: dark_line_n - type: decal id: MiniTileDarkLineE tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: dark_line_e - type: decal id: MiniTileDarkLineS tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: dark_line_s - type: decal id: MiniTileDarkLineW tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: dark_line_w diff --git a/Resources/Prototypes/Decals/minitile_steel.yml b/Resources/Prototypes/Decals/minitile_steel.yml index 13d059b2a3..c6bd059ee8 100644 --- a/Resources/Prototypes/Decals/minitile_steel.yml +++ b/Resources/Prototypes/Decals/minitile_steel.yml @@ -2,117 +2,117 @@ id: MiniTileSteelBox tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: steel_box - type: decal id: MiniTileSteelCornerNe tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: steel_corner_ne - type: decal id: MiniTileSteelCornerSe tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: steel_corner_se - type: decal id: MiniTileSteelCornerNw tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: steel_corner_nw - type: decal id: MiniTileSteelCornerSw tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: steel_corner_sw - type: decal id: MiniTileSteelInnerNe tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: steel_inner_ne - type: decal id: MiniTileSteelInnerSe tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: steel_inner_se - type: decal id: MiniTileSteelInnerNw tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: steel_inner_nw - type: decal id: MiniTileSteelInnerSw tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: steel_inner_sw - type: decal id: MiniTileSteelEndN tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: steel_end_n - type: decal id: MiniTileSteelEndE tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: steel_end_e - type: decal id: MiniTileSteelEndS tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: steel_end_s - type: decal id: MiniTileSteelEndW tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: steel_end_w - type: decal id: MiniTileSteelLineN tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: steel_line_n - type: decal id: MiniTileSteelLineE tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: steel_line_e - type: decal id: MiniTileSteelLineS tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: steel_line_s - type: decal id: MiniTileSteelLineW tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: steel_line_w diff --git a/Resources/Prototypes/Decals/minitile_white.yml b/Resources/Prototypes/Decals/minitile_white.yml index 9e9915d8be..163ac37d53 100644 --- a/Resources/Prototypes/Decals/minitile_white.yml +++ b/Resources/Prototypes/Decals/minitile_white.yml @@ -2,117 +2,117 @@ id: MiniTileWhiteBox tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: white_box - type: decal id: MiniTileWhiteCornerNe tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: white_corner_ne - type: decal id: MiniTileWhiteCornerSe tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: white_corner_se - type: decal id: MiniTileWhiteCornerNw tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: white_corner_nw - type: decal id: MiniTileWhiteCornerSw tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: white_corner_sw - type: decal id: MiniTileWhiteInnerNe tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: white_inner_ne - type: decal id: MiniTileWhiteInnerSe tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: white_inner_se - type: decal id: MiniTileWhiteInnerNw tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: white_inner_nw - type: decal id: MiniTileWhiteInnerSw tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: white_inner_sw - type: decal id: MiniTileWhiteEndN tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: white_end_n - type: decal id: MiniTileWhiteEndE tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: white_end_e - type: decal id: MiniTileWhiteEndS tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: white_end_s - type: decal id: MiniTileWhiteEndW tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: white_end_w - type: decal id: MiniTileWhiteLineN tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: white_line_n - type: decal id: MiniTileWhiteLineE tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: white_line_e - type: decal id: MiniTileWhiteLineS tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: white_line_s - type: decal id: MiniTileWhiteLineW tags: ["station", "markings"] sprite: - sprite: _White/Decals/minitile.rsi + sprite: Decals/minitile.rsi state: white_line_w diff --git a/Resources/Prototypes/Decals/wood_trim_thin.yml b/Resources/Prototypes/Decals/wood_trim_thin.yml index 915bfe04f2..9e3084f38d 100644 --- a/Resources/Prototypes/Decals/wood_trim_thin.yml +++ b/Resources/Prototypes/Decals/wood_trim_thin.yml @@ -2,117 +2,117 @@ id: WoodTrimThinBox tags: ["station", "markings"] sprite: - sprite: _White/Decals/wood_trim.rsi + sprite: Decals/wood_trim.rsi state: thin_box - type: decal id: WoodTrimThinCornerNe tags: ["station", "markings"] sprite: - sprite: _White/Decals/wood_trim.rsi + sprite: Decals/wood_trim.rsi state: thin_corner_ne - type: decal id: WoodTrimThinCornerSe tags: ["station", "markings"] sprite: - sprite: _White/Decals/wood_trim.rsi + sprite: Decals/wood_trim.rsi state: thin_corner_se - type: decal id: WoodTrimThinCornerNw tags: ["station", "markings"] sprite: - sprite: _White/Decals/wood_trim.rsi + sprite: Decals/wood_trim.rsi state: thin_corner_nw - type: decal id: WoodTrimThinCornerSw tags: ["station", "markings"] sprite: - sprite: _White/Decals/wood_trim.rsi + sprite: Decals/wood_trim.rsi state: thin_corner_sw - type: decal id: WoodTrimThinInnerNe tags: ["station", "markings"] sprite: - sprite: _White/Decals/wood_trim.rsi + sprite: Decals/wood_trim.rsi state: thin_inner_ne - type: decal id: WoodTrimThinInnerSe tags: ["station", "markings"] sprite: - sprite: _White/Decals/wood_trim.rsi + sprite: Decals/wood_trim.rsi state: thin_inner_se - type: decal id: WoodTrimThinInnerNw tags: ["station", "markings"] sprite: - sprite: _White/Decals/wood_trim.rsi + sprite: Decals/wood_trim.rsi state: thin_inner_nw - type: decal id: WoodTrimThinInnerSw tags: ["station", "markings"] sprite: - sprite: _White/Decals/wood_trim.rsi + sprite: Decals/wood_trim.rsi state: thin_inner_sw - type: decal id: WoodTrimThinEndN tags: ["station", "markings"] sprite: - sprite: _White/Decals/wood_trim.rsi + sprite: Decals/wood_trim.rsi state: thin_end_n - type: decal id: WoodTrimThinEndE tags: ["station", "markings"] sprite: - sprite: _White/Decals/wood_trim.rsi + sprite: Decals/wood_trim.rsi state: thin_end_e - type: decal id: WoodTrimThinEndS tags: ["station", "markings"] sprite: - sprite: _White/Decals/wood_trim.rsi + sprite: Decals/wood_trim.rsi state: thin_end_s - type: decal id: WoodTrimThinEndW tags: ["station", "markings"] sprite: - sprite: _White/Decals/wood_trim.rsi + sprite: Decals/wood_trim.rsi state: thin_end_w - type: decal id: WoodTrimThinLineN tags: ["station", "markings"] sprite: - sprite: _White/Decals/wood_trim.rsi + sprite: Decals/wood_trim.rsi state: thin_line_n - type: decal id: WoodTrimThinLineE tags: ["station", "markings"] sprite: - sprite: _White/Decals/wood_trim.rsi + sprite: Decals/wood_trim.rsi state: thin_line_e - type: decal id: WoodTrimThinLineS tags: ["station", "markings"] sprite: - sprite: _White/Decals/wood_trim.rsi + sprite: Decals/wood_trim.rsi state: thin_line_s - type: decal id: WoodTrimThinLineW tags: ["station", "markings"] sprite: - sprite: _White/Decals/wood_trim.rsi + sprite: Decals/wood_trim.rsi state: thin_line_w diff --git a/Resources/Prototypes/DeltaV/Body/Organs/harpy.yml b/Resources/Prototypes/DeltaV/Body/Organs/harpy.yml index 2d47ecd352..adc626bc11 100644 --- a/Resources/Prototypes/DeltaV/Body/Organs/harpy.yml +++ b/Resources/Prototypes/DeltaV/Body/Organs/harpy.yml @@ -10,7 +10,7 @@ - state: lung-r - type: Lung - type: Metabolizer - updateFrequency: 2.0 + updateInterval: 2.0 removeEmpty: true solutionOnBody: false solution: "Lung" diff --git a/Resources/Prototypes/DeltaV/Catalog/Fills/Crates/vending.yml b/Resources/Prototypes/DeltaV/Catalog/Fills/Crates/vending.yml index 985b0443e2..067e5be6e6 100644 --- a/Resources/Prototypes/DeltaV/Catalog/Fills/Crates/vending.yml +++ b/Resources/Prototypes/DeltaV/Catalog/Fills/Crates/vending.yml @@ -4,4 +4,4 @@ components: - type: StorageFill contents: - - id: VendingMachineRestockPride \ No newline at end of file + - id: VendingMachineRestockPride diff --git a/Resources/Prototypes/DeltaV/Catalog/Fills/Items/Belts/belts.yml b/Resources/Prototypes/DeltaV/Catalog/Fills/Items/Belts/belts.yml index ecffae4c36..2e9d2f7ff4 100644 --- a/Resources/Prototypes/DeltaV/Catalog/Fills/Items/Belts/belts.yml +++ b/Resources/Prototypes/DeltaV/Catalog/Fills/Items/Belts/belts.yml @@ -8,6 +8,16 @@ - id: Wakizashi - id: Katana +- type: entity + id: ClothingBeltKatanaSheathFilledHoS + parent: ClothingBeltKatanaSheathFilled + suffix: Filled + name: antique katana sheaths + description: An ornate belt, wrapped in gold filigree, with a ribbon made from a stasis-field preserved swatch of linen. The history of this sheath has been lost to time. + components: + - type: StealTarget + stealGroup: ClothingBeltKatanaSheathFilledHoS + - type: entity id: ClothingBeltCorpsmanWebbingFilled parent: ClothingBeltCorpsmanWebbing diff --git a/Resources/Prototypes/DeltaV/Catalog/Jukebox/Standard.yml b/Resources/Prototypes/DeltaV/Catalog/Jukebox/Standard.yml new file mode 100644 index 0000000000..aec4fc3503 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Catalog/Jukebox/Standard.yml @@ -0,0 +1,104 @@ +# sorted alphabetically based on filenames in the folder Resources/Audio/DeltaV/Jukebox +# keep it ordered or I'll stab you + +- type: jukebox + id: ADiffReal + name: Andreas Viklund - A.D.R (Lagoona rmx) + path: + path: /Audio/DeltaV/Jukebox/a_different_reality_lagoona_remix.xm-MONO.ogg + +- type: jukebox + id: AggAss + name: melcom - Aggravated Assault + path: + path: /Audio/DeltaV/Jukebox/aggravated.it-MONO.ogg + +- type: jukebox + id: AutEqu + name: lemonade - Autumnal Equinox + path: + path: /Audio/DeltaV/Jukebox/autumnal_equinox.xm-MONO.ogg + +- type: jukebox + id: DosHighUmb + name: MASTER BOOT RECORD - DOS=HIGH, UMB + path: + path: /Audio/DeltaV/Jukebox/DOS=HIGH,_UMB.ogg + +- type: jukebox + id: DrozAlone + name: Drozerix - Alone + path: + path: /Audio/DeltaV/Jukebox/drozerix_-_alone.xm-MONO.ogg + +- type: jukebox + id: DrozLeisure + name: Drozerix - Leisurely Voice + path: + path: /Audio/DeltaV/Jukebox/drozerix_-_leisurely_voice.xm-MONO.ogg + +- type: jukebox + id: SunbeamEvery + name: Sunbeamstress - Every Light Is Blinking At Once + path: + path: /Audio/DeltaV/Jukebox/every_light_is_blinking_at_onceMONO.ogg + +- type: jukebox + id: KCHaxors + name: Karl Casey @ White Bat Audio - Hackers + path: + path: /Audio/DeltaV/Jukebox/hackers-MONO.ogg + +- type: jukebox + id: SunbeamLaser + name: Sunbeamstress - Lasers Rip Apart The Bulkhead + path: + path: /Audio/DeltaV/Jukebox/lasers_rip_apart_the_bulkheadMONO.ogg + +- type: jukebox + id: IanMarhaba + name: Ian Alex Mac. - Marhaba + path: + path: /Audio/DeltaV/Jukebox/marhaba-MONO.ogg + +- type: jukebox + id: PTMinute + name: Patricia Taxxon - Minute + path: + path: /Audio/DeltaV/Jukebox/Patricia_Taxxon_-_Minute_-_MONO.ogg + +- type: jukebox + id: SunbeamPhoron + name: Sunbeamstress - Phoron Will Make Us Rich + path: + path: /Audio/DeltaV/Jukebox/Phoron_Will_Make_Us_RichMONO2.ogg + +- type: jukebox + id: NymphsForest + name: Psirius - Nymphs of the Forest + path: + path: /Audio/DeltaV/Jukebox/psirius_-_nymphs_of_the_forest.mptm-MONO.ogg + +- type: jukebox + id: GhirScratch + name: ghirardelli7 - Scratch Post + path: + path: /Audio/DeltaV/Jukebox/Scratch_Post_-_OST_MONO.ogg + +- type: jukebox + id: JukeShiba + name: Dot Nigou - Shibamata + path: + path: /Audio/DeltaV/Jukebox/shibamata-MONO.ogg + +- type: jukebox + id: SpaceAsshowl + name: Chris Remo - Space Asshole + path: + path: /Audio/DeltaV/Jukebox/space_asshole-MONO.ogg + +- type: jukebox + id: AmieSuperpos + name: Amie Waters - Superposition + path: + path: /Audio/DeltaV/Jukebox/superposition-MONO.ogg diff --git a/Resources/Prototypes/DeltaV/Catalog/VendingMachines/Inventories/courierdrobe.yml b/Resources/Prototypes/DeltaV/Catalog/VendingMachines/Inventories/courierdrobe.yml index 88f691ba9b..778b372585 100644 --- a/Resources/Prototypes/DeltaV/Catalog/VendingMachines/Inventories/courierdrobe.yml +++ b/Resources/Prototypes/DeltaV/Catalog/VendingMachines/Inventories/courierdrobe.yml @@ -7,8 +7,10 @@ CourierBag: 2 ClothingHeadsetCargo: 2 ClothingOuterWinterCargo: 2 - ClothingUniformMailCarrier: 2 # Nyanotrasen - Mail Carrier old gear - ClothingUniformSkirtMailCarrier: 2 # Nyanotrasen - Mail Carrier old gear - ClothingHeadMailCarrier: 2 # Nyanotrasen - Mail Carrier old gear - MailBag: 2 # Nyanotrasen - Mail Carrier old gear - ClothingOuterWinterCoatMail: 2 # Nyanotrasen - Mail Carrier old gear + ClothingUniformMailCarrier: 2 + ClothingUniformSkirtMailCarrier: 2 + ClothingHeadMailCarrier: 2 + MailBag: 2 + ClothingOuterWinterCoatMail: 2 + WeaponMailLake: 2 + BoxMailCapsulePrimed: 4 diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Eyes/hud.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Eyes/hud.yml index a959b64a38..1e8a64b0df 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Eyes/hud.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Eyes/hud.yml @@ -20,10 +20,9 @@ - type: Tag tags: - HudMedical - - GlassesNearsight - type: entity - parent: ClothingEyesBase + parent: [ ClothingEyesBase, ShowSecurityIcons ] id: ClothingEyesPrescriptionHudSecurity name: prescription security hud description: A poorly done and rushed mix between half of a pair of prescription glasses and a security HUD allowing you to see clearly out of one eye and inspect the employee's ID and warning status in the other! @@ -32,17 +31,15 @@ sprite: DeltaV/Clothing/Eyes/Hud/prescsechud.rsi - type: Clothing sprite: DeltaV/Clothing/Eyes/Hud/prescsechud.rsi - - type: ShowSecurityIcons - type: Construction graph: PrescriptionSecHud node: prescsechud - type: Tag tags: - HudSecurity - - GlassesNearsight - + - type: entity - parent: ClothingEyesBase + parent: [ ClothingEyesBase, ShowSecurityIcons ] id: ClothingEyesHudSyndicateMed name: syndicate medical visor description: An upgraded syndicate visor with automatic health readings, designed for better detection of humanoids and their subsequent elimination. @@ -52,7 +49,6 @@ - type: Clothing sprite: DeltaV/Clothing/Eyes/Hud/syndmed.rsi - type: ShowSyndicateIcons - - type: ShowSecurityIcons - type: ShowHealthBars damageContainers: - Biological diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/felinid.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/felinid.yml index 795bcaacb0..34ccbf068a 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/felinid.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/felinid.yml @@ -2,7 +2,7 @@ id: FelinidFluffyTailRings bodyPart: Tail markingCategory: Tail - speciesRestriction: [Felinid] + speciesRestriction: [Felinid, Human] sprites: - sprite: DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi state: Felinid_fluffy_tail_full @@ -13,7 +13,7 @@ id: FelinidFluffyTail bodyPart: Tail markingCategory: Tail - speciesRestriction: [Felinid] + speciesRestriction: [Felinid, Human] sprites: - sprite: DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi state: Felinid_fluffy_tail_full @@ -22,7 +22,7 @@ id: FelinidAlternativeTail bodyPart: Tail markingCategory: Tail - speciesRestriction: [Felinid] + speciesRestriction: [Felinid, Human] sprites: - sprite: DeltaV/Mobs/Customization/Felinid/alternative_tail.rsi state: m_waggingtail_cat_FRONT diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/vulpkanin.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/vulpkanin.yml index e91c276205..7b8fd987b5 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/vulpkanin.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/vulpkanin.yml @@ -5,7 +5,7 @@ id: VulpEar bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi state: vulp @@ -16,7 +16,7 @@ id: VulpEarFade bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi state: vulp @@ -27,7 +27,7 @@ id: VulpEarSharp bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi state: vulp @@ -38,7 +38,7 @@ id: VulpEarJackal bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi state: jackal @@ -49,7 +49,7 @@ id: VulpEarTerrier bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi state: terrier @@ -60,7 +60,7 @@ id: VulpEarWolf bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi state: wolf @@ -71,7 +71,7 @@ id: VulpEarFennec bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi state: fennec @@ -82,7 +82,7 @@ id: VulpEarFox bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi state: fox @@ -91,7 +91,7 @@ id: VulpEarOtie bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi state: otie @@ -102,7 +102,7 @@ id: VulpEarTajaran bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi state: msai @@ -113,7 +113,7 @@ id: VulpEarShock bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi state: shock @@ -122,7 +122,7 @@ id: VulpEarCoyote bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi state: coyote @@ -131,7 +131,7 @@ id: VulpEarDalmatian bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi state: dalmatian @@ -272,7 +272,7 @@ id: VulpTail bodyPart: Tail markingCategory: Tail - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi state: vulp @@ -294,7 +294,7 @@ id: VulpTailTip bodyPart: Tail markingCategory: Tail - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi state: vulp @@ -316,7 +316,7 @@ id: VulpTailAlt bodyPart: Tail markingCategory: Tail - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi state: vulp_alt @@ -327,7 +327,7 @@ id: VulpTailAltTip bodyPart: Tail markingCategory: Tail - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi state: vulp_alt @@ -338,7 +338,7 @@ id: VulpTailLong bodyPart: Tail markingCategory: Tail - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi state: long @@ -349,7 +349,7 @@ id: VulpTailFox bodyPart: Tail markingCategory: Tail - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi state: fox @@ -371,7 +371,7 @@ id: VulpTailFoxTip bodyPart: Tail markingCategory: Tail - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi state: fox @@ -393,7 +393,7 @@ id: VulpTailBushy bodyPart: Tail markingCategory: Tail - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi state: bushfluff @@ -411,7 +411,7 @@ id: VulpTailCoyote bodyPart: Tail markingCategory: Tail - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi state: coyote @@ -429,7 +429,7 @@ id: VulpTailCorgi bodyPart: Tail markingCategory: Tail - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi state: corgi @@ -447,7 +447,7 @@ id: VulpTailHusky bodyPart: Tail markingCategory: Tail - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi state: husky-inner @@ -458,7 +458,7 @@ id: VulpTailHuskyAlt bodyPart: Tail markingCategory: Tail - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi state: husky @@ -467,7 +467,7 @@ id: VulpTailFox2 bodyPart: Tail markingCategory: Tail - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi state: fox2 @@ -476,7 +476,7 @@ id: VulpTailFox3 bodyPart: Tail markingCategory: Tail - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi state: fox3 @@ -487,7 +487,7 @@ id: VulpTailFennec bodyPart: Tail markingCategory: Tail - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi state: fennec @@ -496,7 +496,7 @@ id: VulpTailOtie bodyPart: Tail markingCategory: Tail - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi state: otie @@ -505,7 +505,7 @@ id: VulpTailFluffy bodyPart: Tail markingCategory: Tail - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi state: fluffy @@ -514,7 +514,7 @@ id: VulpTailDalmatian bodyPart: Tail markingCategory: Tail - speciesRestriction: [Vulpkanin] + speciesRestriction: [Vulpkanin, Human] sprites: - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi state: dalmatian diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/animals.yml index dd59d74d3f..674c7f3f82 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/animals.yml @@ -1,6 +1,6 @@ - type: entity name: arctic fox - parent: SimpleMobBase + parent: MobFox id: MobArcticFox description: Wears a regal coat of snowy elegance, belying its cold and resourceful nature. components: @@ -30,8 +30,8 @@ - type: Strippable - type: UserInterface interfaces: - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: DamageStateVisuals states: Alive: @@ -40,10 +40,6 @@ Base: arcticfox_crit Dead: Base: arcticfox_dead - - type: Butcherable - spawned: - - id: FoodMeat - amount: 3 - type: InteractionPopup successChance: 0.5 interactSuccessString: petting-success-soft-floofy @@ -56,25 +52,10 @@ coldDamage: types: Cold: 0.1 - - type: Grammar - attributes: - gender: epicene - - type: Bloodstream - bloodMaxVolume: 100 - - type: MobPrice - price: 400 - - type: Tag - tags: - - VimPilot - - type: LanguageKnowledge - speaks: - - Fox - understands: - - Fox - type: entity name: security dog - parent: SimpleMobBase + parent: MobCorgi # There isn't a base dog mob, surprisingly. id: MobSecDog description: Funnily enough, this pig is actually a dog. components: @@ -101,7 +82,6 @@ - type: HTN rootTask: task: SimpleHostileCompound - - type: Physics - type: Speech speechVerb: Canine speechSounds: Vulpkanin @@ -145,8 +125,8 @@ - type: Strippable - type: UserInterface interfaces: - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: DamageStateVisuals states: Alive: @@ -184,4 +164,4 @@ - Dog understands: - Dog - - GalacticCommon + - TauCetiBasic diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/familiars.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/familiars.yml index 364907ff9c..1090927cf8 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/familiars.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/familiars.yml @@ -62,7 +62,7 @@ - type: Dispellable - type: Damageable damageContainer: CorporealSpirit - damageModifierSet: FireSpirit + damageModifierSet: CorporealSpirit - type: PassiveDamage # Slight passive regen. Assuming one damage type, comes out to about 4 damage a minute. allowedStates: - Alive @@ -111,9 +111,9 @@ - NanoTrasen - type: LanguageKnowledge speaks: - - GalacticCommon + - TauCetiBasic understands: - - GalacticCommon + - TauCetiBasic - type: GhostTakeoverAvailable - type: GhostRole makeSentient: true @@ -144,10 +144,6 @@ - type: Welder fuelReagent: Phlogiston tankSafe: true - litMeleeDamageBonus: - types: # When lit, negate standard melee damage and replace with heat - Heat: 10 - Blunt: -10 # welderOnSounds: # collection: WelderIfritHandOn # welderOffSounds: diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/nukiemouse.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/nukiemouse.yml index 8968f0e77a..09cafa2957 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/nukiemouse.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/nukiemouse.yml @@ -67,8 +67,8 @@ - type: InventorySlots - type: UserInterface interfaces: - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: DamageStateVisuals states: Alive: @@ -101,7 +101,7 @@ - Mouse understands: - Mouse - - GalacticCommon + - TauCetiBasic - type: Tag tags: - VimPilot @@ -147,7 +147,7 @@ - type: Bloodstream bloodMaxVolume: 60 - type: CanEscapeInventory - BaseResistTime: 3 + baseResistTime: 3 - type: MobPrice price: 250 # Their suits, while tiny, go for quite a bit on the market - type: IntrinsicRadioReceiver diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml index 07152d74ef..b3027839b1 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml @@ -106,10 +106,10 @@ - type: Wagging - type: LanguageKnowledge speaks: - - GalacticCommon + - TauCetiBasic - Canilunzt understands: - - GalacticCommon + - TauCetiBasic - Canilunzt - type: ConsumeDelayModifier foodDelayMultiplier: 0.5 diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Devices/cartridges.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/cartridges.yml index def215cee4..81e11d9d08 100644 --- a/Resources/Prototypes/DeltaV/Entities/Objects/Devices/cartridges.yml +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/cartridges.yml @@ -38,3 +38,24 @@ sprite: Objects/Weapons/Melee/stunbaton.rsi state: stunbaton_on - type: SecWatchCartridge + +- type: entity + parent: BaseItem + id: MailMetricsCartridge + name: mail metrics cartridge + description: A cartridge that tracks statistics related to mail deliveries. + components: + - type: Sprite + sprite: DeltaV/Objects/Devices/cartridge.rsi + state: cart-mail + - type: Icon + sprite: DeltaV/Objects/Devices/cartridge.rsi + state: cart-mail + - type: UIFragment + ui: !type:MailMetricUi + - type: MailMetricsCartridge + - type: Cartridge + programName: mail-metrics-program-name + icon: + sprite: Objects/Specific/Mail/mail.rsi + state: icon diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Misc/paperslips.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Misc/paperslips.yml index 3c25380e65..4ab4e54863 100644 --- a/Resources/Prototypes/DeltaV/Entities/Objects/Misc/paperslips.yml +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Misc/paperslips.yml @@ -125,10 +125,10 @@ - type: Paper - type: ActivatableUI key: enum.PaperUiKey.Key - closeOnHandDeselect: false + requireActiveHand: false - type: UserInterface interfaces: - - key: enum.PaperUiKey.Key + enum.PaperUiKey.Key: type: PaperBoundUserInterface - type: Item size: Tiny diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Mail/mail.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Mail/mail.yml index 7de554f5ff..6f96930078 100644 --- a/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Mail/mail.yml +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Mail/mail.yml @@ -1,3 +1,4 @@ +# DeltaV Mail - type: entity noSpawn: true parent: BaseMail @@ -175,3 +176,1643 @@ - type: Mail contents: - id: FoodPiePumpkin + +- type: entity + noSpawn: true + parent: BaseMail + id: MailDVCosplayFakeWizard + suffix: cosplay-wizard, fake as fuck + components: + - type: Mail + contents: + - id: ClothingOuterWizardFake + - id: ClothingHeadHatWizardFake + - id: ClothingShoesWizardFake + - id: FoodBurgerSpell + orGroup: FakeWizard + prob: 0.3 + - id: FoodKebabSkewer + orGroup: FakeWizard + prob: 0.1 + +- type: entity + parent: BaseMail + id: MailDVScarves + suffix: scarves + components: + - type: Mail + contents: + - id: ClothingNeckScarfStripedRed + orGroup: Scarf + - id: ClothingNeckScarfStripedBlue + orGroup: Scarf + - id: ClothingNeckScarfStripedGreen + orGroup: Scarf + - id: ClothingNeckScarfStripedBlack + orGroup: Scarf + - id: ClothingNeckScarfStripedBrown + orGroup: Scarf + - id: ClothingNeckScarfStripedLightBlue + orGroup: Scarf + - id: ClothingNeckScarfStripedOrange + orGroup: Scarf + - id: ClothingNeckScarfStripedPurple + orGroup: Scarf + - id: ClothingNeckScarfStripedZebra + orGroup: Scarf + - id: ClothingNeckScarfStripedSyndieGreen + orGroup: Scarf + prob: 0.25 + - id: ClothingNeckScarfStripedSyndieRed + orGroup: Scarf + prob: 0.25 + - id: ClothingNeckScarfStripedCentcom + orGroup: Scarf + prob: 0.001 + +- type: entity + parent: BaseMailLarge + id: MailDVBoxes + suffix: boxes + components: + - type: Mail + contents: +# - id: BoxEnvelope # TODO: we do not have this on EE? +# orGroup: Box + - id: BoxCardboard + orGroup: Box + - id: BoxMRE + orGroup: Box + - id: BoxPerformer + orGroup: Box + - id: BoxFlare + orGroup: Box + - id: BoxDarts + orGroup: Box + - id: BoxMousetrap + orGroup: Box + + + +# Frontier Mail, including Extended Nyano Mail. (Pony Express?) +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFAlcohol + suffix: alcohol, extended + components: + - type: Mail + isFragile: true + contents: + # 12.5 overall weight, 8% base chance + - id: DrinkAbsintheBottleFull + orGroup: Drink + - id: DrinkBlueCuracaoBottleFull + orGroup: Drink + - id: DrinkCoffeeLiqueurBottleFull + orGroup: Drink + - id: DrinkGinBottleFull + orGroup: Drink + - id: DrinkMelonLiquorBottleFull + orGroup: Drink + - id: DrinkRumBottleFull + orGroup: Drink + - id: DrinkTequilaBottleFull + orGroup: Drink + - id: DrinkVermouthBottleFull + orGroup: Drink + - id: DrinkVodkaBottleFull + orGroup: Drink + - id: DrinkWhiskeyBottleFull + orGroup: Drink + - id: DrinkWineBottleFull + orGroup: Drink + - id: DrinkChampagneBottleFull + orGroup: Drink + prob: 0.5 + - id: DrinkGildlagerBottleFull + orGroup: Drink + prob: 0.5 + - id: DrinkPatronBottleFull + orGroup: Drink + prob: 0.5 + - id: DrinkGlass + amount: 2 + +- type: entity + noSpawn: true + parent: BaseMailLarge + id: MailNFBible + suffix: bible, extended + components: + - type: Mail + contents: + - id: Bible + - id: ClothingHeadHatWitch1 #DeltaV - Compensates for items that don't exist here + - id: ClothingOuterCoatMNKBlackTopCoat #DeltaV - Compensates for items that don't exist here + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFBikeHorn + suffix: bike horn, random + components: + - type: Mail + contents: + - id: BikeHorn + orGroup: Horn + prob: 0.95 + - id: CluwneHorn + orGroup: Horn + prob: 0.05 + +- type: entity + noSpawn: true + parent: BaseMailLarge + id: MailNFBuildABuddy + suffix: Build-a-Buddy + components: + - type: Mail + isFragile: true + contents: +# - id: BoxBuildABuddyGoblin # DeltaV - Goblins Aren't Real +# orGroup: Box + - id: BoxBuildABuddyHuman + orGroup: Box + - id: BoxBuildABuddyReptilian + orGroup: Box + - id: BoxBuildABuddySlime + orGroup: Box + - id: BoxBuildABuddyVulpkanin + orGroup: Box + - id: DrinkSpaceGlue + - id: PaperMailNFBuildABuddy + +- type: entity + noSpawn: true + parent: BaseMailLarge + id: MailNFCake + suffix: cake, extended + components: + - type: Mail + isFragile: true + isPriority: true + contents: + # 14.8 total weight, ~6.8% base chance + - id: FoodCakeApple + orGroup: Cake + - id: FoodCakeBirthday + orGroup: Cake + - id: FoodCakeBlueberry + orGroup: Cake + - id: FoodCakeCarrot + orGroup: Cake + - id: FoodCakeCheese + orGroup: Cake + - id: FoodCakeChocolate + orGroup: Cake + - id: FoodCakeChristmas + orGroup: Cake + - id: FoodCakeClown + orGroup: Cake + - id: FoodCakeLemon + orGroup: Cake + - id: FoodCakeLime + orGroup: Cake + - id: FoodCakeOrange + orGroup: Cake + - id: FoodCakePumpkin + orGroup: Cake + - id: FoodCakeVanilla + orGroup: Cake + # Uncommon + - id: FoodMothMothmallow + orGroup: Cake + prob: 0.5 + - id: FoodCakeSlime + orGroup: Cake + prob: 0.5 + # Rare + - id: FoodCakeBrain + orGroup: Cake + prob: 0.25 + - id: FoodCakeLemoon + orGroup: Cake + prob: 0.25 + - id: FoodCakeSuppermatter + orGroup: Cake + prob: 0.25 + # Ultra rare + - id: FoodCakeSpaceman + orGroup: Cake + prob: 0.05 + - id: KnifePlastic + - id: ForkPlastic + amount: 2 + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFCosplayWizard + suffix: cosplay-wizard, extended + components: + - type: Mail + contents: + - id: ClothingOuterWizard + - id: ClothingHeadHatWizard + - id: ClothingShoesWizard + - id: PonderingOrb + orGroup: Staff + prob: 0.3 + - id: RGBStaff + orGroup: Staff + prob: 0.1 + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFCosplayMaid + suffix: cosplay-maid, extended + components: + - type: Mail + contents: + - id: UniformMaid + orGroup: Uniform + - id: ClothingUniformJumpskirtJanimaid + orGroup: Uniform + - id: ClothingUniformJumpskirtJanimaidmini + orGroup: Uniform + - id: MegaSprayBottle + - id: ClothingHandsGlovesColorWhite + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFCosplayNurse + suffix: cosplay-nurse, extended + components: + - type: Mail + contents: + - id: ClothingUniformJumpskirtNurse + - id: ClothingHeadNurseHat + - id: Syringe + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFCheese + suffix: cheese, extended + components: + - type: Mail + isFragile: true + isPriority: true + contents: + - id: FoodCheese + orGroup: Cheese + prob: 0.5 + - id: FoodChevre + orGroup: Cheese + prob: 0.5 + - id: KnifePlastic + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFCigarettes + suffix: cigs, random + components: + - type: Mail + contents: + - id: CigPackBlack + orGroup: Cigs + prob: 0.19 + - id: CigPackBlue + orGroup: Cigs + prob: 0.19 + - id: CigPackGreen + orGroup: Cigs + prob: 0.19 + - id: CigPackRed + orGroup: Cigs + prob: 0.19 + - id: CigPackMixed + orGroup: Cigs + prob: 0.09 # Pool shared with CigPackMixedMedical, CigPackMixedNasty + - id: CigPackMixedMedical + orGroup: Cigs + prob: 0.05 + - id: CigPackMixedNasty + orGroup: Cigs + prob: 0.05 + # Rare + - id: CigPackSyndicate + orGroup: Cigs + prob: 0.05 + - id: CheapLighter + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFEMP + suffix: emp + components: + - type: Mail + contents: + - id: DelayedEMP + - id: PaperMailNFEMPPreparedness + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFSmoke + suffix: smoke + components: + - type: Mail + contents: + - id: DelayedSmoke + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFGoldCigars + suffix: cigars, premium + components: + - type: Mail + contents: + - id: CigarGoldCase + orGroup: Cigars + - id: FlippoLighter + orGroup: Lighter + prob: 0.95 + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFCookies + suffix: cookies, random + components: + - type: Mail + isPriority: true + contents: + # Cookie 1 + - id: FoodBakedCookie + orGroup: Cookie1 + - id: FoodBakedCookieOatmeal + orGroup: Cookie1 + - id: FoodBakedCookieRaisin + orGroup: Cookie1 + - id: FoodBakedCookieSugar + orGroup: Cookie1 + # Cookie 2 + - id: FoodBakedCookie + orGroup: Cookie2 + - id: FoodBakedCookieOatmeal + orGroup: Cookie2 + - id: FoodBakedCookieRaisin + orGroup: Cookie2 + - id: FoodBakedCookieSugar + orGroup: Cookie2 + # Cookie 3 + - id: FoodBakedCookie + orGroup: Cookie3 + - id: FoodBakedCookieOatmeal + orGroup: Cookie3 + - id: FoodBakedCookieRaisin + orGroup: Cookie3 + - id: FoodBakedCookieSugar + orGroup: Cookie3 + # Cookie 4 + - id: FoodBakedCookie + orGroup: Cookie4 + - id: FoodBakedCookieOatmeal + orGroup: Cookie4 + - id: FoodBakedCookieRaisin + orGroup: Cookie4 + - id: FoodBakedCookieSugar + orGroup: Cookie4 + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFKnife + suffix: knife, extended + components: + - type: Mail + contents: + - id: KukriKnife + orGroup: Knife + - id: Machete # A little large for an envelope but "we'll live" + orGroup: Knife + - id: CombatKnife + orGroup: Knife + - id: SurvivalKnife + orGroup: Knife + +- type: entity + noSpawn: true + parent: BaseMailLarge + id: MailNFSword + suffix: sword + components: + - type: Mail + contents: + - id: KatanaDulled + orGroup: Sword + prob: 0.95 + - id: ClaymoreDulled + orGroup: Sword + prob: 0.95 + - id: FoamCutlass + orGroup: Sword + prob: 0.95 + - id: Katana + orGroup: Sword + prob: 0.5 + - id: Claymore + orGroup: Sword + prob: 0.5 +# - id: CaneSheathFilled # TODO: don't have this yet +# orGroup: Sword +# prob: 0.3 + - id: Cutlass + orGroup: Sword + prob: 0.1 + - id: Kanabou # ah yes, swords + orGroup: Sword + prob: 0.1 + - id: ClothingBeltSheathFilled # Little dangerous between the reflect and the damage + orGroup: Sword + prob: 0.001 + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFMuffins + suffix: muffins, random + components: + - type: Mail + isPriority: true + contents: + # Muffin 1 + - id: FoodBakedMuffinBerry + orGroup: Muffin1 + - id: FoodBakedMuffinCherry + orGroup: Muffin1 + - id: FoodBakedMuffinBluecherry + orGroup: Muffin1 + - id: FoodBakedMuffin + orGroup: Muffin1 + - id: FoodMothMoffin + orGroup: Muffin1 + prob: 0.5 + # Muffin 2 + - id: FoodBakedMuffinBerry + orGroup: Muffin2 + - id: FoodBakedMuffinCherry + orGroup: Muffin2 + - id: FoodBakedMuffinBluecherry + orGroup: Muffin2 + - id: FoodBakedMuffin + orGroup: Muffin2 + - id: FoodMothMoffin + orGroup: Muffin2 + prob: 0.5 + # Muffin 3 + - id: FoodBakedMuffinBerry + orGroup: Muffin3 + - id: FoodBakedMuffinCherry + orGroup: Muffin3 + - id: FoodBakedMuffinBluecherry + orGroup: Muffin3 + - id: FoodBakedMuffin + orGroup: Muffin3 + - id: FoodMothMoffin + orGroup: Muffin3 + prob: 0.5 + # Muffin 4 + - id: FoodBakedMuffinBerry + orGroup: Muffin4 + - id: FoodBakedMuffinCherry + orGroup: Muffin4 + - id: FoodBakedMuffinBluecherry + orGroup: Muffin4 + - id: FoodBakedMuffin + orGroup: Muffin4 + - id: FoodMothMoffin + orGroup: Muffin4 + prob: 0.5 + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFPAI + suffix: PAI, extended + components: + - type: Mail + contents: + - id: PersonalAI + orGroup: PAI + prob: 0.99 + # Ultra rare + - id: SyndicatePersonalAI + orGroup: PAI + prob: 0.01 + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFPlushie + suffix: plushie, extended + components: + - type: Mail + contents: + # These are all grouped up now to guarantee at least one item received. + # The downside is you're not going to get half a dozen plushies anymore. + - id: PlushieBee + orGroup: Plushie + - id: PlushieRGBee + prob: 0.5 + orGroup: Plushie + - id: PlushieNuke + orGroup: Plushie + - id: PlushieArachind #DeltaV - Adds MORE PLUSHIE + orGroup: Plushie + - id: PlushieAtmosian #DeltaV - Adds MORE PLUSHIE + orGroup: Plushie + - id: PlushieXeno #DeltaV - Adds MORE PLUSHIE + orGroup: Plushie + - id: PlushiePenguin #DeltaV - Adds MORE PLUSHIE + orGroup: Plushie + - id: PlushieGhost #DeltaV - Adds MORE PLUSHIE + orGroup: Plushie + - id: PlushieDiona #DeltaV - Adds MORE PLUSHIE + orGroup: Plushie + - id: ToyMouse #DeltaV - Adds MORE PLUSHIE + orGroup: Plushie + - id: PlushieRouny + orGroup: Plushie + - id: PlushieLizard + orGroup: Plushie + - id: PlushieSpaceLizard + orGroup: Plushie + - id: PlushieRatvar + orGroup: Plushie + - id: PlushieNar + orGroup: Plushie + - id: PlushieCarp + orGroup: Plushie + - id: PlushieHolocarp #DeltaV - Adds MORE PLUSHIE + orGroup: Plushie + - id: PlushieRainbowCarp #DeltaV - Adds MORE PLUSHIE + orGroup: Plushie + - id: PlushieSlime + orGroup: Plushie + - id: PlushieSnake + orGroup: Plushie + - id: PlushieMothRandom + orGroup: Plushie + - id: PlushieMoth + prob: 0.5 + orGroup: Plushie + - id: PlushieMothMusician + prob: 0.5 + orGroup: Plushie + - id: PlushieMothBartender + prob: 0.5 + orGroup: Plushie + +# Random snacks, replaces MailChocolate (lousy animal organs) +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFSnacks + suffix: snacks, random + components: + - type: Mail + contents: + # Snack 1 + - id: FoodSnackChocolate + orGroup: Snack1 + - id: FoodSnackPopcorn + orGroup: Snack1 + - id: FoodSnackChips + orGroup: Snack1 + - id: FoodSnackBoritos + orGroup: Snack1 + - id: FoodSnackSus + orGroup: Snack1 + - id: FoodSnackPistachios + orGroup: Snack1 + - id: FoodSnackRaisins + orGroup: Snack1 + - id: FoodSnackCheesie + orGroup: Snack1 + - id: FoodSnackEnergy + orGroup: Snack1 + - id: FoodSnackCnDs + orGroup: Snack1 + - id: FoodSnackSemki + orGroup: Snack1 + - id: FoodSnackSyndi + orGroup: Snack1 + prob: 0.5 + # Snack 2 + - id: FoodSnackChocolate + orGroup: Snack2 + - id: FoodSnackPopcorn + orGroup: Snack2 + - id: FoodSnackChips + orGroup: Snack2 + - id: FoodSnackBoritos + orGroup: Snack2 + - id: FoodSnackSus + orGroup: Snack2 + - id: FoodSnackPistachios + orGroup: Snack2 + - id: FoodSnackRaisins + orGroup: Snack2 + - id: FoodSnackCheesie + orGroup: Snack2 + - id: FoodSnackEnergy + orGroup: Snack2 + - id: FoodSnackCnDs + orGroup: Snack2 + - id: FoodSnackSemki + orGroup: Snack2 + - id: FoodSnackSyndi + orGroup: Snack2 + prob: 0.5 + # Snack 3 + - id: FoodSnackChocolate + orGroup: Snack3 + - id: FoodSnackPopcorn + orGroup: Snack3 + - id: FoodSnackChips + orGroup: Snack3 + - id: FoodSnackBoritos + orGroup: Snack3 + - id: FoodSnackSus + orGroup: Snack3 + - id: FoodSnackPistachios + orGroup: Snack3 + - id: FoodSnackRaisins + orGroup: Snack3 + - id: FoodSnackCheesie + orGroup: Snack3 + - id: FoodSnackEnergy + orGroup: Snack3 + - id: FoodSnackCnDs + orGroup: Snack3 + - id: FoodSnackSemki + orGroup: Snack3 + - id: FoodSnackSyndi + orGroup: Snack3 + prob: 0.5 + # Snack 4 + - id: FoodSnackChocolate + orGroup: Snack4 + - id: FoodSnackPopcorn + orGroup: Snack4 + - id: FoodSnackChips + orGroup: Snack4 + - id: FoodSnackBoritos + orGroup: Snack4 + - id: FoodSnackSus + orGroup: Snack4 + - id: FoodSnackPistachios + orGroup: Snack4 + - id: FoodSnackRaisins + orGroup: Snack4 + - id: FoodSnackCheesie + orGroup: Snack4 + - id: FoodSnackEnergy + orGroup: Snack4 + - id: FoodSnackCnDs + orGroup: Snack4 + - id: FoodSnackSemki + orGroup: Snack4 + - id: FoodSnackSyndi + orGroup: Snack4 + prob: 0.5 + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFVagueThreat + suffix: vague-threat + components: + - type: Mail + contents: + - id: PaperMailNFVagueThreat1 + orGroup: Paper + - id: PaperMailNFVagueThreat2 + orGroup: Paper + - id: PaperMailNFVagueThreat3 + orGroup: Paper + - id: PaperMailNFVagueThreat4 + orGroup: Paper + - id: PaperMailNFVagueThreat5 + orGroup: Paper + - id: PaperMailNFVagueThreat6 + orGroup: Paper + - id: PaperMailNFVagueThreat7 + orGroup: Paper + - id: PaperMailNFVagueThreat8 + orGroup: Paper + - id: PaperMailNFVagueThreat9 + orGroup: Paper + - id: PaperMailNFVagueThreat10 + orGroup: Paper + - id: PaperMailNFVagueThreat11 + orGroup: Paper + - id: PaperMailNFVagueThreat12 + orGroup: Paper + - id: KitchenKnife + orGroup: ThreateningObject + - id: ButchCleaver + orGroup: ThreateningObject + - id: CombatKnife + orGroup: ThreateningObject + - id: SurvivalKnife + orGroup: ThreateningObject + - id: SoapHomemade + orGroup: ThreateningObject + - id: FoodMeat + orGroup: ThreateningObject + - id: OrganHumanHeart + orGroup: ThreateningObject + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFDonkPockets + suffix: donk pockets, random + components: + - type: Mail + contents: + - id: FoodBoxDonkpocket + orGroup: Donk + prob: 0.4 # Higher probability, useful for chefs. + - id: FoodBoxDonkpocketSpicy + orGroup: Donk + prob: 0.1 + - id: FoodBoxDonkpocketTeriyaki + orGroup: Donk + prob: 0.1 + - id: FoodBoxDonkpocketPizza + orGroup: Donk + prob: 0.1 + - id: FoodBoxDonkpocketStonk + orGroup: Donk + prob: 0.05 + - id: FoodBoxDonkpocketCarp + orGroup: Donk + prob: 0.05 + - id: FoodBoxDonkpocketBerry + orGroup: Donk + prob: 0.1 + - id: FoodBoxDonkpocketHonk + orGroup: Donk + prob: 0.05 + - id: FoodBoxDonkpocketDink + orGroup: Donk + prob: 0.05 # Bad luck. + +# Needs a buff? +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFSodaPwrGame + suffix: Pwrgame + components: + - type: Mail + contents: + - id: DrinkPwrGameCan + amount: 3 + - id: PaperMailNFPwrGameAd + +# Needs a buff? +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFSodaRedBool + suffix: Red Bool + components: + - type: Mail + contents: + - id: DrinkEnergyDrinkCan + amount: 3 + - id: PaperMailNFRedBoolAd + +# Needs a buff? +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFSodaSpaceCola + suffix: Space Cola + components: + - type: Mail + contents: + - id: DrinkColaBottleFull + - id: PaperMailNFSpaceColaAd + +# Needs a buff? +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFSodaSpaceMountainWind + suffix: Space Mountain Wind + components: + - type: Mail + contents: + - id: DrinkSpaceMountainWindBottleFull + - id: PaperMailNFSpaceMountainWindAd + +# Needs a buff? +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFSodaSpaceUp + suffix: Space Up + components: + - type: Mail + contents: + - id: DrinkSpaceUpBottleFull + - id: PaperMailNFSpaceUpAd + +#TODO: we don't have rainbow joints or blunts (yet?). Uncomment when (if?) they are added. +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFJoints + suffix: joints + components: + - type: Mail + contents: + # Smokeable 1 + - id: Joint + orGroup: Smokeable1 + prob: 0.35 +# - id: JointRainbow +# orGroup: Smokeable1 +# prob: 0.15 +# - id: Blunt +# orGroup: Smokeable1 +# prob: 0.35 +# - id: BluntRainbow +# orGroup: Smokeable1 +# prob: 0.15 + # Smokeable 2 + - id: Joint + orGroup: Smokeable2 + prob: 0.35 +# - id: JointRainbow +# orGroup: Smokeable2 +# prob: 0.15 +# - id: Blunt +# orGroup: Smokeable2 +# prob: 0.35 +# - id: BluntRainbow +# orGroup: Smokeable2 +# prob: 0.15 + # Smokeable 3 + - id: Joint + orGroup: Smokeable3 + prob: 0.35 +# - id: JointRainbow +# orGroup: Smokeable3 +# prob: 0.15 +# - id: Blunt +# orGroup: Smokeable3 +# prob: 0.35 +# - id: BluntRainbow +# orGroup: Smokeable3 +# prob: 0.15 + +# Catchalls for food that only exist in random spawners +# Mmm, mail food +# Needs a buff? +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFUnusualFood + suffix: unusual food + components: + - type: Mail + isPriority: true + isFragile: true + contents: + - id: FoodMealNachos + orGroup: Food + - id: FoodMealNachosCheesy + orGroup: Food + - id: FoodMealNachosCuban + orGroup: Food + - id: FoodMealEggplantParm + orGroup: Food + - id: FoodMealPotatoYaki + orGroup: Food + - id: FoodMealCornedbeef + orGroup: Food + - id: FoodMealBearsteak + orGroup: Food + - id: FoodMealPigblanket + orGroup: Food + - id: FoodMealEggsbenedict + orGroup: Food + - id: FoodMealOmelette + orGroup: Food + - id: FoodMealFriedegg + orGroup: Food + - id: FoodMealMilkape + orGroup: Food + - id: FoodMealMemoryleek + orGroup: Food + - id: DisgustingSweptSoup + orGroup: Food + - id: FoodBreadVolcanic + orGroup: Food + - id: FoodBakedWaffleSoylent + orGroup: Food + - id: FoodBakedWaffleRoffle + orGroup: Food + - id: FoodPieCherry + orGroup: Food + - id: FoodPieFrosty + orGroup: Food + prob: 0.05 + - id: FoodMeatGoliathCooked + amount: 3 + orGroup: Food + - id: FoodMeatRounyCooked + amount: 3 + orGroup: Food + - id: FoodMeatLizardCooked + amount: 3 + orGroup: Food + - id: FoodMeatSpiderlegCooked + amount: 3 + orGroup: Food + - id: FoodMeatMeatballCooked + amount: 4 + orGroup: Food + +# Needs a buff? +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFBakedGoods + suffix: baked goods + components: + - type: Mail + isPriority: true + isFragile: true + contents: + - id: FoodBakedBunHoney + amount: 2 + orGroup: Food + - id: FoodBakedBunHotX + amount: 2 + orGroup: Food + - id: FoodBakedBunMeat + amount: 2 + orGroup: Food + - id: FoodBakedPretzel + amount: 2 + orGroup: Food + - id: FoodBakedCannoli + amount: 2 + orGroup: Food + - id: FoodDonutPlain + amount: 2 + orGroup: Food + - id: FoodDonutJellyPlain + amount: 2 + orGroup: Food + - id: FoodDonutHomer + amount: 2 + orGroup: Food + - id: FoodDonutChaos + amount: 2 + orGroup: Food + - id: FoodDonutMeat + amount: 2 + orGroup: Food + - id: FoodDonutPink + amount: 2 + orGroup: Food + - id: FoodDonutSpaceman + amount: 2 + orGroup: Food + - id: FoodDonutApple + amount: 2 + orGroup: Food + - id: FoodDonutCaramel + amount: 2 + orGroup: Food + - id: FoodDonutChocolate + amount: 2 + orGroup: Food +# - id: FoodDonutBluePumpkin # Don't have that yet +# amount: 2 +# orGroup: Food + - id: FoodDonutBungo + amount: 2 + orGroup: Food + - id: FoodDonut + amount: 2 + orGroup: Food + - id: FoodDonutSweetpea + amount: 2 + orGroup: Food + - id: FoodDonutJellyHomer + amount: 2 + orGroup: Food + - id: FoodDonutJellyPink + amount: 2 + orGroup: Food + - id: FoodDonutJellySpaceman + amount: 2 + orGroup: Food + - id: FoodDonutJellyApple + amount: 2 + orGroup: Food + - id: FoodDonutJellyCaramel + amount: 2 + orGroup: Food + - id: FoodDonutJellyChocolate + amount: 2 + orGroup: Food +# - id: FoodDonutJellyBluePumpkin # Don't have that yet +# amount: 2 +# orGroup: Food + - id: FoodDonutJellyBungo + amount: 2 + orGroup: Food + - id: FoodDonutJelly + amount: 2 + orGroup: Food + - id: FoodDonutJellySweetpea + amount: 2 + orGroup: Food + - id: FoodDonutJellySlugcat + amount: 2 + orGroup: Food + - id: FoodFrozenSandwich # ah yes, baked goods + amount: 2 + orGroup: Food + - id: FoodFrozenFreezy + amount: 2 + orGroup: Food + - id: FoodFrozenSundae + amount: 2 + orGroup: Food + - id: FoodFrozenCornuto + amount: 2 + orGroup: Food + - id: FoodFrozenPopsicleOrange + amount: 2 + orGroup: Food + - id: FoodFrozenPopsicleBerry + amount: 2 + orGroup: Food + - id: FoodFrozenPopsicleJumbo + amount: 2 + orGroup: Food + - id: FoodFrozenSnowcone + amount: 2 + orGroup: Food + - id: FoodFrozenSnowconeBerry + amount: 2 + orGroup: Food + - id: FoodFrozenSnowconeFruit + amount: 2 + orGroup: Food + - id: FoodFrozenSnowconeClown + amount: 2 + orGroup: Food + - id: FoodFrozenSnowconeMime + amount: 2 + orGroup: Food + - id: FoodFrozenSnowconeRainbow + amount: 2 + orGroup: Food + - id: FoodFrozenSnowconeMime + amount: 2 + orGroup: Food + - id: FoodMealMint # unlucky + amount: 2 + orGroup: Food + +# Needs a buff? +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFUnusualProduce + suffix: unusual produce + components: + - type: Mail + isPriority: true + isFragile: true + contents: + - id: FoodLaughinPeaPod + orGroup: Produce + amount: 5 + - id: FoodMimana + orGroup: Produce + amount: 5 + - id: FoodLemoon + orGroup: Produce + amount: 5 + - id: FoodBlueTomato + orGroup: Produce + amount: 5 + - id: FoodBloodTomato + orGroup: Produce + amount: 5 + - id: FoodKoibean + orGroup: Produce + amount: 5 +# EE does not have those yet. Uncomment if any of those get ported. +# - id: FoodGhostPepper #DeltaV +# orGroup: Produce +# amount: 5 +# - id: FoodCosmicRevenant #DeltaV +# orGroup: Produce +# amount: 5 +# - id: FoodCrystalThistle #DeltaV +# orGroup: Produce +# amount: 5 + - id: FoodLily + orGroup: Produce + amount: 5 + prob: 0.5 + - id: FoodAmbrosiaDeus + orGroup: Produce + amount: 5 + prob: 0.5 + - id: FoodSpacemansTrumpet + orGroup: Produce + amount: 5 + prob: 0.25 + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFSoaps + suffix: soap sampler + components: + - type: Mail + contents: + - id: BoxSoapsAssorted + - id: PaperMailNTSoapAd1 + orGroup: Ad + - id: PaperMailNTSoapAd2 + orGroup: Ad + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFSoapsOmega + suffix: soap sampler, omega + components: + - type: Mail + contents: + - id: BoxSoapsAssortedOmega + - id: PaperMailNTSoapAd1 + orGroup: Ad + - id: PaperMailNTSoapAd2 + orGroup: Ad + +# Could add spessman battle rules here +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFFigurineBulk # DeltaV - No longer Bulk + suffix: figurine, bulk #DeltaV - Spams 3 boxes instead of using the bulk figurine prototype that Frontier uses + components: + - type: Mail + contents: + - id: MysteryFigureBox + - id: MysteryFigureBox + - id: MysteryFigureBox + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFPen + suffix: fancy pen + components: + - type: Mail + contents: + - id: LuxuryPen + orGroup: Pen + prob: 0.50 + # DeltaV: Commenting these two out because I dunno if crew should have nice things + # - id: PenHop + # orGroup: Pen + # prob: 0.25 + # - id: PenCap + # orGroup: Pen + # prob: 0.25 + # TODO: come up with a slightly less powerful version of these + # Ultra-rare + # - id: CyberPen + # orGroup: Pen + # prob: 0.005 + # - id: PenCentcom + # orGroup: Pen + # prob: 0.005 + - id: PaperMailNFPaperPusherAd + +- type: entity + noSpawn: true + parent: BaseMailLarge + id: MailNFThrongler + suffix: throngler + components: + - type: Mail + contents: + - id: ThronglerToy + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFInstrumentSmall + suffix: instrument, expanded + components: + - type: Mail + contents: + - id: TrumpetInstrument + orGroup: Instrument + - id: RecorderInstrument + orGroup: Instrument + - id: ClarinetInstrument + orGroup: Instrument + - id: FluteInstrument + orGroup: Instrument + - id: HarmonicaInstrument + orGroup: Instrument + - id: OcarinaInstrument + orGroup: Instrument + - id: PanFluteInstrument + orGroup: Instrument + - id: KalimbaInstrument + orGroup: Instrument + - id: WoodblockInstrument + orGroup: Instrument + - id: BikeHornInstrument + orGroup: Instrument + - id: MusicBoxInstrument + orGroup: Instrument + - id: MicrophoneInstrument + orGroup: Instrument + - id: MusicalLungInstrument + orGroup: Instrument + # Uncommon + - id: PhoneInstrument + orGroup: Instrument + prob: 0.1 + # Rare + - id: BananaPhoneInstrument + orGroup: Instrument + prob: 0.05 + # Ultra-rare + - id: PhoneInstrumentSyndicate + orGroup: Instrument + prob: 0.01 + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFUnusualClothing + suffix: unusual clothing + components: + - type: Mail + contents: + - id: ClothingKimonoPink + orGroup: Clothes + - id: ClothingKimonoBlue + orGroup: Clothes + - id: ClothingKimonoPurple + orGroup: Clothes + - id: ClothingKimonoSky + orGroup: Clothes + - id: ClothingKimonoGreen + orGroup: Clothes + - id: ClothingUniformMartialGi + orGroup: Clothes + - id: ClothingNeckBling + orGroup: Clothes + - id: ClothingShoesBling + orGroup: Clothes + - id: ClothingNeckCloakAdmin + orGroup: Clothes + - id: ClothingHeadHatFancyCrown + orGroup: Clothes + - id: ClothingHeadHatCake + orGroup: Clothes + - id: ClothingHeadHatCone + orGroup: Clothes + - id: ClothingMaskOniRed + orGroup: Clothes + - id: ClothingMaskOniBlue + orGroup: Clothes + - id: ClothingHeadHatRichard + orGroup: Clothes + - id: ClothingHeadHatAnimalHeadslime + orGroup: Clothes + - id: ClothingHeadHatDogEars + orGroup: Clothes + - id: ClothingHeadHatCatEars + orGroup: Clothes + - id: ClothingEyesGlassesOutlawGlasses + orGroup: Clothes + - id: ClothingUniformJumpsuitGalaxyBlue + orGroup: Clothes + prob: 0.25 + - id: ClothingUniformJumpsuitGalaxyRed + orGroup: Clothes + prob: 0.25 + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFCritter + suffix: critter + components: + - type: Mail + isFragile: true + contents: + # Bugs (weight: 2) + - id: MobCockroach + orGroup: Critter + prob: 0.36 + - id: MobSlug + orGroup: Critter + prob: 0.36 + - id: MobArgocyteSlurva # honorary bug? + orGroup: Critter + prob: 0.36 + - id: MobBee + orGroup: Critter + prob: 0.36 + - id: MobButterfly + orGroup: Critter + prob: 0.36 + # Uncommon + - id: MobMothroach + orGroup: Critter + prob: 0.2 + # Small reptiles (weight: 1) + - id: MobLizard + orGroup: Critter + prob: 0.34 + - id: MobSnake + orGroup: Critter + prob: 0.33 + - id: MobFrog + orGroup: Critter + prob: 0.33 + # Small mammals (weight: 1) + - id: MobMouse + orGroup: Critter + prob: 0.33 + - id: MobMouse1 + orGroup: Critter + prob: 0.33 + - id: MobMouse2 + orGroup: Critter + prob: 0.33 + - id: MobMouseCancer + orGroup: Critter + prob: 0.01 # Rare + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFTacticalMaid + suffix: tactical maid + components: + - type: Mail + contents: + - id: ClothingUniformJumpskirtTacticalMaid + - id: ClothingHeadHatTacticalMaidHeadband + - id: MegaSprayBottle + - id: ClothingHandsTacticalMaidGloves + +- type: entity + noSpawn: true + parent: BaseMailLarge + id: MailNFKendoKit + suffix: kendo kit + components: + - type: Mail + contents: # A lot of stuff here, seems spammy. + - id: ClothingUniformKendoHakama + amount: 2 + - id: ClothingOuterArmorKendoBogu + amount: 2 + - id: ClothingHeadHelmetKendoMen + amount: 2 + - id: Shinai + amount: 2 + +# Base Nyano Mail +- type: entity + noSpawn: true + parent: BaseMail + id: MailSake + suffix: osake + components: + - type: Mail + contents: + - id: DrinkSakeCup + amount: 2 + - id: DrinkTokkuri + +- type: entity + noSpawn: true + parent: BaseMail + id: MailBlockGameDIY + suffix: blockgamediy + components: + - type: Mail + contents: + - id: BlockGameArcadeComputerCircuitboard + +- type: entity + noSpawn: true + parent: BaseMail + id: MailCigars + suffix: Cigars + components: + - type: Mail + contents: + - id: CigarCase + - id: Lighter + +- type: entity + noSpawn: true + parent: BaseMail + id: MailCrayon + suffix: Crayon + components: + - type: Mail + contents: + - id: CrayonBox + +- type: entity + noSpawn: true + parent: BaseMail + id: MailCosplayArc + suffix: cosplay-arc + components: + - type: Mail + openSound: /Audio/Nyanotrasen/Voice/Felinid/cat_wilhelm.ogg + contents: + - id: ClothingCostumeArcDress + +- type: entity + noSpawn: true + parent: BaseMail + id: MailCosplayGeisha + suffix: cosplay-geisha + components: + - type: Mail + contents: + - id: UniformGeisha + - id: DrinkTeapot + - id: DrinkTeacup + amount: 3 + +- type: entity + noSpawn: true + parent: BaseMail + id: MailCosplaySchoolgirl + suffix: cosplay-schoolgirl + components: + - type: Mail + contents: + - id: UniformSchoolgirlBlack + orGroup: Color + - id: UniformSchoolgirlBlue + orGroup: Color + - id: UniformSchoolgirlCyan + orGroup: Color + - id: UniformSchoolgirlGreen + orGroup: Color + - id: UniformSchoolgirlOrange + orGroup: Color + - id: UniformSchoolgirlPink + orGroup: Color + - id: UniformSchoolgirlPurple + orGroup: Color + - id: UniformSchoolgirlRed + orGroup: Color + +- type: entity + noSpawn: true + parent: BaseMail + id: MailFlowers + suffix: flowers + components: + - type: Mail + contents: + # TODO actual flowers + - id: ClothingHeadHatFlowerWreath + orGroup: Flowers + - id: FoodPoppy + orGroup: Flowers + - id: FoodLily + +- type: entity + noSpawn: true + parent: BaseMail + id: MailSignallerKit + suffix: signallerkit + components: + - type: Mail + contents: + - id: Multitool + - id: RemoteSignaller + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNoir + suffix: noir + components: + - type: Mail + contents: + - id: ClothingUniformJumpsuitDetectiveGrey + - id: ClothingUniformJumpskirtDetectiveGrey + - id: ClothingHeadHatBowlerHat + - id: ClothingOuterCoatGentle + +- type: entity + noSpawn: true + parent: BaseMail + id: MailRestraints + suffix: restraints + components: + - type: Mail + contents: + - id: Handcuffs + - id: ClothingMaskMuzzle + - id: ClothingEyesBlindfold + +- type: entity + noSpawn: true + parent: BaseMail + id: MailFishingCap + suffix: fishingcap + components: + - type: Mail + contents: + - id: ClothingHeadFishCap + +- type: entity + noSpawn: true + parent: BaseMail + id: MailFlashlight + suffix: Flashlight + components: + - type: Mail + contents: + - id: FlashlightLantern + +- type: entity + noSpawn: true + parent: BaseMail + id: MailSpaceVillainDIY + suffix: spacevilliandiy + components: + - type: Mail + contents: + - id: SpaceVillainArcadeComputerCircuitboard + +- type: entity + noSpawn: true + parent: BaseMail + id: MailSunglasses + suffix: Sunglasses + components: + - type: Mail + contents: + - id: ClothingEyesGlassesSunglasses + +- type: entity + noSpawn: true + parent: BaseMail + id: MailWinterCoat + suffix: wintercoat + components: + - type: Mail + contents: + - id: ClothingOuterWinterCoat + orGroup: Coat + - id: ClothingOuterWinterCoatLong + orGroup: Coat + - id: ClothingOuterWinterCoatPlaid + orGroup: Coat diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Mail/mail_civilian.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Mail/mail_civilian.yml new file mode 100644 index 0000000000..19a1ee3c53 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Mail/mail_civilian.yml @@ -0,0 +1,229 @@ +# Frontier Mail +- type: entity + noSpawn: true + parent: BaseMailLarge + id: MailNFInstrumentLarge + suffix: instrument, large + components: + - type: Mail + contents: + - id: TromboneInstrument + orGroup: Instrument + - id: FrenchHornInstrument + orGroup: Instrument + - id: SaxophoneInstrument + orGroup: Instrument + - id: EuphoniumInstrument + orGroup: Instrument + - id: AcousticGuitarInstrument + orGroup: Instrument + - id: ElectricGuitarInstrument + orGroup: Instrument + - id: BassGuitarInstrument + orGroup: Instrument + - id: RockGuitarInstrument + orGroup: Instrument + - id: BanjoInstrument + orGroup: Instrument + - id: ViolinInstrument + orGroup: Instrument + - id: CelloInstrument + orGroup: Instrument + - id: ViolaInstrument + orGroup: Instrument + - id: BagpipeInstrument # Fury. + orGroup: Instrument + - id: SynthesizerInstrument + orGroup: Instrument + - id: AccordionInstrument + orGroup: Instrument + - id: GlockenspielInstrument + orGroup: Instrument + - id: XylophoneInstrument + orGroup: Instrument + # Uncommon + - id: Rickenbacker4003Instrument + orGroup: Instrument + prob: 0.25 + # Rare + - id: Rickenbacker4001Instrument + orGroup: Instrument + prob: 0.1 + +# Base Nyano Mail + +- type: entity + noSpawn: true + parent: BaseMail + id: MailBotanistChemicalBottles + suffix: botanist chemicals + components: + - type: Mail + contents: + - id: RobustHarvestChemistryBottle + orGroup: Chemical + prob: 0.6 + - id: WeedSpray + orGroup: Chemical + prob: 0.4 + +- type: entity + noSpawn: true + parent: BaseMail + id: MailBotanistMutagen + suffix: mutagen + components: + - type: Mail + isFragile: true + isPriority: true + contents: + - id: UnstableMutagenChemistryBottle + +- type: entity + noSpawn: true + parent: BaseMail + id: MailBotanistSeeds + suffix: seeds + components: + - type: Mail + contents: + - id: AloeSeeds + orGroup: Seeds + - id: AmbrosiaVulgarisSeeds + orGroup: Seeds + - id: AppleSeeds + orGroup: Seeds + - id: BananaSeeds + orGroup: Seeds + - id: CarrotSeeds + orGroup: Seeds + - id: ChanterelleSeeds + orGroup: Seeds + - id: ChiliSeeds + orGroup: Seeds + - id: CornSeeds + orGroup: Seeds + - id: EggplantSeeds + orGroup: Seeds + - id: GalaxythistleSeeds + orGroup: Seeds + - id: LemonSeeds + orGroup: Seeds + - id: LingzhiSeeds + orGroup: Seeds + - id: OatSeeds + orGroup: Seeds + - id: OnionSeeds + orGroup: Seeds + - id: PoppySeeds + orGroup: Seeds + - id: PotatoSeeds + orGroup: Seeds + - id: SugarcaneSeeds + orGroup: Seeds + - id: TomatoSeeds + orGroup: Seeds + - id: TowercapSeeds + orGroup: Seeds + - id: WheatSeeds + orGroup: Seeds + +- type: entity + noSpawn: true + parent: BaseMail + id: MailClownGildedBikeHorn + suffix: honk + components: + - type: Mail + isFragile: true + contents: + - id: BikeHornInstrument + +- type: entity + noSpawn: true + parent: BaseMail + id: MailClownHonkSupplement + suffix: honk + components: + - type: Mail + isFragile: true + contents: + - id: BikeHorn + - id: FoodPieBananaCream + - id: FoodBanana + +- type: entity + noSpawn: true + parent: BaseMail + id: MailHoPBureaucracy + suffix: hop paper + components: + - type: Mail + contents: + - id: Paper + maxAmount: 3 + +- type: entity + noSpawn: true + parent: BaseMail + id: MailHoPSupplement + suffix: hop supplement + components: + - type: Mail + contents: + - id: ClearPDA + - id: ClothingHeadsetGrey + - id: Paper + +- type: entity + noSpawn: true + parent: BaseMail + id: MailMimeArtsCrafts + suffix: arts and crafts + components: + - type: Mail + contents: + - id: CrayonBox + - id: Paper + maxAmount: 3 + +- type: entity + noSpawn: true + parent: BaseMail + id: MailMimeBlankBook + suffix: blank book + components: + - type: Mail + contents: + - id: BookRandom + +- type: entity + noSpawn: true + parent: BaseMail + id: MailMimeBottleOfNothing + suffix: bottle of nothing + components: + - type: Mail + contents: + - id: DrinkBottleOfNothingFull + +- type: entity + noSpawn: true + parent: BaseMail + id: MailPassengerMoney + suffix: passenger money + components: + - type: Mail + contents: + - id: SpaceCash100 + orGroup: Cash + prob: 0.1 + maxAmount: 10 + - id: SpaceCash500 + orGroup: Cash + prob: 0.3 + maxAmount: 5 + - id: SpaceCash1000 + orGroup: Cash + prob: 0.6 + maxAmount: 3 diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Mail/mail_command.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Mail/mail_command.yml new file mode 100644 index 0000000000..86dec46a65 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Mail/mail_command.yml @@ -0,0 +1,35 @@ +# Base Nyano Mail +- type: entity + noSpawn: true + parent: BaseMail + id: MailCommandPinpointerNuclear + suffix: pinpointer mail ops + components: + - type: Mail + contents: + - id: PinpointerNuclear + +- type: entity + noSpawn: true + parent: BaseMail + id: MailStationRepNFNukeDisk + suffix: nuke disk + components: + - type: Mail + isFragile: true + contents: + - id: NukeDiskFake + - id: PaperMailNFAntivirus + +- type: entity + noSpawn: true + parent: BaseMail + id: MailCommandNFPipebombIntern + suffix: pipe and bomb + components: + - type: Mail + isFragile: true + contents: + - id: SmokingPipeFilledTobacco + - id: DrinkAtomicBombGlass + - id: PaperMailNFPipebombIntern diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Mail/mail_engineering.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Mail/mail_engineering.yml new file mode 100644 index 0000000000..af70fc621c --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Mail/mail_engineering.yml @@ -0,0 +1,182 @@ +# Base Nyano Mail +- type: entity + noSpawn: true + parent: BaseMail + id: MailEngineeringCables + suffix: cables + components: + - type: Mail + contents: + - id: CableHVStack + orGroup: Cables + - id: CableMVStack + orGroup: Cables + - id: CableApcStack + orGroup: Cables + +- type: entity + noSpawn: true + parent: BaseMail + id: MailEngineeringKudzuDeterrent + suffix: antikudzu + components: + - type: Mail + contents: + - id: PlantBGoneSpray + +- type: entity + noSpawn: true + parent: BaseMail + id: MailEngineeringSheetGlass + suffix: sheetglass + components: + - type: Mail + contents: + - id: SheetGlass + +- type: entity + noSpawn: true + parent: BaseMail + id: MailEngineeringWelderReplacement + suffix: welder + components: + - type: Mail + contents: + - id: Welder + +# Frontier Mail + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFCircuitboardIndustrial + suffix: industrial circuitboard + components: + - type: Mail + contents: + - id: ThermomachineFreezerMachineCircuitBoard + orGroup: Board + prob: 0.5 + - id: ThermomachineHeaterMachineCircuitBoard + orGroup: Board + prob: 0.5 + - id: HellfireFreezerMachineCircuitBoard + orGroup: Board + prob: 0.25 + - id: HellfireHeaterMachineCircuitBoard + orGroup: Board + prob: 0.25 + - id: CryoPodMachineCircuitboard # Medical as well + orGroup: Board + prob: 0.5 + - id: ChemMasterMachineCircuitboard + orGroup: Board + prob: 0.5 + - id: ChemDispenserMachineCircuitboard + orGroup: Board + prob: 0.25 + - id: StasisBedMachineCircuitboard + orGroup: Board + prob: 0.25 + - id: BiomassReclaimerMachineCircuitboard + orGroup: Board + prob: 0.25 + - id: BiofabricatorMachineCircuitboard + orGroup: Board + prob: 0.25 + - id: TurboItemRechargerCircuitboard + orGroup: Board + prob: 0.5 + - id: AutolatheHyperConvectionMachineCircuitboard + orGroup: Board + prob: 0.25 + - id: ProtolatheHyperConvectionMachineCircuitboard + orGroup: Board + prob: 0.25 + - id: HotplateMachineCircuitboard + orGroup: Board + prob: 0.5 +# - id: CircuitImprinterHyperConvectionMachineCircuitboard +# orGroup: Board +# prob: 0.25 + - id: SheetifierMachineCircuitboard + orGroup: Board + prob: 0.25 + - id: RadarConsoleCircuitboard + orGroup: Board + prob: 0.25 + - id: OreProcessorIndustrialMachineCircuitboard + orGroup: Board + prob: 0.5 + - id: GasRecyclerMachineCircuitboard + orGroup: Board + prob: 0.1 + +- type: entity + noSpawn: true + parent: BaseMail + id: MailNFCircuitboardService + suffix: service circuitboard + components: + - type: Mail + contents: + - id: ComputerTelevisionCircuitboard + orGroup: Board + - id: ReagentGrinderMachineCircuitboard + orGroup: Board + - id: ReagentGrinderIndustrialMachineCircuitboard + orGroup: Board + prob: 0.5 + - id: SurveillanceWirelessCameraMovableCircuitboard + orGroup: Board + prob: 0.5 + - id: MicrowaveMachineCircuitboard + orGroup: Board + - id: ElectricGrillMachineCircuitboard + orGroup: Board + prob: 0.5 + - id: FatExtractorMachineCircuitboard + orGroup: Board + prob: 0.25 + - id: SeedExtractorMachineCircuitboard + orGroup: Board + prob: 0.5 + - id: BoozeDispenserMachineCircuitboard + orGroup: Board + - id: SodaDispenserMachineCircuitboard + orGroup: Board + - id: JukeboxCircuitBoard + orGroup: Board + - id: TelecomServerCircuitboard + orGroup: Board + prob: 0.25 + - id: ComputerMassMediaCircuitboard + orGroup: Board + prob: 0.1 + +- type: entity + noSpawn: true + parent: BaseMailLarge + id: MailNFPowerTool + suffix: power tool + components: + - type: Mail + contents: + - id: PaperMailNFPowerTool + orGroup: Paper + - id: JawsOfLife + orGroup: Gift + prob: 0.33 + - id: PowerDrill + orGroup: Gift + prob: 0.33 + - id: WelderIndustrial + orGroup: Gift + prob: 0.20 + # Rare + - id: WelderIndustrialAdvanced + orGroup: Gift + prob: 0.10 + - id: WelderExperimental + orGroup: Gift + prob: 0.04 diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Mail/mail_epistemology.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Mail/mail_epistemology.yml new file mode 100644 index 0000000000..be6f9818e2 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Mail/mail_epistemology.yml @@ -0,0 +1,48 @@ +- type: entity + noSpawn: true + parent: BaseMail + id: MailEpistemologyBluespace + suffix: bluespace + components: + - type: Mail + contents: + - id: MaterialBluespace1 + +- type: entity + noSpawn: true + parent: BaseMail + id: MailEpistemologyIngotGold + suffix: ingotgold + components: + - type: Mail + contents: + - id: IngotGold1 + maxAmount: 3 + +- type: entity + noSpawn: true + parent: BaseMail + id: MailEpistemologyResearchDisk + suffix: researchdisk + components: + - type: Mail + contents: + - id: ResearchDisk + orGroup: Disk + prob: 0.6 + - id: ResearchDisk5000 + orGroup: Disk + prob: 0.3 + - id: ResearchDisk10000 + orGroup: Disk + prob: 0.1 + +- type: entity + noSpawn: true + parent: BaseMail + id: MailEpistemologyTinfoilHat + suffix: tinfoilhat + components: + - type: Mail + contents: + - id: ClothingHeadTinfoil diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail_medical.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Mail/mail_medical.yml similarity index 84% rename from Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail_medical.yml rename to Resources/Prototypes/DeltaV/Entities/Objects/Specific/Mail/mail_medical.yml index 4e797272e5..735f840a20 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail_medical.yml +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Mail/mail_medical.yml @@ -1,3 +1,4 @@ +# Base Nyano Mail - type: entity noSpawn: true parent: BaseMail @@ -91,3 +92,19 @@ maxAmount: 2 - id: SyringeTranexamicAcid maxAmount: 2 + +# Frontier Mail +- type: entity + parent: BaseMailLarge + id: MailNFMedkit + suffix: medkit + components: + - type: Mail + contents: + - id: MedkitAdvancedFilled + orGroup: Medkit + prob: 0.75 + - id: MedkitCombatFilled + orGroup: Medkit + prob: 0.25 + diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Mail/mail_security.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Mail/mail_security.yml new file mode 100644 index 0000000000..eed846a090 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Specific/Mail/mail_security.yml @@ -0,0 +1,95 @@ +# Base Nyano Mail +- type: entity + noSpawn: true + parent: BaseMail + id: MailSecurityDonuts + suffix: donuts + components: + - type: Mail + contents: + - id: FoodBoxDonut + +- type: entity + noSpawn: true + parent: BaseMail + id: MailSecurityFlashlight + suffix: seclite + components: + - type: Mail + contents: + - id: FlashlightSeclite + +- type: entity + noSpawn: true + parent: BaseMail + id: MailSecurityNonlethalsKit + suffix: nonlethalskit + components: + - type: Mail + contents: + - id: Flash + maxAmount: 2 + - id: GrenadeFlashBang + maxAmount: 2 + - id: Handcuffs + maxAmount: 2 + +#- type: entity +# parent: BaseMail +# id: MailSecuritySpaceLaw +# suffix: spacelaw +# components: +# - type: Mail +# contents: +# - id: HyperlinkBookSpaceLaw +# Will we ever readd hyperlinks books? Who knows! + +- type: entity + noSpawn: true + parent: BaseMail + id: MailWardenCrowdControl + suffix: crowdcontrol + components: + - type: Mail + contents: + - id: BoxBeanbag + +- type: entity + noSpawn: true + parent: BaseMail + id: MailDetectiveForensicSupplement # Deltav - Detective is in charge of investigating crimes. + suffix: detectivesupplement # Deltav - Detective is in charge of investigating crimes. + components: + - type: Mail + contents: + - id: BoxForensicPad + +# Frontier Mail + +- type: entity + noSpawn: true + parent: BaseMailLarge + id: MailSecurityNFMusket + suffix: musket + components: + - type: Mail + contents: + - id: ClothingHeadHatPwig + - id: Musket + - id: CartridgeAntiMateriel + amount: 2 + - id: PaperMailNTMusket + +# Delta Mail + +- type: entity + noSpawn: true + parent: BaseMail + id: MailSecurityDVSpaceLaw + suffix: spacelaw, extended + components: + - type: Mail + contents: + - id: BookSecurity +# - id: BookSOP #This is where I'd put my Delta SOP book... IF I HAD ONE!!! + - id: PaperMailNFSpaceLaw # Uses the NF space law paper, which is edited to mention the Delta Sector diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/special.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/special.yml index 6a8114d884..df2ccf2a94 100644 --- a/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/special.yml +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/special.yml @@ -92,6 +92,3 @@ blockSlots: NONE #shouldn't be blocked by a mask - type: InjectableSolution solution: ammo - - type: GuideHelp - guides: - - Psionics diff --git a/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Airlocks/airlocks.yml b/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Airlocks/airlocks.yml index 16ea3c1e28..93a8cec851 100644 --- a/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Airlocks/airlocks.yml +++ b/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Airlocks/airlocks.yml @@ -4,7 +4,7 @@ suffix: Justice components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/justice.rsi # WD EDIT + sprite: DeltaV/Structures/Doors/Airlocks/Standard/justice.rsi - type: PaintableAirlock department: Justice @@ -16,7 +16,7 @@ suffix: Justice components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/justice.rsi # WD EDIT + sprite: DeltaV/Structures/Doors/Airlocks/Glass/justice.rsi - type: PaintableAirlock department: Justice diff --git a/Resources/Prototypes/DeltaV/Entities/Structures/Machines/syndicate_monitor_server.yml b/Resources/Prototypes/DeltaV/Entities/Structures/Machines/syndicate_monitor_server.yml index 10933d716e..02d3d69cc6 100644 --- a/Resources/Prototypes/DeltaV/Entities/Structures/Machines/syndicate_monitor_server.yml +++ b/Resources/Prototypes/DeltaV/Entities/Structures/Machines/syndicate_monitor_server.yml @@ -23,7 +23,6 @@ machine_parts: !type:Container - type: CrewMonitoringServer - type: SingletonDeviceNetServer - ServerType: CrewMonitoringServer - type: DeviceNetwork deviceNetId: Wireless transmitFrequencyId: CrewMonitor @@ -33,7 +32,6 @@ range: 10000 # Mega range for Listening Post - type: ApcPowerReceiver powerLoad: 200 - priority: Low - type: ExtensionCableReceiver - type: Destructible thresholds: diff --git a/Resources/Prototypes/DeltaV/GameRules/events.yml b/Resources/Prototypes/DeltaV/GameRules/events.yml index a3fb69cf73..84a39e4c04 100644 --- a/Resources/Prototypes/DeltaV/GameRules/events.yml +++ b/Resources/Prototypes/DeltaV/GameRules/events.yml @@ -62,7 +62,6 @@ noSpawn: true components: - type: StationEvent - id: VentCritters earliestStart: 15 minimumPlayers: 1 weight: 4 diff --git a/Resources/Prototypes/DeltaV/Mail/mailDeliveries.yml b/Resources/Prototypes/DeltaV/Mail/mailDeliveries.yml new file mode 100644 index 0000000000..c0d6df9ec2 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Mail/mailDeliveries.yml @@ -0,0 +1,147 @@ +- type: mailDeliveryPool + id: RandomDeltaVMailDeliveryPool #This entire table is messy as fuck but the weights add up to 35. TODO: ORGANIZE THIS SHIT AAAA + everyone: + MailNFAlcohol: 1 + MailNFBakedGoods: 1 + MailNFBible: 1 + MailNFBikeHorn: 0.5 + MailBooksAll: 1 + MailBlockGameDIY: 0.5 + MailNFBuildABuddy: 0.3 + MailDVBoxes: 0.3 + MailCrayon: 1 + MailNFCake: 1 + MailNFCheese: 1 + MailNFCookies: 1.1 + MailNFCritter: 1 + #Cigarettes - Adds up to 1 in weight + MailNFCigarettes: 0.5 + MailCigars: 0.2 + MailNFJoints: 0.2 + MailNFGoldCigars: 0.1 + #Cosplay - Adds up to 3.4 in weight + MailCosplayArc: 0.5 + MailDVCosplayFakeWizard: 0.5 + MailNFCosplayWizard: 0.5 + MailNFCosplayMaid: 0.5 + MailCosplayGeisha: 0.5 + MailCosplaySchoolgirl: 0.5 + MailNFCosplayNurse: 0.4 + MailNFDonkPockets: 0.5 + MailNFEMP: 0.3 + MailNFFigurineBulk: 1 + MailFishingCap: 0.5 + MailFlashlight: 1 + MailFlowers: 1 + MailNFKendoKit: 0.3 + MailNFKnife: 0.7 + MailNFMuffins: 1 + MailNoir: 0.5 + MailNFPAI: 1.2 + MailNFPlushie: 1 + MailPumpkinPie: 0.3 + MailNFPen: 0.7 + MailRestraints: 0.8 + MailSake: 0.4 + MailDVScarves: 0.15 + MailNFSnacks: 1 + #Soda - Adds up to 1 in weight + MailNFSodaPwrGame: 0.2 + MailNFSodaRedBool: 0.2 + MailNFSodaSpaceCola: 0.2 + MailNFSodaSpaceMountainWind: 0.2 + MailNFSodaSpaceUp: 0.2 + #End Soda + MailNFSmoke: 0.4 + MailSpaceVillainDIY: 0.5 + MailSignallerKit: 0.5 + MailSunglasses: 1 + MailNFSoaps: 0.5 + MailNFSoapsOmega: 0.5 + MailNFSword: 0.5 + MailNFTacticalMaid: 0.5 + MailNFThrongler: 0.05 + MailNFUnusualClothing: 0.5 + MailNFUnusualFood: 1 + MailNFUnusualProduce: 1 + MailNFVagueThreat: 0.5 + # Mainly for Glacier + MailWinterCoat: 1.5 + + # Department and job-specific mail can have slightly higher weights, + # since they'll be merged with the everyone pool. + departments: + Medical: + MailMedicalBasicSupplies: 2 + MailMedicalChemistrySupplement: 2 + MailMedicalEmergencyPens: 3 + MailMedicalMedicinePills: 2 + MailMedicalSheetPlasma: 1 + # MailMedicalSpaceacillin: 1 + MailMedicalStabilizers: 2 + MailNFMedkit: 2 + Engineering: + MailAMEGuide: 1 + MailEngineeringCables: 2 + MailEngineeringKudzuDeterrent: 2 + MailEngineeringSheetGlass: 2 + MailEngineeringWelderReplacement: 2 + MailNFCircuitboardIndustrial: 2 + MailNFCircuitboardService: 1 + MailNFPowerTool: 1 + Security: + MailSecurityDonuts: 3 + MailSecurityFlashlight: 2 + MailSecurityNonlethalsKit: 2 + MailSecurityDVSpaceLaw: 1 + MailSecurityNFMusket: 1 + Epistemics: +# MailBooks: 1 + MailEpistemologyBluespace: 1 + MailEpistemologyIngotGold: 2 + MailEpistemologyResearchDisk: 1 + MailEpistemologyTinfoilHat: 1 + MailSignallerKit: 1 + # All heads of staff are in Command and not their departments, technically. + # So any items from the departments above that should also be sent to the + # respective department heads should be duplicated below. + Command: + MailCommandPinpointerNuclear: 0.5 + MailStationRepNFNukeDisk: 0.3 + MailCommandNFPipebombIntern: 0.1 + + jobs: + Botanist: + MailBotanistChemicalBottles: 2 + MailBotanistMutagen: 1.5 + MailBotanistSeeds: 1 + ChiefEngineer: + MailEngineeringKudzuDeterrent: 2 + ChiefMedicalOfficer: + MailMedicalEmergencyPens: 2 + MailMedicalMedicinePills: 3 + MailMedicalSheetPlasma: 2 + Clown: + MailClownGildedBikeHorn: 0.5 + MailClownHonkSupplement: 3 + Detective: # Deltav - Detective is in charge of investigating crimes. + MailDetectiveForensicSupplement: 2 # Deltav - Detective is in charge of investigating crimes. + HeadOfPersonnel: + MailHoPBureaucracy: 2 + MailHoPSupplement: 3 + HeadOfSecurity: + MailSecurityNonlethalsKit: 2 + Lawyer: + MailSecurityDVSpaceLaw: 2 + Mime: + MailMimeArtsCrafts: 3 + MailMimeBlankBook: 2 + MailMimeBottleOfNothing: 1 + ResearchDirector: # DeltaV - Epistemics Department replacing Science but keeping their IDs + MailEpistemologyIngotGold: 2 + Musician: + MailMusicianInstrumentSmall: 1 + Passenger: + MailPassengerMoney: 3 + Warden: + MailWardenCrowdControl: 2 diff --git a/Resources/Prototypes/DeltaV/NPC/roboisseur.yml b/Resources/Prototypes/DeltaV/NPC/roboisseur.yml index e7f0b5bcd0..41cdfb70ae 100644 --- a/Resources/Prototypes/DeltaV/NPC/roboisseur.yml +++ b/Resources/Prototypes/DeltaV/NPC/roboisseur.yml @@ -28,3 +28,17 @@ attributes: gender: male proper: true + # WD EDIT START + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.15,-0.15,0.15,0.15" + density: 60 + mask: + - MachineMask + layer: + - MidImpassable + - LowImpassable + # WD EDIT END \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Objectives/paradox_anomaly.yml b/Resources/Prototypes/DeltaV/Objectives/paradox_anomaly.yml index dd0b74c461..ec87795ab5 100644 --- a/Resources/Prototypes/DeltaV/Objectives/paradox_anomaly.yml +++ b/Resources/Prototypes/DeltaV/Objectives/paradox_anomaly.yml @@ -1,9 +1,9 @@ - type: entity abstract: true - parent: BaseTerminatorObjective # mrp terminator real id: BaseParadoxAnomalyObjective components: - type: Objective + difficulty: 1 issuer: self # not using base kill/keep alive objectives since these intentionally conflict with eachother @@ -19,7 +19,6 @@ state: icon - type: TargetObjective title: objective-paradox-anomaly-kill-title - - type: TerminatorTargetOverride - type: KillPersonCondition requireDead: true @@ -35,7 +34,6 @@ state: folder-white - type: TargetObjective title: objective-paradox-anomaly-friend-title - - type: TerminatorTargetOverride - type: KeepAliveCondition - type: entity diff --git a/Resources/Prototypes/DeltaV/Objectives/stealTargetGroups.yml b/Resources/Prototypes/DeltaV/Objectives/stealTargetGroups.yml index b311330873..1236decde9 100644 --- a/Resources/Prototypes/DeltaV/Objectives/stealTargetGroups.yml +++ b/Resources/Prototypes/DeltaV/Objectives/stealTargetGroups.yml @@ -19,6 +19,48 @@ sprite: DeltaV/Objects/Weapons/Guns/Battery/multiphase_energygun.rsi state: base +- type: stealTargetGroup + id: WeaponPulsePistolHoS + name: antique pulse pistol + sprite: + sprite: Objects/Weapons/Guns/Battery/pulse_pistol.rsi + state: base + +- type: stealTargetGroup + id: WeaponSubMachineGunWt550HoS + name: antique Wt550 + sprite: + sprite: Objects/Weapons/Guns/SMGs/wt550.rsi + state: base + +- type: stealTargetGroup + id: WeaponSubMachineGunC20rHoS + name: antique C20r + sprite: + sprite: Objects/Weapons/Guns/SMGs/c20r.rsi + state: base + +- type: stealTargetGroup + id: WeaponShotgunBulldogHoS + name: antique C20r + sprite: + sprite: Objects/Weapons/Guns/Shotguns/bulldog.rsi + state: base + +- type: stealTargetGroup + id: EnergySwordHoS + name: antique energy sword + sprite: + sprite: Objects/Weapons/Melee/e_sword.rsi + state: e_sword + +- type: stealTargetGroup + id: ClothingBeltKatanaSheathFilledHoS + name: antique katana sheaths + sprite: + sprite: Nyanotrasen/Clothing/Belt/katanasheath.rsi + state: sheath + - type: stealTargetGroup id: RubberStampNotary name: notary stamp diff --git a/Resources/Prototypes/DeltaV/Objectives/traitor.yml b/Resources/Prototypes/DeltaV/Objectives/traitor.yml index d27ec220fa..b753aaf165 100644 --- a/Resources/Prototypes/DeltaV/Objectives/traitor.yml +++ b/Resources/Prototypes/DeltaV/Objectives/traitor.yml @@ -33,6 +33,84 @@ stealGroup: WeaponEnergyGunMultiphase owner: job-name-hos +- type: entity # Head of Security steal objective. + noSpawn: true + parent: BaseTraitorStealObjective + id: HoSPulsePistolStealObjective + components: + - type: Objective + difficulty: 3 # HoS will mostly be using the gun to stop you from stealing it + - type: NotJobRequirement + job: HeadOfSecurity + - type: StealCondition + stealGroup: WeaponPulsePistolHoS + owner: job-name-hos + +- type: entity # Head of Security steal objective. + noSpawn: true + parent: BaseTraitorStealObjective + id: HoSWt550StealObjective + components: + - type: Objective + difficulty: 3 # HoS will mostly be using the gun to stop you from stealing it + - type: NotJobRequirement + job: HeadOfSecurity + - type: StealCondition + stealGroup: WeaponSubMachineGunWt550HoS + owner: job-name-hos + +- type: entity # Head of Security steal objective. + noSpawn: true + parent: BaseTraitorStealObjective + id: HoSC20rStealObjective + components: + - type: Objective + difficulty: 3 # HoS will mostly be using the gun to stop you from stealing it + - type: NotJobRequirement + job: HeadOfSecurity + - type: StealCondition + stealGroup: WeaponSubMachineGunC20rHoS + owner: job-name-hos + +- type: entity # Head of Security steal objective. + noSpawn: true + parent: BaseTraitorStealObjective + id: HoSBulldogStealObjective + components: + - type: Objective + difficulty: 3 # HoS will mostly be using the gun to stop you from stealing it + - type: NotJobRequirement + job: HeadOfSecurity + - type: StealCondition + stealGroup: WeaponShotgunBulldogHoS + owner: job-name-hos + +- type: entity # Head of Security steal objective. + noSpawn: true + parent: BaseTraitorStealObjective + id: HoSEnergySwordStealObjective + components: + - type: Objective + difficulty: 3 # HoS will mostly be using the gun to stop you from stealing it + - type: NotJobRequirement + job: HeadOfSecurity + - type: StealCondition + stealGroup: EnergySwordHoS + owner: job-name-hos + +- type: entity # Head of Security steal objective. + noSpawn: true + parent: BaseTraitorStealObjective + id: HoSKatanaSheathStealObjective + components: + - type: Objective + difficulty: 3 # HoS will mostly be using the gun to stop you from stealing it + - type: NotJobRequirement + job: HeadOfSecurity + - type: StealCondition + stealGroup: ClothingBeltKatanaSheathFilledHoS + owner: job-name-hos + - type: entity # Clerk steal objective. noSpawn: true parent: BaseTraitorStealObjective @@ -43,5 +121,3 @@ - type: StealCondition stealGroup: RubberStampNotary owner: job-name-clerk - - diff --git a/Resources/Prototypes/DeltaV/Reagents/Consumable/Drink/drinks.yml b/Resources/Prototypes/DeltaV/Reagents/Consumable/Drink/drinks.yml index c568c1bc75..7fdc51f1de 100644 --- a/Resources/Prototypes/DeltaV/Reagents/Consumable/Drink/drinks.yml +++ b/Resources/Prototypes/DeltaV/Reagents/Consumable/Drink/drinks.yml @@ -19,7 +19,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.3 + amount: 0.336 - !type:PopupMessage conditions: - !type:ReagentThreshold @@ -55,7 +55,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.20 + amount: 0.133 Poison: effects: - !type:HealthChange @@ -83,7 +83,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.15 + amount: 0.16 - type: reagent id: GreenGrass @@ -105,7 +105,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.05 + amount: 0.083 - type: reagent id: Daiquiri @@ -128,7 +128,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.25 + amount: 0.3 - type: reagent id: ArsonistsBrew @@ -151,7 +151,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.30 + amount: 0.08 Poison: effects: - !type:HealthChange @@ -179,6 +179,14 @@ metamorphicMaxFillLevels: 4 metamorphicFillBaseName: fill- metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.015 - type: reagent id: Mothamphetamine @@ -201,7 +209,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.25 + amount: 0.126 Poison: effects: - !type:Jitter diff --git a/Resources/Prototypes/DeltaV/Recipes/Construction/clothing.yml b/Resources/Prototypes/DeltaV/Recipes/Construction/clothing.yml index 386a0211c0..601bcd540b 100644 --- a/Resources/Prototypes/DeltaV/Recipes/Construction/clothing.yml +++ b/Resources/Prototypes/DeltaV/Recipes/Construction/clothing.yml @@ -1,9 +1,9 @@ - type: construction name: prescription medhud - id: ClothingEyesPrescriptionMedHud + id: PrescriptionMedHud graph: PrescriptionMedHud startNode: start - targetNode: prescmedhud + targetNode: prescmedhud category: construction-category-clothing description: Prescription medhud, merged glasses and medhud together by sheer luck and cables with glue. icon: { sprite: DeltaV/Clothing/Eyes/Hud/prescmedhud.rsi, state: icon } @@ -11,10 +11,10 @@ - type: construction name: prescription sechud - id: ClothingEyesPrescriptionHudSecurity + id: PrescriptionHudSecurity graph: PrescriptionSecHud startNode: start - targetNode: prescsechud + targetNode: prescsechud category: construction-category-clothing description: Prescription sechud, merged glasses and sechud together by sheer luck and cables with glue. icon: { sprite: DeltaV/Clothing/Eyes/Hud/prescsechud.rsi, state: icon } diff --git a/Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml b/Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml index 681cb95be7..51eeb5e142 100644 --- a/Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml +++ b/Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml @@ -35,7 +35,7 @@ equipment: jumpsuit: ClothingUniformJumpsuitBrigmedic outerClothing: ClothingOuterArmorPlateCarrier - back: ClothingBackpackBrigmedicFilled + back: ClothingBackpackBrigmedicFilled shoes: ClothingShoesBootsCombatFilled gloves: ClothingHandsGlovesNitrile eyes: ClothingEyesHudMedical @@ -43,7 +43,6 @@ id: CorpsmanPDA ears: ClothingHeadsetBrigmedic belt: ClothingBeltCorpsmanWebbingFilled - pocket1: WeaponPistolMk58Nonlethal innerClothingSkirt: ClothingUniformJumpskirtBrigmedic satchel: ClothingBackpackSatchelBrigmedicFilled duffelbag: ClothingBackpackDuffelBrigmedicFilled diff --git a/Resources/Prototypes/DeltaV/Traits/neutral.yml b/Resources/Prototypes/DeltaV/Traits/neutral.yml index 6168d7045a..469fa5b34b 100644 --- a/Resources/Prototypes/DeltaV/Traits/neutral.yml +++ b/Resources/Prototypes/DeltaV/Traits/neutral.yml @@ -1,6 +1,9 @@ - type: trait id: ScottishAccent - category: Speech + category: TraitsSpeechAccents points: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: TraitsAccents components: - type: ScottishAccent diff --git a/Resources/Prototypes/DeltaV/Voice/speech_emotes.yml b/Resources/Prototypes/DeltaV/Voice/speech_emotes.yml index 29f75d0d50..7f3eb0313a 100644 --- a/Resources/Prototypes/DeltaV/Voice/speech_emotes.yml +++ b/Resources/Prototypes/DeltaV/Voice/speech_emotes.yml @@ -1,5 +1,6 @@ - type: emote id: HarpyRing + name: chat-emote-name-harpyring category: Vocal chatMessages: [ rings ] chatTriggers: @@ -7,6 +8,7 @@ - type: emote id: HarpyPew + name: chat-emote-name-harpypew category: Vocal chatMessages: [ pews ] chatTriggers: @@ -15,6 +17,7 @@ - type: emote id: HarpyBang + name: chat-emote-name-harpybang category: Vocal chatMessages: [ bangs ] chatTriggers: @@ -22,6 +25,7 @@ - type: emote id: HarpyRev + name: chat-emote-name-harpyrev category: Vocal chatMessages: [ revs ] chatTriggers: @@ -29,6 +33,7 @@ - type: emote id: HarpyCaw + name: chat-emote-name-harpycaw category: Vocal chatMessages: [ caws ] chatTriggers: @@ -37,6 +42,7 @@ #Vulpkanin - type: emote id: Bark + name: chat-emote-name-vulpbark category: Vocal chatMessages: [ barks ] chatTriggers: @@ -44,6 +50,7 @@ - type: emote id: Snarl + name: chat-emote-name-vulpsnarl category: Vocal chatMessages: [ snarls ] chatTriggers: @@ -51,6 +58,7 @@ - type: emote id: Whine + name: chat-emote-name-vulpwhine category: Vocal chatMessages: [ whines ] chatTriggers: @@ -58,6 +66,7 @@ - type: emote id: Howl + name: chat-emote-name-vulphowl category: Vocal chatMessages: [ howls ] chatTriggers: diff --git a/Resources/Prototypes/Device/devicenet_frequencies.yml b/Resources/Prototypes/Device/devicenet_frequencies.yml index db48d117e0..ecdbb3bb4c 100644 --- a/Resources/Prototypes/Device/devicenet_frequencies.yml +++ b/Resources/Prototypes/Device/devicenet_frequencies.yml @@ -75,6 +75,17 @@ name: device-frequency-prototype-name-crew-monitor frequency: 1261 +# Cyborgs broadcast to consoles on this frequency +- type: deviceFrequency + id: RoboticsConsole + name: device-frequency-prototype-name-robotics-console + frequency: 1291 + +# Console sends commands to cyborgs on this frequency +- type: deviceFrequency + id: CyborgControl + name: device-frequency-prototype-name-cyborg-control + frequency: 1292 # This frequency will likely have a LARGE number of listening entities. Please don't broadcast on this frequency. - type: deviceFrequency diff --git a/Resources/Prototypes/DeviceLinking/source_ports.yml b/Resources/Prototypes/DeviceLinking/source_ports.yml index 18b9b831e6..1988f29e45 100644 --- a/Resources/Prototypes/DeviceLinking/source_ports.yml +++ b/Resources/Prototypes/DeviceLinking/source_ports.yml @@ -45,6 +45,11 @@ description: signal-port-description-doorstatus defaultLinks: [ DoorBolt ] +- type: sourcePort + id: DockStatus + name: signal-port-name-dockstatus + description: signal-port-description-dockstatus + - type: sourcePort id: OrderSender name: signal-port-name-order-sender diff --git a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml index 710c8e533d..4af443113a 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml @@ -5,7 +5,7 @@ description: You wear this on your back and put items into it. components: - type: Sprite - sprite: _White/Clothing/Back/Backpacks/backpack.rsi #WWDP edit + sprite: Clothing/Back/Backpacks/backpack.rsi state: icon - type: Item size: Huge @@ -23,8 +23,8 @@ ents: [] - type: UserInterface interfaces: - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface # to prevent bag open/honk spam - type: UseDelay delay: 0.5 @@ -39,7 +39,7 @@ description: It's a backpack made by Honk! Co. components: - type: Sprite - sprite: _White/Clothing/Back/Backpacks/clown.rsi #WWDP edit + sprite: Clothing/Back/Backpacks/clown.rsi - type: Storage storageOpenSound: collection: BikeHorn @@ -63,7 +63,7 @@ description: It's a very robust backpack. components: - type: Sprite - sprite: _White/Clothing/Back/Backpacks/security.rsi #WWDP edit + sprite: Clothing/Back/Backpacks/security.rsi - type: entity parent: ClothingBackpack @@ -81,7 +81,7 @@ description: It's a tough backpack for the daily grind of station life. components: - type: Sprite - sprite: _White/Clothing/Back/Backpacks/engineering.rsi #WWDP edit + sprite: Clothing/Back/Backpacks/engineering.rsi - type: entity parent: ClothingBackpack @@ -99,7 +99,7 @@ description: It's a backpack especially designed for use in a sterile environment. components: - type: Sprite - sprite: _White/Clothing/Back/Backpacks/medical.rsi #WWDP edit + sprite: Clothing/Back/Backpacks/medical.rsi - type: entity parent: ClothingBackpack @@ -108,7 +108,7 @@ description: It's a special backpack made exclusively for Nanotrasen officers. components: - type: Sprite - sprite: _White/Clothing/Back/Backpacks/captain.rsi #WWDP edit + sprite: Clothing/Back/Backpacks/captain.rsi - type: entity parent: ClothingBackpack @@ -117,7 +117,7 @@ description: A silent backpack made for those silent workers. Silence Co. components: - type: Sprite - sprite: _White/Clothing/Back/Backpacks/mime.rsi #WWDP edit + sprite: Clothing/Back/Backpacks/mime.rsi - type: entity parent: ClothingBackpack @@ -126,7 +126,7 @@ description: A backpack specially designed to repel stains and hazardous liquids. components: - type: Sprite - sprite: _White/Clothing/Back/Backpacks/chemistry.rsi #WWDP edit + sprite: Clothing/Back/Backpacks/chemistry.rsi - type: entity parent: ClothingBackpack @@ -135,7 +135,7 @@ description: It's a backpack made of all-natural fibers. components: - type: Sprite - sprite: _White/Clothing/Back/Backpacks/hydroponics.rsi #WWDP edit + sprite: Clothing/Back/Backpacks/hydroponics.rsi - type: entity parent: ClothingBackpack @@ -144,7 +144,7 @@ description: A backpack specially designed to repel stains and hazardous liquids. components: - type: Sprite - sprite: _White/Clothing/Back/Backpacks/science.rsi #WWDP edit + sprite: Clothing/Back/Backpacks/science.rsi - type: entity parent: ClothingBackpack @@ -162,7 +162,7 @@ description: A backpack made of hypo-allergenic fibers. It's designed to help prevent the spread of disease. Smells like monkey. components: - type: Sprite - sprite: _White/Clothing/Back/Backpacks/virology.rsi #WWDP edit + sprite: Clothing/Back/Backpacks/virology.rsi - type: entity parent: ClothingBackpack @@ -171,7 +171,7 @@ description: A backpack designed to be super tough, just in case someone hulks out on you. components: - type: Sprite - sprite: _White/Clothing/Back/Backpacks/genetics.rsi #WWDP edit + sprite: Clothing/Back/Backpacks/genetics.rsi - type: entity parent: ClothingBackpack @@ -310,7 +310,7 @@ description: It's a backpack made by Jonk! Co. components: - type: Sprite - sprite: _White/Clothing/Back/Backpacks/cluwne.rsi #WWDP edit + sprite: Clothing/Back/Backpacks/cluwne.rsi - type: Unremoveable deleteOnDrop: false diff --git a/Resources/Prototypes/Entities/Clothing/Back/duffel.yml b/Resources/Prototypes/Entities/Clothing/Back/duffel.yml index ff3ef2ab8a..969d9a6fde 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/duffel.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/duffel.yml @@ -58,7 +58,7 @@ description: A large duffel bag for holding extra honk goods. components: - type: Sprite - sprite: _White/Clothing/Back/Duffels/clown.rsi #WWDP edit + sprite: Clothing/Back/Duffels/clown.rsi - type: Storage storageOpenSound: collection: BikeHorn @@ -88,7 +88,7 @@ description: A large duffel bag for holding extra beakers and test tubes. components: - type: Sprite - sprite: _White/Clothing/Back/Duffels/chemistry.rsi #WWDP edit + sprite: Clothing/Back/Duffels/chemistry.rsi - type: entity parent: ClothingBackpackDuffel @@ -128,7 +128,7 @@ description: A large duffel bag for holding extra science related goods. components: - type: Sprite - sprite: _White/Clothing/Back/Duffels/science.rsi #WWDP edit + sprite: Clothing/Back/Duffels/science.rsi - type: entity parent: ClothingBackpackDuffel diff --git a/Resources/Prototypes/Entities/Clothing/Back/satchel.yml b/Resources/Prototypes/Entities/Clothing/Back/satchel.yml index 10853f8873..0aa6fc5730 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/satchel.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/satchel.yml @@ -5,7 +5,7 @@ description: A trendy looking satchel. components: - type: Sprite - sprite: _White/Clothing/Back/Satchels/satchel.rsi #WWDP edit + sprite: Clothing/Back/Satchels/satchel.rsi - type: Storage grid: - 0,0,1,3 @@ -28,7 +28,7 @@ description: A tough satchel with extra pockets. components: - type: Sprite - sprite: _White/Clothing/Back/Satchels/engineering.rsi #WWDP edit + sprite: Clothing/Back/Satchels/engineering.rsi - type: entity parent: ClothingBackpackSatchel @@ -46,7 +46,7 @@ description: For fast running from security. components: - type: Sprite - sprite: _White/Clothing/Back/Satchels/clown.rsi #WWDP edit + sprite: Clothing/Back/Satchels/clown.rsi - type: Storage storageOpenSound: collection: BikeHorn @@ -67,7 +67,7 @@ description: A sterile satchel used in medical departments. components: - type: Sprite - sprite: _White/Clothing/Back/Satchels/medical.rsi #WWDP edit + sprite: Clothing/Back/Satchels/medical.rsi - type: entity parent: ClothingBackpackSatchel @@ -76,7 +76,7 @@ description: A sterile satchel with chemist colours. components: - type: Sprite - sprite: _White/Clothing/Back/Satchels/chemistry.rsi #WWDP edit + sprite: Clothing/Back/Satchels/chemistry.rsi - type: entity parent: ClothingBackpackSatchel @@ -103,7 +103,7 @@ description: Useful for holding research materials. components: - type: Sprite - sprite: _White/Clothing/Back/Satchels/science.rsi #WWDP edit + sprite: Clothing/Back/Satchels/science.rsi - type: entity parent: ClothingBackpackSatchel @@ -121,7 +121,7 @@ description: A robust satchel for security related needs. components: - type: Sprite - sprite: _White/Clothing/Back/Satchels/security.rsi #WWDP edit + sprite: Clothing/Back/Satchels/security.rsi - type: entity parent: ClothingBackpackSatchel @@ -139,7 +139,7 @@ description: An exclusive satchel for Nanotrasen officers. components: - type: Sprite - sprite: _White/Clothing/Back/Satchels/captain.rsi #WWDP edit + sprite: Clothing/Back/Satchels/captain.rsi - type: entity parent: ClothingBackpackSatchel @@ -148,7 +148,7 @@ description: A satchel made of all natural fibers. components: - type: Sprite - sprite: _White/Clothing/Back/Satchels/hydroponics.rsi #WWDP edit + sprite: Clothing/Back/Satchels/hydroponics.rsi - type: entity parent: ClothingBackpackSatchel diff --git a/Resources/Prototypes/Entities/Clothing/Back/specific.yml b/Resources/Prototypes/Entities/Clothing/Back/specific.yml index 829d8b7bdf..c8af111838 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/specific.yml @@ -8,15 +8,15 @@ - type: Tag tags: [] # ignore "WhitelistChameleon" tag - type: Sprite - sprite: _White/Clothing/Back/Backpacks/backpack.rsi #WWDP edit + sprite: Clothing/Back/Backpacks/backpack.rsi - type: ChameleonClothing slot: [back] default: ClothingBackpack - type: UserInterface interfaces: - - key: enum.StorageUiKey.Key + enum.StorageUiKey.Key: type: StorageBoundUserInterface - - key: enum.ChameleonUiKey.Key + enum.ChameleonUiKey.Key: type: ChameleonBoundUserInterface - type: entity @@ -51,8 +51,8 @@ canChangeTransferAmount: true - type: UserInterface interfaces: - - key: enum.TransferAmountUiKey.Key - type: TransferAmountBoundUserInterface + enum.TransferAmountUiKey.Key: + type: TransferAmountBoundUserInterface - type: DrawableSolution solution: tank - type: RefillableSolution diff --git a/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml b/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml index 62889d0aba..1d26d71660 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml @@ -45,8 +45,8 @@ ents: [] - type: UserInterface interfaces: - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface - type: entity abstract: true diff --git a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml index 359165cfc5..80d5cf5a15 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml @@ -31,6 +31,7 @@ - AppraisalTool - JawsOfLife - GPS + - WeldingMask components: - SprayPainter - NetworkConfigurator @@ -473,12 +474,19 @@ - MagazinePistol - MagazineMagnum - CombatKnife + - Truncheon components: - Stunbaton - FlashOnTrigger - SmokeOnTrigger - Flash - Handcuff + - BallisticAmmoProvider + - CartridgeAmmo + - DoorRemote + - Whistle + - HolosignProjector + - BalloonPopper - type: ItemMapper mapLayers: flashbang: @@ -600,7 +608,7 @@ - CartridgeAmmo - type: entity - parent: ClothingBeltStorageBase + parent: ClothingBeltSecurity id: ClothingBeltSecurityWebbing name: security webbing description: Unique and versatile chest rig, can hold security gear. @@ -623,11 +631,10 @@ - id: Stunbaton - id: Handcuffs - id: Handcuffs - - type: entity parent: ClothingBeltStorageBase id: ClothingBeltMercWebbing - name: mercenarie webbing + name: mercenary webbing description: Ideal for storing everything from ammo to weapons and combat essentials. components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Clothing/Belt/quiver.yml b/Resources/Prototypes/Entities/Clothing/Belt/quiver.yml index 6cbf5a69ca..bb4e395c4f 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/quiver.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/quiver.yml @@ -18,7 +18,11 @@ whitelist: tags: - Arrow + - Plunger - type: Appearance - type: StorageContainerVisuals maxFillLevels: 3 fillBaseName: fill- + - type: Construction + graph: Quiver + node: Quiver diff --git a/Resources/Prototypes/Entities/Clothing/Ears/specific.yml b/Resources/Prototypes/Entities/Clothing/Ears/specific.yml index 093f5e645b..83612ac4b2 100644 --- a/Resources/Prototypes/Entities/Clothing/Ears/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Ears/specific.yml @@ -16,5 +16,5 @@ default: ClothingHeadsetGrey - type: UserInterface interfaces: - - key: enum.ChameleonUiKey.Key + enum.ChameleonUiKey.Key: type: ChameleonBoundUserInterface diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml index 0f6c4acfcb..9e47a685f0 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml @@ -82,7 +82,6 @@ tags: - HamsterWearable - WhitelistChameleon - - GlassesNearsight # SimpleStation14 NearsightedTrait - type: entity parent: ClothingEyesBase @@ -156,7 +155,7 @@ protectionTime: 5 - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesBase, ShowSecurityIcons] id: ClothingEyesGlassesSecurity name: security glasses description: Upgraded sunglasses that provide flash immunity and a security HUD. @@ -176,7 +175,6 @@ - type: GuideHelp guides: - Security - - type: ShowSecurityIcons - type: IdentityBlocker coverage: EYES diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml index fabb7bc642..835c405e19 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml @@ -1,3 +1,13 @@ +- type: entity + id: ShowSecurityIcons + abstract: true + noSpawn: true + components: + - type: ShowJobIcons + - type: ShowMindShieldIcons + - type: ShowCriminalRecordIcons + + - type: entity parent: ClothingEyesBase id: ClothingEyesHudDiagnostic @@ -17,7 +27,7 @@ parent: ClothingEyesBase id: ClothingEyesHudMedical name: medical hud - description: A heads-up display that scans the humanoids in view and provides accurate data about their health status. + description: A heads-up display that scans the humanoids in view and provides accurate data about their health status. components: - type: Sprite sprite: Clothing/Eyes/Hud/med.rsi @@ -34,7 +44,7 @@ - HudMedical - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesBase, ShowSecurityIcons] id: ClothingEyesHudSecurity name: security hud description: A heads-up display that scans the humanoids in view and provides accurate data about their ID status and security records. @@ -43,7 +53,6 @@ sprite: Clothing/Eyes/Hud/sec.rsi - type: Clothing sprite: Clothing/Eyes/Hud/sec.rsi - - type: ShowSecurityIcons - type: Tag tags: - HudSecurity @@ -138,7 +147,7 @@ - type: ShowThirstIcons - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesBase, ShowSecurityIcons] id: ClothingEyesHudMedSec name: medsec hud description: An eye display that looks like a mixture of medical and security huds. @@ -150,13 +159,15 @@ - type: Construction graph: HudMedSec node: medsecHud - - type: ShowSecurityIcons - type: ShowHealthBars damageContainers: - Biological + - type: ShowHealthIcons + damageContainers: + - Biological - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesBase, ShowSecurityIcons] id: ClothingEyesHudMultiversal name: multiversal hud description: Filler @@ -165,7 +176,6 @@ sprite: Clothing/Eyes/Hud/medsecengi.rsi - type: Clothing sprite: Clothing/Eyes/Hud/medsecengi.rsi - - type: ShowSecurityIcons - type: ShowHealthBars damageContainers: - Biological @@ -176,7 +186,7 @@ - type: ShowSyndicateIcons - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesBase, ShowSecurityIcons] id: ClothingEyesHudOmni name: omni hud description: Filler @@ -185,7 +195,6 @@ sprite: Clothing/Eyes/Hud/omni.rsi - type: Clothing sprite: Clothing/Eyes/Hud/omni.rsi - - type: ShowSecurityIcons - type: ShowHealthBars damageContainers: - Biological @@ -198,7 +207,7 @@ - type: ShowSyndicateIcons - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesBase, ShowSecurityIcons] id: ClothingEyesHudSyndicate name: syndicate visor description: The syndicate's professional head-up display, designed for better detection of humanoids and their subsequent elimination. @@ -208,14 +217,26 @@ - type: Clothing sprite: Clothing/Eyes/Hud/synd.rsi - type: ShowSyndicateIcons - - type: ShowSecurityIcons - type: entity - parent: ClothingEyesGlassesSunglasses + parent: [ClothingEyesBase, ShowSecurityIcons] + id: ClothingEyesHudSyndicateAgent + name: syndicate agent visor + description: The Syndicate Agent's professional heads-up display, designed for quick diagnosis of their team's status. + components: + - type: Sprite + sprite: Clothing/Eyes/Hud/syndagent.rsi + - type: Clothing + sprite: Clothing/Eyes/Hud/syndagent.rsi + - type: ShowSyndicateIcons + - type: ShowHealthBars + damageContainers: + - Biological + +- type: entity + parent: [ClothingEyesGlassesSunglasses, ShowSecurityIcons] id: ClothingEyesGlassesHiddenSecurity suffix: Syndicate - components: - - type: ShowSecurityIcons - type: entity parent: ClothingEyesHudMedical diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/specific.yml b/Resources/Prototypes/Entities/Clothing/Eyes/specific.yml index c04f348287..fa87ed398e 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/specific.yml @@ -16,6 +16,6 @@ default: ClothingEyesGlassesSunglasses - type: UserInterface interfaces: - - key: enum.ChameleonUiKey.Key + enum.ChameleonUiKey.Key: type: ChameleonBoundUserInterface diff --git a/Resources/Prototypes/Entities/Clothing/Hands/colored.yml b/Resources/Prototypes/Entities/Clothing/Hands/colored.yml index 3f101a4b83..de08e6446c 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/colored.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/colored.yml @@ -10,7 +10,7 @@ description: Regular purple gloves that do not keep you from frying. components: - type: Sprite - sprite: _White/Clothing/Hands/Gloves/Color/color.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/color.rsi layers: - state: icon color: "#9C0DE1" @@ -23,7 +23,7 @@ - state: inhand-right color: "#9C0DE1" - type: Clothing - sprite: _White/Clothing/Hands/Gloves/Color/color.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/color.rsi clothingVisuals: gloves: - state: equipped-HAND @@ -39,7 +39,7 @@ description: Regular red gloves that do not keep you from frying. components: - type: Sprite - sprite: _White/Clothing/Hands/Gloves/Color/color.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/color.rsi layers: - state: icon color: "#940000" @@ -52,7 +52,7 @@ - state: inhand-right color: "#940000" - type: Clothing - sprite: _White/Clothing/Hands/Gloves/Color/color.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/color.rsi clothingVisuals: gloves: - state: equipped-HAND @@ -68,7 +68,7 @@ description: Regular blue gloves that do not keep you from frying. components: - type: Sprite - sprite: _White/Clothing/Hands/Gloves/Color/color.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/color.rsi layers: - state: icon color: "#0089EF" @@ -81,7 +81,7 @@ - state: inhand-right color: "#0089EF" - type: Clothing - sprite: _White/Clothing/Hands/Gloves/Color/color.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/color.rsi clothingVisuals: gloves: - state: equipped-HAND @@ -97,7 +97,7 @@ description: Regular brown gloves that do not keep you from frying. components: - type: Sprite - sprite: _White/Clothing/Hands/Gloves/Color/color.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/color.rsi layers: - state: icon color: "#723A02" @@ -110,7 +110,7 @@ - state: inhand-right color: "#723A02" - type: Clothing - sprite: _White/Clothing/Hands/Gloves/Color/color.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/color.rsi clothingVisuals: gloves: - state: equipped-HAND @@ -126,7 +126,7 @@ description: Regular grey gloves that do not keep you from frying. components: - type: Sprite - sprite: _White/Clothing/Hands/Gloves/Color/color.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/color.rsi layers: - state: icon color: "#999999" @@ -139,7 +139,7 @@ - state: inhand-right color: "#999999" - type: Clothing - sprite: _White/Clothing/Hands/Gloves/Color/color.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/color.rsi clothingVisuals: gloves: - state: equipped-HAND @@ -155,7 +155,7 @@ description: Regular green gloves that do not keep you from frying. components: - type: Sprite - sprite: _White/Clothing/Hands/Gloves/Color/color.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/color.rsi layers: - state: icon color: "#5ABF2F" @@ -168,7 +168,7 @@ - state: inhand-right color: "#5ABF2F" - type: Clothing - sprite: _White/Clothing/Hands/Gloves/Color/color.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/color.rsi clothingVisuals: gloves: - state: equipped-HAND @@ -184,7 +184,7 @@ description: Regular light brown gloves that do not keep you from frying. components: - type: Sprite - sprite: _White/Clothing/Hands/Gloves/Color/color.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/color.rsi layers: - state: icon color: "#C09F72" @@ -197,7 +197,7 @@ - state: inhand-right color: "#C09F72" - type: Clothing - sprite: _White/Clothing/Hands/Gloves/Color/color.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/color.rsi clothingVisuals: gloves: - state: equipped-HAND @@ -213,7 +213,7 @@ description: Regular orange gloves that do not keep you from frying. components: - type: Sprite - sprite: _White/Clothing/Hands/Gloves/Color/color.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/color.rsi layers: - state: icon color: "#EF8100" @@ -226,7 +226,7 @@ - state: inhand-right color: "#EF8100" - type: Clothing - sprite: _White/Clothing/Hands/Gloves/Color/color.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/color.rsi clothingVisuals: gloves: - state: equipped-HAND @@ -242,7 +242,7 @@ description: Regular white gloves that do not keep you from frying. components: - type: Sprite - sprite: _White/Clothing/Hands/Gloves/Color/color.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/color.rsi layers: - state: icon color: "#EAE8E8" @@ -255,7 +255,7 @@ - state: inhand-right color: "#EAE8E8" - type: Clothing - sprite: _White/Clothing/Hands/Gloves/Color/color.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/color.rsi clothingVisuals: gloves: - state: equipped-HAND @@ -272,7 +272,7 @@ description: Regular black gloves that do not keep you from frying. components: - type: Sprite - sprite: _White/Clothing/Hands/Gloves/Color/black.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/black.rsi - type: Item inhandVisuals: left: @@ -282,7 +282,7 @@ - state: inhand-right color: "#535353" - type: Clothing - sprite: _White/Clothing/Hands/Gloves/Color/black.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/black.rsi - type: GloveHeatResistance heatResistance: 1400 - type: Butcherable @@ -302,9 +302,9 @@ components: - type: FingerprintMask - type: Sprite - sprite: _White/Clothing/Hands/Gloves/Color/yellow.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/yellow.rsi - type: Clothing - sprite: _White/Clothing/Hands/Gloves/Color/yellow.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/yellow.rsi - type: GloveHeatResistance heatResistance: 1400 - type: Butcherable diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml index c1d7d9c0ee..d7e4438702 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml @@ -20,6 +20,7 @@ soundHit: collection: BoxingHit animation: WeaponArcFist + mustBeEquippedToUse: true - type: Fiber fiberMaterial: fibers-leather fiberColor: fibers-red @@ -90,6 +91,7 @@ types: Blunt: 8 bluntStaminaDamageFactor: 0.0 # so blunt doesn't deal stamina damage at all + mustBeEquippedToUse: true - type: entity parent: ClothingHandsBase @@ -98,9 +100,9 @@ description: Regal blue gloves, with a nice gold trim. Swanky. components: - type: Sprite - sprite: _White/Clothing/Hands/Gloves/captain.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/captain.rsi #WWDP edit - type: Clothing - sprite: _White/Clothing/Hands/Gloves/captain.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/captain.rsi #WWDP edit - type: GloveHeatResistance heatResistance: 1400 - type: Insulated @@ -136,9 +138,9 @@ description: Thin sterile latex gloves. Basic PPE for any doctor. components: - type: Sprite - sprite: _White/Clothing/Hands/Gloves/latex.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/latex.rsi #WWDP edit - type: Clothing - sprite: _White/Clothing/Hands/Gloves/latex.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/latex.rsi #WWDP edit - type: Fiber fiberMaterial: fibers-latex - type: FingerprintMask @@ -239,6 +241,12 @@ name: combat gloves description: These tactical gloves are fireproof and shock resistant. components: + - type: Sprite + sprite: Clothing/Hands/Gloves/combat.rsi + - type: Clothing + sprite: Clothing/Hands/Gloves/combat.rsi + - type: GloveHeatResistance + heatResistance: 1400 - type: Insulated - type: Fiber fiberMaterial: fibers-insulative @@ -285,9 +293,9 @@ description: Plain black gloves without fingertips for the hard working. components: - type: Sprite - sprite: _White/Clothing/Hands/Gloves/fingerless.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/fingerless.rsi #WWDP edit - type: Clothing - sprite: _White/Clothing/Hands/Gloves/fingerless.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/fingerless.rsi #WWDP edit - type: Fiber fiberMaterial: fibers-synthetic fiberColor: fibers-black @@ -360,6 +368,7 @@ soundHit: collection: Punch animation: WeaponArcFist + mustBeEquippedToUse: true - type: Fiber fiberMaterial: fibers-leather fiberColor: fibers-blue @@ -367,12 +376,11 @@ - type: MeleeSpeech - type: ActivatableUI key: enum.MeleeSpeechUiKey.Key - closeOnHandDeselect: false - rightClickOnly: true + verbOnly: true - type: Actions - type: UserInterface interfaces: - - key: enum.MeleeSpeechUiKey.Key + enum.MeleeSpeechUiKey.Key: type: MeleeSpeechBoundUserInterface - type: StaticPrice price: 0 diff --git a/Resources/Prototypes/Entities/Clothing/Hands/specific.yml b/Resources/Prototypes/Entities/Clothing/Hands/specific.yml index 9a311d2bed..b35c3b8b50 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/specific.yml @@ -8,9 +8,9 @@ - type: Tag tags: [] # ignore "WhitelistChameleon" tag - type: Sprite - sprite: _White/Clothing/Hands/Gloves/Color/black.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/black.rsi - type: Clothing - sprite: _White/Clothing/Hands/Gloves/Color/black.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/black.rsi - type: ChameleonClothing slot: [gloves] default: ClothingHandsGlovesColorBlack @@ -19,9 +19,9 @@ - type: FingerprintMask - type: UserInterface interfaces: - - key: enum.ChameleonUiKey.Key + enum.ChameleonUiKey.Key: type: ChameleonBoundUserInterface - + - type: entity parent: ClothingHandsChameleon id: ClothingHandsChameleonThief diff --git a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml index d13b284ff2..e19217686f 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml @@ -133,11 +133,13 @@ unequipSound: /Audio/Mecha/mechmove03.ogg - type: Tag tags: - - HidesHair - WhitelistChameleon - HelmetEVA - - HidesNose - type: IdentityBlocker + - type: HideLayerClothing + slots: + - Hair + - Snout - type: entity abstract: true @@ -161,6 +163,8 @@ lowPressureMultiplier: 1000 - type: TemperatureProtection coefficient: 0.1 + - type: FireProtection + reduction: 0.2 - type: Armor modifiers: coefficients: @@ -173,10 +177,12 @@ - type: IngestionBlocker - type: Tag tags: - - HidesHair - WhitelistChameleon - - HidesNose - type: IdentityBlocker + - type: HideLayerClothing + slots: + - Hair + - Snout - type: entity abstract: true @@ -248,6 +254,6 @@ - type: TemperatureProtection coefficient: 0.7 - type: GroupExamine - - type: Tag - tags: - - HidesHair + - type: HideLayerClothing + slots: + - Hair diff --git a/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml index 5fd44136ed..c3c6a617a0 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml @@ -7,9 +7,9 @@ components: - type: BreathMask - type: Sprite - sprite: _White/Clothing/Head/Helmets/eva.rsi #WWDP edit + sprite: Clothing/Head/Helmets/eva.rsi - type: Clothing - sprite: _White/Clothing/Head/Helmets/eva.rsi #WWDP edit + sprite: Clothing/Head/Helmets/eva.rsi - type: Tag tags: - HelmetEVA @@ -24,9 +24,9 @@ components: - type: BreathMask - type: Sprite - sprite: _White/Clothing/Head/Helmets/eva_large.rsi #WWDP edit + sprite: Clothing/Head/Helmets/eva_large.rsi - type: Clothing - sprite: _White/Clothing/Head/Helmets/eva_large.rsi #WWDP edit + sprite: Clothing/Head/Helmets/eva_large.rsi #Syndicate EVA Helmet - type: entity @@ -37,9 +37,9 @@ components: - type: BreathMask - type: Sprite - sprite: _White/Clothing/Head/Helmets/eva_syndicate.rsi #WWDP edit + sprite: Clothing/Head/Helmets/eva_syndicate.rsi - type: Clothing - sprite: _White/Clothing/Head/Helmets/eva_syndicate.rsi #WWDP edit + sprite: Clothing/Head/Helmets/eva_syndicate.rsi #Cosmonaut Helmet - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml index 2f279e4786..e6419ef4f4 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml @@ -17,9 +17,9 @@ sprite: Clothing/Head/Hardsuits/basic.rsi - type: Clothing sprite: Clothing/Head/Hardsuits/basic.rsi - - type: Tag - tags: - - HidesNose + - type: HideLayerClothing + slots: + - Snout #Atmospherics Hardsuit - type: entity @@ -30,7 +30,7 @@ components: - type: BreathMask - type: Sprite - sprite: _White/Clothing/Head/Hardsuits/atmospherics.rsi #WWDP edit + sprite: Clothing/Head/Hardsuits/atmospherics.rsi layers: - state: icon - state: icon-unshaded @@ -88,7 +88,7 @@ components: - type: BreathMask - type: Sprite - sprite: _White/Clothing/Head/Hardsuits/spatiohelm.rsi #WWDP edit + sprite: Clothing/Head/Hardsuits/spatiohelm.rsi layers: - state: icon - state: icon-unshaded @@ -123,9 +123,9 @@ components: - type: BreathMask - type: Sprite - sprite: _White/Clothing/Head/Hardsuits/salvage.rsi #WWDP edit + sprite: Clothing/Head/Hardsuits/salvage.rsi - type: Clothing - sprite: _White/Clothing/Head/Hardsuits/salvage.rsi #WWDP edit + sprite: Clothing/Head/Hardsuits/salvage.rsi - type: PressureProtection highPressureMultiplier: 0.525 lowPressureMultiplier: 1000 @@ -184,9 +184,9 @@ components: - type: BreathMask - type: Sprite - sprite: _White/Clothing/Head/Hardsuits/security.rsi #WWDP edit + sprite: Clothing/Head/Hardsuits/security.rsi - type: Clothing - sprite: _White/Clothing/Head/Hardsuits/security.rsi #WWDP edit + sprite: Clothing/Head/Hardsuits/security.rsi - type: PointLight color: "#ffeead" - type: PressureProtection @@ -261,9 +261,9 @@ components: - type: BreathMask - type: Sprite - sprite: _White/Clothing/Head/Hardsuits/capspace.rsi #WWDP edit + sprite: Clothing/Head/Hardsuits/capspace.rsi - type: Clothing - sprite: _White/Clothing/Head/Hardsuits/capspace.rsi #WWDP edit + sprite: Clothing/Head/Hardsuits/capspace.rsi - type: PressureProtection highPressureMultiplier: 0.3 lowPressureMultiplier: 1000 @@ -279,9 +279,9 @@ components: - type: BreathMask - type: Sprite - sprite: _White/Clothing/Head/Hardsuits/engineering-white.rsi #WWDP edit + sprite: Clothing/Head/Hardsuits/engineering-white.rsi - type: Clothing - sprite: _White/Clothing/Head/Hardsuits/engineering-white.rsi #WWDP edit + sprite: Clothing/Head/Hardsuits/engineering-white.rsi - type: PointLight color: "#daffad" - type: PressureProtection @@ -358,9 +358,9 @@ components: - type: BreathMask - type: Sprite - sprite: _White/Clothing/Head/Hardsuits/luxury.rsi #WWDP edit + sprite: Clothing/Head/Hardsuits/luxury.rsi - type: Clothing - sprite: _White/Clothing/Head/Hardsuits/luxury.rsi #WWDP edit + sprite: Clothing/Head/Hardsuits/luxury.rsi - type: PressureProtection highPressureMultiplier: 0.525 lowPressureMultiplier: 1000 @@ -378,9 +378,9 @@ components: - type: BreathMask - type: Sprite - sprite: _White/Clothing/Head/Hardsuits/syndicate.rsi #WWDP edit + sprite: Clothing/Head/Hardsuits/syndicate.rsi - type: Clothing - sprite: _White/Clothing/Head/Hardsuits/syndicate.rsi #WWDP edit + sprite: Clothing/Head/Hardsuits/syndicate.rsi - type: PointLight color: green - type: PressureProtection @@ -428,9 +428,9 @@ components: - type: BreathMask - type: Sprite - sprite: _White/Clothing/Head/Hardsuits/syndieelite.rsi #WWDP edit + sprite: Clothing/Head/Hardsuits/syndieelite.rsi - type: Clothing - sprite: _White/Clothing/Head/Hardsuits/syndieelite.rsi #WWDP edit + sprite: Clothing/Head/Hardsuits/syndieelite.rsi - type: PointLight color: red - type: PressureProtection @@ -438,6 +438,8 @@ lowPressureMultiplier: 1000 - type: TemperatureProtection coefficient: 0.005 + - type: FireProtection + reduction: 0.2 - type: Armor modifiers: coefficients: @@ -455,9 +457,9 @@ components: - type: BreathMask - type: Sprite - sprite: _White/Clothing/Head/Hardsuits/syndiecommander.rsi #WWDP edit + sprite: Clothing/Head/Hardsuits/syndiecommander.rsi - type: Clothing - sprite: _White/Clothing/Head/Hardsuits/syndiecommander.rsi #WWDP edit + sprite: Clothing/Head/Hardsuits/syndiecommander.rsi - type: PointLight color: green - type: PressureProtection @@ -480,9 +482,9 @@ components: - type: BreathMask - type: Sprite - sprite: _White/Clothing/Head/Hardsuits/cybersun.rsi #WWDP edit + sprite: Clothing/Head/Hardsuits/cybersun.rsi - type: Clothing - sprite: _White/Clothing/Head/Hardsuits/cybersun.rsi #WWDP edit + sprite: Clothing/Head/Hardsuits/cybersun.rsi - type: PressureProtection highPressureMultiplier: 0.3 lowPressureMultiplier: 1000 @@ -744,6 +746,12 @@ Heat: 0.80 Radiation: 0.80 Caustic: 0.95 + # WD EDIT START + - type: ClothingGrantComponent + component: + - type: ThermalVision + - type: NightVision + # WD EDIT END #MISC. HARDSUITS #Clown Hardsuit @@ -755,9 +763,9 @@ components: - type: BreathMask - type: Sprite - sprite: _White/Clothing/Head/Hardsuits/clown.rsi #WWDP edit + sprite: Clothing/Head/Hardsuits/clown.rsi - type: Clothing - sprite: _White/Clothing/Head/Hardsuits/clown.rsi #WWDP edit + sprite: Clothing/Head/Hardsuits/clown.rsi equipSound: /Audio/Mecha/mechmove03.ogg unequipSound: /Audio/Effects/Emotes/parp1.ogg diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml index 838ac5c790..d59d62251c 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml @@ -197,9 +197,9 @@ description: It's good being the king. components: - type: Sprite - sprite: _White/Clothing/Head/Hats/captain.rsi #WWDP edit + sprite: Clothing/Head/Hats/captain.rsi - type: Clothing - sprite: _White/Clothing/Head/Hats/captain.rsi #WWDP edit + sprite: Clothing/Head/Hats/captain.rsi - type: Tag tags: - ClothMade @@ -228,9 +228,9 @@ description: "It's good to be the emperor." components: - type: Sprite - sprite: _White/Clothing/Head/Hats/centcom.rsi #WWDP edit + sprite: Clothing/Head/Hats/centcom.rsi - type: Clothing - sprite: _White/Clothing/Head/Hats/centcom.rsi #WWDP edit + sprite: Clothing/Head/Hats/centcom.rsi - type: entity parent: ClothingHeadBase @@ -247,7 +247,7 @@ - 0,0,0,0 - type: UserInterface interfaces: - - key: enum.StorageUiKey.Key + enum.StorageUiKey.Key: type: StorageBoundUserInterface - type: ContainerContainer containers: @@ -384,12 +384,15 @@ sprite: Clothing/Head/Hats/plaguedoctor.rsi - type: Tag tags: - - HidesHair - WhitelistChameleon - ClothMade + - type: HideLayerClothing + slots: + - Hair + - Snout - type: entity - parent: ClothingHeadBase + parent: ClothingHeadHatWizardBase id: ClothingHeadHatRedwizard name: red wizard hat description: Strange-looking red hat-wear that most certainly belongs to a real magic user. @@ -509,7 +512,7 @@ - type: entity - parent: ClothingHeadBase + parent: ClothingHeadHatWizardBase id: ClothingHeadHatVioletwizard name: violet wizard hat description: "Strange-looking violet hat-wear that most certainly belongs to a real magic user." @@ -543,15 +546,18 @@ name: witch hat description: A witch hat. components: + - type: WizardClothes #Yes this will count - type: Sprite sprite: Clothing/Head/Hats/witch.rsi - type: Clothing sprite: Clothing/Head/Hats/witch.rsi - type: Tag tags: - - HidesHair - WhitelistChameleon - ClothMade + - type: HideLayerClothing + slots: + - Hair - type: entity parent: ClothingHeadBase @@ -565,7 +571,14 @@ sprite: Clothing/Head/Hats/wizard_fake.rsi - type: entity + abstract: true parent: ClothingHeadBase + id: ClothingHeadHatWizardBase + components: + - type: WizardClothes + +- type: entity + parent: ClothingHeadHatWizardBase id: ClothingHeadHatWizard name: wizard hat description: Strange-looking blue hat-wear that most certainly belongs to a powerful magic user. @@ -720,18 +733,18 @@ description: A hat with bells, to add some merriness to the suit. components: - type: Sprite - sprite: _White/Clothing/Head/Hats/jester.rsi #WWDP edit + sprite: Clothing/Head/Hats/jester.rsi - type: Clothing - sprite: _White/Clothing/Head/Hats/jester.rsi #WWDP edit + sprite: Clothing/Head/Hats/jester.rsi - type: entity parent: ClothingHeadHatJester id: ClothingHeadHatJesterAlt components: - type: Sprite - sprite: _White/Clothing/Head/Hats/jester2.rsi #WWDP edit + sprite: Clothing/Head/Hats/jester2.rsi - type: Clothing - sprite: _White/Clothing/Head/Hats/jester2.rsi #WWDP edit + sprite: Clothing/Head/Hats/jester2.rsi - type: entity parent: ClothingHeadBase @@ -846,8 +859,8 @@ - 0,0,0,0 - type: UserInterface interfaces: - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface - type: ContainerContainer containers: storagebase: !type:Container diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index dfe1273239..21048ee441 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -9,9 +9,9 @@ description: Standard security gear. Protects the head from impacts. components: - type: Sprite - sprite: _White/Clothing/Head/Helmets/security.rsi #WWDP edit + sprite: Clothing/Head/Helmets/security.rsi - type: Clothing - sprite: _White/Clothing/Head/Helmets/security.rsi #WWDP edit + sprite: Clothing/Head/Helmets/security.rsi - type: Armor #Values seem to let the user survive one extra hit if attacked consistently. modifiers: coefficients: @@ -110,6 +110,10 @@ Blunt: 0.95 Slash: 0.95 Piercing: 0.95 + - type: HideLayerClothing + slots: + - Hair + - Snout #Janitorial Bombsuit Helmet - type: entity @@ -157,10 +161,13 @@ sprite: Clothing/Head/Helmets/spaceninja.rsi - type: Tag tags: - - HidesHair - WhitelistChameleon - type: IngestionBlocker - type: IdentityBlocker + - type: HideLayerClothing + slots: + - Hair + - Snout #Templar Helmet - type: entity @@ -217,11 +224,16 @@ - type: IngestionBlocker - type: TemperatureProtection coefficient: 0.005 + - type: FireProtection + reduction: 0.15 # not fully sealed so less protection - type: IdentityBlocker - type: Tag tags: - - HidesHair - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair + - Snout #Atmos Fire Helmet - type: entity @@ -238,14 +250,19 @@ - type: IngestionBlocker - type: TemperatureProtection coefficient: 0.005 + - type: FireProtection + reduction: 0.2 - type: PressureProtection highPressureMultiplier: 0.25 lowPressureMultiplier: 1000 - type: IdentityBlocker - type: Tag tags: - - HidesHair - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair + - Snout #Chitinous Helmet - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Head/hoods.yml b/Resources/Prototypes/Entities/Clothing/Head/hoods.yml index 5d4bf93da0..0bca209d51 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hoods.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hoods.yml @@ -6,15 +6,18 @@ description: A hood that protects the head and face from biological contaminants. components: - type: Sprite - sprite: _White/Clothing/Head/Hoods/Bio/general.rsi #WWDP edit + sprite: Clothing/Head/Hoods/Bio/general.rsi - type: Clothing - sprite: _White/Clothing/Head/Hoods/Bio/general.rsi #WWDP edit + sprite: Clothing/Head/Hoods/Bio/general.rsi - type: BreathMask - type: IngestionBlocker - type: Tag tags: - - HidesHair - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair + - Snout - type: entity parent: ClothingHeadHatHoodBioGeneral @@ -25,9 +28,9 @@ components: - type: IdentityBlocker - type: Sprite - sprite: _White/Clothing/Head/Hoods/Bio/cmo.rsi #WWDP edit + sprite: Clothing/Head/Hoods/Bio/cmo.rsi - type: Clothing - sprite: _White/Clothing/Head/Hoods/Bio/cmo.rsi #WWDP edit + sprite: Clothing/Head/Hoods/Bio/cmo.rsi - type: entity parent: ClothingHeadHatHoodBioGeneral @@ -38,9 +41,9 @@ components: - type: IdentityBlocker - type: Sprite - sprite: _White/Clothing/Head/Hoods/Bio/janitor.rsi #WWDP edit + sprite: Clothing/Head/Hoods/Bio/janitor.rsi - type: Clothing - sprite: _White/Clothing/Head/Hoods/Bio/janitor.rsi #WWDP edit + sprite: Clothing/Head/Hoods/Bio/janitor.rsi - type: entity parent: ClothingHeadHatHoodBioGeneral @@ -51,9 +54,9 @@ components: - type: IdentityBlocker - type: Sprite - sprite: _White/Clothing/Head/Hoods/Bio/scientist.rsi #WWDP edit + sprite: Clothing/Head/Hoods/Bio/scientist.rsi - type: Clothing - sprite: _White/Clothing/Head/Hoods/Bio/scientist.rsi #WWDP edit + sprite: Clothing/Head/Hoods/Bio/scientist.rsi - type: entity parent: ClothingHeadHatHoodBioGeneral @@ -64,9 +67,9 @@ components: - type: IdentityBlocker - type: Sprite - sprite: _White/Clothing/Head/Hoods/Bio/security.rsi #WWDP edit + sprite: Clothing/Head/Hoods/Bio/security.rsi - type: Clothing - sprite: _White/Clothing/Head/Hoods/Bio/security.rsi #WWDP edit + sprite: Clothing/Head/Hoods/Bio/security.rsi - type: entity parent: ClothingHeadHatHoodBioGeneral @@ -77,9 +80,9 @@ components: - type: IdentityBlocker - type: Sprite - sprite: _White/Clothing/Head/Hoods/Bio/virology.rsi #WWDP edit + sprite: Clothing/Head/Hoods/Bio/virology.rsi - type: Clothing - sprite: _White/Clothing/Head/Hoods/Bio/virology.rsi #WWDP edit + sprite: Clothing/Head/Hoods/Bio/virology.rsi - type: entity parent: ClothingHeadBase @@ -94,9 +97,11 @@ sprite: Clothing/Head/Hoods/chaplain.rsi - type: Tag tags: - - HidesHair - HamsterWearable - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair - type: entity parent: ClothingHeadBase @@ -110,8 +115,10 @@ sprite: Clothing/Head/Hoods/cult.rsi - type: Tag tags: - - HidesHair - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair - type: entity parent: ClothingHeadBase @@ -125,9 +132,11 @@ sprite: Clothing/Head/Hoods/nun.rsi - type: Tag tags: - - HidesHair - HamsterWearable - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair - type: entity parent: ClothingHeadBase @@ -136,18 +145,19 @@ description: A hood of the hazmat suit, designed for protection from high radioactivity. components: - type: Sprite - sprite: _White/Clothing/Head/Hoods/rad.rsi #WWDP edit + sprite: Clothing/Head/Hoods/rad.rsi - type: Clothing - sprite: _White/Clothing/Head/Hoods/rad.rsi #WWDP edit + sprite: Clothing/Head/Hoods/rad.rsi - type: Armor modifiers: coefficients: Heat: 0.95 Radiation: 0.65 - type: BreathMask - - type: Tag - tags: - - HidesHair + - type: HideLayerClothing + slots: + - Hair + - Snout - type: entity parent: ClothingHeadBase @@ -161,8 +171,10 @@ sprite: Clothing/Head/Hoods/goliathcloak.rsi - type: Tag tags: - - HidesHair - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair - type: entity parent: ClothingHeadBase @@ -175,9 +187,9 @@ sprite: Clothing/Head/Hoods/iansuit.rsi - type: Clothing sprite: Clothing/Head/Hoods/iansuit.rsi - - type: Tag - tags: - - HidesHair + - type: HideLayerClothing + slots: + - Hair - type: entity parent: ClothingHeadBase @@ -190,9 +202,9 @@ sprite: Clothing/Head/Hoods/carpsuit.rsi - type: Clothing sprite: Clothing/Head/Hoods/carpsuit.rsi - - type: Tag - tags: - - HidesHair + - type: HideLayerClothing + slots: + - Hair - type: entity parent: ClothingHeadBase @@ -207,8 +219,11 @@ - type: IdentityBlocker - type: Tag tags: - - HidesHair - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair + - Snout #Winter Coat Hoods - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Head/specific.yml b/Resources/Prototypes/Entities/Clothing/Head/specific.yml index 1dd36bff94..636f922d85 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/specific.yml @@ -16,5 +16,5 @@ default: ClothingHeadHatBeret - type: UserInterface interfaces: - - key: enum.ChameleonUiKey.Key + enum.ChameleonUiKey.Key: type: ChameleonBoundUserInterface diff --git a/Resources/Prototypes/Entities/Clothing/Head/welding.yml b/Resources/Prototypes/Entities/Clothing/Head/welding.yml index 93d9b1e084..c0ae440a56 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/welding.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/welding.yml @@ -19,6 +19,10 @@ - type: Tag tags: - WhitelistChameleon + - WeldingMask + - type: HideLayerClothing + slots: + - Snout - type: entity parent: WeldingMaskBase @@ -34,6 +38,7 @@ tags: - HamsterWearable - WhitelistChameleon + - WeldingMask - type: entity parent: WeldingMaskBase diff --git a/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml b/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml index 246b47b800..f5ad2fb6c8 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml @@ -25,7 +25,10 @@ - type: Tag tags: - Bandana - - HidesNose + - type: HideLayerClothing + slots: + - Snout + hideOnToggle: true - type: entity parent: ClothingMaskBandanaBase diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index 65b7233158..c470605bb7 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -15,7 +15,10 @@ tags: - HamsterWearable - WhitelistChameleon - - HidesNose + - type: HideLayerClothing + slots: + - Snout + hideOnToggle: true - type: entity parent: ClothingMaskGas @@ -188,17 +191,19 @@ description: A true prankster's facial attire. A clown is incomplete without his wig and mask. components: - type: Sprite - sprite: _White/Clothing/Mask/clown.rsi #WWDP edit + sprite: Clothing/Mask/clown.rsi - type: Clothing - sprite: _White/Clothing/Mask/clown.rsi #WWDP edit + sprite: Clothing/Mask/clown.rsi - type: BreathMask - type: IdentityBlocker - type: Tag tags: - ClownMask - WhitelistChameleon - - HidesNose - - IPCMaskWearable # Estacao Pirata - IPCs + - IPCMaskWearable + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskClownBase @@ -209,7 +214,9 @@ - ClownMask - HamsterWearable - WhitelistChameleon - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskClown @@ -217,9 +224,9 @@ name: banana clown wig and mask components: - type: Sprite - sprite: _White/Clothing/Mask/clown_banana.rsi #WWDP edit + sprite: Clothing/Mask/clown_banana.rsi - type: Clothing - sprite: _White/Clothing/Mask/clown_banana.rsi #WWDP edit + sprite: Clothing/Mask/clown_banana.rsi - type: Construction graph: BananaClownMask node: mask @@ -238,8 +245,10 @@ - type: IdentityBlocker - type: Tag tags: - - HidesNose - - IPCMaskWearable # Estacao Pirata - IPCs + - IPCMaskWearable + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskBase @@ -257,8 +266,10 @@ tags: - HamsterWearable - WhitelistChameleon - - HidesNose - - IPCMaskWearable # Estacao Pirata - IPCs + - IPCMaskWearable + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskPullableBase @@ -272,9 +283,12 @@ sprite: Clothing/Mask/sterile.rsi - type: IngestionBlocker - type: Item - storedRotation: -90 + size: Tiny - type: IdentityBlocker coverage: MOUTH + - type: PhysicalComposition + materialComposition: + Plastic: 25 - type: entity parent: ClothingMaskBase @@ -309,9 +323,10 @@ - type: BreathMask - type: IngestionBlocker - type: IdentityBlocker - - type: Tag - tags: - - HidesNose + - type: HideLayerClothing + slots: + - Snout + hideOnToggle: true - type: entity parent: ClothingMaskClownBase @@ -321,9 +336,9 @@ description: Cursed cluwne face and hair. components: - type: Sprite - sprite: _White/Clothing/Mask/cluwne.rsi #WWDP edit + sprite: Clothing/Mask/cluwne.rsi - type: Clothing - sprite: _White/Clothing/Mask/cluwne.rsi #WWDP edit + sprite: Clothing/Mask/cluwne.rsi - type: Unremoveable - type: AddAccentClothing accent: StutteringAccent @@ -341,8 +356,11 @@ - type: Tag tags: - WhitelistChameleon - - HidesHair - - HidesNose + - type: HideLayerClothing + slots: + - Hair + - Snout + hideOnToggle: true - type: entity parent: ClothingMaskGasExplorer @@ -368,8 +386,11 @@ - type: Tag tags: - WhitelistChameleon - - HidesHair - - HidesNose + - type: HideLayerClothing + slots: + - Hair + - Snout + hideOnToggle: true - type: entity parent: ClothingMaskGasERT @@ -405,7 +426,9 @@ - IPCMaskWearable # Estacao Pirata - IPCs - HamsterWearable - WhitelistChameleon - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: IdentityBlocker - type: entity @@ -422,8 +445,10 @@ - type: IdentityBlocker - type: Tag tags: - - HidesNose - - IPCMaskWearable # Estacao Pirata - IPCs + - IPCMaskWearable + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskBase @@ -439,8 +464,10 @@ - type: IdentityBlocker - type: Tag tags: - - HidesNose - - IPCMaskWearable # Estacao Pirata - IPCs + - IPCMaskWearable + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskBase @@ -456,8 +483,10 @@ - type: IdentityBlocker - type: Tag tags: - - HidesNose - - IPCMaskWearable # Estacao Pirata - IPCs + - IPCMaskWearable + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskBase @@ -473,8 +502,10 @@ - type: IdentityBlocker - type: Tag tags: - - HidesNose - - IPCMaskWearable # Estacao Pirata - IPCs + - IPCMaskWearable + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskBase @@ -490,8 +521,10 @@ - type: IdentityBlocker - type: Tag tags: - - HidesNose - - IPCMaskWearable # Estacao Pirata - IPCs + - IPCMaskWearable + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskBase @@ -507,8 +540,10 @@ - type: IdentityBlocker - type: Tag tags: - - HidesNose - - IPCMaskWearable # Estacao Pirata - IPCs + - IPCMaskWearable + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskBase @@ -544,9 +579,9 @@ description: Some naughty clowns think this is what the Honkmother looks like. components: - type: Sprite - sprite: _White/Clothing/Mask/sexyclown.rsi #WWDP edit + sprite: Clothing/Mask/sexyclown.rsi - type: Clothing - sprite: _White/Clothing/Mask/sexyclown.rsi #WWDP edit + sprite: Clothing/Mask/sexyclown.rsi - type: entity parent: ClothingMaskMime diff --git a/Resources/Prototypes/Entities/Clothing/Masks/specific.yml b/Resources/Prototypes/Entities/Clothing/Masks/specific.yml index 3b71eb5603..4dd9a829ee 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/specific.yml @@ -6,8 +6,7 @@ suffix: Chameleon components: - type: Tag - tags: # ignore "WhitelistChameleon" tag - - HidesNose + tags: [] # ignore "WhitelistChameleon" tag - type: Sprite sprite: Clothing/Mask/gas.rsi - type: Clothing @@ -19,8 +18,11 @@ - type: IdentityBlocker # need that for default ClothingMaskGas - type: UserInterface interfaces: - - key: enum.ChameleonUiKey.Key + enum.ChameleonUiKey.Key: type: ChameleonBoundUserInterface + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskGasChameleon @@ -28,7 +30,38 @@ suffix: Voice Mask, Chameleon components: - type: VoiceMasker - default: ClothingMaskGas - type: Tag tags: - - IPCMaskWearable # Estacao Pirata - IPCs + - IPCMaskWearable + - type: HideLayerClothing + slots: + - Snout + +- type: entity + parent: ClothingMaskBase + id: ClothingMaskWeldingGas + name: welding gas mask + description: A gas mask with built in welding goggles and face shield. Looks like a skull, clearly designed by a nerd. + components: + - type: Sprite + sprite: Clothing/Mask/welding-gas.rsi + state: icon + - type: Clothing + sprite: Clothing/Mask/welding-gas.rsi + - type: BreathMask + - type: IngestionBlocker + - type: IdentityBlocker + - type: FlashImmunity + - type: EyeProtection + - type: PhysicalComposition + materialComposition: + Steel: 200 + Glass: 100 + - type: StaticPrice + price: 100 + - type: Tag + tags: + - WhitelistChameleon + - type: HideLayerClothing + slots: + - Snout diff --git a/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml b/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml index 260037579e..f31b38c20c 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml @@ -16,7 +16,7 @@ description: A pompous and comfy blue cloak with a nice gold trim, while not particularly valuable as your other possessions, it sure is fancy. components: - type: Sprite - sprite: _White/Clothing/Neck/Cloaks/cap.rsi #WWDP edit + sprite: Clothing/Neck/Cloaks/cap.rsi - type: StealTarget stealGroup: HeadCloak @@ -27,7 +27,7 @@ description: An exquisite dark and red cloak fitting for those who can assert dominance over wrongdoers. Take a stab at being civil in prosecution! components: - type: Sprite - sprite: _White/Clothing/Neck/Cloaks/hos.rsi #WWDP edit + sprite: Clothing/Neck/Cloaks/hos.rsi - type: StealTarget stealGroup: HeadCloak @@ -38,7 +38,7 @@ description: A dark green cloak with light blue ornaments, given to those who proved themselves to master the precise art of engineering. components: - type: Sprite - sprite: _White/Clothing/Neck/Cloaks/ce.rsi #WWDP edit + sprite: Clothing/Neck/Cloaks/ce.rsi - type: StealTarget stealGroup: HeadCloak @@ -60,7 +60,7 @@ description: A white cloak with violet stripes, showing your status as the arbiter of cutting-edge technology. components: - type: Sprite - sprite: _White/Clothing/Neck/Cloaks/rd.rsi #WWDP edit + sprite: Clothing/Neck/Cloaks/rd.rsi - type: StealTarget stealGroup: HeadCloak @@ -111,7 +111,7 @@ description: A lavish and decorated cloak for special occasions. components: - type: Sprite - sprite: _White/Clothing/Neck/Cloaks/capcloakformal.rsi #WWDP edit + sprite: Clothing/Neck/Cloaks/capcloakformal.rsi - type: StealTarget stealGroup: HeadCloak diff --git a/Resources/Prototypes/Entities/Clothing/Neck/mantles.yml b/Resources/Prototypes/Entities/Clothing/Neck/mantles.yml index e0d4661029..efdec875e6 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/mantles.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/mantles.yml @@ -5,9 +5,9 @@ description: A comfortable and chique mantle befitting of only the most experienced captain. components: - type: Sprite - sprite: _White/Clothing/Neck/mantles/capmantle.rsi #WWDP edit + sprite: Clothing/Neck/mantles/capmantle.rsi - type: Clothing - sprite: _White/Clothing/Neck/mantles/capmantle.rsi #WWDP edit + sprite: Clothing/Neck/mantles/capmantle.rsi - type: entity parent: ClothingNeckBase @@ -16,9 +16,9 @@ description: High visibility, check. RIG system, check. High capacity cell, check. Everything a chief engineer could need in a stylish mantle. components: - type: Sprite - sprite: _White/Clothing/Neck/mantles/cemantle.rsi #WWDP edit + sprite: Clothing/Neck/mantles/cemantle.rsi - type: Clothing - sprite: _White/Clothing/Neck/mantles/cemantle.rsi #WWDP edit + sprite: Clothing/Neck/mantles/cemantle.rsi - type: entity parent: ClothingNeckBase @@ -27,9 +27,9 @@ description: For a CMO that has been in enough medbays to know that more PPE means less central command dry cleaning visits when the shift is over. components: - type: Sprite - sprite: _White/Clothing/Neck/mantles/cmomantle.rsi #WWDP edit + sprite: Clothing/Neck/mantles/cmomantle.rsi - type: Clothing - sprite: _White/Clothing/Neck/mantles/cmomantle.rsi #WWDP edit + sprite: Clothing/Neck/mantles/cmomantle.rsi - type: entity parent: ClothingNeckBase @@ -38,9 +38,9 @@ description: A good HOP knows that paper pushing is only half the job... petting your dog and looking fashionable is the other half. components: - type: Sprite - sprite: _White/Clothing/Neck/mantles/hopmantle.rsi #WWDP edit + sprite: Clothing/Neck/mantles/hopmantle.rsi - type: Clothing - sprite: _White/Clothing/Neck/mantles/hopmantle.rsi #WWDP edit + sprite: Clothing/Neck/mantles/hopmantle.rsi - type: entity parent: ClothingNeckBase @@ -49,9 +49,9 @@ description: Shootouts with nukies are just another Tuesday for this HoS. This mantle is a symbol of commitment to the station. components: - type: Sprite - sprite: _White/Clothing/Neck/mantles/hosmantle.rsi #WWDP edit + sprite: Clothing/Neck/mantles/hosmantle.rsi - type: Clothing - sprite: _White/Clothing/Neck/mantles/hosmantle.rsi #WWDP edit + sprite: Clothing/Neck/mantles/hosmantle.rsi - type: entity parent: ClothingNeckBase @@ -60,9 +60,9 @@ description: For when long days in the office consist of explosives, poisonous gas, murder robots, and a fresh pizza from logistics; this mantle will keep you comfy. # DeltaV - Logistics Department replacing Cargo components: - type: Sprite - sprite: _White/Clothing/Neck/mantles/rdmantle.rsi #WWDP edit + sprite: Clothing/Neck/mantles/rdmantle.rsi - type: Clothing - sprite: _White/Clothing/Neck/mantles/rdmantle.rsi #WWDP edit + sprite: Clothing/Neck/mantles/rdmantle.rsi - type: entity parent: ClothingNeckBase diff --git a/Resources/Prototypes/Entities/Clothing/Neck/medals.yml b/Resources/Prototypes/Entities/Clothing/Neck/medals.yml index e76a4b3ee3..e633c6c52d 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/medals.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/medals.yml @@ -1,102 +1,126 @@ -- type: entity - parent: ClothingNeckBase - id: ClothingNeckMedalBase - abstract: true - name: medal - description: not given to anyone - components: - - type: Tag - tags: - - WhitelistChameleon - -- type: entity - parent: ClothingNeckMedalBase - id: ClothingNeckBronzeheart - name: bronzeheart medal - description: Given to crewmates for exemplary bravery in the face of danger. - components: - - type: Sprite - sprite: Clothing/Neck/Medals/bronzeheart.rsi - - type: Clothing - sprite: Clothing/Neck/Medals/bronzeheart.rsi - -- type: entity - parent: ClothingNeckMedalBase - id: ClothingNeckGoldmedal - name: gold medal of crewmanship - description: Given to crewmates who display excellent crewmanship. - components: - - type: Sprite - sprite: Clothing/Neck/Medals/gold.rsi - - type: Clothing - sprite: Clothing/Neck/Medals/gold.rsi - - type: StealTarget - stealGroup: ClothingNeckGoldmedal - -- type: entity - parent: ClothingNeckMedalBase - id: ClothingNeckCargomedal - name: logistics medal # DeltaV - Logistics Department replacing Cargo - description: Whether it's for superior accountancy, courageous salvage work, or just being a friendly technician - this medal is to be assigned only for the best work in the logistics department. # DeltaV - Logistics Department replacing Cargo. Updated description for flavour - components: - - type: Sprite - sprite: DeltaV/Clothing/Neck/Medals/cargomedal.rsi # DeltaV - resprite - - type: Clothing - sprite: DeltaV/Clothing/Neck/Medals/cargomedal.rsi # DeltaV - resprite - -- type: entity - parent: ClothingNeckMedalBase - id: ClothingNeckEngineermedal - name: engineer medal - description: Whether it's by keeping the crew breathing, meticulous rewiring and upgrading, or just having plenty of materials on-hand - this medal is to be assigned only for the best work in the engineering department. # DeltaV - Updated description for flavour - components: - - type: Sprite - sprite: DeltaV/Clothing/Neck/Medals/engineermedal.rsi # DeltaV - resprite - - type: Clothing - sprite: DeltaV/Clothing/Neck/Medals/engineermedal.rsi # DeltaV - resprite - -- type: entity - parent: ClothingNeckMedalBase - id: ClothingNeckMedicalmedal - name: medical medal - description: Whether it's being the first on the scene of an accident, the most caring bedside manner, or just making sure the patients don't go mad - this medal is to be assigned only for the best work in the medical department. # DeltaV - Updated description for flavour - components: - - type: Sprite - sprite: DeltaV/Clothing/Neck/Medals/medicalmedal.rsi # DeltaV - resprite - - type: Clothing - sprite: DeltaV/Clothing/Neck/Medals/medicalmedal.rsi # DeltaV - resprite - -- type: entity - parent: ClothingNeckMedalBase - id: ClothingNeckSciencemedal - name: epistemics medal # DeltaV - Epistemics Department replacing Science - description: Whether it's pushing the edges of modern science and technology, foraying into the vast expanses of the noosphere, or just fetching the coffee - this medal is to be assigned only for the best work in the epistemics department. # DeltaV - Epistemics Department replacing Science. Updated description for flavour - components: - - type: Sprite - sprite: DeltaV/Clothing/Neck/Medals/sciencemedal.rsi # DeltaV - resprite - - type: Clothing - sprite: DeltaV/Clothing/Neck/Medals/sciencemedal.rsi # DeltaV - resprite - -- type: entity - parent: ClothingNeckMedalBase - id: ClothingNeckSecuritymedal - name: security medal - description: Whether it's catching armed terrorists, guarding the crew from alien threats, or just having a conversation in the corridor - this medal is to be assigned only for the best work in the security department. # DeltaV - Updated description for flavour - components: - - type: Sprite - sprite: DeltaV/Clothing/Neck/Medals/securitymedal.rsi # DeltaV - resprite - - type: Clothing - sprite: DeltaV/Clothing/Neck/Medals/securitymedal.rsi # DeltaV - resprite - -- type: entity - parent: ClothingNeckMedalBase - id: ClothingNeckClownmedal - name: bravado medal # DeltaV - Updated title so it's not just a joke medal. - description: Given to crewmates who laugh in the face of death, lift their peers' spirits, and uplift themselves and their friends to success. # DeltaV - Updated description for flavour and to reflect title. - components: - - type: Sprite - sprite: DeltaV/Clothing/Neck/Medals/clownmedal.rsi # DeltaV - resprite - - type: Clothing - sprite: DeltaV/Clothing/Neck/Medals/clownmedal.rsi # DeltaV - resprite - - type: StealTarget - stealGroup: ClothingNeckClownmedal +- type: entity + parent: ClothingNeckBase + id: ClothingNeckMedalBase + abstract: true + name: medal + description: not given to anyone + components: + - type: Tag + tags: + - WhitelistChameleon + +- type: entity + parent: ClothingNeckMedalBase + id: ClothingNeckBronzeheart + name: bronzeheart medal + description: Given to crewmates for exemplary bravery in the face of danger. + components: + - type: Sprite + sprite: Clothing/Neck/Medals/bronzeheart.rsi + - type: Clothing + sprite: Clothing/Neck/Medals/bronzeheart.rsi + - type: Tag + tags: + - Medal + +- type: entity + parent: ClothingNeckMedalBase + id: ClothingNeckGoldmedal + name: gold medal of crewmanship + description: Given to crewmates who display excellent crewmanship. + components: + - type: Sprite + sprite: Clothing/Neck/Medals/gold.rsi + - type: Clothing + sprite: Clothing/Neck/Medals/gold.rsi + - type: StealTarget + stealGroup: ClothingNeckGoldmedal + - type: Tag + tags: + - Medal + +- type: entity + parent: ClothingNeckMedalBase + id: ClothingNeckCargomedal + name: logistics medal # DeltaV - Logistics Department replacing Cargo + description: Whether it's for superior accountancy, courageous salvage work, or just being a friendly technician - this medal is to be assigned only for the best work in the logistics department. # DeltaV - Logistics Department replacing Cargo. Updated description for flavour + components: + - type: Sprite + sprite: DeltaV/Clothing/Neck/Medals/cargomedal.rsi # DeltaV - resprite + - type: Clothing + sprite: DeltaV/Clothing/Neck/Medals/cargomedal.rsi + - type: Tag + tags: + - Medal + +- type: entity + parent: ClothingNeckMedalBase + id: ClothingNeckEngineermedal + name: engineer medal + description: Whether it's by keeping the crew breathing, meticulous rewiring and upgrading, or just having plenty of materials on-hand - this medal is to be assigned only for the best work in the engineering department. # DeltaV - Updated description for flavour + components: + - type: Sprite + sprite: DeltaV/Clothing/Neck/Medals/engineermedal.rsi # DeltaV - resprite + - type: Clothing + sprite: DeltaV/Clothing/Neck/Medals/engineermedal.rsi + - type: Tag + tags: + - Medal + +- type: entity + parent: ClothingNeckMedalBase + id: ClothingNeckMedicalmedal + name: medical medal + description: Whether it's being the first on the scene of an accident, the most caring bedside manner, or just making sure the patients don't go mad - this medal is to be assigned only for the best work in the medical department. # DeltaV - Updated description for flavour + components: + - type: Sprite + sprite: DeltaV/Clothing/Neck/Medals/medicalmedal.rsi + - type: Clothing + sprite: DeltaV/Clothing/Neck/Medals/medicalmedal.rsi + - type: Tag + tags: + - Medal + +- type: entity + parent: ClothingNeckMedalBase + id: ClothingNeckSciencemedal + name: epistemics medal # DeltaV - Epistemics Department replacing Science + description: Whether it's pushing the edges of modern science and technology, foraying into the vast expanses of the noosphere, or just fetching the coffee - this medal is to be assigned only for the best work in the epistemics department. # DeltaV - Epistemics Department replacing Science. Updated description for flavour + components: + - type: Sprite + sprite: DeltaV/Clothing/Neck/Medals/sciencemedal.rsi + - type: Clothing + sprite: DeltaV/Clothing/Neck/Medals/sciencemedal.rsi + - type: Tag + tags: + - Medal + +- type: entity + parent: ClothingNeckMedalBase + id: ClothingNeckSecuritymedal + name: security medal + description: Whether it's catching armed terrorists, guarding the crew from alien threats, or just having a conversation in the corridor - this medal is to be assigned only for the best work in the security department. # DeltaV - Updated description for flavour + components: + - type: Sprite + sprite: DeltaV/Clothing/Neck/Medals/securitymedal.rsi + - type: Clothing + sprite: DeltaV/Clothing/Neck/Medals/securitymedal.rsi + - type: Tag + tags: + - Medal + +- type: entity + parent: ClothingNeckMedalBase + id: ClothingNeckClownmedal + name: bravado medal # DeltaV - Updated title so it's not just a joke medal. + description: Given to crewmates who laugh in the face of death, lift their peers' spirits, and uplift themselves and their friends to success. # DeltaV - Updated description for flavour and to reflect title. + components: + - type: Sprite + sprite: DeltaV/Clothing/Neck/Medals/clownmedal.rsi # DeltaV - resprite + - type: Clothing + sprite: DeltaV/Clothing/Neck/Medals/clownmedal.rsi # DeltaV - resprite + - type: StealTarget + stealGroup: ClothingNeckClownmedal + - type: Tag + tags: + - Medal diff --git a/Resources/Prototypes/Entities/Clothing/Neck/specific.yml b/Resources/Prototypes/Entities/Clothing/Neck/specific.yml index 1f50dc1ef1..56fddceaad 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/specific.yml @@ -16,5 +16,5 @@ default: ClothingNeckScarfStripedRed - type: UserInterface interfaces: - - key: enum.ChameleonUiKey.Key + enum.ChameleonUiKey.Key: type: ChameleonBoundUserInterface diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml index 58a45be5b6..b76e6cd9fc 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml @@ -2,7 +2,7 @@ # NOTE: Half of the kind of armor you're probably thinking of is in vests.yml. These should probably be merged some day. - type: entity - parent: ClothingOuterBaseMedium + parent: [ClothingOuterBaseMedium, AllowSuitStorageClothing] id: ClothingOuterArmorBasic name: armor vest description: A standard Type I armored vest that provides decent protection against most types of damage. @@ -35,7 +35,7 @@ sprite: Clothing/OuterClothing/Armor/security_slim.rsi - type: entity - parent: ClothingOuterBaseLarge + parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing] id: ClothingOuterArmorRiot name: riot suit description: A suit of semi-flexible polycarbonate body armor with heavy padding to protect against melee attacks. Perfect for fighting delinquents around the station. @@ -95,6 +95,7 @@ Heat: 0.4 # this technically means it protects against fires pretty well? -heat is just for lasers and stuff, not atmos temperature - type: Reflect reflectProb: 1 + innate: true # armor grants a passive shield that does not require concentration to maintain reflects: - Energy @@ -118,7 +119,7 @@ - type: GroupExamine - type: entity - parent: ClothingOuterBaseLarge + parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing] id: ClothingOuterArmorHeavy name: heavy armor suit description: A heavily armored suit that protects against excessive damage. @@ -137,6 +138,8 @@ Radiation: 0 Caustic: 0.75 - type: GroupExamine + - type: ClothingRequiredStepTriggerImmune + slots: WITHOUT_POCKET - type: Tag tags: - FullBodyOuter @@ -187,15 +190,15 @@ sprite: Clothing/OuterClothing/Armor/magusred.rsi - type: entity - parent: ClothingOuterBaseLarge + parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing] id: ClothingOuterArmorCaptainCarapace name: "captain's carapace" description: "An armored chestpiece that provides protection whilst still offering maximum mobility and flexibility. Issued only to the station's finest." components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Armor/captain_carapace.rsi #WWDP edit + sprite: Clothing/OuterClothing/Armor/captain_carapace.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Armor/captain_carapace.rsi #WWDP edit + sprite: Clothing/OuterClothing/Armor/captain_carapace.rsi - type: Armor modifiers: coefficients: @@ -237,6 +240,8 @@ - type: ExplosionResistance damageCoefficient: 0.5 - type: GroupExamine + - type: ClothingRequiredStepTriggerImmune + slots: WITHOUT_POCKET - type: Tag tags: - FullBodyOuter @@ -266,6 +271,8 @@ - type: Construction graph: BoneArmor node: armor + - type: ClothingRequiredStepTriggerImmune + slots: WITHOUT_POCKET - type: entity parent: ClothingOuterBaseLarge @@ -285,3 +292,5 @@ Piercing: 0.6 Heat: 0.5 - type: GroupExamine + - type: ClothingRequiredStepTriggerImmune + slots: WITHOUT_POCKET diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml index 0ef368e0bd..1caabcc355 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml @@ -41,8 +41,8 @@ ents: [] - type: UserInterface interfaces: - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface - type: StaticPrice price: 70 @@ -104,7 +104,7 @@ - type: entity abstract: true - parent: [ClothingOuterBase, GeigerCounterClothing] + parent: [ClothingOuterBase, GeigerCounterClothing, AllowSuitStorageClothing] id: ClothingOuterHardsuitBase name: base hardsuit components: @@ -112,7 +112,9 @@ highPressureMultiplier: 0.3 lowPressureMultiplier: 1000 - type: TemperatureProtection - coefficient: 0.001 # yes it needs to be this low, fires are fucking deadly apparently!!!! + coefficient: 0.01 + - type: FireProtection + reduction: 0.75 # almost perfectly sealed, atmos firesuit is better - type: ClothingSpeedModifier walkModifier: 0.4 sprintModifier: 0.6 @@ -147,10 +149,12 @@ localSoundOnly: true - type: StaminaDamageResistance coefficient: 0.75 # 25% + - type: ClothingRequiredStepTriggerImmune + slots: WITHOUT_POCKET - type: entity abstract: true - parent: ClothingOuterBase + parent: [ClothingOuterBase, AllowSuitStorageClothing] id: ClothingOuterEVASuitBase name: base EVA Suit components: @@ -171,6 +175,8 @@ - type: Clothing equipDelay: 1.25 # Softsuits are easier to put on and off unequipDelay: 1 + - type: ClothingRequiredStepTriggerImmune + slots: WITHOUT_POCKET - type: entity parent: ClothingOuterBase @@ -193,4 +199,4 @@ id: ClothingOuterBaseMedium components: - type: Item - size: Huge + size: Huge \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/bio.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/bio.yml index d19eb8ea1a..0e461960c6 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/bio.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/bio.yml @@ -6,9 +6,9 @@ description: A suit that protects against biological contamination. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Bio/general.rsi #WWDP edit + sprite: Clothing/OuterClothing/Bio/general.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Bio/general.rsi #WWDP edit + sprite: Clothing/OuterClothing/Bio/general.rsi - type: Armor modifiers: coefficients: @@ -22,9 +22,9 @@ description: An advanced suit that protects against biological contamination, in CMO colors. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Bio/cmo.rsi #WWDP edit + sprite: Clothing/OuterClothing/Bio/cmo.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Bio/cmo.rsi #WWDP edit + sprite: Clothing/OuterClothing/Bio/cmo.rsi - type: entity parent: ClothingOuterBioGeneral @@ -34,9 +34,9 @@ description: A suit that protects against biological contamination, in Janitor colors. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Bio/janitor.rsi #WWDP edit + sprite: Clothing/OuterClothing/Bio/janitor.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Bio/janitor.rsi #WWD{ edit} + sprite: Clothing/OuterClothing/Bio/janitor.rsi #WWD{ edit} - type: entity parent: ClothingOuterBioGeneral @@ -46,9 +46,9 @@ description: A suit that protects against biological contamination, in Scientist colors. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Bio/scientist.rsi #WWDP edit + sprite: Clothing/OuterClothing/Bio/scientist.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Bio/scientist.rsi #WWDP edit + sprite: Clothing/OuterClothing/Bio/scientist.rsi - type: entity parent: ClothingOuterBioGeneral @@ -58,9 +58,9 @@ description: A suit that protects against biological contamination, in Security colors. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Bio/security.rsi #WWDP edit + sprite: Clothing/OuterClothing/Bio/security.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Bio/security.rsi #WWDP edit + sprite: Clothing/OuterClothing/Bio/security.rsi - type: entity parent: ClothingOuterBioGeneral @@ -70,6 +70,6 @@ description: A suit that protects against biological contamination, in Virology colors. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Bio/virology.rsi #WWDP edit + sprite: Clothing/OuterClothing/Bio/virology.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Bio/virology.rsi #WWDP edit + sprite: Clothing/OuterClothing/Bio/virology.rsi diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml index a312af53c5..438f19e744 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml @@ -5,20 +5,20 @@ description: A thick, well-worn WW2 leather bomber jacket. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Coats/bomber.rsi #WWDP edit + sprite: Clothing/OuterClothing/Coats/bomber.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Coats/bomber.rsi #WWDP edit + sprite: Clothing/OuterClothing/Coats/bomber.rsi - type: entity - parent: ClothingOuterStorageBase + parent: [ClothingOuterStorageBase, AllowSuitStorageClothing] id: ClothingOuterCoatDetective name: detective trenchcoat description: A rugged canvas trenchcoat, designed and created by TX Fabrication Corp. Wearing it makes you feel for the plight of the Tibetans. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Coats/detective.rsi #WWDP edit + sprite: Clothing/OuterClothing/Coats/detective.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Coats/detective.rsi #WWDP edit + sprite: Clothing/OuterClothing/Coats/detective.rsi - type: StorageFill contents: - id: SmokingPipeFilledTobacco @@ -31,6 +31,15 @@ Piercing: 0.70 Heat: 0.80 +- type: entity + parent: ClothingOuterCoatDetective + id: ClothingOuterCoatDetectiveLoadout + components: + - type: StorageFill + contents: + - id: SmokingPipeFilledTobacco + - id: FlippoLighter #Not the steal objective, only difference from normal detective trenchcoat + - type: entity parent: ClothingOuterStorageBase id: ClothingOuterCoatGentle @@ -43,15 +52,46 @@ sprite: Clothing/OuterClothing/Coats/gentlecoat.rsi - type: entity - parent: ClothingOuterStorageBase + abstract: true + parent: AllowSuitStorageClothing + id: ClothingOuterArmorHoS + components: + - type: Armor + modifiers: + coefficients: + Blunt: 0.7 + Slash: 0.7 + Piercing: 0.7 + Heat: 0.7 + Caustic: 0.75 # not the full 90% from ss13 because of the head + - type: ExplosionResistance + damageCoefficient: 0.9 + +- type: entity + abstract: true + parent: AllowSuitStorageClothing + id: ClothingOuterArmorWarden + components: + - type: Armor + modifiers: + coefficients: + Blunt: 0.7 + Slash: 0.7 + Piercing: 0.7 + Heat: 0.7 + - type: ExplosionResistance + damageCoefficient: 0.9 + +- type: entity + parent: [ClothingOuterArmorHoS, ClothingOuterStorageBase] id: ClothingOuterCoatHoSTrench name: head of security's armored trenchcoat description: A greatcoat enhanced with a special alloy for some extra protection and style for those with a commanding presence. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi #WWDP edit + sprite: Clothing/OuterClothing/Coats/hos_trenchcoat.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi #WWDP edit + sprite: Clothing/OuterClothing/Coats/hos_trenchcoat.rsi - type: Armor modifiers: coefficients: @@ -120,9 +160,9 @@ description: A suit that protects against minor chemical spills. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Coats/labcoat.rsi #WWDP edit + sprite: Clothing/OuterClothing/Coats/labcoat.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Coats/labcoat.rsi #WWDP edit + sprite: Clothing/OuterClothing/Coats/labcoat.rsi - type: Armor modifiers: coefficients: @@ -140,9 +180,9 @@ description: A suit that protects against minor chemical spills. Has an orange stripe on the shoulder. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Coats/labcoat_chem.rsi #WWDP edit + sprite: Clothing/OuterClothing/Coats/labcoat_chem.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Coats/labcoat_chem.rsi #WWDP edit + sprite: Clothing/OuterClothing/Coats/labcoat_chem.rsi - type: Armor modifiers: coefficients: @@ -160,9 +200,9 @@ description: A suit that protects against bacteria and viruses. Has an green stripe on the shoulder. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Coats/labcoat_viro.rsi #WWDP edit + sprite: Clothing/OuterClothing/Coats/labcoat_viro.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Coats/labcoat_viro.rsi #WWDP edit + sprite: Clothing/OuterClothing/Coats/labcoat_viro.rsi - type: Armor modifiers: coefficients: @@ -197,16 +237,18 @@ parent: ClothingOuterStorageFoldableBase id: ClothingOuterCoatLabCmo name: chief medical officer's lab coat - description: Bluer than the standard model. + description: Custom made blue lab coat for the Chief Medical Officer, offers improved protection against chemical spills and minor cuts components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi #WWDP edit + sprite: Clothing/OuterClothing/Coats/labcoat_cmo.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi #WWDP edit + sprite: Clothing/OuterClothing/Coats/labcoat_cmo.rsi - type: Armor modifiers: coefficients: - Caustic: 0.75 + Slash: 0.95 + Heat: 0.95 + Caustic: 0.65 - type: entity parent: [ClothingOuterStorageFoldableBaseOpened, ClothingOuterCoatLabCmo] @@ -286,15 +328,15 @@ sprite: Clothing/OuterClothing/Coats/pirate.rsi - type: entity - parent: ClothingOuterStorageBase + parent: [ClothingOuterArmorWarden, ClothingOuterStorageBase] id: ClothingOuterCoatWarden name: warden's armored jacket description: A sturdy, utilitarian jacket designed to protect a warden from any brig-bound threats. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Coats/warden.rsi #WWDP edit + sprite: Clothing/OuterClothing/Coats/warden.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Coats/warden.rsi #WWDP edit + sprite: Clothing/OuterClothing/Coats/warden.rsi - type: Armor modifiers: coefficients: @@ -323,9 +365,9 @@ description: Meant for a clown of the cloth. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Coats/clownpriest.rsi #WWDP edit + sprite: Clothing/OuterClothing/Coats/clownpriest.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Coats/clownpriest.rsi #WWDP edit + sprite: Clothing/OuterClothing/Coats/clownpriest.rsi - type: entity parent: ClothingOuterStorageBase diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml index 8a82f67bcf..df09c84574 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml @@ -36,9 +36,9 @@ description: A special suit that protects against hazardous, low pressure environments. Has thermal shielding. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Hardsuits/atmospherics.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/atmospherics.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Hardsuits/atmospherics.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/atmospherics.rsi - type: PressureProtection highPressureMultiplier: 0.02 lowPressureMultiplier: 1000 @@ -55,17 +55,12 @@ Heat: 0.2 Radiation: 0.5 Caustic: 0.5 - - type: ClothingSpeedModifier # White Dream: Make almost all hardsuits slow a bit less - walkModifier: 0.85 - sprintModifier: 0.85 + - type: ClothingSpeedModifier + walkModifier: 0.7 + sprintModifier: 0.7 - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitAtmos - - type: ReverseEngineering # Nyano - difficulty: 5 - newItem: ClothingOuterHardsuitJuggernautReverseEngineered - recipes: - - ClothingOuterHardsuitJuggernautReverseEngineered #Engineering Hardsuit - type: entity @@ -75,9 +70,9 @@ description: A special suit that protects against hazardous, low pressure environments. Has radiation shielding. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Hardsuits/engineering.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/engineering.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Hardsuits/engineering.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/engineering.rsi - type: PressureProtection highPressureMultiplier: 0.04 lowPressureMultiplier: 1000 @@ -111,9 +106,9 @@ description: A lightweight hardsuit designed for industrial EVA in zero gravity. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Hardsuits/spatio.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/spatio.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Hardsuits/spatio.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/spatio.rsi - type: PressureProtection highPressureMultiplier: 0.7 lowPressureMultiplier: 1000 @@ -140,9 +135,9 @@ description: A special suit that protects against hazardous, low pressure environments. Has reinforced plating for wildlife encounters. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Hardsuits/salvage.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/salvage.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Hardsuits/salvage.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/salvage.rsi - type: PressureProtection highPressureMultiplier: 0.5 lowPressureMultiplier: 1000 @@ -171,9 +166,9 @@ description: A hardsuit made for paramedics. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Hardsuits/paramed.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/paramed.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Hardsuits/paramed.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/paramed.rsi - type: TemperatureProtection coefficient: 0.1 - type: PressureProtection @@ -233,9 +228,9 @@ description: A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Hardsuits/security.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/security.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Hardsuits/security.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/security.rsi - type: PressureProtection highPressureMultiplier: 0.5 lowPressureMultiplier: 1000 @@ -288,9 +283,9 @@ description: A specialized riot suit geared to combat low pressure environments. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Hardsuits/security-warden.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/security-warden.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Hardsuits/security-warden.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/security-warden.rsi - type: PressureProtection highPressureMultiplier: 0.5 lowPressureMultiplier: 1000 @@ -317,9 +312,9 @@ description: A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Hardsuits/security-red.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/security-red.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Hardsuits/security-red.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/security-red.rsi - type: PressureProtection highPressureMultiplier: 0.45 lowPressureMultiplier: 1000 @@ -346,9 +341,9 @@ description: A formal armored spacesuit, made for the station's captain. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Hardsuits/capspace.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/capspace.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Hardsuits/capspace.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/capspace.rsi - type: PressureProtection highPressureMultiplier: 0.02 lowPressureMultiplier: 1000 @@ -379,9 +374,9 @@ description: A special hardsuit that protects against hazardous, low pressure environments, made for the chief engineer of the station. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Hardsuits/engineering-white.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/engineering-white.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Hardsuits/engineering-white.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/engineering-white.rsi - type: PressureProtection highPressureMultiplier: 0.02 lowPressureMultiplier: 1000 @@ -438,12 +433,12 @@ parent: ClothingOuterHardsuitBase id: ClothingOuterHardsuitRd name: experimental research hardsuit - description: A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor. Able to be compressed to small sizes. + description: A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Hardsuits/rd.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/rd.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Hardsuits/rd.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/rd.rsi - type: PressureProtection highPressureMultiplier: 0.02 lowPressureMultiplier: 1000 @@ -485,9 +480,9 @@ description: A refurbished mining hardsuit, fashioned after the Logistics Officer's colors. Graphene lining provides less protection, but is much easier to move. # DeltaV - Logistics Department replacing Cargo components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Hardsuits/luxury.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/luxury.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Hardsuits/luxury.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/luxury.rsi - type: PressureProtection highPressureMultiplier: 0.5 lowPressureMultiplier: 1000 @@ -517,9 +512,9 @@ description: A heavily armored hardsuit designed for work in special operations. Property of Gorlex Marauders. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Hardsuits/syndicate.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/syndicate.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Hardsuits/syndicate.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/syndicate.rsi - type: PressureProtection highPressureMultiplier: 0.05 lowPressureMultiplier: 1000 @@ -540,11 +535,6 @@ - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitSyndie - - type: ReverseEngineering # Nyano - difficulty: 5 - newItem: ClothingOuterHardsuitSyndieReverseEngineered - recipes: - - ClothingOuterHardsuitSyndieReverseEngineered - type: Tag tags: - MonkeyWearable @@ -581,9 +571,9 @@ description: An elite version of the blood-red hardsuit, with improved mobility and fireproofing. Property of Gorlex Marauders. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Hardsuits/syndieelite.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/syndieelite.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Hardsuits/syndieelite.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/syndieelite.rsi - type: PressureProtection highPressureMultiplier: 0.02 lowPressureMultiplier: 1000 @@ -591,6 +581,8 @@ coefficient: 0.001 - type: ExplosionResistance damageCoefficient: 0.2 + - type: FireProtection + reduction: 0.8 # perfect protection like atmos firesuit for pyro tf2 ops - type: Armor modifiers: coefficients: @@ -617,9 +609,9 @@ description: A bulked up version of the blood-red hardsuit, purpose-built for the commander of a syndicate operative squad. Has significantly improved armor for those deadly front-lines firefights. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/syndiecommander.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/syndiecommander.rsi - type: PressureProtection highPressureMultiplier: 0.05 lowPressureMultiplier: 1000 @@ -651,9 +643,9 @@ description: A suit made by the cutting edge R&D department at cybersun to be hyper resilient. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Hardsuits/cybersun.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/cybersun.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Hardsuits/cybersun.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/cybersun.rsi - type: PressureProtection highPressureMultiplier: 0.2 lowPressureMultiplier: 1000 @@ -909,9 +901,9 @@ description: An advanced hardsuit favored by commandos for use in special operations. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Hardsuits/deathsquad.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/deathsquad.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Hardsuits/deathsquad.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/deathsquad.rsi - type: PressureProtection highPressureMultiplier: 0.02 lowPressureMultiplier: 1000 @@ -983,9 +975,9 @@ description: A custom-made clown hardsuit. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Hardsuits/clown.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/clown.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Hardsuits/clown.rsi #WWDP edit + sprite: Clothing/OuterClothing/Hardsuits/clown.rsi - type: PressureProtection highPressureMultiplier: 0.5 lowPressureMultiplier: 1000 diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml index 4b2c3c9c3f..0b5e2c112b 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml @@ -166,9 +166,16 @@ - type: Clothing sprite: Clothing/OuterClothing/Misc/santa.rsi +- type: entity + abstract: true + parent: ClothingOuterBase + id: ClothingOuterWizardBase + components: + - type: WizardClothes + # Is this wizard wearing a fanny pack??? - type: entity - parent: ClothingOuterEVASuitBase # DeltaV - Make real wizard clothes space proof + parent: ClothingOuterWizardBase id: ClothingOuterWizardViolet name: violet wizard robes description: A bizarre gem-encrusted violet robe that radiates magical energies. @@ -179,7 +186,7 @@ sprite: Clothing/OuterClothing/Misc/violetwizard.rsi - type: entity - parent: ClothingOuterEVASuitBase # DeltaV - Make real wizard clothes space proof + parent: ClothingOuterWizardBase id: ClothingOuterWizard name: wizard robes description: A bizarre gem-encrusted blue robe that radiates magical energies. @@ -190,7 +197,7 @@ sprite: Clothing/OuterClothing/Misc/wizard.rsi - type: entity - parent: ClothingOuterEVASuitBase # DeltaV - Make real wizard clothes space proof + parent: ClothingOuterWizardBase id: ClothingOuterWizardRed name: red wizard robes description: Strange-looking, red, hat-wear that most certainly belongs to a real magic user. diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml index cc10ef2b84..115202813c 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml @@ -6,9 +6,9 @@ description: A lightweight vacsuit with the basic ability to protect the wearer from the vacuum of space during emergencies. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Suits/eva.rsi #WWDP edit + sprite: Clothing/OuterClothing/Suits/eva.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Suits/eva.rsi #WWDP edit + sprite: Clothing/OuterClothing/Suits/eva.rsi - type: Tag tags: - SuitEVA @@ -24,9 +24,9 @@ description: "Has a tag on the back that reads: 'Totally not property of an enemy corporation, honest!'" components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Suits/eva_syndicate.rsi #WWDP edit + sprite: Clothing/OuterClothing/Suits/eva_syndicate.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Suits/eva_syndicate.rsi #WWDP edit + sprite: Clothing/OuterClothing/Suits/eva_syndicate.rsi - type: Tag tags: - SuitEVA @@ -42,9 +42,9 @@ description: An emergency vacsuit with a built-in helmet. It's horribly slow and lacking in temperature protection, but enough to bide you time from the harsh vaccuum of space. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Suits/eva_emergency.rsi #WWDP edit + sprite: Clothing/OuterClothing/Suits/eva_emergency.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Suits/eva_emergency.rsi #WWDP edit + sprite: Clothing/OuterClothing/Suits/eva_emergency.rsi - type: ClothingSpeedModifier walkModifier: 0.7 sprintModifier: 0.7 @@ -66,9 +66,9 @@ description: A lightweight space suit for prisoners to protect them from the vacuum of space during emergencies. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Suits/eva_prisoner.rsi #WWDP edit + sprite: Clothing/OuterClothing/Suits/eva_prisoner.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Suits/eva_prisoner.rsi #WWDP edit + sprite: Clothing/OuterClothing/Suits/eva_prisoner.rsi - type: Tag tags: - SuitEVA diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/specific.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/specific.yml index 9be8c22a0a..c3d9bb1224 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/specific.yml @@ -16,5 +16,5 @@ default: ClothingOuterVest - type: UserInterface interfaces: - - key: enum.ChameleonUiKey.Key + enum.ChameleonUiKey.Key: type: ChameleonBoundUserInterface diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index 517d4d3762..6215fb3b45 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -27,6 +27,8 @@ - WhitelistChameleon - FullBodyOuter - HidesHarpyWings + - type: ClothingRequiredStepTriggerImmune + slots: WITHOUT_POCKET - type: entity parent: ClothingOuterSuitBomb @@ -52,37 +54,41 @@ - FullBodyOuter - type: entity - parent: ClothingOuterBaseLarge + parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing] id: ClothingOuterSuitFire name: fire suit description: A suit that helps protect against hazardous temperatures. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Suits/fire.rsi #WWDP edit + sprite: Clothing/OuterClothing/Suits/fire.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Suits/fire.rsi #WWDP edit + sprite: Clothing/OuterClothing/Suits/fire.rsi - type: PressureProtection highPressureMultiplier: 0.04 - type: TemperatureProtection coefficient: 0.005 + - type: FireProtection + reduction: 0.65 # doesnt have a full seal so not as good - type: Armor modifiers: coefficients: Slash: 0.9 - Heat: 0.3 - Cold: 0.2 + Heat: 0.8 + Cold: 0.8 - type: ClothingSpeedModifier walkModifier: 0.8 sprintModifier: 0.7 - type: HeldSpeedModifier - type: GroupExamine + - type: ClothingRequiredStepTriggerImmune + slots: WITHOUT_POCKET - type: Tag tags: - WhitelistChameleon - HidesHarpyWings - type: entity - parent: ClothingOuterBaseLarge + parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing] id: ClothingOuterSuitAtmosFire name: atmos fire suit description: An expensive firesuit that protects against even the most deadly of station fires. Designed to protect even if the wearer is set aflame. @@ -96,17 +102,21 @@ lowPressureMultiplier: 1000 - type: TemperatureProtection coefficient: 0.001 + - type: FireProtection + reduction: 0.8 # atmos firesuit offers best protection, hardsuits are a little vulnerable - type: Armor modifiers: coefficients: Slash: 0.9 - Heat: 0.3 - Cold: 0.2 + Heat: 0.8 + Cold: 0.8 - type: ClothingSpeedModifier walkModifier: 0.8 sprintModifier: 0.8 - type: HeldSpeedModifier - type: GroupExamine + - type: ClothingRequiredStepTriggerImmune + slots: WITHOUT_POCKET - type: Tag tags: - FullBodyOuter @@ -114,20 +124,20 @@ - HidesHarpyWings - type: entity - parent: [ClothingOuterBaseLarge, GeigerCounterClothing] + parent: [ClothingOuterBaseLarge, GeigerCounterClothing, AllowSuitStorageClothing] id: ClothingOuterSuitRad name: radiation suit description: "A suit that protects against radiation. The label reads, 'Made with lead. Please do not consume insulation.'" components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Suits/rad.rsi #WWDP edit + sprite: Clothing/OuterClothing/Suits/rad.rsi - type: Armor modifiers: coefficients: Heat: 0.90 Radiation: 0.001 - type: Clothing - sprite: _White/Clothing/OuterClothing/Suits/rad.rsi #WWDP edit + sprite: Clothing/OuterClothing/Suits/rad.rsi - type: GroupExamine - type: ToggleableClothing clothingPrototype: ClothingHeadHatHoodRad @@ -135,6 +145,8 @@ - type: ContainerContainer containers: toggleable-clothing: !type:ContainerSlot {} + - type: ClothingRequiredStepTriggerImmune + slots: WITHOUT_POCKET - type: Tag tags: - FullBodyOuter @@ -142,7 +154,7 @@ - HidesHarpyWings - type: entity - parent: ClothingOuterBaseLarge + parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing] id: ClothingOuterSuitSpaceNinja name: space ninja suit description: This black technologically advanced, cybernetically-enhanced suit provides many abilities like invisibility or teleportation. @@ -191,6 +203,8 @@ sprite: Clothing/OuterClothing/Suits/chicken.rsi - type: Clothing sprite: Clothing/OuterClothing/Suits/chicken.rsi + - type: ClothingRequiredStepTriggerImmune + slots: WITHOUT_POCKET - type: Tag tags: - FullBodyOuter @@ -219,6 +233,8 @@ - type: ContainerContainer containers: toggleable-clothing: !type:ContainerSlot {} + - type: ClothingRequiredStepTriggerImmune + slots: WITHOUT_POCKET - type: Tag tags: - FullBodyOuter @@ -243,6 +259,8 @@ - type: Construction graph: ClothingOuterSuitIan node: suit + - type: ClothingRequiredStepTriggerImmune + slots: WITHOUT_POCKET - type: entity parent: ClothingOuterBase diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml index a92ea60b6e..7dc06ff7db 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml @@ -1,6 +1,6 @@ #Web vest - type: entity - parent: ClothingOuterStorageBase + parent: [ClothingOuterStorageBase, AllowSuitStorageClothing] id: ClothingOuterVestWeb name: web vest description: A synthetic armor vest. This one has added webbing and ballistic plates. @@ -21,7 +21,7 @@ #Mercenary web vest - type: entity - parent: ClothingOuterStorageBase #web vest so it should have some pockets for ammo + parent: ClothingOuterVestWeb #web vest so it should have some pockets for ammo id: ClothingOuterVestWebMerc name: merc web vest description: A high-quality armored vest made from a hard synthetic material. It's surprisingly flexible and light, despite formidable armor plating. @@ -48,9 +48,9 @@ description: A hard-boiled private investigator's armored vest. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Vests/detvest.rsi #WWDP edit + sprite: Clothing/OuterClothing/Vests/detvest.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Vests/detvest.rsi #WWDP edit + sprite: Clothing/OuterClothing/Vests/detvest.rsi - type: Armor #Based on /tg/ but slightly compensated to fit the fact that armor stacks in SS14. modifiers: coefficients: @@ -69,9 +69,9 @@ description: A high-visibility vest used in work zones. components: - type: Sprite - sprite: _White/Clothing/OuterClothing/Vests/hazard.rsi #WWDP edit + sprite: Clothing/OuterClothing/Vests/hazard.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/Vests/hazard.rsi #WWDP edit + sprite: Clothing/OuterClothing/Vests/hazard.rsi - type: Tag tags: - HiViz diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml index 39da045c7e..73dc6c8c7f 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml @@ -79,9 +79,9 @@ name: captain's winter coat components: - type: Sprite - sprite: _White/Clothing/OuterClothing/WinterCoats/coatcap.rsi #WWDP edit + sprite: Clothing/OuterClothing/WinterCoats/coatcap.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/WinterCoats/coatcap.rsi #WWDP edit + sprite: Clothing/OuterClothing/WinterCoats/coatcap.rsi - type: ToggleableClothing clothingPrototype: ClothingHeadHatHoodWinterCaptain - type: Armor # DeltaV - adds resists to coat, same as HoS coat. Still better than nothing, but nowhere as good as a carapace @@ -183,9 +183,9 @@ name: clown winter coat components: - type: Sprite - sprite: _White/Clothing/OuterClothing/WinterCoats/coatclown.rsi #WWDP edit + sprite: Clothing/OuterClothing/WinterCoats/coatclown.rsi - type: Clothing - sprite: _White/Clothing/OuterClothing/WinterCoats/coatclown.rsi #WWDP edit + sprite: Clothing/OuterClothing/WinterCoats/coatclown.rsi - type: entity parent: ClothingOuterWinterCoatToggleable @@ -231,9 +231,23 @@ clothingPrototype: ClothingHeadHatHoodWinterHOP - type: entity - parent: ClothingOuterWinterCoatToggleable + parent: [ClothingOuterArmorHoS, ClothingOuterWinterCoatToggleable] id: ClothingOuterWinterHoS + name: head of security's armored winter coat + description: A sturdy, utilitarian winter coat designed to protect a head of security from any brig-bound threats and hypothermic events. + components: + - type: Sprite + sprite: Clothing/OuterClothing/WinterCoats/coathosarmored.rsi + - type: Clothing + sprite: Clothing/OuterClothing/WinterCoats/coathosarmored.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterHOS + +- type: entity + parent: ClothingOuterWinterCoatToggleable + id: ClothingOuterWinterHoSUnarmored name: head of security's winter coat + description: A sturdy coat, a warm coat, but not an armored coat. components: - type: Sprite sprite: Clothing/OuterClothing/WinterCoats/coathos.rsi @@ -446,22 +460,28 @@ clothingPrototype: ClothingHeadHatHoodWinterSci - type: entity - parent: ClothingOuterWinterCoatToggleable + parent: [ClothingOuterArmorWarden, ClothingOuterWinterCoatToggleable] id: ClothingOuterWinterWarden name: warden's armored winter coat description: A sturdy, utilitarian winter coat designed to protect a warden from any brig-bound threats and hypothermic events. components: + - type: Sprite + sprite: Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi + - type: Clothing + sprite: Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterWarden + +- type: entity + parent: ClothingOuterWinterCoatToggleable + id: ClothingOuterWinterWardenUnarmored + name: warden's winter coat + description: A sturdy coat, a warm coat, but not an armored coat. + components: - type: Sprite sprite: Clothing/OuterClothing/WinterCoats/coatwarden.rsi - type: Clothing sprite: Clothing/OuterClothing/WinterCoats/coatwarden.rsi - - type: Armor - modifiers: - coefficients: - Blunt: 0.70 - Slash: 0.70 - Piercing: 0.8 #slightly less bulletproof then warden's normal coat - Heat: 0.70 - type: ToggleableClothing clothingPrototype: ClothingHeadHatHoodWinterWarden diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml b/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml index 1119d5cda7..4e7c966a0d 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml @@ -23,6 +23,7 @@ tags: - ClothMade - WhitelistChameleon + - type: ClothingRequiredStepTriggerImmune - type: entity abstract: true @@ -58,4 +59,4 @@ description: Fluffy boots to help survive even the coldest of winters. components: - type: TemperatureProtection - coefficient: 0.2 + coefficient: 0.8 diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml index 1e9ca349a5..fdc49dc061 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml @@ -5,9 +5,9 @@ description: Engineering lace-up work boots for the especially blue-collar. components: - type: Sprite - sprite: _White/Clothing/Shoes/Boots/workboots.rsi #WWDP edit + sprite: Clothing/Shoes/Boots/workboots.rsi - type: Clothing - sprite: _White/Clothing/Shoes/Boots/workboots.rsi #WWDP edit + sprite: Clothing/Shoes/Boots/workboots.rsi - type: Matchbox - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml index 9cab7c3394..032d6c3fa0 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml @@ -5,12 +5,12 @@ description: Magnetic boots, often used during extravehicular activity to ensure the user remains safely attached to the vehicle. components: - type: Sprite - sprite: _White/Clothing/Shoes/Boots/magboots.rsi #WWDP edit + sprite: Clothing/Shoes/Boots/magboots.rsi layers: - state: icon map: [ "enum.ToggleVisuals.Layer" ] - type: Clothing - sprite: _White/Clothing/Shoes/Boots/magboots.rsi #WWDP edit + sprite: Clothing/Shoes/Boots/magboots.rsi - type: Magboots - type: ClothingSpeedModifier walkModifier: 0.85 @@ -28,6 +28,10 @@ - type: Tag tags: - WhitelistChameleon + - type: ReverseEngineering + difficulty: 2 + recipes: + - ClothingShoesBootsMag - type: entity parent: ClothingShoesBootsMag @@ -36,10 +40,10 @@ description: State-of-the-art magnetic boots that do not slow down their wearer. components: - type: Sprite - sprite: _White/Clothing/Shoes/Boots/magboots-advanced.rsi #WWDP edit + sprite: Clothing/Shoes/Boots/magboots-advanced.rsi state: icon - type: Clothing - sprite: _White/Clothing/Shoes/Boots/magboots-advanced.rsi #WWDP edit + sprite: Clothing/Shoes/Boots/magboots-advanced.rsi - type: Magboots toggleAction: ActionToggleMagbootsAdvanced - type: ClothingSpeedModifier @@ -87,10 +91,10 @@ description: Reverse-engineered magnetic boots that have a heavy magnetic pull and integrated thrusters. components: - type: Sprite - sprite: _White/Clothing/Shoes/Boots/magboots-syndicate.rsi #WWDP edit + sprite: Clothing/Shoes/Boots/magboots-syndicate.rsi state: icon - type: Clothing - sprite: _White/Clothing/Shoes/Boots/magboots-syndicate.rsi #WWDP edit + sprite: Clothing/Shoes/Boots/magboots-syndicate.rsi - type: Magboots toggleAction: ActionToggleMagbootsSyndie - type: ClothingSpeedModifier @@ -110,7 +114,7 @@ key: enum.SharedGasTankUiKey.Key - type: UserInterface interfaces: - - key: enum.SharedGasTankUiKey.Key + enum.SharedGasTankUiKey.Key: type: GasTankBoundUserInterface - type: Explosive explosionType: Default @@ -144,8 +148,8 @@ noSpawn: true components: - type: InstantAction - icon: { sprite: _White/Clothing/Shoes/Boots/magboots.rsi, state: icon } #WWDP edit - iconOn: { sprite : _White/Clothing/Shoes/Boots/magboots.rsi, state: icon-on } #WWDP edit + icon: { sprite: Clothing/Shoes/Boots/magboots.rsi, state: icon } + iconOn: { sprite : Clothing/Shoes/Boots/magboots.rsi, state: icon-on } - type: entity id: ActionToggleMagbootsAdvanced @@ -153,8 +157,8 @@ noSpawn: true components: - type: InstantAction - icon: { sprite: _White/Clothing/Shoes/Boots/magboots-advanced.rsi, state: icon } #WWDP edit - iconOn: _White/Clothing/Shoes/Boots/magboots-advanced.rsi/icon-on.png #WWDP edit + icon: { sprite: Clothing/Shoes/Boots/magboots-advanced.rsi, state: icon } + iconOn: Clothing/Shoes/Boots/magboots-advanced.rsi/icon-on.png - type: entity id: ActionToggleMagbootsSci @@ -171,5 +175,5 @@ noSpawn: true components: - type: InstantAction - icon: { sprite: _White/Clothing/Shoes/Boots/magboots-syndicate.rsi, state: icon } #WWDP edit - iconOn: _White/Clothing/Shoes/Boots/magboots-syndicate.rsi/icon-on.png #WWDP edit + icon: { sprite: Clothing/Shoes/Boots/magboots-syndicate.rsi, state: icon } + iconOn: Clothing/Shoes/Boots/magboots-syndicate.rsi/icon-on.png diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml index d1f6e083f4..d5a695c7c0 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml @@ -47,6 +47,8 @@ collection: FootstepDuck params: variation: 0.07 + - type: WaddleWhenWorn + tumbleIntensity: 10 # smaller than clown shoes - type: Construction graph: ClothingShoeSlippersDuck node: shoes diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml index ba862567cf..4ae752345a 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml @@ -35,9 +35,9 @@ description: "The prankster's standard-issue clowning shoes. Damn they're huge!" components: - type: Sprite - sprite: _White/Clothing/Shoes/Specific/clown.rsi #WWDP edit + sprite: Clothing/Shoes/Specific/clown.rsi - type: Clothing - sprite: _White/Clothing/Shoes/Specific/clown.rsi #WWDP edit + sprite: Clothing/Shoes/Specific/clown.rsi - type: FootstepModifier footstepSoundCollection: collection: FootstepClown @@ -54,9 +54,9 @@ description: "When humor and footwear combine into new levels of absurdity." components: - type: Sprite - sprite: _White/Clothing/Shoes/Specific/clown_banana.rsi #WWDP edit + sprite: Clothing/Shoes/Specific/clown_banana.rsi - type: Clothing - sprite: _White/Clothing/Shoes/Specific/clown_banana.rsi #WWDP edit + sprite: Clothing/Shoes/Specific/clown_banana.rsi - type: FootstepModifier footstepSoundCollection: collection: FootstepSlip @@ -74,9 +74,9 @@ description: Made of refined bananium and shined with the pulp of a fresh banana peel. These make a flashy statement. components: - type: Sprite - sprite: _White/Clothing/Shoes/Specific/bling.rsi #WWDP edit + sprite: Clothing/Shoes/Specific/bling.rsi - type: Clothing - sprite: _White/Clothing/Shoes/Specific/bling.rsi #WWDP edit + sprite: Clothing/Shoes/Specific/bling.rsi - type: FootstepModifier footstepSoundCollection: collection: FootstepClown @@ -105,9 +105,9 @@ description: Rubber boots. components: - type: Sprite - sprite: _White/Clothing/Shoes/Specific/galoshes.rsi #WWDP edit + sprite: Clothing/Shoes/Specific/galoshes.rsi - type: Clothing - sprite: _White/Clothing/Shoes/Specific/galoshes.rsi #WWDP edit + sprite: Clothing/Shoes/Specific/galoshes.rsi - type: NoSlip - type: entity @@ -185,7 +185,7 @@ default: ClothingShoesColorBlack - type: UserInterface interfaces: - - key: enum.ChameleonUiKey.Key + enum.ChameleonUiKey.Key: type: ChameleonBoundUserInterface - type: entity @@ -204,9 +204,9 @@ description: A court jester's shoes, updated with modern squeaking technology. components: - type: Sprite - sprite: _White/Clothing/Shoes/Specific/jester.rsi #WWDP edit + sprite: Clothing/Shoes/Specific/jester.rsi - type: Clothing - sprite: _White/Clothing/Shoes/Specific/jester.rsi #WWDP edit + sprite: Clothing/Shoes/Specific/jester.rsi - type: FootstepModifier footstepSoundCollection: collection: FootstepJester @@ -219,9 +219,9 @@ description: "Cursed pair of cluwne shoes." components: - type: Sprite - sprite: _White/Clothing/Shoes/Specific/cluwne.rsi #WWDP edit + sprite: Clothing/Shoes/Specific/cluwne.rsi - type: Clothing - sprite: _White/Clothing/Shoes/Specific/cluwne.rsi #WWDP edit + sprite: Clothing/Shoes/Specific/cluwne.rsi - type: Unremoveable - type: entity @@ -232,9 +232,9 @@ components: - type: Sprite state: "icon" - sprite: _White/Clothing/Shoes/Specific/large_clown.rsi #WWDP edit + sprite: Clothing/Shoes/Specific/large_clown.rsi - type: Clothing - sprite: _White/Clothing/Shoes/Specific/large_clown.rsi #WWDP edit + sprite: Clothing/Shoes/Specific/large_clown.rsi clothingVisuals: shoes: - state: equipped-FEET diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml index e5f19a8a49..9076c2071e 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml @@ -5,9 +5,9 @@ description: A nice and tidy uniform. Shame about the bar though. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/bartender.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/bartender.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/bartender.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/bartender.rsi # This has been placed here, as it visually resembles a skirt. # Likewise, the sprite file location has been moved to jumpskirts and the parent has been changed to ClothingUniformSkirtBase. @@ -29,9 +29,9 @@ description: It's a blue jumpskirt with some gold markings denoting the rank of "Captain". components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/captain.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/captain.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/captain.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/captain.rsi - type: entity parent: ClothingUniformSkirtBase @@ -40,20 +40,20 @@ description: A sturdy jumpskirt, issued to members of the Logistics department. # DeltaV - Logistics Department replacing Cargo components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/cargotech.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/cargotech.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/cargotech.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/cargotech.rsi - type: entity parent: ClothingUniformSkirtBase id: ClothingUniformJumpskirtChiefEngineer name: chief engineer's jumpskirt - description: It's a high visibility jumpskirt given to those engineers insane enough to achieve the rank of Chief Engineer. It has minor radiation shielding. + description: It's a high visibility jumpskirt given to those engineers insane enough to achieve the rank of Chief Engineer. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/ce.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/ce.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/ce.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/ce.rsi - type: entity parent: ClothingUniformSkirtBase @@ -84,9 +84,9 @@ description: Can't cook without this. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/chef.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/chef.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/chef.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/chef.rsi - type: entity parent: ClothingUniformSkirtBase @@ -95,9 +95,9 @@ description: There's some odd stains on this jumpskirt. Hm. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/chemistry.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/chemistry.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/chemistry.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/chemistry.rsi - type: entity parent: ClothingUniformSkirtBase @@ -128,9 +128,9 @@ description: It's a jumpskirt worn by those with the experience to be Chief Medical Officer. It provides minor biological protection. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/cmo.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/cmo.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/cmo.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/cmo.rsi - type: entity parent: ClothingUniformSkirtBase @@ -139,9 +139,9 @@ description: Someone who wears this means business. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/detective.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/detective.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/detective.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/detective.rsi - type: entity parent: ClothingUniformSkirtBase @@ -150,9 +150,9 @@ description: A hard-boiled private investigator's grey suit, complete with tie clip. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/detective_grey.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/detective_grey.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/detective_grey.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/detective_grey.rsi - type: entity parent: ClothingUniformSkirtBase @@ -161,9 +161,9 @@ description: If this suit was non-conductive, maybe engineers would actually do their damn job. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/engineering.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/engineering.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/engineering.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/engineering.rsi - type: entity parent: ClothingUniformSkirtBase @@ -172,31 +172,31 @@ description: Rather bland and inoffensive. Perfect for vanishing off the face of the universe. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/hop.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/hop.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/hop.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/hop.rsi - type: entity parent: ClothingUniformSkirtBase id: ClothingUniformJumpskirtHoS name: head of security's jumpskirt - description: A standard Station Security uniform, adorned with gold emblems and commander's epaulettes. # DeltaV - improved description + description: A standard Station Security uniform, adorned with gold emblems and commander's epaulettes. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/hos.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/hos.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/hos.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/hos.rsi - type: entity parent: ClothingUniformSkirtBase id: ClothingUniformJumpskirtHoSAlt name: head of security's turtleneck - description: It's a turtleneck worn by those strong and disciplined enough to achieve the position of Head of Security. Its sturdy fabric provides minor protection from slash and pierce damage. + description: It's a turtleneck worn by those strong and disciplined enough to achieve the position of Head of Security. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/hos_alt.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/hos_alt.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/hos_alt.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/hos_alt.rsi - type: entity parent: ClothingUniformSkirtBase @@ -205,9 +205,9 @@ description: A head of security's luxury-wear, for special occasions. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/hos_parade.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/hos_parade.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/hos_parade.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/hos_parade.rsi - type: entity parent: ClothingUniformSkirtBase @@ -216,9 +216,9 @@ description: Has a strong earthy smell to it. Hopefully it's merely dirty as opposed to soiled. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/hydro.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/hydro.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/hydro.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/hydro.rsi - type: entity parent: ClothingUniformSkirtBase @@ -251,9 +251,9 @@ description: It's made of a special fiber that provides minor protection against biohazards. It has a cross on the chest denoting that the wearer is trained medical personnel. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/medical.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/medical.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/medical.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/medical.rsi - type: entity parent: ClothingUniformSkirtBase @@ -262,9 +262,9 @@ description: ... components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/mime.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/mime.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/mime.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/mime.rsi - type: entity parent: ClothingUniformSkirtBase @@ -273,9 +273,9 @@ description: It's got a plus on it, that's a good thing right? components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/paramedic.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/paramedic.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/paramedic.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/paramedic.rsi - type: entity parent: ClothingUniformSkirtBase @@ -335,9 +335,9 @@ description: 'What can brown do for you?' components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/qm.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/qm.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/qm.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/qm.rsi - type: entity parent: ClothingUniformSkirtBase @@ -365,12 +365,12 @@ parent: ClothingUniformSkirtBase id: ClothingUniformJumpskirtScientist name: scientist jumpskirt - description: It's made of a special fiber that provides minor protection against explosives. It has markings that denote the wearer as a scientist. + description: It's made of a special fiber that increases perceived intelligence and decreases personal ethics. It has markings that denote the wearer as a scientist. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/scientist.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/scientist.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/scientist.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/scientist.rsi - type: entity parent: ClothingUniformSkirtBase @@ -390,9 +390,9 @@ description: A charcoal skirt and a dull red shirt, the standard-issue uniform of the infamous Station Security Department. # DeltaV - improved description components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/security.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/security.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/security.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/security.rsi - type: entity parent: ClothingUniformSkirtBase @@ -401,9 +401,9 @@ description: Red shirt on a charcoal skirt, with white markings and epaulettes that denote a warden's rank. # DeltaV - improved description components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/warden.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/warden.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/warden.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/warden.rsi - type: entity parent: ClothingUniformSkirtBase @@ -478,9 +478,9 @@ description: Uniform for elite syndicate operatives performing tactical operations in deep space. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/operative_s.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/operative_s.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/operative_s.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/operative_s.rsi - type: entity parent: ClothingUniformSkirtBase @@ -504,9 +504,9 @@ description: I am at work. I can't leave work. Work is breathing. I am testing air quality. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpskirt/atmosf.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/atmosf.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpskirt/atmosf.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpskirt/atmosf.rsi - type: entity parent: ClothingUniformSkirtBase @@ -829,4 +829,13 @@ - state: equipped-INNERCLOTHING-shirt color: "#b30000" - +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtOldDress + name: old dress + description: A worn-looking dress from a very long time ago. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/olddress.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/olddress.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index 37f9c872a6..3a6c1a1ce8 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -27,9 +27,9 @@ description: A nice and tidy uniform. Shame about the bar though. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/bartender.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/bartender.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/bartender.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/bartender.rsi - type: entity parent: ClothingUniformBase @@ -53,9 +53,9 @@ description: It's a blue jumpsuit with some gold markings denoting the rank of "Captain". components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/captain.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/captain.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/captain.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/captain.rsi - type: entity parent: ClothingUniformBase @@ -64,9 +64,9 @@ description: A sturdy jumpsuit, issued to members of the Logistics department. # DeltaV - Logistics Department replacing Cargo components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/cargotech.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/cargotech.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/cargotech.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/cargotech.rsi - type: entity parent: ClothingUniformBase @@ -83,12 +83,12 @@ parent: ClothingUniformBase id: ClothingUniformJumpsuitChiefEngineer name: chief engineer's jumpsuit - description: It's a high visibility jumpsuit given to those engineers insane enough to achieve the rank of Chief Engineer. It has minor radiation shielding. + description: It's a high visibility jumpsuit given to those engineers insane enough to achieve the rank of Chief Engineer. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/ce.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/ce.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/ce.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/ce.rsi - type: entity parent: ClothingUniformBase @@ -130,9 +130,9 @@ description: It's a jumpsuit worn by CentCom's officials. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/centcom_official.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/centcom_official.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/centcom_official.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/centcom_official.rsi - type: entity parent: ClothingUniformBase @@ -152,9 +152,9 @@ description: Can't cook without this. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/chef.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/chef.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/chef.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/chef.rsi - type: entity parent: ClothingUniformBase @@ -163,9 +163,9 @@ description: There's some odd stains on this jumpsuit. Hm. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/chemistry.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/chemistry.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/chemistry.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/chemistry.rsi - type: entity parent: ClothingUniformBase @@ -196,9 +196,9 @@ description: HONK! components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/clown.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/clown.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/clown.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/clown.rsi femaleMask: UniformTop - type: Tag tags: @@ -210,9 +210,9 @@ name: banana clown suit components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/clown_banana.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/clown_banana.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/clown_banana.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/clown_banana.rsi femaleMask: UniformTop - type: Construction graph: BananaClownJumpsuit @@ -229,18 +229,18 @@ description: A jolly dress, well suited to entertain your master, nuncle. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/jester.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/jester.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/jester.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/jester.rsi - type: entity parent: ClothingUniformJumpsuitJester id: ClothingUniformJumpsuitJesterAlt components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/jester2.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/jester2.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/jester2.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/jester2.rsi - type: entity parent: ClothingUniformBase @@ -249,9 +249,9 @@ description: It's a jumpsuit worn by those with the experience to be Chief Medical Officer. It provides minor biological protection. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/cmo.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/cmo.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/cmo.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/cmo.rsi - type: entity parent: ClothingUniformBase @@ -260,9 +260,9 @@ description: Someone who wears this means business. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/detective.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/detective.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/detective.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/detective.rsi - type: entity parent: ClothingUniformBase @@ -282,9 +282,9 @@ description: If this suit was non-conductive, maybe engineers would actually do their damn job. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/engineering.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/engineering.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/engineering.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/engineering.rsi - type: entity parent: ClothingUniformBase @@ -293,9 +293,9 @@ description: Woven in a grungy, warm orange. Lets others around you know that you really mean business when it comes to work. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi - type: entity parent: ClothingUniformBase @@ -304,9 +304,9 @@ description: Rather bland and inoffensive. Perfect for vanishing off the face of the universe. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/hop.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/hop.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/hop.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/hop.rsi - type: entity parent: ClothingUniformBase @@ -315,9 +315,9 @@ description: A standard Station Security uniform, adorned with gold emblems and commander's epaulettes. # DeltaV - improved description components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/hos.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/hos.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/hos.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/hos.rsi - type: entity parent: ClothingUniformBase @@ -326,9 +326,9 @@ description: It's a turtleneck worn by those strong and disciplined enough to achieve the position of Head of Security. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/hos_alt.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/hos_alt.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/hos_alt.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/hos_alt.rsi - type: entity parent: ClothingUniformBase @@ -337,9 +337,9 @@ description: A blue Station Security shirt with charcoal trousers. Features gold emblems and commander's epaulettes. # DeltaV - improved description components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/hos_blue.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/hos_blue.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/hos_blue.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/hos_blue.rsi - type: entity parent: ClothingUniformBase @@ -359,9 +359,9 @@ description: A male head of security's luxury-wear, for special occasions. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/hos_parade.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/hos_parade.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/hos_parade.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/hos_parade.rsi - type: entity parent: ClothingUniformBase @@ -370,9 +370,9 @@ description: Has a strong earthy smell to it. Hopefully it's merely dirty as opposed to soiled. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/hydro.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/hydro.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/hydro.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/hydro.rsi - type: entity parent: ClothingUniformBase @@ -392,9 +392,9 @@ description: It's made of a special fiber that provides minor protection against biohazards. It has a cross on the chest denoting that the wearer is trained medical personnel. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/medical.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/medical.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/medical.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/medical.rsi - type: entity parent: ClothingUniformBase @@ -403,9 +403,9 @@ description: ... components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/mime.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/mime.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/mime.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/mime.rsi - type: entity parent: ClothingUniformBase @@ -414,9 +414,9 @@ description: It's got a plus on it, that's a good thing right? components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/paramedic.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/paramedic.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/paramedic.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/paramedic.rsi - type: entity parent: ClothingUniformBase @@ -475,9 +475,9 @@ description: 'What can brown do for you?' components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/qm.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/qm.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/qm.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/qm.rsi - type: entity parent: ClothingUniformBase @@ -518,12 +518,12 @@ parent: ClothingUniformBase id: ClothingUniformJumpsuitScientist name: scientist jumpsuit - description: It's made of a special fiber that provides minor protection against explosives. It has markings that denote the wearer as a scientist. + description: It's made of a special fiber that increases perceived intelligence and decreases personal ethics. It has markings that denote the wearer as a scientist. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/scientist.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/scientist.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/scientist.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/scientist.rsi - type: entity parent: ClothingUniformBase @@ -554,9 +554,9 @@ description: Charcoal trousers and a dull red shirt, the standard-issue uniform of the infamous Station Security Department. # DeltaV - improved description components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/security.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/security.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/security.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/security.rsi - type: entity parent: ClothingUniformBase @@ -565,9 +565,9 @@ description: A cool blue shirt over charcoal trousers, for the calm and collected security officer. # DeltaV - improved description components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/security_blue.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/security_blue.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/security_blue.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/security_blue.rsi - type: entity parent: ClothingUniformBase @@ -587,9 +587,9 @@ description: Red shirt on charcoal trousers, with white markings and epaulettes that denote a warden's rank. # DeltaV - improved description components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/warden.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/warden.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/warden.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/warden.rsi - type: entity parent: ClothingUniformBase @@ -598,9 +598,9 @@ description: Great for working outdoors. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/overalls.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/overalls.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/overalls.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/overalls.rsi - type: entity parent: ClothingUniformBase @@ -609,9 +609,9 @@ description: A cosy green jumper fit for a curator of books. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/librarian.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/librarian.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/librarian.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/librarian.rsi - type: entity parent: ClothingUniformBase @@ -763,9 +763,9 @@ description: Uniform for elite syndicate operatives performing tactical operations in deep space. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/operative.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/operative.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/operative.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/operative.rsi - type: entity parent: ClothingUniformBase @@ -811,9 +811,9 @@ description: I am at work. I can't leave work. Work is breathing. I am testing air quality. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/atmos.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/atmos.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/atmos.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/atmos.rsi - type: entity parent: ClothingUniformBase @@ -833,9 +833,9 @@ description: I don't lose things. I place things in locations which later elude me. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/psychologist.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/psychologist.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/psychologist.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/psychologist.rsi - type: entity parent: ClothingUniformBase @@ -865,9 +865,9 @@ description: If journalism is good, it is controversial, by nature. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/journalist.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/journalist.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/journalist.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/journalist.rsi - type: entity parent: ClothingUniformBase @@ -876,9 +876,9 @@ description: A fancy tuxedo for the musically inclined. Perfect for any lounge act! components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/musician.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/musician.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/musician.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/musician.rsi - type: entity parent: ClothingUniformBase @@ -954,9 +954,9 @@ description: Cursed cluwne suit. components: - type: Sprite - sprite: _White/Clothing/Uniforms/Jumpsuit/cluwne.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/cluwne.rsi - type: Clothing - sprite: _White/Clothing/Uniforms/Jumpsuit/cluwne.rsi #WWDP edit + sprite: Clothing/Uniforms/Jumpsuit/cluwne.rsi - type: Unremoveable - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/specific.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/specific.yml index ad02f4aa67..a2c903bac3 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/specific.yml @@ -38,5 +38,5 @@ default: ClothingUniformJumpsuitColorBlack - type: UserInterface interfaces: - - key: enum.ChameleonUiKey.Key - type: ChameleonBoundUserInterface \ No newline at end of file + enum.ChameleonUiKey.Key: + type: ChameleonBoundUserInterface diff --git a/Resources/Prototypes/Entities/Clothing/base_clothing.yml b/Resources/Prototypes/Entities/Clothing/base_clothing.yml index 12d13f2f96..97811400a6 100644 --- a/Resources/Prototypes/Entities/Clothing/base_clothing.yml +++ b/Resources/Prototypes/Entities/Clothing/base_clothing.yml @@ -20,6 +20,12 @@ - type: Geiger attachedToSuit: true +- type: entity + abstract: true + id: AllowSuitStorageClothing + components: + - type: AllowSuitStorage + # for clothing that has a single item slot to insert and alt click out. # inheritors add a whitelisted slot named item - type: entity diff --git a/Resources/Prototypes/Entities/Debugging/tippy.yml b/Resources/Prototypes/Entities/Debugging/tippy.yml new file mode 100644 index 0000000000..292cbed0f1 --- /dev/null +++ b/Resources/Prototypes/Entities/Debugging/tippy.yml @@ -0,0 +1,30 @@ +- type: entity + id: Tippy + noSpawn: true + components: + - type: Sprite + netsync: false + noRot: false + scale: 4,4 + layers: + - sprite: Tips/tippy.rsi + state: left + map: [ "revealing" ] + - sprite: Tips/tippy.rsi + state: right + map: [ "hiding" ] + - sprite: Tips/tippy.rsi + state: down + visible: false + map: [ "speaking" ] + # footstep sounds wile waddling onto the screen. + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepClown + # visuals for the speech bubble. + # only supports background image. + - type: PaperVisuals + backgroundImagePath: "/Textures/Interface/Paper/paper_background_default.svg.96dpi.png" + backgroundPatchMargin: 16.0, 16.0, 16.0, 16.0 + backgroundModulate: "#ffffcc" + fontAccentColor: "#000000" diff --git a/Resources/Prototypes/Entities/Effects/bluespace_flash.yml b/Resources/Prototypes/Entities/Effects/bluespace_flash.yml index 3421f0d9a6..a0b3f81abc 100644 --- a/Resources/Prototypes/Entities/Effects/bluespace_flash.yml +++ b/Resources/Prototypes/Entities/Effects/bluespace_flash.yml @@ -9,5 +9,33 @@ - type: TimedDespawn lifetime: 1 - type: EmitSoundOnSpawn - sound: + sound: + path: /Audio/Effects/Lightning/lightningbolt.ogg + +- type: entity + id: EffectFlashTelekineticPulse + noSpawn: true + components: + - type: PointLight + radius: 10 + energy: 3.5 + color: "#18abf5" + - type: TimedDespawn + lifetime: 1 + - type: EmitSoundOnSpawn + sound: + path: /Audio/Effects/Lightning/lightningbolt.ogg + +- type: entity + id: EffectFlashShadeskip + noSpawn: true + components: + - type: PointLight + radius: 5 + energy: 3.5 + color: "#7100bd" + - type: TimedDespawn + lifetime: 1 + - type: EmitSoundOnSpawn + sound: path: /Audio/Effects/Lightning/lightningbolt.ogg \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml index 29e77c5a29..469bab3278 100644 --- a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml +++ b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml @@ -77,7 +77,7 @@ animationState: foam-dissolve - type: Slippery - type: StepTrigger - triggerGroups: # WD EDIT + triggerGroups: types: - SlipTile # disabled until foam reagent duplication is fixed diff --git a/Resources/Prototypes/Entities/Effects/puddle.yml b/Resources/Prototypes/Entities/Effects/puddle.yml index d3156c50a3..0d2c49d5c9 100644 --- a/Resources/Prototypes/Entities/Effects/puddle.yml +++ b/Resources/Prototypes/Entities/Effects/puddle.yml @@ -142,8 +142,11 @@ mode: CardinalFlags - type: SolutionContainerManager solutions: - puddle: { maxVol: 1000 } + puddle: + maxVol: 1000 - type: Puddle + - type: MixableSolution + solution: puddle - type: Appearance - type: ActiveEdgeSpreader - type: EdgeSpreader @@ -163,3 +166,4 @@ solution: puddle - type: BadDrink - type: IgnoresFingerprints + - type: PuddleFootPrints # WD EDIT diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml index ff9e512432..f8fc2998d7 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml @@ -32,6 +32,7 @@ - DrinkBloodyMaryGlass - DrinkBooger - DrinkBraveBullGlass + - BudgetInsulsDrinkGlass - DrinkCarrotJuice - DrinkCoconutRum - DrinkChocolateGlass @@ -57,6 +58,7 @@ - DrinkIcedGreenTeaGlass - DrinkIcedBeerGlass - DrinkIceCreamGlass + - IrishBoolGlass - DrinkIrishCarBomb - DrinkIrishCoffeeGlass - DrinkLemonadeGlass @@ -78,6 +80,7 @@ - DrinkRewriter - DrinkRoyRogersGlass - DrinkRootBeerFloatGlass + - RubberneckGlass - DrinkRumGlass - DrinkSakeGlass - DrinkSbitenGlass @@ -91,12 +94,15 @@ - DrinkThreeMileIslandGlass - DrinkToxinsSpecialGlass - DrinkVodkaMartiniGlass + - DrinkVodkaRedBool - DrinkVodkaTonicGlass - DrinkWatermelonJuice + - DrinkWatermelonWakeup - DrinkWhiskeyColaGlass - DrinkWhiskeySodaGlass - DrinkWhiteRussianGlass - DrinkWineGlass + - XenoBasherGlass - DrinkShakeBlue - DrinkShakeWhite - DrinkTheMartinez diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_produce.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_produce.yml index 6edf341e10..a889b939bd 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_produce.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_produce.yml @@ -33,8 +33,8 @@ - FoodOnion - FoodOnionRed - FoodMushroom - - FoodChili - - FoodChilly + - FoodChiliPepper + - FoodChillyPepper - FoodAloe - FoodPoppy - FoodLingzhi diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/salvage.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/salvage.yml index 34bf32d8d7..4a611fe026 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/salvage.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/salvage.yml @@ -63,23 +63,78 @@ offset: 0.0 - type: entity - name: salvage loot spawner - id: SalvageLootSpawner + name: Salvage T2 Machine Parts Spawner + id: SalvagePartsT2Spawner parent: MarkerBase components: - type: Sprite layers: - state: red - - sprite: Objects/Weapons/Melee/crusher.rsi - state: icon + - sprite: Objects/Misc/stock_parts.rsi + state: advanced_matter_bin - type: RandomSpawner prototypes: - - WeaponCrusher - - WeaponCrusherDagger - - WeaponCrusherGlaive - - MiningDrill + - AdvancedCapacitorStockPart + - NanoManipulatorStockPart + - AdvancedMatterBinStockPart offset: 0.0 +- type: entity + parent: MarkerBase + id: SalvagePartsT3T4Spawner + name: tier 3/4 machine part + components: + - type: Sprite + layers: + - sprite: Objects/Misc/stock_parts.rsi + state: super_matter_bin + - type: RandomSpawner + rarePrototypes: + - BluespaceCapacitorStockPart + - BluespaceManipulatorStockPart + - BluespaceMatterBinStockPart + rareChance: 0.05 + prototypes: + - SuperCapacitorStockPart + - PicoManipulatorStockPart + - SuperMatterBinStockPart + chance: 0.95 + offset: 0.0 + +- type: entity + parent: MarkerBase + id: SalvagePartsT3Spawner + name: tier 3 machine part + suffix: Spawner + components: + - type: Sprite + layers: + - sprite: Objects/Misc/stock_parts.rsi + state: super_matter_bin + - type: RandomSpawner + prototypes: + - SuperCapacitorStockPart + - PicoManipulatorStockPart + - SuperMatterBinStockPart + offset: 0.0 + +- type: entity + parent: MarkerBase + id: SalvagePartsT4Spawner + name: tier 4 machine part + suffix: Spawner + components: + - type: Sprite + layers: + - sprite: Objects/Misc/stock_parts.rsi + state: bluespace_matter_bin + - type: RandomSpawner + prototypes: + - BluespaceCapacitorStockPart + - PicoManipulatorStockPart + - BluespaceMatterBinStockPart + offset: 0.0 + - type: entity name: Salvage Mob Spawner id: SalvageMobSpawner @@ -228,3 +283,28 @@ - MobFleshLoverSalvage chance: 1 offset: 0.2 + +- type: entity + name: Salvage Loot Spawner + id: SalvageLootSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Structures/Storage/Crates/generic.rsi + state: icon + - type: RandomSpawner + rarePrototypes: + - SalvagePartsT2Spawner + - SalvagePartsT3Spawner + - SalvagePartsT3T4Spawner + - SalvagePartsT4Spawner + rareChance: 0.4 + prototypes: + - CrateSalvageAssortedGoodies + - WeaponCrusher + - WeaponCrusherDagger + - WeaponCrusherGlaive + chance: 0.9 + offset: 0.2 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml b/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml index 0b09e0e4c9..4ade9a9fd4 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml @@ -8,6 +8,8 @@ name: ghost-role-information-rat-king-name description: ghost-role-information-rat-king-description rules: ghost-role-information-rat-king-rules + raffle: + settings: default - type: GhostRoleMobSpawner prototype: MobRatKing - type: Sprite @@ -27,6 +29,8 @@ name: ghost-role-information-remilia-name description: ghost-role-information-remilia-description rules: ghost-role-information-remilia-rules + raffle: + settings: short - type: GhostRoleMobSpawner prototype: MobBatRemilia - type: Sprite @@ -46,6 +50,8 @@ name: ghost-role-information-cerberus-name description: ghost-role-information-cerberus-description rules: ghost-role-information-cerberus-rules + raffle: + settings: default - type: GhostRoleMobSpawner prototype: MobCorgiCerberus - type: Sprite @@ -64,6 +70,8 @@ components: - type: GhostRole rules: ghost-role-information-nukeop-rules + raffle: + settings: default - type: GhostRoleMobSpawner prototype: MobHumanNukeOp - type: Sprite @@ -84,6 +92,8 @@ name: ghost-role-information-loneop-name description: ghost-role-information-loneop-description rules: ghost-role-information-loneop-rules + raffle: + settings: default requirements: - !type:CharacterOverallTimeRequirement min: 172800 # DeltaV - 48 hours @@ -109,6 +119,8 @@ name: ghost-role-information-space-dragon-name description: ghost-role-information-space-dragon-description rules: ghost-role-component-default-rules + raffle: + settings: default - type: GhostRoleMobSpawner prototype: MobDragon - type: Sprite @@ -127,6 +139,8 @@ name: ghost-role-information-space-ninja-name description: ghost-role-information-space-ninja-description rules: ghost-role-information-space-ninja-rules + raffle: + settings: default - type: GhostRoleMobSpawner prototype: MobHumanSpaceNinja - type: Sprite @@ -135,20 +149,3 @@ - state: green - sprite: Objects/Weapons/Melee/energykatana.rsi state: icon - -- type: entity - parent: MarkerBase - id: SpawnPointGhostTerminator - name: terminator spawn point - components: - - type: GhostRole - name: ghost-role-information-exterminator-name - description: ghost-role-information-exterminator-description - rules: ghost-role-information-exterminator-rules - - type: GhostRoleMobSpawner - prototype: MobHumanTerminator - - type: Sprite - layers: - - state: green - - sprite: Mobs/Species/Terminator/parts.rsi - state: full diff --git a/Resources/Prototypes/Entities/Markers/Spawners/human.yml b/Resources/Prototypes/Entities/Markers/Spawners/human.yml index 556c863a3b..1719b62bb2 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/human.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/human.yml @@ -15,7 +15,7 @@ state: equipped-INNERCLOTHING - sprite: Clothing/OuterClothing/Armor/security.rsi state: equipped-OUTERCLOTHING - - sprite: _White/Clothing/Hands/Gloves/Color/black.rsi #WWDP edit + - sprite: Clothing/Hands/Gloves/Color/black.rsi state: equipped-HAND - sprite: Clothing/Mask/gas.rsi state: equipped-MASK diff --git a/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml b/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml index a59c7d5951..a69c974a39 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml @@ -849,3 +849,17 @@ - type: ConditionalSpawner prototypes: - MobLuminousEntity + +- type: entity + name: clown spider spawner + id: SpawnClownSpider + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - state: clown + sprite: Mobs/Animals/clownspider.rsi + - type: ConditionalSpawner + prototypes: + - MobClownSpider \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Markers/environmental.yml b/Resources/Prototypes/Entities/Markers/environmental.yml new file mode 100644 index 0000000000..0642518356 --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/environmental.yml @@ -0,0 +1,100 @@ +# Radiation +- type: entity + name: Marker Radiation + id: MarkerRadiation1 + parent: MarkerBase + suffix: intensity 1 + components: + - type: Sprite + layers: + - sprite: Markers/environment.rsi + state: base-green + shader: unshaded + - sprite: Markers/environment.rsi + shader: unshaded + state: rad + - type: RadiationSource + intensity: 1 + +- type: entity + parent: MarkerRadiation1 + id: MarkerRadiation2 + suffix: intensity 2 + components: + - type: RadiationSource + intensity: 2 + +- type: entity + parent: MarkerRadiation1 + id: MarkerRadiation3 + suffix: intensity 3 + components: + - type: RadiationSource + intensity: 3 + +- type: entity + parent: MarkerRadiation1 + id: MarkerRadiation4 + suffix: intensity 4 + components: + - type: RadiationSource + intensity: 4 + +- type: entity + parent: MarkerRadiation1 + id: MarkerRadiation5 + suffix: intensity 5 + components: + - type: RadiationSource + intensity: 5 + +- type: entity + parent: MarkerRadiation1 + id: MarkerRadiation10 + suffix: intensity 10 + components: + - type: RadiationSource + intensity: 10 + +# Invisible Walls +- type: entity + name: Marker Blocker + id: MarkerBlocker + parent: MarkerBase + suffix: invisible wall + components: + - type: Sprite + layers: + - sprite: Markers/environment.rsi + state: base-blue + shader: unshaded + - sprite: Markers/environment.rsi + shader: unshaded + state: wall + - type: PlacementReplacement + key: blocker + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + mask: + - FullTileMask + layer: + - WallLayer + density: 1000 + - type: Physics + bodyType: Static + + +# Weather Blocker +- type: entity + name: Marker Weather Blocker + id: MarkerWeatherblocker + parent: MarkerBase + components: + - type: Sprite + sprite: Markers/environment.rsi + state: weather + - type: BlockWeather diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml index 449f8aa2cd..aa983583c5 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml @@ -1160,6 +1160,13 @@ sprites: - sprite: Mobs/Customization/human_hair.rsi state: spiky2 +- type: marking + id: HumanHairSpookyLong + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: spookylong - type: marking id: HumanHairSwept bodyPart: Hair diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/kemonomimi_ears.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/kemonomimi_ears.yml new file mode 100644 index 0000000000..66b4b5242c --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/kemonomimi_ears.yml @@ -0,0 +1,77 @@ +- type: marking + id: BullishHorns + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Human] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:SkinColoring + sprites: + - sprite: Mobs/Customization/kemonomimi-ears.rsi + state: bullishhorns + +- type: marking + id: BunnyEars + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Human] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:SkinColoring + layers: + bunnyearstone2: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/kemonomimi-ears.rsi + state: bunnyearstone1 + - sprite: Mobs/Customization/kemonomimi-ears.rsi + state: bunnyearstone2 + +- type: marking + id: FoxEars + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Human] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:SkinColoring + sprites: + - sprite: Mobs/Customization/kemonomimi-ears.rsi + state: foxears + +- type: marking + id: GoatHorns + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Human] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:SkinColoring + layers: + goathornstone22: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/kemonomimi-ears.rsi + state: goathornstone1 + - sprite: Mobs/Customization/kemonomimi-ears.rsi + state: goathornstone2 \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/kemonomimi_tails.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/kemonomimi_tails.yml new file mode 100644 index 0000000000..d45d366ec0 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/kemonomimi_tails.yml @@ -0,0 +1,169 @@ +- type: marking + id: BunnyTail + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Human] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:CategoryColoring + category: FacialHair + - !type:SkinColoring + sprites: + - sprite: Mobs/Customization/kemonomimi-tails.rsi + state: bunnytail + +- type: marking + id: DobleFur + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Human] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:CategoryColoring + category: FacialHair + - !type:SkinColoring + sprites: + - sprite: Mobs/Customization/kemonomimi-tails.rsi + state: doblefurtailtone1 + - sprite: Mobs/Customization/kemonomimi-tails.rsi + state: doblefurtailtone2 + +- type: marking + id: FluffyTail + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Human] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:CategoryColoring + category: FacialHair + - !type:SkinColoring + sprites: + - sprite: Mobs/Customization/kemonomimi-tails.rsi + state: fluffytail + +- type: marking + id: FoxNineTails + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Human] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:CategoryColoring + category: FacialHair + - !type:SkinColoring + sprites: + - sprite: Mobs/Customization/kemonomimi-tails.rsi + state: foxninetailstone1 + - sprite: Mobs/Customization/kemonomimi-tails.rsi + state: foxninetailstone2 + +- type: marking + id: FoxThreeTails + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Human] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:CategoryColoring + category: FacialHair + - !type:SkinColoring + sprites: + - sprite: Mobs/Customization/kemonomimi-tails.rsi + state: foxthreetailstone1 + - sprite: Mobs/Customization/kemonomimi-tails.rsi + state: foxthreetailstone2 + +- type: marking + id: HorseTailCulty + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Human] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:CategoryColoring + category: FacialHair + - !type:SkinColoring + sprites: + - sprite: Mobs/Customization/kemonomimi-tails.rsi + state: horsetailculty + +- type: marking + id: HorseTailLong + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Human] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:CategoryColoring + category: FacialHair + - !type:SkinColoring + sprites: + - sprite: Mobs/Customization/kemonomimi-tails.rsi + state: horsetaillong + +- type: marking + id: SharkTail + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Human] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:CategoryColoring + category: FacialHair + - !type:SkinColoring + sprites: + - sprite: Mobs/Customization/kemonomimi-tails.rsi + state: sharktail + +- type: marking + id: TasselTail + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Human] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:CategoryColoring + category: FacialHair + - !type:SkinColoring + sprites: + - sprite: Mobs/Customization/kemonomimi-tails.rsi + state: tasseltailtone1 + - sprite: Mobs/Customization/kemonomimi-tails.rsi + state: tasseltailtone2 \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml index f5749121e2..cad3e77962 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml @@ -2,7 +2,7 @@ id: LizardFrillsAquatic bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: frills_aquatic @@ -11,7 +11,7 @@ id: LizardFrillsShort bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: frills_short @@ -20,7 +20,7 @@ id: LizardFrillsSimple bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: frills_simple @@ -29,7 +29,7 @@ id: LizardFrillsDivinity bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: frills_divinity @@ -38,7 +38,7 @@ id: LizardFrillsBig bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: frills_big @@ -47,7 +47,7 @@ id: LizardFrillsAxolotl bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: frills_axolotl @@ -56,18 +56,27 @@ id: LizardFrillsHood bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: frills_hood_primary - sprite: Mobs/Customization/reptilian_parts.rsi state: frills_hood_secondary +- type: marking + id: LizardFrillsNeckfull + bodyPart: HeadSide + markingCategory: HeadSide + speciesRestriction: [Reptilian] + sprites: + - sprite: Mobs/Customization/reptilian_parts.rsi + state: frills_neckfull + - type: marking id: LizardHornsAngler bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: horns_angler @@ -76,7 +85,7 @@ id: LizardHornsCurled bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: horns_curled @@ -85,7 +94,7 @@ id: LizardHornsRam bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: horns_ram @@ -94,7 +103,7 @@ id: LizardHornsShort bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: horns_short @@ -103,7 +112,7 @@ id: LizardHornsSimple bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: horns_simple @@ -112,7 +121,7 @@ id: LizardHornsDouble bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: horns_double @@ -121,7 +130,7 @@ id: LizardTailSmooth bodyPart: Tail markingCategory: Tail - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: tail_smooth_primary @@ -132,7 +141,7 @@ id: LizardTailLarge bodyPart: Tail markingCategory: Tail - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: tail_large @@ -141,7 +150,7 @@ id: LizardTailSpikes bodyPart: Tail markingCategory: Tail - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: tail_spikes @@ -150,7 +159,7 @@ id: LizardTailLTiger bodyPart: Tail markingCategory: Tail - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: tail_ltiger @@ -159,7 +168,7 @@ id: LizardTailDTiger bodyPart: Tail markingCategory: Tail - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: tail_dtiger @@ -184,6 +193,17 @@ - sprite: Mobs/Customization/reptilian_parts.rsi state: snout_sharp +- type: marking + id: LizardSnoutSplotch + bodyPart: Snout + markingCategory: Snout + speciesRestriction: [Reptilian] + sprites: + - sprite: Mobs/Customization/reptilian_parts.rsi + state: snout_splotch_primary + - sprite: Mobs/Customization/reptilian_parts.rsi + state: snout_splotch_secondary + - type: marking id: LizardChestTiger bodyPart: Chest @@ -242,7 +262,7 @@ id: LizardHornsArgali bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: horns_argali @@ -251,7 +271,7 @@ id: LizardHornsAyrshire bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: horns_ayrshire @@ -260,7 +280,7 @@ id: LizardHornsMyrsore bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: horns_myrsore @@ -269,7 +289,7 @@ id: LizardHornsBighorn bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: horns_bighorn @@ -278,7 +298,7 @@ id: LizardHornsKoboldEars bodyPart: HeadTop markingCategory: HeadTop - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: horns_kobold_ears @@ -287,7 +307,7 @@ id: LizardHornsFloppyKoboldEars bodyPart: HeadSide markingCategory: HeadSide - speciesRestriction: [Reptilian] + speciesRestriction: [Reptilian, Human] sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: horns_floppy_kobold_ears diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_facial_hair.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_facial_hair.yml index d4cc4b00e3..6ec5f8999a 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_facial_hair.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_facial_hair.yml @@ -1,40 +1,44 @@ - type: marking - id: VoxFacialHairColonel + id: VoxFacialHairBeard bodyPart: FacialHair markingCategory: FacialHair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_facial_hair.rsi - state: vox_colonel_s + state: beard_s + - type: marking - id: VoxFacialHairFu + id: VoxFacialHairColonel bodyPart: FacialHair markingCategory: FacialHair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_facial_hair.rsi - state: vox_fu_s + state: colonel_s + - type: marking - id: VoxFacialHairNeck + id: VoxFacialHairFu bodyPart: FacialHair markingCategory: FacialHair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_facial_hair.rsi - state: vox_neck_s + state: fu_s + - type: marking - id: VoxFacialHairBeard + id: VoxFacialHairMane bodyPart: FacialHair markingCategory: FacialHair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_facial_hair.rsi - state: vox_beard_s + state: mane_s + - type: marking - id: VoxFacialHairRuffBeard + id: VoxFacialHairNeck bodyPart: FacialHair markingCategory: FacialHair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_facial_hair.rsi - state: vox_ruff_beard_s + state: neck_s diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_hair.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_hair.yml index 975de63204..9a847b40a9 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_hair.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_hair.yml @@ -1,91 +1,102 @@ - type: marking - id: VoxHairShortQuills + id: VoxHairAfro bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_shortquills_s + state: afro_s + - type: marking - id: VoxHairKingly + id: VoxHairBraids bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_kingly_s + state: braid_s + - type: marking - id: VoxHairAfro + id: VoxHairCrestedQuills bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_afro_s + state: crestedquills_s + - type: marking - id: VoxHairMohawk + id: VoxHairEmperorQuills bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_mohawk_s + state: emperorquills_s + - type: marking - id: VoxHairYasuhiro + id: VoxHairFlowing bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_yasu_s + state: flowing_s + - type: marking - id: VoxHairHorns + id: VoxHairHawk bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_horns_s + state: hawk_s + - type: marking - id: VoxHairNights + id: VoxHairHorns bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_nights_s + state: horns_s + - type: marking - id: VoxHairSurf + id: VoxHairKeelQuills bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_surf_s + state: keelquills_s + - type: marking - id: VoxHairCropped + id: VoxHairKeetQuills bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_cropped_s + state: keetquills_s + - type: marking - id: VoxHairRuffhawk + id: VoxHairKingly bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_ruff_hawk_s + state: kingly_s + - type: marking - id: VoxHairRows + id: VoxHairLongBraid bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_rows_s + state: afro_s + - type: marking id: VoxHairMange bodyPart: Hair @@ -93,7 +104,26 @@ speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_mange_s + state: mange_s + +- type: marking + id: VoxHairMohawk + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: mohawk_s + +- type: marking + id: VoxHairNights + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: nights_s + - type: marking id: VoxHairPony bodyPart: Hair @@ -101,4 +131,67 @@ speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_pony_s + state: ponytail_s + +- type: marking + id: VoxHairRazorClipped + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: razor_clipped_s + +- type: marking + id: VoxHairRazor + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: razor_s + +- type: marking + id: VoxHairSortBraid + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: short_braid_s + +- type: marking + id: VoxHairShortQuills + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: shortquills_s + +- type: marking + id: VoxHairSurf + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: surf_s + +- type: marking + id: VoxHairTielQuills + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: tielquills_s + +- type: marking + id: VoxHairYasu + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: yasu_s \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_parts.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_parts.yml new file mode 100644 index 0000000000..96acd06882 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_parts.yml @@ -0,0 +1,145 @@ +- type: marking + id: VoxBeak + bodyPart: Snout + markingCategory: Snout + forcedColoring: true + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_parts.rsi + state: beak + coloring: + default: + type: + !type:SimpleColoring + color: "#937e3d" + +- type: marking + id: VoxLArmScales + bodyPart: LArm + markingCategory: LeftArm + forcedColoring: true + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_parts.rsi + state: l_arm + coloring: + default: + type: + !type:SimpleColoring + color: "#937e3d" + +- type: marking + id: VoxLLegScales + bodyPart: LLeg + markingCategory: LeftLeg + forcedColoring: true + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_parts.rsi + state: l_leg + coloring: + default: + type: + !type:SimpleColoring + color: "#937e3d" + +- type: marking + id: VoxRArmScales + bodyPart: RArm + markingCategory: RightArm + forcedColoring: true + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_parts.rsi + state: r_arm + coloring: + default: + type: + !type:SimpleColoring + color: "#937e3d" + +- type: marking + id: VoxRLegScales + bodyPart: RLeg + markingCategory: RightLeg + forcedColoring: true + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_parts.rsi + state: r_leg + coloring: + default: + type: + !type:SimpleColoring + color: "#937e3d" + +- type: marking + id: VoxRHandScales + bodyPart: RHand + markingCategory: RightHand + forcedColoring: true + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_parts.rsi + state: r_hand + coloring: + default: + type: + !type:SimpleColoring + color: "#937e3d" + +- type: marking + id: VoxLHandScales + bodyPart: LHand + markingCategory: LeftHand + forcedColoring: true + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_parts.rsi + state: l_hand + coloring: + default: + type: + !type:SimpleColoring + color: "#937e3d" + +- type: marking + id: VoxLFootScales + bodyPart: LFoot + markingCategory: LeftFoot + forcedColoring: true + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_parts.rsi + state: l_foot + coloring: + default: + type: + !type:SimpleColoring + color: "#937e3d" + +- type: marking + id: VoxRFootScales + bodyPart: RFoot + markingCategory: RightFoot + forcedColoring: true + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_parts.rsi + state: r_foot + coloring: + default: + type: + !type:SimpleColoring + color: "#937e3d" + +- type: marking + id: VoxTail + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Vox] + forcedColoring: true + sprites: + - sprite: Mobs/Customization/vox_parts.rsi + # Ideally this should use the normal tail sprite and apply an actual mask over it, not just use a butchered sprite + state: tail_stenciled diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_tattoos.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_tattoos.yml new file mode 100644 index 0000000000..a802d284f3 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_tattoos.yml @@ -0,0 +1,55 @@ +- type: marking + id: TattooVoxHeartLeftArm + bodyPart: LArm + markingCategory: LeftArm + speciesRestriction: [Vox] + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: heart_l_arm + +- type: marking + id: TattooVoxHeartRightArm + bodyPart: RArm + markingCategory: RightArm + speciesRestriction: [Vox] + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: heart_r_arm + +- type: marking + id: TattooVoxHiveChest + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Vox] + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: hive_s + +- type: marking + id: TattooVoxNightlingChest + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Vox] + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: nightling_s diff --git a/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/hesphiastos.yml b/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/hesphiastos.yml index 1c14d7df0c..e3bcd07f3a 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/hesphiastos.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/hesphiastos.yml @@ -95,7 +95,7 @@ - type: marking id: CyberLimbsMarkingHesphiastosRHand bodyPart: RHand - markingCategory: RightArm + markingCategory: RightHand speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian] sprites: - sprite: Mobs/Customization/cyberlimbs/hesphiastos/hesphiastos_main.rsi @@ -107,7 +107,7 @@ - type: marking id: CyberLimbsMarkingHesphiastosRLeg bodyPart: RLeg - markingCategory: RightHand + markingCategory: RightLeg speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian] sprites: - sprite: Mobs/Customization/cyberlimbs/hesphiastos/hesphiastos_main.rsi diff --git a/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/xion.yml b/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/xion.yml index b5254df5f5..84b630b788 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/xion.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/xion.yml @@ -68,7 +68,7 @@ - type: marking id: CyberLimbsMarkingXionLFoot bodyPart: LFoot - markingCategory: RightFoot + markingCategory: LeftFoot speciesRestriction: [IPC] sprites: - sprite: Mobs/Customization/cyberlimbs/xion/xion_main.rsi diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index 6340cb888b..8a1183a527 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -63,12 +63,12 @@ locPrefix: silicon - type: UserInterface interfaces: - - key: enum.SiliconLawsUiKey.Key - type: SiliconLawBoundUserInterface - - key: enum.BorgUiKey.Key - type: BorgBoundUserInterface - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.SiliconLawsUiKey.Key: + type: SiliconLawBoundUserInterface + enum.BorgUiKey.Key: + type: BorgBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: ActivatableUI key: enum.BorgUiKey.Key - type: SiliconLawBound @@ -120,6 +120,7 @@ cell_slot: name: power-cell-slot-component-slot-name-default - type: Body + thermalVisibility: false # WD EDIT - type: StatusEffects allowed: - Stun @@ -129,11 +130,14 @@ proto: robot - type: Speech speechVerb: Robotic - speechSounds: Pai + speechSounds: Borg - type: Vocal sounds: Unsexed: UnisexSilicon - type: UnblockableSpeech + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepBorg - type: Construction graph: Cyborg containers: @@ -205,29 +209,47 @@ - type: StandingState - type: Tag tags: - - ShoesRequiredStepTriggerImmune - DoorBumpOpener + - FootstepSound - CanPilot - type: Emoting - type: GuideHelp guides: - Cyborgs + - type: StepTriggerImmune - type: Eye visMask: - PsionicInvisibility - Normal - type: LanguageKnowledge speaks: - - GalacticCommon + - TauCetiBasic - RobotTalk understands: - - GalacticCommon + - TauCetiBasic - RobotTalk - type: PsionicInsulation +- type: entity + abstract: true + id: BaseBorgTransponder + components: + - type: BorgTransponder + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: CyborgControl + transmitFrequencyId: RoboticsConsole + # explosion does most of its damage in the center and less at the edges + - type: Explosive + explosionType: Minibomb + totalIntensity: 30 + intensitySlope: 20 + maxIntensity: 20 + canCreateVacuum: false # its for killing the borg not the station + - type: entity id: BaseBorgChassisNT - parent: BaseBorgChassis + parent: [BaseBorgChassis, BaseBorgTransponder] abstract: true components: - type: NpcFactionMember @@ -239,30 +261,36 @@ - AllAccessBorg - type: AccessReader access: [["Command"], ["Research"]] - - type: ShowSecurityIcons + - type: ShowJobIcons + - type: ShowMindShieldIcons - type: entity id: BaseBorgChassisSyndicate parent: BaseBorgChassis abstract: true components: - - type: NpcFactionMember - factions: - - Syndicate - - type: Access - tags: - - NuclearOperative - - SyndicateAgent - - type: AccessReader - access: [["SyndicateAgent"], ["NuclearOperative"]] - - type: SiliconLawProvider - laws: SyndicateStatic - - type: IntrinsicRadioTransmitter - channels: - - Binary - - Syndicate - - type: ActiveRadio - channels: - - Syndicate - - type: ShowSyndicateIcons - - type: MovementAlwaysTouching + - type: NpcFactionMember + factions: + - Syndicate + - type: Access + tags: + - NuclearOperative + - SyndicateAgent + - type: AccessReader + access: [["SyndicateAgent"], ["NuclearOperative"]] + - type: SiliconLawProvider + laws: SyndicateStatic + - type: IntrinsicRadioTransmitter + channels: + - Binary + - Syndicate + - type: ActiveRadio + channels: + - Syndicate + - type: ShowSyndicateIcons + - type: MovementAlwaysTouching + - type: Speech + speechSounds: SyndieBorg + - type: Vocal + sounds: + Unsexed: UnisexSiliconSyndicate diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml index 5056fda4c0..e0dc4a0ad4 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml @@ -20,6 +20,11 @@ - BorgModuleGeneric hasMindState: robot_e noMindState: robot_e_r + - type: BorgTransponder + sprite: + sprite: Mobs/Silicon/chassis.rsi + state: robot + name: cyborg - type: Construction node: cyborg - type: Speech @@ -57,6 +62,11 @@ - BorgModuleCargo hasMindState: miner_e noMindState: miner_e_r + - type: BorgTransponder + sprite: + sprite: Mobs/Silicon/chassis.rsi + state: miner + name: salvage cyborg - type: Construction node: mining - type: IntrinsicRadioTransmitter @@ -100,6 +110,11 @@ - BorgModuleEngineering hasMindState: engineer_e noMindState: engineer_e_r + - type: BorgTransponder + sprite: + sprite: Mobs/Silicon/chassis.rsi + state: engineer + name: engineer cyborg - type: Construction node: engineer - type: IntrinsicRadioTransmitter @@ -153,6 +168,11 @@ - BorgModuleJanitor hasMindState: janitor_e noMindState: janitor_e_r + - type: BorgTransponder + sprite: + sprite: Mobs/Silicon/chassis.rsi + state: janitor + name: janitor cyborg - type: Construction node: janitor - type: IntrinsicRadioTransmitter @@ -206,6 +226,11 @@ - BorgModuleMedical hasMindState: medical_e noMindState: medical_e_r + - type: BorgTransponder + sprite: + sprite: Mobs/Silicon/chassis.rsi + state: medical + name: medical cyborg - type: Construction node: medical - type: IntrinsicRadioTransmitter @@ -224,11 +249,14 @@ access: [["Medical"], ["Command"], ["Research"]] - type: Inventory templateId: borgDutch + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepHoverBorg - type: FabricateActions actions: - ActionFabricateLollipop - ActionFabricateGumball - - type: SiliconLawProvider # Delta-V - Adds custom lawset for Medical cyborg + - type: SiliconLawProvider laws: Medical - type: entity @@ -255,6 +283,11 @@ - BorgModuleService hasMindState: service_e noMindState: service_e_r + - type: BorgTransponder + sprite: + sprite: Mobs/Silicon/chassis.rsi + state: service + name: service cyborg - type: Construction node: service - type: IntrinsicRadioTransmitter diff --git a/Resources/Prototypes/Entities/Mobs/Debugging/debug_counter.yml b/Resources/Prototypes/Entities/Mobs/Debugging/debug_counter.yml new file mode 100644 index 0000000000..05707c7151 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Debugging/debug_counter.yml @@ -0,0 +1,53 @@ +- type: entity + parent: MobHuman + id: MobDebugCounter + name: debug counter + description: He can count + suffix: AI, DEBUG + components: + - type: HTN + rootTask: + task: DebugCounterCompound + blackboard: + MinimumIdleTime: !type:Single + 0.5 + MaximumIdleTime: !type:Single + 0.5 + Count: !type:Single + 0 + +- type: entity + parent: MobHuman + id: MobDebugRandomCounter + name: debug random counter + description: He can randomize + suffix: AI, DEBUG + components: + - type: HTN + rootTask: + task: DebugRandomCounterCompound + blackboard: + MinimumIdleTime: !type:Single + 1 + MaximumIdleTime: !type:Single + 1 + Count: !type:Single + 0 + +- type: entity + parent: MobHuman + id: MobDebugRandomLess + name: debug random less + description: He can lessing + suffix: AI, DEBUG + components: + - type: HTN + rootTask: + task: DebugRandomLessCompound + blackboard: + MinimumIdleTime: !type:Single + 1 + MaximumIdleTime: !type:Single + 1 + Count: !type:Single + 0 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/Rslimes.yml b/Resources/Prototypes/Entities/Mobs/NPCs/Rslimes.yml new file mode 100644 index 0000000000..3512b51815 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/NPCs/Rslimes.yml @@ -0,0 +1,287 @@ +- type: entity + id: ReagentSlimeIchor + parent: ReagentSlime + suffix: Ichor + components: + - type: Bloodstream + bloodReagent: Ichor + - type: PointLight + color: "#f4692e" + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#f4692e" + +- type: entity + id: ReagentSlimeBleach + parent: ReagentSlime + suffix: Bleach + components: + - type: Bloodstream + bloodReagent: Bleach + - type: PointLight + color: "#a1000b" + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#a1000b" + +- type: entity + id: ReagentSlimeSoap + parent: ReagentSlime + suffix: Soap + components: + - type: Bloodstream + bloodReagent: SoapReagent + - type: PointLight + color: "#c8dfc9" + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#c8dfc9" + +- type: entity + id: ReagentSlimeSpacelube + parent: ReagentSlime + suffix: Spacelube + components: + - type: Bloodstream + bloodReagent: SpaceLube + - type: PointLight + color: "#77b58e" + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#77b58e" + +- type: entity + id: ReagentSlimeBuzzachloricbees + parent: ReagentSlime + suffix: Buzzachloricbees + components: + - type: Bloodstream + bloodReagent: BuzzochloricBees + - type: PointLight + color: "#FFD35D" + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#FFD35D" + +- type: entity + id: ReagentSlimeWehjuice + parent: ReagentSlime + suffix: Wehjuice + components: + - type: Bloodstream + bloodReagent: JuiceThatMakesYouWeh + - type: PointLight + color: "#59b23a" + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#59b23a" + +- type: entity + id: ReagentCognizine + parent: ReagentSlime + suffix: Cognizine + components: + - type: Bloodstream + bloodReagent: Cognizine + - type: PointLight + color: "#b50ee8" + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#b50ee8" + +- type: entity + id: ReagentSlimeNecrosol + parent: ReagentSlime + suffix: Necrosol + components: + - type: Bloodstream + bloodReagent: Necrosol + - type: PointLight + color: "#86a5bd" + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#86a5bd" + +- type: entity + id: ReagentSlimeSpaceDrugs + parent: ReagentSlime + suffix: SpaceDrugs + components: + - type: Bloodstream + bloodReagent: SpaceDrugs + - type: PointLight + color: "#63806e" + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#63806e" + +- type: entity + id: ReagentSlimeUnstableMutagen + parent: ReagentSlime + suffix: UnstableMutagen + components: + - type: Bloodstream + bloodReagent: UnstableMutagen + - type: PointLight + color: "#00ff5f" + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#00ff5f" + +- type: entity + id: ReagentSlimeLead + parent: ReagentSlime + suffix: Lead + components: + - type: Bloodstream + bloodReagent: Lead + - type: PointLight + color: "#5C6274" + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#5C6274" + +- type: entity + id: ReagentSlimechlorinetriflouride + parent: ReagentSlime + suffix: chlorinetriflouride + components: + - type: Bloodstream + bloodReagent: ChlorineTrifluoride + - type: PointLight + color: "#FFC8C8" + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#FFC8C8" + +- type: entity + id: ReagentSlimePotassium + parent: ReagentSlime + suffix: Potassium + components: + - type: Bloodstream + bloodReagent: Potassium + - type: PointLight + color: "#c6c8cc" + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#c6c8cc" + +- type: entity + id: reagentslimeVents + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + startAnnouncement: true + earliestStart: 20 + reoccurrenceDelay: 12 + minimumPlayers: 30 + weight: 6 # Really weak compared to other critters + duration: 60 + - type: VentCrittersRule + entries: + - id: ReagentSlimeBeer + prob: 0.003 + - id: ReagentSlimePax + prob: 0.001 + - id: ReagentSlimeNocturine + prob: 0.001 + - id: ReagentSlimeTHC + prob: 0.002 + - id: ReagentSlimeBicaridine + prob: 0.002 + - id: ReagentSlimeToxin + prob: 0.002 + - id: ReagentSlimeNapalm + prob: 0.002 + - id: ReagentSlimeOmnizine + prob: 0.003 + - id: ReagentSlimeMuteToxin + prob: 0.002 + - id: ReagentSlimeNorepinephricAcid + prob: 0.002 + - id: ReagentSlimeEphedrine + prob: 0.002 + - id: ReagentSlimeRobustHarvest + prob: 0.003 + - id: ReagentSlimeIchor + prob: 0.002 + - id: ReagentSlimeBleach + prob: 0.002 + - id: ReagentSlimeSoap + prob: 0.002 + - id: ReagentSlimeSpacelube + prob: 0.002 + - id: ReagentSlimeBuzzachloricbees + prob: 0.002 + - id: ReagentSlimeWehjuice + prob: 0.003 + - id: ReagentCognizine + prob: 0.003 + - id: ReagentSlimeNecrosol + prob: 0.002 + - id: ReagentSlimeSpaceDrugs + prob: 0.003 + - id: ReagentSlimeUnstableMutagen + prob: 0.001 + - id: ReagentSlimeLead + prob: 0.001 + - id: ReagentSlimechlorinetriflouride + prob: 0.002 + - id: ReagentSlimePotassium + prob: 0.002 + - id: ReagentSlimeLotophagoiOil + prob: 0.001 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index eed2b8a58a..8dd348f47e 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -17,6 +17,7 @@ - type: Speech speechSounds: Squeak speechVerb: SmallMob + allowedEmotes: ['Squeak'] - type: Fixtures fixtures: fix1: @@ -66,6 +67,9 @@ tags: - VimPilot - type: RandomBark + barkType: mouse + minTime: 10 # Mice like to squeak, I think. You can always put your pet mouse to sleep if it gets annoying + maxTime: 160 - type: entity name: bee @@ -135,11 +139,7 @@ Quantity: 5 - type: ZombieImmune - type: RandomBark - barks: - - Bzzzzz - - Bzzz bzzz - - Bzzzzzzzzzzzz - - Bzz + barkType: bee barkMultiplier: 1.5 - type: entity @@ -254,6 +254,7 @@ factions: - Passive - type: RandomBark + barkType: chicken - type: entity parent: MobChicken @@ -457,7 +458,10 @@ - type: GhostTakeoverAvailable - type: Speech speechVerb: Moth - speechSounds: Chitter # Delta-V - Eep! + speechSounds: Chitter + allowedEmotes: ['Chitter', 'Squeak'] + - type: FaxableObject + insertingState: inserting_mothroach - type: MothAccent - type: Sprite sprite: Mobs/Animals/mothroach.rsi @@ -641,6 +645,7 @@ factions: - Passive - type: RandomBark + barkType: chicken # Duh barkMultiplier: 0.7 - type: entity @@ -821,13 +826,7 @@ guides: - Chef - type: RandomBark - barks: - - Mooooooo - - Moo - - Huff - - Mooooooooooo - - Moooooo - - Moooo + barkType: cow barkMultiplier: 3 @@ -867,6 +866,7 @@ - type: Speech speechVerb: Arachnid speechSounds: Arachnid + allowedEmotes: ['Click', 'Chitter'] - type: DamageStateVisuals states: Alive: @@ -901,11 +901,7 @@ - type: Body prototype: AnimalHemocyanin - type: RandomBark - barks: - - click clack - - clack - - clickity clack - - clack clack + barkType: crab - type: entity name: goat @@ -1143,8 +1139,8 @@ - id: FoodMeat - type: UserInterface interfaces: - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: DamageStateVisuals states: Alive: @@ -1216,6 +1212,8 @@ templateId: monkey speciesId: monkey - type: InventorySlots + - type: Deathgasp + prototype: MonkeyDeathgasp - type: Cuffable - type: RotationVisuals defaultRotation: 90 @@ -1235,8 +1233,8 @@ - type: Strippable - type: UserInterface interfaces: - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: Sprite drawdepth: Mobs layers: @@ -1370,7 +1368,7 @@ understands: - Monkey - Kobold - - GalacticCommon + - TauCetiBasic - type: NpcFactionMember factions: - Syndicate @@ -1379,6 +1377,8 @@ makeSentient: true name: ghost-role-information-monkey-name description: ghost-role-information-monkey-description + raffle: + settings: default - type: GhostTakeoverAvailable - type: Loadout prototypes: [SyndicateOperativeGearMonkey] @@ -1402,9 +1402,10 @@ - type: entity name: kobold - id: MobKobold + id: MobBaseKobold parent: MobBaseAncestor description: Cousins to the sentient race of lizard people, kobolds blend in with their natural habitat and are as nasty as monkeys; ready to pull out your hair and stab you to death. + abstract: true components: - type: NameIdentifier group: Kobold @@ -1420,9 +1421,9 @@ speechVerb: Reptilian - type: Vocal sounds: - Male: UnisexReptilian - Female: UnisexReptilian - Unsexed: UnisexReptilian + Male: MaleReptilian + Female: FemaleReptilian + Unsexed: MaleReptilian - type: TypingIndicator proto: lizard - type: InteractionPopup @@ -1502,15 +1503,6 @@ spawned: - id: FoodMeat amount: 2 - - type: Clumsy - clumsyDamage: - types: - Blunt: 2 - Piercing: 7 - groups: - Burn: 3 - clumsySound: - path: /Audio/Voice/Reptilian/reptilian_scream.ogg - type: AlwaysRevolutionaryConvertible - type: GhostTakeoverAvailable - type: SentienceTarget @@ -1522,6 +1514,56 @@ description: ghost-role-information-kobold-description - type: RandomBark barkMultiplier: 0.65 + barkType: kobold + +- type: entity + name: kobold + id: MobKobold + parent: MobBaseKobold + description: Cousins to the sentient race of lizard people, kobolds blend in with their natural habitat and are as nasty as monkeys; ready to pull out your hair and stab you to death. + components: + - type: Clumsy + clumsyDamage: + types: + Blunt: 2 + Piercing: 7 + groups: + Burn: 3 + clumsySound: + path: /Audio/Voice/Reptilian/reptilian_scream.ogg + +- type: entity + id: MobBaseSyndicateKobold + parent: MobBaseKobold + suffix: syndicate base + components: + - type: MobThresholds + thresholds: + 0: Alive + 75: Critical + 200: Dead + - type: NpcFactionMember + factions: + - Syndicate + - type: Loadout + prototypes: [SyndicateOperativeGearMonkey] + +- type: entity + id: MobKoboldSyndicateAgent + parent: MobBaseSyndicateKobold + suffix: syndicate agent + components: + # make the player a traitor once its taken + - type: AutoTraitor + giveUplink: false + giveObjectives: false + +- type: entity + id: MobKoboldSyndicateAgentNukeops # Reinforcement exclusive to nukeops uplink + parent: MobBaseSyndicateKobold + suffix: NukeOps + components: + - type: NukeOperative - type: entity name: guidebook monkey @@ -1550,6 +1592,7 @@ - type: Speech speechSounds: Squeak speechVerb: SmallMob + allowedEmotes: ['Squeak'] - type: Sprite drawdepth: SmallMobs sprite: Mobs/Animals/mouse.rsi @@ -1578,6 +1621,8 @@ rootTask: task: MouseCompound - type: Physics + - type: FaxableObject + insertingState: inserting_mouse - type: Fixtures fixtures: fix1: @@ -1686,13 +1731,14 @@ - type: PreventSpiller - type: RandomBark barkMultiplier: 0.3 + barkType: mouse - type: FireVisuals sprite: Mobs/Effects/onfire.rsi normalState: Mouse_burning - - type: StepTriggerImmune # WD EDIT START + - type: StepTriggerImmune whitelist: types: - - Landmine # END + - Landmine - type: entity parent: MobMouse @@ -1934,16 +1980,6 @@ - VimPilot - type: RandomBark barkMultiplier: 1.3 - barks: - - Croooaaaakkk - - Ribbit - - Ribbit - - Ribbit - - Crooaak - - Ribbit - - Ribbit - - Ribbit - - Bibbit # Would be cool to have some functionality for the parrot to be able to sit on stuff - type: entity @@ -2002,9 +2038,9 @@ bloodMaxVolume: 50 - type: LanguageKnowledge speaks: - - GalacticCommon + - TauCetiBasic understands: - - GalacticCommon + - TauCetiBasic - type: entity name: penguin @@ -2066,8 +2102,7 @@ types: Heat : 0.2 #per second, scales with temperature & other constants - type: RandomBark - barks: - - Wank + barkType: penguin barkMultiplier: 0.6 - type: entity @@ -2186,13 +2221,9 @@ damageContainer: Biological damageModifierSet: Scale - type: RandomBark - barkMultiplier: 1.5 - barks: - - Hsssssss - - Hss - - Hsssss - - Hisss - - Hshsss + minTime: 10 + maxTime: 50 # It's a sssnake... + barkType: hissing # Code unique spider prototypes or combine them all into one spider and get a # random sprite state when you spawn it. @@ -2246,6 +2277,7 @@ 0: Alive 90: Dead - type: MeleeWeapon + altDisarm: false angle: 0 animation: WeaponArcBite soundHit: @@ -2287,6 +2319,7 @@ - type: Speech speechVerb: Arachnid speechSounds: Arachnid + allowedEmotes: ['Click', 'Chitter'] - type: Vocal sounds: Male: UnisexArachnid @@ -2322,6 +2355,11 @@ Brute: -0.07 Burn: -0.07 - type: RandomBark + barkType: hissing + barkMultiplier: 0.3 + - type: BloodSucker + webRequired: true + - type: Cocooner - type: entity name: tarantula @@ -2341,7 +2379,9 @@ makeSentient: true name: ghost-role-information-giant-spider-name description: ghost-role-information-giant-spider-description - rules: deltav-ghost-role-information-softantag-rules #DeltaV + rules: deltav-ghost-role-information-softantag-rules + raffle: + settings: short - type: GhostTakeoverAvailable - type: entity @@ -2373,6 +2413,7 @@ - type: Spider webPrototype: SpiderWebClown - type: MeleeWeapon + altDisarm: false angle: 0 animation: WeaponArcBite soundHit: @@ -2389,6 +2430,18 @@ bloodMaxVolume: 150 bloodReagent: Laughter +- type: entity + name: wizard spider + parent: MobGiantSpider + id: MobGiantSpiderWizard + description: This spider looks a little magical + suffix: Wizard + components: + - type: Accentless + removes: + - type: ReplacementAccent + accent: xeno #let this wizard speak + - type: entity name: possum parent: SimpleMobBase @@ -2421,8 +2474,8 @@ - type: Strippable - type: UserInterface interfaces: - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: DamageStateVisuals states: Alive: @@ -2450,7 +2503,8 @@ - Hissing understands: - Hissing - + - type: RandomBark + barkType: possum - type: entity name: possum @@ -2503,8 +2557,8 @@ - type: Strippable - type: UserInterface interfaces: - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: DamageStateVisuals states: Alive: @@ -2533,6 +2587,8 @@ - Hissing understands: - Hissing + - type: RandomBark + barkType: raccoon - type: entity name: fox @@ -2573,8 +2629,8 @@ - type: Strippable - type: UserInterface interfaces: - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: DamageStateVisuals states: Alive: @@ -2591,7 +2647,7 @@ interactFailureString: petting-failure-generic interactSuccessSpawn: EffectHearts interactSuccessSound: - path: /Audio/Animals/fox_squeak.ogg + collection: Fox - type: Grammar attributes: gender: epicene @@ -2621,6 +2677,9 @@ - Fox understands: - Fox + - type: RandomBark + barkType: fox + barkMultiplier: 0.5 # Talkative <3 - type: entity name: corgi @@ -2656,8 +2715,8 @@ - type: Strippable - type: UserInterface interfaces: - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: DamageStateVisuals states: Alive: @@ -2690,6 +2749,7 @@ tags: - VimPilot - type: RandomBark + barkType: dog - type: entity name: corrupted corgi @@ -2811,8 +2871,8 @@ - type: Strippable - type: UserInterface interfaces: - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: DamageStateVisuals states: Alive: @@ -2839,6 +2899,11 @@ interactSuccessSound: path: /Audio/Animals/cat_meow.ogg - type: MeleeWeapon + altDisarm: false + angle: 0 + animation: WeaponArcBite + soundHit: + path: /Audio/Effects/bite.ogg damage: types: Piercing: 5 @@ -2851,6 +2916,7 @@ tags: - VimPilot - type: RandomBark + barkType: cat - type: entity name: calico cat @@ -2891,19 +2957,34 @@ allowMovement: true description: ghost-role-information-SyndiCat-description rules: ghost-role-information-SyndiCat-rules + raffle: + settings: default - type: GhostTakeoverAvailable - type: AutoImplant implants: - MicroBombImplant + - type: ExplosionResistance + damageCoefficient: 0.2 - type: NpcFactionMember factions: - Syndicate + - type: MeleeWeapon + altDisarm: false + angle: 0 + animation: WeaponArcBite + soundHit: + path: /Audio/Effects/bite.ogg + damage: + types: + Slash: 6 + Piercing: 6 + Structural: 15 - type: LanguageKnowledge speaks: - - Cat + - Cat understands: - Cat - - GalacticCommon + - TauCetiBasic - type: entity name: space cat @@ -2924,7 +3005,13 @@ - type: Temperature heatDamageThreshold: 423 coldDamageThreshold: 0 + - type: Tag + tags: + - DoorBumpOpener + - type: MovementAlwaysTouching - type: PressureImmunity + - type: StepTriggerImmune + - type: Insulated - type: InteractionPopup successChance: 0.7 interactSuccessString: petting-success-space-cat @@ -3045,8 +3132,8 @@ - type: Strippable - type: UserInterface interfaces: - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: DamageStateVisuals states: Alive: @@ -3070,10 +3157,6 @@ - type: Tag tags: - VimPilot - - type: RandomBark - barkMultiplier: 10 - barks: - - Sloth - type: LanguageKnowledge # WHAT DOES THE SLOTH SAY??????? speaks: - Hissing @@ -3112,8 +3195,8 @@ - type: Strippable - type: UserInterface interfaces: - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: DamageStateVisuals states: Alive: @@ -3160,6 +3243,7 @@ - type: Speech speechVerb: SmallMob speechSounds: Squeak + allowedEmotes: ['Squeak'] - type: Sprite drawdepth: SmallMobs sprite: Mobs/Animals/hamster.rsi @@ -3176,6 +3260,8 @@ - type: Item size: Tiny - type: Physics + - type: FaxableObject + insertingState: inserting_hamster - type: Fixtures fixtures: fix1: @@ -3210,8 +3296,8 @@ - type: Strippable - type: UserInterface interfaces: - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: DamageStateVisuals states: Alive: @@ -3286,6 +3372,7 @@ - type: NonSpreaderZombie - type: RandomBark barkMultiplier: 0.45 + barkType: mouse # duh - type: FireVisuals sprite: Mobs/Effects/onfire.rsi normalState: Mouse_burning @@ -3333,8 +3420,8 @@ - type: Strippable - type: UserInterface interfaces: - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: DamageStateVisuals states: Alive: @@ -3401,8 +3488,8 @@ bloodMaxVolume: 60 - type: UserInterface interfaces: - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: DamageStateVisuals states: Alive: @@ -3450,7 +3537,7 @@ speaks: - RootSpeak understands: - - GalacticCommon + - TauCetiBasic - RootSpeak - type: entity @@ -3460,4 +3547,4 @@ components: - type: ReplacementAccent accent: nymph - - type: RandomBark + - type: RandomBark # Using the default barks since they aren't going to talk anyway diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/behonker.yml b/Resources/Prototypes/Entities/Mobs/NPCs/behonker.yml index 8a10337c94..07ee6b1536 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/behonker.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/behonker.yml @@ -10,6 +10,8 @@ makeSentient: true name: ghost-role-information-behonker-name description: ghost-role-information-behonker-description + raffle: + settings: default - type: GhostTakeoverAvailable - type: HTN rootTask: @@ -76,8 +78,8 @@ - id: BikeHorn - type: UserInterface interfaces: - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: MobThresholds thresholds: 0: Alive diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml index 787f8ae542..2778bf1278 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml @@ -164,6 +164,8 @@ makeSentient: true name: ghost-role-information-sentient-carp-name description: ghost-role-information-sentient-carp-description + raffle: + settings: short - type: GhostTakeoverAvailable - type: HTN rootTask: diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/dogs.yml b/Resources/Prototypes/Entities/Mobs/NPCs/dogs.yml index 22da758372..a0c19569bb 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/dogs.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/dogs.yml @@ -43,8 +43,8 @@ - type: Strippable - type: UserInterface interfaces: - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: DamageStateVisuals states: Alive: @@ -65,7 +65,6 @@ interactFailureString: petting-failure-pibble interactSuccessSound: path: /Audio/Animals/small_dog_bark_happy.ogg - hostileOnFail: true - type: DogVision - type: NpcFactionMember factions: @@ -89,7 +88,7 @@ - Dog understands: - Dog - - GalacticCommon + - TauCetiBasic - type: entity parent: MobPibble diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml b/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml index 11c6f926ba..94ba7ec418 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml @@ -44,7 +44,6 @@ - type: Tag tags: - DoorBumpOpener - - ShoesRequiredStepTriggerImmune - type: MobState allowedStates: - Alive @@ -73,6 +72,8 @@ - type: InputMover - type: MobMover - type: ZombieImmune + - type: ClothingRequiredStepTriggerImmune + slots: All - type: entity abstract: true @@ -236,6 +237,8 @@ - type: GhostRole prob: 0 description: ghost-role-information-angry-slimes-description + raffle: + settings: short - type: NpcFactionMember factions: - SimpleHostile @@ -257,13 +260,13 @@ - type: MobThresholds thresholds: 0: Alive - 150: Dead + 50: Dead - type: SlowOnDamage speedModifierThresholds: - 50: 0.4 + 20: 0.4 - type: Bloodstream bloodReagent: Water - chemicalMaxVolume: 100 + chemicalMaxVolume: 50 - type: StatusEffects allowed: - SlowedDown @@ -274,10 +277,10 @@ animation: WeaponArcBite damage: types: - Slash: 8 + Slash: 3 - type: MeleeChemicalInjector solution: bloodstream - transferAmount: 5 + transferAmount: 2 - type: DamageStateVisuals rotate: true states: @@ -329,6 +332,19 @@ - ReagentSlimeNorepinephricAcid - ReagentSlimeEphedrine - ReagentSlimeRobustHarvest + - ReagentSlimeIchor + - ReagentSlimeBleach + - ReagentSlimeSoap + - ReagentSlimeSpacelube + - ReagentSlimeBuzzachloricbees + - ReagentSlimeWehjuice + - ReagentCognizine + - ReagentSlimeNecrosol + - ReagentSlimeSpaceDrugs + - ReagentSlimeUnstableMutagen + - ReagentSlimeLead + - ReagentSlimechlorinetriflouride + - ReagentSlimePotassium - ReagentSlimeLotophagoiOil chance: 1 @@ -560,4 +576,4 @@ color: "#3e901c" - type: GhostRole prob: 1 #it's significantly more psionic than the others - description: ghost-role-information-angry-slimes-description \ No newline at end of file + description: ghost-role-information-angry-slimes-description diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/hellspawn.yml b/Resources/Prototypes/Entities/Mobs/NPCs/hellspawn.yml index 5511c40baa..74658f0a2d 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/hellspawn.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/hellspawn.yml @@ -12,6 +12,8 @@ makeSentient: true name: ghost-role-information-hellspawn-name description: ghost-role-information-hellspawn-description + raffle: + settings: default - type: RotationVisuals defaultRotation: 90 horizontalRotation: 90 @@ -53,6 +55,7 @@ - type: Perishable - type: Reflect reflectProb: 0.7 + innate: true reflects: - Energy - type: Fixtures diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml b/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml index ce2ca9e731..c3a92d3ebc 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml @@ -1,3 +1,4 @@ +# TODO: Pending a rewrite of Mob Replacement System, this entire list should just be moved into a ComponentRegistry on the event. - type: entity name: Mimic id: MobMimic @@ -43,4 +44,3 @@ damage: types: Blunt: 20 - - type: PsionicInsulation diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml index 6eb43fb89a..420e7ed50d 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml @@ -40,7 +40,7 @@ speaks: - Dog understands: - - GalacticCommon + - TauCetiBasic - Dog - type: entity @@ -131,7 +131,7 @@ speaks: - Cat understands: - - GalacticCommon + - TauCetiBasic - Cat - type: entity @@ -155,7 +155,7 @@ speaks: - Cat understands: - - GalacticCommon + - TauCetiBasic - Cat - type: entity @@ -229,8 +229,8 @@ - type: Strippable - type: UserInterface interfaces: - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: DamageStateVisuals states: Alive: @@ -292,8 +292,8 @@ - type: Strippable - type: UserInterface interfaces: - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: DamageStateVisuals states: Alive: @@ -310,7 +310,7 @@ speaks: - Dog understands: - - GalacticCommon + - TauCetiBasic - Dog - type: InteractionPopup successChance: 0.5 @@ -330,6 +330,7 @@ - type: StealTarget stealGroup: AnimalMcGriff - type: RandomBark + barkType: dog barkMultiplier: 1.3 - type: entity @@ -397,8 +398,8 @@ - type: Strippable - type: UserInterface interfaces: - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: DamageStateVisuals states: Alive: @@ -415,7 +416,7 @@ speaks: - Dog understands: - - GalacticCommon + - TauCetiBasic - Dog - type: InteractionPopup successChance: 0.7 @@ -435,6 +436,7 @@ - type: StealTarget stealGroup: AnimalWalter - type: RandomBark + barkType: dog barkMultiplier: 1.1 - type: entity @@ -559,7 +561,7 @@ interactFailureString: petting-failure-generic interactSuccessSpawn: EffectHearts interactSuccessSound: - path: /Audio/Animals/fox_squeak.ogg + collection: Fox - type: Butcherable spawned: - id: FoodMeat @@ -580,7 +582,7 @@ speaks: - Fox understands: - - GalacticCommon + - TauCetiBasic - Fox - type: entity @@ -633,7 +635,7 @@ speaks: - Mouse understands: - - GalacticCommon + - TauCetiBasic - Mouse - type: entity @@ -795,6 +797,9 @@ types: Blunt: 1 Caustic: 1 + - type: MultiHandedItem + - type: Item + size: Huge - type: SentienceTarget flavorKind: station-event-random-sentience-flavor-slime - type: MobPrice @@ -811,7 +816,7 @@ speaks: - Bubblish understands: - - GalacticCommon + - TauCetiBasic - Bubblish - type: entity @@ -851,7 +856,7 @@ speaks: - Monkey understands: - - GalacticCommon + - TauCetiBasic - Monkey - Kobold @@ -885,5 +890,5 @@ speaks: - Crab understands: - - GalacticCommon + - TauCetiBasic - Crab diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml index cf563989bf..f6a42dfb76 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml @@ -90,6 +90,8 @@ name: ghost-role-information-rat-king-name description: ghost-role-information-rat-king-description rules: ghost-role-information-rat-king-rules + raffle: + settings: default - type: GhostTakeoverAvailable - type: Tag tags: @@ -120,10 +122,10 @@ gender: male - type: LanguageKnowledge speaks: - - GalacticCommon + - TauCetiBasic - Mouse understands: - - GalacticCommon + - TauCetiBasic - Mouse - type: entity @@ -301,7 +303,7 @@ speaks: - Mouse understands: - - GalacticCommon + - TauCetiBasic - Mouse - type: FireVisuals sprite: Mobs/Effects/onfire.rsi diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml index 47ce0f9d49..c16816b5e4 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml @@ -60,6 +60,8 @@ name: ghost-role-information-revenant-name description: ghost-role-information-revenant-description rules: ghost-role-information-revenant-rules + raffle: + settings: default - type: GhostTakeoverAvailable - type: Revenant malfunctionWhitelist: @@ -79,8 +81,8 @@ softness: 1 - type: UserInterface interfaces: - - key: enum.StoreUiKey.Key - type: StoreBoundUserInterface + enum.StoreUiKey.Key: + type: StoreBoundUserInterface - type: Visibility layer: 2 #ghost vis layer - type: Store diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index 90d9a5e5c9..2fea60ea1e 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -61,11 +61,11 @@ group: GenericNumber - type: Repairable doAfterDelay: 8 + fuelCost: 15 - type: Pullable - type: Tag tags: - DoorBumpOpener - - ShoesRequiredStepTriggerImmune - type: MobState allowedStates: - Alive @@ -106,12 +106,13 @@ - type: TypingIndicator proto: robot - type: ZombieImmune + - type: StepTriggerImmune - type: LanguageKnowledge speaks: - - GalacticCommon + - TauCetiBasic - RobotTalk understands: - - GalacticCommon + - TauCetiBasic - RobotTalk - type: PsionicInsulation @@ -164,6 +165,8 @@ makeSentient: true name: ghost-role-information-honkbot-name description: ghost-role-information-honkbot-description + raffle: + settings: default - type: GhostTakeoverAvailable - type: InteractionPopup interactSuccessString: petting-success-honkbot @@ -189,6 +192,8 @@ makeSentient: true name: ghost-role-information-jonkbot-name description: ghost-role-information-jonkbot-description + raffle: + settings: default - type: InteractionPopup interactSuccessSound: path: /Audio/Items/brokenbikehorn.ogg @@ -310,8 +315,8 @@ - type: Strippable - type: UserInterface interfaces: - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: Sprite layers: - map: ["enum.DamageStateVisualLayers.Base"] @@ -325,9 +330,69 @@ makeSentient: true name: ghost-role-information-mimebot-name description: ghost-role-information-mimebot-description + raffle: + settings: default - type: GhostTakeoverAvailable - type: InteractionPopup interactSuccessString: petting-success-mimebot interactFailureString: petting-failure-mimebot - type: Inventory templateId: head + +- type: entity + parent: MobSiliconBase + id: MobSupplyBot + name: supplybot + description: Delivers cargo! + components: + - type: Sprite + sprite: Mobs/Silicon/Bots/supplybot.rsi + layers: + - state: supplybot + - type: GhostRole + makeSentient: true + name: ghost-role-information-supplybot-name + description: ghost-role-information-supplybot-description + raffle: + settings: default + - type: GhostTakeoverAvailable + - type: Construction + graph: SupplyBot + node: bot + - type: Access + tags: + - Cargo + - Maintenance + - Salvage + - type: Dumpable + - type: Storage + maxItemSize: Huge + grid: + - 0,0,9,3 + - type: UserInterface + interfaces: + enum.StorageUiKey.Key: + type: StorageBoundUserInterface + - type: ContainerContainer + containers: + storagebase: !type:Container + ents: [] + - type: UnpoweredFlashlight + - type: PointLight + enabled: false + radius: 3.5 + softness: 2 + mask: /Textures/Effects/LightMasks/cone.png + autoRot: true + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepBorg + - type: Tag + tags: + - DoorBumpOpener + - FootstepSound + - type: ActiveRadio + channels: + - Binary + - Common + - Supply diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml index fbf133a0f1..74bba2dec8 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml @@ -1,16 +1,10 @@ - type: entity name: basic slime - id: MobAdultSlimes + id: BaseMobAdultSlimes parent: [ SimpleMobBase, MobCombat ] abstract: true description: It looks so much like jelly. I wonder what it tastes like? components: - - type: NpcFactionMember - factions: - - SimpleNeutral - - type: HTN - rootTask: - task: SimpleHostileCompound - type: Sprite drawdepth: Mobs sprite: Mobs/Aliens/slimes.rsi @@ -44,6 +38,7 @@ - type: Tag tags: - FootstepSound + - DoorBumpOpener - type: Butcherable butcheringType: Knife spawned: @@ -99,6 +94,7 @@ prototype: Slimes requiredLegs: 1 - type: MeleeWeapon + altDisarm: false soundHit: path: /Audio/Weapons/punch3.ogg angle: 0 @@ -112,6 +108,19 @@ successChance: 0.5 interactSuccessString: petting-success-slimes interactFailureString: petting-failure-generic + - type: Speech + speechVerb: Slime + speechSounds: Slime + - type: TypingIndicator + proto: slime + +- type: entity + name: basic slime + id: MobAdultSlimes + parent: BaseMobAdultSlimes + abstract: true + description: It looks so much like jelly. I wonder what it tastes like? + components: - type: LanguageKnowledge speaks: - Bubblish @@ -122,12 +131,54 @@ makeSentient: true name: ghost-role-information-slimes-name description: ghost-role-information-slimes-description - rules: deltav-ghost-role-information-softantag-rules #DeltaV + rules: deltav-ghost-role-information-softantag-rules - type: Speech speechVerb: Slime speechSounds: Slime + allowedEmotes: ['Squish'] - type: TypingIndicator proto: slime + - type: NpcFactionMember + factions: + - SimpleNeutral + - type: HTN + rootTask: + task: SimpleHostileCompound + +- type: entity + name: geras + description: A geras of a slime - the name is ironic, isn't it? + id: MobSlimesGeras + parent: BaseMobAdultSlimes + noSpawn: true + components: + # they portable... + - type: MovementSpeedModifier + baseWalkSpeed: 3 + baseSprintSpeed: 5 # +.5 from normal movement speed + - type: MobThresholds + thresholds: + 0: Alive + 80: Dead # weak af tho + - type: NpcFactionMember + factions: + - NanoTrasen + - type: MultiHandedItem + - type: Item + size: Huge + - type: Sprite + color: "#FFFFFF55" + - type: MeleeWeapon + attackRate: 2 + damage: + types: + Blunt: 4 + - type: DamageStateVisuals + states: + Alive: + Base: blue_adult_slime + Dead: + Base: blue_adult_slime_dead - type: entity name: blue slime @@ -150,8 +201,6 @@ - type: NpcFactionMember factions: - SimpleHostile -# - type: GhostRole #DeltaV - all slimes neutral when ghost role -# description: ghost-role-information-angry-slimes-description - type: entity name: green slime diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml index adf3af93ea..4ea766c314 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml @@ -174,8 +174,8 @@ - type: Strippable - type: UserInterface interfaces: - - key: enum.StrippingUiKey.Key - type: StrippableBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: entity id: MobKangarooSpaceSalvage @@ -269,6 +269,7 @@ - type: Speech speechVerb: Arachnid speechSounds: Arachnid + allowedEmotes: ['Click', 'Chitter'] - type: Vocal sounds: Male: UnisexArachnid @@ -276,6 +277,9 @@ Unsexed: UnisexArachnid - type: TypingIndicator proto: spider + - type: BloodSucker + webRequired: true + - type: Cocooner - type: entity id: MobSpiderSpaceSalvage diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml index d618e40713..04b767b8ae 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml @@ -58,13 +58,18 @@ layer: - MobLayer - type: MobState - allowedStates: - - Alive - - Dead + - type: Deathgasp + - type: MobStateActions + actions: + Critical: + - ActionCritSuccumb + - ActionCritFakeDeath + - ActionCritLastWords - type: MobThresholds thresholds: 0: Alive - 50: Dead + 50: Critical + 100: Dead - type: SlowOnDamage speedModifierThresholds: 25: 0.5 @@ -92,19 +97,22 @@ Dead: Base: dead - type: Puller + needsHands: false - type: Butcherable butcheringType: Spike spawned: - id: FoodMeatXeno amount: 5 - #- type: GhostRole # Delta V - Moves ghost role from parent to child - # allowMovement: true # Delta V - Moves ghost role from parent to child - # allowSpeech: true # Delta V - Moves ghost role from parent to child - # makeSentient: true # Delta V - Moves ghost role from parent to child - # name: ghost-role-information-xeno-name # Delta V - Moves ghost role from parent to child - # description: ghost-role-information-xeno-description # Delta V - Moves ghost role from parent to child - # rules: ghost-role-information-xeno-rules # Delta V - Moves ghost role from parent to child - # - type: GhostTakeoverAvailable # Delta V - Moves ghost role from parent to child + - type: GhostRole + allowMovement: true + allowSpeech: true + makeSentient: true + name: ghost-role-information-xeno-name + description: ghost-role-information-xeno-description + rules: ghost-role-information-xeno-rules + raffle: + settings: default + - type: GhostTakeoverAvailable - type: TypingIndicator proto: alien - type: Temperature @@ -121,8 +129,11 @@ molsPerSecondPerUnitMass: 0.0005 - type: Speech speechVerb: LargeMob - - type: Psionic #Nyano - Summary: makes psionic by default. + - type: Psionic removable: false + - type: InnatePsionicPowers + powersToAdd: + - TelepathyPower - type: LanguageKnowledge speaks: - Xeno @@ -144,7 +155,8 @@ - type: MobThresholds thresholds: 0: Alive - 100: Dead + 100: Critical + 150: Dead - type: Stamina critThreshold: 300 - type: SlowOnDamage @@ -177,7 +189,8 @@ - type: MobThresholds thresholds: 0: Alive - 80: Dead + 80: Critical + 130: Dead - type: SlowOnDamage speedModifierThresholds: 40: 0.7 @@ -214,7 +227,8 @@ - type: MobThresholds thresholds: 0: Alive - 300: Dead + 300: Critical + 350: Dead - type: SlowOnDamage speedModifierThresholds: 150: 0.7 @@ -239,10 +253,10 @@ - CannotSuicide - type: LanguageKnowledge speaks: - - GalacticCommon + - TauCetiBasic - Xeno understands: - - GalacticCommon + - TauCetiBasic - Xeno - type: entity @@ -260,7 +274,8 @@ - type: MobThresholds thresholds: 0: Alive - 100: Dead + 100: Critical + 150: Dead - type: MovementSpeedModifier baseSprintSpeed: 4 - type: MeleeWeapon @@ -299,7 +314,7 @@ - type: MeleeWeapon damage: groups: - Brute: 5 + Brute: 10 - type: Fixtures fixtures: fix1: @@ -321,6 +336,7 @@ drawdepth: Mobs sprite: Mobs/Aliens/Xenos/rouny.rsi offset: 0,0.6 + scale: 0.7, 0.7 - type: Butcherable butcheringType: Spike spawned: diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/xenopet.yml b/Resources/Prototypes/Entities/Mobs/NPCs/xenopet.yml new file mode 100644 index 0000000000..23108e521b --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/NPCs/xenopet.yml @@ -0,0 +1,534 @@ +- type: entity + name: Neutral Rouny + id: MobXenoNeutralRouny + parent: MobXenoRounyNPC + description: They mostly come at night. Mostly. + components: + - type: NpcFactionMember + factions: + - Passive + - type: PointLight + radius: 2 + energy: 1 + color: "#B85E5E" + - type: MovementAlwaysTouching + - type: GhostRole + name: ghost-role-information-friendlyxeno-name + description: ghost-role-information-friendlyxeno-description + rules: ghost-role-information-friendlyxeno-rules + - type: GhostTakeoverAvailable + - type: LanguageKnowledge + speaks: + - Xeno + understands: + - Xeno + - TauCetiBasic + +- type: entity + name: Neutral Praetorian + id: MobXenoNeutralPraetorian + parent: MobXenoPraetorianNPC + description: They mostly come at night. Mostly. + components: + - type: NpcFactionMember + factions: + - Passive + - type: PointLight + radius: 2 + energy: 1 + color: "#62B85E" + - type: GhostRole + name: ghost-role-information-friendlyxeno-name + description: ghost-role-information-friendlyxeno-description + rules: ghost-role-information-friendlyxeno-rules + - type: GhostTakeoverAvailable + - type: LanguageKnowledge + speaks: + - Xeno + understands: + - Xeno + - TauCetiBasic + +- type: entity + name: Neutral Drone + id: MobXenoNeutralDrone + parent: MobXenoDroneNPC + description: They mostly come at night. Mostly. + components: + - type: NpcFactionMember + factions: + - Passive + - type: PointLight + radius: 2 + energy: 1 + color: "#8B5EB8" + - type: GhostRole + name: ghost-role-information-friendlyxeno-name + description: ghost-role-information-friendlyxeno-description + rules: ghost-role-information-friendlyxeno-rules + - type: GhostTakeoverAvailable + - type: LanguageKnowledge + speaks: + - Xeno + understands: + - Xeno + - TauCetiBasic + +- type: entity + name: Neutral Ravager + id: MobXenoNeutralRavager + parent: MobXenoRavagerNPC + description: They mostly come at night. Mostly. + components: + - type: NpcFactionMember + factions: + - Passive + - type: PointLight + radius: 2 + energy: 1 + color: "#E3954D" + - type: GhostRole + name: ghost-role-information-friendlyxeno-name + description: ghost-role-information-friendlyxeno-description + rules: ghost-role-information-friendlyxeno-rules + - type: GhostTakeoverAvailable + - type: LanguageKnowledge + speaks: + - Xeno + understands: + - Xeno + - TauCetiBasic + +- type: inventoryTemplate + id: friendxeno + slots: + - name: id + slotTexture: id + slotFlags: IDCARD + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 2,1 + strippingWindowPos: 2,4 + displayName: ID + - name: head + slotTexture: head + slotFlags: HEAD + uiWindowPos: 1,2 + strippingWindowPos: 0,0 + displayName: Head + - name: mask + slotTexture: mask + slotFlags: MASK + uiWindowPos: 0,1 + strippingWindowPos: 1,1 + displayName: Mask + +- type: entity + name: Friend-Shaped + parent: MobXenoNeutralRouny + id: MobXenoFriendShaped + description: A very clearly friend-shaped Xeno. + components: + - type: NpcFactionMember + factions: + - PetsNT + - type: Tool + speed: 3 + qualities: + - Prying + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/Xenos/rouny.rsi + scale: 0.5, 0.5 + - type: GhostRole + - type: GhostTakeoverAvailable + - type: Inventory + templateId: friendxeno + - type: IdExaminable + - type: InventorySlots + - type: Stripping + - type: Strippable + - type: UserInterface + interfaces: + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface + - type: Grammar + attributes: + proper: true + gender: male + - type: Body + prototype: Friendshaped + requiredLegs: 1 # TODO: More than 1 leg + - type: InteractionPopup + successChance: 0.5 + interactSuccessString: petting-success-reptile + interactFailureString: petting-failure-generic + interactSuccessSpawn: EffectHearts + interactSuccessSound: + path: /Audio/Animals/lizard_happy.ogg + +- type: entity + name: Patriach + parent: MobXenoNeutralPraetorian + id: MobXenoPatriarch + description: A not entirely clearly friend-shaped Xeno. + components: + - type: NpcFactionMember + factions: + - PetsNT + - type: Tool + speed: 3 + qualities: + - Prying + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Animals/patriarch.rsi + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + state: patriarch + - type: DamageStateVisuals + states: + Alive: + Base: patriarch + Critical: + Base: patriarch_crit + Dead: + Base: patriarch_dead + - type: Inventory + templateId: friendxeno + - type: IdExaminable + - type: InventorySlots + - type: Strippable + - type: UserInterface + interfaces: + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface + - type: Grammar + attributes: + proper: true + gender: male + - type: InteractionPopup + successChance: 0.5 + interactSuccessString: petting-success-reptile + interactFailureString: petting-failure-generic + interactSuccessSpawn: EffectHearts + interactSuccessSound: + path: /Audio/Animals/lizard_happy.ogg + +- type: entity + name: FXES + parent: MobXenoNeutralDrone + id: MobXenoFXES + description: A very clearly friend-shaped Xeno. + components: + - type: NpcFactionMember + factions: + - PetsNT + - type: Tool + speed: 3 + qualities: + - Prying + - type: Inventory + templateId: friendxeno + - type: IdExaminable + - type: InventorySlots + - type: Strippable + - type: UserInterface + interfaces: + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface + - type: Grammar + attributes: + proper: true + gender: male + - type: InteractionPopup + successChance: 0.5 + interactSuccessString: petting-success-reptile + interactFailureString: petting-failure-generic + interactSuccessSpawn: EffectHearts + interactSuccessSound: + path: /Audio/Animals/lizard_happy.ogg + +- type: entity + name: Hell-Shaped + parent: MobXenoNeutralRavager + id: MobXenoHellShaped + description: A very clearly friend-shaped Xeno. + components: + - type: NpcFactionMember + factions: + - PetsNT + - type: Tool + speed: 3 + qualities: + - Prying + - type: Inventory + templateId: friendxeno + - type: IdExaminable + - type: InventorySlots + - type: Strippable + - type: UserInterface + interfaces: + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface + - type: Grammar + attributes: + proper: true + gender: male + - type: InteractionPopup + successChance: 0.5 + interactSuccessString: petting-success-reptile + interactFailureString: petting-failure-generic + interactSuccessSpawn: EffectHearts + interactSuccessSound: + path: /Audio/Animals/lizard_happy.ogg + +- type: entity + name: FXE Subject 7355 + parent: MobXenoNeutralRavager + id: MobXenoSubjectTess + description: An extremely oddly coloured xeno, with glowing stripes. An odd mutation. + components: + - type: NpcFactionMember + factions: + - PetsNT + - type: Tool + speed: 3 + qualities: + - Prying + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Animals/subject7355.rsi + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + state: subject7355 + - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + state: glow + shader: unshaded + - type: PointLight + radius: 2 + energy: 1 + color: "#639fff" + - type: DamageStateVisuals + states: + Alive: + Base: subject7355 + Critical: + Base: subject7355_crit + Dead: + Base: subject7355_dead + - type: Inventory + templateId: friendxeno + - type: IdExaminable + - type: InventorySlots + - type: Strippable + - type: UserInterface + interfaces: + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface + - type: Grammar + attributes: + proper: true + gender: male + - type: InteractionPopup + successChance: 0.5 + interactSuccessString: petting-success-reptile + interactFailureString: petting-failure-generic + interactSuccessSpawn: EffectHearts + interactSuccessSound: + path: /Audio/Animals/lizard_happy.ogg + +- type: entity + id: neutralXenoVents + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + startAnnouncement: true + earliestStart: 20 + reoccurrenceDelay: 12 + minimumPlayers: 1 + weight: 6 # Really weak compared to other critters + duration: 60 + - type: VentCrittersRule + entries: + - id: MobXenoNeutralRouny + prob: 0.0075 + - id: MobXenoNeutralDrone + prob: 0.0075 + - id: MobXenoNeutralPraetorian + prob: 0.0075 + - id: MobXenoNeutralRavager + prob: 0.0075 + +- type: entity + id: ArgocyteVents + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + startAnnouncement: true + earliestStart: 20 + reoccurrenceDelay: 12 + minimumPlayers: 30 + weight: 6 # Really weak compared to other critters + duration: 60 + - type: VentCrittersRule + entries: + - id: MobArgocyteSlurva + prob: 0.003 + - id: MobArgocyteBarrier + prob: 0.003 + - id: MobArgocyteSkitter + prob: 0.003 + - id: MobArgocyteSwiper + prob: 0.003 + - id: MobArgocyteMolder + prob: 0.003 + - id: MobArgocytePouncer + prob: 0.003 + - id: MobArgocyteGlider + prob: 0.003 + - id: MobArgocyteHarvester + prob: 0.003 + - id: MobArgocyteCrawler + prob: 0.003 + - id: MobArgocyteEnforcer + prob: 0.003 + - id: MobArgocyteFounder + prob: 0.003 + - id: MobArgocyteLeviathing + prob: 0.0001 + +- type: entity + id: MeatVents + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + startAnnouncement: true + earliestStart: 20 + reoccurrenceDelay: 12 + minimumPlayers: 20 + weight: 6 # Really weak compared to other critters + duration: 60 + - type: VentCrittersRule + entries: + - id: MobFleshJared + prob: 0.005 + - id: MobFleshGolem + prob: 0.005 + - id: MobFleshClamp + prob: 0.005 + - id: MobFleshLover + prob: 0.005 + - id: MobAbomination + prob: 0.005 + +- type: entity + id: TickVents + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + startAnnouncement: true + earliestStart: 20 + reoccurrenceDelay: 12 + minimumPlayers: 1 + weight: 6 # Really weak compared to other critters + duration: 60 + - type: VentCrittersRule + entries: + - id: MobTick + prob: 0.01 + +- type: entity + id: CarpVents + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + startAnnouncement: true + earliestStart: 20 + reoccurrenceDelay: 12 + minimumPlayers: 20 + weight: 6 # Really weak compared to other critters + duration: 60 + - type: VentCrittersRule + entries: + - id: MobCarp + prob: 0.01 + - id: MobCarpMagic + prob: 0.01 + - id: MobCarpHolo + prob: 0.002 + - id: MobCarpRainbow + prob: 0.01 + - id: MobShark + prob: 0.002 + - id: MobCarpDragon + prob: 0.01 + +- type: entity + id: SpaceVents + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + startAnnouncement: true + earliestStart: 20 + reoccurrenceDelay: 12 + minimumPlayers: 20 + weight: 6 # Really weak compared to other critters + duration: 60 + - type: VentCrittersRule + entries: + - id: MobBearSpace + prob: 0.01 + - id: MobKangarooSpace + prob: 0.01 + - id: MobSpiderSpace + prob: 0.01 + - id: MobCobraSpace + prob: 0.01 + +- type: entity + id: LightVents + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + startAnnouncement: true + earliestStart: 20 + reoccurrenceDelay: 12 + minimumPlayers: 20 + weight: 6 # Really weak compared to other critters + duration: 60 + - type: VentCrittersRule + entries: + - id: MobLivingLight + prob: 0.01 + - id: MobLuminousPerson + prob: 0.01 + - id: MobLuminousObject + prob: 0.01 + - id: MobLuminousEntity + prob: 0.01 + +- type: entity + name: Friendly Xeno spawner + id: friendlyxenoSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Mobs/Aliens/Xenos/drone.rsi + state: sleeping + - type: RandomSpawner + prototypes: + - MobXenoNeutralRouny + - MobXenoNeutralPraetorian + - MobXenoNeutralDrone + - MobXenoNeutralRavager + chance: 1 diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index d9d150e1b8..0cb52ba0d0 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -28,12 +28,15 @@ - type: GhostHearing - type: Hands - type: Puller + pushAcceleration: 1000000 # Will still be capped in max speed + maxPushRange: 20 - type: CombatMode - type: Physics ignorePaused: true bodyType: Kinematic - type: Body prototype: Aghost + thermalVisibility: false # WD EDIT - type: Access groups: - AllAccess @@ -43,32 +46,32 @@ - CentralCommand - type: UserInterface interfaces: - - key: enum.SolarControlConsoleUiKey.Key + enum.SolarControlConsoleUiKey.Key: type: SolarControlConsoleBoundUserInterface - - key: enum.CommunicationsConsoleUiKey.Key + enum.CommunicationsConsoleUiKey.Key: type: CommunicationsConsoleBoundUserInterface - - key: enum.RadarConsoleUiKey.Key + enum.RadarConsoleUiKey.Key: type: RadarConsoleBoundUserInterface - - key: enum.CargoConsoleUiKey.Orders + enum.CargoConsoleUiKey.Orders: type: CargoOrderConsoleBoundUserInterface - - key: enum.CrewMonitoringUIKey.Key + enum.CrewMonitoringUIKey.Key: type: CrewMonitoringBoundUserInterface - - key: enum.GeneralStationRecordConsoleKey.Key - # who the fuck named this bruh + enum.GeneralStationRecordConsoleKey.Key: + # who the fuck named this bruh type: GeneralStationRecordConsoleBoundUserInterface - type: IntrinsicUI uis: - - key: enum.SolarControlConsoleUiKey.Key + enum.SolarControlConsoleUiKey.Key: toggleAction: ActionAGhostShowSolar - - key: enum.CommunicationsConsoleUiKey.Key + enum.CommunicationsConsoleUiKey.Key: toggleAction: ActionAGhostShowCommunications - - key: enum.RadarConsoleUiKey.Key + enum.RadarConsoleUiKey.Key: toggleAction: ActionAGhostShowRadar - - key: enum.CargoConsoleUiKey.Orders + enum.CargoConsoleUiKey.Orders: toggleAction: ActionAGhostShowCargo - - key: enum.CrewMonitoringUIKey.Key + enum.CrewMonitoringUIKey.Key: toggleAction: ActionAGhostShowCrewMonitoring - - key: enum.GeneralStationRecordConsoleKey.Key + enum.GeneralStationRecordConsoleKey.Key: toggleAction: ActionAGhostShowStationRecords - type: SolarControlConsole # look ma i AM the computer! - type: CommunicationsConsole diff --git a/Resources/Prototypes/Entities/Mobs/Player/arachnid.yml b/Resources/Prototypes/Entities/Mobs/Player/arachnid.yml index d9dea3c18d..2cb3a3da3e 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/arachnid.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/arachnid.yml @@ -10,4 +10,4 @@ Asphyxiation: 1.5 # This makes space and crit more lethal to arachnids. damageRecovery: types: - Asphyxiation: -0.5 + Asphyxiation: -0.5 \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml index 0eda8ae9d7..cb9dc1c911 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml @@ -14,6 +14,8 @@ makeSentient: true name: ghost-role-information-space-dragon-name description: ghost-role-information-space-dragon-description + raffle: + settings: default - type: GhostTakeoverAvailable - type: HTN rootTask: @@ -89,6 +91,12 @@ speedModifierThresholds: 250: 0.7 400: 0.5 + # disable taking damage from fire, since its a fire breathing dragon + - type: Flammable + damage: + types: {} + - type: Temperature + heatDamageThreshold: 800 - type: Metabolizer solutionOnBody: false updateInterval: 0.25 @@ -139,10 +147,33 @@ spawnRiftAction: ActionSpawnRift - type: GenericAntag rule: Dragon + - type: ActionGun + action: ActionDragonsBreath + gunProto: DragonsBreathGun - type: GuideHelp guides: - MinorAntagonists +- type: entity + noSpawn: true + id: DragonsBreathGun + name: dragon's lung + description: For dragon's breathing + components: + - type: RechargeBasicEntityAmmo + rechargeCooldown: 5 + rechargeSound: + path: /Audio/Animals/space_dragon_roar.ogg + - type: BasicEntityAmmoProvider + proto: ProjectileDragonsBreath + capacity: 1 + count: 1 + - type: Gun + soundGunshot: + path: /Audio/Animals/space_dragon_roar.ogg + soundEmpty: null + projectileSpeed: 5 + - type: entity parent: BaseMobDragon id: MobDragonDungeon @@ -150,6 +181,8 @@ components: - type: GhostRole description: ghost-role-information-space-dragon-dungeon-description + raffle: + settings: default - type: SlowOnDamage speedModifierThresholds: 100: 0.7 @@ -179,6 +212,7 @@ state: icon event: !type:DragonSpawnRiftActionEvent useDelay: 1 + priority: 3 - type: entity id: ActionDevour @@ -190,3 +224,18 @@ icon: { sprite : Interface/Actions/devour.rsi, state: icon } iconOn: { sprite : Interface/Actions/devour.rsi, state: icon-on } event: !type:DevourActionEvent + priority: 1 + +- type: entity + noSpawn: true + id: ActionDragonsBreath + name: "[color=orange]Dragon's Breath[/color]" + description: Spew out flames at anyone foolish enough to attack you! + components: + - type: WorldTargetAction + # TODO: actual sprite + icon: { sprite : Objects/Weapons/Guns/Projectiles/magic.rsi, state: fireball } + event: !type:ActionGunShootEvent + priority: 2 + checkCanAccess: false + range: 0 diff --git a/Resources/Prototypes/Entities/Mobs/Player/familiars.yml b/Resources/Prototypes/Entities/Mobs/Player/familiars.yml index ab479e0332..87166f13a3 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/familiars.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/familiars.yml @@ -56,6 +56,8 @@ name: ghost-role-information-cerberus-name description: ghost-role-information-cerberus-description rules: ghost-role-information-cerberus-rules + raffle: + settings: default - type: GhostTakeoverAvailable - type: MeleeWeapon altDisarm: false diff --git a/Resources/Prototypes/Entities/Mobs/Player/guardian.yml b/Resources/Prototypes/Entities/Mobs/Player/guardian.yml index 03253a79b3..6d90ac3ffe 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/guardian.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/guardian.yml @@ -13,6 +13,8 @@ makeSentient: true name: ghost-role-information-guardian-name description: ghost-role-information-guardian-description + raffle: + settings: default - type: GhostTakeoverAvailable - type: Input context: "human" @@ -95,8 +97,8 @@ - type: MeleeSpeech - type: UserInterface interfaces: - - key: enum.MeleeSpeechUiKey.Key - type: MeleeSpeechBoundUserInterface + enum.MeleeSpeechUiKey.Key: + type: MeleeSpeechBoundUserInterface - type: Actions - type: Guardian - type: Tag @@ -116,6 +118,8 @@ makeSentient: true name: ghost-role-information-holoparasite-name description: ghost-role-information-holoparasite-description + raffle: + settings: default - type: GhostTakeoverAvailable - type: NameIdentifier group: Holoparasite @@ -146,6 +150,8 @@ makeSentient: true name: ghost-role-information-ifrit-name description: ghost-role-information-ifrit-description + raffle: + settings: default - type: GhostTakeoverAvailable - type: RandomSprite available: @@ -177,6 +183,8 @@ makeSentient: true name: ghost-role-information-holoclown-name description: ghost-role-information-holoclown-description + raffle: + settings: default - type: GhostTakeoverAvailable - type: NameIdentifier group: Holoparasite diff --git a/Resources/Prototypes/Entities/Mobs/Player/human.yml b/Resources/Prototypes/Entities/Mobs/Player/human.yml index aa87f81a83..6438d9f649 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/human.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/human.yml @@ -3,7 +3,7 @@ name: Urist McHands parent: BaseMobHuman id: MobHuman - + #Syndie - type: entity parent: MobHuman diff --git a/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml b/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml index 956e6f1260..e96633dde8 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml @@ -26,6 +26,8 @@ - type: GhostRole name: ghost-role-information-Death-Squad-name description: ghost-role-information-Death-Squad-description + raffle: + settings: short - type: GhostTakeoverAvailable - type: Loadout prototypes: [ DeathSquadGear ] @@ -62,6 +64,8 @@ - type: GhostRole name: ghost-role-information-ert-leader-name description: ghost-role-information-ert-leader-description + raffle: + settings: short - type: GhostTakeoverAvailable - type: Loadout prototypes: [ ERTLeaderGear ] @@ -92,6 +96,8 @@ - type: GhostRole name: ghost-role-information-ert-leader-name description: ghost-role-information-ert-leader-description + raffle: + settings: short - type: GhostTakeoverAvailable - type: Loadout prototypes: [ ERTLeaderGearEVA ] @@ -114,6 +120,8 @@ - type: GhostRole name: ghost-role-information-ert-leader-name description: ghost-role-information-ert-leader-description + raffle: + settings: short - type: GhostTakeoverAvailable - type: Loadout prototypes: [ ERTLeaderGearEVALecter ] @@ -145,6 +153,8 @@ - type: GhostRole name: ghost-role-information-ert-chaplain-name description: ghost-role-information-ert-chaplain-description + raffle: + settings: short - type: GhostTakeoverAvailable - type: RandomMetadata nameSegments: @@ -174,6 +184,8 @@ - type: GhostRole name: ghost-role-information-ert-chaplain-name description: ghost-role-information-ert-chaplain-description + raffle: + settings: short - type: GhostTakeoverAvailable - type: Loadout prototypes: [ ERTChaplainGearEVA ] @@ -205,6 +217,8 @@ - type: GhostRole name: ghost-role-information-ert-janitor-name description: ghost-role-information-ert-janitor-description + raffle: + settings: short - type: GhostTakeoverAvailable - type: RandomMetadata nameSegments: @@ -234,6 +248,8 @@ - type: GhostRole name: ghost-role-information-ert-janitor-name description: ghost-role-information-ert-janitor-description + raffle: + settings: short - type: GhostTakeoverAvailable - type: Loadout prototypes: [ ERTJanitorGearEVA ] @@ -265,6 +281,8 @@ - type: GhostRole name: ghost-role-information-ert-engineer-name description: ghost-role-information-ert-engineer-description + raffle: + settings: short - type: GhostTakeoverAvailable - type: RandomMetadata nameSegments: @@ -294,6 +312,8 @@ - type: GhostRole name: ghost-role-information-ert-engineer-name description: ghost-role-information-ert-engineer-description + raffle: + settings: short - type: GhostTakeoverAvailable - type: Loadout prototypes: [ ERTEngineerGearEVA ] @@ -325,6 +345,8 @@ - type: GhostRole name: ghost-role-information-ert-security-name description: ghost-role-information-ert-security-description + raffle: + settings: short - type: GhostTakeoverAvailable - type: RandomMetadata nameSegments: @@ -354,6 +376,8 @@ - type: GhostRole name: ghost-role-information-ert-security-name description: ghost-role-information-ert-security-description + raffle: + settings: short - type: GhostTakeoverAvailable - type: Loadout prototypes: [ ERTSecurityGearEVA ] @@ -375,6 +399,8 @@ - type: GhostRole name: ghost-role-information-ert-security-name description: ghost-role-information-ert-security-description + raffle: + settings: short - type: GhostTakeoverAvailable - type: Loadout prototypes: [ ERTSecurityGearEVALecter ] @@ -406,6 +432,8 @@ - type: GhostRole name: ghost-role-information-ert-medical-name description: ghost-role-information-ert-medical-description + raffle: + settings: short - type: GhostTakeoverAvailable - type: RandomMetadata nameSegments: @@ -435,6 +463,8 @@ - type: GhostRole name: ghost-role-information-ert-medical-name description: ghost-role-information-ert-medical-description + raffle: + settings: short - type: GhostTakeoverAvailable - type: Loadout prototypes: [ ERTMedicalGearEVA ] @@ -463,6 +493,8 @@ - type: GhostRole name: ghost-role-information-cburn-agent-name description: ghost-role-information-cburn-agent-description + raffle: + settings: short - type: GhostTakeoverAvailable - type: RandomMetadata nameSegments: @@ -489,6 +521,8 @@ - type: GhostRole name: ghost-role-information-centcom-official-name description: ghost-role-information-centcom-official-description + raffle: + settings: default - type: GhostTakeoverAvailable - type: Loadout prototypes: [ CentcomGear ] @@ -553,5 +587,311 @@ - type: GhostRole name: ghost-role-information-cluwne-name description: ghost-role-information-cluwne-description + raffle: + settings: default - type: GhostTakeoverAvailable - type: Cluwne + +## Lost Cargo technician + +- type: entity + name: lost cargo technician spawner + id: LostCargoTechnicianSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Objects/Tools/appraisal-tool.rsi + state: icon + - type: RandomSpawner + prototypes: + - RandomHumanoidLostCargoTechnician + chance: 1 + +- type: entity + id: RandomHumanoidLostCargoTechnician + name: lost cargo technician ghost role + components: + - type: Sprite + sprite: Objects/Tools/appraisal-tool.rsi + state: icon + - type: RandomHumanoidSpawner + settings: LostCargoTechnician + +- type: randomHumanoidSettings + id: LostCargoTechnician + randomizeName: false + components: + - type: GhostRole + name: ghost-role-information-lost-cargo-technical-name + description: ghost-role-information-lost-cargo-technical-description + rules: ghost-role-information-lost-cargo-technical-rules + raffle: + settings: short + - type: GhostTakeoverAvailable + - type: Loadout + prototypes: [ CargoTechGear ] + - type: RandomMetadata + nameSegments: + - names_first + - names_last + +# Clown troupe + +- type: entity + name: clown troupe spawner + id: ClownTroupeSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Objects/Fun/bikehorn.rsi + state: icon + - type: RandomSpawner + prototypes: + - RandomHumanoidClownTroupe + rarePrototypes: + - RandomHumanoidClownTroupeBanana + rareChance: 0.3 + +- type: entity + id: RandomHumanoidClownTroupe + name: clown troupe ghost role + components: + - type: Sprite + sprite: Objects/Tools/appraisal-tool.rsi + state: icon + - type: RandomHumanoidSpawner + settings: ClownTroupe + +- type: entity + id: RandomHumanoidClownTroupeBanana + name: banana clown troupe + parent: RandomHumanoidClownTroupe + components: + - type: RandomHumanoidSpawner + settings: ClownTroupeBanana + +- type: randomHumanoidSettings + id: ClownTroupe + randomizeName: false + components: + - type: GhostRole + name: ghost-role-information-clown-troupe-name + description: ghost-role-information-clown-troupe-description + rules: ghost-role-information-clown-troupe-rules + raffle: + settings: short + - type: GhostTakeoverAvailable + - type: Loadout + prototypes: [ ClownGear ] + - type: RandomMetadata + nameSegments: + - names_clown + +- type: randomHumanoidSettings + id: ClownTroupeBanana + randomizeName: false + components: + - type: GhostRole + name: ghost-role-information-clown-troupe-name + description: ghost-role-information-clown-troupe-description + rules: ghost-role-information-clown-troupe-rules + - type: GhostTakeoverAvailable + - type: Loadout + prototypes: [ BananaClown ] + - type: RandomMetadata + nameSegments: + - names_clown + +# Traveling exotic chef + +- type: entity + name: traveling chef spawner + id: TravelingChefSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Objects/Weapons/Melee/kitchen_knife.rsi + state: icon + - type: RandomSpawner + prototypes: + - RandomHumanoidTravelingChef + +- type: entity + id: RandomHumanoidTravelingChef + name: traveling chef ghost role + components: + - type: Sprite + sprite: Objects/Tools/appraisal-tool.rsi + state: icon + - type: RandomHumanoidSpawner + settings: TravelingChef + +- type: randomHumanoidSettings + id: TravelingChef + randomizeName: false + components: + - type: GhostRole + name: ghost-role-information-traveling-chef-name + description: ghost-role-information-traveling-chef-description + rules: ghost-role-information-traveling-chef-rules + raffle: + settings: short + - type: GhostTakeoverAvailable + - type: Loadout + prototypes: [ ChefGear ] + - type: RandomMetadata + nameSegments: + - names_first + - names_last + +# Disaster victim + +- type: entity + name: disaster victim spawner + id: DisasterVictimSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Clothing/OuterClothing/Hardsuits/basic.rsi + state: icon + - type: RandomSpawner + prototypes: + - RandomHumanoidDisasterVictimRD + - RandomHumanoidDisasterVictimCMO + - RandomHumanoidDisasterVictimCaptain + - MobSkeletonCloset + +- type: entity + id: RandomHumanoidDisasterVictimRD + name: disaster victim RD ghost role + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/basic.rsi + state: icon + - type: RandomHumanoidSpawner + settings: DisasterVictimResearchDirector + +- type: entity + id: RandomHumanoidDisasterVictimCMO + parent: RandomHumanoidDisasterVictimRD + name: disaster victim CMO ghost role + components: + - type: RandomHumanoidSpawner + settings: DisasterVictimCMO + +- type: entity + id: RandomHumanoidDisasterVictimCaptain + parent: RandomHumanoidDisasterVictimRD + name: disaster victim Captain ghost role + components: + - type: RandomHumanoidSpawner + settings: DisasterVictimCaptain + +- type: randomHumanoidSettings + id: DisasterVictimResearchDirector + randomizeName: false + components: + - type: GhostRole + name: ghost-role-information-disaster-victim-name + description: ghost-role-information-disaster-victim-description + rules: ghost-role-information-disaster-victim-rules + raffle: + settings: default + - type: GhostTakeoverAvailable + - type: Loadout + prototypes: [ ResearchDirectorGear ] + - type: RandomMetadata + nameSegments: + - names_first + - names_last + +- type: randomHumanoidSettings + id: DisasterVictimCMO + randomizeName: false + components: + - type: GhostRole + name: ghost-role-information-disaster-victim-name + description: ghost-role-information-disaster-victim-description + rules: ghost-role-information-disaster-victim-rules + raffle: + settings: default + - type: GhostTakeoverAvailable + - type: Loadout + prototypes: [ CMOGear ] + - type: RandomMetadata + nameSegments: + - names_first + - names_last + +- type: randomHumanoidSettings + id: DisasterVictimCaptain + randomizeName: false + components: + - type: GhostRole + name: ghost-role-information-disaster-victim-name + description: ghost-role-information-disaster-victim-description + rules: ghost-role-information-disaster-victim-rules + raffle: + settings: default + - type: GhostTakeoverAvailable + - type: Loadout + prototypes: [ CaptainGear ] + - type: RandomMetadata + nameSegments: + - names_first + - names_last + +# Syndie Disaster Victim + +- type: entity + name: syndie disaster victim spawner + id: SyndieDisasterVictimSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Structures/Decoration/banner.rsi + state: banner_syndicate + - type: RandomSpawner + prototypes: + - RandomHumanoidSyndieDisasterVictim + +- type: entity + id: RandomHumanoidSyndieDisasterVictim + name: syndie disaster victim ghost role + components: + - type: Sprite + sprite: Structures/Decoration/banner.rsi + state: banner_syndicate + - type: RandomHumanoidSpawner + settings: SyndieDisasterVictim + +- type: randomHumanoidSettings + id: SyndieDisasterVictim + randomizeName: false + components: + - type: NpcFactionMember + factions: + - Syndicate + - type: GhostRole + name: ghost-role-information-syndie-disaster-victim-name + description: ghost-role-information-syndie-disaster-victim-description + rules: ghost-role-information-syndie-disaster-victim-rules + raffle: + settings: short + - type: GhostTakeoverAvailable + - type: Loadout + prototypes: [ SyndicateOperativeGearCivilian ] + - type: RandomMetadata + nameSegments: + - names_first + - names_last diff --git a/Resources/Prototypes/Entities/Mobs/Player/ipc.yml b/Resources/Prototypes/Entities/Mobs/Player/ipc.yml index c69b40c1f8..85aec21ac6 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/ipc.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/ipc.yml @@ -28,11 +28,6 @@ # Por algum motivo esse componente é bem bugado, então o "LockTime" é quem diz o tempo de tudo enquanto o unlock só está servindo como um bool (???) lockTime: 5 unlockTime: 5 - - type: InteractionPopup - successChance: 1 - interactSuccessString: hugging-success-generic - interactSuccessSound: /Audio/Effects/thudswoosh.ogg - messagePerceivedByOthers: hugging-success-generic-others - type: NpcFactionMember factions: - NanoTrasen @@ -101,20 +96,32 @@ - type: CanHostGuardian - type: LanguageKnowledge speaks: - - GalacticCommon + - TauCetiBasic - RobotTalk understands: - - GalacticCommon + - TauCetiBasic - RobotTalk - type: WeldingHealable - type: PsionicInsulation - type: OfferItem - type: LayingDown - type: Carriable - - type: StepTriggerImmune #WD EDIT + - type: StepTriggerImmune whitelist: types: - Shard + - type: Fixtures + fixtures: # TODO: This needs a second fixture just for mob collisions. + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 185 + restitution: 0.0 + mask: + - MobMask + layer: + - MobLayer - type: entity save: false diff --git a/Resources/Prototypes/Entities/Mobs/Player/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Player/reptilian.yml index b9f265e0bc..b332f573fb 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/reptilian.yml @@ -1,6 +1,7 @@ - type: entity save: false - name: Urisst' Mzhand + name: Urist McScales + suffix: Urisst' Mzhand parent: BaseMobReptilian id: MobReptilian diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon_base.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon_base.yml index 0b122df1c8..a3879c98ce 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon_base.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon_base.yml @@ -166,7 +166,6 @@ # damage: # types: # Blunt: 0.28 #per second, scales with pressure and other constants. - atmosTemperatureTransferEfficiency: 0.4 - type: Identity # soundHit: # path: /Audio/Effects/metalbreak.ogg @@ -202,11 +201,11 @@ - type: Strippable - type: UserInterface interfaces: - - key: enum.VoiceMaskUIKey.Key + enum.VoiceMaskUIKey.Key: type: VoiceMaskBoundUserInterface - - key: enum.HumanoidMarkingModifierKey.Key + enum.HumanoidMarkingModifierKey.Key: type: HumanoidMarkingModifierBoundUserInterface - - key: enum.StrippingUiKey.Key + enum.StrippingUiKey.Key: type: StrippableBoundUserInterface - type: Emoting - type: Grammar diff --git a/Resources/Prototypes/Entities/Mobs/Player/skeleton.yml b/Resources/Prototypes/Entities/Mobs/Player/skeleton.yml index 5c2a88c106..bb77cefad5 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/skeleton.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/skeleton.yml @@ -11,6 +11,8 @@ - type: GhostRole name: ghost-role-information-skeleton-pirate-name description: ghost-role-information-skeleton-pirate-description + raffle: + settings: default - type: GhostTakeoverAvailable - type: Loadout prototypes: [PirateGear] @@ -25,6 +27,8 @@ - type: GhostRole name: ghost-role-information-skeleton-biker-name description: ghost-role-information-skeleton-biker-description + raffle: + settings: default - type: GhostTakeoverAvailable - type: Loadout prototypes: [SkeletonBiker] @@ -38,6 +42,8 @@ - type: GhostRole name: ghost-role-information-closet-skeleton-name description: ghost-role-information-closet-skeleton-description + raffle: + settings: default - type: GhostTakeoverAvailable - type: Loadout prototypes: [LimitedPassengerGear] diff --git a/Resources/Prototypes/Entities/Mobs/Player/terminator.yml b/Resources/Prototypes/Entities/Mobs/Player/terminator.yml deleted file mode 100644 index 663838e01a..0000000000 --- a/Resources/Prototypes/Entities/Mobs/Player/terminator.yml +++ /dev/null @@ -1,203 +0,0 @@ -# stuff common to flesh and endoskeleton -- type: entity - abstract: true - id: MobTerminatorBase - components: - - type: ZombieImmune # yeah no - - type: FlashImmunity # no brain to brainwash, eyes are robotic - -- type: entity - parent: [MobHuman, MobTerminatorBase] - id: MobHumanTerminator - # uses random name generator dont worry - name: exterminator - components: - - type: Terminator - - type: GenericAntag - rule: Exterminator - # reduced barotrauma damage - - type: Barotrauma - damage: - types: - Blunt: 0.1 - # 4x stamina, faster recovery - - type: Stamina - decay: 6 - cooldown: 1 - critThreshold: 400 - # immune to space drugs, pax, temporary blindness - - type: StatusEffects - allowed: - - Stun - - KnockedDown - - SlowedDown - - Stutter - - Electrocution - - Drunk - - SlurredSpeech - - RatvarianLanguage - - PressureImmunity - - Muted - - ForcedSleep - - StaminaModifier - - type: MobState - allowedStates: - - Alive - - Dead - # endoskeleton need it - - type: TransferMindOnGib - - type: MobThresholds - thresholds: - 0: Alive - # used for health display its not possible to actually fall into crit - 200: Dead - # fire!!!! - - type: Flammable - damage: - types: - Heat: 6.0 - # slightly wider thresholds - - type: Temperature - heatDamageThreshold: 390 - coldDamageThreshold: 240 - # take terminator flesh damage - - type: Damageable - damageModifierSet: CyberneticFlesh - # only organ is an endoskeleton, which is transferred when flesh dies - - type: Body - prototype: TerminatorFlesh - # endoskeleton transformation when either you would get burned to crit or killed by any damage - # you will become an endoskeleton as your last chance to kill the target - - type: Destructible - thresholds: - # the burn trigger is first incase of a bombing or nuking, it might well do over 200 damage but 100 heat is more important - - trigger: - !type:DamageTypeTrigger - damageType: Heat - damage: 100 - behaviors: - - !type:PopupBehavior - popup: terminator-endoskeleton-burn-popup - popupType: LargeCaution - - !type:GibBehavior - - trigger: - !type:DamageTrigger - damage: 200 - behaviors: - - !type:PopupBehavior - popup: terminator-endoskeleton-gib-popup - popupType: LargeCaution - - !type:GibBehavior - # faster than humans when damaged - - type: SlowOnDamage - speedModifierThresholds: - 70: 0.8 - 90: 0.6 - # arnold is very strong - - type: MeleeWeapon - damage: - types: - Blunt: 10 - Structural: 10 - - type: RandomHumanoidAppearance - - type: Tag - tags: - - CanPilot - - FootstepSound - - DoorBumpOpener - - Unimplantable # no brain to mindshield, no organic body to implant into - -- type: entity - parent: - - BaseMob - - MobCombat - - MobDamageable - - MobSiliconBase - - MobTerminatorBase - id: MobTerminatorEndoskeleton - # you are now valid - name: nt-800 "exterminator" endoskeleton - description: The inner powerhouse of Susnet's infiltrator androids. Ridiculously hard alloy on the inside, unassuming flesh on the outside. - components: - - type: HumanoidAppearance - species: Terminator - - type: MovementSpeedModifier - baseWalkSpeed: 1.5 - baseSprintSpeed: 3.0 - - type: Sprite - sprite: Mobs/Species/Terminator/parts.rsi - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeCircle - radius: 0.35 - # he heavy - density: 500 - mask: - - MobMask - layer: - - MobLayer - - type: MobThresholds - thresholds: - 0: Alive - # gibbed at 200 so cant go crit - 200: Dead - # incase some weird stuff happens and the crew adopts a terminator - - type: Repairable - doAfterDelay: 15 - allowSelfRepair: false - - type: Body - prototype: TerminatorEndoskeleton - # lets it sit in the terminator flesh's brain slot - - type: Organ - - type: Brain - - type: TypingIndicator - proto: robot # beep boop borp - - type: Speech - speechSounds: Pai - - type: Damageable - damageModifierSet: Cybernetic - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 200 - behaviors: - - !type:PlaySoundBehavior - # endoSKELETON - sound: /Audio/Effects/bone_rattle.ogg - # a keepsake or a gift for cargo - - !type:SpawnEntitiesBehavior - spawn: - HeadTerminator: - min: 1 - max: 1 - - !type:DoActsBehavior - acts: [ "Destruction" ] - # for fire spreading around, the endoskeleton cannot burn - - type: Flammable - fireSpread: true - canResistFire: true - damage: - types: - Heat: 0 - # now his only weapon, but it is stronger - - type: MeleeWeapon - damage: - types: - Blunt: 15 - Structural: 5 - - type: Puller - needsHands: false - - type: Prying - pryPowered: true - force: true - - type: Tag - tags: - - DoorBumpOpener - - ShoesRequiredStepTriggerImmune - # let mind transfer on gib work - - MindTransferTarget - # its just metal so no implants - - Unimplantable diff --git a/Resources/Prototypes/Entities/Mobs/Player/vox.yml b/Resources/Prototypes/Entities/Mobs/Player/vox.yml index de1e3da2be..e7ad39d731 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/vox.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/vox.yml @@ -1,5 +1,5 @@ - type: entity save: false - name: Vox + name: Urist McVox parent: BaseMobVox - id: MobVox + id: MobVox \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Mobs/Species/arachne.yml b/Resources/Prototypes/Entities/Mobs/Species/arachne.yml index 2f6437dc14..8cdd16aeef 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/arachne.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/arachne.yml @@ -104,15 +104,15 @@ - type: Tag tags: - CanPilot - - ShoesRequiredStepTriggerImmune - DoorBumpOpener + - type: StepTriggerImmune - type: Bloodstream bloodReagent: DemonsBlood + bloodRegenerationThirst: 4 # 1 unit of demon's blood satiates 4 thirst - type: BloodSucker webRequired: true - - type: Arachne + - type: Cocooner - type: DamageVisuals - thresholds: [ 20, 40, 100 ] targetLayers: - "enum.HumanoidVisualLayers.Chest" - "enum.HumanoidVisualLayers.Head" @@ -135,6 +135,11 @@ fireStackAlternateState: 3 - type: Spider - type: IgnoreSpiderWeb + # WD EDIT START + - type: FootPrints + leftBarePrint: "footprint-left-bare-spider" + rightBarePrint: "footprint-right-bare-spider" + # WD EDIT END - type: entity save: false diff --git a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml index 90bc2a711a..3e10932dba 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml @@ -44,6 +44,9 @@ methods: [Touch] effects: - !type:WashCreamPieReaction + - type: BloodSucker + webRequired: true + - type: Cocooner # Damage (Self) - type: Bloodstream bloodReagent: CopperBlood @@ -64,6 +67,7 @@ - type: Speech speechVerb: Arachnid speechSounds: Arachnid + allowedEmotes: ['Click', 'Chitter'] - type: Vocal sounds: Male: UnisexArachnid @@ -126,6 +130,9 @@ # White Dream Start - transfer features from Arachne - type: Spider - type: IgnoreSpiderWeb + - type: FootPrints + leftBarePrint: "footprint-left-bare-spider" + rightBarePrint: "footprint-right-bare-spider" # White Dream End - type: entity diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index 33635eeec2..c0d23c489c 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -191,12 +191,15 @@ - type: Strippable - type: UserInterface interfaces: - - key: enum.VoiceMaskUIKey.Key + enum.VoiceMaskUIKey.Key: type: VoiceMaskBoundUserInterface - - key: enum.HumanoidMarkingModifierKey.Key + enum.HumanoidMarkingModifierKey.Key: type: HumanoidMarkingModifierBoundUserInterface - - key: enum.StrippingUiKey.Key + enum.StrippingUiKey.Key: type: StrippableBoundUserInterface + enum.InstrumentUiKey.Key: + type: InstrumentBoundUserInterface + requireInputValidation: false - type: Puller - type: Speech speechSounds: Alto @@ -218,9 +221,9 @@ - type: CanEscapeInventory # Carrying system from nyanotrasen. - type: LanguageKnowledge # This is here so even if species doesn't have a defined language, they at least speak GC speaks: - - GalacticCommon + - TauCetiBasic understands: - - GalacticCommon + - TauCetiBasic - type: Tag tags: - CanPilot @@ -381,5 +384,5 @@ requiredLegs: 2 - type: UserInterface interfaces: - - key: enum.HumanoidMarkingModifierKey.Key # sure, this can go here too + enum.HumanoidMarkingModifierKey.Key: # sure, this can go here too type: HumanoidMarkingModifierBoundUserInterface diff --git a/Resources/Prototypes/Entities/Mobs/Species/diona.yml b/Resources/Prototypes/Entities/Mobs/Species/diona.yml index 42383d9a42..da4634833a 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/diona.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/diona.yml @@ -33,6 +33,8 @@ amount: 5 - type: Bloodstream bloodReagent: Sap + bloodRegenerationHunger: 1 + bloodRegenerationThirst: 1 # 1 unit of sap satiates 1 hunger and thirst - type: Reactive groups: Flammable: [ Touch ] @@ -104,16 +106,25 @@ - Dead - type: LanguageKnowledge speaks: - - GalacticCommon + - TauCetiBasic - RootSpeak understands: - - GalacticCommon + - TauCetiBasic - RootSpeak - type: TraitSpeedModifier sprintModifier: 0.75 walkModifier: 0.75 - type: SpeedModifierImmunity - type: NoSlip + - type: StepTriggerImmune + whitelist: + types: + - Shard + # WD EDIT START + - type: FootPrints + leftBarePrint: "footprint-left-bare-diona" + rightBarePrint: "footprint-right-bare-diona" + # WD EDIT END - type: entity parent: BaseSpeciesDummy diff --git a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml index 1de9f89ce8..21d2900a11 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml @@ -35,8 +35,7 @@ shape: !type:PhysShapeCircle radius: 0.35 - # they r smaller - density: 120 + density: 240 # WD EDIT restitution: 0.0 mask: - MobMask @@ -51,17 +50,27 @@ accent: dwarf - type: Speech speechSounds: Bass + - type: HumanoidAppearance + species: Human + hideLayersOnEquip: + - Hair + - Snout - type: LanguageKnowledge speaks: - - GalacticCommon + - TauCetiBasic - SolCommon understands: - - GalacticCommon + - TauCetiBasic - SolCommon - type: LightweightDrunk boozeStrengthMultiplier: 0.5 - type: Stamina # White Dream: Make dwarfs a bit more durable. critThreshold: 115 + # WD EDIT START + - type: FootPrints + leftBarePrint: "footprint-left-bare-dwarf" + rightBarePrint: "footprint-right-bare-dwarf" + # WD EDIT END - type: entity parent: BaseSpeciesDummy diff --git a/Resources/Prototypes/Entities/Mobs/Species/harpy.yml b/Resources/Prototypes/Entities/Mobs/Species/harpy.yml index 4aa56231ce..a0ba9b77c3 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/harpy.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/harpy.yml @@ -5,6 +5,10 @@ id: MobHarpyBase abstract: true components: + - type: Flight + isLayerAnimated: true + layer: "/Textures/Mobs/Customization/Harpy/harpy_wings.rsi" + animationKey: "Flap" - type: Singer proto: HarpySinger - type: Sprite @@ -110,27 +114,30 @@ - CanPilot - FootstepSound - DoorBumpOpener - - ShoesRequiredStepTriggerImmune - type: LanguageKnowledge speaks: - - GalacticCommon - - SolCommon + - TauCetiBasic + - ValyrianStandard understands: - - GalacticCommon - - SolCommon + - TauCetiBasic + - ValyrianStandard - type: StepTriggerImmune - whitelist: # WD EDIT + whitelist: types: - Shard - Landmine - Mousetrap + # WD EDIT START + - type: FootPrints + leftBarePrint: "footprint-left-bare-lizard" + rightBarePrint: "footprint-right-bare-lizard" + # WD EDIT END - type: entity save: false - name: Urist McHands + name: Urist McBirb parent: MobHumanDummy id: MobHarpyDummy - noSpawn: true description: A dummy Harpy meant to be used in character setup. components: - type: HumanoidAppearance @@ -179,6 +186,9 @@ - map: [ "enum.HumanoidVisualLayers.Hair" ] - map: [ "mask" ] - map: [ "head" ] + - map: [ "singingLayer" ] + sprite: Effects/harpysinger.rsi + state: singing_music_notes - type: entity id: ActionHarpyPlayMidi @@ -202,3 +212,15 @@ icon: DeltaV/Interface/Actions/harpy_syrinx.png itemIconStyle: BigAction event: !type:VoiceMaskSetNameEvent + +- type: entity + id: ActionToggleFlight + name: Fly + description: Make use of your wings to fly. Beat the flightless bird allegations. + noSpawn: true + components: + - type: InstantAction + checkCanInteract: false + icon: { sprite: Interface/Actions/flight.rsi, state: flight_off } + iconOn: { sprite : Interface/Actions/flight.rsi, state: flight_on } + event: !type:ToggleFlightEvent \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Mobs/Species/human.yml b/Resources/Prototypes/Entities/Mobs/Species/human.yml index ac373725ce..15d71016c7 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/human.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/human.yml @@ -16,13 +16,19 @@ spawned: - id: FoodMeatHuman amount: 5 + - type: HumanoidAppearance + species: Human + hideLayersOnEquip: + - Hair + - Snout - type: LanguageKnowledge speaks: - - GalacticCommon + - TauCetiBasic - SolCommon understands: - - GalacticCommon + - TauCetiBasic - SolCommon + - type: FootPrints # WD EDIT - type: entity parent: BaseSpeciesDummy diff --git a/Resources/Prototypes/Entities/Mobs/Species/moth.yml b/Resources/Prototypes/Entities/Mobs/Species/moth.yml index 1c55dcf0df..30067d38bb 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/moth.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/moth.yml @@ -23,12 +23,13 @@ accent: zombieMoth - type: Speech speechVerb: Moth + allowedEmotes: ['Chitter', 'Squeak'] - type: LanguageKnowledge speaks: - - GalacticCommon + - TauCetiBasic - Moffic understands: - - GalacticCommon + - TauCetiBasic - Moffic - type: TypingIndicator proto: moth @@ -121,6 +122,7 @@ sprite: "Effects/creampie.rsi" state: "creampie_moth" visible: false + - type: FootPrints # WD EDIT - type: entity parent: BaseSpeciesDummy diff --git a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml index 35f9e9fa39..8c55272403 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml @@ -33,9 +33,9 @@ proto: lizard - type: Vocal sounds: - Male: UnisexReptilian - Female: UnisexReptilian - Unsexed: UnisexReptilian + Male: MaleReptilian + Female: FemaleReptilian + Unsexed: MaleReptilian - type: Damageable damageContainer: Biological damageModifierSet: Scale @@ -61,11 +61,16 @@ - type: Wagging - type: LanguageKnowledge speaks: - - GalacticCommon + - TauCetiBasic - Draconic understands: - - GalacticCommon + - TauCetiBasic - Draconic + # WD EDIT START + - type: FootPrints + leftBarePrint: "footprint-left-bare-lizard" + rightBarePrint: "footprint-right-bare-lizard" + # WD EDIT END - type: entity parent: BaseSpeciesDummy diff --git a/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml b/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml index 28ea5b030f..ca11d94d87 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml @@ -102,6 +102,7 @@ probability: 0.5 - type: FireVisuals alternateState: Standing + - type: FootPrints # WD EDIT - type: entity parent: BaseSpeciesDummy diff --git a/Resources/Prototypes/Entities/Mobs/Species/slime.yml b/Resources/Prototypes/Entities/Mobs/Species/slime.yml index 0e05b0c827..0972d6c782 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/slime.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/slime.yml @@ -13,11 +13,37 @@ - type: Body prototype: Slime requiredLegs: 2 + # they like eat it idk lol + - type: Storage + clickInsert: false + grid: + - 0,0,1,2 + maxItemSize: Large + storageInsertSound: + path: /Audio/Voice/Slime/slime_squish.ogg + - type: ContainerContainer + containers: + storagebase: !type:Container + ents: [] + - type: UserInterface + interfaces: + enum.StorageUiKey.Key: + type: StorageBoundUserInterface + enum.VoiceMaskUIKey.Key: + type: VoiceMaskBoundUserInterface + enum.HumanoidMarkingModifierKey.Key: + type: HumanoidMarkingModifierBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface + # to prevent bag open/honk spam + - type: UseDelay + delay: 0.5 - type: HumanoidAppearance species: SlimePerson - type: Speech speechVerb: Slime speechSounds: Slime + allowedEmotes: ['Squish'] - type: TypingIndicator proto: slime - type: Vocal @@ -28,6 +54,16 @@ - type: Damageable damageContainer: Biological damageModifierSet: Slime + - type: Geras + - type: PassiveDamage # Around 8 damage a minute healed + allowedStates: + - Alive + damageCap: 65 + damage: + types: + Heat: -0.14 + groups: + Brute: -0.14 - type: DamageVisuals damageOverlayGroups: Brute: @@ -35,6 +71,8 @@ color: "#2cf274" - type: Bloodstream bloodReagent: Slime # TODO Color slime blood based on their slime color or smth + bloodRegenerationHunger: 2 + bloodRegenerationThirst: 2 # 1 of slime satiates 2 hunger - type: Barotrauma damage: types: @@ -76,11 +114,16 @@ maxSaturation: 15 - type: LanguageKnowledge speaks: - - GalacticCommon + - TauCetiBasic - Bubblish understands: - - GalacticCommon + - TauCetiBasic - Bubblish + # WD EDIT START + - type: FootPrints + leftBarePrint: "footprint-left-bare-slime" + rightBarePrint: "footprint-right-bare-slime" + # WD EDIT END - type: entity parent: MobHumanDummy diff --git a/Resources/Prototypes/Entities/Mobs/Species/vox.yml b/Resources/Prototypes/Entities/Mobs/Species/vox.yml index a271e9d084..58e2b3b646 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/vox.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/vox.yml @@ -16,6 +16,16 @@ #- 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 - type: Speech speechVerb: Vox speechSounds: Vox @@ -49,6 +59,52 @@ damage: types: Slash: 5 # Reduce? + - type: Sprite # Need to redefine the whole order to draw the tail over their gas tank + 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.LFoot" ] + - map: [ "enum.HumanoidVisualLayers.RFoot" ] + - map: [ "enum.HumanoidVisualLayers.LHand" ] + - map: [ "enum.HumanoidVisualLayers.RHand" ] + - map: [ "gloves" ] + - map: [ "shoes" ] + - map: [ "ears" ] + - map: [ "outerClothing" ] + - map: [ "eyes" ] + - map: [ "belt" ] + - map: [ "id" ] + - map: [ "neck" ] + - map: [ "back" ] + - map: [ "enum.HumanoidVisualLayers.FacialHair" ] + - map: [ "enum.HumanoidVisualLayers.Hair" ] + - map: [ "enum.HumanoidVisualLayers.HeadSide" ] + - map: [ "enum.HumanoidVisualLayers.HeadTop" ] + - map: [ "suitstorage" ] # This is not in the default order + - map: [ "enum.HumanoidVisualLayers.Tail" ] + - map: [ "mask" ] + - map: [ "head" ] + - map: [ "pocket1" ] + - map: [ "pocket2" ] + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - map: [ "clownedon" ] + sprite: "Effects/creampie.rsi" + state: "creampie_vox" # Not default + visible: false + - type: FootPrints + leftBarePrint: "footprint-left-bare-lizard" + rightBarePrint: "footprint-right-bare-lizard" - type: entity parent: BaseSpeciesDummy diff --git a/Resources/Prototypes/Entities/Mobs/base.yml b/Resources/Prototypes/Entities/Mobs/base.yml index 6f25841f50..a815bc0d1a 100644 --- a/Resources/Prototypes/Entities/Mobs/base.yml +++ b/Resources/Prototypes/Entities/Mobs/base.yml @@ -48,6 +48,7 @@ active: False - type: OwnInteractionVerbs allowedVerbs: [] # TODO: define something here, or don't. + - type: Penetrated # WD EDIT # Used for mobs that have health and can take damage. - type: entity @@ -197,7 +198,7 @@ canResistFire: true damage: #per second, scales with number of fire 'stacks' types: - Heat: 3 + Heat: 1.5 - type: FireVisuals sprite: Mobs/Effects/onfire.rsi normalState: Generic_mob_burning @@ -233,3 +234,5 @@ bloodlossHealDamage: types: Bloodloss: -1 + bloodRegenerationHunger: 1 + bloodRegenerationThirst: 1.5 # 1 unit of normal blood satiates 1t, 0.3t for vampires, 0.75h, and restores 0.25 blood for non-humans... diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks-cartons.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks-cartons.yml index d694b153b1..a2e3f51944 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks-cartons.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks-cartons.yml @@ -15,6 +15,9 @@ solutions: drink: maxVol: 50 + - type: PressurizedSolution + solution: drink + - type: Shakeable - type: Sprite state: icon - type: Item diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml index 545b3559f8..d16993e809 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml @@ -10,6 +10,8 @@ solutions: drink: maxVol: 30 + - type: MixableSolution + solution: drink - type: SolutionTransfer canChangeTransferAmount: true - type: Drink @@ -32,8 +34,8 @@ solution: drink - type: UserInterface interfaces: - - key: enum.TransferAmountUiKey.Key - type: TransferAmountBoundUserInterface + enum.TransferAmountUiKey.Key: + type: TransferAmountBoundUserInterface - type: EmitSoundOnPickup sound: path: /Audio/SimpleStation14/Items/Handling/drinkglass_pickup.ogg @@ -49,6 +51,31 @@ path: /Audio/SimpleStation14/Items/Handling/drinkglass_drop.ogg params: volume: -2 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.25,0.25,0.25" + density: 30 + mask: + - ItemMask + layer: + - BulletImpassable # Ever seen a John Woo movie? + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 5 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + params: + volume: -6 + - !type:SpillBehavior { } + - !type:DoActsBehavior + acts: [ "Destruction" ] - type: entity parent: DrinkBase @@ -517,6 +544,22 @@ sprite: Objects/Consumable/Drinks/bravebullglass.rsi state: icon +- type: entity + parent: DrinkGlass + id: BudgetInsulsDrinkGlass + suffix: budget insuls + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: BudgetInsulsDrink + Quantity: 30 + - type: Icon + sprite: Objects/Consumable/Drinks/budgetinsulsdrink.rsi + state: icon + - type: entity parent: DrinkGlass id: DrinkCarrotJuice @@ -549,6 +592,22 @@ sprite: Objects/Consumable/Drinks/chocolateglass.rsi state: icon +- type: entity + parent: DrinkGlass + id: RubberneckGlass + suffix: rubberneck + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Rubberneck + Quantity: 30 + - type: Icon + sprite: Objects/Consumable/Drinks/rubberneck.rsi + state: icon + - type: entity parent: DrinkGlass id: DrinkCoconutRum @@ -1075,6 +1134,22 @@ sprite: Objects/Consumable/Drinks/icecreamglass.rsi state: icon +- type: entity + parent: DrinkGlass + id: IrishBoolGlass + suffix: irish bool + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: IrishBool + Quantity: 30 + - type: Icon + sprite: Objects/Consumable/Drinks/beerglass.rsi + state: icon + - type: entity parent: DrinkGlass id: DrinkIrishCarBomb @@ -2069,6 +2144,22 @@ sprite: Objects/Consumable/Drinks/martiniglass.rsi state: icon +- type: entity + parent: DrinkGlass + id: DrinkVodkaRedBool + suffix: vodka red bool + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: VodkaRedBool + Quantity: 30 + - type: Icon + sprite: Objects/Consumable/Drinks/ginvodkaglass.rsi + state: icon + - type: entity parent: DrinkGlass id: DrinkVodkaTonicGlass @@ -2115,6 +2206,22 @@ - ReagentId: JuiceWatermelon Quantity: 30 +- type: entity + parent: DrinkGlass + id: DrinkWatermelonWakeup + suffix: watermelon wakeup + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: WatermelonWakeup + Quantity: 30 + - type: Icon + sprite: Objects/Consumable/Drinks/champagneglass.rsi + state: icon + - type: entity parent: DrinkGlass id: DrinkWhiskeyColaGlass @@ -2195,6 +2302,22 @@ sprite: Objects/Consumable/Drinks/wineglass.rsi state: icon +- type: entity + parent: DrinkGlass + id: XenoBasherGlass + suffix: xeno basher + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: XenoBasher + Quantity: 30 + - type: Icon + sprite: Objects/Consumable/Drinks/xenobasher.rsi + state: icon + # TODO: MOVE - 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 a6752286dd..7a4983b14d 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml @@ -31,6 +31,9 @@ !type:DamageTrigger damage: 5 behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak - !type:SpillBehavior { } - !type:DoActsBehavior acts: [ "Destruction" ] @@ -39,6 +42,9 @@ - type: PhysicalComposition materialComposition: Plastic: 100 + - type: PressurizedSolution + solution: drink + - type: Shakeable - type: entity parent: DrinkBottlePlasticBaseFull @@ -368,6 +374,7 @@ - type: Tag tags: - Wine + - DrinkBottle - type: entity parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull] @@ -517,6 +524,7 @@ - type: Tag tags: - Wine + - DrinkBottle # Small Bottles @@ -542,6 +550,7 @@ - type: Tag tags: - Beer + - DrinkBottle - type: entity parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull] @@ -565,7 +574,7 @@ - type: Tag tags: - Beer - + - DrinkBottle - type: entity parent: [DrinkBottleVisualsAll, DrinkBottlePlasticBaseFull] diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml index 9d4d8447d4..2549f2d1e8 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml @@ -6,7 +6,7 @@ components: - type: Drink - type: Openable - - type: PressurizedDrink + - type: Shakeable - type: SolutionContainerManager solutions: drink: @@ -14,13 +14,15 @@ - ReagentId: Cola Quantity: 30 maxVol: 30 + - type: MixableSolution + solution: drink - type: SolutionTransfer canChangeTransferAmount: true maxTransferAmount: 15 - type: UserInterface interfaces: - - key: enum.TransferAmountUiKey.Key - type: TransferAmountBoundUserInterface + enum.TransferAmountUiKey.Key: + type: TransferAmountBoundUserInterface - type: Sprite state: icon layers: @@ -34,6 +36,8 @@ solution: drink - type: DrainableSolution solution: drink + - type: PressurizedSolution + solution: drink - type: Appearance - type: GenericVisualizer visuals: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml index 9ad51490df..2d6e5f7e35 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml @@ -10,7 +10,8 @@ solutions: drink: maxVol: 20 - canMix: true + - type: MixableSolution + solution: drink - type: FitsInDispenser solution: drink - type: DrawableSolution @@ -24,8 +25,8 @@ maxTransferAmount: 10 - type: UserInterface interfaces: - - key: enum.TransferAmountUiKey.Key - type: TransferAmountBoundUserInterface + enum.TransferAmountUiKey.Key: + type: TransferAmountBoundUserInterface - type: Drink - type: Sprite state: icon diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml index 2fd2331f91..ef6208b69d 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml @@ -146,6 +146,9 @@ - type: RandomFillSolution solution: drink weightedRandomId: RandomFillMopwata + - type: PressurizedSolution + solution: drink + - type: Shakeable - type: Appearance - type: GenericVisualizer visuals: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml index 9a523c997b..9c87995f5e 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml @@ -8,7 +8,10 @@ solutions: drink: maxVol: 100 + - type: MixableSolution + solution: drink - type: Drink + - type: Shakeable # Doesn't do anything, but I mean... - type: FitsInDispenser solution: drink - type: DrawableSolution @@ -26,8 +29,8 @@ state: icon - type: UserInterface interfaces: - - key: enum.TransferAmountUiKey.Key - type: TransferAmountBoundUserInterface + enum.TransferAmountUiKey.Key: + type: TransferAmountBoundUserInterface - type: PhysicalComposition materialComposition: Steel: 50 @@ -107,3 +110,63 @@ - type: Drink - type: Sprite sprite: Objects/Consumable/Drinks/jar_what.rsi + +- type: entity + id: BartenderMixer + abstract: true + components: + - type: DrainableSolution + solution: drink + - type: Drink + - type: DrawableSolution + solution: drink + - type: RefillableSolution + solution: drink + - type: SolutionTransfer + canChangeTransferAmount: true + - type: Spillable + solution: drink + - type: UserInterface + interfaces: + enum.TransferAmountUiKey.Key: + type: TransferAmountBoundUserInterface + +- type: entity + parent: [BaseItem, BartenderMixer] + id: DrinkJigger + name: jigger + description: Like a shaker, but smaller. Used to control the amount of ingredients. + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 20 + - type: MixableSolution + solution: drink + - type: FitsInDispenser + solution: drink + - type: Sprite + sprite: Objects/Consumable/Drinks/jigger.rsi + state: icon + - type: PhysicalComposition + materialComposition: + Steel: 20 + +- type: entity + parent: [BaseItem, BartenderMixer] + id: DrinkIceBucket + name: ice bucket + description: A special bucket of refreshy ice. Prohibited use for challenge with the same name! + components: + - type: SolutionContainerManager + solutions: + drink: + reagents: + - ReagentId: Ice + Quantity: 200 + - type: Sprite + sprite: Objects/Consumable/Drinks/icebucket.rsi + state: icon + - type: PhysicalComposition + materialComposition: + Steel: 75 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/trash_drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/trash_drinks.yml index 62823e4ce4..d737b57e15 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/trash_drinks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/trash_drinks.yml @@ -26,6 +26,8 @@ damage: types: Blunt: 0 + - type: MixableSolution + solution: drink - type: Spillable solution: drink - type: FitsInDispenser @@ -38,8 +40,8 @@ solution: drink - type: UserInterface interfaces: - - key: enum.TransferAmountUiKey.Key - type: TransferAmountBoundUserInterface + enum.TransferAmountUiKey.Key: + type: TransferAmountBoundUserInterface - type: DamageOnLand damage: types: @@ -103,6 +105,8 @@ solutions: drink: maxVol: 50 + - type: MixableSolution + solution: drink - type: SolutionTransfer canChangeTransferAmount: true maxTransferAmount: 5 @@ -119,8 +123,8 @@ solution: drink - type: UserInterface interfaces: - - key: enum.TransferAmountUiKey.Key - type: TransferAmountBoundUserInterface + enum.TransferAmountUiKey.Key: + type: TransferAmountBoundUserInterface - type: Damageable damageContainer: Inorganic - type: Destructible @@ -215,12 +219,12 @@ - type: entity - name: goldschlager bottle + name: gildlager bottle parent: DrinkBottleBaseEmpty - id: DrinkBottleGoldschlager + id: DrinkBottleGildlager components: - type: Sprite - sprite: Objects/Consumable/TrashDrinks/goldschlagerbottle_empty.rsi + sprite: Objects/Consumable/TrashDrinks/gildlagerbottle_empty.rsi - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml index 32a1815ac7..e40ac40a28 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml @@ -810,6 +810,8 @@ allowMovement: true description: ghost-role-information-BreadDog-description rules: ghost-role-information-BreadDog-rules + raffle: + settings: short - type: GhostTakeoverAvailable - type: BarkAccent - type: Speech @@ -827,6 +829,7 @@ - type: Puller needsHands: false - type: Examiner + - type: DoAfter - type: CombatMode - type: MeleeWeapon soundHit: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml index 71b38959ce..c939dec52c 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml @@ -672,6 +672,8 @@ allowMovement: true description: ghost-role-information-Cak-description rules: ghost-role-information-Cak-rules + raffle: + settings: short - type: GhostTakeoverAvailable - type: OwOAccent - type: Speech @@ -689,6 +691,7 @@ - type: Puller needsHands: false - type: Examiner + - type: DoAfter - type: CombatMode - type: MeleeWeapon soundHit: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml index 4595329635..40cb141af7 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml @@ -19,6 +19,8 @@ - map: ["enum.SolutionContainerLayers.Fill"] state: fill-1 visible: false + - type: MixableSolution + solution: food - type: DamageOnLand damage: types: @@ -35,8 +37,8 @@ canChangeTransferAmount: true - type: UserInterface interfaces: - - key: enum.TransferAmountUiKey.Key - type: TransferAmountBoundUserInterface + enum.TransferAmountUiKey.Key: + type: TransferAmountBoundUserInterface - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml index 966ae86db1..aa9e70f3fa 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml @@ -567,7 +567,6 @@ - type: Tag tags: - Trash - - HappyHonk - MimeHappyHonk - type: Sprite sprite: Objects/Storage/Happyhonk/mime.rsi @@ -664,6 +663,10 @@ name: woeful cluwne meal description: Nothing good can come of this. components: + - type: Tag + tags: + - Trash + - CluwneHappyHonk - type: Sprite sprite: Objects/Storage/Happyhonk/cluwne.rsi state: box diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml index 63c47df67e..3bd66e8a48 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml @@ -54,6 +54,17 @@ materialComposition: Glass: 60 - type: SpaceGarbage + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.25,0.25,0.25" + density: 25 + mask: + - ItemMask + layer: + - BulletImpassable # Ever seen a John Woo movie? - type: entity name: broken plate diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index 930d7fa64d..3bf253f773 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -1136,9 +1136,9 @@ Quantity: 1 - type: entity - name: chili + name: chili pepper parent: FoodProduceBase - id: FoodChili + id: FoodChiliPepper description: Spicy, best not touch your eyes. components: - type: FlavorProfile @@ -1166,7 +1166,7 @@ - type: entity name: chilly pepper parent: FoodProduceBase - id: FoodChilly + id: FoodChillyPepper description: Icy hot. components: - type: FlavorProfile @@ -1872,3 +1872,36 @@ tags: - ClothMade - CottonBoll + +- type: entity + name: pyrotton boll + description: This will probably set you on fire. + id: PyrottonBol + parent: FoodProduceBase + components: + - type: Sprite + sprite: Objects/Specific/Hydroponics/pyrotton.rsi + - type: FlavorProfile + flavors: + - pyrotton + - type: Food + requiresSpecialDigestion: true + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Fiber + Quantity: 5 + - ReagentId: Phlogiston + Quantity: 5 + - type: Log + spawnedPrototype: MaterialPyrotton1 + spawnCount: 2 + - type: Produce + seedId: pyrotton + - type: Tag + tags: + - ClothMade + - CottonBoll + - type: Extractable + grindableSolutionName: food diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/joints.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/joints.yml index e3ae06ec9f..9a0d96e89e 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/joints.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/joints.yml @@ -28,6 +28,34 @@ reagents: - ReagentId: THC Quantity: 20 + +- type: entity + id: JointRainbow + parent: Joint + name: joint + suffix: Rainbow + description: A roll of dried plant matter wrapped in thin paper. Seems to be colorful inside. + components: + - type: Construction + graph: smokeableJointRainbow + node: jointRainbow + - type: SolutionContainerManager + solutions: + smokable: + maxVol: 20 + reagents: + - ReagentId: SpaceDrugs + Quantity: 4 + - ReagentId: Lipolicide + Quantity: 4 + - ReagentId: MindbreakerToxin + Quantity: 2.66 + - ReagentId: Happiness + Quantity: 2.66 +# - ReagentId: ColorfulReagent +# Quantity: 1.33 + - ReagentId: Psicodine + Quantity: 0.8 - type: entity id: Blunt @@ -59,3 +87,31 @@ reagents: - ReagentId: THC Quantity: 20 + +- type: entity + id: BluntRainbow + parent: Blunt + name: blunt + suffix: Rainbow + description: A roll of dried plant matter wrapped in a dried tobacco leaf. Seems to be colorful inside. + components: + - type: Construction + graph: smokeableBluntRainbow + node: bluntRainbow + - type: SolutionContainerManager + solutions: + smokable: + maxVol: 20 + reagents: + - ReagentId: SpaceDrugs + Quantity: 4 + - ReagentId: Lipolicide + Quantity: 4 + - ReagentId: MindbreakerToxin + Quantity: 2.66 + - ReagentId: Happiness + Quantity: 2.66 +# - ReagentId: ColorfulReagent +# Quantity: 1.33 + - ReagentId: Psicodine + Quantity: 0.8 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Pipes/pipe.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Pipes/pipe.yml index c3f13d80b7..79c568802c 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Pipes/pipe.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Pipes/pipe.yml @@ -63,3 +63,26 @@ path: /Audio/Weapons/Guns/Empty/empty.ogg ejectSound: path: /Audio/Weapons/Guns/Empty/empty.ogg + +- type: entity + id: SmokingPipeFilledCannabisRainbow + parent: SmokingPipe + name: pipe + suffix: Rainbow Cannabis + description: Just like grandpappy used to smoke. + components: + - type: ContainerContainer + containers: + bowl_slot: !type:ContainerSlot + - type: ItemSlots + - type: SmokingPipe + bowl_slot: + name: smoking-pipe-slot-component-slot-name-bowl + startingItem: GroundCannabisRainbow + whitelist: + tags: + - Smokable + insertSound: + path: /Audio/Weapons/Guns/Empty/empty.ogg + ejectSound: + path: /Audio/Weapons/Guns/Empty/empty.ogg diff --git a/Resources/Prototypes/Entities/Objects/Decoration/flora.yml b/Resources/Prototypes/Entities/Objects/Decoration/flora.yml index f35d222d39..1bd86bf349 100644 --- a/Resources/Prototypes/Entities/Objects/Decoration/flora.yml +++ b/Resources/Prototypes/Entities/Objects/Decoration/flora.yml @@ -627,3 +627,113 @@ - type: Sprite sprite: Objects/Decoration/Flora/flora_treeslight.rsi state: tree06 + +#Autumn large tree +- type: entity + parent: BaseTreeLarge + id: FloraTreeAutumnOrangeLarge01 + name: large tree + components: + - type: Sprite + sprite: _White/Objects/Decoration/Flora/autumn_treeslarge.rsi + state: orangelarge01 + +- type: entity + parent: BaseTreeLarge + id: FloraTreeAutumnOrangeLarge02 + name: large tree + components: + - type: Sprite + sprite: _White/Objects/Decoration/Flora/autumn_treeslarge.rsi + state: orangelarge02 + +- type: entity + parent: BaseTreeLarge + id: FloraTreeAutumnOrangeLarge03 + name: large tree + components: + - type: Sprite + sprite: _White/Objects/Decoration/Flora/autumn_treeslarge.rsi + state: orangelarge03 + +- type: entity + parent: BaseTreeLarge + id: FloraTreeAutumnOrangeLarge04 + name: large tree + components: + - type: Sprite + sprite: _White/Objects/Decoration/Flora/autumn_treeslarge.rsi + state: orangelarge04 + +- type: entity + parent: BaseTreeLarge + id: FloraTreeAutumnOrangeLarge05 + name: large tree + components: + - type: Sprite + sprite: _White/Objects/Decoration/Flora/autumn_treeslarge.rsi + state: orangelarge05 + +- type: entity + parent: BaseTreeLarge + id: FloraTreeAutumnOrangeLarge06 + name: large tree + components: + - type: Sprite + sprite: _White/Objects/Decoration/Flora/autumn_treeslarge.rsi + state: orangelarge06 + +#Autumn tree +- type: entity + parent: BaseTree + id: FloraTreeAutumnOrange01 + name: tree + components: + - type: Sprite + sprite: _White/Objects/Decoration/Flora/autumn_trees.rsi + state: orange01 + +- type: entity + parent: BaseTree + id: FloraTreeAutumnOrange02 + name: tree + components: + - type: Sprite + sprite: _White/Objects/Decoration/Flora/autumn_trees.rsi + state: orange02 + +- type: entity + parent: BaseTree + id: FloraTreeAutumnOrange03 + name: tree + components: + - type: Sprite + sprite: _White/Objects/Decoration/Flora/autumn_trees.rsi + state: orange03 + +- type: entity + parent: BaseTree + id: FloraTreeAutumnOrange04 + name: tree + components: + - type: Sprite + sprite: _White/Objects/Decoration/Flora/autumn_trees.rsi + state: orange04 + +- type: entity + parent: BaseTree + id: FloraTreeAutumnOrange05 + name: tree + components: + - type: Sprite + sprite: _White/Objects/Decoration/Flora/autumn_trees.rsi + state: orange05 + +- type: entity + parent: BaseTree + id: FloraTreeAutumnOrange06 + name: tree + components: + - type: Sprite + sprite: _White/Objects/Decoration/Flora/autumn_trees.rsi + state: orange06 diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/base_machineboard.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/base_machineboard.yml index 164777284f..360fc5ffaa 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/base_machineboard.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/base_machineboard.yml @@ -15,7 +15,7 @@ price: 100 - type: PhysicalComposition materialComposition: - Glass: 400 + Glass: 230 chemicalComposition: Silicon: 20 diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index 62f3bbcb3f..a34af1c9d8 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -29,6 +29,10 @@ Amount: 1 DefaultPrototype: Igniter ExamineName: Igniter + - type: ReverseEngineering # Delta + difficulty: 2 + recipes: + - AutolatheHyperConvectionMachineCircuitboard - type: entity id: ProtolatheMachineCircuitboard @@ -66,6 +70,10 @@ Amount: 1 DefaultPrototype: Igniter ExamineName: Igniter + - type: ReverseEngineering # Delta + difficulty: 2 + recipes: + - ProtolatheHyperConvectionMachineCircuitboard - type: entity id: BiofabricatorMachineCircuitboard @@ -79,6 +87,10 @@ MatterBin: 4 materialRequirements: Glass: 1 + - type: ReverseEngineering # Delta + difficulty: 2 + recipes: + - BiofabricatorMachineCircuitboard - type: entity id: SecurityTechFabCircuitboard @@ -151,10 +163,28 @@ Amount: 2 DefaultPrototype: Beaker ExamineName: Glass Beaker - - type: ReverseEngineering # Nyano - difficulty: 3 - recipes: - - CircuitImprinterMachineCircuitboard + +- type: entity + parent: BaseMachineCircuitboard + id: CircuitImprinterHyperConvectionMachineCircuitboard + name: hyper convection circuit imprinter machine board + description: A machine printed circuit board for a hyper convection circuit imprinter. + components: + - type: Sprite + state: science + - type: MachineBoard + prototype: CircuitImprinterHyperConvection + requirements: + MatterBin: 2 + tagRequirements: + GlassBeaker: + Amount: 2 + DefaultPrototype: Beaker + ExamineName: Glass Beaker + Igniter: + Amount: 1 + DefaultPrototype: Igniter + ExamineName: Igniter - type: entity id: ExosuitFabricatorMachineCircuitboard @@ -171,7 +201,7 @@ materialRequirements: Glass: 5 - type: ReverseEngineering # Nyano - difficulty: 3 + difficulty: 2 recipes: - ExosuitFabricatorMachineCircuitboard - type: GuideHelp @@ -202,10 +232,6 @@ requirements: MatterBin: 1 Manipulator: 2 - - type: ReverseEngineering # Nyano - difficulty: 2 - recipes: - - UniformPrinterMachineCircuitboard - type: entity id: VaccinatorMachineCircuitboard @@ -277,27 +303,6 @@ recipes: - ArtifactAnalyzerMachineCircuitboard -- type: entity - id: TraversalDistorterMachineCircuitboard - parent: BaseMachineCircuitboard - name: traversal distorter machine board - description: A machine printed circuit board for a traversal distorter. - components: - - type: Sprite - state: science - - type: MachineBoard - prototype: MachineTraversalDistorter - requirements: - Manipulator: 1 - Capacitor: 2 - materialRequirements: - Steel: 5 - Cable: 1 - - type: ReverseEngineering # Nyano - difficulty: 2 - recipes: - - TraversalDistorterMachineCircuitboard - - type: entity id: ArtifactCrusherMachineCircuitboard parent: BaseMachineCircuitboard @@ -313,6 +318,10 @@ materialRequirements: Glass: 1 Steel: 5 + - type: ReverseEngineering # Delta + difficulty: 3 + recipes: + - ArtifactCrusherMachineCircuitboard - type: entity parent: BaseMachineCircuitboard @@ -350,6 +359,10 @@ Cable: 5 PlasmaGlass: 15 MetalRod: 4 + - type: ReverseEngineering # Nyano + difficulty: 2 + recipes: + - AnomalyVesselExperimentalCircuitboard - type: entity parent: BaseMachineCircuitboard @@ -367,6 +380,10 @@ materialRequirements: PlasmaGlass: 5 Cable: 5 + - type: ReverseEngineering # Delta + difficulty: 3 + recipes: + - AnomalySynchronizerCircuitboard - type: entity parent: BaseMachineCircuitboard @@ -451,6 +468,10 @@ deconstructionTarget: null graph: ThermomachineBoard node: hellfirefreezer + - type: ReverseEngineering # Delta + difficulty: 3 + recipes: + - HellfireFreezerMachineCircuitBoard - type: entity parent: BaseMachineCircuitboard @@ -596,6 +617,10 @@ materialRequirements: Steel: 1 Cable: 2 + - type: ReverseEngineering # Delta + difficulty: 3 + recipes: + - CrewMonitoringServerMachineCircuitboard - type: entity id: CryoPodMachineCircuitboard @@ -635,10 +660,6 @@ Amount: 2 DefaultPrototype: Beaker ExamineName: Glass Beaker - - type: ReverseEngineering # Nyano - difficulty: 2 - recipes: - - ChemMasterMachineCircuitboard - type: entity id: ChemDispenserMachineCircuitboard @@ -660,10 +681,6 @@ Amount: 2 DefaultPrototype: Beaker ExamineName: Glass Beaker - - type: ReverseEngineering # Nyano - difficulty: 2 - recipes: - - ChemDispenserMachineCircuitboard - type: entity id: BiomassReclaimerMachineCircuitboard @@ -750,9 +767,6 @@ PowerCell: 4 materialRequirements: CableHV: 10 - - type: ReverseEngineering # Nyano - recipes: - - SMESMachineCircuitboard - type: entity id: CellRechargerCircuitboard @@ -862,6 +876,10 @@ materialComposition: Steel: 30 Plastic: 30 + - type: ReverseEngineering # Delta + difficulty: 2 + recipes: + - TurboItemRechargerCircuitboard - type: entity id: SubstationMachineCircuitboard @@ -877,9 +895,6 @@ materialRequirements: CableMV: 5 CableHV: 5 - - type: ReverseEngineering # Nyano - recipes: - - SubstationMachineCircuitboard - type: PhysicalComposition materialComposition: Glass: 200 @@ -921,7 +936,7 @@ DefaultPrototype: SaxophoneInstrument ExamineName: Woodwind Instrument - type: ReverseEngineering # Nyano - difficulty: 3 + difficulty: 2 recipes: - DawInstrumentMachineCircuitboard @@ -938,10 +953,6 @@ Capacitor: 1 materialRequirements: CableHV: 5 - - type: ReverseEngineering # Nyano - difficulty: 2 - recipes: - - GeneratorPlasmaMachineCircuitboard - type: PhysicalComposition materialComposition: Glass: 200 @@ -949,6 +960,10 @@ Silicon: 20 - type: StaticPrice price: 40 + - type: ReverseEngineering # Nyano + difficulty: 2 + recipes: + - PortableGeneratorPacmanMachineCircuitboard - type: entity id: ThrusterMachineCircuitboard @@ -961,6 +976,10 @@ Capacitor: 4 materialRequirements: Steel: 5 + - type: ReverseEngineering # Delta + difficulty: 3 + recipes: + - ThrusterMachineCircuitboard - type: entity id: GyroscopeMachineCircuitboard @@ -974,6 +993,10 @@ Capacitor: 1 materialRequirements: Glass: 2 + - type: ReverseEngineering # Delta + difficulty: 3 + recipes: + - GyroscopeMachineCircuitboard - type: entity id: PortableGeneratorSuperPacmanMachineCircuitboard @@ -993,12 +1016,12 @@ Glass: 200 chemicalComposition: Silicon: 20 + - type: StaticPrice + price: 40 - type: ReverseEngineering # Nyano difficulty: 2 recipes: - PortableGeneratorSuperPacmanMachineCircuitboard - - type: StaticPrice - price: 40 - type: entity id: PortableGeneratorJrPacmanMachineCircuitboard @@ -1020,6 +1043,10 @@ Silicon: 20 - type: StaticPrice price: 40 + - type: ReverseEngineering # Nyano + difficulty: 2 + recipes: + - PortableGeneratorJrPacmanMachineCircuitboard - type: entity id: ReagentGrinderMachineCircuitboard @@ -1054,7 +1081,7 @@ Capacitor: 2 materialRequirements: Glass: 1 - - type: ReverseEngineering # Nyano + - type: ReverseEngineering # Delta difficulty: 2 recipes: - HotplateMachineCircuitboard @@ -1072,6 +1099,10 @@ materialRequirements: Glass: 2 Cable: 5 + - type: ReverseEngineering # Delta + difficulty: 2 + recipes: + - ElectricGrillMachineCircuitboard - type: entity id: StasisBedMachineCircuitboard @@ -1137,6 +1168,10 @@ materialRequirements: Steel: 5 Plastic: 5 + - type: ReverseEngineering # Delta + difficulty: 2 + recipes: + - MaterialReclaimerMachineCircuitboard - type: entity id: OreProcessorMachineCircuitboard @@ -1152,9 +1187,6 @@ Manipulator: 3 materialRequirements: Glass: 1 - - type: ReverseEngineering # Nyano - recipes: - - OreProcessorMachineCircuitboard - type: entity parent: BaseMachineCircuitboard @@ -1170,6 +1202,10 @@ Manipulator: 3 materialRequirements: Glass: 1 + - type: ReverseEngineering # Delta + difficulty: 2 + recipes: + - OreProcessorIndustrialMachineCircuitboard - type: entity id: SheetifierMachineCircuitboard @@ -1216,6 +1252,10 @@ Amount: 1 DefaultPrototype: ForkPlastic ExamineName: Utensil + - type: ReverseEngineering # Delta + difficulty: 2 + recipes: + - FatExtractorMachineCircuitboard - type: entity parent: BaseMachineCircuitboard @@ -1229,6 +1269,10 @@ MatterBin: 1 materialRequirements: Steel: 1 + - type: ReverseEngineering # Delta + difficulty: 2 + recipes: + - FlatpackerMachineCircuitboard - type: entity id: EmitterCircuitboard @@ -1348,9 +1392,6 @@ Amount: 1 DefaultPrototype: Beaker ExamineName: Glass Beaker - - type: ReverseEngineering # Nyano - recipes: - - BoozeDispenserMachineCircuitboard - type: entity id: CargoTelepadMachineCircuitboard @@ -1367,6 +1408,10 @@ materialRequirements: Steel: 5 Bluespace: 2 #DeltaV Bluespace Exists + - type: ReverseEngineering # Delta + difficulty: 3 + recipes: + - CargoTelepadMachineCircuitboard - type: entity id: SodaDispenserMachineCircuitboard @@ -1385,9 +1430,6 @@ Amount: 1 DefaultPrototype: Beaker ExamineName: Glass Beaker - - type: ReverseEngineering # Nyano - recipes: - - SodaDispenserMachineCircuitboard - type: entity id: TelecomServerCircuitboard @@ -1437,6 +1479,10 @@ Steel: 5 CableHV: 5 Uranium: 2 + - type: ReverseEngineering # Delta + difficulty: 3 + recipes: + - MiniGravityGeneratorCircuitboard - type: entity id: ShuttleGunSvalinnMachineGunCircuitboard @@ -1454,6 +1500,10 @@ materialRequirements: Steel: 5 CableHV: 5 + - type: ReverseEngineering # Delta + difficulty: 3 + recipes: + - ShuttleGunSvalinnMachineGunCircuitboard - type: entity id: ShuttleGunPerforatorCircuitboard @@ -1471,6 +1521,10 @@ materialRequirements: Steel: 10 CableHV: 5 + - type: ReverseEngineering # Delta + difficulty: 3 + recipes: + - ShuttleGunPerforatorCircuitboard - type: entity id: ShuttleGunFriendshipCircuitboard @@ -1488,6 +1542,10 @@ materialRequirements: Steel: 7 CableHV: 5 + - type: ReverseEngineering # Delta + difficulty: 3 + recipes: + - ShuttleGunFriendshipCircuitboard - type: entity id: ShuttleGunDusterCircuitboard @@ -1506,6 +1564,10 @@ Steel: 10 CableHV: 5 Uranium: 2 + - type: ReverseEngineering # Delta + difficulty: 4 + recipes: + - ShuttleGunDusterCircuitboard - type: entity id: ShuttleGunKineticCircuitboard @@ -1523,6 +1585,10 @@ materialRequirements: Steel: 5 CableHV: 2 + - type: ReverseEngineering # Delta + difficulty: 2 + recipes: + - ShuttleGunKineticCircuitboard - type: entity parent: BaseMachineCircuitboard @@ -1536,6 +1602,10 @@ Manipulator: 3 materialRequirements: Glass: 1 + - type: ReverseEngineering # Delta + difficulty: 2 + recipes: + - ReagentGrinderIndustrialMachineCircuitboard - type: entity parent: BaseMachineCircuitboard @@ -1550,3 +1620,28 @@ Steel: 2 Glass: 5 Cable: 2 + - type: ReverseEngineering # Delta + difficulty: 2 + recipes: + - JukeboxCircuitBoard + +- type: entity + id: TraversalDistorterMachineCircuitboard + parent: BaseMachineCircuitboard + name: traversal distorter machine board + description: A machine printed circuit board for a traversal distorter. + components: + - type: Sprite + state: science + - type: MachineBoard + prototype: MachineTraversalDistorter + requirements: + Manipulator: 1 + Capacitor: 2 + materialRequirements: + Steel: 5 + Cable: 1 + - type: ReverseEngineering # Nyano + difficulty: 2 + recipes: + - TraversalDistorterMachineCircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml index ffff8847ed..7681a459cb 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml @@ -14,15 +14,15 @@ price: 100 - type: PhysicalComposition materialComposition: - Glass: 400 + Glass: 230 chemicalComposition: Silicon: 20 - type: entity parent: BaseComputerCircuitboard id: AlertsComputerCircuitboard - name: alerts computer board - description: A computer printed circuit board for an alerts computer. + name: atmospheric alerts computer board + description: A computer printed circuit board for an atmospheric alerts computer. components: - type: ComputerBoard prototype: ComputerAlert @@ -122,6 +122,10 @@ prototype: ComputerSalvageExpedition - type: StealTarget stealGroup: SalvageExpeditionsComputerCircuitboard + - type: ReverseEngineering # Nyano + difficulty: 2 + recipes: + - SalvageExpeditionsComputerCircuitboard - type: entity parent: BaseComputerCircuitboard @@ -177,6 +181,10 @@ - type: Tag tags: - ComputerTelevisionCircuitboard + - type: ReverseEngineering # Nyano + difficulty: 2 + recipes: + - ComputerTelevisionCircuitboard - type: entity parent: BaseComputerCircuitboard @@ -286,6 +294,10 @@ components: - type: ComputerBoard prototype: ComputerRadar + - type: ReverseEngineering # Nyano + difficulty: 2 + recipes: + - RadarConsoleCircuitboard - type: entity parent: BaseComputerCircuitboard @@ -339,6 +351,10 @@ components: - type: ComputerBoard prototype: ComputerShuttle + - type: ReverseEngineering # Nyano + difficulty: 3 + recipes: + - ShuttleConsoleCircuitboard - type: entity parent: BaseComputerCircuitboard @@ -396,6 +412,10 @@ price: 150 - type: ComputerBoard prototype: ComputerMassMedia + - type: ReverseEngineering # Nyano + difficulty: 3 + recipes: + - ComputerMassMediaCircuitboard - type: entity parent: BaseComputerCircuitboard @@ -407,3 +427,14 @@ state: cpu_engineering - type: ComputerBoard prototype: ComputerSensorMonitoring + +- type: entity + parent: BaseComputerCircuitboard + id: RoboticsConsoleCircuitboard + name: robotics control console board + description: A computer printed circuit board for a robotics control console. + components: + - type: Sprite + state: cpu_science + - type: ComputerBoard + prototype: ComputerRoboticsControl diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/door.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/door.yml index b761ef7996..4d7dfed334 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Electronics/door.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/door.yml @@ -19,10 +19,10 @@ - type: AccessReader - type: ActivatableUI key: enum.DoorElectronicsConfigurationUiKey.Key - allowedItems: + requiredItems: tags: - DoorElectronicsConfigurator - type: UserInterface interfaces: - - key: enum.DoorElectronicsConfigurationUiKey.Key - type: DoorElectronicsBoundUserInterface + enum.DoorElectronicsConfigurationUiKey.Key: + type: DoorElectronicsBoundUserInterface diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml index ec8148f7d9..c8db255f7b 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml @@ -1,115 +1,117 @@ - +# Command - type: entity parent: DoorElectronics - id: DoorElectronicsService - suffix: Service, Locked + id: DoorElectronicsCaptain + suffix: Captain, Locked components: - type: AccessReader - access: [["Service"]] + access: [["Captain"]] - type: entity parent: DoorElectronics - id: DoorElectronicsTheatre - suffix: Theatre, Locked + id: DoorElectronicsHeadOfPersonnel + suffix: HeadOfPersonnel, Locked components: - type: AccessReader - access: [["Theatre"]] + access: [["HeadOfPersonnel"]] - type: entity parent: DoorElectronics - id: DoorElectronicsChapel - suffix: Chapel, Locked + id: DoorElectronicsCommand + suffix: Command, Locked components: - type: AccessReader - access: [["Chapel"]] + access: [["Command"]] +# Service - type: entity parent: DoorElectronics - id: DoorElectronicsJanitor - suffix: Janitor, Locked + id: DoorElectronicsBar + suffix: Bar, Locked components: - type: AccessReader - access: [["Janitor"]] + access: [["Bar"]] - type: entity parent: DoorElectronics - id: DoorElectronicsKitchen - suffix: Kitchen, Locked + id: DoorElectronicsBarKitchen + suffix: Bar, Locked components: - type: AccessReader - access: [["Kitchen"]] + access: [["Bar"], ["Kitchen"]] - type: entity parent: DoorElectronics - id: DoorElectronicsBar - suffix: Bar, Locked + id: DoorElectronicsHydroponics + suffix: Hydroponics, Locked components: - type: AccessReader - access: [["Bar"]] + access: [["Hydroponics"]] - type: entity parent: DoorElectronics - id: DoorElectronicsHydroponics - suffix: Hydroponics, Locked + id: DoorElectronicsChapel + suffix: Chapel, Locked components: - type: AccessReader - access: [["Hydroponics"]] + access: [["Chapel"]] - type: entity parent: DoorElectronics - id: DoorElectronicsLawyer - suffix: Lawyer, Locked + id: DoorElectronicsTheatre + suffix: Theatre, Locked components: - type: AccessReader - access: [["Lawyer"]] + access: [["Theatre"]] - type: entity parent: DoorElectronics - id: DoorElectronicsCaptain - suffix: Captain, Locked + id: DoorElectronicsKitchen + suffix: Kitchen, Locked components: - type: AccessReader - access: [["Captain"]] + access: [["Kitchen"]] - type: entity parent: DoorElectronics - id: DoorElectronicsExternal - suffix: External, Locked + id: DoorElectronicsKitchenHydroponics + suffix: Kitchen/Hydroponics, Locked components: - type: AccessReader - access: [["External"]] + access: [["Kitchen"], ["Hydroponics"]] - type: entity parent: DoorElectronics - id: DoorElectronicsCargo - suffix: Cargo, Locked + id: DoorElectronicsJanitor + suffix: Janitor, Locked components: - type: AccessReader - access: [["Cargo"]] + access: [["Janitor"]] - type: entity parent: DoorElectronics - id: DoorElectronicsEngineering - suffix: Engineering, Locked + id: DoorElectronicsLawyer + suffix: Lawyer, Locked components: - type: AccessReader - access: [["Engineering"]] + access: [["Lawyer"]] - type: entity parent: DoorElectronics - id: DoorElectronicsAtmospherics - suffix: Atmospherics, Locked + id: DoorElectronicsService + suffix: Service, Locked components: - type: AccessReader - access: [["Atmospherics"]] + access: [["Service"]] +# Cargo - type: entity parent: DoorElectronics - id: DoorElectronicsFreezer - suffix: Freezer, Locked + id: DoorElectronicsQuartermaster + suffix: Quartermaster, Locked components: - type: AccessReader - access: [["Kitchen"], ["Hydroponics"]] + access: [["Quartermaster"]] - type: entity parent: DoorElectronics @@ -121,68 +123,71 @@ - type: entity parent: DoorElectronics - id: DoorElectronicsMedical - suffix: Medical, Locked + id: DoorElectronicsCargo + suffix: Cargo, Locked components: - type: AccessReader - access: [["Medical"]] + access: [["Cargo"]] +# Engineering - type: entity parent: DoorElectronics - id: DoorElectronicsChemistry - suffix: Chemistry, Locked + id: DoorElectronicsChiefEngineer + suffix: ChiefEngineer, Locked components: - type: AccessReader - access: [["Chemistry"]] + access: [["ChiefEngineer"]] - type: entity parent: DoorElectronics - id: DoorElectronicsResearch - suffix: Research, Locked + id: DoorElectronicsAtmospherics + suffix: Atmospherics, Locked components: - type: AccessReader - access: [["Research"]] + access: [["Atmospherics"]] - type: entity parent: DoorElectronics - id: DoorElectronicsScience - suffix: Science, Locked + id: DoorElectronicsEngineering + suffix: Engineering, Locked components: - type: AccessReader - access: [["Research"], ["Medical"]] + access: [["Engineering"]] +# Science - type: entity parent: DoorElectronics - id: DoorElectronicsCommand - suffix: Command, Locked + id: DoorElectronicsMorgue + suffix: Morgue, Locked components: - type: AccessReader - access: [["Command"]] + access: [["Medical"], ["Detective"], ["Chapel"]] - type: entity parent: DoorElectronics - id: DoorElectronicsCentralCommand - suffix: CentralCommand, Locked + id: DoorElectronicsResearchDirector + suffix: ResearchDirector, Locked components: - type: AccessReader - access: [["CentralCommand"]] + access: [["ResearchDirector"]] - type: entity parent: DoorElectronics - id: DoorElectronicsChiefMedicalOfficer - suffix: ChiefMedicalOfficer, Locked + id: DoorElectronicsMedicalResearch + suffix: Medical/Science, Locked components: - type: AccessReader - access: [["ChiefMedicalOfficer"]] + access: [["Research"], ["Medical"]] - type: entity parent: DoorElectronics - id: DoorElectronicsChiefEngineer - suffix: ChiefEngineer, Locked + id: DoorElectronicsResearch + suffix: Research, Locked components: - type: AccessReader - access: [["ChiefEngineer"]] + access: [["Research"]] +# Security - type: entity parent: DoorElectronics id: DoorElectronicsHeadOfSecurity @@ -193,27 +198,19 @@ - type: entity parent: DoorElectronics - id: DoorElectronicsResearchDirector - suffix: ResearchDirector, Locked - components: - - type: AccessReader - access: [["ResearchDirector"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsHeadOfPersonnel - suffix: HeadOfPersonnel, Locked + id: DoorElectronicsArmory + suffix: Armory, Locked components: - type: AccessReader - access: [["HeadOfPersonnel"]] + access: [["Armory"]] - type: entity parent: DoorElectronics - id: DoorElectronicsQuartermaster - suffix: Quartermaster, Locked + id: DoorElectronicsDetective + suffix: Detective, Locked components: - type: AccessReader - access: [["Quartermaster"]] + access: [["Detective"]] - type: entity parent: DoorElectronics @@ -233,43 +230,45 @@ - type: entity parent: DoorElectronics - id: DoorElectronicsDetective - suffix: Detective, Locked + id: DoorElectronicsBrig + suffix: Brig, Locked components: - type: AccessReader - access: [["Detective"]] + access: [["Brig"]] -#- type: entity -# parent: DoorElectronics -# id: DoorElectronicsBrig -# suffix: Brig, Locked -# components: -# - type: AccessReader -# access: [["Brig"]] +# Medical +- type: entity + parent: DoorElectronics + id: DoorElectronicsChiefMedicalOfficer + suffix: ChiefMedicalOfficer, Locked + components: + - type: AccessReader + access: [["ChiefMedicalOfficer"]] - type: entity parent: DoorElectronics - id: DoorElectronicsArmory - suffix: Armory, Locked + id: DoorElectronicsChemistry + suffix: Chemistry, Locked components: - type: AccessReader - access: [["Armory"]] + access: [["Chemistry"]] - type: entity parent: DoorElectronics - id: DoorElectronicsVault - suffix: Vault, Locked + id: DoorElectronicsMedical + suffix: Medical, Locked components: - type: AccessReader - access: [["Security"], ["Command"]] + access: [["Medical"]] +# Syndicate - type: entity parent: DoorElectronics - id: DoorElectronicsMaintenance - suffix: Maintenance, Locked + id: DoorElectronicsNukeop + suffix: Nukeop, Locked components: - type: AccessReader - access: [["Maintenance"]] + access: [["NuclearOperative"]] - type: entity parent: DoorElectronics @@ -279,21 +278,38 @@ - type: AccessReader access: [["SyndicateAgent"]] +# Misc - type: entity parent: DoorElectronics - id: DoorElectronicsNukeop - suffix: Nukeop, Locked + id: DoorElectronicsCentralCommand + suffix: CentralCommand, Locked components: - type: AccessReader - access: [["NuclearOperative"]] + access: [["CentralCommand"]] - type: entity parent: DoorElectronics - id: DoorElectronicsRnDMed - suffix: Medical/Science, Locked + id: DoorElectronicsExternal + suffix: External, Locked components: - type: AccessReader - access: [["Research"], ["Medical"]] + access: [["External"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsMaintenance + suffix: Maintenance, Locked + components: + - type: AccessReader + access: [["Maintenance"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsVault + suffix: Vault, Locked + components: + - type: AccessReader + access: [["Security"], ["Command"]] - type: entity parent: DoorElectronics @@ -400,3 +416,11 @@ components: - type: AccessReader access: [["Psychologist"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsMail + suffix: Mail, Locked + components: + - type: AccessReader + access: [["Mail"]] diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/triggers.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/triggers.yml index 43ed20c694..2cb9b5233d 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Electronics/triggers.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/triggers.yml @@ -18,6 +18,8 @@ state: timer - type: Item size: Small + - type: StaticPrice + price: 40 - type: PayloadTrigger components: - type: OnUseTimerTrigger @@ -28,8 +30,6 @@ path: /Audio/Machines/Nuke/general_beep.ogg params: volume: -2 - - type: StaticPrice - price: 40 - type: entity parent: TimerTrigger @@ -40,6 +40,11 @@ - type: Sprite sprite: Objects/Devices/signaltrigger.rsi state: signaltrigger + - type: StaticPrice + price: 40 + - type: Tag + tags: + - SignalTrigger - type: PayloadTrigger components: - type: TriggerOnSignal @@ -49,8 +54,6 @@ - type: WirelessNetworkConnection range: 200 - type: DeviceLinkSink - - type: StaticPrice - price: 40 - type: entity parent: BaseItem @@ -61,11 +64,11 @@ - type: Sprite sprite: Objects/Devices/voice.rsi state: voice - - type: PayloadTrigger - components: - - type: TriggerOnVoice - type: StaticPrice price: 40 - type: Tag tags: - VoiceTrigger + - type: PayloadTrigger + components: + - type: TriggerOnVoice 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 a8489866fc..660a8c9e60 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml @@ -12,6 +12,8 @@ name: ghost-role-information-syndicate-reinforcement-name description: ghost-role-information-syndicate-reinforcement-description rules: ghost-role-information-syndicate-reinforcement-rules + raffle: + settings: default - type: GhostRoleMobSpawner prototype: MobHumanSyndicateAgent - type: EmitSoundOnUse @@ -29,24 +31,28 @@ - type: entity parent: ReinforcementRadioSyndicate - id: ReinforcementRadioSyndicateMonkey - name: syndicate monkey reinforcement radio - description: Calls in a specially trained monkey to assist you. + id: ReinforcementRadioSyndicateAncestor + name: syndicate genetic ancestor reinforcement radio + description: Calls in a specially trained ancestor of your choosing to assist you. components: - type: GhostRole name: ghost-role-information-syndicate-monkey-reinforcement-name description: ghost-role-information-syndicate-monkey-reinforcement-description rules: ghost-role-information-syndicate-monkey-reinforcement-rules + raffle: + settings: default - type: GhostRoleMobSpawner prototype: MobMonkeySyndicateAgent + selectablePrototypes: ["SyndicateMonkey", "SyndicateKobold"] - type: entity - parent: ReinforcementRadioSyndicateMonkey - id: ReinforcementRadioSyndicateMonkeyNukeops # Reinforcement radio exclusive to nukeops uplink + parent: ReinforcementRadioSyndicateAncestor + id: ReinforcementRadioSyndicateAncestorNukeops # Reinforcement radio exclusive to nukeops uplink suffix: NukeOps components: - type: GhostRoleMobSpawner prototype: MobMonkeySyndicateAgentNukeops + selectablePrototypes: ["SyndicateMonkeyNukeops", "SyndicateKoboldNukeops"] - type: entity parent: ReinforcementRadioSyndicate @@ -59,5 +65,7 @@ name: Syndicate Assault Cyborg description: Nuclear operatives needs reinforcements. You, a cold silicon killing machine, will help them. rules: Normal syndicate antagonist rules apply. Work with whoever called you in, and don't harm them. + raffle: + settings: default - type: GhostRoleMobSpawner prototype: PlayerBorgSyndicateAssaultBattery diff --git a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/war_declarator.yml b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/war_declarator.yml index 08e96d1de2..78009f1042 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/war_declarator.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/war_declarator.yml @@ -14,11 +14,11 @@ - type: ActivatableUI inHandsOnly: true singleUser: true - closeOnHandDeselect: false + requireActiveHand: false key: enum.WarDeclaratorUiKey.Key - type: UserInterface interfaces: - - key: enum.WarDeclaratorUiKey.Key + enum.WarDeclaratorUiKey.Key: type: WarDeclaratorBoundUserInterface - type: WarDeclarator message: war-declarator-default-message diff --git a/Resources/Prototypes/Entities/Objects/Devices/chameleon_projector.yml b/Resources/Prototypes/Entities/Objects/Devices/chameleon_projector.yml new file mode 100644 index 0000000000..e021281021 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Devices/chameleon_projector.yml @@ -0,0 +1,71 @@ +- type: entity + parent: BaseItem + id: ChameleonProjector + name: chameleon projector + description: Holoparasite technology used to create a hard-light replica of any object around you. Disguise is destroyed when picked up or deactivated. + components: + - type: Sprite + sprite: /Textures/Objects/Devices/chameleon_projector.rsi + state: icon + - type: ChameleonProjector + whitelist: + components: + - Anchorable + - Item + blacklist: + components: + - ChameleonDisguise # no becoming kleiner + - InsideEntityStorage # no clark kent going in phone booth and becoming superman + - MindContainer # no + - Pda # PDAs currently make you invisible /!\ + polymorph: + entity: ChameleonDisguise + +- type: entity + noSpawn: true + parent: BaseMob + id: ChameleonDisguise + name: Urist McKleiner + components: + # this and the name/desc get replaced, this is just placeholder incase something goes wrong + - type: Sprite + sprite: /Textures/Mobs/Species/Human/parts.rsi + state: full + # so people can attempt to pick it up + - type: Item + # so it can take damage + # projector system sets health to be proportional to mass + - type: Damageable + - type: MobState + - type: MobThresholds + thresholds: + 0: Alive + 1: Critical + 200: Dead + - type: MovementSpeedModifier + baseWalkSpeed: 1 # precise movement for the perfect spot + baseSprintSpeed: 5 # the jig is up + - type: ChameleonDisguise + +# actions +- type: entity + noSpawn: true + id: ActionDisguiseNoRot + name: Toggle Rotation + description: Use this to prevent your disguise from rotating, making it easier to hide in some scenarios. + components: + - type: InstantAction + icon: Interface/VerbIcons/refresh.svg.192dpi.png + event: !type:DisguiseToggleNoRotEvent + +- type: entity + noSpawn: true + id: ActionDisguiseAnchor + name: Toggle Anchored + description: For many objects you will want to be anchored to not be completely obvious. + components: + - type: InstantAction + icon: + sprite: Objects/Tools/wrench.rsi + state: icon + event: !type:DisguiseToggleAnchoredEvent diff --git a/Resources/Prototypes/Entities/Objects/Devices/flatpack.yml b/Resources/Prototypes/Entities/Objects/Devices/flatpack.yml index 5499348bd1..2aecd13288 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/flatpack.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/flatpack.yml @@ -110,6 +110,20 @@ - type: GuideHelp guides: [ Singularity, Power ] +- type: entity + parent: BaseFlatpack + id: EmitterFlatpack + name: emitter flatpack + description: A flatpack used for constructing an emitter. + components: + - type: Flatpack + entity: Emitter + - type: Sprite + layers: + - state: emitter + - type: GuideHelp + guides: [ Singularity, Power ] + - type: entity parent: BaseFlatpack id: TeslaGeneratorFlatpack diff --git a/Resources/Prototypes/Entities/Objects/Devices/forensic_scanner.yml b/Resources/Prototypes/Entities/Objects/Devices/forensic_scanner.yml index 7436ae7c98..170751766b 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/forensic_scanner.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/forensic_scanner.yml @@ -17,11 +17,11 @@ - type: ActivatableUI key: enum.ForensicScannerUiKey.Key inHandsOnly: true - closeOnHandDeselect: false + requireActiveHand: false - type: UserInterface interfaces: - - key: enum.ForensicScannerUiKey.Key - type: ForensicScannerBoundUserInterface + enum.ForensicScannerUiKey.Key: + type: ForensicScannerBoundUserInterface - type: ForensicScanner - type: GuideHelp guides: diff --git a/Resources/Prototypes/Entities/Objects/Devices/geiger.yml b/Resources/Prototypes/Entities/Objects/Devices/geiger.yml index de4178ce7f..f8ee24c5c6 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/geiger.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/geiger.yml @@ -31,4 +31,7 @@ Med: {state: geiger_on_med} High: {state: geiger_on_high} Extreme: {state: geiger_on_ext} + - type: PhysicalComposition + materialComposition: + Plastic: 100 diff --git a/Resources/Prototypes/Entities/Objects/Devices/hand_teleporter.yml b/Resources/Prototypes/Entities/Objects/Devices/hand_teleporter.yml index 2e6c2d8c27..deac20e05e 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/hand_teleporter.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/hand_teleporter.yml @@ -9,10 +9,6 @@ layers: - state: icon - type: HandTeleporter - - type: ReverseEngineering # Nyano - difficulty: 4 - recipes: - - HandTeleporter - type: Tag tags: - HighRiskItem diff --git a/Resources/Prototypes/Entities/Objects/Devices/holoprojectors.yml b/Resources/Prototypes/Entities/Objects/Devices/holoprojectors.yml index 5cbf64c560..134201a937 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/holoprojectors.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/holoprojectors.yml @@ -8,16 +8,7 @@ storedRotation: -90 - type: HolosignProjector - type: UseDelay - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot {} - - type: PowerCellSlot - cellSlotId: cell_slot - - type: ItemSlots - slots: - cell_slot: - name: power-cell-slot-component-slot-name-default - startingItem: PowerCellMedium + delay: 0.5 # WD EDIT - type: Sprite sprite: Objects/Devices/Holoprojectors/custodial.rsi state: icon @@ -25,31 +16,6 @@ tags: - HolosignProjector -- type: entity - parent: Holoprojector - id: HoloprojectorEmpty - suffix: Empty - components: - - type: ItemSlots - slots: - cell_slot: - name: power-cell-slot-component-slot-name-default - -- type: entity - parent: Holoprojector - id: HoloprojectorBorg - suffix: borg - components: - - type: HolosignProjector - chargeUse: 240 - - type: ItemSlots - slots: - cell_slot: - name: power-cell-slot-component-slot-name-default - startingItem: PowerCellMicroreactor - disableEject: true - swap: false - - type: entity parent: Holoprojector id: HolofanProjector @@ -58,7 +24,6 @@ components: - type: HolosignProjector signProto: HoloFan - chargeUse: 120 - type: Sprite sprite: Objects/Devices/Holoprojectors/atmos.rsi state: icon @@ -68,19 +33,10 @@ - type: StaticPrice price: 80 - type: ReverseEngineering # Nyano + difficulty: 3 recipes: - HolofanProjector -- type: entity - parent: HolofanProjector - id: HolofanProjectorEmpty - suffix: Empty - components: - - type: ItemSlots - slots: - cell_slot: - name: power-cell-slot-component-slot-name-default - - type: entity parent: Holoprojector id: HoloprojectorField @@ -89,7 +45,6 @@ components: - type: HolosignProjector signProto: HolosignForcefield - chargeUse: 120 - type: Sprite sprite: Objects/Devices/Holoprojectors/field.rsi state: icon @@ -98,16 +53,10 @@ - HolofanProjector - type: StaticPrice price: 130 - -- type: entity - parent: HoloprojectorField - id: HoloprojectorFieldEmpty - suffix: Empty - components: - - type: ItemSlots - slots: - cell_slot: - name: power-cell-slot-component-slot-name-default + - type: ReverseEngineering # Nyano + difficulty: 3 + recipes: + - HoloprojectorField - type: entity parent: Holoprojector @@ -117,7 +66,6 @@ components: - type: HolosignProjector signProto: HolosignSecurity - chargeUse: 120 - type: Sprite sprite: Objects/Devices/Holoprojectors/security.rsi state: icon @@ -126,13 +74,3 @@ - HolofanProjector - type: StaticPrice price: 50 - -- type: entity - parent: HoloprojectorSecurity - id: HoloprojectorSecurityEmpty - suffix: Empty - components: - - type: ItemSlots - slots: - cell_slot: - name: power-cell-slot-component-slot-name-default diff --git a/Resources/Prototypes/Entities/Objects/Devices/mousetrap.yml b/Resources/Prototypes/Entities/Objects/Devices/mousetrap.yml index 7e3d5c14ab..d20f3c2fb1 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/mousetrap.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/mousetrap.yml @@ -13,12 +13,12 @@ - type: StepTrigger intersectRatio: 0.2 requiredTriggeredSpeed: 0 - triggerGroups: # WD EDIT + triggerGroups: types: - Mousetrap - type: Mousetrap - type: TriggerOnStepTrigger - - type: ShoesRequiredStepTrigger + - type: ClothingRequiredStepTrigger - type: DamageUserOnTrigger damage: types: diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index 1768af15c2..ad8f3d5c71 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -86,19 +86,18 @@ - type: ActivatableUI key: enum.PdaUiKey.Key singleUser: true - closeOnHandDeselect: false - type: UserInterface interfaces: - - key: enum.PdaUiKey.Key - type: PdaBoundUserInterface - - key: enum.StoreUiKey.Key - type: StoreBoundUserInterface - - key: enum.RingerUiKey.Key - type: RingerBoundUserInterface - - key: enum.InstrumentUiKey.Key - type: InstrumentBoundUserInterface - - key: enum.HealthAnalyzerUiKey.Key - type: HealthAnalyzerBoundUserInterface + enum.PdaUiKey.Key: + type: PdaBoundUserInterface + enum.StoreUiKey.Key: + type: StoreBoundUserInterface + enum.RingerUiKey.Key: + type: RingerBoundUserInterface + enum.InstrumentUiKey.Key: + type: InstrumentBoundUserInterface + enum.HealthAnalyzerUiKey.Key: + type: HealthAnalyzerBoundUserInterface - type: Tag tags: - DoorBumpOpener @@ -272,7 +271,7 @@ paralyzeTime: 4 launchForwardsMultiplier: 1.5 - type: StepTrigger - triggerGroups: # WD EDIT + triggerGroups: types: - SlipEntity - type: CollisionWake @@ -358,6 +357,12 @@ accentVColor: "#a23e3e" - type: Icon state: pda-qm + - type: CartridgeLoader # Adds the MailMetrics courier tracker + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReaderCartridge + - MailMetricsCartridge - type: entity parent: BasePDA diff --git a/Resources/Prototypes/Entities/Objects/Devices/pinpointer.yml b/Resources/Prototypes/Entities/Objects/Devices/pinpointer.yml index f5e46bbf54..4d36af4459 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pinpointer.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pinpointer.yml @@ -57,6 +57,11 @@ - type: Sprite layers: - state: pinpointer-syndicate + map: ["enum.PinpointerLayers.Base"] + - state: pinonnull + map: ["enum.PinpointerLayers.Screen"] + shader: unshaded + visible: false - type: Icon state: pinpointer-syndicate - type: Pinpointer @@ -72,6 +77,11 @@ - type: Sprite layers: - state: pinpointer-way + map: ["enum.PinpointerLayers.Base"] + - state: pinonnull + map: ["enum.PinpointerLayers.Screen"] + shader: unshaded + visible: false - type: Icon state: pinpointer-way - type: Pinpointer @@ -88,8 +98,13 @@ - type: Sprite layers: - state: pinpointer-station + map: ["enum.PinpointerLayers.Base"] + - state: pinonnull + map: ["enum.PinpointerLayers.Screen"] + shader: unshaded + visible: false - type: Icon state: pinpointer-station - type: Pinpointer - component: BecomesStation + component: ResearchServer targetName: the station diff --git a/Resources/Prototypes/Entities/Objects/Devices/radio.yml b/Resources/Prototypes/Entities/Objects/Devices/radio.yml index 74c2865d07..43f84fe404 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/radio.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/radio.yml @@ -23,3 +23,20 @@ - type: Tag tags: - Radio + +- type: entity + name: security radio + description: A handy security radio. + parent: RadioHandheld + id: RadioHandheldSecurity + components: + - type: RadioMicrophone + broadcastChannel: Security + - type: RadioSpeaker + channels: + - Security + - type: Sprite + sprite: Objects/Devices/securityhandy.rsi + - type: Item + sprite: Objects/Devices/securityhandy.rsi + heldPrefix: walkietalkie \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Devices/station_beacon.yml b/Resources/Prototypes/Entities/Objects/Devices/station_beacon.yml index bc9711e16f..7f36fd25b7 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/station_beacon.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/station_beacon.yml @@ -30,8 +30,8 @@ singleUser: true - type: UserInterface interfaces: - - key: enum.NavMapBeaconUiKey.Key - type: NavMapBeaconBoundUserInterface + enum.NavMapBeaconUiKey.Key: + type: NavMapBeaconBoundUserInterface - type: Item size: Small - type: SubFloorHide diff --git a/Resources/Prototypes/Entities/Objects/Devices/station_map.yml b/Resources/Prototypes/Entities/Objects/Devices/station_map.yml index c37d8935f3..0d2f890a1d 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/station_map.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/station_map.yml @@ -28,7 +28,7 @@ acts: [ "Destruction" ] - type: UserInterface interfaces: - - key: enum.StationMapUiKey.Key + enum.StationMapUiKey.Key: type: StationMapBoundUserInterface - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Devices/swapper.yml b/Resources/Prototypes/Entities/Objects/Devices/swapper.yml index 8a743f4796..3ab014b28c 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/swapper.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/swapper.yml @@ -25,3 +25,7 @@ - type: Tag tags: - QuantumSpinInverter + - type: ReverseEngineering # Delta + difficulty: 4 + recipes: + - DeviceQuantumSpinInverter diff --git a/Resources/Prototypes/Entities/Objects/Devices/translator_implants.yml b/Resources/Prototypes/Entities/Objects/Devices/translator_implants.yml index da42b2774b..0e7fce9568 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/translator_implants.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/translator_implants.yml @@ -1,26 +1,26 @@ - type: entity parent: BaseSubdermalImplant - id: BasicGalacticCommonTranslatorImplant + id: BasicTauCetiBasicTranslatorImplant name: basic common translator implant description: Provides your illiterate friends the ability to understand the common galactic tongue. noSpawn: true components: - type: TranslatorImplant understood: - - GalacticCommon + - TauCetiBasic - type: entity parent: BaseSubdermalImplant - id: GalacticCommonTranslatorImplant + id: TauCetiBasicTranslatorImplant name: advanced common translator implant description: A more advanced version of the translator implant, teaches your illiterate friends the ability to both speak and understand the galactic tongue! noSpawn: true components: - type: TranslatorImplant understood: - - GalacticCommon + - TauCetiBasic spoken: - - GalacticCommon + - TauCetiBasic - type: entity parent: BaseSubdermalImplant @@ -35,7 +35,7 @@ spoken: - Bubblish requires: - - GalacticCommon + - TauCetiBasic - type: entity parent: BaseSubdermalImplant @@ -50,7 +50,7 @@ spoken: - Nekomimetic requires: - - GalacticCommon + - TauCetiBasic - type: entity parent: BaseSubdermalImplant @@ -65,7 +65,7 @@ spoken: - Draconic requires: - - GalacticCommon + - TauCetiBasic - type: entity parent: BaseSubdermalImplant @@ -80,7 +80,7 @@ spoken: - Canilunzt requires: - - GalacticCommon + - TauCetiBasic - type: entity parent: BaseSubdermalImplant @@ -95,7 +95,7 @@ spoken: - SolCommon requires: - - GalacticCommon + - TauCetiBasic - type: entity parent: BaseSubdermalImplant @@ -110,7 +110,7 @@ spoken: - RootSpeak requires: - - GalacticCommon + - TauCetiBasic - type: entity parent: BaseSubdermalImplant @@ -125,4 +125,34 @@ spoken: - Moffic requires: - - GalacticCommon + - TauCetiBasic + +- type: entity + parent: BaseSubdermalImplant + id: ValyrianStandardTranslatorImplant + name: valyrian standard translator implant + description: An implant giving the ability to understand and speak Valyrian Standard. Chirp! + noSpawn: true + components: + - type: TranslatorImplant + understood: + - ValyrianStandard + spoken: + - ValyrianStandard + requires: + - TauCetiBasic + +- type: entity + parent: BaseSubdermalImplant + id: AzazibaTranslatorImplant + name: azaziba translator implant + description: An implant giving the ability to understand and speak Azaziba. # Intended for Admins Only, this item is for lore reasons not obtainable. + noSpawn: true + components: + - type: TranslatorImplant + understood: + - Azaziba + spoken: + - Azaziba + requires: + - Draconic diff --git a/Resources/Prototypes/Entities/Objects/Devices/translators.yml b/Resources/Prototypes/Entities/Objects/Devices/translators.yml index 9f678ea080..f3e669482e 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/translators.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/translators.yml @@ -65,13 +65,13 @@ components: - type: HandheldTranslator spoken: - - GalacticCommon + - TauCetiBasic - Canilunzt understood: - - GalacticCommon + - TauCetiBasic - Canilunzt requires: - - GalacticCommon + - TauCetiBasic - Canilunzt - type: entity @@ -82,13 +82,13 @@ components: - type: HandheldTranslator spoken: - - GalacticCommon + - TauCetiBasic - Bubblish understood: - - GalacticCommon + - TauCetiBasic - Bubblish requires: - - GalacticCommon + - TauCetiBasic - Bubblish - type: entity @@ -99,30 +99,30 @@ components: - type: HandheldTranslator spoken: - - GalacticCommon + - TauCetiBasic - Nekomimetic understood: - - GalacticCommon + - TauCetiBasic - Nekomimetic requires: - - GalacticCommon + - TauCetiBasic - Nekomimetic - type: entity id: DraconicTranslator parent: [ TranslatorPoweredBase ] - name: Draconic translator - description: Translates speech between Draconic and Galactic Common, making it easier to understand your local Uniathi. + name: Sinta'Unathi translator + description: Translates speech between Sinta'Unathi and Tau-Ceti Basic, making it easier to understand your local Unathi. components: - type: HandheldTranslator spoken: - - GalacticCommon + - TauCetiBasic - Draconic understood: - - GalacticCommon + - TauCetiBasic - Draconic requires: - - GalacticCommon + - TauCetiBasic - Draconic - type: entity @@ -133,13 +133,13 @@ components: - type: HandheldTranslator spoken: - - GalacticCommon + - TauCetiBasic - SolCommon understood: - - GalacticCommon + - TauCetiBasic - SolCommon requires: - - GalacticCommon + - TauCetiBasic - SolCommon - type: entity @@ -150,13 +150,13 @@ components: - type: HandheldTranslator spoken: - - GalacticCommon + - TauCetiBasic - RootSpeak understood: - - GalacticCommon + - TauCetiBasic - RootSpeak requires: - - GalacticCommon + - TauCetiBasic - RootSpeak - type: entity @@ -167,13 +167,13 @@ components: - type: HandheldTranslator spoken: - - GalacticCommon + - TauCetiBasic - Moffic understood: - - GalacticCommon + - TauCetiBasic - Moffic requires: - - GalacticCommon + - TauCetiBasic - Moffic - type: entity @@ -184,13 +184,13 @@ components: - type: HandheldTranslator spoken: - - GalacticCommon + - TauCetiBasic - Xeno understood: - - GalacticCommon + - TauCetiBasic - Xeno requires: - - GalacticCommon + - TauCetiBasic - type: entity id: AnimalTranslator @@ -215,5 +215,39 @@ - Kobold - Hissing requires: - - GalacticCommon + - TauCetiBasic setLanguageOnInteract: false + +- type: entity + id: ValyrianStandardTranslator + parent: [ TranslatorPoweredBase ] + name: Valyrian Standard translator + description: Translates speech between Valyrian Standard and Tau-Ceti Basic. For talking to Harpies! + components: + - type: HandheldTranslator + spoken: + - TauCetiBasic + - ValyrianStandard + understood: + - TauCetiBasic + - ValyrianStandard + requires: + - TauCetiBasic + - ValyrianStandard + +- type: entity + id: AzazibaTranslator + parent: [ TranslatorPoweredBase ] + name: Azaziba translator + description: Translates speech between Unathi and Azaziba. For Unathi to speak the Archaic form of their native tongue! # Intended for Admins Only, this item is for lore reasons not obtainable. + components: + - type: HandheldTranslator + spoken: + - Draconic + - Azaziba + understood: + - Draconic + - Azaziba + requires: + - Draconic + - Azaziba \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Fun/Instruments/base_instruments.yml b/Resources/Prototypes/Entities/Objects/Fun/Instruments/base_instruments.yml index 09b41d6e5d..7d342eed82 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Instruments/base_instruments.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Instruments/base_instruments.yml @@ -13,8 +13,8 @@ key: enum.InstrumentUiKey.Key - type: UserInterface interfaces: - - key: enum.InstrumentUiKey.Key - type: InstrumentBoundUserInterface + enum.InstrumentUiKey.Key: + type: InstrumentBoundUserInterface - type: Item size: Normal - type: StaticPrice @@ -51,8 +51,8 @@ acts: ["Destruction"] - type: UserInterface interfaces: - - key: enum.InstrumentUiKey.Key - type: InstrumentBoundUserInterface + enum.InstrumentUiKey.Key: + type: InstrumentBoundUserInterface - type: Fixtures fixtures: fix1: diff --git a/Resources/Prototypes/Entities/Objects/Fun/candy_bucket.yml b/Resources/Prototypes/Entities/Objects/Fun/candy_bucket.yml index d8f11cdea2..9a84d03e2d 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/candy_bucket.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/candy_bucket.yml @@ -28,6 +28,7 @@ whitelist: components: - Pill + - Food tags: - FoodSnack - type: ContainerContainer @@ -36,8 +37,8 @@ ents: [] - type: UserInterface interfaces: - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface # to prevent bag open/honk spam - type: UseDelay delay: 0.5 diff --git a/Resources/Prototypes/Entities/Objects/Fun/crayons.yml b/Resources/Prototypes/Entities/Objects/Fun/crayons.yml index cb755b161a..4aab2efdb9 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/crayons.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/crayons.yml @@ -18,8 +18,8 @@ - type: SpaceGarbage - type: UserInterface interfaces: - - key: enum.CrayonUiKey.Key - type: CrayonBoundUserInterface + enum.CrayonUiKey.Key: + type: CrayonBoundUserInterface - type: Crayon capacity: 15 - type: Food diff --git a/Resources/Prototypes/Entities/Objects/Fun/dice.yml b/Resources/Prototypes/Entities/Objects/Fun/dice.yml index aba6ebcb4c..bca5ec7ab9 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/dice.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/dice.yml @@ -119,12 +119,12 @@ mask: - ItemMask - type: StepTrigger - triggerGroups: # WD EDIT + triggerGroups: types: - Shard intersectRatio: 0.2 - type: TriggerOnStepTrigger - - type: ShoesRequiredStepTrigger + - type: ClothingRequiredStepTrigger - type: Slippery slipSound: path: /Audio/Effects/glass_step.ogg diff --git a/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml b/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml index 7ff6c43e29..b5cebbdd09 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml @@ -35,6 +35,7 @@ - type: entity id: ImmovableRodDespawn + suffix: Despawn parent: ImmovableRod components: - type: TimedDespawn @@ -92,3 +93,6 @@ components: - type: ImmovableRod randomizeVelocity: false + damage: + types: + Blunt: 120 diff --git a/Resources/Prototypes/Entities/Objects/Fun/pai.yml b/Resources/Prototypes/Entities/Objects/Fun/pai.yml index 537562f461..1b9c5303c6 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/pai.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/pai.yml @@ -13,10 +13,12 @@ program: 2 - type: UserInterface interfaces: - - key: enum.InstrumentUiKey.Key - type: InstrumentBoundUserInterface - - key: enum.StationMapUiKey.Key - type: UntrackedStationMapBoundUserInterface + enum.InstrumentUiKey.Key: + type: InstrumentBoundUserInterface + requireInputValidation: false + enum.StationMapUiKey.Key: + type: UntrackedStationMapBoundUserInterface + requireInputValidation: false - type: Sprite sprite: Objects/Fun/pai.rsi layers: diff --git a/Resources/Prototypes/Entities/Objects/Fun/snap_pops.yml b/Resources/Prototypes/Entities/Objects/Fun/snap_pops.yml index a39c2f881a..88f0758874 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/snap_pops.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/snap_pops.yml @@ -33,15 +33,12 @@ maxIntensity: 0.01 intensitySlope: 1 totalIntensity: 0.01 - - type: Tag - tags: - - SnapPop - type: entity parent: BaseStorageItem id: SnapPopBox name: snap pop box - description: Contains twenty snap pops for a few minutes of popping fun! + description: Contains snap pops for a few minutes of popping fun! components: - type: Item size: Normal @@ -56,6 +53,6 @@ - type: StorageFill contents: - id: SnapPop - amount: 20 + amount: 5 - type: Dumpable diff --git a/Resources/Prototypes/Entities/Objects/Fun/whistles.yml b/Resources/Prototypes/Entities/Objects/Fun/whistles.yml index 10c41efc54..667d5da11c 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/whistles.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/whistles.yml @@ -6,8 +6,12 @@ description: Someone forgot to turn off kettle? components: - type: Item + sprite: Objects/Fun/whistles.rsi size: Tiny + - type: Sprite + sprite: Objects/Fun/whistles.rsi - type: Clothing + sprite: Objects/Fun/whistles.rsi quickEquip: false slots: neck - type: UseDelay @@ -16,7 +20,14 @@ sound: collection: BaseWhistle - type: Whistle - distance: 5 + distance: 3 + +- type: entity + parent: BaseWhistle + id: Whistle + components: + - type: Sprite + state: whistle - type: entity parent: BaseWhistle @@ -24,10 +35,11 @@ description: Sound of it make you feel fear. components: - type: Sprite - sprite: Objects/Fun/whistle.rsi - state: securityWhistle - - type: Item - sprite: Objects/Fun/whistle.rsi + state: sec + - type: Clothing + equippedPrefix: sec + - type: Whistle + distance: 5 - type: entity parent: BaseWhistle @@ -36,13 +48,9 @@ description: A whistle used by Syndicate commanders to draw attention. Avanti! components: - type: Sprite - sprite: Clothing/Neck/Misc/whistles.rsi - state: icon + state: trench - type: Clothing - sprite: Clothing/Neck/Misc/whistles.rsi - quickEquip: False - slots: - - neck + equippedPrefix: trench - type: EmitSoundOnUse sound: collection: TrenchWhistle diff --git a/Resources/Prototypes/Entities/Objects/Magic/books.yml b/Resources/Prototypes/Entities/Objects/Magic/books.yml index 6202767ff1..7697e46b32 100644 --- a/Resources/Prototypes/Entities/Objects/Magic/books.yml +++ b/Resources/Prototypes/Entities/Objects/Magic/books.yml @@ -9,7 +9,7 @@ layers: - state: paper_blood - state: cover_strong - color: "#645a5a" + color: "#645a5a" - state: decor_wingette_flat color: "#4d0303" - state: icon_pentagramm @@ -25,13 +25,58 @@ - type: EmitSoundOnLand sound: /Audio/SimpleStation14/Items/Handling/book_drop.ogg +# For the Wizard Antag +# Do not add discounts or price inflation +- type: entity + id: WizardsGrimoire + name: wizards grimoire + suffix: Wizard + parent: BaseItem + components: + - type: Sprite + sprite: Objects/Misc/books.rsi + layers: + - state: paper_blood + - state: cover_strong + color: "#645a5a" + - state: decor_wingette_flat + color: "#4d0303" + - state: icon_pentagramm + color: "#f7e19f" + - type: UserInterface + interfaces: + enum.StoreUiKey.Key: + type: StoreBoundUserInterface + - type: ActivatableUI + key: enum.StoreUiKey.Key + - type: Store + refundAllowed: true + ownerOnly: true # get your own tome! + preset: StorePresetSpellbook + balance: + WizCoin: 10 # prices are balanced around this 10 point maximum and how strong the spells are + +# Not meant for wizard antag but meant for spawning, so people can't abuse refund if they were given a tome +- type: entity + id: WizardsGrimoireNoRefund + name: wizards grimoire + suffix: Wizard, No Refund + parent: WizardsGrimoire + components: + - type: Store + refundAllowed: false + ownerOnly: true # get your own tome! + preset: StorePresetSpellbook + balance: + WizCoin: 10 # prices are balanced around this 10 point maximum and how strong the spells are + - type: entity id: SpawnSpellbook name: spawn spellbook parent: BaseSpellbook components: - type: Spellbook - spells: + spellActions: ActionSpawnMagicarpSpell: -1 - type: entity @@ -54,7 +99,7 @@ - state: detail_rivets color: gold - type: Spellbook - spells: + spellActions: ActionForceWall: -1 - type: entity @@ -75,7 +120,7 @@ - state: detail_rivets color: gold - type: Spellbook - spells: + spellActions: ActionBlink: -1 - type: entity @@ -98,7 +143,7 @@ color: red - state: overlay_blood - type: Spellbook - spells: + spellActions: ActionSmite: -1 - type: entity @@ -120,7 +165,7 @@ - state: detail_bookmark color: "#98c495" - type: Spellbook - spells: + spellActions: ActionKnock: -1 - type: entity @@ -144,7 +189,7 @@ - state: icon_magic_fireball shader: unshaded - type: Spellbook - spells: + spellActions: ActionFireball: -1 - type: entity @@ -159,7 +204,7 @@ layers: - state: spell_default - type: Spellbook - spells: + spellActions: ActionFlashRune: -1 ActionExplosionRune: -1 ActionIgniteRune: -1 diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml index 91ba1abff9..95100b340b 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml @@ -93,13 +93,18 @@ Quantity: 10 - type: UserInterface interfaces: - - key: enum.ShortConstructionUiKey.Key - type: ShortConstructionMenuBUI + enum.ShortConstructionUiKey.Key: + type: ShortConstructionMenuBUI - type: ActivatableUI key: enum.ShortConstructionUiKey.Key - type: ShortConstruction - prototypes: - - Window + entries: + - prototype: Window + - prototype: WindowDirectional + - prototype: WindowDiagonal + - prototype: SheetRGlass + - prototype: SheetPGlass + - prototype: SheetUGlass - type: entity parent: SheetGlass @@ -188,13 +193,17 @@ acts: [ "Destruction" ] - type: UserInterface interfaces: - - key: enum.ShortConstructionUiKey.Key - type: ShortConstructionMenuBUI + enum.ShortConstructionUiKey.Key: + type: ShortConstructionMenuBUI - type: ActivatableUI key: enum.ShortConstructionUiKey.Key - type: ShortConstruction - prototypes: - - ReinforcedWindow + entries: + - prototype: SheetRPGlass1 + - prototype: SheetRUGlass1 + - prototype: ReinforcedWindow + - prototype: ReinforcedWindowDiagonal + - prototype: WindowReinforcedDirectional - type: entity parent: SheetRGlass @@ -272,6 +281,18 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: UserInterface + interfaces: + enum.ShortConstructionUiKey.Key: + type: ShortConstructionMenuBUI + - type: ActivatableUI + key: enum.ShortConstructionUiKey.Key + - type: ShortConstruction + entries: + - prototype: SheetRPGlass0 + - prototype: PlasmaWindow + - prototype: PlasmaWindowDiagonal + - prototype: PlasmaWindowDirectional - type: entity parent: SheetPGlass @@ -338,6 +359,17 @@ - ReagentId: Carbon Quantity: 0.5 canReact: false + - type: UserInterface + interfaces: + enum.ShortConstructionUiKey.Key: + type: ShortConstructionMenuBUI + - type: ActivatableUI + key: enum.ShortConstructionUiKey.Key + - type: ShortConstruction + entries: + - prototype: ReinforcedPlasmaWindow + - prototype: ReinforcedPlasmaWindowDiagonal + - prototype: PlasmaReinforcedWindowDirectional - type: entity parent: SheetRPGlass @@ -413,6 +445,18 @@ - ReagentId: Uranium Quantity: 10 canReact: false + - type: UserInterface + interfaces: + enum.ShortConstructionUiKey.Key: + type: ShortConstructionMenuBUI + - type: ActivatableUI + key: enum.ShortConstructionUiKey.Key + - type: ShortConstruction + entries: + - prototype: SheetRUGlass0 + - prototype: UraniumWindow + - prototype: UraniumWindowDiagonal + - prototype: UraniumWindowDirectional - type: entity parent: SheetUGlass @@ -467,6 +511,17 @@ - ReagentId: Carbon Quantity: 0.5 canReact: false + - type: UserInterface + interfaces: + enum.ShortConstructionUiKey.Key: + type: ShortConstructionMenuBUI + - type: ActivatableUI + key: enum.ShortConstructionUiKey.Key + - type: ShortConstruction + entries: + - prototype: ReinforcedUraniumWindow + - prototype: ReinforcedUraniumWindowDiagonal + - prototype: UraniumReinforcedWindowDirectional - type: entity parent: SheetRUGlass diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml index 83982474d2..040c6c81b1 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml @@ -71,17 +71,80 @@ Quantity: 1 - type: UserInterface interfaces: - - key: enum.ShortConstructionUiKey.Key - type: ShortConstructionMenuBUI + enum.ShortConstructionUiKey.Key: + type: ShortConstructionMenuBUI - type: ActivatableUI key: enum.ShortConstructionUiKey.Key - type: ShortConstruction - prototypes: - - Girder - - MetalRod - - TileSteel - - TileWhite - - TileDark + entries: + - prototype: Girder + - prototype: MetalRod + - category: + name: Tiles + icon: + sprite: Objects/Tiles/tile.rsi + state: steel + entries: + - prototype: TileSteel + - prototype: TileWhite + - prototype: TileDark + - category: + name: Electronics + icon: + sprite: Structures/Machines/computers.rsi + state: computer-datatheory + entries: + - prototype: MachineFrame + - prototype: Computer + - prototype: Windoor + - prototype: LightTubeFixture + - prototype: APC + - prototype: AirAlarmFixture + - prototype: AirSensor + - prototype: FireAlarm + - category: + name: Atmospherics + icon: + sprite: Structures/Piping/Atmospherics/vent.rsi + state: vent_out + entries: + - prototype: GasPort + - prototype: GasOutletInjector + - prototype: GasVentScrubber + - prototype: GasPassiveVent + - prototype: GasVentPump + - prototype: GasMixer + - prototype: GasFilter + - prototype: GasVolumePump + - prototype: GasPressurePump + - prototype: GasValve + - category: + name: Piping + icon: + sprite: Structures/Piping/Atmospherics/pipe.rsi + state: pipeFourway + entries: + - prototype: HeatExchanger + - prototype: GasPipeBend + - prototype: GasPipeFourway + - prototype: GasPipeHalf + - prototype: GasPipeStraight + - prototype: GasPipeTJunction + - category: + name: Disposals + icon: + sprite: Structures/Piping/disposal.rsi + state: disposal + entries: + - prototype: DisposalPipe + - prototype: DisposalBend + - prototype: DisposalJunction + - prototype: DisposalYJunction + - prototype: DisposalRouter + - prototype: DisposalTagger + - prototype: DisposalTrunk + - prototype: DisposalUnit + - prototype: CrateGenericSteel - type: entity parent: SheetSteel @@ -218,6 +281,15 @@ - ReagentId: Carbon Quantity: 1 canReact: false + - type: UserInterface + interfaces: + enum.ShortConstructionUiKey.Key: + type: ShortConstructionMenuBUI + - type: ActivatableUI + key: enum.ShortConstructionUiKey.Key + - type: ShortConstruction + entries: + - prototype: SecureWindoor - type: entity parent: SheetPlasteel diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml index dfb5133628..781f35417d 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml @@ -110,6 +110,17 @@ - type: Tag tags: - Sheet + - type: UserInterface + interfaces: + enum.ShortConstructionUiKey.Key: + type: ShortConstructionMenuBUI + - type: ActivatableUI + key: enum.ShortConstructionUiKey.Key + - type: ShortConstruction + entries: + - prototype: SheetPGlass + - prototype: SheetRPGlass + - prototype: SheetRPGlass1 - type: entity parent: SheetPlasma @@ -162,6 +173,15 @@ - ReagentId: Phosphorus Quantity: 5 canReact: false + - type: UserInterface + interfaces: + enum.ShortConstructionUiKey.Key: + type: ShortConstructionMenuBUI + - type: ActivatableUI + key: enum.ShortConstructionUiKey.Key + - type: ShortConstruction + entries: + - prototype: CratePlastic - type: entity parent: SheetPlastic @@ -224,6 +244,17 @@ - ReagentId: Radium Quantity: 2 canReact: false + - type: UserInterface + interfaces: + enum.ShortConstructionUiKey.Key: + type: ShortConstructionMenuBUI + - type: ActivatableUI + key: enum.ShortConstructionUiKey.Key + - type: ShortConstruction + entries: + - prototype: SheetUGlass + - prototype: SheetRUGlass + - prototype: SheetRUGlass1 - type: entity parent: SheetUranium diff --git a/Resources/Prototypes/Entities/Objects/Materials/bluespace.yml b/Resources/Prototypes/Entities/Objects/Materials/bluespace.yml index f93534ecd5..bc0ed8f03c 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/bluespace.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/bluespace.yml @@ -5,7 +5,7 @@ name: bluespace crystal components: - type: Sprite - sprite: Nyanotrasen/Objects/Materials/materials.rsi + sprite: Objects/Materials/materials.rsi layers: - state: bluespace_3 map: ["base"] @@ -54,3 +54,60 @@ components: - type: Stack count: 5 + +- type: entity + parent: MaterialBase + id: MaterialNormality + suffix: Full + name: normality crystal + components: + - type: Sprite + sprite: Objects/Materials/materials.rsi + layers: + - state: normality_3 + map: ["base"] + - type: Appearance + - type: Material + - type: PhysicalComposition + materialComposition: + Normality: 100 + - type: Tag + tags: + - NormalityCrystal + - RawMaterial + - type: Stack + stackType: Normality + baseLayer: base + layerStates: + - normality + - normality_2 + - normality_3 + count: 5 + - type: Item + size: Small + +- type: entity + parent: MaterialNormality + id: MaterialNormality1 + suffix: 1 + components: + - type: Sprite + state: normality + - type: Stack + count: 1 + +- type: entity + parent: MaterialNormality1 + id: MaterialNormality3 + suffix: 3 + components: + - type: Stack + count: 3 + +- type: entity + parent: MaterialNormality1 + id: MaterialNormality5 + suffix: 5 + components: + - type: Stack + count: 5 diff --git a/Resources/Prototypes/Entities/Objects/Materials/materials.yml b/Resources/Prototypes/Entities/Objects/Materials/materials.yml index e71a163b5d..c72e503b49 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/materials.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/materials.yml @@ -419,6 +419,58 @@ - type: Stack count: 1 +- type: entity + parent: MaterialBase + id: MaterialPyrotton + name: pyrotton + suffix: Full + components: + - type: Stack + stackType: Pyrotton + baseLayer: base + layerStates: + - pyrotton + - pyrotton_2 + - pyrotton_3 + - type: Sprite + state: pyrotton_3 + layers: + - state: pyrotton_3 + map: ["base"] + - type: Appearance + - type: Food + requiresSpecialDigestion: true + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Fiber + Quantity: 5 + - ReagentId: Phlogiston + Quantity: 5 + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fiber + Quantity: 3 + - ReagentId: Phlogiston + Quantity: 3 + - type: Tag + tags: + - ClothMade + - RawMaterial + +- type: entity + parent: MaterialPyrotton + id: MaterialPyrotton1 + suffix: Single + components: + - type: Sprite + state: pyrotton + - type: Stack + count: 1 + - type: entity parent: MaterialBase id: MaterialBananium diff --git a/Resources/Prototypes/Entities/Objects/Materials/ore.yml b/Resources/Prototypes/Entities/Objects/Materials/ore.yml index bf7dbfad5a..521d3cf1ec 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/ore.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/ore.yml @@ -344,4 +344,52 @@ suffix: Single components: - type: Stack - count: 1 \ No newline at end of file + count: 1 + +- type: entity + parent: OreBase + id: BluespaceOre + name: bluespace ore + suffix: Full + components: + - type: Stack + stackType: BluespaceOre + - type: Sprite + state: bluespace + - type: Item + - type: Material + - type: PhysicalComposition + materialComposition: + RawBluespace: 100 + +- type: entity + parent: BluespaceOre + id: BluespaceOre1 + suffix: Single + components: + - type: Stack + count: 1 + +- type: entity + parent: OreBase + id: NormalityOre + name: normality ore + suffix: Full + components: + - type: Stack + stackType: NormalityOre + - type: Sprite + state: normality + - type: Item + - type: Material + - type: PhysicalComposition + materialComposition: + RawNormality: 100 + +- type: entity + parent: NormalityOre + id: NormalityOre1 + suffix: Single + components: + - type: Stack + count: 1 diff --git a/Resources/Prototypes/Entities/Objects/Materials/parts.yml b/Resources/Prototypes/Entities/Objects/Materials/parts.yml index 8b916f2e2b..aa6e44f71f 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/parts.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/parts.yml @@ -70,13 +70,50 @@ Quantity: 0.5 - type: UserInterface interfaces: - - key: enum.ShortConstructionUiKey.Key - type: ShortConstructionMenuBUI + enum.ShortConstructionUiKey.Key: + type: ShortConstructionMenuBUI - type: ActivatableUI key: enum.ShortConstructionUiKey.Key - type: ShortConstruction - prototypes: - - Grille + entries: + - prototype: Grille + - prototype: GrilleDiagonal + - category: + name: Railings + icon: + sprite: Structures/Walls/railing.rsi + state: side + entries: + - prototype: Railing + - prototype: RailingCorner + - prototype: RailingRound + - prototype: RailingCornerSmall + - category: + name: Glass + icon: + sprite: Objects/Materials/Sheets/glass.rsi + state: rglass_3 + entries: + - prototype: SheetRPGlass + - prototype: SheetRPGlass0 + - prototype: SheetRUGlass + - prototype: SheetRUGlass0 + - prototype: SheetRGlass + # WD EDIT START + - type: Tag + tags: + - CrossbowBolt + - type: EmbeddableProjectile + minimumSpeed: 15 + damage: + types: + Piercing: 15 + - type: PenetratedProjectile + minimumSpeed: 30 + damage: + types: + Piercing: 15 + # WD EDIT END - type: entity parent: PartRodMetal @@ -86,6 +123,7 @@ components: - type: Tag tags: + - CrossbowBolt # WD EDIT - RodMetal1 - type: Sprite state: rods @@ -100,6 +138,7 @@ components: - type: Tag tags: + - CrossbowBolt # WD EDIT - RodMetal1 - type: Sprite state: rods diff --git a/Resources/Prototypes/Entities/Objects/Materials/shards.yml b/Resources/Prototypes/Entities/Objects/Materials/shards.yml index 9e832cd473..5e0b8890cc 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/shards.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/shards.yml @@ -17,7 +17,7 @@ shard2: "" shard3: "" - type: MeleeWeapon - attackRate: 1.5 + attackRate: 1 damage: types: Slash: 3.5 @@ -64,11 +64,11 @@ - !type:DoActsBehavior acts: [ "Destruction" ] - type: StepTrigger - triggerGroups: # WD EDIT + triggerGroups: types: - Shard intersectRatio: 0.2 - - type: ShoesRequiredStepTrigger + - type: ClothingRequiredStepTrigger - type: Slippery slipSound: path: /Audio/Effects/glass_step.ogg @@ -96,7 +96,7 @@ - type: DamageUserOnTrigger damage: types: - Piercing: 5 + Piercing: 4.5 - type: Tag tags: - GlassShard @@ -121,6 +121,10 @@ components: - type: Sprite color: "#96cdef" + - type: MeleeWeapon + damage: + types: + Slash: 4.5 - type: WelderRefinable refineResult: - id: SheetGlass1 @@ -128,7 +132,7 @@ - type: DamageUserOnTrigger damage: types: - Piercing: 5 + Piercing: 5.5 - type: Tag tags: - ReinforcedGlassShard @@ -153,6 +157,10 @@ components: - type: Sprite color: "#FF72E7" + - type: MeleeWeapon + damage: + types: + Slash: 5.5 - type: WelderRefinable refineResult: - id: SheetGlass1 @@ -160,7 +168,7 @@ - type: DamageUserOnTrigger damage: types: - Piercing: 5 + Piercing: 6.5 - type: Tag tags: - PlasmaGlassShard @@ -187,6 +195,11 @@ components: - type: Sprite color: "#8eff7a" + - type: MeleeWeapon + damage: + types: + Slash: 4.5 + Radiation: 2 - type: WelderRefinable refineResult: - id: SheetGlass1 @@ -194,8 +207,8 @@ - type: DamageUserOnTrigger damage: types: - Piercing: 3 - Radiation: 2 + Piercing: 5 + Radiation: 2.5 - type: Tag tags: - UraniumGlassShard diff --git a/Resources/Prototypes/Entities/Objects/Misc/books.yml b/Resources/Prototypes/Entities/Objects/Misc/books.yml index 043ea4b0fe..fca4b5c59d 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/books.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/books.yml @@ -22,11 +22,10 @@ contentSize: 12000 - type: ActivatableUI key: enum.PaperUiKey.Key - closeOnHandDeselect: false - type: UserInterface interfaces: - - key: enum.PaperUiKey.Key - type: PaperBoundUserInterface + enum.PaperUiKey.Key: + type: PaperBoundUserInterface - type: Tag tags: - Book @@ -55,7 +54,7 @@ color: "#0a2a6b" - state: decor_wingette color: "#082561" - - state: icon_text + - state: icon_text color: gold - state: icon_planet color: "#42b6f5" @@ -367,7 +366,7 @@ description: Each book is unique! What is hidden in this one? components: - type: RandomMetadata - nameSegments: + nameSegments: - book_hint_appearance - book_type - type: RandomSprite @@ -416,7 +415,7 @@ icon_skull: "" icon_text: "" icon_text2: "" - icon_text3: "" + icon_text3: "" overlay: overlay_blood: "" overlay_dirt: Sixteen @@ -457,7 +456,7 @@ - book_story_element_trait - "." storySeparator: "" - + - type: entity parent: BookBase id: BookAtmosDistro @@ -536,4 +535,4 @@ - state: icon_corner color: gold - type: Paper - content: book-text-atmos-vents \ No newline at end of file + content: book-text-atmos-vents diff --git a/Resources/Prototypes/Entities/Objects/Misc/chopsticks.yml b/Resources/Prototypes/Entities/Objects/Misc/chopsticks.yml new file mode 100644 index 0000000000..ed49053f8a --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Misc/chopsticks.yml @@ -0,0 +1,30 @@ +- type: entity + parent: BaseItem + id: ChopSticks + name: chopsticks + description: A very traditional utensil. + components: + - type: Sprite + sprite: Objects/Misc/chopstick.rsi + state: icon + - type: Item + sprite: Objects/Misc/chopstick.rsi + size: Small + - type: Utensil + types: + - Fork + +- type: entity + parent: BaseItem + name: paired chopsticks + id: PairedChopsticks + description: You should probably seperate them. + components: + - type: SpawnItemsOnUse + items: + - id: ChopSticks + sound: + path: /Audio/Effects/chopstickbreak.ogg + - type: Sprite + sprite: Objects/Misc/chopstick.rsi + state: paired diff --git a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml index 1eec04ece6..059e1d980c 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml @@ -59,6 +59,9 @@ enabled: True: { state: fire_extinguisher_closed } False: { state: fire_extinguisher_open } + - type: PhysicalComposition + materialComposition: + Steel: 100 - type: entity name: extinguisher spray diff --git a/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml b/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml index a42b2fa113..a02f94215b 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml @@ -212,6 +212,11 @@ enabled: false radius: 8 energy: 5 + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellMedium - type: Anchorable - type: Damageable damageContainer: Inorganic diff --git a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml index 4af517bc52..0de971e001 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml @@ -902,9 +902,9 @@ default: PassengerIDCard - type: UserInterface interfaces: - - key: enum.AgentIDCardUiKey.Key + enum.AgentIDCardUiKey.Key: type: AgentIDCardBoundUserInterface - - key: enum.ChameleonUiKey.Key + enum.ChameleonUiKey.Key: type: ChameleonBoundUserInterface - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Misc/improvised_gun_parts.yml b/Resources/Prototypes/Entities/Objects/Misc/improvised_gun_parts.yml index abf4e0974a..48516cb7ee 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/improvised_gun_parts.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/improvised_gun_parts.yml @@ -27,9 +27,12 @@ - type: Sprite sprite: Objects/Misc/rifle_stock.rsi state: icon + # WD EDIT STRART - type: Construction - graph: RifleStockGraph - node: riflestock + deconstructionTarget: null + graph: WeaponPoweredCrossbowGraph + node: stock + # WD EDIT END - type: Tag tags: - RifleStock diff --git a/Resources/Prototypes/Entities/Objects/Misc/land_mine.yml b/Resources/Prototypes/Entities/Objects/Misc/land_mine.yml index a6ff916089..97053660a1 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/land_mine.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/land_mine.yml @@ -40,7 +40,7 @@ params: maxDistance: 10 - type: StepTrigger - triggerGroups: # WD EDIT + triggerGroups: types: - Landmine requiredTriggeredSpeed: 0 diff --git a/Resources/Prototypes/Entities/Objects/Misc/machine_parts.yml b/Resources/Prototypes/Entities/Objects/Misc/machine_parts.yml index 341acb52f0..8538a4342d 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/machine_parts.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/machine_parts.yml @@ -16,6 +16,10 @@ sound: /Audio/SimpleStation14/Items/Handling/component_drop.ogg - type: EmitSoundOnLand sound: /Audio/SimpleStation14/Items/Handling/component_drop.ogg +# Rating 1 + - type: GuideHelp + guides: + - MachineUpgrading # Rating 1 @@ -69,3 +73,153 @@ - type: ReverseEngineering # Nyano recipes: - MatterBinStockPart + +# Rating 2 + +- type: entity + id: AdvancedCapacitorStockPart + name: advanced capacitor + parent: CapacitorStockPart + description: An advanced capacitor used in the construction of a variety of devices. + suffix: Rating 2 + components: + - type: Sprite + state: adv_capacitor + - type: MachinePart + rating: 2 + - type: ReverseEngineering # Nyano + difficulty: 2 + recipes: + - AdvancedCapacitorStockPart + +- type: entity + id: NanoManipulatorStockPart + name: advanced manipulator + parent: MicroManipulatorStockPart + description: An advanced manipulator used in the construction of a variety of devices. + suffix: Rating 2 + components: + - type: Sprite + state: nano_mani + - type: MachinePart + rating: 2 + - type: ReverseEngineering # Nyano + difficulty: 2 + recipes: + - NanoManipulatorStockPart + +- type: entity + id: AdvancedMatterBinStockPart + name: advanced matter bin + parent: MatterBinStockPart + description: An advanced matter bin used in the construction of a variety of devices. + suffix: Rating 2 + components: + - type: Sprite + state: advanced_matter_bin + - type: MachinePart + rating: 2 + - type: ReverseEngineering # Nyano + difficulty: 2 + recipes: + - AdvancedMatterBinStockPart + +# Rating 3 + +- type: entity + id: SuperCapacitorStockPart + name: super capacitor + parent: CapacitorStockPart + description: A super capacitor used in the construction of a variety of devices. + suffix: Rating 3 + components: + - type: Sprite + state: super_capacitor + - type: MachinePart + rating: 3 + - type: ReverseEngineering # Nyano + difficulty: 3 + recipes: + - SuperCapacitorStockPart + +- type: entity + id: PicoManipulatorStockPart + name: super manipulator + parent: MicroManipulatorStockPart + description: A super manipulator used in the construction of a variety of devices. + suffix: Rating 3 + components: + - type: Sprite + state: pico_mani + - type: MachinePart + rating: 3 + - type: ReverseEngineering # Nyano + difficulty: 3 + recipes: + - PicoManipulatorStockPart + +- type: entity + id: SuperMatterBinStockPart + name: super matter bin + parent: MatterBinStockPart + description: A super matter bin used in the construction of a variety of devices. + suffix: Rating 3 + components: + - type: Sprite + state: super_matter_bin + - type: MachinePart + rating: 3 + - type: ReverseEngineering # Nyano + difficulty: 3 + recipes: + - SuperMatterBinStockPart + +# Rating 4 + +- type: entity + id: BluespaceCapacitorStockPart + name: bluespace capacitor + parent: CapacitorStockPart + description: A bluespace capacitor used in the construction of a variety of devices. + suffix: Rating 4 + components: + - type: Sprite + state: quadratic_capacitor + - type: MachinePart + rating: 4 + - type: ReverseEngineering # Nyano + difficulty: 4 + recipes: + - BluespaceCapacitorStockPart + +- type: entity + id: BluespaceManipulatorStockPart + name: bluespace manipulator + parent: MicroManipulatorStockPart + description: A bluespace manipulator used in the construction of a variety of devices. + suffix: Rating 4 + components: + - type: Sprite + state: femto_mani + - type: MachinePart + rating: 4 + - type: ReverseEngineering # Nyano + difficulty: 4 + recipes: + - BluespaceManipulatorStockPart + +- type: entity + id: BluespaceMatterBinStockPart + name: bluespace matter bin + parent: MatterBinStockPart + description: A bluespace matter bin used in the construction of a variety of devices. + suffix: Rating 4 + components: + - type: Sprite + state: bluespace_matter_bin + - type: MachinePart + rating: 4 + - type: ReverseEngineering # Nyano + difficulty: 4 + recipes: + - BluespaceMatterBinStockPart diff --git a/Resources/Prototypes/Entities/Objects/Misc/mail_capsule.yml b/Resources/Prototypes/Entities/Objects/Misc/mail_capsule.yml new file mode 100644 index 0000000000..bd6c9057cd --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Misc/mail_capsule.yml @@ -0,0 +1,139 @@ +- type: entity + name: mail capsule + suffix: Primed + id: MailCapsulePrimed + parent: BaseItem + components: + - type: ThrowingAngle + angle: 180 + - type: EmbeddableProjectile + minimumSpeed: 1 + removalTime: 0.1 + - type: Tag + tags: + - MailCapsule + - Trash + - type: Sprite + sprite: Objects/Misc/mail_capsule.rsi + layers: + - state: icon-empty + - type: ItemSlots + slots: + mail_slot: + insertVerbText: Put in Mail + ejectVerbText: Take out Mail + name: Mail + startingItem: null + whitelist: + tags: + - Book + - Document + - Mail + components: + - Mail + - Paper + - HyperlinkBook + insertOnInteract: true + priority: 3 + food_slot: + insertVerbText: Put in Food + ejectVerbText: Take out Food + name: Food + startingItem: null + whitelist: + components: + - Food + insertOnInteract: true + priority: 2 + cash_slot: + insertVerbText: Put in Cash + ejectVerbText: Take out Cash + name: Cash + startingItem: null + whitelist: + components: + - Currency + insertOnInteract: true + priority: 1 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: true + ents: [] + mail_slot: !type:ContainerSlot + showEnts: False + occludes: true + ent: null + food_slot: !type:ContainerSlot + showEnts: False + occludes: true + ent: null + cash_slot: !type:ContainerSlot + showEnts: False + occludes: true + ent: null + - type: Appearance + - type: ItemMapper + mapLayers: + icon-food: + whitelist: + components: + - Food + icon-cash: + whitelist: + components: + - Currency + icon-mail: + whitelist: + tags: + - Book + - Document + - Mail + components: + - Mail + - Paper + - HyperlinkBook + sprite: Objects/Misc/mail_capsule.rsi + - type: Dumpable + - type: Damageable + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 20 #excess damage avoids cost of spawning entities. + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 10 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + - !type:EmptyAllContainersBehaviour + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: DamageOnLand + damage: + types: + Blunt: 9.5 + +- type: entity + name: mail capsule box + parent: BoxCardboard + id: BoxMailCapsulePrimed + description: A box of primed mail capsules. + components: + - type: Storage + grid: + - 0,0,4,3 + - type: StorageFill + contents: + - id: MailCapsulePrimed + amount: 10 + - type: Sprite + layers: + - state: box diff --git a/Resources/Prototypes/Entities/Objects/Misc/medalcase.yml b/Resources/Prototypes/Entities/Objects/Misc/medalcase.yml index a421c1e9e9..35000b3fba 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/medalcase.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/medalcase.yml @@ -17,6 +17,9 @@ - type: Storage grid: - 0,0,7,1 + whitelist: + tags: + - Medal - type: StorageFill contents: - id: ClothingNeckGoldmedal diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index d1527ceff5..d3db29b420 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -18,12 +18,11 @@ - type: PaperLabelType - type: ActivatableUI key: enum.PaperUiKey.Key - closeOnHandDeselect: false requireHands: false - type: UserInterface interfaces: - - key: enum.PaperUiKey.Key - type: PaperBoundUserInterface + enum.PaperUiKey.Key: + type: PaperBoundUserInterface - type: Item size: Tiny - type: Tag @@ -32,6 +31,7 @@ - Trash - Paper - type: Appearance + - type: FaxableObject - type: PaperVisuals - type: Flammable fireSpread: true @@ -270,8 +270,8 @@ key: enum.PaperUiKey.Key - type: UserInterface interfaces: - - key: enum.PaperUiKey.Key - type: PaperBoundUserInterface + enum.PaperUiKey.Key: + type: PaperBoundUserInterface - type: entity parent: Paper @@ -714,10 +714,10 @@ key: enum.CargoConsoleUiKey.Orders - type: UserInterface interfaces: - - key: enum.CargoConsoleUiKey.Orders - type: CargoOrderConsoleBoundUserInterface - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface + enum.CargoConsoleUiKey.Orders: + type: CargoOrderConsoleBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface - type: MeleeWeapon wideAnimationRotation: 180 damage: diff --git a/Resources/Prototypes/Entities/Objects/Misc/pet_carrier.yml b/Resources/Prototypes/Entities/Objects/Misc/pet_carrier.yml index 84c9c7c752..b7f296cbac 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/pet_carrier.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/pet_carrier.yml @@ -30,7 +30,7 @@ radius: 0.45 density: 25 mask: - - SmallMobMask + - ItemMask layer: - MachineLayer - type: EntityStorage diff --git a/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml b/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml index bb284000a7..68ba94b578 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml @@ -76,6 +76,9 @@ ignoreWhitelist: components: - IgnoreSpiderWeb + - type: Tag + tags: + - ArachneWeb - type: entity id: SpiderWebClown diff --git a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml index 2336945f17..b5e7d747c2 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml @@ -126,7 +126,7 @@ ents: [ ] - type: UserInterface interfaces: - - key: enum.StorageUiKey.Key + enum.StorageUiKey.Key: type: StorageBoundUserInterface - type: entity @@ -155,13 +155,13 @@ components: - Hands # prevent mouse buying grenade penguin since its not telepathic - type: Store - preset: StorePresetUplink + preset: StorePresetUplinkNoDiscounts balance: Telecrystal: 0 - type: UserInterface interfaces: - - key: enum.StoreUiKey.Key - type: StoreBoundUserInterface + enum.StoreUiKey.Key: + type: StoreBoundUserInterface - type: entity parent: BaseSubdermalImplant @@ -322,7 +322,6 @@ noSpawn: true components: - type: SubdermalImplant - permanent: true - type: Tag tags: - MindShield diff --git a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml index aa0e2f60c3..8b6c311c47 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml @@ -42,17 +42,33 @@ damage: types: Blunt: 5 + # WD EDIT START + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + vertices: + - -0.25,-0.25 + - -0.30,-0.25 + - 0.25,0.25 + - -0.25,0.25 + density: 20 + mask: + - ItemMask + restitution: 0.3 + friction: 0.2 + # WD EDIT END - type: entity name: steel tile parent: FloorTileItemBase id: FloorTileItemSteel components: - - type: Sprite #WWDP edit + - type: Sprite state: steel - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: steel - type: FloorTile outputs: @@ -75,11 +91,11 @@ parent: FloorTileItemSteel id: FloorTileItemSteelCheckerDark components: - - type: Sprite #WWDP edit + - type: Sprite state: checker-dark - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: FloorTile outputs: - Plating @@ -90,11 +106,11 @@ parent: FloorTileItemSteel id: FloorTileItemSteelCheckerLight components: - - type: Sprite #WWDP edit + - type: Sprite state: checker-light - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: FloorTile outputs: - Plating @@ -124,11 +140,11 @@ parent: FloorTileItemBase id: FloorTileItemWood components: - - type: Sprite #WWDP edit + - type: Sprite state: wood - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: wood - type: FloorTile outputs: @@ -145,11 +161,11 @@ parent: FloorTileItemBase id: FloorTileItemWhite components: - - type: Sprite #WWDP edit + - type: Sprite state: white - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: white - type: FloorTile outputs: @@ -166,11 +182,11 @@ parent: FloorTileItemSteel id: FloorTileItemDark components: - - type: Sprite #WWDP edit + - type: Sprite state: dark - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: dark - type: FloorTile outputs: @@ -203,11 +219,11 @@ parent: FloorTileItemSteel id: FloorTileItemReinforced components: - - type: Sprite #WWDP edit + - type: Sprite state: reinforced - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: reinforced - type: FloorTile outputs: @@ -239,11 +255,11 @@ parent: FloorTileItemBase id: FloorTileItemLino components: - - type: Sprite #WWDP edit + - type: Sprite state: lino - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: steel - type: FloorTile outputs: @@ -252,54 +268,6 @@ - type: Stack stackType: FloorTileLino -- type: entity - name: white linoleum floor - parent: FloorTileItemLino - id: FloorTileItemLinoWhite - components: - - type: Sprite - state: lino-white - - type: Item - heldPrefix: steel - - type: FloorTile - outputs: - - Plating - - FloorLinoWhite - - type: Stack - stackType: FloorTileLino - -- type: entity - name: grey linoleum floor - parent: FloorTileItemLino - id: FloorTileItemLinoGrey - components: - - type: Sprite - state: lino-grey - - type: Item - heldPrefix: steel - - type: FloorTile - outputs: - - Plating - - FloorLinoGrey - - type: Stack - stackType: FloorTileLino - -- type: entity - name: dark linoleum floor - parent: FloorTileItemLino - id: FloorTileItemLinoDark - components: - - type: Sprite - state: lino-dark - - type: Item - heldPrefix: steel - - type: FloorTile - outputs: - - Plating - - FloorLinoDark - - type: Stack - stackType: FloorTileLino - - type: entity name: filled brass plate parent: FloorTileItemBase @@ -375,11 +343,11 @@ parent: FloorTileItemBase id: FloorTileItemRockVault components: - - type: Sprite #WWDP edit + - type: Sprite state: rockvault - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: steel - type: FloorTile outputs: @@ -393,11 +361,11 @@ parent: FloorTileItemBase id: FloorTileItemBlue components: - - type: Sprite #WWDP edit + - type: Sprite state: blue - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: carpet-blue - type: FloorTile outputs: @@ -411,11 +379,11 @@ parent: FloorTileItemBase id: FloorTileItemLime components: - - type: Sprite #WWDP edit + - type: Sprite state: lime - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: steel - type: FloorTile outputs: @@ -478,11 +446,11 @@ parent: FloorTileItemBase id: FloorTileItemFreezer components: - - type: Sprite #WWDP edit + - type: Sprite # WWDP edit state: freezer sprite: _White/Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: _White/Objects/Tiles/tile.rsi # WWDP edit heldPrefix: showroom - type: FloorTile outputs: @@ -496,11 +464,11 @@ parent: FloorTileItemBase id: FloorTileItemShowroom components: - - type: Sprite #WWDP edit + - type: Sprite state: showroom - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: showroom - type: FloorTile outputs: @@ -514,11 +482,11 @@ parent: FloorTileItemBase id: FloorTileItemHydro components: - - type: Sprite #WWDP edit + - type: Sprite state: hydro - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: hydro - type: FloorTile outputs: @@ -532,11 +500,11 @@ parent: FloorTileItemBase id: FloorTileItemBar components: - - type: Sprite #WWDP edit + - type: Sprite state: bar - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: steel - type: FloorTile outputs: @@ -550,11 +518,11 @@ parent: FloorTileItemBase id: FloorTileItemClown components: - - type: Sprite #WWDP edit + - type: Sprite state: clown - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: steel - type: FloorTile outputs: @@ -568,11 +536,11 @@ parent: FloorTileItemBase id: FloorTileItemMime components: - - type: Sprite #WWDP edit + - type: Sprite state: mime - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: steel - type: FloorTile outputs: @@ -586,11 +554,11 @@ parent: FloorTileItemBase id: FloorTileItemKitchen components: - - type: Sprite #WWDP edit + - type: Sprite state: kitchen - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: dark - type: FloorTile outputs: @@ -604,11 +572,11 @@ parent: FloorTileItemBase id: FloorTileItemLaundry components: - - type: Sprite #WWDP edit + - type: Sprite state: laundry - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: steel - type: FloorTile outputs: @@ -817,11 +785,11 @@ parent: FloorTileItemBase id: FloorTileItemShuttleBlue components: - - type: Sprite #WWDP edit + - type: Sprite state: shuttleblue - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: shuttleblue - type: FloorTile outputs: @@ -835,11 +803,11 @@ parent: FloorTileItemBase id: FloorTileItemShuttleOrange components: - - type: Sprite #WWDP edit + - type: Sprite state: shuttleorange - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: shuttleorange - type: FloorTile outputs: @@ -853,11 +821,11 @@ parent: FloorTileItemBase id: FloorTileItemShuttlePurple components: - - type: Sprite #WWDP edit + - type: Sprite state: shuttlepurple - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: shuttlepurple - type: FloorTile outputs: @@ -871,11 +839,11 @@ parent: FloorTileItemBase id: FloorTileItemShuttleRed components: - - type: Sprite #WWDP edit + - type: Sprite state: shuttlered - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: shuttlered - type: FloorTile outputs: @@ -889,11 +857,11 @@ parent: FloorTileItemBase id: FloorTileItemShuttleGrey components: - - type: Sprite #WWDP edit + - type: Sprite state: shuttlegrey - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: shuttlegrey - type: FloorTile outputs: @@ -907,11 +875,11 @@ parent: FloorTileItemBase id: FloorTileItemShuttleBlack components: - - type: Sprite #WWDP edit + - type: Sprite state: shuttleblack - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: shuttleblack - type: FloorTile outputs: @@ -926,11 +894,11 @@ parent: FloorTileItemBase id: FloorTileItemGold components: - - type: Sprite #WWDP edit + - type: Sprite state: gold - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: gold - type: FloorTile outputs: @@ -944,11 +912,11 @@ parent: FloorTileItemBase id: FloorTileItemSilver components: - - type: Sprite #WWDP edit + - type: Sprite state: silver - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: silver - type: FloorTile outputs: @@ -963,11 +931,11 @@ parent: FloorTileItemBase id: FloorTileItemGCircuit components: - - type: Sprite #WWDP edit + - type: Sprite state: gcircuit - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: gcircuit - type: FloorTile outputs: @@ -981,11 +949,11 @@ parent: FloorTileItemBase id: FloorTileItemBCircuit components: - - type: Sprite #WWDP edit + - type: Sprite state: bcircuit - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: bcircuit - type: FloorTile outputs: @@ -1066,11 +1034,11 @@ parent: FloorTileItemBase id: FloorTileItemWoodPattern components: - - type: Sprite #WWDP edit + - type: Sprite state: woodpatternfloor - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: wood - type: FloorTile outputs: @@ -1239,11 +1207,11 @@ parent: FloorTileItemBase id: FloorTileItemWoodLarge components: - - type: Sprite #WWDP edit + - type: Sprite state: wood-large - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi - type: Item - sprite: _White/Objects/Tiles/tile.rsi + sprite: Objects/Tiles/tile.rsi heldPrefix: wood - type: FloorTile outputs: @@ -1255,311 +1223,3 @@ graph: TileWoodLarge node: woodtilelarge -- type: entity #WWDP add - name: steel yellow tile - parent: FloorTileItemSteel - id: FloorTileItemSteelYellow - components: - - type: Sprite - state: steel-yellow - sprite: _White/Objects/Tiles/tile.rsi - - type: Item - sprite: _White/Objects/Tiles/tile.rsi - - type: FloorTile - outputs: - - Plating - - FloorSteelYellow - -- type: entity #WWDP add - name: steel red tile - parent: FloorTileItemSteel - id: FloorTileItemSteelRed - components: - - type: Sprite - state: steel-red - sprite: _White/Objects/Tiles/tile.rsi - - type: Item - sprite: _White/Objects/Tiles/tile.rsi - - type: FloorTile - outputs: - - Plating - - FloorSteelRed - -- type: entity #WWDP add - name: steel green tile - parent: FloorTileItemSteel - id: FloorTileItemSteelGreen - components: - - type: Sprite - state: steel-green - sprite: _White/Objects/Tiles/tile.rsi - - type: Item - sprite: _White/Objects/Tiles/tile.rsi - - type: FloorTile - outputs: - - Plating - - FloorSteelGreen - -- type: entity #WWDP add - name: steel blue tile - parent: FloorTileItemSteel - id: FloorTileItemSteelBlue - components: - - type: Sprite - state: steel-blue - sprite: _White/Objects/Tiles/tile.rsi - - type: Item - sprite: _White/Objects/Tiles/tile.rsi - - type: FloorTile - outputs: - - Plating - - FloorSteelBlue - -- type: entity #WWDP add - name: plastic yellow tile - parent: FloorTileItemSteel - id: FloorTileItemPlasticYellow - components: - - type: Sprite - state: plastic-yellow - sprite: _White/Objects/Tiles/tile.rsi - - type: Item - sprite: _White/Objects/Tiles/tile.rsi - - type: FloorTile - outputs: - - Plating - - FloorPlasticYellow - -- type: entity #WWDP add - name: plastic red tile - parent: FloorTileItemSteel - id: FloorTileItemPlasticRed - components: - - type: Sprite - state: plastic-red - sprite: _White/Objects/Tiles/tile.rsi - - type: Item - sprite: _White/Objects/Tiles/tile.rsi - - type: FloorTile - outputs: - - Plating - - FloorPlasticRed - -- type: entity #WWDP add - name: plastic green tile - parent: FloorTileItemSteel - id: FloorTileItemPlasticGreen - components: - - type: Sprite - state: plastic-green - sprite: _White/Objects/Tiles/tile.rsi - - type: Item - sprite: _White/Objects/Tiles/tile.rsi - - type: FloorTile - outputs: - - Plating - - FloorPlasticGreen - -- type: entity #WWDP add - name: plastic blue tile - parent: FloorTileItemSteel - id: FloorTileItemPlasticBlue - components: - - type: Sprite - state: plastic-blue - sprite: _White/Objects/Tiles/tile.rsi - - type: Item - sprite: _White/Objects/Tiles/tile.rsi - - type: FloorTile - outputs: - - Plating - - FloorPlasticBlue - -- type: entity #WWDP add - name: plastic dark tile - parent: FloorTileItemSteel - id: FloorTileItemPlasticDark - components: - - type: Sprite - state: plastic-dark - sprite: _White/Objects/Tiles/tile.rsi - - type: Item - sprite: _White/Objects/Tiles/tile.rsi - - type: FloorTile - outputs: - - Plating - - FloorDarkPlastic - -- type: entity #WWDP add - name: plastic grey tile - parent: FloorTileItemSteel - id: FloorTileItemPlasticGrey - components: - - type: Sprite - state: plastic-grey - sprite: _White/Objects/Tiles/tile.rsi - - type: Item - sprite: _White/Objects/Tiles/tile.rsi - - type: FloorTile - outputs: - - Plating - - FloorPlastic - -- type: entity #WWDP add - name: plastic white tile - parent: FloorTileItemSteel - id: FloorTileItemPlasticWhite - components: - - type: Sprite - state: plastic-white - sprite: _White/Objects/Tiles/tile.rsi - - type: Item - sprite: _White/Objects/Tiles/tile.rsi - - type: FloorTile - outputs: - - Plating - - FloorWhitePlastic - -- type: entity #WWDP add - name: shielding floor - parent: FloorTileItemSteel - id: FloorTileItemShielding - components: - - type: Sprite - state: shielding - sprite: _White/Objects/Tiles/tile.rsi - - type: Item - sprite: _White/Objects/Tiles/tile.rsi - - type: FloorTile - outputs: - - Plating - - FloorShielding - -- type: entity #WWDP add - name: mono shielding floor - parent: FloorTileItemSteel - id: FloorTileItemShieldingMono - components: - - type: Sprite - state: shielding-mono - sprite: _White/Objects/Tiles/tile.rsi - - type: Item - sprite: _White/Objects/Tiles/tile.rsi - - type: FloorTile - outputs: - - Plating - - FloorShieldingMono - -- type: entity #WWDP add - name: shuttle syndie floor - parent: FloorTileItemSteel - id: FloorTileItemShuttleSyndie - components: - - type: Sprite - state: shuttlesyndie - sprite: _White/Objects/Tiles/tile.rsi - - type: Item - sprite: _White/Objects/Tiles/tile.rsi - - type: FloorTile - outputs: - - Plating - - FloorShuttleSyndie - -- type: entity #WWDP add - name: sterile floor - parent: FloorTileItemSteel - id: FloorTileItemSterile - components: - - type: Sprite - state: sterile - sprite: _White/Objects/Tiles/tile.rsi - - type: Item - sprite: _White/Objects/Tiles/tile.rsi - - type: FloorTile - outputs: - - Plating - - FloorSterile - -- type: entity #WWDP add - name: dark sterile floor - parent: FloorTileItemSteel - id: FloorTileItemSterileDark - components: - - type: Sprite - state: sterile-dark - sprite: _White/Objects/Tiles/tile.rsi - - type: Item - sprite: _White/Objects/Tiles/tile.rsi - - type: FloorTile - outputs: - - Plating - - FloorSterileDark - -- type: entity #WWDP add - name: reinforced glass frame floor - parent: FloorTileItemSteel - id: FloorTileItemReinforcedGlassFrame - components: - - type: Sprite - state: rglass-frame - sprite: _White/Objects/Tiles/tile.rsi - - type: Item - sprite: _White/Objects/Tiles/tile.rsi - - type: FloorTile - outputs: - - Plating - - FloorReinforcedGlassFrame - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 30 - behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - - trigger: - !type:DamageTrigger - damage: 5 - behaviors: - - !type:PlaySoundBehavior - sound: - collection: GlassBreak - params: - volume: -5 - - !type:DoActsBehavior - acts: [ "Destruction" ] - -- type: entity #WWDP add - name: glass frame floor - parent: FloorTileItemSteel - id: FloorTileItemGlassFrame - components: - - type: Sprite - state: glass-frame - sprite: _White/Objects/Tiles/tile.rsi - - type: Item - sprite: _White/Objects/Tiles/tile.rsi - - type: FloorTile - outputs: - - Plating - - FloorGlassFrame - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 30 - behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - - trigger: - !type:DamageTrigger - damage: 5 - behaviors: - - !type:PlaySoundBehavior - sound: - collection: GlassBreak - params: - volume: -5 - - !type:DoActsBehavior - acts: [ "Destruction" ] - diff --git a/Resources/Prototypes/Entities/Objects/Misc/torch.yml b/Resources/Prototypes/Entities/Objects/Misc/torch.yml index 0efb753e0d..50e8f65890 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/torch.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/torch.yml @@ -25,6 +25,8 @@ color: "#FFFFFF" visible: false shader: unshaded + - map: [ enum.ExpendableLightVisualLayers.Overlay ] + state: torch_nocloth - type: Icon sprite: Objects/Misc/torch.rsi state: icon diff --git a/Resources/Prototypes/Entities/Objects/Misc/translator_implanters.yml b/Resources/Prototypes/Entities/Objects/Misc/translator_implanters.yml index 8b5b262ff8..53da8e72a5 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/translator_implanters.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/translator_implanters.yml @@ -10,7 +10,7 @@ name: basic common translator implanter components: - type: Implanter - implant: BasicGalacticCommonTranslatorImplant + implant: BasicTauCetiBasicTranslatorImplant - type: entity id: AdvancedGalaticCommonTranslatorImplanter @@ -18,7 +18,7 @@ name: advanced common translator implanter components: - type: Implanter - implant: GalacticCommonTranslatorImplant + implant: TauCetiBasicTranslatorImplant - type: entity id: BubblishTranslatorImplanter @@ -37,9 +37,9 @@ implant: NekomimeticTranslatorImplant - type: entity - id: DraconicTranslatorImplanter + id: DraconicTranslatorImplanter # Intended for Admins Only, this item is for lore reasons not obtainable. parent: [ BaseTranslatorImplanter ] - name: draconic translator implant + name: unathi translator implant components: - type: Implanter implant: DraconicTranslatorImplant @@ -75,3 +75,19 @@ components: - type: Implanter implant: MofficTranslatorImplant + +- type: entity + id: ValyrianStandardTranslatorImplanter + parent: [ BaseTranslatorImplanter ] + name: valyrian standard translator implant + components: + - type: Implanter + implant: ValyrianStandardTranslatorImplant + +- type: entity + id: AzazibaTranslatorImplanter + parent: [ BaseTranslatorImplanter ] + name: azaziba translator implant + components: + - type: Implanter + implant: AzazibaTranslatorImplant \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Misc/utensils.yml b/Resources/Prototypes/Entities/Objects/Misc/utensils.yml index 4250669581..86667f094f 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/utensils.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/utensils.yml @@ -120,3 +120,28 @@ - Plastic - Trash - Knife + +- type: entity + parent: UtensilBase + id: BarSpoon + name: bar spoon + description: Your personal helper to mix drinks and changes lives. + components: + - type: Tag + tags: + - Metal + - type: Sprite + state: bar_spoon + - type: Item + heldPrefix: spoon + - type: Utensil + types: + - Spoon + - type: MeleeWeapon + wideAnimationRotation: 180 + attackRate: 2 + damage: + types: + Blunt: 2 + - type: Shovel + speedModifier: 0.05 # nah diff --git a/Resources/Prototypes/Entities/Objects/Power/portable_recharger.yml b/Resources/Prototypes/Entities/Objects/Power/portable_recharger.yml new file mode 100644 index 0000000000..e3213ac8c9 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Power/portable_recharger.yml @@ -0,0 +1,38 @@ +- type: entity + parent: Clothing + id: PortableRecharger + name: portable recharger + description: High-tech recharger adapted for portability + components: + - type: Item + size: Huge + - type: Sprite + sprite: Objects/Power/portable_recharger.rsi + state: charging + - type: Clothing + equippedPrefix: charging + quickEquip: false + slots: + - back + - type: Charger + slotId: charger_slot + portable: true + - type: PowerChargerVisuals + - type: ApcPowerReceiver + needsPower: false + powerLoad: 0 + - type: StaticPrice + price: 500 + - type: Tag + tags: [] # ignore "WhitelistChameleon" tag + - type: ContainerContainer + containers: + charger_slot: !type:ContainerSlot + - type: ItemSlots + slots: + charger_slot: + ejectOnInteract: true + whitelist: + components: + - HitscanBatteryAmmoProvider + - ProjectileBatteryAmmoProvider diff --git a/Resources/Prototypes/Entities/Objects/Shields/shields.yml b/Resources/Prototypes/Entities/Objects/Shields/shields.yml index 3647bdf0db..ab25a003a2 100644 --- a/Resources/Prototypes/Entities/Objects/Shields/shields.yml +++ b/Resources/Prototypes/Entities/Objects/Shields/shields.yml @@ -314,7 +314,7 @@ name: mirror shield parent: BaseShield id: MirrorShield - description: Eerily glows red... you hear the geometer whispering + description: Glows an eerie red. You hear the Geometer whispering... components: - type: Sprite state: mirror-icon @@ -322,6 +322,7 @@ heldPrefix: mirror - type: Reflect reflectProb: 0.95 + innate: true reflects: - Energy - type: Blocking #Mirror shield reflects heat/laser, but is relatively weak to everything else. @@ -365,10 +366,17 @@ description: Exotic energy shield, when folded, can even fit in your pocket. components: - type: ItemToggle + predictable: false # WD EDIT soundActivate: path: /Audio/Weapons/ebladeon.ogg soundDeactivate: path: /Audio/Weapons/ebladeoff.ogg + # WD EDIT START + soundFailToActivate: + path: /Audio/Machines/button.ogg + params: + variation: 0.250 + # WD EDIT END - type: ItemToggleActiveSound activeSound: path: /Audio/Weapons/ebladehum.ogg @@ -404,11 +412,12 @@ netsync: false enabled: false radius: 1.5 - energy: 2 - color: blue + energy: 0.7 # WD EDIT + color: "#678AD9" # WD EDIT - type: Reflect enabled: false - reflectProb: 0.95 + reflectProb: 1 # WD EDIT + damageOnReflectModifier: 0.5 # WD EDIT reflects: - Energy - type: Blocking @@ -430,31 +439,18 @@ - type: Appearance - type: Damageable damageContainer: Shield - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 180 - behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - - trigger: - !type:DamageTrigger - damage: 100 - behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - - !type:PlaySoundBehavior - sound: - collection: GlassBreak - - !type:SpawnEntitiesBehavior - spawn: - BrokenEnergyShield: - min: 1 - max: 1 - type: StaticPrice price: 350 - - type: MeleeBlock # WD EDIT + # WD EDIT START + - type: MeleeBlock + - type: Battery + maxCharge: 40 + startingCharge: 40 + - type: BatterySelfRecharger + autoRecharge: true + autoRechargeRate: 1 + - type: RechargeableBlocking + # WD EDIT END - type: entity name: broken energy shield diff --git a/Resources/Prototypes/Entities/Objects/Specific/Cargo/cargo_pallet.yml b/Resources/Prototypes/Entities/Objects/Specific/Cargo/cargo_pallet.yml index c628d199a9..07bdee63cf 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Cargo/cargo_pallet.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Cargo/cargo_pallet.yml @@ -1,7 +1,7 @@ - type: entity id: CargoPallet name: cargo pallet - description: Designates valid items to sell to CentCom when a shuttle is recalled. + description: Common fixture of logistics and cargo. Subtle reminder where crates go during transport to avoid bruised shins. parent: BaseStructure components: - type: InteractionOutline @@ -58,17 +58,20 @@ - type: entity id: CargoPalletSell name: cargo selling pallet - description: Designates valid items to sell with a selling computer, or to CentCom when a shuttle is recalled. + description: Designates valid items to sell. parent: CargoPallet components: - type: CargoPallet palletType: sell - type: Sprite drawdepth: FloorTiles - layers: - - sprite: Structures/cargo_pallets.rsi - state: cargo_pallet_sell - + sprite: Structures/cargo_pallets.rsi + - type: Icon + sprite: Structures/cargo_pallets.rsi + state: cargo_pallet_sell + - type: IconSmooth + key: cargo_pallet_sell + base: cargo_pallet_sell_ - type: entity id: CargoPalletBuy @@ -80,7 +83,10 @@ palletType: buy - type: Sprite drawdepth: FloorTiles - layers: - - sprite: Structures/cargo_pallets.rsi - state: cargo_pallet_buy - + sprite: Structures/cargo_pallets.rsi + - type: Icon + sprite: Structures/cargo_pallets.rsi + state: cargo_pallet_buy + - type: IconSmooth + key: cargo_pallet_buy + base: cargo_pallet_buy_ diff --git a/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml b/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml index 78f04163bb..0c3945929b 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml @@ -40,8 +40,8 @@ - 0,0,0,1 - type: UserInterface interfaces: - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface - type: MeleeWeapon # Nyanotrasen - Bibles do Holy damage damage: types: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Chapel/urn.yml b/Resources/Prototypes/Entities/Objects/Specific/Chapel/urn.yml index c778860084..55a58ef18a 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Chapel/urn.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Chapel/urn.yml @@ -9,8 +9,8 @@ - 0,0,0,1 - type: UserInterface interfaces: - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface - type: Sprite sprite: Objects/Specific/Chapel/chaplainurn.rsi state: icon diff --git a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/leaves.yml b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/leaves.yml index b847416211..c26ba925e0 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/leaves.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/leaves.yml @@ -65,7 +65,101 @@ - Smokable - type: Item size: Tiny + +- type: entity + name: rainbow cannabis leaves + parent: LeavesCannabis + id: LeavesCannabisRainbow + description: "Is it supposed to be glowing like that...?" + components: + - type: Sprite + sprite: Objects/Specific/Hydroponics/rainbow_cannabis.rsi + - type: Produce + seedId: rainbowCannabis + - type: PointLight + radius: 1.5 + energy: 2 + - type: RgbLightController + cycleRate: 0.6 + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: SpaceDrugs + Quantity: 3 + - ReagentId: Lipolicide + Quantity: 3 + - ReagentId: MindbreakerToxin + Quantity: 2 + - ReagentId: Happiness + Quantity: 2 +# - ReagentId: ColorfulReagent +# Quantity: 1 + - ReagentId: Psicodine + Quantity: 0.6 +- type: entity + name: dried rainbow cannabis leaves + parent: LeavesCannabisDried + id: LeavesCannabisRainbowDried + description: "Dried rainbow cannabis leaves, ready to be ground." + components: + - type: Stack + stackType: LeavesCannabisRainbowDried + count: 1 + - type: SolutionContainerManager + solutions: + food: + maxVol: 8.5 #fuck you saveload test fail + reagents: + - ReagentId: SpaceDrugs + Quantity: 2.4 + - ReagentId: Lipolicide + Quantity: 2.4 + - ReagentId: MindbreakerToxin + Quantity: 1.6 + - ReagentId: Happiness + Quantity: 1.6 +# - ReagentId: ColorfulReagent +# Quantity: 0.8 + - ReagentId: Psicodine + Quantity: 0.48 + - type: Sprite + sprite: Objects/Specific/Hydroponics/rainbow_cannabis.rsi + state: dried + +- type: entity + name: ground rainbow cannabis + parent: GroundCannabis + id: GroundCannabisRainbow + description: "Ground rainbow cannabis, ready to take you on a trip." + components: + - type: Stack + stackType: GroundCannabisRainbow + count: 1 + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: SpaceDrugs + Quantity: 4 + - ReagentId: Lipolicide + Quantity: 4 + - ReagentId: MindbreakerToxin + Quantity: 2.66 + - ReagentId: Happiness + Quantity: 2.66 +# - ReagentId: ColorfulReagent +# Quantity: 1.33 + - ReagentId: Psicodine + Quantity: 0.8 + - type: Sprite + sprite: Objects/Specific/Hydroponics/rainbow_cannabis.rsi + state: powderpile_rainbow + color: white + - type: Construction + graph: smokeableGroundCannabisRainbow + node: groundRainbow - type: entity name: tobacco leaves diff --git a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml index 2b232d643d..92aa22a8ba 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml @@ -285,6 +285,17 @@ - type: Sprite sprite: Objects/Specific/Hydroponics/cannabis.rsi +- type: entity + parent: SeedBase + name: packet of rainbow cannabis seeds + description: "These seeds grow into rainbow weed. Groovy... and also highly addictive." + id: RainbowCannabisSeeds + components: + - type: Seed + seedId: rainbowCannabis + - type: Sprite + sprite: Objects/Specific/Hydroponics/rainbow_cannabis.rsi + - type: entity parent: SeedBase name: packet of nettle seeds @@ -571,3 +582,13 @@ seedId: cotton - type: Sprite sprite: Objects/Specific/Hydroponics/cotton.rsi + +- type: entity + parent: SeedBase + name: packet of pyrotton seeds + id: PyrottonSeeds + components: + - type: Seed + seedId: pyrotton + - type: Sprite + sprite: Objects/Specific/Hydroponics/pyrotton.rsi diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml index 527625b6fd..fe38c45b43 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml @@ -36,6 +36,9 @@ maxVol: 100 - type: UseDelay delay: 1 + - type: PhysicalComposition + materialComposition: + Plastic: 50 - type: Tag tags: - Mop @@ -115,6 +118,9 @@ coefficients: Blunt: 0.95 Slash: 0.95 + - type: PhysicalComposition + materialComposition: + Plastic: 50 - type: Tag tags: - WetFloorSign diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml index f816a37486..5fe88f8d0c 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml @@ -24,7 +24,7 @@ paralyzeTime: 2 launchForwardsMultiplier: 1.5 - type: StepTrigger - triggerGroups: # WD EDIT + triggerGroups: types: - SlipEntity intersectRatio: 0.2 @@ -160,7 +160,7 @@ paralyzeTime: 5 launchForwardsMultiplier: 2.5 - type: StepTrigger - triggerGroups: # WD EDIT + triggerGroups: types: - SlipEntity intersectRatio: 0.04 @@ -204,7 +204,7 @@ - type: Slippery paralyzeTime: 2 - type: StepTrigger - triggerGroups: # WD EDIT + triggerGroups: types: - SlipEntity - type: Item diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml index 0e19c03dee..cddf7f6075 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml @@ -5,6 +5,12 @@ suffix: Empty description: A spray bottle with an unscrewable top. components: + - type: Drink + solution: spray + ignoreEmpty: true + useSound: + path: /Audio/Effects/spray3.ogg + transferAmount: 10 - type: Tag tags: - Spray @@ -24,6 +30,8 @@ solution: spray - type: SolutionTransfer canChangeTransferAmount: true + - type: SolutionItemStatus + solution: spray - type: UseDelay - type: Spray transferAmount: 10 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/trashbag.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/trashbag.yml index f802ae1c5c..9927d836ba 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/trashbag.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/trashbag.yml @@ -22,6 +22,8 @@ tags: - Cartridge - Trash + - type: UseDelay + delay: 0.5 - type: Tag tags: - TrashBag diff --git a/Resources/Prototypes/Entities/Objects/Specific/Kitchen/foodcarts.yml b/Resources/Prototypes/Entities/Objects/Specific/Kitchen/foodcarts.yml index 0894d6a754..ca74dca8a7 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Kitchen/foodcarts.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Kitchen/foodcarts.yml @@ -44,8 +44,8 @@ - type: Appearance - type: UserInterface interfaces: - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface - type: Storage maxItemSize: Normal grid: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mail/Items/boxes.yml b/Resources/Prototypes/Entities/Objects/Specific/Mail/Items/boxes.yml new file mode 100644 index 0000000000..536736fc90 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Specific/Mail/Items/boxes.yml @@ -0,0 +1,212 @@ +# Mail-only boxes. If/when something uses these outside of the mail, move the entry into Catalog/Fills. + +- type: entity + name: scented soap sampler pack + parent: BoxCardboard + id: BoxSoapsAssorted + description: A box of various scented soaps. Ooh, lavender. + components: + - type: StorageFill + contents: + - id: SoapNT + amount: 1 + - id: Soap + amount: 1 + - id: SoapHomemade + amount: 1 + - id: SoapDeluxe + amount: 1 + - type: Storage + maxItemSize: Normal + grid: + - 0,0,3,1 + whitelist: + tags: + - Soap + - type: Sprite + layers: + - state: box + +- type: entity + name: scented soap sampler pack + parent: BoxCardboard + id: BoxSoapsAssortedOmega + description: A box of various scented soaps. Ooh, bluespace. + components: + - type: StorageFill + contents: + - id: SoapNT + amount: 1 + - id: Soap + amount: 1 + - id: SoapOmega + amount: 1 + - id: SoapDeluxe + amount: 1 + - type: Storage + maxItemSize: Normal + grid: + - 0,0,3,1 + whitelist: + tags: + - Soap + - type: Sprite + layers: + - state: box + +- type: entity + name: Build-a-Buddy kit + suffix: Human + parent: BoxHug + id: BoxBuildABuddyHuman + description: "\"Henry the Human\" Build-a-Buddy kit. Some assembly required." + components: + - type: StorageFill + contents: + - id: HeadHuman + amount: 1 + - id: TorsoHuman + amount: 1 + - id: LeftArmHuman + amount: 1 + - id: RightArmHuman + amount: 1 + - id: LeftHandHuman + amount: 1 + - id: RightHandHuman + amount: 1 + - id: LeftLegHuman + amount: 1 + - id: RightLegHuman + amount: 1 + - id: LeftFootHuman + amount: 1 + - id: RightFootHuman + amount: 1 + - type: Storage + grid: + - 0,0,4,3 + whitelist: + components: + - BodyPart + +# DeltaV - Goblins Aren't Real +#- type: entity +# name: Build-a-Buddy kit +# suffix: Goblin +# parent: BoxBuildABuddyHuman +# id: BoxBuildABuddyGoblin +# description: "\"Greta the Goblin\" Build-a-Buddy kit. Some assembly required." +# components: +# - type: StorageFill +# contents: +# - id: HeadGoblin +# amount: 1 +# - id: TorsoGoblin +# amount: 1 +# - id: LeftArmGoblin +# amount: 1 +# - id: RightArmGoblin +# amount: 1 +# - id: LeftHandGoblin +# amount: 1 +# - id: RightHandGoblin +# amount: 1 +# - id: LeftLegGoblin +# amount: 1 +# - id: RightLegGoblin +# amount: 1 +# - id: LeftFootGoblin +# amount: 1 +# - id: RightFootGoblin +# amount: 1 + +- type: entity + name: Build-a-Buddy kit + suffix: Reptilian + parent: BoxBuildABuddyHuman + id: BoxBuildABuddyReptilian + description: "\"Randy the Reptilian\" Build-a-Buddy kit. Some assembly required." + components: + - type: StorageFill + contents: + - id: HeadReptilian + amount: 1 + - id: TorsoReptilian + amount: 1 + - id: LeftArmReptilian + amount: 1 + - id: RightArmReptilian + amount: 1 + - id: LeftHandReptilian + amount: 1 + - id: RightHandReptilian + amount: 1 + - id: LeftLegReptilian + amount: 1 + - id: RightLegReptilian + amount: 1 + - id: LeftFootReptilian + amount: 1 + - id: RightFootReptilian + amount: 1 + +- type: entity + name: Build-a-Buddy kit + suffix: Slime + parent: BoxBuildABuddyHuman + id: BoxBuildABuddySlime + description: "\"Steven the Slime\" Build-a-Buddy kit. Some assembly required." + components: + - type: StorageFill + contents: + - id: HeadSlime + amount: 1 + - id: TorsoSlime + amount: 1 + - id: LeftArmSlime + amount: 1 + - id: RightArmSlime + amount: 1 + - id: LeftHandSlime + amount: 1 + - id: RightHandSlime + amount: 1 + - id: LeftLegSlime + amount: 1 + - id: RightLegSlime + amount: 1 + - id: LeftFootSlime + amount: 1 + - id: RightFootSlime + amount: 1 + +- type: entity + name: Build-a-Buddy kit + suffix: Vulpkanin + parent: BoxBuildABuddyHuman + id: BoxBuildABuddyVulpkanin + description: "\"Valerie the Vulpkanin\" Build-a-Buddy kit. Some assembly required." + components: + - type: StorageFill + contents: + - id: HeadVulpkanin + amount: 1 + - id: TorsoVulpkanin + amount: 1 + - id: LeftArmVulpkanin + amount: 1 + - id: RightArmVulpkanin + amount: 1 + - id: LeftHandVulpkanin + amount: 1 + - id: RightHandVulpkanin + amount: 1 + - id: LeftLegVulpkanin + amount: 1 + - id: RightLegVulpkanin + amount: 1 + - id: LeftFootVulpkanin + amount: 1 + - id: RightFootVulpkanin + amount: 1 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mail/Items/misc.yml b/Resources/Prototypes/Entities/Objects/Specific/Mail/Items/misc.yml new file mode 100644 index 0000000000..6f1c86e00b --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Specific/Mail/Items/misc.yml @@ -0,0 +1,117 @@ +# Mail-only items. If/when these get used for anything else, please move them to another folder. +# Pranks: admin items or effects put into an envelope, released when opened or damaged. +- type: entity + id: DelayedSmoke + parent: BaseItem + noSpawn: true + name: delayed smoke + suffix: "(10s)" + components: + - type: Sprite #DeltaV: Apparently these want sprites, probably because they're baseitems + sprite: /Textures/Objects/Fun/goldbikehorn.rsi + visible: false + state: icon + - type: DelayedItem + item: AdminInstantEffectSmoke10 + +- type: entity + id: AdminInstantEffectEMP7 + noSpawn: true + suffix: EMP, 7 meters + parent: AdminInstantEffectBase + components: + - type: EmpOnTrigger + range: 7 + energyConsumption: 50000 + +- type: entity + id: DelayedEMP + parent: BaseItem + noSpawn: true + name: delayed EMP (7 meters) + components: + - type: Sprite #DeltaV: Apparently these want sprites, probably because they're baseitems + sprite: /Textures/Objects/Fun/goldbikehorn.rsi + visible: false + state: icon + - type: DelayedItem + item: AdminInstantEffectEMP7 + +# Miscellaneous Items + +- type: entity + id: SyringeCognizine + parent: Syringe + name: cognizine syringe + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 15 + reagents: + - ReagentId: Cognizine + Quantity: 15 # Surely three friends is enough. + +- type: entity + id: SyringeOpporozidone + parent: Syringe + name: opporozidone syringe + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 15 +# reagents: # TODO: we don't have that yet. Guess the people will receive an empty syringe instead. +# - ReagentId: Opporozidone +# Quantity: 15 + +- type: entity + id: NecrosolChemistryBottle + parent: BaseChemistryBottleFilled + name: necrosol bottle + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Necrosol + Quantity: 30 + +# Premium Alcohol: wait, it's just marketing? +# TODO: different sprites would be nice. +- type: entity + id: DrinkPremiumVodkaBottleFull + parent: DrinkVodkaBottleFull + name: Moment of Clarity vodka bottle + description: When things get a bit hectic, all you need is a Moment of Clarity. + +- type: entity + id: DrinkPremiumGinBottleFull + parent: DrinkGinBottleFull + name: Harry's gin bottle + description: An interesting set of botanicals, for sure. Is that pumpkin? + +- type: entity + id: DrinkPremiumTequilaBottleFull + parent: DrinkTequilaBottleFull + name: Casa del Eorg tequila bottle + description: Save the best for last. Casa del Eorg, 100% agave. + +- type: entity + id: DrinkPremiumWhiskeyBottleFull + parent: DrinkWhiskeyBottleFull + name: Ol' Prowler 18 whiskey bottle + description: Surprisingly smooth, it has a nasty habit of sneaking up on you. + +- type: entity + id: DrinkPremiumRumBottleFull + parent: DrinkRumBottleFull + name: Redeemer's Bounty rum bottle + description: Well, you asked for it. Navy strength. + +- type: entity + id: DrinkPremiumAbsintheBottleFull + parent: DrinkAbsintheBottleFull + name: Bureaucracy's Kiss absinthe bottle + description: A refined taste that tends to linger. diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mail/Items/paper.yml b/Resources/Prototypes/Entities/Objects/Specific/Mail/Items/paper.yml new file mode 100644 index 0000000000..b21ca40717 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Specific/Mail/Items/paper.yml @@ -0,0 +1,483 @@ +# Papers (letters, ad copy) +# TODO: these should really be based on localization strings. +- type: entity + id: PaperMailNFPowerTool + name: Hazard Fraught advertisement + categories: [ HideSpawnMenu ] + suffix: "power tool ad, formatted" + parent: Paper + components: + - type: Paper + content: |2 + + [head=1]Hazard Fraught Tools[/head] + + [head=2]Discount Tools at Quality Prices![/head] + + [head=2]Fax us for a catalog at + [color=#990000]ERROR: UNEXPECTED EOF[/color][/head] + +- type: entity + id: PaperMailNFVagueThreat1 + categories: [ HideSpawnMenu ] + suffix: "vague mail threat 1, formatted" + parent: Paper + components: + - type: Paper + content: |2 + + [head=1]I know what you did.[/head] + + [head=3]You don't know what I'm going to do to you.[/head] + +- type: entity + id: PaperMailNFVagueThreat2 + categories: [ HideSpawnMenu ] + suffix: "vague mail threat 2, formatted" + parent: Paper + components: + - type: Paper + content: |2 + + [head=1]I'm coming for you.[/head] + +- type: entity + id: PaperMailNFVagueThreat3 + categories: [ HideSpawnMenu ] + suffix: "vague mail threat 3, formatted" + parent: Paper + components: + - type: Paper + content: |2 + + [head=1]You're next.[/head] + +- type: entity + id: PaperMailNFVagueThreat4 + categories: [ HideSpawnMenu ] + suffix: "vague mail threat 4, formatted" + parent: Paper + components: + - type: Paper + content: |2 + + [head=1]We see you.[/head] + +- type: entity + id: PaperMailNFVagueThreat5 + categories: [ HideSpawnMenu ] + suffix: "vague mail threat 5, formatted" + parent: Paper + components: + - type: Paper + content: |2 + + [head=2]I hope your affairs are in order.[/head] + +- type: entity + id: PaperMailNFVagueThreat6 + categories: [ HideSpawnMenu ] + suffix: "vague mail threat 6, formatted" + parent: Paper + components: + - type: Paper + content: |2 + + [head=1]It's only a matter of time.[/head] + + + [head=1]Enjoy it while it lasts.[/head] + +- type: entity + id: PaperMailNFVagueThreat7 + categories: [ HideSpawnMenu ] + suffix: "vague mail threat 7, formatted" + parent: Paper + components: + - type: Paper + content: |2 + + [head=2]Who should we mail your pieces to?[/head] + +- type: entity + id: PaperMailNFVagueThreat8 + categories: [ HideSpawnMenu ] + suffix: "vague mail threat 8, formatted" + parent: Paper + components: + - type: Paper + content: |2 + + [head=2]Would you prefer to die slowly or quickly? + [/head] + [head=1]Just kidding.[/head] + + [head=2]We don't care what you think.[/head] + +- type: entity + id: PaperMailNFVagueThreat9 + categories: [ HideSpawnMenu ] + suffix: "vague mail threat 9, formatted" + parent: Paper + components: + - type: Paper + content: |2 + + [head=3]I think your head would look nice on my mantel.[/head] + +- type: entity + id: PaperMailNFVagueThreat10 + categories: [ HideSpawnMenu ] + suffix: "vague mail threat 10, formatted" + parent: Paper + components: + - type: Paper + content: |2 + + [head=1]You should have paid up.[/head] + + + [head=1]It's too late now.[/head] + +- type: entity + id: PaperMailNFVagueThreat11 + categories: [ HideSpawnMenu ] + suffix: "vague mail threat 11, formatted" + parent: Paper + components: + - type: Paper + content: |2 + + [head=3]Your family will miss you, but don't worry.[/head] + + + [head=1]We'll take care of them too.[/head] + +- type: entity + id: PaperMailNFVagueThreat12 + categories: [ HideSpawnMenu ] + suffix: "vague mail threat 12, formatted" + parent: Paper + components: + - type: Paper + content: |2 + + [head=3]I have a bet that you're going to die today.[/head] + + + [head=1]I'm not afraid to cheat.[/head] + +- type: entity + id: PaperMailNFPwrGameAd + name: pwr game advertisement + categories: [ HideSpawnMenu ] + suffix: "pwr game ad" + parent: Paper + components: + - type: Paper + content: |2 + + [head=1]Drink Pwr Game![/head] + + [head=3]Proud sponsor of the NT Block Game Championship.[/head] + +- type: entity + id: PaperMailNFRedBoolAd + name: red bool advertisement + categories: [ HideSpawnMenu ] + suffix: "red bool ad" + parent: Paper + components: + - type: Paper + content: |2 + + [head=2]Try NEW Reformulated Red Bool![/head] + + [head=2]Over [color=#dd0000]1.5g[/color] of caffeine per can![/head] + + [head=2]Punch your heart into overdrive![/head] + +- type: entity + id: PaperMailNFSpaceColaAd + name: space cola advertisement + categories: [ HideSpawnMenu ] + suffix: "space cola ad" + parent: Paper + components: + - type: Paper + content: |2 + + [head=2]The classic taste you love, Space Cola.[/head] + + [head=2]Now certified lead-free.[/head] + +- type: entity + id: PaperMailNFSpaceMountainWindAd + name: space mountain wind advertisement + categories: [ HideSpawnMenu ] + suffix: "space mountain wind ad" + parent: Paper + components: + - type: Paper + content: |2 + + [head=3]When it's time to game, there's one choice:[/head] + + [head=1]Space Mountain Wind.[/head] + +- type: entity + id: PaperMailNFSpaceUpAd + name: space up advertisement + categories: [ HideSpawnMenu ] + suffix: "space up ad" + parent: Paper + components: + - type: Paper + content: |2 + + [head=3]The crisp, refreshing taste of lemon and lime.[/head] + + + [head=1]Space Up![/head] + + + [head=2]Ask your barkeep for a Sui Dream today![/head] + +- type: entity + id: PaperMailNTSoapAd1 + categories: [ HideSpawnMenu ] + suffix: "soap ad 1" + parent: Paper + components: + - type: Paper + stampedBy: + - stampedColor: '#333333FF' + stampedName: Christopher Cleanman +# stampType: Signature #DeltaV - Not compatible with our signatures code stuff apparently + content: |2 + [head=3]Hello Valued Customer,[/head] + You have been selected to receive a complimentary sampler of scented soaps that Nanotrasen has to offer. + + Why not enjoy a nice warm shower with our scented soaps? Tested and effective vs. vent crud and mold. + + We hope you enjoy. + + Sincerely, + Christopher Cleanman, Vice President, NT Habs - Toiletries Dept. + +- type: entity + id: PaperMailNTSoapAd2 + categories: [ HideSpawnMenu ] + suffix: "soap ad 2" #DeltaV - Edited to not be addressed to Frontier Citizens, localized + parent: Paper + components: + - type: Paper + content: |2 + [head=2]GREETINGS DELTA SECTOR CITIZEN[/head] + + OUR REPORTS INDICATE THAT: + 1. YOU HAVE FAILED YOUR QUARTERLY HYGIENE INSPECTION. + 2. THIS HAS REDUCED SECTOR EFFICIENCY BY [bold]0.02%[/bold]. + + ENCLOSED IS A SELECTION OF HYGIENE PRODUCTS SUITABLE FOR USE BY ORGANICS. WE HOPE THAT THIS SITUATION IS RESOLVED PROMPTLY. + + [italic]THIS IS AN AUTOMATED MESSAGE. DO NOT REPLY.[/italic] + +- type: entity + id: PaperMailNTConscript + categories: [ HideSpawnMenu ] + suffix: "conscript" + parent: Paper + components: + - type: Paper + content: |2 + + [head=1]NOT ONE STEP BACK.[/head] + + + [head=1]FOR THE FRONTIER.[/head] + +- type: entity + id: PaperMailNTMusket + categories: [ HideSpawnMenu ] + suffix: "musket" + parent: Paper + components: + - type: Paper + content: |2 + + [head=2]Use a musket for sector defense, + like the founding fathers intended.[/head] + +- type: entity + id: PaperMailNFPaperPusherAd + categories: [ HideSpawnMenu ] + suffix: "paper pusher" + parent: Paper + components: + - type: Paper + content: |2 + + [head=2]Here is a pen for any letters you write. + [/head] + [head=1]Keep it close, use it often.[/head] + + [head=2]May you write well, neatly, and with style.[/head] + + [head=3]Sincerely, + [italic]The Frontier Paper Pusher's Club[/italic][/head] + +- type: entity + id: PaperMailNFPetBedAssemblyManual + name: pet bed assembly manual + categories: [ HideSpawnMenu ] + suffix: "pet bed assembly manual" + parent: Paper + components: + - type: Paper + content: |2 + + [head=1]HÖGANÄS[/head] + + [italic](There is a black and white picture of a pet bed on the first page.)[/italic] + + [italic](On the next few pages, you see a list of materials and a happy stick figure assembling furniture.)[/italic] + + [italic](On the pages after that, you see a set of instructions to assemble a pet bed. You're sure you don't need them, how hard could it be?)[/italic] + +- type: entity + id: PaperMailNTBoxer + categories: [ HideSpawnMenu ] + suffix: "boxer" + parent: Paper + components: + - type: Paper + content: |2 + [head=2]You've gotta defend your belt, champ. + [/head] + [head=1]They're coming for you.[/head] + + [head=2]This should help. Knock 'em out.[/head] + +# Placeholder for an arm-on-use, flashbang fakeout pipebomb +- type: entity + id: PaperMailNFPipebombIntern + categories: [ HideSpawnMenu ] + suffix: "pipe bomb intern" + parent: Paper + components: + - type: Paper + stampedBy: + - stampedColor: '#333333FF' + stampedName: craig +# stampType: Signature #DeltaV - Not compatible with our signatures code stuff apparently + content: |2 + [bold]hey uh, they told me to send you a pipebomb i guess? + + this is all i could find around here, hope that works + + thanks[/bold] + +- type: entity + id: PaperMailNFAntivirus + name: Snortin Antivirus invoice + categories: [ HideSpawnMenu ] + suffix: "antivirus ad" + parent: Paper + components: + - type: Paper + content: |2 + + [head=1]Invoice[/head][head=3] + Snortin Antivirus Software[/head] + + [head=3]Order #41003 + [bold][bullet/][/bold] 1x Snortin Total-275 Antivirus Install Disk[/head] + + [head=3]Total: 947381 Spesos[/head] + + Thank you for making purchase from Snortin Antivirus Software. + We assuring you that our product is greatest. + Please sending payment at earliest convenience. + +- type: entity + id: PaperMailNFEMPPreparedness + categories: [ HideSpawnMenu ] + name: EMP preparedness response form + suffix: "emp preparedness" #DeltaV - Replaces mention of SR with HoS + parent: Paper + components: + - type: Paper + content: |2 + + [head=1]EMP Preparedness Response[/head] + + You have been selected to receive a NT EMP Preparedness kit as a test. Note that this is only a test. In a real emergency, follow the instructions of your vessel's command staff. + + As the recipient of this, please note [bold]any improvements[/bold] that could be made towards the EMP preparedness of the vessel you were aboard when opening and submit this form to your serving Captain or Head of Security. + + [bold]Date of test:[/bold] + [bold]Number of affected items:[/bold] + [bold]Perceived severity of incident:[/bold] + [bold]Suggested improvements:[/bold] + +- type: entity + id: PaperMailNFBuildABuddy + categories: [ HideSpawnMenu ] + name: Build-a-Buddy adoption letter + suffix: "build-a-buddy" #DeltaV- Body text changed, because Goblins Aren't Real + parent: Paper + components: + - type: Paper + stampState: paper_stamp-generic + stampedBy: + - stampedColor: '#FF6699FF' + stampedName: Chief Friendship Officer + - stampedColor: '#333333FF' + stampedName: Cuts-With-Scalpel +# stampType: Signature #DeltaV - Not compatible with our signatures code stuff apparently. + content: |2 + + [head=1]Note of Adoption[/head] + + You're now the proud owner of your very own Build-a-Buddy! + + We hope that your new friend can serve as a shoulder to lean on in the depths of space, and hopefully you won't be quite as lonely out there. Personally, I find putting them together to be rather therapeutic. + + [bold]Collect the whole set![/bold] + [bold][bullet/][/bold] Henry the Human + [bold][bullet/][/bold] Randy the Reptilian + [bold][bullet/][/bold] Steven the Slime + [bold][bullet/][/bold] Valerie the Vulpkanin + +- type: entity + id: PaperMailNFSpaceLaw + categories: [ HideSpawnMenu ] + suffix: "space-law" #DeltaV- edited contents to be from the Delta Sector instead of the Frontier + parent: Paper + components: + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: Central Admiralty of the Delta Sector + content: |2 + + [head=1]Space Law is your shield.[/head] + + [head=2]With it, you guard the Delta Sector.[/head][head=3] + [/head] + [head=1]Memorize it. Grasp it firmly.[/head] + + [head=2]The SOP is your sword, don't get rusty.[/head] + + [head=2]Maintain your balance, and wield it well.[/head] + + + + + + + + + [head=3][italic]Internal Bureau of Propaganda[/italic][/head] diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mail/base_mail_large.yml b/Resources/Prototypes/Entities/Objects/Specific/Mail/base_mail_large.yml new file mode 100644 index 0000000000..a5dcefacba --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Specific/Mail/base_mail_large.yml @@ -0,0 +1,79 @@ +# Large packages. +- type: entity + parent: BaseMail + abstract: true + id: BaseMailLarge + name: mail-large-item-name-unaddressed + components: + - type: Item + size: Ginormous + - type: Sprite + scale: 0.8, 0.8 + sprite: Objects/Specific/Mail/mail_large.rsi + layers: + - state: icon + map: ["enum.MailVisualLayers.Icon"] + - state: fragile + map: ["enum.MailVisualLayers.FragileStamp"] + visible: false + - map: ["enum.MailVisualLayers.JobStamp"] + scale: 0.8, 0.8 + offset: 0.235, -0.01 + - state: locked + map: ["enum.MailVisualLayers.Lock"] + - state: priority + map: ["enum.MailVisualLayers.PriorityTape"] + visible: false + shader: unshaded + - state: broken + map: ["enum.MailVisualLayers.Breakage"] + visible: false + - type: GenericVisualizer + visuals: + enum.MailVisuals.IsTrash: + enum.MailVisualLayers.Icon: + True: + state: trash + False: + state: icon + enum.MailVisuals.IsLocked: + enum.MailVisualLayers.Lock: + True: + visible: true + False: + visible: false + enum.MailVisuals.IsFragile: + enum.MailVisualLayers.FragileStamp: + True: + visible: true + False: + visible: false + enum.MailVisuals.IsPriority: + enum.MailVisualLayers.PriorityTape: + True: + visible: true + False: + visible: false + enum.MailVisuals.IsPriorityInactive: + enum.MailVisualLayers.PriorityTape: + True: + shader: shaded + state: priority_inactive + False: + shader: unshaded + state: priority + enum.MailVisuals.IsBroken: + enum.MailVisualLayers.Breakage: + True: + visible: true + False: + visible: false + - type: MultiHandedItem + - type: Mail + isLarge: true + +- type: entity + noSpawn: true + parent: BaseMailLarge + id: MailLargeAdminFun + suffix: adminfun diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml index 6e5362d9bb..dab6f9f20f 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml @@ -39,8 +39,8 @@ doAfterDelay: 10 - type: UserInterface interfaces: - - key: enum.MechUiKey.Key - type: MechBoundUserInterface + enum.MechUiKey.Key: + type: MechBoundUserInterface - type: MeleeWeapon hidden: true attackRate: 0.75 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml index e2e9328342..ab338b9da9 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml @@ -16,10 +16,9 @@ - type: ActivatableUIRequiresPowerCell - type: ActivatableUI key: enum.CrewMonitoringUIKey.Key - closeOnHandDeselect: false - type: UserInterface interfaces: - - key: enum.CrewMonitoringUIKey.Key + enum.CrewMonitoringUIKey.Key: type: CrewMonitoringBoundUserInterface - type: CrewMonitoringConsole - type: DeviceNetwork diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml index 64bd04569b..c01aaa84a9 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/healthanalyzer.yml @@ -17,10 +17,9 @@ storedRotation: -90 - type: ActivatableUI key: enum.HealthAnalyzerUiKey.Key - closeOnHandDeselect: false - type: UserInterface interfaces: - - key: enum.HealthAnalyzerUiKey.Key + enum.HealthAnalyzerUiKey.Key: type: HealthAnalyzerBoundUserInterface - type: HealthAnalyzer scanningEndSound: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/medkits.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/medkits.yml index 62e5ab4476..46d1efa24e 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/medkits.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/medkits.yml @@ -15,6 +15,9 @@ size: Large sprite: Objects/Specific/Medical/firstaidkits.rsi heldPrefix: firstaid + - type: PhysicalComposition + materialComposition: + Plastic: 150 - type: Tag tags: - Medkit diff --git a/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml b/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml index 74199c9f65..113017cc84 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml @@ -9,11 +9,11 @@ state: icon - type: ActivatableUI key: enum.AnomalyScannerUiKey.Key - closeOnHandDeselect: false + requireActiveHand: false inHandsOnly: true - type: UserInterface interfaces: - - key: enum.AnomalyScannerUiKey.Key + enum.AnomalyScannerUiKey.Key: type: AnomalyScannerBoundUserInterface - type: AnomalyScanner - type: GuideHelp diff --git a/Resources/Prototypes/Entities/Objects/Specific/Research/rped.yml b/Resources/Prototypes/Entities/Objects/Specific/Research/rped.yml index 84a51b4f34..fca8c8ae85 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Research/rped.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Research/rped.yml @@ -10,6 +10,9 @@ - type: Item sprite: Objects/Specific/Research/rped.rsi size: Normal + - type: GuideHelp + guides: + - MachineUpgrading - type: PartExchanger - type: Storage grid: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml index a7cf7ad5c8..e14901f642 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml @@ -343,9 +343,10 @@ - type: ItemBorgModule items: - AdvMopItem - - HoloprojectorBorg + - Holoprojector # WD EDIT - SprayBottleSpaceCleaner - Dropper + - TrashBag # medical modules - type: entity @@ -579,5 +580,19 @@ - state: icon-syndicate - type: ItemBorgModule items: - - WeaponLightMachineGunL6C - - PinpointerSyndicateNuclear + - WeaponLightMachineGunL6C + - PinpointerSyndicateNuclear + +- type: entity + id: BorgModuleMartyr + parent: [ BaseBorgModule, BaseProviderBorgModule ] + name: martyr cyborg module + description: "A module that comes with an explosive you probably don't want to handle yourself." + components: + - type: Sprite + layers: + - state: syndicateborgbomb + - state: icon-bomb + - type: ItemBorgModule + items: + - SelfDestructSeq diff --git a/Resources/Prototypes/Entities/Objects/Specific/Service/barber.yml b/Resources/Prototypes/Entities/Objects/Specific/Service/barber.yml index 4a16603541..451230bbf1 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Service/barber.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Service/barber.yml @@ -14,11 +14,12 @@ changeSlotTime: 20 - type: ActivatableUI key: enum.MagicMirrorUiKey.Key - closeOnHandDeselect: true + inHandsOnly: true + requireActiveHand: true - type: UserInterface interfaces: - - key: enum.MagicMirrorUiKey.Key - type: MagicMirrorBoundUserInterface + enum.MagicMirrorUiKey.Key: + type: MagicMirrorBoundUserInterface - type: MeleeWeapon wideAnimationRotation: -135 attackRate: 1 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml index c38868b399..e1716f0843 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml @@ -36,7 +36,7 @@ radius: 0.45 density: 50 mask: - - SmallMobMask #this is so they can go under plastic flaps + - CrateMask #this is so they can go under plastic flaps layer: - MachineLayer - type: Icon diff --git a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml index cb6708431a..036b876a97 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml @@ -45,14 +45,14 @@ ano01_on: Rainbow - type: UserInterface #needs to be here for certain effects interfaces: - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface - - key: enum.TransferAmountUiKey.Key - type: TransferAmountBoundUserInterface - - key: enum.InstrumentUiKey.Key - type: InstrumentBoundUserInterface - - key: enum.IntercomUiKey.Key - type: IntercomBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface + enum.TransferAmountUiKey.Key: + type: TransferAmountBoundUserInterface + enum.InstrumentUiKey.Key: + type: InstrumentBoundUserInterface + enum.IntercomUiKey.Key: + type: IntercomBoundUserInterface - type: Appearance - type: Item size: Normal diff --git a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/structure_artifacts.yml b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/structure_artifacts.yml index f098894ff7..b53a617981 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/structure_artifacts.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/structure_artifacts.yml @@ -22,14 +22,14 @@ noRot: true - type: UserInterface #needs to be here for certain effects interfaces: - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface - - key: enum.TransferAmountUiKey.Key - type: TransferAmountBoundUserInterface - - key: enum.InstrumentUiKey.Key - type: InstrumentBoundUserInterface - - key: enum.IntercomUiKey.Key - type: IntercomBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface + enum.TransferAmountUiKey.Key: + type: TransferAmountBoundUserInterface + enum.InstrumentUiKey.Key: + type: InstrumentBoundUserInterface + enum.IntercomUiKey.Key: + type: IntercomBoundUserInterface - type: Reactive groups: Acidic: [Touch] diff --git a/Resources/Prototypes/Entities/Objects/Specific/atmos.yml b/Resources/Prototypes/Entities/Objects/Specific/atmos.yml index 0dc714aba0..c67e7ff8c3 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/atmos.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/atmos.yml @@ -13,12 +13,12 @@ - type: ActivatableUI inHandsOnly: true singleUser: true - closeOnHandDeselect: false + requireActiveHand: false key: enum.GasAnalyzerUiKey.Key - type: UserInterface interfaces: - - key: enum.GasAnalyzerUiKey.Key - type: GasAnalyzerBoundUserInterface + enum.GasAnalyzerUiKey.Key: + type: GasAnalyzerBoundUserInterface - type: Appearance - type: GenericVisualizer visuals: diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml b/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml index 027ff206f8..4bd71f898d 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml @@ -8,7 +8,6 @@ solutions: beaker: maxVol: 200 - canMix: true - type: Sprite sprite: Objects/Specific/Chemistry/jug.rsi layers: @@ -19,6 +18,8 @@ - type: Item size: Normal sprite: Objects/Specific/Chemistry/jug.rsi + - type: MixableSolution + solution: beaker - type: RefillableSolution solution: beaker - type: DrainableSolution @@ -31,9 +32,11 @@ solution: beaker - type: SolutionTransfer canChangeTransferAmount: true + - type: SolutionItemStatus + solution: beaker - type: UserInterface interfaces: - - key: enum.TransferAmountUiKey.Key + enum.TransferAmountUiKey.Key: type: TransferAmountBoundUserInterface - type: Drink solution: beaker diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml index 379c361be5..32d9a9a500 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml @@ -29,7 +29,8 @@ solutions: drink: # This solution name and target volume is hard-coded in ChemMasterComponent maxVol: 30 - canMix: true + - type: MixableSolution + solution: drink - type: RefillableSolution solution: drink - type: DrainableSolution @@ -41,10 +42,12 @@ - type: SolutionTransfer maxTransferAmount: 30 canChangeTransferAmount: true + - type: SolutionItemStatus + solution: drink - type: UserInterface interfaces: - - key: enum.TransferAmountUiKey.Key - type: TransferAmountBoundUserInterface + enum.TransferAmountUiKey.Key: + type: TransferAmountBoundUserInterface - type: Item size: Tiny sprite: Objects/Specific/Chemistry/beaker.rsi diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml index 87c591015e..e9e4949a5b 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml @@ -35,7 +35,8 @@ solutions: beaker: maxVol: 30 - canMix: true + - type: MixableSolution + solution: beaker - type: RefillableSolution solution: beaker - type: DrainableSolution @@ -47,10 +48,12 @@ - type: SolutionTransfer maxTransferAmount: 30 canChangeTransferAmount: true + - type: SolutionItemStatus + solution: beaker - type: UserInterface interfaces: - - key: enum.TransferAmountUiKey.Key - type: TransferAmountBoundUserInterface + enum.TransferAmountUiKey.Key: + type: TransferAmountBoundUserInterface - type: Item size: Tiny sprite: Objects/Specific/Chemistry/vial.rsi diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index 98561b64c4..321de142e7 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -26,7 +26,8 @@ solutions: beaker: maxVol: 50 - canMix: true + - type: MixableSolution + solution: beaker - type: FitsInDispenser solution: beaker - type: RefillableSolution @@ -41,10 +42,12 @@ solution: beaker - type: SolutionTransfer canChangeTransferAmount: true + - type: SolutionItemStatus + solution: beaker - type: UserInterface interfaces: - - key: enum.TransferAmountUiKey.Key - type: TransferAmountBoundUserInterface + enum.TransferAmountUiKey.Key: + type: TransferAmountBoundUserInterface - type: Drink solution: beaker - type: Appearance @@ -119,7 +122,8 @@ solutions: beaker: maxVol: 50 - canMix: true + - type: MixableSolution + solution: beaker - type: FitsInDispenser solution: beaker - type: RefillableSolution @@ -134,10 +138,12 @@ solution: beaker - type: SolutionTransfer canChangeTransferAmount: true + - type: SolutionItemStatus + solution: beaker - type: UserInterface interfaces: - - key: enum.TransferAmountUiKey.Key - type: TransferAmountBoundUserInterface + enum.TransferAmountUiKey.Key: + type: TransferAmountBoundUserInterface - type: Drink solution: beaker - type: Appearance @@ -160,6 +166,9 @@ solution: beaker - type: StaticPrice price: 10 + - type: PhysicalComposition + materialComposition: + Glass: 50 - type: SolutionContainerVisuals maxFillLevels: 6 fillBaseName: beaker @@ -202,13 +211,15 @@ solutions: beaker: maxVol: 100 - canMix: true - type: Appearance - type: SolutionContainerVisuals maxFillLevels: 6 fillBaseName: beakerlarge inHandsMaxFillLevels: 4 inHandsFillBaseName: -fill- + - type: PhysicalComposition + materialComposition: + Glass: 100 - type: StaticPrice price: 20 @@ -229,6 +240,10 @@ beaker: maxVol: 60 canReact: false + - type: ReverseEngineering # Delta + difficulty: 3 + recipes: + - CryostasisBeaker - type: entity name: bluespace beaker @@ -246,7 +261,10 @@ solutions: beaker: maxVol: 1000 - canMix: true + - type: ReverseEngineering + difficulty: 4 + recipes: + - BluespaceBeaker - type: entity name: dropper @@ -276,8 +294,8 @@ solution: dropper - type: UserInterface interfaces: - - key: enum.TransferAmountUiKey.Key - type: TransferAmountBoundUserInterface + enum.TransferAmountUiKey.Key: + type: TransferAmountBoundUserInterface - type: Spillable solution: injector - type: Item @@ -403,6 +421,10 @@ tags: - Syringe - Trash + - type: ReverseEngineering # Delta + difficulty: 4 + recipes: + - SyringeBluespace - type: entity id: SyringeCryostasis @@ -434,7 +456,10 @@ tags: - Syringe - Trash - + - type: ReverseEngineering # Delta + difficulty: 3 + recipes: + - SyringeCryostasis - type: entity name: pill diff --git a/Resources/Prototypes/Entities/Objects/Specific/syndicate.yml b/Resources/Prototypes/Entities/Objects/Specific/syndicate.yml index 94d1216d90..ce7e2bdc8e 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/syndicate.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/syndicate.yml @@ -21,6 +21,9 @@ - type: Currency price: Telecrystal: 1 + - type: Tag # WD EDIT + tags: + - Telecrystal - type: entity parent: Telecrystal @@ -63,8 +66,8 @@ heldPrefix: radio - type: UserInterface interfaces: - - key: enum.StoreUiKey.Key - type: StoreBoundUserInterface + enum.StoreUiKey.Key: + type: StoreBoundUserInterface - type: ActivatableUI key: enum.StoreUiKey.Key - type: Store diff --git a/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml b/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml index 9504ec144a..9c8102979a 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml @@ -75,12 +75,12 @@ doAfter: 0.5 - type: UserInterface interfaces: - - key: enum.AccessOverriderUiKey.Key + enum.AccessOverriderUiKey.Key: type: AccessOverriderBoundUserInterface - type: ActivatableUI key: enum.AccessOverriderUiKey.Key requireHands: true - closeOnHandDeselect: false + requireActiveHand: false singleUser: true - type: ItemSlots - type: ContainerContainer diff --git a/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml b/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml index 4ec8d28857..3edf26ea78 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml @@ -17,6 +17,9 @@ quickEquip: false slots: - Belt + - type: PhysicalComposition + materialComposition: + Steel: 250 - type: Tag tags: - AppraisalTool diff --git a/Resources/Prototypes/Entities/Objects/Tools/bucket.yml b/Resources/Prototypes/Entities/Objects/Tools/bucket.yml index d430161a3c..6fddaef73f 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/bucket.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/bucket.yml @@ -26,6 +26,8 @@ solutions: bucket: maxVol: 250 + - type: MixableSolution + solution: bucket - type: SolutionTransfer transferAmount: 100 maxTransferAmount: 100 @@ -33,8 +35,8 @@ canChangeTransferAmount: true - type: UserInterface interfaces: - - key: enum.TransferAmountUiKey.Key - type: TransferAmountBoundUserInterface + enum.TransferAmountUiKey.Key: + type: TransferAmountBoundUserInterface - type: MeleeWeapon canBeBlocked: false # WD EDIT soundNoDamage: @@ -50,6 +52,8 @@ solution: bucket - type: DrainableSolution solution: bucket + - type: SolutionItemStatus + solution: bucket - type: Appearance - type: SolutionContainerVisuals maxFillLevels: 3 diff --git a/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml b/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml index 36a4c41163..f06539aa17 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml @@ -31,7 +31,7 @@ Steel: 15 #Same as Ointment but divided by 5 and 3 because StackPrice needs to be 1 - Estacao Pirata IPCs #1 Ointment = -50 damage of those types - #1 Cable ~= -50 (-49.8) damage of those types + #1 Cable ~= -50 (-49.8) damage of those types - type: Healing delay: 0.6 damageContainers: diff --git a/Resources/Prototypes/Entities/Objects/Tools/cowtools.yml b/Resources/Prototypes/Entities/Objects/Tools/cowtools.yml index 977a8a931b..87959ebef3 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/cowtools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/cowtools.yml @@ -128,11 +128,6 @@ sprite: Objects/Tools/Cowtools/cowelder.rsi - type: Tool speed: 0.05 - - type: Welder - litMeleeDamageBonus: - types: # When lit, negate standard melee damage and replace with heat - Heat: 0.5 - Blunt: -5 - type: entity name: milkalyzer @@ -147,8 +142,8 @@ - type: GasAnalyzer - type: UserInterface interfaces: - - key: enum.GasAnalyzerUiKey.Key - type: GasAnalyzerBoundUserInterface + enum.GasAnalyzerUiKey.Key: + type: GasAnalyzerBoundUserInterface - type: Appearance - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Tools/decoys.yml b/Resources/Prototypes/Entities/Objects/Tools/decoys.yml index 0074fe517d..d399b77d02 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/decoys.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/decoys.yml @@ -48,6 +48,15 @@ - type: ContainerContainer containers: cell_slot: !type:ContainerSlot + - type: HandheldLight + addPrefix: false + - type: PointLight # Just like the real thing... + autoRot: true + radius: 1.5 + energy: 2.3 + offset: 0, -1 + color: green + netsync: false - type: Tag tags: - Balloon @@ -59,8 +68,6 @@ name: operative balloon description: Upon closer inspection, this Syndicate operative is actually a balloon. components: - - type: HandheldLight - addPrefix: false - type: Sprite sprite: Objects/Tools/Decoys/operative_decoy.rsi layers: @@ -69,13 +76,6 @@ - state: folded map: ["foldedLayer"] visible: false - - type: PointLight # Just like the real thing... - autoRot: true - radius: 1.5 - energy: 2.3 - offset: 0, -1 - color: green - netsync: false - type: entity parent: BaseDecoy @@ -83,8 +83,6 @@ name: agent balloon description: Upon closer inspection, this Syndicate agent is actually a balloon. components: - - type: HandheldLight - addPrefix: false - type: Sprite sprite: Objects/Tools/Decoys/agent_decoy.rsi layers: @@ -93,12 +91,6 @@ - state: folded map: ["foldedLayer"] visible: false - - type: PointLight - radius: 1.5 - energy: 2.3 - offset: 0, -1 - color: green - netsync: false - type: entity parent: BaseDecoy @@ -106,8 +98,6 @@ name: elite operative balloon description: Upon closer inspection, this Syndicate elite operative is actually a balloon. components: - - type: HandheldLight - addPrefix: false - type: Sprite sprite: Objects/Tools/Decoys/elite_decoy.rsi layers: @@ -117,11 +107,7 @@ map: ["foldedLayer"] visible: false - type: PointLight - radius: 1.5 - energy: 2.3 - offset: 0, -1 color: red - netsync: false - type: entity parent: BaseDecoy @@ -129,8 +115,6 @@ name: juggernaut balloon description: Upon closer inspection, this Syndicate juggernaut is actually a balloon. components: - - type: HandheldLight - addPrefix: false - type: Sprite sprite: Objects/Tools/Decoys/juggernaut_decoy.rsi layers: @@ -139,11 +123,6 @@ - state: folded map: ["foldedLayer"] visible: false - - type: PointLight # Inbuilt flashlight, I guess? - radius: 1.5 - energy: 2.3 - offset: 0, -1 - netsync: false - type: entity parent: BaseDecoy @@ -151,8 +130,6 @@ name: commander balloon description: Upon closer inspection, this Syndicate commander is actually a balloon. components: - - type: HandheldLight - addPrefix: false - type: Sprite sprite: Objects/Tools/Decoys/commander_decoy.rsi layers: @@ -161,9 +138,3 @@ - state: folded map: ["foldedLayer"] visible: false - - type: PointLight - radius: 1.5 - energy: 2.3 - offset: 0, -1 - color: green - netsync: false diff --git a/Resources/Prototypes/Entities/Objects/Tools/flare.yml b/Resources/Prototypes/Entities/Objects/Tools/flare.yml index dbdb935b91..fdf5314863 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/flare.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/flare.yml @@ -20,7 +20,13 @@ fadeOutBehaviourID: fade_out litSound: path: /Audio/Items/Flare/flare_on.ogg - loopedSound: /Audio/Items/Flare/flare_burn.ogg + loopedSound: + path: /Audio/Items/Flare/flare_burn.ogg + params: + loop: true + volume: -10 + maxDistance: 5 + - type: Sprite sprite: Objects/Misc/flare.rsi layers: diff --git a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml index abde29cb74..c2503de5c5 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity abstract: true parent: BaseItem id: GasTankBase @@ -19,8 +19,8 @@ key: enum.SharedGasTankUiKey.Key - type: UserInterface interfaces: - - key: enum.SharedGasTankUiKey.Key - type: GasTankBoundUserInterface + enum.SharedGasTankUiKey.Key: + type: GasTankBoundUserInterface - type: GasTank outputPressure: 21.3 air: @@ -243,3 +243,6 @@ outputPressure: 101.3 - type: Clothing sprite: Objects/Tanks/plasma.rsi + slots: + - Belt + - suitStorage diff --git a/Resources/Prototypes/Entities/Objects/Tools/gps.yml b/Resources/Prototypes/Entities/Objects/Tools/gps.yml index 8ae34573ff..becbb638f4 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/gps.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/gps.yml @@ -12,6 +12,10 @@ - type: Item sprite: Objects/Devices/gps.rsi - type: HandheldGPS + - type: PhysicalComposition + materialComposition: + Steel: 400 + Glass: 150 - type: Tag tags: - GPS diff --git a/Resources/Prototypes/Entities/Objects/Tools/hand_labeler.yml b/Resources/Prototypes/Entities/Objects/Tools/hand_labeler.yml index 7e88395336..c97caad00f 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/hand_labeler.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/hand_labeler.yml @@ -17,7 +17,7 @@ inHandsOnly: true - type: UserInterface interfaces: - - key: enum.HandLabelerUiKey.Key + enum.HandLabelerUiKey.Key: type: HandLabelerBoundUserInterface - type: HandLabeler whitelist: diff --git a/Resources/Prototypes/Entities/Objects/Tools/handheld_mass_scanner.yml b/Resources/Prototypes/Entities/Objects/Tools/handheld_mass_scanner.yml index 5647737219..38b1f7cda9 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/handheld_mass_scanner.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/handheld_mass_scanner.yml @@ -34,10 +34,14 @@ singleUser: true - type: UserInterface interfaces: - - key: enum.RadarConsoleUiKey.Key + enum.RadarConsoleUiKey.Key: type: RadarConsoleBoundUserInterface - type: StaticPrice price: 150 + - type: ReverseEngineering # Delta + difficulty: 3 + recipes: + - HandHeldMassScanner - type: entity id: HandHeldMassScannerEmpty @@ -69,4 +73,4 @@ name: power-cell-slot-component-slot-name-default startingItem: PowerCellMicroreactor disableEject: true - swap: false \ No newline at end of file + swap: false diff --git a/Resources/Prototypes/Entities/Objects/Tools/jammer.yml b/Resources/Prototypes/Entities/Objects/Tools/jammer.yml index beb3695627..b456a23f1f 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/jammer.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/jammer.yml @@ -6,8 +6,26 @@ components: - type: Sprite sprite: Objects/Devices/jammer.rsi - state: jammer + layers: + - state: jammer + - state: jammer_high_charge + map: ["enum.RadioJammerLayers.LED"] + shader: unshaded + visible: false - type: RadioJammer + settings: + - wattage: 1 + range: 2.5 + message: radio-jammer-component-set-message-low + name: radio-jammer-component-setting-low + - wattage: 2 + range: 6 + message: radio-jammer-component-set-message-medium + name: radio-jammer-component-setting-medium + - wattage: 12 + range: 12 + message: radio-jammer-component-set-message-high + name: radio-jammer-component-setting-high - type: PowerCellSlot cellSlotId: cell_slot - type: ContainerContainer @@ -18,3 +36,15 @@ cell_slot: name: power-cell-slot-component-slot-name-default startingItem: PowerCellMedium + - type: Appearance + - type: GenericVisualizer + visuals: + enum.RadioJammerVisuals.LEDOn: + RadioJammerLayers.LED: + True: { visible: True } + False: { visible: False } + enum.RadioJammerVisuals.ChargeLevel: + RadioJammerLayers.LED: + Low: {state: jammer_low_charge} + Medium: {state: jammer_medium_charge} + High: {state: jammer_high_charge} diff --git a/Resources/Prototypes/Entities/Objects/Tools/jaws_of_life.yml b/Resources/Prototypes/Entities/Objects/Tools/jaws_of_life.yml index 352288dcc0..11373b62b3 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/jaws_of_life.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/jaws_of_life.yml @@ -8,12 +8,12 @@ tags: - JawsOfLife - type: Sprite - sprite: _White/Objects/Tools/jaws_of_life.rsi #WWDP edit + sprite: Objects/Tools/jaws_of_life.rsi state: jaws_pry - type: Item size: Normal - type: Clothing - sprite: _White/Objects/Tools/jaws_of_life.rsi #WWDP edit + sprite: Objects/Tools/jaws_of_life.rsi quickEquip: false slots: - Belt @@ -32,13 +32,13 @@ entries: - behavior: Prying sprite: - sprite: _White/Objects/Tools/jaws_of_life.rsi #WWDP edit + sprite: Objects/Tools/jaws_of_life.rsi state: jaws_pry useSound: /Audio/Items/jaws_pry.ogg changeSound: /Audio/Items/change_jaws.ogg - behavior: Cutting sprite: - sprite: _White/Objects/Tools/jaws_of_life.rsi #WWDP edit + sprite: Objects/Tools/jaws_of_life.rsi state: jaws_cutter useSound: /Audio/Items/jaws_cut.ogg changeSound: /Audio/Items/change_jaws.ogg @@ -56,6 +56,10 @@ angle: 20 soundHit: collection: MetalThud + - type: ReverseEngineering # Delta + difficulty: 3 + recipes: + - JawsOfLife - type: entity name: syndicate jaws of life @@ -64,7 +68,7 @@ description: Useful for entering the station or its departments. components: - type: Sprite - sprite: _White/Objects/Tools/jaws_of_life.rsi #WWDP edit + sprite: Objects/Tools/jaws_of_life.rsi state: syn_jaws_pry - type: Item inhandVisuals: @@ -81,13 +85,13 @@ entries: - behavior: Prying sprite: - sprite: _White/Objects/Tools/jaws_of_life.rsi #WWDP edit + sprite: Objects/Tools/jaws_of_life.rsi state: syn_jaws_pry useSound: /Audio/Items/jaws_pry.ogg changeSound: /Audio/Items/change_jaws.ogg - behavior: Cutting sprite: - sprite: _White/Objects/Tools/jaws_of_life.rsi #WWDP edit + sprite: Objects/Tools/jaws_of_life.rsi state: syn_jaws_cutter useSound: /Audio/Items/jaws_cut.ogg changeSound: /Audio/Items/change_jaws.ogg diff --git a/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml b/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml index a4c103847f..bd05b8d0f3 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml @@ -40,7 +40,7 @@ size: Huge - type: UserInterface interfaces: - - key: enum.SharedGasTankUiKey.Key + enum.SharedGasTankUiKey.Key: type: GasTankBoundUserInterface - type: Clothing sprite: Objects/Tanks/Jetpacks/blue.rsi diff --git a/Resources/Prototypes/Entities/Objects/Tools/penlight.yml b/Resources/Prototypes/Entities/Objects/Tools/penlight.yml index 7f8a9b262c..a7fb3a3f1c 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/penlight.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/penlight.yml @@ -28,8 +28,8 @@ - type: Appearance - type: UserInterface interfaces: - - key: enum.PenLightUiKey.Key - type: PenLightBoundUserInterface + enum.PenLightUiKey.Key: + type: PenLightBoundUserInterface - type: ToggleableLightVisuals - type: ContainerContainer containers: diff --git a/Resources/Prototypes/Entities/Objects/Tools/spray_painter.yml b/Resources/Prototypes/Entities/Objects/Tools/spray_painter.yml index 903b8d3f90..ad31a6ec02 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/spray_painter.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/spray_painter.yml @@ -13,8 +13,8 @@ key: enum.SprayPainterUiKey.Key - type: UserInterface interfaces: - - key: enum.SprayPainterUiKey.Key - type: SprayPainterBoundUserInterface + enum.SprayPainterUiKey.Key: + type: SprayPainterBoundUserInterface - type: SprayPainter colorPalette: red: '#FF1212FF' diff --git a/Resources/Prototypes/Entities/Objects/Tools/t-ray.yml b/Resources/Prototypes/Entities/Objects/Tools/t-ray.yml index 02df0b69dc..8872b98c18 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/t-ray.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/t-ray.yml @@ -5,13 +5,13 @@ description: A high-tech scanning device that uses Terahertz Radiation to detect subfloor infrastructure. components: - type: Sprite - sprite: _White/Objects/Tools/t-ray.rsi #WWDP edit + sprite: Objects/Tools/t-ray.rsi layers: - state: tray-off map: ["base"] - type: TrayScanner - type: Item - sprite: _White/Objects/Tools/t-ray.rsi #WWDP edit + sprite: Objects/Tools/t-ray.rsi - type: Appearance - type: GenericVisualizer visuals: @@ -19,5 +19,9 @@ base: On: { state: tray-on } Off: { state: tray-off } + - type: PhysicalComposition + materialComposition: + Steel: 400 + Glass: 150 - type: StaticPrice price: 60 diff --git a/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml b/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml index 6702ae39d6..dd1e8fb593 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml @@ -181,5 +181,5 @@ key: enum.ThiefBackpackUIKey.Key - type: UserInterface interfaces: - - key: enum.ThiefBackpackUIKey.Key + enum.ThiefBackpackUIKey.Key: type: ThiefBackpackBoundUserInterface diff --git a/Resources/Prototypes/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/Entities/Objects/Tools/tools.yml index 23d7db933b..9d71f356b1 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/tools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/tools.yml @@ -263,7 +263,7 @@ sound: path: /Audio/Items/multitool_drop.ogg - type: Sprite - sprite: _White/Objects/Tools/multitool.rsi #WWDP edit + sprite: Objects/Tools/multitool.rsi layers: - state: icon - state: green-unlit @@ -281,7 +281,7 @@ - type: Item size: Small - type: Clothing - sprite: _White/Objects/Tools/multitool.rsi #WWDP edit + sprite: Objects/Tools/multitool.rsi quickEquip: false slots: - Belt @@ -294,11 +294,11 @@ inHandsOnly: true - type: UserInterface interfaces: - - key: enum.NetworkConfiguratorUiKey.List + enum.NetworkConfiguratorUiKey.List: type: NetworkConfiguratorBoundUserInterface - - key: enum.NetworkConfiguratorUiKey.Configure + enum.NetworkConfiguratorUiKey.Configure: type: NetworkConfiguratorBoundUserInterface - - key: enum.NetworkConfiguratorUiKey.Link + enum.NetworkConfiguratorUiKey.Link: type: NetworkConfiguratorBoundUserInterface - type: Tag tags: @@ -350,11 +350,11 @@ - DoorElectronicsConfigurator - type: UserInterface interfaces: - - key: enum.NetworkConfiguratorUiKey.List + enum.NetworkConfiguratorUiKey.List: type: NetworkConfiguratorBoundUserInterface - - key: enum.NetworkConfiguratorUiKey.Configure + enum.NetworkConfiguratorUiKey.Configure: type: NetworkConfiguratorBoundUserInterface - - key: enum.NetworkConfiguratorUiKey.Link + enum.NetworkConfiguratorUiKey.Link: type: NetworkConfiguratorBoundUserInterface - type: StaticPrice price: 56 @@ -409,10 +409,6 @@ Plastic: 100 # - type: DynamicPrice # price: 100 - - type: ReverseEngineering # Nyano - difficulty: 2 - recipes: - - PowerDrill - type: StaticPrice price: 100 - type: MeleeWeapon @@ -429,6 +425,10 @@ angle: 20 soundHit: path: "/Audio/Items/drill_hit.ogg" + - type: ReverseEngineering # Nyano + difficulty: 2 + recipes: + - PowerDrill - type: entity id: RCD @@ -474,15 +474,19 @@ - type: PhysicalComposition materialComposition: Steel: 600 - Plastic: 100 + Plastic: 150 - type: StaticPrice price: 100 - type: UserInterface interfaces: - - key: enum.RcdUiKey.Key - type: RCDMenuBoundUserInterface + enum.RcdUiKey.Key: + type: RCDMenuBoundUserInterface - type: ActivatableUI key: enum.RcdUiKey.Key + - type: ReverseEngineering # Nyano + difficulty: 3 + recipes: + - RCD - type: entity id: RCDEmpty @@ -544,7 +548,7 @@ heldPrefix: ammo - type: PhysicalComposition materialComposition: - Steel: 100 + Steel: 300 Plastic: 100 - type: StaticPrice price: 60 diff --git a/Resources/Prototypes/Entities/Objects/Tools/welders.yml b/Resources/Prototypes/Entities/Objects/Tools/welders.yml index 0d0c79a081..c501237b4c 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/welders.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/welders.yml @@ -12,7 +12,7 @@ sound: path: /Audio/Items/welder_drop.ogg - type: Sprite - sprite: _White/Objects/Tools/welder.rsi #WWDP edit + sprite: Objects/Tools/welder.rsi layers: - state: icon - state: welder_flame @@ -27,7 +27,7 @@ False: { visible: false } - type: Item size: Small - sprite: _White/Objects/Tools/welder.rsi #WWDP edit + sprite: Objects/Tools/welder.rsi - type: ItemToggle predictable: false soundActivate: @@ -109,7 +109,6 @@ - type: WeldingHealing # Same as Brutepack - Estacao Pirata IPCs damageContainers: - Silicon - fuelcost: 5 damage: types: Blunt: -15 @@ -123,9 +122,9 @@ description: "An industrial welder with over double the fuel capacity." components: - type: Sprite - sprite: _White/Objects/Tools/welder_industrial.rsi #WWDP edit + sprite: Objects/Tools/welder_industrial.rsi - type: Item - sprite: _White/Objects/Tools/welder_industrial.rsi #WWDP edit + sprite: Objects/Tools/welder_industrial.rsi - type: SolutionContainerManager solutions: Welder: @@ -141,9 +140,9 @@ description: "An advanced industrial welder with over double the fuel capacity and hotter flame." components: - type: Sprite - sprite: _White/Objects/Tools/welder_industrialadv.rsi #WWDP edit + sprite: Objects/Tools/welder_industrialadv.rsi - type: Item - sprite: _White/Objects/Tools/welder_industrialadv.rsi #WWDP edit + sprite: Objects/Tools/welder_industrialadv.rsi - type: SolutionContainerManager solutions: Welder: @@ -161,9 +160,9 @@ description: "An experimental welder capable of self-fuel generation and less harmful to the eyes." components: - type: Sprite - sprite: _White/Objects/Tools/welder_experimental.rsi #WWDP edit + sprite: Objects/Tools/welder_experimental.rsi - type: Item - sprite: _White/Objects/Tools/welder_experimental.rsi #WWDP edit + sprite: Objects/Tools/welder_experimental.rsi - type: SolutionContainerManager solutions: Welder: @@ -189,10 +188,10 @@ description: "A miniature welder used during emergencies." components: - type: Sprite - sprite: _White/Objects/Tools/welder_mini.rsi #WWDP edit + sprite: Objects/Tools/welder_mini.rsi - type: Item size: Tiny - sprite: _White/Objects/Tools/welder_mini.rsi #WWDP edit + sprite: Objects/Tools/welder_mini.rsi - type: RefillableSolution solution: Welder - type: SolutionContainerManager diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml index 22eeeff859..edca311cb1 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/light_rifle.yml @@ -10,7 +10,7 @@ tags: - CartridgeLightRifle proto: CartridgeLightRifle - capacity: 50 + capacity: 60 - type: Item size: Small - type: ContainerContainer diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml index c304f0af11..3f71f93440 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/magnum.yml @@ -9,7 +9,7 @@ tags: - CartridgeMagnum proto: CartridgeMagnum - capacity: 60 + capacity: 12 - type: Item size: Small - type: ContainerContainer diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml index 8e6c79dfe5..03d6e33799 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/rifle.yml @@ -9,7 +9,7 @@ tags: - CartridgeRifle proto: CartridgeRifle - capacity: 60 + capacity: 50 - type: Item size: Small - type: ContainerContainer diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.yml index 831c3c3352..63ad52c032 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.yml @@ -21,7 +21,7 @@ whitelist: tags: - ShellShotgun - capacity: 12 + capacity: 16 # Shotgun Shells - type: entity @@ -89,6 +89,19 @@ - state: boxwide - state: shellincendiary +- type: entity + name: shotgun uranium cartridges dispenser + parent: AmmoProviderShotgunShell + id: BoxShotgunUranium + description: A dispenser box full of uranium cartridges, designed for riot shotguns. + components: + - type: BallisticAmmoProvider + proto: ShellShotgunUranium + - type: Sprite + layers: + - state: boxwide + - state: shelluranium + - type: entity name: shotgun practice cartridges dispenser parent: AmmoProviderShotgunShell @@ -113,4 +126,4 @@ - type: Sprite layers: - state: boxwide - - state: shellslug \ No newline at end of file + - state: shellslug diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/light_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/light_rifle.yml index d420a5c3d8..296af23af5 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/light_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/light_rifle.yml @@ -68,6 +68,19 @@ - state: mag-1 map: ["enum.GunVisualLayers.Mag"] +- type: entity + id: MagazineLightRifleEmpty + name: "magazine (.30 rifle any)" + suffix: empty + parent: MagazineLightRifle + components: + - type: BallisticAmmoProvider + proto: null + - type: Sprite + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - type: entity id: MagazineLightRiflePractice name: "magazine (.30 rifle practice)" @@ -110,6 +123,14 @@ - state: mag-1 map: ["enum.GunVisualLayers.Mag"] +- type: entity + id: MagazineLightRifleIncendiary + name: "magazine (.30 rifle incendiary)" + parent: MagazineLightRifle + components: + - type: BallisticAmmoProvider + proto: CartridgeLightRifleIncendiary + - type: entity id: MagazineLightRifleMaxim name: "pan magazine (.30 rifle)" diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum.yml index 6a1cc041de..fc506ec594 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/magnum.yml @@ -47,6 +47,19 @@ zeroVisible: false - type: Appearance +- type: entity + id: MagazineMagnumEmpty + name: pistol magazine (.45 magnum any) + suffix: empty + parent: BaseMagazineMagnum + components: + - type: BallisticAmmoProvider + proto: null + - type: Sprite + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - type: entity id: MagazineMagnum name: pistol magazine (.45 magnum) @@ -117,6 +130,19 @@ - state: mag-1 map: ["enum.GunVisualLayers.Mag"] +- type: entity + id: MagazineMagnumSubMachineGunEmpty + name: "Vector magazine (.45 magnum any)" + suffix: empty + parent: BaseMagazineMagnumSubMachineGun + components: + - type: BallisticAmmoProvider + proto: null + - type: Sprite + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - type: entity id: MagazineMagnumSubMachineGun name: "Vector magazine (.45 magnum)" diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml index 679acd299c..bde2731937 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml @@ -128,6 +128,14 @@ containers: ballistic-ammo: !type:Container +- type: entity + id: MagazinePistolSubMachineGunTopMountedEmpty + name: WT550 magazine (.35 auto top-mounted any) + parent: MagazinePistolSubMachineGunTopMounted + components: + - type: BallisticAmmoProvider + proto: null + - type: entity id: MagazinePistol name: pistol magazine (.35 auto) @@ -142,6 +150,28 @@ - state: mag-1 map: ["enum.GunVisualLayers.Mag"] +- type: entity + id: MagazinePistolEmpty + name: pistol magazine (.35 auto any) + suffix: empty + parent: MagazinePistol + components: + - type: BallisticAmmoProvider + proto: null + - type: Sprite + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + + +- type: entity + id: MagazinePistolIncendiary + name: pistol magazine (.35 auto incendiary) + parent: MagazinePistol + components: + - type: BallisticAmmoProvider + proto: CartridgePistolIncendiary + - type: entity id: MagazinePistolPractice name: pistol magazine (.35 auto practice) @@ -170,6 +200,33 @@ - state: mag-1 map: ["enum.GunVisualLayers.Mag"] +- type: entity + id: MagazinePistolUranium + name: pistol magazine (.35 auto uranium) + parent: BaseMagazinePistol + components: + - type: BallisticAmmoProvider + proto: CartridgePistolUranium + - type: Sprite + layers: + - state: uranium + map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] + +- type: entity + id: MagazinePistolHighCapacityEmpty + name: machine pistol magazine (.35 auto any) + suffix: empty + parent: BaseMagazinePistolHighCapacity + components: + - type: BallisticAmmoProvider + proto: null + - type: Sprite + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - type: entity id: MagazinePistolHighCapacity name: machine pistol magazine (.35 auto) @@ -232,6 +289,19 @@ - state: mag-1 map: ["enum.GunVisualLayers.Mag"] +- type: entity + id: MagazinePistolSubMachineGunEmpty + name: SMG magazine (.35 auto any) + suffix: empty + parent: BaseMagazinePistolSubMachineGun + components: + - type: BallisticAmmoProvider + proto: null + - type: Sprite + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - type: entity id: MagazinePistolSubMachineGunPractice name: SMG magazine (.35 auto practice) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/rifle.yml index 5ba57dce4e..7d8aeb9346 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/rifle.yml @@ -47,6 +47,27 @@ - state: mag-1 map: ["enum.GunVisualLayers.Mag"] +- type: entity + id: MagazineRifleEmpty + name: "magazine (.20 rifle any)" + suffix: empty + parent: MagazineRifle + components: + - type: BallisticAmmoProvider + proto: null + - type: Sprite + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + +- type: entity + id: MagazineRifleIncendiary + name: "magazine (.20 rifle incendiary)" + parent: MagazineRifle + components: + - type: BallisticAmmoProvider + proto: CartridgeRifleIncendiary + - type: entity id: MagazineRiflePractice name: "magazine (.20 rifle practice)" diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/shotgun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/shotgun.yml index cbe9bbfbe9..5b0b16bf4b 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/shotgun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/shotgun.yml @@ -33,6 +33,15 @@ zeroVisible: false - type: Appearance +- type: entity + id: MagazineShotgunEmpty + name: ammo drum (.50 shells any) + suffix: empty + parent: BaseMagazineShotgun + components: + - type: BallisticAmmoProvider + proto: null + - type: entity id: MagazineShotgun name: ammo drum (.50 pellet) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/magnum.yml index b06ca64d8f..d8e2c908b6 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/SpeedLoaders/magnum.yml @@ -39,6 +39,27 @@ zeroVisible: false - type: Appearance +- type: entity + id: SpeedLoaderMagnumEmpty + name: "speed loader (.45 magnum any)" + parent: SpeedLoaderMagnum + components: + - type: BallisticAmmoProvider + proto: null + - type: Sprite + sprite: Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi + layers: + - state: base + map: [ "enum.GunVisualLayers.Base" ] + +- type: entity + id: SpeedLoaderMagnumIncendiary + name: "speed loader (.45 magnum incendiary)" + parent: SpeedLoaderMagnum + components: + - type: BallisticAmmoProvider + proto: CartridgeMagnumIncendiary + - type: entity id: SpeedLoaderMagnumPractice name: "speed loader (.45 magnum practice)" diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_wieldable.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_wieldable.yml new file mode 100644 index 0000000000..cf858e1737 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_wieldable.yml @@ -0,0 +1,12 @@ +# A basic inheritable template for a gun that is wieldable and has the standard inaccuracy. +- type: entity + id: BaseGunWieldable + abstract: true + components: + - type: Wieldable + - type: GunWieldBonus + minAngle: -20 + maxAngle: -30 + - type: Gun + minAngle: 21 + maxAngle: 32 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/watergun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/watergun.yml index e925bdab87..c96a1522d2 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/watergun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/watergun.yml @@ -34,8 +34,8 @@ canChangeTransferAmount: true - type: UserInterface interfaces: - - key: enum.TransferAmountUiKey.Key - type: TransferAmountBoundUserInterface + enum.TransferAmountUiKey.Key: + type: TransferAmountBoundUserInterface - type: DrawableSolution solution: chamber - type: RefillableSolution diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index 36b483db3a..85bc39c454 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -222,7 +222,7 @@ - type: entity name: laser rifle - parent: BaseWeaponBattery + parent: [BaseWeaponBattery, BaseGunWieldable] id: WeaponLaserCarbine description: Favoured by Nanotrasen Security for being cheap and easy to use. components: @@ -287,9 +287,18 @@ maxCharge: 2000 startingCharge: 2000 +- type: entity + name: antique pulse pistol + parent: WeaponPulsePistol + id: WeaponPulsePistolHoS + description: One of the many weapons belonging to the Head of Security's private collection. This pistol is engraved with the words, "Forgive Us, Mother Sol'" + components: + - type: StealTarget + stealGroup: WeaponPulsePistolHoS + - type: entity name: pulse carbine - parent: BaseWeaponBattery + parent: [BaseWeaponBattery, BaseGunWieldable] id: WeaponPulseCarbine description: A high tech energy carbine favoured by the NT-ERT operatives. components: @@ -320,7 +329,7 @@ - type: entity name: pulse rifle - parent: BaseWeaponBattery + parent: [BaseWeaponBattery, BaseGunWieldable] id: WeaponPulseRifle description: A weapon that is almost as infamous as its users. components: @@ -347,7 +356,7 @@ - type: entity name: laser cannon - parent: BaseWeaponBattery + parent: [BaseWeaponBattery, BaseGunWieldable] id: WeaponLaserCannon description: A heavy duty, high powered laser weapon. components: @@ -402,7 +411,7 @@ - type: entity name: x-ray cannon - parent: BaseWeaponBattery + parent: [BaseWeaponBattery, BaseGunWieldable] id: WeaponXrayCannon description: An experimental weapon that uses concentrated x-ray energy against its target. components: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Bow/bow.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Bow/bow.yml index db98c6eabe..32b4fc6075 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Bow/bow.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Bow/bow.yml @@ -12,7 +12,8 @@ - type: Clothing quickEquip: false slots: - - Back + - Back + - suitStorage - type: Wieldable wieldSound: path: /Audio/Items/bow_pull.ogg diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml index 8487a592e8..803bb4a8b5 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml @@ -14,6 +14,8 @@ slots: - Back - type: Wieldable + unwieldOnUse: false + - type: GunRequiresWield - type: GunWieldBonus minAngle: -20 maxAngle: -20 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml index 4fa7831f5a..00c2df399e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml @@ -22,7 +22,7 @@ - type: entity name: china lake - parent: BaseWeaponLauncher + parent: [BaseWeaponLauncher, BaseGunWieldable] id: WeaponLauncherChinaLake description: PLOOP components: @@ -380,3 +380,29 @@ - CartridgeRocket proto: ImmovableRodSlow - type: GiftIgnore # WD EDIT + +# Frontier mail RPDS +- type: entity + name: mail RPDS + parent: WeaponLauncherChinaLake + id: WeaponMailLake + description: Rap(b?)id Parcel Delivery System + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Launchers/mail.rsi + layers: + - state: icon + map: ["enum.GunVisualLayers.Base"] + - type: Clothing + sprite: Objects/Weapons/Guns/Launchers/mail.rsi + quickEquip: false + slots: + - Back + - Belt + - suitStorage + - type: BallisticAmmoProvider + proto: null + whitelist: + tags: + - MailCapsule + capacity: 4 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml index 0aa737049c..e439d56695 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml @@ -115,6 +115,31 @@ path: /Audio/Weapons/Guns/Gunshots/pistol.ogg fireOnDropChance: 0.3 +- type: entity + id: WeaponPistolViperNonLethal + parent: WeaponPistolViper + suffix: Non-lethal + components: + - type: ItemSlots + slots: + gun_magazine: + name: Magazine + startingItem: MagazinePistolRubber + insertSound: /Audio/Weapons/Guns/MagIn/pistol_magin.ogg + ejectSound: /Audio/Weapons/Guns/MagOut/pistol_magout.ogg + priority: 2 + whitelist: + tags: + - MagazinePistol + - MagazinePistolHighCapacity + gun_chamber: + name: Chamber + startingItem: CartridgePistolRubber + priority: 1 + whitelist: + tags: + - CartridgePistol + - type: entity name: cobra parent: BaseWeaponPistol @@ -259,7 +284,7 @@ - type: entity name: N1984 parent: WeaponPistolN1984 - id: WeaponPistolN1984Nonlethal + id: WeaponPistolN1984NonLethal suffix: Non-lethal components: - type: ItemSlots diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml index 52c5dc8a9d..6f925139fb 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity parent: BaseItem id: BaseArrow abstract: true @@ -35,7 +35,6 @@ - type: Tag tags: - Arrow - - CannonRestrict - type: Projectile deleteOnCollide: false onlyCollideWhenShot: true diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml index 3556d1c8f8..b3abbfdfd3 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml @@ -30,6 +30,39 @@ - type: IgniteOnCollide fireStacks: 0.35 +- type: entity + noSpawn: true + parent: BaseBulletTrigger + id: ProjectileDragonsBreath + name: dragon's breath + description: Try not to get toasted. + components: + - type: PointLight + color: "#E25822" + radius: 3.0 + energy: 5.0 + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/magic.rsi + layers: + - state: fireball + shader: unshaded + - type: IgnitionSource + temperature: 1000 + ignited: true + - type: RepeatingTrigger + delay: 0.5 # line of fire as well as if it hits something + - type: ExplodeOnTrigger + - type: Explosive + explosionType: Default + totalIntensity: 5 # low intensity, the point is to burn attackers not to break open walls, dragons can just eat them + intensitySlope: 1 + maxIntensity: 3 + canCreateVacuum: false + deleteAfterExplosion: false + repeatable: true + - type: TimedDespawn + lifetime: 5 + - type: entity id: ProjectileAnomalyFireball name: fireball diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml index 08661aa301..951463eb43 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml @@ -85,6 +85,19 @@ - type: StaticPrice price: 1500 +- type: entity + name: Deckard + parent: WeaponRevolverDeckard + id: WeaponRevolverDeckardNonLethal + description: A rare, custom-built revolver. Use when you need to spare the Replicants. Comes with .45 magnum rubber. + components: + - type: RevolverAmmoProvider + whitelist: + tags: + - CartridgeMagnum + - SpeedLoaderMagnum + proto: CartridgeMagnumRubber + - type: entity name: Inspector parent: BaseWeaponRevolver @@ -100,6 +113,19 @@ chambers: [ True, True, True, True, True, True ] ammoSlots: [ null, null, null, null, null, null ] +- type: entity + name: Inspector + parent: WeaponRevolverInspector + id: WeaponRevolverInspectorNonLethal + description: A detective's best friend. Comes loaded with .45 magnum rubber. + components: + - type: RevolverAmmoProvider + whitelist: + tags: + - CartridgeMagnum + - SpeedLoaderMagnum + proto: CartridgeMagnumRubber + - type: entity name: Mateba parent: BaseWeaponRevolver diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml index a17d98dcb0..61c7ab2b31 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml @@ -1,6 +1,6 @@ - type: entity name: BaseWeaponRifle - parent: BaseItem + parent: [BaseItem, BaseGunWieldable] id: BaseWeaponRifle description: A rooty tooty point and shooty. abstract: true @@ -14,6 +14,8 @@ slots: - Back - suitStorage + - type: Wieldable + - type: GunRequiresWield - type: AmmoCounter - type: Gun fireRate: 5 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml index a70809b8b1..df1600f4e9 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml @@ -90,7 +90,7 @@ name: C-20r sub machine gun parent: BaseWeaponSubMachineGun id: WeaponSubMachineGunC20r - description: A firearm that is often used by the infamous nuclear operatives. Uses .35 auto ammo. + description: Manufactured by Cybersun-Armaments, the C-20r is one of the most popular personal small-arms in the Coalition of Colonies. Uses .35 auto ammo. components: - type: Sprite sprite: Objects/Weapons/Guns/SMGs/c20r.rsi @@ -101,7 +101,13 @@ map: ["enum.GunVisualLayers.Mag"] - type: Clothing sprite: Objects/Weapons/Guns/SMGs/c20r.rsi + - type: Wieldable + - type: GunWieldBonus + minAngle: -19 + maxAngle: -16 - type: Gun + minAngle: 21 + maxAngle: 32 shotsPerBurst: 5 availableModes: - SemiAuto @@ -118,6 +124,15 @@ zeroVisible: true - type: Appearance +- type: entity + name: antique C-20r submachine gun + parent: WeaponSubMachineGunC20r + id: WeaponSubMachineGunC20rHoS + description: This heavily worn submachine gun is engraved with the words, "Remember Mars". + components: + - type: StealTarget + stealGroup: WeaponSubMachineGunC20rHoS + - type: entity name: Drozd parent: BaseWeaponSubMachineGun @@ -133,7 +148,13 @@ map: ["enum.GunVisualLayers.Mag"] - type: Clothing sprite: Objects/Weapons/Guns/SMGs/drozd.rsi + - type: Wieldable + - type: GunWieldBonus + minAngle: -19 + maxAngle: -16 - type: Gun + minAngle: 21 + maxAngle: 32 fireRate: 6 selectedMode: FullAuto soundGunshot: @@ -273,6 +294,15 @@ zeroVisible: true - type: Appearance +- type: entity + name: antique Wt550 + id: WeaponSubMachineGunWt550HoS + parent: WeaponSubMachineGunWt550 + description: A prized possession of the station's Head of Security. The smell of dried blood lingers on this weapon's muzzle. A small torch with 24 stars surrounding it has been engraved on the grip. + components: + - type: StealTarget + stealGroup: WeaponSubMachineGunWt550HoS + # Rubber - type: entity name: Drozd diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml index 71dd92de95..198bf5b948 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml @@ -55,7 +55,7 @@ - type: entity name: Bulldog # Don't parent to BaseWeaponShotgun because it differs significantly - parent: BaseItem + parent: [BaseItem, BaseGunWieldable] id: WeaponShotgunBulldog description: It's a magazine-fed shotgun designed for close quarters combat. Uses .50 shotgun shells. components: @@ -75,6 +75,7 @@ - Back - suitStorage - type: AmmoCounter + - type: GunRequiresWield #remove when inaccuracy on spreads is fixed - type: Gun fireRate: 2 selectedMode: FullAuto @@ -85,6 +86,7 @@ soundEmpty: path: /Audio/Weapons/Guns/Empty/empty.ogg fireOnDropChance: 0.3 + - type: Wieldable - type: ItemSlots slots: gun_magazine: @@ -109,9 +111,18 @@ - type: StaticPrice price: 500 +- type: entity + name: antique Bulldog + parent: WeaponShotgunBulldog + id: WeaponShotgunBulldogHoS + description: This is a seemingly ordinary shotgun, no different from those issued as standard in the Republic of Biesel Navy. A close inspection reveals that this weapon's serial number is 000000013. + components: + - type: StealTarget + stealGroup: WeaponShotgunBulldogHoS + - type: entity name: double-barreled shotgun - parent: BaseWeaponShotgun + parent: [BaseWeaponShotgun, BaseGunWieldable] id: WeaponShotgunDoubleBarreled description: An immortal classic. Uses .50 shotgun shells. components: @@ -121,11 +132,12 @@ size: Normal shape: - 0,0,4,0 - sprite: Objects/Weapons/Guns/Shotguns/inhands_64x.rsi - heldPrefix: db + sprite: Objects/Weapons/Guns/Shotguns/db_shotgun_inhands_64x.rsi + - type: GunRequiresWield #remove when inaccuracy on spreads is fixed - type: Gun fireRate: 2 fireOnDropChance: 0.5 + - type: Wieldable - type: BallisticAmmoProvider capacity: 2 autoCycle: true # WD EDIT @@ -146,15 +158,19 @@ - type: entity name: Enforcer - parent: BaseWeaponShotgun + parent: [BaseWeaponShotgun, BaseGunWieldable] id: WeaponShotgunEnforcer description: A premium combat shotgun based on the Kammerer design, featuring an upgraded clip capacity. .50 shotgun shells. components: - type: Sprite - sprite: DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi # Delta-V + sprite: DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi - type: Clothing - sprite: DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi # Delta-V + sprite: DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi + - type: Item + sprite: Objects/Weapons/Guns/Shotguns/enforcer_inhands_64x.rsi - type: BallisticAmmoProvider + - type: Wieldable + - type: GunRequiresWield - type: entity parent: WeaponShotgunEnforcer @@ -166,7 +182,7 @@ - type: entity name: Kammerer - parent: BaseWeaponShotgun + parent: [BaseWeaponShotgun, BaseGunWieldable] id: WeaponShotgunKammerer description: When an old Remington design meets modern materials, this is the result. A favourite weapon of militia forces throughout many worlds. Uses .50 shotgun shells. components: @@ -174,17 +190,18 @@ size: Normal shape: - 0,0,4,0 - sprite: Objects/Weapons/Guns/Shotguns/inhands_64x.rsi - heldPrefix: pump + sprite: Objects/Weapons/Guns/Shotguns/pump_inhands_64x.rsi - type: Sprite - sprite: DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi # Delta-V + sprite: DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi - type: Clothing - sprite: DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi # Delta-V + sprite: DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi + - type: GunRequiresWield #remove when inaccuracy on spreads is fixed - type: BallisticAmmoProvider capacity: 4 - type: Tag tags: - WeaponShotgunKammerer + - type: Wieldable - type: entity name: sawn-off shotgun @@ -198,8 +215,7 @@ sprite: DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi # Delta-V - type: Item size: Small - sprite: Objects/Weapons/Guns/Shotguns/inhands_64x.rsi - heldPrefix: sawn + sprite: Objects/Weapons/Guns/Shotguns/sawn_inhands_64x.rsi - type: Gun fireRate: 4 fireOnDropChance: 0.5 @@ -251,7 +267,7 @@ - type: entity name: blunderbuss - parent: BaseWeaponShotgun + parent: [BaseWeaponShotgun, BaseGunWieldable] id: WeaponShotgunBlunderbuss suffix: Pirate description: Deadly at close range. @@ -262,6 +278,7 @@ - 0,0,4,0 - type: Sprite sprite: Objects/Weapons/Guns/Shotguns/blunderbuss.rsi + - type: GunRequiresWield #remove when inaccuracy on spreads is fixed - type: Gun fireRate: 2 fireOnDropChance: 1 @@ -269,10 +286,11 @@ capacity: 1 - type: StaticPrice price: 0 + - type: Wieldable - type: entity name: improvised shotgun - parent: BaseWeaponShotgun + parent: [BaseWeaponShotgun, BaseGunWieldable] id: WeaponShotgunImprovised description: A shitty, hand-made shotgun that uses .50 shotgun shells. It can only hold one round in the chamber. components: @@ -284,8 +302,8 @@ size: Normal shape: - 0,0,4,0 - sprite: Objects/Weapons/Guns/Shotguns/inhands_64x.rsi - heldPrefix: improvised + sprite: Objects/Weapons/Guns/Shotguns/improvised_shotgun_inhands_64x.rsi + - type: GunRequiresWield #remove when inaccuracy on spreads is fixed - type: Gun fireRate: 4 #No reason to stifle the firerate since you have to manually reload every time anyways. fireOnDropChance: 1 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml index deedd7f8eb..6b63178366 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml @@ -18,6 +18,8 @@ - Back - suitStorage - type: AmmoCounter + - type: Wieldable + - type: GunRequiresWield - type: Gun fireRate: 0.75 selectedMode: SemiAuto @@ -48,7 +50,7 @@ - type: entity name: Kardashev-Mosin - parent: BaseWeaponSniper + parent: [BaseWeaponSniper, BaseGunWieldable] id: WeaponSniperMosin description: A weapon for hunting, or endless trench warfare. Uses .30 rifle ammo. components: @@ -70,9 +72,19 @@ soundHit: path: /Audio/Weapons/bladeslice.ogg +- type: entity + name: Kardashev-Mosin + parent: WeaponSniperMosin + id: WeaponSniperMosinRubber + description: A weapon for hunting, or endless trench warfare. Uses .30 rifle rubber ammo. + suffix: Non-Lethal + components: + - type: BallisticAmmoProvider + proto: CartridgeLightRifleRubber + - type: entity name: Hristov - parent: BaseWeaponSniper + parent: [BaseWeaponSniper, BaseGunWieldable] id: WeaponSniperHristov description: A portable anti-materiel rifle. Fires armor piercing 14.5mm shells. Uses .60 anti-materiel ammo. components: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml index ae1f5df3c1..1251172946 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml @@ -22,7 +22,6 @@ selectedMode: SemiAuto availableModes: - SemiAuto - - FullAuto soundGunshot: path: /Audio/Effects/thunk.ogg soundEmpty: @@ -34,10 +33,7 @@ - type: Storage maxItemSize: Normal grid: - - 0,0,3,3 - blacklist: - tags: - - CannonRestrict + - 0,0,1,1 - type: Appearance - type: ItemMapper containerWhitelist: [gas_tank] diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml index ade0657ada..4ab302ce20 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml @@ -41,6 +41,9 @@ node: bat - type: UseDelay delay: 1 + - type: PhysicalComposition + materialComposition: + Wood: 250 - type: Tag tags: - BaseballBat diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml new file mode 100644 index 0000000000..5c26020d72 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml @@ -0,0 +1,98 @@ +- type: entity + parent: BaseItem + id: Cane + name: cane + description: A wooden cane. + components: + - type: Sprite + sprite: Objects/Weapons/Melee/cane.rsi + state: cane + - type: Item + size: Normal + sprite: Objects/Weapons/Melee/cane.rsi + - type: Appearance + - type: MeleeWeapon + wideAnimationRotation: 45 + damage: + types: + Blunt: 5 + - type: StaminaDamageOnHit + damage: 5 + - type: Wieldable + - type: IncreaseDamageOnWield + damage: + types: + Blunt: 3 + - type: UseDelay + delay: 1 + +- type: entity + name: cane blade + parent: BaseItem + id: CaneBlade + description: A sharp blade with a cane shaped hilt. + components: + - type: Sharp + - type: Sprite + sprite: Objects/Weapons/Melee/cane_blade.rsi + state: icon + - type: MeleeWeapon + wideAnimationRotation: 65 + attackRate: 1.5 + damage: + types: + Slash: 14 + soundHit: + path: /Audio/Weapons/bladeslice.ogg + - type: Item + size: Normal + sprite: Objects/Weapons/Melee/cane_blade.rsi + - type: Tag + tags: + - CaneBlade + - type: DisarmMalus + +- type: entity + parent: Cane + id: CaneSheath + suffix: Empty + components: + - type: Sprite + sprite: Objects/Weapons/Melee/cane.rsi + state: cane-empty + - type: ContainerContainer + containers: + storagebase: !type:Container + ents: [] + item: !type:ContainerSlot + - type: UserInterface + interfaces: + enum.StorageUiKey.Key: + type: StorageBoundUserInterface + - type: ItemSlots + slots: + item: + name: CaneBlade + insertVerbText: sheath-insert-verb + ejectVerbText: sheath-eject-verb + whitelist: + tags: + - CaneBlade + insertSound: /Audio/Items/sheath.ogg + ejectSound: /Audio/Items/unsheath.ogg + - type: ItemMapper + mapLayers: + cane: + whitelist: + tags: + - CaneBlade + +- type: entity + id: CaneSheathFilled + parent: CaneSheath + suffix: Filled + components: + - type: ContainerFill + containers: + item: + - CaneBlade diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml index 526f8e7a9c..d4767171f1 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml @@ -65,6 +65,8 @@ shader: unshaded - type: DisarmMalus malus: 0 + - type: Reflect + enabled: false - type: IgnitionSource temperature: 700 - type: MeleeBlock # WD EDIT @@ -92,6 +94,7 @@ sprite: DeltaV/Objects/Weapons/Melee/e_sword.rsi # Delta-V - type: Reflect # WD EDIT reflectProb: .5 + minReflectProb: 0.25 spread: 75 reflects: - Energy #DeltaV: @@ -103,6 +106,19 @@ tags: - EnergySword +- type: entity + name: antique energy sword + parent: EnergySword + id: EnergySwordHoS + description: An elegant weapon fit for a prince, this otherwise plain silver hilt is engraved with, "My Love". + components: + - type: EnergySword + activatedColor: "#00CCFF" + colorOptions: + - "#00CCFF" + - type: StealTarget + stealGroup: EnergySwordHoS + - type: entity name: pen parent: EnergySwordBase @@ -228,7 +244,7 @@ name: double-bladed energy sword parent: EnergySwordBase id: EnergySwordDouble - description: Syndicate Command Interns thought that having one blade on the energy sword was not enough. This can be stored in pockets. + description: Syndicate Command's intern thought that having only one blade on energy swords was not cool enough. This can be stored in pockets. components: - type: Sprite sprite: Objects/Weapons/Melee/e_sword_double.rsi @@ -250,6 +266,7 @@ Heat: 15 - type: Reflect # WD EDIT reflectProb: 1 + minReflectProb: .65 spread: 75 reflects: - Energy @@ -260,4 +277,4 @@ - type: Construction # WD EDIT deconstructionTarget: null graph: EnergyDoubleSwordGraph - node: desword \ No newline at end of file + node: desword diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml index 2412079a1e..56420f971c 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml @@ -276,7 +276,6 @@ tags: - CombatKnife - Knife - - CannonRestrict - type: Sprite sprite: Objects/Weapons/Melee/throwing_knife.rsi state: icon diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml index eb0635c2f0..780c670c49 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml @@ -25,6 +25,11 @@ bluntStaminaDamageFactor: 2.0 maxTargets: 2 angle: 60 + # WD EDIT START + heavyRateModifier: 0.8 + heavyDamageBaseModifier: 0.5 + heavyStaminaCost: 0 + # WD EDIT END - type: Wieldable - type: IncreaseDamageOnWield damage: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml index 5a75c3202b..772379cc42 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml @@ -21,9 +21,9 @@ - type: ItemToggleMeleeWeapon activatedDamage: types: - Blunt: 0 + Shock: 5 - type: Stunbaton - energyPerUse: 70 + energyPerUse: 120 - type: MeleeWeapon wideAnimationRotation: -135 attackRate: 0.8 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml index 856e1ddf85..d444744b66 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml @@ -23,7 +23,12 @@ angle: 80 - type: Reflect enabled: true - reflectProb: .5 + # Design intent: a robust captain or tot can sacrifice movement to make the most of this weapon, but they have to + # really restrict themselves to walking speed or less. + reflectProb: 0.5 + velocityBeforeNotMaxProb: 1.0 + velocityBeforeMinProb: 3.0 + minReflectProb: 0.1 spread: 90 - type: Item size: Normal @@ -95,6 +100,9 @@ - Back - Belt - type: Reflect + reflectProb: 0.3 + velocityBeforeNotMaxProb: 6.0 # don't punish ninjas for being ninjas + velocityBeforeMinProb: 10.0 - type: MeleeBlock # WD EDIT delay: 6.1 @@ -200,7 +208,7 @@ name: The Throngler parent: BaseItem id: Throngler - description: Why would you make this? + description: Why would someone make this? components: - type: Sharp - type: Sprite @@ -221,7 +229,10 @@ path: /Audio/Effects/explosion_small1.ogg - type: Reflect enabled: true - reflectProb: .25 + reflectProb: 0.5 # In robust hands, deflects as well as an e-sword + velocityBeforeNotMaxProb: 1.0 + velocityBeforeMinProb: 3.0 + minReflectProb: 0.1 spread: 90 - type: Item size: Ginormous diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml index f25023b454..acbaac2922 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml @@ -120,6 +120,30 @@ params: volume: 12 +- type: entity + name: Self Destruct + description: Go out on your own terms! + parent: GrenadeBase + id: SelfDestructSeq + noSpawn: true + components: + - type: ExplodeOnTrigger + - type: Explosive + explosionType: Minibomb + totalIntensity: 400 + intensitySlope: 30 + maxIntensity: 125 + canCreateVacuum: true + - type: OnUseTimerTrigger + delay: 4.5 + beepSound: + path: /Audio/Effects/Grenades/SelfDestruct/SDS_Charge2.ogg + params: + volume: 30 + initialBeepDelay: 0 + beepInterval: 16 + + - type: entity name: supermatter grenade description: Grenade that simulates delamination of the supermatter engine, pulling things in a heap and exploding after some time. diff --git a/Resources/Prototypes/Entities/Objects/Weapons/security.yml b/Resources/Prototypes/Entities/Objects/Weapons/security.yml index 5f958269d2..10124f2601 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/security.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/security.yml @@ -80,6 +80,10 @@ explosionType: Default intensitySlope: 1.5 maxIntensity: 200 + - type: PhysicalComposition + materialComposition: + Steel: 100 + Plastic: 100 - type: GuideHelp guides: - Security @@ -105,6 +109,9 @@ heavyRateModifier: 1 - type: Item size: Normal + - type: Tag + tags: + - Truncheon - type: Clothing sprite: Objects/Weapons/Melee/truncheon.rsi quickEquip: false @@ -199,7 +206,7 @@ repeating: true - type: Anchorable - type: Sprite - sprite: _White/Objects/Weapons/pflash.rsi #WWDP edit + sprite: Objects/Weapons/pflash.rsi layers: - state: "off" map: ["enum.ProximityTriggerVisualLayers.Base"] diff --git a/Resources/Prototypes/Entities/Objects/base_item.yml b/Resources/Prototypes/Entities/Objects/base_item.yml index 84b5477f50..9c9437f46a 100644 --- a/Resources/Prototypes/Entities/Objects/base_item.yml +++ b/Resources/Prototypes/Entities/Objects/base_item.yml @@ -50,8 +50,8 @@ - type: Storage - type: UserInterface interfaces: - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface - type: ContainerContainer containers: storagebase: !type:Container diff --git a/Resources/Prototypes/Entities/Stations/base.yml b/Resources/Prototypes/Entities/Stations/base.yml index 0bf0f7f915..877a79dd96 100644 --- a/Resources/Prototypes/Entities/Stations/base.yml +++ b/Resources/Prototypes/Entities/Stations/base.yml @@ -61,7 +61,7 @@ - /Maps/Shuttles/trading_outpost.yml mining: paths: - - /Maps/Shuttles/mining.yml + - /Maps/Shuttles/pathfinder.yml # Spawn last ruins: hide: true @@ -89,7 +89,7 @@ - /Maps/Shuttles/cargo_core.yml mining: paths: - - /Maps/Shuttles/mining.yml + - /Maps/Shuttles/pathfinder.yml ruins: hide: true nameGrid: true @@ -153,4 +153,4 @@ id: BaseStationAllEventsEligible abstract: true components: - - type: StationEventEligible # For when someone makes this more granular in the future. \ No newline at end of file + - type: StationEventEligible # For when someone makes this more granular in the future. diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml b/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml index 1b660c0cf0..213ad47d88 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml @@ -30,8 +30,8 @@ - type: ActivatableUIRequiresPower - type: UserInterface interfaces: - - key: enum.ReagentDispenserUiKey.Key - type: ReagentDispenserBoundUserInterface + enum.ReagentDispenserUiKey.Key: + type: ReagentDispenserBoundUserInterface - type: Anchorable - type: Pullable - type: Damageable diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml b/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml index 681f0a390c..6e331a13a8 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml @@ -31,6 +31,9 @@ acts: ["Destruction"] - type: Machine board: ChemDispenserMachineCircuitboard + - type: UpgradePowerDraw + powerDrawMultiplier: 0.75 + scaling: Exponential - type: GuideHelp guides: - Chemicals diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml index f12bd2b553..c55b9d9554 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml @@ -152,7 +152,7 @@ components: - type: ContainerFill containers: - board: [ DoorElectronicsFreezer ] + board: [ DoorElectronicsKitchenHydroponics ] - type: entity parent: AirlockFreezer @@ -243,6 +243,16 @@ containers: board: [ DoorElectronicsChemistry ] +- type: entity + parent: AirlockMedical + id: AirlockMedicalMorgueLocked + suffix: Morgue, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsMorgue ] + + - type: entity parent: AirlockScience id: AirlockScienceLocked @@ -259,7 +269,7 @@ components: - type: ContainerFill containers: - board: [ DoorElectronicsScience ] + board: [ DoorElectronicsMedicalResearch ] - type: entity parent: AirlockCentralCommand @@ -633,7 +643,7 @@ components: - type: ContainerFill containers: - board: [ DoorElectronicsScience ] + board: [ DoorElectronicsMedicalResearch ] - type: entity parent: AirlockCentralCommandGlass @@ -982,7 +992,7 @@ components: - type: ContainerFill containers: - board: [ DoorElectronicsRnDMed ] + board: [ DoorElectronicsMedicalResearch ] - type: entity parent: AirlockMaint diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml index ada6dcd75e..c47ae7c215 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml @@ -4,7 +4,7 @@ suffix: Freezer components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/freezer.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/freezer.rsi - type: Wires layoutId: AirlockService @@ -14,7 +14,7 @@ suffix: Engineering components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/engineering.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/engineering.rsi - type: PaintableAirlock department: Engineering - type: Wires @@ -26,7 +26,7 @@ suffix: Atmospherics components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/atmospherics.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/atmospherics.rsi - type: entity parent: Airlock @@ -34,7 +34,7 @@ suffix: Logistics # DeltaV - Logistics Department replacing Cargo components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/cargo.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/cargo.rsi - type: PaintableAirlock department: Logistics - type: Wires @@ -46,7 +46,7 @@ suffix: Medical components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/medical.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/medical.rsi - type: PaintableAirlock department: Medical - type: Wires @@ -58,7 +58,7 @@ suffix: Virology components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/virology.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/virology.rsi - type: entity parent: AirlockMedical @@ -71,7 +71,7 @@ suffix: Epistemics # DeltaV - Epistemics Department replacing Science components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/science.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/science.rsi - type: PaintableAirlock department: Epistemics - type: Wires @@ -83,7 +83,7 @@ suffix: Command components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/command.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/command.rsi - type: WiresPanelSecurity securityLevel: medSecurity - type: PaintableAirlock @@ -97,7 +97,7 @@ suffix: Security components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/security.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/security.rsi - type: PaintableAirlock department: Security - type: Wires @@ -109,7 +109,7 @@ name: maintenance access components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/maint.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/maint.rsi - type: entity parent: AirlockSecurity # if you get syndie door somehow it counts as sec @@ -117,7 +117,7 @@ suffix: Syndicate components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/syndicate.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/syndicate.rsi - type: entity parent: AirlockCargo @@ -125,7 +125,7 @@ suffix: Mining(Salvage) components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/mining.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/mining.rsi - type: Wires layoutId: AirlockCargo @@ -135,7 +135,7 @@ suffix: Central Command components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/centcomm.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/centcomm.rsi - type: entity parent: Airlock @@ -143,7 +143,7 @@ name: airtight hatch components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/hatch.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/hatch.rsi - type: entity parent: Airlock @@ -151,7 +151,7 @@ name: maintenance hatch components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/hatch_maint.rsi # Glass - type: entity @@ -160,7 +160,7 @@ suffix: Engineering components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/engineering.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/engineering.rsi - type: PaintableAirlock department: Engineering - type: Wires @@ -172,7 +172,7 @@ suffix: Maintenance components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/maint.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/maint.rsi - type: entity parent: AirlockEngineeringGlass @@ -180,7 +180,7 @@ suffix: Atmospherics components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/atmospherics.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/atmospherics.rsi - type: entity parent: AirlockGlass @@ -188,7 +188,7 @@ suffix: Logistics # DeltaV - Logistics Department replacing Cargo components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/cargo.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/cargo.rsi - type: PaintableAirlock department: Logistics - type: Wires @@ -200,7 +200,7 @@ suffix: Medical components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/medical.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/medical.rsi - type: PaintableAirlock department: Medical - type: Wires @@ -217,7 +217,7 @@ suffix: Virology components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/virology.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/virology.rsi - type: entity parent: AirlockGlass @@ -225,7 +225,7 @@ suffix: Epistemics # DeltaV - Epistemics Department replacing Science components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/science.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/science.rsi - type: PaintableAirlock department: Epistemics - type: Wires @@ -237,7 +237,7 @@ suffix: Command components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/command.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/command.rsi - type: PaintableAirlock department: Command - type: WiresPanelSecurity @@ -251,7 +251,7 @@ suffix: Security components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/security.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/security.rsi - type: PaintableAirlock department: Security - type: Wires @@ -263,7 +263,7 @@ suffix: Syndicate components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/syndicate.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/syndicate.rsi - type: entity parent: AirlockCargoGlass @@ -271,7 +271,7 @@ suffix: Mining(Salvage) components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/mining.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/mining.rsi - type: entity parent: AirlockCommandGlass # see standard @@ -279,4 +279,4 @@ suffix: Central Command components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/centcomm.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/centcomm.rsi diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/assembly.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/assembly.yml index 33efab1054..c464c70a15 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/assembly.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/assembly.yml @@ -5,7 +5,7 @@ suffix: Atmospherics components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/atmospherics.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/atmospherics.rsi state: "assembly" - type: entity @@ -14,7 +14,7 @@ suffix: Atmospherics, Glass components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/atmospherics.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/atmospherics.rsi state: "assembly" #Cargo @@ -24,7 +24,7 @@ suffix: Cargo components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/cargo.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/cargo.rsi state: "assembly" - type: entity @@ -33,7 +33,7 @@ suffix: Cargo, Glass components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/cargo.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/cargo.rsi state: "assembly" #Clockwork @@ -68,7 +68,7 @@ suffix: Command components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/command.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/command.rsi state: "assembly" - type: entity @@ -77,7 +77,7 @@ suffix: Command, Glass components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/command.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/command.rsi state: "assembly" #Engineering @@ -87,7 +87,7 @@ suffix: Engineering components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/engineering.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/engineering.rsi state: "assembly" - type: entity @@ -96,7 +96,7 @@ suffix: Engineering, Glass components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/engineering.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/engineering.rsi state: "assembly" #External @@ -106,7 +106,7 @@ suffix: External components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/external.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/external.rsi state: "assembly" - type: entity @@ -115,7 +115,7 @@ suffix: External, Glass components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/external.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/external.rsi state: "assembly" #Public (Glass Airlock) @@ -125,7 +125,7 @@ suffix: Glass components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/glass.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/glass.rsi state: "assembly" #Freezer @@ -135,7 +135,7 @@ suffix: Freezer components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/freezer.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/freezer.rsi state: "assembly" #Maintenance @@ -145,7 +145,7 @@ suffix: Maintenance components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/maint.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/maint.rsi state: "assembly" - type: entity @@ -154,7 +154,7 @@ suffix: Maintenance, Glass components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/maint.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/maint.rsi state: "assembly" #Medical @@ -164,7 +164,7 @@ suffix: Medical components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/medical.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/medical.rsi state: "assembly" - type: entity @@ -173,7 +173,7 @@ suffix: Medical, Glass components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/medical.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/medical.rsi state: "assembly" #Science @@ -183,7 +183,7 @@ suffix: Science components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/science.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/science.rsi state: "assembly" - type: entity @@ -192,7 +192,7 @@ suffix: Science, Glass components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/science.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/science.rsi state: "assembly" #Security @@ -202,7 +202,7 @@ suffix: Security components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/security.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/security.rsi state: "assembly" - type: entity @@ -211,7 +211,7 @@ suffix: Security, Glass components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/security.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/security.rsi state: "assembly" #Shuttle @@ -221,7 +221,7 @@ suffix: Shuttle components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/shuttle.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/shuttle.rsi state: "assembly" - type: entity @@ -230,7 +230,7 @@ suffix: Shuttle, Glass components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/shuttle.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/shuttle.rsi state: "assembly" #Virology @@ -240,7 +240,7 @@ suffix: Virology components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/virology.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/virology.rsi state: "assembly" - type: entity @@ -249,7 +249,7 @@ suffix: Virology, Glass components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/virology.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/virology.rsi state: "assembly" #CentralCommand @@ -259,7 +259,7 @@ suffix: CentralCommand components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/centcomm.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/centcomm.rsi state: "assembly" - type: entity @@ -268,7 +268,7 @@ suffix: CentralCommand, Glass components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/centcomm.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/centcomm.rsi state: "assembly" #Mining @@ -278,7 +278,7 @@ suffix: Mining components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/mining.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/mining.rsi state: "assembly" - type: entity @@ -287,7 +287,7 @@ suffix: Mining, Glass components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/mining.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/mining.rsi state: "assembly" #Syndicate @@ -297,7 +297,7 @@ suffix: Syndicate components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/syndicate.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/syndicate.rsi state: "assembly" - type: entity @@ -306,7 +306,7 @@ suffix: Syndicate, Glass components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/syndicate.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/syndicate.rsi state: "assembly" #ShuttleSyndicate @@ -316,7 +316,7 @@ suffix: ShuttleSyndicate components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi state: "assembly" - type: entity @@ -325,7 +325,7 @@ suffix: ShuttleSyndicate, Glass components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi state: "assembly" #High Security @@ -335,5 +335,5 @@ suffix: HighSec components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/highsec/highsec.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/highsec/highsec.rsi state: "assembly" diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml index 82cd0c732b..bb411aee20 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml @@ -11,7 +11,7 @@ "/Audio/Weapons/smash.ogg" - type: InteractionOutline - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/basic.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/basic.rsi snapCardinals: true layers: - state: closed @@ -64,6 +64,7 @@ containers: board: !type:Container - type: Weldable + fuel: 5 time: 3 - type: Airlock - type: NavMapDoor @@ -103,8 +104,8 @@ - type: SpawnOnOverload - type: UserInterface interfaces: - - key: enum.WiresUiKey.Key - type: WiresBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Airtight noAirWhenFullyAirBlocked: false - type: RadiationBlocker @@ -177,7 +178,7 @@ - type: Occluder enabled: false - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/glass.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/glass.rsi - type: AnimationPlayer - type: Fixtures fixtures: diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/clockwork.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/clockwork.yml index e7f05bef2f..2269358a30 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/clockwork.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/clockwork.yml @@ -4,7 +4,7 @@ suffix: Pinion, Clockwork components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi - type: Construction graph: PinionAirlock node: airlock @@ -17,7 +17,7 @@ suffix: Pinion, Clockwork components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi - type: Construction graph: PinionAirlock node: glassAirlock diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml index 9b6063a621..293aaac273 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml @@ -15,7 +15,7 @@ denySound: path: /Audio/Machines/airlock_deny.ogg - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/external.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/external.rsi - type: PaintableAirlock group: External department: null @@ -30,6 +30,6 @@ - type: Occluder enabled: false - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/external.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/external.rsi - type: PaintableAirlock group: ExternalGlass diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml index 0a7c17ca29..559dca704c 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml @@ -8,7 +8,7 @@ components: - type: InteractionOutline - type: Sprite - sprite: _White/Structures/Doors/Airlocks/highsec/highsec.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/highsec/highsec.rsi layers: - state: closed map: ["enum.DoorVisualLayers.Base"] @@ -55,6 +55,7 @@ denySound: path: /Audio/Machines/airlock_deny.ogg - type: Weldable + fuel: 10 time: 10 - type: Airlock - type: NavMapDoor @@ -78,8 +79,8 @@ alwaysRandomize: true - type: UserInterface interfaces: - - key: enum.WiresUiKey.Key - type: WiresBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Airtight - type: Occluder - type: Damageable diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml index 62be17d3da..43d1228a40 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml @@ -6,6 +6,11 @@ description: Necessary for connecting two space craft together. components: - type: Docking + - type: DockingSignalControl + - type: DeviceLinkSource + ports: + - DoorStatus + - DockStatus - type: Fixtures fixtures: fix1: @@ -24,7 +29,7 @@ position: "0,-0.5" hard: false - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/shuttle.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/shuttle.rsi snapCardinals: false layers: - state: closed @@ -75,9 +80,8 @@ suffix: Glass, Docking description: Necessary for connecting two space craft together. components: - - type: Docking - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/shuttle.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/shuttle.rsi snapCardinals: false layers: - state: closed @@ -114,7 +118,7 @@ noRot: false - type: Rotatable - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/shuttle.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/shuttle.rsi state: closed - type: Construction graph: AirlockShuttle @@ -127,9 +131,8 @@ suffix: Glass, Docking description: Necessary for connecting two space craft together. components: - - type: Docking - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi snapCardinals: false layers: - state: closed @@ -162,4 +165,4 @@ description: Necessary for connecting two space craft together. components: - type: Sprite - sprite: _White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi # WD EDIT + sprite: Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi diff --git a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml index 1ba867773b..fcdb432dce 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml @@ -82,6 +82,7 @@ openingAnimationTime: 0.6 closingAnimationTime: 0.6 - type: Weldable + fuel: 5 time: 3 - type: Firelock - type: Appearance @@ -89,7 +90,7 @@ - type: WiresPanel - type: UserInterface interfaces: - - key: enum.WiresUiKey.Key + enum.WiresUiKey.Key: type: WiresBoundUserInterface - type: Physics canCollide: false diff --git a/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml b/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml index 369e776fa3..a653f26e16 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml @@ -84,7 +84,7 @@ description: A door, where will it lead? components: - type: Sprite - sprite: _White/Structures/Doors/MineralDoors/wood_door.rsi #WWDP edit + sprite: Structures/Doors/MineralDoors/wood_door.rsi layers: - state: closed map: ["enum.DoorVisualLayers.Base"] diff --git a/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml b/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml index 99932532cd..06e9d2219a 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml @@ -7,7 +7,7 @@ description: Keeps the air in and the greytide out. components: - type: Sprite - sprite: _White/Structures/Doors/secret_door.rsi #WWDP edit + sprite: Structures/Doors/secret_door.rsi layers: - state: closed map: ["enum.DoorVisualLayers.Base"] @@ -77,7 +77,7 @@ - type: Clickable - type: InteractionOutline - type: Sprite - sprite: _White/Structures/Doors/secret_door.rsi #WWDP edit + sprite: Structures/Doors/secret_door.rsi state: assembly - type: Physics - type: Fixtures diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml index 54cb012087..2043e78712 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml @@ -56,8 +56,8 @@ - type: Appearance - type: UserInterface interfaces: - - key: enum.WiresUiKey.Key - type: WiresBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Airtight - type: RadiationBlocker resistance: 2 diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml index bdda060435..3a194473e3 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml @@ -93,10 +93,11 @@ max: 4 - !type:DoActsBehavior acts: [ "Destruction" ] - - type: AccessReader - type: ContainerFill containers: board: [ DoorElectronics ] + - type: AccessReader + containerAccessProvider: board - type: ContainerContainer containers: board: !type:Container @@ -129,8 +130,8 @@ layoutId: Airlock - type: UserInterface interfaces: - - key: enum.WiresUiKey.Key - type: WiresBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Appearance - type: WiresVisuals - type: Airtight diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml index 2b4b2c5fe0..801bd091d0 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml @@ -48,88 +48,99 @@ id: WindoorBarLocked suffix: Bar, Locked components: - - type: AccessReader - access: [["Bar"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsBar ] - type: entity parent: Windoor id: WindoorBarKitchenLocked suffix: Bar&Kitchen, Locked components: - - type: AccessReader - access: [["Bar"], ["Kitchen"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsBarKitchen ] - type: entity parent: Windoor id: WindoorCargoLocked suffix: Logistics, Locked # DeltaV - Logistics Department replacing Cargo components: - - type: AccessReader - access: [["Cargo"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsCargo ] - type: entity parent: Windoor id: WindoorChapelLocked suffix: Chapel, Locked components: - - type: AccessReader - access: [["Chapel"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsChapel ] - type: entity parent: Windoor id: WindoorHydroponicsLocked suffix: Hydroponics, Locked components: - - type: AccessReader - access: [["Hydroponics"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsHydroponics ] - type: entity parent: Windoor id: WindoorJanitorLocked suffix: Janitor, Locked components: - - type: AccessReader - access: [["Janitor"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsJanitor ] - type: entity parent: WindoorPlasma id: PlasmaWindoorJanitorLocked suffix: Janitor, Locked, Plasma components: - - type: AccessReader - access: [["Janitor"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsJanitor ] - type: entity parent: Windoor id: WindoorKitchenLocked suffix: Kitchen, Locked components: - - type: AccessReader - access: [["Kitchen"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsKitchen ] - type: entity parent: Windoor id: WindoorKitchenHydroponicsLocked suffix: Kitchen&Hydroponics, Locked components: - - type: AccessReader - access: [["Kitchen"], ["Hydroponics"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsKitchenHydroponics ] - type: entity parent: Windoor id: WindoorServiceLocked suffix: Service, Locked components: - - type: AccessReader - access: [["Service"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsService ] - type: entity parent: Windoor id: WindoorTheatreLocked suffix: Theatre, Locked components: - - type: AccessReader - access: [["Theatre"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsTheatre ] # Secure @@ -138,222 +149,285 @@ id: WindoorSecureArmoryLocked suffix: Armory, Locked components: - - type: AccessReader - access: [["Armory"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsArmory ] + +- type: entity + parent: WindoorSecurePlasma + id: PlasmaWindoorSecureArmoryLocked + suffix: Armory, Locked, Plasma + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsArmory ] - type: entity parent: WindoorSecure id: WindoorSecureAtmosphericsLocked suffix: Atmospherics, Locked components: - - type: AccessReader - access: [["Atmospherics"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsAtmospherics ] + +- type: entity + parent: WindoorSecurePlasma + id: PlasmaWindoorSecureAtmosphericsLocked + suffix: Atmospherics, Locked, Plasma + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsAtmospherics ] - type: entity parent: WindoorSecure id: WindoorSecureBarLocked suffix: Bar, Locked components: - - type: AccessReader - access: [["Bar"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsBar ] -#Delta V: Removed Brig Access -#- type: entity -# parent: WindoorSecureSecurityLocked -# id: WindoorSecureBrigLocked -# suffix: Brig, Locked -# components: -# - type: AccessReader -# access: [["Brig"]] +- type: entity + parent: WindoorSecureSecurityLocked + id: WindoorSecureBrigLocked + suffix: Brig, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsBrig ] - type: entity parent: WindoorSecure id: WindoorSecureCargoLocked suffix: Logistics, Locked # DeltaV - Logistics Department replacing Cargo components: - - type: AccessReader - access: [["Cargo"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsCargo ] - type: entity parent: WindoorSecure id: WindoorSecureChapelLocked suffix: Chapel, Locked components: - - type: AccessReader - access: [["Chapel"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsChapel ] - type: entity parent: WindoorSecure id: WindoorSecureChemistryLocked suffix: Chemistry, Locked components: - - type: AccessReader - access: [["Chemistry"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsChemistry ] - type: entity parent: WindoorSecurePlasma id: PlasmaWindoorSecureChemistryLocked suffix: Chemistry, Locked, Plasma components: - - type: AccessReader - access: [["Chemistry"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsChemistry ] - type: entity parent: WindoorSecure id: WindoorSecureCentralCommandLocked suffix: Central Command, Locked components: - - type: AccessReader - access: [["CentralCommand"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsCentralCommand ] - type: entity parent: WindoorSecurePlasma id: PlasmaWindoorSecureCentralCommandLocked suffix: Central Command, Locked, Plasma components: - - type: AccessReader - access: [["CentralCommand"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsCentralCommand ] - type: entity parent: WindoorSecureUranium id: UraniumWindoorSecureCentralCommandLocked suffix: Central Command, Locked, Uranium components: - - type: AccessReader - access: [["CentralCommand"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsCentralCommand ] - type: entity parent: WindoorSecure id: WindoorSecureCommandLocked suffix: Command, Locked components: - - type: AccessReader - access: [["Command"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsCommand ] + +- type: entity + parent: WindoorSecurePlasma + id: PlasmaWindoorSecureCommandLocked + suffix: Command, Locked, Plasma + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsCommand ] - type: entity parent: WindoorSecure id: WindoorSecureDetectiveLocked suffix: Detective, Locked components: - - type: AccessReader - access: [["Detective"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsDetective ] - type: entity parent: WindoorSecure id: WindoorSecureEngineeringLocked suffix: Engineering, Locked components: - - type: AccessReader - access: [["Engineering"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsEngineering ] - type: entity parent: WindoorSecurePlasma id: PlasmaWindoorSecureEngineeringLocked suffix: Engineering, Locked, Plasma components: - - type: AccessReader - access: [["Engineering"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsEngineering ] - type: entity parent: WindoorSecureUranium id: UraniumWindoorSecureEngineeringLocked suffix: Engineering, Locked, Uranium components: - - type: AccessReader - access: [["Engineering"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsEngineering ] - type: entity parent: WindoorSecure id: WindoorSecureExternalLocked suffix: External, Locked components: - - type: AccessReader - access: [["External"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsExternal ] - type: entity parent: WindoorSecure id: WindoorSecureJanitorLocked suffix: Janitor, Locked components: - - type: AccessReader - access: [["Janitor"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsJanitor ] - type: entity parent: WindoorSecurePlasma id: PlasmaWindoorSecureJanitorLocked suffix: Janitor, Locked, Plasma components: - - type: AccessReader - access: [["Janitor"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsJanitor ] - type: entity parent: WindoorSecure id: WindoorSecureKitchenLocked suffix: Kitchen, Locked components: - - type: AccessReader - access: [["Kitchen"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsKitchen ] - type: entity parent: WindoorSecureSecurityLocked id: WindoorSecureSecurityLawyerLocked suffix: Security/Lawyer, Locked components: - - type: AccessReader - access: [["Security"], ["Lawyer"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsSecurityLawyer ] - type: entity parent: WindoorSecure id: WindoorSecureMedicalLocked suffix: Medical, Locked components: - - type: AccessReader - access: [["Medical"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsMedical ] - type: entity parent: WindoorSecure id: WindoorSecureSalvageLocked suffix: Salvage, Locked components: - - type: AccessReader - access: [["Salvage"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsSalvage ] - type: entity parent: WindoorSecure id: WindoorSecureSecurityLocked suffix: Security, Locked components: - - type: AccessReader - access: [["Security"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsSecurity ] + +- type: entity + parent: WindoorSecurePlasma + id: PlasmaWindoorSecureSecurityLocked + suffix: Security, Locked, Plasma + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsSecurity ] - type: entity parent: WindoorSecure id: WindoorSecureScienceLocked suffix: Epistemics, Locked # DeltaV - Epistemics Department replacing Science components: - - type: AccessReader - access: [["Research"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsResearch ] - type: entity parent: WindoorSecurePlasma id: PlasmaWindoorSecureScienceLocked suffix: Science, Locked, Plasma components: - - type: AccessReader - access: [["Research"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsResearch ] - type: entity parent: WindoorSecure id: WindoorSecureServiceLocked suffix: Service, Locked components: - - type: AccessReader - access: [["Service"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsService ] - type: entity parent: WindoorSecure id: WindoorSecureHeadOfPersonnelLocked suffix: HeadOfPersonnel, Locked components: - - type: AccessReader - access: [["HeadOfPersonnel"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsHeadOfPersonnel ] diff --git a/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml b/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml index c1b0cf0423..dbef5a7504 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml @@ -20,6 +20,7 @@ - TableMask layer: - TableLayer + - BulletImpassable - type: SpriteFade - type: Sprite - type: Icon @@ -38,7 +39,8 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepHull - + - type: RequireProjectileTarget + - type: entity id: CounterBase parent: TableBase diff --git a/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml b/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml index 57ee50b048..4c8427e46e 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml @@ -6,9 +6,9 @@ description: Pieces of metal that make the frame of a table. components: - type: Sprite - sprite: _White/Structures/Furniture/Tables/frame.rsi #WWDP edit + sprite: Structures/Furniture/Tables/frame.rsi - type: Icon - sprite: _White/Structures/Furniture/Tables/frame.rsi + sprite: Structures/Furniture/Tables/frame.rsi state: full - type: Fixtures fixtures: @@ -63,9 +63,9 @@ components: - type: SpriteFade - type: Sprite - sprite: _White/Structures/Furniture/Tables/frame.rsi #WWDP edit + sprite: Structures/Furniture/Tables/frame.rsi - type: Icon - sprite: _White/Structures/Furniture/Tables/frame.rsi #WWDP edit + sprite: Structures/Furniture/Tables/frame.rsi state: full - type: Fixtures fixtures: @@ -117,9 +117,9 @@ description: Pieces of metal that make the frame of a table. components: - type: Sprite - sprite: _White/Structures/Furniture/Tables/frame.rsi #WWDP edit + sprite: Structures/Furniture/Tables/frame.rsi - type: Icon - sprite: _White/Structures/Furniture/Tables/frame.rsi #WWDP edit + sprite: Structures/Furniture/Tables/frame.rsi state: full - type: Damageable damageContainer: Inorganic @@ -137,7 +137,7 @@ acts: [ "Destruction" ] - trigger: !type:DamageTrigger - damage: 25 + damage: 15 behaviors: - !type:PlaySoundBehavior sound: @@ -162,9 +162,9 @@ description: A square piece of metal standing on four metal legs. components: - type: Sprite - sprite: _White/Structures/Furniture/Tables/generic.rsi #WWDP edit + sprite: Structures/Furniture/Tables/generic.rsi - type: Icon - sprite: _White/Structures/Furniture/Tables/generic.rsi #WWDP edit + sprite: Structures/Furniture/Tables/generic.rsi - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic @@ -178,7 +178,7 @@ acts: [ "Destruction" ] - trigger: !type:DamageTrigger - damage: 25 + damage: 15 behaviors: - !type:PlaySoundBehavior sound: @@ -203,9 +203,9 @@ description: A square piece of metal standing on four metal legs. Extra robust. components: - type: Sprite - sprite: _White/Structures/Furniture/Tables/reinforced.rsi #WWDP edit + sprite: Structures/Furniture/Tables/reinforced.rsi - type: Icon - sprite: _White/Structures/Furniture/Tables/reinforced.rsi #WWDP edit + sprite: Structures/Furniture/Tables/reinforced.rsi - type: Destructible thresholds: - trigger: @@ -216,7 +216,7 @@ acts: [ "Destruction" ] - trigger: !type:DamageTrigger - damage: 75 + damage: 30 behaviors: - !type:PlaySoundBehavior sound: @@ -248,9 +248,9 @@ description: A square piece of glass, standing on four metal legs. components: - type: Sprite - sprite: _White/Structures/Furniture/Tables/glass.rsi #WWDP edit + sprite: Structures/Furniture/Tables/glass.rsi - type: Icon - sprite: _White/Structures/Furniture/Tables/glass.rsi #WWDP edit + sprite: Structures/Furniture/Tables/glass.rsi - type: GlassTable climberDamage: types: @@ -263,7 +263,7 @@ thresholds: - trigger: !type:DamageTrigger - damage: 25 + damage: 15 behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] @@ -300,9 +300,9 @@ description: A square piece of glass, standing on four metal legs. Extra robust. components: - type: Sprite - sprite: _White/Structures/Furniture/Tables/r_glass.rsi #WWDP edit + sprite: Structures/Furniture/Tables/r_glass.rsi - type: Icon - sprite: _White/Structures/Furniture/Tables/r_glass.rsi #WWDP edit + sprite: Structures/Furniture/Tables/r_glass.rsi - type: GlassTable climberDamage: types: @@ -355,9 +355,9 @@ description: A square piece of plasma glass, standing on four metal legs. Pretty! components: - type: Sprite - sprite: _White/Structures/Furniture/Tables/plasma.rsi #WWDP edit + sprite: Structures/Furniture/Tables/plasma.rsi - type: Icon - sprite: _White/Structures/Furniture/Tables/plasma.rsi #WWDP edit + sprite: Structures/Furniture/Tables/plasma.rsi - type: GlassTable climberDamage: types: @@ -379,7 +379,7 @@ collection: GlassBreak - trigger: !type:DamageTrigger - damage: 50 + damage: 30 behaviors: - !type:PlaySoundBehavior sound: @@ -426,7 +426,7 @@ acts: [ "Destruction" ] - trigger: !type:DamageTrigger - damage: 25 + damage: 40 behaviors: - !type:PlaySoundBehavior sound: @@ -451,9 +451,9 @@ description: Do not apply fire to this. Rumour says it burns easily. components: - type: Sprite - sprite: _White/Structures/Furniture/Tables/wood.rsi #WWDP edit + sprite: Structures/Furniture/Tables/wood.rsi - type: Icon - sprite: _White/Structures/Furniture/Tables/wood.rsi #WWDP edit + sprite: Structures/Furniture/Tables/wood.rsi - type: Damageable damageModifierSet: Wood - type: Destructible @@ -498,9 +498,9 @@ description: Play em' cowboy. components: - type: Sprite - sprite: _White/Structures/Furniture/Tables/carpet.rsi #WWDP edit + sprite: Structures/Furniture/Tables/carpet.rsi - type: Icon - sprite: _White/Structures/Furniture/Tables/carpet.rsi #WWDP edit + sprite: Structures/Furniture/Tables/carpet.rsi - type: Damageable damageModifierSet: Wood - type: Destructible @@ -546,7 +546,7 @@ thresholds: - trigger: !type:DamageTrigger - damage: 50 + damage: 40 behaviors: - !type:PlaySoundBehavior sound: @@ -573,7 +573,7 @@ thresholds: - trigger: !type:DamageTrigger - damage: 50 + damage: 20 behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] @@ -777,9 +777,9 @@ description: Do not apply fire to this. Rumour says it burns easily. components: - type: Sprite - sprite: _White/Structures/Furniture/Tables/counterwood.rsi #WWDP edit + sprite: Structures/Furniture/Tables/counterwood.rsi - type: Icon - sprite: _White/Structures/Furniture/Tables/counterwood.rsi #WWDP edit + sprite: Structures/Furniture/Tables/counterwood.rsi state: full - type: Damageable damageContainer: Inorganic diff --git a/Resources/Prototypes/Entities/Structures/Furniture/bookshelf.yml b/Resources/Prototypes/Entities/Structures/Furniture/bookshelf.yml index 9009d65f04..30aa793767 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/bookshelf.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/bookshelf.yml @@ -5,7 +5,7 @@ description: Mostly filled with books. components: - type: Sprite - sprite: _White/Structures/Furniture/bookshelf.rsi #WWDP edit + sprite: Structures/Furniture/bookshelf.rsi snapCardinals: true layers: - state: base @@ -59,8 +59,8 @@ - Spellbook - type: UserInterface interfaces: - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface - type: InteractionOutline - type: ContainerContainer containers: diff --git a/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml b/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml index 8f11a2eb80..961bf5bba4 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml @@ -33,7 +33,7 @@ thresholds: - trigger: !type:DamageTrigger - damage: 100 + damage: 25 behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] @@ -48,6 +48,7 @@ collection: MetalBreak - type: StaticPrice price: 10 + - type: RequireProjectileTarget #Starts unanchored, cannot be rotated while anchored - type: entity @@ -203,7 +204,7 @@ parent: UnanchoredChairBase components: - type: Sprite - sprite: _White/Structures/Furniture/chairs.rsi #WWDP edit + sprite: Structures/Furniture/chairs.rsi state: wooden noRot: true - type: Construction diff --git a/Resources/Prototypes/Entities/Structures/Furniture/dresser.yml b/Resources/Prototypes/Entities/Structures/Furniture/dresser.yml index a122359c97..6af67b239e 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/dresser.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/dresser.yml @@ -5,7 +5,7 @@ description: Wooden dresser, can store things inside itself, ideal for underwear, and someone's kidneys?... components: - type: Sprite - sprite: _White/Structures/Furniture/furniture.rsi #WWDP edit + sprite: Structures/Furniture/furniture.rsi state: dresser - type: Damageable damageModifierSet: Wood @@ -33,8 +33,8 @@ storagebase: !type:Container - type: UserInterface interfaces: - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface - type: InteractionOutline - type: Clickable - type: Tag diff --git a/Resources/Prototypes/Entities/Structures/Furniture/shower.yml b/Resources/Prototypes/Entities/Structures/Furniture/shower.yml index 694202efdc..a8ba4f25a9 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/shower.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/shower.yml @@ -24,11 +24,11 @@ canCollide: false - type: InteractionOutline - type: Damageable + damageContainer: Inorganic + damageModifierSet: Metallic - type: Construction graph: Shower node: shower - damageContainer: Inorganic - damageModifierSet: Metallic - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml b/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml index f02b126248..a3124c09f6 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml @@ -51,6 +51,10 @@ disposals: !type:Container - type: Physics bodyType: Static + - type: Fixtures + fixtures: + fix1: + hard: false - type: Construction graph: Toilet node: toilet @@ -66,8 +70,8 @@ price: 25 - type: UserInterface interfaces: - - key: enum.DisposalUnitUiKey.Key - type: DisposalUnitBoundUserInterface + enum.DisposalUnitUiKey.Key: + type: DisposalUnitBoundUserInterface - type: RatKingRummageable - type: SolutionContainerManager solutions: @@ -104,7 +108,10 @@ components: - type: SolutionContainerManager solutions: - toilet: + drainBuffer: + maxVol: 100 + tank: + maxVol: 500 reagents: - ReagentId: Water Quantity: 180 diff --git a/Resources/Prototypes/Entities/Structures/Holographic/projections.yml b/Resources/Prototypes/Entities/Structures/Holographic/projections.yml index f9bf81695e..005d528e3f 100644 --- a/Resources/Prototypes/Entities/Structures/Holographic/projections.yml +++ b/Resources/Prototypes/Entities/Structures/Holographic/projections.yml @@ -13,8 +13,6 @@ - type: Sprite sprite: Structures/Holo/wetfloor.rsi state: icon - - type: TimedDespawn - lifetime: 90 - type: Damageable damageContainer: Inorganic - type: Destructible @@ -25,6 +23,14 @@ behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] + # WD EDIT START + - type: Clickable + - type: MeleeSound + soundGroups: + Brute: + path: + "/Audio/Weapons/egloves.ogg" + # WD EDIT END - type: entity id: HoloFan @@ -41,8 +47,6 @@ shape: !type:PhysShapeAabb bounds: "-0.5,-0.5,0.5,0.5" - - type: TimedDespawn - lifetime: 180 - type: Airtight noAirWhenFullyAirBlocked: false @@ -68,14 +72,11 @@ - TableMask layer: - TableLayer - - type: TimedDespawn - lifetime: 180 - type: PointLight enabled: true radius: 3 color: red - type: Climbable - - type: Clickable - type: entity id: HolosignForcefield @@ -99,13 +100,10 @@ - FullTileMask layer: - GlassLayer - - type: TimedDespawn - lifetime: 180 - type: PointLight enabled: true radius: 3 color: blue - - type: Clickable - type: ContainmentField throwForce: 0 - type: Destructible diff --git a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml index 22bbdb7b9f..6b301a50ee 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml @@ -43,7 +43,7 @@ - type: RCDDeconstructable cost: 4 delay: 2 - fx: EffectRCDDeconstruct2 + fx: EffectRCDDeconstruct2 - type: Destructible thresholds: - trigger: @@ -74,7 +74,7 @@ mode: SnapgridCenter snap: - Wallmount - + - type: entity name: light description: "A light fixture. Draws power and produces light when equipped with a light tube." @@ -91,7 +91,7 @@ bulb: Tube damage: types: - Heat: 5 + Heat: 2 - type: ContainerContainer containers: light_bulb: !type:ContainerSlot @@ -132,7 +132,7 @@ hasLampOnSpawn: LightTube damage: types: - Heat: 5 + Heat: 2 - type: AmbientOnPowered - type: AmbientSound volume: -15 @@ -151,7 +151,7 @@ hasLampOnSpawn: LedLightTube damage: types: - Heat: 2.5 + Heat: 1 #LEDs don't get as hot - type: PointLight radius: 15 energy: 1 @@ -173,20 +173,19 @@ - type: entity id: PoweredlightExterior description: "A light fixture. Draws power and produces light when equipped with a light tube." - suffix: Blue - noSpawn: true # DeltaV - Don't map these + suffix: Exterior parent: Poweredlight components: - type: PoweredLight hasLampOnSpawn: ExteriorLightTube damage: types: - Heat: 5 + Heat: 4 #brighter light gets hotter - type: entity parent: AlwaysPoweredWallLight id: AlwaysPoweredLightExterior - suffix: Always Powered, Blue + suffix: Always Powered, Exterior components: - type: PointLight radius: 12 @@ -205,7 +204,7 @@ hasLampOnSpawn: SodiumLightTube damage: types: - Heat: 5 + Heat: 2 - type: PointLight radius: 10 energy: 2.5 @@ -292,7 +291,7 @@ bulb: Bulb damage: types: - Heat: 5 + Heat: 2 - type: ApcPowerReceiver - type: ExtensionCableReceiver - type: DeviceNetwork @@ -331,7 +330,7 @@ hasLampOnSpawn: LedLightBulb damage: types: - Heat: 2.5 + Heat: 1 - type: entity id: PoweredSmallLight @@ -346,7 +345,7 @@ hasLampOnSpawn: LightBulb damage: types: - Heat: 5 + Heat: 2 #Emergency Lights - type: entity @@ -361,7 +360,7 @@ radius: 5 energy: 0.6 offset: "0, 0.4" - color: "#FF4020" + color: "#7CFC00" mask: /Textures/Effects/LightMasks/double_cone.png - type: ApcPowerReceiver - type: ExtensionCableReceiver @@ -378,10 +377,10 @@ map: [ "enum.EmergencyLightVisualLayers.Base" ] - state: emergency_light_off map: [ "enum.EmergencyLightVisualLayers.LightOff" ] - color: "#FF4020" + color: "#7CFC00" - state: emergency_light_on map: [ "enum.EmergencyLightVisualLayers.LightOn" ] - color: "#FF4020" + color: "#7CFC00" shader: "unshaded" visible: false - type: Appearance @@ -401,7 +400,7 @@ hasLampOnSpawn: LightTubeCrystalCyan damage: types: - Heat: 5 + Heat: 2 - type: PointLight radius: 8 energy: 3 @@ -428,7 +427,7 @@ hasLampOnSpawn: LightTubeCrystalBlue damage: types: - Heat: 5 + Heat: 2 - type: PointLight radius: 8 energy: 3 @@ -455,7 +454,7 @@ hasLampOnSpawn: LightTubeCrystalPink damage: types: - Heat: 5 + Heat: 2 - type: PointLight radius: 8 energy: 3 @@ -482,7 +481,7 @@ hasLampOnSpawn: LightTubeCrystalOrange damage: types: - Heat: 5 + Heat: 2 - type: PointLight radius: 8 energy: 3 @@ -509,7 +508,7 @@ hasLampOnSpawn: LightTubeCrystalRed damage: types: - Heat: 5 + Heat: 2 - type: PointLight radius: 8 energy: 3 @@ -536,7 +535,7 @@ hasLampOnSpawn: LightTubeCrystalGreen damage: types: - Heat: 5 + Heat: 2 - type: PointLight radius: 8 energy: 3 diff --git a/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml index 34a6f08294..2afde4ef3f 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml @@ -79,7 +79,7 @@ bulb: Tube damage: types: - Heat: 20 + Heat: 2 - type: ContainerContainer containers: light_bulb: !type:ContainerSlot @@ -124,7 +124,7 @@ hasLampOnSpawn: LightTube damage: types: - Heat: 20 + Heat: 2 - type: StaticPrice price: 25 - type: AmbientOnPowered @@ -153,7 +153,7 @@ hasLampOnSpawn: LedLightTube damage: types: - Heat: 20 + Heat: 1 - type: StaticPrice price: 25 - type: AmbientOnPowered diff --git a/Resources/Prototypes/Entities/Structures/Lighting/strobe_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/strobe_lighting.yml index 8eceb76b63..72f5439646 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/strobe_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/strobe_lighting.yml @@ -89,7 +89,7 @@ on: false damage: types: - Heat: 5 + Heat: 2 - type: ApcPowerReceiver - type: ExtensionCableReceiver - type: DeviceNetwork @@ -145,4 +145,4 @@ volume: 0 range: 10 sound: - path: "/Audio/Effects/Lightning/strobeepsilon.ogg" \ No newline at end of file + path: "/Audio/Effects/Lightning/strobeepsilon.ogg" diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml index 59690e56eb..98c0f229ed 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml @@ -90,9 +90,9 @@ - type: ActivatableUIRequiresPower - type: UserInterface interfaces: - - key: enum.SpaceVillainArcadeUiKey.Key + enum.SpaceVillainArcadeUiKey.Key: type: SpaceVillainArcadeBoundUserInterface - - key: enum.WiresUiKey.Key + enum.WiresUiKey.Key: type: WiresBoundUserInterface - type: Computer board: SpaceVillainArcadeComputerCircuitboard @@ -134,9 +134,9 @@ - type: ActivatableUIRequiresPower - type: UserInterface interfaces: - - key: enum.BlockGameUiKey.Key + enum.BlockGameUiKey.Key: type: BlockGameBoundUserInterface - - key: enum.WiresUiKey.Key + enum.WiresUiKey.Key: type: WiresBoundUserInterface - type: Computer board: BlockGameArcadeComputerCircuitboard diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml index b7ea7c6f6c..9468ecd452 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml @@ -62,11 +62,11 @@ priority: 1 - type: RequireProjectileTarget - type: LanguageSpeaker - currentLanguage: GalacticCommon + currentLanguage: TauCetiBasic - type: LanguageKnowledge speaks: - - GalacticCommon + - TauCetiBasic - RobotTalk understands: - - GalacticCommon + - TauCetiBasic - RobotTalk diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index 4fd2129f7a..0021b05321 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -1,8 +1,8 @@ - type: entity parent: BaseComputer id: ComputerAlert - name: alerts computer - description: Used to access the station's automated alert system. + name: atmospheric alerts computer + description: Used to access the station's automated atmospheric alert system. components: - type: Computer board: AlertsComputerCircuitboard @@ -13,9 +13,33 @@ - map: ["computerLayerKeyboard"] state: generic_keyboard - map: ["computerLayerScreen"] - state: alert-2 + state: alert-0 - map: ["computerLayerKeys"] state: atmos_key + - type: GenericVisualizer + visuals: + enum.ComputerVisuals.Powered: + computerLayerScreen: + True: { visible: true, shader: unshaded } + False: { visible: false } + computerLayerKeys: + True: { visible: true, shader: unshaded } + False: { visible: true, shader: shaded } + enum.AtmosAlertsComputerVisuals.ComputerLayerScreen: + computerLayerScreen: + 0: { state: alert-0 } + 1: { state: alert-0 } + 2: { state: alert-1 } + 3: { state: alert-2 } + 4: { state: alert-2 } + - type: AtmosAlertsComputer + - type: ActivatableUI + singleUser: true + key: enum.AtmosAlertsComputerUiKey.Key + - type: UserInterface + interfaces: + enum.AtmosAlertsComputerUiKey.Key: + type: AtmosAlertsComputerBoundUserInterface - type: entity parent: BaseComputer @@ -31,8 +55,8 @@ key: enum.EmergencyConsoleUiKey.Key - type: UserInterface interfaces: - - key: enum.EmergencyConsoleUiKey.Key - type: EmergencyConsoleBoundUserInterface + enum.EmergencyConsoleUiKey.Key: + type: EmergencyConsoleBoundUserInterface - type: PointLight radius: 1.5 energy: 1.6 @@ -52,8 +76,8 @@ key: enum.ShuttleConsoleUiKey.Key - type: UserInterface interfaces: - - key: enum.ShuttleConsoleUiKey.Key - type: ShuttleConsoleBoundUserInterface + enum.ShuttleConsoleUiKey.Key: + type: ShuttleConsoleBoundUserInterface - type: RadarConsole - type: WorldLoader radius: 256 @@ -211,8 +235,8 @@ key: enum.IFFConsoleUiKey.Key - type: UserInterface interfaces: - - key: enum.IFFConsoleUiKey.Key - type: IFFConsoleBoundUserInterface + enum.IFFConsoleUiKey.Key: + type: IFFConsoleBoundUserInterface - type: Computer board: ComputerIFFCircuitboard @@ -231,8 +255,8 @@ key: enum.IFFConsoleUiKey.Key - type: UserInterface interfaces: - - key: enum.IFFConsoleUiKey.Key - type: IFFConsoleBoundUserInterface + enum.IFFConsoleUiKey.Key: + type: IFFConsoleBoundUserInterface - type: Computer board: ComputerIFFSyndicateCircuitboard @@ -271,8 +295,8 @@ key: enum.PowerMonitoringConsoleUiKey.Key - type: UserInterface interfaces: - - key: enum.PowerMonitoringConsoleUiKey.Key - type: PowerMonitoringConsoleBoundUserInterface + enum.PowerMonitoringConsoleUiKey.Key: + type: PowerMonitoringConsoleBoundUserInterface - type: entity parent: BaseComputer @@ -306,8 +330,8 @@ - type: CriminalRecordsConsole - type: UserInterface interfaces: - - key: enum.CriminalRecordsConsoleKey.Key - type: CriminalRecordsConsoleBoundUserInterface + enum.CriminalRecordsConsoleKey.Key: + type: CriminalRecordsConsoleBoundUserInterface - type: ActivatableUI key: enum.CriminalRecordsConsoleKey.Key - type: Sprite @@ -341,8 +365,8 @@ - type: GeneralStationRecordConsole - type: UserInterface interfaces: - - key: enum.GeneralStationRecordConsoleKey.Key - type: GeneralStationRecordConsoleBoundUserInterface + enum.GeneralStationRecordConsoleKey.Key: + type: GeneralStationRecordConsoleBoundUserInterface - type: ActivatableUI key: enum.GeneralStationRecordConsoleKey.Key - type: PointLight @@ -381,7 +405,7 @@ key: enum.CrewMonitoringUIKey.Key - type: UserInterface interfaces: - - key: enum.CrewMonitoringUIKey.Key + enum.CrewMonitoringUIKey.Key: type: CrewMonitoringBoundUserInterface - type: CrewMonitoringConsole - type: DeviceNetwork @@ -416,10 +440,10 @@ key: enum.ResearchConsoleUiKey.Key - type: UserInterface interfaces: - - key: enum.ResearchConsoleUiKey.Key - type: ResearchConsoleBoundUserInterface - - key: enum.ResearchClientUiKey.Key - type: ResearchClientBoundUserInterface + enum.ResearchConsoleUiKey.Key: + type: ResearchConsoleBoundUserInterface + enum.ResearchClientUiKey.Key: + type: ResearchClientBoundUserInterface - type: ApcPowerReceiver powerLoad: 1000 - type: Computer @@ -464,10 +488,10 @@ key: enum.ArtifactAnalzyerUiKey.Key - type: UserInterface interfaces: - - key: enum.ArtifactAnalzyerUiKey.Key - type: AnalysisConsoleBoundUserInterface - - key: enum.ResearchClientUiKey.Key - type: ResearchClientBoundUserInterface + enum.ArtifactAnalzyerUiKey.Key: + type: AnalysisConsoleBoundUserInterface + enum.ResearchClientUiKey.Key: + type: ResearchClientBoundUserInterface - type: ApcPowerReceiver powerLoad: 1000 - type: Computer @@ -509,8 +533,8 @@ key: enum.IdCardConsoleUiKey.Key - type: UserInterface interfaces: - - key: enum.IdCardConsoleUiKey.Key - type: IdCardConsoleBoundUserInterface + enum.IdCardConsoleUiKey.Key: + type: IdCardConsoleBoundUserInterface - type: CrewManifestViewer ownerKey: enum.IdCardConsoleUiKey.Key - type: Sprite @@ -580,8 +604,8 @@ key: enum.CommunicationsConsoleUiKey.Key - type: UserInterface interfaces: - - key: enum.CommunicationsConsoleUiKey.Key - type: CommunicationsConsoleBoundUserInterface + enum.CommunicationsConsoleUiKey.Key: + type: CommunicationsConsoleBoundUserInterface - type: Computer board: CommsComputerCircuitboard - type: PointLight @@ -644,8 +668,8 @@ key: enum.SolarControlConsoleUiKey.Key - type: UserInterface interfaces: - - key: enum.SolarControlConsoleUiKey.Key - type: SolarControlConsoleBoundUserInterface + enum.SolarControlConsoleUiKey.Key: + type: SolarControlConsoleBoundUserInterface - type: Computer board: SolarControlComputerCircuitboard - type: PointLight @@ -674,8 +698,8 @@ key: enum.RadarConsoleUiKey.Key - type: UserInterface interfaces: - - key: enum.RadarConsoleUiKey.Key - type: RadarConsoleBoundUserInterface + enum.RadarConsoleUiKey.Key: + type: RadarConsoleBoundUserInterface - type: Computer board: RadarConsoleCircuitboard - type: PointLight @@ -704,8 +728,8 @@ key: enum.CargoConsoleUiKey.Shuttle - type: UserInterface interfaces: - - key: enum.CargoConsoleUiKey.Shuttle - type: CargoShuttleConsoleBoundUserInterface + enum.CargoConsoleUiKey.Shuttle: + type: CargoShuttleConsoleBoundUserInterface - type: Computer board: CargoShuttleComputerCircuitboard - type: PointLight @@ -735,12 +759,15 @@ - map: ["computerLayerKeys"] state: tech_key - type: CargoOrderConsole + - type: ActiveRadio + channels: + - Supply - type: ActivatableUI key: enum.CargoConsoleUiKey.Orders - type: UserInterface interfaces: - - key: enum.CargoConsoleUiKey.Orders - type: CargoOrderConsoleBoundUserInterface + enum.CargoConsoleUiKey.Orders: + type: CargoOrderConsoleBoundUserInterface - type: Computer board: CargoRequestComputerCircuitboard - type: PointLight @@ -783,8 +810,8 @@ key: enum.CargoConsoleUiKey.Bounty - type: UserInterface interfaces: - - key: enum.CargoConsoleUiKey.Bounty - type: CargoBountyConsoleBoundUserInterface + enum.CargoConsoleUiKey.Bounty: + type: CargoBountyConsoleBoundUserInterface - type: Computer board: CargoBountyComputerCircuitboard - type: PointLight @@ -834,8 +861,8 @@ key: enum.CloningConsoleUiKey.Key - type: UserInterface interfaces: - - key: enum.CloningConsoleUiKey.Key - type: CloningConsoleBoundUserInterface + enum.CloningConsoleUiKey.Key: + type: CloningConsoleBoundUserInterface - type: Speech speechVerb: Robotic speechSounds: Pai @@ -878,7 +905,7 @@ - type: ActivatableUIRequiresPower - type: UserInterface interfaces: - - key: enum.SalvageConsoleUiKey.Expedition + enum.SalvageConsoleUiKey.Expedition: type: SalvageExpeditionConsoleBoundUserInterface - type: Computer board: SalvageExpeditionsComputerCircuitboard @@ -923,8 +950,8 @@ anchored: true - type: UserInterface interfaces: - - key: enum.SurveillanceCameraMonitorUiKey.Key - type: SurveillanceCameraMonitorBoundUserInterface + enum.SurveillanceCameraMonitorUiKey.Key: + type: SurveillanceCameraMonitorBoundUserInterface - type: entity parent: BaseComputer @@ -960,8 +987,8 @@ - type: ActivatableUIRequiresVision - type: UserInterface interfaces: - - key: enum.SurveillanceCameraMonitorUiKey.Key - type: SurveillanceCameraMonitorBoundUserInterface + enum.SurveillanceCameraMonitorUiKey.Key: + type: SurveillanceCameraMonitorBoundUserInterface - type: entity id: ComputerPalletConsole @@ -987,8 +1014,8 @@ key: enum.CargoPalletConsoleUiKey.Sale - type: UserInterface interfaces: - - key: enum.CargoPalletConsoleUiKey.Sale - type: CargoPalletConsoleBoundUserInterface + enum.CargoPalletConsoleUiKey.Sale: + type: CargoPalletConsoleBoundUserInterface - type: Computer board: CargoRequestComputerCircuitboard - type: PointLight @@ -1028,8 +1055,8 @@ anchored: true - type: UserInterface interfaces: - - key: enum.NewsWriterUiKey.Key - type: NewsWriterBoundUserInterface + enum.NewsWriterUiKey.Key: + type: NewsWriterBoundUserInterface - type: entity parent: BaseComputer @@ -1061,7 +1088,7 @@ key: enum.SensorMonitoringConsoleUiKey.Key - type: UserInterface interfaces: - - key: enum.SensorMonitoringConsoleUiKey.Key + enum.SensorMonitoringConsoleUiKey.Key: type: SensorMonitoringConsoleBoundUserInterface - type: DeviceNetwork deviceNetId: AtmosDevices @@ -1073,3 +1100,42 @@ - type: WiredNetworkConnection - type: DeviceList - type: AtmosDevice + +- type: entity + parent: BaseComputer + id: ComputerRoboticsControl + name: robotics control console + description: Used to remotely monitor, disable and destroy the station's cyborgs. + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + state: computer + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: robot + - map: ["computerLayerKeys"] + state: rd_key + - type: RoboticsConsole + - type: ActiveRadio + channels: + - Science + - type: ActivatableUI + key: enum.RoboticsConsoleUiKey.Key + - type: UserInterface + interfaces: + enum.RoboticsConsoleUiKey.Key: + type: RoboticsConsoleBoundUserInterface + - type: ApcPowerReceiver + powerLoad: 1000 + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: RoboticsConsole + transmitFrequencyId: CyborgControl + - type: Computer + board: RoboticsConsoleCircuitboard + - type: AccessReader # only used for dangerous things + access: [["ResearchDirector"]] + - type: Lock + unlockOnClick: false diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/techdiskterminal.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/techdiskterminal.yml index df989a7795..dd58b9709d 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/techdiskterminal.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/techdiskterminal.yml @@ -19,10 +19,10 @@ - type: ActivatableUIRequiresPower - type: UserInterface interfaces: - - key: enum.DiskConsoleUiKey.Key - type: DiskConsoleBoundUserInterface - - key: enum.ResearchClientUiKey.Key - type: ResearchClientBoundUserInterface + enum.DiskConsoleUiKey.Key: + type: DiskConsoleBoundUserInterface + enum.ResearchClientUiKey.Key: + type: ResearchClientBoundUserInterface - type: ExtensionCableReceiver - type: Computer board: TechDiskComputerCircuitboard diff --git a/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml b/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml index 6ac969171e..4cb76ea4b9 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Medical/cryo_pod.yml @@ -89,9 +89,9 @@ scanDelay: 0 - type: UserInterface interfaces: - - key: enum.HealthAnalyzerUiKey.Key + enum.HealthAnalyzerUiKey.Key: type: HealthAnalyzerBoundUserInterface - - key: enum.WiresUiKey.Key + enum.WiresUiKey.Key: type: WiresBoundUserInterface - type: ActivatableUI key: enum.HealthAnalyzerUiKey.Key diff --git a/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml b/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml index ab09a03fef..09ee110054 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml @@ -27,8 +27,8 @@ - type: ActivatableUIRequiresPower - type: UserInterface interfaces: - - key: enum.ResearchClientUiKey.Key - type: ResearchClientBoundUserInterface + enum.ResearchClientUiKey.Key: + type: ResearchClientBoundUserInterface - type: Machine board: AnomalyVesselCircuitboard - type: PointLight @@ -176,8 +176,8 @@ SetParticleZeta: AnomalousParticleZeta SetParticleSigma: AnomalousParticleSigma fireBurstSize: 1 - fireBurstDelayMin: 2 - fireBurstDelayMax: 6 + baseFireBurstDelayMin: 2 + baseFireBurstDelayMax: 6 - type: ApcPowerReceiver powerLoad: 100 - type: GuideHelp @@ -298,8 +298,8 @@ - type: ActivatableUIRequiresPower - type: UserInterface interfaces: - - key: enum.AnomalyGeneratorUiKey.Key - type: AnomalyGeneratorBoundUserInterface + enum.AnomalyGeneratorUiKey.Key: + type: AnomalyGeneratorBoundUserInterface - type: Appearance - type: ActiveRadio channels: diff --git a/Resources/Prototypes/Entities/Structures/Machines/anomaly_sync.yml b/Resources/Prototypes/Entities/Structures/Machines/anomaly_sync.yml index 3019b8adf8..eeaae611c3 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/anomaly_sync.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/anomaly_sync.yml @@ -41,7 +41,7 @@ bounds: "-0.35,-0.35,0.35,0.35" density: 100 mask: - - ItemMask + - ItemMask hard: True - type: Transform anchored: true @@ -49,6 +49,9 @@ - type: ApcPowerReceiver powerLoad: 2500 needsPower: true + - type: UpgradePowerDraw + powerDrawMultiplier: 0.80 + scaling: Exponential - type: ItemPlacer whitelist: components: diff --git a/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml b/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml index 18999a6ab2..747b927e2f 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml @@ -44,6 +44,7 @@ powerLoad: 12000 needsPower: false #only turns on when scanning - type: ArtifactAnalyzer + - type: TraversalDistorter - type: ItemPlacer whitelist: components: @@ -107,6 +108,9 @@ hard: False - type: Transform noRot: false + - type: UpgradePowerDraw + powerDrawMultiplier: 0.80 + scaling: Exponential - type: TraversalDistorter - type: ItemPlacer # don't limit the number of artifacts that can be biased diff --git a/Resources/Prototypes/Entities/Structures/Machines/bombs.yml b/Resources/Prototypes/Entities/Structures/Machines/bombs.yml index 89cadab6b1..88e650068e 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/bombs.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/bombs.yml @@ -10,7 +10,7 @@ - type: InteractionOutline - type: UserInterface interfaces: - - key: enum.WiresUiKey.Key + enum.WiresUiKey.Key: type: WiresBoundUserInterface - type: Wires layoutId: Defusable diff --git a/Resources/Prototypes/Entities/Structures/Machines/chem_master.yml b/Resources/Prototypes/Entities/Structures/Machines/chem_master.yml index aee1246021..4e565054b4 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/chem_master.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/chem_master.yml @@ -50,8 +50,8 @@ - type: ActivatableUIRequiresPower - type: UserInterface interfaces: - - key: enum.ChemMasterUiKey.Key - type: ChemMasterBoundUserInterface + enum.ChemMasterUiKey.Key: + type: ChemMasterBoundUserInterface - type: ApcPowerReceiver powerLoad: 250 - type: Appearance diff --git a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml index e8439f8213..c9b2045bac 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity parent: BaseMachinePowered id: FaxMachineBase name: long range fax machine @@ -9,7 +9,7 @@ drawdepth: SmallObjects layers: - state: icon - map: ["base"] + map: [ "enum.FaxMachineVisuals.VisualState" ] - type: Icon sprite: Structures/Machines/fax_machine.rsi state: icon @@ -32,30 +32,34 @@ - type: ActivatableUIRequiresPower - type: UserInterface interfaces: - - key: enum.FaxUiKey.Key - type: FaxBoundUi + enum.FaxUiKey.Key: + type: FaxBoundUi - type: ApcPowerReceiver powerLoad: 250 + - type: Faxecute + damage: + types: + Blunt: 100 - type: FaxMachine paperSlot: insertSound: /Audio/Machines/scanning.ogg ejectSound: /Audio/Machines/tray_eject.ogg whitelist: components: - - Paper + - FaxableObject blacklist: tags: - - PaperSlip # DeltaV - Prevent the faxing of paper slips. + - PaperSlip - type: GenericVisualizer visuals: enum.PowerDeviceVisuals.Powered: - base: + enum.FaxMachineVisuals.VisualState: True: { state: idle } False: { state: icon } enum.FaxMachineVisuals.VisualState: - base: - Inserting: { state: inserting } + enum.FaxMachineVisuals.VisualState: Printing: { state: printing } + Normal: {state: idle} - type: ItemSlots - type: ContainerContainer containers: @@ -112,4 +116,3 @@ receiveStationGoal: true - type: StealTarget stealGroup: FaxMachineCaptain - diff --git a/Resources/Prototypes/Entities/Structures/Machines/flatpacker.yml b/Resources/Prototypes/Entities/Structures/Machines/flatpacker.yml index 3244789a02..b4f05cf68a 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/flatpacker.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/flatpacker.yml @@ -58,8 +58,8 @@ - type: ActivatableUIRequiresPower - type: UserInterface interfaces: - - key: enum.FlatpackCreatorUIKey.Key - type: FlatpackCreatorBoundUserInterface + enum.FlatpackCreatorUIKey.Key: + type: FlatpackCreatorBoundUserInterface - type: ItemSlots slots: board_slot: diff --git a/Resources/Prototypes/Entities/Structures/Machines/gateway.yml b/Resources/Prototypes/Entities/Structures/Machines/gateway.yml index b6ad9db356..dd01adf6d5 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/gateway.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/gateway.yml @@ -52,6 +52,6 @@ key: enum.GatewayUiKey.Key - type: UserInterface interfaces: - - key: enum.GatewayUiKey.Key - type: GatewayBoundUserInterface + enum.GatewayUiKey.Key: + type: GatewayBoundUserInterface - type: Gateway diff --git a/Resources/Prototypes/Entities/Structures/Machines/gravity_generator.yml b/Resources/Prototypes/Entities/Structures/Machines/gravity_generator.yml index 618538dccb..6ee454c6a9 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/gravity_generator.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/gravity_generator.yml @@ -62,8 +62,8 @@ on: "on" - type: UserInterface interfaces: - - key: enum.GravityGeneratorUiKey.Key - type: GravityGeneratorBoundUserInterface + enum.GravityGeneratorUiKey.Key: + type: GravityGeneratorBoundUserInterface - type: Appearance - type: PointLight radius: 2.5 diff --git a/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml b/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml index 3764f13591..003916ce94 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml @@ -43,7 +43,7 @@ map: ["enum.SolutionHeaterVisuals.IsOn"] shader: unshaded - type: SolutionHeater - heatPerSecond: 160 + baseHeatPerSecond: 160 - type: ItemPlacer whitelist: components: diff --git a/Resources/Prototypes/Entities/Structures/Machines/jukebox.yml b/Resources/Prototypes/Entities/Structures/Machines/jukebox.yml index 76b8ddd36b..acd8527dbb 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/jukebox.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/jukebox.yml @@ -26,8 +26,8 @@ - type: ActivatableUIRequiresPower - type: UserInterface interfaces: - - key: enum.JukeboxUiKey.Key - type: JukeboxBoundUserInterface + enum.JukeboxUiKey.Key: + type: JukeboxBoundUserInterface - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 737e56f310..f4664a5b74 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -38,10 +38,10 @@ - type: ActivatableUIRequiresPower - type: UserInterface interfaces: - - key: enum.LatheUiKey.Key - type: LatheBoundUserInterface - - key: enum.ResearchClientUiKey.Key - type: ResearchClientBoundUserInterface + enum.LatheUiKey.Key: + type: LatheBoundUserInterface + enum.ResearchClientUiKey.Key: + type: ResearchClientBoundUserInterface - type: Transform anchored: true - type: Pullable @@ -50,11 +50,46 @@ - type: ResearchClient - type: TechnologyDatabase +# a lathe that can be sped up with space lube / slowed down with glue - type: entity - id: Autolathe + abstract: true parent: BaseLathe + id: BaseLatheLube + components: + - type: ReagentSpeed + solution: lube + modifiers: + SpaceLube: 0.25 + SpaceGlue: 5 + - type: SolutionContainerManager + solutions: + lube: + maxVol: 250 + - type: Spillable + solution: lube + - type: RefillableSolution + solution: lube + - type: ExaminableSolution + solution: lube + +- type: entity + abstract: true + id: BaseHyperlathe + components: + - type: Lathe + materialUseMultiplier: 0.5 + timeMultiplier: 1.5 + - type: LatheHeatProducing + - type: ReagentSpeed + modifiers: + SpaceLube: 0.8 # being faster means less heat so lube needs to be nerfed + SpaceGlue: 5 # no change from normal lathe, overheat!!! + +- type: entity + id: Autolathe + parent: BaseLatheLube name: autolathe - description: It produces items using metal and glass. + description: It produces basic items using metal and glass. components: - type: Sprite sprite: Structures/Machines/autolathe.rsi @@ -121,6 +156,7 @@ - DrinkGlass - DrinkShotGlass - DrinkGlassCoupeShaped + - CustomDrinkJug - FoodPlate - FoodPlateSmall - FoodPlatePlastic @@ -162,88 +198,46 @@ - ClothingHeadHatWelding - type: EmagLatheRecipes emagStaticRecipes: - - CartridgePistol - - CartridgeMagnum - - ShellShotgun - - ShellShotgunFlare - - ShellTranquilizer - - CartridgeLightRifle - - CartridgeRifle - - CombatKnife - - MagazineBoxPistol - - MagazineBoxMagnum - - MagazineBoxRifle - - MagazineBoxLightRifle - - GrenadeBlast - # DeltaV - .38 special ammo - Add .38 special lethals to emagged autolathe - - CartridgeSpecial - - MagazineBoxSpecial - # End of modified code - emagDynamicRecipes: - - CartridgePistolRubber - - CartridgeMagnumRubber - - ShellShotgunBeanbag - - CartridgeRifleRubber - - CartridgeLightRifleRubber - - MagazineBoxPistolRubber - - MagazineBoxMagnumRubber - - MagazineBoxRifleRubber - - MagazineBoxLightRifleRubber - - ShellShotgunIncendiary - - CartridgePistolIncendiary - - CartridgeMagnumIncendiary - - CartridgeLightRifleIncendiary - - CartridgeRifleIncendiary - - MagazineBoxPistolIncendiary - - MagazineBoxMagnumIncendiary - - MagazineBoxLightRifleIncendiary - - MagazineBoxRifleIncendiary - - ShellShotgunUranium - - CartridgePistolUranium - - CartridgeMagnumUranium - - CartridgeLightRifleUranium - - CartridgeRifleUranium - - MagazineBoxPistolUranium - - MagazineBoxMagnumUranium - - MagazineBoxLightRifleUranium - - MagazineBoxRifleUranium - - PowerCageSmall - - PowerCageMedium - - PowerCageHigh - - MagazineGrenadeEmpty - - GrenadeEMP - - GrenadeFlash - # DeltaV - .38 special ammo - Add various .38 special ammo to emagged autolathe - - CartridgeSpecialRubber - - CartridgeSpecialIncendiary - - CartridgeSpecialUranium - - CartridgeSpecialMindbreaker - - MagazineBoxSpecialRubber - - MagazineBoxSpecialIncendiary - - MagazineBoxSpecialUranium - - MagazineBoxSpecialMindbreaker - # End of modified code + - BoxLethalshot + - BoxShotgunFlare + - BoxShotgunSlug + - MagazineBoxLightRifle + - MagazineBoxMagnum + - MagazineBoxPistol + - MagazineBoxRifle + - MagazineLightRifle + - MagazineLightRifleEmpty + - MagazinePistol + - MagazinePistolEmpty + - MagazinePistolSubMachineGun + - MagazinePistolSubMachineGunEmpty + - MagazinePistolSubMachineGunTopMounted + - MagazinePistolSubMachineGunTopMountedEmpty + - MagazineRifle + - MagazineRifleEmpty + - MagazineShotgun + - MagazineShotgunEmpty + - MagazineShotgunSlug + - RiotShield + - SpeedLoaderMagnum + - SpeedLoaderMagnumEmpty - type: entity id: AutolatheHyperConvection - parent: Autolathe + parent: [Autolathe, BaseHyperlathe] name: hyper convection autolathe description: A highly-experimental autolathe that harnesses the power of extreme heat to slowly create objects more cost-effectively. components: - type: Sprite sprite: Structures/Machines/autolathe_hypercon.rsi - - type: Lathe - materialUseMultiplier: 0.5 - timeMultiplier: 1.5 - - type: LatheHeatProducing - type: Machine board: AutolatheHyperConvectionMachineCircuitboard - type: entity id: Protolathe - parent: BaseLathe + parent: BaseLatheLube name: protolathe - description: Converts raw materials into useful objects. + description: Converts raw materials into advanced items. components: - type: Sprite sprite: Structures/Machines/protolathe.rsi @@ -294,6 +288,15 @@ - Implanter - PillCanister - ChemistryEmptyBottle01 + - AdvancedCapacitorStockPart + - AdvancedMatterBinStockPart + - NanoManipulatorStockPart + - SuperCapacitorStockPart + - SuperMatterBinStockPart + - PicoManipulatorStockPart + - BluespaceCapacitorStockPart + - BluespaceManipulatorStockPart + - BluespaceMatterBinStockPart - AdvMopItem - WeaponSprayNozzle - ClothingBackpackWaterTank @@ -310,6 +313,7 @@ - PowerCellMicroreactor - PowerCellHigh - WeaponPistolCHIMP + - ClothingMaskWeldingGas - WeaponGauntletGorilla - SynthesizerInstrument - RPED @@ -319,11 +323,11 @@ - HolofanProjector - BluespaceBeaker - SyringeBluespace - #- WeaponForceGun + - WeaponForceGun - WeaponLaserSvalinn - WeaponProtoKineticAccelerator - #- WeaponTetherGun - #- WeaponGrapplingGun + - WeaponTetherGun + - WeaponGrapplingGun - ClothingBackpackHolding - ClothingBackpackSatchelHolding - ClothingBackpackDuffelHolding @@ -355,12 +359,52 @@ - AnimalTranslator - MofficTranslatorImplanter - MofficTranslator + # WD EDIT START + - ClothingEyesNightVisionGoggles + - ClothingEyesThermalVisionGoggles + # WD EDIT END + - RCDAmmo #DeltaV + - RCD #EE - type: EmagLatheRecipes emagDynamicRecipes: + - BoxBeanbag + - BoxShotgunIncendiary + - BoxShotgunUranium - ExplosivePayload - - WeaponLaserCarbine + - GrenadeBlast + - GrenadeEMP + - GrenadeFlash + - HoloprojectorSecurity + - MagazineBoxLightRifleIncendiary + - MagazineBoxLightRifleUranium + - MagazineBoxMagnumIncendiary + - MagazineBoxMagnumUranium + - MagazineBoxPistolIncendiary + - MagazineBoxPistolUranium + - MagazineBoxRifleIncendiary + - MagazineBoxRifleUranium + - MagazineGrenadeEmpty + - MagazineLightRifleIncendiary + - MagazineLightRifleUranium + - MagazinePistolIncendiary + - MagazinePistolUranium + - MagazineRifleIncendiary + - MagazineRifleUranium + - MagazineShotgunBeanbag + - MagazineShotgunIncendiary + - MagazineShotgunIncendiary + - PortableRecharger + - PowerCageHigh + - PowerCageMedium + - PowerCageSmall + - ShellTranquilizer + - SpeedLoaderMagnumIncendiary + - SpeedLoaderMagnumUranium + - TelescopicShield + - Truncheon - WeaponAdvancedLaser - WeaponLaserCannon + - WeaponLaserCarbine - WeaponXrayCannon - WeaponEnergyGun # DeltaV - Energy Gun - WeaponEnergyGunMini # DeltaV - Miniature Energy Gun @@ -369,22 +413,18 @@ - type: entity id: ProtolatheHyperConvection - parent: Protolathe + parent: [Protolathe, BaseHyperlathe] name: hyper convection protolathe description: A highly-experimental protolathe that harnesses the power of extreme heat to slowly create objects more cost-effectively. components: - type: Sprite sprite: Structures/Machines/protolathe_hypercon.rsi - - type: Lathe - materialUseMultiplier: 0.5 - timeMultiplier: 1.5 - - type: LatheHeatProducing - type: Machine board: ProtolatheHyperConvectionMachineCircuitboard - type: entity id: CircuitImprinter - parent: BaseLathe + parent: BaseLatheLube name: circuit imprinter description: Prints circuit boards for machines. components: @@ -453,6 +493,7 @@ - PowerComputerCircuitboard - AutolatheHyperConvectionMachineCircuitboard - ProtolatheHyperConvectionMachineCircuitboard + - CircuitImprinterHyperConvectionMachineCircuitboard - FatExtractorMachineCircuitboard - FlatpackerMachineCircuitboard - SheetifierMachineCircuitboard @@ -492,12 +533,10 @@ - AnomalySynchronizerCircuitboard - APECircuitboard - ArtifactAnalyzerMachineCircuitboard - - TraversalDistorterMachineCircuitboard - ArtifactCrusherMachineCircuitboard - TelecomServerCircuitboard - MassMediaCircuitboard - ReagentGrinderIndustrialMachineCircuitboard - # Begin Nyano additions - ReverseEngineeringMachineCircuitboard - CrewMonitoringComputerCircuitboard - DoorElectronics @@ -508,8 +547,14 @@ - SalvageMagnetMachineCircuitboard - StationMapElectronics - MetempsychoticMachineCircuitboard - # End Nyano additions - - SalvageExpeditionsComputerCircuitboard # DeltaV + - SalvageExpeditionsComputerCircuitboard + - JukeboxCircuitBoard + - type: EmagLatheRecipes + emagDynamicRecipes: + - ShuttleGunDusterCircuitboard + - ShuttleGunFriendshipCircuitboard + - ShuttleGunPerforatorCircuitboard + - ShuttleGunSvalinnMachineGunCircuitboard - type: MaterialStorage whitelist: tags: @@ -518,9 +563,20 @@ - Ingot - type: RequireProjectileTarget +- type: entity + id: CircuitImprinterHyperConvection + parent: [CircuitImprinter, BaseHyperlathe] + name: hyper convection circuit imprinter + description: A highly-experimental circuit imprinter that harnesses the power of extreme heat to slowly create objects more cost-effectively. + components: + - type: Sprite + sprite: Structures/Machines/circuit_imprinter_hypercon.rsi + - type: Machine + board: CircuitImprinterHyperConvectionMachineCircuitboard + - type: entity id: ExosuitFabricator - parent: BaseLathe + parent: BaseLatheLube name: exosuit fabricator description: Creates parts for robotics and other mechanical needs components: @@ -591,7 +647,7 @@ - BorgModuleLightReplacer - BorgModuleAdvancedCleaning - BorgModuleMining - #- BorgModuleGrapplingGun + - BorgModuleGrapplingGun - BorgModuleAdvancedTool - BorgModuleGPS - BorgModuleRCD @@ -626,8 +682,6 @@ - HamtrRLeg - VimHarness # Begin Nyano additions - - ClothingOuterHardsuitJuggernautReverseEngineered - - ClothingOuterHardsuitSyndieReverseEngineered - JetpackBlue - JetpackMini # End Nyano additions @@ -686,7 +740,7 @@ - type: entity id: SecurityTechFab - parent: BaseLathe + parent: BaseLatheLube name: security techfab description: Prints equipment for use by security crew. components: @@ -709,49 +763,62 @@ idleState: icon runningState: icon staticRecipes: + - BoxLethalshot + - BoxShotgunFlare + - BoxShotgunPractice + - BoxShotgunSlug - ClothingEyesHudSecurity - CombatKnife - Flash - - Handcuffs - - Zipties - - Stunbaton - ForensicPad - - RiotShield + - Handcuffs - ShellShotgun - ShellShotgunSlug - ShellShotgunFlare - ShellTranquilizer + - MagazineBoxLightRifle + - MagazineBoxLightRiflePractice + - MagazineBoxMagnum + - MagazineBoxMagnumPractice + - MagazineBoxPistol + - MagazineBoxPistolPractice + - MagazineBoxRifle + - MagazineBoxRiflePractice + - MagazineLightRifle + - MagazineLightRifleEmpty - MagazinePistol + - MagazinePistolEmpty - MagazinePistolSubMachineGun + - MagazinePistolSubMachineGunEmpty - MagazinePistolSubMachineGunTopMounted + - MagazinePistolSubMachineGunTopMountedEmpty - MagazineRifle - - MagazineLightRifle - - MagazineBoxPistol - - MagazineBoxMagnum - - MagazineBoxRifle - - MagazineBoxLightRifle + - MagazineRifleEmpty + - MagazineShotgun + - MagazineShotgunEmpty + - MagazineShotgunSlug + - RiotShield - SpeedLoaderMagnum - - ClothingOuterArmorPlateCarrier # DeltaV - plate carrier body armour - - ClothingOuterArmorDuraVest # DeltaV - stabproof vest body armour + - SpeedLoaderMagnumEmpty + - Stunbaton + - TargetClown + - ClothingOuterArmorPlateCarrier + - ClothingOuterArmorDuraVest - TargetHuman - TargetSyndicate - - TargetClown - - MagazineBoxLightRiflePractice - - MagazineBoxMagnumPractice - - MagazineBoxPistolPractice - - MagazineBoxRiflePractice - - ShellShotgunPractice - - WeaponLaserCarbinePractice - WeaponDisablerPractice + - WeaponLaserCarbinePractice + - Zipties - ShockCollar - # DeltaV - .38 special ammo - Add various .38 special ammo to security techfab - MagazineBoxSpecial - MagazineBoxSpecialPractice - SpeedLoaderSpecial - MagazinePistolSpecial - # End of modified code dynamicRecipes: - - EncryptionKeySyndie # Nyano + - BoxBeanbag + - BoxShotgunIncendiary + - BoxShotgunUranium + - EncryptionKeySyndie - CartridgeLightRifleIncendiary - CartridgeMagnumIncendiary - CartridgePistolIncendiary @@ -767,34 +834,51 @@ - ClothingEyesGlassesSecurity - ExplosivePayload - FlashPayload + - GrenadeBlast + - GrenadeEMP + - GrenadeFlash - HoloprojectorSecurity - MagazineBoxLightRifleIncendiary - - MagazineBoxMagnumIncendiary - - MagazineBoxPistolIncendiary - - MagazineBoxRifleIncendiary - MagazineBoxLightRifleUranium + - MagazineBoxMagnumIncendiary - MagazineBoxMagnumUranium + - MagazineBoxPistolIncendiary - MagazineBoxPistolUranium + - MagazineBoxRifleIncendiary - MagazineBoxRifleUranium - - ShellSoulbreaker # Nyanotrasen - Shotgun shell to get rid of psionics + - ShellSoulbreaker - MagazineBoxLightRifleRubber - MagazineBoxMagnumRubber - MagazineBoxPistolRubber - MagazineBoxRifleRubber - MagazineGrenadeEmpty - - GrenadeEMP - - GrenadeFlash - - ShellShotgunBeanbag - - ShellShotgunIncendiary - - ShellShotgunUranium + - MagazineLightRifleIncendiary + - MagazineLightRifleUranium + - MagazinePistolIncendiary + - MagazinePistolUranium + - MagazineRifleIncendiary + - MagazineRifleUranium + - MagazineShotgunBeanbag + - MagazineShotgunIncendiary + - PortableRecharger + - PowerCageHigh + - PowerCageMedium + - PowerCageSmall + - ShellTranquilizer + - ShuttleGunDusterCircuitboard + - ShuttleGunFriendshipCircuitboard + - ShuttleGunPerforatorCircuitboard + - ShuttleGunSvalinnMachineGunCircuitboard - Signaller - SignalTrigger + - SpeedLoaderMagnumIncendiary + - SpeedLoaderMagnumUranium - TelescopicShield - TimerTrigger - Truncheon - VoiceTrigger - - WeaponDisablerPractice - WeaponAdvancedLaser + - WeaponDisabler - WeaponDisablerSMG - WeaponLaserCannon - WeaponLaserCarbine @@ -802,18 +886,10 @@ - ClothingHeadCage # Nyanotrasen - Insulative headgear - ShockCollar # Nyanotrasen - Shock Collar - WeaponXrayCannon - - PowerCageSmall - - PowerCageMedium - - PowerCageHigh - - ShuttleGunSvalinnMachineGunCircuitboard - - ShuttleGunPerforatorCircuitboard - - ShuttleGunFriendshipCircuitboard - - ShuttleGunDusterCircuitboard - - WeaponEnergyGun #DeltaV - Energy Gun - - WeaponEnergyGunMini #DeltaV - Energy Gun but miniature - - WeaponEnergyGunPistol #DeltaV - Energy Gun Mini but with the power of a normal energy gun - - WeaponGunLaserCarbineAutomatic #DeltaV - New Laser Projectiles with a 20 round carbine - # DeltaV - .38 special ammo - Add various .38 special ammo to security techfab + - WeaponEnergyGun + - WeaponEnergyGunMini + - WeaponEnergyGunPistol + - WeaponGunLaserCarbineAutomatic - CartridgeSpecialRubber - CartridgeSpecialIncendiary - CartridgeSpecialUranium @@ -823,7 +899,6 @@ - MagazineBoxSpecialIncendiary - MagazineBoxSpecialUranium - MagazineBoxSpecialMindbreaker - # End of modified code - type: MaterialStorage whitelist: tags: @@ -833,7 +908,7 @@ - type: entity id: AmmoTechFab - parent: BaseLathe + parent: BaseLatheLube name: ammo techfab description: Prints the bare minimum of bullets that any budget military or armory could need. Nothing fancy. components: @@ -856,22 +931,27 @@ idleState: icon runningState: icon staticRecipes: - - CartridgePistol - - CartridgeMagnum - - ShellShotgun - - ShellShotgunSlug - - ShellShotgunFlare - - ShellTranquilizer - - CartridgeLightRifle - - CartridgeRifle - - MagazineBoxPistol + - BoxLethalshot + - BoxShotgunFlare + - BoxShotgunSlug + - MagazineBoxLightRifle - MagazineBoxMagnum + - MagazineBoxPistol - MagazineBoxRifle - - MagazineBoxLightRifle - # DeltaV - .38 special ammo - Add lethal .38 special ammo to ammo techfab + - MagazineLightRifle + - MagazineLightRifleEmpty + - MagazinePistol + - MagazinePistolEmpty + - MagazineRifle + - MagazineRifleEmpty + - MagazineShotgun + - MagazineShotgunEmpty + - MagazineShotgunSlug + - ShellTranquilizer + - SpeedLoaderMagnum + - SpeedLoaderMagnumEmpty - CartridgeSpecial - MagazineBoxSpecial - # End of modified code - type: MaterialStorage whitelist: tags: @@ -881,7 +961,7 @@ - type: entity id: MedicalTechFab - parent: BaseLathe + parent: BaseLatheLube name: medical techfab description: Prints equipment for use by the medbay. components: @@ -1089,7 +1169,8 @@ - ClothingOuterWinterCE - ClothingOuterWinterCMO - ClothingOuterWinterHoP - - ClothingOuterWinterHoS + - ClothingOuterWinterHoSUnarmored + - ClothingOuterWinterWardenUnarmored - ClothingOuterWinterQM - ClothingOuterWinterRD - ClothingNeckMantleCap @@ -1203,7 +1284,8 @@ idleState: icon runningState: building staticRecipes: - - BluespaceCrystal #Nyano - Summary: Bluespace Crystals can be created here. + - BluespaceCrystal + - NormalityCrystal - SheetSteel30 - SheetGlass30 - SheetRGlass30 @@ -1233,6 +1315,8 @@ materialUseMultiplier: 0.75 timeMultiplier: 0.5 staticRecipes: + - BluespaceCrystal + - NormalityCrystal - SheetSteel30 - SheetGlass30 - SheetRGlass30 @@ -1294,7 +1378,6 @@ - type: LitOnPowered - type: ApcPowerReceiver powerLoad: 200 - priority: Low # - type: Advertise # pack: CuddlyCritterAds # TODO Change this - type: PointLight diff --git a/Resources/Prototypes/Entities/Structures/Machines/microwave.yml b/Resources/Prototypes/Entities/Structures/Machines/microwave.yml index 55dfe296a6..994269f71b 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/microwave.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/microwave.yml @@ -44,8 +44,8 @@ range: 200 - type: UserInterface interfaces: - - key: enum.MicrowaveUiKey.Key - type: MicrowaveBoundUserInterface + enum.MicrowaveUiKey.Key: + type: MicrowaveBoundUserInterface - type: Physics - type: Fixtures fixtures: diff --git a/Resources/Prototypes/Entities/Structures/Machines/nuke.yml b/Resources/Prototypes/Entities/Structures/Machines/nuke.yml index f37c42e474..bc4581d7b6 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/nuke.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/nuke.yml @@ -88,8 +88,8 @@ key: enum.NukeUiKey.Key - type: UserInterface interfaces: - - key: enum.NukeUiKey.Key - type: NukeBoundUserInterface + enum.NukeUiKey.Key: + type: NukeBoundUserInterface - type: StaticPrice price: 50000 # YOU STOLE A NUCLEAR FISSION EXPLOSIVE?! - type: CargoSellBlacklist diff --git a/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml b/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml index 80bfb465ff..28aa464d21 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml @@ -12,8 +12,8 @@ key: enum.ReagentGrinderUiKey.Key - type: UserInterface interfaces: - - key: enum.ReagentGrinderUiKey.Key - type: ReagentGrinderBoundUserInterface + enum.ReagentGrinderUiKey.Key: + type: ReagentGrinderBoundUserInterface - type: Appearance - type: GenericVisualizer visuals: @@ -101,4 +101,4 @@ - type: DrainableSolution solution: output - type: ExaminableSolution - solution: output \ No newline at end of file + solution: output diff --git a/Resources/Prototypes/Entities/Structures/Machines/research.yml b/Resources/Prototypes/Entities/Structures/Machines/research.yml index 948b3f84b2..498759df3c 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/research.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/research.yml @@ -83,8 +83,8 @@ - type: ActivatableUIRequiresPower - type: UserInterface interfaces: - - key: enum.ResearchClientUiKey.Key - type: ResearchClientBoundUserInterface + enum.ResearchClientUiKey.Key: + type: ResearchClientBoundUserInterface - type: Appearance - type: GenericVisualizer visuals: diff --git a/Resources/Prototypes/Entities/Structures/Machines/salvage.yml b/Resources/Prototypes/Entities/Structures/Machines/salvage.yml index 859dc85ff1..6a2f6c810c 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/salvage.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/salvage.yml @@ -28,8 +28,8 @@ - type: ActivatableUIRequiresPower - type: UserInterface interfaces: - - key: enum.SalvageMagnetUiKey.Key - type: SalvageMagnetBoundUserInterface + enum.SalvageMagnetUiKey.Key: + type: SalvageMagnetBoundUserInterface - type: Transform noRot: false - type: Appearance diff --git a/Resources/Prototypes/Entities/Structures/Machines/seed_extractor.yml b/Resources/Prototypes/Entities/Structures/Machines/seed_extractor.yml index ec07294bfb..4ecd1c29e2 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/seed_extractor.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/seed_extractor.yml @@ -35,3 +35,6 @@ - type: SeedExtractor - type: Machine board: SeedExtractorMachineCircuitboard + - type: UpgradePowerDraw + powerDrawMultiplier: 0.75 + scaling: Exponential diff --git a/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml b/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml index e359db813f..7b342def54 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml @@ -13,7 +13,7 @@ - type: DeviceNetworkRequiresPower - type: UserInterface interfaces: - - key: enum.SurveillanceCameraSetupUiKey.Router + enum.SurveillanceCameraSetupUiKey.Router: type: SurveillanceCameraSetupBoundUi - type: Machine board: SurveillanceCameraRouterCircuitboard @@ -118,7 +118,7 @@ - type: DeviceNetworkRequiresPower - type: UserInterface interfaces: - - key: enum.SurveillanceCameraSetupUiKey.Router + enum.SurveillanceCameraSetupUiKey.Router: type: SurveillanceCameraSetupBoundUi - type: Machine board: SurveillanceCameraWirelessRouterCircuitboard diff --git a/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml b/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml index 2a7d827522..13fdb7e80d 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml @@ -67,7 +67,7 @@ - type: entity parent: TelecomServer id: TelecomServerFilled - suffix: Filled + suffix: Filled All components: - type: ContainerFill containers: diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index 02cdd80af3..e98b40b9a0 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -60,10 +60,10 @@ - type: ActivatableUIRequiresPower - type: UserInterface interfaces: - - key: enum.VendingMachineUiKey.Key - type: VendingMachineBoundUserInterface - - key: enum.WiresUiKey.Key - type: WiresBoundUserInterface + enum.VendingMachineUiKey.Key: + type: VendingMachineBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: WiresPanel - type: Wires boardName: wires-board-name-vendingmachine @@ -105,10 +105,10 @@ - type: WiresVisuals - type: LanguageKnowledge speaks: - - GalacticCommon + - TauCetiBasic - RobotTalk understands: - - GalacticCommon + - TauCetiBasic - RobotTalk - type: VendingMachine soundVend: /Audio/SimpleStation14/Machines/machine_vend.ogg @@ -1905,7 +1905,7 @@ - state: panel map: ["enum.WiresVisualLayers.MaintenancePanel"] - type: AccessReader - access: [["Service"]] + access: [["Library"]] - type: entity parent: VendingMachine diff --git a/Resources/Prototypes/Entities/Structures/Machines/wireless_surveillance_camera.yml b/Resources/Prototypes/Entities/Structures/Machines/wireless_surveillance_camera.yml index 0a14517771..95079b5c85 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/wireless_surveillance_camera.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/wireless_surveillance_camera.yml @@ -35,7 +35,7 @@ range: 10 - type: UserInterface interfaces: - - key: enum.SurveillanceCameraSetupUiKey.Camera + enum.SurveillanceCameraSetupUiKey.Camera: type: SurveillanceCameraSetupBoundUi placement: mode: SnapgridCenter diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml index 38fb6282d7..ea7d1ddfa1 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml @@ -51,8 +51,8 @@ enabled: false - type: UserInterface interfaces: - - key: enum.GasPressurePumpUiKey.Key - type: GasPressurePumpBoundUserInterface + enum.GasPressurePumpUiKey.Key: + type: GasPressurePumpBoundUserInterface - type: Construction graph: GasBinary node: pressurepump @@ -92,7 +92,7 @@ enabled: false - type: UserInterface interfaces: - - key: enum.GasVolumePumpUiKey.Key + enum.GasVolumePumpUiKey.Key: type: GasVolumePumpBoundUserInterface - type: Construction graph: GasBinary @@ -286,7 +286,7 @@ components: - type: Sprite drawdepth: FloorObjects - sprite: _White/Structures/Piping/Atmospherics/vent.rsi #WWDP edit + sprite: Structures/Piping/Atmospherics/vent.rsi layers: - sprite: Structures/Piping/Atmospherics/pipe.rsi state: pipeStraight diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml index e5b77095b0..0025fc5ae1 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity abstract: true id: GasPipeBase parent: BaseItem @@ -101,6 +101,20 @@ - type: Construction graph: GasPipe node: straight + - type: Item + size: Normal + storedSprite: + sprite: Structures/Piping/Atmospherics/pipe.rsi + state: storageStraight + shape: + - 0,0,0,2 + - type: MeleeWeapon + attackRate: 1 + damage: + types: + Blunt: 8 + soundHit: + collection: MetalThud # this NEEDS to changed to the metal pipe falling sound effect on april first every year - type: entity parent: GasPipeBase @@ -120,6 +134,27 @@ - type: Construction graph: GasPipe node: bend + - type: Item + size: Small + shape: + - 0,0,1,0 + - 1,1,1,1 + heldPrefix: Bend + storedSprite: + sprite: Structures/Piping/Atmospherics/pipe.rsi + state: storageBend + - type: MeleeWeapon + wideAnimationRotation: 180 + attackRate: 1 + damage: + types: + Blunt: 6 + soundHit: + collection: MetalThud + - type: DamageOtherOnHit + damage: + types: + Blunt: 3 #This should be 6 but throwing damage is doubled at the moment for some reason so for now it's 3 - type: entity parent: GasPipeBase @@ -139,6 +174,23 @@ - type: Construction graph: GasPipe node: tjunction + - type: Item + size: Normal + shape: + - 0,0,2,0 + - 1,1,1,1 + heldPrefix: TJunction + storedSprite: + sprite: Structures/Piping/Atmospherics/pipe.rsi + state: storageTJunction + - type: MeleeWeapon + wideAnimationRotation: 90 + attackRate: 0.75 + damage: + types: + Blunt: 10 + soundHit: + collection: MetalThud - type: entity parent: GasPipeBase @@ -160,6 +212,20 @@ - type: Construction graph: GasPipe node: fourway + - type: Item + size: Normal + shape: + - 1,0,1,2 + - 0,1,2,1 + heldPrefix: Fourway + - type: MeleeWeapon + wideAnimationRotation: 90 + attackRate: 0.75 + damage: + types: + Blunt: 10 + soundHit: + collection: MetalThud - type: entity id: GasPipeBroken diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/portable.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/portable.yml index fdb4062ca6..87e71400f7 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/portable.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/portable.yml @@ -22,7 +22,7 @@ layer: - MachineLayer - type: Sprite - sprite: _White/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi #WWDP edit + sprite: Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi noRot: true layers: - state: icon @@ -144,8 +144,8 @@ - type: WiresVisuals - type: UserInterface interfaces: - - key: enum.SpaceHeaterUiKey.Key - type: SpaceHeaterBoundUserInterface + enum.SpaceHeaterUiKey.Key: + type: SpaceHeaterBoundUserInterface - type: ActivatableUI inHandsOnly: false key: enum.SpaceHeaterUiKey.Key diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml index d0f239b338..e8025556aa 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml @@ -53,7 +53,7 @@ - type: PipeColorVisuals - type: UserInterface interfaces: - - key: enum.GasFilterUiKey.Key + enum.GasFilterUiKey.Key: type: GasFilterBoundUserInterface - type: GasFilter enabled: false @@ -96,6 +96,9 @@ enabled: True: { state: gasFilterFOn } False: { state: gasFilterF } + - type: Construction + node: filterflipped + - type: PipeColorVisuals - type: NodeContainer nodes: @@ -138,7 +141,7 @@ - type: PipeColorVisuals - type: UserInterface interfaces: - - key: enum.GasMixerUiKey.Key + enum.GasMixerUiKey.Key: type: GasMixerBoundUserInterface - type: GasMixer enabled: false @@ -196,6 +199,8 @@ !type:PipeNode nodeGroupID: Pipe pipeDirection: North + - type: Construction + node: mixerflipped - type: entity parent: GasPipeBase diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml index a7c2a06190..7a69f4759c 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml @@ -59,7 +59,7 @@ - Unstackable - type: Sprite drawdepth: FloorObjects - sprite: _White/Structures/Piping/Atmospherics/vent.rsi #WWDP edit + sprite: Structures/Piping/Atmospherics/vent.rsi noRot: true layers: - sprite: Structures/Piping/Atmospherics/pipe.rsi @@ -101,7 +101,7 @@ # TODO ATMOS: Find sprite for this. - type: Sprite drawdepth: FloorObjects - sprite: _White/Structures/Piping/Atmospherics/vent.rsi #WWDP edit + sprite: Structures/Piping/Atmospherics/vent.rsi noRot: true layers: - sprite: Structures/Piping/Atmospherics/pipe.rsi @@ -152,7 +152,7 @@ - Unstackable - type: Sprite drawdepth: FloorObjects - sprite: _White/Structures/Piping/Atmospherics/scrubber.rsi #WWDP edit + sprite: Structures/Piping/Atmospherics/scrubber.rsi noRot: true layers: - sprite: Structures/Piping/Atmospherics/pipe.rsi @@ -242,8 +242,8 @@ - type: AtmosDevice - type: UserInterface interfaces: - - key: enum.ThermomachineUiKey.Key - type: GasThermomachineBoundUserInterface + enum.ThermomachineUiKey.Key: + type: GasThermomachineBoundUserInterface - type: ActivatableUI inHandsOnly: false key: enum.ThermomachineUiKey.Key @@ -460,7 +460,8 @@ solutions: tank: maxVol: 400 - canMix: true + - type: MixableSolution + solution: tank - type: DrainableSolution solution: tank - type: ExaminableSolution diff --git a/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml b/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml index 218b532efc..7aee589647 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml @@ -143,8 +143,8 @@ key: enum.DisposalTaggerUiKey.Key - type: UserInterface interfaces: - - key: enum.DisposalTaggerUiKey.Key - type: DisposalTaggerBoundUserInterface + enum.DisposalTaggerUiKey.Key: + type: DisposalTaggerBoundUserInterface - type: Construction graph: DisposalPipe node: tagger @@ -219,8 +219,8 @@ key: enum.DisposalRouterUiKey.Key - type: UserInterface interfaces: - - key: enum.DisposalRouterUiKey.Key - type: DisposalRouterBoundUserInterface + enum.DisposalRouterUiKey.Key: + type: DisposalRouterBoundUserInterface - type: Fixtures fixtures: fix1: @@ -271,6 +271,8 @@ bounds: "-0.25,-0.5,0.5,0.5" mask: - SubfloorMask + - type: Construction + node: routerflipped - type: entity id: DisposalJunction @@ -353,6 +355,8 @@ bounds: "-0.25,-0.5,0.5,0.5" mask: - SubfloorMask + - type: Construction + node: junctionflipped - type: entity id: DisposalYJunction @@ -489,3 +493,5 @@ pipe: Free: { state: signal-router-flipped-free } Anchored: { state: signal-router-flipped } + - type: Construction + node: signal_router_flipped diff --git a/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml b/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml index 6af72934e0..e7d3d3c997 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml @@ -9,7 +9,7 @@ - Disposal components: - type: Sprite - sprite: _White/Structures/Piping/disposal.rsi #WWDP edit + sprite: Structures/Piping/disposal.rsi layers: - state: condisposal map: [ "enum.DisposalUnitVisualLayers.Unanchored" ] @@ -56,8 +56,8 @@ - type: Appearance - type: UserInterface interfaces: - - key: enum.DisposalUnitUiKey.Key - type: DisposalUnitBoundUserInterface + enum.DisposalUnitUiKey.Key: + type: DisposalUnitBoundUserInterface - type: ContainerContainer containers: disposals: !type:Container @@ -71,16 +71,18 @@ name: disposal unit components: - type: Sprite - sprite: _White/Structures/Piping/disposal.rsi #WWDP edit + sprite: Structures/Piping/disposal.rsi snapCardinals: true - type: Construction graph: DisposalMachine node: disposal_unit - type: DisposalUnit + - type: ThrowInsertContainer + containerId: disposals - type: UserInterface interfaces: - - key: enum.DisposalUnitUiKey.Key - type: DisposalUnitBoundUserInterface + enum.DisposalUnitUiKey.Key: + type: DisposalUnitBoundUserInterface - type: RatKingRummageable - type: RequireProjectileTarget @@ -91,7 +93,7 @@ description: A pneumatic mail delivery unit. components: - type: Sprite - sprite: _White/Structures/Piping/disposal.rsi #WWDP edit + sprite: Structures/Piping/disposal.rsi snapCardinals: true layers: - state: conmailing @@ -130,7 +132,7 @@ - type: Appearance - type: UserInterface interfaces: - - key: enum.MailingUnitUiKey.Key - type: DisposalUnitBoundUserInterface - - key: enum.ConfigurationUiKey.Key - type: ConfigurationBoundUserInterface + enum.MailingUnitUiKey.Key: + type: DisposalUnitBoundUserInterface + enum.ConfigurationUiKey.Key: + type: ConfigurationBoundUserInterface 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 ca0cebffec..96392ecd00 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/control_box.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/control_box.yml @@ -17,10 +17,10 @@ - type: ActivatableUIRequiresPower - type: UserInterface interfaces: - - key: enum.ParticleAcceleratorControlBoxUiKey.Key - type: ParticleAcceleratorBoundUserInterface - - key: enum.WiresUiKey.Key - type: WiresBoundUserInterface + enum.ParticleAcceleratorControlBoxUiKey.Key: + type: ParticleAcceleratorBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: WiresPanel - type: Wires boardName: wires-board-name-pa diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml index c88adca76d..4e4ef8bdbc 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml @@ -65,8 +65,8 @@ key: enum.AmeControllerUiKey.Key - type: UserInterface interfaces: - - key: enum.AmeControllerUiKey.Key - type: AmeControllerBoundUserInterface + enum.AmeControllerUiKey.Key: + type: AmeControllerBoundUserInterface - type: Appearance - type: GenericVisualizer visuals: diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/portable_generator.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/portable_generator.yml index 4fa1bcbd91..41f336d405 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/portable_generator.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/portable_generator.yml @@ -44,7 +44,7 @@ - type: WiresPanel - type: UserInterface interfaces: - - key: enum.GeneratorComponentUiKey.Key + enum.GeneratorComponentUiKey.Key: type: PortableGeneratorBoundUserInterface - type: ActivatableUI key: enum.GeneratorComponentUiKey.Key @@ -171,6 +171,9 @@ materialWhiteList: [Plasma] - type: PortableGenerator startChance: 0.8 + - type: UpgradePowerSupplier + powerSupplyMultiplier: 1.25 + scaling: Exponential - type: GeneratorExhaustGas gasType: CarbonDioxide # 2 moles of gas for every sheet of plasma. @@ -228,6 +231,9 @@ storageLimit: 3000 materialWhiteList: [Uranium] - type: PortableGenerator + - type: UpgradePowerSupplier + powerSupplyMultiplier: 1.25 + scaling: Exponential - type: PowerMonitoringDevice group: Generator loadNodes: diff --git a/Resources/Prototypes/Entities/Structures/Power/apc.yml b/Resources/Prototypes/Entities/Structures/Power/apc.yml index d098b89e28..01147f439f 100644 --- a/Resources/Prototypes/Entities/Structures/Power/apc.yml +++ b/Resources/Prototypes/Entities/Structures/Power/apc.yml @@ -26,7 +26,7 @@ anchored: true - type: Sprite drawdepth: WallMountedItems - sprite: _White/Structures/Power/apc.rsi #WWDP edit + sprite: Structures/Power/apc.rsi layers: - state: base - state: panel @@ -70,7 +70,7 @@ sourceNode: input loadNode: output collectionName: apc - sprite: _White/Structures/Power/apc.rsi #WWDP edit + sprite: Structures/Power/apc.rsi state: static - type: BatteryCharger voltage: Medium @@ -81,8 +81,8 @@ - type: ExtensionCableProvider - type: UserInterface interfaces: - - key: enum.ApcUiKey.Key - type: ApcBoundUserInterface + enum.ApcUiKey.Key: + type: ApcBoundUserInterface - type: ActivatableUI inHandsOnly: false singleUser: true @@ -156,7 +156,7 @@ anchored: true - type: Sprite drawdepth: WallMountedItems - sprite: _White/Structures/Power/apc.rsi #WWDP edit + sprite: Structures/Power/apc.rsi state: frame - type: Construction graph: APC diff --git a/Resources/Prototypes/Entities/Structures/Power/smes.yml b/Resources/Prototypes/Entities/Structures/Power/smes.yml index 1e3559e5a9..762e8d375f 100644 --- a/Resources/Prototypes/Entities/Structures/Power/smes.yml +++ b/Resources/Prototypes/Entities/Structures/Power/smes.yml @@ -29,10 +29,15 @@ state: "smes-op1" shader: unshaded - type: Smes + - type: UpgradeBattery + maxChargeMultiplier: 2 + baseMaxCharge: 8000000 + - type: UpgradePowerSupplyRamping + scaling: Linear + supplyRampingMultiplier: 1 - type: Appearance - type: Battery startingCharge: 0 - maxCharge: 8000000 - type: ExaminableBattery - type: NodeContainer examinable: true diff --git a/Resources/Prototypes/Entities/Structures/Power/substation.yml b/Resources/Prototypes/Entities/Structures/Power/substation.yml index 347b18ecae..489cfff659 100644 --- a/Resources/Prototypes/Entities/Structures/Power/substation.yml +++ b/Resources/Prototypes/Entities/Structures/Power/substation.yml @@ -17,8 +17,13 @@ shader: unshaded - state: full shader: unshaded + - type: UpgradeBattery + maxChargeMultiplier: 2 + baseMaxCharge: 2500000 + - type: UpgradePowerSupplyRamping + scaling: Linear + supplyRampingMultiplier: 1 - type: Battery - maxCharge: 2500000 startingCharge: 0 - type: ExaminableBattery - type: PointLight diff --git a/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml b/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml index f87be42659..eb299e3f3a 100644 --- a/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml +++ b/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml @@ -143,6 +143,7 @@ - type: Thruster thrusterType: Angular requireSpace: false + baseThrust: 2000 thrust: 2000 machinePartThrust: Manipulator - type: Sprite @@ -192,6 +193,9 @@ collection: MetalBreak - !type:ChangeConstructionNodeBehavior node: machineFrame + - type: UpgradePowerDraw + powerDrawMultiplier: 0.75 + scaling: Exponential - type: Damageable damageContainer: Inorganic damageModifierSet: Electronic @@ -216,6 +220,7 @@ - type: Thruster thrusterType: Angular requireSpace: false + baseThrust: 100 thrust: 100 - type: ApcPowerReceiver needsPower: false diff --git a/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml b/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml index 64e247144d..8294586048 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml @@ -782,7 +782,6 @@ - Desoxyephedrine - Ephedrine - THC - - THCOil - SpaceDrugs - Nocturine - MuteToxin diff --git a/Resources/Prototypes/Entities/Structures/Specific/Janitor/janicart.yml b/Resources/Prototypes/Entities/Structures/Specific/Janitor/janicart.yml index 2591b3f340..9fd05beaee 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/Janitor/janicart.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/Janitor/janicart.yml @@ -313,8 +313,8 @@ fillBaseName: cart_water- - type: UserInterface interfaces: - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface - type: Drink solution: bucket - type: ContainerContainer diff --git a/Resources/Prototypes/Entities/Structures/Specific/bay12barbershop.yml b/Resources/Prototypes/Entities/Structures/Specific/bay12barbershop.yml index e66ae347d9..2b0f2a788a 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/bay12barbershop.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/bay12barbershop.yml @@ -10,7 +10,7 @@ - type: Anchorable - type: Rotatable - type: Sprite - sprite: Structures/Specific/barbershop.rsi + sprite: Structures/Specific/barberchair.rsi state: barberchair - type: entity diff --git a/Resources/Prototypes/Entities/Structures/Specific/oracle.yml b/Resources/Prototypes/Entities/Structures/Specific/oracle.yml index b60906b55e..3e2ed9508e 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/oracle.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/oracle.yml @@ -33,7 +33,6 @@ fountain: maxVol: 200 - type: Drink - isOpen: true solution: fountain - type: DrawableSolution solution: fountain @@ -59,14 +58,13 @@ rewardEntities: - OracleRewardDisks - OracleRewardCrystals - demandBlacklist: - tags: - - Bluespace - components: - - MobState - demandWhitelist: - components: - - Item + - type: LanguageSpeaker + currentLanguage: TauCetiBasic + - type: LanguageKnowledge + speaks: + - TauCetiBasic + understands: + - TauCetiBasic - type: weightedRandomEntity diff --git a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml index d84b42f6e8..1d184ad45e 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml @@ -9,7 +9,7 @@ - type: Transform noRot: true - type: Sprite - sprite: _White/Structures/Storage/canister.rsi #WWDP edit + sprite: Structures/Storage/canister.rsi noRot: true layers: - state: grey @@ -36,7 +36,7 @@ 3: { state: can-o3, shader: "unshaded" } - type: UserInterface interfaces: - - key: enum.GasCanisterUiKey.Key + enum.GasCanisterUiKey.Key: type: GasCanisterBoundUserInterface - type: Destructible thresholds: @@ -674,7 +674,7 @@ damageModifierSet: Metallic - type: InteractionOutline - type: Sprite - sprite: _White/Structures/Storage/canister.rsi #WWDP edit + sprite: Structures/Storage/canister.rsi state: grey-1 - type: Physics bodyType: Dynamic diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/base_structurelockers.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/base_structurelockers.yml index 783bec3ba0..7d7bc94bb3 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/base_structurelockers.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/base_structurelockers.yml @@ -45,7 +45,7 @@ min: 1 max: 2 - type: Construction - graph: ClosetSteel + graph: ClosetSteelSecure node: done containers: - entity_storage @@ -66,8 +66,3 @@ behaviors: - !type:DoActsBehavior acts: ["Destruction"] - - type: Construction - graph: ClosetSteelSecure - node: done - containers: - - entity_storage diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml index bb91023fe0..5c15415121 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml @@ -4,8 +4,6 @@ name: booze storage description: This is where the bartender keeps the booze. components: - - type: Sprite - sprite: _White/Structures/Storage/closet.rsi #WWDP edit - type: Appearance - type: EntityStorageVisuals stateBaseClosed: cabinet diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml index 294510f7e2..e966a41780 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml @@ -132,7 +132,7 @@ - type: Sprite drawdepth: WallMountedItems noRot: false - sprite: _White/Structures/Storage/wall_locker.rsi #WWDP edit + sprite: Structures/Storage/wall_locker.rsi layers: - state: generic map: ["enum.StorageVisualLayers.Base"] @@ -227,7 +227,7 @@ noRot: true - type: Sprite noRot: true - sprite: _White/Structures/Storage/suit_storage.rsi + sprite: Structures/Storage/suit_storage.rsi layers: - state: base - state: door diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/wall_lockers.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/wall_lockers.yml index 0175a59eea..91c50f1778 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/wall_lockers.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/wall_lockers.yml @@ -157,8 +157,6 @@ parent: BaseWallLocker name: medical wall locker components: - - type: Sprite - sprite: _White/Structures/Storage/wall_locker.rsi #WWDP edit - type: Appearance - type: EntityStorageVisuals stateBaseClosed: med diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml index 78c8c84d4c..01c226cb0f 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml @@ -34,7 +34,7 @@ bounds: "-0.4,-0.4,0.4,0.29" density: 50 mask: - - SmallMobMask #this is so they can go under plastic flaps + - CrateMask #this is so they can go under plastic flaps layer: - MachineLayer - type: EntityStorage diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml index 1cf8083659..11c963ed22 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml @@ -356,7 +356,7 @@ bounds: "-0.4,-0.4,0.4,0.29" density: 135 mask: - - SmallMobMask #this is so they can go under plastic flaps + - CrateMask #this is so they can go under plastic flaps layer: - LargeMobLayer - type: Construction @@ -413,7 +413,7 @@ bounds: "-0.4,-0.4,0.4,0.29" density: 80 mask: - - LargeMobMask + - CrateMask layer: - LargeMobLayer - type: StaticPrice diff --git a/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml b/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml index d6becda9cc..cfda95fc2f 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml @@ -24,8 +24,8 @@ map: ["openLayer"] - type: UserInterface interfaces: - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface - type: Transform noRot: true - type: Fixtures @@ -113,8 +113,8 @@ - type: Appearance - type: UserInterface interfaces: - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface - type: Transform noRot: true - type: Fixtures diff --git a/Resources/Prototypes/Entities/Structures/Storage/glass_box.yml b/Resources/Prototypes/Entities/Structures/Storage/glass_box.yml index bdb02d2bc3..8177b6b6f0 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/glass_box.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/glass_box.yml @@ -1,97 +1,148 @@ - type: entity - id: GlassBoxLaser - name: glass box - description: A sturdy showcase for an expensive exhibit. + id: BaseGlassBox parent: BaseStructureDynamic + abstract: true placement: mode: SnapgridCenter components: - - type: Anchorable - delay: 4 - type: Transform anchored: true - - type: Damageable - damageContainer: Inorganic - damageModifierSet: Glass - - type: MeleeSound - soundGroups: - Brute: - collection: GlassSmash - type: Physics bodyType: Static - type: Clickable - type: InteractionOutline + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 1000 + mask: + - MachineMask + layer: + - MidImpassable + - LowImpassable + - type: ItemSlots + - type: ContainerContainer + containers: + ItemCabinet: !type:ContainerSlot + - type: Anchorable + delay: 4 + - type: Appearance + +- type: entity + id: GlassBox + name: glass box + description: A sturdy showcase for an expensive exhibit. + parent: BaseGlassBox + abstract: true # TODO: Temporarily abstract. Remove it after item scaling in cabinets is implemented. + components: - type: Sprite + noRot: true sprite: Structures/Storage/glassbox.rsi layers: - - state: glassbox - - state: caplaser + - state: base + - state: caplaser # TODO: Remove it after item scaling in cabinets is implemented. map: ["enum.ItemCabinetVisualLayers.ContainsItem"] visible: true - state: glass map: ["enum.ItemCabinetVisualLayers.Door"] - - type: ItemCabinet - cabinetSlot: - ejectOnInteract: true - whitelist: - tags: - - WeaponAntiqueLaser - doorSound: - path: /Audio/Machines/machine_switch.ogg - openState: glass-up - closedState: glass - - type: Lock + - state: locked + shader: unshaded + map: ["enum.LockVisualLayers.Lock"] + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 1000 + mask: + - MachineMask + layer: + - LowImpassable + - MidImpassable + - BulletImpassable - type: AccessReader - access: [["Captain"]] - - type: ItemSlots - - type: ContainerContainer - containers: - ItemCabinet: !type:ContainerSlot - type: Repairable - - type: Appearance + fuelCost: 15 + doAfterDelay: 5 + - type: Lock + - type: LockVisuals - type: DamageVisuals - thresholds: [4, 8, 12] + thresholds: [4, 8, 12] # TODO: Fix damage visuals on open state. damageDivisor: 7.555 trackAllDamage: true damageOverlay: sprite: Structures/Storage/glassbox.rsi + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Glass + - type: MeleeSound + soundGroups: + Brute: + collection: GlassSmash - type: Destructible thresholds: - trigger: !type:DamageTrigger damage: 150 behaviors: - - !type:EmptyAllContainersBehaviour - - !type:PlaySoundBehavior - sound: - collection: WindowShatter - - !type:SpawnEntitiesBehavior - spawn: - ShardGlassReinforced: - min: 1 - max: 1 - GlassBoxLaserBroken: - min: 1 - max: 1 - - !type:DoActsBehavior - acts: [ "Destruction" ] + - !type:EmptyAllContainersBehaviour + - !type:PlaySoundBehavior + sound: + collection: WindowShatter + - !type:PlaySoundBehavior + sound: + path: /Audio/Machines/warning_buzzer.ogg + params: + volume: 10 + - !type:SpawnEntitiesBehavior + spawn: + ShardGlassReinforced: + min: 1 + max: 2 + - !type:ChangeConstructionNodeBehavior + node: brokenGlassBox + - !type:DoActsBehavior + acts: [ "Destruction" ] - type: entity - id: GlassBoxLaserOpen - parent: GlassBoxLaser - suffix: Open + id: GlassBoxLaser + parent: GlassBox + suffix: AntiqueLaser components: + - type: AccessReader + access: [["Captain"]] + - type: Construction + graph: GlassBox + node: glassBox - type: ItemCabinet - opened: true + cabinetSlot: + ejectOnInteract: true + whitelist: + tags: + - WeaponAntiqueLaser doorSound: path: /Audio/Machines/machine_switch.ogg openState: glass-up closedState: glass +- type: entity + id: GlassBoxLaserOpen + parent: GlassBoxLaser + suffix: AntiqueLaser, Open + components: + - type: Lock + locked: false + - type: ItemCabinet + opened: true + - type: entity id: GlassBoxLaserFilled parent: GlassBoxLaser - suffix: Filled + suffix: AntiqueLaser, Filled components: - type: ItemCabinet cabinetSlot: @@ -100,40 +151,83 @@ whitelist: tags: - WeaponAntiqueLaser - doorSound: - path: /Audio/Machines/machine_switch.ogg - openState: glass-up - closedState: glass - type: entity id: GlassBoxLaserFilledOpen parent: GlassBoxLaserFilled - suffix: Filled, Open + suffix: AntiqueLaser, Filled, Open components: + - type: Lock + locked: false - type: ItemCabinet opened: true - doorSound: - path: /Audio/Machines/machine_switch.ogg - openState: glass-up - closedState: glass - type: entity - id: GlassBoxLaserBroken + id: GlassBoxFrame + name: glass box frame + description: A glassless sturdy showcase for an expensive exhibit. + parent: BaseGlassBox + suffix: Frame + components: + - type: Sprite + noRot: true + sprite: Structures/Storage/glassbox.rsi + layers: + - state: base + - type: Construction + graph: GlassBox + node: boxMissingWires + - type: Climbable + - type: Damageable + damageModifierSet: Wood + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WoodDestroy + - !type:SpawnEntitiesBehavior + spawn: + MaterialWoodPlank1: + min: 2 + max: 5 + - !type:DoActsBehavior + acts: ["Destruction"] + +- type: entity + id: GlassBoxBroken name: broken glass box description: A broken showcase for a stolen expensive exhibit. - parent: BaseStructureDynamic + parent: GlassBoxFrame suffix: Broken - placement: - mode: SnapgridCenter components: - - type: Transform - anchored: true - - type: Physics - bodyType: Static - type: Sprite sprite: Structures/Storage/glassbox.rsi layers: - - state: glassbox - - state: glass-4 - - type: Clickable - - type: InteractionOutline + - state: base + - state: glass-broken + - type: Construction + graph: GlassBox + node: brokenGlassBox + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WoodDestroy + - !type:SpawnEntitiesBehavior + spawn: + ShardGlassReinforced: + min: 1 + max: 1 + MaterialWoodPlank1: + min: 2 + max: 5 + - !type:DoActsBehavior + acts: ["Destruction"] diff --git a/Resources/Prototypes/Entities/Structures/Storage/morgue.yml b/Resources/Prototypes/Entities/Structures/Storage/morgue.yml index 725f4c9b0f..496ea41611 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/morgue.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/morgue.yml @@ -5,6 +5,8 @@ placement: mode: SnapgridCenter components: + - type: Pullable + - type: Anchorable - type: Sprite sprite: Structures/Storage/morgue.rsi layers: @@ -28,11 +30,11 @@ shape: !type:PhysShapeAabb bounds: "-0.5,-0.5,0.5,0.5" - density: 190 + density: 1000 mask: - MachineMask layer: - - WallLayer + - HalfWallLayer - type: EntityStorage isCollidableWhenOpen: true showContents: false diff --git a/Resources/Prototypes/Entities/Structures/Storage/ore_box.yml b/Resources/Prototypes/Entities/Structures/Storage/ore_box.yml index 961d7854c0..b26bb2c954 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/ore_box.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/ore_box.yml @@ -60,8 +60,8 @@ - Ore - type: UserInterface interfaces: - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface - type: ContainerContainer containers: storagebase: !type:Container diff --git a/Resources/Prototypes/Entities/Structures/Storage/storage.yml b/Resources/Prototypes/Entities/Structures/Storage/storage.yml index 79a1e35799..d0b468ca53 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/storage.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/storage.yml @@ -27,9 +27,9 @@ bounds: "-0.3,-0.3,0.3,0.3" density: 140 mask: - - MachineMask + - TableMask layer: - - MachineLayer + - TableLayer - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml index ceb9f94b58..565c9129c8 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml @@ -23,6 +23,7 @@ description: A direction sign, pointing out which way the bar is. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_bar - type: entity @@ -32,6 +33,7 @@ description: A direction sign, pointing out which way the Bridge is. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_bridge - type: entity @@ -41,6 +43,7 @@ description: A direction sign, pointing out which way the Brig is. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_brig - type: entity @@ -50,6 +53,7 @@ description: A direction sign, pointing out which way the Chapel is. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_chapel - type: entity @@ -59,6 +63,7 @@ description: A direction sign, pointing out which way the chemistry lab is. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_chemistry - type: entity @@ -68,6 +73,7 @@ description: A direction sign, pointing out the way to cryogenics. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_cryo - type: entity @@ -77,6 +83,7 @@ description: A direction sign, pointing out which way the Dorms are. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_dorms - type: entity @@ -86,6 +93,7 @@ description: A direction sign, pointing out which way the Engineering department is. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_eng - type: entity @@ -95,6 +103,7 @@ description: A direction sign, pointing out which way evac is. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_evac - type: entity @@ -104,6 +113,7 @@ description: A direction sign, pointing out which way the examination room(s) are. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_exam - type: entity @@ -113,6 +123,7 @@ description: A direction sign, pointing out which way the kitchen is. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_food - type: entity @@ -122,6 +133,7 @@ description: A direction sign, pointing out which way the gravity generator is. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_gravity - type: entity @@ -131,6 +143,7 @@ description: A direction sign, pointing out which way Head of Personnel's office is. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_hop - type: entity @@ -140,6 +153,7 @@ description: A direction sign, pointing out which way hydroponics is. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_hydro - type: entity @@ -149,6 +163,7 @@ description: A direction sign, pointing out which way the ICU is. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_icu - type: entity @@ -158,6 +173,7 @@ description: A direction sign, pointing out which way the janitor's closet is. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_janitor - type: entity @@ -167,6 +183,7 @@ description: A direction sign, pointing out which way the library is. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_library - type: entity @@ -176,6 +193,7 @@ description: A direction sign, pointing out which way the Medical department is. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_med - type: entity @@ -185,6 +203,7 @@ description: A direction sign, pointing out which way the Salvage department is. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_salvage - type: entity @@ -194,8 +213,8 @@ description: A direction sign, pointing out which way the Epistemics department is. # DeltaV - Epistemics Department replacing Science components: - type: Sprite - sprite: Nyanotrasen/Structures/Wallmounts/signs.rsi # DeltaV - Epistemics Department replacing Science - state: direction_epi # DeltaV - Epistemics Department replacing Science + sprite: Structures/Wallmounts/signs.rsi + state: direction_sci - type: entity parent: BaseSignDirectional @@ -204,6 +223,7 @@ description: A direction sign, pointing out which way Security is. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_sec - type: entity @@ -213,6 +233,7 @@ description: A direction sign, pointing out which way solars are. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_solar - type: entity @@ -222,6 +243,7 @@ description: A direction sign, pointing to some supplies. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_supply - type: entity @@ -231,6 +253,7 @@ description: A direction sign, pointing to the way to a washroom. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: direction_wash # Regular Signs @@ -242,6 +265,7 @@ description: A sign, indicating an AI is present. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: ai - type: entity @@ -251,6 +275,7 @@ description: A sign indicating the arcade. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: arcade - type: entity @@ -260,6 +285,7 @@ description: A sign indicating the armory. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: armory - type: entity @@ -269,6 +295,7 @@ description: A sign indicating the tool storage room. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: ass - type: entity @@ -278,6 +305,7 @@ description: A sign indicating the xenoarchaeology lab. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: anomaly - type: entity @@ -287,6 +315,7 @@ description: A sign indicating the anomalous research lab. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: anomaly2 - type: entity @@ -296,6 +325,7 @@ description: A sign indicating the atmospherics area. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: atmos - type: entity @@ -314,6 +344,7 @@ description: A sign indicating the bar. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: bar - type: entity @@ -323,6 +354,7 @@ description: A sign indicating the barbershop. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: barbershop - type: entity @@ -350,6 +382,7 @@ description: A sign indicating the bridge. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: bridge - type: entity @@ -359,15 +392,17 @@ description: A sign warning the viewer about pressurised canisters. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: canisters - type: entity parent: BaseSign id: SignCargo - name: logistics sign # DeltaV - Logistics Department replacing Cargo - description: A sign indicating the logistics area. # DeltaV - Logistics Department replacing Cargo + name: cargo sign + description: A sign indicating the cargo area. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: cargo - type: entity @@ -377,6 +412,7 @@ description: A sign indicating a cargo dock. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: cargo_dock - type: entity @@ -386,6 +422,7 @@ description: A sign indicating the chapel. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: chapel - type: entity @@ -395,6 +432,7 @@ description: A sign indicating the chemistry lab. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: chem - type: entity @@ -422,6 +460,7 @@ description: A sign indicating the cloning lab. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: cloning - type: entity @@ -431,6 +470,7 @@ description: A sign indicating the conference room. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: conference_room - type: entity @@ -440,6 +480,7 @@ description: A sign labelling the courtroom. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: court - type: entity @@ -449,6 +490,7 @@ description: A sign indicating a disposal area. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: deathsposal - type: entity @@ -458,6 +500,7 @@ description: A sign indicating doors. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: doors - type: entity @@ -467,6 +510,7 @@ description: A sign indicating drones. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: drones - type: entity @@ -476,6 +520,7 @@ description: A sign indicating the engine room. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: engine - type: entity @@ -485,6 +530,7 @@ description: A sign indicating the engineering area. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: eng - type: entity @@ -494,9 +540,8 @@ description: A sign indicating the escape pods. components: - type: Sprite - sprite: Nyanotrasen/Structures/Wallmounts/signs.rsi # Nyanotrasen - Give pods sign directional sprites + sprite: Structures/Wallmounts/signs.rsi state: pods - snapCardinals: false - type: entity parent: BaseSign @@ -505,6 +550,7 @@ description: A sign indicating an EVA area. EVA equipment may be required beyond this point. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: eva - type: entity @@ -523,6 +569,7 @@ description: A sign indicating a medical examination room. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: examroom - type: entity @@ -541,6 +588,7 @@ description: A sign indicating the gravity generator. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: gravi - type: entity @@ -550,6 +598,7 @@ description: A sign with a hat on it. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: commander - type: entity @@ -586,6 +635,7 @@ description: A sign indicating an interrogation room. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: interrogation - type: entity @@ -595,6 +645,7 @@ description: A sign labelling an area where the janitor works. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: janitor - type: entity @@ -604,6 +655,7 @@ description: A sign indicating the laundromat. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: laundromat - type: entity @@ -613,6 +665,7 @@ description: A sign labelling an area where the Lawyers work. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: law - type: entity @@ -622,6 +675,7 @@ description: A sign indicating the library. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: biblio - type: entity @@ -631,6 +685,7 @@ description: A sign indicating mail. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: mail - type: entity @@ -640,6 +695,7 @@ description: A sign indicating the medical bay. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: medbay - type: entity @@ -649,6 +705,7 @@ description: A sign indicating the miner dock. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: miner_dock - type: entity @@ -658,6 +715,7 @@ description: A sign indicating the morgue. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: morgue - type: entity @@ -667,6 +725,7 @@ description: A sign indicating where the Reporter works. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: news - type: entity @@ -685,6 +744,7 @@ description: A sign indicating the prison. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: prison - type: entity @@ -694,6 +754,7 @@ description: A sign labelling an area where the Psychologist works. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: psychology - type: entity @@ -703,6 +764,7 @@ description: A sign indicating the reception. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: reception - type: entity @@ -712,6 +774,7 @@ description: A sign indicating the research and development lab. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: rnd - type: entity @@ -721,6 +784,7 @@ description: A sign indicating the robotics lab. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: robo - type: entity @@ -730,6 +794,7 @@ description: A sign indicating the salvage area. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: salvage - type: entity @@ -739,6 +804,7 @@ description: A sign indicating the science area. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: sci - type: entity @@ -766,6 +832,7 @@ description: A sign with a shield. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: shield - type: entity @@ -775,6 +842,7 @@ description: A sign indicating the ship docking area. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: dock - type: entity @@ -784,9 +852,8 @@ description: A sign warning that the area ahead is nothing but cold, empty space. components: - type: Sprite - sprite: Nyanotrasen/Structures/Wallmounts/signs.rsi # Nyanotrasen - Give space sign directional sprites + sprite: Structures/Wallmounts/signs.rsi state: space - snapCardinals: false - type: entity parent: BaseSign @@ -795,6 +862,7 @@ description: A sign indicating the operating theater. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: surgery - type: entity @@ -804,6 +872,7 @@ description: A sign indicating the telecommunications room. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: telecoms - type: entity @@ -813,6 +882,7 @@ description: A sign indicating the toxin lab. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: toxins - type: entity @@ -822,6 +892,7 @@ description: A sign indicating the toxin lab. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: toxins2 - type: entity @@ -831,6 +902,7 @@ description: A sign indicating the virology lab. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: virology - type: entity @@ -985,6 +1057,7 @@ description: A sign indicating the xenobiology lab. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: xenolab - type: entity @@ -994,6 +1067,7 @@ description: A sign indicating the zombie lab. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: zomlab - type: entity @@ -1232,6 +1306,7 @@ description: A sign depicting the security insignia. components: - type: Sprite + sprite: Structures/Wallmounts/signs.rsi state: security - type: entity diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml index 62f2000593..6090aae882 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml @@ -53,14 +53,16 @@ - AirAlarm - type: AtmosDevice - type: AirAlarm + - type: AtmosAlertsDevice + group: AirAlarm - type: Clickable - type: InteractionOutline - type: UserInterface interfaces: - - key: enum.SharedAirAlarmInterfaceKey.Key - type: AirAlarmBoundUserInterface - - key: enum.WiresUiKey.Key - type: WiresBoundUserInterface + enum.SharedAirAlarmInterfaceKey.Key: + type: AirAlarmBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: WiresPanel - type: Wires boardName: wires-board-name-airalarm diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/defib_cabinet.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/defib_cabinet.yml index 23d39f0ad9..d1bcf4024d 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/defib_cabinet.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/defib_cabinet.yml @@ -10,7 +10,7 @@ - type: Clickable - type: InteractionOutline - type: Sprite - sprite: _White/Structures/Wallmounts/defib_cabinet.rsi #WWDP edit + sprite: Structures/Wallmounts/defib_cabinet.rsi noRot: false layers: - state: frame diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml index 6530ca10c2..3d3c16de7c 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml @@ -10,7 +10,7 @@ - type: Clickable - type: InteractionOutline - type: Sprite - sprite: _White/Structures/Wallmounts/extinguisher_cabinet.rsi #WWDP edit + sprite: Structures/Wallmounts/extinguisher_cabinet.rsi snapCardinals: true layers: - state: frame diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml index 05988fbc21..c27b0ff27e 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml @@ -42,6 +42,8 @@ - type: Clickable - type: InteractionOutline - type: FireAlarm + - type: AtmosAlertsDevice + group: FireAlarm - type: ContainerFill containers: board: [ FireAlarmElectronics ] @@ -60,8 +62,8 @@ delta: fire_3 - type: UserInterface interfaces: - - key: enum.WiresUiKey.Key - type: WiresBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: WiresPanel - type: Wires boardName: wires-board-name-firealarm diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml index 6bccf14e13..e31152a5b6 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml @@ -63,9 +63,9 @@ key: enum.IntercomUiKey.Key - type: UserInterface interfaces: - - key: enum.IntercomUiKey.Key + enum.IntercomUiKey.Key: type: IntercomBoundUserInterface - - key: enum.WiresUiKey.Key + enum.WiresUiKey.Key: type: WiresBoundUserInterface - type: Construction graph: Intercom diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/mirror.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/mirror.yml index b524f099bf..d02bce020d 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/mirror.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/mirror.yml @@ -16,5 +16,5 @@ key: enum.MagicMirrorUiKey.Key - type: UserInterface interfaces: - - key: enum.MagicMirrorUiKey.Key - type: MagicMirrorBoundUserInterface + enum.MagicMirrorUiKey.Key: + type: MagicMirrorBoundUserInterface diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/monitors_televisions.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/monitors_televisions.yml index 820fb76fe6..b1bec47714 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/monitors_televisions.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/monitors_televisions.yml @@ -5,7 +5,7 @@ description: Finally, some decent reception around here... components: - type: Sprite - sprite: _White/Structures/Machines/computers.rsi #WWDP edit + sprite: Structures/Machines/computers.rsi noRot: true drawdepth: SmallObjects layers: @@ -13,7 +13,7 @@ state: television - map: ["computerLayerScreen"] state: detective_television - shader: unshaded + shader: unshaded #WWDP edit - type: Computer board: ComputerTelevisionCircuitboard - type: PointLight @@ -112,8 +112,8 @@ - type: ActivatableUIRequiresPower - type: UserInterface interfaces: - - key: enum.SurveillanceCameraMonitorUiKey.Key - type: SurveillanceCameraMonitorBoundUserInterface + enum.SurveillanceCameraMonitorUiKey.Key: + type: SurveillanceCameraMonitorBoundUserInterface # Wall Televisions @@ -139,7 +139,7 @@ node: TelevisionFrame - type: Sprite drawdepth: WallMountedItems - sprite: _White/Structures/Wallmounts/flatscreentv.rsi #WWDP edit + sprite: Structures/Wallmounts/flatscreentv.rsi layers: - map: ["computerLayerBody"] state: television_wall @@ -158,7 +158,7 @@ components: - type: Sprite drawdepth: WallMountedItems - sprite: _White/Structures/Wallmounts/flatscreentv.rsi #WWDP edit + sprite: Structures/Wallmounts/flatscreentv.rsi layers: - map: ["computerLayerBody"] state: television_wall @@ -183,8 +183,8 @@ - type: ActivatableUIRequiresPower - type: UserInterface interfaces: - - key: enum.SurveillanceCameraMonitorUiKey.Key - type: SurveillanceCameraMonitorBoundUserInterface + enum.SurveillanceCameraMonitorUiKey.Key: + type: SurveillanceCameraMonitorBoundUserInterface - type: PointLight radius: 1.5 energy: 1.6 diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/noticeboard.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/noticeboard.yml index 421ab93be9..f2315583e3 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/noticeboard.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/noticeboard.yml @@ -50,8 +50,8 @@ - Write - type: UserInterface interfaces: - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface - type: ContainerContainer containers: storagebase: !type:Container diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/station_map.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/station_map.yml index d1df619b7a..2ae5040910 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/station_map.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/station_map.yml @@ -86,7 +86,7 @@ acts: [ "Destruction" ] - type: UserInterface interfaces: - - key: enum.StationMapUiKey.Key + enum.StationMapUiKey.Key: type: StationMapBoundUserInterface - type: entity diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/surveillance_camera.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/surveillance_camera.yml index 6e56bb855f..3347b0e4b1 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/surveillance_camera.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/surveillance_camera.yml @@ -42,9 +42,9 @@ InUse: camera_in_use - type: UserInterface interfaces: - - key: enum.SurveillanceCameraSetupUiKey.Camera + enum.SurveillanceCameraSetupUiKey.Camera: type: SurveillanceCameraSetupBoundUi - - key: enum.WiresUiKey.Key + enum.WiresUiKey.Key: type: WiresBoundUserInterface - type: StaticPrice price: 200 diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml index 51094ad9bf..1d25c919fb 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml @@ -15,7 +15,7 @@ canCollide: false - type: Sprite drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch.rsi #WWDP edit + sprite: Structures/Wallmounts/switch.rsi state: on - type: SignalSwitch - type: UseDelay @@ -54,7 +54,7 @@ canCollide: false - type: Sprite drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch.rsi #WWDP edit + sprite: Structures/Wallmounts/switch.rsi state: dead - type: UseDelay delay: 0.5 # prevent light-toggling auto-clickers. @@ -116,7 +116,7 @@ anchored: true - type: Sprite drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch.rsi #WWDP edit + sprite: Structures/Wallmounts/switch.rsi state: on - type: Rotatable - type: ExtensionCableReceiver @@ -232,7 +232,7 @@ - type: AccessReader - type: Sprite drawdepth: WallMountedItems - sprite: _White/Structures/Wallmounts/locked_switch.rsi #WWDP edit + sprite: Structures/Wallmounts/locked_switch.rsi layers: - state: base - state: locked @@ -479,8 +479,6 @@ - type: AccessReader access: [["Atmospherics"]] -# button frames 1 - - type: entity id: ButtonFrame name: button frame @@ -498,451 +496,8 @@ canCollide: false - type: Sprite drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f1.rsi + sprite: _White/Structures/Wallmounts/switch_frame/f1.rsi # WD EDIT state: grey - type: Rotatable - type: Fixtures -- type: entity - id: ButtonFrameGrey - parent: ButtonFrame - suffix: 1 grey - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f1.rsi - state: grey - -- type: entity - id: ButtonFrameCaution - parent: ButtonFrame - suffix: 1 caution - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f1.rsi - state: caution - -- type: entity - id: ButtonFrameCautionSecurity - parent: ButtonFrame - suffix: 1 caution - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f1.rsi - state: caution_security - -- type: entity - id: ButtonFrameExit - parent: ButtonFrame - suffix: 1 exit - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f1.rsi - layers: - - state: exit - - state: exit_glow - shader: unshaded - - -- type: entity - id: ButtonFrameJanitor - parent: ButtonFrame - suffix: 1 janitor - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f1.rsi - state: janitor - -# button frames 2 - -- type: entity - id: ButtonFrame2 - name: button frame - noSpawn: true - description: It's a frame to help distinguish switches visually. - placement: - mode: SnapgridCenter - snap: - - Wallmount - components: - - type: Clickable - - type: WallMount - arc: 360 - - type: Physics - canCollide: false - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f2.rsi - state: grey - - type: Rotatable - - type: Fixtures - -- type: entity - id: ButtonFrameGrey2 - parent: ButtonFrame2 - suffix: 2 grey - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f2.rsi - state: grey - -- type: entity - id: ButtonFrameCaution2 - parent: ButtonFrame2 - suffix: 2 caution - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f2.rsi - state: caution - -- type: entity - id: ButtonFrameCautionSecurity2 - parent: ButtonFrame2 - suffix: 2 caution - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f2.rsi - state: caution_security - -- type: entity - id: ButtonFrameExit2 - parent: ButtonFrame2 - suffix: 2 exit - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f2.rsi - layers: - - state: exit - - state: exit_glow - shader: unshaded - - -- type: entity - id: ButtonFrameJanitor2 - parent: ButtonFrame2 - suffix: 2 janitor - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f2.rsi - state: janitor - - # button frames 3 - -- type: entity - id: ButtonFrame3 - name: button frame - noSpawn: true - description: It's a frame to help distinguish switches visually. - placement: - mode: SnapgridCenter - snap: - - Wallmount - components: - - type: Clickable - - type: WallMount - arc: 360 - - type: Physics - canCollide: false - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f3.rsi - state: grey - - type: Rotatable - - type: Fixtures - -- type: entity - id: ButtonFrameGrey3 - parent: ButtonFrame3 - suffix: 3 grey - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f3.rsi - state: grey - -- type: entity - id: ButtonFrameCaution3 - parent: ButtonFrame3 - suffix: 3 caution - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f3.rsi - state: caution - -- type: entity - id: ButtonFrameCautionSecurity3 - parent: ButtonFrame3 - suffix: 3 caution - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f3.rsi - state: caution_security - -- type: entity - id: ButtonFrameExit3 - parent: ButtonFrame3 - suffix: 3 exit - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f3.rsi - layers: - - state: exit - - state: exit_glow - shader: unshaded - - -- type: entity - id: ButtonFrameJanitor3 - parent: ButtonFrame3 - suffix: 3 janitor - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f3.rsi - state: janitor - - # button frames 4 - -- type: entity - id: ButtonFrame4 - name: button frame - noSpawn: true - description: It's a frame to help distinguish switches visually. - placement: - mode: SnapgridCenter - snap: - - Wallmount - components: - - type: Clickable - - type: WallMount - arc: 360 - - type: Physics - canCollide: false - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f4.rsi - state: grey - - type: Rotatable - - type: Fixtures - -- type: entity - id: ButtonFrameGrey4 - parent: ButtonFrame4 - suffix: 4 grey - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f4.rsi - state: grey - -- type: entity - id: ButtonFrameCaution4 - parent: ButtonFrame4 - suffix: 4 caution - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f4.rsi - state: caution - -- type: entity - id: ButtonFrameCautionSecurity4 - parent: ButtonFrame4 - suffix: 4 caution - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f4.rsi - state: caution_security - -- type: entity - id: ButtonFrameExit4 - parent: ButtonFrame4 - suffix: 4 exit - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f4.rsi - layers: - - state: exit - - state: exit_glow - shader: unshaded - - -- type: entity - id: ButtonFrameJanitor4 - parent: ButtonFrame4 - suffix: 4 janitor - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f4.rsi - state: janitor - - # button frames 5 - -- type: entity - id: ButtonFrame5 - name: button frame - noSpawn: true - description: It's a frame to help distinguish switches visually. - placement: - mode: SnapgridCenter - snap: - - Wallmount - components: - - type: Clickable - - type: WallMount - arc: 360 - - type: Physics - canCollide: false - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f5.rsi - state: grey - - type: Rotatable - - type: Fixtures - -- type: entity - id: ButtonFrameGrey5 - parent: ButtonFrame5 - suffix: 5 grey - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f5.rsi - state: grey - -- type: entity - id: ButtonFrameCaution5 - parent: ButtonFrame5 - suffix: 5 caution - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f5.rsi - state: caution - -- type: entity - id: ButtonFrameCautionSecurity5 - parent: ButtonFrame5 - suffix: 5 caution - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f5.rsi - state: caution_security - -- type: entity - id: ButtonFrameExit5 - parent: ButtonFrame5 - suffix: 5 exit - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f5.rsi - layers: - - state: exit - - state: exit_glow - shader: unshaded - - -- type: entity - id: ButtonFrameJanitor5 - parent: ButtonFrame5 - suffix: 5 janitor - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f5.rsi - state: janitor - - # button frames 6 - -- type: entity - id: ButtonFrame6 - name: button frame - noSpawn: true - description: It's a frame to help distinguish switches visually. - placement: - mode: SnapgridCenter - snap: - - Wallmount - components: - - type: Clickable - - type: WallMount - arc: 360 - - type: Physics - canCollide: false - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f6.rsi - state: grey - - type: Rotatable - - type: Fixtures - -- type: entity - id: ButtonFrameGrey6 - parent: ButtonFrame6 - suffix: 6 grey - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f6.rsi - state: grey - -- type: entity - id: ButtonFrameCaution6 - parent: ButtonFrame6 - suffix: 6 caution - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f6.rsi - state: caution - -- type: entity - id: ButtonFrameCautionSecurity6 - parent: ButtonFrame6 - suffix: 6 caution - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f6.rsi - state: caution_security - -- type: entity - id: ButtonFrameExit6 - parent: ButtonFrame6 - suffix: 6 exit - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f6.rsi - layers: - - state: exit - - state: exit_glow - shader: unshaded - - -- type: entity - id: ButtonFrameJanitor6 - parent: ButtonFrame6 - suffix: 6 janitor - components: - - type: Sprite - drawdepth: SmallObjects - sprite: _White/Structures/Wallmounts/switch_frame/f6.rsi - state: janitor diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml index 0c284eec7a..dd7eb5bea8 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml @@ -32,8 +32,8 @@ key: enum.SignalTimerUiKey.Key - type: UserInterface interfaces: - - key: enum.SignalTimerUiKey.Key - type: SignalTimerBoundUserInterface + enum.SignalTimerUiKey.Key: + type: SignalTimerBoundUserInterface - type: ApcPowerReceiver powerLoad: 100 - type: Electrified diff --git a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml index a8cb0b1cb8..0728d2a911 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml @@ -295,6 +295,50 @@ state: rock_asteroid_west - state: rock_artifact_fragment +- type: entity + id: AsteroidRockBluespace + parent: AsteroidRock + description: A rock wall. What's that sticking out of it? + suffix: Bluespace + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreBluespace + - type: Sprite + layers: + - state: rock_asteroid + - map: [ "enum.EdgeLayer.South" ] + state: rock_asteroid_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_asteroid_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_asteroid_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_asteroid_west + - state: rock_bluespace + +- type: entity + id: AsteroidRockNormality + parent: AsteroidRock + description: A rock wall. What's that sticking out of it? + suffix: Normality + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreNormality + - type: Sprite + layers: + - state: rock_asteroid + - map: [ "enum.EdgeLayer.South" ] + state: rock_asteroid_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_asteroid_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_asteroid_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_asteroid_west + - state: rock_bluespace + - type: entity id: AsteroidRockMining parent: AsteroidRock @@ -632,6 +676,50 @@ state: rock_west - state: rock_salt +- type: entity + id: WallRockBluespace + parent: WallRock + description: A rock wall. What's that sticking out of it? + suffix: Bluespace + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreBluespace + - type: Sprite + layers: + - state: rock + - map: [ "enum.EdgeLayer.South" ] + state: rock_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_west + - state: rock_bluespace + +- type: entity + id: WallRockNormality + parent: WallRock + description: A rock wall. What's that sticking out of it? + suffix: Normality + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreNormality + - type: Sprite + layers: + - state: rock + - map: [ "enum.EdgeLayer.South" ] + state: rock_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_west + - state: rock_bluespace + # Basalt variants - type: entity id: WallRockBasalt @@ -875,6 +963,50 @@ state: rock_wall_west - state: rock_salt +- type: entity + id: WallRockBasaltBluespace + parent: WallRockBluespace + description: A rock wall. What's that sticking out of it? + suffix: Bluespace + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreBluespace + - type: Sprite + layers: + - state: rock_wall + - map: [ "enum.EdgeLayer.South" ] + state: rock_wall_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_wall_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_wall_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_wall_west + - state: rock_bluespace + +- type: entity + id: WallRockBasaltNormality + parent: WallRockNormality + description: A rock wall. What's that sticking out of it? + suffix: Normality + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreNormality + - type: Sprite + layers: + - state: rock_wall + - map: [ "enum.EdgeLayer.South" ] + state: rock_wall_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_wall_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_wall_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_wall_west + - state: rock_bluespace + # Snow variants - type: entity id: WallRockSnow @@ -1118,6 +1250,50 @@ state: rock_snow_west - state: rock_salt +- type: entity + id: WallRockSnowBluespace + parent: WallRockSnow + description: A rock wall. What's that sticking out of it? + suffix: Bluespace + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreBluespace + - type: Sprite + layers: + - state: rock_snow + - map: [ "enum.EdgeLayer.South" ] + state: rock_snow_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_snow_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_snow_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_snow_west + - state: rock_bluespace + +- type: entity + id: WallRockSnowNormality + parent: WallRockSnow + description: A rock wall. What's that sticking out of it? + suffix: Normality + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreNormality + - type: Sprite + layers: + - state: rock_snow + - map: [ "enum.EdgeLayer.South" ] + state: rock_snow_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_snow_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_snow_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_snow_west + - state: rock_bluespace + # Sand variants - type: entity id: WallRockSand @@ -1361,6 +1537,50 @@ state: rock_sand_west - state: rock_salt +- type: entity + id: WallRockSandBluespace + parent: WallRockSand + description: A rock wall. What's that sticking out of it? + suffix: Bluespace + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreBluespace + - type: Sprite + layers: + - state: rock_sand + - map: [ "enum.EdgeLayer.South" ] + state: rock_sand_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_sand_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_sand_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_sand_west + - state: rock_bluespace + +- type: entity + id: WallRockSandNormality + parent: WallRockSand + description: A rock wall. What's that sticking out of it? + suffix: Normality + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreNormality + - type: Sprite + layers: + - state: rock_sand + - map: [ "enum.EdgeLayer.South" ] + state: rock_sand_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_sand_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_sand_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_sand_west + - state: rock_bluespace + # Chromite variants - type: entity id: WallRockChromite @@ -1604,6 +1824,50 @@ state: rock_chromite_west - state: rock_salt +- type: entity + id: WallRockChromiteBluespace + parent: WallRockChromite + description: A rock wall. What's that sticking out of it? + suffix: Bluespace + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreBluespace + - type: Sprite + layers: + - state: rock_chromite + - map: [ "enum.EdgeLayer.South" ] + state: rock_chromite_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_chromite_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_chromite_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_chromite_west + - state: rock_bluespace + +- type: entity + id: WallRockChromiteNormality + parent: WallRockChromite + description: A rock wall. What's that sticking out of it? + suffix: Normality + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreNormality + - type: Sprite + layers: + - state: rock_chromite + - map: [ "enum.EdgeLayer.South" ] + state: rock_chromite_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_chromite_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_chromite_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_chromite_west + - state: rock_bluespace + # Andesite variants - type: entity id: WallRockAndesite @@ -1846,3 +2110,47 @@ - map: [ "enum.EdgeLayer.West" ] state: rock_andesite_west - state: rock_salt + +- type: entity + id: WallRockAndesiteBluespace + parent: WallRockAndesite + description: A rock wall. What's that sticking out of it? + suffix: Bluespace + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreBluespace + - type: Sprite + layers: + - state: rock_andesite + - map: [ "enum.EdgeLayer.South" ] + state: rock_andesite_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_andesite_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_andesite_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_andesite_west + - state: rock_bluespace + +- type: entity + id: WallRockAndesiteNormality + parent: WallRockAndesite + description: A rock wall. What's that sticking out of it? + suffix: Normality + components: + - type: OreVein + oreChance: 1.0 + currentOre: OreNormality + - type: Sprite + layers: + - state: rock_andesite + - map: [ "enum.EdgeLayer.South" ] + state: rock_andesite_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_andesite_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_andesite_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_andesite_west + - state: rock_bluespace diff --git a/Resources/Prototypes/Entities/Structures/Walls/grille.yml b/Resources/Prototypes/Entities/Structures/Walls/grille.yml index 11ada142fa..7be721b6f9 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/grille.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/grille.yml @@ -32,7 +32,7 @@ node: grille deconstructionTarget: start - type: Damageable - damageContainer: Inorganic + damageContainer: StructuralInorganic damageModifierSet: PerforatedMetallic - type: PowerConsumer showInMonitor: false diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index 348ce2918c..8be257169a 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -514,9 +514,9 @@ name: reinforced wall components: - type: Sprite - sprite: _White/Structures/Walls/solid.rsi #WWDP edit + sprite: Structures/Walls/solid.rsi - type: Icon - sprite: _White/Structures/Walls/solid.rsi #WWDP edit + sprite: Structures/Walls/solid.rsi state: rgeneric - type: Construction graph: Girder @@ -549,8 +549,6 @@ node: girder - !type:DoActsBehavior acts: ["Destruction"] - destroySound: - collection: MetalBreak - type: IconSmooth key: walls base: reinf_over @@ -579,9 +577,9 @@ suffix: rusted components: - type: Sprite - sprite: _White/Structures/Walls/solid_rust.rsi #WWDP edit + sprite: Structures/Walls/solid_rust.rsi - type: Icon - sprite: _White/Structures/Walls/solid_rust.rsi #WWDP edit + sprite: Structures/Walls/solid_rust.rsi state: rgeneric - type: Construction graph: Girder @@ -806,8 +804,6 @@ node: girder - !type:DoActsBehavior acts: ["Destruction"] - destroySound: - collection: MetalBreak - type: Construction graph: Girder node: diagonalshuttleWall @@ -821,9 +817,9 @@ tags: - Wall - type: Sprite - sprite: _White/Structures/Walls/shuttle.rsi #WWDP edit + sprite: Structures/Walls/shuttle.rsi - type: Icon - sprite: _White/Structures/Walls/shuttle.rsi #WWDP edit + sprite: Structures/Walls/shuttle.rsi state: full # - type: Destructible # thresholds: @@ -862,13 +858,13 @@ tags: - Wall - type: Sprite - sprite: _White/Structures/Walls/solid.rsi #WWDP edit + sprite: Structures/Walls/solid.rsi - type: WallReplacementMarker - type: Construction graph: Girder node: wall - type: Icon - sprite: _White/Structures/Walls/solid.rsi #WWDP edit + sprite: Structures/Walls/solid.rsi - type: RCDDeconstructable cost: 6 delay: 8 @@ -911,14 +907,14 @@ components: - type: Sprite drawdepth: Walls - sprite: _White/Structures/Walls/solid_diagonal.rsi #WWDP edit + sprite: Structures/Walls/solid_diagonal.rsi state: state0 - type: IconSmooth mode: Diagonal key: walls base: state - type: Icon - sprite: _White/Structures/Walls/solid_diagonal.rsi #WWDP edit + sprite: Structures/Walls/solid_diagonal.rsi state: state0 - type: entity @@ -928,9 +924,9 @@ suffix: rusted components: - type: Sprite - sprite: _White/Structures/Walls/solid_rust.rsi #WWDP edit + sprite: Structures/Walls/solid_rust.rsi - type: Icon - sprite: _White/Structures/Walls/solid_rust.rsi #WWDP edit + sprite: Structures/Walls/solid_rust.rsi state: full - type: Construction graph: Girder @@ -985,9 +981,9 @@ name: wood wall components: - type: Sprite - sprite: _White/Structures/Walls/wood.rsi #WWDP edit + sprite: Structures/Walls/wood.rsi - type: Icon - sprite: _White/Structures/Walls/wood.rsi #WWDP edit + sprite: Structures/Walls/wood.rsi - type: Construction graph: Girder node: woodWall @@ -1212,7 +1208,7 @@ name: force wall components: - type: TimedDespawn - lifetime: 20 + lifetime: 12 - type: Tag tags: - Wall diff --git a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml index 7dc183baac..11db4d1022 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml @@ -5,9 +5,9 @@ components: - type: Sprite drawdepth: WallTops - sprite: _White/Structures/Windows/plasma_window.rsi #WWDP edit + sprite: Structures/Windows/plasma_window.rsi - type: Icon - sprite: _White/Structures/Windows/plasma_window.rsi #WWDP edit + sprite: Structures/Windows/plasma_window.rsi - type: Damageable damageContainer: StructuralInorganic damageModifierSet: RGlass @@ -64,10 +64,10 @@ - Window components: - type: Sprite - sprite: _White/Structures/Windows/directional.rsi #WWDP edit + sprite: Structures/Windows/directional.rsi state: plasma_window - type: Icon - sprite: _White/Structures/Windows/directional.rsi #WWDP edit + sprite: Structures/Windows/directional.rsi state: plasma_window - type: Construction graph: WindowDirectional @@ -109,14 +109,14 @@ components: - type: Sprite drawdepth: WallTops - sprite: _White/Structures/Windows/plasma_diagonal.rsi #WWDP edit + sprite: Structures/Windows/plasma_diagonal.rsi state: state0 - type: IconSmooth mode: Diagonal key: walls base: state - type: Icon - sprite: _White/Structures/Windows/plasma_diagonal.rsi #WWDP edit + sprite: Structures/Windows/plasma_diagonal.rsi state: state0 - type: Fixtures fixtures: diff --git a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml index 92588ce9b8..9914ad8399 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml @@ -5,9 +5,9 @@ components: - type: Sprite drawdepth: WallTops - sprite: _White/Structures/Windows/reinforced_window.rsi #WWDP edit + sprite: Structures/Windows/reinforced_window.rsi - type: Icon - sprite: _White/Structures/Windows/reinforced_window.rsi #WWDP edit + sprite: Structures/Windows/reinforced_window.rsi - type: Repairable fuelCost: 10 doAfterDelay: 2 @@ -63,9 +63,9 @@ components: - type: Sprite drawdepth: WallTops - sprite: _White/Structures/Windows/tinted_window.rsi #WWDP edit + sprite: Structures/Windows/tinted_window.rsi - type: Icon - sprite: _White/Structures/Windows/tinted_window.rsi #WWDP edit + sprite: Structures/Windows/tinted_window.rsi - type: IconSmooth base: twindow - type: Construction @@ -86,10 +86,10 @@ - Window components: - type: Sprite - sprite: _White/Structures/Windows/directional.rsi #WWDP edit + sprite: Structures/Windows/directional.rsi state: reinforced_window - type: Icon - sprite: _White/Structures/Windows/directional.rsi #WWDP edit + sprite: Structures/Windows/directional.rsi state: reinforced_window - type: Construction graph: WindowDirectional @@ -146,14 +146,14 @@ components: - type: Sprite drawdepth: WallTops - sprite: _White/Structures/Windows/reinforced_window_diagonal.rsi #WWDP edit + sprite: Structures/Windows/reinforced_window_diagonal.rsi state: state0 - type: IconSmooth mode: Diagonal key: walls base: state - type: Icon - sprite: _White/Structures/Windows/reinforced_window_diagonal.rsi #WWDP edit + sprite: Structures/Windows/reinforced_window_diagonal.rsi state: state0 - type: Fixtures fixtures: diff --git a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml index e4bccc4c86..39981c5197 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml @@ -5,9 +5,9 @@ components: - type: Sprite drawdepth: WallTops - sprite: _White/Structures/Windows/reinforced_plasma_window.rsi #WWDP edit + sprite: Structures/Windows/reinforced_plasma_window.rsi - type: Icon - sprite: _White/Structures/Windows/reinforced_plasma_window.rsi #WWDP edit + sprite: Structures/Windows/reinforced_plasma_window.rsi - type: Damageable damageContainer: StructuralInorganic damageModifierSet: RGlass @@ -67,10 +67,10 @@ - Window components: - type: Sprite - sprite: _White/Structures/Windows/directional.rsi #WWDP edit + sprite: Structures/Windows/directional.rsi state: plasma_reinforced_window - type: Icon - sprite: _White/Structures/Windows/directional.rsi #WWDP edit + sprite: Structures/Windows/directional.rsi state: plasma_reinforced_window - type: Construction graph: WindowDirectional @@ -121,14 +121,14 @@ components: - type: Sprite drawdepth: WallTops - sprite: _White/Structures/Windows/reinforced_plasma_diagonal.rsi #WWDP edit + sprite: Structures/Windows/reinforced_plasma_diagonal.rsi state: state0 - type: IconSmooth mode: Diagonal key: walls base: state - type: Icon - sprite: _White/Structures/Windows/reinforced_plasma_diagonal.rsi #WWDP edit + sprite: Structures/Windows/reinforced_plasma_diagonal.rsi state: state0 - type: Fixtures fixtures: diff --git a/Resources/Prototypes/Entities/Structures/Windows/window.yml b/Resources/Prototypes/Entities/Structures/Windows/window.yml index 18341f3f2a..c8cc53106b 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/window.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/window.yml @@ -20,9 +20,9 @@ - Window - type: Sprite drawdepth: WallTops - sprite: _White/Structures/Windows/window.rsi #WWDP edit + sprite: Structures/Windows/window.rsi - type: Icon - sprite: _White/Structures/Windows/window.rsi #WWDP edit + sprite: Structures/Windows/window.rsi state: full - type: Physics bodyType: Static @@ -121,10 +121,10 @@ collection: GlassSmack - type: Sprite drawdepth: Mobs - sprite: _White/Structures/Windows/directional.rsi #WWDP edit + sprite: Structures/Windows/directional.rsi state: window - type: Icon - sprite: _White/Structures/Windows/directional.rsi #WWDP edit + sprite: Structures/Windows/directional.rsi state: window - type: Physics - type: Fixtures @@ -212,10 +212,10 @@ - Window components: - type: Sprite - sprite: _White/Structures/Windows/directional.rsi #WWDP edit + sprite: Structures/Windows/directional.rsi state: frosted_window - type: Icon - sprite: _White/Structures/Windows/directional.rsi #WWDP edit + sprite: Structures/Windows/directional.rsi state: frosted_window - type: entity @@ -229,14 +229,14 @@ components: - type: Sprite drawdepth: WallTops - sprite: _White/Structures/Windows/window_diagonal.rsi #WWDP edit + sprite: Structures/Windows/window_diagonal.rsi state: state0 - type: IconSmooth mode: Diagonal key: walls base: state - type: Icon - sprite: _White/Structures/Windows/window_diagonal.rsi #WWDP edit + sprite: Structures/Windows/window_diagonal.rsi state: state0 - type: Fixtures fixtures: diff --git a/Resources/Prototypes/Entities/Structures/barricades.yml b/Resources/Prototypes/Entities/Structures/barricades.yml index b6fae1075f..7f697519cd 100644 --- a/Resources/Prototypes/Entities/Structures/barricades.yml +++ b/Resources/Prototypes/Entities/Structures/barricades.yml @@ -12,7 +12,7 @@ components: - type: InteractionOutline - type: Sprite - sprite: _White/Structures/barricades.rsi #WWDP edit + sprite: Structures/barricades.rsi state: barricade_full drawdepth: BlastDoors noRot: true @@ -71,7 +71,7 @@ parent: Barricade components: - type: Sprite - sprite: _White/Structures/barricades.rsi #WWDP edit + sprite: Structures/barricades.rsi state: barricade #Directional Barricade @@ -83,7 +83,7 @@ #A bunch of this is taken straight from dirwindows and there is a chance that I may have fucked something up. Probably not though components: - type: Sprite - sprite: _White/Structures/barricades.rsi #WWDP edit + sprite: Structures/barricades.rsi state: barricade_directional noRot: false #Results in smoother rotation when turning the camera, the sprite's dirs are just it rotated anyways so there's no reason to not set this. - type: Construction diff --git a/Resources/Prototypes/Entities/Structures/cargo_telepad.yml b/Resources/Prototypes/Entities/Structures/cargo_telepad.yml index d395235a53..9dc9f77cff 100644 --- a/Resources/Prototypes/Entities/Structures/cargo_telepad.yml +++ b/Resources/Prototypes/Entities/Structures/cargo_telepad.yml @@ -47,3 +47,5 @@ board: CargoTelepadMachineCircuitboard - type: Appearance - type: CollideOnAnchor + - type: NameIdentifier + group: CargoTelepads diff --git a/Resources/Prototypes/Entities/Structures/cryopod.yml b/Resources/Prototypes/Entities/Structures/cryopod.yml index 9063e8b138..bdb8862a82 100644 --- a/Resources/Prototypes/Entities/Structures/cryopod.yml +++ b/Resources/Prototypes/Entities/Structures/cryopod.yml @@ -12,8 +12,8 @@ map: ["base"] - type: UserInterface interfaces: - - key: enum.CryostorageUIKey.Key - type: CryostorageBoundUserInterface + enum.CryostorageUIKey.Key: + type: CryostorageBoundUserInterface - type: ActivatableUI key: enum.CryostorageUIKey.Key - type: AccessReader diff --git a/Resources/Prototypes/Entities/Structures/plastic_flaps.yml b/Resources/Prototypes/Entities/Structures/plastic_flaps.yml index c4ee507395..5d5ff390ba 100644 --- a/Resources/Prototypes/Entities/Structures/plastic_flaps.yml +++ b/Resources/Prototypes/Entities/Structures/plastic_flaps.yml @@ -1,9 +1,7 @@ - type: entity - id: PlasticFlapsClear + id: PlasticFlapsBase parent: BaseStructureDynamic - name: plastic flaps - suffix: Clear - description: Heavy duty, plastic flaps. Definitely can't get past those. No way. + abstract: true placement: mode: SnapgridCenter components: @@ -23,9 +21,10 @@ bounds: "-0.49,-0.49,0.49,0.49" density: 100 mask: - - TabletopMachineMask + - Impassable layer: - MidImpassable + - BulletImpassable - type: Damageable damageContainer: StructuralInorganic damageModifierSet: Metallic @@ -33,22 +32,31 @@ thresholds: - trigger: !type:DamageTrigger - damage: 100 + damage: 50 behaviors: - !type:DoActsBehavior acts: ["Destruction"] - type: IconSmooth key: walls mode: NoSprite + - type: StaticPrice + price: 83 + - type: RequireProjectileTarget + +- type: entity + id: PlasticFlapsClear + parent: PlasticFlapsBase + name: plastic flaps + suffix: Clear + description: Heavy duty, plastic flaps. Definitely can't get past those. No way. + components: - type: Construction graph: PlasticFlapsGraph node: plasticFlaps - - type: StaticPrice - price: 83 - type: entity id: PlasticFlapsOpaque - parent: PlasticFlapsClear + parent: PlasticFlapsBase name: plastic flaps suffix: Opaque description: Heavy duty, plastic flaps. Definitely can't get past those. No way. @@ -61,10 +69,11 @@ bounds: "-0.49,-0.49,0.49,0.49" density: 100 mask: - - TabletopMachineMask + - Impassable layer: - Opaque - MidImpassable + - BulletImpassable - type: Occluder - type: Construction graph: PlasticFlapsGraph @@ -72,7 +81,7 @@ - type: entity id: PlasticFlapsAirtightClear - parent: PlasticFlapsClear + parent: PlasticFlapsBase name: airtight plastic flaps suffix: Airtight, Clear description: Heavy duty, slightly stronger, airtight plastic flaps. Definitely can't get past those. No way. @@ -81,20 +90,17 @@ thresholds: - trigger: !type:DamageTrigger - damage: 150 + damage: 75 behaviors: - !type:DoActsBehavior acts: ["Destruction"] - type: Airtight - - type: Construction - graph: PlasticFlapsGraph - node: airtightFlaps - type: StaticPrice price: 100 - type: entity id: PlasticFlapsAirtightOpaque - parent: PlasticFlapsOpaque + parent: PlasticFlapsBase name: airtight plastic flaps suffix: Airtight, Opaque description: Heavy duty, slightly stronger, airtight plastic flaps. Definitely can't get past those. No way. @@ -103,13 +109,10 @@ thresholds: - trigger: !type:DamageTrigger - damage: 150 + damage: 75 behaviors: - !type:DoActsBehavior acts: ["Destruction"] - type: Airtight - - type: Construction - graph: PlasticFlapsGraph - node: airtightopaqueFlaps - type: StaticPrice price: 100 diff --git a/Resources/Prototypes/Entities/Structures/stairs.yml b/Resources/Prototypes/Entities/Structures/stairs.yml index 8698421516..0ff3b0d7d3 100644 --- a/Resources/Prototypes/Entities/Structures/stairs.yml +++ b/Resources/Prototypes/Entities/Structures/stairs.yml @@ -92,7 +92,7 @@ suffix: Wood components: - type: Sprite - sprite: _White/Structures/stairs.rsi #WWDP edit + sprite: Structures/stairs.rsi state: stairs_wood drawdepth: FloorTiles @@ -102,6 +102,6 @@ suffix: Wood, stage components: - type: Sprite - sprite: _White/Structures/stairs.rsi #WWDP edit + sprite: Structures/stairs.rsi state: stairs_stage_wood drawdepth: FloorTiles diff --git a/Resources/Prototypes/Entities/Tiles/bananium.yml b/Resources/Prototypes/Entities/Tiles/bananium.yml index 9f1703c516..9e8a46b2c3 100644 --- a/Resources/Prototypes/Entities/Tiles/bananium.yml +++ b/Resources/Prototypes/Entities/Tiles/bananium.yml @@ -47,7 +47,7 @@ paralyzeTime: 2 launchForwardsMultiplier: 1.5 - type: StepTrigger - triggerGroups: # WD EDIT + triggerGroups: types: - SlipTile intersectRatio: 0.2 diff --git a/Resources/Prototypes/Entities/Tiles/chasm.yml b/Resources/Prototypes/Entities/Tiles/chasm.yml index c77228c2d5..85bc7b5ab3 100644 --- a/Resources/Prototypes/Entities/Tiles/chasm.yml +++ b/Resources/Prototypes/Entities/Tiles/chasm.yml @@ -14,7 +14,7 @@ blacklist: tags: - Catwalk - triggerGroups: # WD EDIT + triggerGroups: types: - Chasm - type: Transform diff --git a/Resources/Prototypes/Entities/Tiles/lava.yml b/Resources/Prototypes/Entities/Tiles/lava.yml index 5ede7efa39..9d61304af9 100644 --- a/Resources/Prototypes/Entities/Tiles/lava.yml +++ b/Resources/Prototypes/Entities/Tiles/lava.yml @@ -13,7 +13,7 @@ blacklist: tags: - Catwalk - triggerGroups: # WD EDIT + triggerGroups: types: - Lava - type: Lava diff --git a/Resources/Prototypes/Entities/Tiles/liquid_plasma.yml b/Resources/Prototypes/Entities/Tiles/liquid_plasma.yml index 7b33437b46..500286ead3 100644 --- a/Resources/Prototypes/Entities/Tiles/liquid_plasma.yml +++ b/Resources/Prototypes/Entities/Tiles/liquid_plasma.yml @@ -13,7 +13,7 @@ blacklist: tags: - Catwalk - triggerGroups: # WD EDIT + triggerGroups: types: - Lava - type: Lava diff --git a/Resources/Prototypes/Entities/Tiles/shadow_basalt.yml b/Resources/Prototypes/Entities/Tiles/shadow_basalt.yml index d93351c7e2..974a0ac3b7 100644 --- a/Resources/Prototypes/Entities/Tiles/shadow_basalt.yml +++ b/Resources/Prototypes/Entities/Tiles/shadow_basalt.yml @@ -1,7 +1,7 @@ - type: entity id: ShadowBasaltOne name: shadowstone - description: Cold rock + description: Glowing cracks in reality. It's probably fine. placement: mode: SnapgridCenter components: diff --git a/Resources/Prototypes/Flavors/flavors.yml b/Resources/Prototypes/Flavors/flavors.yml index 9f0f6ad678..26190d8791 100644 --- a/Resources/Prototypes/Flavors/flavors.yml +++ b/Resources/Prototypes/Flavors/flavors.yml @@ -589,6 +589,36 @@ flavorType: Complex description: flavor-complex-irish-car-bomb +- type: flavor + id: vodkaredbool + flavorType: Complex + description: flavor-complex-vodka-red-bool + +- type: flavor + id: xenobasher + flavorType: Complex + description: flavor-complex-xeno-basher + +- type: flavor + id: irishbool + flavorType: Complex + description: flavor-complex-irish-bool + +- type: flavor + id: budgetinsulsdrink + flavorType: Complex + description: flavor-complex-budget-insuls-drink + +- type: flavor + id: watermelonwakeup + flavorType: Complex + description: flavor-complex-watermelon-wakeup + +- type: flavor + id: rubberneck + flavorType: Complex + description: flavor-complex-rubberneck + - type: flavor id: blackrussian flavorType: Complex @@ -1053,3 +1083,18 @@ id: violets flavorType: Complex description: flavor-complex-violets + +- type: flavor + id: pyrotton + flavorType: Complex + description: flavor-complex-pyrotton + +- type: flavor + id: mothballs + flavorType: Complex + description: flavor-complex-mothballs + +- type: flavor + id: paintthinner + flavorType: Complex + description: flavor-complex-paint-thinner \ No newline at end of file diff --git a/Resources/Prototypes/GameRules/cargo_gifts.yml b/Resources/Prototypes/GameRules/cargo_gifts.yml index 799805272d..3787f4e603 100644 --- a/Resources/Prototypes/GameRules/cargo_gifts.yml +++ b/Resources/Prototypes/GameRules/cargo_gifts.yml @@ -4,7 +4,7 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 5 startDelay: 10 duration: 120 earliestStart: 20 @@ -24,11 +24,10 @@ noSpawn: true components: - type: StationEvent - weight: 6 + weight: 2 startDelay: 10 duration: 240 - minimumPlayers: 50 - earliestStart: 40 + earliestStart: 20 - type: CargoGiftsRule description: cargo-gift-pizza-large sender: cargo-gift-default-sender @@ -44,7 +43,7 @@ noSpawn: true components: - type: StationEvent - weight: 4 + weight: 5 startDelay: 10 duration: 240 earliestStart: 30 @@ -90,7 +89,7 @@ noSpawn: true components: - type: StationEvent - weight: 8 + weight: 6 startDelay: 10 duration: 120 minimumPlayers: 30 @@ -132,7 +131,7 @@ noSpawn: true components: - type: StationEvent - weight: 6 + weight: 4 startDelay: 10 duration: 120 earliestStart: 10 @@ -154,7 +153,7 @@ noSpawn: true components: - type: StationEvent - weight: 3 + weight: 4 startDelay: 10 duration: 120 earliestStart: 20 @@ -174,7 +173,7 @@ noSpawn: true components: - type: StationEvent - weight: 2 + weight: 3 startDelay: 10 duration: 120 earliestStart: 20 diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 66a8f6ada8..4923e399dd 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -4,9 +4,8 @@ noSpawn: true components: - type: StationEvent - weight: 12 + weight: 8 startDelay: 30 - reoccurrenceDelay: 8 duration: 35 - type: AnomalySpawnRule @@ -16,9 +15,8 @@ noSpawn: true components: - type: StationEvent - weight: 5 + weight: 8 startDelay: 30 - reoccurrenceDelay: 5 duration: 35 - type: BluespaceArtifactRule @@ -28,10 +26,9 @@ noSpawn: true components: - type: StationEvent - weight: 1 - maxOccurrences: 4 # Very annoying, makes containers unusable + weight: 2 + reoccurrenceDelay: 5 earliestStart: 1 - reoccurrenceDelay: 15 duration: 1 - type: BluespaceLockerRule @@ -41,10 +38,9 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 7 duration: 1 - minimumPlayers: 7 - reoccurrenceDelay: 5 + minimumPlayers: 15 - type: BreakerFlipRule - type: entity @@ -55,9 +51,8 @@ - type: StationEvent startAnnouncement: true minimumPlayers: 25 - weight: 5 + weight: 3 duration: 1 - reoccurrenceDelay: 5 - type: BureaucraticErrorRule - type: entity @@ -70,7 +65,6 @@ minimumPlayers: 15 weight: 5 duration: 1 - reoccurrenceDelay: 5 - type: ClericalErrorRule - type: entity @@ -79,10 +73,9 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 5 duration: 1 - minimumPlayers: 15 - reoccurrenceDelay: 25 + minimumPlayers: 10 - type: RandomEntityStorageSpawnRule prototype: MobSkeletonCloset @@ -92,10 +85,10 @@ noSpawn: true components: - type: StationEvent - weight: 2 + weight: 6.5 duration: 1 - earliestStart: 45 - reoccurrenceDelay: 60 + earliestStart: 40 + reoccurrenceDelay: 20 minimumPlayers: 20 - type: RandomSpawnRule prototype: SpawnPointGhostDragon @@ -106,14 +99,13 @@ noSpawn: true components: - type: StationEvent - weight: 3 + weight: 6 duration: 1 - earliestStart: 45 - reoccurrenceDelay: 45 - minimumPlayers: 20 + earliestStart: 30 + reoccurrenceDelay: 20 + minimumPlayers: 30 - type: NinjaSpawnRule -# TODO there's already a glimmer revenant rule. One of them might be broken. - type: entity parent: BaseGameRule id: RevenantSpawn @@ -127,16 +119,16 @@ - type: RandomSpawnRule prototype: MobRevenant -- type: entity - id: FalseAlarm - parent: BaseGameRule - noSpawn: true - components: - - type: StationEvent - weight: 10 - duration: 1 - reoccurrenceDelay: 4 # Please no 10 false alarms in a row. - - type: FalseAlarmRule +# disabled until event is rewritten to be more interesting +#- type: entity +# id: FalseAlarm +# parent: BaseGameRule +# noSpawn: true +# components: +# - type: StationEvent +# weight: 15 +# duration: 1 +# - type: FalseAlarmRule - type: entity id: GasLeak @@ -146,10 +138,7 @@ - type: StationEvent startAnnouncement: true endAnnouncement: true - earliestStart: 10 - reoccurrenceDelay: 7 - minimumPlayers: 5 - weight: 10 + weight: 8 startDelay: 20 - type: GasLeakRule @@ -160,9 +149,8 @@ components: - type: StationEvent earliestStart: 15 - reoccurrenceDelay: 10 minimumPlayers: 15 - weight: 5 + weight: 7 startDelay: 50 duration: 240 - type: KudzuGrowthRule @@ -174,9 +162,8 @@ components: - type: StationEvent earliestStart: 30 - reoccurrenceDelay: 5 weight: 7.5 - minimumPlayers: 7 #Enough to hopefully have at least one engineering guy + minimumPlayers: 10 #Enough to hopefully have at least one engineering guy startAnnouncement: true endAnnouncement: true duration: null #ending is handled by MeteorSwarmRule @@ -192,8 +179,7 @@ startAnnouncement: true startDelay: 10 earliestStart: 15 - reoccurrenceDelay: 3 - weight: 5 + weight: 6 duration: 50 - type: VentCrittersRule entries: @@ -203,6 +189,11 @@ prob: 0.02 - id: MobMouse2 prob: 0.02 + - id: MobMouseCancer + prob: 0.001 + specialEntries: + - id: SpawnPointGhostRatKing + prob: 0.001 - type: entity id: CockroachMigration @@ -212,9 +203,8 @@ - type: StationEvent startAnnouncement: true startDelay: 10 - weight: 5 + weight: 6 duration: 50 - reoccurrenceDelay: 15 # Cockroaches en masse are utmost annoying to deal with. - type: VentCrittersRule entries: - id: MobCockroach @@ -222,43 +212,18 @@ - id: MobMothroach prob: 0.008 -# TODO this is the same as mouse migration, but with different announcer. -- type: entity - id: VentCritters - parent: BaseGameRule - noSpawn: true - components: - - type: StationEvent - startAnnouncement: true - startDelay: 10 - earliestStart: 15 - reoccurrenceDelay: 3 - weight: 5 - duration: 60 - - type: VentCrittersRule - entries: - - id: MobMouse - prob: 0.02 - - id: MobMouse1 - prob: 0.02 - - id: MobMouse2 - prob: 0.02 - - id: MobPibbleVent - prob: 0.005 - - type: entity id: PowerGridCheck parent: BaseGameRule noSpawn: true components: - type: StationEvent - weight: 10 + weight: 5 startAnnouncement: true endAnnouncement: true startDelay: 24 duration: 60 maxDuration: 120 - reoccurrenceDelay: 2 # Gives a chance for multiple checks in a row, but not in parallel - type: PowerGridCheckRule - type: entity @@ -267,10 +232,9 @@ noSpawn: true components: - type: StationEvent - weight: 5 + weight: 6 duration: 1 - reoccurrenceDelay: 10 - maxOccurrences: 3 # Annoying and rarely if ever interesting + maxOccurrences: 1 # this event has diminishing returns on interesting-ness, so we cap it - type: RandomSentienceRule - type: entity @@ -279,12 +243,11 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 8 startAnnouncement: true endAnnouncement: true duration: 120 maxDuration: 240 - reoccurrenceDelay: 5 - type: SolarFlareRule onlyJamHeadsets: true affectedChannels: @@ -301,19 +264,6 @@ lightBreakChancePerSecond: 0.0003 doorToggleChancePerSecond: 0.001 -# - type: entity # DeltaV - replaced terminator with paradox anomaly in midroundantag rule -# parent: BaseGameRule -# id: TerminatorSpawn -# noSpawn: true -# components: -# - type: StationEvent -# weight: 8 -# duration: 1 -# earliestStart: 30 -# minimumPlayers: 20 -# - type: RandomSpawnRule -# prototype: SpawnPointGhostTerminator - - type: entity id: VentClog parent: BaseGameRule @@ -322,7 +272,6 @@ - type: StationEvent startAnnouncement: true earliestStart: 15 - reoccurrenceDelay: 5 minimumPlayers: 15 weight: 5 startDelay: 50 @@ -338,7 +287,6 @@ startAnnouncement: true startDelay: 10 earliestStart: 20 - reoccurrenceDelay: 12 minimumPlayers: 15 weight: 5 duration: 60 @@ -360,7 +308,6 @@ startAnnouncement: true startDelay: 10 earliestStart: 20 - reoccurrenceDelay: 15 minimumPlayers: 15 weight: 5 duration: 60 @@ -369,67 +316,22 @@ - id: MobGiantSpiderAngry prob: 0.05 -# Weaker versions of the above - type: entity - id: SlimesSpawnWeak - parent: SlimesSpawn - noSpawn: true - components: - - type: StationEvent - minimumPlayers: 1 - - type: VentCrittersRule - entries: - - id: MobAdultSlimesBlueAngry - prob: 0.005 - - id: MobAdultSlimesGreenAngry - prob: 0.005 - - id: MobAdultSlimesYellowAngry - prob: 0.005 - -- type: entity - id: SpiderSpawnWeak - parent: SpiderSpawn - noSpawn: true - components: - - type: StationEvent - minimumPlayers: 1 - - type: VentCrittersRule - entries: - - id: MobGiantSpiderAngry - prob: 0.01 - -# - type: entity # DeltaV - Prevent normal spawning of MobClownSpider -# id: SpiderClownSpawn -# parent: BaseGameRule -# noSpawn: true -# components: -# - type: StationEvent -# startAnnouncement: true -# startDelay: 10 -# earliestStart: 20 -# minimumPlayers: 15 -# weight: 1 -# duration: 60 -# - type: VentCrittersRule -# entries: -# - id: MobClownSpider -# prob: 0.05 - -- type: entity - id: OneirophageSpawn + id: SpiderClownSpawn parent: BaseGameRule noSpawn: true components: - type: StationEvent - id: VentCritters - earliestStart: 15 - minimumPlayers: 15 - weight: 4 + startAnnouncement: false + startDelay: 10 + earliestStart: 20 + minimumPlayers: 20 + weight: 1.5 duration: 60 - type: VentCrittersRule entries: - - id: MobGiantSpiderVampireAngry - prob: 0.01 + - id: MobClownSpider + prob: 0.05 - type: entity id: ZombieOutbreak @@ -437,9 +339,8 @@ noSpawn: true components: - type: StationEvent - earliestStart: 60 - reoccurrenceDelay: 60 - minimumPlayers: 15 + earliestStart: 50 + minimumPlayers: 30 weight: 2 duration: 1 - type: ZombieRule @@ -472,13 +373,12 @@ noSpawn: true components: - type: StationEvent - earliestStart: 60 - weight: 3 - minimumPlayers: 15 - reoccurrenceDelay: 45 + earliestStart: 35 + weight: 5.5 + minimumPlayers: 20 duration: 1 - type: LoadMapRule - mapPath: /Maps/Shuttles/striker.yml + preloadedGrid: ShuttleStriker - type: NukeopsRule roundEndBehavior: Nothing - type: AntagSelection @@ -501,15 +401,39 @@ - type: NukeopsRole prototype: Nukeops +- type: entity + id: SleeperAgentsRule + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + earliestStart: 25 + weight: 8 + minimumPlayers: 15 + reoccurrenceDelay: 30 + startAnnouncement: false + - type: AlertLevelInterceptionRule + - type: TraitorRule + - type: AntagSelection + definitions: + - prefRoles: [ Traitor ] + min: 1 + max: 2 + playerRatio: 10 + mindComponents: + - type: TraitorRole + prototype: Traitor + - type: entity id: MassHallucinations parent: BaseGameRule noSpawn: true components: - type: StationEvent - weight: 10 + weight: 7 duration: 150 maxDuration: 300 + reoccurrenceDelay: 30 - type: MassHallucinationsRule minTimeBetweenIncidents: 0.1 maxTimeBetweenIncidents: 300 @@ -517,18 +441,18 @@ sounds: collection: Paracusia -#- type: entity # DeltaV - Why does this exist?? -# id: ImmovableRodSpawn -# parent: BaseGameRule -# noSpawn: true -# components: -# - type: StationEvent -# startAnnouncement: true -# weight: 5 -# duration: 1 -# earliestStart: 45 -# minimumPlayers: 20 -# - type: ImmovableRodRule +- type: entity + id: ImmovableRodSpawn + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + startAnnouncement: false + weight: 2 + duration: 1 + earliestStart: 45 + minimumPlayers: 20 + - type: ImmovableRodRule - type: entity noSpawn: true @@ -536,7 +460,7 @@ id: IonStorm components: - type: StationEvent - weight: 10 + weight: 8 reoccurrenceDelay: 20 duration: 1 - type: IonStormRule @@ -548,8 +472,7 @@ components: - type: StationEvent earliestStart: 0 - reoccurrenceDelay: 5 minimumPlayers: 20 + maxOccurrences: 1 # this event has diminishing returns on interesting-ness, so we cap it weight: 5 - type: MobReplacementRule - numberToReplace: 1 diff --git a/Resources/Prototypes/GameRules/midround.yml b/Resources/Prototypes/GameRules/midround.yml index bb870f6007..5fac3e046d 100644 --- a/Resources/Prototypes/GameRules/midround.yml +++ b/Resources/Prototypes/GameRules/midround.yml @@ -12,6 +12,7 @@ - DoorjackObjective - SpiderChargeObjective - TerrorObjective + - MassArrestObjective - NinjaSurviveObjective - type: NinjaRule threats: NinjaThreats @@ -41,24 +42,23 @@ min: 1 max: 3 playerRatio: 1 + lateJoinAdditional: true allowNonHumans: true multiAntagSetting: All startingGear: ThiefGear - components: - - type: Pacified mindComponents: - type: ThiefRole prototype: Thief briefing: sound: "/Audio/Misc/thief_greeting.ogg" -- type: entity - noSpawn: true - parent: BaseGameRule - id: Exterminator - components: - - type: GenericAntagRule - agentName: terminator-round-end-agent-name - objectives: - - TerminateObjective - - ShutDownObjective +#- type: entity +# noSpawn: true +# parent: BaseGameRule +# id: Exterminator +# components: +# - type: GenericAntagRule +# agentName: terminator-round-end-agent-name +# objectives: +# - TerminateObjective +# - ShutDownObjective diff --git a/Resources/Prototypes/GameRules/roundstart.yml b/Resources/Prototypes/GameRules/roundstart.yml index 4651337618..47af18182d 100644 --- a/Resources/Prototypes/GameRules/roundstart.yml +++ b/Resources/Prototypes/GameRules/roundstart.yml @@ -147,7 +147,7 @@ - type: AntagSelection definitions: - prefRoles: [ Traitor ] - max: 12 + max: 8 playerRatio: 10 lateJoinAdditional: true mindComponents: diff --git a/Resources/Prototypes/GameRules/unknown_shuttles.yml b/Resources/Prototypes/GameRules/unknown_shuttles.yml new file mode 100644 index 0000000000..f44bbdcaaa --- /dev/null +++ b/Resources/Prototypes/GameRules/unknown_shuttles.yml @@ -0,0 +1,64 @@ +- type: entity + id: UnknownShuttleCargoLost + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + startAnnouncement: false + weight: 5 + reoccurrenceDelay: 30 + duration: 1 + - type: LoadMapRule + preloadedGrid: ShuttleCargoLost + +- type: entity + id: UnknownShuttleTravelingCuisine + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + startAnnouncement: false + weight: 5 + reoccurrenceDelay: 30 + duration: 1 + - type: LoadMapRule + preloadedGrid: TravelingCuisine + +- type: entity + id: UnknownShuttleDisasterEvacPod + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + startAnnouncement: false + weight: 5 + reoccurrenceDelay: 30 + duration: 1 + - type: LoadMapRule + preloadedGrid: DisasterEvacPod + +- type: entity + id: UnknownShuttleHonki + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + startAnnouncement: false + weight: 2 + reoccurrenceDelay: 30 + duration: 1 + - type: LoadMapRule + preloadedGrid: Honki + +- type: entity + id: UnknownShuttleSyndieEvacPod + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + startAnnouncement: false + weight: 2 + reoccurrenceDelay: 30 + duration: 1 + - type: LoadMapRule + preloadedGrid: SyndieEvacPod diff --git a/Resources/Prototypes/GameRules/variation.yml b/Resources/Prototypes/GameRules/variation.yml index 7424fc2854..2884d5f9d6 100644 --- a/Resources/Prototypes/GameRules/variation.yml +++ b/Resources/Prototypes/GameRules/variation.yml @@ -24,8 +24,8 @@ components: - type: WallReplaceVariationPass - type: EntityReplaceVariationPass - entitiesPerReplacementAverage: 10 - entitiesPerReplacementStdDev: 2 + entitiesPerReplacementAverage: 50 + entitiesPerReplacementStdDev: 10 replacements: - id: WallSolidRust @@ -36,8 +36,8 @@ components: - type: ReinforcedWallReplaceVariationPass - type: EntityReplaceVariationPass - entitiesPerReplacementAverage: 12 - entitiesPerReplacementStdDev: 2 + entitiesPerReplacementAverage: 50 + entitiesPerReplacementStdDev: 10 replacements: - id: WallReinforcedRust diff --git a/Resources/Prototypes/GhostRoleRaffles/deciders.yml b/Resources/Prototypes/GhostRoleRaffles/deciders.yml new file mode 100644 index 0000000000..b23464cf70 --- /dev/null +++ b/Resources/Prototypes/GhostRoleRaffles/deciders.yml @@ -0,0 +1,3 @@ +- type: ghostRoleRaffleDecider + id: default + decider: !type:RngGhostRoleRaffleDecider {} diff --git a/Resources/Prototypes/GhostRoleRaffles/settings.yml b/Resources/Prototypes/GhostRoleRaffles/settings.yml new file mode 100644 index 0000000000..7ed9326ee0 --- /dev/null +++ b/Resources/Prototypes/GhostRoleRaffles/settings.yml @@ -0,0 +1,15 @@ +# for important antag roles (nukie reinforcements, ninja, etc.) +- type: ghostRoleRaffleSettings + id: default + settings: + initialDuration: 30 + joinExtendsDurationBy: 10 + maxDuration: 90 + +# for roles that don't matter too much or are available plentifully (e.g. space carp) +- type: ghostRoleRaffleSettings + id: short + settings: + initialDuration: 10 + joinExtendsDurationBy: 5 + maxDuration: 30 diff --git a/Resources/Prototypes/Guidebook/science.yml b/Resources/Prototypes/Guidebook/science.yml index a21be1678c..a3f3f71ec3 100644 --- a/Resources/Prototypes/Guidebook/science.yml +++ b/Resources/Prototypes/Guidebook/science.yml @@ -7,7 +7,7 @@ - AnomalousResearch - Xenoarchaeology - Robotics - - Psionics # Nyanotrasen - Psionics guidebook + - MachineUpgrading # - AltarsGolemancy # When it's added # Nyanotrasen - Golemancy guidebook - ReverseEngineering # Nyanotrasen - Reverse Engineering guidebook @@ -41,7 +41,6 @@ text: "/ServerInfo/Guidebook/Science/Xenoarchaeology.xml" children: - ArtifactReports - - TraversalDistorter - type: guideEntry id: Robotics @@ -60,6 +59,11 @@ name: guide-entry-traversal-distorter text: "/ServerInfo/Guidebook/Science/TraversalDistorter.xml" +- type: guideEntry + id: MachineUpgrading + name: guide-entry-machine-upgrading + text: "/ServerInfo/Guidebook/Science/MachineUpgrading.xml" + - type: guideEntry id: Cyborgs name: guide-entry-cyborgs diff --git a/Resources/Prototypes/Guidebook/shiftandcrew.yml b/Resources/Prototypes/Guidebook/shiftandcrew.yml index 3c4618902e..66f9e7316d 100644 --- a/Resources/Prototypes/Guidebook/shiftandcrew.yml +++ b/Resources/Prototypes/Guidebook/shiftandcrew.yml @@ -41,3 +41,4 @@ id: Food Recipes name: guide-entry-foodrecipes text: "/ServerInfo/Guidebook/Service/FoodRecipes.xml" + filterEnabled: true diff --git a/Resources/Prototypes/Guidebook/species.yml b/Resources/Prototypes/Guidebook/species.yml index 8fcf5b520e..d9d039ea43 100644 --- a/Resources/Prototypes/Guidebook/species.yml +++ b/Resources/Prototypes/Guidebook/species.yml @@ -11,6 +11,7 @@ - Reptilian - SlimePerson - IPCs + - Harpy - type: guideEntry id: Arachnid @@ -51,3 +52,8 @@ id: IPCs name: species-name-ipc text: "/ServerInfo/Guidebook/Mobs/IPCs.xml" + +- type: guideEntry + id: Harpy + name: species-name-harpy + text: "/ServerInfo/Guidebook/Mobs/Harpy.xml" \ No newline at end of file diff --git a/Resources/Prototypes/Hydroponics/mutations.yml b/Resources/Prototypes/Hydroponics/mutations.yml index 17617f5ee3..6108278a4a 100644 --- a/Resources/Prototypes/Hydroponics/mutations.yml +++ b/Resources/Prototypes/Hydroponics/mutations.yml @@ -6,7 +6,6 @@ reagents: - Omnizine - Nocturine - - Barozine - Lexorin - Honk - BuzzochloricBees diff --git a/Resources/Prototypes/Hydroponics/seeds.yml b/Resources/Prototypes/Hydroponics/seeds.yml index 030c89c8cf..e134d24c26 100644 --- a/Resources/Prototypes/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Hydroponics/seeds.yml @@ -18,11 +18,11 @@ Nutriment: Min: 1 Max: 20 - PotencyDivisor: 20 + potencyDivisor: 20 Flour: Min: 5 Max: 20 - PotencyDivisor: 20 + potencyDivisor: 20 - type: seed id: oat @@ -44,11 +44,11 @@ Nutriment: Min: 1 Max: 20 - PotencyDivisor: 20 + potencyDivisor: 20 Oats: Min: 5 Max: 20 - PotencyDivisor: 20 + potencyDivisor: 20 - type: seed id: banana @@ -73,11 +73,11 @@ Vitamin: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 Nutriment: Min: 1 Max: 2 - PotencyDivisor: 50 + potencyDivisor: 50 - type: seed id: mimana @@ -100,11 +100,11 @@ MuteToxin: Min: 1 Max: 5 - PotencyDivisor: 20 + potencyDivisor: 20 Nutriment: Min: 1 Max: 2 - PotencyDivisor: 50 + potencyDivisor: 50 - type: seed id: carrots @@ -126,15 +126,15 @@ JuiceCarrot: Min: 1 Max: 5 - PotencyDivisor: 20 + potencyDivisor: 20 Oculine: Min: 2 Max: 6 - PotencyDivisor: 20 + potencyDivisor: 20 Vitamin: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 - type: seed id: laughinPea @@ -159,15 +159,15 @@ Nutriment: Min: 1 Max: 3 - PotencyDivisor: 7 + potencyDivisor: 7 Sugar: Min: 1 Max: 10 - PotencyDivisor: 5 + potencyDivisor: 5 Laughter: Min: 1 Max: 10 - PotencyDivisor: 5 + potencyDivisor: 5 - type: seed id: lemon @@ -191,11 +191,11 @@ Nutriment: Min: 1 Max: 5 - PotencyDivisor: 20 + potencyDivisor: 20 Vitamin: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 - type: seed id: lemoon @@ -217,11 +217,11 @@ Vitamin: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 Milk: Min: 8 Max: 20 - PotencyDivisor: 5 + potencyDivisor: 5 - type: seed id: lime @@ -243,11 +243,11 @@ Nutriment: Min: 1 Max: 5 - PotencyDivisor: 20 + potencyDivisor: 20 Vitamin: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 - type: seed id: orange @@ -269,11 +269,11 @@ Nutriment: Min: 1 Max: 5 - PotencyDivisor: 20 + potencyDivisor: 20 Vitamin: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 - type: seed id: pineapple @@ -296,15 +296,15 @@ Nutriment: Min: 1 Max: 20 - PotencyDivisor: 20 + potencyDivisor: 20 Water: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 Vitamin: Min: 1 Max: 2 - PotencyDivisor: 50 + potencyDivisor: 50 - type: seed id: potato @@ -326,11 +326,11 @@ Nutriment: Min: 1 Max: 10 - PotencyDivisor: 10 + potencyDivisor: 10 Vitamin: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 - type: seed id: sugarcane @@ -353,7 +353,7 @@ Sugar: Min: 4 Max: 5 - PotencyDivisor: 5 + potencyDivisor: 5 - type: seed id: towercap @@ -426,15 +426,15 @@ Nutriment: Min: 1 Max: 7 - PotencyDivisor: 14 + potencyDivisor: 14 Vitamin: Min: 1 Max: 3 - PotencyDivisor: 33 + potencyDivisor: 33 Water: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 - type: seed id: blueTomato @@ -460,15 +460,15 @@ Nutriment: Min: 1 Max: 5 - PotencyDivisor: 20 + potencyDivisor: 20 SpaceLube: Min: 5 Max: 15 - PotencyDivisor: 10 + potencyDivisor: 10 Vitamin: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 - type: seed id: bloodTomato @@ -494,11 +494,11 @@ Blood: Min: 1 Max: 10 - PotencyDivisor: 10 + potencyDivisor: 10 Vitamin: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 - type: seed id: eggplant @@ -523,11 +523,11 @@ Nutriment: Min: 1 Max: 10 - PotencyDivisor: 10 + potencyDivisor: 10 Vitamin: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 - type: seed id: cabbage @@ -548,11 +548,11 @@ Nutriment: Min: 1 Max: 10 - PotencyDivisor: 10 + potencyDivisor: 10 Vitamin: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 - type: seed id: garlic @@ -573,15 +573,15 @@ Nutriment: Min: 1 Max: 10 - PotencyDivisor: 10 + potencyDivisor: 10 Vitamin: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 Allicin: Min: 1 Max: 8 - PotencyDivisor: 25 + potencyDivisor: 25 - type: seed id: apple @@ -603,11 +603,11 @@ Nutriment: Min: 1 Max: 10 - PotencyDivisor: 10 + potencyDivisor: 10 Vitamin: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 - type: seed id: corn @@ -631,11 +631,11 @@ Nutriment: Min: 1 Max: 10 - PotencyDivisor: 20 + potencyDivisor: 20 Cornmeal: Min: 5 Max: 15 - PotencyDivisor: 10 + potencyDivisor: 10 - type: seed id: onion @@ -661,15 +661,15 @@ Nutriment: Min: 1 Max: 10 - PotencyDivisor: 10 + potencyDivisor: 10 Vitamin: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 Allicin: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 - type: seed id: onionred @@ -693,15 +693,15 @@ Nutriment: Min: 1 Max: 10 - PotencyDivisor: 10 + potencyDivisor: 10 Vitamin: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 Allicin: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 - type: seed id: chanterelle @@ -726,7 +726,7 @@ Nutriment: Min: 1 Max: 25 - PotencyDivisor: 25 + potencyDivisor: 25 - type: seed id: eggy @@ -750,7 +750,7 @@ Egg: Min: 1 Max: 10 - PotencyDivisor: 10 + potencyDivisor: 10 - type: seed id: cannabis @@ -761,6 +761,8 @@ packetPrototype: CannabisSeeds productPrototypes: - LeavesCannabis + mutationPrototypes: + - rainbowCannabis harvestRepeat: Repeat lifespan: 75 maturation: 8 @@ -775,7 +777,52 @@ THC: Min: 1 Max: 10 - PotencyDivisor: 10 + potencyDivisor: 10 + +- type: seed + id: rainbowCannabis + name: seeds-rainbow-cannabis-name + noun: seeds-noun-seeds + displayName: seeds-rainbow-cannabis-display-name + plantRsi: Objects/Specific/Hydroponics/rainbow_cannabis.rsi + packetPrototype: RainbowCannabisSeeds + productPrototypes: + - LeavesCannabisRainbow + harvestRepeat: Repeat + lifespan: 75 + maturation: 8 + production: 12 + yield: 2 + potency: 20 + growthStages: 3 + waterConsumption: 0.40 + idealLight: 9 + idealHeat: 298 + chemicals: + SpaceDrugs: + Min: 1 + Max: 15 + potencyDivisor: 10 + Lipolicide: + Min: 1 + Max: 15 + potencyDivisor: 10 + MindbreakerToxin: + Min: 1 + Max: 5 + potencyDivisor: 20 + Happiness: + Min: 1 + Max: 5 +# potencyDivisor: 20 +# ColorfulReagent: +# Min: 0 +# Max: 5 +# potencyDivisor: 20 + Psicodine: + Min: 0 + Max: 5 + potencyDivisor: 33 - type: seed id: tobacco @@ -800,7 +847,7 @@ Nicotine: Min: 1 Max: 10 - PotencyDivisor: 10 + potencyDivisor: 10 - type: seed id: nettle @@ -826,7 +873,7 @@ Histamine: Min: 1 Max: 25 - PotencyDivisor: 4 + potencyDivisor: 4 - type: seed id: deathNettle @@ -851,11 +898,11 @@ SulfuricAcid: Min: 1 Max: 15 - PotencyDivisor: 6 + potencyDivisor: 6 FluorosulfuricAcid: Min: 1 Max: 15 - PotencyDivisor: 6 + potencyDivisor: 6 - type: seed id: chili @@ -865,7 +912,7 @@ plantRsi: Objects/Specific/Hydroponics/chili.rsi packetPrototype: ChiliSeeds productPrototypes: - - FoodChili + - FoodChiliPepper mutationPrototypes: - chilly harvestRepeat: Repeat @@ -880,15 +927,15 @@ CapsaicinOil: Min: 1 Max: 10 - PotencyDivisor: 10 + potencyDivisor: 10 Nutriment: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 Vitamin: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 - type: seed id: chilly @@ -898,7 +945,7 @@ plantRsi: Objects/Specific/Hydroponics/chilly.rsi packetPrototype: ChillySeeds productPrototypes: - - FoodChilly + - FoodChillyPepper harvestRepeat: Repeat lifespan: 25 maturation: 6 @@ -911,15 +958,15 @@ Frostoil: Min: 1 Max: 10 - PotencyDivisor: 10 + potencyDivisor: 10 Nutriment: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 Vitamin: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 - type: seed id: poppy @@ -943,11 +990,11 @@ Nutriment: Min: 1 Max: 2 - Potencydivisor: 50 + potencyDivisor: 50 Bicaridine: Min: 1 Max: 20 - PotencyDivisor: 5 + potencyDivisor: 5 - type: seed id: aloe @@ -969,11 +1016,11 @@ Aloe: Min: 1 Max: 10 - PotencyDivisor: 10 + potencyDivisor: 10 Dermaline: Min: 1 Max: 10 - PotencyDivisor: 10 + potencyDivisor: 10 - type: seed id: lily @@ -997,11 +1044,11 @@ Nutriment: Min: 1 Max: 2 - Potencydivisor: 50 + potencyDivisor: 50 Bicaridine: Min: 1 Max: 20 - PotencyDivisor: 5 + potencyDivisor: 5 - type: seed id: lingzhi @@ -1023,11 +1070,11 @@ Ultravasculine: Min: 1 Max: 20 - PotencyDivisor: 5 + potencyDivisor: 5 Epinephrine: Min: 1 Max: 20 - PotencyDivisor: 5 + potencyDivisor: 5 - type: seed id: ambrosiaVulgaris @@ -1051,23 +1098,23 @@ Nutriment: Min: 1 Max: 2 - PotencyDivisor: 10 + potencyDivisor: 10 Bicaridine: Min: 1 Max: 5 - PotencyDivisor: 20 + potencyDivisor: 20 Kelotane: Min: 1 Max: 5 - PotencyDivisor: 20 + potencyDivisor: 20 Desoxyephedrine: Min: 1 Max: 10 - PotencyDivisor: 10 + potencyDivisor: 10 Vitamin: Min: 1 Max: 2 - Potencydivisor: 50 + potencyDivisor: 50 - type: seed id: ambrosiaDeus @@ -1089,19 +1136,19 @@ Nutriment: Min: 1 Max: 2 - PotencyDivisor: 10 + potencyDivisor: 10 Omnizine: # Don't kill me Min: 1 Max: 3 - PotencyDivisor: 35 + potencyDivisor: 35 SpaceDrugs: Min: 1 Max: 5 - PotencyDivisor: 20 + potencyDivisor: 20 Desoxyephedrine: Min: 1 Max: 10 - PotencyDivisor: 10 + potencyDivisor: 10 - type: seed id: galaxythistle @@ -1123,7 +1170,7 @@ Stellibinin: Min: 1 Max: 25 - PotencyDivisor: 4 + potencyDivisor: 4 - type: seed id: flyAmanita @@ -1146,11 +1193,11 @@ Amatoxin: Min: 1 Max: 25 - PotencyDivisor: 4 + potencyDivisor: 4 Nutriment: ## yumby :) Min: 1 Max: 5 - PotencyDivisor: 20 + potencyDivisor: 20 - type: seed id: gatfruit @@ -1172,11 +1219,11 @@ Nutriment: Min: 1 Max: 5 - PotencyDivisor: 20 + potencyDivisor: 20 Sulfur: Min: 1 Max: 5 - PotencyDivisor: 20 + potencyDivisor: 20 - type: seed id: rice @@ -1200,11 +1247,11 @@ Nutriment: Min: 1 Max: 20 - PotencyDivisor: 20 + potencyDivisor: 20 Rice: Min: 5 Max: 20 - PotencyDivisor: 20 + potencyDivisor: 20 - type: seed id: soybeans @@ -1229,7 +1276,7 @@ Nutriment: Min: 1 Max: 2 - PotencyDivisor: 50 + potencyDivisor: 50 - type: seed id: spacemansTrumpet @@ -1251,11 +1298,11 @@ Nutriment: Min: 1 Max: 5 - Potencydivisor: 50 + potencyDivisor: 50 PolypyryliumOligomers: Min: 1 Max: 15 - PotencyDivisor: 5 + potencyDivisor: 5 - type: seed id: koibean @@ -1278,11 +1325,11 @@ Nutriment: Min: 1 Max: 5 - PotencyDivisor: 20 + potencyDivisor: 20 CarpoToxin: Min: 1 Max: 4 - PotencyDivisor: 30 + potencyDivisor: 30 - type: seed id: grape @@ -1303,11 +1350,11 @@ Nutriment: Min: 1 Max: 5 - PotencyDivisor: 20 + potencyDivisor: 20 Vitamin: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 - type: seed id: watermelon @@ -1328,15 +1375,15 @@ Nutriment: Min: 1 Max: 10 - PotencyDivisor: 10 + potencyDivisor: 10 Water: Min: 1 Max: 10 - PotencyDivisor: 10 + potencyDivisor: 10 Vitamin: Min: 1 Max: 5 - PotencyDivisor: 20 + potencyDivisor: 20 - type: seed id: cocoa @@ -1360,11 +1407,11 @@ Vitamin: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 Nutriment: Min: 1 Max: 2 - PotencyDivisor: 50 + potencyDivisor: 50 - type: seed id: berries @@ -1386,11 +1433,11 @@ Nutriment: Min: 2 Max: 5 - PotencyDivisor: 30 + potencyDivisor: 30 Vitamin: Min: 1 Max: 4 - PotencyDivisor: 40 + potencyDivisor: 40 - type: seed id: bungo @@ -1415,11 +1462,11 @@ Nutriment: Min: 5 Max: 10 - PotencyDivisor: 20 + potencyDivisor: 20 Enzyme: Min: 5 Max: 10 - PotencyDivisor: 20 + potencyDivisor: 20 - type: seed id: pea @@ -1446,11 +1493,11 @@ Nutriment: Min: 1 Max: 3 - PotencyDivisor: 33 + potencyDivisor: 33 Vitamin: Min: 1 Max: 2 - PotencyDivisor: 50 + potencyDivisor: 50 - type: seed id: pumpkin @@ -1472,11 +1519,11 @@ PumpkinFlesh: Min: 1 Max: 20 - PotencyDivisor: 5 + potencyDivisor: 5 Vitamin: Min: 1 Max: 5 - PotencyDivisor: 20 + potencyDivisor: 20 - type: seed id: cotton @@ -1487,6 +1534,8 @@ packetPrototype: CottonSeeds productPrototypes: - CottonBol + mutationPrototypes: + - pyrotton lifespan: 25 maturation: 8 production: 3 @@ -1499,5 +1548,31 @@ Fiber: Min: 5 Max: 10 - PotencyDivisor: 20 + potencyDivisor: 20 +- type: seed + id: pyrotton + name: seeds-pyrotton-name + noun: seeds-noun-seeds + displayName: seeds-pyrotton-display-name + plantRsi: Objects/Specific/Hydroponics/pyrotton.rsi + packetPrototype: PyrottonSeeds + productPrototypes: + - PyrottonBol + lifespan: 25 + maturation: 8 + production: 3 + yield: 2 + potency: 5 + idealLight: 8 + growthStages: 3 + waterConsumption: 0.80 + chemicals: + Fiber: + Min: 5 + Max: 10 + potencyDivisor: 20 + Phlogiston: + Min: 4 + Max: 8 + potencyDivisor: 30 diff --git a/Resources/Prototypes/InventoryTemplates/aghost_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/aghost_inventory_template.yml index 6252ad8e99..84806a051a 100644 --- a/Resources/Prototypes/InventoryTemplates/aghost_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/aghost_inventory_template.yml @@ -11,6 +11,7 @@ displayName: ID - name: id slotTexture: id + fullTextureName: template_small slotFlags: IDCARD slotGroup: SecondHotbar stripTime: 6 diff --git a/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml index a0c62b04cb..863d5758ff 100644 --- a/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml @@ -63,6 +63,7 @@ displayName: Suit Storage - name: id slotTexture: id + fullTextureName: template_small slotFlags: IDCARD slotGroup: SecondHotbar stripTime: 6 @@ -72,6 +73,7 @@ displayName: ID - name: belt slotTexture: belt + fullTextureName: template_small slotFlags: BELT slotGroup: SecondHotbar stripTime: 6 @@ -80,6 +82,7 @@ displayName: Belt - name: back slotTexture: back + fullTextureName: template_small slotFlags: BACK slotGroup: SecondHotbar stripTime: 6 @@ -89,6 +92,7 @@ - name: pocket4 slotTexture: web + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -97,6 +101,7 @@ displayName: Pocket 4 - name: pocket3 slotTexture: web + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -112,6 +117,7 @@ displayName: Suit - name: pocket1 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -122,6 +128,7 @@ stripHidden: true - name: pocket2 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -138,4 +145,6 @@ uiWindowPos: 2,0 strippingWindowPos: 2,5 dependsOn: outerClothing + dependsOnComponents: + - type: AllowSuitStorage displayName: Suit Storage diff --git a/Resources/Prototypes/InventoryTemplates/corpse_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/corpse_inventory_template.yml index 41fa7dc375..878ccb3d6b 100644 --- a/Resources/Prototypes/InventoryTemplates/corpse_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/corpse_inventory_template.yml @@ -55,6 +55,7 @@ displayName: Head - name: pocket1 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -65,6 +66,7 @@ stripHidden: true - name: pocket2 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -81,9 +83,12 @@ uiWindowPos: 2,0 strippingWindowPos: 2,5 dependsOn: outerClothing + dependsOnComponents: + - type: AllowSuitStorage displayName: Suit Storage - name: belt slotTexture: belt + fullTextureName: template_small slotFlags: BELT slotGroup: SecondHotbar stripTime: 6 diff --git a/Resources/Prototypes/InventoryTemplates/diona_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/diona_inventory_template.yml index 4bbd18b136..619aefddc3 100644 --- a/Resources/Prototypes/InventoryTemplates/diona_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/diona_inventory_template.yml @@ -56,6 +56,7 @@ displayName: Head - name: pocket1 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -66,6 +67,7 @@ stripHidden: true - name: pocket2 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -82,9 +84,12 @@ uiWindowPos: 2,0 strippingWindowPos: 2,5 dependsOn: outerClothing + dependsOnComponents: + - type: AllowSuitStorage displayName: Suit Storage - name: id slotTexture: id + fullTextureName: template_small slotFlags: IDCARD slotGroup: SecondHotbar stripTime: 6 @@ -94,6 +99,7 @@ displayName: ID - name: belt slotTexture: belt + fullTextureName: template_small slotFlags: BELT slotGroup: SecondHotbar stripTime: 6 @@ -102,6 +108,7 @@ displayName: Belt - name: back slotTexture: back + fullTextureName: template_small slotFlags: BACK slotGroup: SecondHotbar stripTime: 6 diff --git a/Resources/Prototypes/InventoryTemplates/holoclown_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/holoclown_inventory_template.yml index 57dce506ea..7be9c75015 100644 --- a/Resources/Prototypes/InventoryTemplates/holoclown_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/holoclown_inventory_template.yml @@ -3,6 +3,7 @@ slots: - name: pocket1 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -12,6 +13,7 @@ stripHidden: true - name: pocket2 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 diff --git a/Resources/Prototypes/InventoryTemplates/human_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/human_inventory_template.yml index 574ecca35f..ff1447931f 100644 --- a/Resources/Prototypes/InventoryTemplates/human_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/human_inventory_template.yml @@ -62,6 +62,7 @@ displayName: Head - name: pocket1 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -72,6 +73,7 @@ stripHidden: true - name: pocket2 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -88,9 +90,12 @@ uiWindowPos: 2,0 strippingWindowPos: 2,5 dependsOn: outerClothing + dependsOnComponents: + - type: AllowSuitStorage displayName: Suit Storage - name: id slotTexture: id + fullTextureName: template_small slotFlags: IDCARD slotGroup: SecondHotbar stripTime: 6 @@ -100,6 +105,7 @@ displayName: ID - name: belt slotTexture: belt + fullTextureName: template_small slotFlags: BELT slotGroup: SecondHotbar stripTime: 6 @@ -108,6 +114,7 @@ displayName: Belt - name: back slotTexture: back + fullTextureName: template_small slotFlags: BACK slotGroup: SecondHotbar stripTime: 6 diff --git a/Resources/Prototypes/InventoryTemplates/kangaroo_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/kangaroo_inventory_template.yml index fb7dee1ec2..5f81cdebc6 100644 --- a/Resources/Prototypes/InventoryTemplates/kangaroo_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/kangaroo_inventory_template.yml @@ -35,6 +35,7 @@ - name: belt slotTexture: belt + fullTextureName: template_small slotFlags: BELT slotGroup: SecondHotbar stripTime: 6 @@ -47,6 +48,7 @@ - name: pocket1 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -60,6 +62,7 @@ slots: - name: pocket1 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 diff --git a/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml index 5af23dabac..19875f7e1b 100644 --- a/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml @@ -29,6 +29,7 @@ displayName: Jumpsuit - name: id slotTexture: id + fullTextureName: template_small slotFlags: IDCARD slotGroup: SecondHotbar stripTime: 6 @@ -44,6 +45,8 @@ uiWindowPos: 2,0 strippingWindowPos: 2,5 dependsOn: outerClothing + dependsOnComponents: + - type: AllowSuitStorage displayName: Suit Storage - name: outerClothing slotTexture: suit diff --git a/Resources/Prototypes/Language/Species-Specific/diona.yml b/Resources/Prototypes/Language/Species-Specific/diona.yml new file mode 100644 index 0000000000..76b62163ff --- /dev/null +++ b/Resources/Prototypes/Language/Species-Specific/diona.yml @@ -0,0 +1,17 @@ +# Spoken by dionas. +# TODO: Replace this with a much better language. +- type: language + id: RootSpeak + speech: + color: "#ce5e14dd" + fontId: Noganas + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 5 + replacement: + - hs + - zt + - kr + - st + - sh \ No newline at end of file diff --git a/Resources/Prototypes/Language/Species-Specific/harpy.yml b/Resources/Prototypes/Language/Species-Specific/harpy.yml new file mode 100644 index 0000000000..143b089bd1 --- /dev/null +++ b/Resources/Prototypes/Language/Species-Specific/harpy.yml @@ -0,0 +1,116 @@ +- type: language + id: ValyrianStandard + speech: + fontId: Cambria + color: "#008ecc" + obfuscation: + !type:SyllableObfuscation + minSyllables: 2 + maxSyllables: 5 + replacement: + - š + - ž + - ź + - ż + - ö + - ü + - çi + - bü + - ca + - çu + - dü + - do + - fa + - fe + - fi + - gü + - ha + - je + - jü + - la + - le + - li + - me + - mi + - mo + - çe + - nj + - ba + - ce + - da + - fi + - go + - ha + - ji + - ka + - la + - ma + - na + - pa + - ra + - sa + - ta + - wa + - za + - ab + - ed + - if + - og + - up + - yk + - za + - ta + - va + - čk + - žd + - sak + - anz + - emn + - okl + - upn + - bab + - cic + - ded + - fig + - gog + - hib + - juj + - kik + - lal + - mam + - nan + - pap + - rar + - sas + - tat + - wab + - zab + - stras + - bram + - klam + - tram + - stry + - zrak + - deck + - mist + - ale + - ogn + - emt + - brat + - skar + - plik + - klat + - ae + - ai + - au + - ei + - ou + - bl + - dr + - fl + - gr + - pr + - sz + - cz + - zk + - jn diff --git a/Resources/Prototypes/Language/Species-Specific/moth.yml b/Resources/Prototypes/Language/Species-Specific/moth.yml new file mode 100644 index 0000000000..ed0a6009c5 --- /dev/null +++ b/Resources/Prototypes/Language/Species-Specific/moth.yml @@ -0,0 +1,69 @@ +# Spoken by moths. +# TODO: Replace this with a much better language. +- type: language + id: Moffic + speech: + color: "#c7df2edd" + fontId: Copperplate + obfuscation: + !type:SyllableObfuscation + minSyllables: 2 # Replacements are really short + maxSyllables: 4 + replacement: + - år + - i + - går + - sek + - mo + - ff + - ok + - gj + - ø + - gå + - la + - le + - lit + - ygg + - van + - dår + - næ + - møt + - idd + - hvo + - ja + - på + - han + - så + - ån + - det + - att + - nå + - gö + - bra + - int + - tyc + - om + - när + - två + - må + - dag + - sjä + - vii + - vuo + - eil + - tun + - käyt + - teh + - vä + - hei + - huo + - suo + - ää + - ten + - ja + - heu + - stu + - uhr + - kön + - we + - hön \ No newline at end of file diff --git a/Resources/Prototypes/Language/Species-Specific/nekomimetic.yml b/Resources/Prototypes/Language/Species-Specific/nekomimetic.yml new file mode 100644 index 0000000000..3610e5fa50 --- /dev/null +++ b/Resources/Prototypes/Language/Species-Specific/nekomimetic.yml @@ -0,0 +1,60 @@ +# A mess of broken Japanese, spoken by Felinds and Oni +# TODO: Replace this with a much better language. +- type: language + id: Nekomimetic + speech: + color: "#df57aaee" + fontId: Manga + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 3 # May be too long even, we'll see. + replacement: + - neko + - nyan + - mimi + - moe + - mofu + - fuwa + - kyaa + - kawaii + - poka + - munya + - puni + - munyu + - ufufu + - icha + - doki + - kyun + - kusu + - nya + - nyaa + - desu + - kis + - ama + - chuu + - baka + - hewo + - boop + - gato + - kit + - sune + - yori + - sou + - baka + - chan + - san + - kun + - mahou + - yatta + - suki + - usagi + - domo + - ori + - uwa + - zaazaa + - shiku + - puru + - ira + - heto + - etto \ No newline at end of file diff --git a/Resources/Prototypes/Language/Species-Specific/reptilian.yml b/Resources/Prototypes/Language/Species-Specific/reptilian.yml new file mode 100644 index 0000000000..6f9a10efa6 --- /dev/null +++ b/Resources/Prototypes/Language/Species-Specific/reptilian.yml @@ -0,0 +1,117 @@ +# Spoken by Unathi. +- type: language + id: Draconic + speech: + color: "#2aca2add" + obfuscation: + !type:SyllableObfuscation + minSyllables: 2 + maxSyllables: 4 + replacement: + - za + - az + - ze + - ez + - zi + - iz + - zo + - oz + - zu + - uz + - zs + - sz + - ha + - ah + - he + - eh + - hi + - ih + - ho + - oh + - hu + - uh + - hs + - sh + - la + - al + - le + - el + - li + - il + - lo + - ol + - lu + - ul + - ls + - sl + - ka + - ak + - ke + - ek + - ki + - ik + - ko + - ok + - ku + - uk + - ks + - sk + - sa + - as + - se + - es + - si + - is + - so + - os + - su + - us + - ss + - ss + - ra + - ar + - re + - er + - ri + - ir + - ro + - or + - ru + - ur + - rs + - sr + - a + - a + - e + - e + - i + - i + - o + - o + - u + - u + - s + - s + +# Reptilian-Specific "Rare" Language +# !Do Not Make A Translator For This Language. +- type: language + id: Azaziba + speech: + color: "#2aca2add" + obfuscation: + !type:SyllableObfuscation + minSyllables: 2 + maxSyllables: 4 + replacement: + - azs + - zis + - zau + - azua + - skiu + - zuakz + - izo + - aei + - ki + - kut + - zo diff --git a/Resources/Prototypes/Language/Species-Specific/slimeperson.yml b/Resources/Prototypes/Language/Species-Specific/slimeperson.yml new file mode 100644 index 0000000000..a3c1f91a17 --- /dev/null +++ b/Resources/Prototypes/Language/Species-Specific/slimeperson.yml @@ -0,0 +1,17 @@ +# Spoken by slimes. +# TODO: Replace this with a much better language. +- type: language + id: Bubblish + speech: + color: "#00a3e2dd" + fontId: RubikBubbles + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 3 + replacement: + - blob + - plop + - pop + - bop + - boop \ No newline at end of file diff --git a/Resources/Prototypes/Language/Species-Specific/vulpkanin.yml b/Resources/Prototypes/Language/Species-Specific/vulpkanin.yml new file mode 100644 index 0000000000..17a48493a4 --- /dev/null +++ b/Resources/Prototypes/Language/Species-Specific/vulpkanin.yml @@ -0,0 +1,68 @@ +# Spoken by the Vulpkanin race. +# TODO: Replace this with a much better language. +- type: language + id: Canilunzt + speech: + color: "#d69b3dcc" + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 4 + replacement: + - rur + - ya + - cen + - rawr + - bar + - kuk + - tek + - qat + - uk + - wu + - vuh + - tah + - tch + - schz + - auch + - ist + - ein + - entch + - zwichs + - tut + - mir + - wo + - bis + - es + - vor + - nic + - gro + - enem + - zandt + - tzch + - noch + - hel + - ischt + - far + - wa + - baram + - iereng + - tech + - lach + - sam + - mak + - lich + - gen + - or + - ag + - eck + - gec + - stag + - onn + - bin + - ket + - jarl + - vulf + - einech + - cresthz + - azunein + - ghzth \ No newline at end of file diff --git a/Resources/Prototypes/Language/Standard/elyran.yml b/Resources/Prototypes/Language/Standard/elyran.yml new file mode 100644 index 0000000000..c2c90e7b6f --- /dev/null +++ b/Resources/Prototypes/Language/Standard/elyran.yml @@ -0,0 +1,86 @@ +- type: language + id: Elyran + speech: + color: "#8282fbaa" + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 4 + replacement: + - af + - if + - ba + - ta + - tha + - id + - jem + - ha + - kha + - dal + - dhl + - ra + - zay + - sen + - um + - shn + - sid + - ad + - ta + - za + - ayn + - gha + - zir + - yn + - fa + - qaf + - iam + - mim + - al + - ja + - non + - ha + - waw + - ya + - hem + - zah + - hml + - ks + - ini + - da + - ks + - iga + - ih + - la + - ulf + - xe + - ayw + - sit + - ah + - aarah + - jalaa + - sirt + - kurt + - turhk + - ust + - irk + - kir + - mir + - ach + - oglu + - bolu + - shek + - she + - ghoz + - miya + - ejdan + - haaz + - quq + - taab + - shanha + - an + - saa + - seh + - an' + - e' + - a' + - em' \ No newline at end of file diff --git a/Resources/Prototypes/Language/Standard/freespeak.yml b/Resources/Prototypes/Language/Standard/freespeak.yml new file mode 100644 index 0000000000..831c2a67ff --- /dev/null +++ b/Resources/Prototypes/Language/Standard/freespeak.yml @@ -0,0 +1,259 @@ +- type: language + id: Freespeak + speech: + color: "#597d35" + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 3 + replacement: + - a + - aan + - aas + - ab + - aba + - ad + - aee + - aft + - ag + - ai + - aise + - ak + - akee + - aq + - ar + - ata + - aur + - aus + - ba + - baat + - bach + - bad + - bahe + - band + - be + - ben + - ber + - bhaa + - bhu + - bra + - burt + - cap + - cer + - ch + - cha + - chaar + - chale + - chalo + - chil + - com + - da + - daa + - daaj + - dat + - de + - dee + - dhaa + - di + - die + - dik + - din + - diz + - do + - dos + - dosh + - durch + - eer + - ek + - er + - es + - fal + - fang + - fra + - fun + - ga + - gan + - gao + - gee + - geet + - gern + - gir + - gon + - gren + - gri + - gu + - guda + - ha + - haa + - hai + - hain + - har + - hat + - he + - hee + - heer + - hekt + - heu + - hit + - hn + - ho + - hua + - huk + - hul + - ich + - ig + - in + - isch + - ja + - jaa + - jad + - jan + - jao + - jar + - jas + - jee + - jiao + - jin + - jing + - un + - ka + - kaha + - kana + - kar + - kara + - karo + - ke + - kee + - keln + - kha + - khada + - khe + - khi + - ko + - koo + - ky + - la + - laa + - laat + - lad + - lada + - lana + - lane + - le + - lee + - leiden + - leis + - len + - lie + - lo + - maa + - maan + - mod + - most + - muj + - mujhe + - mukt + - na + - naya + - ne + - nee + - net + - neta + - nir + - nka + - oon + - oop + - pa + - paa + - pet + - phen + - phot + - pi + - plo + - pra + - que + - ra + - raa + - rahe + - raho + - ran + - rana + - rar + - re + - ri + - rie + - rin + - ro + - rona + - rosh + - rtiv + - saa + - saal + - saath + - san + - santu + - sch + - se + - sen + - sh + - sha + - shee + - shi + - shn + - sht + - shuo + - soch + - sol + - soo + - ssa + - ster + - suk + - sur + - ta + - taan + - tak + - taka + - tal + - tan + - tar + - ten + - tend + - th + - tho + - tili + - to + - ton + - tr + - tu + - tum + - tung + - udaa + - ugr + - unge + - ut + - va + - vaa + - vaad + - vaib + - ve + - ven + - ver + - vi + - vis + - vol + - wic + - wu + - wut + - xi + - xiao + - ya + - yah + - yon + - you + - zas + - ze + - zhu + - zi + - zo + - zorn + - zt diff --git a/Resources/Prototypes/Language/Standard/solcommon.yml b/Resources/Prototypes/Language/Standard/solcommon.yml new file mode 100644 index 0000000000..88c5470154 --- /dev/null +++ b/Resources/Prototypes/Language/Standard/solcommon.yml @@ -0,0 +1,258 @@ +- type: language + id: SolCommon + speech: + color: "#8282fbaa" + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 4 + replacement: + - a + - abe + - ade + - ai + - an + - ana + - ba + - bae + - bai + - bang + - bao + - bei + - ben + - beo + - bi + - bian + - bing + - bo + - bu + - bugu + - bun + - cai + - can + - cao + - cau + - chan + - chen + - cheong + - chiu + - chong + - chyo + - da + - dan + - dao + - de + - deun + - duo + - eon + - eun + - eusi + - feng + - fu + - ga + - gak + - gan + - gang + - gao + - ge + - gei + - gen + - geo + - gil + - go + - gou + - gu + - gua + - gui + - gul + - gun + - guo + - gwi + - ha + - hai + - hal + - han + - hap + - hara + - he + - hego + - hen + - hon + - hoo + - hu + - hua + - hun + - hyeong + - i + - jae + - jeo + - jeon + - ji + - jia + - jian + - jiang + - jie + - jong + - ju + - jue + - juede + - jung + - juzi + - ka + - kang + - kawa + - ke + - keun + - ki + - kin + - ko + - kore + - kou + - ku + - kuda + - kun + - kyu + - lang + - lao + - leng + - leung + - li + - lian + - liang + - lie + - ling + - lizi + - lleo + - long + - lu + - ma + - mah + - me + - mei + - meinu + - men + - meng + - meog + - meoni + - mi + - mian + - min + - mo + - mot + - mu + - mun + - na + - nae + - nai + - nari + - ne + - ni + - nii + - nim + - nin + - nop + - nu + - o + - oba + - oga + - oji + - oka + - ong + - op + - oto + - pa + - pai + - pang + - pin + - ping + - pong + - pu + - pum + - pye + - qi + - qie + - qing + - ra + - rei + - ren + - ri + - ru + - ruan + - sa + - sai + - sama + - san + - sang + - se + - sei + - sen + - seo + - seon + - seong + - shang + - shen + - sheng + - shi + - sho + - shui + - si + - su + - sui + - sum + - sun + - swi + - ta + - tae + - tai + - tame + - tamen + - tan + - te + - tei + - ti + - tian + - to + - ton + - tsu + - ul + - wa + - wan + - wang + - wei + - wo + - xi + - xian + - xiao + - xing + - xiong + - xiu + - xu + - xuan + - xue + - ya + - yan + - yang + - yeong + - yi + - yige + - yin + - ying + - yiqi + - yong + - you + - yu + - yuli + - yuyi + - zai + - zao + - zhan + - zhang + - zhe + - zhen + - zheng + - zhuo + - zi + - zo + - zu + - zun + - zuo \ No newline at end of file diff --git a/Resources/Prototypes/Language/Standard/taucetibasic.yml b/Resources/Prototypes/Language/Standard/taucetibasic.yml new file mode 100644 index 0000000000..96426f6c24 --- /dev/null +++ b/Resources/Prototypes/Language/Standard/taucetibasic.yml @@ -0,0 +1,256 @@ +# The "Default Language" other than Universal. +- type: language + id: TauCetiBasic + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 3 + replacement: + - a + - ado + - ago + - aj + - ajn + - al + - alt + - am + - amas + - an + - ang + - ante + - ap + - ard + - arma + - aro + - as + - aur + - aut + - aw + - ba + - bal + - bao + - be + - beau + - bel + - bi + - bit + - blu + - bo + - bod + - boj + - bojn + - bu + - but + - ca + - caj + - ce + - cer + - chun + - ci + - cion + - coj + - cor + - da + - daj + - dan + - de + - den + - dis + - do + - dor + - dorm + - eco + - ego + - ek + - eks + - en + - ero + - es + - est + - et + - eve + - fa + - fe + - fel + - fla + - foj + - fra + - fraz + - fros + - ful + - fut + - ga + - gan + - gar + - gi + - gis + - go + - gran + - ha + - han + - hav + - hom + - hong + - hu + - hum + - hushi + - ia + - iaj + - ica + - id + - idon + - il + - in + - ing + - io + - is + - iton + - iza + - ja + - ji + - jirou + - joj + - ka + - kaj + - kajo + - kan + - ke + - ket + - ki + - kna + - krio + - ku + - kui + - kuk + - kun + - kur + - la + - laca + - leng + - les + - li + - liao + - lib + - ling + - lis + - lo + - lon + - long + - lu + - lud + - ma + - mal + - man + - me + - mego + - mero + - mi + - mia + - min + - mo + - moj + - mola + - mon + - mul + - ne + - ner + - ni + - nio + - nu + - of + - oj + - om + - ou + - pe + - pi + - plan + - pli + - po + - por + - post + - pre + - prin + - pru + - pu + - pur + - qiu + - que + - ra + - ras + - re + - ri + - rig + - ril + - ro + - roj + - ron + - roso + - rou + - ru + - sa + - san + - sci + - sek + - shi + - shiia + - shiue + - shiwu + - shu + - shui + - si + - siaj + - sku + - so + - som + - sti + - str + - stre + - su + - suno + - ta + - tan + - tas + - te + - tel + - tem + - the + - ti + - tian + - tita + - tiu + - to + - toj + - ton + - tran + - tre + - tri + - trin + - tro + - trus + - un + - undo + - uno + - uz + - va + - var + - varm + - vas + - ve + - vek + - ven + - ves + - vi + - via + - vin + - vino + - vint + - vir + - von + - vu + - whe + - wu + - yong + - zem + - zo + - zoj + - zon \ No newline at end of file diff --git a/Resources/Prototypes/Language/Standard/tradeband.yml b/Resources/Prototypes/Language/Standard/tradeband.yml new file mode 100644 index 0000000000..96415dc5a6 --- /dev/null +++ b/Resources/Prototypes/Language/Standard/tradeband.yml @@ -0,0 +1,258 @@ +- type: language + id: Tradeband + speech: + color: "#597d35" + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 3 + replacement: + - a + - acc + - ai + - al + - ali + - am + - ama + - ami + - amo + - an + - ang + - arme + - ave + - ba + - bai + - bar + - bat + - bi + - blie + - bris + - ca + - can + - cant + - car + - care + - ce + - ci + - cis + - cit + - cla + - co + - cul + - cur + - curt + - da + - dam + - dans + - de + - di + - dier + - dim + - dins + - dorm + - du + - duro + - e + - eaux + - ec + - ecto + - ees + - ego + - el + - en + - ent + - er + - ere + - eres + - eri + - ero + - es + - et + - ex + - far + - fi + - fic + - fine + - fol + - foll + - fri + - fro + - gen + - gil + - go + - gran + - hab + - ho + - huc + - ia + - iam + - ibus + - idor + - ie + - iens + - ier + - ieur + - iis + - il + - in + - ine + - int + - ir + - is + - ise + - it + - itt + - jar + - je + - jo + - jor + - la + - lar + - lav + - le + - lees + - ler + - les + - li + - lib + - lie + - lo + - lu + - ma + - man + - manu + - mar + - mari + - mas + - me + - mea + - mee + - mejo + - men + - mes + - meum + - meus + - mi + - mier + - min + - mine + - mit + - mo + - moi + - mon + - mons + - mors + - mou + - mul + - na + - nam + - ne + - nee + - nent + - nes + - ni + - nit + - nom + - nu + - num + - o + - oc + - occ + - oja + - om + - omni + - or + - ori + - oro + - os + - ou + - oub + - pa + - par + - pars + - pas + - plu + - pluv + - po + - pol + - pos + - pou + - pous + - pre + - pu + - pug + - pus + - que + - qui + - re + - ri + - ric + - riga + - rito + - ro + - rom + - sa + - sal + - se + - ser + - sers + - ses + - sim + - sion + - so + - sol + - som + - sou + - sper + - sse + - ste + - su + - suis + - sul + - sur + - ta + - tar + - te + - teau + - tem + - temp + - ten + - tene + - tes + - ti + - tibus + - tien + - tion + - to + - tol + - ton + - tons + - tout + - tra + - trai + - tre + - trou + - tuo + - tus + - tut + - ues + - ui + - ul + - um + - un + - upa + - us + - ut + - ux + - va + - vail + - ve + - ven + - veni + - vi + - viam + - vie + - vo + - xus + - za + - zio diff --git a/Resources/Prototypes/Language/animal.yml b/Resources/Prototypes/Language/animal.yml new file mode 100644 index 0000000000..4617820001 --- /dev/null +++ b/Resources/Prototypes/Language/animal.yml @@ -0,0 +1,186 @@ +# Languages spoken by various critters. +- type: language + id: Cat + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 2 + replacement: + - murr + - meow + - purr + - mrow + +- type: language + id: Dog + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 2 + replacement: + - woof + - bark + - ruff + - bork + - raff + - garr + +- type: language + id: Fox + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 2 + replacement: + - ruff + - raff + - garr + - yip + - yap + - myah + +- type: language + id: Xeno + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 8 # I was crazy once + replacement: + - s + - S + +- type: language + id: Monkey + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 8 # They locked me in a room... + replacement: + - o + - k + +- type: language + id: Mouse + obfuscation: + !type:SyllableObfuscation + minSyllables: 2 + maxSyllables: 3 + replacement: + - squ + - eak + - pi + - ep + - chuu + - ee + - fwi + - he + +- type: language + id: Chicken + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 3 + replacement: + - co + - coo + - ot + +- type: language + id: Duck + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 3 + replacement: + - qu + - ack + - quack + +- type: language + id: Cow + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 3 + replacement: + - moo + - mooo + +- type: language + id: Sheep + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 3 + replacement: + - ba + - baa + - aa + +- type: language + id: Kangaroo + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 3 + replacement: + - shre + - ack + - chuu + - choo + +- type: language + id: Pig + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 3 + replacement: + - oink # Please someone come up with something better + +- type: language + id: Crab + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 3 + replacement: + - click + - clack + - ti + - pi + - tap + - cli + - ick + +- type: language + id: Kobold + obfuscation: + !type:SyllableObfuscation + minSyllables: 2 + maxSyllables: 4 + replacement: + - yip + - yap + - gar + - grr + - ar + - scre + - et + - gronk + - hiss + - ss + - ee + +- type: language + id: Hissing + obfuscation: + !type:SyllableObfuscation + minSyllables: 2 + maxSyllables: 4 + replacement: + - hss + - iss + - ss + - is diff --git a/Resources/Prototypes/Language/genericlanguages.yml b/Resources/Prototypes/Language/genericlanguages.yml new file mode 100644 index 0000000000..8d172cdae9 --- /dev/null +++ b/Resources/Prototypes/Language/genericlanguages.yml @@ -0,0 +1,45 @@ +# The universal language. This is technically used as a fallback for simulating the pre-languages +# style of Chat, and is not normally accessible by players. It is however used by characters +# with the Xenoglossy psionic power, as well as Ghosts, and AGhosts. +- type: language + id: Universal + obfuscation: + !type:ReplacementObfuscation + replacement: + - "*incomprehensible*" # Never actually used + +# Used by Robots. +# TODO: Replace this with much better languages. Yes, robots can have languages. +- type: language + id: RobotTalk + speech: + fontId: Monospace + obfuscation: + !type:SyllableObfuscation + minSyllables: 1 + maxSyllables: 10 # Crazy + replacement: + - 0 + - 1 + +# Example of a sign language. Used by the Sign Language trait. +- type: language + id: Sign + speech: + allowRadio: false + requireSpeech: false + color: "#dddddd" + messageWrapOverrides: + Speak: chat-sign-language-message-wrap + Whisper: chat-sign-language-whisper-wrap + speechVerbOverrides: + - chat-speech-verb-sign-1 + - chat-speech-verb-sign-2 + - chat-speech-verb-sign-3 + obfuscation: + !type:ReplacementObfuscation + replacement: + - something + - a cryptic message + - a signal + - a message diff --git a/Resources/Prototypes/Language/languages.yml b/Resources/Prototypes/Language/languages.yml deleted file mode 100644 index 65af93e02d..0000000000 --- a/Resources/Prototypes/Language/languages.yml +++ /dev/null @@ -1,614 +0,0 @@ -# The universal language, assumed if the entity has a UniversalLanguageSpeakerComponent. -# Do not use otherwise. Making an entity explicitly understand/speak this language will NOT have the desired effect. -- type: language - id: Universal - obfuscation: - !type:ReplacementObfuscation - replacement: - - "*incomprehensible*" # Never actually used - -# The common galactic tongue. -- type: language - id: GalacticCommon - obfuscation: - !type:SyllableObfuscation - minSyllables: 1 - maxSyllables: 3 - replacement: - - blah - - blah - - blah - - dingle-doingle - - dingle - - dangle - - jibber-jabber - - jubber - - bleh - - zippity - - zoop - - wibble - - wobble - - wiggle - - yada - - meh - - neh - - nah - - wah - -# Spoken by slimes. -- type: language - id: Bubblish - speech: - color: "#00a3e2dd" - fontId: RubikBubbles - obfuscation: - !type:SyllableObfuscation - minSyllables: 1 - maxSyllables: 3 - replacement: - - blob - - plop - - pop - - bop - - boop - -# Spoken by moths. -- type: language - id: Moffic - speech: - color: "#c7df2edd" - fontId: Copperplate - obfuscation: - !type:SyllableObfuscation - minSyllables: 2 # Replacements are really short - maxSyllables: 4 - replacement: - - år - - i - - går - - sek - - mo - - ff - - ok - - gj - - ø - - gå - - la - - le - - lit - - ygg - - van - - dår - - næ - - møt - - idd - - hvo - - ja - - på - - han - - så - - ån - - det - - att - - nå - - gö - - bra - - int - - tyc - - om - - när - - två - - må - - dag - - sjä - - vii - - vuo - - eil - - tun - - käyt - - teh - - vä - - hei - - huo - - suo - - ää - - ten - - ja - - heu - - stu - - uhr - - kön - - we - - hön - -# Spoken by dionas. -- type: language - id: RootSpeak - speech: - color: "#ce5e14dd" - fontId: Noganas - obfuscation: - !type:SyllableObfuscation - minSyllables: 1 - maxSyllables: 5 - replacement: - - hs - - zt - - kr - - st - - sh - -# A mess of broken Japanese, spoken by Felinds and Oni -- type: language - id: Nekomimetic - speech: - color: "#df57aaee" - fontId: Manga - obfuscation: - !type:SyllableObfuscation - minSyllables: 1 - maxSyllables: 3 # May be too long even, we'll see. - replacement: - - neko - - nyan - - mimi - - moe - - mofu - - fuwa - - kyaa - - kawaii - - poka - - munya - - puni - - munyu - - ufufu - - icha - - doki - - kyun - - kusu - - nya - - nyaa - - desu - - kis - - ama - - chuu - - baka - - hewo - - boop - - gato - - kit - - sune - - yori - - sou - - baka - - chan - - san - - kun - - mahou - - yatta - - suki - - usagi - - domo - - ori - - uwa - - zaazaa - - shiku - - puru - - ira - - heto - - etto - -# Spoken by the Lizard race. -- type: language - id: Draconic - speech: - color: "#2aca2add" - obfuscation: - !type:SyllableObfuscation - minSyllables: 2 - maxSyllables: 4 - replacement: - - za - - az - - ze - - ez - - zi - - iz - - zo - - oz - - zu - - uz - - zs - - sz - - ha - - ah - - he - - eh - - hi - - ih - - ho - - oh - - hu - - uh - - hs - - sh - - la - - al - - le - - el - - li - - il - - lo - - ol - - lu - - ul - - ls - - sl - - ka - - ak - - ke - - ek - - ki - - ik - - ko - - ok - - ku - - uk - - ks - - sk - - sa - - as - - se - - es - - si - - is - - so - - os - - su - - us - - ss - - ss - - ra - - ar - - re - - er - - ri - - ir - - ro - - or - - ru - - ur - - rs - - sr - - a - - a - - e - - e - - i - - i - - o - - o - - u - - u - - s - - s - -# Spoken by the Vulpkanin race. -- type: language - id: Canilunzt - speech: - color: "#d69b3dcc" - obfuscation: - !type:SyllableObfuscation - minSyllables: 1 - maxSyllables: 4 - replacement: - - rur - - ya - - cen - - rawr - - bar - - kuk - - tek - - qat - - uk - - wu - - vuh - - tah - - tch - - schz - - auch - - ist - - ein - - entch - - zwichs - - tut - - mir - - wo - - bis - - es - - vor - - nic - - gro - - enem - - zandt - - tzch - - noch - - hel - - ischt - - far - - wa - - baram - - iereng - - tech - - lach - - sam - - mak - - lich - - gen - - or - - ag - - eck - - gec - - stag - - onn - - bin - - ket - - jarl - - vulf - - einech - - cresthz - - azunein - - ghzth - -# The common language of the Sol system. -- type: language - id: SolCommon - speech: - color: "#8282fbaa" - obfuscation: - !type:SyllableObfuscation - minSyllables: 1 - maxSyllables: 4 - replacement: - - tao - - shi - - tzu - - yi - - com - - be - - is - - i - - op - - vi - - ed - - lec - - mo - - cle - - te - - dis - - e - -- type: language - id: RobotTalk - speech: - fontId: Monospace - obfuscation: - !type:SyllableObfuscation - minSyllables: 1 - maxSyllables: 10 # Crazy - replacement: - - 0 - - 1 - -# Languages spoken by various critters. -- type: language - id: Cat - obfuscation: - !type:SyllableObfuscation - minSyllables: 1 - maxSyllables: 2 - replacement: - - murr - - meow - - purr - - mrow - -- type: language - id: Dog - obfuscation: - !type:SyllableObfuscation - minSyllables: 1 - maxSyllables: 2 - replacement: - - woof - - bark - - ruff - - bork - - raff - - garr - -- type: language - id: Fox - obfuscation: - !type:SyllableObfuscation - minSyllables: 1 - maxSyllables: 2 - replacement: - - ruff - - raff - - garr - - yip - - yap - - myah - -- type: language - id: Xeno - obfuscation: - !type:SyllableObfuscation - minSyllables: 1 - maxSyllables: 8 # I was crazy once - replacement: - - s - - S - -- type: language - id: Monkey - obfuscation: - !type:SyllableObfuscation - minSyllables: 1 - maxSyllables: 8 # They locked me in a room... - replacement: - - o - - k - -- type: language - id: Mouse - obfuscation: - !type:SyllableObfuscation - minSyllables: 2 - maxSyllables: 3 - replacement: - - squ - - eak - - pi - - ep - - chuu - - ee - - fwi - - he - -- type: language - id: Chicken - obfuscation: - !type:SyllableObfuscation - minSyllables: 1 - maxSyllables: 3 - replacement: - - co - - coo - - ot - -- type: language - id: Duck - obfuscation: - !type:SyllableObfuscation - minSyllables: 1 - maxSyllables: 3 - replacement: - - qu - - ack - - quack - -- type: language - id: Cow - obfuscation: - !type:SyllableObfuscation - minSyllables: 1 - maxSyllables: 3 - replacement: - - moo - - mooo - -- type: language - id: Sheep - obfuscation: - !type:SyllableObfuscation - minSyllables: 1 - maxSyllables: 3 - replacement: - - ba - - baa - - aa - -- type: language - id: Kangaroo - obfuscation: - !type:SyllableObfuscation - minSyllables: 1 - maxSyllables: 3 - replacement: - - shre - - ack - - chuu - - choo - -- type: language - id: Pig - obfuscation: - !type:SyllableObfuscation - minSyllables: 1 - maxSyllables: 3 - replacement: - - oink # Please someone come up with something better - -- type: language - id: Crab - obfuscation: - !type:SyllableObfuscation - minSyllables: 1 - maxSyllables: 3 - replacement: - - click - - clack - - ti - - pi - - tap - - cli - - ick - -- type: language - id: Kobold - obfuscation: - !type:SyllableObfuscation - minSyllables: 2 - maxSyllables: 4 - replacement: - - yip - - yap - - gar - - grr - - ar - - scre - - et - - gronk - - hiss - - ss - - ee - -- type: language - id: Hissing - obfuscation: - !type:SyllableObfuscation - minSyllables: 2 - maxSyllables: 4 - replacement: - - hss - - iss - - ss - - is - -# Example of a sign language. Not currently used anyhow. -- type: language - id: Sign - speech: - allowRadio: false - requireSpeech: false - color: "#dddddd" - messageWrapOverrides: - Speak: chat-sign-language-message-wrap - Whisper: chat-sign-language-whisper-wrap - speechVerbOverrides: - - chat-speech-verb-sign-1 - - chat-speech-verb-sign-2 - - chat-speech-verb-sign-3 - obfuscation: - !type:ReplacementObfuscation - replacement: - - something - - a cryptic message to you - - a signal to you - - a message - - a rude expression to you - - a sad expression to you - - a happy expression to you diff --git a/Resources/Prototypes/Loadouts/Categories/categories.yml b/Resources/Prototypes/Loadouts/Categories/categories.yml index 77b1adbe56..94e90b663f 100644 --- a/Resources/Prototypes/Loadouts/Categories/categories.yml +++ b/Resources/Prototypes/Loadouts/Categories/categories.yml @@ -1,11 +1,15 @@ # Alphabetically ordered, except for Uncategorized since it is always first # AUncategorized is always first in subcategories to stay consistent with the root Uncategorized -# AUncategorized is not a spelling mistake, and might have more As added as needed +# AUncategorized is not a spelling mistake, and might have more As added as needed - type: loadoutCategory id: Uncategorized root: true +- type: loadoutCategory + id: Backpacks + root: true + - type: loadoutCategory id: Eyes root: true @@ -27,48 +31,46 @@ root: true subCategories: - JobsAUncategorized + - JobsCargo - JobsCommand + - JobsEngineering + - JobsMedical + - JobsScience + - JobsSecurity + - JobsService - type: loadoutCategory id: JobsAUncategorized - type: loadoutCategory - id: JobsCommand - subCategories: - - JobsCommandAUncategorized - - JobsCommandCaptain - - JobsCommandCE - - JobsCommandCMO - - JobsCommandHOP - - JobsCommandHOS - - JobsCommandQM - - JobsCommandRD - + id: JobsCargo - type: loadoutCategory - id: JobsCommandAUncategorized + id: JobsCommand - type: loadoutCategory - id: JobsCommandCaptain + id: JobsEngineering - type: loadoutCategory - id: JobsCommandCE + id: JobsMedical - type: loadoutCategory - id: JobsCommandCMO + id: JobsScience - type: loadoutCategory - id: JobsCommandHOP + id: JobsSecurity - type: loadoutCategory - id: JobsCommandHOS + id: JobsService + subCategories: + - JobsServiceUncategorized + - JobsServiceBartender - type: loadoutCategory - id: JobsCommandQM + id: JobsServiceUncategorized - type: loadoutCategory - id: JobsCommandRD - + id: JobsServiceBartender - type: loadoutCategory id: Mask diff --git a/Resources/Prototypes/Loadouts/Jobs/Heads/captain.yml b/Resources/Prototypes/Loadouts/Jobs/Heads/captain.yml index b59f044144..47e4310fdf 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Heads/captain.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Heads/captain.yml @@ -1,7 +1,7 @@ - type: loadout id: LoadoutCommandCapNeckMantle - category: JobsCommandCaptain - cost: 2 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -12,8 +12,8 @@ - type: loadout id: LoadoutCommandCapNeckCloak - category: JobsCommandCaptain - cost: 2 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -24,8 +24,8 @@ - type: loadout id: LoadoutCommandCapNeckCloakFormal - category: JobsCommandCaptain - cost: 2 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -36,8 +36,8 @@ - type: loadout id: LoadoutCommandCapJumpsuitFormal - category: JobsCommandCaptain - cost: 3 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -48,8 +48,8 @@ - type: loadout id: LoadoutCommandCapJumpskirtFormal - category: JobsCommandCaptain - cost: 3 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -60,8 +60,8 @@ - type: loadout id: LoadoutCommandCapOuterWinter - category: JobsCommandCaptain - cost: 2 + category: JobsCommand + cost: 1 requirements: - !type:CharacterJobRequirement jobs: @@ -71,8 +71,8 @@ - type: loadout id: LoadoutCommandCapGloves - category: JobsCommandCaptain - cost: 1 + category: JobsCommand + cost: 0 requirements: - !type:CharacterJobRequirement jobs: @@ -82,8 +82,8 @@ - type: loadout id: LoadoutCommandCapHat - category: JobsCommandCaptain - cost: 1 + category: JobsCommand + cost: 0 requirements: - !type:CharacterJobRequirement jobs: @@ -93,8 +93,8 @@ - type: loadout id: LoadoutCommandCapHatCapcap - category: JobsCommandCaptain - cost: 1 + category: JobsCommand + cost: 0 requirements: - !type:CharacterJobRequirement jobs: @@ -104,8 +104,8 @@ - type: loadout id: LoadoutCommandCapHatBeret - category: JobsCommandCaptain - cost: 1 + category: JobsCommand + cost: 0 requirements: - !type:CharacterJobRequirement jobs: @@ -115,8 +115,8 @@ - type: loadout id: LoadoutCommandCapMaskGas - category: JobsCommandCaptain - cost: 1 + category: JobsCommand + cost: 0 requirements: - !type:CharacterJobRequirement jobs: @@ -126,8 +126,8 @@ - type: loadout id: LoadoutCommandCapShoesBootsWinter - category: JobsCommandCaptain - cost: 1 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -138,7 +138,7 @@ - type: loadout id: LoadoutCommandCapItemDrinkFlask - category: JobsCommandCaptain + category: JobsCommand cost: 1 requirements: - !type:CharacterJobRequirement diff --git a/Resources/Prototypes/Loadouts/Jobs/Heads/chiefEngineer.yml b/Resources/Prototypes/Loadouts/Jobs/Heads/chiefEngineer.yml index 187c06119e..bfddc6e383 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Heads/chiefEngineer.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Heads/chiefEngineer.yml @@ -1,7 +1,7 @@ - type: loadout id: LoadoutCommandCENeckMantle - category: JobsCommandCE - cost: 2 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -12,8 +12,8 @@ - type: loadout id: LoadoutCommandCENeckCloak - category: JobsCommandCE - cost: 2 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -24,8 +24,8 @@ - type: loadout id: LoadoutCommandCEOuterWinter - category: JobsCommandCE - cost: 2 + category: JobsCommand + cost: 1 requirements: - !type:CharacterJobRequirement jobs: @@ -35,8 +35,8 @@ - type: loadout id: LoadoutCommandCEShoesBootsWinter - category: JobsCommandCE - cost: 1 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement diff --git a/Resources/Prototypes/Loadouts/Jobs/Heads/chiefMedicalOfficer.yml b/Resources/Prototypes/Loadouts/Jobs/Heads/chiefMedicalOfficer.yml index 8b236a48f4..0c46af7013 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Heads/chiefMedicalOfficer.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Heads/chiefMedicalOfficer.yml @@ -1,7 +1,7 @@ - type: loadout id: LoadoutCommandCMONeckMantle - category: JobsCommandCMO - cost: 2 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -12,8 +12,8 @@ - type: loadout id: LoadoutCommandCMONeckCloak - category: JobsCommandCMO - cost: 2 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -24,8 +24,8 @@ - type: loadout id: LoadoutCommandCMOOuterWinter - category: JobsCommandCMO - cost: 2 + category: JobsCommand + cost: 1 requirements: - !type:CharacterJobRequirement jobs: @@ -35,8 +35,8 @@ - type: loadout id: LoadoutCommandCMOOuterLab - category: JobsCommandCMO - cost: 1 + category: JobsCommand + cost: 0 requirements: - !type:CharacterJobRequirement jobs: @@ -46,8 +46,8 @@ - type: loadout id: LoadoutCommandCMOHatBeret - category: JobsCommandCMO - cost: 1 + category: JobsCommand + cost: 0 requirements: - !type:CharacterJobRequirement jobs: @@ -57,8 +57,8 @@ - type: loadout id: LoadoutCommandCMOShoesBootsWinter - category: JobsCommandCMO - cost: 1 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement diff --git a/Resources/Prototypes/Loadouts/Jobs/Heads/command.yml b/Resources/Prototypes/Loadouts/Jobs/Heads/command.yml index 43c6213049..bf45fb6ed7 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Heads/command.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Heads/command.yml @@ -1,6 +1,6 @@ - type: loadout id: LoadoutCommandGlovesInspection - category: JobsCommandAUncategorized + category: JobsCommand cost: 1 exclusive: true requirements: diff --git a/Resources/Prototypes/Loadouts/Jobs/Heads/headOfPersonnel.yml b/Resources/Prototypes/Loadouts/Jobs/Heads/headOfPersonnel.yml index 44b77d3acd..7bb265dd7b 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Heads/headOfPersonnel.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Heads/headOfPersonnel.yml @@ -1,7 +1,7 @@ - type: loadout id: LoadoutCommandHOPNeckMantle - category: JobsCommandHOP - cost: 2 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -12,8 +12,8 @@ - type: loadout id: LoadoutCommandHOPNeckCloak - category: JobsCommandHOP - cost: 2 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -24,8 +24,8 @@ - type: loadout id: LoadoutCommandHOPJumpsuitTurtleneckBoatswain - category: JobsCommandHOP - cost: 2 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -36,8 +36,8 @@ - type: loadout id: LoadoutCommandHOPJumpsuitMess - category: JobsCommandHOP - cost: 2 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -48,8 +48,8 @@ - type: loadout id: LoadoutCommandHOPJumpskirtMess - category: JobsCommandHOP - cost: 2 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -60,8 +60,8 @@ - type: loadout id: LoadoutcommandHOPOuterCoatFormal - category: JobsCommandHOP - cost: 2 + category: JobsCommand + cost: 0 requirements: - !type:CharacterJobRequirement jobs: @@ -71,8 +71,8 @@ - type: loadout id: LoadoutCommandHOPBackIan - category: JobsCommandHOP - cost: 4 + category: JobsCommand + cost: 2 requirements: - !type:CharacterJobRequirement jobs: @@ -82,8 +82,8 @@ - type: loadout id: LoadoutCommandHOPHatCap - category: JobsCommandHOP - cost: 1 + category: JobsCommand + cost: 0 requirements: - !type:CharacterJobRequirement jobs: @@ -93,8 +93,8 @@ - type: loadout id: LoadoutCommandHOPShoesBootsWinter - category: JobsCommandHOP - cost: 1 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -105,8 +105,8 @@ - type: loadout id: LoadoutCommandHOPBedsheetIan - category: JobsCommandHOP - cost: 2 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement diff --git a/Resources/Prototypes/Loadouts/Jobs/Heads/headOfSecurity.yml b/Resources/Prototypes/Loadouts/Jobs/Heads/headOfSecurity.yml index 89e36caed4..bd2a03f214 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Heads/headOfSecurity.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Heads/headOfSecurity.yml @@ -1,7 +1,7 @@ - type: loadout id: LoadoutCommandHOSNeckMantle - category: JobsCommandHOS - cost: 2 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -12,8 +12,8 @@ - type: loadout id: LoadoutCommandHOSNeckCloak - category: JobsCommandHOS - cost: 2 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -24,8 +24,8 @@ - type: loadout id: LoadoutCommandHOSJumpsuitAlt - category: JobsCommandHOS - cost: 2 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -36,8 +36,8 @@ - type: loadout id: LoadoutCommandHOSJumpsuitBlue - category: JobsCommandHOS - cost: 2 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -48,8 +48,8 @@ - type: loadout id: LoadoutCommandHOSJumpsuitGrey - category: JobsCommandHOS - cost: 2 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -60,8 +60,8 @@ - type: loadout id: LoadoutCommandHOSJumpsuitParade - category: JobsCommandHOS - cost: 3 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -72,8 +72,8 @@ - type: loadout id: LoadoutCommandHOSJumpsuitFormal - category: JobsCommandHOS - cost: 3 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -84,8 +84,8 @@ - type: loadout id: LoadoutCommandHOSJumpskirtAlt - category: JobsCommandHOS - cost: 2 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -96,8 +96,8 @@ - type: loadout id: LoadoutCommandHOSJumpskirtParade - category: JobsCommandHOS - cost: 3 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -108,8 +108,8 @@ - type: loadout id: LoadoutCommandHOSJumpskirtFormal - category: JobsCommandHOS - cost: 3 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -120,8 +120,8 @@ - type: loadout id: LoadoutCommandHOSOuterWinter - category: JobsCommandHOS - cost: 2 + category: JobsCommand + cost: 1 requirements: - !type:CharacterJobRequirement jobs: @@ -131,8 +131,8 @@ - type: loadout id: LoadoutCommandHOSOuterTrench - category: JobsCommandHOS - cost: 2 + category: JobsCommand + cost: 1 requirements: - !type:CharacterJobRequirement jobs: @@ -142,8 +142,8 @@ - type: loadout id: LoadoutCommandHOSHatBeret - category: JobsCommandHOS - cost: 1 + category: JobsCommand + cost: 0 requirements: - !type:CharacterJobRequirement jobs: @@ -153,8 +153,8 @@ - type: loadout id: LoadoutCommandHOSHatHoshat - category: JobsCommandHOS - cost: 1 + category: JobsCommand + cost: 0 requirements: - !type:CharacterJobRequirement jobs: @@ -164,8 +164,8 @@ - type: loadout id: LoadoutCommandHOSShoesBootsWinter - category: JobsCommandHOS - cost: 1 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -173,3 +173,97 @@ - HeadOfSecurity items: - ClothingShoesBootsWinterHeadOfSecurity + +# Head of Security Weapon Selection +# Most of these mirror the unique weapons that were previously map-specific items placed in the HoS Office. +# Or are weapons that fit a similar theme of "Rare weapons not normally seen by Security" +- type: loadout + id: LoadoutCommandHoSPulsePistol + category: JobsCommand + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHoSWeapon + - !type:CharacterJobRequirement + jobs: + - HeadOfSecurity + items: + - WeaponPulsePistolHoS + +- type: loadout + id: LoadoutCommandHoSWt550 + category: JobsCommand + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHoSWeapon + - !type:CharacterJobRequirement + jobs: + - HeadOfSecurity + items: + - WeaponSubMachineGunWt550HoS + +- type: loadout + id: LoadoutCommandHoSKatanaSheath + category: JobsCommand + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHoSWeapon + - !type:CharacterJobRequirement + jobs: + - HeadOfSecurity + items: + - ClothingBeltKatanaSheathFilledHoS + +- type: loadout + id: LoadoutCommandHoSC20r + category: JobsCommand + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHoSWeapon + - !type:CharacterJobRequirement + jobs: + - HeadOfSecurity + items: + - WeaponSubMachineGunC20rHoS + +- type: loadout + id: LoadoutCommandHoSBulldog + category: JobsCommand + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHoSWeapon + - !type:CharacterJobRequirement + jobs: + - HeadOfSecurity + items: + - WeaponShotgunBulldogHoS + +- type: loadout + id: LoadoutCommandHoSEnergySword + category: JobsCommand + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHoSWeapon + - !type:CharacterJobRequirement + jobs: + - HeadOfSecurity + items: + - EnergySwordHoS + +- type: loadout + id: LoadoutCommandHoSEnergyGun + category: JobsCommand + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHoSWeapon + - !type:CharacterJobRequirement + jobs: + - HeadOfSecurity + items: + - WeaponEnergyGunMultiphase diff --git a/Resources/Prototypes/Loadouts/Jobs/Heads/quarterMaster.yml b/Resources/Prototypes/Loadouts/Jobs/Heads/quarterMaster.yml index 62d872cea2..0dd45eb3f5 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Heads/quarterMaster.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Heads/quarterMaster.yml @@ -1,7 +1,7 @@ # What? This isn't a thing?? :( # - type: loadout # id: LoadoutCommandQMNeckMantle -# category: JobsCommandQM +# category: JobsCommand # cost: 2 # exclusive: true # requirements: @@ -13,8 +13,8 @@ - type: loadout id: LoadoutCommandQMNeckCloak - category: JobsCommandQM - cost: 2 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -25,8 +25,8 @@ - type: loadout id: LoadoutCommandQMUniformTurtleneck - category: JobsCommandQM - cost: 2 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -37,8 +37,8 @@ - type: loadout id: LoadoutCommandQMUniformTurtleneckSkirt - category: JobsCommandQM - cost: 2 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement @@ -49,8 +49,8 @@ - type: loadout id: LoadoutCommandQMHeadSoft - category: JobsCommandQM - cost: 1 + category: JobsCommand + cost: 0 requirements: - !type:CharacterJobRequirement jobs: @@ -60,8 +60,8 @@ - type: loadout id: LoadoutCommandQMShoesBootsWinter - category: JobsCommandQM - cost: 1 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement diff --git a/Resources/Prototypes/Loadouts/Jobs/Heads/researchDirector.yml b/Resources/Prototypes/Loadouts/Jobs/Heads/researchDirector.yml index 6448f4a151..0ec43fc3a7 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Heads/researchDirector.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Heads/researchDirector.yml @@ -1,53 +1,97 @@ +# Outer + - type: loadout - id: LoadoutCommandRDNeckMantle - category: JobsCommandRD - cost: 2 + id: LoadoutCommandRDOuterWinter + category: JobsCommand + cost: 1 + requirements: + - !type:CharacterJobRequirement + jobs: + - ResearchDirector + items: + - ClothingOuterWinterRD + +- type: loadout + id: LoadoutCommandRDOuterMysta + category: JobsCommand + cost: 0 + requirements: + - !type:CharacterJobRequirement + jobs: + - ResearchDirector + items: + - ClothingOuterCoatRndMysta + +# Head + +- type: loadout + id: LoadoutCommandRDHeadHatBeretMysta + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement jobs: - ResearchDirector items: - - ClothingNeckMantleRD + - ClothingHeadHatBeretMysta - type: loadout - id: LoadoutCommandRDNeckCloak - category: JobsCommandRD - cost: 2 + id: LoadoutCommandRDHeadHoodMysta + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement jobs: - ResearchDirector items: - - ClothingNeckCloakRd + - ClothingHeadHoodMysta + +# Neck - type: loadout - id: LoadoutCommandRDOuterWinter - category: JobsCommandRD - cost: 2 + id: LoadoutCommandRDNeckMantle + category: JobsCommand + cost: 0 + exclusive: true requirements: - !type:CharacterJobRequirement jobs: - ResearchDirector items: - - ClothingOuterWinterRD + - ClothingNeckMantleRD - type: loadout - id: LoadoutCommandRDOuterMysta - category: JobsCommandRD - cost: 2 + id: LoadoutCommandRDNeckCloak + category: JobsCommand + cost: 0 + exclusive: true requirements: - !type:CharacterJobRequirement jobs: - ResearchDirector items: - - ClothingOuterCoatRndMysta + - ClothingNeckCloakRd + +- type: loadout + id: LoadoutCommandRDNeckCloakMystagogue + category: JobsCommand + cost: 0 + exclusive: true + requirements: + - !type:CharacterJobRequirement + jobs: + - ResearchDirector + items: + - ClothingNeckCloakMystagogue + +# Shoes - type: loadout id: LoadoutCommandRDShoesBootsWinter - category: JobsCommandRD - cost: 1 + category: JobsCommand + cost: 0 exclusive: true requirements: - !type:CharacterJobRequirement diff --git a/Resources/Prototypes/Loadouts/Jobs/cargo.yml b/Resources/Prototypes/Loadouts/Jobs/cargo.yml index 2bec0b7c0a..7e9c525e40 100644 --- a/Resources/Prototypes/Loadouts/Jobs/cargo.yml +++ b/Resources/Prototypes/Loadouts/Jobs/cargo.yml @@ -1,10 +1,12 @@ # Cargo technician - type: loadout id: LoadoutCargoOuterWinterCargo - category: JobsAUncategorized - cost: 2 + category: JobsCargo + cost: 1 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterCargo - !type:CharacterJobRequirement jobs: - CargoTechnician @@ -13,10 +15,12 @@ - type: loadout id: LoadoutCargoShoesBootsWinterCargo - category: JobsAUncategorized - cost: 1 + category: JobsCargo + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutShoesCargo - !type:CharacterJobRequirement jobs: - CargoTechnician @@ -27,10 +31,12 @@ - type: loadout id: LoadoutCargoOuterWinterMiner - category: JobsAUncategorized - cost: 2 + category: JobsCargo + cost: 1 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterCargo - !type:CharacterJobRequirement jobs: - SalvageSpecialist @@ -39,10 +45,12 @@ - type: loadout id: LoadoutCargoNeckGoliathCloak - category: JobsAUncategorized - cost: 2 + category: JobsCargo + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeckCargo - !type:CharacterJobRequirement jobs: - SalvageSpecialist @@ -51,3 +59,14 @@ min: 36000 # 10 hours items: - ClothingNeckCloakGoliathCloak + +- type: loadout + id: LoadoutCargoWeaponsCrusherDagger + category: JobsCargo + cost: 2 + requirements: + - !type:CharacterJobRequirement + jobs: + - SalvageSpecialist + items: + - WeaponCrusherDagger diff --git a/Resources/Prototypes/Loadouts/Jobs/engineering.yml b/Resources/Prototypes/Loadouts/Jobs/engineering.yml index 94f018e583..2bf857c85f 100644 --- a/Resources/Prototypes/Loadouts/Jobs/engineering.yml +++ b/Resources/Prototypes/Loadouts/Jobs/engineering.yml @@ -1,9 +1,11 @@ - type: loadout id: LoadoutEngineeringUniformHazard - category: JobsAUncategorized - cost: 2 + category: JobsEngineering + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsEngineering - !type:CharacterJobRequirement jobs: - StationEngineer @@ -12,10 +14,12 @@ - type: loadout id: LoadoutEngineeringOuterHazard - category: JobsAUncategorized - cost: 2 + category: JobsEngineering + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterEngineering - !type:CharacterJobRequirement jobs: - StationEngineer @@ -24,10 +28,12 @@ - type: loadout id: LoadoutEngineeringUniformJumpskirtSenior - category: JobsAUncategorized - cost: 2 + category: JobsEngineering + cost: 1 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsEngineering - !type:CharacterJobRequirement jobs: - StationEngineer @@ -45,10 +51,12 @@ - type: loadout id: LoadoutEngineeringUniformJumpsuitSenior - category: JobsAUncategorized - cost: 2 + category: JobsEngineering + cost: 1 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsEngineering - !type:CharacterJobRequirement jobs: - StationEngineer @@ -66,10 +74,12 @@ - type: loadout id: LoadoutEngineeringChickenSuit # :) - category: JobsAUncategorized - cost: 3 + category: JobsEngineering + cost: 1 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterEngineering - !type:CharacterJobRequirement jobs: - AtmosphericTechnician @@ -79,10 +89,12 @@ - type: loadout id: LoadoutEngineeringEyesMeson - category: JobsAUncategorized - cost: 2 + category: JobsEngineering + cost: 1 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyesEngineering - !type:CharacterJobRequirement jobs: - StationEngineer @@ -92,10 +104,12 @@ - type: loadout id: LoadoutEngineeringHeadBeret - category: JobsAUncategorized - cost: 1 + category: JobsEngineering + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadEngineering - !type:CharacterJobRequirement jobs: - StationEngineer @@ -106,10 +120,12 @@ - type: loadout id: LoadoutEngineeringHeadHardhatBlue - category: JobsAUncategorized - cost: 2 + category: JobsEngineering + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadEngineering - !type:CharacterJobRequirement jobs: - StationEngineer @@ -119,10 +135,12 @@ - type: loadout id: LoadoutEngineeringHeadHardhatOrange - category: JobsAUncategorized - cost: 2 + category: JobsEngineering + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadEngineering - !type:CharacterJobRequirement jobs: - StationEngineer @@ -132,10 +150,12 @@ - type: loadout id: LoadoutEngineeringHeadHardhatYellow - category: JobsAUncategorized - cost: 2 + category: JobsEngineering + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadEngineering - !type:CharacterJobRequirement jobs: - StationEngineer @@ -145,10 +165,12 @@ - type: loadout id: LoadoutEngineeringHeadHardhatWhite - category: JobsAUncategorized - cost: 2 + category: JobsEngineering + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadEngineering - !type:CharacterJobRequirement jobs: - StationEngineer @@ -158,10 +180,12 @@ - type: loadout id: LoadoutEngineeringHeadHardhatRed - category: JobsAUncategorized - cost: 2 + category: JobsEngineering + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadEngineering - !type:CharacterJobRequirement jobs: - StationEngineer diff --git a/Resources/Prototypes/Loadouts/Jobs/medical.yml b/Resources/Prototypes/Loadouts/Jobs/medical.yml index 33d6ff36da..6a2d5fb9d2 100644 --- a/Resources/Prototypes/Loadouts/Jobs/medical.yml +++ b/Resources/Prototypes/Loadouts/Jobs/medical.yml @@ -1,9 +1,11 @@ - type: loadout id: LoadoutMedicalGlovesNitrile - category: JobsAUncategorized - cost: 1 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutGlovesMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -16,10 +18,12 @@ - type: loadout id: LoadoutMedicalOuterLabcoat - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -29,10 +33,12 @@ - type: loadout id: LoadoutMedicalNeckStethoscope - category: JobsAUncategorized - cost: 1 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeckMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -43,10 +49,12 @@ - type: loadout id: LoadoutMedicalUniformScrubsBlue - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -58,10 +66,12 @@ - type: loadout id: LoadoutMedicalUniformScrubsGreen - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -73,10 +83,12 @@ - type: loadout id: LoadoutMedicalUniformScrubsPurple - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -88,10 +100,12 @@ - type: loadout id: LoadoutMedicalUniformScrubsCyan - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -103,10 +117,12 @@ - type: loadout id: LoadoutMedicalUniformScrubsBlack - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -118,10 +134,12 @@ - type: loadout id: LoadoutMedicalUniformScrubsPink - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -133,10 +151,12 @@ - type: loadout id: LoadoutMedicalUniformScrubsCybersun - category: JobsAUncategorized - cost: 3 + category: JobsMedical + cost: 1 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -147,10 +167,12 @@ - type: loadout id: LoadoutMedicalOuterCybersunWindbreaker - category: JobsAUncategorized - cost: 5 + category: JobsMedical + cost: 3 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -161,10 +183,12 @@ - type: loadout id: LoadoutMedicalOuterLabcoatChem - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterMedical - !type:CharacterJobRequirement jobs: - Chemist @@ -173,7 +197,7 @@ - type: loadout id: LoadoutMedicalItemHandLabeler - category: JobsAUncategorized + category: JobsMedical exclusive: true requirements: - !type:CharacterJobRequirement @@ -184,10 +208,12 @@ - type: loadout id: LoadoutMedicalUniformParamedicJumpsuit - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsMedical - !type:CharacterJobRequirement jobs: - Paramedic @@ -196,10 +222,12 @@ - type: loadout id: LoadoutMedicalUniformParamedicJumpskirt - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsMedical - !type:CharacterJobRequirement jobs: - Paramedic @@ -208,10 +236,12 @@ - type: loadout id: LoadoutMedicalUniformJumpskirtSenior - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 1 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -232,10 +262,12 @@ - type: loadout id: LoadoutMedicalUniformJumpsuitSenior - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 1 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -256,10 +288,12 @@ - type: loadout id: LoadoutMedicalHeadNurse - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -268,10 +302,12 @@ - type: loadout id: LoadoutMedicalHeadBeretSeniorPhysician - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 1 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -292,10 +328,12 @@ - type: loadout id: LoadoutMedicalHeadSurgcapBlue - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -307,10 +345,12 @@ - type: loadout id: LoadoutMedicalHeadSurgcapPurple - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -322,10 +362,12 @@ - type: loadout id: LoadoutMedicalHeadSurgcapGreen - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -337,10 +379,12 @@ - type: loadout id: LoadoutMedicalHeadSurgcapCyan - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -352,10 +396,12 @@ - type: loadout id: LoadoutMedicalHeadSurgcapBlack - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -367,10 +413,12 @@ - type: loadout id: LoadoutMedicalHeadSurgcapPink - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -382,10 +430,12 @@ - type: loadout id: LoadoutMedicalHeadSurgcapWhite - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -397,10 +447,12 @@ - type: loadout id: LoadoutMedicalHeadSurgcapCybersun - category: JobsAUncategorized - cost: 3 + category: JobsMedical + cost: 1 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -411,10 +463,12 @@ - type: loadout id: LoadoutMedicalEyesHudMedical - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyesMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -427,10 +481,12 @@ - type: loadout id: LoadoutMedicalEyesEyepatchHudMedical - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyesMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -443,10 +499,12 @@ - type: loadout id: LoadoutMedicalEyesHudMedicalPrescription - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyesMedical - !type:CharacterJobRequirement jobs: - MedicalDoctor @@ -462,10 +520,12 @@ - type: loadout id: LoadoutMedicalEyesGlassesChemical - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyesMedical - !type:CharacterJobRequirement jobs: - Chemist @@ -474,10 +534,12 @@ - type: loadout id: LoadoutMedicalBedsheetMedical - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 1 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeckMedical - !type:CharacterDepartmentRequirement departments: - Medical @@ -487,10 +549,12 @@ # Chemist PPE gear - type: loadout id: LoadoutMedicalUniformJumpsuitChemShirt - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsMedical - !type:CharacterJobRequirement jobs: - Chemist @@ -499,10 +563,12 @@ - type: loadout id: LoadoutMedicalNeckTieChem - category: JobsAUncategorized - cost: 1 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeckMedical - !type:CharacterJobRequirement jobs: - Chemist @@ -511,10 +577,12 @@ - type: loadout id: LoadoutMedicalShoesEnclosedChem - category: JobsAUncategorized - cost: 1 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutShoesMedical - !type:CharacterJobRequirement jobs: - Chemist @@ -523,10 +591,12 @@ - type: loadout id: LoadoutMedicalOuterApronChemist - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterMedical - !type:CharacterJobRequirement jobs: - Chemist @@ -535,10 +605,12 @@ - type: loadout id: LoadoutMedicalEyesGlassesChemist - category: JobsAUncategorized - cost: 2 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyesMedical - !type:CharacterJobRequirement jobs: - Chemist @@ -547,10 +619,12 @@ - type: loadout id: LoadoutMedicalHandsGlovesChemist - category: JobsAUncategorized - cost: 1 + category: JobsMedical + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutGlovesMedical - !type:CharacterJobRequirement jobs: - Chemist diff --git a/Resources/Prototypes/Loadouts/Jobs/science.yml b/Resources/Prototypes/Loadouts/Jobs/science.yml index 8a1a2710c2..9a9526f83f 100644 --- a/Resources/Prototypes/Loadouts/Jobs/science.yml +++ b/Resources/Prototypes/Loadouts/Jobs/science.yml @@ -1,9 +1,13 @@ +# Uniforms + - type: loadout id: LoadoutScienceUniformJumpskirtSenior - category: JobsAUncategorized - cost: 2 + category: JobsScience + cost: 1 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsScience - !type:CharacterJobRequirement jobs: - Scientist @@ -15,10 +19,12 @@ - type: loadout id: LoadoutScienceUniformJumpsuitSenior - category: JobsAUncategorized - cost: 2 + category: JobsScience + cost: 1 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsScience - !type:CharacterJobRequirement jobs: - Scientist @@ -28,12 +34,72 @@ items: - ClothingUniformJumpsuitSeniorResearcher +- type: loadout + id: LoadoutScienceUniformJumpskirtRoboticist + category: JobsScience + cost: 1 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsScience + - !type:CharacterJobRequirement + jobs: + - Scientist + items: + - ClothingUniformJumpskirtRoboticist + +- type: loadout + id: LoadoutScienceUniformJumpsuitRoboticist + category: JobsScience + cost: 1 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsScience + - !type:CharacterJobRequirement + jobs: + - Scientist + items: + - ClothingUniformJumpsuitRoboticist + +- type: loadout + id: LoadoutScienceUniformJumpsuitMonasticRobeDark + category: JobsScience + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsScience + - !type:CharacterJobRequirement + jobs: + - Chaplain + items: + - ClothingUniformJumpsuitMonasticRobeDark + +- type: loadout + id: LoadoutScienceUniformJumpsuitMonasticRobeLight + category: JobsScience + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsScience + - !type:CharacterJobRequirement + jobs: + - Chaplain + items: + - ClothingUniformJumpsuitMonasticRobeLight + +# Outer + - type: loadout id: LoadoutScienceOuterCoat - category: JobsAUncategorized - cost: 2 + category: JobsScience + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterScience - !type:CharacterJobRequirement jobs: - Scientist @@ -44,10 +110,12 @@ - type: loadout id: LoadoutScienceOuterLabcoat - category: JobsAUncategorized - cost: 2 + category: JobsScience + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterScience - !type:CharacterJobRequirement jobs: - Scientist @@ -56,12 +124,42 @@ items: - ClothingOuterCoatLab +- type: loadout + id: LoadoutSciencegOuterCoatRobo + category: JobsScience + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterScience + - !type:CharacterJobRequirement + jobs: + - Scientist + items: + - ClothingOuterCoatRobo + +- type: loadout + id: LoadoutScienceOuterWinterSci + category: JobsScience + cost: 1 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterScience + - !type:CharacterJobRequirement + jobs: + - Scientist + items: + - ClothingOuterWinterSci + - type: loadout id: LoadoutScienceOuterLabcoatSeniorResearcher - category: JobsAUncategorized - cost: 2 + category: JobsScience + cost: 1 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterScience - !type:CharacterJobRequirement jobs: - Scientist @@ -73,10 +171,12 @@ - type: loadout id: LoadoutScienceOuterExplorerLabcoat - category: JobsAUncategorized - cost: 2 + category: JobsScience + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterScience - !type:CharacterJobRequirement jobs: - Scientist @@ -86,11 +186,208 @@ - ClothingOuterExplorerCoat - type: loadout - id: LoadoutScienceHatBeret - category: JobsAUncategorized + id: LoadoutScienceOuterPlagueSuit + category: JobsScience + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterScience + - !type:CharacterJobRequirement + jobs: + - Chaplain + items: + - ClothingOuterPlagueSuit + +- type: loadout + id: LoadoutScienceOuterNunRobe + category: JobsScience + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterScience + - !type:CharacterJobRequirement + jobs: + - Chaplain + items: + - ClothingOuterNunRobe + +- type: loadout + id: LoadoutScienceOuterHoodieBlack + category: JobsScience + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterScience + - !type:CharacterJobRequirement + jobs: + - Chaplain + items: + - ClothingOuterHoodieBlack + +- type: loadout + id: LoadoutScienceOuterHoodieChaplain + category: JobsScience + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterScience + - !type:CharacterJobRequirement + jobs: + - Chaplain + items: + - ClothingOuterHoodieChaplain + +- type: loadout + id: LoadoutScienceOuterWinterCoatMantis + category: JobsScience cost: 1 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterScience + - !type:CharacterJobRequirement + jobs: + - ForensicMantis + items: + - ClothingOuterWinterCoatMantis + +# Gloves + +- type: loadout + id: LoadoutScienceHandsGlovesColorPurple + category: JobsScience + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutGlovesScience + - !type:CharacterJobRequirement + jobs: + - Scientist + - ResearchDirector + items: + - ClothingHandsGlovesColorPurple + +- type: loadout + id: LoadoutScienceHandsGlovesLatex + category: JobsScience + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutGlovesScience + - !type:CharacterJobRequirement + jobs: + - Scientist + - ResearchDirector + items: + - ClothingHandsGlovesLatex + +- type: loadout + id: LoadoutScienceHandsGlovesRobohands + category: JobsScience + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutGlovesScience + - !type:CharacterJobRequirement + jobs: + - Scientist + - ResearchDirector + items: + - ClothingHandsGlovesRobohands + +# Neck + +- type: loadout + id: LoadoutScienceNeckTieSci + category: JobsScience + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeckScience + - !type:CharacterJobRequirement + jobs: + - Scientist + - ResearchDirector + items: + - ClothingNeckTieSci + +- type: loadout + id: LoadoutScienceNeckScarfStripedPurple + category: JobsScience + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeckScience + - !type:CharacterJobRequirement + jobs: + - Scientist + - ResearchDirector + items: + - ClothingNeckScarfStripedPurple + +- type: loadout + id: LoadoutScienceNeckStoleChaplain + category: JobsScience + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeckScience + - !type:CharacterJobRequirement + jobs: + - Chaplain + items: + - ClothingNeckStoleChaplain + +- type: loadout + id: LoadoutScienceNeckScarfStripedBlack + category: JobsScience + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeckScience + - !type:CharacterJobRequirement + jobs: + - Chaplain + items: + - ClothingNeckScarfStripedBlack + +# Mask + +- type: loadout + id: LoadoutScienceMaskPlague + category: JobsScience + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMaskScience + - !type:CharacterJobRequirement + jobs: + - Chaplain + items: + - ClothingMaskPlague + +# Head + +- type: loadout + id: LoadoutScienceHeadHatBeret + category: JobsScience + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadScience - !type:CharacterJobRequirement jobs: - Scientist @@ -99,12 +396,86 @@ items: - ClothingHeadHatBeretRND +- type: loadout + id: LoadoutScienceHeadHatFez + category: JobsScience + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadScience + - !type:CharacterJobRequirement + jobs: + - Chaplain + items: + - ClothingHeadHatFez + +- type: loadout + id: LoadoutScienceHeadHatHoodNunHood + category: JobsScience + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadScience + - !type:CharacterJobRequirement + jobs: + - Chaplain + items: + - ClothingHeadHatHoodNunHood + +- type: loadout + id: LoadoutScienceHeadHatPlaguedoctor + category: JobsScience + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadScience + - !type:CharacterJobRequirement + jobs: + - Chaplain + items: + - ClothingHeadHatPlaguedoctor + +- type: loadout + id: LoadoutScienceHeadHatWitch + category: JobsScience + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadScience + - !type:CharacterJobRequirement + jobs: + - Chaplain + items: + - ClothingHeadHatWitch + +- type: loadout + id: LoadoutScienceHeadHatWitch1 + category: JobsScience + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadScience + - !type:CharacterJobRequirement + jobs: + - Chaplain + items: + - ClothingHeadHatWitch1 + +# Eyes + - type: loadout id: LoadoutScienceEyesHudDiagnostic - category: JobsAUncategorized - cost: 3 + category: JobsScience + cost: 1 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyesScience - !type:CharacterJobRequirement jobs: - Scientist @@ -115,10 +486,12 @@ - type: loadout id: LoadoutScienceEyesEyepatchHudDiag - category: JobsAUncategorized - cost: 3 + category: JobsScience + cost: 1 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyesScience - !type:CharacterJobRequirement jobs: - Scientist @@ -127,14 +500,35 @@ items: - ClothingEyesEyepatchHudDiag +# Shoes + +- type: loadout + id: LoadoutScienceShoesBootsWinterSci + category: JobsScience + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutShoesScience + - !type:CharacterJobRequirement + jobs: + - Scientist + - ResearchAssistant + - ResearchDirector + items: + - ClothingShoesBootsWinterSci + # Robes + - type: loadout id: LoadoutOuterRobeTechPriest category: Outer - cost: 2 + cost: 0 items: - ClothingOuterRobeTechPriest requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterScience - !type:CharacterJobRequirement jobs: - Scientist @@ -144,11 +538,13 @@ - type: loadout id: LoadoutHeadHoodTechPriest category: Head - cost: 1 + cost: 0 exclusive: true items: - ClothingHeadTechPriest requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadScience - !type:CharacterJobRequirement jobs: - Scientist diff --git a/Resources/Prototypes/Loadouts/Jobs/security.yml b/Resources/Prototypes/Loadouts/Jobs/security.yml index 13d11b13fa..5cd39bf534 100644 --- a/Resources/Prototypes/Loadouts/Jobs/security.yml +++ b/Resources/Prototypes/Loadouts/Jobs/security.yml @@ -1,10 +1,12 @@ # Uniforms - type: loadout id: LoadoutSecurityUniformJumpsuitBlue - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsSecurity - !type:CharacterDepartmentRequirement departments: - Security @@ -13,10 +15,12 @@ - type: loadout id: LoadoutSecurityUniformJumpsuitGrey - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsSecurity - !type:CharacterDepartmentRequirement departments: - Security @@ -25,10 +29,12 @@ - type: loadout id: LoadoutSecurityUniformJumpskirtGrey - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsSecurity - !type:CharacterDepartmentRequirement departments: - Security @@ -37,10 +43,12 @@ - type: loadout id: LoadoutSecurityUniformJumpskirtBlue - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsSecurity - !type:CharacterDepartmentRequirement departments: - Security @@ -49,10 +57,12 @@ - type: loadout id: LoadoutSecurityUniformJumpskirtSenior - category: JobsAUncategorized - cost: 2 + category: JobsSecurity + cost: 1 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsSecurity - !type:CharacterJobRequirement jobs: - SecurityOfficer @@ -73,10 +83,12 @@ - type: loadout id: LoadoutSecurityUniformJumpsuitSenior - category: JobsAUncategorized - cost: 2 + category: JobsSecurity + cost: 1 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsSecurity - !type:CharacterJobRequirement jobs: - SecurityOfficer @@ -97,10 +109,12 @@ - type: loadout id: LoadoutUniformJumpsuitWardenBlue - category: JobsAUncategorized - cost: 2 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsSecurity - !type:CharacterJobRequirement jobs: - Warden @@ -109,10 +123,12 @@ - type: loadout id: LoadoutUniformJumpsuitWardenGrey - category: JobsAUncategorized - cost: 2 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsSecurity - !type:CharacterJobRequirement jobs: - Warden @@ -121,10 +137,12 @@ - type: loadout id: LoadoutUniformJumpskirtWardenBlue - category: JobsAUncategorized - cost: 2 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsSecurity - !type:CharacterJobRequirement jobs: - Warden @@ -133,10 +151,12 @@ - type: loadout id: LoadoutUniformJumpskirtWardenGrey - category: JobsAUncategorized - cost: 2 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsSecurity - !type:CharacterJobRequirement jobs: - Warden @@ -145,10 +165,12 @@ - type: loadout id: LoadoutUniformJumpskirtHoSBlue - category: JobsAUncategorized - cost: 2 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsSecurity - !type:CharacterJobRequirement jobs: - HeadOfSecurity @@ -157,10 +179,12 @@ - type: loadout id: LoadoutUniformJumpskirtHoSGrey - category: JobsAUncategorized - cost: 2 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsSecurity - !type:CharacterJobRequirement jobs: - HeadOfSecurity @@ -169,10 +193,12 @@ - type: loadout id: LoadoutUniformJumpsuitSecFormal - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsSecurity - !type:CharacterDepartmentRequirement departments: - Security @@ -181,10 +207,12 @@ - type: loadout id: LoadoutUniformJumpsuitSecSummer - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsSecurity - !type:CharacterDepartmentRequirement departments: - Security @@ -194,10 +222,12 @@ # Mask - type: loadout id: LoadoutSecurityMaskGasSwat - category: JobsAUncategorized - cost: 2 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMaskSecurity - !type:CharacterJobRequirement jobs: - Warden @@ -208,9 +238,12 @@ # Shoes - type: loadout id: LoadoutSecurityShoesJackboots - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 + exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutShoesSecurity - !type:CharacterDepartmentRequirement departments: - Security @@ -219,22 +252,27 @@ - type: loadout id: LoadoutClothingShoesBootsCombat - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 + exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutShoesSecurity - !type:CharacterDepartmentRequirement departments: - Security items: - - ClothingShoesBootsCombat + - ClothingShoesBootsCombatFilled # Eyes - type: loadout id: LoadoutSecurityEyesHudSecurity - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyesSecurity - !type:CharacterDepartmentRequirement departments: - Security @@ -243,10 +281,12 @@ - type: loadout id: ClothingEyesGlassesSunglasses - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyesSecurity - !type:CharacterDepartmentRequirement departments: - Security @@ -255,10 +295,12 @@ - type: loadout id: LoadoutSecurityEyesEyepatchHudSecurity - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyesSecurity - !type:CharacterDepartmentRequirement departments: - Security @@ -267,10 +309,12 @@ - type: loadout id: LoadoutSecurityEyesHudSecurityPrescription - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyesSecurity - !type:CharacterDepartmentRequirement departments: - Security @@ -282,10 +326,12 @@ - type: loadout id: LoadoutClothingEyesGlassesSecurity - category: JobsAUncategorized - cost: 4 + category: JobsSecurity + cost: 2 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEyesSecurity - !type:CharacterDepartmentRequirement departments: - Security @@ -293,15 +339,57 @@ - ClothingEyesGlassesSecurity #Backpack -#Will need to add a backpack category later on, that will be part of an starting inventory loadout refactor. +- type: loadout + id: LoadoutClothingBackSecurity + category: JobsSecurity + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - ClothingBackpackSecurity + +- type: loadout + id: LoadoutClothingBackSecuritySatchel + category: JobsSecurity + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - ClothingBackpackSatchelSecurity + +- type: loadout + id: LoadoutClothingBackSecurityDuffel + category: JobsSecurity + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - ClothingBackpackDuffelSecurity # Head - type: loadout id: LoadoutSecurityHeadHatBeret - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadSecurity - !type:CharacterDepartmentRequirement departments: - Security @@ -310,10 +398,12 @@ - type: loadout id: LoadoutClothingHeadHelmetBasic - category: JobsAUncategorized - cost: 2 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadSecurity - !type:CharacterDepartmentRequirement departments: - Security @@ -322,10 +412,12 @@ - type: loadout id: LoadoutClothingHeadHatBeretBrigmedic - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadSecurity - !type:CharacterJobRequirement jobs: - Brigmedic @@ -334,10 +426,12 @@ - type: loadout id: LoadoutClothingHeadHatBeretCorpsman - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadSecurity - !type:CharacterJobRequirement jobs: - Brigmedic @@ -346,10 +440,12 @@ - type: loadout id: LoadoutClothingHeadHatBeretWarden - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadSecurity - !type:CharacterJobRequirement jobs: - Warden @@ -358,10 +454,12 @@ - type: loadout id: LoadoutClothingHeadHatBeretHoS - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadSecurity - !type:CharacterJobRequirement jobs: - HeadOfSecurity @@ -370,9 +468,11 @@ - type: loadout id: LoadoutSecurityHeadHelmetInsulated - category: JobsAUncategorized - cost: 2 + category: JobsSecurity + cost: 1 requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutHeadSecurity - !type:CharacterDepartmentRequirement departments: - Security @@ -382,10 +482,12 @@ # Belt - type: loadout id: LoadoutSecurityBeltWebbing - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBeltSecurity - !type:CharacterDepartmentRequirement departments: - Security @@ -394,10 +496,12 @@ - type: loadout id: LoadoutClothingBeltCorpsmanWebbing - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBeltSecurity - !type:CharacterJobRequirement jobs: - Brigmedic @@ -406,36 +510,58 @@ - type: loadout id: LoadoutClothingBeltSecurity - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBeltSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - ClothingBeltSecurityFilled + +- type: loadout + id: LoadoutClothingBeltHolster + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBeltSecurity - !type:CharacterDepartmentRequirement departments: - Security items: - - ClothingBeltSecurity + - ClothingBeltHolster #Gloves - type: loadout id: LoadoutClothingHandsGlovesNitrile - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutGlovesSecurity - !type:CharacterJobRequirement jobs: - Brigmedic items: - ClothingHandsGlovesNitrile +# Outerwear + - type: loadout id: LoadoutClothingOuterArmorPlateCarrier - category: JobsAUncategorized - cost: 2 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterSecurity - !type:CharacterDepartmentRequirement departments: - Security @@ -444,22 +570,54 @@ - type: loadout id: LoadoutClothingOuterArmorDuraVest - category: JobsAUncategorized - cost: 2 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterSecurity - !type:CharacterDepartmentRequirement departments: - Security items: - ClothingOuterArmorDuraVest +- type: loadout + id: LoadoutClothingOuterArmorBasic + category: JobsSecurity + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - ClothingOuterArmorBasic + +- type: loadout + id: LoadoutClothingOuterArmorSlim + category: JobsSecurity + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - ClothingOuterArmorBasicSlim + - type: loadout id: LoadoutClothingOuterCoatDetective - category: JobsAUncategorized - cost: 2 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterSecurity - !type:CharacterJobRequirement jobs: - Detective @@ -468,10 +626,12 @@ - type: loadout id: LoadoutOuterVestDetective - category: JobsAUncategorized - cost: 2 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterSecurity - !type:CharacterJobRequirement jobs: - Detective @@ -480,10 +640,12 @@ - type: loadout id: LoadoutClothingOuterCoatWarden - category: JobsAUncategorized - cost: 2 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterSecurity - !type:CharacterJobRequirement jobs: - Warden @@ -492,10 +654,12 @@ - type: loadout id: LoadoutClothingOuterCoatHoSTrench - category: JobsAUncategorized - cost: 2 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterSecurity - !type:CharacterJobRequirement jobs: - HeadOfSecurity @@ -504,10 +668,12 @@ - type: loadout id: LoadoutClothingOuterWinterHoS - category: JobsAUncategorized - cost: 2 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterSecurity - !type:CharacterJobRequirement jobs: - HeadOfSecurity @@ -517,10 +683,12 @@ # Neck - type: loadout id: LoadoutClothingNeckCloakHos - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeckSecurity - !type:CharacterJobRequirement jobs: - HeadOfSecurity @@ -529,10 +697,12 @@ - type: loadout id: LoadoutClothingNeckMantleHOS - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeckSecurity - !type:CharacterJobRequirement jobs: - HeadOfSecurity @@ -541,23 +711,28 @@ - type: loadout id: LoadoutBedsheetBrigmedic - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeckSecurity - !type:CharacterJobRequirement jobs: - Brigmedic items: - BedsheetBrigmedic - -# Equipment +# Equipment, limit 3 selections +# Duplicate "Spare" equipment exists and shares the ItemGroup, for those officers who like to pack a spare magazine in their pocket, outside of what was issued to them. +# I knew a lot of people in my time working IRL Armed security that did this. - type: loadout id: LoadoutSecurityCombatKnife - category: JobsAUncategorized - cost: 2 + category: JobsSecurity + cost: 0 requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEquipmentSecurity - !type:CharacterDepartmentRequirement departments: - Security @@ -566,8 +741,8 @@ - type: loadout id: LoadoutSecurityFlash - category: JobsAUncategorized - cost: 1 + category: JobsSecurity + cost: 0 requirements: - !type:CharacterDepartmentRequirement departments: @@ -576,57 +751,302 @@ - Flash - type: loadout - id: LoadoutSecurityDisabler - category: JobsAUncategorized + id: LoadoutMagazinePistol + category: JobsSecurity + cost: 0 + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 3600 # 1 hours + - !type:CharacterItemGroupRequirement + group: LoadoutEquipmentSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - MagazinePistol + +- type: loadout + id: LoadoutMagazinePistolSpare + category: JobsSecurity cost: 2 requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 3600 # 1 hours + - !type:CharacterItemGroupRequirement + group: LoadoutEquipmentSecurity - !type:CharacterDepartmentRequirement departments: - Security items: - - WeaponDisabler + - MagazinePistol - type: loadout id: LoadoutMagazinePistolRubber - category: JobsAUncategorized + category: JobsSecurity + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEquipmentSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - MagazinePistolRubber + +- type: loadout + id: LoadoutMagazinePistolRubberSpare + category: JobsSecurity cost: 2 requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEquipmentSecurity - !type:CharacterDepartmentRequirement departments: - Security items: - MagazinePistolRubber +- type: loadout + id: LoadoutSpeedLoaderMagnum + category: JobsSecurity + cost: 0 + exclusive: true + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 3600 # 1 hours + - !type:CharacterItemGroupRequirement + group: LoadoutEquipmentSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - SpeedLoaderMagnum + +- type: loadout + id: LoadoutSpeedLoaderMagnumSpare + category: JobsSecurity + cost: 2 + exclusive: true + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 3600 # 1 hours + - !type:CharacterItemGroupRequirement + group: LoadoutEquipmentSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - SpeedLoaderMagnum + - type: loadout id: LoadoutSpeedLoaderMagnumRubber - category: JobsAUncategorized + category: JobsSecurity + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEquipmentSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - SpeedLoaderMagnumRubber + +- type: loadout + id: LoadoutSpeedLoaderMagnumRubberSpare + category: JobsSecurity cost: 2 exclusive: true requirements: - - !type:CharacterJobRequirement - jobs: - - Detective + - !type:CharacterItemGroupRequirement + group: LoadoutEquipmentSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security items: - SpeedLoaderMagnumRubber -# TODO: Make this replace the secoff handgun and make it cheaper -# # Species -# - type: loadout -# id: LoadoutSecurityEquipmentTruncheon -# category: JobsAUncategorized -# cost: 8 -# requirements: -# - !type:CharacterJobRequirement -# jobs: -# - SecurityOfficer -# - Warden -# - HeadOfSecurity -# - Brigmedic -# - !type:CharacterPlaytimeRequirement -# tracker: JobSecurityOfficer -# min: 36000 # 10 hours -# - !type:CharacterSpeciesRequirement -# species: -# - Oni -# items: -# - Truncheon +# Service Weapon, limit 1 selection. +# Security no longer spawns with a weapon automatically, instead they have a free choice of security appropriate Duty Pistol in their loadouts. +# This category is universal to the entire security department by special request, so that players can choose their preferred Duty Pistol even if they aren't playing a security role. +# All lethal options come with a 1 hour security department playtime, as a basic shitter protection. +- type: loadout + id: LoadoutSecurityDisabler + category: JobsSecurity + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponDisabler + +- type: loadout + id: LoadoutSecurityMk58 + category: JobsSecurity + cost: 0 + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 3600 # 1 hours + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponPistolMk58 + +- type: loadout + id: LoadoutSecurityMk58NonLethal + category: JobsSecurity + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponPistolMk58Nonlethal + +- type: loadout + id: LoadoutSecurityRevolver + category: JobsSecurity + cost: 0 + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 3600 # 1 hours + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponRevolverInspector + +- type: loadout + id: LoadoutSecurityRevolverNonLethal + category: JobsSecurity + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponRevolverInspectorNonLethal + +- type: loadout + id: LoadoutSecurityRevolverDeckard + category: JobsSecurity + cost: 1 + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 3600 # 1 hours + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponRevolverDeckard + +- type: loadout + id: LoadoutSecurityRevolverDeckardNonLethal + category: JobsSecurity + cost: 1 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponRevolverDeckardNonLethal + +- type: loadout + id: LoadoutSecurityPistolN1984 + category: JobsSecurity + cost: 2 + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 3600 # 1 hours + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponPistolN1984 + +- type: loadout + id: LoadoutSecurityPistolN1984NonLethal + category: JobsSecurity + cost: 2 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponPistolN1984NonLethal + +- type: loadout + id: LoadoutSecurityPistolViper + category: JobsSecurity + cost: 2 + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 3600 # 1 hours + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponPistolViper + +- type: loadout + id: LoadoutSecurityPistolViperNonLethal + category: JobsSecurity + cost: 2 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + items: + - WeaponPistolViperNonLethal + +- type: loadout + id: LoadoutSecurityEquipmentTruncheon + category: JobsSecurity + cost: 3 + requirements: + - !type:CharacterDepartmentTimeRequirement + department: Security + min: 3600 # 1 hours + - !type:CharacterItemGroupRequirement + group: LoadoutWeaponSecurity + - !type:CharacterDepartmentRequirement + departments: + - Security + - !type:CharacterSpeciesRequirement + species: + - Oni + items: + - Truncheon diff --git a/Resources/Prototypes/Loadouts/Jobs/service.yml b/Resources/Prototypes/Loadouts/Jobs/service.yml index aa08a3312d..bdfa3d8165 100644 --- a/Resources/Prototypes/Loadouts/Jobs/service.yml +++ b/Resources/Prototypes/Loadouts/Jobs/service.yml @@ -1,10 +1,12 @@ # Clown - type: loadout id: LoadoutServiceClownOutfitJester - category: JobsAUncategorized - cost: 3 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsService - !type:CharacterJobRequirement jobs: - Clown @@ -15,10 +17,12 @@ - type: loadout id: LoadoutServiceClownOutfitJesterAlt - category: JobsAUncategorized - cost: 3 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsService - !type:CharacterJobRequirement jobs: - Clown @@ -29,10 +33,12 @@ - type: loadout id: LoadoutServiceClownOuterWinter - category: JobsAUncategorized - cost: 2 + category: JobsServiceUncategorized + cost: 1 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterService - !type:CharacterJobRequirement jobs: - Clown @@ -41,10 +47,12 @@ - type: loadout id: LoadoutServiceClownOuterClownPriest - category: JobsAUncategorized - cost: 2 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterService - !type:CharacterJobRequirement jobs: - Clown @@ -53,10 +61,12 @@ - type: loadout id: LoadoutServiceClownBootsWinter - category: JobsAUncategorized - cost: 1 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutShoesService - !type:CharacterJobRequirement jobs: - Clown @@ -65,10 +75,12 @@ - type: loadout id: LoadoutServiceClownMaskSexy - category: JobsAUncategorized - cost: 1 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMaskService - !type:CharacterJobRequirement jobs: - Clown @@ -77,23 +89,75 @@ - type: loadout id: LoadoutServiceClownBedsheetClown - category: JobsAUncategorized - cost: 2 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeckService - !type:CharacterJobRequirement jobs: - Clown items: - BedsheetClown +# For the most part we dont want people to take this item, so its used as an example of all the things +# you can do with requirements. Point someone to this thing if they ask "how tf do loadout requirements work?" + +- type: loadout + id: LoadoutServiceClownCowToolboxFilled + category: JobsServiceUncategorized + cost: 2 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutEquipmentService + - !type:CharacterLogicXorRequirement + requirements: + - !type:CharacterLogicAndRequirement + requirements: + - !type:CharacterSexRequirement + sex: Male + - !type:CharacterSpeciesRequirement + species: + - Felinid + - !type:CharacterHeightRequirement + min: 110 + max: 122 + - !type:CharacterGenderRequirement + gender: Female + - !type:CharacterTraitRequirement + traits: + - HeavyweightDrunk + - !type:CharacterLogicAndRequirement + requirements: + - !type:CharacterSpeciesRequirement + species: + - Harpy + - !type:CharacterHeightRequirement + min: 170 + - !type:CharacterWeightRequirement + min: 20 + - !type:CharacterSexRequirement + sex: Male + - !type:CharacterJobRequirement + inverted: true # This is the equivalent of !(condition) + jobs: + - Clown + - !type:CharacterJobRequirement + jobs: + - Clown + items: + - CowToolboxFilled + # Mime - type: loadout id: LoadoutServiceMimeOuterWinter - category: JobsAUncategorized - cost: 2 + category: JobsServiceUncategorized + cost: 1 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutOuterService - !type:CharacterJobRequirement jobs: - Mime @@ -102,10 +166,12 @@ - type: loadout id: LoadoutServiceMimeMaskSad - category: JobsAUncategorized - cost: 1 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMaskService - !type:CharacterJobRequirement jobs: - Mime @@ -114,10 +180,12 @@ - type: loadout id: LoadoutServiceMimeMaskScared - category: JobsAUncategorized - cost: 1 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMaskService - !type:CharacterJobRequirement jobs: - Mime @@ -126,10 +194,12 @@ - type: loadout id: LoadoutServiceMimeMaskSexy - category: JobsAUncategorized - cost: 1 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMaskService - !type:CharacterJobRequirement jobs: - Mime @@ -138,10 +208,12 @@ - type: loadout id: LoadoutServiceMimeShoesBootsWinter - category: JobsAUncategorized - cost: 1 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutShoesService - !type:CharacterJobRequirement jobs: - Mime @@ -150,10 +222,12 @@ - type: loadout id: LoadoutServiceMimeBedsheetMime - category: JobsAUncategorized - cost: 2 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNeckService - !type:CharacterJobRequirement jobs: - Mime @@ -163,23 +237,97 @@ # Bartender - type: loadout id: LoadoutServiceBartenderUniformPurple - category: JobsAUncategorized - cost: 2 + category: JobsServiceBartender + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsService - !type:CharacterJobRequirement jobs: - Bartender items: - ClothingUniformJumpsuitBartenderPurple +- type: loadout + id: LoadoutServiceBartenderArmorDuraVest + category: JobsServiceBartender + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBartenderOuterwear + - !type:CharacterJobRequirement + jobs: + - Bartender + items: + - ClothingOuterArmorDuraVest + +- type: loadout + id: LoadoutServiceBartenderBoxBeanbags + category: JobsServiceBartender + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBartenderAmmo + - !type:CharacterJobRequirement + jobs: + - Bartender + items: + - BoxBeanbag + +- type: loadout + id: LoadoutServiceBartenderBoxLightRifleRubber + category: JobsServiceBartender + cost: 1 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBartenderAmmo + - !type:CharacterJobRequirement + jobs: + - Bartender + items: + - MagazineBoxLightRifleRubber + +- type: loadout + id: LoadoutServiceBartenderShotgunDoubleBarreledRubber + category: JobsServiceBartender + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBartenderWeapon + - !type:CharacterJobRequirement + jobs: + - Bartender + items: + - WeaponShotgunDoubleBarreledRubber + +- type: loadout + id: LoadoutServiceBartenderMosinRubber + category: JobsServiceBartender + cost: 3 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBartenderWeapon + - !type:CharacterJobRequirement + jobs: + - Bartender + items: + - WeaponSniperMosinRubber + # Botanist - type: loadout id: LoadoutServiceBotanistUniformOveralls - category: JobsAUncategorized - cost: 2 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsService - !type:CharacterJobRequirement jobs: - Botanist @@ -189,10 +337,12 @@ # Lawyer - type: loadout id: LoadoutServiceLawyerUniformBlueSuit - category: JobsAUncategorized - cost: 2 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsService - !type:CharacterJobRequirement jobs: - Lawyer @@ -201,10 +351,12 @@ - type: loadout id: LoadoutServiceLawyerUniformBlueSkirt - category: JobsAUncategorized - cost: 2 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsService - !type:CharacterJobRequirement jobs: - Lawyer @@ -213,10 +365,12 @@ - type: loadout id: LoadoutServiceLawyerUniformRedSuit - category: JobsAUncategorized - cost: 2 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsService - !type:CharacterJobRequirement jobs: - Lawyer @@ -225,10 +379,12 @@ - type: loadout id: LoadoutServiceLawyerUniformRedSkirt - category: JobsAUncategorized - cost: 2 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsService - !type:CharacterJobRequirement jobs: - Lawyer @@ -237,10 +393,12 @@ - type: loadout id: LoadoutServiceLawyerUniformPurpleSuit - category: JobsAUncategorized - cost: 2 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsService - !type:CharacterJobRequirement jobs: - Lawyer @@ -249,10 +407,12 @@ - type: loadout id: LoadoutServiceLawyerUniformPurpleSkirt - category: JobsAUncategorized - cost: 2 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsService - !type:CharacterJobRequirement jobs: - Lawyer @@ -261,10 +421,12 @@ - type: loadout id: LoadoutServiceLawyerUniformGoodSuit - category: JobsAUncategorized - cost: 2 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsService - !type:CharacterJobRequirement jobs: - Lawyer @@ -273,10 +435,12 @@ - type: loadout id: LoadoutServiceLawyerUniformGoodSkirt - category: JobsAUncategorized - cost: 2 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsService - !type:CharacterJobRequirement jobs: - Lawyer @@ -285,10 +449,12 @@ - type: loadout id: LoadoutServiceReporterUniformJournalist - category: JobsAUncategorized - cost: 2 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsService - !type:CharacterJobRequirement jobs: - Reporter @@ -298,10 +464,12 @@ # Reporter - type: loadout id: LoadoutServiceReporterUniformDetectivesuit - category: JobsAUncategorized - cost: 2 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsService - !type:CharacterJobRequirement jobs: - Reporter @@ -310,10 +478,12 @@ - type: loadout id: LoadoutServiceReporterUniformDetectiveskirt - category: JobsAUncategorized - cost: 2 + category: JobsServiceUncategorized + cost: 0 exclusive: true requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutUniformsService - !type:CharacterJobRequirement jobs: - Reporter @@ -322,12 +492,170 @@ # Musician - type: loadout - id: LoadoutItemSynthesizerInstrument - category: JobsAUncategorized - cost: 8 + id: LoadoutItemSynthesizerInstrumentMusician + category: JobsServiceUncategorized + cost: 2 requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMusicianInstruments - !type:CharacterJobRequirement jobs: - Musician items: - SynthesizerInstrument + +- type: loadout + id: LoadoutItemMicrophoneInstrumentMusician + category: JobsServiceUncategorized + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMusicianInstruments + - !type:CharacterJobRequirement + jobs: + - Musician + items: + - MicrophoneInstrument + +- type: loadout + id: LoadoutItemKalimbaInstrumentMusician + category: Items + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMusicianInstruments + - !type:CharacterJobRequirement + jobs: + - Musician + items: + - KalimbaInstrument + +- type: loadout + id: LoadoutItemTrumpetInstrumentMusician + category: Items + cost: 2 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMusicianInstruments + - !type:CharacterJobRequirement + jobs: + - Musician + items: + - TrumpetInstrument + +- type: loadout + id: LoadoutItemElectricGuitarInstrumentMusician + category: Items + cost: 2 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMusicianInstruments + - !type:CharacterJobRequirement + jobs: + - Musician + items: + - ElectricGuitarInstrument + +- type: loadout + id: LoadoutItemBassGuitarInstrumentMusician + category: Items + cost: 2 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMusicianInstruments + - !type:CharacterJobRequirement + jobs: + - Musician + items: + - BassGuitarInstrument + +- type: loadout + id: LoadoutItemRockGuitarInstrumentMusician + category: Items + cost: 2 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMusicianInstruments + - !type:CharacterJobRequirement + jobs: + - Musician + items: + - RockGuitarInstrument + +- type: loadout + id: LoadoutItemAcousticGuitarInstrumentMusician + category: Items + cost: 2 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMusicianInstruments + - !type:CharacterJobRequirement + jobs: + - Musician + items: + - AcousticGuitarInstrument + +- type: loadout + id: LoadoutItemViolinInstrumentMusician + category: Items + cost: 2 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMusicianInstruments + - !type:CharacterJobRequirement + jobs: + - Musician + items: + - ViolinInstrument + +- type: loadout + id: LoadoutItemHarmonicaInstrumentMusician + category: Items + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMusicianInstruments + - !type:CharacterJobRequirement + jobs: + - Musician + items: + - HarmonicaInstrument + +- type: loadout + id: LoadoutItemAccordionInstrumentMusician + category: Items + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMusicianInstruments + - !type:CharacterJobRequirement + jobs: + - Musician + items: + - AccordionInstrument + +- type: loadout + id: LoadoutItemFluteInstrumentMusician + category: Items + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMusicianInstruments + - !type:CharacterJobRequirement + jobs: + - Musician + items: + - FluteInstrument + +- type: loadout + id: LoadoutItemOcarinaInstrumentMusician + category: Items + cost: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutMusicianInstruments + - !type:CharacterJobRequirement + jobs: + - Musician + items: + - OcarinaInstrument \ No newline at end of file diff --git a/Resources/Prototypes/Loadouts/backpacks.yml b/Resources/Prototypes/Loadouts/backpacks.yml new file mode 100644 index 0000000000..5fd812380c --- /dev/null +++ b/Resources/Prototypes/Loadouts/backpacks.yml @@ -0,0 +1,268 @@ +- type: loadout + id: LoadoutBackpack + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpack + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + +- type: loadout + id: LoadoutBackpackClown + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackClown + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterJobRequirement + jobs: + - Clown + +- type: loadout + id: LoadoutBackpackIan + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackIan + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterJobRequirement + jobs: + - HeadOfPersonnel + +- type: loadout + id: LoadoutBackpackSecurity + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackSecurity + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Security + +- type: loadout + id: LoadoutBackpackBrigmedic + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackBrigmedic + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterJobRequirement + jobs: + - Brigmedic + +- type: loadout + id: LoadoutBackpackEngineering + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackEngineering + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Engineering + +- type: loadout + id: LoadoutBackpackAtmospherics + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackAtmospherics + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Engineering + +- type: loadout + id: LoadoutBackpackMedical + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackMedical + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Medical + +- type: loadout + id: LoadoutBackpackCaptain + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackCaptain + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterJobRequirement + jobs: + - Captain + +- type: loadout + id: LoadoutBackpackMime + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackMime + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterJobRequirement + jobs: + - Mime + +- type: loadout + id: LoadoutBackpackChemistry + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackChemistry + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Medical + +- type: loadout + id: LoadoutBackpackHydroponics + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackHydroponics + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Civilian + +- type: loadout + id: LoadoutBackpackScience + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackScience + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Epistemics + +- type: loadout + id: LoadoutBackpackRobotics + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackRobotics + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Epistemics + +- type: loadout + id: LoadoutBackpackVirology + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackVirology + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Medical + +- type: loadout + id: LoadoutBackpackGenetics + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackGenetics + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Medical + +- type: loadout + id: LoadoutBackpackCargo + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackCargo + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Logistics + +- type: loadout + id: LoadoutBackpackSalvage + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackSalvage + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Logistics + +- type: loadout + id: LoadoutBackpackMerc + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackMerc + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterLogicOrRequirement + requirements: + - !type:CharacterDepartmentRequirement + departments: + - Security + - Civilian + - !type:CharacterJobRequirement + jobs: + - SalvageSpecialist diff --git a/Resources/Prototypes/Loadouts/duffelbags.yml b/Resources/Prototypes/Loadouts/duffelbags.yml new file mode 100644 index 0000000000..89997326f1 --- /dev/null +++ b/Resources/Prototypes/Loadouts/duffelbags.yml @@ -0,0 +1,234 @@ +- type: loadout + id: LoadoutBackpackDuffel + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackDuffel + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + +- type: loadout + id: LoadoutBackpackDuffelClown + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackDuffelClown + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterJobRequirement + jobs: + - Clown + +- type: loadout + id: LoadoutBackpackDuffelSecurity + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackDuffelSecurity + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Security + +- type: loadout + id: LoadoutBackpackDuffelBrigmedic + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackDuffelBrigmedic + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterJobRequirement + jobs: + - Brigmedic + +- type: loadout + id: LoadoutBackpackDuffelEngineering + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackDuffelEngineering + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Engineering + +- type: loadout + id: LoadoutBackpackDuffelAtmospherics + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackDuffelAtmospherics + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Engineering + +- type: loadout + id: LoadoutBackpackDuffelMedical + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackDuffelMedical + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Medical + +- type: loadout + id: LoadoutBackpackDuffelCaptain + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackDuffelCaptain + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterJobRequirement + jobs: + - Captain + +- type: loadout + id: LoadoutBackpackDuffelMime + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackDuffelMime + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterJobRequirement + jobs: + - Mime + +- type: loadout + id: LoadoutBackpackDuffelChemistry + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackDuffelChemistry + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Medical + +- type: loadout + id: LoadoutBackpackDuffelHydroponics + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackDuffelHydroponics + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Civilian + +- type: loadout + id: LoadoutBackpackDuffelScience + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackDuffelScience + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Epistemics + +- type: loadout + id: LoadoutBackpackDuffelRobotics + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackDuffelRobotics + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Epistemics + +- type: loadout + id: LoadoutBackpackDuffelVirology + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackDuffelVirology + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Medical + +- type: loadout + id: LoadoutBackpackDuffelGenetics + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackDuffelGenetics + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Medical + +- type: loadout + id: LoadoutBackpackDuffelCargo + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackDuffelCargo + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Logistics + +- type: loadout + id: LoadoutBackpackDuffelSalvage + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackDuffelSalvage + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Logistics diff --git a/Resources/Prototypes/Loadouts/items.yml b/Resources/Prototypes/Loadouts/items.yml index eacb6f1738..5c752be343 100644 --- a/Resources/Prototypes/Loadouts/items.yml +++ b/Resources/Prototypes/Loadouts/items.yml @@ -119,6 +119,10 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutInstrumentsAny + - !type:CharacterJobRequirement + inverted: true + jobs: + - Musician - type: loadout id: LoadoutItemKalimbaInstrument @@ -129,6 +133,10 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutInstrumentsAny + - !type:CharacterJobRequirement + inverted: true + jobs: + - Musician - type: loadout id: LoadoutItemTrumpetInstrument @@ -139,6 +147,10 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutInstrumentsAny + - !type:CharacterJobRequirement + inverted: true + jobs: + - Musician - type: loadout id: LoadoutItemElectricGuitar @@ -149,6 +161,10 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutInstrumentsAny + - !type:CharacterJobRequirement + inverted: true + jobs: + - Musician - type: loadout id: LoadoutItemBassGuitar @@ -159,6 +175,10 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutInstrumentsAny + - !type:CharacterJobRequirement + inverted: true + jobs: + - Musician - type: loadout id: LoadoutItemRockGuitar @@ -169,6 +189,10 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutInstrumentsAny + - !type:CharacterJobRequirement + inverted: true + jobs: + - Musician - type: loadout id: LoadoutItemAcousticGuitar @@ -179,6 +203,10 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutInstrumentsAny + - !type:CharacterJobRequirement + inverted: true + jobs: + - Musician - type: loadout id: LoadoutItemViolin @@ -189,6 +217,10 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutInstrumentsAny + - !type:CharacterJobRequirement + inverted: true + jobs: + - Musician - type: loadout id: LoadoutItemHarmonica @@ -199,6 +231,10 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutInstrumentsAny + - !type:CharacterJobRequirement + inverted: true + jobs: + - Musician - type: loadout id: LoadoutItemAccordion @@ -209,6 +245,10 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutInstrumentsAny + - !type:CharacterJobRequirement + inverted: true + jobs: + - Musician - type: loadout id: LoadoutItemFlute @@ -219,6 +259,10 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutInstrumentsAny + - !type:CharacterJobRequirement + inverted: true + jobs: + - Musician - type: loadout id: LoadoutItemOcarina @@ -229,6 +273,10 @@ requirements: - !type:CharacterItemGroupRequirement group: LoadoutInstrumentsAny + - !type:CharacterJobRequirement + inverted: true + jobs: + - Musician # Survival Kit - type: loadout @@ -608,18 +656,6 @@ items: - PersonalAI -- type: loadout - id: LoadoutItemBackpackSatchelLeather - category: Items - cost: 1 - items: - - ClothingBackpackSatchelLeather - requirements: - - !type:CharacterJobRequirement - inverted: true - jobs: - - Prisoner - - type: loadout id: LoadoutItemWaistbag category: Items diff --git a/Resources/Prototypes/Loadouts/satchels.yml b/Resources/Prototypes/Loadouts/satchels.yml new file mode 100644 index 0000000000..4f21dc7656 --- /dev/null +++ b/Resources/Prototypes/Loadouts/satchels.yml @@ -0,0 +1,247 @@ +- type: loadout + id: LoadoutBackpackSatchel + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackSatchel + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + +- type: loadout + id: LoadoutItemBackpackSatchelLeather + category: Backpacks + cost: 1 + exclusive: true + items: + - ClothingBackpackSatchelLeather + requirements: + - !type:CharacterJobRequirement + inverted: true + jobs: + - Prisoner + +- type: loadout + id: LoadoutBackpackSatchelClown + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackSatchelClown + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterJobRequirement + jobs: + - Clown + +- type: loadout + id: LoadoutBackpackSatchelSecurity + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackSatchelSecurity + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Security + +- type: loadout + id: LoadoutBackpackSatchelBrigmedic + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackSatchelBrigmedic + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterJobRequirement + jobs: + - Brigmedic + +- type: loadout + id: LoadoutBackpackSatchelEngineering + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackSatchelEngineering + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Engineering + +- type: loadout + id: LoadoutBackpackSatchelAtmospherics + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackSatchelAtmospherics + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Engineering + +- type: loadout + id: LoadoutBackpackSatchelMedical + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackSatchelMedical + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Medical + +- type: loadout + id: LoadoutBackpackSatchelCaptain + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackSatchelCaptain + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterJobRequirement + jobs: + - Captain + +- type: loadout + id: LoadoutBackpackSatchelMime + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackSatchelMime + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterJobRequirement + jobs: + - Mime + +- type: loadout + id: LoadoutBackpackSatchelChemistry + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackSatchelChemistry + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Medical + +- type: loadout + id: LoadoutBackpackSatchelHydroponics + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackSatchelHydroponics + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Civilian + +- type: loadout + id: LoadoutBackpackSatchelScience + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackSatchelScience + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Epistemics + +- type: loadout + id: LoadoutBackpackSatchelRobotics + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackSatchelRobotics + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Epistemics + +- type: loadout + id: LoadoutBackpackSatchelVirology + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackSatchelVirology + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Medical + +- type: loadout + id: LoadoutBackpackSatchelGenetics + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackSatchelGenetics + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Medical + +- type: loadout + id: LoadoutBackpackSatchelCargo + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackSatchelCargo + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Logistics + +- type: loadout + id: LoadoutBackpackSatchelSalvage + category: Backpacks + cost: 0 + exclusive: true + items: + - ClothingBackpackSatchelSalvage + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutBackpacks + - !type:CharacterDepartmentRequirement + departments: + - Logistics diff --git a/Resources/Prototypes/Magic/event_spells.yml b/Resources/Prototypes/Magic/event_spells.yml new file mode 100644 index 0000000000..e59e1b2db8 --- /dev/null +++ b/Resources/Prototypes/Magic/event_spells.yml @@ -0,0 +1,13 @@ +- type: entity + id: ActionSummonGhosts + name: Summon Ghosts + description: Makes all current ghosts permanently invisible + noSpawn: true + components: + - type: InstantAction + useDelay: 120 + itemIconStyle: BigAction + icon: + sprite: Mobs/Ghosts/ghost_human.rsi + state: icon + event: !type:ToggleGhostVisibilityToAllEvent diff --git a/Resources/Prototypes/Magic/knock_spell.yml b/Resources/Prototypes/Magic/knock_spell.yml index f00897d32c..e2c3dcfd4c 100644 --- a/Resources/Prototypes/Magic/knock_spell.yml +++ b/Resources/Prototypes/Magic/knock_spell.yml @@ -7,6 +7,8 @@ - type: InstantAction useDelay: 10 itemIconStyle: BigAction + sound: !type:SoundPathSpecifier + path: /Audio/Magic/knock.ogg icon: sprite: Objects/Magic/magicactions.rsi state: knock diff --git a/Resources/Prototypes/Magic/projectile_spells.yml b/Resources/Prototypes/Magic/projectile_spells.yml index 196472fe7b..b8db7557bb 100644 --- a/Resources/Prototypes/Magic/projectile_spells.yml +++ b/Resources/Prototypes/Magic/projectile_spells.yml @@ -4,10 +4,12 @@ description: Fires an explosive fireball towards the clicked location. noSpawn: true components: + - type: Magic - type: WorldTargetAction useDelay: 15 itemIconStyle: BigAction checkCanAccess: false + raiseOnUser: true range: 60 sound: !type:SoundPathSpecifier path: /Audio/Magic/fireball.ogg @@ -16,25 +18,25 @@ state: fireball event: !type:ProjectileSpellEvent prototype: ProjectileFireball - posData: !type:TargetCasterPos speech: action-speech-spell-fireball - type: ActionUpgrade effectedLevels: 2: ActionFireballII + 3: ActionFireballIII - type: entity id: ActionFireballII parent: ActionFireball name: Fireball II - description: Fire three explosive fireball towards the clicked location. + description: Fires a fireball, but faster! noSpawn: true components: - type: WorldTargetAction - useDelay: 5 - charges: 3 + useDelay: 10 renewCharges: true itemIconStyle: BigAction checkCanAccess: false + raiseOnUser: true range: 60 sound: !type:SoundPathSpecifier path: /Audio/Magic/fireball.ogg @@ -43,5 +45,27 @@ state: fireball event: !type:ProjectileSpellEvent prototype: ProjectileFireball - posData: !type:TargetCasterPos speech: action-speech-spell-fireball + +- type: entity + id: ActionFireballIII + parent: ActionFireball + name: Fireball III + description: The fastest fireball in the west! + noSpawn: true + components: + - type: WorldTargetAction + useDelay: 8 + renewCharges: true + itemIconStyle: BigAction + checkCanAccess: false + raiseOnUser: true + range: 60 + sound: !type:SoundPathSpecifier + path: /Audio/Magic/fireball.ogg + icon: + sprite: Objects/Magic/magicactions.rsi + state: fireball + event: !type:ProjectileSpellEvent + prototype: ProjectileFireball + speech: action-speech-spell-fireball diff --git a/Resources/Prototypes/Magic/teleport_spells.yml b/Resources/Prototypes/Magic/teleport_spells.yml index 30c83891ee..cc89cf8ee0 100644 --- a/Resources/Prototypes/Magic/teleport_spells.yml +++ b/Resources/Prototypes/Magic/teleport_spells.yml @@ -8,9 +8,11 @@ useDelay: 10 range: 16 # default examine-range. # ^ should probably add better validation that the clicked location is on the users screen somewhere, + sound: !type:SoundPathSpecifier + path: /Audio/Magic/blink.ogg itemIconStyle: BigAction checkCanAccess: false - repeat: true + repeat: false icon: sprite: Objects/Magic/magicactions.rsi state: blink diff --git a/Resources/Prototypes/Magic/utility_spells.yml b/Resources/Prototypes/Magic/utility_spells.yml new file mode 100644 index 0000000000..dccdda3789 --- /dev/null +++ b/Resources/Prototypes/Magic/utility_spells.yml @@ -0,0 +1,15 @@ +- type: entity + id: ActionChargeSpell + name: Charge + description: Adds a charge back to your wand + noSpawn: true + components: + - type: InstantAction + useDelay: 30 + itemIconStyle: BigAction + icon: + sprite: Objects/Weapons/Guns/Basic/wands.rsi + state: nothing + event: !type:ChargeSpellEvent + charge: 1 + speech: DI'RI CEL! diff --git a/Resources/Prototypes/Maps/Pools/default.yml b/Resources/Prototypes/Maps/Pools/default.yml index d6ca85bf74..07a779c1b3 100644 --- a/Resources/Prototypes/Maps/Pools/default.yml +++ b/Resources/Prototypes/Maps/Pools/default.yml @@ -1,17 +1,21 @@ - type: gameMapPool id: DefaultMapPool maps: - - Arena + # - Arena - Asterisk - - Core - - Edge - - Glacier - - Hammurabi - - Lighthouse + # - Core + # - Edge + # - Glacier + # - Hammurabi + # - Lighthouse - Pebble - - Saltern + # - Saltern - Shoukou - - Submarine - - Tortuga - - TheHive + # - Submarine + # - Tortuga + # - TheHive + # - Gax + # - Rad - DryDock + - Moose + - WhiteBox diff --git a/Resources/Prototypes/Maps/drydock.yml b/Resources/Prototypes/Maps/drydock.yml index cf62eb1ab8..1f80295e34 100644 --- a/Resources/Prototypes/Maps/drydock.yml +++ b/Resources/Prototypes/Maps/drydock.yml @@ -1,4 +1,4 @@ -- type: gameMap +- type: gameMap id: DryDock mapName: 'DryDock Station' mapPath: /Maps/DryDock.yml @@ -29,13 +29,12 @@ Quartermaster: [ 1, 1 ] #Security Warden: [ 1, 1 ] - #SeniorOfficer: [ 1, 1 ] SecurityOfficer: [ 4, 4 ] SecurityCadet: [ 4, 4 ] Detective: [ 1, 1 ] Lawyer: [ 2, 2 ] + Prisoner: [ 1, 2 ] #Medical - #SeniorPhysician: [ 1, 1 ] Chemist: [ 1, 1 ] Paramedic: [ 1, 1 ] MedicalDoctor: [ 2, 3 ] @@ -43,14 +42,13 @@ Psychologist: [ 0, 0 ] #Cargo SalvageSpecialist: [ 3, 3 ] - CargoTechnician: [ 3, 5 ] + CargoTechnician: [ 2, 4 ] + MailCarrier: [ 1, 2 ] #Engineering - #SeniorEngineer: [ 1, 1 ] AtmosphericTechnician: [ 3, 3 ] StationEngineer: [ 4, 5 ] TechnicalAssistant: [ 3, 4 ] #Science - #SeniorResearcher: [ 1, 1 ] ForensicMantis: [ 1, 1 ] Chaplain: [ 2, 2 ] Scientist: [ 3, 4 ] diff --git a/Resources/Prototypes/Maps/gaxstation.yml b/Resources/Prototypes/Maps/gaxstation.yml new file mode 100644 index 0000000000..93528d92d8 --- /dev/null +++ b/Resources/Prototypes/Maps/gaxstation.yml @@ -0,0 +1,72 @@ +- type: gameMap + id: Gax + mapName: 'NCS Gax' + mapPath: /Maps/gaxstation.yml + minPlayers: 10 + maxPlayers: 45 + fallback: true + stations: + Gaxstation: + stationProto: StandardNanotrasenStation + components: + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/DeltaV/NTES_Delta.yml + - type: StationNameSetup + mapNameTemplate: '{0} NCS Gax {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 1, 1 ] + Botanist: [3 , 3 ] + Chef: [ 2, 2 ] + Janitor: [ 2, 2 ] + ServiceWorker: [ 2, 2 ] + #Engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 4, 4 ] + StationEngineer: [ 4, 4 ] + TechnicalAssistant: [ 2, 2 ] + #Medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 2, 2 ] + MedicalDoctor: [ 3, 3 ] + MedicalIntern: [ 3, 3 ] + Paramedic: [ 2, 2 ] + MedicalBorg: [ 1, 1 ] + #Epistemics + ResearchDirector: [ 1, 1 ] + Scientist: [ 4, 4 ] + ResearchAssistant: [ 2, 2 ] + Roboticist: [ 1, 2 ] + Borg: [ 2, 2 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ForensicMantis: [ 1, 1 ] + #Security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + SecurityOfficer: [ 4, 4 ] + SecurityCadet: [ 4, 4 ] + Detective: [ 1, 1 ] + Prisoner: [ 1, 2 ] + PrisonGuard: [ 1, 2 ] + Brigmedic: [ 1, 1 ] + Lawyer: [ 1, 1 ] + #Supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 1, 3 ] + CargoTechnician: [ 2, 2 ] + MailCarrier: [ 1, 2 ] + #Civillian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] + diff --git a/Resources/Prototypes/Maps/moose.yml b/Resources/Prototypes/Maps/moose.yml new file mode 100644 index 0000000000..f5fda73906 --- /dev/null +++ b/Resources/Prototypes/Maps/moose.yml @@ -0,0 +1,69 @@ +- type: gameMap + id: Moose + mapName: 'Moose Station' + mapPath: /Maps/Moose.yml + minPlayers: 10 + maxPlayers: 50 + stations: + MooseStation: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Moose Station {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'WWDP' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/DeltaV/NTES_Delta.yml + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + #Heads + Captain: [ 1, 1 ] + HeadOfSecurity: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + ChiefEngineer: [ 1, 1 ] + ChiefMedicalOfficer: [ 1, 1 ] + ResearchDirector: [ 1, 1 ] + Quartermaster: [ 1, 1 ] + #Security + Warden: [ 1, 1 ] + SecurityOfficer: [ 3, 3 ] + SecurityCadet: [ 3, 3 ] + Detective: [ 1, 1 ] + Lawyer: [ 1, 1 ] + Prisoner: [ 1, 2 ] + #Medical + Chemist: [ 2, 2 ] + Paramedic: [ 1, 1 ] + MedicalDoctor: [ 3, 3 ] + MedicalIntern: [ 2, 2 ] + Psychologist: [ 1, 1 ] + #Cargo + SalvageSpecialist: [ 3, 3 ] + CargoTechnician: [ 2, 2 ] + MailCarrier: [ 1, 2 ] + #Engineering + AtmosphericTechnician: [ 2, 2 ] + StationEngineer: [ 3, 3 ] + TechnicalAssistant: [ 2, 2 ] + #Science + Scientist: [ 3, 3 ] + ResearchAssistant: [ 1, 1 ] + #Other + Bartender: [ 1, 1 ] + Chef: [ 1, 1 ] + Botanist: [ 2, 2 ] + ServiceWorker: [ 2, 2 ] + Librarian: [ 1, 1 ] + Janitor: [ 1, 1 ] + Chaplain: [ 1, 1 ] + Mime: [ 1, 1 ] + Clown: [ 1, 1 ] + Musician: [ 1, 1 ] + Reporter: [ 1, 1 ] + Boxer: [ 1, 1 ] + Borg: [ 1, 1 ] + Passenger: [ -1, -1 ] + diff --git a/Resources/Prototypes/Maps/radstation.yml b/Resources/Prototypes/Maps/radstation.yml new file mode 100644 index 0000000000..737b4d4492 --- /dev/null +++ b/Resources/Prototypes/Maps/radstation.yml @@ -0,0 +1,75 @@ +- type: gameMap + id: Rad + mapName: 'RadStation' + mapPath: /Maps/radstation.yml + minPlayers: 35 + stations: + RadStation: + stationProto: StandardNanotrasenStation + components: + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_neol.yml + - type: StationNameSetup + mapNameTemplate: '{0} RadStation {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 1, 1 ] + Botanist: [ 3, 3 ] + Chef: [ 2, 2 ] + Janitor: [ 2, 2 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 1, 1 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 4, 4 ] + StationEngineer: [ 3, 3 ] + TechnicalAssistant: [ 2, 2 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 2, 2 ] + MedicalBorg: [ 2, 2 ] + MedicalDoctor: [ 3, 3 ] + Paramedic: [ 1, 1 ] + MedicalIntern: [ 2, 2 ] + #science + ResearchDirector: [ 1, 1 ] + Roboticist: [ 1, 2 ] + Scientist: [ 5, 5 ] + ForensicMantis: [ 1, 1 ] + ResearchAssistant: [ 2, 2 ] + Borg: [ 1, 1 ] + Chaplain: [ 1, 1 ] + #security + HeadOfSecurity: [ 1, 1 ] + Brigmedic: [ 1, 1 ] + Warden: [ 1, 1 ] + SecurityOfficer: [ 5, 5 ] + Prisoner: [ 2, 3 ] + PrisonGuard: [ 2, 3 ] + Detective: [ 1, 1 ] + SecurityCadet: [ 2, 2 ] + #supply + Quartermaster: [ 1, 1 ] + MailCarrier: [ 1, 2 ] + SalvageSpecialist: [ 3, 3 ] + CargoTechnician: [ 5, 5 ] + #civilian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] + Reporter: [ 2, 2 ] + Psychologist: [ 1, 1 ] + #justice + ChiefJustice: [ 1, 1 ] + Clerk: [ 1, 1 ] + Lawyer: [ 1, 1 ] + Prosecutor: [ 1, 1] diff --git a/Resources/Prototypes/Maps/whitebox.yml b/Resources/Prototypes/Maps/whitebox.yml new file mode 100644 index 0000000000..96c14b8ac9 --- /dev/null +++ b/Resources/Prototypes/Maps/whitebox.yml @@ -0,0 +1,58 @@ +- type: gameMap + id: WhiteBox + mapName: 'Box Station' + mapPath: /Maps/WhiteBox.yml + minPlayers: 0 + stations: + WhiteBoxStation: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Box Station {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'TG' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/DeltaV/NTES_Delta.yml + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + CargoTechnician: [ 2, 2 ] + Prisoner: [ 1, 2 ] + MailCarrier: [ 1, 2 ] + Passenger: [ -1, -1 ] + Bartender: [ 2, 2 ] + Botanist: [ 3, 3 ] + Chef: [ 2, 2 ] + Clown: [ 1, 1 ] + Janitor: [ 3, 3 ] + Mime: [ 1, 1 ] + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + ChiefEngineer: [ 1, 1 ] + StationEngineer: [ 4, 4 ] + ChiefMedicalOfficer: [ 1, 1 ] + MedicalDoctor: [ 4, 4 ] + Chemist: [ 3, 3 ] + ResearchDirector: [ 1, 1 ] + Scientist: [ 5, 5 ] + HeadOfSecurity: [ 1, 1 ] + SecurityOfficer: [ 6, 6 ] + Chaplain: [ 2, 2 ] + Warden: [ 1, 1 ] + Librarian: [ 2, 2 ] + Lawyer: [ 2, 2 ] + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 3, 3 ] + Musician: [ 2, 2 ] + AtmosphericTechnician: [ 3, 3 ] + TechnicalAssistant: [ 4, 4 ] + MedicalIntern: [ 4, 4 ] + ServiceWorker: [ 4, 4 ] + SecurityCadet: [ 4, 4 ] + Detective: [ 1, 1 ] + ResearchAssistant: [ 4, 4 ] + Paramedic: [ 2, 2 ] + Borg: [ 2, 2 ] + Brigmedic: [ 1, 1 ] diff --git a/Resources/Prototypes/Mood/drugs.yml b/Resources/Prototypes/Mood/drugs.yml new file mode 100644 index 0000000000..a9818d2021 --- /dev/null +++ b/Resources/Prototypes/Mood/drugs.yml @@ -0,0 +1,45 @@ +# Drugs should be paired up in Trios of "Bonus, Penalty, Category" + +# Lotophagoi Oil +- type: moodEffect + id: LotoTranscendence + moodChange: 30 + timeout: 600 #10 minutes + moodletOnEnd: LotoEnthrallment + category: "LotophagoiAddiction" + +- type: moodEffect + id: LotoEnthrallment + moodChange: -30 + timeout: 600 #10 minutes + category: "LotophagoiAddiction" + +- type: moodCategory + id: LotophagoiAddiction + +# Nicotine +- type: moodEffect + id: NicotineBenefit + moodChange: 5 + timeout: 600 #10 minutes + moodletOnEnd: NicotineWithdrawal + category: "NicotineAddiction" + +- type: moodEffect + id: NicotineWithdrawal + moodChange: -7 #No timeout + category: "NicotineAddiction" + +- type: moodCategory + id: NicotineAddiction + +# Non-Addictive Drugs +- type: moodEffect + id: EthanolBenefit + moodChange: 7 + timeout: 300 #5 minutes + +- type: moodEffect + id: SpaceDrugsBenefit + moodChange: 7 + timeout: 300 #5 minutes \ No newline at end of file diff --git a/Resources/Prototypes/NPCs/Combat/melee.yml b/Resources/Prototypes/NPCs/Combat/melee.yml index 122875ed97..b0746e5679 100644 --- a/Resources/Prototypes/NPCs/Combat/melee.yml +++ b/Resources/Prototypes/NPCs/Combat/melee.yml @@ -17,6 +17,29 @@ - !type:HTNCompoundTask task: PickupMeleeCompound + - preconditions: + - !type:BuckledPrecondition + isBuckled: true + tasks: + - !type:HTNPrimitiveTask + operator: !type:UnbuckleOperator + shutdownState: TaskFinished + + - preconditions: + - !type:InContainerPrecondition + isInContainer: true + tasks: + - !type:HTNCompoundTask + task: EscapeCompound + + - preconditions: + - !type:PulledPrecondition + isPulled: true + tasks: + - !type:HTNPrimitiveTask + operator: !type:UnPullOperator + shutdownState: TaskFinished + # Melee combat (unarmed or otherwise) - tasks: - !type:HTNPrimitiveTask @@ -101,6 +124,21 @@ proto: NearbyMeleeTargets key: Target +- type: htnCompound + id: EscapeCompound + branches: + - tasks: + - !type:HTNPrimitiveTask + operator: !type:ContainerOperator + targetKey: Target + shutdownState: TaskFinished + - !type:HTNPrimitiveTask + operator: !type:EscapeOperator + targetKey: Target + preconditions: + - !type:InContainerPrecondition + isInContainer: true + - type: htnCompound id: MeleeAttackOrderedTargetCompound branches: diff --git a/Resources/Prototypes/NPCs/debug.yml b/Resources/Prototypes/NPCs/debug.yml new file mode 100644 index 0000000000..c7929be103 --- /dev/null +++ b/Resources/Prototypes/NPCs/debug.yml @@ -0,0 +1,90 @@ +- type: htnCompound + id: DebugCounterCompound + branches: + - tasks: + - !type:HTNPrimitiveTask + operator: !type:AddFloatOperator + targetKey: Count + amount: 1 + + - !type:HTNPrimitiveTask + operator: !type:SayKeyOperator + key: Count + + - !type:HTNPrimitiveTask + operator: !type:RandomOperator + targetKey: IdleTime + minKey: MinimumIdleTime + maxKey: MaximumIdleTime + + - !type:HTNPrimitiveTask + operator: !type:WaitOperator + key: IdleTime + preconditions: + - !type:KeyExistsPrecondition + key: IdleTime + +- type: htnCompound + id: DebugRandomCounterCompound + branches: + - tasks: + - !type:HTNPrimitiveTask + operator: !type:SetRandomFloatOperator + targetKey: Count + minAmount: 0 + maxAmount: 100 + + - !type:HTNPrimitiveTask + operator: !type:SayKeyOperator + key: Count + + - !type:HTNPrimitiveTask + operator: !type:RandomOperator + targetKey: IdleTime + minKey: MinimumIdleTime + maxKey: MaximumIdleTime + + - !type:HTNPrimitiveTask + operator: !type:WaitOperator + key: IdleTime + preconditions: + - !type:KeyExistsPrecondition + key: IdleTime + +- type: htnCompound + id: DebugRandomLessCompound + branches: + - tasks: + - !type:HTNPrimitiveTask + operator: !type:SetRandomFloatOperator + targetKey: Count + minAmount: 0 + maxAmount: 100 + + - !type:HTNPrimitiveTask + operator: !type:SayKeyOperator + key: Count + preconditions: + - !type:KeyFloatLessPrecondition + key: Count + value: 50 + + - !type:HTNPrimitiveTask + operator: !type:RandomOperator + targetKey: IdleTime + minKey: MinimumIdleTime + maxKey: MaximumIdleTime + + - !type:HTNPrimitiveTask + operator: !type:WaitOperator + key: IdleTime + preconditions: + - !type:KeyExistsPrecondition + key: IdleTime + + - tasks: + - !type:HTNPrimitiveTask + operator: !type:SpeakOperator + speech: "fuck!" + + \ No newline at end of file diff --git a/Resources/Prototypes/Nyanotrasen/Catalog/Fills/Vending/Inventories/maildrobe.yml b/Resources/Prototypes/Nyanotrasen/Catalog/Fills/Vending/Inventories/maildrobe.yml index 579c57ced4..2764255824 100644 --- a/Resources/Prototypes/Nyanotrasen/Catalog/Fills/Vending/Inventories/maildrobe.yml +++ b/Resources/Prototypes/Nyanotrasen/Catalog/Fills/Vending/Inventories/maildrobe.yml @@ -3,6 +3,8 @@ startingInventory: ClothingUniformMailCarrier: 2 ClothingUniformSkirtMailCarrier: 2 + WeaponMailLake: 1 # Frontier + BoxMailCapsulePrimed: 2 # Frontier ClothingHeadMailCarrier: 2 MailBag: 2 ClothingHeadsetCargo: 2 diff --git a/Resources/Prototypes/Nyanotrasen/Damage/groups.yml b/Resources/Prototypes/Nyanotrasen/Damage/groups.yml index d2f9906f45..3160660571 100644 --- a/Resources/Prototypes/Nyanotrasen/Damage/groups.yml +++ b/Resources/Prototypes/Nyanotrasen/Damage/groups.yml @@ -1,4 +1,5 @@ - type: damageGroup id: Immaterial + name: damage-group-immaterial damageTypes: - Holy diff --git a/Resources/Prototypes/Nyanotrasen/Damage/types.yml b/Resources/Prototypes/Nyanotrasen/Damage/types.yml index f9aba7e2ac..22c045e9a6 100644 --- a/Resources/Prototypes/Nyanotrasen/Damage/types.yml +++ b/Resources/Prototypes/Nyanotrasen/Damage/types.yml @@ -1,5 +1,6 @@ # Only affects magical beings. - type: damageType id: Holy + name: damage-type-holy armorCoefficientPrice: 25 armorFlatPrice: 150 diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/Head/hardsuit-helmets.yml index 1a83a14bd5..3896cd1ef1 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/Head/hardsuit-helmets.yml @@ -11,9 +11,6 @@ destroyOnFry: false - type: ClothingGrantPsionicPower power: MetapsionicPower - - type: GuideHelp - guides: - - Psionics - type: entity parent: ClothingHeadHelmetHardsuitSyndie diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/Head/hats.yml index deaca17558..2f23944549 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/Head/hats.yml @@ -74,9 +74,6 @@ - type: Construction graph: TinfoilHat node: tinfoilhat - - type: GuideHelp - guides: - - Psionics - type: entity parent: ClothingHeadBase diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/OuterClothing/hardsuits.yml index 6498eda075..4e988c2740 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/OuterClothing/hardsuits.yml @@ -19,8 +19,6 @@ sprite: Nyanotrasen/Clothing/OuterClothing/ReverseEngineering/syndicate.rsi - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitSyndieReverseEngineered - - type: ReverseEngineering - newItem: null - type: entity parent: ClothingOuterHardsuitJuggernaut @@ -35,8 +33,6 @@ sprite: Nyanotrasen/Clothing/OuterClothing/ReverseEngineering/juggernaut.rsi - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitJuggernautReverseEngineered - - type: ReverseEngineering - newItem: null - type: entity parent: ClothingOuterHardsuitERTLeader diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Clothing/psionic_clothing.yml b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/psionic_clothing.yml index d9f448ef3e..0bc1b60ad3 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Clothing/psionic_clothing.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/psionic_clothing.yml @@ -54,9 +54,9 @@ description: Flimsy synthrubber work gloves styled in a drab yellow color. They are not electrically insulated, and provide no protection against any shocks. components: - type: Sprite - sprite: _White/Clothing/Hands/Gloves/Color/yellow.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/yellow.rsi - type: Clothing - sprite: _White/Clothing/Hands/Gloves/Color/yellow.rsi #WWDP edit + sprite: Clothing/Hands/Gloves/Color/yellow.rsi - type: Fiber fiberMaterial: fibers-insulative fiberColor: fibers-yellow diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/ghost_roles.yml b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/ghost_roles.yml index 046a324e6f..a21976fa7a 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/ghost_roles.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/ghost_roles.yml @@ -51,23 +51,23 @@ - state: prisoner # - type: MidRoundAntagSpawnLocation # When MidRoundAntag? -- type: entity - id: SpawnPointGhostVampSpider - name: ghost role spawn point - suffix: Vampire spider - parent: MarkerBase - noSpawn: true - components: - - type: GhostRoleMobSpawner - prototype: MobGiantSpiderVampireAngry - - type: GhostRole - makeSentient: true - name: ghost-role-information-giant-spider-vampire-name - description: ghost-role-information-giant-spider-vampire-description - rules: No antagonist restrictions. Just don't talk in emote; you have telepathic chat. - - type: Sprite - sprite: Markers/jobs.rsi - layers: - - state: green - - sprite: Mobs/Animals/bat.rsi - state: bat +#- type: entity +# id: SpawnPointGhostVampSpider +# name: ghost role spawn point +# suffix: Vampire spider +# parent: MarkerBase +# noSpawn: true +# components: +# - type: GhostRoleMobSpawner +# prototype: MobGiantSpiderVampireAngry +# - type: GhostRole +# makeSentient: true +# name: ghost-role-information-giant-spider-vampire-name +# description: ghost-role-information-giant-spider-vampire-description +# rules: No antagonist restrictions. Just don't talk in emote; you have telepathic chat. +# - type: Sprite +# sprite: Markers/jobs.rsi +# layers: +# - state: green +# - sprite: Mobs/Animals/bat.rsi +# state: bat diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/mutants.yml b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/mutants.yml index 996c0d87ab..b3de9e0191 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/mutants.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/mutants.yml @@ -70,132 +70,132 @@ - type: Produce - type: NoSlip -- type: entity - name: oneirophage - parent: MobGiantSpider - id: MobGiantSpiderVampire - description: The 'dream-eater' spider, rumored to be one of the potential genetic sources for arachne. - components: - - type: Sprite - drawdepth: Mobs - layers: - - map: ["enum.DamageStateVisualLayers.Base", "movement"] - state: viper - sprite: Mobs/Animals/spider.rsi - - type: SpriteMovement - movementLayers: - movement: - state: viper-moving - noMovementLayers: - movement: - state: viper - - type: Appearance - - type: DamageStateVisuals - states: - Alive: - Base: viper - Critical: - Base: viper_dead - Dead: - Base: viper_dead - - type: ReplacementAccent - accent: xeno - - type: InteractionPopup - successChance: 0.5 - interactSuccessString: petting-success-tarantula - interactFailureString: petting-failure-generic - interactSuccessSpawn: EffectHearts - interactSuccessSound: - path: /Audio/Animals/snake_hiss.ogg - - type: Puller - needsHands: false - - type: Arachne - cocoonDelay: 8 - - type: SolutionContainerManager - solutions: - melee: - reagents: - - ReagentId: Nocturine - Quantity: 20 - - type: MeleeChemicalInjector - solution: melee - transferAmount: 3.5 - - type: SolutionRegeneration - solution: melee - generated: - reagents: - - ReagentId: Nocturine - Quantity: 0.15 - - type: BloodSucker - unitsToSucc: 35 - injectWhenSucc: true - injectReagent: Cryptobiolin - unitsToInject: 10 - webRequired: true - - type: Bloodstream - bloodReagent: DemonsBlood - - type: Body - prototype: VampiricAnimalLarge - - type: Psionic - removable: false - - type: InnatePsionicPowers - powersToAdd: - - MetapsionicPower - - PsionicInvisibilityPower - - type: AntiPsionicWeapon - punish: false - modifiers: - coefficients: - Piercing: 2.25 - - type: Damageable - damageContainer: HalfSpirit - damageModifierSet: HalfSpirit - - type: StatusEffects - allowed: - - Stun - - KnockedDown - - SlowedDown - - Stutter - - SeeingRainbows - - Electrocution - - Drunk - - SlurredSpeech - - PressureImmunity - - Muted - - ForcedSleep - - TemporaryBlindness - - Pacified - - PsionicsDisabled - - PsionicallyInsulated - - type: Tag - tags: - - Oneirophage - - type: MovementAlwaysTouching - - type: PsionicInvisibleContacts - whitelist: - tags: - - ArachneWeb +#- type: entity +# name: oneirophage +# parent: MobGiantSpider +# id: MobGiantSpiderVampire +# description: The 'dream-eater' spider, rumored to be one of the potential genetic sources for arachne. +# components: +# - type: Sprite +# drawdepth: Mobs +# layers: +# - map: ["enum.DamageStateVisualLayers.Base", "movement"] +# state: viper +# sprite: Mobs/Animals/spider.rsi +# - type: SpriteMovement +# movementLayers: +# movement: +# state: viper-moving +# noMovementLayers: +# movement: +# state: viper +# - type: Appearance +# - type: DamageStateVisuals +# states: +# Alive: +# Base: viper +# Critical: +# Base: viper_dead +# Dead: +# Base: viper_dead +# - type: ReplacementAccent +# accent: xeno +# - type: InteractionPopup +# successChance: 0.5 +# interactSuccessString: petting-success-tarantula +# interactFailureString: petting-failure-generic +# interactSuccessSpawn: EffectHearts +# interactSuccessSound: +# path: /Audio/Animals/snake_hiss.ogg +# - type: Puller +# needsHands: false +# - type: Cocooner +# cocoonDelay: 8 +# - type: SolutionContainerManager +# solutions: +# melee: +# reagents: +# - ReagentId: Nocturine +# Quantity: 20 +# - type: MeleeChemicalInjector +# solution: melee +# transferAmount: 3.5 +# - type: SolutionRegeneration +# solution: melee +# generated: +# reagents: +# - ReagentId: Nocturine +# Quantity: 0.15 +# - type: BloodSucker +# unitsToSucc: 35 +# injectWhenSucc: true +# injectReagent: Cryptobiolin +# unitsToInject: 10 +# webRequired: true +# - type: Bloodstream +# bloodReagent: DemonsBlood +# - type: Body +# prototype: VampiricAnimalLarge +# - type: Psionic +# removable: false +# - type: InnatePsionicPowers +# powersToAdd: +# - MetapsionicPower +# - PsionicInvisibilityPower +# - type: AntiPsionicWeapon +# punish: false +# modifiers: +# coefficients: +# Piercing: 2.25 +# - type: Damageable +# damageContainer: HalfSpirit +# damageModifierSet: HalfSpirit +# - type: StatusEffects +# allowed: +# - Stun +# - KnockedDown +# - SlowedDown +# - Stutter +# - SeeingRainbows +# - Electrocution +# - Drunk +# - SlurredSpeech +# - PressureImmunity +# - Muted +# - ForcedSleep +# - TemporaryBlindness +# - Pacified +# - PsionicsDisabled +# - PsionicallyInsulated +# - type: Tag +# tags: +# - Oneirophage +# - type: MovementAlwaysTouching +# - type: PsionicInvisibleContacts +# whitelist: +# tags: +# - ArachneWeb -- type: entity - name: oneirophage - parent: MobGiantSpiderVampire - id: MobGiantSpiderVampireAngry - suffix: Angry - components: - - type: NpcFactionMember - factions: - - SimpleHostile - - type: InputMover - - type: MobMover - - type: HTN - rootTask: - task: SimpleHostileCompound - - type: GhostRole - makeSentient: true - name: ghost-role-information-giant-spider-vampire-name - description: ghost-role-information-giant-spider-vampire-description - rules: No antagonist restrictions. Just don't talk in emote; you have telepathic chat. - - type: GhostTakeoverAvailable +#- type: entity +# name: oneirophage +# parent: MobGiantSpiderVampire +# id: MobGiantSpiderVampireAngry +# suffix: Angry +# components: +# - type: NpcFactionMember +# factions: +# - SimpleHostile +# - type: InputMover +# - type: MobMover +# - type: HTN +# rootTask: +# task: SimpleHostileCompound +# - type: GhostRole +# makeSentient: true +# name: ghost-role-information-giant-spider-vampire-name +# description: ghost-role-information-giant-spider-vampire-description +# rules: No antagonist restrictions. Just don't talk in emote; you have telepathic chat. +# - type: GhostTakeoverAvailable - type: entity parent: SimpleMobBase @@ -298,9 +298,10 @@ - type: Puller needsHands: false - type: Vocal - # mice are gender neutral who cares - maleScream: /Audio/Animals/mouse_squeak.ogg - femaleScream: /Audio/Animals/mouse_squeak.ogg + sounds: + Male: Mouse + Female: Mouse + Unsexed: Mouse wilhelmProbability: 0.001 - type: Tag tags: @@ -335,11 +336,7 @@ proper: true gender: male - type: IntrinsicRadioReceiver - channels: - - Common - type: IntrinsicRadioTransmitter - channels: - - Common - type: ActiveRadio channels: - Common diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/xeno.yml b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/xeno.yml index 9dbe9f95f7..e12b14d490 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/xeno.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/xeno.yml @@ -6,6 +6,7 @@ id: MobPurpleSnakeGhost components: - type: GhostTakeoverAvailable + - type: GhostRole allowMovement: true allowSpeech: false makeSentient: true @@ -19,6 +20,7 @@ id: MobSmallPurpleSnakeGhost components: - type: GhostTakeoverAvailable + - type: GhostRole allowMovement: true allowSpeech: false makeSentient: true diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/Oni.yml b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/Oni.yml index c1655287fd..8a5663dce4 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/Oni.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/Oni.yml @@ -40,11 +40,13 @@ proto: oni - type: LanguageKnowledge speaks: - - GalacticCommon + - TauCetiBasic - Nekomimetic understands: - - GalacticCommon + - TauCetiBasic - Nekomimetic + - type: PotentiaModifier + potentiaMultiplier: 0.5 - type: entity save: false diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/felinid.yml b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/felinid.yml index 4f0938d927..44779fe950 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/felinid.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/felinid.yml @@ -67,12 +67,10 @@ - type: NoShoesSilentFootsteps - type: LanguageKnowledge speaks: - - GalacticCommon - - SolCommon + - TauCetiBasic - Nekomimetic understands: - - GalacticCommon - - SolCommon + - TauCetiBasic - Nekomimetic - type: Thieving ignoreStripHidden: true @@ -80,7 +78,7 @@ stripTimeReduction: 0 stripTimeMultiplier: 0.667 - type: StepTriggerImmune - whitelist: # WD EDIT + whitelist: types: - Shard - Landmine diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/CircuitBoards/production.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/CircuitBoards/production.yml index 6e80ec7c4e..2ed4a594e3 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/CircuitBoards/production.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/CircuitBoards/production.yml @@ -12,9 +12,8 @@ MatterBin: 1 Manipulator: 1 materialRequirements: - Glass: 1 Cable: 1 - Diamond: 10 + PlasmaGlass: 5 tagRequirements: BorgArm: Amount: 3 diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/holoprojectors.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/holoprojectors.yml index a288e4eb7b..793fe6ef2a 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/holoprojectors.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/holoprojectors.yml @@ -9,9 +9,3 @@ - type: Sprite sprite: Nyanotrasen/Objects/Devices/Holoprojectors/eng.rsi state: icon - - type: ItemSlots - slots: - cell_slot: - name: power-cell-slot-component-slot-name-default - startingItem: PowerCellMedium - locked: true diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/pda.yml index d898124b77..c85255f814 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/pda.yml @@ -32,7 +32,7 @@ accentVColor: "#DFDFDF" - type: Icon state: pda-security - - type: CartridgeLoader # DeltaV - Crime Assist + SecWatch + - type: CartridgeLoader # Adds Crime Assist and SecWatch preinstalled: - CrewManifestCartridge - NotekeeperCartridge @@ -43,7 +43,7 @@ - type: entity parent: BasePDA id: MailCarrierPDA - name: courier PDA # DeltaV - Mail Carrier to Courier replacement + name: courier PDA description: Smells like unopened letters. components: - type: Sprite @@ -67,6 +67,12 @@ - type: Icon sprite: DeltaV/Objects/Devices/pda.rsi state: pda-mailcarrier + - type: CartridgeLoader # Adds a courier performance tracker + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReaderCartridge + - MailMetricsCartridge - type: entity parent: BasePDA diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Chapel/amphorae.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Chapel/amphorae.yml index 10f5d631aa..2ef262fd53 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Chapel/amphorae.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Chapel/amphorae.yml @@ -17,7 +17,6 @@ jar: maxVol: 120 - type: Drink - isOpen: true solution: jar - type: Spillable solution: jar @@ -35,8 +34,8 @@ canChangeTransferAmount: true - type: UserInterface interfaces: - - key: enum.TransferAmountUiKey.Key - type: TransferAmountBoundUserInterface + enum.TransferAmountUiKey.Key: + type: TransferAmountBoundUserInterface - type: Damageable damageContainer: Inorganic - type: Destructible diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/base_mail.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/base_mail.yml index c1ca2cd60b..bee514917a 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/base_mail.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/base_mail.yml @@ -5,11 +5,13 @@ name: mail-item-name-unaddressed components: - type: Item - size: Normal +# size: Normal # Frontier + storedRotation: -90 - type: Mail - type: AccessReader - type: Sprite - sprite: Nyanotrasen/Objects/Specific/Mail/mail.rsi + scale: 0.7, 0.7 # Frontier + sprite: Objects/Specific/Mail/mail.rsi layers: - state: icon map: ["enum.MailVisualLayers.Icon"] @@ -18,8 +20,8 @@ map: ["enum.MailVisualLayers.FragileStamp"] visible: false - map: ["enum.MailVisualLayers.JobStamp"] - scale: 0.5, 0.5 - offset: 0.275, 0.2 + scale: 0.8, 0.8 # Frontier 0.5<0.8 + offset: 0.225, 0.165 # Frontier (0.275, 0.2)<(0.225, 0.165) - state: locked map: ["enum.MailVisualLayers.Lock"] - state: priority @@ -77,7 +79,6 @@ - trigger: !type:DamageTrigger damage: 5 - triggersOnce: true behaviors: - !type:DoActsBehavior acts: [ "Breakage" ] @@ -92,6 +93,16 @@ damage: types: Blunt: 10 + - type: CargoSellBlacklist # Frontier + - type: Food # Frontier - Moth food + requiresSpecialDigestion: true + - type: SolutionContainerManager + solutions: + food: + maxVol: 1 + reagents: + - ReagentId: Nothing + Quantity: 1 # This empty parcel is allowed to exist and evade the tests for the admin # mailto command. diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail.yml deleted file mode 100644 index 7f1b26d9cb..0000000000 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail.yml +++ /dev/null @@ -1,835 +0,0 @@ -- type: entity - noSpawn: true - parent: BaseMail - id: MailAlcohol - suffix: alcohol - components: - - type: Mail - contents: - - id: DrinkAbsintheBottleFull - orGroup: Drink - - id: DrinkBlueCuracaoBottleFull - orGroup: Drink - - id: DrinkGinBottleFull - orGroup: Drink - - id: DrinkMelonLiquorBottleFull - orGroup: Drink - - id: DrinkRumBottleFull - orGroup: Drink - - id: DrinkTequilaBottleFull - orGroup: Drink - - id: DrinkVermouthBottleFull - orGroup: Drink - - id: DrinkVodkaBottleFull - orGroup: Drink - - id: DrinkWineBottleFull - orGroup: Drink - - id: DrinkGlass - amount: 2 - -- type: entity - noSpawn: true - parent: BaseMail - id: MailSake - suffix: osake - components: - - type: Mail - contents: - - id: DrinkSakeCup - amount: 2 - - id: DrinkTokkuri - -- type: entity - noSpawn: true - parent: BaseMail - id: MailAMEGuide - suffix: ameguide - components: - - type: Mail - contents: - - id: PaperWrittenAMEScribbles - - id: Pen - -- type: entity - noSpawn: true - parent: BaseMail - id: MailBible - suffix: bible - components: - - type: Mail - contents: - - id: Bible - -- type: entity - noSpawn: true - parent: BaseMail - id: MailBikeHorn - suffix: bike horn - components: - - type: Mail - contents: - - id: BikeHorn - -- type: entity - noSpawn: true - parent: BaseMail - id: MailBlockGameDIY - suffix: blockgamediy - components: - - type: Mail - contents: - - id: BlockGameArcadeComputerCircuitboard - -#- type: entity -# noSpawn: true -# parent: BaseMail -# id: MailBooks -# suffix: books -# components: -# - type: Mail -# contents: -# # Don't use BookDemonomiconRandom. -# # It uses a RandomSpawner which just spawns the book outside of the mail. -# - id: BookDemonomicon1 -# orGroup: Demonomicon -# - id: BookDemonomicon2 -# orGroup: Demonomicon -# - id: BookDemonomicon3 -# orGroup: Demonomicon -# # There's no way to signal "spawn nothing" with an orGroup, -# # so have this blank book instead. Write your own demon summoning tome! -# - id: BookRandom -# prob: 3 -# orGroup: Demonomicon -# - id: BookChemistryInsane -# prob: 0.10 -# - id: BookBotanicalTextbook -# prob: 0.5 -# - id: BookFishing -# prob: 0.10 -# - id: BookDetective -# prob: 0.10 -# - id: BookGnominomicon -# prob: 0.2 -# - id: BookFishops # DeltaV - fishops book -# prob: 0.2 -# - id: BookSalvageEpistemics1 -# prob: 0.025 - -- type: entity - noSpawn: true - parent: BaseMail - id: MailCake - suffix: cake - components: - - type: Mail - isFragile: true - isPriority: true - contents: - - id: FoodCakeBlueberry - orGroup: Cake - - id: FoodCakeCarrot - orGroup: Cake - - id: FoodCakeCheese - orGroup: Cake - - id: FoodCakeChocolate - orGroup: Cake - - id: FoodCakeChristmas - orGroup: Cake - - id: FoodCakeClown - orGroup: Cake - - id: FoodCakeLemon - orGroup: Cake - - id: FoodCakeLime - orGroup: Cake - - id: FoodCakeOrange - orGroup: Cake - - id: FoodCakePumpkin - orGroup: Cake - - id: FoodCakeVanilla - orGroup: Cake - - id: FoodMothMothmallow - orGroup: Cake - prob: 0.5 - - id: KnifePlastic - - id: ForkPlastic - amount: 2 - -- type: entity - noSpawn: true - parent: BaseMail - id: MailCallForHelp - suffix: call-for-help - components: - - type: Mail - contents: - - id: PaperMailCallForHelp1 - orGroup: Paper - - id: PaperMailCallForHelp2 - orGroup: Paper - - id: PaperMailCallForHelp3 - orGroup: Paper - - id: PaperMailCallForHelp4 - orGroup: Paper - - id: PaperMailCallForHelp5 - orGroup: Paper - - id: FlashlightLantern - orGroup: Gift - - id: Crowbar - orGroup: Gift - prob: 0.5 - - id: CrowbarRed - orGroup: Gift - prob: 0.5 - - id: ClothingMaskGas - orGroup: Gift - - id: WeaponFlareGun - orGroup: Gift - prob: 0.25 - -- type: entity - noSpawn: true - parent: BaseMail - id: MailCheese - suffix: cheese - components: - - type: Mail - isFragile: true - isPriority: true - contents: - - id: FoodCheese - - id: KnifePlastic - -- type: entity - noSpawn: true - parent: BaseMail - id: MailChocolate - suffix: chocolate - components: - - type: Mail - contents: - # TODO make some actual chocolate candy items. - - id: FoodSnackChocolate - amount: 3 - -- type: entity - noSpawn: true - parent: BaseMail - id: MailCigarettes - suffix: cigs - components: - - type: Mail - contents: - - id: CigPackRed - - id: CheapLighter - -- type: entity - noSpawn: true - parent: BaseMail - id: MailCigars - suffix: Cigars - components: - - type: Mail - contents: - - id: CigarCase - - id: Lighter - -- type: entity - noSpawn: true - parent: BaseMail - id: MailCookies - suffix: cookies - components: - - type: Mail - # What, you want to eat stale cookies? - isPriority: true - contents: - - id: FoodBakedCookie - - id: FoodBakedCookieOatmeal - - id: FoodBakedCookieRaisin - - id: FoodBakedCookieSugar - -- type: entity - noSpawn: true - parent: BaseMail - id: MailCosplayArc - suffix: cosplay-arc - components: - - type: Mail - openSound: /Audio/Nyanotrasen/Voice/Felinid/cat_wilhelm.ogg - contents: - - id: ClothingCostumeArcDress - -- type: entity - noSpawn: true - parent: BaseMail - id: MailCosplayGeisha - suffix: cosplay-geisha - components: - - type: Mail - contents: - - id: UniformGeisha - - id: DrinkTeapot - - id: DrinkTeacup - amount: 3 - -- type: entity - noSpawn: true - parent: BaseMail - id: MailCosplayMaid - suffix: cosplay-maid - components: - - type: Mail - contents: - - id: UniformMaid - - id: SprayBottleSpaceCleaner - -- type: entity - noSpawn: true - parent: BaseMail - id: MailCosplayNurse - suffix: cosplay-nurse - components: - - type: Mail - contents: - - id: ClothingUniformJumpskirtNurse - - id: Syringe - -- type: entity - noSpawn: true - parent: BaseMail - id: MailCosplaySchoolgirl - suffix: cosplay-schoolgirl - components: - - type: Mail - contents: - - id: UniformSchoolgirlBlack - orGroup: Color - - id: UniformSchoolgirlBlue - orGroup: Color - - id: UniformSchoolgirlCyan - orGroup: Color - - id: UniformSchoolgirlGreen - orGroup: Color - - id: UniformSchoolgirlOrange - orGroup: Color - - id: UniformSchoolgirlPink - orGroup: Color - - id: UniformSchoolgirlPurple - orGroup: Color - - id: UniformSchoolgirlRed - orGroup: Color - -- type: entity - noSpawn: true - parent: BaseMail - id: MailCosplayWizard - suffix: cosplay-wizard - components: - - type: Mail - contents: - - id: ClothingOuterWizardFake - - id: ClothingHeadHatWizardFake - - id: ClothingShoesWizardFake - -- type: entity - noSpawn: true - parent: BaseMail - id: MailCrayon - suffix: Crayon - components: - - type: Mail - contents: - - id: CrayonBox - -- type: entity - noSpawn: true - parent: BaseMail - id: MailFigurine - suffix: figurine - components: - - type: Mail - isFragile: true - contents: - - id: ToyAi - orGroup: Toy - - id: ToyNuke - orGroup: Toy - - id: ToyFigurinePassenger - orGroup: Toy - - id: ToyGriffin - orGroup: Toy - - id: ToyHonk - orGroup: Toy - - id: ToyIan - orGroup: Toy - - id: ToyMarauder - orGroup: Toy - - id: ToyMauler - orGroup: Toy - - id: ToyGygax - orGroup: Toy - - id: ToyOdysseus - orGroup: Toy - - id: ToyOwlman - orGroup: Toy - - id: ToyDeathRipley - orGroup: Toy - - id: ToyPhazon - orGroup: Toy - - id: ToyFireRipley - orGroup: Toy - - id: ToyReticence - orGroup: Toy - - id: ToyRipley - orGroup: Toy - - id: ToySeraph - orGroup: Toy - - id: ToyDurand - orGroup: Toy - -- type: entity - noSpawn: true - parent: BaseMail - id: MailFishingCap - suffix: fishingcap - components: - - type: Mail - contents: - - id: ClothingHeadFishCap - -- type: entity - noSpawn: true - parent: BaseMail - id: MailFlashlight - suffix: Flashlight - components: - - type: Mail - contents: - - id: FlashlightLantern - -#- type: entity -# noSpawn: true -# parent: BaseMail -# id: MailFlowers -# suffix: flowers -# components: -# - type: Mail -# contents: -# # TODO actual flowers -# - id: ClothingHeadHatFlowerCrown -# orGroup: Flower -# - id: ClothingHeadHatHairflower -# orGroup: Flower - -- type: entity - noSpawn: true - parent: BaseMail - id: MailHighlander - suffix: highlander - components: - - type: Mail - contents: - - id: ClothingUniformJumpskirtColorRed - - id: ClothingHeadHatBeret - - id: DrinkRedMeadGlass - - id: Claymore - -- type: entity - noSpawn: true - parent: BaseMail - id: MailHighlanderDulled - suffix: highlander, dulled - components: - - type: Mail - contents: - - id: ClothingUniformJumpskirtColorRed - - id: ClothingHeadHatBeret - - id: DrinkGlass - - id: ClaymoreDulled - -- type: entity - noSpawn: true - parent: BaseMail - id: MailHoneyBuns - suffix: honeybuns - components: - - type: Mail - contents: - - id: FoodBakedBunHoney - amount: 2 - -- type: entity - noSpawn: true - parent: BaseMail - id: MailJunkFood - suffix: junk food - components: - - type: Mail - contents: - - id: FoodBoxDonkpocket - - id: FoodSnackChips - -- type: entity - noSpawn: true - parent: BaseMail - id: MailKatana - suffix: Katana - components: - - type: Mail - contents: - - id: Katana - prob: 0.1 - orGroup: Katana - - id: KatanaDulled - prob: 0.9 - orGroup: Katana - -- type: entity - noSpawn: true - parent: BaseMail - id: MailKnife - suffix: Knife - components: - - type: Mail - contents: - - id: CombatKnife - -- type: entity - noSpawn: true - parent: BaseMail - id: MailMoney - suffix: money - components: - - type: Mail - contents: - - id: SpaceCash100 - orGroup: Cash - prob: 0.3 - - id: SpaceCash500 - orGroup: Cash - prob: 0.6 - - id: SpaceCash1000 - orGroup: Cash - prob: 0.3 - -- type: entity - noSpawn: true - parent: BaseMail - id: MailMuffins - suffix: muffins - components: - - type: Mail - isPriority: true - contents: - - id: FoodBakedMuffinBerry - - id: FoodBakedMuffinCherry - - id: FoodBakedMuffinBluecherry - -- type: entity - noSpawn: true - parent: BaseMail - id: MailMoffins - suffix: moffins - components: - - type: Mail - isPriority: true - contents: - - id: FoodMothMoffin - amount: 3 - -- type: entity - noSpawn: true - parent: BaseMail - id: MailNoir - suffix: noir - components: - - type: Mail - contents: - - id: ClothingUniformJumpsuitDetectiveGrey - - id: ClothingUniformJumpskirtDetectiveGrey - - id: ClothingHeadHatBowlerHat - - id: ClothingOuterCoatGentle - -- type: entity - noSpawn: true - parent: BaseMail - id: MailPAI - suffix: PAI - components: - - type: Mail - contents: - - id: PersonalAI - -- type: entity - noSpawn: true - parent: BaseMail - id: MailPlushie - suffix: plushie - components: - - type: Mail - contents: - - id: PlushieMothRandom - orGroup: Prize - - id: PlushieMothMusician - orGroup: Prize - - id: PlushieMothBartender - orGroup: Prize - - id: PlushieBee - orGroup: Prize - - id: PlushieHampter - orGroup: Prize - - id: PlushieRouny - orGroup: Prize - - id: PlushieLamp - orGroup: Prize - - id: PlushieArachind - orGroup: Prize - - id: PlushieLizard - orGroup: Prize - - id: PlushieLizardMirrored - orGroup: Prize - - id: PlushieSpaceLizard - orGroup: Prize - - id: PlushieDiona - orGroup: Prize - - id: PlushieSharkBlue - orGroup: Prize - - id: PlushieSharkPink - orGroup: Prize - - id: PlushieSharkGrey - orGroup: Prize - - id: PlushieCarp - orGroup: Prize - - id: PlushieMagicarp - orGroup: Prize - - id: PlushieHolocarp - orGroup: Prize - - id: PlushieSlime - orGroup: Prize - - id: PlushieSnake - orGroup: Prize - - id: PlushieVox - orGroup: Prize - - id: PlushieAtmosian - orGroup: Prize - - id: PlushiePenguin - orGroup: Prize - - id: PlushieHuman - orGroup: Prize - - id: PlushieArachne - orGroup: Prize - - id: PlushieGnome - orGroup: Prize - - id: PlushieLoveable - orGroup: Prize - - id: PlushieDeer - orGroup: Prize - - id: PlushieIpc - orGroup: Prize - - id: PlushieGrey - orGroup: Prize - - id: PlushieRedFox - orGroup: Prize - - id: PlushiePurpleFox - orGroup: Prize - - id: PlushiePinkFox - orGroup: Prize - - id: PlushieOrangeFox - orGroup: Prize - - id: PlushieMarbleFox - orGroup: Prize - - id: PlushieCrimsonFox - orGroup: Prize - - id: PlushieCoffeeFox - orGroup: Prize - - id: PlushieBlueFox - orGroup: Prize - - id: PlushieBlackFox - orGroup: Prize - - id: PlushieVulp - orGroup: Prize - - id: PlushieCorgi - orGroup: Prize - - id: PlushieGirlyCorgi - orGroup: Prize - - id: PlushieRobotCorgi - orGroup: Prize - - id: PlushieCatBlack - orGroup: Prize - - id: PlushieCatGrey - orGroup: Prize - - id: PlushieCatOrange - orGroup: Prize - - id: PlushieCatSiames - orGroup: Prize - - id: PlushieCatTabby - orGroup: Prize - - id: PlushieCatTuxedo - orGroup: Prize - - id: PlushieCatWhite - orGroup: Prize - - id: PlushieGhost - orGroup: Prize - - id: PlushieRGBee - orGroup: Prize - - id: PlushieRatvar - orGroup: Prize - - id: PlushieNar - orGroup: Prize - - id: PlushieRainbowCarp - orGroup: Prize - - id: PlushieXeno - orGroup: Prize - - id: PlushieJester - orGroup: Prize - - id: PlushieSlips - orGroup: Prize - - id: PlushieAbductor - orGroup: Prize - - id: PlushieTrystan - orGroup: Prize - - id: PlushieAbductorAgent - orGroup: Prize - - id: PlushieNuke - orGroup: Prize - -- type: entity - noSpawn: true - parent: BaseMail - id: MailRestraints - suffix: restraints - components: - - type: Mail - contents: - - id: Handcuffs - - id: ClothingMaskMuzzle - - id: ClothingEyesBlindfold - -- type: entity - noSpawn: true - parent: BaseMail - id: MailSignallerKit - suffix: signallerkit - components: - - type: Mail - contents: - - id: Multitool - - id: RemoteSignaller - -# - type: entity -# noSpawn: true -# parent: BaseMail -# id: MailSixPack -# suffix: sixpack -# components: -# - type: Mail -# contents: -# - id: DrinkCanPack - -- type: entity - noSpawn: true - parent: BaseMail - id: MailSkub - suffix: skub - components: - - type: Mail - contents: - - id: Skub - -- type: entity - noSpawn: true - parent: BaseMail - id: MailSoda - suffix: soda - components: - - type: Mail - contents: - - id: DrinkColaBottleFull - orGroup: Soda - - id: DrinkSpaceMountainWindBottleFull - orGroup: Soda - - id: DrinkSpaceUpBottleFull - orGroup: Soda - -- type: entity - noSpawn: true - parent: BaseMail - id: MailSpaceVillainDIY - suffix: spacevilliandiy - components: - - type: Mail - contents: - - id: SpaceVillainArcadeComputerCircuitboard - -- type: entity - noSpawn: true - parent: BaseMail - id: MailSunglasses - suffix: Sunglasses - components: - - type: Mail - contents: - - id: ClothingEyesGlassesSunglasses - -- type: entity - noSpawn: true - parent: BaseMail - id: MailVagueThreat - suffix: vague-threat - components: - - type: Mail - contents: - - id: PaperMailVagueThreat1 - orGroup: Paper - - id: PaperMailVagueThreat2 - orGroup: Paper - - id: PaperMailVagueThreat3 - orGroup: Paper - - id: PaperMailVagueThreat4 - orGroup: Paper - - id: PaperMailVagueThreat5 - orGroup: Paper - - id: PaperMailVagueThreat6 - orGroup: Paper - - id: PaperMailVagueThreat7 - orGroup: Paper - - id: PaperMailVagueThreat8 - orGroup: Paper - - id: PaperMailVagueThreat9 - orGroup: Paper - - id: PaperMailVagueThreat10 - orGroup: Paper - - id: PaperMailVagueThreat11 - orGroup: Paper - - id: PaperMailVagueThreat12 - orGroup: Paper - - id: KitchenKnife - orGroup: ThreateningObject - - id: ButchCleaver - orGroup: ThreateningObject - - id: CombatKnife - orGroup: ThreateningObject - - id: SurvivalKnife - orGroup: ThreateningObject - - id: SoapHomemade - orGroup: ThreateningObject - - id: FoodMeat - orGroup: ThreateningObject - - id: OrganHumanHeart - orGroup: ThreateningObject - -- type: entity - noSpawn: true - parent: BaseMail - id: MailWinterCoat - suffix: wintercoat - components: - - type: Mail - contents: - - id: ClothingOuterWinterCoat - orGroup: Coat - - id: ClothingOuterWinterCoatLong - orGroup: Coat - - id: ClothingOuterWinterCoatPlaid - orGroup: Coat diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail_civilian.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail_civilian.yml deleted file mode 100644 index a41fac14ff..0000000000 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail_civilian.yml +++ /dev/null @@ -1,195 +0,0 @@ -- type: entity - noSpawn: true - parent: BaseMail - id: MailBotanistChemicalBottles - suffix: botanistchemicals - components: - - type: Mail - contents: - - id: RobustHarvestChemistryBottle - orGroup: Chemical - prob: 0.6 - - id: WeedSpray - orGroup: Chemical - prob: 0.4 - -- type: entity - noSpawn: true - parent: BaseMail - id: MailBotanistMutagen - suffix: mutagen - components: - - type: Mail - isFragile: true - isPriority: true - contents: - - id: UnstableMutagenChemistryBottle - -- type: entity - noSpawn: true - parent: BaseMail - id: MailBotanistSeeds - suffix: seeds - components: - - type: Mail - contents: - - id: AloeSeeds - orGroup: Seeds - - id: AmbrosiaVulgarisSeeds - orGroup: Seeds - - id: AppleSeeds - orGroup: Seeds - - id: BananaSeeds - orGroup: Seeds - - id: CarrotSeeds - orGroup: Seeds - - id: ChanterelleSeeds - orGroup: Seeds - - id: ChiliSeeds - orGroup: Seeds - - id: CornSeeds - orGroup: Seeds - - id: EggplantSeeds - orGroup: Seeds - - id: GalaxythistleSeeds - orGroup: Seeds - - id: LemonSeeds - orGroup: Seeds - - id: LingzhiSeeds - orGroup: Seeds - - id: OatSeeds - orGroup: Seeds - - id: OnionSeeds - orGroup: Seeds - - id: PoppySeeds - orGroup: Seeds - - id: PotatoSeeds - orGroup: Seeds - - id: SugarcaneSeeds - orGroup: Seeds - - id: TomatoSeeds - orGroup: Seeds - - id: TowercapSeeds - orGroup: Seeds - - id: WheatSeeds - orGroup: Seeds - -- type: entity - noSpawn: true - parent: BaseMail - id: MailClownGildedBikeHorn - suffix: honk - components: - - type: Mail - isFragile: true - contents: - - id: BikeHornInstrument - -- type: entity - noSpawn: true - parent: BaseMail - id: MailClownHonkSupplement - suffix: honk - components: - - type: Mail - isFragile: true - contents: - - id: BikeHorn - - id: FoodPieBananaCream - - id: FoodBanana - -- type: entity - noSpawn: true - parent: BaseMail - id: MailHoPBureaucracy - suffix: hoppaper - components: - - type: Mail - contents: - - id: Paper - maxAmount: 3 - -- type: entity - noSpawn: true - parent: BaseMail - id: MailHoPSupplement - suffix: hopsupplement - components: - - type: Mail - contents: - - id: ClearPDA - - id: ClothingHeadsetGrey - - id: Paper - -- type: entity - noSpawn: true - parent: BaseMail - id: MailMimeArtsCrafts - suffix: artscrafts - components: - - type: Mail - contents: - - id: CrayonBox - - id: Paper - maxAmount: 3 - -- type: entity - noSpawn: true - parent: BaseMail - id: MailMimeBlankBook - suffix: blankbook - components: - - type: Mail - contents: - - id: BookRandom - -- type: entity - noSpawn: true - parent: BaseMail - id: MailMimeBottleOfNothing - suffix: bottleofnothing - components: - - type: Mail - contents: - - id: DrinkBottleOfNothingFull - -- type: entity - noSpawn: true - parent: BaseMail - id: MailMusicianInstrumentSmall - suffix: instrument-small - components: - - type: Mail - isFragile: true - contents: - - id: FluteInstrument - orGroup: Instrument - - id: HarmonicaInstrument - orGroup: Instrument - - id: OcarinaInstrument - orGroup: Instrument - - id: PanFluteInstrument - orGroup: Instrument - - id: RecorderInstrument - orGroup: Instrument - -- type: entity - noSpawn: true - parent: BaseMail - id: MailPassengerMoney - suffix: passengermoney - components: - - type: Mail - contents: - - id: SpaceCash100 - orGroup: Cash - prob: 0.1 - maxAmount: 10 - - id: SpaceCash500 - orGroup: Cash - prob: 0.3 - maxAmount: 5 - - id: SpaceCash1000 - orGroup: Cash - prob: 0.6 - maxAmount: 3 diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail_command.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail_command.yml deleted file mode 100644 index 7e2a935f90..0000000000 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail_command.yml +++ /dev/null @@ -1,9 +0,0 @@ -- type: entity - noSpawn: true - parent: BaseMail - id: MailCommandPinpointerNuclear - suffix: pinpointernuclear - components: - - type: Mail - contents: - - id: PinpointerNuclear diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail_engineering.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail_engineering.yml deleted file mode 100644 index 461d9bf136..0000000000 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail_engineering.yml +++ /dev/null @@ -1,45 +0,0 @@ -- type: entity - noSpawn: true - parent: BaseMail - id: MailEngineeringCables - suffix: cables - components: - - type: Mail - contents: - - id: CableHVStack - orGroup: Cables - - id: CableMVStack - orGroup: Cables - - id: CableApcStack - orGroup: Cables - -- type: entity - noSpawn: true - parent: BaseMail - id: MailEngineeringKudzuDeterrent - suffix: antikudzu - components: - - type: Mail - contents: - - id: PlantBGoneSpray - -- type: entity - noSpawn: true - parent: BaseMail - id: MailEngineeringSheetGlass - suffix: sheetglass - components: - - type: Mail - contents: - - id: SheetGlass - -- type: entity - noSpawn: true - parent: BaseMail - id: MailEngineeringWelderReplacement - suffix: welder - components: - - type: Mail - contents: - - id: Welder - diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail_epistemology.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail_epistemology.yml deleted file mode 100644 index 38526966b8..0000000000 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail_epistemology.yml +++ /dev/null @@ -1,58 +0,0 @@ -- type: entity - noSpawn: true - parent: BaseMail - id: MailEpistemologyBluespace - suffix: bluespace - components: - - type: Mail - contents: - - id: MaterialBluespace1 - -- type: entity - noSpawn: true - parent: BaseMail - id: MailEpistemologyIngotGold - suffix: ingotgold - components: - - type: Mail - contents: - - id: IngotGold1 - maxAmount: 3 - -- type: entity - noSpawn: true - parent: BaseMail - id: MailEpistemologyResearchDisk - suffix: researchdisk - components: - - type: Mail - contents: - - id: ResearchDisk - orGroup: Disk - prob: 0.6 - - id: ResearchDisk5000 - orGroup: Disk - prob: 0.3 - - id: ResearchDisk10000 - orGroup: Disk - prob: 0.1 - -- type: entity - noSpawn: true - parent: BaseMail - id: MailEpistemologyTinfoilHat - suffix: tinfoilhat - components: - - type: Mail - contents: - - id: ClothingHeadTinfoil - -- type: entity - noSpawn: true - parent: BaseMail - id: MailDetectiveForensicSupplement # Deltav - Detective is in charge of investigating crimes. - suffix: detectivesupplement # Deltav - Detective is in charge of investigating crimes. - components: - - type: Mail - contents: - - id: BoxForensicPad diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail_security.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail_security.yml deleted file mode 100644 index b47d5af56e..0000000000 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail_security.yml +++ /dev/null @@ -1,56 +0,0 @@ -- type: entity - noSpawn: true - parent: BaseMail - id: MailSecurityDonuts - suffix: donuts - components: - - type: Mail - contents: - - id: FoodBoxDonut - -- type: entity - noSpawn: true - parent: BaseMail - id: MailSecurityFlashlight - suffix: seclite - components: - - type: Mail - contents: - - id: FlashlightSeclite - -- type: entity - noSpawn: true - parent: BaseMail - id: MailSecurityNonlethalsKit - suffix: nonlethalskit - components: - - type: Mail - contents: - - id: Flash - maxAmount: 2 - - id: GrenadeFlashBang - maxAmount: 2 - - id: Handcuffs - maxAmount: 2 - -#- type: entity -# noSpawn: true -# parent: BaseMail -# id: MailSecuritySpaceLaw -# suffix: spacelaw -# components: -# - type: Mail -# contents: -# - id: HyperlinkBookSpaceLaw -# Will we ever readd hyperlinks books? Who knows! - -- type: entity - noSpawn: true - parent: BaseMail - id: MailWardenCrowdControl - suffix: crowdcontrol - components: - - type: Mail - contents: - - id: BoxBeanbag - diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail_specific_items.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail_specific_items.yml deleted file mode 100644 index b4d2b54779..0000000000 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/mail_specific_items.yml +++ /dev/null @@ -1,169 +0,0 @@ -- type: entity - id: PaperMailCallForHelp1 - noSpawn: true - suffix: "call for help 1" - parent: Paper - components: - - type: Paper - content: | - Help! They're coming! Take this! - -- type: entity - id: PaperMailCallForHelp2 - noSpawn: true - suffix: "call for help 2" - parent: Paper - components: - - type: Paper - content: | - Check disposals! - -- type: entity - id: PaperMailCallForHelp3 - noSpawn: true - suffix: "call for help 3" - parent: Paper - components: - - type: Paper - content: | - GET ME OUT! - -- type: entity - id: PaperMailCallForHelp4 - noSpawn: true - suffix: "call for help 4" - parent: Paper - components: - - type: Paper - content: | - Check maintenance! - -- type: entity - id: PaperMailCallForHelp5 - noSpawn: true - suffix: "call for help 5" - parent: Paper - components: - - type: Paper - content: | - Save me, please! - -- type: entity - id: PaperMailVagueThreat1 - noSpawn: true - suffix: "vague mail threat 1" - parent: Paper - components: - - type: Paper - content: | - I know what you did. You don't know what I'm going to do to you. - -- type: entity - id: PaperMailVagueThreat2 - noSpawn: true - suffix: "vague mail threat 2" - parent: Paper - components: - - type: Paper - content: | - I'm coming for you. - -- type: entity - id: PaperMailVagueThreat3 - noSpawn: true - suffix: "vague mail threat 3" - parent: Paper - components: - - type: Paper - content: | - You're next. - -- type: entity - id: PaperMailVagueThreat4 - noSpawn: true - suffix: "vague mail threat 4" - parent: Paper - components: - - type: Paper - content: | - We see you. - -- type: entity - id: PaperMailVagueThreat5 - noSpawn: true - suffix: "vague mail threat 5" - parent: Paper - components: - - type: Paper - content: | - I hope your affairs are in order. - -- type: entity - id: PaperMailVagueThreat6 - noSpawn: true - suffix: "vague mail threat 6" - parent: Paper - components: - - type: Paper - content: | - It's only a matter of time. Enjoy it while it lasts. - -- type: entity - id: PaperMailVagueThreat7 - noSpawn: true - suffix: "vague mail threat 7" - parent: Paper - components: - - type: Paper - content: | - Who should we mail your pieces to? - -- type: entity - id: PaperMailVagueThreat8 - noSpawn: true - suffix: "vague mail threat 8" - parent: Paper - components: - - type: Paper - content: | - Do you prefer to die slowly or quickly? Just kidding. We don't care what you think. - -- type: entity - id: PaperMailVagueThreat9 - noSpawn: true - suffix: "vague mail threat 9" - parent: Paper - components: - - type: Paper - content: | - I think your head would look nice on my mantel. - -- type: entity - id: PaperMailVagueThreat10 - noSpawn: true - suffix: "vague mail threat 10" - parent: Paper - components: - - type: Paper - content: | - You should have paid up. It's too late now. - -- type: entity - id: PaperMailVagueThreat11 - noSpawn: true - suffix: "vague mail threat 11" - parent: Paper - components: - - type: Paper - content: | - Your family will miss you, but don't worry. We'll take care of them too. - -- type: entity - id: PaperMailVagueThreat12 - noSpawn: true - suffix: "vague mail threat 12" - parent: Paper - components: - - type: Paper - content: | - I have a bet that you're going to die today. I'm not afraid of cheating. diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Research/crystals.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Research/crystals.yml deleted file mode 100644 index b4d3ca1abf..0000000000 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Research/crystals.yml +++ /dev/null @@ -1,36 +0,0 @@ -- type: entity - parent: BaseItem - id: CrystalNormality - name: normality crystal - description: It looks... normal. Placeholder sprite. - components: - - type: Sprite - sprite: Nyanotrasen/Objects/Materials/materials.rsi - state: bluespace - color: gray - - type: Tag - tags: - - NormalityCrystal - -# - type: entity -# parent: BaseItem -# id: CrystalSoul -# name: soul crystal -# description: Contains a soul. Placeholder sprite. -# components: -# - type: Sprite -# sprite: Nyanotrasen/Objects/Materials/materials.rsi -# state: bluespace -# color: purple -# - type: Speech -# - type: Psionic -# - type: SoulCrystal -# - type: SolutionContainerManager -# solutions: -# ectoplasm: -# maxvol: 50 -# reagents: -# - ReagentId: Ectoplasm -# Quantity: 50 -# - type: Extractable -# grindableSolutionName: ectoplasm diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Guns/Projectiles/shotgun.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Guns/Projectiles/shotgun.yml index 293eba3aca..42826c94cb 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Guns/Projectiles/shotgun.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Guns/Projectiles/shotgun.yml @@ -24,6 +24,3 @@ blockSlots: NONE #tranquillizer darts shouldn't be blocked by a mask - type: InjectableSolution solution: ammo - - type: GuideHelp - guides: - - Psionics diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Stations/mail.yml b/Resources/Prototypes/Nyanotrasen/Entities/Stations/mail.yml index ceb87bbaa1..b85cfef87a 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Stations/mail.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Stations/mail.yml @@ -3,3 +3,4 @@ abstract: true components: - type: StationMailRouter + - type: StationLogisticStats # DeltaV - Tracks statistics related to mail and income diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Doors/Airlocks/access.yml index 19226d067f..d9e4645446 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Doors/Airlocks/access.yml @@ -3,13 +3,15 @@ id: AirlockMailLocked suffix: Mail, Locked components: - - type: AccessReader - access: [["Mail"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsMail ] - type: entity parent: AirlockCargoGlass id: AirlockMailGlassLocked suffix: Mail, Locked components: - - type: AccessReader - access: [["Mail"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsMail ] diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/deep_fryer.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/deep_fryer.yml index fa3e0537db..9749a4295d 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/deep_fryer.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/deep_fryer.yml @@ -124,15 +124,14 @@ - type: RefillableSolution solution: vat_oil - type: Drink - isOpen: true solution: vat_oil - type: Appearance - type: ActivatableUI key: enum.DeepFryerUiKey.Key - type: UserInterface interfaces: - - key: enum.DeepFryerUiKey.Key - type: DeepFryerBoundUserInterface + enum.DeepFryerUiKey.Key: + type: DeepFryerBoundUserInterface - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/laundry.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/laundry.yml index ce982d41c2..47518c78f6 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/laundry.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/laundry.yml @@ -84,8 +84,8 @@ ents: [] - type: UserInterface interfaces: - - key: enum.StorageUiKey.Key - type: StorageBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface - type: UseDelay delay: 0.5 - type: Repairable diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/reverseEngineering.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/reverseEngineering.yml index c28c395261..3c3a9908c6 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/reverseEngineering.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/reverseEngineering.yml @@ -19,8 +19,8 @@ key: enum.ReverseEngineeringMachineUiKey.Key - type: UserInterface interfaces: - - key: enum.ReverseEngineeringMachineUiKey.Key - type: ReverseEngineeringMachineBoundUserInterface + enum.ReverseEngineeringMachineUiKey.Key: + type: ReverseEngineeringMachineBoundUserInterface - type: ActivatableUIRequiresPower - type: ItemSlots slots: diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/glimmer_prober.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/glimmer_prober.yml index abdc8d6eeb..0eede9c281 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/glimmer_prober.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/glimmer_prober.yml @@ -65,9 +65,6 @@ damageContainer: Inorganic damageModifierSet: ShockAbsorber - type: CargoSellBlacklist - - type: GuideHelp - guides: - - Psionics - type: AmbientSound range: 6 volume: -6 @@ -119,9 +116,6 @@ False: {visible: false} - type: PowerSwitch - type: CargoSellBlacklist - - type: GuideHelp - guides: - - Psionics - type: NpcFactionMember factions: - PsionicInterloper # :^) diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/sophicscribe.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/sophicscribe.yml index 1a065b001c..f92c9b0740 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/sophicscribe.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/sophicscribe.yml @@ -16,13 +16,7 @@ - type: Speech speechSounds: Tenor - type: IntrinsicRadioReceiver - channels: - - Common - - Science - type: IntrinsicRadioTransmitter - channels: - - Common - - Science - type: ActiveRadio channels: - Common @@ -45,6 +39,10 @@ gender: female proper: true - type: SpriteFade - - type: GuideHelp - guides: - - Psionics + - type: LanguageSpeaker + currentLanguage: TauCetiBasic + - type: LanguageKnowledge + speaks: + - TauCetiBasic + understands: + - TauCetiBasic diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Walls/walls.yml index 1254829991..971e292f90 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Walls/walls.yml @@ -49,8 +49,6 @@ node: girder - !type:DoActsBehavior acts: ["Destruction"] - destroySound: - collection: MetalBreak - type: IconSmooth key: walls base: paperwall diff --git a/Resources/Prototypes/Nyanotrasen/GameRules/events.yml b/Resources/Prototypes/Nyanotrasen/GameRules/events.yml index 43347ca7d0..e73ac51d5c 100644 --- a/Resources/Prototypes/Nyanotrasen/GameRules/events.yml +++ b/Resources/Prototypes/Nyanotrasen/GameRules/events.yml @@ -24,13 +24,13 @@ earliestStart: 25 - type: MidRoundAntagRule -#- type: entity -# noSpawn: true -# parent: BaseMidRoundAntag -# id: RatKingSpawn -# components: -# - type: MidRoundAntagRule -# spawner: SpawnPointGhostRatKing +- type: entity + noSpawn: true + parent: BaseMidRoundAntag + id: RatKingSpawn + components: + - type: MidRoundAntagRule + spawner: SpawnPointGhostRatKing - type: entity noSpawn: true @@ -94,7 +94,7 @@ noSpawn: true components: - type: GlimmerEvent - minimumGlimmer: 590 + minimumGlimmer: 400 maximumGlimmer: 1000 glimmerBurnLower: 18 glimmerBurnUpper: 40 @@ -129,7 +129,7 @@ noSpawn: true components: - type: GlimmerEvent - minimumGlimmer: 550 # Requires at least some noospheric activity + minimumGlimmer: 300 maximumGlimmer: 1000 report: glimmer-event-report-signatures - type: FreeProberRule @@ -147,7 +147,7 @@ reoccurrenceDelay: 15 minimumPlayers: 10 - type: GlimmerEvent - minimumGlimmer: 500 + minimumGlimmer: 250 maximumGlimmer: 900 report: glimmer-event-report-signatures - type: GlimmerRandomSentienceRule @@ -158,8 +158,10 @@ noSpawn: true components: - type: GlimmerEvent - minimumGlimmer: 700 + minimumGlimmer: 450 maximumGlimmer: 900 + glimmerBurnLower: 50 + glimmerBurnUpper: 100 # Gives epi a chance to recover report: glimmer-event-report-signatures - type: GlimmerRevenantRule @@ -169,7 +171,7 @@ noSpawn: true components: - type: GlimmerEvent - minimumGlimmer: 50 + minimumGlimmer: 250 maximumGlimmer: 900 report: glimmer-event-report-signatures - type: GlimmerMobRule diff --git a/Resources/Prototypes/Nyanotrasen/Guidebook/epistemics.yml b/Resources/Prototypes/Nyanotrasen/Guidebook/epistemics.yml index 77b180d6ea..adfbc8ce72 100644 --- a/Resources/Prototypes/Nyanotrasen/Guidebook/epistemics.yml +++ b/Resources/Prototypes/Nyanotrasen/Guidebook/epistemics.yml @@ -1,8 +1,3 @@ -- type: guideEntry - id: Psionics - name: guide-entry-psionics - text: "/ServerInfo/Nyanotrasen/Guidebook/Epistemics/Psionics.xml" - # - type: guideEntry # When it's added # id: AltarsGolemancy # name: guide-entry-altars-golemancy diff --git a/Resources/Prototypes/Nyanotrasen/Hydroponics/seeds.yml b/Resources/Prototypes/Nyanotrasen/Hydroponics/seeds.yml index 688af9fc50..08f4482787 100644 --- a/Resources/Prototypes/Nyanotrasen/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Nyanotrasen/Hydroponics/seeds.yml @@ -17,14 +17,13 @@ nutrientConsumption: 0.25 idealLight: 8 idealHeat: 298 - juicy: true splatPrototype: PuddleSplatter chemicals: Nutriment: Min: 1 Max: 10 - PotencyDivisor: 10 + potencyDivisor: 10 DemonsBlood: Min: 1 Max: 4 - PotencyDivisor: 25 + potencyDivisor: 25 diff --git a/Resources/Prototypes/Nyanotrasen/Objectives/traitor.yml b/Resources/Prototypes/Nyanotrasen/Objectives/traitor.yml index 53910a54a9..e6e497003d 100644 --- a/Resources/Prototypes/Nyanotrasen/Objectives/traitor.yml +++ b/Resources/Prototypes/Nyanotrasen/Objectives/traitor.yml @@ -9,29 +9,6 @@ stealGroup: AntiPsychicKnife owner: job-name-mantis -- type: entity - id: BecomePsionicObjective - parent: BaseTraitorObjective - name: Become psionic - description: We need you to acquire psionics and keep them until your mission is complete. - noSpawn: true - components: - - type: NotJobsRequirement - jobs: - - Mime - - ForensicMantis - - type: Objective - difficulty: 2.5 - #unique: false - icon: - sprite: Nyanotrasen/Icons/psi.rsi - state: psi - - type: ObjectiveBlacklistRequirement - blacklist: - components: - - BecomeGolemCondition - - type: BecomePsionicCondition - #- type: entity # id: BecomeGolemObjective # parent: BaseTraitorObjective diff --git a/Resources/Prototypes/Nyanotrasen/Reagents/Consumable/Drink/alcohol.yml b/Resources/Prototypes/Nyanotrasen/Reagents/Consumable/Drink/alcohol.yml index 972fc08239..19d49b913a 100644 --- a/Resources/Prototypes/Nyanotrasen/Reagents/Consumable/Drink/alcohol.yml +++ b/Resources/Prototypes/Nyanotrasen/Reagents/Consumable/Drink/alcohol.yml @@ -19,7 +19,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.07 + amount: 0.15 - type: reagent id: Soju @@ -42,7 +42,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.15 + amount: 0.2 - type: reagent id: OrangeCreamice @@ -65,7 +65,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.05 + amount: 0.1 - type: reagent id: Silverjack @@ -88,7 +88,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.0625 + amount: 0.1375 - type: reagent id: Brainbomb @@ -118,7 +118,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.085 + amount: 0.13 - !type:AdjustReagent reagent: THC amount: 0.33 @@ -147,7 +147,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.025 + amount: 0.08 - type: reagent id: CircusJuice @@ -170,7 +170,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.0625 + amount: 0.12 - !type:Emote #It's very funny emote: Laugh probability: 0.15 @@ -196,7 +196,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.065 + amount: 0.1125 - !type:AdjustTemperature amount: 75 # thermal energy, not temperature! @@ -221,4 +221,4 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.03 + amount: 0.12 diff --git a/Resources/Prototypes/Nyanotrasen/Reagents/Materials/materials.yml b/Resources/Prototypes/Nyanotrasen/Reagents/Materials/materials.yml deleted file mode 100644 index 9146f29713..0000000000 --- a/Resources/Prototypes/Nyanotrasen/Reagents/Materials/materials.yml +++ /dev/null @@ -1,8 +0,0 @@ -- type: material - id: Bluespace - name: bluespace - unit: materials-unit-crystal - icon: /Textures/Nyanotrasen/Objects/Materials/materials.rsi/bluespace.png - color: "#53a9ff" - stackEntity: MaterialBluespace - price: 15 diff --git a/Resources/Prototypes/Nyanotrasen/Recipes/Construction/Graphs/structures/glimmerdevices.yml b/Resources/Prototypes/Nyanotrasen/Recipes/Construction/Graphs/structures/glimmerdevices.yml index 1926992b69..a79f93ec0e 100644 --- a/Resources/Prototypes/Nyanotrasen/Recipes/Construction/Graphs/structures/glimmerdevices.yml +++ b/Resources/Prototypes/Nyanotrasen/Recipes/Construction/Graphs/structures/glimmerdevices.yml @@ -30,36 +30,9 @@ conditions: - !type:EntityAnchored {} steps: - - tag: NormalityCrystal - icon: - sprite: Nyanotrasen/Objects/Materials/materials.rsi - state: bluespace - name: a normality crystal - doAfter: 1 - - tag: NormalityCrystal - icon: - sprite: Nyanotrasen/Objects/Materials/materials.rsi - state: bluespace - name: a normality crystal - doAfter: 1 - - tag: NormalityCrystal - icon: - sprite: Nyanotrasen/Objects/Materials/materials.rsi - state: bluespace - name: a normality crystal - doAfter: 1 - - tag: NormalityCrystal - icon: - sprite: Nyanotrasen/Objects/Materials/materials.rsi - state: bluespace - name: a normality crystal - doAfter: 1 - - tag: NormalityCrystal - icon: - sprite: Nyanotrasen/Objects/Materials/materials.rsi - state: bluespace - name: a normality crystal - doAfter: 1 + - material: Normality + amount: 5 + doAfter: 10 - tool: Welding doAfter: 5 diff --git a/Resources/Prototypes/Nyanotrasen/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Nyanotrasen/Recipes/Cooking/meal_recipes.yml index 51777e2f59..b61e99ba92 100644 --- a/Resources/Prototypes/Nyanotrasen/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Nyanotrasen/Recipes/Cooking/meal_recipes.yml @@ -26,7 +26,7 @@ solids: FoodSnackBoritos: 1 FoodCheeseSlice: 1 - FoodChili: 1 + FoodChiliPepper: 1 FoodMeatMeatball: 1 # Base ingredients: Should be moved out of microwave as soon as possible. @@ -62,7 +62,7 @@ solids: FoodTofuSlice: 2 FoodOnionSlice: 1 - FoodChili: 1 + FoodChiliPepper: 1 FoodCarrot: 1 FoodCheeseCurds: 1 @@ -97,7 +97,7 @@ solids: FoodCheeseSlice: 1 FoodCabbage: 1 - FoodChili: 1 + FoodChiliPepper: 1 FoodPotato: 1 FoodOnionSlice: 2 @@ -111,7 +111,7 @@ solids: FoodCheeseSlice: 1 #Grilled cheese slice FoodMothSaladBase: 1 - FoodChili: 1 + FoodChiliPepper: 1 FoodCabbage: 1 - type: microwaveMealRecipe @@ -142,7 +142,7 @@ FoodRiceBoiled: 1 FoodPotato: 2 FoodCabbage: 1 - FoodChili: 1 + FoodChiliPepper: 1 #Herbs: 1 - type: microwaveMealRecipe @@ -307,7 +307,7 @@ solids: FoodBowlBig: 1 FoodTofuSlice: 1 - FoodChili: 1 + FoodChiliPepper: 1 #FoodYogurt: 1 #Milk and Cream placeholder - type: microwaveMealRecipe @@ -368,7 +368,7 @@ solids: FoodBowlBig: 1 FoodTomato: 1 - FoodChili: 1 + FoodChiliPepper: 1 # Salads: These should be moved out of the microwave as soon as possible @@ -421,7 +421,7 @@ solids: FoodBowlBig: 1 FoodMothSaladBase: 1 - FoodChili: 1 + FoodChiliPepper: 1 FoodOnionRed: 1 FoodAmbrosiaVulgaris: 1 #Herbs @@ -438,7 +438,7 @@ FoodDoughFlat: 1 FoodCheeseSlice: 1 FoodMothBakedCorn: 1 - FoodChili: 1 + FoodChiliPepper: 1 - type: microwaveMealRecipe id: RecipeMothFiveCheesePizza diff --git a/Resources/Prototypes/Nyanotrasen/Recipes/Lathes/bluespace.yml b/Resources/Prototypes/Nyanotrasen/Recipes/Lathes/bluespace.yml deleted file mode 100644 index 443f2a03f9..0000000000 --- a/Resources/Prototypes/Nyanotrasen/Recipes/Lathes/bluespace.yml +++ /dev/null @@ -1,22 +0,0 @@ -- type: latheRecipe - id: CoreSilver - icon: - sprite: Objects/Misc/guardian_info.rsi - state: icon - result: CoreSilver - completetime: 10 - materials: - Bluespace: 500 - Silver: 1000 - Plastic: 1000 - -- type: latheRecipe - id: BluespaceCrystal - icon: - sprite: Nyanotrasen/Objects/Materials/materials.rsi - state: bluespace - result: MaterialBluespace1 - applyMaterialDiscount: false - completetime: 4 - materials: - Bluespace: 100 diff --git a/Resources/Prototypes/Nyanotrasen/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Nyanotrasen/Recipes/Lathes/electronics.yml index 1e53c715af..695fb42150 100644 --- a/Resources/Prototypes/Nyanotrasen/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Nyanotrasen/Recipes/Lathes/electronics.yml @@ -4,7 +4,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 700 Gold: 100 - type: latheRecipe @@ -13,7 +13,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 700 Gold: 100 - type: latheRecipe @@ -21,8 +21,8 @@ result: CrewMonitoringComputerCircuitboard completetime: 4 materials: - Steel: 100 - Glass: 900 + Steel: 100 + Glass: 700 - type: latheRecipe id: ClothingEyesHudMedical @@ -41,4 +41,4 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 700 diff --git a/Resources/Prototypes/Nyanotrasen/Recipes/Lathes/hardsuits.yml b/Resources/Prototypes/Nyanotrasen/Recipes/Lathes/hardsuits.yml deleted file mode 100644 index 560c03db49..0000000000 --- a/Resources/Prototypes/Nyanotrasen/Recipes/Lathes/hardsuits.yml +++ /dev/null @@ -1,21 +0,0 @@ -- type: latheRecipe - id: ClothingOuterHardsuitSyndieReverseEngineered - result: ClothingOuterHardsuitSyndieReverseEngineered - completetime: 25 - materials: - Steel: 6000 - Glass: 1500 - Uranium: 100 - Plastic: 100 - Gold: 200 - -- type: latheRecipe - id: ClothingOuterHardsuitJuggernautReverseEngineered - result: ClothingOuterHardsuitJuggernautReverseEngineered - completetime: 25 - materials: - Steel: 12000 - Glass: 3000 - Uranium: 500 - Plastic: 500 - Gold: 250 diff --git a/Resources/Prototypes/Nyanotrasen/Recipes/Reactions/psionic.yml b/Resources/Prototypes/Nyanotrasen/Recipes/Reactions/psionic.yml index 304c9b686a..d9d2ed51b5 100644 --- a/Resources/Prototypes/Nyanotrasen/Recipes/Reactions/psionic.yml +++ b/Resources/Prototypes/Nyanotrasen/Recipes/Reactions/psionic.yml @@ -30,6 +30,6 @@ catalyst: true effects: - !type:CreateEntityReactionEffect - entity: CrystalNormality + entity: MaterialNormality1 - !type:ChangeGlimmerReactionEffect count: -10 diff --git a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Epistemics/forensicmantis.yml b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Epistemics/forensicmantis.yml index 1f78015cd6..f7a3120570 100644 --- a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Epistemics/forensicmantis.yml +++ b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Epistemics/forensicmantis.yml @@ -32,6 +32,7 @@ - !type:AddComponentSpecial components: - type: Psionic + powerSlots: 2 - !type:AddComponentSpecial components: - type: InnatePsionicPowers diff --git a/Resources/Prototypes/Nyanotrasen/Stacks/materials.yml b/Resources/Prototypes/Nyanotrasen/Stacks/materials.yml deleted file mode 100644 index e8c1b98b93..0000000000 --- a/Resources/Prototypes/Nyanotrasen/Stacks/materials.yml +++ /dev/null @@ -1,7 +0,0 @@ -- type: stack - id: Bluespace - name: bluespace - icon: { sprite: Nyanotrasen/Objects/Materials/materials.rsi, state: bluespace } - spawn: MaterialBluespace - maxCount: 5 - itemSize: 1 diff --git a/Resources/Prototypes/Nyanotrasen/Voice/speech_emotes.yml b/Resources/Prototypes/Nyanotrasen/Voice/speech_emotes.yml index fa471f3d70..f9bd3f60b4 100644 --- a/Resources/Prototypes/Nyanotrasen/Voice/speech_emotes.yml +++ b/Resources/Prototypes/Nyanotrasen/Voice/speech_emotes.yml @@ -1,6 +1,7 @@ # vocal emotes - type: emote id: Hiss + name: chat-emote-name-cathisses category: Vocal chatMessages: [ hisses ] chatTriggers: @@ -8,6 +9,7 @@ - type: emote id: Meow + name: chat-emote-name-catmeow category: Vocal chatMessages: [ meows ] chatTriggers: @@ -18,6 +20,7 @@ - type: emote id: Mew + name: chat-emote-name-catmew category: Vocal chatMessages: [ mews ] chatTriggers: @@ -25,6 +28,7 @@ - type: emote id: Growl + name: chat-emote-name-catgrowl category: Vocal chatMessages: [ growls ] chatTriggers: @@ -32,6 +36,7 @@ - type: emote id: Purr + name: chat-emote-name-catpurr category: Vocal chatMessages: [ purrs ] chatTriggers: diff --git a/Resources/Prototypes/Nyanotrasen/psionicPowers.yml b/Resources/Prototypes/Nyanotrasen/psionicPowers.yml index 0781122b8e..eaa77f05d5 100644 --- a/Resources/Prototypes/Nyanotrasen/psionicPowers.yml +++ b/Resources/Prototypes/Nyanotrasen/psionicPowers.yml @@ -11,3 +11,7 @@ # PsionicInvisibilityPower: 0.15 MindSwapPower: 0.15 TelepathyPower: 1 + HealingWordPower: 0.85 + RevivifyPower: 0.1 + ShadeskipPower: 0.15 + TelekineticPulsePower: 0.15 \ No newline at end of file diff --git a/Resources/Prototypes/Objectives/base_objectives.yml b/Resources/Prototypes/Objectives/base_objectives.yml index e24b26e6e8..2ab5149213 100644 --- a/Resources/Prototypes/Objectives/base_objectives.yml +++ b/Resources/Prototypes/Objectives/base_objectives.yml @@ -103,3 +103,11 @@ id: BaseSurviveObjective components: - type: SurviveCondition + +# objective progress is controlled by a system and not the objective itself +- type: entity + abstract: true + parent: BaseObjective + id: BaseCodeObjective + components: + - type: CodeCondition diff --git a/Resources/Prototypes/Objectives/ninja.yml b/Resources/Prototypes/Objectives/ninja.yml index 0495be2935..fb94f2b378 100644 --- a/Resources/Prototypes/Objectives/ninja.yml +++ b/Resources/Prototypes/Objectives/ninja.yml @@ -46,7 +46,7 @@ - type: entity noSpawn: true - parent: BaseNinjaObjective + parent: [BaseNinjaObjective, BaseCodeObjective] id: SpiderChargeObjective description: This bomb can be detonated in a specific location. Note that the bomb will not work anywhere else! components: @@ -54,7 +54,6 @@ icon: sprite: Objects/Weapons/Bombs/spidercharge.rsi state: icon - - type: SpiderChargeCondition - type: entity noSpawn: true @@ -70,7 +69,7 @@ - type: entity noSpawn: true - parent: BaseNinjaObjective + parent: [BaseNinjaObjective, BaseCodeObjective] id: TerrorObjective name: Call in a threat description: Use your gloves on a communication console in order to bring another threat to the station. @@ -79,4 +78,15 @@ icon: sprite: Objects/Fun/Instruments/otherinstruments.rsi state: red_phone - - type: TerrorCondition + +- type: entity + noSpawn: true + parent: [BaseNinjaObjective, BaseCodeObjective] + id: MassArrestObjective + name: Set everyone to wanted + description: Use your gloves to hack a criminal records console, setting the entire station to be wanted! + components: + - type: Objective + icon: + sprite: Objects/Weapons/Melee/stunbaton.rsi + state: stunbaton_on diff --git a/Resources/Prototypes/Objectives/objectiveGroups.yml b/Resources/Prototypes/Objectives/objectiveGroups.yml index 263494f798..6929d1e1a4 100644 --- a/Resources/Prototypes/Objectives/objectiveGroups.yml +++ b/Resources/Prototypes/Objectives/objectiveGroups.yml @@ -40,8 +40,6 @@ EscapeShuttleObjective: 1 # DieObjective: 0.05 # DeltaV - Disable the lrp objective aka murderbone justification #HijackShuttleObjective: 0.02 - BecomePsionicObjective: 1 # Nyanotrasen - Become Psionic objective, see Resources/Prototypes/Nyanotrasen/Objectives/traitor.yml - #BecomeGolemObjective: 0.5 # Nyanotrasen - Become a golem objective, see Resources/Prototypes/Nyanotrasen/Objectives/traitor.yml - type: weightedRandom id: TraitorObjectiveGroupSocial diff --git a/Resources/Prototypes/Objectives/stealTargetGroups.yml b/Resources/Prototypes/Objectives/stealTargetGroups.yml index e0ca5b0bc3..5995278433 100644 --- a/Resources/Prototypes/Objectives/stealTargetGroups.yml +++ b/Resources/Prototypes/Objectives/stealTargetGroups.yml @@ -104,7 +104,7 @@ id: HeadCloak name: head's cloaks (any) sprite: - sprite: _White/Clothing/Neck/Cloaks/cap.rsi #WWDP edit + sprite: Clothing/Neck/Cloaks/cap.rsi state: icon - type: stealTargetGroup diff --git a/Resources/Prototypes/Objectives/terminator.yml b/Resources/Prototypes/Objectives/terminator.yml deleted file mode 100644 index 1b569599a7..0000000000 --- a/Resources/Prototypes/Objectives/terminator.yml +++ /dev/null @@ -1,40 +0,0 @@ -- type: entity - abstract: true - parent: BaseObjective - id: BaseTerminatorObjective - components: - - type: Objective - difficulty: 1 - issuer: susnet - - type: RoleRequirement - roles: - components: - - TerminatorRole - -- type: entity - noSpawn: true - parent: [BaseTerminatorObjective, BaseKillObjective] - id: TerminateObjective - description: Follow your programming and terminate the target. - components: - - type: Objective - unique: false - - type: TargetObjective - title: objective-terminate-title - - type: PickRandomPerson - - type: TerminatorTargetOverride - - type: KillPersonCondition - requireDead: true - -- type: entity - noSpawn: true - parent: BaseTerminatorObjective - id: ShutDownObjective - name: Shut down - description: Once the mission is complete die to prevent our technology from being stolen. - components: - - type: Objective - icon: - sprite: Mobs/Species/Terminator/parts.rsi - state: skull_icon - - type: DieCondition diff --git a/Resources/Prototypes/Objectives/traitor.yml b/Resources/Prototypes/Objectives/traitor.yml index d9c071c30c..554ccad264 100644 --- a/Resources/Prototypes/Objectives/traitor.yml +++ b/Resources/Prototypes/Objectives/traitor.yml @@ -191,6 +191,9 @@ components: - type: StealCondition stealGroup: ClothingOuterHardsuitRd + - type: Objective + # This item must be worn or stored in a slowing duffelbag, very hard to hide. + difficulty: 3 - type: entity noSpawn: true diff --git a/Resources/Prototypes/Polymorphs/polymorph.yml b/Resources/Prototypes/Polymorphs/polymorph.yml index b4249f8a3e..a1a805c74f 100644 --- a/Resources/Prototypes/Polymorphs/polymorph.yml +++ b/Resources/Prototypes/Polymorphs/polymorph.yml @@ -75,6 +75,17 @@ inventory: Transfer revertOnDeath: true +- type: polymorph + id: SlimeMorphGeras + configuration: + entity: MobSlimesGeras + transferName: true + transferHumanoidAppearance: false + inventory: Drop + transferDamage: true + revertOnDeath: true + revertOnCrit: true + # this is a test for transferring some visual appearance stuff - type: polymorph id: TestHumanMorph @@ -164,3 +175,25 @@ revertOnDeath: true revertOnCrit: true duration: 20 + +# Polymorphs for Wizards polymorph self spell +- type: polymorph + id: WizardSpider + configuration: + entity: MobGiantSpiderWizard #Not angry so ghosts can't just take over the wizard + transferName: true + inventory: None + revertOnDeath: true + revertOnCrit: true + +- type: polymorph + id: WizardRod + configuration: + entity: ImmovableRodWizard #CLANG + transferName: true + transferDamage: false + inventory: None + duration: 1 + forced: true + revertOnCrit: false + revertOnDeath: false diff --git a/Resources/Prototypes/Procedural/Magnet/asteroid.yml b/Resources/Prototypes/Procedural/Magnet/asteroid.yml index a21b709afa..8fcd265297 100644 --- a/Resources/Prototypes/Procedural/Magnet/asteroid.yml +++ b/Resources/Prototypes/Procedural/Magnet/asteroid.yml @@ -10,6 +10,8 @@ OrePlasma: 0.15 OreUranium: 0.15 OreArtifactFragment: 0.15 + OreBluespace: 0.1 + OreNormality: 0.1 # Large asteroids, typically 1 - type: dungeonConfig diff --git a/Resources/Prototypes/Procedural/biome_ore_templates.yml b/Resources/Prototypes/Procedural/biome_ore_templates.yml index 4a60427e30..c0001367d5 100644 --- a/Resources/Prototypes/Procedural/biome_ore_templates.yml +++ b/Resources/Prototypes/Procedural/biome_ore_templates.yml @@ -144,3 +144,32 @@ minGroupSize: 1 maxGroupSize: 2 radius: 4 + +# Bluespace +- type: biomeMarkerLayer + id: OreBluespace + entityMask: + AsteroidRock: AsteroidRockBluespace + WallRock: WallRockBluespace + WallRockBasalt: WallRockBasaltBluespace + WallRockChromite: WallRockChromiteBluespace + WallRockSand: WallRockSandBluespace + WallRockSnow: WallRockSnowBluespace + maxCount: 6 + minGroupSize: 1 + maxGroupSize: 2 + radius: 4 + +- type: biomeMarkerLayer + id: OreNormality + entityMask: + AsteroidRock: AsteroidRockNormality + WallRock: WallRockNormality + WallRockBasalt: WallRockBasaltNormality + WallRockChromite: WallRockChromiteNormality + WallRockSand: WallRockSandNormality + WallRockSnow: WallRockSnowNormality + maxCount: 6 + minGroupSize: 1 + maxGroupSize: 2 + radius: 4 diff --git a/Resources/Prototypes/Procedural/salvage_loot.yml b/Resources/Prototypes/Procedural/salvage_loot.yml index f12e8c7ffd..7b93e4c11a 100644 --- a/Resources/Prototypes/Procedural/salvage_loot.yml +++ b/Resources/Prototypes/Procedural/salvage_loot.yml @@ -106,6 +106,12 @@ - proto: WeaponTeslaGun prob: 0.1 cost: 2 + # WD EDIT START + - proto: ClothingEyesNightVisionGoggles + cost: 8 + - proto: ClothingEyesGlassesThermal + cost: 8 + # WD EDIT END # Mob loot table @@ -185,3 +191,17 @@ loots: - !type:BiomeMarkerLoot proto: OreArtifactFragment + +- type: salvageLoot + id: OreBluespace + guaranteed: true + loots: + - !type:BiomeMarkerLoot + proto: OreBluespace + +- type: salvageLoot + id: OreNormality + guaranteed: true + loots: + - !type:BiomeMarkerLoot + proto: OreNormality diff --git a/Resources/Prototypes/Psionics/psionics.yml b/Resources/Prototypes/Psionics/psionics.yml index b8f798d4b6..378d48b3fa 100644 --- a/Resources/Prototypes/Psionics/psionics.yml +++ b/Resources/Prototypes/Psionics/psionics.yml @@ -119,6 +119,7 @@ - type: UniversalLanguageSpeaker initializationFeedback: xenoglossy-power-initialization-feedback metapsionicFeedback: psionic-language-power-feedback # Reuse for telepathy, clairaudience, etc + powerSlotCost: 0 - type: psionicPower id: PsychognomyPower #i.e. reverse physiognomy @@ -128,6 +129,7 @@ - type: Psychognomist initializationFeedback: psychognomy-power-initialization-feedback metapsionicFeedback: psionic-language-power-feedback + powerSlotCost: 0 - type: psionicPower id: TelepathyPower @@ -137,3 +139,82 @@ - type: Telepathy initializationFeedback: telepathy-power-initialization-feedback metapsionicFeedback: psionic-language-power-feedback # Reuse for telepathy, clairaudience, etc + powerSlotCost: 0 + +- type: psionicPower + id: HealingWordPower + name: HealingWord + description: healing-word-power-description + actions: + - ActionHealingWord + initializationFeedback: healing-word-power-initialization-feedback + metapsionicFeedback: healing-word-power-feedback + amplificationModifier: 0.5 + dampeningModifier: 0.5 + +- type: psionicPower + id: RevivifyPower + name: Revivify + description: revivify-power-description + actions: + - ActionRevivify + initializationFeedback: revivify-power-initialization-feedback + metapsionicFeedback: revivify-power-feedback + amplificationModifier: 2.5 # An extremely rare and dangerous power + powerSlotCost: 2 + +- type: psionicPower + id: LowAmplification + name: LowAmplification + description: low-amplification-power-description + amplificationModifier: -0.25 + powerSlotCost: 0 + +- type: psionicPower + id: HighAmplification + name: HighAmplification + description: high-amplification-power-description + amplificationModifier: 0.25 + powerSlotCost: 0 + +- type: psionicPower + id: PowerOverwhelming + name: PowerOverwhelming + description: power-overwhelming-power-description + metapsionicFeedback: power-overwhelming-power-feedback + amplificationModifier: 2 + powerSlotCost: 2 + +- type: psionicPower + id: LowDampening + name: LowDampening + description: low-dampening-power-description + dampeningModifier: -0.25 + powerSlotCost: 0 + +- type: psionicPower + id: HighDampening + name: HighDampening + description: high-dampening-power-description + dampeningModifier: 0.25 + powerSlotCost: 0 + +- type: psionicPower + id: ShadeskipPower + name: Shadeskip + description: shadeskip-power-description + actions: + - ActionShadeskip + initializationFeedback: shadeskip-power-initialization-feedback + metapsionicFeedback: shadeskip-power-metapsionic-feedback + amplificationModifier: 1 + +- type: psionicPower + id: TelekineticPulsePower + name: Telekinetic Pulse + description: telekinetic-pulse-power-description + actions: + - ActionTelekineticPulse + initializationFeedback: telekinetic-pulse-power-initialization-feedback + metapsionicFeedback: telekinetic-pulse-power-metapsionic-feedback + amplificationModifier: 1 \ No newline at end of file diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml index e31087c309..f374a3debf 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml @@ -22,7 +22,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.3 + amount: 0.7 - type: reagent id: Ale @@ -39,6 +39,7 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: false + fizziness: 0.6 - type: reagent id: Beer @@ -55,6 +56,7 @@ metamorphicMaxFillLevels: 6 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0.6 - type: reagent id: BlueCuracao @@ -77,7 +79,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.1 + amount: 0.25 - type: reagent id: BlueHawaiian @@ -97,7 +99,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.2 + amount: 0.154 - type: reagent id: Cognac @@ -121,7 +123,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.2 + amount: 0.4 - type: reagent id: DeadRum @@ -144,7 +146,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.2 + amount: 0.6 - type: reagent id: Ethanol @@ -163,7 +165,7 @@ - !type:HealthChange conditions: - !type:ReagentThreshold - min: 15 + min: 45 damage: types: Poison: 1 @@ -255,6 +257,12 @@ Cold: -1.60 - !type:Drunk boozePower: 2 + - !type:ChemAddMoodlet + moodPrototype: EthanolBenefit + conditions: + - !type:ReagentThreshold + reagent: Ethanol + min: 5 - type: reagent id: Gin @@ -278,7 +286,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.2 + amount: 0.45 - type: reagent id: CoffeeLiqueur @@ -294,6 +302,13 @@ metamorphicMaxFillLevels: 3 metamorphicFillBaseName: fill- metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:AdjustReagent + reagent: Ethanol + amount: 0.20 + - type: reagent id: MelonLiquor @@ -309,6 +324,12 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:AdjustReagent + reagent: Ethanol + amount: 0.20 - type: reagent id: NTCahors @@ -324,6 +345,12 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:AdjustReagent + reagent: Ethanol + amount: 0.17 - type: reagent id: PoisonWine @@ -346,7 +373,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.05 + amount: 0.11 Poison: effects: - !type:HealthChange @@ -376,7 +403,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.2 + amount: 0.40 ##Commented out in favor of Nyano sake/soju #- type: reagent @@ -399,7 +426,7 @@ metamorphicSprite: sprite: Objects/Consumable/Drinks/tequillaglass.rsi state: icon_empty - metamorphicMaxFillLevels: 4 + metamorphicMaxFillLevels: 3 metamorphicFillBaseName: fill- metamorphicChangeColor: false metabolisms: @@ -409,7 +436,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.2 + amount: 0.40 - type: reagent id: Vermouth @@ -425,6 +452,12 @@ metamorphicMaxFillLevels: 4 metamorphicFillBaseName: fill- metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:AdjustReagent + reagent: Ethanol + amount: 0.16 - type: reagent id: Vodka @@ -448,7 +481,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.2 + amount: 0.40 - type: reagent id: Whiskey @@ -472,7 +505,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.2 + amount: 0.40 - type: reagent id: Wine @@ -489,6 +522,14 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.11 - type: reagent id: Champagne @@ -512,7 +553,8 @@ factor: 3 - !type:AdjustReagent reagent: Ethanol - amount: 0.3 + amount: 0.12 + fizziness: 0.8 # Mixed Alcohol @@ -530,6 +572,14 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 1 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.073 - type: reagent id: AlliesCocktail @@ -545,6 +595,14 @@ metamorphicMaxFillLevels: 4 metamorphicFillBaseName: fill- metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.37 - type: reagent id: Aloe @@ -575,6 +633,14 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.204 - type: reagent id: Andalusia @@ -590,6 +656,14 @@ metamorphicMaxFillLevels: 4 metamorphicFillBaseName: fill- metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.27 - type: reagent id: Antifreeze @@ -612,7 +686,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.15 + amount: 0.2 - type: reagent id: AtomicBomb @@ -635,7 +709,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.15 + amount: 0.254 - !type:AdjustReagent reagent: Uranium amount: 0.05 @@ -661,7 +735,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.15 + amount: 0.28 - type: reagent id: BahamaMama @@ -677,6 +751,14 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.11 - type: reagent id: BananaHonk @@ -707,6 +789,14 @@ metamorphicMaxFillLevels: 3 metamorphicFillBaseName: fill- metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.05 - type: reagent id: BeepskySmash @@ -729,7 +819,8 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.15 + amount: 0.13 + fizziness: 0.3 - type: reagent id: BlackRussian @@ -752,7 +843,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.2 + amount: 0.33 - type: reagent id: BloodyMary @@ -768,6 +859,14 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.13 - type: reagent id: Booger @@ -783,6 +882,14 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.08 - type: reagent id: BraveBull @@ -805,7 +912,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.2 + amount: 0.33 - type: reagent id: CoconutRum @@ -825,7 +932,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.2 + amount: 0.26 - type: reagent id: Cosmopolitan @@ -845,7 +952,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.15 + amount: 0.13 - type: reagent id: CubaLibre @@ -868,7 +975,8 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.07 + amount: 0.13 + fizziness: 0.2 - type: reagent id: DemonsBlood @@ -884,6 +992,15 @@ metamorphicMaxFillLevels: 4 metamorphicFillBaseName: fill- metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.10 + fizziness: 0.3 - type: reagent id: DevilsKiss @@ -899,6 +1016,14 @@ metamorphicMaxFillLevels: 3 metamorphicFillBaseName: fill- metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.20 - type: reagent id: DoctorsDelight @@ -921,9 +1046,6 @@ factor: 2 - !type:SatiateHunger factor: -2 - - !type:AdjustReagent - reagent: Ethanol - amount: 0.05 Medicine: effects: - !type:HealthChange @@ -955,7 +1077,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.15 + amount: 0.225 - type: reagent id: ErikaSurprise @@ -971,6 +1093,15 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.02 + fizziness: 0.15 - type: reagent id: GargleBlaster @@ -993,7 +1124,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.2 + amount: 0.32 - type: reagent id: GinFizz @@ -1016,7 +1147,8 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.07 + amount: 0.15 + fizziness: 0.4 - type: reagent id: GinTonic @@ -1039,7 +1171,8 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.07 + amount: 0.15 + fizziness: 0.4 - type: reagent id: Gildlager @@ -1062,7 +1195,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.2 + amount: 0.363 - type: reagent id: Grog @@ -1078,6 +1211,14 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.10 - type: reagent id: HippiesDelight @@ -1093,6 +1234,14 @@ metamorphicMaxFillLevels: 6 metamorphicFillBaseName: fill- metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.16 - type: reagent id: Hooch @@ -1102,6 +1251,14 @@ physicalDesc: reagent-physical-desc-strong-smelling flavor: alcohol color: "#664e00" + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.50 - type: reagent id: IcedBeer @@ -1117,6 +1274,7 @@ metamorphicMaxFillLevels: 6 metamorphicFillBaseName: fill- metamorphicChangeColor: false + fizziness: 0.6 - type: reagent id: IrishCarBomb @@ -1139,7 +1297,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.15 + amount: 0.16 - type: reagent id: IrishCream @@ -1162,7 +1320,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.2 + amount: 0.266 - type: reagent id: IrishCoffee @@ -1185,7 +1343,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.15 + amount: 0.133 - type: reagent id: LongIslandIcedTea @@ -1208,7 +1366,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.15 + amount: 0.273 - type: reagent id: Manhattan @@ -1224,6 +1382,14 @@ metamorphicMaxFillLevels: 3 metamorphicFillBaseName: fill- metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.32 - type: reagent id: ManhattanProject @@ -1239,6 +1405,14 @@ metamorphicMaxFillLevels: 3 metamorphicFillBaseName: fill- metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.363 - type: reagent id: ManlyDorf @@ -1254,6 +1428,7 @@ metamorphicMaxFillLevels: 2 metamorphicFillBaseName: fill- metamorphicChangeColor: false + fizziness: 0.7 - type: reagent id: Margarita @@ -1291,7 +1466,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.15 + amount: 0.353 - type: reagent id: Mead @@ -1307,6 +1482,7 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0.4 - type: reagent id: Mojito @@ -1322,6 +1498,15 @@ metamorphicMaxFillLevels: 6 metamorphicFillBaseName: fill- metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.10 + fizziness: 0.3 - type: reagent id: Moonshine @@ -1331,6 +1516,12 @@ physicalDesc: reagent-physical-desc-strong-smelling flavor: moonshine color: "#d1d7d155" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/moonshineglass.rsi + state: icon_empty + metamorphicMaxFillLevels: 6 + metamorphicFillBaseName: fill- + metamorphicChangeColor: false metabolisms: Drink: effects: @@ -1338,7 +1529,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.25 + amount: 0.40 - type: reagent id: Neurotoxin @@ -1361,7 +1552,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.25 + amount: 0.16 Poison: effects: - !type:HealthChange @@ -1387,7 +1578,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.2 + amount: 0.04 - type: reagent id: Patron @@ -1410,7 +1601,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.2 + amount: 0.50 - type: reagent id: RedMead @@ -1426,6 +1617,7 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0.4 - type: reagent id: PinaColada @@ -1438,6 +1630,14 @@ metamorphicSprite: sprite: Objects/Consumable/Drinks/pinacolada.rsi state: icon + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.06 - type: reagent id: Sbiten @@ -1453,6 +1653,14 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.2 - type: reagent id: ScrewdriverCocktail @@ -1475,7 +1683,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.07 + amount: 0.13 - type: reagent id: CogChamp @@ -1501,7 +1709,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.15 + amount: 0.176 - type: reagent id: Silencer @@ -1540,6 +1748,14 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.23 - type: reagent id: SnowWhite @@ -1555,6 +1771,15 @@ metamorphicMaxFillLevels: 6 metamorphicFillBaseName: fill- metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.03 + fizziness: 0.3 - type: reagent id: SuiDream @@ -1570,6 +1795,15 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.13 + fizziness: 0.2 - type: reagent id: SyndicateBomb @@ -1585,6 +1819,15 @@ metamorphicMaxFillLevels: 6 metamorphicFillBaseName: fill- metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.095 + fizziness: 0.6 - type: reagent id: TequilaSunrise @@ -1607,7 +1850,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.15 + amount: 0.26 - type: reagent id: TheMartinez @@ -1623,6 +1866,15 @@ metamorphicMaxFillLevels: 3 metamorphicFillBaseName: fill- metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.13 + fizziness: 0.2 - type: reagent id: ThreeMileIsland @@ -1645,7 +1897,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.15 + amount: 0.273 - !type:AdjustReagent reagent: Uranium amount: 0.05 @@ -1664,6 +1916,14 @@ metamorphicMaxFillLevels: 4 metamorphicFillBaseName: fill- metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.112 - type: reagent id: VodkaMartini @@ -1686,7 +1946,7 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.15 + amount: 0.32 - type: reagent id: VodkaTonic @@ -1709,7 +1969,8 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.07 + amount: 0.13 + fizziness: 0.4 - type: reagent id: WhiskeyCola @@ -1732,7 +1993,8 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.07 + amount: 0.013 + fizziness: 0.3 - type: reagent id: WhiskeySoda @@ -1755,7 +2017,8 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.07 + amount: 0.13 + fizziness: 0.4 - type: reagent id: WhiteGilgamesh @@ -1772,7 +2035,8 @@ factor: 1 - !type:AdjustReagent reagent: Ethanol - amount: 0.15 + amount: 0.04 + fizziness: 0.5 - type: reagent id: WhiteRussian @@ -1795,4 +2059,166 @@ factor: 2 - !type:AdjustReagent reagent: Ethanol - amount: 0.15 + amount: 0.33 + +- type: reagent + id: VodkaRedBool + name: reagent-name-vodka-red-bool + parent: BaseAlcohol + desc: reagent-desc-vodka-red-bool + physicalDesc: reagent-physical-desc-strong-smelling + flavor: vodkaredbool + color: "#c4c27655" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/ginvodkaglass.rsi + state: icon_empty + metamorphicMaxFillLevels: 4 + metamorphicFillBaseName: fill- + metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 1 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.10 + - !type:AdjustReagent + reagent: Theobromine + amount: 0.05 + fizziness: 0.25 + +- type: reagent + id: XenoBasher + name: reagent-name-xeno-basher + parent: BaseAlcohol + desc: reagent-desc-xeno-basher + physicalDesc: reagent-physical-desc-fizzy-and-creamy + flavor: xenobasher + color: "#4d6600" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/xenobasher.rsi + state: icon_empty + metamorphicMaxFillLevels: 2 + metamorphicFillBaseName: fill- + metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 1 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.15 + - !type:AdjustReagent + reagent: Theobromine + amount: 0.05 + fizziness: 0.15 + +- type: reagent + id: IrishBool + name: reagent-name-irish-bool + parent: BaseAlcohol + desc: reagent-desc-irish-bool + physicalDesc: reagent-physical-desc-bubbly + flavor: irishbool + color: "#71672e99" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/beerglass.rsi + state: icon_empty + metamorphicMaxFillLevels: 6 + metamorphicFillBaseName: fill- + metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 1 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.10 + - !type:AdjustReagent + reagent: Theobromine + amount: 0.05 + fizziness: 0.15 + +- type: reagent + id: BudgetInsulsDrink + name: reagent-name-budget-insuls + parent: BaseAlcohol + desc: reagent-desc-budget-insuls + physicalDesc: reagent-physical-desc-strong-smelling + flavor: budgetinsulsdrink + color: "#dede73" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/budgetinsulsdrink.rsi + state: icon_empty + metamorphicMaxFillLevels: 3 + metamorphicFillBaseName: fill- + metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 1 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.15 + - !type:AdjustReagent + reagent: Theobromine + amount: 0.05 + fizziness: 0.25 + +- type: reagent + id: WatermelonWakeup + name: reagent-name-watermelon-wakeup + parent: BaseAlcohol + desc: reagent-desc-watermelon-wakeup + physicalDesc: reagent-physical-desc-sweet + flavor: watermelonwakeup + color: "#d49dca" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/champagneglass.rsi + state: icon_empty + metamorphicMaxFillLevels: 4 + metamorphicFillBaseName: fill- + metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 1 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.07 + - !type:AdjustReagent + reagent: Theobromine + amount: 0.05 + fizziness: 0.15 + +- type: reagent + id: Rubberneck + name: reagent-name-rubberneck + parent: BaseAlcohol + desc: reagent-desc-rubberneck + physicalDesc: reagent-physical-desc-strong-smelling + flavor: rubberneck + color: "#f0d74a" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/rubberneck.rsi + state: icon_empty + metamorphicMaxFillLevels: 3 + metamorphicFillBaseName: fill- + metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 1 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.15 + - !type:AdjustReagent + reagent: Theobromine + amount: 0.05 + fizziness: 0.25 diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/base_drink.yml b/Resources/Prototypes/Reagents/Consumable/Drink/base_drink.yml index 9984b4c0cf..19a5e1bf8f 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/base_drink.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/base_drink.yml @@ -40,6 +40,7 @@ collection: FootstepSticky params: volume: 6 + fizziness: 0.5 - type: reagent id: BaseAlcohol @@ -75,4 +76,4 @@ footstepSound: collection: FootstepSticky params: - volume: 6 \ No newline at end of file + volume: 6 diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml b/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml index 5c09b3c909..52a01d973f 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml @@ -15,6 +15,12 @@ - !type:AdjustReagent reagent: Theobromine amount: 0.05 + metamorphicSprite: + sprite: Objects/Consumable/Drinks/coffeeglass.rsi + state: icon_empty + metamorphicMaxFillLevels: 4 + metamorphicFillBaseName: fill- + metamorphicChangeColor: false - type: reagent id: HotCocoa @@ -100,9 +106,9 @@ flavor: tea color: "#7EB626" metamorphicSprite: - sprite: Objects/Consumable/Drinks/glass_green.rsi + sprite: Objects/Consumable/Drinks/greenteaglass.rsi state: icon_empty - metamorphicMaxFillLevels: 5 + metamorphicMaxFillLevels: 4 metamorphicFillBaseName: fill- metamorphicChangeColor: false @@ -149,7 +155,7 @@ flavor: icedtea color: "#5B821B" metamorphicSprite: - sprite: Objects/Consumable/Drinks/glass_green.rsi + sprite: Objects/Consumable/Drinks/icedgreenteaglass.rsi state: icon_empty metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- @@ -322,6 +328,7 @@ damage: types: Poison: 1 + fizziness: 0.5 - type: reagent id: SodaWater @@ -331,6 +338,7 @@ physicalDesc: reagent-physical-desc-fizzy flavor: fizzy color: "#619494" + fizziness: 0.8 - type: reagent id: SoyLatte @@ -364,6 +372,12 @@ - !type:AdjustReagent reagent: Theobromine amount: 0.05 + metamorphicSprite: + sprite: Objects/Consumable/Drinks/teaglass.rsi + state: icon_empty + metamorphicMaxFillLevels: 4 + metamorphicFillBaseName: fill- + metamorphicChangeColor: false - type: reagent id: TonicWater @@ -373,6 +387,13 @@ physicalDesc: reagent-physical-desc-fizzy flavor: tonicwater color: "#0064C8" + fizziness: 0.4 + metamorphicSprite: + sprite: Objects/Consumable/Drinks/tonicglass.rsi + state: icon_empty + metamorphicMaxFillLevels: 5 + metamorphicFillBaseName: fill- + metamorphicChangeColor: false - type: reagent id: Water @@ -405,6 +426,12 @@ plantMetabolism: - !type:PlantAdjustWater amount: 1 + metamorphicSprite: + sprite: Objects/Consumable/Drinks/iceglass.rsi + state: icon_empty + metamorphicMaxFillLevels: 3 + metamorphicFillBaseName: fill- + metamorphicChangeColor: false - type: reagent id: DryRamen @@ -467,6 +494,7 @@ effects: - !type:SatiateThirst factor: 1 + fizziness: 0.3 - type: reagent id: Posca @@ -491,6 +519,7 @@ metamorphicMaxFillLevels: 3 metamorphicFillBaseName: fill- metamorphicChangeColor: false + fizziness: 0.3 - type: reagent id: Rewriter @@ -506,6 +535,7 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0.3 - type: reagent id: Mopwata diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/juice.yml b/Resources/Prototypes/Reagents/Consumable/Drink/juice.yml index ee1492b45e..c42791fa8f 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/juice.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/juice.yml @@ -63,6 +63,12 @@ physicalDesc: reagent-physical-desc-citric flavor: sour color: "#fff690" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/lemonjuiceglass.rsi + state: icon_empty + metamorphicMaxFillLevels: 5 + metamorphicFillBaseName: fill- + metamorphicChangeColor: false - type: reagent id: JuiceLime @@ -89,6 +95,12 @@ physicalDesc: reagent-physical-desc-citric flavor: orange color: "#E78108" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/orangejuiceglass.rsi + state: icon_empty + metamorphicMaxFillLevels: 5 + metamorphicFillBaseName: fill- + metamorphicChangeColor: false - type: reagent id: JuicePineapple @@ -125,3 +137,9 @@ physicalDesc: reagent-physical-desc-sweet flavor: watermelon color: "#EF3520" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/watermelonglass.rsi + state: icon_empty + metamorphicMaxFillLevels: 4 + metamorphicFillBaseName: fill- + metamorphicChangeColor: false diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml b/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml index ba5adc4f2a..d78b0351ce 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml @@ -7,6 +7,12 @@ flavor: soda color: "#6c2828" recognizable: true + metamorphicSprite: + sprite: Objects/Consumable/Drinks/colaglass.rsi + state: icon_empty + metamorphicMaxFillLevels: 5 + metamorphicFillBaseName: fill- + metamorphicChangeColor: false - type: reagent id: RoyRogers @@ -42,6 +48,12 @@ physicalDesc: reagent-physical-desc-fizzy flavor: drgibb color: "#102000" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/dr_gibb_glass.rsi + state: icon_empty + metamorphicMaxFillLevels: 5 + metamorphicFillBaseName: fill- + metamorphicChangeColor: false - type: reagent id: EnergyDrink @@ -58,7 +70,8 @@ factor: 2 - !type:AdjustReagent reagent: Theobromine - amount: 0.05 + amount: 0.1 + fizziness: 0.4 - type: reagent id: GrapeSoda @@ -84,6 +97,7 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0 - type: reagent id: LemonLime @@ -102,6 +116,7 @@ physicalDesc: reagent-physical-desc-fizzy flavor: pwrgamesoda color: "#9385bf" + fizziness: 0.9 # gamers crave the fizz - type: reagent id: RootBeer @@ -132,6 +147,7 @@ metamorphicMaxFillLevels: 7 metamorphicFillBaseName: fill- metamorphicChangeColor: false + fizziness: 0.4 - type: reagent id: SolDry @@ -170,6 +186,12 @@ physicalDesc: reagent-physical-desc-fizzy flavor: sodacitrus color: "#a6fa5a" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/space_mountain_wind_glass.rsi + state: icon_empty + metamorphicMaxFillLevels: 5 + metamorphicFillBaseName: fill- + metamorphicChangeColor: false - type: reagent id: SpaceUp @@ -179,6 +201,12 @@ physicalDesc: reagent-physical-desc-fizzy flavor: spaceup color: "#e3e3e37d" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/space-up_glass.rsi + state: icon_empty + metamorphicMaxFillLevels: 6 + metamorphicFillBaseName: fill- + metamorphicChangeColor: false - type: reagent id: Starkist diff --git a/Resources/Prototypes/Reagents/Consumable/Food/food.yml b/Resources/Prototypes/Reagents/Consumable/Food/food.yml index 03ebf7cc32..c9625c663c 100644 --- a/Resources/Prototypes/Reagents/Consumable/Food/food.yml +++ b/Resources/Prototypes/Reagents/Consumable/Food/food.yml @@ -93,6 +93,12 @@ amount: 2 - !type:PlantAdjustPests amount: 2 + metamorphicSprite: + sprite: Objects/Consumable/Drinks/sugarglass.rsi + state: icon_empty + metamorphicMaxFillLevels: 7 + metamorphicFillBaseName: fill- + metamorphicChangeColor: false - type: reagent id: PumpkinFlesh #Just so pumpkins spill orange stuff when smashed @@ -100,4 +106,4 @@ name: reagent-name-pumpkin-flesh desc: reagent-desc-pumpkin-flesh flavor: pumpkin - color: "#fc9300" \ No newline at end of file + color: "#fc9300" diff --git a/Resources/Prototypes/Reagents/Materials/materials.yml b/Resources/Prototypes/Reagents/Materials/materials.yml index fa51608a22..f56a712cd8 100644 --- a/Resources/Prototypes/Reagents/Materials/materials.yml +++ b/Resources/Prototypes/Reagents/Materials/materials.yml @@ -116,3 +116,21 @@ icon: { sprite: Objects/Materials/ore.rsi, state: coal } color: "#404040" price: 0 + +- type: material + id: Bluespace + stackEntity: MaterialBluespace1 + name: materials-bluespace + unit: materials-unit-piece + icon: { sprite: Objects/Materials/materials.rsi, state: bluespace } + color: "#53a9ff" + price: 7.5 + +- type: material + id: Normality + stackEntity: MaterialNormality1 + name: materials-normality + unit: materials-unit-piece + icon: { sprite: Objects/Materials/materials.rsi, state: normality } + color: "#53a9ff" + price: 7.5 diff --git a/Resources/Prototypes/Reagents/Materials/ores.yml b/Resources/Prototypes/Reagents/Materials/ores.yml index 18f1d9ebb3..7b887b2f43 100644 --- a/Resources/Prototypes/Reagents/Materials/ores.yml +++ b/Resources/Prototypes/Reagents/Materials/ores.yml @@ -67,4 +67,22 @@ unit: materials-unit-chunk icon: { sprite: Objects/Materials/ore.rsi, state: salt } color: "#f5e7d7" - price: 0.075 \ No newline at end of file + price: 0.075 + +- type: material + id: RawBluespace + stackEntity: BluespaceOre1 + name: materials-raw-bluespace + unit: materials-unit-piece + icon: { sprite: Objects/Materials/ore.rsi, state: bluespace } + color: "#53a9ff" + price: 7.5 + +- type: material + id: RawNormality + stackEntity: NormalityOre1 + name: materials-raw-normality + unit: materials-unit-piece + icon: { sprite: Objects/Materials/ore.rsi, state: normality } + color: "#53a9ff" + price: 7.5 diff --git a/Resources/Prototypes/Reagents/biological.yml b/Resources/Prototypes/Reagents/biological.yml index 5c0cef314c..4c1341ea7d 100644 --- a/Resources/Prototypes/Reagents/biological.yml +++ b/Resources/Prototypes/Reagents/biological.yml @@ -18,7 +18,7 @@ Drink: effects: - !type:SatiateThirst - factor: 1.5 + factor: 0.5 conditions: - !type:OrganType type: Human @@ -39,7 +39,7 @@ - !type:OrganType type: Vampiric reagent: Protein - amount: 0.15 + amount: 0.125 # See below - !type:AdjustReagent conditions: - !type:OrganType @@ -50,7 +50,11 @@ effects: - !type:AdjustReagent reagent: UncookedAnimalProteins - amount: 0.5 + amount: 0.125 # 0.25 proteins for 1u of blood - restores 0.75 hunger, adds 0.25 blood per unit + conditions: + - !type:OrganType + type: Vampiric + shouldHave: false Medicine: effects: - !type:HealthChange @@ -99,7 +103,7 @@ # Delicious! effects: - !type:SatiateHunger - factor: 1.5 + factor: 1 footstepSound: collection: FootstepBlood params: @@ -123,9 +127,9 @@ # Sweet! effects: - !type:SatiateHunger - factor: 1 + factor: 0.5 - !type:SatiateThirst - factor: 1 + factor: 0.5 footstepSound: collection: FootstepBlood params: diff --git a/Resources/Prototypes/Reagents/botany.yml b/Resources/Prototypes/Reagents/botany.yml index a03c3826a4..cdd19dc308 100644 --- a/Resources/Prototypes/Reagents/botany.yml +++ b/Resources/Prototypes/Reagents/botany.yml @@ -222,6 +222,9 @@ - !type:OrganType type: Rat shouldHave: false + - !type:OrganType + type: Vox + shouldHave: false - !type:ReagentThreshold reagent: Ammonia min: 0.8 @@ -247,6 +250,13 @@ groups: Brute: -5 Burn: -5 + types: + Bloodloss: -5 + - !type:Oxygenate # ammonia displaces nitrogen in vox blood + conditions: + - !type:OrganType + type: Vox + factor: -4 - type: reagent diff --git a/Resources/Prototypes/Reagents/gases.yml b/Resources/Prototypes/Reagents/gases.yml index 9cb73fffb8..06fb2b269b 100644 --- a/Resources/Prototypes/Reagents/gases.yml +++ b/Resources/Prototypes/Reagents/gases.yml @@ -35,6 +35,25 @@ ratios: CarbonDioxide: 1.0 Oxygen: -1.0 + - !type:HealthChange + conditions: + - !type:OrganType + type: Vox + scaleByQuantity: true + ignoreResistances: true + damage: + types: + Poison: + 7 + - !type:AdjustAlert + alertType: Toxins + conditions: + - !type:ReagentThreshold + min: 0.5 + - !type:OrganType + type: Vox + clear: true + time: 5 - type: reagent id: Plasma @@ -142,6 +161,9 @@ - !type:OrganType type: Plant shouldHave: false + - !type:OrganType + type: Vox + shouldHave: false # Don't want people to get toxin damage from the gas they just # exhaled, right? - !type:ReagentThreshold @@ -194,7 +216,7 @@ - !type:OrganType type: Vox ratios: - CarbonDioxide: 1.0 + Ammonia: 1.0 Nitrogen: -1.0 - !type:ModifyLungGas conditions: diff --git a/Resources/Prototypes/Reagents/medicine.yml b/Resources/Prototypes/Reagents/medicine.yml index dfe96359e6..12c694e09e 100644 --- a/Resources/Prototypes/Reagents/medicine.yml +++ b/Resources/Prototypes/Reagents/medicine.yml @@ -1120,6 +1120,27 @@ conditions: - !type:ReagentThreshold min: 12 + +- type: reagent + id: Opporozidone #Name based of an altered version of the startreck chem "Opporozine" + name: reagent-name-opporozidone + group: Medicine + desc: reagent-desc-opporozidone + physicalDesc: reagent-physical-desc-sickly + flavor: acid + color: "#b5e36d" + worksOnTheDead: true + metabolisms: + Medicine: + effects: + - !type:ReduceRotting + seconds: 20 + conditions: + #Patient must be dead and in a cryo tube (or something cold) + - !type:Temperature + max: 150.0 + - !type:MobStateCondition + mobstate: Dead - type: reagent id: Necrosol @@ -1171,3 +1192,67 @@ Heat: -3.0 Shock: -3.0 Caustic: -1.0 + +- type: reagent + id : Mannitol # currently this is just a way to create psicodine + name: reagent-name-mannitol + group: Medicine + desc: reagent-desc-mannitol + physicalDesc: reagent-physical-desc-opaque + flavor: sweet + color: "#A0A0A0" + metabolisms: + Medicine: + effects: + - !type:PopupMessage + conditions: + - !type:ReagentThreshold + min: 15 + type: Local + visualType: Medium + messages: [ "mannitol-effect-enlightened" ] + probability: 0.2 + +- type: reagent + id: Psicodine + name: reagent-name-psicodine + group: Medicine + desc: reagent-desc-psicodine + physicalDesc: reagent-physical-desc-shiny + flavor: bitter + color: "#07E79E" + metabolisms: + Medicine: + effects: + - !type:HealthChange + conditions: + - !type:ReagentThreshold + min: 30 + damage: + types: + Poison: 2 + - !type:GenericStatusEffect + conditions: + - !type:ReagentThreshold + min: 30 + key: SeeingRainbows + component: SeeingRainbows + type: Add + time: 8 + refresh: false + - !type:GenericStatusEffect + key: Jitter + time: 2.0 + type: Remove + - !type:GenericStatusEffect + key: Drunk + time: 6.0 + type: Remove + - !type:PopupMessage # we dont have sanity/mood so this will have to do + type: Local + visualType: Medium + messages: + - "psicodine-effect-fearless" + - "psicodine-effect-anxieties-wash-away" + - "psicodine-effect-at-peace" + probability: 0.2 diff --git a/Resources/Prototypes/Reagents/narcotics.yml b/Resources/Prototypes/Reagents/narcotics.yml index 2ab323c309..ebb8b0fc43 100644 --- a/Resources/Prototypes/Reagents/narcotics.yml +++ b/Resources/Prototypes/Reagents/narcotics.yml @@ -182,25 +182,6 @@ time: 16 refresh: false -- type: reagent - id: THCOil # deprecated in favor of THC, preserved here for forks - name: reagent-name-thc-oil - group: Narcotics - desc: reagent-desc-thc-oil - physicalDesc: reagent-physical-desc-skunky - flavor: bitter - flavorMinimum: 0.05 - color: "#DAA520" - metabolisms: - Narcotic: - effects: - - !type:GenericStatusEffect - key: SeeingRainbows - component: SeeingRainbows - type: Add - time: 16 - refresh: false - - type: reagent id: Nicotine name: reagent-name-nicotine @@ -212,6 +193,11 @@ plantMetabolism: - !type:PlantAdjustHealth amount: -5 + metabolisms: + Narcotic: + effects: + - !type:ChemAddMoodlet + moodPrototype: NicotineBenefit # TODO: Replace these nonstandardized effects with generic brain damage - type: reagent @@ -260,11 +246,17 @@ type: Add time: 5 refresh: false - - !type:ChemRerollPsionic #Nyano - Summary: lets the imbiber become psionic. + - !type:ChemRerollPsionic #Nyano - Summary: lets the imbiber become psionic. conditions: - !type:ReagentThreshold reagent: SpaceDrugs min: 15 + - !type:ChemAddMoodlet + moodPrototype: SpaceDrugsBenefit + conditions: + - !type:ReagentThreshold + reagent: SpaceDrugs + min: 5 - type: reagent id: Bananadine @@ -412,3 +404,53 @@ conditions: - !type:ReagentThreshold min: 20 + +- type: reagent + id: Happiness + name: reagent-name-happiness + group: Narcotics + desc: reagent-desc-happiness + physicalDesc: reagent-physical-desc-soothing + flavor: paintthinner + color: "#EE35FF" + metabolisms: + Narcotic: + effects: + - !type:Emote + emote: Laugh + showInChat: true + probability: 0.1 + conditions: + - !type:ReagentThreshold + max: 20 + - !type:Emote + emote: Whistle + showInChat: true + probability: 0.1 + conditions: + - !type:ReagentThreshold + max: 20 + - !type:Emote + emote: Crying + showInChat: true + probability: 0.1 + conditions: + - !type:ReagentThreshold + min: 20 + - !type:PopupMessage # we dont have sanity/mood so this will have to do + type: Local + visualType: Medium + messages: + - "psicodine-effect-fearless" + - "psicodine-effect-anxieties-wash-away" + - "psicodine-effect-at-peace" + probability: 0.2 + conditions: + - !type:ReagentThreshold + max: 20 + - !type:GenericStatusEffect + key: SeeingRainbows + component: SeeingRainbows + type: Add + time: 5 + refresh: false diff --git a/Resources/Prototypes/Reagents/psionic.yml b/Resources/Prototypes/Reagents/psionic.yml index 3e8415fc0e..f17a84047a 100644 --- a/Resources/Prototypes/Reagents/psionic.yml +++ b/Resources/Prototypes/Reagents/psionic.yml @@ -92,6 +92,12 @@ - !type:GenericStatusEffect key: SlurredSpeech component: TelepathicRepeater + - !type:ChemAddMoodlet + moodPrototype: LotoTranscendence + conditions: + - !type:ReagentThreshold + reagent: LotophagoiOil + min: 5 - type: reagent id: Ectoplasm diff --git a/Resources/Prototypes/Reagents/toxins.yml b/Resources/Prototypes/Reagents/toxins.yml index 661e1b7dd1..5d29f024ce 100644 --- a/Resources/Prototypes/Reagents/toxins.yml +++ b/Resources/Prototypes/Reagents/toxins.yml @@ -486,7 +486,6 @@ - !type:OrganType type: Animal shouldHave: false - reagent: Protein type: Local visualType: MediumCaution messages: [ "generic-reagent-effect-sick" ] @@ -647,3 +646,23 @@ - !type:Electrocute probability: 0.8 +- type: reagent + id: Lipolicide + name: reagent-name-lipolicide + group: Toxins + desc: reagent-desc-lipolicide + physicalDesc: reagent-physical-desc-strong-smelling + flavor: mothballs #why does weightloss juice taste like mothballs + color: "#F0FFF0" + metabolisms: + Poison: + effects: + - !type:HealthChange + conditions: + - !type:Hunger + max: 50 + damage: + types: + Poison: 2 + - !type:SatiateHunger + factor: -6 diff --git a/Resources/Prototypes/DeltaV/Recipes/Construction/Graphs/clothing/prescription_huds.yml b/Resources/Prototypes/Recipes/Construction/Graphs/clothing/prescriptionhuds.yml similarity index 100% rename from Resources/Prototypes/DeltaV/Recipes/Construction/Graphs/clothing/prescription_huds.yml rename to Resources/Prototypes/Recipes/Construction/Graphs/clothing/prescriptionhuds.yml diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/clothing/quiver.yml b/Resources/Prototypes/Recipes/Construction/Graphs/clothing/quiver.yml new file mode 100644 index 0000000000..10736a5876 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/clothing/quiver.yml @@ -0,0 +1,19 @@ +- type: constructionGraph + id: Quiver + start: start + graph: + - node: start + edges: + - to: Quiver + steps: + - material: Cable + amount: 2 + doAfter: 1 + - material: Cloth + amount: 5 + doAfter: 2 + - material: WoodPlank + amount: 1 + doAfter: 2 + - node: Quiver + entity: ClothingBeltQuiver diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/glassbox.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/glassbox.yml new file mode 100644 index 0000000000..081f22ea8d --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/glassbox.yml @@ -0,0 +1,160 @@ +- type: constructionGraph + id: GlassBox + start: start + graph: + - node: start + actions: + - !type:DeleteEntity + edges: + - to: boxMissingWires + completed: + - !type:SetAnchor + value: false + steps: + - material: WoodPlank + amount: 10 + doAfter: 5 + + - node: boxMissingWires + entity: GlassBoxFrame + edges: + - to: boxMissingTrigger + conditions: + - !type:EntityAnchored + steps: + - material: Cable + amount: 2 + doAfter: 0.5 + + - to: start + steps: + - tool: Prying + doAfter: 5 + completed: + - !type:SpawnPrototype + prototype: MaterialWoodPlank1 + amount: 10 + + - node: boxMissingTrigger + edges: + - to: boxTriggerUnsecured + conditions: + - !type:EntityAnchored + steps: + - tag: SignalTrigger + name: a Signal Trigger + icon: + sprite: Objects/Devices/signaltrigger.rsi + state: signaltrigger + doAfter: 0.5 + + - to: boxMissingWires + conditions: + - !type:EntityAnchored + steps: + - tool: Cutting + doAfter: 0.25 + completed: + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 2 + + - node: boxTriggerUnsecured + edges: + - to: boxMissingRGlass + conditions: + - !type:EntityAnchored + steps: + - tool: Screwing + doAfter: 0.5 + + - to: boxMissingTrigger + conditions: + - !type:EntityAnchored + steps: + - tool: Prying + doAfter: 0.5 + completed: + - !type:SpawnPrototype + prototype: SignalTrigger + amount: 1 + + - node: boxMissingRGlass + edges: + - to: boxRGlassUnsecured + conditions: + - !type:EntityAnchored + steps: + - material: ReinforcedGlass + amount: 5 + doAfter: 2.5 + + - to: boxTriggerUnsecured + conditions: + - !type:EntityAnchored + steps: + - tool: Screwing + doAfter: 0.5 + + - node: boxRGlassUnsecured + edges: + - to: glassBox + conditions: + - !type:EntityAnchored + steps: + - tool: Screwing + doAfter: 0.5 + + - to: boxMissingRGlass + conditions: + - !type:EntityAnchored + steps: + - tool: Prying + doAfter: 2 + completed: + - !type:SpawnPrototype + prototype: SheetRGlass1 + amount: 5 + + - node: brokenGlassBox + entity: GlassBoxBroken + edges: + - to: boxMissingWires + steps: + - tool: Prying + doAfter: 2 + completed: + - !type:SpawnPrototype + prototype: ShardGlassReinforced + amount: 1 + + - node: glassBox + entity: GlassBoxLaser + edges: + - to: boxMissingWires + steps: + - tool: Screwing + doAfter: 4 + - tool: Pulsing + doAfter: 2 + - tool: Cutting + doAfter: 2 + - tool: Screwing + doAfter: 2 + - tool: Welding + doAfter: 10 + - tool: Anchoring + doAfter: 2 + - tool: Prying + doAfter: 2 + completed: + - !type:EmptyAllContainers + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 2 + - !type:SpawnPrototype + prototype: SignalTrigger + amount: 1 + - !type:SpawnPrototype + prototype: SheetRGlass1 + amount: 5 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/plastic_flaps.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/plastic_flaps.yml index 776c1491a6..781dd4aa87 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/plastic_flaps.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/plastic_flaps.yml @@ -33,16 +33,6 @@ - tool: Welding doAfter: 5 - - to: airtightFlaps - completed: - - !type:SnapToGrid { } - steps: - - material: Plastic - amount: 5 - doAfter: 5 - - tool: Screwing - doAfter: 5 - - node: opaqueFlaps entity: PlasticFlapsOpaque edges: @@ -54,44 +44,3 @@ steps: - tool: Anchoring doAfter: 10 - - - to: airtightopaqueFlaps - completed: - - !type:SnapToGrid { } - steps: - - material: Plastic - amount: 5 - doAfter: 5 - - tool: Screwing - doAfter: 5 - - - node: airtightFlaps - entity: PlasticFlapsAirtightClear - edges: - - to: plasticFlaps - completed: - - !type:SpawnPrototype - prototype: SheetPlastic - amount: 5 - steps: - - tool: Screwing - doAfter: 10 - - - to: airtightopaqueFlaps #test - completed: - - !type:SnapToGrid { } - steps: - - tool: Welding - doAfter: 5 - - - node: airtightopaqueFlaps - entity: PlasticFlapsAirtightOpaque - edges: - - to: opaqueFlaps - completed: - - !type:SpawnPrototype - prototype: SheetPlastic - amount: 5 - steps: - - tool: Screwing - doAfter: 10 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/windowdirectional.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/windowdirectional.yml index 96f009fabb..effddd7ca3 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/windowdirectional.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/windowdirectional.yml @@ -28,6 +28,7 @@ - material: ReinforcedPlasmaGlass amount: 1 doAfter: 3 + - to: uraniumWindowDirectional steps: - material: UraniumGlass @@ -136,6 +137,7 @@ doAfter: 2 - tool: Anchoring doAfter: 3 + - node: uraniumWindowDirectional entity: UraniumWindowDirectional edges: diff --git a/Resources/Prototypes/Recipes/Construction/clothing.yml b/Resources/Prototypes/Recipes/Construction/clothing.yml index 54218d2822..ba0c0d6c59 100644 --- a/Resources/Prototypes/Recipes/Construction/clothing.yml +++ b/Resources/Prototypes/Recipes/Construction/clothing.yml @@ -107,3 +107,14 @@ description: A roll of treated canvas used for wrapping claws or paws. icon: { sprite: Clothing/Shoes/Misc/clothWrap.rsi, state: icon } objectType: Item + +- type: construction + name: quiver + id: ClothingBeltQuiver + graph: Quiver + startNode: start + targetNode: Quiver + category: construction-category-clothing + description: Can hold up to 15 arrows, and fits snug around your waist. + icon: { sprite: Clothing/Belt/quiver.rsi, state: icon } + objectType: Item diff --git a/Resources/Prototypes/Recipes/Construction/furniture.yml b/Resources/Prototypes/Recipes/Construction/furniture.yml index a5239ad0b2..3ed0c9b961 100644 --- a/Resources/Prototypes/Recipes/Construction/furniture.yml +++ b/Resources/Prototypes/Recipes/Construction/furniture.yml @@ -587,7 +587,7 @@ category: construction-category-furniture description: Do not apply fire to this. Rumour says it burns easily. icon: - sprite: _White/Structures/Furniture/Tables/counterwood.rsi #WWDP edit + sprite: Structures/Furniture/Tables/counterwood.rsi state: full objectType: Structure placementMode: SnapgridCenter diff --git a/Resources/Prototypes/Recipes/Construction/storage.yml b/Resources/Prototypes/Recipes/Construction/storage.yml index 41abf881b6..c8edebc509 100644 --- a/Resources/Prototypes/Recipes/Construction/storage.yml +++ b/Resources/Prototypes/Recipes/Construction/storage.yml @@ -49,3 +49,21 @@ canBuildInImpassable: false conditions: - !type:TileNotBlocked + +# ItemCabinets +- type: construction + id: ShowCase + name: showcase + description: A sturdy showcase for an expensive exhibit. + graph: GlassBox + startNode: start + targetNode: glassBox + category: construction-category-storage + icon: + sprite: Structures/Storage/glassbox.rsi + state: icon + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: false + conditions: + - !type:TileNotBlocked diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index 658d4e1c9a..a80ac9a3eb 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -688,6 +688,42 @@ objectType: Structure placementMode: SnapgridCenter +- type: construction + name: directional uranium window + id: UraniumWindowDirectional + graph: WindowDirectional + startNode: start + targetNode: uraniumWindowDirectional + category: construction-category-structures + canBuildInImpassable: true + description: Clear and tougher than regular glass, with added RadAbsorb to protect you from deadly radiation. + conditions: + - !type:EmptyOrWindowValidInTile + - !type:NoWindowsInTile + icon: + sprite: Structures/Windows/directional.rsi + state: uranium_window + objectType: Structure + placementMode: SnapgridCenter + +- type: construction + name: directional reinforced uranium window + id: UraniumReinforcedWindowDirectional + graph: WindowDirectional + startNode: start + targetNode: uraniumReinforcedWindowDirectional + category: construction-category-structures + canBuildInImpassable: true + description: Clear and much tougher than regular glass, with added RadAbsorb to protect you from deadly radiation. + conditions: + - !type:EmptyOrWindowValidInTile + - !type:NoWindowsInTile + icon: + sprite: Structures/Windows/directional.rsi + state: uranium_reinforced_window + objectType: Structure + placementMode: SnapgridCenter + - type: construction name: firelock id: Firelock @@ -1552,23 +1588,6 @@ conditions: - !type:TileNotBlocked -- type: construction - name: airtight plastic flaps - id: PlasticFlapsAirtight - graph: PlasticFlapsGraph - startNode: start - targetNode: airtightFlaps - category: construction-category-structures - placementMode: SnapgridCenter - description: An airtight plastic flap to let items through and keep people out. - objectType: Structure - canBuildInImpassable: false - icon: - sprite: Structures/plastic_flaps.rsi - state: plasticflaps - conditions: - - !type:TileNotBlocked - - type: construction name: opaque plastic flaps id: PlasticFlapsOpaque @@ -1586,23 +1605,6 @@ conditions: - !type:TileNotBlocked -- type: construction - name: airtight opaque plastic flaps - id: PlasticFlapsAirtightOpaque - graph: PlasticFlapsGraph - startNode: start - targetNode: airtightopaqueFlaps - category: construction-category-structures - placementMode: SnapgridCenter - description: An opaque, airtight plastic flap to let items through and keep people out. - objectType: Structure - canBuildInImpassable: false - icon: - sprite: Structures/plastic_flaps.rsi - state: plasticflaps - conditions: - - !type:TileNotBlocked - - type: construction name: bananium clown statue id: BananiumClownStatue @@ -1667,7 +1669,7 @@ placementMode: SnapgridCenter canBuildInImpassable: false icon: - sprite: _White/Structures/Doors/secret_door.rsi #WWDP edit + sprite: Structures/Doors/secret_door.rsi state: closed conditions: - !type:TileNotBlocked diff --git a/Resources/Prototypes/Recipes/Construction/utilities.yml b/Resources/Prototypes/Recipes/Construction/utilities.yml index 80ae698b85..1647e98bce 100644 --- a/Resources/Prototypes/Recipes/Construction/utilities.yml +++ b/Resources/Prototypes/Recipes/Construction/utilities.yml @@ -467,12 +467,12 @@ placementMode: SnapgridCenter canBuildInImpassable: false icon: - sprite: _White/Structures/Piping/Atmospherics/vent.rsi #WWDP edit + sprite: Structures/Piping/Atmospherics/vent.rsi state: vent_off layers: - sprite: Structures/Piping/Atmospherics/pipe.rsi state: pipeHalf - - sprite: _White/Structures/Piping/Atmospherics/vent.rsi #WWDP edit + - sprite: Structures/Piping/Atmospherics/vent.rsi state: vent_off conditions: - !type:NoUnstackableInTile @@ -488,12 +488,12 @@ placementMode: SnapgridCenter canBuildInImpassable: false icon: - sprite: _White/Structures/Piping/Atmospherics/vent.rsi #WWDP edit + sprite: Structures/Piping/Atmospherics/vent.rsi state: vent_off layers: - sprite: Structures/Piping/Atmospherics/pipe.rsi state: pipeHalf - - sprite: _White/Structures/Piping/Atmospherics/vent.rsi #WWDP edit + - sprite: Structures/Piping/Atmospherics/vent.rsi state: vent_off conditions: - !type:NoUnstackableInTile @@ -509,12 +509,12 @@ placementMode: SnapgridCenter canBuildInImpassable: false icon: - sprite: _White/Structures/Piping/Atmospherics/scrubber.rsi #WWDP edit + sprite: Structures/Piping/Atmospherics/scrubber.rsi state: scrub_off layers: - sprite: Structures/Piping/Atmospherics/pipe.rsi state: pipeHalf - - sprite: _White/Structures/Piping/Atmospherics/scrubber.rsi #WWDP edit + - sprite: Structures/Piping/Atmospherics/scrubber.rsi state: scrub_off conditions: - !type:NoUnstackableInTile @@ -678,12 +678,12 @@ placementMode: SnapgridCenter canBuildInImpassable: false icon: - sprite: _White/Structures/Piping/Atmospherics/vent.rsi #WWDP edit + sprite: Structures/Piping/Atmospherics/vent.rsi state: vent_off layers: - sprite: Structures/Piping/Atmospherics/pipe.rsi state: pipeStraight - - sprite: _White/Structures/Piping/Atmospherics/vent.rsi #WWDP edit + - sprite: Structures/Piping/Atmospherics/vent.rsi state: vent_off - type: construction diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index 2f280f6e46..f3176cc5e7 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -135,7 +135,7 @@ FoodBreadBun: 1 FoodMeat: 2 FoodCheeseSlice: 2 - FoodChili: 1 + FoodChiliPepper: 1 FoodCabbage: 1 CrayonGreen: 1 Flare: 1 @@ -177,7 +177,7 @@ solids: FoodBreadBun: 1 FoodMeat: 1 - FoodChili: 3 + FoodChiliPepper: 3 - type: microwaveMealRecipe id: RecipeGhostBurger @@ -675,7 +675,7 @@ solids: FoodRiceBoiled: 1 FoodMeatCutlet: 3 - FoodChili: 2 + FoodChiliPepper: 2 - type: microwaveMealRecipe id: RecipeEggRice @@ -894,7 +894,7 @@ solids: FoodBowlBig: 1 FoodBungo: 2 - FoodChili: 1 + FoodChiliPepper: 1 #Pies @@ -965,7 +965,7 @@ time: 15 solids: FoodDoughPie: 1 - FoodChilly: 3 + FoodChillyPepper: 3 FoodPlateTin: 1 - type: microwaveMealRecipe @@ -1063,7 +1063,7 @@ solids: FoodDough: 1 FoodCheeseSlice: 2 - FoodChili: 1 + FoodChiliPepper: 1 FoodMeatFish: 2 - type: microwaveMealRecipe @@ -1513,7 +1513,7 @@ time: 20 solids: FoodBowlBig: 1 - FoodChili: 1 + FoodChiliPepper: 1 FoodMeatCutlet: 1 FoodOnionSlice: 1 FoodTomato: 1 @@ -1546,7 +1546,7 @@ time: 30 solids: FoodBowlBig: 1 - FoodChili: 1 + FoodChiliPepper: 1 FoodMeatCutlet: 1 FoodOnionSlice: 1 FoodTomato: 1 @@ -1561,7 +1561,7 @@ #reagents: #blackpepper: 5 solids: - FoodChili: 1 + FoodChiliPepper: 1 FoodCheeseSlice: 2 - type: microwaveMealRecipe @@ -1581,7 +1581,7 @@ result: FoodMealEnchiladas time: 20 solids: - FoodChili: 2 + FoodChiliPepper: 2 FoodMeatCutlet: 1 FoodCorn: 1 @@ -1712,6 +1712,14 @@ solids: LeavesCannabis: 1 +- type: microwaveMealRecipe + id: RecipeDriedCannabisRainbow + name: dried rainbow cannabis leaves recipe + result: LeavesCannabisRainbowDried + time: 10 + solids: + LeavesCannabisRainbow: 1 + - type: microwaveMealRecipe id: RecipeTrashBakedBananaPeel name: baked banana peel recipe @@ -1749,7 +1757,7 @@ result: FoodMeatHawaiianKebab time: 5 solids: - FoodChili: 1 + FoodChiliPepper: 1 FoodMeatCutlet: 1 FoodPineappleSlice: 1 FoodKebabSkewer: 1 @@ -1760,7 +1768,7 @@ result: FoodMeatFiestaKebab time: 5 solids: - FoodChili: 1 + FoodChiliPepper: 1 FoodCorn: 1 FoodMeatCutlet: 1 FoodTomato: 1 diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/bots/honkbot.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/bots/honkbot.yml index ff3f6d2e2a..6806aacc24 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/bots/honkbot.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/bots/honkbot.yml @@ -6,17 +6,11 @@ edges: - to: bot steps: - - tag: BoxHug - icon: - sprite: Objects/Storage/boxes.rsi - state: box_hug - name: box of hugs - - tag: ClownRubberStamp + - tag: HappyHonk icon: - sprite: Objects/Misc/stamps.rsi - state: stamp-clown - name: clown's rubber stamp - doAfter: 2 + sprite: Objects/Storage/Happyhonk/clown.rsi + state: box + name: happy honk meal - tag: BikeHorn icon: sprite: Objects/Fun/bikehorn.rsi @@ -45,21 +39,15 @@ edges: - to: bot steps: - - tag: HappyHonk + - tag: CluwneHappyHonk icon: - sprite: Objects/Storage/Happyhonk/clown.rsi + sprite: Objects/Storage/Happyhonk/cluwne.rsi state: box - name: happy honk meal - - tag: ClownRubberStamp - icon: - sprite: Objects/Misc/stamps.rsi - state: stamp-clown - name: clown's rubber stamp - doAfter: 2 + name: woeful cluwne meal - tag: CluwneHorn icon: - sprite: Objects/Fun/cluwnehorn.rsi - state: icon + sprite: Objects/Fun/cluwnehorn.rsi + state: icon name: broken bike horn doAfter: 2 - tag: ProximitySensor diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/bots/supplybot.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/bots/supplybot.yml new file mode 100644 index 0000000000..efabb849bb --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/bots/supplybot.yml @@ -0,0 +1,23 @@ +- type: constructionGraph + id: SupplyBot + start: start + graph: + - node: start + edges: + - to: bot + steps: + - tag: ProximitySensor + icon: + sprite: Objects/Misc/proximity_sensor.rsi + state: icon + name: proximity sensor + - tag: BorgHead + icon: + sprite: Objects/Specific/Robotics/cyborg_parts.rsi + state: borg_head + name: borg head + doAfter: 1 + - material: Steel + amount: 10 + - node: bot + entity: MobSupplyBot diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/smokeables.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/smokeables.yml index 00900a95ef..419d7bff33 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/smokeables.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/smokeables.yml @@ -12,6 +12,21 @@ doAfter: 2 - node: joint entity: Joint + +- type: constructionGraph + id: smokeableJointRainbow + start: start + graph: + - node: start + edges: + - to: jointRainbow + steps: + - material: PaperRolling + - material: CigaretteFilter + - material: GroundCannabisRainbow + doAfter: 2 + - node: jointRainbow + entity: JointRainbow - type: constructionGraph id: smokeableBlunt @@ -27,6 +42,20 @@ - node: blunt entity: Blunt +- type: constructionGraph + id: smokeableBluntRainbow + start: start + graph: + - node: start + edges: + - to: bluntRainbow + steps: + - material: LeavesTobaccoDried + - material: GroundCannabisRainbow + doAfter: 2 + - node: bluntRainbow + entity: BluntRainbow + - type: constructionGraph id: smokeableCigarette start: start @@ -56,6 +85,20 @@ - node: ground entity: GroundCannabis +- type: constructionGraph + id: smokeableGroundCannabisRainbow + start: start + graph: + - node: start + edges: + - to: groundRainbow + steps: + - material: LeavesCannabisRainbowDried + amount: 2 + doAfter: 5 + - node: groundRainbow + entity: GroundCannabisRainbow + - type: constructionGraph id: smokeableGroundTobacco start: start diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml index 7e450513af..e72c56ff44 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml @@ -19,8 +19,6 @@ conditions: - !type:StorageWelded welded: false - - !type:Locked - locked: false completed: - !type:SpawnPrototype prototype: SheetSteel1 diff --git a/Resources/Prototypes/Recipes/Crafting/bots.yml b/Resources/Prototypes/Recipes/Crafting/bots.yml index 9a70a19c86..3031f4a780 100644 --- a/Resources/Prototypes/Recipes/Crafting/bots.yml +++ b/Resources/Prototypes/Recipes/Crafting/bots.yml @@ -62,3 +62,16 @@ icon: sprite: Mobs/Silicon/Bots/mimebot.rsi state: mimebot + +- type: construction + name: supplybot + id: supplybot + graph: SupplyBot + startNode: start + targetNode: bot + category: construction-category-utilities + objectType: Item + description: This bot can be loaded with cargo to make deliveries. + icon: + sprite: Mobs/Silicon/Bots/supplybot.rsi + state: supplybot diff --git a/Resources/Prototypes/Recipes/Crafting/smokeables.yml b/Resources/Prototypes/Recipes/Crafting/smokeables.yml index 6d7d4e30bc..e4280f6d66 100644 --- a/Resources/Prototypes/Recipes/Crafting/smokeables.yml +++ b/Resources/Prototypes/Recipes/Crafting/smokeables.yml @@ -8,6 +8,17 @@ description: "A roll of dried plant matter wrapped in thin paper." icon: { sprite: Objects/Consumable/Smokeables/Cannabis/joint.rsi, state: unlit-icon } objectType: Item + +- type: construction + name: rainbow joint + id: smokeableJointRainbow + graph: smokeableJointRainbow + startNode: start + targetNode: jointRainbow + category: construction-category-misc + description: "A roll of dried plant matter wrapped in thin paper." + icon: { sprite: Objects/Consumable/Smokeables/Cannabis/joint.rsi, state: unlit-icon } + objectType: Item - type: construction name: blunt @@ -20,6 +31,17 @@ icon: { sprite: Objects/Consumable/Smokeables/Cannabis/blunt.rsi, state: unlit-icon } objectType: Item +- type: construction + name: rainbow blunt + id: smokeableBluntRainbow + graph: smokeableBluntRainbow + startNode: start + targetNode: bluntRainbow + category: construction-category-misc + description: "A roll of dried plant matter wrapped in a dried tobacco leaf." + icon: { sprite: Objects/Consumable/Smokeables/Cannabis/blunt.rsi, state: unlit-icon } + objectType: Item + - type: construction name: cigarette id: smokeableCigarette @@ -45,6 +67,17 @@ # color: darkgreen objectType: Item +- type: construction + name: ground rainbow cannabis + id: smokeableGroundCannabisRainbow + graph: smokeableGroundCannabisRainbow + startNode: start + targetNode: groundRainbow + category: construction-category-misc + description: "Ground rainbow cannabis, ready to take you on a trip." + icon: { sprite: Objects/Specific/Hydroponics/rainbow_cannabis.rsi, state: powderpile_rainbow } + objectType: Item + - type: construction name: ground tobacco id: smokeableGroundTobacco diff --git a/Resources/Prototypes/Recipes/Lathes/Parts.yml b/Resources/Prototypes/Recipes/Lathes/Parts.yml index 90cff2174d..4534bf6097 100644 --- a/Resources/Prototypes/Recipes/Lathes/Parts.yml +++ b/Resources/Prototypes/Recipes/Lathes/Parts.yml @@ -1,3 +1,4 @@ +#Rating 1 - type: latheRecipe id: CapacitorStockPart result: CapacitorStockPart @@ -24,3 +25,93 @@ materials: Steel: 50 Plastic: 50 + +#Rating 2 +- type: latheRecipe + id: AdvancedCapacitorStockPart + result: AdvancedCapacitorStockPart + completetime: 3 + materials: + Steel: 80 + Plastic: 80 + Plasma: 75 + +- type: latheRecipe + id: AdvancedMatterBinStockPart + result: AdvancedMatterBinStockPart + completetime: 3 + materials: + Steel: 80 + Plastic: 80 + Plasma: 75 + +- type: latheRecipe + id: NanoManipulatorStockPart + result: NanoManipulatorStockPart + completetime: 3 + materials: + Steel: 80 + Plastic: 80 + Plasma: 75 + +#Rating 3 +- type: latheRecipe + id: SuperCapacitorStockPart + result: SuperCapacitorStockPart + completetime: 3 + materials: + Steel: 150 + Plastic: 150 + Plasma: 75 + Gold: 75 + +- type: latheRecipe + id: SuperMatterBinStockPart + result: SuperMatterBinStockPart + completetime: 3 + materials: + Steel: 150 + Plastic: 150 + Plasma: 75 + Gold: 75 + +- type: latheRecipe + id: PicoManipulatorStockPart + result: PicoManipulatorStockPart + completetime: 3 + materials: + Steel: 150 + Plastic: 150 + Plasma: 75 + Gold: 75 + +#Rating 4 +- type: latheRecipe + id: BluespaceCapacitorStockPart + result: BluespaceCapacitorStockPart + completetime: 3 + materials: + Steel: 150 + Plastic: 150 + Gold: 75 + Bluespace: 300 + +- type: latheRecipe + id: BluespaceMatterBinStockPart + result: BluespaceMatterBinStockPart + completetime: 3 + materials: + Steel: 150 + Plastic: 150 + Gold: 75 + Bluespace: 300 + +- type: latheRecipe + id: BluespaceManipulatorStockPart + result: BluespaceManipulatorStockPart + completetime: 3 + materials: + Steel: 150 + Plastic: 150 + Gold: 75 + Bluespace: 300 diff --git a/Resources/Prototypes/Recipes/Lathes/clothing.yml b/Resources/Prototypes/Recipes/Lathes/clothing.yml index 19b2fbb883..729f20e979 100644 --- a/Resources/Prototypes/Recipes/Lathes/clothing.yml +++ b/Resources/Prototypes/Recipes/Lathes/clothing.yml @@ -706,8 +706,16 @@ Durathread: 300 - type: latheRecipe - id: ClothingOuterWinterHoS - result: ClothingOuterWinterHoS + id: ClothingOuterWinterHoSUnarmored + result: ClothingOuterWinterHoSUnarmored + completetime: 3.2 + materials: + Cloth: 500 + Durathread: 300 + +- type: latheRecipe + id: ClothingOuterWinterWardenUnarmored + result: ClothingOuterWinterWardenUnarmored completetime: 3.2 materials: Cloth: 500 diff --git a/Resources/Prototypes/Recipes/Lathes/cooking.yml b/Resources/Prototypes/Recipes/Lathes/cooking.yml index a8836ff392..577d8299da 100644 --- a/Resources/Prototypes/Recipes/Lathes/cooking.yml +++ b/Resources/Prototypes/Recipes/Lathes/cooking.yml @@ -49,6 +49,13 @@ materials: Glass: 100 +- type: latheRecipe + id: CustomDrinkJug + result: CustomDrinkJug + completetime: 2 + materials: + Plastic: 200 + - type: latheRecipe id: FoodPlate result: FoodPlate diff --git a/Resources/Prototypes/Recipes/Lathes/devices.yml b/Resources/Prototypes/Recipes/Lathes/devices.yml index d41b5fdce8..2b0d6fa44f 100644 --- a/Resources/Prototypes/Recipes/Lathes/devices.yml +++ b/Resources/Prototypes/Recipes/Lathes/devices.yml @@ -76,7 +76,7 @@ Steel: 100 Plastic: 200 Glass: 100 - + - type: latheRecipe id: SignallerAdvanced result: RemoteSignallerAdvanced @@ -178,15 +178,23 @@ Plasma: 1000 #DeltaV: Bluespace Exists so less plasma used, no uranium Bluespace: 200 #DeltaV: Bluespace Exists -#- type: latheRecipe #DeltaV - LRP -# id: WeaponForceGun -# result: WeaponForceGun -# category: Tools -# completetime: 5 -# materials: -# Steel: 500 -# Glass: 400 -# Silver: 200 +- type: latheRecipe + id: ClothingMaskWeldingGas + result: ClothingMaskWeldingGas + completetime: 3 + materials: + Steel: 600 + Glass: 200 + +- type: latheRecipe + id: WeaponForceGun + result: WeaponForceGun + category: Tools + completetime: 5 + materials: + Steel: 500 + Glass: 400 + Silver: 200 - type: latheRecipe id: DeviceQuantumSpinInverter @@ -207,22 +215,22 @@ Glass: 500 Silver: 100 -#- type: latheRecipe #DeltaV - LRP -# id: WeaponTetherGun -# result: WeaponTetherGun -# category: Tools -# completetime: 5 -# materials: -# Steel: 500 -# Glass: 400 -# Silver: 100 - -#- type: latheRecipe #DeltaV - LRP -# id: WeaponGrapplingGun -# result: WeaponGrapplingGun -# category: Tools -# completetime: 5 -# materials: -# Steel: 500 -# Glass: 400 -# Gold: 100 +- type: latheRecipe + id: WeaponTetherGun + result: WeaponTetherGun + category: Tools + completetime: 5 + materials: + Steel: 500 + Glass: 400 + Silver: 100 + +- type: latheRecipe + id: WeaponGrapplingGun + result: WeaponGrapplingGun + category: Tools + completetime: 5 + materials: + Steel: 500 + Glass: 400 + Gold: 100 diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index 12b5bedf10..af258ad31b 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -114,7 +114,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -133,7 +133,7 @@ completetime: 4 materials: Steel: 150 - Glass: 900 + Glass: 500 Gold: 50 - type: latheRecipe @@ -143,7 +143,7 @@ completetime: 4 materials: Steel: 150 - Glass: 900 + Glass: 500 Gold: 50 - type: latheRecipe @@ -153,7 +153,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: PortableScrubberMachineCircuitBoard @@ -162,7 +162,7 @@ completetime: 4 materials: Steel: 150 - Glass: 900 + Glass: 500 Gold: 50 - type: latheRecipe @@ -172,7 +172,7 @@ completetime: 4 materials: Steel: 150 - Glass: 900 + Glass: 500 Gold: 50 - type: latheRecipe @@ -182,7 +182,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: CryoPodMachineCircuitboard @@ -191,7 +191,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -201,7 +201,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: ChemDispenserMachineCircuitboard @@ -210,7 +210,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -220,7 +220,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -230,7 +230,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -240,7 +240,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: AutolatheMachineCircuitboard @@ -249,7 +249,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: ProtolatheMachineCircuitboard @@ -258,7 +258,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: AutolatheHyperConvectionMachineCircuitboard @@ -267,7 +267,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -277,7 +277,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -286,8 +286,19 @@ category: Circuitry completetime: 4 materials: - Steel: 100 - Glass: 900 + Steel: 100 + Glass: 500 + +- type: latheRecipe + id: CircuitImprinterHyperConvectionMachineCircuitboard + result: CircuitImprinterHyperConvectionMachineCircuitboard + category: Circuitry + completetime: 4 + materials: + Steel: 100 + Glass: 900 + Gold: 100 + - type: latheRecipe id: ExosuitFabricatorMachineCircuitboard @@ -296,7 +307,7 @@ completetime: 5 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: UniformPrinterMachineCircuitboard @@ -305,7 +316,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: VaccinatorMachineCircuitboard @@ -314,7 +325,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -324,7 +335,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -334,17 +345,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 - Gold: 100 - -- type: latheRecipe - id: TraversalDistorterMachineCircuitboard - result: TraversalDistorterMachineCircuitboard - category: Circuitry - completetime: 4 - materials: - Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -354,7 +355,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -364,7 +365,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: AnomalyVesselExperimentalCircuitboard @@ -373,7 +374,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -393,7 +394,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: ReagentGrinderMachineCircuitboard @@ -402,7 +403,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: HotplateMachineCircuitboard @@ -411,7 +412,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: AnalysisComputerCircuitboard @@ -420,7 +421,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -430,7 +431,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -440,7 +441,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -450,7 +451,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: DawInstrumentMachineCircuitboard @@ -459,7 +460,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: StasisBedMachineCircuitboard @@ -468,7 +469,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -478,7 +479,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: CentrifugeMachineCircuitboard @@ -487,7 +488,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: MaterialReclaimerMachineCircuitboard @@ -496,7 +497,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: OreProcessorMachineCircuitboard @@ -505,7 +506,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: OreProcessorIndustrialMachineCircuitboard @@ -514,7 +515,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -524,7 +525,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -534,7 +535,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -544,7 +545,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Bananium: 100 - type: latheRecipe @@ -554,7 +555,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Bananium: 100 - type: latheRecipe @@ -564,7 +565,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Bananium: 100 - type: latheRecipe @@ -574,7 +575,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -584,7 +585,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 # Power @@ -622,7 +623,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: PortableGeneratorPacmanMachineCircuitboard @@ -676,7 +677,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: SolarTrackerElectronics @@ -694,7 +695,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: CloningConsoleComputerCircuitboard @@ -703,7 +704,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: MicrowaveMachineCircuitboard @@ -712,7 +713,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: ElectricGrillMachineCircuitboard @@ -721,7 +722,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: FatExtractorMachineCircuitboard @@ -730,7 +731,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: FlatpackerMachineCircuitboard @@ -739,7 +740,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -749,7 +750,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: SurveillanceCameraRouterCircuitboard @@ -758,7 +759,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: SurveillanceCameraWirelessRouterCircuitboard @@ -767,7 +768,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: SurveillanceWirelessCameraAnchoredCircuitboard @@ -776,7 +777,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: SurveillanceWirelessCameraMovableCircuitboard @@ -785,7 +786,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: SurveillanceCameraMonitorCircuitboard @@ -794,7 +795,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: SurveillanceWirelessCameraMonitorCircuitboard @@ -803,7 +804,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: ComputerTelevisionCircuitboard @@ -812,7 +813,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: EmitterCircuitboard @@ -821,7 +822,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: ThrusterMachineCircuitboard @@ -830,7 +831,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: GyroscopeMachineCircuitboard @@ -839,7 +840,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: GasRecyclerMachineCircuitboard @@ -848,7 +849,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: SeedExtractorMachineCircuitboard @@ -857,7 +858,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: BoozeDispenserMachineCircuitboard @@ -866,7 +867,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: CargoTelepadMachineCircuitboard @@ -875,7 +876,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -885,7 +886,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: TelecomServerCircuitboard @@ -894,7 +895,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: MassMediaCircuitboard @@ -903,7 +904,7 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: MiniGravityGeneratorCircuitboard @@ -912,7 +913,7 @@ completetime: 6 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -921,7 +922,7 @@ completetime: 6 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: ShuttleGunSvalinnMachineGunCircuitboard @@ -929,7 +930,8 @@ completetime: 6 materials: Steel: 100 - Glass: 900 + + Glass: 500 - type: latheRecipe id: ShuttleGunPerforatorCircuitboard @@ -937,7 +939,7 @@ completetime: 10 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -946,7 +948,7 @@ completetime: 6 materials: Steel: 100 - Glass: 900 + Glass: 500 - type: latheRecipe id: ShuttleGunFriendshipCircuitboard @@ -954,7 +956,7 @@ completetime: 8 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 50 - type: latheRecipe @@ -963,7 +965,7 @@ completetime: 12 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -972,7 +974,7 @@ completetime: 5 materials: Steel: 100 - Glass: 900 + Glass: 500 Gold: 100 - type: latheRecipe @@ -981,4 +983,4 @@ completetime: 4 materials: Steel: 100 - Glass: 900 + Glass: 500 \ No newline at end of file diff --git a/Resources/Prototypes/Recipes/Lathes/janitorial.yml b/Resources/Prototypes/Recipes/Lathes/janitorial.yml index a3b968a331..3aba423e73 100644 --- a/Resources/Prototypes/Recipes/Lathes/janitorial.yml +++ b/Resources/Prototypes/Recipes/Lathes/janitorial.yml @@ -18,7 +18,7 @@ result: Bucket completetime: 2 materials: - Steel: 100 + Plastic: 100 - type: latheRecipe id: WetFloorSign @@ -66,7 +66,7 @@ - type: latheRecipe id: Holoprojector - result: HoloprojectorEmpty + result: Holoprojector # WD EDIT completetime: 3 materials: Plastic: 250 diff --git a/Resources/Prototypes/Recipes/Lathes/medical.yml b/Resources/Prototypes/Recipes/Lathes/medical.yml index 631829ed53..822945de10 100644 --- a/Resources/Prototypes/Recipes/Lathes/medical.yml +++ b/Resources/Prototypes/Recipes/Lathes/medical.yml @@ -116,7 +116,7 @@ result: ClothingMaskSterile completetime: 2 materials: - Plastic: 100 + Plastic: 50 - type: latheRecipe id: DiseaseSwab diff --git a/Resources/Prototypes/Recipes/Lathes/misc.yml b/Resources/Prototypes/Recipes/Lathes/misc.yml index ab13dc4573..2c0e1eeec3 100644 --- a/Resources/Prototypes/Recipes/Lathes/misc.yml +++ b/Resources/Prototypes/Recipes/Lathes/misc.yml @@ -207,3 +207,19 @@ materials: Steel: 400 Glass: 200 + +- type: latheRecipe + id: ClothingShoesBootsMagAdv + result: ClothingShoesBootsMagAdv + completetime: 12 + materials: + Silver: 1000 + Gold: 500 + +- type: latheRecipe + id: MailCapsule + result: MailCapsulePrimed + completetime: 1 + materials: + Glass: 100 + Plastic: 100 diff --git a/Resources/Prototypes/Recipes/Lathes/robotics.yml b/Resources/Prototypes/Recipes/Lathes/robotics.yml index bf6f479703..2dc0a65748 100644 --- a/Resources/Prototypes/Recipes/Lathes/robotics.yml +++ b/Resources/Prototypes/Recipes/Lathes/robotics.yml @@ -427,16 +427,16 @@ Glass: 250 Plastic: 250 -#- type: latheRecipe -# id: BorgModuleGrapplingGun -# result: BorgModuleGrapplingGun -# category: Robotics -# completetime: 3 -# materials: -# Steel: 500 -# Glass: 500 -# Plastic: 250 -# Gold: 50 +- type: latheRecipe + id: BorgModuleGrapplingGun + result: BorgModuleGrapplingGun + category: Robotics + completetime: 3 + materials: + Steel: 500 + Glass: 500 + Plastic: 250 + Gold: 50 - type: latheRecipe id: BorgModuleAdvancedTool diff --git a/Resources/Prototypes/Recipes/Lathes/security.yml b/Resources/Prototypes/Recipes/Lathes/security.yml index 08e11e4ff8..0957df4572 100644 --- a/Resources/Prototypes/Recipes/Lathes/security.yml +++ b/Resources/Prototypes/Recipes/Lathes/security.yml @@ -38,7 +38,7 @@ materials: Steel: 250 Plastic: 100 - + - type: latheRecipe id: WeaponLaserCarbine result: WeaponLaserCarbine @@ -114,7 +114,7 @@ - type: latheRecipe id: HoloprojectorSecurity - result: HoloprojectorSecurityEmpty + result: HoloprojectorSecurity # WD EDIT completetime: 2 materials: Steel: 300 @@ -146,15 +146,6 @@ Plastic: 200 Steel: 100 -- type: latheRecipe - id: ShellShotgunBeanbag - result: ShellShotgunBeanbag - category: Ammo - completetime: 2 - materials: - Plastic: 15 - Steel: 10 - - type: latheRecipe id: CartridgePistolRubber result: CartridgePistolRubber @@ -173,14 +164,6 @@ Plastic: 5 Steel: 5 -- type: latheRecipe - id: CartridgeRifle - result: CartridgeRifle - category: Ammo - completetime: 2 - materials: - Steel: 15 - - type: latheRecipe id: CartridgeLightRifleRubber result: CartridgeLightRifleRubber @@ -199,54 +182,6 @@ Plastic: 10 Steel: 5 -- type: latheRecipe - id: CartridgePistol - result: CartridgePistol - category: Ammo - completetime: 2 - materials: - Steel: 10 - -- type: latheRecipe - id: ShellShotgun - result: ShellShotgun - category: Ammo - completetime: 2 - materials: - Steel: 20 - -- type: latheRecipe - id: ShellShotgunSlug - result: ShellShotgunSlug - completetime: 2 - materials: - Steel: 25 - -- type: latheRecipe - id: CartridgeMagnum - result: CartridgeMagnum - category: Ammo - completetime: 2 - materials: - Steel: 20 - -- type: latheRecipe - id: CartridgeLightRifle - result: CartridgeLightRifle - category: Ammo - completetime: 2 - materials: - Steel: 30 - -- type: latheRecipe - id: ShellShotgunFlare - result: ShellShotgunFlare - category: Ammo - completetime: 2 - materials: - Plastic: 20 - Steel: 5 - - type: latheRecipe id: ShellTranquilizer result: ShellTranquilizer @@ -283,13 +218,56 @@ materials: Steel: 500 +- type: latheRecipe + id: MagazinePistolEmpty + result: MagazinePistolEmpty + category: Ammo + completetime: 5 + materials: + Steel: 25 + - type: latheRecipe id: MagazinePistol result: MagazinePistol category: Ammo completetime: 5 materials: - Steel: 100 + Steel: 145 + +- type: latheRecipe + id: MagazinePistolPractice + result: MagazinePistolPractice + category: Ammo + completetime: 5 + materials: + Steel: 85 + +- type: latheRecipe + id: MagazinePistolUranium + result: MagazinePistolUranium + category: Ammo + completetime: 5 + materials: + Steel: 25 + Plastic: 65 + Uranium: 120 + +- type: latheRecipe + id: MagazinePistolIncendiary + result: MagazinePistolIncendiary + category: Ammo + completetime: 5 + materials: + Steel: 25 + Plastic: 120 + +- type: latheRecipe + id: MagazinePistolSubMachineGunEmpty + result: MagazinePistolSubMachineGunEmpty + category: Ammo + completetime: 5 + materials: + Steel: 30 - type: latheRecipe id: MagazinePistolSubMachineGun @@ -299,6 +277,14 @@ materials: Steel: 300 +- type: latheRecipe + id: MagazinePistolSubMachineGunTopMountedEmpty + result: MagazinePistolSubMachineGunTopMountedEmpty + category: Ammo + completetime: 5 + materials: + Steel: 30 + - type: latheRecipe id: MagazinePistolSubMachineGunTopMounted result: MagazinePistolSubMachineGunTopMounted @@ -313,7 +299,7 @@ category: Ammo completetime: 5 materials: - Steel: 650 + Steel: 600 - type: latheRecipe id: MagazineBoxPistolRubber @@ -330,7 +316,15 @@ category: Ammo completetime: 5 materials: - Steel: 1250 + Steel: 240 + +- type: latheRecipe + id: MagazineRifleEmpty + result: MagazineRifleEmpty + category: Ammo + completetime: 5 + materials: + Steel: 25 - type: latheRecipe id: MagazineBoxMagnumRubber @@ -347,7 +341,43 @@ category: Ammo completetime: 5 materials: - Steel: 375 + Steel: 475 + + +- type: latheRecipe + id: MagazineRiflePractice + result: MagazineRiflePractice + category: Ammo + completetime: 5 + materials: + Steel: 175 + +- type: latheRecipe + id: MagazineRifleUranium + result: MagazineRifleUranium + category: Ammo + completetime: 5 + materials: + Steel: 25 + Plastic: 300 + Uranium: 300 + +- type: latheRecipe + id: MagazineRifleIncendiary + result: MagazineRifleIncendiary + category: Ammo + completetime: 5 + materials: + Steel: 25 + Plastic: 450 + +- type: latheRecipe + id: MagazineLightRifleEmpty + result: MagazineLightRifleEmpty + category: Ammo + completetime: 5 + materials: + Steel: 25 - type: latheRecipe id: MagazineLightRifle @@ -355,7 +385,35 @@ category: Ammo completetime: 5 materials: - Steel: 375 + Steel: 565 + +- type: latheRecipe + id: MagazineLightRiflePractice + result: MagazineLightRiflePractice + category: Ammo + completetime: 5 + materials: + Steel: 205 + + +- type: latheRecipe + id: MagazineLightRifleUranium + result: MagazineLightRifleUranium + category: Ammo + completetime: 5 + materials: + Steel: 25 + Plastic: 360 + Uranium: 360 + +- type: latheRecipe + id: MagazineLightRifleIncendiary + result: MagazineLightRifleIncendiary + category: Ammo + completetime: 5 + materials: + Steel: 25 + Plastic: 540 - type: latheRecipe id: MagazineBoxRifle @@ -363,7 +421,7 @@ category: Ammo completetime: 5 materials: - Steel: 950 + Steel: 750 - type: latheRecipe id: MagazineBoxRifleRubber @@ -380,7 +438,41 @@ category: Ammo completetime: 5 materials: - Steel: 1800 + Steel: 900 + +- type: latheRecipe + id: BoxLethalshot + result: BoxLethalshot + category: Ammo + completetime: 5 + materials: + Steel: 320 + +- type: latheRecipe + id: BoxBeanbag + result: BoxBeanbag + category: Ammo + completetime: 5 + materials: + Steel: 160 + Plastic: 240 + +- type: latheRecipe + id: BoxShotgunSlug + result: BoxShotgunSlug + category: Ammo + completetime: 5 + materials: + Steel: 240 + Plastic: 160 + +- type: latheRecipe + id: SpeedLoaderMagnumEmpty + result: SpeedLoaderMagnumEmpty + category: Ammo + completetime: 5 + materials: + Steel: 50 - type: latheRecipe id: MagazineBoxLightRifleRubber @@ -397,47 +489,77 @@ category: Ammo completetime: 5 materials: - Steel: 200 + Steel: 190 - type: latheRecipe - id: ShellShotgunIncendiary - result: ShellShotgunIncendiary + id: SpeedLoaderMagnumPractice + result: SpeedLoaderMagnumPractice category: Ammo - completetime: 2 + completetime: 5 materials: - Plastic: 20 + Steel: 90 - type: latheRecipe - id: CartridgePistolIncendiary - result: CartridgePistolIncendiary + id: SpeedLoaderMagnumUranium + result: SpeedLoaderMagnumUranium category: Ammo - completetime: 2 + completetime: 5 materials: - Plastic: 10 + Steel: 50 + Plastic: 150 + Uranium: 110 - type: latheRecipe - id: CartridgeMagnumIncendiary - result: CartridgeMagnumIncendiary + id: SpeedLoaderMagnumIncendiary + result: SpeedLoaderMagnumIncendiary category: Ammo - completetime: 2 + completetime: 5 materials: - Plastic: 20 + Steel: 50 + Plastic: 150 - type: latheRecipe - id: CartridgeLightRifleIncendiary - result: CartridgeLightRifleIncendiary + id: MagazineShotgunEmpty + result: MagazineShotgunEmpty category: Ammo - completetime: 2 + completetime: 5 materials: - Plastic: 20 + Steel: 50 - type: latheRecipe - id: CartridgeRifleIncendiary - result: CartridgeRifleIncendiary + id: MagazineShotgun + result: MagazineShotgun category: Ammo - completetime: 2 + completetime: 5 materials: - Plastic: 15 + Steel: 240 + +- type: latheRecipe + id: MagazineShotgunBeanbag + result: MagazineShotgunBeanbag + category: Ammo + completetime: 5 + materials: + Steel: 150 + Plastic: 140 + +- type: latheRecipe + id: MagazineShotgunSlug + result: MagazineShotgunSlug + category: Ammo + completetime: 5 + materials: + Steel: 190 + Plastic: 100 + +- type: latheRecipe + id: MagazineShotgunIncendiary + result: MagazineShotgunIncendiary + category: Ammo + completetime: 5 + materials: + Steel: 100 + Plastic: 190 - type: latheRecipe id: MagazineBoxPistolIncendiary @@ -445,7 +567,7 @@ category: Ammo completetime: 5 materials: - Plastic: 650 + Plastic: 600 - type: latheRecipe id: MagazineBoxMagnumIncendiary @@ -453,7 +575,7 @@ category: Ammo completetime: 5 materials: - Plastic: 1250 + Plastic: 240 - type: latheRecipe id: MagazineBoxLightRifleIncendiary @@ -461,7 +583,7 @@ category: Ammo completetime: 5 materials: - Plastic: 1800 + Plastic: 900 - type: latheRecipe id: MagazineBoxRifleIncendiary @@ -469,15 +591,25 @@ category: Ammo completetime: 5 materials: - Plastic: 950 + Plastic: 750 - type: latheRecipe - id: ShellShotgunPractice - result: ShellShotgunPractice + id: BoxShotgunFlare + result: BoxShotgunFlare category: Ammo - completetime: 2 + completetime: 5 materials: - Plastic: 20 + Steel: 80 + Plastic: 80 + +- type: latheRecipe + id: BoxShotgunIncendiary + result: BoxShotgunIncendiary + category: Ammo + completetime: 5 + materials: + Steel: 80 + Plastic: 320 - type: latheRecipe id: MagazineBoxPistolPractice @@ -485,7 +617,7 @@ category: Ammo completetime: 5 materials: - Plastic: 600 + Steel: 300 - type: latheRecipe id: MagazineBoxMagnumPractice @@ -493,7 +625,7 @@ category: Ammo completetime: 5 materials: - Plastic: 1200 + Steel: 60 - type: latheRecipe id: MagazineBoxLightRiflePractice @@ -501,7 +633,7 @@ category: Ammo completetime: 5 materials: - Plastic: 1000 + Steel: 300 - type: latheRecipe id: MagazineBoxRiflePractice @@ -509,7 +641,7 @@ category: Ammo completetime: 5 materials: - Plastic: 900 + Steel: 250 - type: latheRecipe id: WeaponLaserCarbinePractice @@ -532,49 +664,12 @@ Plastic: 200 - type: latheRecipe - id: ShellShotgunUranium - result: ShellShotgunUranium - category: Ammo - completetime: 2 - materials: - Plastic: 15 - Uranium: 10 - -- type: latheRecipe - id: CartridgePistolUranium - result: CartridgePistolUranium - category: Ammo - completetime: 2 - materials: - Plastic: 5 - Uranium: 10 - -- type: latheRecipe - id: CartridgeMagnumUranium - result: CartridgeMagnumUranium - category: Ammo - completetime: 2 - materials: - Plastic: 20 - Uranium: 10 - -- type: latheRecipe - id: CartridgeLightRifleUranium - result: CartridgeLightRifleUranium - category: Ammo - completetime: 2 - materials: - Plastic: 20 - Uranium: 10 - -- type: latheRecipe - id: CartridgeRifleUranium - result: CartridgeRifleUranium + id: BoxShotgunPractice + result: BoxShotgunPractice category: Ammo - completetime: 2 + completetime: 5 materials: - Plastic: 15 - Uranium: 10 + Steel: 80 - type: latheRecipe id: MagazineBoxPistolUranium @@ -582,8 +677,8 @@ category: Ammo completetime: 5 materials: - Plastic: 650 - Uranium: 65 + Plastic: 300 + Uranium: 600 - type: latheRecipe id: MagazineBoxMagnumUranium @@ -591,8 +686,8 @@ category: Ammo completetime: 5 materials: - Plastic: 1250 - Uranium: 125 + Plastic: 240 + Uranium: 180 - type: latheRecipe id: MagazineBoxLightRifleUranium @@ -600,8 +695,8 @@ category: Ammo completetime: 5 materials: - Plastic: 1800 - Uranium: 180 + Plastic: 600 + Uranium: 600 - type: latheRecipe id: MagazineBoxRifleUranium @@ -609,8 +704,27 @@ category: Ammo completetime: 5 materials: - Plastic: 950 - Uranium: 95 + Plastic: 500 + Uranium: 500 + +- type: latheRecipe + id: BoxShotgunUranium + result: BoxShotgunUranium + category: Ammo + completetime: 5 + materials: + Plastic: 320 + Uranium: 240 + +- type: latheRecipe + id: WeaponDisabler + result: WeaponDisabler + category: Weapons + completetime: 6 + materials: + Steel: 300 + Glass: 200 + Plastic: 200 - type: latheRecipe id: WeaponDisablerSMG @@ -621,7 +735,7 @@ Steel: 1000 Glass: 500 Plastic: 500 - + - type: latheRecipe id: MagazineGrenadeEmpty result: MagazineGrenadeEmpty @@ -629,7 +743,7 @@ materials: Steel: 150 Plastic: 50 - + - type: latheRecipe id: GrenadeEMP result: GrenadeEMP @@ -638,16 +752,15 @@ Steel: 150 Plastic: 100 Glass: 20 - + - type: latheRecipe id: GrenadeBlast result: GrenadeBlast completetime: 3 materials: - Steel: 150 - Plastic: 100 - Gold: 50 - + Steel: 450 + Plastic: 300 + Gold: 150 - type: latheRecipe id: GrenadeFlash result: GrenadeFlash @@ -656,4 +769,106 @@ Steel: 150 Plastic: 100 Glass: 20 - \ No newline at end of file + +- type: latheRecipe + id: PortableRecharger + result: PortableRecharger + completetime: 15 + materials: + Steel: 2000 + Uranium: 2000 + Plastic: 1000 + Plasma: 500 + Glass: 500 + +- type: latheRecipe + id: ShellShotgun + result: ShellShotgun + category: Ammo + completetime: 2 + materials: + Steel: 20 + +- type: latheRecipe + id: ShellShotgunSlug + result: ShellShotgunSlug + completetime: 2 + materials: + Steel: 25 + +- type: latheRecipe + id: ShellShotgunFlare + result: ShellShotgunFlare + category: Ammo + completetime: 2 + materials: + Plastic: 20 + Steel: 5 + +- type: latheRecipe + id: CartridgeLightRifleIncendiary + result: CartridgeLightRifleIncendiary + category: Ammo + completetime: 2 + materials: + Plastic: 20 + +- type: latheRecipe + id: CartridgeMagnumIncendiary + result: CartridgeMagnumIncendiary + category: Ammo + completetime: 2 + materials: + Plastic: 20 + +- type: latheRecipe + id: CartridgePistolIncendiary + result: CartridgePistolIncendiary + category: Ammo + completetime: 2 + materials: + Plastic: 10 + +- type: latheRecipe + id: CartridgeRifleIncendiary + result: CartridgeRifleIncendiary + category: Ammo + completetime: 2 + materials: + Plastic: 15 + +- type: latheRecipe + id: CartridgePistolUranium + result: CartridgePistolUranium + category: Ammo + completetime: 2 + materials: + Plastic: 5 + Uranium: 10 + +- type: latheRecipe + id: CartridgeMagnumUranium + result: CartridgeMagnumUranium + category: Ammo + completetime: 2 + materials: + Plastic: 20 + Uranium: 10 + +- type: latheRecipe + id: CartridgeLightRifleUranium + result: CartridgeLightRifleUranium + category: Ammo + completetime: 2 + materials: + Plastic: 20 + Uranium: 10 + +- type: latheRecipe + id: CartridgeRifleUranium + result: CartridgeRifleUranium + category: Ammo + completetime: 2 + materials: + Plastic: 15 + Uranium: 10 diff --git a/Resources/Prototypes/Recipes/Lathes/sheet.yml b/Resources/Prototypes/Recipes/Lathes/sheet.yml index 053715a181..9f83c58e66 100644 --- a/Resources/Prototypes/Recipes/Lathes/sheet.yml +++ b/Resources/Prototypes/Recipes/Lathes/sheet.yml @@ -176,3 +176,37 @@ completetime: 1 materials: Wood: 50 + +- type: latheRecipe + id: CoreSilver + icon: + sprite: Objects/Misc/guardian_info.rsi + state: icon + result: CoreSilver + completetime: 10 + materials: + Bluespace: 500 + Silver: 1000 + Plastic: 1000 + +- type: latheRecipe + id: BluespaceCrystal + icon: + sprite: Objects/Materials/materials.rsi + state: bluespace + result: MaterialBluespace1 + applyMaterialDiscount: false + completetime: 4 + materials: + RawBluespace: 100 + +- type: latheRecipe + id: NormalityCrystal + icon: + sprite: Objects/Materials/materials.rsi + state: normality + result: MaterialNormality1 + applyMaterialDiscount: false + completetime: 4 + materials: + RawNormality: 100 diff --git a/Resources/Prototypes/Recipes/Lathes/tools.yml b/Resources/Prototypes/Recipes/Lathes/tools.yml index 03d8a8511e..852c062ed9 100644 --- a/Resources/Prototypes/Recipes/Lathes/tools.yml +++ b/Resources/Prototypes/Recipes/Lathes/tools.yml @@ -189,7 +189,7 @@ - type: latheRecipe id: HolofanProjector - result: HolofanProjectorEmpty + result: HolofanProjector # WD EDIT category: Tools completetime: 8 materials: @@ -238,7 +238,7 @@ - type: latheRecipe id: HoloprojectorField - result: HoloprojectorFieldEmpty + result: HoloprojectorField # WD EDIT category: Tools completetime: 3 materials: diff --git a/Resources/Prototypes/Recipes/Reactions/drinks.yml b/Resources/Prototypes/Recipes/Reactions/drinks.yml index c810ebb0ce..afb315c09d 100644 --- a/Resources/Prototypes/Recipes/Reactions/drinks.yml +++ b/Resources/Prototypes/Recipes/Reactions/drinks.yml @@ -86,6 +86,16 @@ products: B52: 3 +- type: reaction + id: BudgetInsulsDrink + reactants: + Tequila: + amount: 1 + VodkaRedBool: + amount: 2 + products: + BudgetInsulsDrink: 3 + - type: reaction id: BlueHawaiian reactants: @@ -516,6 +526,16 @@ products: IcedTea: 3 +- type: reaction + id: IrishBool + reactants: + EnergyDrink: + amount: 1 + IrishCarBomb: + amount: 1 + products: + IrishBool: 2 + - type: reaction id: IrishCarBomb reactants: @@ -794,6 +814,18 @@ products: RoyRogers: 3 +- type: reaction + id: Rubberneck + reactants: + EnergyDrink: + amount: 2 + Moonshine: + amount: 1 + Sugar: + amount: 1 + products: + Rubberneck: 4 + - type: reaction id: Sbiten reactants: @@ -857,7 +889,7 @@ LemonLime: amount: 1 products: - SnowWhite: 3 + SnowWhite: 2 - type: reaction id: SoyLatte @@ -943,6 +975,16 @@ products: VodkaMartini: 3 +- type: reaction + id: VodkaRedBool + reactants: + Vodka: + amount: 1 + EnergyDrink: + amount: 2 + products: + VodkaRedBool: 3 + - type: reaction id: VodkaTonic reactants: @@ -963,6 +1005,18 @@ products: WhiskeyCola: 3 +- type: reaction + id: WatermelonWakeup + reactants: + JuiceWatermelon: + amount: 1 + Whiskey: + amount: 1 + EnergyDrink: + amount: 1 + products: + WatermelonWakeup: 3 + - type: reaction id: WhiteRussian reactants: @@ -983,6 +1037,16 @@ products: WhiskeySoda: 3 +- type: reaction + id: XenoBasher + reactants: + ManlyDorf: + amount: 2 + EnergyDrink: + amount: 1 + products: + XenoBasher: 3 + - type: reaction id: HotRamen minTemp: 323.15 diff --git a/Resources/Prototypes/Recipes/Reactions/medicine.yml b/Resources/Prototypes/Recipes/Reactions/medicine.yml index a1ca3ea38e..2e9b1d4f85 100644 --- a/Resources/Prototypes/Recipes/Reactions/medicine.yml +++ b/Resources/Prototypes/Recipes/Reactions/medicine.yml @@ -298,6 +298,18 @@ products: Lipozine: 3 +- type: reaction + id: Mannitol + reactants: + Hydrogen: + amount: 1 + Water: + amount: 1 + Sugar: + amount: 1 + products: + Mannitol: 3 + - type: reaction id: MindbreakerToxin minTemp: 370 @@ -542,11 +554,21 @@ amount: 1 Silicon: amount: 1 - Benzene: - amount: 1 products: Insuzine: 3 - Ash: 1 + +- type: reaction + id: Opporozidone + minTemp: 400 #Maybe if a method of reducing reagent temp exists one day, this could be -50 + reactants: + Cognizine: + amount: 1 + Plasma: + amount: 2 + Doxarubixadone: + amount: 1 + products: + Opporozidone: 3 - type: reaction id: Necrosol @@ -574,3 +596,43 @@ amount: 2 products: Aloxadone: 4 + +- type: reaction + id: Psicodine + impact: Medium + reactants: + Mannitol: + amount: 2 + Impedrezene: + amount: 1 + Water: + amount: 2 + products: + Psicodine: 4 + +- type: reaction + id: Lipolicide + reactants: + Ephedrine: + amount: 1 + Diethylamine: + amount: 1 + Mercury: + amount: 1 + products: + Lipolicide: 3 + +- type: reaction + id: Happiness + reactants: + Laughter: + amount: 2 + Epinephrine: + amount: 1 + Ethanol: + amount: 1 + Plasma: + amount: 5 + catalyst: true + products: + Happiness: 4 diff --git a/Resources/Prototypes/Recipes/Reactions/pyrotechnic.yml b/Resources/Prototypes/Recipes/Reactions/pyrotechnic.yml index 318490931f..3591ce7008 100644 --- a/Resources/Prototypes/Recipes/Reactions/pyrotechnic.yml +++ b/Resources/Prototypes/Recipes/Reactions/pyrotechnic.yml @@ -31,6 +31,7 @@ - type: reaction id: ChlorineTrifluoride + minTemp: 370 priority: 20 reactants: Chlorine: @@ -38,7 +39,6 @@ Fluorine: amount: 3 effects: - # TODO solution temperature!! - !type:ExplosionReactionEffect explosionType: Default # 15 damage per intensity. maxIntensity: 200 diff --git a/Resources/Prototypes/Research/arsenal.yml b/Resources/Prototypes/Research/arsenal.yml index 7432d4225f..b519d0b351 100644 --- a/Resources/Prototypes/Research/arsenal.yml +++ b/Resources/Prototypes/Research/arsenal.yml @@ -24,11 +24,12 @@ tier: 1 cost: 10000 recipeUnlocks: - - ShellShotgunIncendiary - - CartridgePistolIncendiary - - CartridgeMagnumIncendiary - - CartridgeLightRifleIncendiary - - CartridgeRifleIncendiary + - BoxShotgunIncendiary + - MagazineRifleIncendiary + - MagazinePistolIncendiary + - MagazineLightRifleIncendiary + - SpeedLoaderMagnumIncendiary + - MagazineShotgunIncendiary - MagazineBoxPistolIncendiary - MagazineBoxMagnumIncendiary - MagazineBoxLightRifleIncendiary @@ -60,7 +61,9 @@ tier: 1 cost: 5000 recipeUnlocks: - - ShellShotgunBeanbag + - MagazineShotgunBeanbag + - ShellTranquilizer + - BoxBeanbag - CartridgePistolRubber - CartridgeMagnumRubber - CartridgeLightRifleRubber @@ -69,10 +72,9 @@ - MagazineBoxMagnumRubber - MagazineBoxLightRifleRubber - MagazineBoxRifleRubber - # DeltaV - .38 special rubber ammo - Adds .38 special rubber ammo to the research tree - CartridgeSpecialRubber - MagazineBoxSpecialRubber - # End of modified code + - WeaponDisabler - type: technology id: UraniumMunitions @@ -84,19 +86,17 @@ tier: 1 cost: 7500 recipeUnlocks: - - ShellShotgunUranium - - CartridgePistolUranium - - CartridgeMagnumUranium - - CartridgeLightRifleUranium - - CartridgeRifleUranium + - MagazineRifleUranium + - MagazinePistolUranium + - MagazineLightRifleUranium + - SpeedLoaderMagnumUranium - MagazineBoxPistolUranium - MagazineBoxMagnumUranium - MagazineBoxLightRifleUranium - MagazineBoxRifleUranium - # DeltaV - .38 special uranium ammo - Adds .38 special uranium ammo to the research tree + - BoxShotgunUranium - CartridgeSpecialUranium - MagazineBoxSpecialUranium - # End of modified code - type: technology id: AdvancedRiotControl @@ -173,6 +173,7 @@ - PowerCageMedium - MagazineGrenadeEmpty - GrenadeFlash + - GrenadeBlast - ShuttleGunSvalinnMachineGunCircuitboard - ShuttleGunPerforatorCircuitboard - ShuttleGunFriendshipCircuitboard @@ -192,6 +193,7 @@ cost: 15000 recipeUnlocks: - WeaponAdvancedLaser + - PortableRecharger - type: technology id: ExperimentalBatteryAmmo diff --git a/Resources/Prototypes/Research/civilianservices.yml b/Resources/Prototypes/Research/civilianservices.yml index 0a9f74b86d..26b519e1ef 100644 --- a/Resources/Prototypes/Research/civilianservices.yml +++ b/Resources/Prototypes/Research/civilianservices.yml @@ -191,8 +191,6 @@ - WeaponSprayNozzle - ClothingBackpackWaterTank -# Tier 3 - - type: technology id: BluespaceCargoTransport name: research-technology-bluespace-cargo-transport @@ -200,11 +198,13 @@ sprite: Structures/cargo_telepad.rsi state: display discipline: CivilianServices - tier: 3 + tier: 2 cost: 15000 recipeUnlocks: - CargoTelepadMachineCircuitboard +# Tier 3 + - type: technology id: QuantumFiberWeaving name: research-technology-quantum-fiber-weaving diff --git a/Resources/Prototypes/Research/experimental.yml b/Resources/Prototypes/Research/experimental.yml index 0dbcded546..60017fc98d 100644 --- a/Resources/Prototypes/Research/experimental.yml +++ b/Resources/Prototypes/Research/experimental.yml @@ -56,6 +56,7 @@ cost: 5000 recipeUnlocks: - TechDiskComputerCircuitboard + - ReverseEngineeringMachineCircuitboard #DeltaV - type: technology id: MagnetsTech @@ -83,17 +84,30 @@ # Tier 2 +- type: technology + id: AdvancedParts + name: research-technology-advanced-parts + icon: + sprite: Objects/Misc/stock_parts.rsi + state: advanced_matter_bin + discipline: Experimental + tier: 2 + cost: 10000 + recipeUnlocks: + - AdvancedCapacitorStockPart + - AdvancedMatterBinStockPart + - NanoManipulatorStockPart + - type: technology id: AbnormalArtifactManipulation name: research-technology-abnormal-artifact-manipulation icon: - sprite: Structures/Machines/traversal_distorter.rsi - state: display + sprite: Structures/Machines/artifact_crusher.rsi + state: icon discipline: Experimental tier: 2 cost: 5000 recipeUnlocks: - - TraversalDistorterMachineCircuitboard - ArtifactCrusherMachineCircuitboard - type: technology @@ -154,18 +168,32 @@ # Tier 3 -#- type: technology # DeltaV - LRP -# id: GravityManipulation -# name: research-technology-gravity-manipulation -# icon: -# sprite: Objects/Weapons/Guns/Launchers/tether_gun.rsi -# state: base -# discipline: Experimental -# tier: 3 -# cost: 10000 -# recipeUnlocks: -# - WeaponForceGun -# - WeaponTetherGun +- type: technology + id: SuperParts + name: research-technology-super-parts + icon: + sprite: Objects/Misc/stock_parts.rsi + state: super_matter_bin + discipline: Experimental + tier: 3 + cost: 15000 + recipeUnlocks: + - SuperCapacitorStockPart + - SuperMatterBinStockPart + - PicoManipulatorStockPart + +- type: technology + id: GravityManipulation + name: research-technology-gravity-manipulation + icon: + sprite: Objects/Weapons/Guns/Launchers/tether_gun.rsi + state: base + discipline: Experimental + tier: 3 + cost: 10000 + recipeUnlocks: + - WeaponForceGun + - WeaponTetherGun - type: technology id: QuantumLeaping diff --git a/Resources/Prototypes/Research/industrial.yml b/Resources/Prototypes/Research/industrial.yml index 84ca80531b..2e1e7f5b26 100644 --- a/Resources/Prototypes/Research/industrial.yml +++ b/Resources/Prototypes/Research/industrial.yml @@ -14,7 +14,8 @@ - BorgModuleMining - OreProcessorIndustrialMachineCircuitboard - OreBagOfHolding - - SalvageExpeditionsComputerCircuitboard # DeltaV + - ClothingMaskWeldingGas + - SalvageExpeditionsComputerCircuitboard - type: technology id: AdvancedPowercells @@ -53,6 +54,7 @@ recipeUnlocks: - AutolatheHyperConvectionMachineCircuitboard - ProtolatheHyperConvectionMachineCircuitboard + - CircuitImprinterHyperConvectionMachineCircuitboard - SheetifierMachineCircuitboard - type: technology @@ -105,18 +107,18 @@ - RipleyPeripheralsElectronics - MechEquipmentGrabber -#- type: technology -# id: Grappling -# name: research-technology-grappling -# icon: -# sprite: Objects/Weapons/Guns/Launchers/grappling_gun.rsi -# state: base -# discipline: Industrial -# tier: 1 -# cost: 5000 -# recipeUnlocks: -# - WeaponGrapplingGun -# - BorgModuleGrapplingGun +- type: technology + id: Grappling + name: research-technology-grappling + icon: + sprite: Objects/Weapons/Guns/Launchers/grappling_gun.rsi + state: base + discipline: Industrial + tier: 1 + cost: 5000 + recipeUnlocks: + - WeaponGrapplingGun + - BorgModuleGrapplingGun # Tier 2 @@ -167,7 +169,7 @@ id: AdvancedToolsTechnology name: research-technology-advanced-tools icon: - sprite: _White/Objects/Tools/welder_experimental.rsi #WWDP edit + sprite: Objects/Tools/welder_experimental.rsi state: icon discipline: Industrial tier: 2 diff --git a/Resources/Prototypes/Roles/Antags/nukeops.yml b/Resources/Prototypes/Roles/Antags/nukeops.yml index b02ebe6753..7b2d9893b6 100644 --- a/Resources/Prototypes/Roles/Antags/nukeops.yml +++ b/Resources/Prototypes/Roles/Antags/nukeops.yml @@ -19,10 +19,10 @@ objective: roles-antag-nuclear-operative-agent-objective requirements: - !type:CharacterOverallTimeRequirement - min: 108000 # DeltaV - 30 hours - - !type:CharacterDepartmentTimeRequirement # DeltaV - Medical dept time requirement + min: 108000 # 30 hours + - !type:CharacterDepartmentTimeRequirement department: Medical - min: 36000 # DeltaV - 10 hours + min: 36000 # 10 hours - type: antag id: NukeopsCommander diff --git a/Resources/Prototypes/Roles/Antags/terminator.yml b/Resources/Prototypes/Roles/Antags/terminator.yml deleted file mode 100644 index ef1f176b8d..0000000000 --- a/Resources/Prototypes/Roles/Antags/terminator.yml +++ /dev/null @@ -1,6 +0,0 @@ -- type: antag - id: Terminator - name: roles-antag-terminator-name - antagonist: true - setPreference: false - objective: roles-antag-terminator-objective diff --git a/Resources/Prototypes/Roles/Ghostroles/syndicate.yml b/Resources/Prototypes/Roles/Ghostroles/syndicate.yml new file mode 100644 index 0000000000..24c0d8b3e3 --- /dev/null +++ b/Resources/Prototypes/Roles/Ghostroles/syndicate.yml @@ -0,0 +1,27 @@ +- type: ghostRole + id: SyndicateKobold + name: ghost-role-information-syndicate-kobold-reinforcement-name + description: ghost-role-information-syndicate-kobold-reinforcement-description + rules: ghost-role-information-syndicate-kobold-reinforcement-rules + entityPrototype: MobKoboldSyndicateAgent + +- type: ghostRole + id: SyndicateKoboldNukeops + name: ghost-role-information-syndicate-kobold-reinforcement-name + description: ghost-role-information-syndicate-kobold-reinforcement-description + rules: ghost-role-information-syndicate-kobold-reinforcement-rules + entityPrototype: MobKoboldSyndicateAgentNukeops + +- type: ghostRole + id: SyndicateMonkey + 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: MobMonkeySyndicateAgent + +- type: ghostRole + id: SyndicateMonkeyNukeops + 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 diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml b/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml index c7395ff3e2..d4f8bdb067 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml @@ -5,8 +5,8 @@ playTimeTracker: JobChaplain requirements: - !type:CharacterDepartmentTimeRequirement - department: Epistemics # DeltaV - Epistemics Department replacing Science - min: 14400 #DeltaV 4 hours + department: Epistemics # Chaplain is now one of the station's "Crew-Aligned Wizards" + min: 14400 # 4 hours - !type:CharacterLogicOrRequirement requirements: - !type:CharacterSpeciesRequirement @@ -21,7 +21,7 @@ supervisors: job-supervisors-rd access: - Chapel - - Research # DeltaV - Move Chaplain into Epistemics + - Research - Maintenance special: - !type:AddComponentSpecial @@ -32,6 +32,7 @@ - type: InnatePsionicPowers powersToAdd: - TelepathyPower + - HealingWordPower - type: startingGear id: ChaplainGear @@ -40,7 +41,7 @@ back: ClothingBackpackChaplainFilled shoes: ClothingShoesColorBlack id: ChaplainPDA - ears: ClothingHeadsetScience # DeltaV - Move Chaplain into Epistemics + ears: ClothingHeadsetScience innerClothingSkirt: ClothingUniformJumpskirtChaplain satchel: ClothingBackpackSatchelChaplainFilled duffelbag: ClothingBackpackDuffelChaplainFilled diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml b/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml index 67afdf8aff..b8e37c2beb 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml @@ -26,7 +26,7 @@ shoes: ClothingShoesBootsLaceup id: LawyerPDA ears: ClothingHeadsetSecurity - # TODO add copy of space law + pocket1: BookSecurity inhand: - BriefcaseBrownFilled innerClothingSkirt: ClothingUniformJumpskirtLawyerBlack diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml b/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml index 8552073dcc..0e601228e0 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml @@ -42,8 +42,7 @@ outerClothing: ClothingOuterCoatRnd id: LibrarianPDA ears: ClothingHeadsetScience - pocket1: d10Dice - pocket2: HandLabeler + pocket1: HandLabeler innerClothingSkirt: ClothingUniformJumpskirtLibrarian satchel: ClothingBackpackSatchelLibrarianFilled duffelbag: ClothingBackpackDuffelLibrarianFilled diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml b/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml index 834a85e7a0..1a6ddbc0c4 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml @@ -21,12 +21,12 @@ id: AtmosphericTechnicianGear equipment: jumpsuit: ClothingUniformJumpsuitAtmos - back: ClothingBackpackAtmosphericsFilled + back: ClothingBackpackEngineeringFilled shoes: ClothingShoesColorWhite eyes: ClothingEyesGlassesMeson id: AtmosPDA belt: ClothingBeltUtilityEngineering ears: ClothingHeadsetEngineering innerClothingSkirt: ClothingUniformJumpskirtAtmos - satchel: ClothingBackpackSatchelAtmosphericsFilled - duffelbag: ClothingBackpackDuffelAtmosphericsFilled + satchel: ClothingBackpackSatchelEngineeringFilled + duffelbag: ClothingBackpackDuffelEngineeringFilled diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml b/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml index 668af72751..5e8b037d93 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml @@ -29,7 +29,7 @@ id: TechnicalAssistantPDA belt: ClothingBeltUtilityEngineering ears: ClothingHeadsetEngineering - pocket2: BookEngineersHandbook + pocket1: BookEngineersHandbook innerClothingSkirt: ClothingUniformJumpskirtColorYellow satchel: ClothingBackpackSatchelEngineeringFilled duffelbag: ClothingBackpackDuffelEngineeringFilled diff --git a/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml b/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml index 22d0a4d77f..f1e8fc9cf8 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml @@ -27,7 +27,7 @@ id: ERTLeaderPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltSecurityFilled - pocket1: WeaponPistolN1984Nonlethal + pocket1: WeaponPistolN1984NonLethal pocket2: FlashlightSeclite - type: startingGear @@ -44,7 +44,7 @@ id: ERTLeaderPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltSecurityFilled - pocket1: WeaponPistolN1984Nonlethal + pocket1: WeaponPistolN1984NonLethal pocket2: FlashlightSeclite - type: startingGear diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml index b2bcd8bcb4..7dd3e6823a 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml @@ -79,6 +79,15 @@ satchel: ClothingBackpackDuffelSyndicateOperative duffelbag: ClothingBackpackDuffelSyndicateOperative +# Syndicate Operative Outfit - Civilian +- type: startingGear + id: SyndicateOperativeGearCivilian + equipment: + jumpsuit: ClothingUniformJumpsuitSyndieFormal + back: ClothingBackpackDuffelSyndicate + shoes: ClothingShoesBootsCombat + gloves: ClothingHandsGlovesColorBlack + #Syndicate Operative Outfit - Basic - type: startingGear id: SyndicateOperativeGearBasic @@ -144,7 +153,7 @@ jumpsuit: ClothingUniformJumpsuitOperative back: ClothingBackpackDuffelSyndicateOperativeMedic mask: ClothingMaskGasSyndicate - eyes: ClothingEyesHudSyndicateMed # - Delta-V + eyes: ClothingEyesHudSyndicateAgent ears: ClothingHeadsetAltSyndicate gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitSyndieMedic diff --git a/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml b/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml index 003eab22d2..95def883fa 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml @@ -29,7 +29,7 @@ id: MedicalInternPDA ears: ClothingHeadsetMedical belt: ClothingBeltMedicalFilled - pocket2: BookMedicalReferenceBook + pocket1: BookMedicalReferenceBook # innerClothingSkirt: ClothingUniformJumpskirtColorWhite # DeltaV satchel: ClothingBackpackSatchelMedicalFilled duffelbag: ClothingBackpackDuffelMedicalFilled diff --git a/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml b/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml index 4d4038d7c0..065302b408 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml @@ -24,7 +24,7 @@ shoes: ClothingShoesColorWhite id: ResearchAssistantPDA ears: ClothingHeadsetScience - pocket2: BookScientistsGuidebook + pocket1: BookScientistsGuidebook innerClothingSkirt: ClothingUniformJumpskirtColorWhite satchel: ClothingBackpackSatchelScienceFilled duffelbag: ClothingBackpackDuffelScienceFilled diff --git a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml index e2d06f3af9..46d91ee00e 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml @@ -38,6 +38,7 @@ components: - type: BibleUser # Nyano - Lets them heal with bibles - type: Psionic # Nyano - They start with telepathic chat + powerSlots: 3 - !type:AddImplantSpecial implants: [ MindShieldImplant ] - !type:AddComponentSpecial diff --git a/Resources/Prototypes/Roles/Jobs/Security/detective.yml b/Resources/Prototypes/Roles/Jobs/Security/detective.yml index 861088b5e5..04dc55bc1f 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/detective.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/detective.yml @@ -27,7 +27,7 @@ id: DetectiveGear equipment: jumpsuit: ClothingUniformJumpsuitDetective - back: ClothingBackpackSecurityFilledDetective + back: ClothingBackpackSecurity shoes: ClothingShoesBootsCombatFilled eyes: ClothingEyesGlassesSunglasses head: ClothingHeadHatFedoraBrown @@ -36,5 +36,5 @@ ears: ClothingHeadsetSecurity belt: ClothingBeltHolsterFilled innerClothingSkirt: ClothingUniformJumpskirtDetective - satchel: ClothingBackpackSatchelSecurityFilledDetective - duffelbag: ClothingBackpackDuffelSecurityFilledDetective + satchel: ClothingBackpackSatchelSecurity + duffelbag: ClothingBackpackDuffelSecurity diff --git a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml index f157853455..a815ed32e6 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml @@ -52,7 +52,6 @@ gloves: ClothingHandsGlovesCombat ears: ClothingHeadsetAltSecurity belt: ClothingBeltSecurityFilled - pocket1: WeaponPistolMk58Nonlethal innerClothingSkirt: ClothingUniformJumpskirtHoS satchel: ClothingBackpackSatchelHOSFilled duffelbag: ClothingBackpackDuffelHOSFilled diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml b/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml index 0b28af7850..575509c59c 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml @@ -29,14 +29,13 @@ id: SecurityCadetGear equipment: jumpsuit: ClothingUniformJumpsuitColorRed - back: ClothingBackpackSecurityFilled + back: ClothingBackpackSecurity shoes: ClothingShoesBootsCombatFilled outerClothing: ClothingOuterArmorDuraVest # DeltaV - ClothingOuterArmorBasic replaced in favour of stab vest. Sucks to suck, cadets id: SecurityCadetPDA ears: ClothingHeadsetSecurity belt: ClothingBeltSecurityFilled -# pocket1: WeaponPistolMk58Nonlethal # DeltaV - Security Cadet doesn't spawn with a gun - pocket2: BookSecurity + pocket1: BookSecurity innerClothingSkirt: ClothingUniformJumpskirtColorRed - satchel: ClothingBackpackSatchelSecurityFilled - duffelbag: ClothingBackpackDuffelSecurityFilled + satchel: ClothingBackpackSatchelSecurity + duffelbag: ClothingBackpackDuffelSecurity diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml index b81cef667e..01f14f8099 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml @@ -26,7 +26,7 @@ id: SecurityOfficerGear equipment: jumpsuit: ClothingUniformJumpsuitSec - back: ClothingBackpackSecurityFilled + back: ClothingBackpackSecurity shoes: ClothingShoesBootsCombatFilled eyes: ClothingEyesGlassesSunglasses head: ClothingHeadHelmetBasic @@ -34,7 +34,6 @@ id: SecurityPDA ears: ClothingHeadsetSecurity belt: ClothingBeltSecurityFilled - pocket1: WeaponPistolMk58Nonlethal innerClothingSkirt: ClothingUniformJumpskirtSec - satchel: ClothingBackpackSatchelSecurityFilled - duffelbag: ClothingBackpackDuffelSecurityFilled + satchel: ClothingBackpackSatchelSecurity + duffelbag: ClothingBackpackDuffelSecurity diff --git a/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml b/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml index 2623adf1fd..d395e0f5cd 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml @@ -35,7 +35,7 @@ id: SeniorOfficerGear equipment: jumpsuit: ClothingUniformJumpsuitSeniorOfficer - back: ClothingBackpackSecurityFilled + back: ClothingBackpackSecurity shoes: ClothingShoesBootsCombatFilled eyes: ClothingEyesGlassesSecurity head: ClothingHeadHatBeretSecurity @@ -43,7 +43,6 @@ id: SeniorOfficerPDA ears: ClothingHeadsetSecurity belt: ClothingBeltSecurityFilled - pocket1: WeaponPistolMk58Nonlethal innerClothingSkirt: ClothingUniformJumpskirtSeniorOfficer - satchel: ClothingBackpackSatchelSecurityFilled - duffelbag: ClothingBackpackDuffelSecurityFilled + satchel: ClothingBackpackSatchelSecurity + duffelbag: ClothingBackpackDuffelSecurity diff --git a/Resources/Prototypes/Roles/Jobs/Security/warden.yml b/Resources/Prototypes/Roles/Jobs/Security/warden.yml index 82101373db..5f68518b08 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/warden.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/warden.yml @@ -33,14 +33,13 @@ equipment: head: ClothingHeadHatWarden jumpsuit: ClothingUniformJumpsuitWarden - back: ClothingBackpackSecurityFilled + back: ClothingBackpackSecurity shoes: ClothingShoesBootsCombatFilled eyes: ClothingEyesGlassesSunglasses outerClothing: ClothingOuterCoatWarden id: WardenPDA ears: ClothingHeadsetSecurity belt: ClothingBeltSecurityFilled - pocket1: WeaponPistolMk58Nonlethal innerClothingSkirt: ClothingUniformJumpskirtWarden - satchel: ClothingBackpackSatchelSecurityFilled - duffelbag: ClothingBackpackDuffelSecurityFilled + satchel: ClothingBackpackSatchelSecurity + duffelbag: ClothingBackpackDuffelSecurity diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml index 33def38bb0..843a38fe96 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml @@ -33,6 +33,7 @@ gloves: ClothingHandsGlovesBoxingRed shoes: ClothingShoesColorRed belt: ClothingBeltChampion + pocket2: CandyBucket innerClothingSkirt: UniformShortsRedWithTop satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml index a2974c6eb7..7e89123b40 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml @@ -27,6 +27,7 @@ shoes: ClothingShoesLeather id: PsychologistPDA ears: ClothingHeadsetMedical + pocket2: CandyBucket innerClothingSkirt: ClothingUniformJumpsuitPsychologist satchel: ClothingBackpackSatchelPsychologistFilled #DeltaV - stamp included duffelbag: ClothingBackpackDuffelPsychologistFilled #DeltaV - stamp included diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml index ad810e970e..395886296a 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml @@ -23,6 +23,7 @@ shoes: ClothingShoesColorWhite id: ReporterPDA ears: ClothingHeadsetService + pocket2: CandyBucket innerClothingSkirt: ClothingUniformJumpsuitJournalist satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml index 1686e3290f..68bf93c810 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml @@ -23,6 +23,7 @@ shoes: ClothingShoesColorWhite id: ZookeeperPDA ears: ClothingHeadsetService + pocket2: CandyBucket innerClothingSkirt: ClothingUniformJumpsuitSafari satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled diff --git a/Resources/Prototypes/Shaders/displacement.yml b/Resources/Prototypes/Shaders/displacement.yml new file mode 100644 index 0000000000..5c90738008 --- /dev/null +++ b/Resources/Prototypes/Shaders/displacement.yml @@ -0,0 +1,10 @@ +- type: shader + id: DisplacedStencilDraw + kind: source + path: "/Textures/Shaders/displacement.swsl" + stencil: + ref: 1 + op: Keep + func: NotEqual + params: + displacementSize: 127 diff --git a/Resources/Prototypes/Shaders/shaders.yml b/Resources/Prototypes/Shaders/shaders.yml index b495490201..3f0cb5ae1f 100644 --- a/Resources/Prototypes/Shaders/shaders.yml +++ b/Resources/Prototypes/Shaders/shaders.yml @@ -104,3 +104,10 @@ id: SaturationScale kind: source path: "/Textures/Shaders/saturationscale.swsl" + + # Flight shaders + +- type: shader + id: Flap + kind: source + path: "/Textures/Shaders/flap.swsl" \ No newline at end of file diff --git a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml new file mode 100644 index 0000000000..5819a934bf --- /dev/null +++ b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml @@ -0,0 +1,29 @@ +- type: preloadedGrid + id: ShuttleStriker + path: /Maps/Shuttles/ShuttleEvent/striker.yml + copies: 2 + +- type: preloadedGrid + id: ShuttleCargoLost + path: /Maps/Shuttles/ShuttleEvent/lost_cargo.yml + copies: 2 + +- type: preloadedGrid + id: TravelingCuisine + path: /Maps/Shuttles/ShuttleEvent/traveling_china_cuisine.yml + copies: 2 + +- type: preloadedGrid + id: DisasterEvacPod + path: /Maps/Shuttles/ShuttleEvent/disaster_evacpod.yml + copies: 3 + +- type: preloadedGrid + id: Honki + path: /Maps/Shuttles/ShuttleEvent/honki.yml + copies: 1 + +- type: preloadedGrid + id: SyndieEvacPod + path: /Maps/Shuttles/ShuttleEvent/syndie_evacpod.yml + copies: 2 diff --git a/Resources/Prototypes/SimpleStation14/Traits/disabilities.yml b/Resources/Prototypes/SimpleStation14/Traits/disabilities.yml deleted file mode 100644 index b7aa00353c..0000000000 --- a/Resources/Prototypes/SimpleStation14/Traits/disabilities.yml +++ /dev/null @@ -1,12 +0,0 @@ -- type: trait - id: Nearsighted - category: Visual - points: 1 - requirements: - - !type:CharacterJobRequirement - inverted: true - jobs: - - Borg - - MedicalBorg - components: - - type: Nearsighted diff --git a/Resources/Prototypes/SimpleStation14/tags.yml b/Resources/Prototypes/SimpleStation14/tags.yml deleted file mode 100644 index 3b885a5801..0000000000 --- a/Resources/Prototypes/SimpleStation14/tags.yml +++ /dev/null @@ -1,2 +0,0 @@ -- type: Tag - id: GlassesNearsight diff --git a/Resources/Prototypes/SoundCollections/expeditions.yml b/Resources/Prototypes/SoundCollections/expeditions.yml new file mode 100644 index 0000000000..526a16f3c2 --- /dev/null +++ b/Resources/Prototypes/SoundCollections/expeditions.yml @@ -0,0 +1,5 @@ +- type: soundCollection + id: ExpeditionEnd + files: + - /Audio/Expedition/tension_session.ogg + - /Audio/Expedition/deadline.ogg diff --git a/Resources/Prototypes/SoundCollections/flight.yml b/Resources/Prototypes/SoundCollections/flight.yml new file mode 100644 index 0000000000..cca2cfb014 --- /dev/null +++ b/Resources/Prototypes/SoundCollections/flight.yml @@ -0,0 +1,6 @@ +- type: soundCollection + id: WingFlaps + files: + - /Audio/Effects/Flight/wingflap1.ogg + - /Audio/Effects/Flight/wingflap2.ogg + - /Audio/Effects/Flight/wingflap3.ogg diff --git a/Resources/Prototypes/SoundCollections/footsteps.yml b/Resources/Prototypes/SoundCollections/footsteps.yml index bd51e6b445..e179584f6f 100644 --- a/Resources/Prototypes/SoundCollections/footsteps.yml +++ b/Resources/Prototypes/SoundCollections/footsteps.yml @@ -201,3 +201,13 @@ - /Audio/Effects/Footsteps/spurs1.ogg - /Audio/Effects/Footsteps/spurs2.ogg - /Audio/Effects/Footsteps/spurs3.ogg + +- type: soundCollection + id: FootstepBorg + files: + - /Audio/Effects/Footsteps/borgwalk1.ogg + +- type: soundCollection + id: FootstepHoverBorg + files: + - /Audio/Effects/Footsteps/borgwalk2.ogg diff --git a/Resources/Prototypes/SoundCollections/fox.yml b/Resources/Prototypes/SoundCollections/fox.yml new file mode 100644 index 0000000000..912ae24e9a --- /dev/null +++ b/Resources/Prototypes/SoundCollections/fox.yml @@ -0,0 +1,18 @@ +- type: soundCollection + id: Fox + files: + - /Audio/Animals/fox_squeak.ogg + - /Audio/Animals/fox1.ogg + - /Audio/Animals/fox2.ogg + - /Audio/Animals/fox3.ogg + - /Audio/Animals/fox4.ogg + - /Audio/Animals/fox5.ogg + - /Audio/Animals/fox6.ogg + - /Audio/Animals/fox7.ogg + - /Audio/Animals/fox8.ogg + - /Audio/Animals/fox9.ogg + - /Audio/Animals/fox10.ogg + - /Audio/Animals/fox11.ogg + - /Audio/Animals/fox12.ogg + - /Audio/Animals/fox13.ogg + - /Audio/Animals/fox14.ogg diff --git a/Resources/Prototypes/Species/human.yml b/Resources/Prototypes/Species/human.yml index a4008d318a..0d40cbfb03 100644 --- a/Resources/Prototypes/Species/human.yml +++ b/Resources/Prototypes/Species/human.yml @@ -47,11 +47,11 @@ Snout: points: 1 required: false - Tail: # the cat tail joke - points: 0 + Tail: + points: 1 required: false - HeadTop: # the cat ear joke - points: 0 + HeadTop: + points: 1 required: false Chest: points: 1 diff --git a/Resources/Prototypes/Species/ipc.yml b/Resources/Prototypes/Species/ipc.yml index 6d1a648523..c7675f781b 100644 --- a/Resources/Prototypes/Species/ipc.yml +++ b/Resources/Prototypes/Species/ipc.yml @@ -154,7 +154,7 @@ - type: marking id: MobIPCLLegDefault bodyPart: LLeg - markingCategory: RightLeg + markingCategory: LeftLeg speciesRestriction: [IPC] sprites: - sprite: Mobs/Species/IPC/parts.rsi @@ -168,7 +168,7 @@ - type: marking id: MobIPCLArmDefault bodyPart: LArm - markingCategory: RightArm + markingCategory: LeftArm speciesRestriction: [IPC] sprites: - sprite: Mobs/Species/IPC/parts.rsi @@ -182,7 +182,7 @@ - type: marking id: MobIPCLHandDefault bodyPart: LHand - markingCategory: RightArm + markingCategory: LeftHand speciesRestriction: [IPC] sprites: - sprite: Mobs/Species/IPC/parts.rsi @@ -196,7 +196,7 @@ - type: marking id: MobIPCLFootDefault bodyPart: LFoot - markingCategory: RightLeg + markingCategory: LeftFoot speciesRestriction: [IPC] sprites: - sprite: Mobs/Species/IPC/parts.rsi @@ -238,7 +238,7 @@ - type: marking id: MobIPCRHandDefault bodyPart: RHand - markingCategory: RightArm + markingCategory: RightHand speciesRestriction: [IPC] sprites: - sprite: Mobs/Species/IPC/parts.rsi @@ -252,7 +252,7 @@ - type: marking id: MobIPCRFootDefault bodyPart: RFoot - markingCategory: RightLeg + markingCategory: RightFoot speciesRestriction: [IPC] sprites: - sprite: Mobs/Species/IPC/parts.rsi diff --git a/Resources/Prototypes/Species/terminator.yml b/Resources/Prototypes/Species/terminator.yml deleted file mode 100644 index cfc5a7107c..0000000000 --- a/Resources/Prototypes/Species/terminator.yml +++ /dev/null @@ -1,110 +0,0 @@ -- type: species - id: Terminator - name: Terminator - roundStart: false - prototype: MobTerminatorEndoskeleton - sprites: MobTerminatorSprites - defaultSkinTone: "#fff9e2" - markingLimits: MobHumanMarkingLimits - maleFirstNames: skeletonNamesFirst - femaleFirstNames: skeletonNamesFirst - dollPrototype: MobSkeletonPersonDummy - skinColoration: TintedHues - -- type: speciesBaseSprites - id: MobTerminatorSprites - sprites: - Head: MobTerminatorHead - Chest: MobTerminatorTorso - LArm: MobTerminatorLArm - RArm: MobTerminatorRArm - LHand: MobTerminatorLHand - RHand: MobTerminatorRHand - LLeg: MobTerminatorLLeg - RLeg: MobTerminatorRLeg - LFoot: MobTerminatorLFoot - RFoot: MobTerminatorRFoot - -- type: humanoidBaseSprite - id: MobTerminatorHead - baseSprite: - sprite: Mobs/Species/Terminator/parts.rsi - state: head_m - -- type: humanoidBaseSprite - id: MobTerminatorHeadMale - baseSprite: - sprite: Mobs/Species/Terminator/parts.rsi - state: head_m - -- type: humanoidBaseSprite - id: MobTerminatorHeadFemale - baseSprite: - sprite: Mobs/Species/Terminator/parts.rsi - state: head_f - -- type: humanoidBaseSprite - id: MobTerminatorTorso - baseSprite: - sprite: Mobs/Species/Terminator/parts.rsi - state: torso_m - -- type: humanoidBaseSprite - id: MobTerminatorTorsoMale - baseSprite: - sprite: Mobs/Species/Terminator/parts.rsi - state: torso_m - -- type: humanoidBaseSprite - id: MobTerminatorTorsoFemale - baseSprite: - sprite: Mobs/Species/Terminator/parts.rsi - state: torso_f - -- type: humanoidBaseSprite - id: MobTerminatorLLeg - baseSprite: - sprite: Mobs/Species/Terminator/parts.rsi - state: l_leg - -- type: humanoidBaseSprite - id: MobTerminatorLArm - baseSprite: - sprite: Mobs/Species/Terminator/parts.rsi - state: l_arm - -- type: humanoidBaseSprite - id: MobTerminatorLHand - baseSprite: - sprite: Mobs/Species/Terminator/parts.rsi - state: l_hand - -- type: humanoidBaseSprite - id: MobTerminatorLFoot - baseSprite: - sprite: Mobs/Species/Terminator/parts.rsi - state: l_foot - -- type: humanoidBaseSprite - id: MobTerminatorRLeg - baseSprite: - sprite: Mobs/Species/Terminator/parts.rsi - state: r_leg - -- type: humanoidBaseSprite - id: MobTerminatorRArm - baseSprite: - sprite: Mobs/Species/Terminator/parts.rsi - state: r_arm - -- type: humanoidBaseSprite - id: MobTerminatorRHand - baseSprite: - sprite: Mobs/Species/Terminator/parts.rsi - state: r_hand - -- type: humanoidBaseSprite - id: MobTerminatorRFoot - baseSprite: - sprite: Mobs/Species/Terminator/parts.rsi - state: r_foot diff --git a/Resources/Prototypes/Species/vox.yml b/Resources/Prototypes/Species/vox.yml index 5d9724826d..b6cba51322 100644 --- a/Resources/Prototypes/Species/vox.yml +++ b/Resources/Prototypes/Species/vox.yml @@ -6,18 +6,19 @@ sprites: MobVoxSprites markingLimits: MobVoxMarkingLimits dollPrototype: MobVoxDummy - skinColoration: Hues + skinColoration: VoxFeathers + defaultSkinTone: "#6c741d" maleFirstNames: names_vox femaleFirstNames: names_vox naming: First sexes: - - Unsexed - + - Unsexed - type: speciesBaseSprites id: MobVoxSprites sprites: Head: MobVoxHead + Snout: MobHumanoidAnyMarking Hair: MobHumanoidAnyMarking FacialHair: MobHumanoidAnyMarking Chest: MobVoxTorso @@ -30,6 +31,7 @@ RLeg: MobVoxRLeg LFoot: MobVoxLFoot RFoot: MobVoxRFoot + Tail: MobHumanoidAnyMarking - type: markingPoints id: MobVoxMarkingLimits @@ -41,75 +43,94 @@ FacialHair: points: 1 required: false - Chest: + Head: points: 1 - required: false - RightLeg: - points: 2 - required: false - RightFoot: - points: 2 - required: false - LeftLeg: - points: 2 - required: false - LeftFoot: - points: 2 - required: false + required: true + Snout: + points: 1 + required: true + defaultMarkings: [ VoxBeak ] RightArm: - points: 2 - required: false + points: 1 + required: true + defaultMarkings: [ VoxRArmScales ] RightHand: - points: 2 - required: false + points: 1 + required: true + defaultMarkings: [ VoxRHandScales ] LeftArm: - points: 2 - required: false + points: 1 + required: true + defaultMarkings: [ VoxLArmScales ] LeftHand: - points: 2 + points: 1 + required: true + defaultMarkings: [ VoxLHandScales ] + RightLeg: + points: 1 + required: true + defaultMarkings: [ VoxRLegScales ] + LeftLeg: + points: 1 + required: true + defaultMarkings: [ VoxLLegScales ] + RightFoot: + points: 1 + required: true + defaultMarkings: [ VoxRFootScales ] + LeftFoot: + points: 1 + required: true + defaultMarkings: [ VoxLFootScales ] + Chest: + points: 1 required: false + Tail: + points: 1 + required: true + defaultMarkings: [ VoxTail ] - type: humanoidBaseSprite id: MobVoxEyes baseSprite: - sprite: Mobs/Customization/eyes.rsi - state: vox_eyes_s + sprite: Mobs/Species/Vox/parts.rsi + state: eyes - type: humanoidBaseSprite id: MobVoxHead baseSprite: sprite: Mobs/Species/Vox/parts.rsi - state: head_m + state: head - type: humanoidBaseSprite id: MobVoxHeadMale baseSprite: sprite: Mobs/Species/Vox/parts.rsi - state: head_m + state: head - type: humanoidBaseSprite id: MobVoxHeadFemale baseSprite: sprite: Mobs/Species/Vox/parts.rsi - state: head_f + state: head - type: humanoidBaseSprite id: MobVoxTorso baseSprite: sprite: Mobs/Species/Vox/parts.rsi - state: torso_m + state: torso - type: humanoidBaseSprite id: MobVoxTorsoMale baseSprite: sprite: Mobs/Species/Vox/parts.rsi - state: torso_m + state: torso - type: humanoidBaseSprite id: MobVoxTorsoFemale baseSprite: sprite: Mobs/Species/Vox/parts.rsi - state: torso_f + state: torso - type: humanoidBaseSprite id: MobVoxLLeg @@ -158,5 +179,3 @@ baseSprite: sprite: Mobs/Species/Vox/parts.rsi state: r_foot - -# diff --git a/Resources/Prototypes/Stacks/Materials/crystals.yml b/Resources/Prototypes/Stacks/Materials/crystals.yml index 274f9c10ea..e4c9e48718 100644 --- a/Resources/Prototypes/Stacks/Materials/crystals.yml +++ b/Resources/Prototypes/Stacks/Materials/crystals.yml @@ -4,3 +4,19 @@ icon: Objects/Specific/Syndicate/telecrystal.rsi spawn: Telecrystal1 itemSize: 1 + +- type: stack + id: Bluespace + name: bluespace + icon: { sprite: Objects/Materials/materials.rsi, state: bluespace } + spawn: MaterialBluespace1 + maxCount: 5 + itemSize: 1 + +- type: stack + id: Normality + name: normality + icon: { sprite: Objects/Materials/materials.rsi, state: normality } + spawn: MaterialNormality1 + maxCount: 5 + itemSize: 1 diff --git a/Resources/Prototypes/Stacks/Materials/materials.yml b/Resources/Prototypes/Stacks/Materials/materials.yml index 00153ef23c..0a05a89964 100644 --- a/Resources/Prototypes/Stacks/Materials/materials.yml +++ b/Resources/Prototypes/Stacks/Materials/materials.yml @@ -54,6 +54,14 @@ maxCount: 30 itemSize: 1 +- type: stack + id: Pyrotton + name: pyrotton + icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: pyrotton } + spawn: MaterialPyrotton1 + maxCount: 30 + itemSize: 1 + - type: stack id: Bananium name: bananium diff --git a/Resources/Prototypes/Stacks/Materials/ore.yml b/Resources/Prototypes/Stacks/Materials/ore.yml index 2a95393c27..cf7fcb0483 100644 --- a/Resources/Prototypes/Stacks/Materials/ore.yml +++ b/Resources/Prototypes/Stacks/Materials/ore.yml @@ -46,7 +46,6 @@ maxCount: 30 itemSize: 2 - - type: stack id: BananiumOre name: bananium ore @@ -70,3 +69,19 @@ spawn: Salt1 maxCount: 30 itemSize: 2 + +- type: stack + id: BluespaceOre + name: raw bluespace + icon: { sprite: Objects/Materials/ore.rsi, state: bluespace } + spawn: BluespaceOre1 + maxCount: 30 + itemSize: 2 + +- type: stack + id: NormalityOre + name: raw normality + icon: { sprite: Objects/Materials/ore.rsi, state: normality } + spawn: NormalityOre1 + maxCount: 30 + itemSize: 2 diff --git a/Resources/Prototypes/Stacks/consumable_stacks.yml b/Resources/Prototypes/Stacks/consumable_stacks.yml index e9f0cab7e4..2936772f08 100644 --- a/Resources/Prototypes/Stacks/consumable_stacks.yml +++ b/Resources/Prototypes/Stacks/consumable_stacks.yml @@ -51,6 +51,14 @@ maxCount: itemSize: 1 +- type: stack + id: GroundCannabisRainbow + name: ground rainbow cannabis + icon: { sprite: /Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi, state: powderpile_rainbow } + spawn: GroundCannabisRainbow + maxCount: + itemSize: 1 + - type: stack id: LeavesTobaccoDried name: dried tobacco leaves @@ -66,3 +74,11 @@ spawn: LeavesCannabisDried maxCount: 5 itemSize: 5 + +- type: stack + id: LeavesCannabisRainbowDried + name: dried rainbow cannabis leaves + icon: { sprite: /Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi, state: dried } + spawn: LeavesCannabisRainbowDried + maxCount: 5 + itemSize: 5 diff --git a/Resources/Prototypes/StatusEffects/health.yml b/Resources/Prototypes/StatusEffects/health.yml index 562dbb336d..073b03a2ae 100644 --- a/Resources/Prototypes/StatusEffects/health.yml +++ b/Resources/Prototypes/StatusEffects/health.yml @@ -1,8 +1,8 @@ - type: statusIcon id: HealthIcon abstract: true - priority: 1 - locationPreference: Right + priority: 3 + locationPreference: Left isShaded: true - type: statusIcon diff --git a/Resources/Prototypes/Store/categories.yml b/Resources/Prototypes/Store/categories.yml index 11f8d509af..1b377902e4 100644 --- a/Resources/Prototypes/Store/categories.yml +++ b/Resources/Prototypes/Store/categories.yml @@ -7,6 +7,32 @@ id: Debug2 name: store-category-debug2 +#WIZARD +- type: storeCategory + id: SpellbookOffensive + name: store-caregory-spellbook-offensive + priority: 0 + +- type: storeCategory + id: SpellbookDefensive + name: store-caregory-spellbook-defensive + priority: 1 + +- type: storeCategory + id: SpellbookUtility + name: store-caregory-spellbook-utility + priority: 2 + +- type: storeCategory + id: SpellbookEquipment + name: store-caregory-spellbook-equipment + priority: 3 + +- type: storeCategory + id: SpellbookEvents + name: store-caregory-spellbook-events + priority: 4 + #uplink categoires - type: storeCategory id: UplinkWeapons @@ -68,6 +94,16 @@ name: store-category-deception priority: 10 +- type: storeCategory + id: UplinkChemicals + name: store-category-chemicals + priority: 11 + +- type: storeCategory + id: UplinkDisruption + name: store-category-disruption + priority: 12 + #revenant - type: storeCategory id: RevenantAbilities diff --git a/Resources/Prototypes/Store/currency.yml b/Resources/Prototypes/Store/currency.yml index 91039a75e6..b1cff06be2 100644 --- a/Resources/Prototypes/Store/currency.yml +++ b/Resources/Prototypes/Store/currency.yml @@ -1,7 +1,7 @@ - type: currency id: Telecrystal displayName: store-currency-display-telecrystal - cash: + cash: 1: Telecrystal1 canWithdraw: true @@ -10,7 +10,12 @@ displayName: store-currency-display-stolen-essence canWithdraw: false +- type: currency + id: WizCoin + displayName: store-currency-display-wizcoin + canWithdraw: false + #debug - type: currency id: DebugDollar - displayName: store-currency-display-debugdollar \ No newline at end of file + displayName: store-currency-display-debugdollar diff --git a/Resources/Prototypes/Store/presets.yml b/Resources/Prototypes/Store/presets.yml index 43b457a393..47768b68ec 100644 --- a/Resources/Prototypes/Store/presets.yml +++ b/Resources/Prototypes/Store/presets.yml @@ -13,13 +13,25 @@ - UplinkJob - UplinkArmor - UplinkPointless - - UplinkSales # WD EDIT + - UplinkSales currencyWhitelist: - Telecrystal - sales: # WD EDIT + sales: enabled: true minMultiplier: 0.2 maxMultiplier: 0.8 minItems: 3 maxItems: 8 salesCategory: UplinkSales + +- type: storePreset + id: StorePresetSpellbook + storeName: Spellbook + categories: + - SpellbookOffensive #Fireball, Rod Form + - SpellbookDefensive #Magic Missile, Wall of Force + - SpellbookUtility #Body Swap, Lich, Teleport, Knock, Polymorph + - SpellbookEquipment #Battlemage Robes, Staff of Locker + - SpellbookEvents #Summon Weapons, Summon Ghosts + currencyWhitelist: + - WizCoin diff --git a/Resources/Prototypes/Tiles/floors.yml b/Resources/Prototypes/Tiles/floors.yml index 94c4ec2e2f..5db5c96b3e 100644 --- a/Resources/Prototypes/Tiles/floors.yml +++ b/Resources/Prototypes/Tiles/floors.yml @@ -1,7 +1,7 @@ - type: tile id: FloorSteel name: tiles-steel-floor - sprite: /Textures/_White/Tiles/steel.png + sprite: /Textures/Tiles/steel.png variants: 4 placementVariants: - 1.0 @@ -20,7 +20,7 @@ - type: tile id: FloorSteelCheckerLight name: tiles-steel-floor-checker-light - sprite: /Textures/_White/Tiles/cafeteria.png + sprite: /Textures/Tiles/cafeteria.png variants: 4 placementVariants: - 1.0 @@ -39,7 +39,7 @@ - type: tile id: FloorSteelCheckerDark name: tiles-steel-floor-checker-dark - sprite: /Textures/_White/Tiles/checker_dark.png + sprite: /Textures/Tiles/checker_dark.png variants: 4 placementVariants: - 1.0 @@ -58,7 +58,7 @@ - type: tile id: FloorSteelMini name: tiles-steel-floor-mini - sprite: /Textures/_White/Tiles/steel_mini.png + sprite: /Textures/Tiles/steel_mini.png variants: 4 placementVariants: - 1.0 @@ -77,7 +77,7 @@ - type: tile id: FloorSteelPavement name: tiles-steel-floor-pavement - sprite: /Textures/_White/Tiles/steel_pavement.png + sprite: /Textures/Tiles/steel_pavement.png variants: 4 placementVariants: - 1.0 @@ -96,7 +96,7 @@ - type: tile id: FloorSteelDiagonal name: tiles-steel-floor-diagonal - sprite: /Textures/_White/Tiles/steel_diagonal.png + sprite: /Textures/Tiles/steel_diagonal.png variants: 4 placementVariants: - 1.0 @@ -115,7 +115,7 @@ - type: tile id: FloorSteelOffset name: tiles-steel-floor-offset - sprite: /Textures/_White/Tiles/steel_offset.png + sprite: /Textures/Tiles/steel_offset.png variants: 4 placementVariants: - 1.0 @@ -134,7 +134,7 @@ - type: tile id: FloorSteelMono name: tiles-steel-floor-mono - sprite: /Textures/_White/Tiles/steel_mono.png + sprite: /Textures/Tiles/steel_mono.png variants: 4 placementVariants: - 1.0 @@ -153,7 +153,7 @@ - type: tile id: FloorSteelPavementVertical name: tiles-steel-floor-pavement-vertical - sprite: /Textures/_White/Tiles/steel_pavement_vertical.png + sprite: /Textures/Tiles/steel_pavement_vertical.png variants: 4 placementVariants: - 1.0 @@ -172,7 +172,7 @@ - type: tile id: FloorSteelHerringbone name: tiles-steel-floor-herringbone - sprite: /Textures/_White/Tiles/steel_herringbone.png + sprite: /Textures/Tiles/steel_herringbone.png variants: 4 placementVariants: - 1.0 @@ -191,7 +191,7 @@ - type: tile id: FloorSteelDiagonalMini name: tiles-steel-floor-diagonal-mini - sprite: /Textures/_White/Tiles/steel_diagonal_mini.png + sprite: /Textures/Tiles/steel_diagonal_mini.png variants: 4 placementVariants: - 1.0 @@ -236,7 +236,7 @@ - type: tile id: FloorPlastic name: tiles-plastic-floor - sprite: /Textures/_White/Tiles/plastic.png + sprite: /Textures/Tiles/plastic.png variants: 4 placementVariants: - 1.0 @@ -255,7 +255,7 @@ - type: tile id: FloorWood name: tiles-wood - sprite: /Textures/_White/Tiles/wood.png + sprite: /Textures/Tiles/wood.png variants: 4 placementVariants: - 1.0 @@ -276,7 +276,7 @@ - type: tile id: FloorWhite name: tiles-white-floor - sprite: /Textures/_White/Tiles/white.png + sprite: /Textures/Tiles/white.png variants: 4 placementVariants: - 1.0 @@ -295,7 +295,7 @@ - type: tile id: FloorWhiteMini name: tiles-white-floor-mini - sprite: /Textures/_White/Tiles/white_mini.png + sprite: /Textures/Tiles/white_mini.png variants: 4 placementVariants: - 1.0 @@ -314,7 +314,7 @@ - type: tile id: FloorWhitePavement name: tiles-white-floor-pavement - sprite: /Textures/_White/Tiles/white_pavement.png + sprite: /Textures/Tiles/white_pavement.png variants: 4 placementVariants: - 1.0 @@ -333,7 +333,7 @@ - type: tile id: FloorWhiteDiagonal name: tiles-white-floor-diagonal - sprite: /Textures/_White/Tiles/white_diagonal.png + sprite: /Textures/Tiles/white_diagonal.png variants: 4 placementVariants: - 1.0 @@ -352,7 +352,7 @@ - type: tile id: FloorWhiteOffset name: tiles-white-floor-offset - sprite: /Textures/_White/Tiles/white_offset.png + sprite: /Textures/Tiles/white_offset.png baseTurf: Plating variants: 4 placementVariants: @@ -371,7 +371,7 @@ - type: tile id: FloorWhiteMono name: tiles-white-floor-mono - sprite: /Textures/_White/Tiles/white_mono.png + sprite: /Textures/Tiles/white_mono.png variants: 4 placementVariants: - 1.0 @@ -390,7 +390,7 @@ - type: tile id: FloorWhitePavementVertical name: tiles-white-floor-pavement-vertical - sprite: /Textures/_White/Tiles/white_pavement_vertical.png + sprite: /Textures/Tiles/white_pavement_vertical.png variants: 4 placementVariants: - 1.0 @@ -409,7 +409,7 @@ - type: tile id: FloorWhiteHerringbone name: tiles-white-floor-herringbone - sprite: /Textures/_White/Tiles/white_herringbone.png + sprite: /Textures/Tiles/white_herringbone.png variants: 4 placementVariants: - 1.0 @@ -428,7 +428,7 @@ - type: tile id: FloorWhiteDiagonalMini name: tiles-white-floor-diagonal-mini - sprite: /Textures/_White/Tiles/white_diagonal_mini.png + sprite: /Textures/Tiles/white_diagonal_mini.png variants: 4 placementVariants: - 1.0 @@ -447,7 +447,7 @@ - type: tile id: FloorWhitePlastic name: tiles-plastic-white-floor - sprite: /Textures/_White/Tiles/white_plastic.png + sprite: /Textures/Tiles/white_plastic.png variants: 4 placementVariants: - 1.0 @@ -466,7 +466,7 @@ - type: tile id: FloorDark name: tiles-dark-floor - sprite: /Textures/_White/Tiles/dark.png + sprite: /Textures/Tiles/dark.png variants: 4 placementVariants: - 1.0 @@ -485,7 +485,7 @@ - type: tile id: FloorDarkMini name: tiles-dark-floor-mini - sprite: /Textures/_White/Tiles/dark_mini.png + sprite: /Textures/Tiles/dark_mini.png variants: 4 placementVariants: - 1.0 @@ -504,7 +504,7 @@ - type: tile id: FloorDarkPavement name: tiles-dark-floor-pavement - sprite: /Textures/_White/Tiles/dark_pavement.png + sprite: /Textures/Tiles/dark_pavement.png variants: 4 placementVariants: - 1.0 @@ -523,7 +523,7 @@ - type: tile id: FloorDarkDiagonal name: tiles-dark-floor-diagonal - sprite: /Textures/_White/Tiles/dark_diagonal.png + sprite: /Textures/Tiles/dark_diagonal.png variants: 4 placementVariants: - 1.0 @@ -542,7 +542,7 @@ - type: tile id: FloorDarkOffset name: tiles-dark-floor-offset - sprite: /Textures/_White/Tiles/dark_offset.png + sprite: /Textures/Tiles/dark_offset.png baseTurf: Plating variants: 4 placementVariants: @@ -561,7 +561,7 @@ - type: tile id: FloorDarkMono name: tiles-dark-floor-mono - sprite: /Textures/_White/Tiles/dark_mono.png + sprite: /Textures/Tiles/dark_mono.png variants: 4 placementVariants: - 1.0 @@ -580,7 +580,7 @@ - type: tile id: FloorDarkPavementVertical name: tiles-dark-floor-pavement-vertical - sprite: /Textures/_White/Tiles/dark_pavement_vertical.png + sprite: /Textures/Tiles/dark_pavement_vertical.png variants: 4 placementVariants: - 1.0 @@ -599,7 +599,7 @@ - type: tile id: FloorDarkHerringbone name: tiles-dark-floor-herringbone - sprite: /Textures/_White/Tiles/dark_herringbone.png + sprite: /Textures/Tiles/dark_herringbone.png variants: 4 placementVariants: - 1.0 @@ -618,7 +618,7 @@ - type: tile id: FloorDarkDiagonalMini name: tiles-dark-floor-diagonal-mini - sprite: /Textures/_White/Tiles/dark_diagonal_mini.png + sprite: /Textures/Tiles/dark_diagonal_mini.png variants: 4 placementVariants: - 1.0 @@ -637,7 +637,7 @@ - type: tile id: FloorDarkPlastic name: tiles-plastic-dark-floor - sprite: /Textures/_White/Tiles/dark_plastic.png + sprite: /Textures/Tiles/dark_plastic.png variants: 4 placementVariants: - 1.0 @@ -695,7 +695,7 @@ - type: tile id: FloorLino name: tiles-linoleum-floor - sprite: /Textures/_White/Tiles/lino.png + sprite: /Textures/Tiles/lino.png baseTurf: Plating isSubfloor: false deconstructTools: [ Prying ] @@ -705,70 +705,6 @@ heatCapacity: 10000 tileRipResistance: 100 - -- type: tile - id: FloorLinoWhite - name: tiles-linoleum-white-floor - sprite: /Textures/_White/Tiles/lino_white.png - baseTurf: Plating - variants: 6 - placementVariants: - - 0.25 - - 0.083 - - 0.083 - - 0.083 - - 0.25 - - 0.25 - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - itemDrop: FloorTileItemLinoWhite - heatCapacity: 10000 - tileRipResistance: 100 - -- type: tile - id: FloorLinoGrey - name: tiles-linoleum-grey-floor - sprite: /Textures/_White/Tiles/lino_grey.png - baseTurf: Plating - variants: 6 - placementVariants: - - 0.25 - - 0.083 - - 0.083 - - 0.083 - - 0.25 - - 0.25 - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - itemDrop: FloorTileItemLinoGrey - heatCapacity: 10000 - tileRipResistance: 100 - -- type: tile - id: FloorLinoDark - name: tiles-linoleum-dark-floor - sprite: /Textures/_White/Tiles/lino_dark.png - baseTurf: Plating - variants: 6 - placementVariants: - - 0.25 - - 0.083 - - 0.083 - - 0.083 - - 0.25 - - 0.25 - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - itemDrop: FloorTileItemLinoDark - heatCapacity: 10000 - tileRipResistance: 100 - - type: tile id: FloorSteelDirty name: tiles-dirty-steel-floor @@ -811,7 +747,7 @@ - type: tile id: FloorRockVault name: tiles-rock-floor - sprite: /Textures/_White/Tiles/rock_vault.png + sprite: /Textures/Tiles/rock_vault.png baseTurf: Plating isSubfloor: false deconstructTools: [ Prying ] @@ -824,7 +760,7 @@ - type: tile id: FloorBlue name: tiles-blue-tile - sprite: /Textures/_White/Tiles/blue.png + sprite: /Textures/Tiles/blue.png baseTurf: Plating variants: 4 placementVariants: @@ -843,7 +779,7 @@ - type: tile id: FloorSteelLime name: tiles-lime-floor - sprite: /Textures/_White/Tiles/lime.png + sprite: /Textures/Tiles/lime.png variants: 4 placementVariants: - 1.0 @@ -898,239 +834,11 @@ heatCapacity: 10000 tileRipResistance: 250 -- type: tile - id: FloorSteelYellow - name: tiles-steel-yellow-floor - sprite: /Textures/_White/Tiles/steel_yellow.png - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepFloor - itemDrop: FloorTileItemSteelYellow - heatCapacity: 10000 - tileRipResistance: 100 - -- type: tile - id: FloorSteelRed - name: tiles-steel-red-floor - sprite: /Textures/_White/Tiles/steel_red.png - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepFloor - itemDrop: FloorTileItemSteelRed - heatCapacity: 10000 - tileRipResistance: 100 - -- type: tile - id: FloorSteelGreen - name: tiles-steel-green-floor - sprite: /Textures/_White/Tiles/steel_green.png - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepFloor - itemDrop: FloorTileItemSteelGreen - heatCapacity: 10000 - tileRipResistance: 100 - -- type: tile - id: FloorSteelBlue - name: tiles-steel-blue-floor - sprite: /Textures/_White/Tiles/steel_blue.png - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepFloor - itemDrop: FloorTileItemSteelBlue - heatCapacity: 10000 - tileRipResistance: 100 - -- type: tile - id: FloorPlasticYellow - name: tiles-plastic-yellow-floor - sprite: /Textures/_White/Tiles/plastic_yellow.png - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepFloor - itemDrop: FloorTileItemPlasticYellow - heatCapacity: 10000 - tileRipResistance: 100 - -- type: tile - id: FloorPlasticRed - name: tiles-plastic-red-floor - sprite: /Textures/_White/Tiles/plastic_red.png - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepFloor - itemDrop: FloorTileItemPlasticRed - heatCapacity: 10000 - tileRipResistance: 100 - -- type: tile - id: FloorPlasticGreen - name: tiles-plastic-green-floor - sprite: /Textures/_White/Tiles/plastic_green.png - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepFloor - itemDrop: FloorTileItemPlasticGreen - heatCapacity: 10000 - tileRipResistance: 100 - -- type: tile - id: FloorPlasticBlue - name: tiles-plastic-blue-floor - sprite: /Textures/_White/Tiles/plastic_blue.png - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepFloor - itemDrop: FloorTileItemPlasticBlue - heatCapacity: 10000 - tileRipResistance: 100 - -- type: tile - id: FloorShielding - name: tiles-shielding-floor - sprite: /Textures/_White/Tiles/shielding.png - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepFloor - itemDrop: FloorTileItemShielding - heatCapacity: 10000 - tileRipResistance: 400 - -- type: tile - id: FloorShieldingMono - name: tiles-shielding-mono-floor - sprite: /Textures/_White/Tiles/shielding_mono.png - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepFloor - itemDrop: FloorTileItemShieldingMono - heatCapacity: 10000 - tileRipResistance: 400 - -- type: tile - id: FloorReinforcedGlassFrame - name: tiles-reinforced-glass-frame-floor - sprite: /Textures/_White/Tiles/rglass_frame.png - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepFloor - itemDrop: FloorTileItemReinforcedGlassFrame - heatCapacity: 10000 - tileRipResistance: 100 - -- type: tile - id: FloorGlassFrame - name: tiles-glass-frame-floor - sprite: /Textures/_White/Tiles/glass_frame.png - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepFloor - itemDrop: FloorTileItemGlassFrame - heatCapacity: 10000 - tileRipResistance: 100 - # Departamental - type: tile id: FloorFreezer name: tiles-freezer - sprite: /Textures/_White/Tiles/freezer.png + sprite: /Textures/Tiles/freezer.png baseTurf: Plating variants: 4 placementVariants: @@ -1146,48 +854,10 @@ heatCapacity: 10000 tileRipResistance: 100 -- type: tile - id: FloorSterile - name: tiles-sterile - sprite: /Textures/_White/Tiles/sterile.png - baseTurf: Plating - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepHull - itemDrop: FloorTileItemSterile - heatCapacity: 10000 - tileRipResistance: 100 - -- type: tile - id: FloorSterileDark - name: tiles-sterile-dark - sprite: /Textures/_White/Tiles/sterile_dark.png - baseTurf: Plating - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepHull - itemDrop: FloorTileItemSterileDark - heatCapacity: 10000 - tileRipResistance: 100 - - type: tile id: FloorShowroom name: tiles-showroom-floor - sprite: /Textures/_White/Tiles/showroom.png + sprite: /Textures/Tiles/showroom.png baseTurf: Plating variants: 12 placementVariants: @@ -1214,7 +884,7 @@ - type: tile id: FloorHydro name: tiles-hydro-floor - sprite: /Textures/_White/Tiles/hydro.png + sprite: /Textures/Tiles/hydro.png baseTurf: Plating variants: 4 placementVariants: @@ -1233,7 +903,7 @@ - type: tile id: FloorBar name: tiles-bar-floor - sprite: /Textures/_White/Tiles/bar.png + sprite: /Textures/Tiles/bar.png variants: 4 placementVariants: - 1.0 @@ -1252,7 +922,7 @@ - type: tile id: FloorClown name: tiles-clown-floor - sprite: /Textures/_White/Tiles/clown.png + sprite: /Textures/Tiles/clown.png baseTurf: Plating variants: 16 placementVariants: @@ -1283,7 +953,7 @@ - type: tile id: FloorMime name: tiles-mime-floor - sprite: /Textures/_White/Tiles/mime.png + sprite: /Textures/Tiles/mime.png baseTurf: Plating variants: 7 placementVariants: @@ -1305,7 +975,7 @@ - type: tile id: FloorKitchen name: tiles-kitchen-floor - sprite: /Textures/_White/Tiles/kitchen.png + sprite: /Textures/Tiles/kitchen.png baseTurf: Plating variants: 4 placementVariants: @@ -1324,7 +994,7 @@ - type: tile id: FloorLaundry name: tiles-laundry-floor - sprite: /Textures/_White/Tiles/laundry.png + sprite: /Textures/Tiles/laundry.png baseTurf: Plating variants: 7 placementVariants: @@ -1346,7 +1016,7 @@ - type: tile id: FloorSteelDamaged name: tiles-steel-floor - sprite: /Textures/_White/Tiles/steel_damaged.png + sprite: /Textures/Tiles/steel_damaged.png variants: 8 placementVariants: - 1.0 @@ -1369,7 +1039,7 @@ - type: tile id: FloorSteelBurnt name: tiles-steel-floor - sprite: /Textures/_White/Tiles/steel_burnt.png + sprite: /Textures/Tiles/steel_burnt.png variants: 8 placementVariants: - 1.0 @@ -1712,7 +1382,7 @@ - type: tile id: FloorShuttleWhite name: tiles-white-shuttle-floor - sprite: /Textures/_White/Tiles/shuttlewhite.png + sprite: /Textures/Tiles/shuttlewhite.png baseTurf: Plating isSubfloor: false deconstructTools: [ Prying ] @@ -1725,7 +1395,7 @@ - type: tile id: FloorShuttleGrey name: tiles-grey-shuttle-floor - sprite: /Textures/_White/Tiles/shuttlegrey.png + sprite: /Textures/Tiles/shuttlegrey.png baseTurf: Plating isSubfloor: false deconstructTools: [ Prying ] @@ -1738,7 +1408,7 @@ - type: tile id: FloorShuttleBlack name: tiles-black-shuttle-floor - sprite: /Textures/_White/Tiles/shuttleblack.png + sprite: /Textures/Tiles/shuttleblack.png baseTurf: Plating isSubfloor: false deconstructTools: [ Prying ] @@ -1751,7 +1421,7 @@ - type: tile id: FloorShuttleBlue name: tiles-blue-shuttle-floor - sprite: /Textures/_White/Tiles/shuttleblue.png + sprite: /Textures/Tiles/shuttleblue.png baseTurf: Plating isSubfloor: false deconstructTools: [ Prying ] @@ -1764,7 +1434,7 @@ - type: tile id: FloorShuttleOrange name: tiles-orange-shuttle-floor - sprite: /Textures/_White/Tiles/shuttleorange.png + sprite: /Textures/Tiles/shuttleorange.png baseTurf: Plating isSubfloor: false deconstructTools: [ Prying ] @@ -1777,7 +1447,7 @@ - type: tile id: FloorShuttlePurple name: tiles-purple-shuttle-floor - sprite: /Textures/_White/Tiles/shuttlepurple.png + sprite: /Textures/Tiles/shuttlepurple.png baseTurf: Plating isSubfloor: false deconstructTools: [ Prying ] @@ -1790,7 +1460,7 @@ - type: tile id: FloorShuttleRed name: tiles-red-shuttle-floor - sprite: /Textures/_White/Tiles/shuttlered.png + sprite: /Textures/Tiles/shuttlered.png baseTurf: Plating isSubfloor: false deconstructTools: [ Prying ] @@ -1800,24 +1470,11 @@ heatCapacity: 10000 tileRipResistance: 4500 -- type: tile - id: FloorShuttleSyndie - name: tiles-syndie-shuttle-floor - sprite: /Textures/_White/Tiles/shuttlesyndie.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepFloor - itemDrop: FloorTileItemShuttleSyndie - heatCapacity: 10000 - - # Materials - type: tile id: FloorGold name: tiles-gold-tile - sprite: /Textures/_White/Tiles/gold.png + sprite: /Textures/Tiles/gold.png baseTurf: Plating isSubfloor: false deconstructTools: [ Prying ] @@ -1830,7 +1487,7 @@ - type: tile id: FloorSilver name: tiles-silver-tile - sprite: /Textures/_White/Tiles/silver.png + sprite: /Textures/Tiles/silver.png baseTurf: Plating isSubfloor: false deconstructTools: [ Prying ] @@ -1843,7 +1500,7 @@ - type: tile id: FloorGlass name: tiles-glass-floor - sprite: /Textures/_White/Tiles/glass.png + sprite: /Textures/Tiles/glass.png variants: 4 placementVariants: - 1.0 @@ -1862,7 +1519,7 @@ - type: tile id: FloorRGlass name: tiles-reinforced-glass-floor - sprite: /Textures/_White/Tiles/rglass.png + sprite: /Textures/Tiles/rglass.png variants: 4 placementVariants: - 1.0 @@ -1882,7 +1539,7 @@ - type: tile id: FloorGreenCircuit name: tiles-green-circuit-floor - sprite: /Textures/_White/Tiles/green_circuit.png + sprite: /Textures/Tiles/green_circuit.png baseTurf: Plating isSubfloor: false deconstructTools: [ Prying ] @@ -1895,7 +1552,7 @@ - type: tile id: FloorBlueCircuit name: tiles-blue-circuit-floor - sprite: /Textures/_White/Tiles/blue_circuit.png + sprite: /Textures/Tiles/blue_circuit.png baseTurf: Plating isSubfloor: false deconstructTools: [ Prying ] @@ -2131,66 +1788,6 @@ heatCapacity: 10000 weather: true -- type: tile - id: FloorAsteroidCoarse - name: tiles-asteroid-coarse - sprite: /Textures/_White/Tiles/Asteroid/asteroid_coarse.png - variants: 12 - placementVariants: - - 0.15 - - 0.15 - - 0.15 - - 0.15 - - 0.15 - - 0.15 - - 0.016 - - 0.016 - - 0.016 - - 0.016 - - 0.016 - - 0.016 - baseTurf: Space - isSubfloor: true - footstepSounds: - collection: FootstepAsteroid - heatCapacity: 10000 - weather: true - -- type: tile - id: FloorAsteroidCoarseDug - name: tiles-asteroid-coarse-dug - sprite: /Textures/_White/Tiles/Asteroid/asteroid_coarse_dug.png - variants: 6 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - - 1.0 - - 1.0 - baseTurf: Space - isSubfloor: true - footstepSounds: - collection: FootstepAsteroid - heatCapacity: 10000 - weather: true - -- type: tile - id: FloorAsteroidGravel - name: tiles-asteroid-gravel - sprite: /Textures/_White/Tiles/Asteroid/asteroid_gravel.png - variants: 3 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - baseTurf: Space - isSubfloor: true - footstepSounds: - collection: FootstepAsteroid - heatCapacity: 10000 - weather: true - # Caves - type: tile id: FloorCave @@ -2286,7 +1883,7 @@ - type: tile id: FloorWoodTile name: tiles-wood2 - sprite: /Textures/_White/Tiles/wood_tile.png + sprite: /Textures/Tiles/wood_tile.png variants: 4 placementVariants: - 1.0 @@ -2307,7 +1904,7 @@ - type: tile id: FloorBrokenWood name: tiles-wood3 - sprite: /Textures/_White/Tiles/wood_broken.png + sprite: /Textures/Tiles/wood_broken.png variants: 7 placementVariants: - 1.0 @@ -2391,7 +1988,7 @@ - type: tile id: FloorReinforcedHardened name: tiles-super-reinforced-floor - sprite: /Textures/_White/Tiles/super_reinforced.png + sprite: /Textures/Tiles/super_reinforced.png baseTurf: Plating isSubfloor: false footstepSounds: @@ -2402,6 +1999,106 @@ # Faux sci tiles # Grass + +- type: tile + id: FloorAstroGrassAutumnRed + name: tiles-astro-grass-autumn-red-floor + sprite: /Textures/_White/Tiles/Planet/AutumnGrass/red.png + variants: 8 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + edgeSpritePriority: 1 + edgeSprites: + SouthEast: /Textures/_White/Tiles/Planet/AutumnGrass/red_single_edge.png + NorthEast: /Textures/_White/Tiles/Planet/AutumnGrass/red_single_edge.png + NorthWest: /Textures/_White/Tiles/Planet/AutumnGrass/red_single_edge.png + SouthWest: /Textures/_White/Tiles/Planet/AutumnGrass/red_single_edge.png + South: /Textures/_White/Tiles/Planet/AutumnGrass/red_double_edge.png + East: /Textures/_White/Tiles/Planet/AutumnGrass/red_double_edge.png + North: /Textures/_White/Tiles/Planet/AutumnGrass/red_double_edge.png + West: /Textures/_White/Tiles/Planet/AutumnGrass/red_double_edge.png + baseTurf: Plating + isSubfloor: false + deconstructTools: [ Cutting ] + footstepSounds: + collection: FootstepGrass + itemDrop: FloorTileItemAstroGrass + heatCapacity: 10000 + tileRipResistance: 50 + +- type: tile + id: FloorAstroGrassAutumnOrange + name: tiles-astro-grass-autumn-orange-floor + sprite: /Textures/_White/Tiles/Planet/AutumnGrass/orange.png + variants: 8 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + edgeSpritePriority: 1 + edgeSprites: + SouthEast: /Textures/_White/Tiles/Planet/AutumnGrass/orange_single_edge.png + NorthEast: /Textures/_White/Tiles/Planet/AutumnGrass/orange_single_edge.png + NorthWest: /Textures/_White/Tiles/Planet/AutumnGrass/orange_single_edge.png + SouthWest: /Textures/_White/Tiles/Planet/AutumnGrass/orange_single_edge.png + South: /Textures/_White/Tiles/Planet/AutumnGrass/orange_double_edge.png + East: /Textures/_White/Tiles/Planet/AutumnGrass/orange_double_edge.png + North: /Textures/_White/Tiles/Planet/AutumnGrass/orange_double_edge.png + West: /Textures/_White/Tiles/Planet/AutumnGrass/orange_double_edge.png + baseTurf: Plating + isSubfloor: false + deconstructTools: [ Cutting ] + footstepSounds: + collection: FootstepGrass + itemDrop: FloorTileItemAstroGrass + heatCapacity: 10000 + tileRipResistance: 50 + +- type: tile + id: FloorAstroGrassAutumnYellow + name: tiles-astro-grass-autumn-yellow-floor + sprite: /Textures/_White/Tiles/Planet/AutumnGrass/yellow.png + variants: 8 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + edgeSpritePriority: 1 + edgeSprites: + SouthEast: /Textures/_White/Tiles/Planet/AutumnGrass/yellow_single_edge.png + NorthEast: /Textures/_White/Tiles/Planet/AutumnGrass/yellow_single_edge.png + NorthWest: /Textures/_White/Tiles/Planet/AutumnGrass/yellow_single_edge.png + SouthWest: /Textures/_White/Tiles/Planet/AutumnGrass/yellow_single_edge.png + South: /Textures/_White/Tiles/Planet/AutumnGrass/yellow_double_edge.png + East: /Textures/_White/Tiles/Planet/AutumnGrass/yellow_double_edge.png + North: /Textures/_White/Tiles/Planet/AutumnGrass/yellow_double_edge.png + West: /Textures/_White/Tiles/Planet/AutumnGrass/yellow_double_edge.png + baseTurf: Plating + isSubfloor: false + deconstructTools: [ Cutting ] + footstepSounds: + collection: FootstepGrass + itemDrop: FloorTileItemAstroGrass + heatCapacity: 10000 + tileRipResistance: 50 + - type: tile id: FloorAstroGrass name: tiles-astro-grass @@ -2480,7 +2177,7 @@ - type: tile id: FloorWoodLarge name: tiles-wood-large - sprite: /Textures/_White/Tiles/wood_large.png + sprite: /Textures/Tiles/wood_large.png variants: 4 placementVariants: - 1.0 diff --git a/Resources/Prototypes/Tiles/planet.yml b/Resources/Prototypes/Tiles/planet.yml index 18f61f2cdd..602c93549b 100644 --- a/Resources/Prototypes/Tiles/planet.yml +++ b/Resources/Prototypes/Tiles/planet.yml @@ -78,6 +78,105 @@ weather: true indestructible: true +- type: tile + id: FloorPlanetGrassAutumnRed + name: tiles-grass-autumn-red-planet-floor + sprite: /Textures/_White/Tiles/Planet/AutumnGrass/red.png + variants: 8 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + edgeSpritePriority: 1 + edgeSprites: + SouthEast: /Textures/_White/Tiles/Planet/AutumnGrass/red_single_edge.png + NorthEast: /Textures/_White/Tiles/Planet/AutumnGrass/red_single_edge.png + NorthWest: /Textures/_White/Tiles/Planet/AutumnGrass/red_single_edge.png + SouthWest: /Textures/_White/Tiles/Planet/AutumnGrass/red_single_edge.png + South: /Textures/_White/Tiles/Planet/AutumnGrass/red_double_edge.png + East: /Textures/_White/Tiles/Planet/AutumnGrass/red_double_edge.png + North: /Textures/_White/Tiles/Planet/AutumnGrass/red_double_edge.png + West: /Textures/_White/Tiles/Planet/AutumnGrass/red_double_edge.png + baseTurf: FloorPlanetDirt + isSubfloor: true + footstepSounds: + collection: FootstepGrass + itemDrop: FloorTileItemGrass + heatCapacity: 10000 + weather: true + indestructible: true + +- type: tile + id: FloorPlanetGrassAutumnOrange + name: tiles-grass-autumn-orange-planet-floor + sprite: /Textures/_White/Tiles/Planet/AutumnGrass/orange.png + variants: 8 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + edgeSpritePriority: 1 + edgeSprites: + SouthEast: /Textures/_White/Tiles/Planet/AutumnGrass/orange_single_edge.png + NorthEast: /Textures/_White/Tiles/Planet/AutumnGrass/orange_single_edge.png + NorthWest: /Textures/_White/Tiles/Planet/AutumnGrass/orange_single_edge.png + SouthWest: /Textures/_White/Tiles/Planet/AutumnGrass/orange_single_edge.png + South: /Textures/_White/Tiles/Planet/AutumnGrass/orange_double_edge.png + East: /Textures/_White/Tiles/Planet/AutumnGrass/orange_double_edge.png + North: /Textures/_White/Tiles/Planet/AutumnGrass/orange_double_edge.png + West: /Textures/_White/Tiles/Planet/AutumnGrass/orange_double_edge.png + baseTurf: FloorPlanetDirt + isSubfloor: true + footstepSounds: + collection: FootstepGrass + itemDrop: FloorTileItemGrass + heatCapacity: 10000 + weather: true + indestructible: true + +- type: tile + id: FloorPlanetGrassAutumnYellow + name: tiles-grass-autumn-yellow-planet-floor + sprite: /Textures/_White/Tiles/Planet/AutumnGrass/yellow.png + variants: 8 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + edgeSpritePriority: 1 + edgeSprites: + SouthEast: /Textures/_White/Tiles/Planet/AutumnGrass/yellow_single_edge.png + NorthEast: /Textures/_White/Tiles/Planet/AutumnGrass/yellow_single_edge.png + NorthWest: /Textures/_White/Tiles/Planet/AutumnGrass/yellow_single_edge.png + SouthWest: /Textures/_White/Tiles/Planet/AutumnGrass/yellow_single_edge.png + South: /Textures/_White/Tiles/Planet/AutumnGrass/yellow_double_edge.png + East: /Textures/_White/Tiles/Planet/AutumnGrass/yellow_double_edge.png + North: /Textures/_White/Tiles/Planet/AutumnGrass/yellow_double_edge.png + West: /Textures/_White/Tiles/Planet/AutumnGrass/yellow_double_edge.png + baseTurf: FloorPlanetDirt + isSubfloor: true + footstepSounds: + collection: FootstepGrass + itemDrop: FloorTileItemGrass + heatCapacity: 10000 + weather: true + indestructible: true + # Lava - type: tile id: FloorBasalt diff --git a/Resources/Prototypes/Tiles/plating.yml b/Resources/Prototypes/Tiles/plating.yml index e31beab8a4..eafa45424e 100644 --- a/Resources/Prototypes/Tiles/plating.yml +++ b/Resources/Prototypes/Tiles/plating.yml @@ -1,7 +1,7 @@ - type: tile id: Plating name: tiles-plating - sprite: /Textures/_White/Tiles/plating.png + sprite: /Textures/Tiles/plating.png baseTurf: Lattice isSubfloor: true deconstructTools: [ AdvancedPrying ] #WWDP edit @@ -13,7 +13,7 @@ - type: tile id: PlatingDamaged name: tiles-plating - sprite: /Textures/_White/Tiles/plating_damaged.png + sprite: /Textures/Tiles/plating_damaged.png variants: 4 placementVariants: - 1.0 @@ -31,7 +31,7 @@ - type: tile id: PlatingBurnt name: tiles-plating - sprite: /Textures/_White/Tiles/plating_burnt.png + sprite: /Textures/Tiles/plating_burnt.png variants: 4 placementVariants: - 1.0 @@ -109,56 +109,3 @@ itemDrop: PartRodMetal1 heatCapacity: 10000 -#WWDP add - -- type: tile - id: PlatingDiagonalNE - name: tiles-plating-diagonal-NE - sprite: /Textures/_White/Tiles/plating_diagonal_ne.png - baseTurf: Lattice - isSubfloor: true - isSpace: true - deconstructTools: [ AdvancedPrying ] - footstepSounds: - collection: FootstepPlating - friction: 0.3 - heatCapacity: 10000 - -- type: tile - id: PlatingDiagonalNW - name: tiles-plating-diagonal-NW - sprite: /Textures/_White/Tiles/plating_diagonal_nw.png - baseTurf: Lattice - isSubfloor: true - isSpace: true - deconstructTools: [ AdvancedPrying ] - footstepSounds: - collection: FootstepPlating - friction: 0.3 - heatCapacity: 10000 - -- type: tile - id: PlatingDiagonalSE - name: tiles-plating-diagonal-SE - sprite: /Textures/_White/Tiles/plating_diagonal_se.png - baseTurf: Lattice - isSubfloor: true - isSpace: true - deconstructTools: [ AdvancedPrying ] - footstepSounds: - collection: FootstepPlating - friction: 0.3 - heatCapacity: 10000 - -- type: tile - id: PlatingDiagonalSW - name: tiles-plating-diagonal-SW - sprite: /Textures/_White/Tiles/plating_diagonal_sw.png - baseTurf: Lattice - isSubfloor: true - isSpace: true - deconstructTools: [ AdvancedPrying ] - footstepSounds: - collection: FootstepPlating - friction: 0.3 - heatCapacity: 10000 diff --git a/Resources/Prototypes/Traits/Misc/singer_types.yml b/Resources/Prototypes/Traits/Misc/singer_types.yml index 28e4712ee9..605f3be913 100644 --- a/Resources/Prototypes/Traits/Misc/singer_types.yml +++ b/Resources/Prototypes/Traits/Misc/singer_types.yml @@ -10,9 +10,7 @@ "Flute": {73: 0} "Sax": {66: 0} defaultInstrument: "Voice" - midiUi: - key: enum.InstrumentUiKey.Key - type: InstrumentBoundUserInterface + midiUi: Key midiActionId: ActionHarpyPlayMidi - type: SingerInstrument @@ -20,7 +18,5 @@ instrumentList: "Voice": {52: 0} defaultInstrument: "Voice" - midiUi: - key: enum.InstrumentUiKey.Key - type: InstrumentBoundUserInterface + midiUi: Key midiActionId: ActionHarpyPlayMidi # TODO: custom action maybe? diff --git a/Resources/Prototypes/Traits/categories.yml b/Resources/Prototypes/Traits/categories.yml index e413706bfa..fcd89d5bbe 100644 --- a/Resources/Prototypes/Traits/categories.yml +++ b/Resources/Prototypes/Traits/categories.yml @@ -19,7 +19,24 @@ - type: traitCategory id: Speech root: true + subCategories: + - TraitsSpeechUncategorized + - TraitsSpeechAccents + - TraitsSpeechLanguages + +- type: traitCategory + id: TraitsSpeechUncategorized + +- type: traitCategory + id: TraitsSpeechAccents + +- type: traitCategory + id: TraitsSpeechLanguages - type: traitCategory id: Visual root: true + +- type: traitCategory + id: Language + root: true \ No newline at end of file diff --git a/Resources/Prototypes/Traits/disabilities.yml b/Resources/Prototypes/Traits/disabilities.yml index c0b942ea66..9961c84948 100644 --- a/Resources/Prototypes/Traits/disabilities.yml +++ b/Resources/Prototypes/Traits/disabilities.yml @@ -11,6 +11,20 @@ components: - type: PermanentBlindness +- type: trait + id: Nearsighted + category: Visual + points: 1 + requirements: + - !type:CharacterJobRequirement + inverted: true + jobs: + - Borg + - MedicalBorg + components: + - type: PermanentBlindness + blindness: 4 + - type: trait id: Narcolepsy category: Mental @@ -51,7 +65,7 @@ - type: trait id: Muted - category: Speech + category: Mental points: 4 requirements: - !type:CharacterJobRequirement @@ -65,7 +79,7 @@ - type: trait id: Uncloneable category: Physical - points: 4 + points: 1 requirements: - !type:CharacterJobRequirement inverted: true @@ -77,7 +91,7 @@ - type: trait id: FrontalLisp - category: Speech + category: TraitsSpeechAccents requirements: - !type:CharacterJobRequirement inverted: true @@ -88,6 +102,8 @@ inverted: true species: - IPC + - !type:CharacterItemGroupRequirement + group: TraitsAccents components: - type: FrontalLisp @@ -168,8 +184,8 @@ species: - IPC components: - - type: BloodDeficiency # 0.07 = start taking bloodloss damage at around ~21.4 minutes, - bloodLossAmount: 0.07 # then become crit ~10 minutes later + - type: BloodDeficiency # by default, start taking bloodloss damage at around ~21.4 minutes, + bloodLossPercentage: 0.0002333333 # then become crit ~10 minutes - type: trait id: Hemophilia @@ -191,3 +207,41 @@ damageModifiers: coefficients: Blunt: 1.1 + +- type: trait + id: Photophobia + category: Visual + points: 1 + requirements: + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Vulpkanin # This trait functions exactly as-is for the Vulpkanin trait. + components: + - type: Flashable + eyeDamageChance: 0.3 + eyeDamage: 1 + durationMultiplier: 1.5 + +- type: trait + id: Clumsy + category: Physical + points: 1 + requirements: + - !type:CharacterJobRequirement + inverted: true + jobs: + - Clown # This trait functions exactly as is for the Clown's trait. + - !type:CharacterDepartmentRequirement + inverted: true + departments: + - Command # Because I know for a fact people will play Captain and grief with their inability to fight back. + - Security # Because I know for a fact people will play Security and grief with their inability to use guns. + components: + - type: Clumsy + clumsyDamage: + types: + Blunt: 5 + Piercing: 4 + groups: + Burn: 3 diff --git a/Resources/Prototypes/Traits/inconveniences.yml b/Resources/Prototypes/Traits/inconveniences.yml index b08116dc48..2c0df79264 100644 --- a/Resources/Prototypes/Traits/inconveniences.yml +++ b/Resources/Prototypes/Traits/inconveniences.yml @@ -23,13 +23,15 @@ - type: trait id: Stutter - category: Mental + category: TraitsSpeechAccents requirements: - !type:CharacterJobRequirement inverted: true jobs: - Borg - MedicalBorg + - !type:CharacterItemGroupRequirement + group: TraitsAccents components: - type: StutteringAccent matchRandomProb: 0.1 @@ -39,7 +41,7 @@ - type: trait id: ForeignerLight - category: Mental + category: TraitsSpeechLanguages points: 2 requirements: - !type:CharacterTraitRequirement @@ -53,7 +55,7 @@ - type: trait id: Foreigner - category: Mental + category: TraitsSpeechLanguages points: 4 requirements: # TODO: Add a requirement to know at least 1 non-gc language - !type:CharacterTraitRequirement diff --git a/Resources/Prototypes/Traits/languages.yml b/Resources/Prototypes/Traits/languages.yml new file mode 100644 index 0000000000..06b4890c11 --- /dev/null +++ b/Resources/Prototypes/Traits/languages.yml @@ -0,0 +1,94 @@ +- type: trait + id: SignLanguage + category: TraitsSpeechLanguages + points: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: TraitsLanguagesBasic + languagesSpoken: + - Sign + languagesUnderstood: + - Sign + +- type: trait + id: SolCommon + category: TraitsSpeechLanguages + points: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: TraitsLanguagesBasic + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Human + languagesSpoken: + - SolCommon + languagesUnderstood: + - SolCommon + +- type: trait + id: Tradeband + category: TraitsSpeechLanguages + points: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: TraitsLanguagesBasic + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Harpy + languagesSpoken: + - Tradeband + languagesUnderstood: + - Tradeband + +- type: trait + id: Freespeak + category: TraitsSpeechLanguages + points: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: TraitsLanguagesBasic + languagesSpoken: + - Freespeak + languagesUnderstood: + - Freespeak + +- type: trait + id: Elyran + category: TraitsSpeechLanguages + points: 0 + requirements: + - !type:CharacterItemGroupRequirement + group: TraitsLanguagesBasic + languagesSpoken: + - Elyran + languagesUnderstood: + - Elyran + +- type: trait + id: ValyrianStandard + category: TraitsSpeechLanguages + points: 1 + requirements: + - !type:CharacterItemGroupRequirement + group: TraitsLanguagesBasic + languagesSpoken: + - ValyrianStandard + languagesUnderstood: + - ValyrianStandard + +- type: trait + id: Azaziba + category: TraitsSpeechLanguages + points: 1 + requirements: + - !type:CharacterSpeciesRequirement + species: + - Reptilian + - !type:CharacterItemGroupRequirement + group: TraitsLanguagesBasic + languagesSpoken: + - Azaziba + languagesUnderstood: + - Azaziba \ No newline at end of file diff --git a/Resources/Prototypes/Traits/mental.yml b/Resources/Prototypes/Traits/mental.yml new file mode 100644 index 0000000000..4a50c8c397 --- /dev/null +++ b/Resources/Prototypes/Traits/mental.yml @@ -0,0 +1,236 @@ +- type: trait + id: HighPotential + category: Mental + points: -5 + requirements: + - !type:CharacterLogicOrRequirement + requirements: + - !type:CharacterTraitRequirement + traits: + - LatentPsychic + - !type:CharacterJobRequirement + jobs: + - Chaplain + - Librarian + - ResearchDirector + - ForensicMantis + - !type:CharacterLogicOrRequirement + requirements: + - !type:CharacterSpeciesRequirement + inverted: true + species: + - IPC + - !type:CharacterTraitRequirement + traits: + - AnomalousPositronics + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Oni + - !type:CharacterTraitRequirement + inverted: true + traits: + - LowPotential + components: + - type: PotentiaModifier + potentiaMultiplier: 1.25 + +- type: trait + id: LowPotential + category: Mental + points: 4 + requirements: + - !type:CharacterLogicOrRequirement + requirements: + - !type:CharacterTraitRequirement + traits: + - LatentPsychic + - !type:CharacterJobRequirement + jobs: + - Chaplain + - Librarian + - ResearchDirector + - ForensicMantis + - !type:CharacterLogicOrRequirement + requirements: + - !type:CharacterSpeciesRequirement + inverted: true + species: + - IPC + - !type:CharacterTraitRequirement + traits: + - AnomalousPositronics + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Oni + - !type:CharacterTraitRequirement + inverted: true + traits: + - HighPotential + components: + - type: PotentiaModifier + potentiaMultiplier: 0.75 + +- type: trait + id: LowAmplification + category: Mental + points: 3 + requirements: + - !type:CharacterLogicOrRequirement + requirements: + - !type:CharacterTraitRequirement + traits: + - LatentPsychic + - !type:CharacterJobRequirement + jobs: + - Chaplain + - Librarian + - ResearchDirector + - ForensicMantis + - !type:CharacterLogicOrRequirement + requirements: + - !type:CharacterSpeciesRequirement + inverted: true + species: + - IPC + - !type:CharacterTraitRequirement + traits: + - AnomalousPositronics + - !type:CharacterTraitRequirement + inverted: true + traits: + - HighAmplification + - PowerOverwhelming + psionicPowers: + - LowAmplification + +- type: trait + id: HighAmplification + category: Mental + points: -3 + requirements: + - !type:CharacterLogicOrRequirement + requirements: + - !type:CharacterTraitRequirement + traits: + - LatentPsychic + - !type:CharacterJobRequirement + jobs: + - Chaplain + - Librarian + - ResearchDirector + - ForensicMantis + - !type:CharacterLogicOrRequirement + requirements: + - !type:CharacterSpeciesRequirement + inverted: true + species: + - IPC + - !type:CharacterTraitRequirement + traits: + - AnomalousPositronics + - !type:CharacterTraitRequirement + inverted: true + traits: + - LowAmplification + - PowerOverwhelming + psionicPowers: + - LowAmplification + +- type: trait + id: PowerOverwhelming + category: Mental + points: -10 + requirements: + - !type:CharacterLogicOrRequirement + requirements: + - !type:CharacterTraitRequirement + traits: + - LatentPsychic + - !type:CharacterJobRequirement + jobs: + - Chaplain + - Librarian + - ResearchDirector + - ForensicMantis + - !type:CharacterLogicOrRequirement + requirements: + - !type:CharacterSpeciesRequirement + inverted: true + species: + - IPC + - !type:CharacterTraitRequirement + traits: + - AnomalousPositronics + - !type:CharacterTraitRequirement + inverted: true + traits: + - LowAmplification + - HighAmplification + psionicPowers: + - PowerOverwhelming + +- type: trait + id: LowDampening + category: Mental + points: 3 + requirements: + - !type:CharacterLogicOrRequirement + requirements: + - !type:CharacterTraitRequirement + traits: + - LatentPsychic + - !type:CharacterJobRequirement + jobs: + - Chaplain + - Librarian + - ResearchDirector + - ForensicMantis + - !type:CharacterLogicOrRequirement + requirements: + - !type:CharacterSpeciesRequirement + inverted: true + species: + - IPC + - !type:CharacterTraitRequirement + traits: + - AnomalousPositronics + - !type:CharacterTraitRequirement + inverted: true + traits: + - HighDampening + psionicPowers: + - LowDampening + +- type: trait + id: HighDampening + category: Mental + points: -3 + requirements: + - !type:CharacterLogicOrRequirement + requirements: + - !type:CharacterTraitRequirement + traits: + - LatentPsychic + - !type:CharacterJobRequirement + jobs: + - Chaplain + - Librarian + - ResearchDirector + - ForensicMantis + - !type:CharacterLogicOrRequirement + requirements: + - !type:CharacterSpeciesRequirement + inverted: true + species: + - IPC + - !type:CharacterTraitRequirement + traits: + - AnomalousPositronics + - !type:CharacterTraitRequirement + inverted: true + traits: + - LowDampening + psionicPowers: + - HighDampening diff --git a/Resources/Prototypes/Traits/neutral.yml b/Resources/Prototypes/Traits/neutral.yml index b9f988106d..3b63c930e8 100644 --- a/Resources/Prototypes/Traits/neutral.yml +++ b/Resources/Prototypes/Traits/neutral.yml @@ -1,19 +1,24 @@ - type: trait id: PirateAccent - category: Speech + category: TraitsSpeechAccents + requirements: + - !type:CharacterItemGroupRequirement + group: TraitsAccents components: - type: PirateAccent - type: trait id: Accentless - category: Speech - points: -2 + category: TraitsSpeechAccents + points: -1 requirements: - !type:CharacterJobRequirement inverted: true jobs: - Borg - MedicalBorg + - !type:CharacterItemGroupRequirement + group: TraitsAccents components: - type: Accentless removes: @@ -24,7 +29,10 @@ - type: trait id: Southern - category: Speech + category: TraitsSpeechAccents + requirements: + - !type:CharacterItemGroupRequirement + group: TraitsAccents components: - type: SouthernAccent @@ -54,9 +62,8 @@ inverted: true traits: - Sanguine - components: - - type: MoodModifyTrait - moodId: TraitSaturnine + moodEffects: + - TraitSaturnine - type: trait id: Sanguine @@ -72,6 +79,30 @@ inverted: true traits: - Saturnine + moodEffects: + - TraitSanguine + +- type: trait + id: AddictionNicotine + category: Mental + points: 1 + requirements: + - !type:CharacterJobRequirement + inverted: true + jobs: + - Borg + - MedicalBorg + - !type:CharacterSpeciesRequirement + inverted: true + species: + - IPC + moodEffects: + - NicotineWithdrawal + +- type: trait + id: Liar + category: Mental components: - - type: MoodModifyTrait - moodId: TraitSanguine \ No newline at end of file + - type: ReplacementAccent + replacementChance: 0.15 + accent: liar diff --git a/Resources/Prototypes/Traits/physical.yml b/Resources/Prototypes/Traits/physical.yml index cfc15d4ee2..288386b8f4 100644 --- a/Resources/Prototypes/Traits/physical.yml +++ b/Resources/Prototypes/Traits/physical.yml @@ -231,3 +231,371 @@ Blunt: 1.5 Slash: 1.5 Piercing: 1.5 + +- type: trait + id: Small + category: Physical + points: -2 + requirements: + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Felinid # Felinids already have this feature by default. + - !type:CharacterHeightRequirement + max: 150 + - !type:CharacterWidthRequirement + max: 32 + components: + - type: PseudoItem + storedOffset: 0,17 + shape: + - 0,0,1,4 + - 0,2,3,4 + - 4,0,5,4 + +- type: trait + id: TemperatureTolerance + category: Physical + points: -1 + requirements: + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Vulpkanin # This trait functions exactly as-is for the Vulpkanin trait. + components: + - type: TemperatureProtection + coefficient: 0.1 # Enough resistance to walk into the chef's freezer, or tolerate daytime temperatures on Glacier without a jacket. + +# These traits largely exist to demonstrate more of the "Component Removals" functionality. This way contributors +# can get used to seeing that they can "Remove and Replace" a pre-existing component. +# When declared, componentRemovals work like a "RemComp" that activates upon joining a round. +- type: trait + id: Talons + category: Physical + points: -1 + requirements: + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Harpy # Harpies already have talons + - Arachnid # Apparently they have a "piercing" bite + - !type:CharacterTraitRequirement + inverted: true + traits: + - Claws + componentRemovals: + - MeleeWeapon # Remove the original innate melee attack, so that it can be replaced with a new one. + components: + - type: MeleeWeapon + soundHit: + collection: AlienClaw + animation: WeaponArcClaw + damage: + types: + Piercing: 5 # No, this isn't "OP", this is literally the worst brute damage type in the game. + # Same deal as Slash, except that a majority of all armor provides Piercing resistance. + +- type: trait + id: Claws + category: Physical + points: -1 + requirements: + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Felinid # Felinids already have cat claws. + - Reptilian # Reptilians also have cat claws. + # - Vulpkanin # Vulpkanin have "Blunt" claws. One could argue this trait "Sharpens" their claws. + - !type:CharacterTraitRequirement + inverted: true + traits: + - Talons + componentRemovals: + - MeleeWeapon # Remove the original innate melee attack, so that it can be replaced with a new one. + components: + - type: MeleeWeapon + soundHit: + collection: AlienClaw + angle: 30 + animation: WeaponArcClaw + damage: + types: + Slash: 5 # Trade stamina damage on hit for a very minor amount of extra bleed. + # Blunt also deals bleed damage, so this is more of a sidegrade. + +- type: trait + id: NaturalWeaponRemoval + category: Physical + points: 0 + requirements: + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Human + - Oni + - SlimePerson + - !type:CharacterTraitRequirement + inverted: true + traits: + - Talons + - Claws + componentRemovals: + - MeleeWeapon # Remove the original innate melee attack, so that it can be replaced with a new one. + components: + - type: MeleeWeapon + soundHit: + collection: Punch + angle: 30 + animation: WeaponArcFist + damage: + types: + Blunt: 5 + +- type: trait + id: StrikingCalluses + category: Physical + points: -4 + requirements: + - !type:CharacterJobRequirement + inverted: true + jobs: + - Prisoner # Bionics should be "Confiscated" from long term prisoners. + - !type:CharacterSpeciesRequirement + species: + - Human # Entirely arbitrary, I've decided I want a trait unique to humans. Since they don't normally get anything exciting. + # When we get the Character Records system in, I also want to make this require certain Backgrounds. + - !type:CharacterTraitRequirement + inverted: true + traits: + - Claws + - Talons + - !type:CharacterLogicOrRequirement + requirements: + - !type:CharacterTraitRequirement + traits: + - MartialArtist + - !type:CharacterJobRequirement + jobs: + - Boxer + componentRemovals: + - MeleeWeapon + components: + - type: MeleeWeapon + soundHit: + collection: Punch + angle: 30 + animation: WeaponArcFist + damage: + types: + Blunt: 6 + +- type: trait + id: Spinarette + category: Physical + points: -4 + requirements: + - !type:CharacterJobRequirement + inverted: true + jobs: + - Prisoner # Bionics should be "Confiscated" from long term prisoners. + - !type:CharacterSpeciesRequirement + inverted: true + species: + - Arachnid + - Arachne + - IPC + components: + - type: Sericulture + action: ActionSericulture + productionLength: 2 + entityProduced: MaterialWebSilk1 + hungerCost: 4 + +- type: trait + id: BionicArm + category: Physical + points: -8 + requirements: + - !type:CharacterJobRequirement + inverted: true + jobs: + - Prisoner # Bionics should be "Confiscated" from long term prisoners. + components: + - type: Prying + speedModifier: 1 + pryPowered: true + +- type: trait + id: PlateletFactories + category: Physical + points: -10 + requirements: + - !type:CharacterJobRequirement + inverted: true + jobs: + - Prisoner # Bionics should be "Confiscated" from long term prisoners. + - !type:CharacterSpeciesRequirement + inverted: true + species: + - IPC + componentRemovals: + - PassiveDamage + components: + - type: PassiveDamage + allowedStates: + - Alive + - Critical + damageCap: 200 + damage: + groups: + Brute: -0.07 + Burn: -0.07 + Airloss: -0.07 + Toxin: -0.07 + Genetic: -0.07 + +- type: trait + id: DermalArmor + category: Physical + points: -9 + requirements: + - !type:CharacterJobRequirement + inverted: true + jobs: + - Prisoner # Bionics should be "Confiscated" from long term prisoners. + - !type:CharacterSpeciesRequirement + species: + - Human + componentRemovals: + - Damageable + components: + - type: Damageable + damageModifierSet: DermalArmor + +- type: trait + id: CyberEyes + category: Physical + points: -8 + requirements: + - !type:CharacterJobRequirement + inverted: true + jobs: + - Prisoner # Bionics should be "Confiscated" from long term prisoners. + - !type:CharacterTraitRequirement + inverted: true + traits: + - Photophobia + - Blindness + - Nearsighted + componentRemovals: + - Flashable + components: + - type: FlashImmunity + - type: EyeProtection + - type: CyberEyes + +- type: trait + id: CyberEyesSecurity + category: Physical + points: -1 + requirements: + - !type:CharacterJobRequirement + inverted: true + jobs: + - Prisoner # Bionics should be "Confiscated" from long term prisoners. + - !type:CharacterDepartmentRequirement + departments: + - Security + - !type:CharacterTraitRequirement + traits: + - CyberEyes + - !type:CharacterTraitRequirement + inverted: true + traits: + - CyberEyesOmni + components: + - type: ShowJobIcons + - type: ShowMindShieldIcons + - type: ShowCriminalRecordIcons + +- type: trait + id: CyberEyesMedical + category: Physical + points: -1 + requirements: + - !type:CharacterJobRequirement + inverted: true + jobs: + - Prisoner # Bionics should be "Confiscated" from long term prisoners. + - !type:CharacterTraitRequirement + traits: + - CyberEyes + - !type:CharacterTraitRequirement + inverted: true + traits: + - CyberEyesDiagnostic + - CyberEyesOmni + components: + - type: ShowHealthBars + damageContainers: + - Biological + - type: ShowHealthIcons + damageContainers: + - Biological + +- type: trait + id: CyberEyesDiagnostic + category: Physical + points: -1 + requirements: + - !type:CharacterJobRequirement + inverted: true + jobs: + - Prisoner # Bionics should be "Confiscated" from long term prisoners. + - !type:CharacterTraitRequirement + traits: + - CyberEyes + - !type:CharacterTraitRequirement + inverted: true + traits: + - CyberEyesMedical + - CyberEyesOmni + components: + - type: ShowHealthBars + damageContainers: + - Inorganic + - Silicon + +- type: trait + id: CyberEyesOmni + category: Physical + points: -3 + requirements: + - !type:CharacterJobRequirement + inverted: true + jobs: + - Prisoner # Bionics should be "Confiscated" from long term prisoners. + - !type:CharacterDepartmentRequirement + departments: + - Security + - !type:CharacterTraitRequirement + traits: + - CyberEyes + - !type:CharacterTraitRequirement + inverted: true + traits: + - CyberEyesMedical + - CyberEyesDiagnostic + - CyberEyesSecurity + components: + - type: ShowJobIcons + - type: ShowMindShieldIcons + - type: ShowCriminalRecordIcons + - type: ShowHealthIcons + damageContainers: + - Biological + - type: ShowHealthBars + damageContainers: + - Biological + - Inorganic + - Silicon diff --git a/Resources/Prototypes/Traits/skills.yml b/Resources/Prototypes/Traits/skills.yml index ed7c0c8a47..0e4868f19b 100644 --- a/Resources/Prototypes/Traits/skills.yml +++ b/Resources/Prototypes/Traits/skills.yml @@ -98,17 +98,6 @@ species: - Felinid -- type: trait - id: SignLanguage - category: Visual - points: -2 - components: - - type: LanguageKnowledgeModifier - speaks: - - Sign - understands: - - Sign - - type: trait id: Voracious category: Physical @@ -270,7 +259,7 @@ points: -3 components: - type: StepTriggerImmune - whitelist: # WD EDIT + whitelist: types: - Shard - Landmine diff --git a/Resources/Prototypes/Voice/disease_emotes.yml b/Resources/Prototypes/Voice/disease_emotes.yml index 7845fd3e6d..6b9914ad45 100644 --- a/Resources/Prototypes/Voice/disease_emotes.yml +++ b/Resources/Prototypes/Voice/disease_emotes.yml @@ -1,43 +1,65 @@ - type: emote id: Sneeze + name: chat-emote-name-sneeze category: Vocal - chatMessages: [ sneezes ] + chatMessages: [ "chat-emote-msg-sneeze" ] - type: emote id: Cough + name: chat-emote-name-cough + icon: Interface/Emotes/cough.png category: Vocal - chatMessages: [ coughs ] + chatMessages: [ "chat-emote-msg-cough" ] + whitelist: + components: + - Vocal + blacklist: + components: + - BorgChassischatMessages chatTriggers: - coughs - type: emote id: CatMeow + name: chat-emote-name-catmeow category: Vocal - chatMessages: [ meows ] + chatMessages: [ "chat-emote-msg-catmeow" ] - type: emote id: CatHisses + name: chat-emote-name-cathisses category: Vocal - chatMessages: [ hisses ] + chatMessages: [ "chat-emote-msg-cathisses" ] - type: emote id: MonkeyScreeches + name: chat-emote-name-monkeyscreeches category: Vocal - chatMessages: [ screeches ] + chatMessages: [ "chat-emote-msg-monkeyscreeches" ] - type: emote id: RobotBeep + name: chat-emote-name-robotbeep category: Vocal - chatMessages: [ beeps ] + chatMessages: [ "chat-emote-msg-beep" ] - type: emote id: Yawn + name: chat-emote-name-yawn + icon: Interface/Emotes/yawn.png category: Vocal - chatMessages: [ yawns ] + chatMessages: [ "chat-emote-msg-yawn" ] + whitelist: + components: + - Vocal + blacklist: + components: + - BorgChassischatMessages chatTriggers: - yawns - type: emote id: Snore + name: chat-emote-name-snore category: Vocal - chatMessages: [ snores ] + chatMessages: [ "chat-emote-msg-snore" ] diff --git a/Resources/Prototypes/Voice/speech_emote_sounds.yml b/Resources/Prototypes/Voice/speech_emote_sounds.yml index 2ec7111076..a5d05e24b7 100644 --- a/Resources/Prototypes/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/Voice/speech_emote_sounds.yml @@ -72,7 +72,7 @@ collection: Weh - type: emoteSounds - id: UnisexReptilian + id: MaleReptilian params: variation: 0.125 sounds: @@ -89,6 +89,24 @@ Weh: collection: Weh +- type: emoteSounds + id: FemaleReptilian + params: + variation: 0.125 + sounds: + Scream: + path: /Audio/Voice/Reptilian/reptilian_scream.ogg + Laugh: + path: /Audio/Animals/lizard_happy.ogg + Honk: + collection: BikeHorn + Whistle: + collection: Whistles + Crying: + collection: FemaleCry + Weh: + collection: Weh + - type: emoteSounds id: MaleSlime sounds: @@ -316,6 +334,26 @@ Ping: path: /Audio/Effects/Cargo/ping.ogg +- type: emoteSounds + id: UnisexSiliconSyndicate + params: + variation: 0.05 + sounds: + Laugh: + path: /Audio/Voice/Silicon/syndieborg_laugh.ogg + Beep: + path: /Audio/Machines/twobeep.ogg + Chime: + path: /Audio/Machines/chime.ogg + Buzz: + path: /Audio/Machines/buzz-sigh.ogg + Buzz-Two: + path: /Audio/Machines/buzz-two.ogg + Honk: + path: /Audio/Items/bikehorn.ogg + Ping: + path: /Audio/Effects/Cargo/ping.ogg + # body emotes - type: emoteSounds id: GeneralBodyEmotes diff --git a/Resources/Prototypes/Voice/speech_emotes.yml b/Resources/Prototypes/Voice/speech_emotes.yml index 1b9a36b305..9662dab2a2 100644 --- a/Resources/Prototypes/Voice/speech_emotes.yml +++ b/Resources/Prototypes/Voice/speech_emotes.yml @@ -1,88 +1,162 @@ # vocal emotes - type: emote id: Scream + name: chat-emote-name-scream category: Vocal - buttonText: "emote-chat-button-text-scream" - chatMessages: [ "emote-chat-messages-scream-1", "emote-chat-messages-scream-2", "emote-chat-messages-scream-3", "emote-chat-messages-scream-4" ] + icon: Interface/Actions/scream.png + whitelist: + components: + - Vocal + blacklist: + components: + - BorgChassis + chatMessages: ["chat-emote-msg-scream"] chatTriggers: - "emote-chat-messages-scream-1" - "emote-chat-messages-scream-2" - "emote-chat-messages-scream-3" - "emote-chat-messages-scream-4" - allowMenu: true + - type: emote id: Laugh + name: chat-emote-name-laugh category: Vocal - buttonText: "emote-chat-button-text-laugh" - chatMessages: [ "emote-chat-messages-laugh-1", "emote-chat-messages-laugh-2", "emote-chat-messages-laugh-3", "emote-chat-messages-laugh-4" ] + icon: Interface/Emotes/laugh.png + whitelist: + components: + - Vocal + blacklist: + components: + - BorgChassischatMessages + chatMessages: ["chat-emote-msg-laugh"] chatTriggers: - "emote-chat-messages-laugh-1" - "emote-chat-messages-laugh-2" - "emote-chat-messages-laugh-3" - "emote-chat-messages-laugh-4" - allowMenu: true - type: emote id: Honk + name: chat-emote-name-honk category: Vocal - chatMessages: [ "emote-chat-messages-honk-1" ] + icon: Interface/Emotes/honk.png + chatMessages: ["chat-emote-msg-honk"] + whitelist: + requireAll: true + components: + - Vocal + - BorgChassischatMessages chatTriggers: - "emote-chat-messages-honk-1" - type: emote id: Sigh + name: chat-emote-name-sigh category: Vocal - buttonText: "emote-chat-button-text-sigh" - chatMessages: [ "emote-chat-messages-sigh-1" ] + icon: Interface/Emotes/sigh.png + whitelist: + components: + - Vocal + blacklist: + components: + - BorgChassischatMessages + chatMessages: ["chat-emote-msg-sigh"] chatTriggers: - "emote-chat-messages-sigh-1" - allowMenu: true - type: emote id: Whistle + name: chat-emote-name-whistle category: Vocal - buttonText: "emote-chat-button-text-whistle" - chatMessages: [ "emote-chat-messages-whistle-1" ] + icon: Interface/Emotes/whistle.png + whitelist: + components: + - Vocal + blacklist: + components: + - BorgChassis + chatMessages: ["chat-emote-msg-whistle"] chatTriggers: - "emote-chat-messages-whistle-1" - allowMenu: true - type: emote id: Crying + name: chat-emote-name-crying category: Vocal - buttonText: "emote-chat-button-text-crying" - chatMessages: [ "emote-chat-messages-crying-1" ] + icon: Interface/Emotes/cry.png + whitelist: + components: + - Vocal + blacklist: + components: + - BorgChassis + chatMessages: ["chat-emote-msg-crying"] chatTriggers: - "emote-chat-messages-crying-1" - "emote-chat-messages-crying-2" - allowMenu: true - type: emote id: Squish + name: chat-emote-name-squish category: Vocal - chatMessages: [ "emote-chat-messages-squish-1" ] + available: false + icon: Interface/Emotes/squish.png + whitelist: + components: + - Vocal + blacklist: + components: + - BorgChassis + chatMessages: ["chat-emote-msg-squish"] chatTriggers: - "emote-chat-messages-squish-1" - type: emote id: Chitter + name: chat-emote-name-chitter category: Vocal - chatMessages: [ "emote-chat-messages-chitter-1" ] + available: false + icon: Interface/Emotes/chitter.png + whitelist: + components: + - Vocal + blacklist: + components: + - BorgChassis + chatMessages: ["chat-emote-msg-chitter"] chatTriggers: - "emote-chat-messages-chitter-1" - type: emote id: Squeak + name: chat-emote-name-squeak category: Vocal - chatMessages: [ "emote-chat-messages-squeak-1" ] + available: false + icon: Interface/Emotes/squeak.png + whitelist: + components: + - Vocal + blacklist: + components: + - BorgChassis + chatMessages: ["chat-emote-msg-squeak"] chatTriggers: - "emote-chat-messages-squeak-1" - type: emote id: Click + name: chat-emote-name-click category: Vocal - chatMessages: [ "emote-chat-messages-click-1" ] + available: false + icon: Interface/Emotes/click.png + whitelist: + components: + - Vocal + blacklist: + components: + - BorgChassis + chatMessages: ["chat-emote-msg-click"] chatTriggers: - "emote-chat-messages-click-1" - "emote-chat-messages-click-2" @@ -90,18 +164,31 @@ # hand emotes - type: emote id: Clap + name: chat-emote-name-clap category: Hands - buttonText: "emote-chat-button-text-clap" - chatMessages: [ "emote-chat-messages-clap-1" ] + icon: Interface/Emotes/clap.png + whitelist: + components: + - Hands + blacklist: + components: + - BorgChassis + chatMessages: ["chat-emote-msg-clap"] chatTriggers: - "emote-chat-messages-clap-1" - allowMenu: true - type: emote id: Snap + name: chat-emote-name-snap category: Hands - buttonText: "emote-chat-button-text-snap" - chatMessages: [ "emote-chat-messages-snap-1" ] # snaps <{THEIR($ent)}> fingers? + icon: Interface/Emotes/snap.png + whitelist: + components: + - Hands + blacklist: + components: + - BorgChassis + chatMessages: ["chat-emote-msg-snap"] # snaps <{THEIR($ent)}> fingers? chatTriggers: - "emote-chat-messages-snap-1" - "emote-chat-messages-snap-2" @@ -110,54 +197,98 @@ - "emote-chat-messages-snap-5" - "emote-chat-messages-snap-6" - "emote-chat-messages-snap-7" - allowMenu: true - type: emote id: Salute + name: chat-emote-name-salute category: Hands - buttonText: "emote-chat-button-text-salute" - chatMessages: [ "emote-chat-messages-salute-1" ] + icon: Interface/Emotes/salute.png + whitelist: + components: + - Hands + blacklist: + components: + - BorgChassis + chatMessages: ["chat-emote-msg-salute"] chatTriggers: - "emote-chat-messages-salute-1" - allowMenu: true - type: emote id: DefaultDeathgasp - chatMessages: [ "emote-chat-messages-deathgasp-1" ] + name: chat-emote-name-deathgasp + icon: Interface/Emotes/deathgasp.png + whitelist: + components: + - MobState + chatMessages: ["chat-emote-msg-deathgasp"] + chatTriggers: + - deathgasp + +- type: emote + id: MonkeyDeathgasp + name: chat-emote-name-deathgasp + icon: Interface/Emotes/deathgasp.png + chatMessages: ["chat-emote-msg-deathgasp-monkey"] - type: emote id: SiliconDeathgasp - chatMessages: [ "emote-chat-messages-deathgasp-ipc-1" ] + name: chat-emote-name-deathgasp + chatMessages: ["chat-emote-msg-deathgasp-silicon"] + chatTriggers: + - sdeathgasp - type: emote id: Buzz + name: chat-emote-name-buzz category: Vocal - chatMessages: [ "emote-chat-messages-buzz-1" ] + icon: Interface/Emotes/buzz.png + whitelist: + requireAll: true + components: + - BorgChassis + - Vocal + chatMessages: ["chat-emote-msg-buzz"] chatTriggers: - "emote-chat-messages-buzz-1" - type: emote id: Weh + name: chat-emote-name-weh category: Vocal - chatMessages: [ "emote-chat-messages-weh-1" ] + icon: Interface/Emotes/weh.png + chatMessages: [ wehs ] - type: emote id: Chirp + name: chat-emote-name-chirp category: Vocal - chatMessages: [ "emote-chat-messages-chirp-1" ] + icon: Interface/Emotes/chirp.png + whitelist: + requireAll: true + components: + - Nymph + chatMessages: ["chat-emote-msg-chirp"] chatTriggers: - "emote-chat-messages-chirp-1" # Machine Emotes - type: emote id: Beep + name: chat-emote-name-beep category: Vocal - chatMessages: [ "emote-chat-messages-beep-1" ] + icon: Interface/Emotes/beep.png + whitelist: + requireAll: true + components: + - BorgChassis + - Vocal + chatMessages: ["chat-emote-msg-beep"] chatTriggers: - "emote-chat-messages-beep-1" - type: emote id: Boop + name: chat-emote-name-boop category: Vocal chatMessages: [ "emote-chat-messages-boop-1" ] chatTriggers: @@ -165,27 +296,49 @@ - type: emote id: Chime + name: chat-emote-name-chime category: Vocal - chatMessages: [ "emote-chat-messages-chime-1" ] + icon: Interface/Emotes/chime.png + whitelist: + requireAll: true + components: + - BorgChassis + - Vocal + chatMessages: ["chat-emote-msg-chime"] chatTriggers: - "emote-chat-messages-chime-1" - type: emote id: Buzz-Two + name: chat-emote-name-buzztwo category: Vocal - chatMessages: [ "emote-chat-messages-buzz-two-1" ] + icon: Interface/Emotes/buzztwo.png + whitelist: + requireAll: true + components: + - BorgChassis + - Vocal + chatMessages: ["chat-emote-msg-buzzestwo"] chatTriggers: - "emote-chat-messages-buzz-two-1" - type: emote id: Ping + name: chat-emote-name-ping category: Vocal - chatMessages: [ "emote-chat-messages-ping-1" ] + icon: Interface/Emotes/ping.png + whitelist: + requireAll: true + components: + - BorgChassis + - Vocal + chatMessages: ["chat-emote-msg-ping"] chatTriggers: - "emote-chat-messages-ping-1" - type: emote - id: Whirr # uncategorized as it is generic - chatMessages: [ "emote-chat-messages-whirr-1" ] + id: Whirr + name: chat-emote-name-whirr + chatMessages: [ whirrs ] chatTriggers: - "emote-chat-messages-whirr-1" diff --git a/Resources/Prototypes/Voice/speech_sounds.yml b/Resources/Prototypes/Voice/speech_sounds.yml index 2e7e7bf989..a490c734d3 100644 --- a/Resources/Prototypes/Voice/speech_sounds.yml +++ b/Resources/Prototypes/Voice/speech_sounds.yml @@ -52,6 +52,24 @@ exclaimSound: path: /Audio/Machines/vending_jingle.ogg +- type: speechSounds + id: Borg + saySound: + path: /Audio/Voice/Talk/Silicon/borg.ogg + askSound: + path: /Audio/Voice/Talk/Silicon/borg_ask.ogg + exclaimSound: + path: /Audio/Voice/Talk/Silicon/borg_exclaim.ogg + +- type: speechSounds + id: SyndieBorg + saySound: + path: /Audio/Voice/Talk/Silicon/syndieborg.ogg + askSound: + path: /Audio/Voice/Talk/Silicon/syndieborg_ask.ogg + exclaimSound: + path: /Audio/Voice/Talk/Silicon/syndieborg_exclaim.ogg + - type: speechSounds id: Pai saySound: diff --git a/Resources/Prototypes/Voice/tail_emotes.yml b/Resources/Prototypes/Voice/tail_emotes.yml index be6064b652..965b7da8d9 100644 --- a/Resources/Prototypes/Voice/tail_emotes.yml +++ b/Resources/Prototypes/Voice/tail_emotes.yml @@ -1,6 +1,7 @@ - type: emote id: WagTail - chatMessages: [wags tail] + name: chat-emote-name-tailwag + chatMessages: [wags their tail] chatTriggers: - wags tail - wags his tail diff --git a/Resources/Prototypes/Wires/layouts.yml b/Resources/Prototypes/Wires/layouts.yml index 8d6be674e8..cf76e0ea61 100644 --- a/Resources/Prototypes/Wires/layouts.yml +++ b/Resources/Prototypes/Wires/layouts.yml @@ -1,6 +1,7 @@ - type: wireLayout id: Airlock wires: + - !type:AccessWireAction - !type:PowerWireAction - !type:PowerWireAction pulseTimeout: 15 @@ -44,6 +45,7 @@ - type: wireLayout id: HighSec wires: + - !type:AccessWireAction - !type:PowerWireAction pulseTimeout: 10 - !type:DoorBoltWireAction diff --git a/Resources/Prototypes/XenoArch/Effects/normal_effects.yml b/Resources/Prototypes/XenoArch/Effects/normal_effects.yml index b9564c0366..a343ebd77b 100644 --- a/Resources/Prototypes/XenoArch/Effects/normal_effects.yml +++ b/Resources/Prototypes/XenoArch/Effects/normal_effects.yml @@ -109,7 +109,7 @@ components: - type: PointLight radius: 8 - energy: 25 + energy: 10 color: "#daa3fd" - type: TriggerArtifact - type: FlashOnTrigger @@ -584,6 +584,24 @@ messages: - shuffle-artifact-popup +- type: artifactEffect + id: EffectT4PartsSpawn + targetDepth: 3 + effectHint: artifact-effect-hint-creation + components: + - type: SpawnArtifact + maxSpawns: 10 + spawns: + - id: BluespaceCapacitorStockPart + prob: 0.5 + maxAmount: 3 + - id: BluespaceManipulatorStockPart + prob: 0.5 + maxAmount: 3 + - id: BluespaceMatterBinStockPart + prob: 0.5 + maxAmount: 3 + - type: artifactEffect id: EffectFoamDangerous targetDepth: 3 diff --git a/Resources/Prototypes/XenoArch/Effects/utility_effects.yml b/Resources/Prototypes/XenoArch/Effects/utility_effects.yml index 911c1c2e88..84df09af33 100644 --- a/Resources/Prototypes/XenoArch/Effects/utility_effects.yml +++ b/Resources/Prototypes/XenoArch/Effects/utility_effects.yml @@ -214,8 +214,8 @@ permanentComponents: - type: UserInterface interfaces: - - key: enum.SignalLinkerUiKey.Key - type: SignalPortSelectorBoundUserInterface + enum.SignalLinkerUiKey.Key: + type: SignalPortSelectorBoundUserInterface - type: ToolTileCompatible - type: Tool qualities: diff --git a/Resources/Prototypes/_White/Accents/full_replacements.yml b/Resources/Prototypes/_White/Accents/full_replacements.yml new file mode 100644 index 0000000000..19795ecac3 --- /dev/null +++ b/Resources/Prototypes/_White/Accents/full_replacements.yml @@ -0,0 +1,5 @@ +- type: accent + id: gondola + fullReplacements: + - accent-words-gondola-1 + diff --git a/Resources/Prototypes/_White/Actions/types.yml b/Resources/Prototypes/_White/Actions/types.yml new file mode 100644 index 0000000000..716228cffe --- /dev/null +++ b/Resources/Prototypes/_White/Actions/types.yml @@ -0,0 +1,57 @@ +- type: entity + id: ActivateHardlightSpearImplant + name: Create hardlight spear + description: Creates hardlight spear in your hands. + noSpawn: true + components: + - type: InstantAction + useDelay: 1.5 + itemIconStyle: BigAction + priority: -20 + icon: + sprite: _White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi + state: spear + event: !type:ActivateSpawnImplantEvent + +- type: entity + id: ActivateSmokeImplant + name: Release a cloud of smoke + description: Releases a cloud of smoke around you. + noSpawn: true + components: + - type: InstantAction + useDelay: 20 + itemIconStyle: BigAction + priority: -20 + icon: + sprite: Objects/Weapons/Grenades/smoke.rsi + state: icon + event: !type:ActivateImplantEvent + +- type: entity + id: ToggleNightVision + name: Switch night vision + description: Switches night vision. + noSpawn: true + components: + - type: InstantAction + itemIconStyle: BigAction + priority: -20 + icon: + sprite: _White/Clothing/Eyes/Goggles/nightvision.rsi + state: icon + event: !type:ToggleNightVisionEvent + +- type: entity + id: ToggleThermalVision + name: Switch Thermal vision + description: Switches Thermal vision. + noSpawn: true + components: + - type: InstantAction + itemIconStyle: BigAction + priority: -20 + icon: + sprite: _White/Clothing/Eyes/Goggles/thermal.rsi + state: icon + event: !type:ToggleThermalVisionEvent \ No newline at end of file diff --git a/Resources/Prototypes/_White/Catalog/Fills/Crates/npc.yml b/Resources/Prototypes/_White/Catalog/Fills/Crates/npc.yml new file mode 100644 index 0000000000..4fdc77df23 --- /dev/null +++ b/Resources/Prototypes/_White/Catalog/Fills/Crates/npc.yml @@ -0,0 +1,9 @@ +- type: entity + parent: CrateLivestock + id: CrateNPCGondola + name: Gondola crate + description: A crate containing a single Gondola. + components: + - type: StorageFill + contents: + - id: MobGondola \ No newline at end of file diff --git a/Resources/Prototypes/_White/Catalog/uplink_catalog.yml b/Resources/Prototypes/_White/Catalog/uplink_catalog.yml index c58efd96c6..cd549e5c7d 100644 --- a/Resources/Prototypes/_White/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/_White/Catalog/uplink_catalog.yml @@ -19,11 +19,10 @@ - UplinkUtility - type: listing - id: UplinkBetrayalKnife - name: uplink-betrayal-knife-name - description: uplink-betrayal-knife-desc - icon: { sprite: /Textures/_White/Objects/Weapons/Melee/Daggers/betrayal_knife.rsi, state: icon } - productEntity: BetrayalKnife + id: UplinkBetrayalDagger + name: uplink-betrayal-dagger-name + description: uplink-betrayal-dagger-desc + productEntity: BetrayalDagger cost: Telecrystal: 10 categories: @@ -39,7 +38,6 @@ id: UplinkMiniEbow name: uplink-ebow-name description: uplink-ebow-desc - icon: { sprite: /Textures/_White/Objects/Weapons/Guns/Battery/mini-ebow.rsi, state: icon } productEntity: EnergyCrossbowMini cost: Telecrystal: 10 @@ -50,4 +48,150 @@ blacklist: tags: - NukeOpsUplink - saleLimit: 1 \ No newline at end of file + saleLimit: 1 + +- type: listing + id: UplinkHardlightSpearImplanter + name: uplink-hardlight-spear-implant-name + description: uplink-hardlight-spear-implant-desc + icon: { sprite: /Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi, state: spear } + productEntity: HardlightSpearImplanter + cost: + Telecrystal: 12 + categories: + - UplinkImplants + conditions: + - !type:StoreWhitelistCondition + blacklist: + tags: + - NukeOpsUplink + saleLimit: 1 + +- type: listing + id: NeuroControlImplanter + name: uplink-neuro-control-name + description: uplink-neuro-control-desc + icon: { sprite: /Textures/Interface/Alerts/stamina.rsi, state: stamina5 } + productEntity: NeuroStabilizationImplanter + cost: + Telecrystal: 2 + categories: + - UplinkImplants + +- type: listing + id: UplinkImplanterSyndi + name: uplink-implanter-name + description: uplink-implanter-desc + productEntity: ImplanterSyndi + cost: + Telecrystal: 1 + categories: + - UplinkImplants + +- type: listing + id: UplinkSmokeImplanter + name: uplink-smoke-implant-name + description: uplink-smoke-implant-desc + icon: { sprite: /Textures/Objects/Weapons/Grenades/smoke.rsi, state: icon } + productEntity: SmokeImplanter + cost: + Telecrystal: 2 + categories: + - UplinkImplants + +# Night Vision + +- type: listing + id: UplinkNightGoggles + name: uplink-night-vision-name + description: uplink-night-vision-desc + productEntity: ClothingEyesNightVisionGogglesSyndie + cost: + Telecrystal: 3 + categories: + - UplinkArmor + conditions: + - !type:StoreWhitelistCondition + blacklist: + tags: + - NukeOpsUplink + +- type: listing + id: UplinkNightGogglesNukie + name: uplink-night-vision-name + description: uplink-night-vision-desc + productEntity: ClothingEyesNightVisionGogglesNukie + cost: + Telecrystal: 3 + categories: + - UplinkArmor + conditions: + - !type:StoreWhitelistCondition + whitelist: + tags: + - NukeOpsUplink + +# Thermal Vision + +- type: listing + id: UplinkThermalGoggles + name: uplink-thermal-vision-name + description: uplink-thermal-vision-desc + productEntity: ClothingEyesThermalVisionGogglesSyndie + cost: + Telecrystal: 3 + categories: + - UplinkArmor + +- type: listing + id: UplinkThermalGogglesNukie + name: uplink-thermal-vision-name + description: uplink-thermal-vision-desc + productEntity: ClothingEyesThermalVisionGogglesNukie + cost: + Telecrystal: 3 + categories: + - UplinkArmor + conditions: + - !type:StoreWhitelistCondition + whitelist: + tags: + - NukeOpsUplink + +- type: listing + id: UplinkMindSlaveImplanter + name: uplink-mind-slave + description: uplink-mind-slave-desc + icon: { sprite: /Textures/_White/Overlays/mindslave.rsi, state: master } + productEntity: MindSlaveImplanter + cost: + Telecrystal: 6 + categories: + - UplinkImplants + +- type: listing + id: UplinkBloodDagger + name: uplink-blood-dagger-name + description: uplink-blood-dagger-desc + productEntity: BloodDagger + cost: + Telecrystal: 8 + categories: + - UplinkWeapons + conditions: + - !type:StoreWhitelistCondition + blacklist: + tags: + - NukeOpsUplink + saleLimit: 1 + +- type: listing + id: UplinkCrateNPCGondola + name: uplink-gondola-name + description: uplink-gondola-desc + icon: { sprite: /Textures/_White/Mobs/Animals/gondola.rsi, state: icon } + productEntity: CrateNPCGondola + cost: + Telecrystal: 2 + categories: + - UplinkUtility \ No newline at end of file diff --git a/Resources/Prototypes/_White/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/_White/Entities/Clothing/Eyes/glasses.yml index 319ae9b499..c98d1cc681 100644 --- a/Resources/Prototypes/_White/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/_White/Entities/Clothing/Eyes/glasses.yml @@ -1,5 +1,5 @@ - type: entity - parent: ClothingEyesBase + parent: [ ClothingEyesBase, ShowSecurityIcons ] id: ClothingEyesGlassesMaid name: maid's sunglasses description: Maid's sunglasses. Clean and cute. @@ -12,4 +12,3 @@ - type: Tag tags: - WhitelistChameleon - - type: ShowSecurityIcons diff --git a/Resources/Prototypes/_White/Entities/Clothing/Eyes/goggles.yml b/Resources/Prototypes/_White/Entities/Clothing/Eyes/goggles.yml new file mode 100644 index 0000000000..bfb7c6f9c5 --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Clothing/Eyes/goggles.yml @@ -0,0 +1,71 @@ +# Night Vision Goggles + +- type: entity + parent: ClothingEyesBase + id: ClothingEyesNightVisionGoggles + name: night vision goggles + description: Now you can see in the dark! + components: + - type: Sprite + sprite: _White/Clothing/Eyes/Goggles/nightvision.rsi + - type: Clothing + sprite: _White/Clothing/Eyes/Goggles/nightvision.rsi + - type: ClothingGrantComponent + component: + - type: NightVision + +- type: entity + parent: ClothingEyesNightVisionGoggles + id: ClothingEyesNightVisionGogglesSyndie + suffix: "Chameleon" + components: + - type: ChameleonClothing + slot: [eyes] + default: ClothingEyesGlassesSunglasses + - type: UserInterface + interfaces: + enum.ChameleonUiKey.Key: + type: ChameleonBoundUserInterface + +- type: entity + parent: [ClothingEyesNightVisionGogglesSyndie, ShowSecurityIcons] + id: ClothingEyesNightVisionGogglesNukie + suffix: "Chameleon, NukeOps" + components: + - type: ShowSyndicateIcons + +# Thermal Vision Goggles + +- type: entity + parent: ClothingEyesBase + id: ClothingEyesThermalVisionGoggles + name: thermal vision goggles + description: Now you can see everyone! + components: + - type: Sprite + sprite: _White/Clothing/Eyes/Goggles/thermal.rsi + - type: Clothing + sprite: _White/Clothing/Eyes/Goggles/thermal.rsi + - type: ClothingGrantComponent + component: + - type: ThermalVision + +- type: entity + parent: ClothingEyesThermalVisionGoggles + id: ClothingEyesThermalVisionGogglesSyndie + suffix: "Chameleon" + components: + - type: ChameleonClothing + slot: [eyes] + default: ClothingEyesGlassesSunglasses + - type: UserInterface + interfaces: + enum.ChameleonUiKey.Key: + type: ChameleonBoundUserInterface + +- type: entity + parent: [ClothingEyesThermalVisionGogglesSyndie, ShowSecurityIcons] + id: ClothingEyesThermalVisionGogglesNukie + suffix: "Chameleon, NukeOps" + components: + - type: ShowSyndicateIcons \ No newline at end of file diff --git a/Resources/Prototypes/_White/Entities/Clothing/Head/misc.yml b/Resources/Prototypes/_White/Entities/Clothing/Head/misc.yml new file mode 100644 index 0000000000..1ac8f2131d --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Clothing/Head/misc.yml @@ -0,0 +1,10 @@ +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatToyDemon + name: toy demon horns + description: Plastic toy demon horns made especially for the spooky day and maybe not only for this day. They smell of hell... + components: + - type: Sprite + sprite: _White/Clothing/Head/Misc/toy_demon.rsi + - type: Clothing + sprite: _White/Clothing/Head/Misc/toy_demon.rsi diff --git a/Resources/Prototypes/_White/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/_White/Entities/Clothing/Masks/masks.yml new file mode 100644 index 0000000000..a2a8893c9b --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Clothing/Masks/masks.yml @@ -0,0 +1,13 @@ +- type: entity + parent: ClothingMaskBase + id: ClothingMaskToyVampireFangs + name: toy vampire fangs + description: Plastic toy vampire fangs made especially for the spooky day and maybe not only for this day. They smell of blood... + components: + - type: Sprite + sprite: _White/Clothing/Mask/toy_vampire_fangs.rsi + - type: Clothing + sprite: _White/Clothing/Mask/toy_vampire_fangs.rsi + - type: Tag + tags: + - IPCMaskWearable \ No newline at end of file diff --git a/Resources/Prototypes/_White/Entities/Clothing/Neck/cloaks.yml b/Resources/Prototypes/_White/Entities/Clothing/Neck/cloaks.yml new file mode 100644 index 0000000000..1856e0f295 --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Clothing/Neck/cloaks.yml @@ -0,0 +1,8 @@ +- type: entity + parent: ClothingNeckBase + id: ClothingNeckCloakVampire + name: vampire cloak + description: '"The dark and blood colored cloack of a tyrannical nobility of long ago, who gave their souls to the devil for eternal youth and power." Reads the label behind the collar of this cloack.' + components: + - type: Sprite + sprite: _White/Clothing/Neck/Cloaks/vampire.rsi diff --git a/Resources/Prototypes/_White/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/_White/Entities/Clothing/Uniforms/jumpsuits.yml index 5dea889aa9..1a8942fe8a 100644 --- a/Resources/Prototypes/_White/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/_White/Entities/Clothing/Uniforms/jumpsuits.yml @@ -8,3 +8,14 @@ sprite: _White/Clothing/Uniforms/Jumpsuit/hobo.rsi - type: Clothing sprite: _White/Clothing/Uniforms/Jumpsuit/hobo.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitSkeletonHalloween + name: skeleton costume + description: A suit made of fabric with an anatomically correct humanoid skeleton pattern. Made especially for a spooky day and maybe not only for this day. + components: + - type: Sprite + sprite: _White/Clothing/Uniforms/Jumpsuit/skeleton.rsi + - type: Clothing + sprite: _White/Clothing/Uniforms/Jumpsuit/skeleton.rsi diff --git a/Resources/Prototypes/_White/Entities/Effects/puddle.yml b/Resources/Prototypes/_White/Entities/Effects/puddle.yml new file mode 100644 index 0000000000..3a726e10fb --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Effects/puddle.yml @@ -0,0 +1,37 @@ +- type: entity + name: Footstep + id: Footstep + save: false + description: Trace of liquid + components: + - type: Clickable + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepWater + params: + volume: 3 + - type: Transform + noRot: false + - type: Sprite + drawdepth: FloorObjects + color: "#FFFFFF80" + - type: Physics + bodyType: Static + - type: Fixtures + fixtures: + slipFixture: + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.4,0.4,0.4" + mask: + - ItemMask + layer: + - SlipLayer + hard: false + - type: SolutionContainerManager + solutions: + step: { maxVol: 2 } + - type: FootPrint + - type: Puddle + solution: step + - type: Appearance \ No newline at end of file diff --git a/Resources/Prototypes/_White/Entities/Markers/Spawners/mobs.yml b/Resources/Prototypes/_White/Entities/Markers/Spawners/mobs.yml new file mode 100644 index 0000000000..b6defdd525 --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Markers/Spawners/mobs.yml @@ -0,0 +1,13 @@ +- type: entity + parent: MarkerBase + id: SpawnMobGondola + name: Gondola spawner + components: + - type: Sprite + layers: + - state: green + - sprite: _White/Mobs/Animals/gondola.rsi + state: icon + - type: ConditionalSpawner + prototypes: + - MobGondola \ No newline at end of file diff --git a/Resources/Prototypes/_White/Entities/Mobs/NPCs/gondola.yml b/Resources/Prototypes/_White/Entities/Mobs/NPCs/gondola.yml new file mode 100644 index 0000000000..1c669b48f7 --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Mobs/NPCs/gondola.yml @@ -0,0 +1,94 @@ +- type: entity + parent: + - MobRespirator + - MobAtmosStandard + - BaseSimpleMob + - MobBloodstream + - MobFlammable + id: MobGondola + name: Gondola + description: Having no hands, he embodies the Taoist principle of Wu wei (inaction), and the expression on his smiling face shows his complete acceptance of the world as it is. + components: + - type: FloatingVisuals + - type: RotationVisuals + defaultRotation: 90 + horizontalRotation: 90 + - type: Sprite + sprite: _White/Mobs/Animals/gondola.rsi + layers: + - state: gondola_body_medium + map: [ "enum.DamageStateVisualLayers.Base" ] + color: "#6e4e40" + shader: unshaded + - state: gondola_moustache_large_short + map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + shader: unshaded + - type: RandomSprite + available: + - enum.DamageStateVisualLayers.Base: + gondola_body_long: Browns + gondola_body_medium: Browns + enum.DamageStateVisualLayers.BaseUnshaded: + gondola_moustache_large: "" + gondola_moustache_small: "" + - enum.DamageStateVisualLayers.Base: + gondola_body_medium: Browns + gondola_body_short: Browns + enum.DamageStateVisualLayers.BaseUnshaded: + gondola_moustache_large_short: "" + gondola_moustache_small_short: "" + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.2 + density: 50 + mask: + - MobMask + layer: + - MobLayer + - type: Butcherable + spawned: + - id: FoodMeatGondola + amount: 3 + - type: Bloodstream + bloodMaxVolume: 150 + - type: Damageable + damageContainer: Biological + damageModifierSet: Scale + - type: Tag + tags: + - VimPilot + - type: MovementSpeedModifier + baseWalkSpeed: 1 + baseSprintSpeed: 2 + - type: Speech + speechVerb: Gondola + speechSounds: Gondola + - type: ReplacementAccent + accent: gondola + - type: HTN + rootTask: + task: IdleCompound + - type: Body + prototype: Animal + - type: NameIdentifier + group: GenericNumber + - type: SlowOnDamage + speedModifierThresholds: + 60: 0.7 + 80: 0.5 + - type: MobPrice + price: 1000 + - type: Perishable + - type: GhostRole + makeSentient: true + allowSpeech: true + allowMovement: true + name: ghost-role-information-gondola-name + description: ghost-role-information-gondola-description + - type: GhostTakeoverAvailable + - type: NpcFactionMember + factions: + - Passive diff --git a/Resources/Prototypes/_White/Entities/Objects/Consumable/Food/candy.yml b/Resources/Prototypes/_White/Entities/Objects/Consumable/Food/candy.yml new file mode 100644 index 0000000000..bef2cb6642 --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Objects/Consumable/Food/candy.yml @@ -0,0 +1,467 @@ +- type: entity + name: chocolate skull + parent: FoodSnackBase + id: FoodSnackCandySkullChocolate + description: A regular chocolate skull candy. Tastes like death. + components: + - type: FlavorProfile + flavors: + - chocolate + - sweet + - type: Sprite + sprite: _White/Objects/Consumable/Food/candy.rsi + state: scull_chocolate + - type: Item + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Sugar + Quantity: 5 + - ReagentId: Theobromine + Quantity: 3 + - ReagentId: CocoaPowder + Quantity: 1 + +- type: entity + name: candy skull + parent: FoodSnackBase + id: FoodSnackCandySkull + description: A regular skull candy. Tastes like death. + components: + - type: FlavorProfile + flavors: + - sweet + - type: Sprite + sprite: _White/Objects/Consumable/Food/candy.rsi + state: scull + - type: Item + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Sugar + Quantity: 5 + +- type: entity + name: candy skull + parent: FoodSnackBase + id: FoodSnackCandyGhost + description: A regular ghost candy. Tastes like death and ectoplasm. + components: + - type: FlavorProfile + flavors: + - sweet + - type: Sprite + sprite: _White/Objects/Consumable/Food/candy.rsi + state: ghost + - type: Item + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Sugar + Quantity: 5 + +- type: entity + name: candy pumpkin + parent: FoodSnackBase + id: FoodSnackCandyPumpkin + description: A regular pumpkin candy. Tastes like pumpkin, nothing unexpeccted. + components: + - type: FlavorProfile + flavors: + - sweet + - type: Sprite + sprite: _White/Objects/Consumable/Food/candy.rsi + state: pumpkin + - type: Item + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Sugar + Quantity: 5 + +- type: entity + name: cotton + parent: FoodSnackBase + id: FoodSnackCandyCotton + description: A regular cotton candy. Tastes sweet and airy. + components: + - type: FlavorProfile + flavors: + - sweet + - type: Sprite + sprite: _White/Objects/Consumable/Food/candy.rsi + state: cotton_candy + - type: Item + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Sugar + Quantity: 5 + +- type: entity + name: lollipop + parent: FoodSnackBase + id: FoodSnackCandyLollipopPink + description: A regular lollipop. Tastes very sweet. + components: + - type: FlavorProfile + flavors: + - sweet + - type: Sprite + sprite: _White/Objects/Consumable/Food/candy.rsi + state: lollipop_pink + - type: Item + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Sugar + Quantity: 5 + +- type: entity + name: lollipop + parent: FoodSnackBase + id: FoodSnackCandyLollipopGreen + description: A regular lollipop.Tastes like an apple. + components: + - type: FlavorProfile + flavors: + - sweet + - type: Sprite + sprite: _White/Objects/Consumable/Food/candy.rsi + state: lollipop_green + - type: Item + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Sugar + Quantity: 5 + +- type: entity + name: lollipop + parent: FoodSnackBase + id: FoodSnackCandyLollipopOrange + description: A regular lollipop.Tastes like an orange. + components: + - type: FlavorProfile + flavors: + - sweet + - type: Sprite + sprite: _White/Objects/Consumable/Food/candy.rsi + state: lollipop_orange + - type: Item + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Sugar + Quantity: 5 + +- type: entity + name: lollipop + parent: FoodSnackBase + id: FoodSnackCandyLollipopRainbow + description: A regular lollipop. Tastes very sweet. + components: + - type: FlavorProfile + flavors: + - sweet + - type: Sprite + sprite: _White/Objects/Consumable/Food/candy.rsi + state: lollipop_rainbow + - type: Item + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Sugar + Quantity: 5 + +- type: entity + name: gummy bear + parent: FoodSnackBase + id: FoodSnackCandyGummyBear + description: A regular gummy bear. Tastes sweet. + components: + - type: FlavorProfile + flavors: + - sweet + - type: Sprite + sprite: _White/Objects/Consumable/Food/candy.rsi + layers: + - map: [ "color" ] + state: gumbear_greyscale + - type: RandomSprite + available: + - color: + gumbear_greyscale: Emagged + - type: Item + size: Small + - type: SolutionContainerManager + solutions: + food: + maxVol: 30 + reagents: + - ReagentId: Sugar + Quantity: 15 + +- type: entity + name: small gummy bear + parent: FoodSnackBase + id: FoodSnackCandyGummyBearSmall + description: A regular small gummy bear. Tastes sweet. + components: + - type: FlavorProfile + flavors: + - sweet + - type: Sprite + sprite: _White/Objects/Consumable/Food/candy.rsi + layers: + - map: [ "color" ] + state: gummybear_greyscale + - type: RandomSprite + available: + - color: + gummybear_greyscale: Emagged + - type: Item + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Sugar + Quantity: 5 + +- type: entity + name: big gummy bear + parent: FoodSnackBase + id: FoodSnackCandyGummyBearBigValera + description: A regular big gummy bear. Tastes sweet, like the pain of this bear from various experiments and like memories. For some reason you want to call him Valera. + components: + - type: FlavorProfile + flavors: + - sweet + - type: Sprite + sprite: _White/Objects/Consumable/Food/candy.rsi + state: valerabear + - type: Item + size: Normal + - type: SolutionContainerManager + solutions: + food: + maxVol: 100 + reagents: + - ReagentId: Sugar + Quantity: 50 + +- type: entity + name: small gummy bear + parent: FoodSnackBase + id: FoodSnackCandyGummyBearSmallValera + description: A regular small gummy bear. Tastes sweet. For some reason you want to call him Valera. + components: + - type: FlavorProfile + flavors: + - sweet + - type: Sprite + sprite: _White/Objects/Consumable/Food/candy.rsi + state: gummybear + - type: Item + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Sugar + Quantity: 5 + +- type: entity + name: gummy bear + parent: FoodSnackBase + id: FoodSnackCandyGummyBearValera + description: A regular gummy bear. Tastes sweet. For some reason you want to call him Valera. + components: + - type: FlavorProfile + flavors: + - sweet + - type: Sprite + sprite: _White/Objects/Consumable/Food/candy.rsi + state: gumbear + - type: Item + size: Small + - type: SolutionContainerManager + solutions: + food: + maxVol: 30 + reagents: + - ReagentId: Sugar + Quantity: 15 + +- type: entity + name: gummy bean + parent: FoodSnackBase + id: FoodSnackCandyGummyBeanBrown + description: A regular gummy bean. Tastes like Cola. + components: + - type: FlavorProfile + flavors: + - sweet + - type: Sprite + sprite: _White/Objects/Consumable/Food/candy.rsi + state: bean_brown + - type: Item + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Sugar + Quantity: 5 + +- type: entity + name: gummy bean + parent: FoodSnackBase + id: FoodSnackCandyGummyBeanGreen + description: A regular gummy bean. Tastes like an apple. + components: + - type: FlavorProfile + flavors: + - sweet + - type: Sprite + sprite: _White/Objects/Consumable/Food/candy.rsi + state: bean_green + - type: Item + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Sugar + Quantity: 5 + +- type: entity + name: gummy bean + parent: FoodSnackBase + id: FoodSnackCandyGummyBeanPink + description: A regular gummy bean. Tastes very sweet. + components: + - type: FlavorProfile + flavors: + - sweet + - type: Sprite + sprite: _White/Objects/Consumable/Food/candy.rsi + state: bean_pink + - type: Item + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Sugar + Quantity: 5 + +- type: entity + name: gummy bean + parent: FoodSnackBase + id: FoodSnackCandyGummyBeanRed + description: A regular gummy bean. Tastes like strawberry. + components: + - type: FlavorProfile + flavors: + - sweet + - type: Sprite + sprite: _White/Objects/Consumable/Food/candy.rsi + state: bean_red + - type: Item + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Sugar + Quantity: 5 + +- type: entity + name: gummy bean + parent: FoodSnackBase + id: FoodSnackCandyGummyBeanWhite + description: A regular gummy bean. Tastes like party and confetti. + components: + - type: FlavorProfile + flavors: + - sweet + - type: Sprite + sprite: _White/Objects/Consumable/Food/candy.rsi + state: bean_white + - type: Item + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Sugar + Quantity: 5 + +- type: entity + name: gummy eye + parent: BaseItem + id: FoodSnackCandyGummyEye + description: A regular gummy eye in a wrapper. + components: + - type: Sprite + sprite: _White/Objects/Consumable/Food/candy.rsi + state: eye + - type: Item + size: Tiny + - type: SpawnItemsOnUse + items: + - id: FoodPacketCandyGummyEyeTrash + - id: FoodSnackCandyGummyEyeOpen + sound: + path: /Audio/Effects/unwrap.ogg + +- type: entity + name: gummy eye + parent: FoodSnackBase + id: FoodSnackCandyGummyEyeOpen + description: A regular gummy eye. Tastes sweet and like photoreceptors in the eye. + components: + - type: FlavorProfile + flavors: + - sweet + - type: Sprite + sprite: _White/Objects/Consumable/Food/candy.rsi + state: eye_open + - type: Item + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Sugar + Quantity: 5 + +- type: entity + noSpawn: true + parent: FoodPacketTrash + id: FoodPacketCandyGummyEyeTrash + name: gymmy eye wrapper + components: + - type: Sprite + sprite: _White/Objects/Consumable/Food/candy.rsi + state: eye_trash diff --git a/Resources/Prototypes/_White/Entities/Objects/Consumable/Food/meat.yml b/Resources/Prototypes/_White/Entities/Objects/Consumable/Food/meat.yml new file mode 100644 index 0000000000..064637cf6b --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Objects/Consumable/Food/meat.yml @@ -0,0 +1,56 @@ +# RAW + +- type: entity + parent: FoodMeatRawBase + id: FoodMeatGondola + name: raw meat + description: A slab of raw meat. + suffix: Gondola + components: + - type: Sprite + state: plain + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: UncookedAnimalProteins + Quantity: 9 + - ReagentId: Fat + Quantity: 9 + - ReagentId: Tranquility + Quantity: 10 + - type: Construction + graph: GondolaSteak + node: start + defaultTarget: gondola steak + +# COOKED + +- type: entity + parent: FoodMeatBase + id: FoodMeatGondolaCooked + name: steak + description: A cooked slab of meat. Smells primal. + suffix: Gondola + components: + - type: Tag + tags: + - Cooked + - Meat + - Steak + - type: Sprite + layers: + - state: plain-cooked + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Nutriment + Quantity: 5 + - ReagentId: Protein + Quantity: 5 + - ReagentId: Tranquility + Quantity: 15 + - type: Construction + graph: GondolaSteak + node: gondola steak \ No newline at end of file diff --git a/Resources/Prototypes/_White/Entities/Objects/Decoration/halloweenpresent.yml b/Resources/Prototypes/_White/Entities/Objects/Decoration/halloweenpresent.yml new file mode 100644 index 0000000000..5d81cff384 --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Objects/Decoration/halloweenpresent.yml @@ -0,0 +1,855 @@ +- type: entity + id: PresentHalloweenBase + description: A little box with spooky surprises inside. + abstract: true + suffix: Halloween + parent: [PresentBase, BaseItem] + components: + - type: Sprite + sprite: _White/Objects/Decoration/Halloween/present.rsi + layers: + - state: base + - state: base_glow + shader: unshaded + +- type: entity + id: PresentHalloweenBaseTrash + noSpawn: true + parent: BaseItem + name: wrapping paper + description: Carefully folded, taped, and tied with a bow. Then ceremoniously ripped apart and tossed on the floor. + components: + - type: Sprite + sprite: _White/Objects/Decoration/Halloween/present.rsi + layers: + - state: base_unwrapped + - type: Tag + tags: + - Trash + - type: SpaceGarbage + - type: TimedDespawn + lifetime: 25 + +- type: entity + id: PresentHalloweenSweetTrash + noSpawn: true + parent: BaseItem + name: wrapping paper + description: Carefully folded, taped, and tied with a bow. Then ceremoniously ripped apart and tossed on the floor. Looks edible and smells sweet. + components: + - type: Sprite + sprite: _White/Objects/Decoration/Halloween/present.rsi + layers: + - state: sweet_unwrapped + - type: Tag + tags: + - Trash + - type: SpaceGarbage + - type: SolutionContainerManager + solutions: + food: + maxVol: 1 + reagents: + - ReagentId: Sugar + Quantity: 1 + - type: FlavorProfile + - type: Food + - type: TimedDespawn + lifetime: 25 + +- type: entity + id: PresentHalloweenClothTrash + noSpawn: true + parent: BaseItem + name: wrapping paper + description: Carefully folded, taped, and tied with a bow. Then ceremoniously ripped apart and tossed on the floor. + components: + - type: Sprite + sprite: _White/Objects/Decoration/Halloween/present.rsi + layers: + - state: cloth_unwrapped + - type: Tag + tags: + - Trash + - type: SpaceGarbage + - type: TimedDespawn + lifetime: 25 + +- type: entity + id: PresentHalloweenSoul + name: present soul + description: Something small, spooky and ghostly in the form of a gift. + parent: BaseItem + noSpawn: true + components: + - type: Sprite + sprite: _White/Objects/Decoration/Halloween/presentsoul.rsi + offset: "0, 0.5" + layers: + - state: base + - state: base_glow + shader: unshaded + - type: TimedDespawn + lifetime: 6 + - type: PointLight + radius: 1.5 + energy: 1 + color: "#f0a356" + +- type: entity + id: PresentHalloweenNothing + name: present soul + description: Nothinng. + parent: BaseItem + noSpawn: true + components: + - type: Sprite + sprite: _White/Objects/Decoration/Halloween/presentsoul.rsi + layers: + - state: nothing + - type: TimedDespawn + lifetime: 0.01 + +- type: entity + id: PresentHalloweenRandom + name: spooky present + suffix: Halloween, Thematic + description: A little box with spooky surprises inside. + parent: PresentHalloweenBase + components: + - type: Sprite + sprite: _White/Objects/Decoration/Halloween/present.rsi + layers: + - state: base + - state: base_glow + shader: unshaded + - type: SpawnItemsOnUse + items: + - id: PresentHalloweenBaseTrash + - id: PresentHalloweenRandomSweet + prob: 0.5 + orGroup: GiftPool + - id: PresentHalloweenRandomALLSweet + orGroup: GiftPool + - id: PresentHalloweenRandomCloth + prob: 0.5 + orGroup: GiftPool + - id: PresentHalloweenRandomALLCloth + orGroup: GiftPool + - id: PresentHalloweenSoul + prob: 0.5 + orGroup: GiftPoolSoul + - id: PresentHalloweenNothing + orGroup: GiftPoolSoul + sound: + path: /Audio/Effects/unwrap.ogg + +- type: entity + id: PresentHalloweenRandomSweet + name: sweet spooky present + suffix: Halloween, Thematic + description: A little box with sweet surprises inside. + parent: PresentHalloweenBase + components: + - type: Sprite + sprite: _White/Objects/Decoration/Halloween/present.rsi + layers: + - state: sweet + - state: sweet_glow + shader: unshaded + - type: SpawnItemsOnUse + items: + - id: PresentHalloweenSweetTrash + - id: FoodSnackCandySkullChocolate + orGroup: GiftPool + - id: FoodSnackCandySkull + orGroup: GiftPool + - id: FoodSnackCandyGhost + orGroup: GiftPool + - id: FoodSnackCandyPumpkin + orGroup: GiftPool + - id: FoodSnackCandyCotton + orGroup: GiftPool + - id: FoodSnackCandyLollipopPink + orGroup: GiftPool + - id: FoodSnackCandyLollipopGreen + orGroup: GiftPool + - id: FoodSnackCandyLollipopOrange + orGroup: GiftPool + - id: FoodSnackCandyLollipopRainbow + orGroup: GiftPool + - id: FoodSnackCandyGummyBear + orGroup: GiftPool + - id: FoodSnackCandyGummyBearSmall + orGroup: GiftPool + - id: FoodSnackCandyGummyBearBigValera + orGroup: GiftPool + - id: FoodSnackCandyGummyBearSmallValera + orGroup: GiftPool + - id: FoodSnackCandyGummyBearValera + orGroup: GiftPool + - id: FoodSnackCandyGummyBeanBrown + orGroup: GiftPool + - id: FoodSnackCandyGummyBeanGreen + orGroup: GiftPool + - id: FoodSnackCandyGummyBeanPink + orGroup: GiftPool + - id: FoodSnackCandyGummyBeanRed + orGroup: GiftPool + - id: FoodSnackCandyGummyBeanWhite + orGroup: GiftPool + - id: FoodSnackCandyGummyEye + orGroup: GiftPool + - id: PresentHalloweenSoul + prob: 0.5 + orGroup: GiftPoolSoul + - id: PresentHalloweenNothing + orGroup: GiftPoolSoul + sound: + path: /Audio/Effects/unwrap.ogg + +- type: entity + id: PresentHalloweenRandomALLSweet + name: sweet spooky present + suffix: Halloween, Almost all + description: A little box with sweet surprises inside. + parent: PresentHalloweenBase + components: + - type: Sprite + sprite: _White/Objects/Decoration/Halloween/present.rsi + layers: + - state: sweet + - state: sweet_glow + shader: unshaded + - type: SpawnItemsOnUse + items: + - id: PresentHalloweenSweetTrash + - id: FoodCakeLemoonSlice + orGroup: GiftPool + - id: FoodMothCheesecakeBalls + orGroup: GiftPool + - id: FoodCakeOrangeSlice + orGroup: GiftPool + - id: FoodBakedPancake + orGroup: GiftPool + - id: FoodBakedPancakeBb + orGroup: GiftPool + - id: FoodBakedPancakeCc + orGroup: GiftPool + - id: FoodCakeVanillaSlice + orGroup: GiftPool + - id: FoodCakeBirthdaySlice + orGroup: GiftPool + - id: FoodCakeClownSlice + orGroup: GiftPool + - id: FoodCakeSpacemanSlice + orGroup: GiftPool + - id: FoodCakeLimeSlice + orGroup: GiftPool + - id: FoodCakeLemonSlice + orGroup: GiftPool + - id: FoodCakeCarrotSlice + orGroup: GiftPool + - id: FoodCakePumpkinSlice + orGroup: GiftPool + - id: FoodCakeChristmasSlice + orGroup: GiftPool + - id: FoodCakeSlimeSlice + orGroup: GiftPool + - id: FoodCakeCheeseSlice + orGroup: GiftPool + - id: FoodCakePlainSlice + orGroup: GiftPool + - id: FoodCakeBrainSlice + orGroup: GiftPool + - id: FoodCakeBlueberrySlice + orGroup: GiftPool + - id: FoodCakeChocolateSlice + orGroup: GiftPool + - id: FoodCakeAppleSlice + orGroup: GiftPool + - id: FoodCakeSuppermatterSlice + orGroup: GiftPool + - id: FoodPieBananaCreamSlice + orGroup: GiftPool + - id: FoodPiePumpkinSlice + orGroup: GiftPool + - id: FoodPieCherrySlice + orGroup: GiftPool + - id: FoodPieBananaCream + orGroup: GiftPool + - id: FoodPieXenoSlice + orGroup: GiftPool + - id: FoodPieFrostySlice + orGroup: GiftPool + - id: FoodPieMeatSlice + orGroup: GiftPool + - id: FoodPieBaklavaSlice + orGroup: GiftPool + - id: FoodPieAppleSlice + orGroup: GiftPool + - id: FoodPieClafoutisSlice + orGroup: GiftPool + - id: FoodPieAmanita + orGroup: GiftPool + - id: FoodPiePlump + orGroup: GiftPool + - id: FoodGumball + orGroup: GiftPool + - id: FoodSnackChocolate + orGroup: GiftPool + - id: FoodFrozenPopsicleOrange + orGroup: GiftPool + - id: FoodFrozenSnowcone + orGroup: GiftPool + - id: FoodFrozenSnowconeClown + orGroup: GiftPool + - id: FoodFrozenSandwichStrawberry + orGroup: GiftPool + - id: FoodFrozenCornuto + orGroup: GiftPool + - id: FoodFrozenFreezy + orGroup: GiftPool + - id: FoodFrozenSnowconeMime + orGroup: GiftPool + - id: FoodFrozenSundae + orGroup: GiftPool + - id: FoodFrozenPopsicleJumbo + orGroup: GiftPool + - id: FoodFrozenSandwich + orGroup: GiftPool + - id: FoodFrozenSnowconeRainbow + orGroup: GiftPool + - id: FoodFrozenSnowconeBase + orGroup: GiftPool + - id: FoodFrozenSnowconeFruit + orGroup: GiftPool + - id: FoodFrozenPopsicleBerry + orGroup: GiftPool + - id: FoodFrozenSnowconeBerry + orGroup: GiftPool + - id: FoodBakedBrownie + orGroup: GiftPool + - id: FoodSnackJoveGello + orGroup: GiftPool + - id: FoodLollipop + orGroup: GiftPool + - id: FoodMothMothmallow + orGroup: GiftPool + - id: FoodMothMothmallowSlice + orGroup: GiftPool + - id: FoodPSBBarNeapolitan + orGroup: GiftPool + - id: FoodSnackPokeysticks + orGroup: GiftPool + - id: FoodPumpkin + orGroup: GiftPool + - id: FoodBakedCookie + orGroup: GiftPool + - id: FoodBakedCookieRaisin + orGroup: GiftPool + - id: FoodSnackCookieFortune + orGroup: GiftPool + - id: FoodCondimentPacketSugar + orGroup: GiftPool + - id: FoodBakedCookieSugar + orGroup: GiftPool + - id: FoodSnackEnergy + orGroup: GiftPool + - id: FoodSnackDango + orGroup: GiftPool + - id: FoodSnackProteinbar + orGroup: GiftPool + - id: FoodSnackPlutoniumrods + orGroup: GiftPool + - id: FoodSnackRaisins + orGroup: GiftPool + #WWDP candy + - id: FoodSnackCandySkullChocolate + orGroup: GiftPool + - id: FoodSnackCandySkull + orGroup: GiftPool + - id: FoodSnackCandyGhost + orGroup: GiftPool + - id: FoodSnackCandyPumpkin + orGroup: GiftPool + - id: FoodSnackCandyCotton + orGroup: GiftPool + - id: FoodSnackCandyLollipopPink + orGroup: GiftPool + - id: FoodSnackCandyLollipopGreen + orGroup: GiftPool + - id: FoodSnackCandyLollipopOrange + orGroup: GiftPool + - id: FoodSnackCandyLollipopRainbow + orGroup: GiftPool + - id: FoodSnackCandyGummyBear + orGroup: GiftPool + - id: FoodSnackCandyGummyBearSmall + orGroup: GiftPool + - id: FoodSnackCandyGummyBearBigValera + orGroup: GiftPool + - id: FoodSnackCandyGummyBearSmallValera + orGroup: GiftPool + - id: FoodSnackCandyGummyBearValera + orGroup: GiftPool + - id: FoodSnackCandyGummyBeanBrown + orGroup: GiftPool + - id: FoodSnackCandyGummyBeanGreen + orGroup: GiftPool + - id: FoodSnackCandyGummyBeanPink + orGroup: GiftPool + - id: FoodSnackCandyGummyBeanRed + orGroup: GiftPool + - id: FoodSnackCandyGummyBeanWhite + orGroup: GiftPool + - id: FoodSnackCandyGummyEye + orGroup: GiftPool + - id: PresentHalloweenSoul + prob: 0.5 + orGroup: GiftPoolSoul + - id: PresentHalloweenNothing + orGroup: GiftPoolSoul + sound: + path: /Audio/Effects/unwrap.ogg + +- type: entity + id: PresentHalloweenRandomCloth + name: clothing spooky present + suffix: Halloween, Thematic + description: A little box with clothing surprises inside. + parent: PresentHalloweenBase + components: + - type: Sprite + sprite: _White/Objects/Decoration/Halloween/present.rsi + layers: + - state: cloth + - state: cloth_glow + shader: unshaded + - type: SpawnItemsOnUse + items: + - id: PresentHalloweenClothTrash + #HatPool + - id: ClothingHeadHatToyDemon + orGroup: GiftPoolHat + prob: 0.33 + - id: ClothingHeadHatPumpkin + orGroup: GiftPoolHat + prob: 0.33 + - id: ClothingMaskToyVampireFangs + orGroup: GiftPoolHat + prob: 0.33 + - id: PresentHalloweenNothing + orGroup: GiftPoolHat + #UniformPool + - id: ClothingUniformJumpsuitSkeletonHalloween + orGroup: GiftPoolUniform + prob: 0.33 + - id: ClothingNeckCloakVampire + orGroup: GiftPoolUniform + prob: 0.33 + - id: PresentHalloweenNothing + orGroup: GiftPoolUniform + - id: PresentHalloweenSoul + prob: 0.5 + orGroup: GiftPoolSoul + - id: PresentHalloweenNothing + orGroup: GiftPoolSoul + sound: + path: /Audio/Effects/unwrap.ogg + +- type: entity + id: PresentHalloweenRandomALLCloth + name: clothing spooky present + suffix: Halloween, Almost all + description: A little box with clothing surprises inside. + parent: PresentHalloweenBase + components: + - type: Sprite + sprite: _White/Objects/Decoration/Halloween/present.rsi + layers: + - state: cloth + - state: cloth_glow + shader: unshaded + - type: SpawnItemsOnUse + items: + - id: PresentHalloweenClothTrash + #HatPool + - id: ClothingHeadHatFedoraBlack + orGroup: GiftPoolHat + - id: ClothingMaskToyVampireFangs + orGroup: GiftPoolHat + - id: ClothingHeadHatToyDemon + orGroup: GiftPoolHat + - id: ClothingHeadHatFedoraChoc + orGroup: GiftPoolHat + - id: ClothingHeadHatFedoraWhite + orGroup: GiftPoolHat + - id: ClothingHeadHatFlatBlack + orGroup: GiftPoolHat + - id: ClothingHeadHatFlatBrown + orGroup: GiftPoolHat + - id: ClothingHeadHatSurgcapBlack + orGroup: GiftPoolHat + - id: ClothingHeadHatSurgcapCyan + orGroup: GiftPoolHat + - id: ClothingHeadHatSurgcapCybersun + orGroup: GiftPoolHat + - id: ClothingHeadHatSurgcapPink + orGroup: GiftPoolHat + - id: ClothingHeadHatSurgcapRainbow + orGroup: GiftPoolHat + - id: ClothingHeadHatSurgcapWhite + orGroup: GiftPoolHat + - id: ClothingHeadHatDirCap + orGroup: GiftPoolHat + - id: ClothingHeadHatBeaverHat + orGroup: GiftPoolHat + - id: ClothingHeadHatBeret + orGroup: GiftPoolHat + - id: ClothingHeadHatBeretFrench + orGroup: GiftPoolHat + - id: ClothingHeadHatCasa + orGroup: GiftPoolHat + - id: ClothingHeadHatBeretMerc + orGroup: GiftPoolHat + - id: ClothingHeadHatBowlerHat + orGroup: GiftPoolHat + - id: ClothingHeadHatCardborg + orGroup: GiftPoolHat + - id: ClothingHeadHatCentcom + orGroup: GiftPoolHat + - id: ClothingHeadHatFedoraBrown + orGroup: GiftPoolHat + - id: ClothingHeadHatFedoraGrey + orGroup: GiftPoolHat + - id: ClothingHeadHatFez + orGroup: GiftPoolHat + - id: ClothingHeadHatOutlawHat + orGroup: GiftPoolHat + - id: ClothingHeadHatWitch1 + orGroup: GiftPoolHat + - id: ClothingHeadHatPaper + orGroup: GiftPoolHat + - id: ClothingHeadHatPirate + orGroup: GiftPoolHat + - id: ClothingHeadHatPlaguedoctor + orGroup: GiftPoolHat + - id: ClothingHeadHatRedwizard + orGroup: GiftPoolHat + - id: ClothingHeadHatSantahat + orGroup: GiftPoolHat + - id: ClothingHeadHatSombrero + orGroup: GiftPoolHat + - id: ClothingHeadHatSurgcapBlue + orGroup: GiftPoolHat + - id: ClothingHeadHatSurgcapGreen + orGroup: GiftPoolHat + - id: ClothingHeadHatSurgcapPurple + orGroup: GiftPoolHat + - id: ClothingHeadHatTophat + orGroup: GiftPoolHat + - id: ClothingHeadHatUshanka + orGroup: GiftPoolHat + - id: ClothingHeadHatVioletwizard + orGroup: GiftPoolHat + - id: ClothingHeadHatWitch + orGroup: GiftPoolHat + - id: ClothingHeadHatWizardFake + orGroup: GiftPoolHat + - id: ClothingHeadHatXmasCrown + orGroup: GiftPoolHat + - id: ClothingHeadHatTrucker + orGroup: GiftPoolHat + - id: ClothingHeadPyjamaSyndicateBlack + orGroup: GiftPoolHat + - id: ClothingHeadPyjamaSyndicatePink + orGroup: GiftPoolHat + - id: ClothingHeadPyjamaSyndicateRed + orGroup: GiftPoolHat + - id: ClothingHeadPaperSack + orGroup: GiftPoolHat + - id: ClothingHeadPaperSackSmile + orGroup: GiftPoolHat + - id: ClothingHeadFishCap + orGroup: GiftPoolHat + - id: ClothingHeadNurseHat + orGroup: GiftPoolHat + - id: ClothingHeadRastaHat + orGroup: GiftPoolHat + - id: ClothingHeadSafari + orGroup: GiftPoolHat + - id: ClothingHeadHatJester + orGroup: GiftPoolHat + - id: ClothingHeadHatJesterAlt + orGroup: GiftPoolHat + - id: ClothingHeadHatPirateTricord + orGroup: GiftPoolHat + - id: ClothingHeadHatWatermelon + orGroup: GiftPoolHat + - id: ClothingHeadHatSyndie + orGroup: GiftPoolHat + - id: ClothingHeadHatSyndieMAA + orGroup: GiftPoolHat + - id: ClothingHeadHatTacticalMaidHeadband + orGroup: GiftPoolHat + - id: ClothingHeadHatHetmanHat + orGroup: GiftPoolHat + - id: ClothingHeadHatMagician + orGroup: GiftPoolHat + - id: ClothingHeadHatMagician + orGroup: GiftPoolHat + - id: ClothingHeadHatCentcomcap + orGroup: GiftPoolHat + - id: ClothingHeadHatGladiator + orGroup: GiftPoolHat + - id: ClothingHeadHatPartyRed + orGroup: GiftPoolHat + - id: ClothingHeadHatPartyYellow + orGroup: GiftPoolHat + - id: ClothingHeadHatPartyGreen + orGroup: GiftPoolHat + - id: ClothingHeadHatPartyBlue + orGroup: GiftPoolHat + - id: ClothingHeadHatPartyWaterCup + orGroup: GiftPoolHat + - id: ClothingHeadHatGreyFlatcap + orGroup: GiftPoolHat + - id: ClothingHeadHatBrownFlatcap + orGroup: GiftPoolHat + - id: ClothingHeadHatCowboyBrown + orGroup: GiftPoolHat + - id: ClothingHeadHatCowboyBlack + orGroup: GiftPoolHat + - id: ClothingHeadHatCowboyGrey + orGroup: GiftPoolHat + - id: ClothingHeadHatCowboyRed + orGroup: GiftPoolHat + - id: ClothingHeadHatCowboyWhite + orGroup: GiftPoolHat + - id: ClothingHeadHatCowboyBountyHunter + orGroup: GiftPoolHat + - id: ClothingHeadHatStrawHat + orGroup: GiftPoolHat + - id: ClothingHeadHatHoboHat + orGroup: GiftPoolHat + - id: ClothingHeadHatHoboCap + orGroup: GiftPoolHat + - id: ClothingHeadHatMobCap + orGroup: GiftPoolHat + - id: ClothingHeadHatBunny + orGroup: GiftPoolHat + - id: ClothingHeadHatCake + orGroup: GiftPoolHat + - id: ClothingHeadHatChickenhead + orGroup: GiftPoolHat + - id: ClothingHeadHatFlowerWreath + orGroup: GiftPoolHat + - id: ClothingHeadHatPumpkin + orGroup: GiftPoolHat + - id: ClothingHeadHatPwig + orGroup: GiftPoolHat + - id: ClothingHeadHatRichard + orGroup: GiftPoolHat + - id: ClothingHeadHatSkub + orGroup: GiftPoolHat + - id: ClothingHeadHatShrineMaidenWig + orGroup: GiftPoolHat + - id: ClothingHeadHatCone + orGroup: GiftPoolHat + - id: ClothingHeadHatFancyCrown + orGroup: GiftPoolHat + - id: ClothingHeadHatCatEars + orGroup: GiftPoolHat + - id: ClothingHeadHatDogEars + orGroup: GiftPoolHat + - id: ClothingHeadHatSquid + orGroup: GiftPoolHat + - id: ClothingHeadHatRedRacoon + orGroup: GiftPoolHat + - id: WaterDropletHat + orGroup: GiftPoolHat + - id: ClothingHeadNurseHat + orGroup: GiftPoolHat + #UniformPool + - id: ClothingUniformJumpsuitSkeletonHalloween + orGroup: GiftPoolUniform + - id: ClothingNeckCloakVampire + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtColorWhite + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtColorBlack + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtColorBlue + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtColorDarkBlue + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtColorTeal + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtColorGreen + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtColorDarkGreen + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtColorOrange + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtColorPink + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtColorRed + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtColorYellow + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtColorPurple + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtColorLightBrown + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtColorBrown + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtColorMaroon + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtColorOrange + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitColorWhite + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitColorBlack + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitColorBlue + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitColorDarkBlue + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitColorTeal + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitColorGreen + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitColorDarkGreen + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitColorOrange + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitColorPink + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitColorRed + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitColorYellow + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitColorPurple + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitColorLightBrown + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitColorBrown + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitColorMaroon + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitColorOrange + orGroup: GiftPoolUniform + - id: ClothingUniformRandomBra + orGroup: GiftPoolUniform + - id: ClothingUniformRandomShirt + orGroup: GiftPoolUniform + - id: ClothingUniformRandomStandard + orGroup: GiftPoolUniform + - id: ClothingUniformRandomArmless + orGroup: GiftPoolUniform + - id: ClothingUniformRandomShorts + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtJanimaid + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtJanimaidmini + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtTacticalMaid + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitGalaxyBlue + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitGalaxyRed + orGroup: GiftPoolUniform + - id: UniformGeisha + orGroup: GiftPoolUniform + - id: ClothingUniformMartialGi + orGroup: GiftPoolUniform + - id: UniformJabroni + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitKilt + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitSuitBrownMob + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitLostTourist + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtNurse + orGroup: GiftPoolUniform + - id: ClothingUniformRat + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitKimono + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitDameDane + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtOfLife + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtPerformer + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtJanimaidmini + orGroup: GiftPoolUniform + - id: ClothingUniformJumpskirtTacticalMaid + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitGalaxyBlue + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitGalaxyRed + orGroup: GiftPoolUniform + - id: UniformGeisha + orGroup: GiftPoolUniform + - id: ClothingUniformMartialGi + orGroup: GiftPoolUniform + - id: UniformJabroni + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitKilt + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitSuitBrownMob + orGroup: GiftPoolUniform + - id: ClothingUniformJumpsuitLostTourist + orGroup: GiftPoolUniform + #ShoesPool + - id: ClothingShoesBootsPerformer + orGroup: GiftPoolShoes + - id: ClothingShoesBootsCowboyFancy + orGroup: GiftPoolShoes + - id: ClothingShoesBootsCowboyBlack + orGroup: GiftPoolShoes + - id: ClothingShoesBootsCowboyBrown + orGroup: GiftPoolShoes + - id: ClothingShoesGeta + orGroup: GiftPoolShoes + - id: ClothingShoesSkates + orGroup: GiftPoolShoes + - id: ClothingShoesBootsCowboyWhite + orGroup: GiftPoolShoes + - id: ClothingShoesWizardFake + orGroup: GiftPoolShoes + - id: ClothingShoesDameDane + orGroup: GiftPoolShoes + - id: ClothingShoesCult + orGroup: GiftPoolShoes + - id: ClothingShoesFlippers + orGroup: GiftPoolShoes + - id: ClothingShoesTourist + orGroup: GiftPoolShoes + - id: ClothingShoesSlippers + orGroup: GiftPoolShoes + - id: ClothingShoeSlippersDuck + orGroup: GiftPoolShoes + #OuterPool + - id: ClothingOuterSuitMonkey + prob: 0.1 + orGroup: GiftPoolOuter + - id: ClothingOuterSuitCarp + prob: 0.1 + orGroup: GiftPoolOuter + - id: ClothingOuterSuitIan + prob: 0.1 + orGroup: GiftPoolOuter + - id: ClothingOuterSuitShrineMaiden + prob: 0.1 + orGroup: GiftPoolOuter + - id: PresentHalloweenSoul + prob: 0.5 + orGroup: GiftPoolOuter + - id: PresentHalloweenNothing + orGroup: GiftPoolOuter + sound: + path: /Audio/Effects/unwrap.ogg diff --git a/Resources/Prototypes/_White/Entities/Objects/Misc/implanters.yml b/Resources/Prototypes/_White/Entities/Objects/Misc/implanters.yml new file mode 100644 index 0000000000..7b2fe81ece --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Objects/Misc/implanters.yml @@ -0,0 +1,45 @@ +- type: entity + parent: BaseImplantOnlyImplanterSyndi + id: NeuroStabilizationImplanter + suffix: neuro stabilization + components: + - type: Implanter + implant: NeuroStabilizationImplant + +- type: entity + parent: Implanter + id: ImplanterSyndi + description: A compact disposable syringe exclusively designed for the quick injection and extraction of subdermal implants. + components: + - type: Item + sprite: Objects/Specific/Medical/syndi_implanter.rsi + - type: Sprite + sprite: Objects/Specific/Medical/syndi_implanter.rsi + - type: Implanter + drawTime: 2 + implantTime: 2 + +- type: entity + parent: BaseImplantOnlyImplanterSyndi + id: HardlightSpearImplanter + name: hardlight spear implanter + suffix: hardlight spear + components: + - type: Implanter + implant: HardlightSpearImplant + +- type: entity + parent: BaseImplantOnlyImplanterSyndi + id: SmokeImplanter + suffix: smoke + components: + - type: Implanter + implant: SmokeImplant + +- type: entity + parent: BaseImplantOnlyImplanterSyndi + id: MindSlaveImplanter + suffix: mindslave + components: + - type: Implanter + implant: MindSlaveImplant diff --git a/Resources/Prototypes/_White/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/_White/Entities/Objects/Misc/subdermal_implants.yml new file mode 100644 index 0000000000..428b8a779c --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Objects/Misc/subdermal_implants.yml @@ -0,0 +1,51 @@ +- type: entity + parent: BaseSubdermalImplant + id: HardlightSpearImplant + name: hardlight spear implant + description: This implant creates hardlight spear in your hands. + noSpawn: true + components: + - type: SubdermalImplant + implantAction: ActivateHardlightSpearImplant + - type: SpawnImplant + spawnId: HardlightSpear + +- type: entity + parent: BaseSubdermalImplant + id: NeuroStabilizationImplant + name: neuro stabilization implant + description: Blocks all of the incoming stamina damage at the cost of frying you nerve system a bit each time. + noSpawn: true + components: + - type: SubdermalImplant + - type: Tag + tags: + - NeuroStabilization + +- type: entity + parent: BaseSubdermalImplant + id: SmokeImplant + name: smoke implant + description: This implant releases smoke cloud on activation. + noSpawn: true + components: + - type: SubdermalImplant + implantAction: ActivateSmokeImplant + - type: TriggerImplantAction + - type: SmokeOnTrigger + spreadAmount: 25 + duration: 15 + - type: SoundOnTrigger + sound: /Audio/Effects/smoke.ogg + +- type: entity + parent: BaseSubdermalImplant + id: MindSlaveImplant + name: mindslave implant + description: Make someone a proper doll for your use. + noSpawn: true + components: + - type: SubdermalImplant + - type: Tag + tags: + - MindSlave \ No newline at end of file diff --git a/Resources/Prototypes/_White/Entities/Objects/Misc/tiles.yml b/Resources/Prototypes/_White/Entities/Objects/Misc/tiles.yml new file mode 100644 index 0000000000..c45f097416 --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Objects/Misc/tiles.yml @@ -0,0 +1,358 @@ +- type: entity + name: white linoleum floor + parent: FloorTileItemLino + id: FloorTileItemLinoWhite + components: + - type: Sprite + state: lino-white + sprite: _White/Objects/Tiles/tile.rsi + - type: Item + heldPrefix: steel + - type: FloorTile + outputs: + - Plating + - FloorLinoWhite + - type: Stack + stackType: FloorTileLino + +- type: entity + name: grey linoleum floor + parent: FloorTileItemLino + id: FloorTileItemLinoGrey + components: + - type: Sprite + state: lino-grey + sprite: _White/Objects/Tiles/tile.rsi + - type: Item + heldPrefix: steel + - type: FloorTile + outputs: + - Plating + - FloorLinoGrey + - type: Stack + stackType: FloorTileLino + +- type: entity + name: dark linoleum floor + parent: FloorTileItemLino + id: FloorTileItemLinoDark + components: + - type: Sprite + state: lino-dark + sprite: _White/Objects/Tiles/tile.rsi + - type: Item + heldPrefix: steel + - type: FloorTile + outputs: + - Plating + - FloorLinoDark + - type: Stack + stackType: FloorTileLino + +- type: entity + name: steel yellow tile + parent: FloorTileItemSteel + id: FloorTileItemSteelYellow + components: + - type: Sprite + state: steel-yellow + sprite: _White/Objects/Tiles/tile.rsi + - type: Item + sprite: _White/Objects/Tiles/tile.rsi + - type: FloorTile + outputs: + - Plating + - FloorSteelYellow + +- type: entity + name: steel red tile + parent: FloorTileItemSteel + id: FloorTileItemSteelRed + components: + - type: Sprite + state: steel-red + sprite: _White/Objects/Tiles/tile.rsi + - type: Item + sprite: _White/Objects/Tiles/tile.rsi + - type: FloorTile + outputs: + - Plating + - FloorSteelRed + +- type: entity + name: steel green tile + parent: FloorTileItemSteel + id: FloorTileItemSteelGreen + components: + - type: Sprite + state: steel-green + sprite: _White/Objects/Tiles/tile.rsi + - type: Item + sprite: _White/Objects/Tiles/tile.rsi + - type: FloorTile + outputs: + - Plating + - FloorSteelGreen + +- type: entity + name: steel blue tile + parent: FloorTileItemSteel + id: FloorTileItemSteelBlue + components: + - type: Sprite + state: steel-blue + sprite: _White/Objects/Tiles/tile.rsi + - type: Item + sprite: _White/Objects/Tiles/tile.rsi + - type: FloorTile + outputs: + - Plating + - FloorSteelBlue + +- type: entity + name: plastic yellow tile + parent: FloorTileItemSteel + id: FloorTileItemPlasticYellow + components: + - type: Sprite + state: plastic-yellow + sprite: _White/Objects/Tiles/tile.rsi + - type: Item + sprite: _White/Objects/Tiles/tile.rsi + - type: FloorTile + outputs: + - Plating + - FloorPlasticYellow + +- type: entity + name: plastic red tile + parent: FloorTileItemSteel + id: FloorTileItemPlasticRed + components: + - type: Sprite + state: plastic-red + sprite: _White/Objects/Tiles/tile.rsi + - type: Item + sprite: _White/Objects/Tiles/tile.rsi + - type: FloorTile + outputs: + - Plating + - FloorPlasticRed + +- type: entity + name: plastic green tile + parent: FloorTileItemSteel + id: FloorTileItemPlasticGreen + components: + - type: Sprite + state: plastic-green + sprite: _White/Objects/Tiles/tile.rsi + - type: Item + sprite: _White/Objects/Tiles/tile.rsi + - type: FloorTile + outputs: + - Plating + - FloorPlasticGreen + +- type: entity + name: plastic blue tile + parent: FloorTileItemSteel + id: FloorTileItemPlasticBlue + components: + - type: Sprite + state: plastic-blue + sprite: _White/Objects/Tiles/tile.rsi + - type: Item + sprite: _White/Objects/Tiles/tile.rsi + - type: FloorTile + outputs: + - Plating + - FloorPlasticBlue + +- type: entity + name: plastic dark tile + parent: FloorTileItemSteel + id: FloorTileItemPlasticDark + components: + - type: Sprite + state: plastic-dark + sprite: _White/Objects/Tiles/tile.rsi + - type: Item + sprite: _White/Objects/Tiles/tile.rsi + - type: FloorTile + outputs: + - Plating + - FloorDarkPlastic + +- type: entity + name: plastic grey tile + parent: FloorTileItemSteel + id: FloorTileItemPlasticGrey + components: + - type: Sprite + state: plastic-grey + sprite: _White/Objects/Tiles/tile.rsi + - type: Item + sprite: _White/Objects/Tiles/tile.rsi + - type: FloorTile + outputs: + - Plating + - FloorPlastic + +- type: entity + name: plastic white tile + parent: FloorTileItemSteel + id: FloorTileItemPlasticWhite + components: + - type: Sprite + state: plastic-white + sprite: _White/Objects/Tiles/tile.rsi + - type: Item + sprite: _White/Objects/Tiles/tile.rsi + - type: FloorTile + outputs: + - Plating + - FloorWhitePlastic + +- type: entity + name: shielding floor + parent: FloorTileItemSteel + id: FloorTileItemShielding + components: + - type: Sprite + state: shielding + sprite: _White/Objects/Tiles/tile.rsi + - type: Item + sprite: _White/Objects/Tiles/tile.rsi + - type: FloorTile + outputs: + - Plating + - FloorShielding + +- type: entity + name: mono shielding floor + parent: FloorTileItemSteel + id: FloorTileItemShieldingMono + components: + - type: Sprite + state: shielding-mono + sprite: _White/Objects/Tiles/tile.rsi + - type: Item + sprite: _White/Objects/Tiles/tile.rsi + - type: FloorTile + outputs: + - Plating + - FloorShieldingMono + +- type: entity + name: shuttle syndie floor + parent: FloorTileItemSteel + id: FloorTileItemShuttleSyndie + components: + - type: Sprite + state: shuttlesyndie + sprite: _White/Objects/Tiles/tile.rsi + - type: Item + sprite: _White/Objects/Tiles/tile.rsi + - type: FloorTile + outputs: + - Plating + - FloorShuttleSyndie + +- type: entity + name: sterile floor + parent: FloorTileItemSteel + id: FloorTileItemSterile + components: + - type: Sprite + state: sterile + sprite: _White/Objects/Tiles/tile.rsi + - type: Item + sprite: _White/Objects/Tiles/tile.rsi + - type: FloorTile + outputs: + - Plating + - FloorSterile + +- type: entity + name: dark sterile floor + parent: FloorTileItemSteel + id: FloorTileItemSterileDark + components: + - type: Sprite + state: sterile-dark + sprite: _White/Objects/Tiles/tile.rsi + - type: Item + sprite: _White/Objects/Tiles/tile.rsi + - type: FloorTile + outputs: + - Plating + - FloorSterileDark + +- type: entity + name: reinforced glass frame floor + parent: FloorTileItemSteel + id: FloorTileItemReinforcedGlassFrame + components: + - type: Sprite + state: rglass-frame + sprite: _White/Objects/Tiles/tile.rsi + - type: Item + sprite: _White/Objects/Tiles/tile.rsi + - type: FloorTile + outputs: + - Plating + - FloorReinforcedGlassFrame + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 30 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 5 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + params: + volume: -5 + - !type:DoActsBehavior + acts: [ "Destruction" ] + +- type: entity + name: glass frame floor + parent: FloorTileItemSteel + id: FloorTileItemGlassFrame + components: + - type: Sprite + state: glass-frame + sprite: _White/Objects/Tiles/tile.rsi + - type: Item + sprite: _White/Objects/Tiles/tile.rsi + - type: FloorTile + outputs: + - Plating + - FloorGlassFrame + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 30 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 5 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + params: + volume: -5 + - !type:DoActsBehavior + acts: [ "Destruction" ] \ No newline at end of file diff --git a/Resources/Prototypes/_White/Entities/Objects/Weapons/Guns/crossbow.yml b/Resources/Prototypes/_White/Entities/Objects/Weapons/Guns/crossbow.yml new file mode 100644 index 0000000000..137cacf0de --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Objects/Weapons/Guns/crossbow.yml @@ -0,0 +1,77 @@ +- type: entity + parent: BaseItem + id: WeaponPoweredCrossbow + name: Crossbow + description: It's a dangerous thing. + components: + - type: Sprite + sprite: _White/Objects/Weapons/Guns/crossbow.rsi + layers: + - state: crossbow + - state: unstrung + map: [ "enum.StretchedVisuals.Layer" ] + - type: Clothing + quickEquip: false + slots: + - Back + - SuitStorage + - type: Item + size: Huge + sprite: _White/Objects/Weapons/Guns/crossbow.rsi + - type: Gun + fireRate: 0.5 + soundGunshot: + path: /Audio/Weapons/click.ogg + throwAngle: 225 + - type: BallisticAmmoProvider + whitelist: + tags: + - CrossbowBolt + capacity: 1 + soundInsert: + path: /Audio/Weapons/Guns/MagIn/revolver_magin.ogg + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + ents: [] + cell_slot: !type:ContainerSlot + crystal_slot: !type:ContainerSlot + - type: PowerCellSlot + cellSlotId: cell_slot + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + - type: Stretched + - type: Powered + - type: Appearance + - type: StretchedVisuals + loadedState: loaded + stretchedState: stretched + unstrungState: unstrung + - type: Construction + deconstructionTarget: null + graph: WeaponPoweredCrossbowGraph + node: crossbow + +- type: entity + parent: BaseItem + id: WeaponPoweredCrossbowUnfinished + name: Unfinished crossbow + description: It's going to be a dangerous thing. + components: + - type: Sprite + sprite: _White/Objects/Weapons/Guns/crossbow.rsi + state: crossbow + - type: Item + size: Huge + sprite: _White/Objects/Weapons/Guns/crossbow.rsi + - type: Clothing + quickEquip: false + slots: + - Back + - SuitStorage + - type: Construction + deconstructionTarget: null + graph: WeaponPoweredCrossbowGraph + node: unfinished diff --git a/Resources/Prototypes/_White/Entities/Objects/Weapons/Melee/daggers.yml b/Resources/Prototypes/_White/Entities/Objects/Weapons/Melee/daggers.yml index 86f111e2b5..ad34371b0a 100644 --- a/Resources/Prototypes/_White/Entities/Objects/Weapons/Melee/daggers.yml +++ b/Resources/Prototypes/_White/Entities/Objects/Weapons/Melee/daggers.yml @@ -2,10 +2,10 @@ name: betrayal dagger description: Watch your back. parent: BaseKnife - id: BetrayalKnife + id: BetrayalDagger components: - type: Sprite - sprite: _White/Objects/Weapons/Melee/Daggers/betrayal_knife.rsi + sprite: _White/Objects/Weapons/Melee/Daggers/betrayal_dagger.rsi state: icon - type: Item size: Small @@ -31,3 +31,36 @@ - type: BackStab - type: Blink blinkRate: 0.33 + +- type: entity + name: blood dagger + description: A dagger of pain and blood. Something is dripping from it... + parent: BaseKnife + id: BloodDagger + components: + - type: Sprite + sprite: _White/Objects/Weapons/Melee/Daggers/blood_dagger.rsi + state: icon + - type: MeleeWeapon + wideAnimationRotation: 135 + swingLeft: true + attackRate: 1.3 + damage: + types: + Slash: 10.5 + soundHit: + path: /Audio/Weapons/bladeslice.ogg + - type: Item + size: Normal + - type: Clothing + sprite: _White/Objects/Weapons/Melee/Daggers/blood_dagger.rsi + slots: + - back + - type: DisarmMalus + - type: Crit + critChance: 0.5 + critMultiplier: 2 + - type: BloodAbsorb + bloodLust: true + - type: MeleeBlock + delay: 12.1 diff --git a/Resources/Prototypes/_White/Entities/Objects/Weapons/Melee/spear.yml b/Resources/Prototypes/_White/Entities/Objects/Weapons/Melee/spear.yml new file mode 100644 index 0000000000..1cfc479ec6 --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Objects/Weapons/Melee/spear.yml @@ -0,0 +1,58 @@ +- type: entity + name: hardlight spear + parent: Spear + id: HardlightSpear + description: A spear made out of hardened light. + components: + - type: Sprite + sprite: _White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi + - type: MeleeWeapon + damage: + types: + Piercing: 18 + Heat: 18 + soundHit: + path: /Audio/Weapons/smash.ogg + - type: DamageOtherOnHit + damage: + types: + Piercing: 20 + Heat: 20 + - type: Wieldable + - type: IncreaseDamageOnWield + damage: + types: + Piercing: 4 + Heat: 4 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 30 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: EmbeddableProjectile + offset: 0.15,0.15 + deleteOnRemove: true + preventCollide: true + - type: DespawnOnLandItem + - type: ThrowingItemModifier + - type: PointLight + radius: 1.5 + energy: 2 + color: yellow + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + vertices: + - -0.20,-0.10 + - -0.10,-0.20 + - 0.40,0.30 + - 0.30,0.40 + density: 20 + mask: + - Opaque + restitution: 0.3 + friction: 0.2 \ No newline at end of file diff --git a/Resources/Prototypes/_White/Entities/Structures/Furniture/random_potted_plants.yml b/Resources/Prototypes/_White/Entities/Structures/Furniture/random_potted_plants.yml index 4f8be108d8..5723b3b649 100644 --- a/Resources/Prototypes/_White/Entities/Structures/Furniture/random_potted_plants.yml +++ b/Resources/Prototypes/_White/Entities/Structures/Furniture/random_potted_plants.yml @@ -43,7 +43,7 @@ - type: entity parent: RandomPottedPlantBase id: RandomPottedTinyPlant - name: Potted Plant + suffix: Tiny Base components: - type: Item @@ -108,7 +108,6 @@ - type: entity parent: RandomPottedTinyPlant id: RandomPottedTinyPlantPot1 - name: Potted Plant suffix: Tiny Pot 1 components: - type: Sprite @@ -127,7 +126,6 @@ - type: entity parent: RandomPottedTinyPlant id: RandomPottedTinyPlantPot2 - name: Potted Plant suffix: Tiny Pot 2 components: - type: Sprite @@ -146,7 +144,6 @@ - type: entity parent: RandomPottedTinyPlant id: RandomPottedTinyPlantPot3 - name: Potted Plant suffix: Tiny Pot 3 components: - type: Sprite @@ -165,7 +162,6 @@ - type: entity parent: RandomPottedTinyPlant id: RandomPottedTinyPlantPot4 - name: Potted Plant suffix: Tiny Pot 4 components: - type: Sprite @@ -184,7 +180,6 @@ - type: entity parent: RandomPottedTinyPlant id: RandomPottedTinyPlantPot5 - name: Potted Plant suffix: Tiny Pot 5 components: - type: Sprite @@ -203,7 +198,6 @@ - type: entity parent: RandomPottedTinyPlant id: RandomPottedTinyPlantPot6 - name: Potted Plant suffix: Tiny Pot 6 components: - type: Sprite @@ -222,7 +216,6 @@ - type: entity parent: RandomPottedTinyPlant id: RandomPottedTinyPlantPot7 - name: Potted Plant suffix: Tiny Pot 7 components: - type: Sprite @@ -243,7 +236,6 @@ - type: entity parent: RandomPottedPlantBase id: RandomPottedSmallPlant - name: Potted Plant suffix: Small Base components: - type: Item @@ -322,7 +314,6 @@ - type: entity parent: RandomPottedSmallPlant id: RandomPottedSmallPlantPot1 - name: Potted Plant suffix: Small Pot 1 components: - type: Sprite @@ -341,7 +332,6 @@ - type: entity parent: RandomPottedSmallPlant id: RandomPottedSmallPlantPot2 - name: Potted Plant suffix: Small Pot 2 components: - type: Sprite @@ -360,7 +350,6 @@ - type: entity parent: RandomPottedSmallPlant id: RandomPottedSmallPlantPot3 - name: Potted Plant suffix: Small Pot 3 components: - type: Sprite @@ -379,7 +368,6 @@ - type: entity parent: RandomPottedSmallPlant id: RandomPottedSmallPlantPot4 - name: Potted Plant suffix: Small Pot 4 components: - type: Sprite @@ -398,7 +386,6 @@ - type: entity parent: RandomPottedSmallPlant id: RandomPottedSmallPlantPot5 - name: Potted Plant suffix: Small Pot 5 components: - type: Sprite @@ -417,7 +404,6 @@ - type: entity parent: RandomPottedSmallPlant id: RandomPottedSmallPlantPot6 - name: Potted Plant suffix: Small Pot 6 components: - type: Sprite @@ -436,7 +422,6 @@ - type: entity parent: RandomPottedSmallPlant id: RandomPottedSmallPlantPot7 - name: Potted Plant suffix: Small Pot 7 components: - type: Sprite @@ -455,7 +440,6 @@ - type: entity parent: RandomPottedSmallPlant id: RandomPottedSmallPlantPot8 - name: Potted Plant suffix: Small Pot 8 components: - type: Sprite @@ -474,7 +458,6 @@ - type: entity parent: RandomPottedSmallPlant id: RandomPottedSmallPlantPot9 - name: Potted Plant suffix: Small Pot 9 components: - type: Sprite @@ -493,7 +476,6 @@ - type: entity parent: RandomPottedSmallPlant id: RandomPottedSmallPlantPot10 - name: Potted Plant suffix: Small Pot 10 components: - type: Sprite @@ -514,7 +496,6 @@ - type: entity parent: RandomPottedPlantBase id: RandomPottedMediumPlant - name: Potted Plant suffix: Medium Base components: - type: SecretStash @@ -576,7 +557,6 @@ - type: entity parent: RandomPottedMediumPlant id: RandomPottedMediumPlantPot1 - name: Potted Plant suffix: Medium Pot 1 components: - type: Sprite @@ -595,7 +575,6 @@ - type: entity parent: RandomPottedMediumPlant id: RandomPottedMediumPlantPot2 - name: Potted Plant suffix: Medium Pot 2 components: - type: Sprite @@ -614,7 +593,6 @@ - type: entity parent: RandomPottedMediumPlant id: RandomPottedMediumPlantPot3 - name: Potted Plant suffix: Medium Pot 3 components: - type: Sprite @@ -633,7 +611,6 @@ - type: entity parent: RandomPottedMediumPlant id: RandomPottedMediumPlantPot4 - name: Potted Plant suffix: Medium Pot 4 components: - type: Sprite @@ -652,7 +629,6 @@ - type: entity parent: RandomPottedMediumPlant id: RandomPottedMediumPlantPot5 - name: Potted Plant suffix: Medium Pot 5 components: - type: Sprite @@ -671,7 +647,6 @@ - type: entity parent: RandomPottedMediumPlant id: RandomPottedMediumPlantPot6 - name: Potted Plant suffix: Medium Pot 6 components: - type: Sprite @@ -690,7 +665,6 @@ - type: entity parent: RandomPottedMediumPlant id: RandomPottedMediumPlantPot7 - name: Potted Plant suffix: Medium Pot 7 components: - type: Sprite diff --git a/Resources/Prototypes/_White/Entities/Structures/Wallmounts/Signs/signs.yml b/Resources/Prototypes/_White/Entities/Structures/Wallmounts/Signs/signs.yml new file mode 100644 index 0000000000..2641f73101 --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Structures/Wallmounts/Signs/signs.yml @@ -0,0 +1,219 @@ +- type: entity + parent: BaseSign + id: SignAME + name: AME sign + description: A sign indicating the AME. + components: + - type: Sprite + sprite: _White/Structures/Wallmounts/signs.rsi + state: ame + +- type: entity + parent: BaseSign + id: SignArrivals + name: arrivals sign + description: A sign indicating the arrivals. + components: + - type: Sprite + sprite: _White/Structures/Wallmounts/signs.rsi + state: arrivals + +- type: entity + parent: BaseSign + id: SignBoxing + name: boxing sign + description: A sign indicating the boxing. + components: + - type: Sprite + sprite: _White/Structures/Wallmounts/signs.rsi + state: boxing + +- type: entity + parent: BaseSign + id: SignBrig + name: brig sign + description: A sign indicating the brig. + components: + - type: Sprite + sprite: _White/Structures/Wallmounts/signs.rsi + state: brig + +- type: entity + parent: BaseSign + id: SignCaptain + name: captain sign + description: A sign indicating the captain office. + components: + - type: Sprite + sprite: _White/Structures/Wallmounts/signs.rsi + state: captain + +- type: entity + parent: BaseSign + id: SignCryo + name: cryogenics sign + description: A sign indicating the cryogenics. + components: + - type: Sprite + sprite: _White/Structures/Wallmounts/signs.rsi + state: cryo + +- type: entity + parent: BaseSign + id: SignDorms + name: dorms sign + description: A sign indicating the dorms. + components: + - type: Sprite + sprite: _White/Structures/Wallmounts/signs.rsi + state: dorms + +- type: entity + parent: BaseSign + id: SignEquip + name: equipment sign + description: A sign indicating the equipment. + components: + - type: Sprite + sprite: _White/Structures/Wallmounts/signs.rsi + state: equip + +- type: entity + parent: BaseSign + id: SignEvac + name: evacuation sign + description: A sign indicating the evacuation. + components: + - type: Sprite + sprite: _White/Structures/Wallmounts/signs.rsi + state: evac + +- type: entity + parent: BaseSign + id: SignGate + name: gate sign + description: A sign indicating the gate. + components: + - type: Sprite + sprite: _White/Structures/Wallmounts/signs.rsi + state: gate + +- type: entity + parent: BaseSign + id: SignGenetics + name: genetics sign + description: A sign indicating the genetics. + components: + - type: Sprite + sprite: _White/Structures/Wallmounts/signs.rsi + state: genetics + +- type: entity + parent: BaseSign + id: SignHydro + name: hydroponics sign + description: A sign indicating the hydroponics area. + components: + - type: Sprite + sprite: _White/Structures/Wallmounts/signs.rsi + state: hydro + +- type: entity + parent: BaseSign + id: SignHOP + name: HOP sign + description: A sign indicating the HOP office. + components: + - type: Sprite + sprite: _White/Structures/Wallmounts/signs.rsi + state: hop + +- type: entity + parent: BaseSign + id: SignKitchen + name: kitchen sign + description: A sign indicating the kitchen. + components: + - type: Sprite + sprite: _White/Structures/Wallmounts/signs.rsi + state: kitchen + +- type: entity + parent: BaseSign + id: SignCheckpoint + name: checkpoint sign + description: A sign indicating the checkpoint. + components: + - type: Sprite + sprite: _White/Structures/Wallmounts/signs.rsi + state: check + +- type: entity + parent: BaseSign + id: SignNukeVault + name: nuclear vault sign + description: A sign indicating the nuclear. + components: + - type: Sprite + sprite: _White/Structures/Wallmounts/signs.rsi + state: nukevault + +- type: entity + parent: BaseSign + id: SignPA + name: PA sign + description: A sign indicating the PA. + components: + - type: Sprite + sprite: _White/Structures/Wallmounts/signs.rsi + state: pa + +- type: entity + parent: BaseSign + id: SignSMES + name: SMES sign + description: A sign indicating the SMES room. + components: + - type: Sprite + sprite: _White/Structures/Wallmounts/signs.rsi + state: smes + +- type: entity + parent: BaseSign + id: SignSolar + name: solar pannels sign + description: A sign indicating the solar pannels. + components: + - type: Sprite + sprite: _White/Structures/Wallmounts/signs.rsi + state: solar + +- type: entity + parent: BaseSign + id: SignStorage + name: storage sign + description: A sign indicating the storage. + components: + - type: Sprite + sprite: _White/Structures/Wallmounts/signs.rsi + state: storage + +- type: entity + parent: BaseSign + id: SignTheatre + name: theatre sign + description: A sign indicating the theatre. + components: + - type: Sprite + sprite: _White/Structures/Wallmounts/signs.rsi + state: theatre + +- type: entity + parent: BaseSign + id: SignToilet + name: toilet sign + description: A sign indicating the toilet. + components: + - type: Sprite + sprite: _White/Structures/Wallmounts/signs.rsi + state: toilet \ No newline at end of file diff --git a/Resources/Prototypes/_White/Entities/Structures/Wallmounts/switch.yml b/Resources/Prototypes/_White/Entities/Structures/Wallmounts/switch.yml new file mode 100644 index 0000000000..40d821b776 --- /dev/null +++ b/Resources/Prototypes/_White/Entities/Structures/Wallmounts/switch.yml @@ -0,0 +1,330 @@ +# button frames 1 + +- type: entity + id: ButtonFrameGrey + parent: ButtonFrame + suffix: "Grey, 1" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f1.rsi + state: grey + +- type: entity + id: ButtonFrameCaution + parent: ButtonFrame + suffix: "Caution, 1" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f1.rsi + state: caution + +- type: entity + id: ButtonFrameCautionSecurity + parent: ButtonFrame + suffix: "Security, 1" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f1.rsi + state: caution_security + +- type: entity + id: ButtonFrameExit + parent: ButtonFrame + suffix: "Exit, 1" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f1.rsi + layers: + - state: exit + - state: exit_glow + shader: unshaded + +- type: entity + id: ButtonFrameJanitor + parent: ButtonFrame + suffix: "Janitor, 1" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f1.rsi + state: janitor + +# button frames 2 + +- type: entity + id: ButtonFrameGrey2 + parent: ButtonFrame + suffix: "Grey, 2" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f2.rsi + state: grey + +- type: entity + id: ButtonFrameCaution2 + parent: ButtonFrame + suffix: "Caution, 2" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f2.rsi + state: caution + +- type: entity + id: ButtonFrameCautionSecurity2 + parent: ButtonFrame + suffix: "Security, 2" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f2.rsi + state: caution_security + +- type: entity + id: ButtonFrameExit2 + parent: ButtonFrame + suffix: "Exit, 2" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f2.rsi + layers: + - state: exit + - state: exit_glow + shader: unshaded + +- type: entity + id: ButtonFrameJanitor2 + parent: ButtonFrame + suffix: "Janitor, 2" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f2.rsi + state: janitor + +# button frames 3 + +- type: entity + id: ButtonFrameGrey3 + parent: ButtonFrame + suffix: "Grey, 3" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f3.rsi + state: grey + +- type: entity + id: ButtonFrameCaution3 + parent: ButtonFrame + suffix: "Caution, 3" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f3.rsi + state: caution + +- type: entity + id: ButtonFrameCautionSecurity3 + parent: ButtonFrame + suffix: "Security, 3" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f3.rsi + state: caution_security + +- type: entity + id: ButtonFrameExit3 + parent: ButtonFrame + suffix: "Exit, 3" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f3.rsi + layers: + - state: exit + - state: exit_glow + shader: unshaded + +- type: entity + id: ButtonFrameJanitor3 + parent: ButtonFrame + suffix: "Janitor, 3" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f3.rsi + state: janitor + +# button frames 4 + +- type: entity + id: ButtonFrameGrey4 + parent: ButtonFrame + suffix: "Grey, 4" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f4.rsi + state: grey + +- type: entity + id: ButtonFrameCaution4 + parent: ButtonFrame + suffix: "Caution, 4" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f4.rsi + state: caution + +- type: entity + id: ButtonFrameCautionSecurity4 + parent: ButtonFrame + suffix: "Security, 4" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f4.rsi + state: caution_security + +- type: entity + id: ButtonFrameExit4 + parent: ButtonFrame + suffix: "Exit, 4" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f4.rsi + layers: + - state: exit + - state: exit_glow + shader: unshaded + +- type: entity + id: ButtonFrameJanitor4 + parent: ButtonFrame + suffix: "Janitor, 4" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f4.rsi + state: janitor + +# button frames 5 + +- type: entity + id: ButtonFrameGrey5 + parent: ButtonFrame + suffix: "Grey, 5" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f5.rsi + state: grey + +- type: entity + id: ButtonFrameCaution5 + parent: ButtonFrame + suffix: "Caution, 5" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f5.rsi + state: caution + +- type: entity + id: ButtonFrameCautionSecurity5 + parent: ButtonFrame + suffix: "Security, 5" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f5.rsi + state: caution_security + +- type: entity + id: ButtonFrameExit5 + parent: ButtonFrame + suffix: "Exit, 5" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f5.rsi + layers: + - state: exit + - state: exit_glow + shader: unshaded + +- type: entity + id: ButtonFrameJanitor5 + parent: ButtonFrame + suffix: "Janitor, 5" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f5.rsi + state: janitor + +# button frames 6 + +- type: entity + id: ButtonFrameGrey6 + parent: ButtonFrame + suffix: "Grey, 6" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f6.rsi + state: grey + +- type: entity + id: ButtonFrameCaution6 + parent: ButtonFrame + suffix: "Caution, 6" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f6.rsi + state: caution + +- type: entity + id: ButtonFrameCautionSecurity6 + parent: ButtonFrame + suffix: "Security, 6" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f6.rsi + state: caution_security + +- type: entity + id: ButtonFrameExit6 + parent: ButtonFrame + suffix: "Exit, 6" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f6.rsi + layers: + - state: exit + - state: exit_glow + shader: unshaded + + +- type: entity + id: ButtonFrameJanitor6 + parent: ButtonFrame + suffix: "Janitor, 6" + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _White/Structures/Wallmounts/switch_frame/f6.rsi + state: janitor \ No newline at end of file diff --git a/Resources/Prototypes/_White/Palettes/brown.yml b/Resources/Prototypes/_White/Palettes/brown.yml new file mode 100644 index 0000000000..9e874ce157 --- /dev/null +++ b/Resources/Prototypes/_White/Palettes/brown.yml @@ -0,0 +1,8 @@ +- type: palette + id: Browns + name: brown + colors: + brown: "#6e4e40" + brown1: "#593d31" + brown2: "#6e4330" + brown3: "#73422d" \ No newline at end of file diff --git a/Resources/Prototypes/_White/Polymorphs/polymorph.yml b/Resources/Prototypes/_White/Polymorphs/polymorph.yml new file mode 100644 index 0000000000..e6869806f4 --- /dev/null +++ b/Resources/Prototypes/_White/Polymorphs/polymorph.yml @@ -0,0 +1,11 @@ +- type: polymorph + id: Gondola + configuration: + entity: MobGondola + forced: true + transferName: false + transferHumanoidAppearance: false + inventory: Drop + revertOnDeath: true + revertOnCrit: false + duration: 900 \ No newline at end of file diff --git a/Resources/Prototypes/_White/Reagents/fun.yml b/Resources/Prototypes/_White/Reagents/fun.yml new file mode 100644 index 0000000000..9ced4b3020 --- /dev/null +++ b/Resources/Prototypes/_White/Reagents/fun.yml @@ -0,0 +1,40 @@ +- type: reagent + id: Tranquility + group: Toxins + name: reagent-name-tranquility + desc: reagent-desc-tranquility + physicalDesc: reagent-physical-desc-calming + flavor: mindful + color: "#915E48" + metabolisms: + Poison: + metabolismRate: 0.25 + effects: + - !type:PopupMessage + type: Local + messages: [ "tranquility-effect" ] + probability: 0.2 + - !type:GenericStatusEffect + key: Muted + component: Muted + refresh: false + type: Add + conditions: + - !type:ReagentThreshold + min: 5 + - !type:GenericStatusEffect + key: Pacified + component: Pacified + refresh: false + type: Add + conditions: + - !type:ReagentThreshold + min: 10 + - !type:Polymorph + prototype: Gondola + conditions: + - !type:OrganType + type: Animal + shouldHave: false + - !type:ReagentThreshold + min: 30 diff --git a/Resources/Prototypes/_White/Recipes/Construction/Graphs/food/steak.yml b/Resources/Prototypes/_White/Recipes/Construction/Graphs/food/steak.yml new file mode 100644 index 0000000000..36d98301d0 --- /dev/null +++ b/Resources/Prototypes/_White/Recipes/Construction/Graphs/food/steak.yml @@ -0,0 +1,14 @@ +- type: constructionGraph + id: GondolaSteak + start: start + graph: + - node: start + edges: + - to: gondola steak + completed: + - !type:PlaySound + sound: /Audio/Effects/sizzle.ogg + steps: + - minTemperature: 345 + - node: gondola steak + entity: FoodMeatGondolaCooked diff --git a/Resources/Prototypes/_White/Recipes/Lathes/devices.yml b/Resources/Prototypes/_White/Recipes/Lathes/devices.yml new file mode 100644 index 0000000000..34ba84230a --- /dev/null +++ b/Resources/Prototypes/_White/Recipes/Lathes/devices.yml @@ -0,0 +1,19 @@ +- type: latheRecipe + id: ClothingEyesNightVisionGoggles + result: ClothingEyesNightVisionGoggles + completetime: 2 + materials: + Steel: 200 + Glass: 100 + Silver: 100 + Gold: 100 + +- type: latheRecipe + id: ClothingEyesThermalVisionGoggles + result: ClothingEyesThermalVisionGoggles + completetime: 2 + materials: + Steel: 200 + Glass: 100 + Silver: 100 + Gold: 100 \ No newline at end of file diff --git a/Resources/Prototypes/_White/Recipes/hidden_crafts.yml b/Resources/Prototypes/_White/Recipes/hidden_crafts.yml index 830ecf0e43..a202afb1eb 100644 --- a/Resources/Prototypes/_White/Recipes/hidden_crafts.yml +++ b/Resources/Prototypes/_White/Recipes/hidden_crafts.yml @@ -84,4 +84,36 @@ - !type:SpawnPrototype prototype: Igniter - !type:EmptyAllContainers - - !type:DeleteEntity \ No newline at end of file + - !type:DeleteEntity + +- type: constructionGraph + id: WeaponPoweredCrossbowGraph + start: stock + graph: + - node: stock + edges: + - to: unfinished + steps: + - material: MetalRod + amount: 3 + doAfter: 3 + - node: unfinished + entity: WeaponPoweredCrossbowUnfinished + edges: + - to: crossbow + steps: + - tool: Welding + doAfter: 5 + - material: Cable + amount: 5 + doAfter: 0.5 + - material: Plastic + amount: 3 + doAfter: 0.5 + - material: Cable + amount: 5 + doAfter: 0.5 + - tool: Screwing + doAfter: 1 + - node: crossbow + entity: WeaponPoweredCrossbow \ No newline at end of file diff --git a/Resources/Prototypes/_White/Research/experimental.yml b/Resources/Prototypes/_White/Research/experimental.yml new file mode 100644 index 0000000000..6a97f57455 --- /dev/null +++ b/Resources/Prototypes/_White/Research/experimental.yml @@ -0,0 +1,25 @@ +# Tier 2 + +- type: technology + id: NightVisionTech + name: research-technology-night-vision + icon: + sprite: _White/Clothing/Eyes/Goggles/nightvision.rsi + state: icon + discipline: Experimental + tier: 2 + cost: 10000 + recipeUnlocks: + - ClothingEyesNightVisionGoggles + +- type: technology + id: ThermalVisionTech + name: research-technology-thermal-vision + icon: + sprite: _White/Clothing/Eyes/Goggles/thermal.rsi + state: icon + discipline: Experimental + tier: 2 + cost: 10000 + recipeUnlocks: + - ClothingEyesThermalVisionGoggles \ No newline at end of file diff --git a/Resources/Prototypes/_White/Shaders/shaders.yml b/Resources/Prototypes/_White/Shaders/shaders.yml new file mode 100644 index 0000000000..ec8eabdef8 --- /dev/null +++ b/Resources/Prototypes/_White/Shaders/shaders.yml @@ -0,0 +1,4 @@ +- type: shader + id: NightVision + kind: source + path: "/Textures/_White/Shaders/nightvision.swsl" \ No newline at end of file diff --git a/Resources/Prototypes/_White/StatusIcon/mindslave.yml b/Resources/Prototypes/_White/StatusIcon/mindslave.yml new file mode 100644 index 0000000000..aee851fc18 --- /dev/null +++ b/Resources/Prototypes/_White/StatusIcon/mindslave.yml @@ -0,0 +1,17 @@ +- type: statusIcon + id: MasterMindSlaveIcon + priority: 3 + locationPreference: Left + isShaded: true + icon: + sprite: /Textures/_White/Overlays/mindslave.rsi + state: master + +- type: statusIcon + id: SlaveMindSlaveIcon + priority: 3 + locationPreference: Left + isShaded: true + icon: + sprite: /Textures/_White/Overlays/mindslave.rsi + state: slave diff --git a/Resources/Prototypes/_White/Store/categories.yml b/Resources/Prototypes/_White/Store/categories.yml index 90755f4f2f..cb9cfbc88f 100644 --- a/Resources/Prototypes/_White/Store/categories.yml +++ b/Resources/Prototypes/_White/Store/categories.yml @@ -1,4 +1,4 @@ - type: storeCategory id: UplinkSales - name: Sales! + name: Sales priority: 10 diff --git a/Resources/Prototypes/_White/Store/presets.yml b/Resources/Prototypes/_White/Store/presets.yml new file mode 100644 index 0000000000..52f51076f9 --- /dev/null +++ b/Resources/Prototypes/_White/Store/presets.yml @@ -0,0 +1,17 @@ +- type: storePreset + id: StorePresetUplinkNoDiscounts + storeName: Uplink + categories: + - UplinkWeapons + - UplinkAmmo + - UplinkExplosives + - UplinkMisc + - UplinkBundles + - UplinkTools + - UplinkUtility + - UplinkImplants + - UplinkJob + - UplinkArmor + - UplinkPointless + currencyWhitelist: + - Telecrystal diff --git a/Resources/Prototypes/_White/Tiles/floors.yml b/Resources/Prototypes/_White/Tiles/floors.yml new file mode 100644 index 0000000000..2f68ce17b5 --- /dev/null +++ b/Resources/Prototypes/_White/Tiles/floors.yml @@ -0,0 +1,408 @@ +- type: tile + id: FloorLinoWhite + name: tiles-linoleum-white-floor + sprite: /Textures/_White/Tiles/lino_white.png + baseTurf: Plating + variants: 6 + placementVariants: + - 0.25 + - 0.083 + - 0.083 + - 0.083 + - 0.25 + - 0.25 + isSubfloor: false + deconstructTools: [ Prying ] + footstepSounds: + collection: FootstepTile + itemDrop: FloorTileItemLinoWhite + heatCapacity: 10000 + tileRipResistance: 100 + +- type: tile + id: FloorLinoGrey + name: tiles-linoleum-grey-floor + sprite: /Textures/_White/Tiles/lino_grey.png + baseTurf: Plating + variants: 6 + placementVariants: + - 0.25 + - 0.083 + - 0.083 + - 0.083 + - 0.25 + - 0.25 + isSubfloor: false + deconstructTools: [ Prying ] + footstepSounds: + collection: FootstepTile + itemDrop: FloorTileItemLinoGrey + heatCapacity: 10000 + tileRipResistance: 100 + +- type: tile + id: FloorLinoDark + name: tiles-linoleum-dark-floor + sprite: /Textures/_White/Tiles/lino_dark.png + baseTurf: Plating + variants: 6 + placementVariants: + - 0.25 + - 0.083 + - 0.083 + - 0.083 + - 0.25 + - 0.25 + isSubfloor: false + deconstructTools: [ Prying ] + footstepSounds: + collection: FootstepTile + itemDrop: FloorTileItemLinoDark + heatCapacity: 10000 + tileRipResistance: 100 + +- type: tile + id: FloorSteelYellow + name: tiles-steel-yellow-floor + sprite: /Textures/_White/Tiles/steel_yellow.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + deconstructTools: [ Prying ] + footstepSounds: + collection: FootstepFloor + itemDrop: FloorTileItemSteelYellow + heatCapacity: 10000 + tileRipResistance: 100 + +- type: tile + id: FloorSteelRed + name: tiles-steel-red-floor + sprite: /Textures/_White/Tiles/steel_red.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + deconstructTools: [ Prying ] + footstepSounds: + collection: FootstepFloor + itemDrop: FloorTileItemSteelRed + heatCapacity: 10000 + tileRipResistance: 100 + +- type: tile + id: FloorSteelGreen + name: tiles-steel-green-floor + sprite: /Textures/_White/Tiles/steel_green.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + deconstructTools: [ Prying ] + footstepSounds: + collection: FootstepFloor + itemDrop: FloorTileItemSteelGreen + heatCapacity: 10000 + tileRipResistance: 100 + +- type: tile + id: FloorSteelBlue + name: tiles-steel-blue-floor + sprite: /Textures/_White/Tiles/steel_blue.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + deconstructTools: [ Prying ] + footstepSounds: + collection: FootstepFloor + itemDrop: FloorTileItemSteelBlue + heatCapacity: 10000 + tileRipResistance: 100 + +- type: tile + id: FloorPlasticYellow + name: tiles-plastic-yellow-floor + sprite: /Textures/_White/Tiles/plastic_yellow.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + deconstructTools: [ Prying ] + footstepSounds: + collection: FootstepFloor + itemDrop: FloorTileItemPlasticYellow + heatCapacity: 10000 + tileRipResistance: 100 + +- type: tile + id: FloorPlasticRed + name: tiles-plastic-red-floor + sprite: /Textures/_White/Tiles/plastic_red.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + deconstructTools: [ Prying ] + footstepSounds: + collection: FootstepFloor + itemDrop: FloorTileItemPlasticRed + heatCapacity: 10000 + tileRipResistance: 100 + +- type: tile + id: FloorPlasticGreen + name: tiles-plastic-green-floor + sprite: /Textures/_White/Tiles/plastic_green.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + deconstructTools: [ Prying ] + footstepSounds: + collection: FootstepFloor + itemDrop: FloorTileItemPlasticGreen + heatCapacity: 10000 + tileRipResistance: 100 + +- type: tile + id: FloorPlasticBlue + name: tiles-plastic-blue-floor + sprite: /Textures/_White/Tiles/plastic_blue.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + deconstructTools: [ Prying ] + footstepSounds: + collection: FootstepFloor + itemDrop: FloorTileItemPlasticBlue + heatCapacity: 10000 + tileRipResistance: 100 + +- type: tile + id: FloorShielding + name: tiles-shielding-floor + sprite: /Textures/_White/Tiles/shielding.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + deconstructTools: [ Prying ] + footstepSounds: + collection: FootstepFloor + itemDrop: FloorTileItemShielding + heatCapacity: 10000 + tileRipResistance: 400 + +- type: tile + id: FloorShieldingMono + name: tiles-shielding-mono-floor + sprite: /Textures/_White/Tiles/shielding_mono.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + deconstructTools: [ Prying ] + footstepSounds: + collection: FootstepFloor + itemDrop: FloorTileItemShieldingMono + heatCapacity: 10000 + tileRipResistance: 400 + +- type: tile + id: FloorReinforcedGlassFrame + name: tiles-reinforced-glass-frame-floor + sprite: /Textures/_White/Tiles/rglass_frame.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + deconstructTools: [ Prying ] + footstepSounds: + collection: FootstepFloor + itemDrop: FloorTileItemReinforcedGlassFrame + heatCapacity: 10000 + tileRipResistance: 100 + +- type: tile + id: FloorGlassFrame + name: tiles-glass-frame-floor + sprite: /Textures/_White/Tiles/glass_frame.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + deconstructTools: [ Prying ] + footstepSounds: + collection: FootstepFloor + itemDrop: FloorTileItemGlassFrame + heatCapacity: 10000 + tileRipResistance: 100 + +# Departamental + +- type: tile + id: FloorSterile + name: tiles-sterile + sprite: /Textures/_White/Tiles/sterile.png + baseTurf: Plating + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + isSubfloor: false + deconstructTools: [ Prying ] + footstepSounds: + collection: FootstepHull + itemDrop: FloorTileItemSterile + heatCapacity: 10000 + tileRipResistance: 100 + +- type: tile + id: FloorSterileDark + name: tiles-sterile-dark + sprite: /Textures/_White/Tiles/sterile_dark.png + baseTurf: Plating + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + isSubfloor: false + deconstructTools: [ Prying ] + footstepSounds: + collection: FootstepHull + itemDrop: FloorTileItemSterileDark + heatCapacity: 10000 + tileRipResistance: 100 + +# Shuttle + +- type: tile + id: FloorShuttleSyndie + name: tiles-syndie-shuttle-floor + sprite: /Textures/_White/Tiles/shuttlesyndie.png + baseTurf: Plating + isSubfloor: false + deconstructTools: [ Prying ] + footstepSounds: + collection: FootstepFloor + itemDrop: FloorTileItemShuttleSyndie + heatCapacity: 10000 + +# Asteroid + +- type: tile + id: FloorAsteroidCoarse + name: tiles-asteroid-coarse + sprite: /Textures/_White/Tiles/Asteroid/asteroid_coarse.png + variants: 12 + placementVariants: + - 0.15 + - 0.15 + - 0.15 + - 0.15 + - 0.15 + - 0.15 + - 0.016 + - 0.016 + - 0.016 + - 0.016 + - 0.016 + - 0.016 + baseTurf: Space + isSubfloor: true + footstepSounds: + collection: FootstepAsteroid + heatCapacity: 10000 + weather: true + +- type: tile + id: FloorAsteroidCoarseDug + name: tiles-asteroid-coarse-dug + sprite: /Textures/_White/Tiles/Asteroid/asteroid_coarse_dug.png + variants: 6 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Space + isSubfloor: true + footstepSounds: + collection: FootstepAsteroid + heatCapacity: 10000 + weather: true + +- type: tile + id: FloorAsteroidGravel + name: tiles-asteroid-gravel + sprite: /Textures/_White/Tiles/Asteroid/asteroid_gravel.png + variants: 3 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + baseTurf: Space + isSubfloor: true + footstepSounds: + collection: FootstepAsteroid + heatCapacity: 10000 + weather: true + + diff --git a/Resources/Prototypes/_White/Tiles/plating.yml b/Resources/Prototypes/_White/Tiles/plating.yml new file mode 100644 index 0000000000..62bfc0c175 --- /dev/null +++ b/Resources/Prototypes/_White/Tiles/plating.yml @@ -0,0 +1,51 @@ +- type: tile + id: PlatingDiagonalNE + name: tiles-plating-diagonal-NE + sprite: /Textures/_White/Tiles/plating_diagonal_ne.png + baseTurf: Lattice + isSubfloor: true + isSpace: true + deconstructTools: [ AdvancedPrying ] + footstepSounds: + collection: FootstepPlating + friction: 0.3 + heatCapacity: 10000 + +- type: tile + id: PlatingDiagonalNW + name: tiles-plating-diagonal-NW + sprite: /Textures/_White/Tiles/plating_diagonal_nw.png + baseTurf: Lattice + isSubfloor: true + isSpace: true + deconstructTools: [ AdvancedPrying ] + footstepSounds: + collection: FootstepPlating + friction: 0.3 + heatCapacity: 10000 + +- type: tile + id: PlatingDiagonalSE + name: tiles-plating-diagonal-SE + sprite: /Textures/_White/Tiles/plating_diagonal_se.png + baseTurf: Lattice + isSubfloor: true + isSpace: true + deconstructTools: [ AdvancedPrying ] + footstepSounds: + collection: FootstepPlating + friction: 0.3 + heatCapacity: 10000 + +- type: tile + id: PlatingDiagonalSW + name: tiles-plating-diagonal-SW + sprite: /Textures/_White/Tiles/plating_diagonal_sw.png + baseTurf: Lattice + isSubfloor: true + isSpace: true + deconstructTools: [ AdvancedPrying ] + footstepSounds: + collection: FootstepPlating + friction: 0.3 + heatCapacity: 10000 diff --git a/Resources/Prototypes/_White/Voice/speech_emotes.yml b/Resources/Prototypes/_White/Voice/speech_emotes.yml index bbad06e1b7..7b518887f8 100644 --- a/Resources/Prototypes/_White/Voice/speech_emotes.yml +++ b/Resources/Prototypes/_White/Voice/speech_emotes.yml @@ -1,27 +1,23 @@ - type: emote id: Nod + name: chat-emote-name-nod category: General - buttonText: "emote-chat-button-text-nod" - chatMessages: [ "emote-chat-messages-nod-1" ] - allowMenu: true + chatMessages: [ "chat-emote-msg-nod" ] - type: emote id: ShakeHead + name: chat-emote-name-shake-head category: General - buttonText: "emote-chat-button-text-shake-head" - chatMessages: [ "emote-chat-messages-shake-head-1" ] - allowMenu: true + chatMessages: [ "chat-emote-msg-shake-head" ] - type: emote id: Frown + name: chat-emote-name-frown category: General - buttonText: "emote-chat-button-text-frown" - chatMessages: [ "emote-chat-messages-frown-1" ] - allowMenu: true + chatMessages: [ "chat-emote-msg-frown" ] - type: emote id: Smile + name: chat-emote-name-smile category: General - buttonText: "emote-chat-button-text-smile" - chatMessages: [ "emote-chat-messages-smile-1" ] - allowMenu: true + chatMessages: [ "chat-emote-msg-smile" ] diff --git a/Resources/Prototypes/_White/Voice/speech_sounds.yml b/Resources/Prototypes/_White/Voice/speech_sounds.yml new file mode 100644 index 0000000000..9f8867a57f --- /dev/null +++ b/Resources/Prototypes/_White/Voice/speech_sounds.yml @@ -0,0 +1,8 @@ +- type: speechSounds + id: Gondola + saySound: + path: /Audio/_White/Voice/Gondola/ehh.ogg + askSound: + path: /Audio/_White/Voice/Gondola/ehh2.ogg + exclaimSound: + path: /Audio/_White/Voice/Gondola/ehh3.ogg diff --git a/Resources/Prototypes/_White/Voice/speech_verbs.yml b/Resources/Prototypes/_White/Voice/speech_verbs.yml new file mode 100644 index 0000000000..cdf8d4d807 --- /dev/null +++ b/Resources/Prototypes/_White/Voice/speech_verbs.yml @@ -0,0 +1,6 @@ +- type: speechVerb + id: Gondola + name: chat-speech-verb-name-gondola + speechVerbStrings: + - chat-speech-verb-gondola-1 + - chat-speech-verb-gondola-2 diff --git a/Resources/Prototypes/_White/hud.yml b/Resources/Prototypes/_White/hud.yml new file mode 100644 index 0000000000..2b08e93629 --- /dev/null +++ b/Resources/Prototypes/_White/hud.yml @@ -0,0 +1,11 @@ +- type: hudTheme + id: SS14OperativeTheme + name: ui-options-hud-theme-operative + path: /Textures/_White/Interface/Operative/ + order: 7 + +- type: hudTheme + id: SS14HalloweenTheme + name: ui-options-hud-theme-halloween + path: /Textures/_White/Interface/Halloween/ + order: 8 diff --git a/Resources/Prototypes/_White/tags.yml b/Resources/Prototypes/_White/tags.yml index 87aef01fe8..ad23a4bbd8 100644 --- a/Resources/Prototypes/_White/tags.yml +++ b/Resources/Prototypes/_White/tags.yml @@ -3,3 +3,15 @@ - type: Tag id: AlienItem + +- type: Tag + id: CrossbowBolt + +- type: Tag + id: Telecrystal + +- type: Tag + id: NeuroStabilization + +- type: Tag + id: MindSlave diff --git a/Resources/Prototypes/_White/themes.yml b/Resources/Prototypes/_White/themes.yml new file mode 100644 index 0000000000..5321e2f790 --- /dev/null +++ b/Resources/Prototypes/_White/themes.yml @@ -0,0 +1,29 @@ +- type: uiTheme + id: SS14OperativeTheme + path: /Textures/_White/Interface/Operative/ + colors: + whiteText: "#FFF5EE" + slotSelectedGold: "#e6b812" + slotColor: "#0f1215" + slotOutline: "#333850" + slotText: "#333850" + nanoGold: "#A88B5E" + goodGreenFore: "#31843E" + concerningOrangeFore: "#A5762F" + dangerousRedFore: "#BB3232" + disabledFore: "#5A5A5A" + +- type: uiTheme + id: SS14HalloweenTheme + path: /Textures/_White/Interface/Halloween/ + colors: + whiteText: "#FFF5EE" + slotSelectedGold: "#e6b812" + slotColor: "#0f1215" + slotOutline: "#333850" + slotText: "#333850" + nanoGold: "#A88B5E" + goodGreenFore: "#31843E" + concerningOrangeFore: "#A5762F" + dangerousRedFore: "#BB3232" + disabledFore: "#5A5A5A" diff --git a/Resources/Prototypes/floor_trap.yml b/Resources/Prototypes/floor_trap.yml new file mode 100644 index 0000000000..217dd9fca2 --- /dev/null +++ b/Resources/Prototypes/floor_trap.yml @@ -0,0 +1,116 @@ +- type: entity + id: CollideFloorTrap + abstract: true + placement: + mode: SnapgridCenter + components: + - type: Sprite + sprite: Tiles/Misc/floortrap.rsi + state: floortrap + - type: Fixtures + fixtures: + floortrap: + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.4,0.4,0.4" + hard: false + mask: + - ItemMask + layer: + - SlipLayer + - type: Physics + - type: Tag + tags: + - HideContextMenu + +- type: entity + parent: CollideFloorTrap + id: CollideFloorTrapSpawn + name: floor trap spawn + abstract: true + components: + - type: Sprite + sprite: Tiles/Misc/floortrap.rsi + state: floortrapspawn + +- type: entity + parent: CollideFloorTrap + id: FloorTrapExplosion + name: explosion floor trap + components: + - type: TriggerOnCollide + fixtureID: floortrap + - type: ExplodeOnTrigger + - type: Explosive + explosionType: Default + totalIntensity: 20.0 + intensitySlope: 5 + maxIntensity: 4 + - type: DeleteOnTrigger + +- type: entity + parent: CollideFloorTrap + id: FloorTrapEMP + name: EMP floor trap + components: + - type: TriggerOnCollide + fixtureID: floortrap + - type: EmpOnTrigger + range: 2 + energyConsumption: 5000 + - type: DeleteOnTrigger + +- type: entity + parent: CollideFloorTrapSpawn + id: SpawnFloorTrapCarp + suffix: Carp + components: + - type: TriggerOnCollide + fixtureID: floortrap + - type: SpawnOnTrigger + proto: MobCarp + - type: DeleteOnTrigger + +- type: entity + parent: CollideFloorTrapSpawn + id: SpawnFloorTrapBear + suffix: Bear + components: + - type: TriggerOnCollide + fixtureID: floortrap + - type: SpawnOnTrigger + proto: MobBearSpace + - type: DeleteOnTrigger + +- type: entity + parent: CollideFloorTrapSpawn + id: SpawnFloorTrapKangaroo + suffix: Kangaroo + components: + - type: TriggerOnCollide + fixtureID: floortrap + - type: SpawnOnTrigger + proto: MobKangarooSpace + - type: DeleteOnTrigger + +- type: entity + parent: CollideFloorTrapSpawn + id: SpawnFloorTrapXenoDrone + suffix: Xeno. Drone + components: + - type: TriggerOnCollide + fixtureID: floortrap + - type: SpawnOnTrigger + proto: MobXenoDrone + - type: DeleteOnTrigger + +- type: entity + parent: CollideFloorTrapSpawn + id: SpawnFloorTrapXenoBurrower + suffix: Xeno. Burrower + components: + - type: TriggerOnCollide + fixtureID: floortrap + - type: SpawnOnTrigger + proto: MobXeno + - type: DeleteOnTrigger diff --git a/Resources/Prototypes/fonts.yml b/Resources/Prototypes/fonts.yml index 92c2947258..8e49fe8c35 100644 --- a/Resources/Prototypes/fonts.yml +++ b/Resources/Prototypes/fonts.yml @@ -61,3 +61,7 @@ - type: font id: Noganas path: /Fonts/Noganas.ttf + +- type: font + id: Cambria + path: /Fonts/Cambria.ttf diff --git a/Resources/Prototypes/lobbyscreens.yml b/Resources/Prototypes/lobbyscreens.yml index 773af9a143..d8c5d28379 100644 --- a/Resources/Prototypes/lobbyscreens.yml +++ b/Resources/Prototypes/lobbyscreens.yml @@ -37,3 +37,7 @@ - type: lobbyBackground id: TerminalStation background: /Textures/LobbyScreens/terminalstation.webp + +- type: lobbyBackground + id: JustAWeekAway + background: /Textures/LobbyScreens/justaweekaway.webp \ No newline at end of file diff --git a/Resources/Prototypes/name_identifier_groups.yml b/Resources/Prototypes/name_identifier_groups.yml index 82c2f3bce9..4823e31f55 100644 --- a/Resources/Prototypes/name_identifier_groups.yml +++ b/Resources/Prototypes/name_identifier_groups.yml @@ -37,3 +37,9 @@ id: Bounty minValue: 0 maxValue: 999 + +- type: nameIdentifierGroup + id: CargoTelepads + prefix: TELE + minValue: 0 + maxValue: 999 diff --git a/Resources/Prototypes/ore.yml b/Resources/Prototypes/ore.yml index dde1516c85..d471a3ac96 100644 --- a/Resources/Prototypes/ore.yml +++ b/Resources/Prototypes/ore.yml @@ -84,6 +84,18 @@ minOreYield: 2 maxOreYield: 4 +- type: ore + id: OreBluespace + oreEntity: BluespaceOre1 + minOreYield: 1 + maxOreYield: 1 + +- type: ore + id: OreNormality + oreEntity: NormalityOre1 + minOreYield: 1 + maxOreYield: 1 + - type: weightedRandomOre id: RandomOreDistributionStandard weights: @@ -96,6 +108,8 @@ OreUranium: 1 OreBananium: 0.5 OreArtifactFragment: 0.5 + OreBluespace: 0.5 + OreNormality: 0.3 - type: weightedRandomOre id: OreCrab diff --git a/Resources/Prototypes/secret_weights.yml b/Resources/Prototypes/secret_weights.yml index 4ad31cd194..3d7e2480b0 100644 --- a/Resources/Prototypes/secret_weights.yml +++ b/Resources/Prototypes/secret_weights.yml @@ -1,9 +1,12 @@ - type: weightedRandom id: Secret weights: - Survival: 0.44 - Nukeops: 0.14 - Zombie: 0.03 - Traitor: 0.39 + Extended: 0.07 + Traitor: 0.45 + Nukeops: 0.20 + Zombie: 0.10 + Revolutionary: 0.15 + Survival: 0.02 + AllAtOnce: 0.01 #Pirates: 0.15 #ahoy me bucko diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index cc81a2ed64..6cb813ba80 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -25,6 +25,9 @@ - type: Tag id: Arrow +- type: Tag + id: Ash + - type: Tag id: ATVKeys @@ -259,6 +262,9 @@ - type: Tag id: CableCoil +- type: Tag + id: CaneBlade + - type: Tag id: CapacitorStockPart @@ -352,6 +358,9 @@ - type: Tag id: CartridgeRocket +- type: Tag + id: CaveFactory + # Allows you to walk over tile entities such as lava without steptrigger - type: Tag id: Catwalk @@ -401,6 +410,9 @@ - type: Tag id: ClownSuit +- type: Tag + id: CluwneHappyHonk + - type: Tag id: CluwneHorn @@ -803,6 +815,12 @@ - type: Tag id: MacroBomb +- type: Tag + id: Mail + +- type: Tag + id: MailCapsule + - type: Tag id: MimeBelt @@ -877,6 +895,9 @@ - type: Tag id: Meat +- type: Tag + id: Medal + - type: Tag id: Medkit @@ -916,6 +937,12 @@ - type: Tag id: Multitool +- type: Tag + id: Mustard + +- type: Tag + id: MysteryFigureBox + - type: Tag id: NoBlockAnchoring @@ -1112,15 +1139,15 @@ - type: Tag id: Shiv -- type: Tag - id: ShoesRequiredStepTriggerImmune - - type: Tag id: Shovel - type: Tag id: Sidearm +- type: Tag + id: SignalTrigger + - type: Tag id: SkeletonMotorcycleKeys @@ -1136,9 +1163,6 @@ - type: Tag id: Smokable -- type: Tag - id: SnapPop - - type: Tag id: SnowyLabs @@ -1247,6 +1271,9 @@ - type: Tag id: TrashBag +- type: Tag + id: Truncheon + - type: Tag id: Unimplantable @@ -1286,6 +1313,9 @@ - type: Tag id: WeaponShotgunKammerer +- type: Tag + id: WeldingMask + - type: Tag id: WetFloorSign @@ -1295,6 +1325,9 @@ - type: Tag id: WhitelistChameleon +- type: Tag + id: WhoopieCushion + - type: Tag id: Window @@ -1327,5 +1360,3 @@ - type: Tag id: WriteIgnoreStamps - -# PUT YOUR TAGS IN ALPHABETICAL ORDER diff --git a/Resources/Prototypes/themes.yml b/Resources/Prototypes/themes.yml index edd2681a62..3952687255 100644 --- a/Resources/Prototypes/themes.yml +++ b/Resources/Prototypes/themes.yml @@ -12,6 +12,8 @@ concerningOrangeFore: "#A5762F" dangerousRedFore: "#BB3232" disabledFore: "#5A5A5A" + _itemstatus_content_margin_right: "#06060404" + _itemstatus_content_margin_left: "#04060604" - type: uiTheme id: SS14PlasmafireTheme path: /Textures/Interface/Plasmafire/ @@ -26,6 +28,8 @@ concerningOrangeFore: "#FFF5EE" dangerousRedFore: "#FFF5EE" disabledFore: "#FFF5EE" + _itemstatus_content_margin_right: "#06060404" + _itemstatus_content_margin_left: "#04060604" - type: uiTheme id: SS14SlimecoreTheme path: /Textures/Interface/Slimecore/ @@ -40,6 +44,8 @@ concerningOrangeFore: "#FFF5EE" dangerousRedFore: "#FFF5EE" disabledFore: "#FFF5EE" + _itemstatus_content_margin_right: "#06060404" + _itemstatus_content_margin_left: "#04060604" - type: uiTheme id: SS14ClockworkTheme path: /Textures/Interface/Clockwork/ @@ -54,6 +60,8 @@ concerningOrangeFore: "#FFF5EE" dangerousRedFore: "#FFF5EE" disabledFore: "#FFF5EE" + _itemstatus_content_margin_right: "#06060404" + _itemstatus_content_margin_left: "#04060604" - type: uiTheme id: SS14RetroTheme path: /Textures/Interface/Retro/ @@ -68,6 +76,8 @@ concerningOrangeFore: "#FFF5EE" dangerousRedFore: "#FFF5EE" disabledFore: "#FFF5EE" + _itemstatus_content_margin_right: "#06060404" + _itemstatus_content_margin_left: "#04060604" - type: uiTheme id: SS14MinimalistTheme path: /Textures/Interface/Minimalist/ @@ -82,6 +92,8 @@ concerningOrangeFore: "#A5762F" dangerousRedFore: "#BB3232" disabledFore: "#5A5A5A" + _itemstatus_content_margin_right: "#06060604" + _itemstatus_content_margin_left: "#06060604" - type: uiTheme id: SS14AshenTheme path: /Textures/Interface/Ashen/ @@ -96,3 +108,5 @@ concerningOrangeFore: "#FFF5EE" dangerousRedFore: "#FFF5EE" disabledFore: "#FFF5EE" + _itemstatus_content_margin_right: "#06060604" + _itemstatus_content_margin_left: "#06060604" diff --git a/Resources/ServerInfo/Guidebook/Antagonist/Antagonists.xml b/Resources/ServerInfo/Guidebook/Antagonist/Antagonists.xml index a0e434dc77..927a56a505 100644 --- a/Resources/ServerInfo/Guidebook/Antagonist/Antagonists.xml +++ b/Resources/ServerInfo/Guidebook/Antagonist/Antagonists.xml @@ -8,5 +8,6 @@ Antagonists can take many forms, like: - Nuclear operatives, with the goal of infiltrating and destroying the station. - Traitors infiltrating the crew who can assassinate targets and steal high value items. + - Space Ninjas, masters of espionage and sabotage, who are equipped with special gear. - Several non-humanoid creatures, who usually just try to bring down as many crewmembers as they can. diff --git a/Resources/ServerInfo/Guidebook/Antagonist/Revolutionaries.xml b/Resources/ServerInfo/Guidebook/Antagonist/Revolutionaries.xml index 8ee9ec090e..e69220fc2a 100644 --- a/Resources/ServerInfo/Guidebook/Antagonist/Revolutionaries.xml +++ b/Resources/ServerInfo/Guidebook/Antagonist/Revolutionaries.xml @@ -10,7 +10,7 @@ - [color=#5e9cff]Head Revolutionaries[/color] are chosen at the start of the shift and are tasked with taking over the station by killing or exiling all of the Command staff. Head Revolutionaries will be given a [color=#a4885c]Flash[/color] and a pair of [color=#a4885c]Sunglasses[/color] to aid them. + [color=#5e9cff]Head Revolutionaries[/color] are chosen at the start of the shift and are tasked with taking over the station by killing, exiling or cuffing all of the Command staff. Head Revolutionaries will be given a [color=#a4885c]Flash[/color] and a pair of [color=#a4885c]Sunglasses[/color] to aid them. ## Conversion @@ -41,7 +41,7 @@ ## Objectives - You must eliminate or exile all of the following Command staff on station in no particular order. + You must eliminate, exile or arrest all of the following Command staff on station in no particular order. - Captain - Head of Personnel - Chief Engineer diff --git a/Resources/ServerInfo/Guidebook/Antagonist/SpaceNinja.xml b/Resources/ServerInfo/Guidebook/Antagonist/SpaceNinja.xml index 7fed84da73..f088b9f27b 100644 --- a/Resources/ServerInfo/Guidebook/Antagonist/SpaceNinja.xml +++ b/Resources/ServerInfo/Guidebook/Antagonist/SpaceNinja.xml @@ -1,74 +1,80 @@ -# Space Ninja + # Space Ninja -The Space Ninja is a ghost role randomly available mid-late game. If you pick it you will be given your gear, your objectives and the greeting. + The [color=#66FF00]Space Ninja[/color] is a ghost role randomly available mid-late game. If you pick it you will be given your gear, your objectives and the greeting. -You are a ninja, but in space. The Spider Clan has sent you to the station to wreak all kinds of havoc, from bolting the armory open and killing the entire station to engaging in a slipping war with the clown and fighting in rage cages. + You are a ninja, but in space. [color=#66FF00]The Spider Clan[/color] has sent you to the station to wreak all kinds of havoc, and you are equipped to keep it silent-but-deadly. -# Equipment + Whether you mercilessly pick off the station's crew one by one, or assassinate the clown over and over, your discipline has taught you that [color=#66FF00]your objectives must be at least attempted[/color]. For honor! -You start with a microbomb implant, so if you get KIA or seppuku you will leave behind a nice crater and all your precious equipment is kept out of enemy hands. + # Equipment -Your bag is full of tools for more subtle sabotage, along with a survival box if you need a snack. + You begin implanted with a [color=#a4885c]death acidifier[/color], so if you are KIA or decide to commit seppuku you will leave behind one final gift to the janitor and all your precious equipment is kept out of enemy hands. -You have a jetpack and pinpointer that will let you find the station. + Your bag is full of tools for more subtle sabotage, along with a survival box if you need a snack. - + You have a [color=#a4885c]jetpack[/color] and [color=#a4885c]pinpointer[/color] that will let you find the station. -## Ninja Suit + - + ## Ninja Suit -Your single most important item is your suit, without it none of your abilities would work. -Your suit requires power to function, its internal battery can be replaced by clicking on it **with a better one**. -You can see the current charge by examining the suit or in a sweet battery alert at the top right of your screen. + -If you run out of power and need to recharge your battery, just use your gloves to drain an APC, substation or a SMES. + Your single most important item is [color=#66FF00]your suit[/color], without it none of your abilities would work. + Your suit requires power to function. Its [color=#a4885c]internal battery[/color] can be replaced by clicking on it with another one, and [color=#a4885c]higher capacity batteries[/color] mean a [color=#a4885c]highly effective ninja[/color]. + You can see the current charge by examining the suit or in a sweet battery alert at the top right of your screen. -## Ninja Gloves + If you run out of power and need to recharge your battery, just use your gloves to drain an APC, substation or a SMES. - + ## Ninja Gloves -These bad boys are your bread and butter. + -They are insulated so you can nom on wires in peace. Obviously they block your fingerprints from being left on things you touch. + [color=#66FF00]These bad boys are your bread and butter.[/color] -You have an action to toggle gloves. When the gloves are turned on, they allow you to use special abilities, which are triggered by interacting with things with an empty hand and with combat mode disabled. + They are made from [color=#a4885c]insulated nanomachines[/color] to assist you in gracefully breaking and entering into your destination without leaving behind fingerprints. -Your glove abilities include: -- Emagging an unlimited number of doors. -- Draining power from transformers such as APCs, substations or SMESes. The higher the voltage, the more efficient the draining is. -- You can shock any mob, stunning and slightly damaging them. -- You can download technologies from a R&D server for one of your objectives. -- You can hack a communications console to call in a threat. + You have an action to toggle gloves. When the gloves are turned on, they allow you to use [color=#a4885c]special abilities[/color], which are triggered by interacting with things with an empty hand and with combat mode disabled. -## Energy Katana + Your glove abilities include: + - Emagging an unlimited number of doors. + - Draining power from transformers such as APCs, substations or SMESes. The higher the voltage, the more efficient the draining is. + - You can shock any mob, stunning and slightly damaging them. + - You can download technologies from a R&D server for one of your objectives. + - You can hack a communications console to call in a threat. - + ## Energy Katana -Deals a lot of damage and can be recalled at will, costing suit power proportional to the distance teleported. -While in hand you can teleport to anywhere that you can see, meaning most doors and windows, but not past solid walls. -This has a limited number of charges which regenerate slowly, so keep a charge or two spare incase you need a quick getaway. + -## Spider Clan Charge + You have sworn yourself to the [color=#66FF00]sword[/color] and refuse to use firearms. + Deals a lot of damage and can be recalled at will, costing suit power proportional to the distance teleported. + + While in hand you can [color=#a4885c]teleport[/color] to anywhere that you can see, meaning most doors and windows, but not past solid walls. + This has a limited number of charges which regenerate slowly, so keep a charge or two spare incase you need a quick getaway. - + ## Spider Clan Charge -A modified C-4 explosive, you start with this in your pocket. Creates a large explosion but must be armed in your target area. -A random area on the map is selected for you to blow up, which is one of your objectives. It can't be activated manually, simply plant it on a wall or something. -Can't be unstuck once planted. + -## Ninja Shoes + [color=#66FF00]A modified C-4 explosive[/color], you start with this in your pocket. Creates a large explosion but must be armed in your target area. + A random area on the map is selected for you to blow up, which is one of your [color=#a4885c]objectives[/color]. -Special noslips that make you go really fast. -Energy not required. + It can't be activated manually, simply plant it on a wall or a particularly ugly piece of furniture. + Can't be unstuck once planted. -# Objectives + ## Ninja Shoes -- Download X research nodes: Use your gloves on an R&D server with a number of unlocked technologies -- Doorjack X doors on the station: Use your gloves to emag a number of doors. -- Detonate the spider clan charge: Plant your spider clan charge at a random location and watch it go boom. -- Call in a threat: Use your gloves on a communications console. -- Survive: Don't die. + Special [color=#a4885c]noslips[/color] that keep you agile, swift and upright. + Energy not required. + + # Objectives + + - Download X research nodes: Use your gloves on an R&D server with a number of unlocked technologies + - Doorjack X doors on the station: Use your gloves to emag a number of doors. + - Detonate the spider clan charge: Plant your spider clan charge at a random location and watch it go boom. + - Call in a threat: Use your gloves on a communications console. + - Survive: Don't die. diff --git a/Resources/ServerInfo/Guidebook/Engineering/AME.xml b/Resources/ServerInfo/Guidebook/Engineering/AME.xml index ae0217c4b0..0a96907203 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/AME.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/AME.xml @@ -1,26 +1,25 @@ -# Antimatter Engine (AME) + # Antimatter Engine (AME) -The AME is one of the simplest engines available. You put together the multi-tile structure, stick some fuel into it, and you're all set. This doesn't mean it isn't potentially dangerous with overheating though. + The AME is one of the simplest engines available. You put together the multi-tile structure, stick some fuel into it, and you're all set. This doesn't mean it is perfectly safe though; you may need to deal with the AME overheating. -## Construction -Required parts: - - - - - + ## Construction + Required parts: + + + + + -To assemble an AME, start by wrenching down the controller on the far end of a HV wire. On most stations, there's catwalks to assist with this. From there, start putting down a 3x3 or larger square of AME parts in preparation for construction, making sure to maximize the number of "center" pieces that are surrounded on all 8 sides. + To assemble an AME, start by wrenching down the controller on the near end of a HV wire. On most stations, there's catwalks to assist with this. From there, start putting down a 3x3 or larger square of AME parts in preparation for construction, making sure to maximize the number of "center" pieces that are surrounded on all 8 sides. -Once this is done, you can use a multitool to convert each AME part into shielding, which should form a finished AME configuration. From there, insert a fuel jar, set the fuel rate to [color=#a4885c]twice the core count or less[/color], and turn on injection. + Once this is done, you can use a multitool to convert each AME part into shielding, which should form a finished AME configuration. From there, insert a fuel jar, set the fuel rate to [color=#a4885c]twice the core count or less[/color], and turn on injection. Any more than this ratio will eventually result in the engine [color=#ff0000]overheating and[/color], shortly afterwards, [color=#ff0000]exploding[/color]. -## Fuel Economy -The closer you are to the perfect ratio of [color=#a4885c]1:2[/color] (1 AME core to 2 fuel rate) the more efficient you'll be. You're cutting fuel efficiency to [color=#a4885c]50% and less[/color] if you're using more cores, but less fuel injection rate. -For an example [color=#76db91]3 core and 6 fuel rate[/color] will generate [color=#76db91]240kW[/color], while [color=#f0684d]8 core 8 fuel rate[/color] will generate [color=#f0684d]160kW[/color]. Generating 80kW less while spending 2 more fuel each injection. + ## Fuel Economy + The closer you are to the perfect ratio of [color=#a4885c]1:2[/color] AME cores to fuel injection rate, the more efficient you'll be. You're cutting fuel efficiency to [color=#a4885c]50% and less[/color] if you're using more cores, but a lower fuel injection rate. + For an example, [color=#76db91]3 cores and 6 fuel injected[/color] will generate [color=#76db91]240kW[/color], while [color=#f0684d]8 cores and 8 fuel injected[/color] will generate [color=#f0684d]160kW[/color]; you'd be generating 80kW less while spending 2 more fuel per injection. -## Upgrading the AME - -You can generally only upgrade the AME by getting more cores, which can be done by ordering more AME packages from [color=#a4885c]logistics[/color]. + ## Upgrading the AME + You can generally only upgrade the AME by installing more cores, which can be done by ordering more AME flatpacks from [color=#a4885c]Logistics[/color]. diff --git a/Resources/ServerInfo/Guidebook/Engineering/AccessConfigurator.xml b/Resources/ServerInfo/Guidebook/Engineering/AccessConfigurator.xml index e54f45345d..490cbf09c3 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/AccessConfigurator.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/AccessConfigurator.xml @@ -1,32 +1,34 @@ -# Access Configurator -The access configurator is a tool used to specify what type of personnel may use certain devices. + # Access Configurator + The access configurator is a tool used to specify what type of personnel may use certain devices. - - - + + + -Configurable devices can include airlocks, secure crates and lockers, as well as access restricted machines. + Configurable devices can include airlocks, secure crates and lockers, as well as access restricted machines. + Note: Airlocks can have their accesses configured by the [color=#a4885c]Network Configurator[/color] (or multitool), for convenience. -## Where to find access configurators -Each station is equipped with up to two access configurators. The first is in the possession of the Chief Engineer, while the second can be found with the Head of Personnel. + ## Where to find Access Configurators + Each station is equipped with up to two access configurators. The first is in the possession of the Chief Engineer, while the second can be found with the Head of Personnel. -## How to use the access configurator -To modify a device using the access configurator -- First, use the access configurator on the chosen device to link them together. This will automatically open the configurator UI. -- Next, insert an ID card into the access configurator. -- Set the access requirements of the connected device. What requirements can be added or removed will depend upon the access privileges of the inserted ID card. -- Any changes made will be applied immediately - simply eject the ID card from the access configurator and close the UI when you are done. + ## How to use the access configurator + To modify a device using the access configurator: + - First, use the access configurator on the chosen device to link them together. This will automatically open the configurator UI. + - Next, insert an ID card into the access configurator. + - Set the access requirements of the connected device. What requirements can be added or removed will depend upon the access privileges of the inserted ID card. + - Any changes made will be applied [color=#a4885c]immediately[/color] - simply eject the ID card from the access configurator and close the UI when you are done. -## Restrictions on changing access -As a safety precaution, the inserted ID must possess *all* of the access requirements that are currently active on the connected device in order to modify it. + ## Restrictions on changing access + As a safety precaution, the inserted ID must possess [bold]all[/bold] of the access requirements that are currently active on the connected device in order to modify it. -For example, a device which can be access by both 'Epistemics' and 'Medical' personnel can only by modified using an ID card that has access to both of these departments. The access configurator will warn the user if the inserted ID card does not have sufficient privileges to modify a device. + For example, a device which can be access by both 'Epistemics' and 'Medical' personnel can only by modified using an ID card that has access to [color=#a4885c]both[/color] of these departments. + The access configurator will warn the user if the inserted ID card does not have sufficient privileges to modify a device. -A device with no access requirements set, like a public access airlock, can be modified using any valid station ID card. + A device with no access requirements set, like a public access airlock, can be modified using any valid station ID card. -## Repairing damaged ID card readers -Syndicate agents may attempt to hack access restricted devices through the use of a Cryptographic Sequencer (EMAG). This nefarious tool will completely short out any ID card readers that are attached to the device. + ## Repairing damaged ID card readers + Syndicate agents may attempt to hack access restricted devices through the use of a [color=#a4885c]Cryptographic Sequencer (EMAG)[/color]. This nefarious tool will completely short out any ID card readers that are attached to the device. -Crew members will need to partially de/reconstruct affected devices, and then set appropriate access permissions afterwards using the access configurator, to re-establish access restrictions. + Engineers will need to partially de/reconstruct affected devices, and then set appropriate access permissions afterwards using the access configurator (or network configurator, for airlocks), to re-establish access restrictions. diff --git a/Resources/ServerInfo/Guidebook/Engineering/AirlockSecurity.xml b/Resources/ServerInfo/Guidebook/Engineering/AirlockSecurity.xml index 125833a0a1..8bfd3902cc 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/AirlockSecurity.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/AirlockSecurity.xml @@ -1,76 +1,76 @@ -# Airlock Upgrades -It is not uncommon for plucky individuals to try and bypass an airlock by meddling with its internal wiring. + # Airlock Upgrades + It is not uncommon for plucky individuals to try and bypass an airlock by meddling with its internal wiring. -Fortunately, certain countermeasures can installed into airlocks to inconvenience any would be trespassers. + Fortunately, certain countermeasures can installed into airlocks to inconvenience any would-be trespassers. -## Medium security airlocks -The most basic form of intrusion deterrence is to install internal steel plating that will prevent access to internal wiring of the airlock. + ## Medium security airlocks + The most basic form of intrusion deterrence is to install a secured steel plating that will prevent access to internal wiring of the airlock. -To upgrade a basic airlock to a medium security airlock, you will require the following materials - - - - - - - - - - - + To upgrade a basic airlock to a medium security airlock, you will require the following materials: + + + + + + + + + + + -To upgrade the basic airlock, -- Use the screwdriver to open the airlock maintenance panel. -- Add the steel sheets to the airlock. -- Weld the steel sheets into place. -- Close the maintenance panel using the screwdriver. + To upgrade a basic airlock: + - Use the screwdriver to open the airlock maintenance panel. + - Add the steel sheets to the airlock. + - Weld the steel sheets into place. + - Close the maintenance panel using the screwdriver. -## High security airlocks -For airlocks leading to the more sensitive areas of the space station, the use of stronger deterrents are advised. High security airlocks have improved armor plating to protect its internal wiring, along with an electrified security grille. + ## High security airlocks + For airlocks leading to the more sensitive areas of the space station, the use of stronger deterrents are advised. High security airlocks have improved armor plating to protect its internal wiring, along with an electrified security grille. -To upgrade a basic airlock to a high security airlock, you will require the following materials - - - - - - - - - - - - - - + To upgrade a medium security airlock to a high security airlock, you will require the following materials: + + + + + + + + + + + + + + -To upgrade the basic airlock, -- Use the screwdriver to open the airlock maintenance panel. -- Add the plasteel sheets to the airlock. -- Weld the plasteel sheets into place. -- Add the metal rods to the airlock. -- Close the maintenance panel using the screwdriver. + To upgrade a medium security airlock: + - Use the screwdriver to open the airlock maintenance panel. + - Add the plasteel sheets to the airlock. + - Weld the plasteel sheets into place. + - Add the metal rods to the airlock. + - Close the maintenance panel using the screwdriver. -## Maximum security airlocks -You can optionally upgrade a high security airlock to a maximum security airlock. Maximum security airlocks possess an additional layer of plasteel plating on top of its other protections. + ## Maximum security airlocks + You can optionally upgrade a high security airlock to a maximum security airlock. Maximum security airlocks possess an additional layer of plasteel plating on top of its other protections. -To upgrade a high security airlock to a maximum security airlock, you will require the following materials - - - - - - - - - - - + To upgrade a high security airlock to a maximum security airlock, you will require the following materials: + + + + + + + + + + + -To upgrade the high security airlock, -- Use the screwdriver to open the airlock maintenance panel. -- Add the plasteel sheets to the airlock. -- Weld the plasteel sheets into place. -- Close the maintenance panel using the screwdriver. - \ No newline at end of file + To upgrade a high security airlock: + - Use the screwdriver to open the airlock maintenance panel. + - Add the plasteel sheets to the airlock. + - Weld the plasteel sheets into place. + - Close the maintenance panel using the screwdriver. + diff --git a/Resources/ServerInfo/Guidebook/Engineering/Atmospherics.xml b/Resources/ServerInfo/Guidebook/Engineering/Atmospherics.xml index 693e3a0209..48d0d9415e 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Atmospherics.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Atmospherics.xml @@ -1,61 +1,67 @@ - -# Atmospherics - -Atmospherics setups are a necessity for your long-term comfort but are generally undocumented, resulting in them being a bit tricky to set up. The following attempts to cover the basics. - -## Standard Mix -Breathing pure O2 or pure N2 is generally bad for the health of your crew, and it is recommended to instead aim for a mix of [color=#a4885c]78% N2 and 22% O2 at 101.24kPa.[/color] It's recommended that your gas mixer setup be set to output at least 1000kPa for faster re-pressurization of rooms. - - - - - -Variations on this mix may be necessary for the long-term comfort of atypical crew, for example crew who require a plasma gas mix to survive. For atypical crew, it is recommended to try and give them their own personal space, isolated by either airlock or disposals section. Keep in mind both methods are leaky and you will need scrubbers on both sides of the lock to clean up any leaked gasses. - - - - -## Vents and Scrubbers -Vents and scrubbers are core atmospherics devices that fill and cleanse rooms, respectively. By default, they are configured for filling rooms to standard pressure (101.24kPa) and to remove all non-O2/N2 gasses from a room. They can be reconfigured from their default settings, allowing you to configure how they respond to various types of gasses or pressure levels. This can be done by interacting with an existing air alarm nearby, or installing and connecting them to a new one. - - - - - -During standard operation, if a vent detects that the outside environment is space, it will automatically cease operation until a minimum pressure is reached to avoid destruction of necessary gasses. This can be fixed by pressurizing the room up to that minimum pressure by refilling it with gas canister (potentially multiple, if the room is of significant size). - -Should you encounter a situation where scrubbers aren't cleaning a room fast enough, employ portable scrubbers by dragging them to the affected location and wrenching them down. They work much faster than typical scrubbers and can clean up a room quite quickly. Large spills may require you to employ multiple. - - - -# Gas mixes and Burn chambers -In the event you finish all the tasks at hand, you can make some extra power or money by creating new chemical gasses. - -##Tritium -Tritium is a clear, green gas that is highly flammable, radioactive, and combusts when in contact with oxygen making it very helpful when running the [color=#a4885c]TEG.[/color] -It can be made by burning 1% Plasma and 96% or more Oxygen in the Burn Chamber. You can extract this gas through scrubbers. - - - - - - - - -##Frezon -Frezon is a bluish-green gas that is very complex and very dangerous. To obtain frezon, you must mix Tritium, Oxygen, and Nitrogen in a 70K room to start the reaction, as well as prevent the Tritium from combusting with the oxygen. - - - - - - - - -It is critical to understand that a frezon leak can devastate the station, causing a wintery hell filled with itchy sweaters and cold burns. Frezon is very cold, and can freeze the station to death if even a few moles get out, so make sure that you lock your canisters or just move your Frezon straight into a storage room. - -## Reference Sheet -- Standard atmospheric mix is [color=#a4885c]78% N2 and 22% O2 at 101.24kPa.[/color] -- Gas obeys real math. You can use the equation PV = nRT (Pressure kPa * Volume L = Moles * R * Temperature K) to derive information you might need to know about a gas. R is approximately 8.31446 + + # Atmospherics + + Atmospherics setups are a necessity for your long-term comfort, but are generally underdocumented, resulting in them being a bit tricky to set up. The following attempts to cover the basics. + + ## Standard Mix + Breathing pure O2 or pure N2 is generally bad for the health of your crew, and it is recommended to instead aim for a mix of [color=#a4885c]78% N2 and 22% O2 at 101.24kPa.[/color] It's recommended that your gas mixer setup be set to output at least 300kPA for faster re-pressurization of rooms, without posing too much of an overpressurization risk, should traitors sabotage the distro. + + + + + + Variations on this mix may be necessary for the long-term comfort of atypical crew, (for example, Voxes, who are poisoned by Oxygen and breathe Nitrogen). For atypical crew (to be implemented), it is recommended to try and give them their own personal space, isolated by either an airlock or disposals section. Keep in mind that both methods are leaky and you will need scrubbers on both sides of the lock to clean up any leaked gasses. + + + + + ## Vents and Scrubbers + Vents and scrubbers are core atmospherics devices that fill and cleanse rooms, respectively. By default, they are configured for filling rooms to standard pressure (101.24kPa) and to remove all non-O2/N2 gasses from a room. They can be reconfigured from their default settings by linking them to an Air Alarm, allowing you to configure how they respond to various types of gasses or pressure levels. + + + + + + During standard operation, if a normal vent detects that the outside environment is space, it will automatically cease operation until a minimum pressure is reached to avoid destruction of useful gasses. This can be fixed by pressurizing the room up to that minimum pressure by refilling it with gas canister (potentially multiple, if the room is of significant size). + + Should you encounter a situation where scrubbers aren't cleaning a room fast enough (and the "Siphon" functionality still cannot keep up), employ portable scrubbers by dragging them to the affected location and wrenching them down. They work much faster than typical scrubbers and can clean up a room quite quickly. Large spills may require you to employ multiple. + + + + # Gas mixes and Burn chambers + In the event you finish all the tasks at hand, you can make some extra money by creating new chemical gasses. + + ##Tritium + Tritium is a clear, green gas that is highly flammable, radioactive, and combusts when in contact with oxygen, making it very helpful when running the [color=#a4885c]TEG[/color]. + It can be made by burning 1% Plasma and 96% or more Oxygen in the Burn Chamber (Ideal ratio is 3% Plasma to 97% Oxygen). You can extract this gas through scrubbers. + + + + + + + + + ##Frezon + Frezon is a bluish-green gas that is very complex and very dangerous. To obtain frezon, you must mix Tritium, Oxygen, and Nitrogen in a 70K room to start the reaction, and prevent the Tritium from combusting with the oxygen. + + + + + + + + + It is critical to understand that a frezon leak can devastate the station, causing a wintery hell filled with itchy sweaters and cold burns. Frezon is very cold, and can freeze the station to death if even a few moles get out, so make sure that you lock your canisters or just move your Frezon straight into a storage room. + + ## Reference Sheet + - Standard atmospheric mix is [color=#a4885c]78% N2 and 22% O2 at 101.24kPa.[/color] + - Gas obeys real math. You can use the equation: + + [color=cyan]PV = nRT[/color] + + + ([color=#a4885c]Pressure kPa * Volume L = Moles * R * Temperature K[/color]) + to derive information you might need to know about a gas. R is approximately 8.31446. diff --git a/Resources/ServerInfo/Guidebook/Engineering/Construction.xml b/Resources/ServerInfo/Guidebook/Engineering/Construction.xml index 832b831d8e..15f2f15539 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Construction.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Construction.xml @@ -1,11 +1,11 @@ - -# Construction + + # Construction -By pressing [color=#a4885c]G[/color], one can open the construction menu, which allows you to craft and build a variety of objects. + By pressing [color=#a4885c][keybind="OpenCraftingMenu"][/color], one can open the construction menu, which allows you to craft and build a variety of objects. -When placing objects that "snap" to the grid, you can hold [color=#a4885c]shift[/color] to place an entire line at a time, and [color=#a4885c]ctrl[/color] to place an entire square at a time. + When placing objects that "snap" to the grid, you can hold [color=#a4885c]Shift[/color] to place an entire line at a time, and [color=#a4885c]Ctrl[/color] to place an entire grid at a time. -When crafting objects with a lot of ingredients, keep in mind you don't have to hold everything at once, you can simply place the ingredients on the floor or on a table near you and they'll be used up during crafting like normal. + When crafting objects with a lot of ingredients, keep in mind you don't have to hold everything at once; you can simply place the ingredients on the floor, in your backpack or on a table near you, and they'll be used up during crafting like normal. -When placing a "building ghost" somewhere in the world press [color=#a4885c]Middle Mouse Button[/color] to rotate the ghost clockwise. + When placing a "building ghost" somewhere in the world, press [color=#a4885c][keybind="EditorRotateObject"][/color] to rotate the ghost clockwise. If you are building a mirrorable component (think: Gas Mixers/Filters), you can press [color=#a4885c][keybind="EditorFlipObject"][/color] to flip the ghost. diff --git a/Resources/ServerInfo/Guidebook/Engineering/Engineering.xml b/Resources/ServerInfo/Guidebook/Engineering/Engineering.xml index 0f53ea3042..ab48ed1d82 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Engineering.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Engineering.xml @@ -1,22 +1,21 @@ -# Engineering + # Engineering -Engineering is a combination of construction work, repair work, maintaining a death machine that happens to produce power, and making sure the station contains breathable air. + Engineering is a combination of construction work, repair work, maintaining a death machine that happens to produce power, and making sure the station contains breathable air. -## Tools - - - - - - - - - - - -Your core toolset is a small variety of tools. If you're an engineer, then you should have a belt on your waist containing one of each, if not you can likely find them in maintenance and tool storage within assorted toolboxes and vending machines. - -Most tasks will have explainers for how to perform them on examination, for example if you're constructing a wall, it'll tell you the next step if you look at it a bit closer. + ## Tools + + + + + + + + + + + + Your core toolset is a small variety of tools. If you're an engineer, then you should have a belt on your waist containing one of each; if not, you can likely find them in maintenance shafts and in tool storage within assorted toolboxes and vending machines. + Most tasks will have explainers for how to perform them on examination; for example, if you're constructing a wall, it'll tell you the next step if you look at it a bit closer. diff --git a/Resources/ServerInfo/Guidebook/Engineering/Fires.xml b/Resources/ServerInfo/Guidebook/Engineering/Fires.xml index a1c54059b7..e2c83956cc 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Fires.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Fires.xml @@ -1,15 +1,15 @@ - -# Fires & Space + + # Fires & Space -Fires and spacings are an inevitability due to the highly flammable plasma gas and endless vacuum of space present in and around the station, so it's important to know how to manage them. + Fires and spacings are an inevitability due to the highly flammable plasma gas and the endless vacuum of space present in and around the station, so it's important to know how to manage them. -## Spacing -Space is arguably the easier of the two to handle. -While it does render an area uninhabitable, it can be trivially solved by simply sealing the hole that resulted in the vacuum. After that, assuming distro vents and pipes have not been destroyed in some unfortunate accident, the room will slowly begin to repressurize. -Be aware, that active spacings will slowly siphon the air out of the station's air reserves. If you find it impossible to fix structural damage due to some other hazard - make sure to limit the airflow to that room. + ## Spacing + Space is arguably the easier of the two to handle. + While it does render an area uninhabitable, it can be trivially solved by simply sealing the hole that resulted in the vacuum. After that, assuming distro vents and pipes have not been destroyed in some unfortunate accident, the room will slowly begin to repressurize. + Be aware; active spacings will slowly siphon the air out of the station's air reserves. If you find it impossible to fix structural damage due to some other hazard, make sure to limit the airflow to that room. (Currently only half-valid due to the Gas Miners infinitely replenishing most of the useful gases) -## Fires -Fires can be dealt with through a multitude of ways, but some of the most effective methods include: - - Spacing the enflamed area if possible. This will destroy all of the gasses in the room, which may be a problem if you're already straining life support. - - Dumping a Frezon canister into the enflamed area. This will ice over the flames and halt any ongoing reaction, provided you use enough Frezon. Additionally does not result in destruction of material, so you can simply scrub the room afterwards. + ## Fires + Fires can be dealt with through a multitude of ways, but some of the most effective methods include: + - Spacing the enflamed area if possible. This will destroy all of the gasses in the room, which may be a problem if you're already straining life support. + - Dumping a Frezon canister into the enflamed area. This will ice over the flames and halt any ongoing reaction, provided you use enough Frezon. Additionally, this does not result in destruction of material, so you can simply scrub the room afterwards. diff --git a/Resources/ServerInfo/Guidebook/Engineering/NetworkConfigurator.xml b/Resources/ServerInfo/Guidebook/Engineering/NetworkConfigurator.xml index 445d182ab8..ab95dd2e29 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/NetworkConfigurator.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/NetworkConfigurator.xml @@ -1,39 +1,40 @@ -# Network Configurator -The network configurator allows you to manipulate device lists and link devices together. - - - -The configurator has two modes: List and Link. You can press [color=gray]Alt+Z[/color] or [color=gray]Alt+Y[/color] to switch between them. + # Network Configurator + The network configurator allows you to manipulate device lists, link devices together and configure accesses for airlocks through door electronics. + + + + The configurator has two modes: List and Link. You can press [color=gray]Alt+Z[/color] or [color=gray]Alt+Y[/color] to switch between them. -## List Mode -In list mode you can click on network devices to save them on the configurator and then on a network device that has a device list like the [color=#a4885c]Air Alarm[/color]. + ## List Mode + In list mode you can click on network devices to save them on the configurator and then on a network device that has a device list like the [color=#a4885c]Air Alarm[/color]. -When clicking on a device like the Air Alarm, a UI will open displaying the list currently saved on the device and buttons to manipulate that list. + When clicking on a device like the Air Alarm, a UI will open displaying the list currently saved on the device and buttons to manipulate that list. -You can: -- Replace the current list with the one saved on the configurator -- Add the list on the configurator to the current one -- Clear the current list -- Copy the current list to the configurator -- Visualize the connections to the devices on the current list + You can: + - Replace the current list with the one saved on the configurator + - Add the list on the configurator to the current one + - Clear the current list + - Copy the current list to the configurator + - Visualize the connections to the devices on the current list -Pressing [color=gray]z[/color] or [color=gray]y[/color] opens the list saved on the configurator where you can remove saved devices. + Pressing [color=gray][keybind="ActivateItemInHand"][/color] opens the list saved on the configurator where you can remove saved devices. -## Link Mode -With link mode you can click on a device that is capable of device linking and click on any other device that is either -a sink or source. + ## Link Mode + With link mode, you can click on a device that is capable of device linking and then click on any other device that is either a sink or source. -For example, first clicking on a source like a [color=#a4885c]signal button[/color] and then on sink like a -[color=#a4885c]small light[/color] opens a UI that displays the source ports on the left side and the sink ports on the right. + For example, first clicking on a source, like a [color=#a4885c]signal button[/color], and then on sink, like a [color=#a4885c]small light[/color], opens a UI that displays the source ports on the left side and the sink ports on the right. -Now you can eiter click [color=gray]link defaults[/color] to link the default ports for a source + sink combination or press on a source and then a sink port to connect them. + Now, you can either click [color=gray]Link Defaults[/color] to link the default ports for a source + sink combination, or press on a source port and then a sink port to connect them. -An example of a default link for the aformentioned combinaton of devices would be: - - [color=cyan]Pressed 🠒 Toggle[/color] - -When you're done connecting the ports you want you can click on [color=gray]ok[/color] to close the UI. + An example of a default link for the aformentioned combinaton of devices would be: + + [color=cyan]Pressed 🠒 Toggle[/color] + + When you're done connecting the ports you want you can click on [color=gray]OK[/color] to close the UI. -You can quickly link multiple devices to their default port by first clicking on a device that can be linked and then using [color=gray]alt+left mouse button[/color] on the devices you want to link together. + You can quickly link multiple devices to their default port by first clicking on a device that can be linked and then using [color=gray]Alt+Left Mouse button[/color] on the devices you want to link together. + + ## Airlock Access + To configure an airlock's access, simply take the airlock's door electronics and interact with it using a network configurator (or multitool). Select the accesses you want, insert the door electronics into an airlock frame, and construct to finish! diff --git a/Resources/ServerInfo/Guidebook/Engineering/Networking.xml b/Resources/ServerInfo/Guidebook/Engineering/Networking.xml index 03576c789a..90d1f0891b 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Networking.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Networking.xml @@ -1,25 +1,24 @@ -# Networking -Some devices on the station need to communicate with each other, and they do this by utilizing device networking. -With networking machines and devices can send arbitrary data between each other. -There are multiple networks that get used, such as the wireless and wired network. -Each network device has a frequency it receives on. PDAs for example, use the frequency: [color=green]220.2[/color] + # Networking + Some devices on the station need to communicate with each other, and they do this by utilizing device networking. + With networking, machines and devices can send arbitrary data between each other. + There are multiple networks that get used, such as the wireless and wired network. + Each network device has a frequency it receives on. PDAs for example, use the frequency: [color=green]220.2[/color] -## Device Lists -Some devices need to know what other devices to communicate with specifically. - - - -Air alarms for example require you to tell it which vents, scrubbers, sensors, and firelocks to interact with. -You do that by using the Network Configurator. + Note: The following operations will require use of the Network Configurator to be performed: -## Linking -If devices basic or still more advanced but need finer control of how and what connects to each other they will generally use device linking. + ## Device Lists + Some devices need to know which other devices to communicate with specifically. - - + -With linking you can connect the outputs of a device like [color=gray]On[/color] or [color=gray]Off[/color] with the inputs of a device like the airlocks -[color=gray]Open[/color] or [color=gray]Close[/color] inputs. -The Network Configurator is also used for linking devices together. + Air alarms, for example, require you to tell it which vents, scrubbers, sensors, and firelocks to interact with. + + ## Linking + If a device, basic or advanced, needs finer controls of how and which devices it connects to, it will generally use device linking. + + + + + With linking, you can connect the outputs of a device, like [color=gray]On[/color] or [color=gray]Off[/color], with the inputs of a device, like the airlocks [color=gray]Open[/color] or [color=gray]Close[/color] inputs. diff --git a/Resources/ServerInfo/Guidebook/Engineering/PortableGenerator.xml b/Resources/ServerInfo/Guidebook/Engineering/PortableGenerator.xml index 2cf1fa44ea..b946bf041c 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/PortableGenerator.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/PortableGenerator.xml @@ -1,7 +1,7 @@ - + # Portable Generators - Need power? No engine running? The "P.A.C.M.A.N." line of portable generators has you covered. + Need power? No engines running? The "P.A.C.M.A.N." line of portable generators has you covered. @@ -16,10 +16,10 @@ - The J.R.P.A.C.M.A.N. can be found across the station in maintenance areas, and is ideal for crew to set up themselves whenever there are power issues. + The J.R.P.A.C.M.A.N. can be found across the station in maintenance shafts, and is ideal for crew to set up themselves whenever there are power issues. Setup is incredibly easy: wrench it down above an [color=green]LV[/color] power cable, give it some welding fuel, and start it up. - Welding fuel should be plentiful to find around the station. In a pinch, you can even transfer some from the big tanks with a soda can. Just remember to empty the soda can first, I don't think it likes soda as fuel. + Welding fuel should be plentiful to find around the station. In a pinch, you can even transfer some from the big tanks with a soda can or water bottle. Just remember to empty the soda can first, I don't think it likes soda as fuel. # The Big Ones @@ -33,10 +33,11 @@ - The (S.U.P.E.R.)P.A.C.M.A.N. is intended for usage by engineering for advanced power scenarios. Bootstrapping the engine, powering departments, and so on. + The (S.U.P.E.R.)P.A.C.M.A.N. is intended for usage by engineering for advanced power scenarios. Bootstrapping larger engines, powering departments, and so on. - The S.U.P.E.R.P.A.C.M.A.N. boasts larger power output and longer runtime at maximum output, but scales down to lower outputs less efficiently. + The S.U.P.E.R.P.A.C.M.A.N. boasts a larger power output and longer runtime at maximum output, but scales down to lower outputs less efficiently. - They connect directly to [color=yellow]MV[/color] or [color=orange]HV[/color] power cables, able to switch between them for flexibility. + They connect directly to [color=yellow]MV[/color] or [color=orange]HV[/color] power cables, and are able to switch between them for flexibility. + The S.U.P.E.R.P.A.C.M.A.N and P.A.C.M.A.N require uranium sheets and plasma sheets as fuel, respectively. diff --git a/Resources/ServerInfo/Guidebook/Engineering/Power.xml b/Resources/ServerInfo/Guidebook/Engineering/Power.xml index 62b38e397d..7dd227ee9b 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Power.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Power.xml @@ -1,53 +1,53 @@ -# Power - -SS14 has a fairly in-depth power system through which all devices on the station receive electricity. It's divided into three main powernets; HV, LV, and MV. - - - - - - -## Cabling -The three major cable types (HV, MV, and LV) can be used to form independent powernets. Examine them for a description of their uses. - - - - - - -## Power storage -Each power storage device presented functions as the transformer for its respective power level (HV, MV, and LV) and also provides a fairly sizable backup battery to help flatten out spikes and dips in power usage. - - - - - - -## Ramping -Contrary to what one might expect from a video game electrical simulation, power is not instantly provided upon request. Generators and batteries take time to ramp up to match the draw imposed on them, which leads to brownouts when there are large changes in current draw all at once, for example when batteries run out. - -## Installing power storage -Substations are the most self-explanatory. Simply install the machine on top of an MV and HV cable, it will draw power from the HV cable to provide to MV. - -Installing APCs is similarly simple, except APCs are exclusively wallmounted machinery and cannot be installed on the floor. Make sure it has both MV and LV connections. - -Installing a SMES requires you construct a cable terminal to use as the input. The SMES will draw power from the terminal and send power out from underneath. The terminal will ensure that the HV input and HV output do not connect. Avoid connecting a SMES to itself, this will result in a short circuit which can result in power flickering or outages depending on severity. - -## APC breaking -Currently the only power storage device that has a limit to its power network is APC. As soon as all connected devices and machinery demand more than [color=#a4885c]24kW[/color] it's breaker will pop and everything will turn off. - - - - -## Checking power grid -1. Use the [color=#a4885c]t-ray scanner[/color] in order to locate cables that are hidden under tiles. (skip this step if cables aren't hidden) -2. Pry open the tile that is blocking your access to the cable with a [color=#a4885c]crowbar[/color]. (skip this step if cables aren't hidden) -3. Equip your trusty [color=#a4885c]Multitool[/color] and click on any cable to see powergrid stats. - - - - - + # Power + + SS14 has a fairly in-depth power system through which all devices on the station receive electricity. It's divided into three main powernets; High Voltage, Medium Voltage, and Low Voltage. + + + + + + + ## Cabling + The three major cable types (HV, MV, and LV) can be used to form independent powernets. Examine them for a description of their uses. + + + + + + + ## Power storage + Each power storage device presented functions as the transformer for its respective power level (HV, MV, and LV), and also provides a fairly sizable backup battery to help flatten out spikes and dips in power usage. + + + + + + + ## Ramping + Contrary to what one might expect from a video game electrical simulation, power is not instantly provided upon request. Generators and batteries take time to ramp up to match the draw imposed on them, which leads to brownouts when there are large changes in current draw all at once; for example, when batteries run out. + + ## Installing power storage + Substations are the most self-explanatory. Simply install the machine on top of an MV and HV cable; it will draw power from the HV cable to provide to MV. + + Installing APCs is similarly simple, except APCs are exclusively wallmounted machinery and cannot be installed on the floor. Make sure it has both MV and LV connections. + + Installing a SMES requires you construct a cable terminal to use as the input. The SMES will draw power from the terminal and send power out from underneath. The terminal will ensure that the HV input and HV output do not connect. Avoid connecting a SMES to itself; this will result in a short circuit, which can result in power flickering or outages depending on severity. + + ## APC breaking + Currently the only power storage device that has a limit to its power to the network is the APC. As soon as all connected devices and machinery demand more than [color=#a4885c]24kW[/color] of power, its breaker will pop and everything will turn off. In the case that you are not an engineer, call an engineer (or cyborg) to re-enable it, after reducing the load back down to [color=#a4885c]below[/color] 24kW. + + + + + ## Checking the power grid + 1. Use the [color=#a4885c]t-ray scanner[/color] in order to locate cables that are hidden under tiles. (skip this step if cables aren't hidden) + 2. Pry open the tile that is blocking your access to the cable with a [color=#a4885c]crowbar[/color]. (skip this step if cables aren't hidden) + 3. Equip your trusty [color=#a4885c]Multitool[/color] and click on any cable to see the power-grid stats. + + + + + diff --git a/Resources/ServerInfo/Guidebook/Engineering/RTG.xml b/Resources/ServerInfo/Guidebook/Engineering/RTG.xml index 1d71ee9144..6149b58049 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/RTG.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/RTG.xml @@ -1,17 +1,20 @@ -# Radioisotope Thermoelectric Generator (RTG) + # Radioisotope Thermoelectric Generator (RTG) - - - - + + + -Making power using a Radioisotope Thermoelectric Generator (RTG) is similar to making power using solar. -RTGs only provide 10 kW of power, but they provide it for free and for the entire round. -Basically, if you connect an RTG to your power grid, it'll give you free power. + Making power using a Radioisotope Thermoelectric Generator (RTG) is similar to making power using solars. + RTGs only provide [color=#a4885c]10kW[/color] of power, but they provide it for free and for the entire round. + Basically, if you connect an RTG to your power grid, it'll give you [color=#a4885c]free power[/color]. + However, they're only accessible through salvage finding one on an expedition. Should they bring some in, make sure to thank them! -Sometimes, RTGs are damaged. -Damaged RTGs behave just like regular ones, but they're radioactive. -That means they're more dangerous, but on the bright side, you can put radiation collectors next to them to turn that radiation into more power. - - \ No newline at end of file + + + + Sometimes, RTGs appear damaged. + Damaged RTGs behave just like regular ones, but they're [color=yellow]radioactive[/color]. + That means they're more dangerous, but on the bright side, you can put radiation collectors next to them to turn that radiation into more power. + This is usually more worthwhile, considering the power is still free, so long as you can find a safe spot to put the RTG(s) in. + diff --git a/Resources/ServerInfo/Guidebook/Engineering/Shuttlecraft.xml b/Resources/ServerInfo/Guidebook/Engineering/Shuttlecraft.xml index 7e743ddd68..21956d600c 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Shuttlecraft.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Shuttlecraft.xml @@ -1,40 +1,39 @@ -# Shuttle-craft + # Shuttle-craft -Shuttle construction is simple and easy, albeit rather expensive and hard to pull off within an hour. It's a good activity if you have a significant amount of spare time on your hands and want a bit of a challenge. + Shuttle construction is simple and easy, albeit rather expensive and hard to pull off within an hour. It's a good activity if you have a significant amount of spare time on your hands and want a bit of a challenge. -## Getting started -Required parts: - - - - - - - - - - - - - + ## Getting started + Required parts: + + + + + + + + + + + + + -Optional parts: - - - - - - - - - - + Optional parts: + + + + + + + + + + -Head out into space with steel sheets and metal rods in hand, and once you're three or more meters away from the station, click near or under you with the rods in hand. This will place some lattice, which can then be turned into plating with the steel sheets. Expand your lattice platform by clicking just off the edge with rods in hand. + Head out into space with steel sheets and metal rods in hand, and once you're three or more tiles away from the station, click near or under you with the rods in hand. This will place some lattice, which can then be turned into plating with steel sheets or floor tiles. Expand your lattice platform by clicking just off the edge with some rods in hand. -From there, once you have the shape you want, bring out and install thrusters at the edges. They must be pointing outward into space to function and will not fire if there's a tile in the way of the nozzle. Install a gyroscope where convenient, and use your substation and generator to set up power. Construct a wall on top of an MV cable and then install an APC on that to power the devices onboard. - -Finally, install the shuttle computer wherever is convenient and ensure all your thrusters and gyroscopes are receiving power. If they are, congratulations, you should have a functional shuttle! Making it livable and good looking is left as an exercise to the reader. + From there, once you have the shape you want, bring out and install thrusters at the edges. They must be pointing outward into space to function and will not fire if there's a tile in the way of the nozzle. Install a gyroscope where convenient, and use your substation and generator to set up power. Construct a wall on top of an MV cable and then install an APC on that to power the devices onboard. + Finally, install the shuttle computer wherever is convenient and ensure all your thrusters and gyroscopes are receiving power (remember to wire the MV and LV networks!). If they are; congratulations, you should have a functional shuttle! Making it livable and good looking is left as an exercise to the reader. diff --git a/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml b/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml index 3553d43e6f..3c0dd665e2 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml @@ -1,109 +1,141 @@ -# Gravitational Singularity Engine - -The Gravitational Singularity Engine can yield infinite power, with no fueling required. It can also destroy the whole station with equal ease. It uses a Particle Accelerator to fire high energy particles at a Singularity Generator to form a singularity. The singularity then pulses radiation which is absorbed by Radiation Collectors. - -## Setting it up - -The Gravitational Singularity Engine requires 4 subsystems to work properly: - -## Gravitational singularity generator - - - -The generator should be anchored at the center of the containment area since this is where the singularity will appear at. - -## Containment field generators and emitters - - - - - -The emitters connect to MV cables and fire lasers as long as they have power and are turned on. -Fire emitters at containment field generators to activate them. -If two containment field generators are active, in range and in the same cardinal axis, a containment field will appear. -The containment field will repell the singularity, keeping it from escaping, and yield a little bit of power every time anything bounces off of them. -Emitter lasers and containment field can cause damage, avoid touching them when active. - -## Radiation collectors - - - - -They connect to HV cables and generate power from nearby radiation sources when turned on. -Radiation collectors require a tank full of gaseous plasma in order to operate. -Continous radiation exposure will gradually consume the stored plasma, so replace depleted tanks with fresh ones to maintain a high power output. - -## Particle accelerator - - - - - - - - - - - - - - - - - - - - - -The Particle Accelerator (PA) is a multi-tile structure that launches accelerated particles from its emitters. Its emitters should always face the gravitational singularity generator. -Some stations already have an unfinished PA. To complete, first ensure there is MV cable beneath the PA power box, anchor all parts, then add LV cable to each part. - - - -Then use a screwdriver to screw back the panels. -Scan parts using the PA control computer to check if it's operational. If it shows up as incomplete, examine for what's missing. - - - - -## Turing on the Gravitational Singularity Engine - -[color=#a4885c]Do not[/color] turn the PA on unless all other subsystems are working properly. - -Turn power on using the PA control computer. Set strength to an appropiate level. Currently the only appropriate level is [color=#f0684d]1[/color], anything above that will ensure that singularity grows too strong to handle. -The higher the output stength is set on PA control computer, the bigger the singularity will be. - -The PA will now draw power from the power net and start firing particles at the Gravitational singularity generator. - - - - - - - -A singularity will soon appear at the position of the Gravitational singularity generator. - - - - -If no particle is hitting the singularity generator, the singularity will start to slowly decay until it disappear. - -## Safety -Singularity emits radiation around it, so always keep a distance. Consider getting radiation shielding gear beforehand. Seek medical attention if experiencing health issues. - - - - - - - - - - - -A singularity might move around, but the containment field will repel it. -If a singularity escapes its containment field, often referred to as a "singuloose," it will attract and then consume everything in its way. - -In such circumstances, there is little to be done other than running in the opposite direction. + # Singularity / Tesla Engine + + The Singularity Engine / Tesla Engine can yield [color=#a4885c]infinite power[/color], with no fueling required. It can also [color=red]destroy the whole station[/color] with equal ease. It uses a Particle Accelerator to fire high energy particles at a Singularity Generator to form a singularity or ball lightning. + The singularity then pulses radiation which is absorbed by Radiation Collectors, or the ball lightning then zaps nearby tesla coils and grounding rods to provide power. + + # Setting it up + + Both engines requires 4 subsystems to work properly; two are shared between both engines: + + ## Containment field generators and Emitters + + + + + + The emitters connect to MV cables and fire lasers as long as they have power and are turned on. + Fire the emitters at enabled containment field generators to activate them. + If two containment field generators are active, in range and are in the same cardinal axis, a containment field will appear. + The containment field will repel the singularity or tesla, keeping it from escaping, and yield a little bit of power every time anything bounces off of them. + + The emitter lasers and the containment fields can also cause damage and/or cause you to be sent flying into deep space; [color=#a4885c]avoid touching them[/color] when active. + It is recommended to [color=#a4885c]lock the emitters[/color] with [keybind="AltActivateItemInWorld"/], to prevent any break-in no-gooders from loosing the singularity or tesla by simply switching off the field. + + Teslas can have significantly smaller containment fields than singularity containment fields; adjusting field size is recommended, as the tesla becomes easier to keep watch on in a simply 3x3 field setup. + + ## Particle accelerator + + + + + + + + + + + + + + + + + + + + + + The Particle Accelerator (PA) is a multi-tile structure that launches accelerated particles from its emitters. Its emitters should always face the generator. + Some stations already have an unfinished PA. To complete it, first ensure there is a MV cable beneath the PA power box, anchor all the parts, and then add an LV cable to each part. + + + + Then use a screwdriver to screw back the panels. + [color=#a4885c]Scan parts[/color] using the PA control computer to check if it's operational (the PA will not function if you do not scan it!). If it shows up as incomplete, examine what's missing. + + + + + The other two subsystems are unique to each other: + + ## Gravitational singularity generator or Ball lightning generator + + + + + The generator should be anchored at the center of the containment area, since this is where the singularity/tesla should appear at. + + ## Radiation collectors or Tesla coils + + + + + The radition collectors connect to HV cables and generate power from nearby radiation sources when turned on. + Radiation collectors require a tank full of gaseous plasma in order to operate. + Continous radiation exposure will gradually convert the stored plasma into tritium, so replace depleted plasma tanks with fresh ones regularly to maintain a high power output. + + + + + + The tesla coils connect to HV cables and provide a stream of power after being zapped by the ball lightning. + However, tesla coils usually do not fully absorb the lightning strike, and the grounding rods are required to prevent lighting from arcing to and obliterating nearby machines. + Do note that one grounding rod is not a foolproof solution; get [color=#a4885c]atleast 4 rods[/color] around the containment field to make it mathematically unlikely for the tesla to escape. + As the ball lightning zaps tesla coils, they will degrade from wear; make sure to [color=#a4885c]weld them[/color] every now and then to keep generating power. + + ## Turing on the Engines + + [color=red]Do not[/color] turn the PA on unless all the other subsystems are working properly and there is enough power to start the engine. + + Turn power on using the PA control computer. Set the strength to an appropiate level. Currently the only appropriate level is [color=#f0684d]1[/color]; anything above that will ensure that singularity grows too strong to handle. + The higher the output stength is set on PA control computer, the bigger the singularity will be. + + Currently, the output power does not affect the ball lightning, beyond giving the ball lightning extra orbs around it. + + The PA will now draw power from the power net and start firing particles at the generators. + + + + + + + + A singularity or ball lightning will soon appear at the position of the Gravitational singularity generator. + + + or + + + + If no particles are hitting the singularity, the singularity will start to slowly decay until it disappears. + This is not the case for the tesla; feel free to disconnect the PA after the tesla has been set up. + + ## Safety + The singularity emits a large amount of radiation around it, so always keep a distance from it. Consider getting [color=yellow]radiation shielding gear[/color] beforehand. Seek medical attention if you are experiencing health issues. + + + + + + + + + + + + The singularity might move around, but the containment field will repel it. + + The tesla creates large bolts of lightning around it, so make sure to wear insuls before approaching it. If you aren't, and it zaps you, pray that the ball lightning doesn't stunlock you and eventually send you into crit. + + + + If a singularity or tesla escapes its containment field, often referred to as a "singuloose" or "tesloose" respectively, it will attract and then consume everything in its way, growing larger as it does so, or it will begin to obliterate every machine in its path, and shock all crew personnel. + + In such circumstances, there is little to be done other than running in the opposite direction. + + + + However, if science has happened to research [color=#D381C9]Portable Particle Decelerators[/color], or if cargo can order them in time, you may be able to stop the singularity from eating the whole station. + Good luck on the tesla, though; it is merely too powerful to recontain after breaching. diff --git a/Resources/ServerInfo/Guidebook/Engineering/TEG.xml b/Resources/ServerInfo/Guidebook/Engineering/TEG.xml index 9e8697a9e1..63a62fecf8 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/TEG.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/TEG.xml @@ -19,25 +19,25 @@ Note that the circulators are [color=#a4885c]directional[/color]: they will only let gas through one way. You can see this direction in-game by examining the circulator itself. A pressure difference is required across the input and output, so pumps are generally provided and must be turned on. - There is no preference for which side must be hot or cold, there need only be a difference in temperature between them. The gases in the two "loops" are never mixed, only energy is exchanged between them. The hot side will cool down, the cold side will heat up. + There is no preference for which side must be hot or cold, there need only be a difference in temperature between them. The gases in the two "loops" are never mixed, [color=#a4885c]only energy is exchanged between them[/color]. The hot side will cool down, the cold side will heat up. ## The Pipes - There are 2 major pipenets to worry about here: The Hot Loop (where gas will be burnt for heat), and The Cold Loop (where circulated, heated waste gas will either be removed into space or cooled back down). Make sure that [bold]both pipenets do NOT mix[/bold], as only heat should be transferred between the two through the TEG. + There are 2 major pipenets to worry about here: [color=red]The Hot Loop[/color] (where gas will be burnt for heat), and [color=cyan]The Cold Loop[/color] (where circulated, heated waste gas will either be removed into space or cooled back down). Make sure that [color=#a4885c][bold]both pipenets do NOT mix[/bold][/color], as only heat should be transferred between the two through the TEG. # The Hot Loop As I'm sure a wise person once said: the best way to make something hot is to light it on fire. Well, depending on context, that may not be very wise, but luckily your engineering department has just what's needed to do it wisely after all. - As stated above, there are many different layouts one can follow to heat up (or cool down) gases; this part of the guide will cover 2 common methods one will often see for the hot loop when the TEG is setup: The Pipe Burn, and the Burn chamber. + As stated above, there are many different layouts one can follow to heat up (or cool down) gases; this part of the guide will cover 2 common methods one will often see for the hot loop when the TEG is setup: [color=#a4885c]The Pipe Burn[/color], and [color=red]the Burn Chamber[/color]. - Side note: Plasma fires burn relatively cool compared to, for example, Tritium fires. It may be viable to extract Tritium from an extraction setup (using a 97/3 ratio of O2/Plasma) and react it with Oxygen to get truly hellish temperatures for power. Although, this is just a recommendation; I'm not ya mum. + Side note: Plasma fires burn relatively cool compared to, for example, Tritium fires. It may be viable to extract Tritium from an extraction setup (using a 96/4 ratio of O2/Plasma) and react it with Oxygen to get truly hellish temperatures for power. Although, this is just a recommendation; I'm not ya mum. ## The Pipe Burn Also known as the naive method, this is generally discouraged when working for efficiency. However, if all you need is a smidge of power to run the station, and you don't feel like setting up the burn chamber, this method will do. - TODO: Remove this section when atmos pipes are updated to have pressure/temperature limits in a future atmos refactor. + [color=#444444]TODO: Remove this section when atmos pipes are updated to have pressure/temperature limits in a future atmos refactor.[/color] Most (if not all) pipe burns follow this general layout: @@ -55,8 +55,8 @@ - The Gas input is pretty self-explanatory; this is where you will input the O2-Plasma mix to be burnt. A 2:1 (67/33) ratio of Oxygen to Plasma is recommended for the hottest burn. - The High-pressure pump serves 2 purposes; first, it prevents the burn from backwashing into the supply pipe, which would be.. bad, for many reasons. Second, it maintains a positive pressure in the following pipe segment, which is important to allow the burn to continue, especially since hot gases expand. - - The Pipe segment is where the burn actually occurs; to start it off, one can use a heater to increase the temperature up to the ignition temperature of Plasma. Afterwards, the reaction should be self-sustaining, so long as the Pressure and Moles supplied remains high enough. Be warned; if you wish to remove the heater, it will carry some of this superheated gas with it, transferring it to the next pipenet you connect it to. Best to space the gas through a space vent, if you must. - - The Low-pressure pump (whose pressure should be [italics]slightly lower[/italics] than the input pump) prevents [italics]all[/italics] the gas from passing through the circulator, which could result in the loss of the Moles required to sustain a burn. + - The Pipe segment is where the burn actually occurs; to start it off, one can use a heater to increase the temperature up to the ignition temperature of Plasma. Afterwards, the reaction should be self-sustaining, so long as the Pressure and Moles supplied remains high enough. [color=#a4885c]Be warned[/color]; if you wish to remove the heater, it will carry some of this superheated gas with it, transferring it to the next pipenet you connect it to. Best to space the gas through a space vent, if you must. + - The Low-pressure pump (whose pressure should be [italic]slightly lower[/italic] than the input pump) prevents [italic]all[/italic] the gas from passing through the circulator, which could result in the loss of the Moles required to sustain a burn. - The Circulator is where this generated heat will flow to the cold loop; afterwards, feel free to space the waste gases. Note: Pressure pumps are used here as, while they pump on pressure (not flow-rate, which is comparatively faster), they are a bit easier to control when it comes to the limited Plasma supply on-station. However, the steps shown can be followed with volumetric pumps too. @@ -68,25 +68,53 @@ Most (if not all) stations have the burn chamber separated from the main atmospherics block by a 1-wide spaced grid, presumably to prevent conduction. The chambers consist of 3(+1) important parts: - The Air Injector/Passive Vent - The Space Vent - - The Radiator Loop + - The Scrubber Array + + Here is one layer of an example setup: (pipes can and do need to be layered under the scrubbers below to connect them!) + + + + + + + + + + + + + + + + + + + + + + + + + + + + - Most normal burn chambers don't come with Heat-Exchangers; instead, they have air scrubbers (and optionally, an air alarm) to help filter for Tritium, which is a highly reactive, hot-burning gas that can also be used to heat the TEG efficiently. - However, this is a slightly more advanced setup than just burning plasma, as it needs 2 burn chambers instead of 1 (one for tritium production, one for burning said tritium), so remove the scrubbers and retrofit the burn chamber with a parallel array of heat-exchangers instead. - The air injector (or Passive Vent) injects air (or allows air to flow) into the burn chamber. Either should be supplemented with a pump before it, to keep pressures high. - There is a notable difference between the passive vent and the air injector; the air injector can only keep injecting air up to 9MPa, which can be reached very easily with a good burn. Ideally, switch out the air injector for a passive vent connected to a volume pump. + There is a notable difference between the passive vent and the air injector; the air injector can only keep injecting air up to [color=#a4885c]9MPa[/color], which can be reached very easily with a good burn. Ideally, switch out the air injector for a passive vent connected to a volume pump. + + The space vent (designated as a blast door to space on one side of the burn chamber) allows waste gases to be expelled and destroyed. Open this every now and then to keep the pressure under control, or to space excess input gas. - The space vent (designated as a blast door to space on one side of the burn chamber) allows waste gases to be expelled and destroyed. Open this to keep the pressure under control. + The scrubber array filters out all the burnt gasses and sends them through the TEG. Note that using default settings on the scrubbers is a bad idea, as valuable plasma will be filtered out too. + Instead, use a network configurator to connect all the scrubbers to a nearby air alarm, and set the air alarm's scrubber settings to scrub everything except Oxygen and Plasma, and to siphon air aswell. This ensures that as much heat as available can be collected and sent to the TEG. - The radiator loop collects heat from the burnt gases and brings it to the TEG. To maximize efficiency, hook up the heat-exchangers [italics]in parallel to each other[/italics], with a pressure pump at max pressure after the array and a volumetric pump before the array. - The pressure of the volumetric pump should be set to ( 200 / number of heat-exchangers ) L/s. For example, having 2 heat-exchangers would mean you should set the pressure to 100 L/s. - Finally, fill the whole loop with (ideally) a high heat capacity gas, like Frezon or Plasma. (Yes, Frezon =/= Cold. Frezon has one of the highest heat capacities in the game; so long as it isn't reacting with Nitrogen, it can actually be heated and can store heat really well!) + Note that these are just two of many ways you can setup the hot loop; [color=#a4885c]feel free to mix and match setups as needed![/color] Volume pumps in replacement of pressure pumps, radiator loops for heat collection, or even a Pyroclastic anomaly to provide said heat! The stars are the limit! # The Cold Loop As with the Hot Loop, the Cold Loop must also be setup in order to operate the TEG. However, the Cold Loop is usually a lot more low-tech than the Hot Loop; in reality, the Cold Loop only has to be "relatively" cooler -- hey, room temperature is technically cooler than the surface of the sun, right? - There are 3 main methods you will see used for the Cold Loop: The Water Cooler (see: Liltenhead's video on the TEG), the Coolant Array and the Freezer Loop. + There are 3 main methods you will see used for the Cold Loop: [color=#a4885c]The Water Cooler[/color] (see: Liltenhead's video on the TEG), [color=cyan]the Coolant Array[/color] and [color=#a4885c]the Freezer Loop[/color]. ## The Water Cooler @@ -103,14 +131,17 @@ - TODO: Remove this section when gas miners are removed in a future atmos refactor. + [color=#444444]TODO: Remove this section when gas miners are removed in a future atmos refactor.[/color] ## Coolant Array - This is the default method for the Cold Loop you will see on a variety of stations. Being of moderate complexity and having no losses of any resource, this [italics]should[/italics] be the main method of cooling down the TEG. However, every station at the moment somehow has their heat exchangers hooked up wrong, reducing efficiency greatly. (Thanks a bunch, NT!) + This is the default method for the Cold Loop you will see on a variety of stations. Being of moderate complexity and having no losses of any resource, this [color=#a4885c]should[/color] be the main method of cooling down the TEG. However, most stations at the moment somehow have their heat exchangers hooked up wrong (or suggest incorrect piping), reducing efficiency greatly. [color=#444444](Thanks a bunch, NT!)[/color] - To use heat-exchangers properly, they must be setup in [italics]parallel[/italics], not in series (like what you see on most stations). A gas pump at max pressure should be placed after, and a volumetric pump before the heat-exchangers. - The flow-rate of the volumetric pump should be set to ( 200 / number of heat-exchangers ) L/s. + To use heat-exchangers properly, they must be setup in [color=#a4885c]parallel[/color], not in series (like what you see on most stations). A gas pump at max pressure should be placed after, and a volumetric pump before the heat-exchangers. + The flow-rate of the volumetric pump should be set using the following formula: + + [color=cyan]( 200 / number of heat-exchangers )[/color] L/s. + Simply speaking, the Coolant Array consists of 3 major parts: An input connector port, a few pumps and the heat-exchanger array out in space. It can be setup like so: @@ -161,7 +192,7 @@ - Connector Port: Use this to input a gas with high heat capacity; most of the time, Plasma or Frezon is used to do so, as they both have very high specific heat capacities (although most any gas will do). (Yes, Plasma =/= Hot. You can cool it down, and it acts as a really good heat exchange medium.) - Input/Output Pumps: Used to make sure gas keeps flowing through both the Circulator and the Heat-Exchanger array. As the gas cools down and heats up (and as it flows through the Exchanger), pressure must be applied for it to keep flowing. - - Heat-Exchanger: Basically, just a bunch of heat-exchanger pipes in space. Not much to say, besides the fact that it cools down the gas inside it. Make sure the heat-exchangers are placed on lattice, not plating! Otherwise, the heat-exchange efficiency will be greatly reduced, as the heat-exchangers aren't directly exposed to space below them. + - Heat-Exchanger: Basically, just a bunch of heat-exchanger pipes in space. Not much to say, besides the fact that it cools down the gas inside it. Make sure the heat-exchangers are [color=#a4885c]placed on lattice, not plating[/color]! Otherwise, the heat-exchange efficiency will be greatly reduced, as the heat-exchangers aren't directly exposed to space below them. ## The Freezer Loop diff --git a/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml b/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml index ef6e1a49e8..f70f43c8a8 100644 --- a/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml +++ b/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml @@ -12,7 +12,7 @@ Cryogenics can be a bit daunting to understand, but hopefully, quick run through - + diff --git a/Resources/ServerInfo/Guidebook/Mobs/Harpy.xml b/Resources/ServerInfo/Guidebook/Mobs/Harpy.xml new file mode 100644 index 0000000000..0b27e31473 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Mobs/Harpy.xml @@ -0,0 +1,122 @@ + + # Harpy (Homo-Aves sapiens) + All Information included in this document is licensed under CC BY-SA 4.0, and is written by VMSolidus(Github), also known as raistlin_jag(Discord) + + + + + + Harpies were created during the first 100 years of the colonial period of human civilization, back when the corporations still answered to the Sol Government. + Their creators were a company called GenetiCorp, now long defunct. + During it's heyday, GenetiCorp developed processes for converting colonists into forms suitable for the lesser colonized planets with some extreme conditions. + For the Harpy subtype, these adaptations were created to colonize the moon of a Hycean world, Valyrian 4b(4a referring to the Hycean world itself). + It is a planet with an incredibly dense atmosphere, measuring just slightly over 150kpa at sea level, with a high oxygen concentration. + Its host star is extraordinarily rich in the UV spectrum of light, but gives off incredibly dim amounts of red light. + The planet's terrain features a vast ocean surrounding a single volcanically active continent, as well as extensive archipelagos. + Valyrian 4b is well known for its flora sporting leaves that fluoresce orange in the nearby star's UV intense light. + + Due to persistent financial troubles, GenetiCorp was bought out by its largest competitor Interdyne long before its first colony ship arrived at the intended destination. + Shortly after arrival, the original Harpy colonists were repossesed by Interdyne- who had gotten to the planet first in faster ships made after the fact. + Some Harpy colonists remained on "the Homeworld", while others were kept by the company and gradually spread across the realms of human space. + Due to the costs of their radical genemodding, most Harpies today are indebted to corporations, owing vast sums of money inherited from their parents. + These debts are often traded between corporations like stocks, resulting in a wide Diaspora of Harpies around the galaxy, and in turn gives them their extremely diverse coloration. + + ## Biology + + Harpies are biologically classed as a different species than Homo-Sapiens, due to the extreme nature of their original designer genetic modifications rendering them incapable of breeding true with Sol-Standard Humans. + They are however not true mutants, owing to the stability of their modifications such that they breed naturally as a species. + However, a "GenetiCorp-Standard Harpy" is readily recognisable as being related to humans thanks in part to retaining many body parts and organs present in the standard human. + A typical Harpy possesses a human brain, heart, stomach, kidneys, and reproductive organs, with skin not unlike a human- though it may be partially feathered, and can have a rough texture to the touch. + + Their most extreme internal modifications are the possession of a second trachea, leading to a quartet of Avian lung organs. + A Harpy's breathing is several times more efficient than a Human's at taking in oxygen, and like a bird, they have no separation of "Inhale and Exhale". + Air enters a Harpy's lungs in a continuous loop via a circular motion through their four lung chambers. Listening to a Harpy breathing via a stethoscope is something like listening to the rhythm of a heartbeat, it is fast and continuous. + + This continuous-flow breathing also permits the use of a highly advanced vocal organ called a Syrinx, which is what enables Harpies to perform iconic ability to imitate nearly any sound. + This of course comes with a significant trade-off, one that makes for a difficult life for Harpies to live in space. + They require double the volume of air a human requires, burning through tanks of oxygen twice as fast as any other species. + They are also substantially vulnerable to air impurities of any kind, and will be readily injured by simple things such as cigarette smoke, or someone hyperventilating in their face. + + ## Unique Languages +- [color=#008ecc]Valyrian Standard[/color]: + A language descended from eastern european languages of old earth - Valyrian Standard is the commonly spoken tongue of Harpies brought up on their homeworld of Valyrian 4b. + It is rarely spoken outside of the worlds of its native speakers, and has in modern times been supplanted by the 'Conlangs of the Sol Alliance. + Its speakers are those who wish to uphold the traditions and beliefs of ancient peoples from before the colonial era. + + ## Other Notes + + - No, Harpies don't lay eggs. + - In a combination of low-gravity and high atmospheric density, a Harpy is capable of flight. They are however flightless in Terran-Standard Atmospheric conditions. + - Adult Harpies can be anywhere from 135cm to 190cm tall, with an average height of around 155cm(Human average being roughly 175cm, depending on ethnicity). + - An average adult male Harpy weighs only 24kg, while an average adult female weighs 18kg. For reference, the average weight of an adult male human is 71kg. + - Curiously, Harpies do not follow the pattern of sexual dimorphism present in Terran birds. Female Harpies are usually just as colorful(or lack thereof) as their male counterparts. + - Spacer Harpies(Those not born on the Homeworld), are typically far more colorfully diverse than those native to the Homeworld. + + # Species Traits + + ## Positive Traits + - [color=#1e90ff]Mimicry[/color]: + Harpies can mimic almost any sound in the game using emotes, barring only a few exceptions. This includes the voice emotes of every other species. + The Harpy sound library contains nearly 700 possible sounds. This trait is unique only to Harpies. + + - [color=#1e90ff]Runner[/color]: + Thanks to their incredibly light build, a Harpy's base running speed is 10% faster than that of a standard Human. + + - [color=#1e90ff]Singer(Advanced)[/color]: + Harpies have a significantly more advanced variant of the [color=#1e90ff]Singer[/color] trait. This trait gives a Harpy access to an innate Midi Player, as well as a menu for swapping instruments. + Right click on yourself to open the Swappable Instrument menu, and select from a list of available instruments to mimic. Any of the following conditions both stop and prevent a Harpy from singing: + + * Being Mute + + * Being Zombified + + * Being Dead or Crit + + * Taking more than 5 damage in a single instance + + * Being shoved to the ground + + + - [color=#1e90ff]Zero Gravity Flight[/color]: + Harpies have significantly enhanced acceleration in zero gravity. This trait is shared with Nians. + + - [color=#1e90ff](Limited) True Flight[/color]: + Harpies have an activatable ability to attempt to fly. In order to fly, a Harpy must have both of their wings unencumbered, either by carrying something in hand, or by being restrained. + When activated, Flight significantly increases the maximum speed and acceleration of a Harpy, while allowing them to fly over obstacles. + Using flight costs a significant amount of stamina. + + - [color=#1e90ff]Talons[/color]: + Functions as per the [color=#1e90ff]Talons[/color] trait. A Harpy's unarmed attacks deal 5 points of Piercing damage. + + ## Negative Traits + - [color=#ffa500]Asthmatic[/color]: + Using their powerful Avian Lungs, a Harpy breathes twice as deeply, and twice as often as a standard Human. This results in two key conditions. The first is that all oxygen tanks last half as long for a Harpy. + The second condition, is that Harpies are uniquely vulnerable to poisonous fumes. When exposed to even a small amount of Carbon Dioxide and or Ammonia, a Harpy will shortly thereafter being to choke. + Choking can be ended either by moving away from the sources of poisonous fumes(such as rotting bodies, open gas tanks, or several people in an enclosed space with no scrubbers). + A choking Harpy can also stop themselves from choking by breathing from a tank of Pure Oxygen for at least 6 seconds. + + - [color=#ffa500]Extreme Low Density[/color]: + The average weight of a Harpy is only 24kg, and can be as low as 10kg, with a maximum of 31kg. Because of this, Harpies suffer from any form of Mass Contests. + This results in weaknesses such as- but are not limited to: + - Experiencing more recoil with firearms + - Being easier to shove down + - Being easy to pick up by other people + - Being easy to throw + - Having a harder time pushing or dragging heavy objects + - Having weaker melee damage with certain weapons + - Being thrown extremely easily by Space Wind + + - [color=#ffa500]Hollow Bones[/color]: + Harpies take 15% greater damage from any source of Brute damage. + + - [color=#ffa500]Ultraviolet Vision[/color]: + Harpies have a unique kind of eye lens that lets them see in Ultraviolet-Blue-Green, but that they cannot see the color Red. This functions as per the Ultraviolet Vision trait. + "Ultravision" can also be "Bought off" in character creation by taking the [color=#1e90ff]Trichromat Modification[/color] trait. + + # Unique Traitor Items + + - [color=#1e90ff]Bionic Syrinx[/color]: + Traitor Harpies can optionally purchase a Bionic Syrinx. This takes the form of an Implant which- when implanted in a Harpy, acts as an internal Voice Changer. + The Bionic Syrinx will only work on Harpies. + + diff --git a/Resources/ServerInfo/Guidebook/Mobs/Reptilian.xml b/Resources/ServerInfo/Guidebook/Mobs/Reptilian.xml index 936cd9f5e2..8acdab3e51 100644 --- a/Resources/ServerInfo/Guidebook/Mobs/Reptilian.xml +++ b/Resources/ServerInfo/Guidebook/Mobs/Reptilian.xml @@ -1,16 +1,131 @@ - # Reptilians - + # Unathi +All Information included in this document is licensed under CC BY-SA 4.0, and is taken from https://wiki.aurorastation.org/index.php?title=Unathi with some modifications by VMSolidus(Github). - They can ONLY eat fruits and meat, but can eat raw meat and drink blood without any ill effects. - They prefer a somewhat higher temperature range than humans. - They can drag objects with their tail, keeping both their hands free. + The Unathi (direct plural: Unathi – You-NAWH-thee both singular and multiple) (adjective: Unathite - You-NAWH-thit) are a race of tall humanoid reptiles standing from six to seven feet tall on average, with females slightly smaller in stature. They possess a mixture of snake-like and crocodile-like features, resulting in hard and plate-like scales. + Unathi live in their home system of Uueoa-Esa with their homeworld being Moghes. The planet's history can be summarized as being divided up between various Hegemonies, names they give the most powerful Clans on Moghes throughout time. + The Clan system is deeply entrenched in Unathi society with everything else revolving around it. It forms a major part of their code of honor, which stresses the importance of martial abilities and loyalty to the Clan. + + Religion and spirituality play a major role in a Unathi society, and religious differences are the main dividing factor. + Conflict between the Sk'akh Church and the various Th'akh faiths of Moghes, as well as the various communes and cults, have caused conflict and wars between the Izweski Hegemony and the kingdoms that eventually comprised the Traditionalist Coalition. + This conflict hit a peak when they entered the intergalactic stage, which is now known as the Contact War. After this conflict, some Unathi fled the planet through Hephaestus or NanoTrasen shuttle ports. + Unathi fleeing to megacorporations like NanoTrasen find themselves working in security and engineering roles, but recently many have been proving themselves as competent surgeons and brilliant scientists, earning opportunities that Moghes would deny them because of its strict feudal hierarchy. + However, others are slipping through the cracks and becoming slavers, raiders, or pirates. As the ability for spaceship construction increases in the Unathi home system, so too does space piracy and smuggling. + + Moghes has two different biomes after the Contact War. The fertile Untouched Lands with its great jungles, vast swamps, and lush forests; all of which are protected by massive terraforming equipment kept secure by the Hegemony's wealth and power. + Contrast to that are the bombarded Wasteland kingdoms in the ashes of plains and forests, burnt into a massive planet-spanning desert rampant with punished kingdoms raiding to survive and part scavengers living in cities on treads. + + ## Megacorporate Relations + + Prior to 2465, Moghean Unathi that were not members of trade guilds were almost exclusively employed with Hephaestus Industries. + Unathi with guild memberships would primarily take contracts with NanoTrasen or Orion Express, depending on their career choice. Unathi living in Dominia, like most of their countrymen, seek employment with Zavodskoi Interstellar. + + After the Merchant's Guild declared bankruptcy, Hephaestus Industries bailed out all Hegemonic guilds and reorganised them under the banner of the company. + Since then, nearly all residents of Moghes are employed by Hephaestus in some way. + + # Biology + + Their average life expectancy is around sixty years for most Unathi. However, they tend to live for well past sixty years when given advanced medical care available to the other space-faring species. + As a cold-blooded species, they suffer fatigue and even short comas when exposed to extremely low temperatures. + + Humans and Unathi share a lot of similar internal biology with some notable exceptions. + Since they are a carnivorous species, their diet mostly consists of meat and animal products, though they do have a tolerance to some plants and fruits. + While Unathi do receive minor benefits for eating certain fruits, they do not get any nutrition from plants. + Due to their carnivorous nature, they also have an increased stomach capacity to help eat larger meals at a time. + The typical Unathi usually only eats one meal a day, and for the poorer sinta, perhaps once every two days. + They tend towards lethargic and sluggish movements more often than not because of their evolutionary history, so they move slower than most organic species. + However, the cyclical period of work for Unathi compared to other species is much faster. Unathi are polyphasic sleepers: creatures that sleep in shorter naps rather than at one time during the night. + While they tend towards sluggishness, sinta are often capable of incredible bursts of energy and speed, and their ability to work in three or four hour periods of time compensates for their more sporadic schedules. + + The reproductive system of a Sinta'Unathi is very similar to that of Earth reptiles. Females lay eggs, with the average clutch being somewhere between one and three. + They have a six-month gestation period, after which they are laid in a humid, warm area. After two months, the fetus is fully developed and hatches from the egg. + Unathi are born with their claws and the ability to walk within hours of hatching. A Sinta'Unathi is considered an adult when they are 16 years old. + + # Physical Appearance + + The Unathi as a species show a great deal of variation within body types as well as clusters of smaller physical traits passed down through clans. + Facial and body features range in size and shape with some having raptor-like aesthetics, serpentine looks, or a more draconic body. + Tail length is often genetic; conversely, tail girth is defined by a Unathi's diet as it stores most of the body's fat— nobles grow some of the largest tails. + + Unathi scales are somewhat tougher than human skin, though they shed off sporadically rather than all at once. + More vulnerable and hidden spots, such as the stomach and waist, the backs of joints, and inner thighs are all leathery skin and aren't covered in scales. + + The typical healthy adult male Unathi weighs roughly 280 pounds. Female sinta differ from males as they generally have a shorter and more rounded snout. + The typical healthy Unathi female weighs roughly 250 pounds. Female Unathi grow to about 5'9" to 6'8, while male Unathi grow to about 6'0" to 7'0". + Unusual heights tend to be smaller in scale, as the taller a Unathi is, the more likely it will be marred with health problems and not live as long as others. + + Both sexes stand on digitigrade legs, with three toes on each foot and a hooked dewclaw, and have clawed feet and hands. + They also have very long tongues, typically black or extremely dark red in color, which may stretch up to a foot and a half long and are forked just like a serpent's. + In much the same manner as snakes, Unathi can sample the air around them using their tongue. They blink and have tear ducts similar to humans. + + Unathi horns do not naturally regrow, and serious damage tends to remain permanent. + Ancient recipes using native herbs known as "horn paste" are commonly made and sold by herbalists and can counter cosmetic scratches or minor chipping. + More modern synthetic Horn Gel (based on Bone Gel), developed largely by Zeng-Hu Pharmaceuticals, can regenerate an entire lost horn, but it tends to be stratified to the upper classes and noblemen due to cost. + + ## Coloration + + Unathi are also often born into one of four major scale colour categories: red, black, orange-brown and "sand-colored", and green. + Alternative colours are rare, with dark blue and even albino Unathi being reported in very small numbers. Albinos are sometimes slightly tinted in colour while remaining predominantly white. Traditionally these off-coloured Unathi are met with prejudice, though some clans outside the Izweski may feel different. + + It has been noticed that scale colourations were more represented in some areas than other, and thus, many shades of these colours were, in Unathi culture, named after the places they tend to be seen in more often, in many cases. + + Modern red-coloured Unathi are thought to originate from a large nomadic clan that settled South of the Moghresian Sea around modern Skalamar. Nowadays, red-scaled Sinta tend to be seen on the entire Southern coast of the Moghresian Sea and the mountain ranges near it. + Today’s green-coloured Unathi hail from the Southern side of the Moghresian sea, and they are seen more often throughout this side of the coast and down to the colder lands even further South. Surprisingly, there is also a large batch of green-coloured Unathi located around Sahl lake, indicating that an old nomadic clan of mostly green Sinta settled there centuries ago. + Orange-brown and sand-yellow Unathi comprises a wide range of colours. They are a more common colour to be seen in a large area, and it is believed that their origins come from displacement in ancient conflicts that forced them to migrate and find new homelands. More precisely, Unathi harbouring such colours tend to be more represented in a large area defined between Darakath, Bahard, Mudki, and Yu’kal. + Black or “dark-scaled’ Unathi do not seem to originate from any precise area, and instead, tend to be more often seen around colder areas of Moghes, both North and South. A popular theory is that black scales are actually a consequence of exposure to the cold for generations— something that has yet to be proven. + All colours, barring albino, do not mix; if a brown Unathi and a light red Unathi have a child, the red scales the child has might be a little darker, but the colours do not blend to make something new. + + ## Genetic Variety + + Besides scale colouration, many other physical aspects of Unathi bodies can vary widely. + From horns and frills, to even extra scale crests and different structures in a Unathi’s very skeleton (namely, the skull). + While anatomical differences within a species are natural, Unathi are noteworthy for how wide these differences can get and how fast they come to be. + The exact science behind this has been lost after the Contact War, and most of the research behind such a phenomena is idly handled by Nanotrasen and Zeng-Hu specialists. + However it is assumed that Sinta simply evolve and adapt to their surroundings much faster than most of the other sentient species of the Spur, leading to such large physical discrepancies between Unathi alone. + From this, it is also assumed that, with Unathi populations moving between planets, and Moghes on its way to changing considerably (may the consequences of the of the Contact War be the of the Sinta homeworld, or may terraforming efforts save it), said biological differences between different groups will only get larger and more exotic in the next few centuries. + + # History + + The history of the Unathi is predominately a history of each Hegemony that has existed throughout their history. There have only been three clans that have managed to create an empire worthy of the title 'Hegemon.' + + The Kres’ha’nor Hegemony lasted from roughly 920 CE - 1500 CE. It is most famous for being the first empire to dominate Moghes and creating what was then a modern feudal state. + Their empire saw rise of walled cities, steel weapons, centralized taxation, and other innovations. It ended in a brutal succession war, with Moghes once again being shattered into hundreds of individual Kingdoms with no true global power. + + In the 16th century the power of Guilds began to grow, forming an early form of mercantilism. Guilds formed for bakers, butchers, grocers, millers, smiths, carpenters, weavers, mason, shoemakers, in fact, nearly every trade had its own guild. + Standards such as just weights and measures evolved from the guilds, and guild inspectors would inspect shops to ensure rules were being followed. + Guilds would help members that were sick, or in trouble, and would sometimes take care of families after the member died. + This time also saw Guilds building the first major universities. While incredibly exclusive, these universities began to create a new era of specialized labor and intellectuals. + + The 19th century saw rise of the Second Hegemony, ruled by the Sarakus Clan. + Their clan ruled harshly, and forced technological advances into the cities and towns. + In the 1930's they ruthlessly modernized their empire in The Great Endeavor, spreading electricity, radio, paved roads, modern plumbing, and other modern innovations. + + In 1994 the Izweski Clan violently deposed the Sarakus and slaughtered the entire surviving dynasty, declaring the Third Hegemony. + After they won an incredibly destructive global war to defend their claim, the Izweski have ruled Moghes until modern times. + + In 2403, a human exploration team discovered Moghes. Shortly after, first contact with the Izweski Hegemony was made. + Sol Alliance merchants and scientists flocked to Moghes, living under very careful observation and guard in Izweski cities. + Skalamar, the second largest city in Izweski, became the first Unathite city to have a shuttle port constructed. Owned by NanoTrasen, it served to transport people to and from the planet’s surface. + + The Contact War, which has more information here, was a cataclysmic global war that lasted from 2438 to 2449. + The fighting was between two global powers, the Izweski Hegemony, and the Traditionalist Coalition. + The war was fought over the very future of the Unathi and their relationship with the rest of the galaxy. + The Izweski demanded Moghes submit to a one-world government ran by themselves and embrace the influence of humanity. + The Traditionalist Coalition rejected this. The war went nuclear on September 5th, 2439, causing immense suffering across Moghes and directly leading to the creation of The Wasteland, which is set to engulf Moghes within a hundred years. + + # Species Traits + + - [color=#1e90ff]Reptilian Diet[/color]: Unathi can ONLY eat fruits and meat, but can eat raw meat and drink blood without any ill effects. + + - [color=#1e90ff]High Temperature Tolerance[/color]: Unathi prefer a somewhat higher temperature range than humans. + + - [color=#1e90ff]Grasping Tail[/color]: Unathi can drag objects with their tail, keeping both their hands free. - Their unarmed claw attacks deal Slash damage instead of Blunt. + - [color=#1e90ff]Claws[/color]: Unath unarmed claw attacks deal Slash damage instead of Blunt. - They take [color=#ffa500]30% more Cold damage.[/color] + - [color=#ffa500]Cold Intolerance[/color]: Unathi take [color=#ffa500]30% more Cold damage.[/color] diff --git a/Resources/ServerInfo/Guidebook/Mobs/SlimePerson.xml b/Resources/ServerInfo/Guidebook/Mobs/SlimePerson.xml index fc72c60dbf..0374d4cb95 100644 --- a/Resources/ServerInfo/Guidebook/Mobs/SlimePerson.xml +++ b/Resources/ServerInfo/Guidebook/Mobs/SlimePerson.xml @@ -10,7 +10,21 @@ They exhale nitrous oxide and are unaffected by it. Their body can process 6 reagents at the same time instead of just 2. - Their Slime "blood" can not be regenerated from Iron. Slime Blood is technically a source of + Slimepeople can morph into a [bold]"geras"[/bold] (an archaic slimefolk term), which is a smaller slime form that can [bold]pass through grilles[/bold], + but forces them to drop their inventory and held items. It's handy for a quick getaway. A geras is small enough to pick up (with two hands) + and fits in a duffelbag. + + + + + + Slimepeople have an [bold]internal 2x2 storage inventory[/bold] inside of their slime membrane. Anyone can see what's inside and take it out of you without asking, + so be careful. They [bold]don't drop their internal storage when they morph into a geras, however![/bold] + + Slimepeople have slight accelerated regeneration compared to other humanoids. They're also capable of hardening their fists, and as such have stronger punches, + although they punch a little slower. + + Their slime "blood" can not be regenerated from Iron. Slime Blood is technically a source of moderately filling food for other species, although drinking the blood of your coworkers is usually frowned upon. They suffocate 80% slower, but take pressure damage 9% faster. This makes them by far the species most capable to survive in hard vacuum. For a while. diff --git a/Resources/ServerInfo/Guidebook/Science/ArtifactReports.xml b/Resources/ServerInfo/Guidebook/Science/ArtifactReports.xml index a377c980e5..5aaa9ba34a 100644 --- a/Resources/ServerInfo/Guidebook/Science/ArtifactReports.xml +++ b/Resources/ServerInfo/Guidebook/Science/ArtifactReports.xml @@ -1,25 +1,24 @@ -# Artifact Reports -A large portion of Xenoarchaeology gameplay revolves around the interpretation of artifact reports, which are created at the [color=#a4885c]analysis console[/color] after an artifact is scanned. Reports contain the following information: + # Artifact Reports + A large portion of Xenoarchaeology gameplay revolves around the interpretation of artifact reports, which are created at the [color=#a4885c]analysis console[/color] after an artifact is scanned. Reports contain the following information: -- [color=#a4885c]Node ID:[/color] a unique numeric ID corresponding to this artifact's node. Useful in conjunction with a [color=#a4885c]node scanner[/color] for quickly identifying recurring nodes. + - [color=#a4885c]Node ID:[/color] a unique numeric ID corresponding to this artifact's node. Useful in conjunction with a [color=#a4885c]node scanner[/color] for quickly identifying recurring nodes. -- [color=#a4885c]Depth:[/color] a distance from the starting node (depth 0). This is a good shorthand for the value and danger of a node. + - [color=#a4885c]Depth:[/color] a distance from the starting node (depth 0). This is a good shorthand for the value and danger of a node. -- [color=#a4885c]Activation status:[/color] whether or not a node has been activated in the past. + - [color=#a4885c]Activation status:[/color] whether or not a node has been activated in the past. -- [color=#a4885c]Stimulus:[/color] the stimulus for that particular node. + - [color=#a4885c]Stimulus:[/color] the stimulus for that particular node. -- [color=#a4885c]Reaction:[/color] the reaction the stimulus induces. This is often vague, so caution is advised. + - [color=#a4885c]Reaction:[/color] the reaction the stimulus induces. This is often vague, so caution is advised. -- [color=#a4885c]Edges:[/color] the amount of nodes that are connected to the current node. Using this, you can calculate the total number of nodes as well as organize a map of their connections. + - [color=#a4885c]Edges:[/color] the amount of nodes that are connected to the current node. Using this, you can calculate the total number of nodes as well as organize a map of their connections. -- [color=#a4885c]Current value:[/color] the amount of research points an artifact is currently worth. Extracting will set this to zero and traversing new nodes will increase it. - -Reports are a helpful tool in manipulating an artifact, especially in the later stages where you are traversing nodes that have already been activated. - - - -To help with this process, consider printing out reports, writing down details uncovered during activation, or storing them in a folder nearby. + - [color=#a4885c]Current value:[/color] the amount of research points an artifact is currently worth. Extracting will set this to zero and traversing new nodes will increase it. + Reports are a helpful tool in manipulating an artifact, especially in the later stages where you are traversing nodes that have already been activated. + + + + To help with this process, consider printing out reports, writing down details uncovered during activation, or storing them in a folder nearby. diff --git a/Resources/ServerInfo/Guidebook/Science/MachineUpgrading.xml b/Resources/ServerInfo/Guidebook/Science/MachineUpgrading.xml new file mode 100644 index 0000000000..286219b4d9 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Science/MachineUpgrading.xml @@ -0,0 +1,38 @@ + +# Machine Upgrading + +Machines help the station run smoothly, and as a scientist, you can help them run even better! + +## Parts +Stock Parts: + + + + + +You can examine each machine part to see both the type and the rating, which range from 1 to 4. + +Parts of higher levels can be researched as well as found through artifacts or salvage. + + + + + + +## Upgrading +To know if a machine can be upgraded, you can examine it and check for the [color=#a4885c]lightning bolt[/color] icon in the lower right corner. Clicking on it will allow you to see what kinds of upgrades the machine has. + +To check what parts a machine needs, you can examine its board. Try it here: + + + + + + +You can use any rating part for any part requirement. Using higher rated parts will increase how effective the machine is. + +If you want to upgrade an existing machine, simply deconstruct it with a screwdriver and crowbar, and replace the existing parts with parts of a higher level. + +You can also quickly upgrade machines by using an RPED, loading it with machine parts, and then clicking on a machine. It will quickly be upgraded with whatever parts were inserted. + + diff --git a/Resources/ServerInfo/Guidebook/Science/Xenoarchaeology.xml b/Resources/ServerInfo/Guidebook/Science/Xenoarchaeology.xml index 8cd94e8526..b42b8de530 100644 --- a/Resources/ServerInfo/Guidebook/Science/Xenoarchaeology.xml +++ b/Resources/ServerInfo/Guidebook/Science/Xenoarchaeology.xml @@ -2,18 +2,28 @@ # Xenoarchaeology Xenoarchaeology is a epistemics subdepartment focused on researching and experimenting on alien artifacts. -## Artifacts +At the start of each shift, the Science department will usually have access to at least two artifacts to experiment on. You can buy more by talking to the Cargo department. + +By researching the unique things each artifact can do, you gain Research Points, increase the artifact's sale value, and potentially discover a useful ability or two that can help your department or the whole station! + +## Artifact Nodes -Artifacts consist of a randomly-generated graph structure. They consist of nodes connected to each other by edges, the traversal of which is the main goal of the scientists working on them. +Artifacts consist of a randomly-generated tree of nodes. These nodes have a "[color=#a4885c]depth[/color]", representing how dangerous the node is, and the number of other nodes connected to it, called "[color=#a4885c]edges[/color]", + +Artifacts always start at depth zero, the root of the tree. Travelling the tree to find as many nodes as possible is the main goal of the scientists working on them. Knowledge is extracted from nodes to gain Research Points and increase the artifact's sale value. + +Each node has two components: its [color=#a4885c]stimulus[/color] and a [color=#a4885c]reaction[/color]. + +A stimulus is the external behavior that triggers the reaction. There's a variety of these, and higher depth nodes have more difficult to accomplish stimuli. Some stimuli will need improvisation to trigger, and you may need to talk to other departments to get everything you need. -Each node has two main components: a [color=#a4885c]stimulus[/color] and a [color=#a4885c]reaction[/color]. A stimulus is the external behavior that triggers the reaction. Some reactions are instantaneous effects while others are permanent changes. Triggering the reaction causes the artifact to move to one of the node's edges. +Some reactions are instantaneous effects while others are permanent changes. Once an artifact is triggered, the reaction causes the artifact to randomly move to another node it is linked to. -With these basic principles, you can begin to grasp how the different nodes of an artifact are interconnected, and how one can move between them by repeatedly activating nodes. +With some experimental science, you can begin to grasp how the different nodes of an artifact are connected, and how to move between them by repeatedly activating nodes. -While it might seem random to an untrained eye, a skilled scientist can learn to understand the internal structure of any artifact. +All non-zero-depth nodes will have exactly one edge that leads up to its parent node. All other edges a node has lead down to the next depth. ## Artifact Analyzer and Analysis Console @@ -22,13 +32,26 @@ While it might seem random to an untrained eye, a skilled scientist can learn to The main equipment that you'll be using for Xenoarchaeology is the [color=#a4885c]artifact analyzer[/color] and the [color=#a4885c]analysis console[/color]. You can use these to create reports that contain valuable information about an artifact. -To set them up, simply link them with a network configurator, set an artifact on top of the analyzer, and press the [color=#a4885c]Scan[/color] button. +To set them up, simply link them with a network configurator and set an artifact on top of the analyzer. Every station has at least one of these machines already set up. -Using the console, you can extract points from the artifact using the [color=#a4885c]Extract[/color] button. The amount of points you extract is based on how many new nodes have been activated, since last extracting. You can extract multiple times, there is no reason not to!!! +Use the console's [color=#a4885c]scan[/color] button to discover what stimulus the artifact needs and what its reaction will do. Scanning takes thirty seconds. + +Use the [color=#a4885c]print[/color] button to save the scan result, so you can refer to it later. + +Once you've discovered a new node, you can extract points from the artifact using the [color=#a4885c]Extract[/color] button. ## Assembling Artifacts -It is possible to gather multiple artifact fragments and assemble them into a working artifact. You can ask for these from Salvage, they usually find these while mining asteroids or on Expeditions. +It is possible to gather multiple artifact fragments and assemble them into a working artifact. You can ask for these from Salvage, who usually find these while mining asteroids or on Expeditions. + +## Traversal Bias + + + +Artifacts placed on top of a powered artifact analyzer are subjected to a bias which affects which node they will move to after being activated. The bias can be set in the artifact console. +There are two types of biases: +- [color=#a4885c]Up:[/color] favors nodes closer to the origin. Results in a decrease of depth. +- [color=#a4885c]Down:[/color] favors nodes farther away from the origin. Results in an increase of depth. diff --git a/Resources/ServerInfo/Guidebook/Security/Forensics.xml b/Resources/ServerInfo/Guidebook/Security/Forensics.xml index 2189488c6b..3eb53b1e9a 100644 --- a/Resources/ServerInfo/Guidebook/Security/Forensics.xml +++ b/Resources/ServerInfo/Guidebook/Security/Forensics.xml @@ -1,4 +1,4 @@ - + # Forensics There are a lot of tools to help you gather and examine the evidence at your disposal @@ -40,7 +40,7 @@ ## Fibers Whenenever people wearing gloves touch anything on the station, they are bound to leave behind some fibers. This complicates things, but nothing is unsolvable for a real detective. - There are up to [color=red]16[/color] different types of fibers possible. Can that stop you from solving the case? + There are up to [color=red]25[/color] different types of fibers possible. Can that stop you from solving the case? diff --git a/Resources/ServerInfo/Guidebook/Service/Bartender.xml b/Resources/ServerInfo/Guidebook/Service/Bartender.xml index 060c39fca3..b7599fc0d1 100644 --- a/Resources/ServerInfo/Guidebook/Service/Bartender.xml +++ b/Resources/ServerInfo/Guidebook/Service/Bartender.xml @@ -18,6 +18,7 @@ Don't forget containers to serve them in! + ## Drinks diff --git a/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml index 797591dd78..c74b947dbf 100644 --- a/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml +++ b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml @@ -1,88 +1,9 @@ -## Starting Out -This is not an extensive list of recipes, these listings are to showcase the basics. +## Recipe list +Note: Only solid foods are listed here! To learn recipes for liquid ingredients, check the chemistry guidebook. -Mixes are done in a Beaker, foods are cooked in a Microwave. Cook times will be listed. +This list is auto-generated and contains all known foods. -WARNING: This is not an automatically generated list, things here may become outdated. The wiki has much more than is listed here. - -## The Basics: Mixing - -- Dough = 15 Flour, 10 Water -- Cornmeal Dough = 1 Egg (6u), 10 Milk, 15 Cornmeal -- Tortila Dough = 15 Cornmeal, 10 Water -- Tofu = 5 Enzyme (Catalyst), 30 Soy Milk -- Pie Dough = 2 Eggs (12u), 15 Flour, 5 Table Salt -- Cake Batter = 2 Eggs(12u), 15 flour, 5 Sugar -- Vegan Cake Batter = 15 Soy Milk, 15 Flour, 5 Sugar -- Butter = 30 Milk, 5 Table Salt (Catalyst) -- Cheese Wheel = 5 Enzyme (Catalyst), 40 Milk -- Chèvre Log = 5 Enzyme (Catalyst), 10 Goat Milk -- Meatball = 1 Egg (6u), 5 Flour, 5 Uncooked Animal Proteins -- Chocolate = 6 Cocoa Powder, 2 Milk, 2 Sugar -- Uncooked Animal Protein: Grind Raw Meat - - - - - - - - - - - - - - - - - - - -## Secondary Products - -- Dough Slice: Cut Dough -- Bun: Microwave Dough Slice for 5 Seconds -- Cutlet: Slice Raw Meat -- Cheese Wedge: Slice Cheese Wheel -- Flat Dough: Use a rolling pin or a round object (fire extinguisher, soda can, bottle) on Dough. -- Tortilla Dough Slice: cut Tortilla Dough -- Flat Tortilla Dough: Use a rolling pin or a round object (fire extinguisher, soda can, bottle) on Tortilla Dough Slice -- Taco Shell: Microwave Flat Tortilla Dough for 5 Seconds - -## Food Examples - -- Bread: Microwave Dough for 10 Seconds -- Plain Burger: Microwave 1 Bun and 1 Raw Meat for 10 Seconds -- Tomato Soup: 10u Water, 1 Bowl, and 2 Tomatoes for 10 Seconds -- Citrus Salad: 1 Bowl, 1 Lemon, 1 Lime, 1 Orange for 5 Seconds -- Margherita Pizza: Microwave 1 Flat Dough, 1 Cheese Wedge, and 4 Tomatoes for 30 Seconds -- Cake: 1 Cake Batter for 15 Seconds -- Apple Pie: 1 Pie Dough, 3 Apples, and 1 Pie Tin for 15 Seconds -- Beef Taco: Microwave 1 Taco Shell, 1 Raw Meat Cutlet, 1 Cheese Wedge for 10 Seconds -- Cuban Carp : Microwave 1 Dough, 1 Cheese Wedge, 1 Chili, 1 Carp Meat for 15 Seconds -- Banana Cream Pie : Microwave 1 Pie Dough, 3 Bananas, and 1 Pie Tin for 15 Seconds -- Carrot Fries : Microwave 1 Carrot, 15u Salt for 15 Seconds -- Pancake : Microwave 5u Flour, 5u Milk, 1 Egg (6u) for 5 Seconds - - - - - - - - - - - - - - - - - - - + diff --git a/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/Psionics.xml b/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/Psionics.xml deleted file mode 100644 index 2911dae155..0000000000 --- a/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/Psionics.xml +++ /dev/null @@ -1,73 +0,0 @@ - -# Psionics -[color=#a4885c]Psionics[/color] are mental abilities that interface with the [color=#a4885c]noösphere[/color]. Humans have limited access to the noösphere's full potential, allowing some to find ways to command it. -The abilities originate from distorting a noöspheric imprint into a specific shape, a bit like a lock and key. This means that humans can only have a single ability at a time. -An imprint shaped for metapsionics will not work for invisibility, and vice versa. - - -Many other creatures are much more in tune with it than humans, allowing them to access more powerful psionics like [color=#a4885c]kineses[/color]. - -## Telepathy -All psionic entities have a shared telepathic communication channel. It's anonymized, so you never know who you are talking to. Statistically, it probably is not human. - -## Glimmer -[color=#a4885c]Glimmer[/color] is a more colloquial term for [color=#a4885c]noöspheric pressure[/color], measured in [color=#a4885c]milli-Psi (mΨ)[/color]. The noösphere can be considered analogous to an atmosphere. In a localized area, everything will equalize towards a certain pressure that's based off of the total energy in the system. -Note that unlike atmospheres, areas of noopsheric pressure do not operate by physical contigiousness, but mental. This means that areas with intertwined destinies will experience the same latent glimmer regardless of physical separation. - - -The [color=#a4885c]sophic scribe[/color] tracks glimmer. - - - - - - -Epistemics can build devices to interact with glimmer. These are usually the main determiners of where glimmer is going. -[color=#a4885c]Glimmer probers[/color] will increase glimmer, but directly generate research points without further input. [color=#a4885c]Glimmer drains[/color] simply drain glimmer at the cost of electricity. - -Use of psionics will increase glimmer, as will [color=#a4885c]noöspheric storms[/color]. - -## Discharges -Glimmer will occasionally discharge if it's above 100 mΨ, causing a wide range of effects based on just how high it is. The most common is giving all entities with psionic potential a small seizure, -which is something most people working on stations with an Epistemics department have grown used to. - -## Acquiring Psionics - - -Psionics can be acquired in a number of ways. The oracle will sometimes dispense a strange liquid called [color=#a4885c]lotophagoi oil[/color], which at high glimmer levels is guaranteed to give psionics. - -Random discharges may give you psionics as the seizure knocks your noöspheric imprint into just the right shape. - -[color=#a4885c]Space drugs[/color] are an easier to acquire but much weaker alternative to lotophagoi oil. - -## Psionic Insulation - - - - - -[color=#a4885c]Insulative clothing[/color] and [color=#a4885c]cryptobiolin[/color] will render you immune to psionics, but prevent you from using any you have. - - -Security has a more forcible option for insulative clothing. - -## Handling Glimmer Emergencies - -Probers should be turned off before glimmer exceeds 500 mΨ. - - -Glimmer drains are quite effective at draining glimmer, taking it out as fast as a prober can put it in. - - -Sacrificing psychics will reduce glimmer instantly by a decent amount. - - -Metabolizing 20u or more of [color=#a4885c]mindbreaker[/color] will remove psionics from a person, meaning they will not generate any more glimmer. - - -[color=#a4885c]Soulbreaker[/color] shells will remove psionics from psychics they hit. - - -[color=#a4885c]Ectoplasm[/color], combined in a beaker with equal parts water, ash, blood, and plasma, will produce a normality crystal when heated enough. [color=#fcdf03]Use a hot plate for this.[/color] - - diff --git a/Resources/Textures/Clothing/Back/Backpacks/backpack.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Backpacks/backpack.rsi/equipped-BACKPACK.png index b4f0155515..f5f32aa348 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/backpack.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Backpacks/backpack.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/backpack.rsi/icon.png b/Resources/Textures/Clothing/Back/Backpacks/backpack.rsi/icon.png index d61d4eeb83..22f7831b46 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/backpack.rsi/icon.png and b/Resources/Textures/Clothing/Back/Backpacks/backpack.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/backpack.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/backpack.rsi/meta.json index fce8c90ce8..c4dacb4c79 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/backpack.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/backpack.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/547852588166c8e091b441e4e67169e156bb09c1", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/equipped-BACKPACK.png index aa9b9fa096..cc1afccae5 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/icon.png b/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/icon.png index 93c823ce08..6050ab8de7 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/icon.png and b/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/meta.json index fce8c90ce8..c4dacb4c79 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/captain.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/547852588166c8e091b441e4e67169e156bb09c1", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Backpacks/chemistry.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Backpacks/chemistry.rsi/equipped-BACKPACK.png index 9f10db67a9..5f22d5a11d 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/chemistry.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Backpacks/chemistry.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/chemistry.rsi/icon.png b/Resources/Textures/Clothing/Back/Backpacks/chemistry.rsi/icon.png index 9112452d20..528364ad49 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/chemistry.rsi/icon.png and b/Resources/Textures/Clothing/Back/Backpacks/chemistry.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/chemistry.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/chemistry.rsi/meta.json index fce8c90ce8..c4dacb4c79 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/chemistry.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/chemistry.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/547852588166c8e091b441e4e67169e156bb09c1", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/equipped-BACKPACK.png index 3923e872a1..24efbeba2c 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/icon.png b/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/icon.png index f5dd61b22c..fe84ed5b71 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/icon.png and b/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/inhand-left.png index 9a1dc27dda..a3f3b84ce3 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/inhand-left.png and b/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/inhand-right.png index c7cec5afbc..cc5279f936 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/inhand-right.png and b/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/meta.json index fce8c90ce8..3916598b11 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/clown.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/clown.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/547852588166c8e091b441e4e67169e156bb09c1", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Backpacks/cluwne.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Backpacks/cluwne.rsi/equipped-BACKPACK.png index 589cf50997..11ed6a9da4 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/cluwne.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Backpacks/cluwne.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/cluwne.rsi/icon.png b/Resources/Textures/Clothing/Back/Backpacks/cluwne.rsi/icon.png index 3d31713622..1928f42d22 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/cluwne.rsi/icon.png and b/Resources/Textures/Clothing/Back/Backpacks/cluwne.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/cluwne.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/cluwne.rsi/meta.json index da59cddfe8..68b4471db4 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/cluwne.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/cluwne.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Backpacks/engineering.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Backpacks/engineering.rsi/equipped-BACKPACK.png index ee34a4a9c2..cd4dce8756 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/engineering.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Backpacks/engineering.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/engineering.rsi/icon.png b/Resources/Textures/Clothing/Back/Backpacks/engineering.rsi/icon.png index 20df264c06..6918decb91 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/engineering.rsi/icon.png and b/Resources/Textures/Clothing/Back/Backpacks/engineering.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/engineering.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/engineering.rsi/meta.json index fce8c90ce8..c4dacb4c79 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/engineering.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/engineering.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/547852588166c8e091b441e4e67169e156bb09c1", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Backpacks/genetics.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/genetics.rsi/meta.json index cfb4c7b254..c4dacb4c79 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/genetics.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/genetics.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/15c87fd15fe205e4fc71997e48311e06ff02a1d4", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Backpacks/hydroponics.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Backpacks/hydroponics.rsi/equipped-BACKPACK.png index 0f412e2338..6174410417 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/hydroponics.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Backpacks/hydroponics.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/hydroponics.rsi/icon.png b/Resources/Textures/Clothing/Back/Backpacks/hydroponics.rsi/icon.png index 669c5bc3e7..b79c807ae6 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/hydroponics.rsi/icon.png and b/Resources/Textures/Clothing/Back/Backpacks/hydroponics.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/hydroponics.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/hydroponics.rsi/meta.json index fce8c90ce8..c4dacb4c79 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/hydroponics.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/hydroponics.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/547852588166c8e091b441e4e67169e156bb09c1", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Backpacks/medical.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Backpacks/medical.rsi/equipped-BACKPACK.png index af6478d1fa..8d3834833b 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/medical.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Backpacks/medical.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/medical.rsi/icon.png b/Resources/Textures/Clothing/Back/Backpacks/medical.rsi/icon.png index ec7d022940..99af2a17c7 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/medical.rsi/icon.png and b/Resources/Textures/Clothing/Back/Backpacks/medical.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/medical.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/medical.rsi/meta.json index fce8c90ce8..c4dacb4c79 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/medical.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/547852588166c8e091b441e4e67169e156bb09c1", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/equipped-BACKPACK.png index bfe4179307..2538c8d433 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/icon.png b/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/icon.png index 7ad80206d8..5037ee3687 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/icon.png and b/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/inhand-left.png index f4318242ca..9d9dbbd30f 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/inhand-left.png and b/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/inhand-right.png index 083cf6092f..e6333b224b 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/inhand-right.png and b/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/meta.json index fce8c90ce8..c4dacb4c79 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/mime.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/mime.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/547852588166c8e091b441e4e67169e156bb09c1", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Backpacks/science.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Backpacks/science.rsi/equipped-BACKPACK.png index 9c7b04a38b..23afd82caf 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/science.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Backpacks/science.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/science.rsi/icon.png b/Resources/Textures/Clothing/Back/Backpacks/science.rsi/icon.png index d1cf3b1540..bc9cca02f3 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/science.rsi/icon.png and b/Resources/Textures/Clothing/Back/Backpacks/science.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/science.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/science.rsi/meta.json index fce8c90ce8..c4dacb4c79 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/science.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/science.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/547852588166c8e091b441e4e67169e156bb09c1", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Backpacks/security.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Backpacks/security.rsi/equipped-BACKPACK.png index c9e4989cd5..36b6899627 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/security.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Backpacks/security.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/security.rsi/icon.png b/Resources/Textures/Clothing/Back/Backpacks/security.rsi/icon.png index 47613295e4..19115dfeb3 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/security.rsi/icon.png and b/Resources/Textures/Clothing/Back/Backpacks/security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/security.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/security.rsi/meta.json index aa3381b0eb..c4dacb4c79 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/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/6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Backpacks/virology.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Backpacks/virology.rsi/equipped-BACKPACK.png index fc977d86e7..21003e9eef 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/virology.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Backpacks/virology.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/virology.rsi/icon.png b/Resources/Textures/Clothing/Back/Backpacks/virology.rsi/icon.png index a366d48aa5..ab4b059df1 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/virology.rsi/icon.png and b/Resources/Textures/Clothing/Back/Backpacks/virology.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/virology.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/virology.rsi/meta.json index fce8c90ce8..c4dacb4c79 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/virology.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/virology.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/547852588166c8e091b441e4e67169e156bb09c1", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Duffels/chemistry.rsi/icon.png b/Resources/Textures/Clothing/Back/Duffels/chemistry.rsi/icon.png index ec4cf4ab8e..ce67965c1e 100644 Binary files a/Resources/Textures/Clothing/Back/Duffels/chemistry.rsi/icon.png and b/Resources/Textures/Clothing/Back/Duffels/chemistry.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Duffels/chemistry.rsi/meta.json b/Resources/Textures/Clothing/Back/Duffels/chemistry.rsi/meta.json index 89236692cc..2db05eb405 100644 --- a/Resources/Textures/Clothing/Back/Duffels/chemistry.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Duffels/chemistry.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/547852588166c8e091b441e4e67169e156bb09c1", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Duffels/clown.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Duffels/clown.rsi/equipped-BACKPACK.png index 781ad572bf..614080f172 100644 Binary files a/Resources/Textures/Clothing/Back/Duffels/clown.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Duffels/clown.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Duffels/clown.rsi/icon.png b/Resources/Textures/Clothing/Back/Duffels/clown.rsi/icon.png index d69734dc8a..27884859c5 100644 Binary files a/Resources/Textures/Clothing/Back/Duffels/clown.rsi/icon.png and b/Resources/Textures/Clothing/Back/Duffels/clown.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Duffels/clown.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Duffels/clown.rsi/inhand-left.png index da673dc3b7..c9d6c9db60 100644 Binary files a/Resources/Textures/Clothing/Back/Duffels/clown.rsi/inhand-left.png and b/Resources/Textures/Clothing/Back/Duffels/clown.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Back/Duffels/clown.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Duffels/clown.rsi/inhand-right.png index ca857332fb..e8824368a6 100644 Binary files a/Resources/Textures/Clothing/Back/Duffels/clown.rsi/inhand-right.png and b/Resources/Textures/Clothing/Back/Duffels/clown.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Back/Duffels/clown.rsi/meta.json b/Resources/Textures/Clothing/Back/Duffels/clown.rsi/meta.json index fce8c90ce8..3916598b11 100644 --- a/Resources/Textures/Clothing/Back/Duffels/clown.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Duffels/clown.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/547852588166c8e091b441e4e67169e156bb09c1", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Duffels/science.rsi/icon.png b/Resources/Textures/Clothing/Back/Duffels/science.rsi/icon.png index 709e67d3a4..6655fbb71b 100644 Binary files a/Resources/Textures/Clothing/Back/Duffels/science.rsi/icon.png and b/Resources/Textures/Clothing/Back/Duffels/science.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Duffels/science.rsi/meta.json b/Resources/Textures/Clothing/Back/Duffels/science.rsi/meta.json index 89236692cc..2db05eb405 100644 --- a/Resources/Textures/Clothing/Back/Duffels/science.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Duffels/science.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/547852588166c8e091b441e4e67169e156bb09c1", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Satchels/captain.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Satchels/captain.rsi/equipped-BACKPACK.png index 8332a0c0a9..ae70111e1e 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/captain.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Satchels/captain.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/captain.rsi/icon.png b/Resources/Textures/Clothing/Back/Satchels/captain.rsi/icon.png index a89cee8d79..3b0bd0547c 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/captain.rsi/icon.png and b/Resources/Textures/Clothing/Back/Satchels/captain.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/captain.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/captain.rsi/meta.json index fce8c90ce8..c4dacb4c79 100644 --- a/Resources/Textures/Clothing/Back/Satchels/captain.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Satchels/captain.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/547852588166c8e091b441e4e67169e156bb09c1", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/equipped-BACKPACK.png index d9b5d89404..365e30b686 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/icon.png b/Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/icon.png index ea5838f139..8feb895010 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/icon.png and b/Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/meta.json index fce8c90ce8..c4dacb4c79 100644 --- a/Resources/Textures/Clothing/Back/Satchels/chemistry.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Satchels/chemistry.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/547852588166c8e091b441e4e67169e156bb09c1", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Satchels/clown.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Satchels/clown.rsi/equipped-BACKPACK.png index 3b0ecb4902..722f83d027 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/clown.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Satchels/clown.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/clown.rsi/icon.png b/Resources/Textures/Clothing/Back/Satchels/clown.rsi/icon.png index 269df08fe3..eaedae5a9b 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/clown.rsi/icon.png and b/Resources/Textures/Clothing/Back/Satchels/clown.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/clown.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Satchels/clown.rsi/inhand-left.png index 1c919ed8d3..f10df92afd 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/clown.rsi/inhand-left.png and b/Resources/Textures/Clothing/Back/Satchels/clown.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/clown.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Satchels/clown.rsi/inhand-right.png index 966455d20d..4cb86bd338 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/clown.rsi/inhand-right.png and b/Resources/Textures/Clothing/Back/Satchels/clown.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/clown.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/clown.rsi/meta.json index 9171e1f882..3916598b11 100644 --- a/Resources/Textures/Clothing/Back/Satchels/clown.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Satchels/clown.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by лазік#7305", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Satchels/engineering.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Satchels/engineering.rsi/equipped-BACKPACK.png index d5dbd754d5..7a84e0c0e3 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/engineering.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Satchels/engineering.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/engineering.rsi/icon.png b/Resources/Textures/Clothing/Back/Satchels/engineering.rsi/icon.png index ec5b0363cb..e4b9442f02 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/engineering.rsi/icon.png and b/Resources/Textures/Clothing/Back/Satchels/engineering.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/engineering.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/engineering.rsi/meta.json index fce8c90ce8..c4dacb4c79 100644 --- a/Resources/Textures/Clothing/Back/Satchels/engineering.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Satchels/engineering.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/547852588166c8e091b441e4e67169e156bb09c1", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/equipped-BACKPACK.png index fc4a93d812..9ae968c9d0 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/icon.png b/Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/icon.png index 2a5ea97c42..684aab50d7 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/icon.png and b/Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/meta.json index fce8c90ce8..c4dacb4c79 100644 --- a/Resources/Textures/Clothing/Back/Satchels/hydroponics.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Satchels/hydroponics.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/547852588166c8e091b441e4e67169e156bb09c1", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Satchels/medical.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Satchels/medical.rsi/equipped-BACKPACK.png index f80b1f2e6e..8e2fc11935 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/medical.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Satchels/medical.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/medical.rsi/icon.png b/Resources/Textures/Clothing/Back/Satchels/medical.rsi/icon.png index 450a24e818..b6840d14b7 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/medical.rsi/icon.png and b/Resources/Textures/Clothing/Back/Satchels/medical.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/medical.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/medical.rsi/meta.json index fce8c90ce8..c4dacb4c79 100644 --- a/Resources/Textures/Clothing/Back/Satchels/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Satchels/medical.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/547852588166c8e091b441e4e67169e156bb09c1", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Satchels/satchel.rsi/equipped-BACKPACK.png index c24f815bc1..34e981394a 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/satchel.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Satchels/satchel.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel.rsi/icon.png b/Resources/Textures/Clothing/Back/Satchels/satchel.rsi/icon.png index d390ee7c98..9e72773f76 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/satchel.rsi/icon.png and b/Resources/Textures/Clothing/Back/Satchels/satchel.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/satchel.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/satchel.rsi/meta.json index fce8c90ce8..c4dacb4c79 100644 --- a/Resources/Textures/Clothing/Back/Satchels/satchel.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Satchels/satchel.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/547852588166c8e091b441e4e67169e156bb09c1", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Satchels/science.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Satchels/science.rsi/equipped-BACKPACK.png index 2661a05b4c..7c1da2349b 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/science.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Satchels/science.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/science.rsi/icon.png b/Resources/Textures/Clothing/Back/Satchels/science.rsi/icon.png index 53d96698ae..1b1c1e0ebf 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/science.rsi/icon.png and b/Resources/Textures/Clothing/Back/Satchels/science.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/science.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/science.rsi/meta.json index fce8c90ce8..c4dacb4c79 100644 --- a/Resources/Textures/Clothing/Back/Satchels/science.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Satchels/science.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/547852588166c8e091b441e4e67169e156bb09c1", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Satchels/security.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Satchels/security.rsi/equipped-BACKPACK.png index c33aec6307..db7f22da18 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/security.rsi/equipped-BACKPACK.png and b/Resources/Textures/Clothing/Back/Satchels/security.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/security.rsi/icon.png b/Resources/Textures/Clothing/Back/Satchels/security.rsi/icon.png index 7f100adff6..c36b8c036d 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/security.rsi/icon.png and b/Resources/Textures/Clothing/Back/Satchels/security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/security.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/security.rsi/meta.json index fce8c90ce8..c4dacb4c79 100644 --- a/Resources/Textures/Clothing/Back/Satchels/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Satchels/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/547852588166c8e091b441e4e67169e156bb09c1", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/equipped-EYES.png new file mode 100644 index 0000000000..84979d1097 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/icon.png new file mode 100644 index 0000000000..900b438c7e Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/inhand-left.png new file mode 100644 index 0000000000..b888ce227a Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/inhand-right.png new file mode 100644 index 0000000000..0e248905fb Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/meta.json new file mode 100644 index 0000000000..f3acabcc54 --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by IntegerTempest, edited by Golinth", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/equipped-HAND.png index 33e36a316f..5599a2914e 100644 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/equipped-HAND.png and b/Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/icon.png index 59d0d46baa..44e5dfe38a 100644 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/icon.png and b/Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/meta.json index 88e3ebd509..41ab4f7e36 100644 --- a/Resources/Textures/Clothing/Hands/Gloves/Color/black.rsi/meta.json +++ b/Resources/Textures/Clothing/Hands/Gloves/Color/black.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", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/equipped-HAND.png index 776e6a1ff9..793a3115b7 100644 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/equipped-HAND.png and b/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/inhand-left.png index 5ec31202f1..b9842fb35b 100644 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/inhand-left.png and b/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/inhand-right.png index f9ea9a377a..a92a411614 100644 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/inhand-right.png and b/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/meta.json index 7a0bf77e1b..41ab4f7e36 100644 --- a/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/meta.json +++ b/Resources/Textures/Clothing/Hands/Gloves/Color/color.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 and modified by Flareguy for Space Station 14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/equipped-HAND.png index 789a7c00ed..f7a0c87185 100644 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/equipped-HAND.png and b/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/icon.png index b60662857e..e22806c85d 100644 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/icon.png and b/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/meta.json index ccb1c5dcaf..b6aeef7f36 100644 --- a/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/meta.json +++ b/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/meta.json @@ -1 +1,31 @@ -{"version": 1, "license": "CC-BY-SA-3.0", "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", "size": {"x": 32, "y": 32}, "states": [{"name": "icon"}, {"name": "equipped-HAND", "directions": 4}, {"name": "inhand-left", "directions": 4}, {"name": "inhand-right", "directions": 4}, {"name": "equipped-HAND-vox", "directions": 4}]} +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-HAND-vox", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + } + ] + } diff --git a/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/equipped-HAND.png index 0a03d27619..f0733cd45a 100644 Binary files a/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/equipped-HAND.png and b/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/icon.png index d7dbdbe152..ac1b020d5b 100644 Binary files a/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/icon.png and b/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/meta.json index 23e44f0be0..41ab4f7e36 100644 --- a/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/meta.json +++ b/Resources/Textures/Clothing/Hands/Gloves/captain.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/pull/69842/commits/d8138946b0ed06fced522729ac8eaa0596864329 edited by Skarletto (github)", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Hands/Gloves/combat.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/combat.rsi/equipped-HAND.png new file mode 100644 index 0000000000..7ca224617c Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/combat.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/combat.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/combat.rsi/icon.png new file mode 100644 index 0000000000..eedef5290d Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/combat.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/combat.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/combat.rsi/inhand-left.png new file mode 100644 index 0000000000..2e6ce0b9b9 Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/combat.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/combat.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/combat.rsi/inhand-right.png new file mode 100644 index 0000000000..41ca0dddfb Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/combat.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/combat.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/combat.rsi/meta.json new file mode 100644 index 0000000000..1ad417f8f1 --- /dev/null +++ b/Resources/Textures/Clothing/Hands/Gloves/combat.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprited by OnsenCapy (NamelessName on Discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/fingerless.rsi/equipped-HAND-body-slim.png b/Resources/Textures/Clothing/Hands/Gloves/fingerless.rsi/equipped-HAND-body-slim.png similarity index 100% rename from Resources/Textures/_White/Clothing/Hands/Gloves/fingerless.rsi/equipped-HAND-body-slim.png rename to Resources/Textures/Clothing/Hands/Gloves/fingerless.rsi/equipped-HAND-body-slim.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/fingerless.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/fingerless.rsi/equipped-HAND.png index 569d85e129..b49db4e5ed 100644 Binary files a/Resources/Textures/Clothing/Hands/Gloves/fingerless.rsi/equipped-HAND.png and b/Resources/Textures/Clothing/Hands/Gloves/fingerless.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/fingerless.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/fingerless.rsi/icon.png index 010b2064b5..70ba03167b 100644 Binary files a/Resources/Textures/Clothing/Hands/Gloves/fingerless.rsi/icon.png and b/Resources/Textures/Clothing/Hands/Gloves/fingerless.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/fingerless.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/fingerless.rsi/meta.json index e47f13296a..3c48d5088b 100644 --- a/Resources/Textures/Clothing/Hands/Gloves/fingerless.rsi/meta.json +++ b/Resources/Textures/Clothing/Hands/Gloves/fingerless.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/54ecdcc05bcaf335489938b1253a2a733ba12271", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-HAND", "directions": 4 }, + { + "name": "equipped-HAND-body-slim", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Hands/Gloves/latex.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/latex.rsi/equipped-HAND.png index 26464eaee7..57dd8882d3 100644 Binary files a/Resources/Textures/Clothing/Hands/Gloves/latex.rsi/equipped-HAND.png and b/Resources/Textures/Clothing/Hands/Gloves/latex.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/latex.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/latex.rsi/icon.png index 89889bd84c..11237e02a9 100644 Binary files a/Resources/Textures/Clothing/Hands/Gloves/latex.rsi/icon.png and b/Resources/Textures/Clothing/Hands/Gloves/latex.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/latex.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/latex.rsi/meta.json index 88e3ebd509..41ab4f7e36 100644 --- a/Resources/Textures/Clothing/Hands/Gloves/latex.rsi/meta.json +++ b/Resources/Textures/Clothing/Hands/Gloves/latex.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", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Head/Bandanas/black.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Bandanas/black.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..b74049130c Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/black.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/black.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Head/Bandanas/black.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..a3def50f88 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/black.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/black.rsi/meta.json b/Resources/Textures/Clothing/Head/Bandanas/black.rsi/meta.json index a555369032..a39a46ac81 100644 --- a/Resources/Textures/Clothing/Head/Bandanas/black.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Bandanas/black.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. equipped-MASK-vox & equipped-HELMET-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", "size": { "x": 32, "y": 32 @@ -17,10 +17,18 @@ "name": "equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, { "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..7266432372 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..6bc5266367 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/meta.json b/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/meta.json index a555369032..a39a46ac81 100644 --- a/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Bandanas/blue.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. equipped-MASK-vox & equipped-HELMET-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", "size": { "x": 32, "y": 32 @@ -17,10 +17,18 @@ "name": "equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, { "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/equipped-HELMET-hamster.png b/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/equipped-HELMET-hamster.png deleted file mode 100644 index 3b89ea8bdf..0000000000 Binary files a/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/equipped-HELMET-hamster.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..c576b30f47 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..378a1a3c19 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/meta.json b/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/meta.json index a9b3b1556d..a39a46ac81 100644 --- a/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Bandanas/botany.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. equipped-MASK-vox & equipped-HELMET-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", "size": { "x": 32, "y": 32 @@ -18,13 +18,17 @@ "directions": 4 }, { - "name": "equipped-HELMET-hamster", + "name": "equipped-HELMET-vox", "directions": 4 }, { "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..5189f62e25 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..616bb8eeb3 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/meta.json b/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/meta.json index a555369032..a39a46ac81 100644 --- a/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Bandanas/gold.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. equipped-MASK-vox & equipped-HELMET-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", "size": { "x": 32, "y": 32 @@ -17,10 +17,18 @@ "name": "equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, { "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Bandanas/green.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Bandanas/green.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..ed4c08a325 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/green.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/green.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Head/Bandanas/green.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..958bcdf0ea Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/green.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/green.rsi/meta.json b/Resources/Textures/Clothing/Head/Bandanas/green.rsi/meta.json index a555369032..ef97b40b36 100644 --- a/Resources/Textures/Clothing/Head/Bandanas/green.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Bandanas/green.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. equipped-MASK-vox & equipped-HELMET-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", "size": { "x": 32, "y": 32 @@ -21,6 +21,14 @@ "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..92f305f183 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..5d2af65f4b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/meta.json b/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/meta.json index a555369032..a39a46ac81 100644 --- a/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Bandanas/grey.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. equipped-MASK-vox & equipped-HELMET-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", "size": { "x": 32, "y": 32 @@ -17,10 +17,18 @@ "name": "equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, { "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Bandanas/red.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Bandanas/red.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..22df7888e7 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/red.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/red.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Head/Bandanas/red.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..7cea36d539 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/red.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/red.rsi/meta.json b/Resources/Textures/Clothing/Head/Bandanas/red.rsi/meta.json index a555369032..a39a46ac81 100644 --- a/Resources/Textures/Clothing/Head/Bandanas/red.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Bandanas/red.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. equipped-MASK-vox & equipped-HELMET-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", "size": { "x": 32, "y": 32 @@ -17,10 +17,18 @@ "name": "equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, { "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..99ed4f9cc2 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..a5fdbe4aac Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/meta.json b/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/meta.json index a555369032..96c7993dd3 100644 --- a/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Bandanas/skull.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. equipped-MASK-vox & equipped-HELMET-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi and modified by Flareguy", "size": { "x": 32, "y": 32 @@ -17,10 +17,18 @@ "name": "equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, { "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/meta.json index fe9f38cad4..bcd0d726dc 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/f09526480788c2e18fff8c16c4318fd6b4272c10 inhands by peptide", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/f09526480788c2e18fff8c16c4318fd6b4272c10. Vox states by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 @@ -18,11 +18,7 @@ "directions": 4 }, { - "name": "off-inhand-left", - "directions": 4 - }, - { - "name": "off-inhand-right", + "name": "off-equipped-HELMET-vox", "directions": 4 }, { @@ -30,11 +26,7 @@ "directions": 4 }, { - "name": "on-inhand-left", - "directions": 4 - }, - { - "name": "on-inhand-right", + "name": "on-equipped-HELMET-vox", "directions": 4 }, { diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..e24011cc92 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/off-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/off-inhand-left.png deleted file mode 100644 index 8617b5a239..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/off-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/off-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/off-inhand-right.png deleted file mode 100644 index d205602ccf..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/off-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..5ad3f9c79a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/on-inhand-left.png deleted file mode 100644 index 22a6c42d8f..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/on-inhand-right.png deleted file mode 100644 index a204bb0a78..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/meta.json index fe9f38cad4..bcd0d726dc 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/f09526480788c2e18fff8c16c4318fd6b4272c10 inhands by peptide", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/f09526480788c2e18fff8c16c4318fd6b4272c10. Vox states by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 @@ -18,11 +18,7 @@ "directions": 4 }, { - "name": "off-inhand-left", - "directions": 4 - }, - { - "name": "off-inhand-right", + "name": "off-equipped-HELMET-vox", "directions": 4 }, { @@ -30,11 +26,7 @@ "directions": 4 }, { - "name": "on-inhand-left", - "directions": 4 - }, - { - "name": "on-inhand-right", + "name": "on-equipped-HELMET-vox", "directions": 4 }, { diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..34d61a07ca Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/off-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/off-inhand-left.png deleted file mode 100644 index 8de0449073..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/off-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/off-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/off-inhand-right.png deleted file mode 100644 index 7a96aed731..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/off-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..99955187a8 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/on-inhand-left.png deleted file mode 100644 index 030472239b..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/on-inhand-right.png deleted file mode 100644 index 270a9249db..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/meta.json index fe9f38cad4..bcd0d726dc 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/f09526480788c2e18fff8c16c4318fd6b4272c10 inhands by peptide", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/f09526480788c2e18fff8c16c4318fd6b4272c10. Vox states by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 @@ -18,11 +18,7 @@ "directions": 4 }, { - "name": "off-inhand-left", - "directions": 4 - }, - { - "name": "off-inhand-right", + "name": "off-equipped-HELMET-vox", "directions": 4 }, { @@ -30,11 +26,7 @@ "directions": 4 }, { - "name": "on-inhand-left", - "directions": 4 - }, - { - "name": "on-inhand-right", + "name": "on-equipped-HELMET-vox", "directions": 4 }, { diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..f79fe95b57 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/off-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/off-inhand-left.png deleted file mode 100644 index b53973feec..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/off-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/off-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/off-inhand-right.png deleted file mode 100644 index 0f534f88b1..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/off-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..f94eecb411 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/on-inhand-left.png deleted file mode 100644 index 819ca15f44..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/on-inhand-right.png deleted file mode 100644 index 848bfcfe88..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/meta.json index fe9f38cad4..bcd0d726dc 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/f09526480788c2e18fff8c16c4318fd6b4272c10 inhands by peptide", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/f09526480788c2e18fff8c16c4318fd6b4272c10. Vox states by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 @@ -18,11 +18,7 @@ "directions": 4 }, { - "name": "off-inhand-left", - "directions": 4 - }, - { - "name": "off-inhand-right", + "name": "off-equipped-HELMET-vox", "directions": 4 }, { @@ -30,11 +26,7 @@ "directions": 4 }, { - "name": "on-inhand-left", - "directions": 4 - }, - { - "name": "on-inhand-right", + "name": "on-equipped-HELMET-vox", "directions": 4 }, { diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..17790bee54 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/off-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/off-inhand-left.png deleted file mode 100644 index 7d3ce26157..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/off-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/off-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/off-inhand-right.png deleted file mode 100644 index 67f7494249..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/off-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..d25030e13a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-equipped-HELMET.png index 8f01538a7a..486ae09969 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-inhand-left.png deleted file mode 100644 index 4eaae604cd..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-inhand-right.png deleted file mode 100644 index f5f2f5c6f7..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/meta.json index fe9f38cad4..bcd0d726dc 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/f09526480788c2e18fff8c16c4318fd6b4272c10 inhands by peptide", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/f09526480788c2e18fff8c16c4318fd6b4272c10. Vox states by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 @@ -18,11 +18,7 @@ "directions": 4 }, { - "name": "off-inhand-left", - "directions": 4 - }, - { - "name": "off-inhand-right", + "name": "off-equipped-HELMET-vox", "directions": 4 }, { @@ -30,11 +26,7 @@ "directions": 4 }, { - "name": "on-inhand-left", - "directions": 4 - }, - { - "name": "on-inhand-right", + "name": "on-equipped-HELMET-vox", "directions": 4 }, { diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..d300533c20 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/off-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/off-inhand-left.png deleted file mode 100644 index c7b53126d4..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/off-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/off-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/off-inhand-right.png deleted file mode 100644 index b6be1feebb..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/off-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..a9b1843872 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/on-inhand-left.png deleted file mode 100644 index 946a56c89a..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/on-inhand-right.png deleted file mode 100644 index e490de88da..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-light-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-light-vox.png new file mode 100644 index 0000000000..879ce40a74 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-light-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-light.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-light.png index 9f75f28c05..42bc45b005 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-light.png and b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-light.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-unshaded-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-unshaded-vox.png new file mode 100644 index 0000000000..40f2eca45a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-unshaded-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-unshaded.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-unshaded.png index 4ba7fc7b74..9cf59b849f 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-unshaded.png and b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-unshaded.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-vox.png new file mode 100644 index 0000000000..f61a157050 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head.png index f0a064cde4..bdadc8ccee 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head.png and b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/icon-flash.png index bed72ecb13..a2ec510340 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/icon-flash.png and b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/icon.png index e390363d61..fad00b583c 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json index 93d9fece1d..4fe0428f9c 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -23,14 +23,34 @@ "name": "equipped-head", "directions": 4 }, + { + "name": "equipped-head-harpy", + "directions": 4 + }, + { + "name": "equipped-head-vox", + "directions": 4 + }, + { + "name": "equipped-head-vulpkanin", + "directions": 4 + }, { "name": "equipped-head-light", "directions": 4 }, + { + "name": "equipped-head-light-vox", + "directions": 4 + }, { "name": "equipped-head-unshaded", "directions": 4 }, + { + "name": "equipped-head-unshaded-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 @@ -54,14 +74,6 @@ { "name": "inhand-right-light", "directions": 4 - }, - { - "name": "equipped-head-vulpkanin", - "directions": 4 - }, - { - "name": "equipped-head-harpy", - "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/icon-flash.png index 05f8fa3cb3..34f5200e3e 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/icon-flash.png and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/icon.png index cee0d6f029..efb3981114 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/icon.png differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/capspace.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/_White/Clothing/Head/Hardsuits/capspace.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/inhand-left.png diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/capspace.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/_White/Clothing/Head/Hardsuits/capspace.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json index cc8edd3819..7884b00ab0 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/capspace.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, modified by Emisse for SS14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -18,11 +18,11 @@ "directions": 4 }, { - "name": "off-inhand-left", + "name": "off-equipped-HELMET-harpy", "directions": 4 }, { - "name": "off-inhand-right", + "name": "off-equipped-HELMET-vox", "directions": 4 }, { @@ -30,19 +30,19 @@ "directions": 4 }, { - "name": "on-inhand-left", + "name": "on-equipped-HELMET-harpy", "directions": 4 }, { - "name": "on-inhand-right", + "name": "on-equipped-HELMET-vox", "directions": 4 }, { - "name": "off-equipped-HELMET-harpy", + "name": "inhand-left", "directions": 4 }, { - "name": "on-equipped-HELMET-harpy", + "name": "inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..f02e33c658 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET.png index 7079528ae6..a5791940ea 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-inhand-left.png deleted file mode 100644 index 5216ba5dd9..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-inhand-right.png deleted file mode 100644 index 2ffe013c12..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..9a0101f09a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET.png index 6f4caecb98..e81487c03c 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-inhand-left.png deleted file mode 100644 index 6a5d075d80..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-inhand-right.png deleted file mode 100644 index 25796fc014..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/equipped-head-unshaded-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/equipped-head-unshaded-vox.png new file mode 100644 index 0000000000..40d1f9a0c6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/equipped-head-unshaded-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/equipped-head-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/equipped-head-vox.png new file mode 100644 index 0000000000..cc2fa16917 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/equipped-head-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/inhand-left-unshaded.png b/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/inhand-left-unshaded.png deleted file mode 100644 index 60ca0efa13..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/inhand-left-unshaded.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/inhand-left.png deleted file mode 100644 index 43f27a890f..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/inhand-right-unshaded.png b/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/inhand-right-unshaded.png deleted file mode 100644 index 118914c8d3..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/inhand-right-unshaded.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/inhand-right.png deleted file mode 100644 index 602020b276..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/meta.json index 16f509fa99..1df9c2ddbf 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by EmoGarbage404", + "copyright": "Made by EmoGarbage404. Vox states by Flareguy for SS14", "size": { "x": 32, "y": 32 @@ -28,19 +28,11 @@ "directions": 4 }, { - "name": "inhand-left", + "name": "equipped-head-vox", "directions": 4 }, { - "name": "inhand-left-unshaded", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "inhand-right-unshaded", + "name": "equipped-head-unshaded-vox", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/icon-flash.png index aadf947320..c3d5d0d893 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/icon-flash.png and b/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/icon.png index 3c636061bd..1dc2a32aac 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/meta.json index 5a77b01e50..fdf451c5fe 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/clown.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, modified by brainfood1183 (github)", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 @@ -17,9 +17,17 @@ "name": "off-equipped-HELMET", "directions": 4 }, + { + "name": "off-equipped-HELMET-vox", + "directions": 4 + }, { "name": "on-equipped-HELMET", "directions": 4 + }, + { + "name": "on-equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..a974f19a2b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/off-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/off-equipped-HELMET.png index fb51ee1331..8dc14d2960 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/off-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..88ee1fbad6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/on-equipped-HELMET.png index 6db97b2cfc..ccf09a3e26 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/on-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/cybersun.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/cybersun.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..02363a7faa Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/cybersun.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/cybersun.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/cybersun.rsi/icon.png index 5cfffd9203..8070f6af3a 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/cybersun.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/cybersun.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/cybersun.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/cybersun.rsi/meta.json index f6b8613891..8a3db8843e 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/cybersun.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/cybersun.rsi/meta.json @@ -1,30 +1,34 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from Paradise SS13 at commit https://github.com/ParadiseSS13/Paradise/commit/a67c929b7394f78e7787114457ba42f4df6cc3a1", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-HELMET-harpy", - "directions": 4 - } - ] -} + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "equipped-HELMET-harpy", + "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..1a7ed3b866 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/equipped-HELMET.png index fe62e15b50..8df1903288 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/icon.png index 1b712fe674..12355e0a91 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/meta.json index 83e8e1a788..4d6597d7b7 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.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 | vulpkanin versions taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/091d9ec00f186052b87bd65125e896f78faefe38 and edited by Floofers", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -15,15 +15,19 @@ "directions": 4 }, { - "name": "inhand-left", + "name": "equipped-HELMET-vox", "directions": 4 }, { - "name": "inhand-right", + "name": "equipped-HELMET-vulpkanin", "directions": 4 }, { - "name": "equipped-HELMET-vulpkanin", + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-HELMET-unshaded.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-HELMET-unshaded.png similarity index 100% rename from Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-HELMET-unshaded.png rename to Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-HELMET-unshaded.png diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/icon-flash.png index be2593406a..31cab844de 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/icon-flash.png and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/icon.png index 85281322f0..36dc98d0a5 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json index 1ac1729cd2..9570854f0a 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.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 | vulpkanin versions taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -17,6 +17,18 @@ "name": "off-equipped-HELMET", "directions": 4 }, + { + "name": "off-equipped-HELMET-harpy", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "off-inhand-left", "directions": 4 @@ -30,11 +42,11 @@ "directions": 4 }, { - "name": "on-inhand-left", + "name": "on-equipped-HELMET-harpy", "directions": 4 }, { - "name": "on-inhand-right", + "name": "on-equipped-HELMET-vox", "directions": 4 }, { @@ -42,15 +54,15 @@ "directions": 4 }, { - "name": "off-equipped-HELMET-vulpkanin", - "directions": 4 + "name": "equipped-HELMET-unshaded", + "directions": 4 }, - { - "name": "on-equipped-HELMET-harpy", + { + "name": "on-inhand-left", "directions": 4 }, { - "name": "off-equipped-HELMET-harpy", + "name": "on-inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..683d6ce97d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET.png index f394a8ea4c..5ef4fd4d56 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..574b3d985b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET.png index 6baf685a66..3e79a88dc4 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/equipped-HELMET-unshaded.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/equipped-HELMET-unshaded.png similarity index 100% rename from Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/equipped-HELMET-unshaded.png rename to Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/equipped-HELMET-unshaded.png diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/icon-flash.png index d8e40277cc..91bbb14be1 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/icon-flash.png and b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/icon.png index 45763e5696..9f3fd86951 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json index 4dae2c687d..8c77afd5a5 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/engineering.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 | vulpkanin versions taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -17,6 +17,14 @@ "name": "off-equipped-HELMET", "directions": 4 }, + { + "name": "off-equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "off-inhand-left", "directions": 4 @@ -30,19 +38,23 @@ "directions": 4 }, { - "name": "on-inhand-left", + "name": "on-equipped-HELMET-vox", "directions": 4 }, { - "name": "on-inhand-right", + "name": "on-equipped-HELMET-vulpkanin", "directions": 4 }, { - "name": "on-equipped-HELMET-vulpkanin", + "name": "equipped-HELMET-unshaded", "directions": 4 }, { - "name": "off-equipped-HELMET-vulpkanin", + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..900ed95dc0 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET.png index 55b9fa1d3e..140240630c 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..1a40bc3a26 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET.png index 896f1fe375..2eed616df6 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/icon-flash.png index 865873709e..4bbe0b81f0 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/icon-flash.png and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/icon.png index 3b8c23b7b5..94d2848ad0 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json index d431123de2..2523f1d1bb 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Texture edit from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -17,6 +17,10 @@ "name": "off-equipped-HELMET", "directions": 4 }, + { + "name": "off-equipped-HELMET-vox", + "directions": 4 + }, { "name": "off-inhand-left", "directions": 4 @@ -29,6 +33,10 @@ "name": "on-equipped-HELMET", "directions": 4 }, + { + "name": "on-equipped-HELMET-vox", + "directions": 4 + }, { "name": "on-inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..efacfba741 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET.png index 95ed264c5e..3449f02b2e 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-inhand-left.png index b26ae9a31f..7115578827 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-inhand-left.png and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-inhand-right.png index fc0edd4a97..aa2103ca92 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-inhand-right.png and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..09d835e9b9 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET.png index 4377435a3b..d2bc595842 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-inhand-left.png index 3f5034da6c..14e6644a94 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-inhand-left.png and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-inhand-right.png index 45776a03b8..82edcbc9d9 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-inhand-right.png and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/maxim.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/maxim.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..11de602a6e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/maxim.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/maxim.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/maxim.rsi/inhand-left.png deleted file mode 100644 index 81e8a07fdd..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/maxim.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/maxim.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/maxim.rsi/inhand-right.png deleted file mode 100644 index e10648fd9b..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/maxim.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/maxim.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/maxim.rsi/meta.json index 2d5aaae8c7..2a085063a4 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/maxim.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/maxim.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/6b3f58d7de4d4e374282819a7001eaa9bde1676d", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6b3f58d7de4d4e374282819a7001eaa9bde1676d. Vox state by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 @@ -15,11 +15,7 @@ "directions": 4 }, { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", + "name": "equipped-HELMET-vox", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json index d168108fdf..7954c0611e 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/medical.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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d | Vox states by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 @@ -14,28 +14,20 @@ "name": "icon-flash" }, { - "name": "off-equipped-HELMET", - "directions": 4 - }, - { - "name": "off-inhand-left", - "directions": 4 - }, + "name": "on-equipped-HELMET", + "directions": 4 + }, { - "name": "off-inhand-right", - "directions": 4 - }, - { - "name": "on-equipped-HELMET", + "name": "off-equipped-HELMET", "directions": 4 }, { - "name": "on-inhand-left", + "name": "on-equipped-HELMET-vox", "directions": 4 }, { - "name": "on-inhand-right", - "directions": 4 + "name": "off-equipped-HELMET-vox", + "directions": 4 }, { "name": "on-equipped-HELMET-vulpkanin", diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..1952c3152d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-inhand-left.png deleted file mode 100644 index 8fbfbbf6c6..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-inhand-right.png deleted file mode 100644 index 035c6fc061..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..3011afac41 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-inhand-left.png deleted file mode 100644 index 85cbfb321a..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-inhand-right.png deleted file mode 100644 index c876fefb6c..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-HELMET.png index e6810d7452..6028ce3b1a 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/icon.png index 0c0dc62be7..d124fb6d68 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/inhand-left.png index 0a75a797db..1d3cf91b67 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/inhand-right.png index 5c7f8b902b..c9a0ecf18d 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/meta.json index a42fdeb810..9e9e8cfd86 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise station at commit https://github.com/ParadiseSS13/Paradise/commit/e5e584804b4b0b373a6a69d23afb73fd3c094365, redrawn by Ubaser", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..8d0cd093f3 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/meta.json index 2244815b78..48f0cbb615 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github) for ss14", + "copyright": "Made by brainfood1183 (github) for ss14. Vox states by Flareguy for Space Station 14", "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/Hardsuits/pirateeva.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/pirateeva.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..663733cfe8 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/pirateeva.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/pirateeva.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/pirateeva.rsi/meta.json index 2244815b78..5bb20fd0fb 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/pirateeva.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/pirateeva.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github) for ss14", + "copyright": "Made by brainfood1183 (github) for ss14. Vox state by Flareguy for Space Station 14", "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/Hardsuits/rd.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/icon-flash.png index 31e787f822..efe3a347df 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/icon-flash.png and b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/icon.png index a134c90cca..f04ab4ca88 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json index a2c357d43f..c6c6d8b043 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/rd.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 | vulpkanin versions taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -17,6 +17,14 @@ "name": "off-equipped-HELMET", "directions": 4 }, + { + "name": "off-equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "off-inhand-left", "directions": 4 @@ -30,19 +38,19 @@ "directions": 4 }, { - "name": "on-inhand-left", + "name": "on-equipped-HELMET-vox", "directions": 4 }, { - "name": "on-inhand-right", + "name": "on-equipped-HELMET-vulpkanin", "directions": 4 }, { - "name": "on-equipped-HELMET-vulpkanin", + "name": "on-inhand-left", "directions": 4 }, { - "name": "off-equipped-HELMET-vulpkanin", + "name": "on-inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..9f2f5c41df Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET.png index f6e0018723..fb5a4df409 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-inhand-left.png index dc16b147b8..b72196c27f 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-inhand-left.png and b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-inhand-right.png index e289c62a84..0c1a10b800 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-inhand-right.png and b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..b577d32feb Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET.png index 44ead9d1ae..91c6b631c3 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-inhand-left.png index b107272dda..eef3f232c6 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-inhand-left.png and b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-inhand-right.png index 59a3181afb..a95b76ac72 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-inhand-right.png and b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/icon-flash.png index 551d52bf04..38dd03e125 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/icon-flash.png and b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/icon.png index 68733a17ff..7d9e036e64 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/meta.json index d168108fdf..c6c6d8b043 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/salvage.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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -17,6 +17,14 @@ "name": "off-equipped-HELMET", "directions": 4 }, + { + "name": "off-equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "off-inhand-left", "directions": 4 @@ -30,19 +38,19 @@ "directions": 4 }, { - "name": "on-inhand-left", + "name": "on-equipped-HELMET-vox", "directions": 4 }, { - "name": "on-inhand-right", + "name": "on-equipped-HELMET-vulpkanin", "directions": 4 }, { - "name": "on-equipped-HELMET-vulpkanin", + "name": "on-inhand-left", "directions": 4 }, { - "name": "off-equipped-HELMET-vulpkanin", + "name": "on-inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..c3f24c8b34 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET.png index 370d0a28cf..3f096e899e 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-inhand-left.png index b11a533c26..f6c1dc2a0c 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-inhand-left.png and b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-inhand-right.png index b9c9df2350..bf79ef6721 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-inhand-right.png and b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..007852fc10 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET.png index 2e5db5827b..5ffb2bdb63 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-inhand-left.png index 12d13f0e18..5c2ec51b77 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-inhand-left.png and b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-inhand-right.png index 141dc492a4..121276d6c3 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-inhand-right.png and b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/santahelm.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/santahelm.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..025e702667 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/santahelm.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/santahelm.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/santahelm.rsi/inhand-left.png deleted file mode 100644 index c0c5863a3b..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/santahelm.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/santahelm.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/santahelm.rsi/inhand-right.png deleted file mode 100644 index f29877bf5a..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/santahelm.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/santahelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/santahelm.rsi/meta.json index c53de83901..afc9f219ac 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/santahelm.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/santahelm.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Edited by StanTheCarpenter. Originally taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Edited by StanTheCarpenter. Originally taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 @@ -15,11 +15,7 @@ "directions": 4 }, { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", + "name": "equipped-HELMET-vox", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/icon-flash.png index 5d5b1e76d1..ded0a7f43e 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/icon-flash.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/icon.png index 5c5b4b53d6..ea60e98220 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/meta.json index 40c5c72b11..c6c6d8b043 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/security-red.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 | vulpkanin versions taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/091d9ec00f186052b87bd65125e896f78faefe38 and edited by Floofers", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -17,6 +17,14 @@ "name": "off-equipped-HELMET", "directions": 4 }, + { + "name": "off-equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "off-inhand-left", "directions": 4 @@ -30,19 +38,19 @@ "directions": 4 }, { - "name": "on-inhand-left", + "name": "on-equipped-HELMET-vox", "directions": 4 }, { - "name": "on-inhand-right", + "name": "on-equipped-HELMET-vulpkanin", "directions": 4 }, { - "name": "on-equipped-HELMET-vulpkanin", + "name": "on-inhand-left", "directions": 4 }, { - "name": "off-equipped-HELMET-vulpkanin", + "name": "on-inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..6954a4e1a8 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET.png index 3f16f842ce..27537e7ce7 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..b48bb710d9 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET.png index f7ec9d2fad..bc7111e644 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon-flash.png index c711b3b330..46a4fe23c9 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon-flash.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon.png index ce766f6f6e..1d638eb8df 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json index 14121523ca..2a08be689c 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "sprite made by Gtheglorious based on the sprite made by Alekshhh for SS14 | vulpkanin versions made by Floofers", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -17,16 +17,24 @@ "name": "off-equipped-HELMET", "directions": 4 }, + { + "name": "off-equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "on-equipped-HELMET", "directions": 4 }, { - "name": "on-equipped-HELMET-vulpkanin", + "name": "on-equipped-HELMET-vox", "directions": 4 }, { - "name": "off-equipped-HELMET-vulpkanin", + "name": "on-equipped-HELMET-vulpkanin", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..2a3619db8e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET.png index 853f2d1868..5cca860649 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..5b9e2b19ad Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET.png index 26398a6b41..0ddb364119 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon-flash.png index 84f1b0ad31..1dc8c708fd 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon-flash.png and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon.png index 3301c0a0ab..a98172635b 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json index a2e10d4300..c6c6d8b043 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Sprite made by Gtheglorious based on the sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, | vulpkanin versions taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/091d9ec00f186052b87bd65125e896f78faefe38 and edited by Floofers", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -17,6 +17,14 @@ "name": "off-equipped-HELMET", "directions": 4 }, + { + "name": "off-equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "off-inhand-left", "directions": 4 @@ -30,19 +38,19 @@ "directions": 4 }, { - "name": "on-inhand-left", + "name": "on-equipped-HELMET-vox", "directions": 4 }, { - "name": "on-inhand-right", + "name": "on-equipped-HELMET-vulpkanin", "directions": 4 }, { - "name": "on-equipped-HELMET-vulpkanin", + "name": "on-inhand-left", "directions": 4 }, { - "name": "off-equipped-HELMET-vulpkanin", + "name": "on-inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..439b6c6ebc Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET.png index 2c953f28dd..aa41174ec2 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..56bca1c618 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET.png index b2dfdc5d08..4c01c42982 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-light-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-light-vox.png new file mode 100644 index 0000000000..d0124f743b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-light-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-light.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-light.png index e9fb8a3e1f..72cdd79b46 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-light.png and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-light.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-unshaded-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-unshaded-vox.png new file mode 100644 index 0000000000..4486bff562 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-unshaded-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-unshaded.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-unshaded.png index e8aaf06567..54bd9a7443 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-unshaded.png and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-unshaded.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-vox.png new file mode 100644 index 0000000000..80a31d544f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head.png index 4581e3275d..5a7b57a565 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head.png and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/icon-flash.png index 6f33c4c29b..3c3a81b4e3 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/icon-flash.png and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/icon-unshaded.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/icon-unshaded.png index b6e9cb615d..1f2149624c 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/icon-unshaded.png and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/icon-unshaded.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/icon.png index b1692715e8..f885166614 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-left-light.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-left-light.png index 7f1657d9e5..89f23c3f8f 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-left-light.png and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-left-light.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-left-unshaded.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-left-unshaded.png index fe450b8df1..513c673fab 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-left-unshaded.png and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-left-unshaded.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-left.png index 81cecd01c2..49f5998633 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-right-light.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-right-light.png index 7749494c56..cd634ab3e4 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-right-light.png and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-right-light.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-right-unshaded.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-right-unshaded.png index be08f2c257..0f871ad358 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-right-unshaded.png and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-right-unshaded.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-right.png index 2bbec0f04c..c9874269be 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/light-overlay.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/light-overlay.png index 477e8008ba..8a728db9fb 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/light-overlay.png and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/light-overlay.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json index 35a6a87bfd..6194ee67c5 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json @@ -1,8 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Original by Emisse, modified by EmoGarbage404 | vulpkanin version made by Floofers", - + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -24,14 +23,30 @@ "name": "equipped-head", "directions": 4 }, + { + "name": "equipped-head-vox", + "directions": 4 + }, + { + "name": "equipped-head-vulpkanin", + "directions": 4 + }, { "name": "equipped-head-light", "directions": 4 }, + { + "name": "equipped-head-light-vox", + "directions": 4 + }, { "name": "equipped-head-unshaded", "directions": 4 }, + { + "name": "equipped-head-unshaded-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 @@ -55,10 +70,6 @@ { "name": "inhand-right-light", "directions": 4 - }, - { - "name": "equipped-head-vulpkanin", - "directions": 4 } ] } \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/icon-flash.png index a2da102550..699a26c7bc 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/icon-flash.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/icon.png index 6a4a0e32a4..b97674fdfb 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json index e9de1ae57b..4384a4a277 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json @@ -21,6 +21,10 @@ "name": "off-equipped-HELMET", "directions": 4 }, + { + "name": "off-equipped-HELMET-vox", + "directions": 4 + }, { "name": "off-inhand-left", "directions": 4 @@ -33,6 +37,10 @@ "name": "on-equipped-HELMET", "directions": 4 }, + { + "name": "on-equipped-HELMET-vox", + "directions": 4 + }, { "name": "on-inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..eb2027c5fa Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET.png index e6aafcfcf0..32759d3244 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-inhand-left.png index 1b108753b3..ad32ce8f28 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-inhand-left.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-inhand-right.png index dc0500af77..a0cd6c22b7 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-inhand-right.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..8804afa3d8 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET.png index 4fd853dd13..f7f4fc1570 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-inhand-left.png index c1350c8242..e40883d319 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-inhand-left.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-inhand-right.png index db67f97b6f..2b7a0306d4 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-inhand-right.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/icon-flash.png index 8d5c3f58a5..2257c4a077 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/icon-flash.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/icon.png index 08b6d1d87c..972df70f3b 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json index 038aabe605..070477f31d 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json @@ -1,8 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd", - + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -18,6 +17,10 @@ "name": "off-equipped-HELMET", "directions": 4 }, + { + "name": "off-equipped-HELMET-vox", + "directions": 4 + }, { "name": "off-inhand-left", "directions": 4 @@ -30,6 +33,10 @@ "name": "on-equipped-HELMET", "directions": 4 }, + { + "name": "on-equipped-HELMET-vox", + "directions": 4 + }, { "name": "on-inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..5276e3f681 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET.png index 42926ed988..7b2870ea45 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-inhand-left.png index 79a96cd711..ed24b26b91 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-inhand-left.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-inhand-right.png index 0c7b0caddf..e92b71a40c 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-inhand-right.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..65069f91c7 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET.png index 7be67fee63..a14b45c2c6 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-inhand-left.png index 505808fc9d..97d938f79d 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-inhand-left.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-inhand-right.png index 862f6294fb..92a54785a5 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-inhand-right.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/icon-flash.png index bbd6cdcfaf..8f40926b67 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/icon-flash.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/icon.png index 638b2358ff..a7298ff039 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json index 038aabe605..070477f31d 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json @@ -1,8 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd", - + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -18,6 +17,10 @@ "name": "off-equipped-HELMET", "directions": 4 }, + { + "name": "off-equipped-HELMET-vox", + "directions": 4 + }, { "name": "off-inhand-left", "directions": 4 @@ -30,6 +33,10 @@ "name": "on-equipped-HELMET", "directions": 4 }, + { + "name": "on-equipped-HELMET-vox", + "directions": 4 + }, { "name": "on-inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..4f4b2f0f77 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET.png index 6a1d34f452..68ca980fb8 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-inhand-left.png index 22a8dd14b1..9cf29dbeee 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-inhand-left.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-inhand-right.png index 71572c0ffd..c01c8aba0d 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-inhand-right.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..bf7243ed32 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET.png index 6d330d446d..fbbd061014 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-inhand-left.png index 5a40993d72..d603248b3c 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-inhand-left.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-inhand-right.png index 27a27d1e8e..ac118a95a4 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-inhand-right.png and b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/meta.json index b69addc476..9adc3b7cef 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Based on tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by EmoGarbage404 (github)", + "copyright": "Based on tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by EmoGarbage404 (github). Vox states by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 @@ -17,24 +17,16 @@ "name": "off-equipped-HELMET", "directions": 4 }, - { - "name": "off-inhand-left", - "directions": 4 - }, - { - "name": "off-inhand-right", - "directions": 4 - }, { "name": "on-equipped-HELMET", "directions": 4 }, { - "name": "on-inhand-left", + "name": "off-equipped-HELMET-vox", "directions": 4 }, { - "name": "on-inhand-right", + "name": "on-equipped-HELMET-vox", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..4d5f2cf4b7 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/off-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/off-inhand-left.png deleted file mode 100644 index 97f21fd350..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/off-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/off-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/off-inhand-right.png deleted file mode 100644 index 0e950a6674..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/off-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..8c072609c9 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/on-inhand-left.png deleted file mode 100644 index 0e174c04c3..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/on-inhand-right.png deleted file mode 100644 index b049400348..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/meta.json index d168108fdf..b72a96092e 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/wizard.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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -14,28 +14,20 @@ "name": "icon-flash" }, { - "name": "off-equipped-HELMET", - "directions": 4 - }, - { - "name": "off-inhand-left", - "directions": 4 + "name": "on-equipped-HELMET", + "directions": 4 }, { - "name": "off-inhand-right", - "directions": 4 - }, - { - "name": "on-equipped-HELMET", + "name": "off-equipped-HELMET", "directions": 4 }, { - "name": "on-inhand-left", + "name": "on-equipped-HELMET-vox", "directions": 4 }, { - "name": "on-inhand-right", - "directions": 4 + "name": "off-equipped-HELMET-vox", + "directions": 4 }, { "name": "on-equipped-HELMET-vulpkanin", diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..647d0e76c1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-inhand-left.png deleted file mode 100644 index 90b7c2574a..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-inhand-right.png deleted file mode 100644 index de647331f9..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..a0345048e8 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-inhand-left.png deleted file mode 100644 index fc11467e8f..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-inhand-right.png deleted file mode 100644 index 131989b592..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hats/captain.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/captain.rsi/equipped-HELMET.png index 19048d7d1a..51ad84708a 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/captain.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hats/captain.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/captain.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/captain.rsi/icon.png index c025248263..2e86e9d9b8 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/captain.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hats/captain.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/captain.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/captain.rsi/meta.json index ae83b3a1d4..0013f52d2f 100644 --- a/Resources/Textures/Clothing/Head/Hats/captain.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/captain.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/pull/69842/commits/d8138946b0ed06fced522729ac8eaa0596864329 edited by Skarletto (github), edited by Emisse for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Head/Hats/centcom.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/centcom.rsi/equipped-HELMET.png index 3abd49cf75..b5938fc8b4 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/centcom.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hats/centcom.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/centcom.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/centcom.rsi/icon.png index 2a1b9d77c7..c42eefbbf8 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/centcom.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hats/centcom.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/centcom.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/centcom.rsi/meta.json index a470e00944..5f7facd7ac 100644 --- a/Resources/Textures/Clothing/Head/Hats/centcom.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/centcom.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", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Head/Hats/gladiator.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hats/gladiator.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..b432655c5a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/gladiator.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/gladiator.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/gladiator.rsi/meta.json index bbb0aac664..057d0b0ab2 100644 --- a/Resources/Textures/Clothing/Head/Hats/gladiator.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/gladiator.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. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -20,7 +20,11 @@ }, { "name": "inhand-right", - "direction": 4 + "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hats/jester.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/jester.rsi/equipped-HELMET.png index 1859517569..e44dfaea7e 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/jester.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hats/jester.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/jester.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/jester.rsi/icon.png index c43111ef86..51ff8d5b0e 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/jester.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hats/jester.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/jester.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/jester.rsi/inhand-left.png index b6765fd4ce..5526e00dfa 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/jester.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Hats/jester.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/jester.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/jester.rsi/inhand-right.png index 2c0e2fb070..50df3746a3 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/jester.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Hats/jester.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/jester.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/jester.rsi/meta.json index c6b127c7aa..932914fde8 100644 --- a/Resources/Textures/Clothing/Head/Hats/jester.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/jester.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/3a72dd925f7d6aeec620fe83bc4f88a3d7e5f693, inhand by github:Morb0, edited by Alekshhh", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Head/Hats/jester2.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/jester2.rsi/equipped-HELMET.png index 4fcb8edea5..a17a232960 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/jester2.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hats/jester2.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/jester2.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/jester2.rsi/icon.png index af8326d4f1..83ff454a69 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/jester2.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hats/jester2.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/jester2.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/jester2.rsi/inhand-left.png index 807cffbcb2..497bf5c60c 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/jester2.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Hats/jester2.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/jester2.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/jester2.rsi/inhand-right.png index 5d0543f1c9..e7b5115386 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/jester2.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Hats/jester2.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/jester2.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/jester2.rsi/meta.json index 951f247c92..932914fde8 100644 --- a/Resources/Textures/Clothing/Head/Hats/jester2.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/jester2.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/3a72dd925f7d6aeec620fe83bc4f88a3d7e5f693, inhand by github:Morb0", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Head/Hats/paper.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hats/paper.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..5f5c3376d7 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/paper.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/paper.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/paper.rsi/meta.json index a470e00944..057d0b0ab2 100644 --- a/Resources/Textures/Clothing/Head/Hats/paper.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/paper.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. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..a51c268041 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/meta.json index ade65863af..e099085bde 100644 --- a/Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/surgcap_blue.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. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..81601c6c2b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/meta.json index a470e00944..057d0b0ab2 100644 --- a/Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/surgcap_green.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. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..24ea1365cd Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/meta.json index a470e00944..057d0b0ab2 100644 --- a/Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/surgcap_purple.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. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Helmets/atmos_firehelmet.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/atmos_firehelmet.rsi/meta.json index 26d3341e24..f2d8747c03 100644 --- a/Resources/Textures/Clothing/Head/Helmets/atmos_firehelmet.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/atmos_firehelmet.rsi/meta.json @@ -1,41 +1,49 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/blob/master/icons/mob/clothing/head.dmi", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-flash" - }, - { - "name": "off-equipped-HELMET", - "directions": 4 - }, - { - "name": "off-inhand-left", - "directions": 4 - }, - { - "name": "off-inhand-right", - "directions": 4 - }, - { - "name": "on-equipped-HELMET", - "directions": 4 - }, - { - "name": "on-inhand-left", - "directions": 4 - }, - { - "name": "on-inhand-right", - "directions": 4 - } - ] -} +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/blob/master/icons/mob/clothing/head.dmi. Vox states taken from paradise at https://github.com/ParadiseSS13/Paradise/blob/765461f14aa4dd4f1edc33242c667843134678b5/icons/mob/clothing/species/vox/head.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "off-equipped-HELMET", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "off-inhand-left", + "directions": 4 + }, + { + "name": "off-inhand-right", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/Helmets/atmos_firehelmet.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/atmos_firehelmet.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..ea6e7edce8 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/atmos_firehelmet.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/atmos_firehelmet.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/atmos_firehelmet.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..301ff00e34 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/atmos_firehelmet.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/bombsuit.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/bombsuit.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..58e8aa9e70 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/bombsuit.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/bombsuit.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/bombsuit.rsi/meta.json index e0ee93d642..e55d1eb469 100644 --- a/Resources/Textures/Clothing/Head/Helmets/bombsuit.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/bombsuit.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/a75dee2e6d236612dbd403dd5f8687ca930c01f1", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/a75dee2e6d236612dbd403dd5f8687ca930c01f1. Vox state by Flareguy for SS14", "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/Helmets/eva.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..50d4ec39d5 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json index 3c406ff57c..6ce39ac00a 100644 --- a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d modified by Floofers", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -15,15 +15,19 @@ "directions": 4 }, { - "name": "inhand-left", + "name": "equipped-HELMET-vox", "directions": 4 }, { - "name": "inhand-right", + "name": "equipped-HELMET-vulpkanin", "directions": 4 }, { - "name": "equipped-HELMET-vulpkanin", + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..b5f224b98a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json index 3c406ff57c..6ce39ac00a 100644 --- a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d modified by Floofers", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -15,15 +15,19 @@ "directions": 4 }, { - "name": "inhand-left", + "name": "equipped-HELMET-vox", "directions": 4 }, { - "name": "inhand-right", + "name": "equipped-HELMET-vulpkanin", "directions": 4 }, { - "name": "equipped-HELMET-vulpkanin", + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..62ff233af1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json index 3c406ff57c..6ce39ac00a 100644 --- a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d modified by Floofers", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -15,15 +15,19 @@ "directions": 4 }, { - "name": "inhand-left", + "name": "equipped-HELMET-vox", "directions": 4 }, { - "name": "inhand-right", + "name": "equipped-HELMET-vulpkanin", "directions": 4 }, { - "name": "equipped-HELMET-vulpkanin", + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Helmets/firehelmet.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/firehelmet.rsi/meta.json index 9530d0f7aa..014284471a 100644 --- a/Resources/Textures/Clothing/Head/Helmets/firehelmet.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/firehelmet.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise station and modified by Peptide90 https://github.com/ParadiseSS13/Paradise/commit/46bb8d448f52278a8f027b3f5bdf061e39d06140", + "copyright": "Taken from paradise station and modified by Peptide90 https://github.com/ParadiseSS13/Paradise/commit/46bb8d448f52278a8f027b3f5bdf061e39d06140. Vox states by Flareguy for SS14", "size": { "x": 32, "y": 32 @@ -17,6 +17,10 @@ "name": "off-equipped-HELMET", "directions": 4 }, + { + "name": "off-equipped-HELMET-vox", + "directions": 4 + }, { "name": "off-inhand-left", "directions": 4 @@ -29,6 +33,10 @@ "name": "on-equipped-HELMET", "directions": 4 }, + { + "name": "on-equipped-HELMET-vox", + "directions": 4 + }, { "name": "on-inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Helmets/firehelmet.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/firehelmet.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 0000000000..ad7bbad447 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/firehelmet.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/firehelmet.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/firehelmet.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000..2ebb820f60 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/firehelmet.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..522a2eb923 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/meta.json index 4427c7fb51..69b03ad731 100644 --- a/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/ihvoid.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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state by Flareguy for Space Station 14 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "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/Helmets/light_riot.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..952b32f3a1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/meta.json index 5048ec6bb0..abfed0635a 100644 --- a/Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/light_riot.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from TGstation github https://github.com/tgstation/tgstation/commit/fed2ddeb54d0fb8bb97cb0a899a088b7d7423bbb", + "copyright": "Taken from TGstation github https://github.com/tgstation/tgstation/commit/fed2ddeb54d0fb8bb97cb0a899a088b7d7423bbb. Vox state by Flareguy for SS14", "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/Helmets/security.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/security.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..703d927ecf Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/security.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/security.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/security.rsi/equipped-HELMET.png index 4fd9f44ff2..8dc79d4be6 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/security.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Helmets/security.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/security.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/security.rsi/icon.png index 325084b69f..b5e41dfe7b 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/security.rsi/icon.png and b/Resources/Textures/Clothing/Head/Helmets/security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/security.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/security.rsi/inhand-left.png index f8f7501afc..af8936df8d 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/security.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Helmets/security.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/security.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/security.rsi/inhand-right.png index a8bbe3dfac..7d352ec1d6 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/security.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Helmets/security.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/security.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/security.rsi/meta.json index db2bbfafd4..f3b507abb6 100644 --- a/Resources/Textures/Clothing/Head/Helmets/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/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", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, { "name": "light-equipped-HELMET", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..59f1e3263b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json index 61c8ce163c..dae510390f 100644 --- a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise https://github.com/ParadiseSS13/Paradise/tree/master/icons (unknown commit) | vulpkanin version made by Floofers", + "copyright": "Taken from paradise https://github.com/ParadiseSS13/Paradise/tree/master/icons (unknown commit) | vulpkanin version made by Floofers. Vox state by Flareguy for SS14", "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/Helmets/swat.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/swat.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..1ed974c206 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/swat.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/swat.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/swat.rsi/meta.json index 8836c0b646..f505b4e75e 100644 --- a/Resources/Textures/Clothing/Head/Helmets/swat.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/swat.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/fb2d71495bfe81446159ef528534193d09dd8d34, inhand sprites by Flareguy", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34, inhand sprites & 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/Helmets/swat_syndicate.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/swat_syndicate.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..e228a8a33a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/swat_syndicate.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/swat_syndicate.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/swat_syndicate.rsi/meta.json index 8bedbfb78e..a0bf954585 100644 --- a/Resources/Textures/Clothing/Head/Helmets/swat_syndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/swat_syndicate.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/fb2d71495bfe81446159ef528534193d09dd8d34, inhand sprites by Flareguy, icon edited by Flareguy", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34, inhand sprites by Flareguy, icon edited by Flareguy. Vox state taken from from Paradise at https://github.com/ParadiseSS13/Paradise/blob/b1658390731745adf5cc9fb039bb0f17ad3c11a7/icons/mob/clothing/species/vox/helmet.dmi ", "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/Helmets/templar.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/templar.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..3572a5de9f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/templar.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/templar.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/templar.rsi/meta.json index 7bd2e3e22a..5c8b454ea6 100644 --- a/Resources/Textures/Clothing/Head/Helmets/templar.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/templar.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. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "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/Helmets/wizardhelm.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..0cabbe106c Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/meta.json index a470e00944..8e639d26bc 100644 --- a/Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/wizardhelm.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. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 and modified to remove duplicate states", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..35cfa8ddc0 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET.png index 6452d864d9..9605894bfd 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/icon.png index be430564ad..a5531a4c07 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/inhand-left.png index afe56631a3..22bc4bb8a8 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/inhand-right.png index 9102bdea1d..a59bb1c28c 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/meta.json index 4427c7fb51..6ce39ac00a 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -15,15 +15,19 @@ "directions": 4 }, { - "name": "inhand-left", + "name": "equipped-HELMET-vox", "directions": 4 }, { - "name": "inhand-right", + "name": "equipped-HELMET-vulpkanin", "directions": 4 }, { - "name": "equipped-HELMET-vulpkanin", + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..90ad846f9b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET.png index 7e20448959..3917fddcce 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/icon.png index 149b6aa0cd..8f9f67bfc2 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/inhand-left.png index 2fd5441f3d..f8a134c204 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/inhand-right.png index 326846bc15..6b7515d083 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/meta.json index 4427c7fb51..6ce39ac00a 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -15,15 +15,19 @@ "directions": 4 }, { - "name": "inhand-left", + "name": "equipped-HELMET-vox", "directions": 4 }, { - "name": "inhand-right", + "name": "equipped-HELMET-vulpkanin", "directions": 4 }, { - "name": "equipped-HELMET-vulpkanin", + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..35cfa8ddc0 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET.png index 901c63fbcd..9605894bfd 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/icon.png index e04ac2e780..a5531a4c07 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/inhand-left.png index 38fc09939a..22bc4bb8a8 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/inhand-right.png index 00232804ed..a59bb1c28c 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/meta.json index 4427c7fb51..6ce39ac00a 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/general.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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -15,15 +15,19 @@ "directions": 4 }, { - "name": "inhand-left", + "name": "equipped-HELMET-vox", "directions": 4 }, { - "name": "inhand-right", + "name": "equipped-HELMET-vulpkanin", "directions": 4 }, { - "name": "equipped-HELMET-vulpkanin", + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..2a8f1b0cdb Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET.png index fa5e1929fe..d9299375dc 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/icon.png index 330da91a80..e1cb49d3bb 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/inhand-left.png index 42fdefb038..5e6e052dd4 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/inhand-right.png index 9f26186eec..b71f1b2620 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/meta.json index 4427c7fb51..6ce39ac00a 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -15,15 +15,19 @@ "directions": 4 }, { - "name": "inhand-left", + "name": "equipped-HELMET-vox", "directions": 4 }, { - "name": "inhand-right", + "name": "equipped-HELMET-vulpkanin", "directions": 4 }, { - "name": "equipped-HELMET-vulpkanin", + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..4b90b700a8 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET.png index a6515022f5..dd0654a1d6 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/icon.png index 1fb0a57b2b..d326ea41e4 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/inhand-left.png index cc69c3d0e4..6e23c2f043 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/inhand-right.png index a4f39b9f1a..724799d3db 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/meta.json index 4427c7fb51..6ce39ac00a 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -15,15 +15,19 @@ "directions": 4 }, { - "name": "inhand-left", + "name": "equipped-HELMET-vox", "directions": 4 }, { - "name": "inhand-right", + "name": "equipped-HELMET-vulpkanin", "directions": 4 }, { - "name": "equipped-HELMET-vulpkanin", + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..402d6bf76a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET.png index d48c6efc30..ea6cd337e7 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/icon.png index b381513333..cbf20a83fb 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/inhand-left.png index b32137727b..e3ac688063 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/inhand-right.png index 1c14b44f98..742decb6c8 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json index e830cae282..6ce39ac00a 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/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/4f6190e2895e09116663ef282d3ce1d8b35c032e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -15,15 +15,19 @@ "directions": 4 }, { - "name": "inhand-left", + "name": "equipped-HELMET-vox", "directions": 4 }, { - "name": "inhand-right", + "name": "equipped-HELMET-vulpkanin", "directions": 4 }, { - "name": "equipped-HELMET-vulpkanin", + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..d4a1f0848e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET.png index d7c68c9b66..ead249371c 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/icon.png index 5642e2f5a2..0ce5c67153 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/inhand-left.png index 5f5845750c..ab6d8e1d1c 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/inhand-right.png index a86b5f2e17..49535df051 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/meta.json index 4427c7fb51..6ce39ac00a 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -15,15 +15,19 @@ "directions": 4 }, { - "name": "inhand-left", + "name": "equipped-HELMET-vox", "directions": 4 }, { - "name": "inhand-right", + "name": "equipped-HELMET-vulpkanin", "directions": 4 }, { - "name": "equipped-HELMET-vulpkanin", + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Head/Hoods/rad.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/equipped-HELMET.png index 8287d47952..38f3e2c455 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/rad.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/rad.rsi/icon.png b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/icon.png index 9eaf4e5708..f62f3f8493 100644 Binary files a/Resources/Textures/Clothing/Head/Hoods/rad.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/icon.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 702e66d8a3..b87398e7c5 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/discordia-space/CEV-Eris/commit/760f0be7af33a31f5a08a3291864e91539d0ebb7 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Head/Misc/chickenhead.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Misc/chickenhead.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..65a8cb83c1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Misc/chickenhead.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Misc/chickenhead.rsi/meta.json b/Resources/Textures/Clothing/Head/Misc/chickenhead.rsi/meta.json index a470e00944..8e639d26bc 100644 --- a/Resources/Textures/Clothing/Head/Misc/chickenhead.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Misc/chickenhead.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. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 and modified to remove duplicate states", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..5b2c255049 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/meta.json b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/meta.json index 39eb54f44c..22039e8e30 100644 --- a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.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, icon by лазік#7305 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", + "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, icon by лазік#7305. equipped-HELMET-vox state modified by Flareguy from vox welding helmet state | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -21,6 +21,14 @@ "name": "up-equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "up-equipped-HELMET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/up-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/up-equipped-HELMET-vox.png new file mode 100644 index 0000000000..14129a80cb Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/up-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..6401496252 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/meta.json b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/meta.json index 39eb54f44c..d0931b9be1 100644 --- a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.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, icon by лазік#7305 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", + "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 and up-equipped-HELMET modified by Flareguy, icon by лазік#7305. equipped-HELMET-vox state modified by Flareguy from vox welding helmet state | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -21,6 +21,14 @@ "name": "up-equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "up-equipped-HELMET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET-vox.png new file mode 100644 index 0000000000..d011e47c2d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET.png index b60219becc..e7ef24dcee 100644 Binary files a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..0b9342b236 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/meta.json b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/meta.json index 39eb54f44c..825fa48b80 100644 --- a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Welding/paintedwelding.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, icon by лазік#7305 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", + "copyright": "Taken from CEV-Eris at https://github.com/discordia-space/CEV-Eris/blob/2a0d963d5bf68bd8ddf6fba6f60479bec172b51d/icons/inventory/head/mob.dmi, icon by лазік#7305. equipped-HELMET-vox state modified by Flareguy from 'welding' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -21,6 +21,14 @@ "name": "up-equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "up-equipped-HELMET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/up-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/up-equipped-HELMET-vox.png new file mode 100644 index 0000000000..6ecdfda3ea Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/up-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/welding.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Welding/welding.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..6b19f42a82 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/welding.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/welding.rsi/meta.json b/Resources/Textures/Clothing/Head/Welding/welding.rsi/meta.json index 3a84e3148e..569555b869 100644 --- a/Resources/Textures/Clothing/Head/Welding/welding.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Welding/welding.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 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -21,6 +21,14 @@ "name": "up-equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "up-equipped-HELMET-vox", + "directions": 4 + }, { "name": "equipped-HELMET-hamster", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Welding/welding.rsi/up-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Welding/welding.rsi/up-equipped-HELMET-vox.png new file mode 100644 index 0000000000..b13423cd8b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/welding.rsi/up-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/bee.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/bee.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..05af835e9d Binary files /dev/null and b/Resources/Textures/Clothing/Mask/bee.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/bee.rsi/meta.json b/Resources/Textures/Clothing/Mask/bee.rsi/meta.json index cc214ea433..628b5d1ffc 100644 --- a/Resources/Textures/Clothing/Mask/bee.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/bee.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/dannno/-tg-station/blob/a51c5a85d327f562004cef2f36c081ad0d95fd9a/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github)", + "copyright": "Taken from tgstation at commit https://github.com/dannno/-tg-station/blob/a51c5a85d327f562004cef2f36c081ad0d95fd9a/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", "size": { "x": 32, "y": 32 @@ -17,6 +17,10 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/breath.rsi/meta.json b/Resources/Textures/Clothing/Mask/breath.rsi/meta.json index bed9ae64b0..f0ec0118d8 100644 --- a/Resources/Textures/Clothing/Mask/breath.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/breath.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. Reptilian edit by Nairod(Github) equipped-MASK-secdog modified from equipped-MASK-dog by TJohnson. | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github) equipped-MASK-secdog modified from equipped-MASK-dog by TJohnson. | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d | equipped-MASK-vox & up-equipped-MASK-vox state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", "size": { "x": 32, "y": 32 @@ -18,6 +18,14 @@ "name": "up-equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, + { + "name": "up-equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 @@ -54,10 +62,6 @@ "name": "equipped-MASK-possum", "directions": 4 }, - { - "name": "equipped-MASK-vox", - "directions": 4 - }, { "name": "equipped-MASK-pig", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/breath.rsi/up-equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/breath.rsi/up-equipped-MASK-vox.png new file mode 100644 index 0000000000..770ad70cf5 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/breath.rsi/up-equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-reptilian.png b/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-reptilian.png index 498dec0adc..f12f011a4f 100644 Binary files a/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-reptilian.png and b/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-reptilian.png differ diff --git a/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..0a7c6fc327 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK.png b/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK.png index d2b0f392a0..347931e435 100644 Binary files a/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK.png and b/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK.png differ diff --git a/Resources/Textures/Clothing/Mask/clown.rsi/icon.png b/Resources/Textures/Clothing/Mask/clown.rsi/icon.png index ddc11ca3a5..15ad0ed103 100644 Binary files a/Resources/Textures/Clothing/Mask/clown.rsi/icon.png and b/Resources/Textures/Clothing/Mask/clown.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Mask/clown.rsi/inhand-left.png b/Resources/Textures/Clothing/Mask/clown.rsi/inhand-left.png index 72f12804fa..d375302bf0 100644 Binary files a/Resources/Textures/Clothing/Mask/clown.rsi/inhand-left.png and b/Resources/Textures/Clothing/Mask/clown.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Mask/clown.rsi/inhand-right.png b/Resources/Textures/Clothing/Mask/clown.rsi/inhand-right.png index 8767fadb03..a37a73abd4 100644 Binary files a/Resources/Textures/Clothing/Mask/clown.rsi/inhand-right.png and b/Resources/Textures/Clothing/Mask/clown.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Mask/clown.rsi/meta.json b/Resources/Textures/Clothing/Mask/clown.rsi/meta.json index b3709bcd83..8adc4184c7 100644 --- a/Resources/Textures/Clothing/Mask/clown.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/clown.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. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 @@ -19,11 +19,11 @@ "directions": 4 }, { - "name": "inhand-left", + "name": "equipped-MASK-reptilian", "directions": 4 }, { - "name": "inhand-right", + "name": "equipped-MASK-vox", "directions": 4 }, { @@ -31,7 +31,11 @@ "directions": 4 }, { - "name": "equipped-MASK-reptilian", + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Mask/clown_banana.rsi/equipped-MASK-reptilian.png b/Resources/Textures/Clothing/Mask/clown_banana.rsi/equipped-MASK-reptilian.png index c8061d2d63..32c6c92800 100644 Binary files a/Resources/Textures/Clothing/Mask/clown_banana.rsi/equipped-MASK-reptilian.png and b/Resources/Textures/Clothing/Mask/clown_banana.rsi/equipped-MASK-reptilian.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_banana.rsi/equipped-MASK.png b/Resources/Textures/Clothing/Mask/clown_banana.rsi/equipped-MASK.png index cd12ea0214..2b85f049c7 100644 Binary files a/Resources/Textures/Clothing/Mask/clown_banana.rsi/equipped-MASK.png and b/Resources/Textures/Clothing/Mask/clown_banana.rsi/equipped-MASK.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_banana.rsi/icon.png b/Resources/Textures/Clothing/Mask/clown_banana.rsi/icon.png index 923beb0ceb..64bfdd95d7 100644 Binary files a/Resources/Textures/Clothing/Mask/clown_banana.rsi/icon.png and b/Resources/Textures/Clothing/Mask/clown_banana.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_banana.rsi/inhand-left.png b/Resources/Textures/Clothing/Mask/clown_banana.rsi/inhand-left.png index 2136e54995..72357eecc8 100644 Binary files a/Resources/Textures/Clothing/Mask/clown_banana.rsi/inhand-left.png and b/Resources/Textures/Clothing/Mask/clown_banana.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_banana.rsi/inhand-right.png b/Resources/Textures/Clothing/Mask/clown_banana.rsi/inhand-right.png index 2ef4b94da3..668ab5fbe3 100644 Binary files a/Resources/Textures/Clothing/Mask/clown_banana.rsi/inhand-right.png and b/Resources/Textures/Clothing/Mask/clown_banana.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_banana.rsi/meta.json b/Resources/Textures/Clothing/Mask/clown_banana.rsi/meta.json index df86a60683..dff35ded7a 100644 --- a/Resources/Textures/Clothing/Mask/clown_banana.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/clown_banana.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by KREKS (ss14 discord) for ss14. Reptilian edit by Nairod(Github)", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Mask/cluwne.rsi/equipped-MASK-reptilian.png b/Resources/Textures/Clothing/Mask/cluwne.rsi/equipped-MASK-reptilian.png index 621bdeb789..89996e4bc2 100644 Binary files a/Resources/Textures/Clothing/Mask/cluwne.rsi/equipped-MASK-reptilian.png and b/Resources/Textures/Clothing/Mask/cluwne.rsi/equipped-MASK-reptilian.png differ diff --git a/Resources/Textures/Clothing/Mask/cluwne.rsi/equipped-MASK.png b/Resources/Textures/Clothing/Mask/cluwne.rsi/equipped-MASK.png index 0681cdabba..8d9fbbe589 100644 Binary files a/Resources/Textures/Clothing/Mask/cluwne.rsi/equipped-MASK.png and b/Resources/Textures/Clothing/Mask/cluwne.rsi/equipped-MASK.png differ diff --git a/Resources/Textures/Clothing/Mask/cluwne.rsi/icon.png b/Resources/Textures/Clothing/Mask/cluwne.rsi/icon.png index 1cc7520ee2..d833bc78f8 100644 Binary files a/Resources/Textures/Clothing/Mask/cluwne.rsi/icon.png and b/Resources/Textures/Clothing/Mask/cluwne.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Mask/cluwne.rsi/meta.json b/Resources/Textures/Clothing/Mask/cluwne.rsi/meta.json index 6ab2624c16..44c8a697aa 100644 --- a/Resources/Textures/Clothing/Mask/cluwne.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/cluwne.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github) for ss14. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 @@ -15,11 +15,11 @@ "directions": 4 }, { - "name": "equipped-MASK-vulpkanin", + "name": "equipped-MASK-reptilian", "directions": 4 }, { - "name": "equipped-MASK-reptilian", + "name": "equipped-MASK-vulpkanin", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Mask/gas.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/gas.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..7170d7ebdf Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gas.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/gas.rsi/meta.json b/Resources/Textures/Clothing/Mask/gas.rsi/meta.json index 07a0c908b1..7d52a23d9c 100644 --- a/Resources/Textures/Clothing/Mask/gas.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gas.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. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers | equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and modified by Flareguy", "size": { "x": 32, "y": 32 @@ -33,6 +33,10 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gasatmos.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/gasatmos.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..8975b1eb04 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gasatmos.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json b/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json index 63476f222b..6e2e524547 100644 --- a/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gasatmos.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. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers | equipped-MASK-vox state modified by Flareguy from 'gas-alt' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..bc0f5e9011 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json b/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json index 4b2d043352..332a8fed81 100644 --- a/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gascaptain.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, edited by Emisse for ss14. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, edited by Emisse for ss14. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers | equipped-MASK-vox state taken from 'gas-alt' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e, and modified by Flareguy", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gasexplorer.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/gasexplorer.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..f504228f7d Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gasexplorer.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/gasexplorer.rsi/meta.json b/Resources/Textures/Clothing/Mask/gasexplorer.rsi/meta.json index 600054012e..42e2775eca 100644 --- a/Resources/Textures/Clothing/Mask/gasexplorer.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gasexplorer.rsi/meta.json @@ -1,38 +1,42 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github) | vulpkanin version edited by Floofers", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github) | vulpkanin version edited by Floofers. Vox state by Flareguy for SS14", + "size": { + "x": 32, + "y": 32 }, - { - "name": "equipped-MASK", - "directions": 4 - }, - { - "name": "up-equipped-MASK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-MASK-vulpkanin", - "directions": 4 - }, - { - "name": "equipped-MASK-reptilian", - "directions": 4 - } - ] -} + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-MASK", + "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, + { + "name": "up-equipped-MASK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-MASK-reptilian", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Mask/gassecurity.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/gassecurity.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..ff33f30944 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gassecurity.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json b/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json index 9ed76c4839..a92fcef8bf 100644 --- a/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gassecurity.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. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d | equipped-MASK-vox & up-equipped-MASK-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", "size": { "x": 32, "y": 32 @@ -14,24 +14,32 @@ "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-reptilian", + "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "up-equipped-MASK", "directions": 4 }, { - "name": "inhand-left", + "name": "up-equipped-MASK-vox", "directions": 4 }, { - "name": "inhand-right", + "name": "inhand-left", "directions": 4 }, { - "name": "equipped-MASK-vulpkanin", + "name": "inhand-right", "directions": 4 }, { - "name": "equipped-MASK-reptilian", + "name": "equipped-MASK-vulpkanin", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Mask/gassecurity.rsi/up-equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/gassecurity.rsi/up-equipped-MASK-vox.png new file mode 100644 index 0000000000..e701323f55 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gassecurity.rsi/up-equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/gassyndicate.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/gassyndicate.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..59a80479f7 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gassyndicate.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/gassyndicate.rsi/meta.json b/Resources/Textures/Clothing/Mask/gassyndicate.rsi/meta.json index 1e01e88dc4..b2871a2797 100644 --- a/Resources/Textures/Clothing/Mask/gassyndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gassyndicate.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. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d | equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and slightly modified to fix an error", "size": { "x": 32, "y": 32 @@ -47,6 +47,16 @@ [ 0.5, 0.5, 0.5 ], [ 0.5, 0.5, 0.5 ] ] + }, + { + "name": "equipped-MASK-vox", + "directions": 4, + "delays": [ + [ 0.5, 0.5, 0.5 ], + [ 0.5, 0.5, 0.5 ], + [ 0.5, 0.5, 0.5 ], + [ 0.5, 0.5, 0.5 ] + ] } ] } diff --git a/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..9bd2b35d77 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/italian_moustache.rsi/meta.json b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/meta.json index 9621b18fe9..af0873d23a 100644 --- a/Resources/Textures/Clothing/Mask/italian_moustache.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/italian_moustache.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/6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d | equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..c3fa7f5917 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/medical.rsi/meta.json b/Resources/Textures/Clothing/Mask/medical.rsi/meta.json index 59e292cbd4..ba8e8da405 100644 --- a/Resources/Textures/Clothing/Mask/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/medical.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. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d | equipped-MASK-vox & up-equipped-MASK-vox states taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", "size": { "x": 32, "y": 32 @@ -75,6 +75,14 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, + { + "name": "up-equipped-MASK-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/medical.rsi/up-equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/medical.rsi/up-equipped-MASK-vox.png new file mode 100644 index 0000000000..770ad70cf5 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/medical.rsi/up-equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/mime.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/mime.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..cab47297f0 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/mime.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/mime.rsi/meta.json b/Resources/Textures/Clothing/Mask/mime.rsi/meta.json index 34248cb9b9..e1a387cdd3 100644 --- a/Resources/Textures/Clothing/Mask/mime.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/mime.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. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers | equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/muzzle.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/muzzle.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..529c87878e Binary files /dev/null and b/Resources/Textures/Clothing/Mask/muzzle.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json b/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json index 33176d73e7..d5fd7a68ee 100644 --- a/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/muzzle.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. Reptilian edit by Nairod(Github) | vulpkanin version taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/091d9ec00f186052b87bd65125e896f78faefe38", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github) | vulpkanin version taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/091d9ec00f186052b87bd65125e896f78faefe38 | equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..924742fa94 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json b/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json index da51268a11..26fff924c1 100644 --- a/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise at commit https://github.com/ParadiseSS13/Paradise/commit/33f7c1ef477fa67db5dda48078b469ab59aa7997 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", + "copyright": "Taken from paradise at commit https://github.com/ParadiseSS13/Paradise/commit/33f7c1ef477fa67db5dda48078b469ab59aa7997 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers | equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..67d3c25cac Binary files /dev/null and b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/meta.json b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/meta.json index 0f2358a55f..4536363585 100644 --- a/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/meta.json @@ -1,30 +1,34 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from TGstation github https://github.com/tgstation/tgstation/commit/e89db4dd4f42377b0adafb06806a763314a89034 , edited by Alekshhh | vulpkanin version taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/091d9ec00f186052b87bd65125e896f78faefe38", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-MASK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-MASK-vulpkanin", - "directions": 4 - } - ] -} +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TGstation github https://github.com/tgstation/tgstation/commit/e89db4dd4f42377b0adafb06806a763314a89034 , edited by Alekshhh | vulpkanin version taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/091d9ec00f186052b87bd65125e896f78faefe38 | equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-MASK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK-reptilian.png b/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK-reptilian.png index da90495b39..643aca9fd8 100644 Binary files a/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK-reptilian.png and b/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK-reptilian.png differ diff --git a/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..b1cb32a157 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK.png b/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK.png index 93622d570c..5439c98c21 100644 Binary files a/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK.png and b/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK.png differ diff --git a/Resources/Textures/Clothing/Mask/sexyclown.rsi/icon.png b/Resources/Textures/Clothing/Mask/sexyclown.rsi/icon.png index ce1f7b172b..b9b17c47eb 100644 Binary files a/Resources/Textures/Clothing/Mask/sexyclown.rsi/icon.png and b/Resources/Textures/Clothing/Mask/sexyclown.rsi/icon.png differ diff --git a/Resources/Textures/_White/Clothing/Mask/sexyclown.rsi/inhand-left.png b/Resources/Textures/Clothing/Mask/sexyclown.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/_White/Clothing/Mask/sexyclown.rsi/inhand-left.png rename to Resources/Textures/Clothing/Mask/sexyclown.rsi/inhand-left.png diff --git a/Resources/Textures/_White/Clothing/Mask/sexyclown.rsi/inhand-right.png b/Resources/Textures/Clothing/Mask/sexyclown.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/_White/Clothing/Mask/sexyclown.rsi/inhand-right.png rename to Resources/Textures/Clothing/Mask/sexyclown.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Mask/sexyclown.rsi/meta.json b/Resources/Textures/Clothing/Mask/sexyclown.rsi/meta.json index da5fdbe7cd..3768c3cd02 100644 --- a/Resources/Textures/Clothing/Mask/sexyclown.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/sexyclown.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/blob/ed466a4c67828b44ddb9d9550366be5c2d745955/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 @@ -14,12 +14,24 @@ "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-reptilian", + "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "equipped-MASK-vulpkanin", "directions": 4 }, { - "name": "equipped-MASK-reptilian", + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Mask/sexymime.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/sexymime.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..4ceaf59677 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sexymime.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/sexymime.rsi/meta.json b/Resources/Textures/Clothing/Mask/sexymime.rsi/meta.json index 8c0842d68a..747190632b 100644 --- a/Resources/Textures/Clothing/Mask/sexymime.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/sexymime.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/blob/ed466a4c67828b44ddb9d9550366be5c2d745955/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/blob/ed466a4c67828b44ddb9d9550366be5c2d745955/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers | equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/sterile.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/sterile.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..18c64e1048 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sterile.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json b/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json index f61bba1a32..4115a8de19 100644 --- a/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/sterile.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. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d | equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", "size": { "x": 32, "y": 32 @@ -14,10 +14,22 @@ "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-reptilian", + "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "up-equipped-MASK", "directions": 4 }, + { + "name": "up-equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 @@ -33,10 +45,6 @@ { "name": "up-equipped-MASK-vulpkanin", "directions": 4 - }, - { - "name": "equipped-MASK-reptilian", - "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/sterile.rsi/up-equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/sterile.rsi/up-equipped-MASK-vox.png new file mode 100644 index 0000000000..770ad70cf5 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sterile.rsi/up-equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/swat.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/swat.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..d654e3493c Binary files /dev/null and b/Resources/Textures/Clothing/Mask/swat.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/swat.rsi/meta.json b/Resources/Textures/Clothing/Mask/swat.rsi/meta.json index fb3b9e8f4a..9b8c7ad080 100644 --- a/Resources/Textures/Clothing/Mask/swat.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/swat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/RemieRichards/-tg-station/blob/f8c05e21694cd3cb703e40edc5cfc375017944b1/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "copyright": "Taken from tgstation at commit https://github.com/RemieRichards/-tg-station/blob/f8c05e21694cd3cb703e40edc5cfc375017944b1/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d | equipped-MASK-vox state taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", "size": { "x": 32, "y": 32 @@ -15,19 +15,23 @@ "directions": 4 }, { - "name": "inhand-left", + "name": "equipped-MASK-reptilian", "directions": 4 }, { - "name": "inhand-right", + "name": "equipped-MASK-vox", "directions": 4 }, { - "name": "equipped-MASK-vulpkanin", + "name": "inhand-left", "directions": 4 }, { - "name": "equipped-MASK-reptilian", + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Mask/welding-gas.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/welding-gas.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..e6028f3a4c Binary files /dev/null and b/Resources/Textures/Clothing/Mask/welding-gas.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/welding-gas.rsi/equipped-MASK.png b/Resources/Textures/Clothing/Mask/welding-gas.rsi/equipped-MASK.png new file mode 100644 index 0000000000..5d0a7ea70d Binary files /dev/null and b/Resources/Textures/Clothing/Mask/welding-gas.rsi/equipped-MASK.png differ diff --git a/Resources/Textures/Clothing/Mask/welding-gas.rsi/icon-up.png b/Resources/Textures/Clothing/Mask/welding-gas.rsi/icon-up.png new file mode 100644 index 0000000000..352e536ca9 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/welding-gas.rsi/icon-up.png differ diff --git a/Resources/Textures/Clothing/Mask/welding-gas.rsi/icon.png b/Resources/Textures/Clothing/Mask/welding-gas.rsi/icon.png new file mode 100644 index 0000000000..cdb8d4b7c7 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/welding-gas.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Mask/welding-gas.rsi/inhand-left.png b/Resources/Textures/Clothing/Mask/welding-gas.rsi/inhand-left.png new file mode 100644 index 0000000000..c5111a66a9 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/welding-gas.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Mask/welding-gas.rsi/inhand-right.png b/Resources/Textures/Clothing/Mask/welding-gas.rsi/inhand-right.png new file mode 100644 index 0000000000..5841f0b846 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/welding-gas.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Mask/welding-gas.rsi/meta.json b/Resources/Textures/Clothing/Mask/welding-gas.rsi/meta.json new file mode 100644 index 0000000000..8e9b857325 --- /dev/null +++ b/Resources/Textures/Clothing/Mask/welding-gas.rsi/meta.json @@ -0,0 +1,49 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6f5ca45e3ac06b30fb1957042214a888d8c01722. Inhands, worn sprites, and vox sprites created by EmoGarbage404 (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-up" + }, + { + "name": "equipped-MASK", + "directions": 4 + }, + { + "name": "up-equipped-MASK", + "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, + { + "name": "up-equipped-MASK-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "up-inhand-left", + "directions": 4 + }, + { + "name": "up-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Mask/welding-gas.rsi/up-equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/welding-gas.rsi/up-equipped-MASK-vox.png new file mode 100644 index 0000000000..90871d7d00 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/welding-gas.rsi/up-equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/welding-gas.rsi/up-equipped-MASK.png b/Resources/Textures/Clothing/Mask/welding-gas.rsi/up-equipped-MASK.png new file mode 100644 index 0000000000..449c8624c9 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/welding-gas.rsi/up-equipped-MASK.png differ diff --git a/Resources/Textures/Clothing/Mask/welding-gas.rsi/up-inhand-left.png b/Resources/Textures/Clothing/Mask/welding-gas.rsi/up-inhand-left.png new file mode 100644 index 0000000000..2868ab8317 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/welding-gas.rsi/up-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Mask/welding-gas.rsi/up-inhand-right.png b/Resources/Textures/Clothing/Mask/welding-gas.rsi/up-inhand-right.png new file mode 100644 index 0000000000..1362d99011 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/welding-gas.rsi/up-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/equipped-NECK.png index b8b19a7492..c46b72cdc7 100644 Binary files a/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/equipped-NECK.png and b/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/icon.png b/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/icon.png index 8cc45c4de2..8e1bffd9ca 100644 Binary files a/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/icon.png and b/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/inhand-left.png b/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/inhand-left.png index b95b11e351..6c2a7c2ef9 100644 Binary files a/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/inhand-left.png and b/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/inhand-right.png b/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/inhand-right.png index 7ef44eddff..9767a6693b 100644 Binary files a/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/inhand-right.png and b/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/meta.json index 58f9b41222..9de4a9a6c8 100644 --- a/Resources/Textures/Clothing/Neck/Cloaks/cap.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/Cloaks/cap.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/5a73e8f825ff279e82949b9329783a9e3070e2da, sprites in hand by PuroSlavKing (Github) and RudeyCoolLeet#3875, colors edited by Skarletto (github)", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/equipped-NECK.png index 13b1c2efce..0c04dac35e 100644 Binary files a/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/equipped-NECK.png and b/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/icon.png b/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/icon.png index 49d27a0e96..11b7a67618 100644 Binary files a/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/icon.png and b/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/inhand-left.png b/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/inhand-left.png index eda75fb97b..72fd67c4ca 100644 Binary files a/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/inhand-left.png and b/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/inhand-right.png b/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/inhand-right.png index 3b366bb979..081177e3aa 100644 Binary files a/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/inhand-right.png and b/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/meta.json index bed9789445..3558b43cbb 100644 --- a/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/Cloaks/capcloakformal.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/pull/62603 which was taken from bee station. Bee station does not have a history on the cloaks on their github, sprites in hand by PuroSlavKing (Github) and RudeyCoolLeet#3875 , colors edited by Skarletto (github), edited by Emisse for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/equipped-NECK.png index e275a78fe9..09a49bd80a 100644 Binary files a/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/equipped-NECK.png and b/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/icon.png b/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/icon.png index 84e06eb4e8..50b9e5a927 100644 Binary files a/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/icon.png and b/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/inhand-left.png b/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/inhand-left.png index c0d90dee6e..1a880b087f 100644 Binary files a/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/inhand-left.png and b/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/inhand-right.png b/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/inhand-right.png index 4e4d7a2a7c..315b26bf93 100644 Binary files a/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/inhand-right.png and b/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/meta.json index fde00d6116..9de4a9a6c8 100644 --- a/Resources/Textures/Clothing/Neck/Cloaks/ce.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/Cloaks/ce.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/5a73e8f825ff279e82949b9329783a9e3070e2da, sprites in hand by PuroSlavKing (Github) and RudeyCoolLeet#3875", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/equipped-NECK.png index fe1077b134..29ed862b26 100644 Binary files a/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/equipped-NECK.png and b/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/icon.png b/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/icon.png index 35bb3ef606..2b5c2b5552 100644 Binary files a/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/icon.png and b/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/meta.json index fde00d6116..9de4a9a6c8 100644 --- a/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/Cloaks/hos.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/5a73e8f825ff279e82949b9329783a9e3070e2da, sprites in hand by PuroSlavKing (Github) and RudeyCoolLeet#3875", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Neck/Cloaks/rd.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Cloaks/rd.rsi/equipped-NECK.png index dbcb9c6403..0f3f854c70 100644 Binary files a/Resources/Textures/Clothing/Neck/Cloaks/rd.rsi/equipped-NECK.png and b/Resources/Textures/Clothing/Neck/Cloaks/rd.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/rd.rsi/icon.png b/Resources/Textures/Clothing/Neck/Cloaks/rd.rsi/icon.png index 3b292659ca..64d6970128 100644 Binary files a/Resources/Textures/Clothing/Neck/Cloaks/rd.rsi/icon.png and b/Resources/Textures/Clothing/Neck/Cloaks/rd.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/rd.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/rd.rsi/meta.json index fde00d6116..9de4a9a6c8 100644 --- a/Resources/Textures/Clothing/Neck/Cloaks/rd.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/Cloaks/rd.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/5a73e8f825ff279e82949b9329783a9e3070e2da, sprites in hand by PuroSlavKing (Github) and RudeyCoolLeet#3875", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Neck/Misc/whistles.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/whistles.rsi/meta.json deleted file mode 100644 index 31cda14261..0000000000 --- a/Resources/Textures/Clothing/Neck/Misc/whistles.rsi/meta.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Drawn by Firewatchin on Discord.", - "size": { - "x": 32, - "y": 32 - }, - - "states": [ - { - "name": "equipped-NECK", - "directions": 4 - }, - { - "name": "icon" - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/mantles/capmantle.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/mantles/capmantle.rsi/equipped-NECK.png index ee9a05fcdb..0b343eae4b 100644 Binary files a/Resources/Textures/Clothing/Neck/mantles/capmantle.rsi/equipped-NECK.png and b/Resources/Textures/Clothing/Neck/mantles/capmantle.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/mantles/capmantle.rsi/icon.png b/Resources/Textures/Clothing/Neck/mantles/capmantle.rsi/icon.png index 5264b993e4..24b5fe10dd 100644 Binary files a/Resources/Textures/Clothing/Neck/mantles/capmantle.rsi/icon.png and b/Resources/Textures/Clothing/Neck/mantles/capmantle.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/mantles/capmantle.rsi/meta.json b/Resources/Textures/Clothing/Neck/mantles/capmantle.rsi/meta.json index 0a02908d9c..07a224c922 100644 --- a/Resources/Textures/Clothing/Neck/mantles/capmantle.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/mantles/capmantle.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "made by Emisse (github) for ss14, edited by Skarletto (github)", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Neck/mantles/cemantle.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/mantles/cemantle.rsi/equipped-NECK.png index 9ec0e02042..4c700f91d4 100644 Binary files a/Resources/Textures/Clothing/Neck/mantles/cemantle.rsi/equipped-NECK.png and b/Resources/Textures/Clothing/Neck/mantles/cemantle.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/mantles/cemantle.rsi/icon.png b/Resources/Textures/Clothing/Neck/mantles/cemantle.rsi/icon.png index ac1fd8367e..26421ad5a8 100644 Binary files a/Resources/Textures/Clothing/Neck/mantles/cemantle.rsi/icon.png and b/Resources/Textures/Clothing/Neck/mantles/cemantle.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/mantles/cemantle.rsi/meta.json b/Resources/Textures/Clothing/Neck/mantles/cemantle.rsi/meta.json index 887d1c4c20..07a224c922 100644 --- a/Resources/Textures/Clothing/Neck/mantles/cemantle.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/mantles/cemantle.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "made by emisse for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Neck/mantles/cmomantle.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/mantles/cmomantle.rsi/equipped-NECK.png index be5f9402fa..d9694e7e0f 100644 Binary files a/Resources/Textures/Clothing/Neck/mantles/cmomantle.rsi/equipped-NECK.png and b/Resources/Textures/Clothing/Neck/mantles/cmomantle.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/mantles/cmomantle.rsi/icon.png b/Resources/Textures/Clothing/Neck/mantles/cmomantle.rsi/icon.png index e456036c67..1396487743 100644 Binary files a/Resources/Textures/Clothing/Neck/mantles/cmomantle.rsi/icon.png and b/Resources/Textures/Clothing/Neck/mantles/cmomantle.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/mantles/cmomantle.rsi/meta.json b/Resources/Textures/Clothing/Neck/mantles/cmomantle.rsi/meta.json index 887d1c4c20..07a224c922 100644 --- a/Resources/Textures/Clothing/Neck/mantles/cmomantle.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/mantles/cmomantle.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "made by emisse for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Neck/mantles/hopmantle.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/mantles/hopmantle.rsi/equipped-NECK.png index e5898d7f1d..5eaf6241cf 100644 Binary files a/Resources/Textures/Clothing/Neck/mantles/hopmantle.rsi/equipped-NECK.png and b/Resources/Textures/Clothing/Neck/mantles/hopmantle.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/mantles/hopmantle.rsi/icon.png b/Resources/Textures/Clothing/Neck/mantles/hopmantle.rsi/icon.png index 5ed01af829..b756df1bc1 100644 Binary files a/Resources/Textures/Clothing/Neck/mantles/hopmantle.rsi/icon.png and b/Resources/Textures/Clothing/Neck/mantles/hopmantle.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/mantles/hopmantle.rsi/meta.json b/Resources/Textures/Clothing/Neck/mantles/hopmantle.rsi/meta.json index 887d1c4c20..07a224c922 100644 --- a/Resources/Textures/Clothing/Neck/mantles/hopmantle.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/mantles/hopmantle.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "made by emisse for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Neck/mantles/hosmantle.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/mantles/hosmantle.rsi/equipped-NECK.png index c0af293f67..69fe2ff2df 100644 Binary files a/Resources/Textures/Clothing/Neck/mantles/hosmantle.rsi/equipped-NECK.png and b/Resources/Textures/Clothing/Neck/mantles/hosmantle.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/mantles/hosmantle.rsi/icon.png b/Resources/Textures/Clothing/Neck/mantles/hosmantle.rsi/icon.png index 8b044ac7be..5c49e55958 100644 Binary files a/Resources/Textures/Clothing/Neck/mantles/hosmantle.rsi/icon.png and b/Resources/Textures/Clothing/Neck/mantles/hosmantle.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/mantles/hosmantle.rsi/meta.json b/Resources/Textures/Clothing/Neck/mantles/hosmantle.rsi/meta.json index 887d1c4c20..07a224c922 100644 --- a/Resources/Textures/Clothing/Neck/mantles/hosmantle.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/mantles/hosmantle.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "made by emisse for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Neck/mantles/rdmantle.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/mantles/rdmantle.rsi/equipped-NECK.png index 68c5c0bb23..c2258997cb 100644 Binary files a/Resources/Textures/Clothing/Neck/mantles/rdmantle.rsi/equipped-NECK.png and b/Resources/Textures/Clothing/Neck/mantles/rdmantle.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/mantles/rdmantle.rsi/icon.png b/Resources/Textures/Clothing/Neck/mantles/rdmantle.rsi/icon.png index dae1c51849..d78c6b43ba 100644 Binary files a/Resources/Textures/Clothing/Neck/mantles/rdmantle.rsi/icon.png and b/Resources/Textures/Clothing/Neck/mantles/rdmantle.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/mantles/rdmantle.rsi/meta.json b/Resources/Textures/Clothing/Neck/mantles/rdmantle.rsi/meta.json index 887d1c4c20..07a224c922 100644 --- a/Resources/Textures/Clothing/Neck/mantles/rdmantle.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/mantles/rdmantle.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "made by emisse for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..9d92b21329 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/meta.json index c7a0afcae3..5f95573206 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.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/dbc2435fa562f4ef130a7112d2a4cc9c80099894", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dbc2435fa562f4ef130a7112d2a4cc9c80099894. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "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/OuterClothing/Armor/bulletproof.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..cffb51e5e5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/meta.json index 9ae7fc3f93..8b7a929fcd 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/bulletproof.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/ParadiseSS13/Paradise", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise. Vox states by Flareguy for Space Station 14", "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/_White/Clothing/OuterClothing/Armor/captain_carapace.rsi/equipped-OUTERCLOTHING-body-slim.png b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/equipped-OUTERCLOTHING-body-slim.png similarity index 100% rename from Resources/Textures/_White/Clothing/OuterClothing/Armor/captain_carapace.rsi/equipped-OUTERCLOTHING-body-slim.png rename to Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/equipped-OUTERCLOTHING-body-slim.png diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..e0bfdfbc38 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/equipped-OUTERCLOTHING.png index abbb7a2555..3a8ae0290e 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/icon.png index 1caea2582b..e933cc0fbc 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/meta.json index b979f8bfb8..db4b5ca121 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.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/pull/69842/commits/d8138946b0ed06fced522729ac8eaa0596864329 edited by Skarletto (github), edited by Emisse for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -14,6 +14,14 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-body-slim", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..599e73c76f Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/meta.json index e482264df5..5c326232e4 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.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. equipped-OUTERCLOTHING-vox state taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/fce54deb01d465957691ba2907218d4af4830db2/icons/mob/clothing/species/vox/suit.dmi and north sprite modified", "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/OuterClothing/Armor/heavygreen.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..f37eba3359 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/meta.json index e482264df5..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.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. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "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/OuterClothing/Armor/heavyred.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..164f5e4592 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/meta.json index e482264df5..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.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. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "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/OuterClothing/Armor/riot.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..f0e99ee3c3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/meta.json index afdd4120b5..26631d0281 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/riot.rsi/meta.json @@ -1,26 +1,30 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/ParadiseSS13/Paradise", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise. Vox state by Flareguy for Space Station 14", + "size": { + "x": 32, + "y": 32 }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/security.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Armor/security.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..1d9b1d1459 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/security.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/security.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/security.rsi/meta.json index afdd4120b5..00bef7108a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/security.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/ParadiseSS13/Paradise", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise. Vox state by Flareguy for Space Station 14", "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/OuterClothing/Armor/security_slim.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Armor/security_slim.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..ea3c78dfbe Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/security_slim.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/security_slim.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/security_slim.rsi/meta.json index afdd4120b5..26631d0281 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/security_slim.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/security_slim.rsi/meta.json @@ -1,26 +1,30 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/ParadiseSS13/Paradise", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/ParadiseSS13/Paradise. Vox state by Flareguy for Space Station 14", + "size": { + "x": 32, + "y": 32 }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..e62fa89ab5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/equipped-OUTERCLOTHING.png index c2d3934cbb..adfdc99fbe 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/icon.png index 3e9c24edaf..cd1bcd2e14 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/inhand-left.png index e5e277dbcc..0362284288 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/inhand-right.png index 0e0e6230ac..65eb36b9b4 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/meta.json index e482264df5..29bae36917 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.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", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "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/OuterClothing/Bio/general.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..0a224c92b9 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/equipped-OUTERCLOTHING.png index 5ffa578618..0867d9794a 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/icon.png index cfdd191825..c439c7ab23 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/inhand-left.png index 6e98089bd4..51abed1325 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/inhand-right.png index 470def2a41..0aaa364525 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/meta.json index e482264df5..29bae36917 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/general.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", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "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/OuterClothing/Bio/janitor.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..82b0ea9f36 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/equipped-OUTERCLOTHING.png index acb3d355f2..fdc219ce20 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/icon.png index 71a603615b..1b9e8be421 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/inhand-left.png index 6920ec8f74..6011316bd2 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/inhand-right.png index e3d2c93b6c..f5743b6a55 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/meta.json index e482264df5..29bae36917 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.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", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "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/OuterClothing/Bio/scientist.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..044d87e2f6 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/equipped-OUTERCLOTHING.png index a7d80f02b4..c9481ce8c3 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/icon.png index 4b16a3255c..8e9483e783 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/inhand-left.png index dced6667b0..b702994435 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/inhand-right.png index b69b0bbd20..33d4b9a599 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/meta.json index e482264df5..29bae36917 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.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", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "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/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..e426556e7d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING.png index a779b3812d..67a4f30ea5 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/icon.png index eea15cfb0a..5522eb9de4 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-left.png index 36bd1257f2..d1164c39ab 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-right.png index 89de6e8fc6..22bf56e0b7 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json index e482264df5..29bae36917 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/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "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/OuterClothing/Bio/virology.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..f6b5c43d2b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/equipped-OUTERCLOTHING.png index e1e81a8409..6fae8df90d 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/icon.png index 52bc430c98..ad0a604d21 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/inhand-left.png index c91403c123..b6815a0e79 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/inhand-right.png index b2a41d23cc..644533b009 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/meta.json index e482264df5..29bae36917 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/virology.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", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "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/OuterClothing/Coats/bomber.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/equipped-OUTERCLOTHING.png index df85eb0944..a084bd3d4c 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/icon.png index 381fdb8955..56d81ce3e0 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/meta.json index 442bfb2920..b90db15ea4 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/bomber.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/bomber.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", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/clownpriest.rsi/equipped-OUTERCLOTHING-body-slim.png b/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/equipped-OUTERCLOTHING-body-slim.png similarity index 100% rename from Resources/Textures/_White/Clothing/OuterClothing/Coats/clownpriest.rsi/equipped-OUTERCLOTHING-body-slim.png rename to Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/equipped-OUTERCLOTHING-body-slim.png diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/equipped-OUTERCLOTHING.png index f795429f50..9ef84f929b 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/icon.png index 1e7c5f706a..da14db2967 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/inhand-left.png index d3c0f91adf..fb6baa18e9 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/inhand-right.png index a5d456e744..a04d8c4ff8 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/meta.json index bacde82361..5991bba2cb 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/clownpriest.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from Yogstation at https://github.com/yogstation13/Yogstation/commit/18ab2203bc47b7590f2c72b5f7969eafa723f033", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-body-slim", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/equipped-OUTERCLOTHING.png index 24481b1f74..83ce2d2787 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/icon.png index ed3481d3d2..289e1496c2 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/inhand-left.png index 9f79738900..8274ada74a 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/inhand-right.png index b1315700d1..5e5f6f9816 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/meta.json index 18a65e16d7..1e59d3fef6 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/detective.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC0-1.0", - "copyright": "Created by EmoGarbage404", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/expensive_coat.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/expensive_coat.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..1fd6c3828d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/expensive_coat.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/expensive_coat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/expensive_coat.rsi/meta.json index 20e876460d..cc68d97d37 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/expensive_coat.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/expensive_coat.rsi/meta.json @@ -11,6 +11,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "icon" } diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..31e6f31708 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/equipped-OUTERCLOTHING.png index 987679cecb..c45743726c 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/icon.png index 20ac8b6d18..3b4410b9a5 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-left.png index aa0228cf31..52b9733ec1 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-right.png index 4d6c934790..83e924a710 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/meta.json index 55e082d620..29bae36917 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.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 , edited by Alekshhh", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "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/OuterClothing/Coats/jensencoat.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..59bf1f287b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/meta.json index e482264df5..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.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. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "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/OuterClothing/Coats/labcoat.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..fa32996aa8 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/equipped-OUTERCLOTHING.png index 1bb314f557..87658bf58d 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/icon-open.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/icon-open.png index 9d10f67232..aa1ed9795b 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/icon-open.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/icon-open.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/icon.png index fc861707d8..d8d511a106 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/inhand-left.png index 330da9f29b..3c79e71b80 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/inhand-right.png index d866dd53b5..4d242231b3 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/meta.json index 442bfb2920..f98abcffd7 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.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", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -17,10 +17,18 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "open-equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "open-equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..ce7c029026 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-equipped-OUTERCLOTHING.png index b87f61827a..ab0dc88ef3 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-left.png index 489f958b9e..6bcdca16c0 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-right.png index 54bd14c8aa..82c918a782 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..6d96d0a037 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/equipped-OUTERCLOTHING.png index 3504723f9c..564a71592d 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/icon-open.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/icon-open.png index dc68b688a5..4e3cc76502 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/icon-open.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/icon-open.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/icon.png index fea218c0cb..5f98915603 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/inhand-left.png index 647ae1247b..5874b7c2e1 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/inhand-right.png index 85e7cdc33e..c20728e8b2 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/meta.json index 442bfb2920..f98abcffd7 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.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", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -17,10 +17,18 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "open-equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "open-equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..f83538ee60 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-equipped-OUTERCLOTHING.png index c5ea5cd13d..6c0cb71f9d 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-inhand-left.png index 57d3618504..6ae8234f0c 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-inhand-right.png index 5f3b6bdd5d..46ab3843f9 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..58b84263ac Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/equipped-OUTERCLOTHING.png index 75baa15b11..ef6945707c 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/icon-open.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/icon-open.png index e0f37ab48f..98f94fc9a4 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/icon-open.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/icon-open.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/icon.png index 63861eb5bd..178aae3e79 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/meta.json index 02abb07806..f98abcffd7 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by Flareguy for Space Station 14, original base sprite from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -17,10 +17,18 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "open-equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "open-equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..547839061b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-equipped-OUTERCLOTHING.png index 695bc4535c..cc7fa6b486 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..fa9a53d373 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/meta.json index 442bfb2920..2311851853 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/meta.json @@ -21,6 +21,14 @@ "name": "open-equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/open-equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/open-equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..9cba3e8ef3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_gene.rsi/open-equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..e432bb2d01 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/meta.json index 6cb239d8c8..f98abcffd7 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Modified from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -17,10 +17,18 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "open-equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "open-equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..2363b4118d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-inhand-left.png index 2dde993a3d..0fd1c0d840 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-inhand-right.png index 285c57c33f..b2596585fa 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..1679773c73 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/meta.json index e482264df5..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/pirate.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. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "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/OuterClothing/Coats/rndcoat.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/rndcoat.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..89369f8794 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/rndcoat.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/rndcoat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/rndcoat.rsi/meta.json index 442bfb2920..2311851853 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/rndcoat.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/rndcoat.rsi/meta.json @@ -21,6 +21,14 @@ "name": "open-equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/rndcoat.rsi/open-equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/rndcoat.rsi/open-equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..973451e5f5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/rndcoat.rsi/open-equipped-OUTERCLOTHING-vox.png differ 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 new file mode 100644 index 0000000000..a56db4fd53 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING.png index b62a0318da..8760a37e84 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/icon.png index b226550a5d..76eb0450fb 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/meta.json index e482264df5..29bae36917 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/warden.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", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "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/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..be85f19ea6 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi/meta.json index 4fbd43a08b..b7b0719efa 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox state by Flareguy for Space Station 14", "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/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..e5f648a31f Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi/meta.json index 4fbd43a08b..6de2d485b8 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox sprite by Flareguy for Space Station 14", "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/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..cb2c630801 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi/meta.json index 4fbd43a08b..6de2d485b8 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox sprite by Flareguy for Space Station 14", "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/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..284954aabc Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi/meta.json index 4fbd43a08b..daa64b2f5c 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox sprite made 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/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..29130c57f0 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi/meta.json index 4fbd43a08b..6de2d485b8 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox sprite by Flareguy for Space Station 14", "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/_White/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING-unshaded.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING-unshaded.png similarity index 100% rename from Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING-unshaded.png rename to Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING-unshaded.png diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..b896fbef73 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING.png index a6f1904a2c..84ef86445d 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/icon.png index 87c3f8595a..8be6636410 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json index ef5e62cca4..5658fcde4e 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json @@ -1,30 +1,38 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-harpy", - "directions": 4 - } - ] + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-unshaded", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..644c67846b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING.png index 7ac2fbde5e..eeb9ddc4e0 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/icon.png index 77e0426ef4..6ddc87d92b 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-left.png index 0545ffa683..210b5a031d 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-right.png index a0d0dd7125..15e8194012 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json index 7f50fdcf08..364b3c0e27 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json @@ -1,30 +1,34 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by Emisse for SS14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-harpy", - "directions": 4 - } - ] + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cburn.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cburn.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..52c1cea7cf Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cburn.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cburn.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cburn.rsi/meta.json index 2de954bbf9..2edd20e1dc 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cburn.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cburn.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by EmoGarbage404, harpy by VMSolidus", + "copyright": "Made by EmoGarbage404, harpy by VMSolidus. Vox state made by Flareguy for SS14", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-harpy", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..bf6028dfdb Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/equipped-OUTERCLOTHING.png index 2873bc483d..0e26e157b0 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/icon.png index a72a1da8ea..c734f2445e 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/inhand-left.png index 176a262d85..4ba7d957ee 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/inhand-right.png index edd08b6f92..6e55d47115 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/meta.json index 090140fa8c..a89c02d404 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.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, modified by brainfood1183 (github), harpy by VMSolidus", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-harpy", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..631815d06b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/equipped-OUTERCLOTHING.png index 17925efbf4..003645bb30 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/icon.png index 1c3177b459..79faa4c531 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/inhand-left.png index ab9ffc9a9a..0c126c8819 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/inhand-right.png index 560fb552f9..7a40cb38d8 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/meta.json index 1cfa2a9cfe..a361537679 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/meta.json @@ -1,30 +1,34 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Sprite made by Gtheglorious based on the sprite made by emisse for ss14, harpy variant by VMSolidus", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-harpy", - "directions": 4 - } - ] -} +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..cbf92dffde Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/equipped-OUTERCLOTHING.png index 6513ccf273..c76ab01fe2 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/icon.png index 6bcee818b2..29c6b2876f 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/inhand-left.png index 32dbb4bcbd..ed8c8a628e 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/inhand-right.png index 690d4cef20..b0f9bef933 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/meta.json index f6910b12aa..364b3c0e27 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.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, edited by Emisse for SS14, harpy edit by VMSolidus", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-harpy", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING-unshaded.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING-unshaded.png similarity index 100% rename from Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING-unshaded.png rename to Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING-unshaded.png diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..a6066c595b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING.png index a7fa5600f5..508fe626ca 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/icon.png index 9312de4a0c..c94a6aa352 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/meta.json index ef5e62cca4..5658fcde4e 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/meta.json @@ -1,30 +1,38 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-harpy", - "directions": 4 - } - ] + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-unshaded", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING-unshaded.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING-unshaded.png similarity index 100% rename from Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING-unshaded.png rename to Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING-unshaded.png diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..7e4e050f9d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING.png index d85158a7f5..74e738732b 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/icon.png index f014aca7cb..09f3b36e9a 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json index cbf3391af7..5658fcde4e 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json @@ -1,30 +1,38 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, harpy version by VMSolidus", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-harpy", - "directions": 4 - } - ] + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-unshaded", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..c082fd2340 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING.png index 9a49a516b5..16822d9610 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/icon.png index 128c637556..97ff15fce7 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/inhand-left.png index 6b99071d3d..5d513b0fbf 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/inhand-right.png index b56335aef5..dc44910e24 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/meta.json index 0261a0564f..364b3c0e27 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/meta.json @@ -1,30 +1,34 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Texture edit from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-harpy", - "directions": 4 - } - ] + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..2085dc1c83 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/meta.json index 3641da6f50..9acde9a4de 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.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/6b3f58d7de4d4e374282819a7001eaa9bde1676d", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6b3f58d7de4d4e374282819a7001eaa9bde1676d. Vox state made by Flareguy for SS14", "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/OuterClothing/Hardsuits/medical.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..6b6a36e0e7 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json index ef5e62cca4..0a78966c1d 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json @@ -1,11 +1,11 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14", + "size": { + "x": 32, + "y": 32 + }, "states": [ { "name": "icon" @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 @@ -27,4 +31,4 @@ "directions": 4 } ] -} +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..e8149c9cd9 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING.png index 24837f4d9a..25c630df78 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/icon.png index 31f9e2f0e9..6788fa2cb2 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/inhand-left.png index 02bb28f88c..41ba71312a 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/inhand-right.png index 14e31e35ff..750412b5d0 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json index 64b98f1e79..364b3c0e27 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json @@ -1,30 +1,34 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise station git at commit https://github.com/ParadiseSS13/Paradise/commit/e5e584804b4b0b373a6a69d23afb73fd3c094365, redrawn by Ubaser", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-harpy", - "directions": 4 - } - ] -} +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..f0638fc80d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/meta.json index 8840689d9e..8663673f5c 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (Github) for ss14", + "copyright": "Made by brainfood1183 (Github) for ss14. Vox state made by Flareguy for SS14", "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/OuterClothing/Hardsuits/pirateeva.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..ce3d20cc20 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/meta.json index 8840689d9e..8663673f5c 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (Github) for ss14", + "copyright": "Made by brainfood1183 (Github) for ss14. Vox state made by Flareguy for SS14", "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/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..629584e995 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING.png index 3465700d9b..799f08fe75 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/icon.png index 8081c5962d..cb64dc3f0f 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/inhand-left.png index 21b03dcf0e..66cc8c046e 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/inhand-right.png index dd794e37b0..eb83427e67 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/meta.json index def2d42704..364b3c0e27 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.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", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -15,8 +15,12 @@ "directions": 4 }, { - "name": "equipped-OUTERCLOTHING-harpy", - "directions": 4 + "name": "equipped-OUTERCLOTHING-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 }, { "name": "inhand-left", diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..b8c26d6f41 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING.png index 6daf184ffd..93c119e4ed 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/icon.png index d81d730fb4..434a0e862a 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/inhand-left.png index fbc53c9c2c..93ad2875fb 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/inhand-right.png index 0ccb463801..aac450b870 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json index ef5e62cca4..364b3c0e27 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json @@ -1,30 +1,34 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-harpy", - "directions": 4 - } - ] + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..0d8f373dc1 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/meta.json index 13748622fe..eb28d4c8a1 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Edited by StanTheCarpenter. Originally taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Edited by StanTheCarpenter. Originally taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14", "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/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..8c301cbe55 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING.png index a1ecf105b2..7cc473954b 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/icon.png index 4f04fd6bf4..0d08bfbd09 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-left.png index f808f0c975..d2403d9012 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-right.png index 1fb781159d..5162157c69 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/meta.json index e482264df5..2e0f6a298e 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.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", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "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/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..30cf54325e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING.png index 391c62adad..a834f6aa05 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/icon.png index 2093000d23..6177793a02 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-left.png index 5532ef90e6..d2403d9012 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-right.png index 340f4d1a67..5162157c69 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json index 54a0ed85fa..2e0f6a298e 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Sprite made by Gtheglorious based on the sprite made by Alekshhh for SS14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "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/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..c06d8fae90 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png index ec979f4b51..3df3451fba 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/icon.png index e5d891560c..0d920b0a40 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json index 32d6d8901a..2e0f6a298e 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Sprite made by Gtheglorious based on the sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "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/OuterClothing/Hardsuits/spatio.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..999761e150 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/equipped-OUTERCLOTHING.png index ad53d33683..eaf6992676 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/icon.png index afcfd3527c..627d3d155a 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/inhand-left.png index d82cb186dc..7b242810f3 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/inhand-right.png index f9d91c922c..a4e25337d9 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/meta.json index f6a942a895..eb56f9737d 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/meta.json @@ -1,32 +1,36 @@ - -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Original by Emisse, modified by EmoGarbage404", - - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-harpy", - "directions": 4 - } - ] -} + +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", + + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..df2abbbf03 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING.png index 09402a1cb7..7f16c61a2a 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/icon.png index d8ace82fae..d94dd3bc29 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/inhand-left.png index 2102993402..268fde26b1 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/inhand-right.png index e4113194a3..29b67726d8 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/meta.json index b9b739337b..f57e352d87 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.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/fb2d71495bfe81446159ef528534193d09dd8d34, equipped-OUTERCLOTHING-monkey made by Dutch-VanDerLinde", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -19,15 +19,19 @@ "directions": 4 }, { - "name": "inhand-left", + "name": "equipped-OUTERCLOTHING-harpy", "directions": 4 }, { - "name": "inhand-right", + "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, { - "name": "equipped-OUTERCLOTHING-harpy", + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..24c1aa2a87 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/equipped-OUTERCLOTHING.png index ecf87e190a..b7b52f0c41 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/icon.png index 7a423e798d..871fcbd074 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/inhand-left.png index 2102993402..a27d75760a 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/inhand-right.png index e4113194a3..11f4011e6e 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/meta.json index 4aa4d60ccb..a361537679 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/meta.json @@ -1,30 +1,34 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-harpy", - "directions": 4 - } - ] -} +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..869cf41ce2 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING.png index 8a88030e8e..24970c7ac6 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/icon.png index 28c21b611b..0ba07b9c38 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/inhand-left.png index 0f415d109b..3ffcc52ad0 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/inhand-right.png index 75076efb12..a5ae29e366 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json index b85c75656c..a361537679 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json @@ -1,30 +1,34 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd, harpy by VMSolidus", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-harpy", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..9417c5547b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/meta.json index 88d91565d7..2026bba893 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/meta.json @@ -1,11 +1,11 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Based on tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by EmoGarbage404 (github), harpy by VMSolidus", - "size": { - "x": 32, - "y": 32 - }, + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Based on tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by EmoGarbage404 (github), harpy by VMSolidus. Vox state made by Flareguy for SS14", + "size": { + "x": 32, + "y": 32 + }, "states": [ { "name": "icon" @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 @@ -27,4 +31,4 @@ "directions": 4 } ] -} +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..d4e4ab0f53 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/meta.json index e482264df5..15aef26a56 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.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 made by Flareguy for SS14", "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/OuterClothing/Misc/apronbotanist.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..091fe54d8b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.rsi/meta.json index e482264df5..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.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. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "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/OuterClothing/Misc/apronchef.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..e0fd17d98a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/meta.json index e482264df5..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.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. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "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/OuterClothing/Misc/cardborg.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Misc/cardborg.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..e4ea5d5fa4 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/cardborg.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/cardborg.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/cardborg.rsi/meta.json index e482264df5..15aef26a56 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/cardborg.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/cardborg.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 made by Flareguy for SS14", "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/OuterClothing/Misc/chef.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Misc/chef.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..a159e88777 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/chef.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/chef.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/chef.rsi/meta.json index e482264df5..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/chef.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/chef.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. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "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/OuterClothing/Misc/classicponcho.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..94835833cc Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/meta.json index e482264df5..21cd9257fd 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.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. equipped-OUTERCLOTHING-vox state taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/fce54deb01d465957691ba2907218d4af4830db2/icons/mob/clothing/species/vox/suit.dmi", "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/OuterClothing/Misc/ghostsheet.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Misc/ghostsheet.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..df08ef1986 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/ghostsheet.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/ghostsheet.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/ghostsheet.rsi/meta.json index 5de1afef0f..ccfd0c0303 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/ghostsheet.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/ghostsheet.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/pull/38809", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/pull/38809. Vox state by Flareguy for SS1", "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/OuterClothing/Misc/grey_hoodie.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Misc/grey_hoodie.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..6423bd5c73 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/grey_hoodie.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/grey_hoodie.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/grey_hoodie.rsi/meta.json index 442bfb2920..b5f8619d65 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/grey_hoodie.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/grey_hoodie.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 for SS14", "size": { "x": 32, "y": 32 @@ -17,6 +17,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "open-equipped-OUTERCLOTHING", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..36e53e4396 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/meta.json index 217a3f9511..3fa2c7657c 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/meta.json @@ -1,26 +1,30 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from TGstation github https://github.com/tgstation/tgstation/commit/a20589c401fc9b0f23c1dea08c56d4a1697adcd6", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TGstation github https://github.com/tgstation/tgstation/commit/a20589c401fc9b0f23c1dea08c56d4a1697adcd6. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/red_racoon.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Misc/red_racoon.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..ff43b16105 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/red_racoon.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/red_racoon.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/red_racoon.rsi/meta.json index b20ea0277f..cd0053daea 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/red_racoon.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/red_racoon.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by netwy(583844759429316618)", + "copyright": "Created by netwy(583844759429316618). Vox state made by Flareguy for SS14", "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/OuterClothing/Misc/redwizard.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Misc/redwizard.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..d5efb0d4b2 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/redwizard.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/redwizard.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/redwizard.rsi/meta.json index e482264df5..15aef26a56 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/redwizard.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/redwizard.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 made by Flareguy for SS14", "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/OuterClothing/Misc/skubbody.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Misc/skubbody.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..b50aa58c48 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/skubbody.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/skubbody.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/skubbody.rsi/meta.json index 9a00c5741a..ed75ee470b 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/skubbody.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/skubbody.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "EOBGames from tgstation", + "copyright": "EOBGames from tgstation. Vox state made by Flareguy for SS14", "size": { "x": 32, "y": 32 @@ -13,6 +13,10 @@ { "name": "equipped-OUTERCLOTHING", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/straight_jacket.rsi/body-overlay-2-vox.png b/Resources/Textures/Clothing/OuterClothing/Misc/straight_jacket.rsi/body-overlay-2-vox.png new file mode 100644 index 0000000000..0a23447f94 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/straight_jacket.rsi/body-overlay-2-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/straight_jacket.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/straight_jacket.rsi/meta.json index b41f0209d7..2eda10ef51 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/straight_jacket.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/straight_jacket.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 made by Flareguy for SS14", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "body-overlay-2", "directions": 4 }, + { + "name": "body-overlay-2-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..e39761b360 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.rsi/meta.json index e482264df5..15aef26a56 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.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 made by Flareguy for SS14", "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/OuterClothing/Misc/wizard.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Misc/wizard.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..a586ec3fe3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/wizard.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/wizard.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/wizard.rsi/meta.json index e482264df5..15aef26a56 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/wizard.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/wizard.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 made by Flareguy for SS14", "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/OuterClothing/Suits/bombsuit.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Suits/bombsuit.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..36cea26549 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/bombsuit.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/bombsuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/bombsuit.rsi/meta.json index e9a9a4453d..669e1d9857 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/bombsuit.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/bombsuit.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/760f0be7af33a31f5a08a3291864e91539d0ebb7", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/760f0be7af33a31f5a08a3291864e91539d0ebb7. Vox state made by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-harpy", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/chicken.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Suits/chicken.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..d9ccc1dd96 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/chicken.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/chicken.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/chicken.rsi/meta.json index e482264df5..ca1146d007 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/chicken.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/chicken.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. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..2fb7750843 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING.png index 48787f238c..e1f1fa005e 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/icon.png index 62d95e0186..aaa1191bd4 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json index 4dcd7b13b5..f57e352d87 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Sprites by Flareguy & cboyjet, heavily edited from space suit sprites found in https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34, harpy edit by VMSolidus", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -19,8 +19,12 @@ "directions": 4 }, { - "name": "equipped-OUTERCLOTHING-harpy", - "directions": 4 + "name": "equipped-OUTERCLOTHING-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 }, { "name": "inhand-left", diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..99b555f7ac Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING.png index 8b85a77635..94b5262171 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/icon.png index 3fd01918c6..7f385e6d1f 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json index 8d09b75006..364b3c0e27 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Sprites by Flareguy & cboyjet, heavily edited from space suit sprites found in https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34, harpy edit by VMSolidus", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -15,8 +15,12 @@ "directions": 4 }, { - "name": "equipped-OUTERCLOTHING-harpy", - "directions": 4 + "name": "equipped-OUTERCLOTHING-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 }, { "name": "inhand-left", diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..9601695dac Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING.png index 3f9884ee64..b267c21f14 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/icon.png index 3fbb026d65..b5b8d8c351 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/meta.json index 0482d08642..f57e352d87 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Sprites by Flareguy & cboyjet, heavily edited from space suit sprites found in https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34, monkey derivative made by brainfood1183 (github) for ss14, harpy edit by VMSolidus", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -19,8 +19,12 @@ "directions": 4 }, { - "name": "equipped-OUTERCLOTHING-harpy", - "directions": 4 + "name": "equipped-OUTERCLOTHING-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 }, { "name": "inhand-left", diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..7f71b04f1c Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING.png index 446f160a54..b9bab764ff 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/icon.png index 8e6e1c37a5..f2acf28298 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/meta.json index 0482d08642..f57e352d87 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Sprites by Flareguy & cboyjet, heavily edited from space suit sprites found in https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34, monkey derivative made by brainfood1183 (github) for ss14, harpy edit by VMSolidus", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -19,8 +19,12 @@ "directions": 4 }, { - "name": "equipped-OUTERCLOTHING-harpy", - "directions": 4 + "name": "equipped-OUTERCLOTHING-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 }, { "name": "inhand-left", diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..920cc9e05f Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/equipped-OUTERCLOTHING.png index 28f0ec6bd1..97f06bdea2 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/icon.png index 17f29de4c9..66b0e591a7 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/inhand-left.png index aa750ee200..ad84316953 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/inhand-right.png index 526891c823..30468f6ee3 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/meta.json index 0a8c670a89..364b3c0e27 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/fire.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, harpy edit by VMSolidus", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -15,8 +15,12 @@ "directions": 4 }, { - "name": "equipped-OUTERCLOTHING-harpy", - "directions": 4 + "name": "equipped-OUTERCLOTHING-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 }, { "name": "inhand-left", diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..c585862bb1 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/meta.json index e482264df5..920eab5520 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/monkey.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/monkey.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 made by Flareguy for Space Station 14", "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/OuterClothing/Suits/rad.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..13f9dacef3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/equipped-OUTERCLOTHING.png index 50872d177e..96272297f2 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/icon.png index c125b0affd..13c3b241fa 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/meta.json index 0a8c670a89..364b3c0e27 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/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/4f6190e2895e09116663ef282d3ce1d8b35c032e, harpy edit by VMSolidus", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 @@ -15,8 +15,12 @@ "directions": 4 }, { - "name": "equipped-OUTERCLOTHING-harpy", - "directions": 4 + "name": "equipped-OUTERCLOTHING-harpy", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 }, { "name": "inhand-left", diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Vests/detvest.rsi/equipped-OUTERCLOTHING-body-slim.png b/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/equipped-OUTERCLOTHING-body-slim.png similarity index 100% rename from Resources/Textures/_White/Clothing/OuterClothing/Vests/detvest.rsi/equipped-OUTERCLOTHING-body-slim.png rename to Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/equipped-OUTERCLOTHING-body-slim.png diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..50e6d79c20 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/equipped-OUTERCLOTHING.png index 2e86e34438..085b66f501 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/icon.png index e0de8c7ec9..fa5e1f9420 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/meta.json index e482264df5..db4b5ca121 100644 --- a/Resources/Textures/Clothing/OuterClothing/Vests/detvest.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Vests/detvest.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", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -14,6 +14,14 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-body-slim", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..6d9f6dbead Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING.png index 17e322a695..9474a31375 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/icon.png index 57fe7a1def..36396bc3f0 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/meta.json index 05ec90135e..29bae36917 100644 --- a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "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/OuterClothing/Vests/vest.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..ee35c40fbd Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/meta.json index e482264df5..920eab5520 100644 --- a/Resources/Textures/Clothing/OuterClothing/Vests/vest.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Vests/vest.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 made by Flareguy for Space Station 14", "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/OuterClothing/Vests/webvest.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..17d75d29b3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/meta.json index e482264df5..0e30ab4d3f 100644 --- a/Resources/Textures/Clothing/OuterClothing/Vests/webvest.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Vests/webvest.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 for SS14", "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/OuterClothing/WinterCoats/coat.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..440fc3375f Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/meta.json index 7752722477..19f610cdfe 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/meta.json @@ -1,26 +1,30 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatatmos.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatatmos.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..1d75531317 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatatmos.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatatmos.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatatmos.rsi/meta.json index 7752722477..5d9e9636f7 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatatmos.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatatmos.rsi/meta.json @@ -1,26 +1,30 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatbar.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatbar.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..092d66ea3e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatbar.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatbar.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatbar.rsi/meta.json index 7863947d1c..19fcc6a935 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatbar.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatbar.rsi/meta.json @@ -1,26 +1,30 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..0fca4396ea Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/equipped-OUTERCLOTHING.png index 0b3086ac58..687810dc88 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/icon.png index dd14ac0a8a..407dabf42b 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/meta.json index 46b3e631a0..82fefd4918 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/meta.json @@ -1,26 +1,30 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62 , edited by Skarletto (github)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62 , edited by Skarletto (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcargo.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcargo.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..f4427249ec Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcargo.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcargo.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcargo.rsi/meta.json index 7752722477..5d9e9636f7 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcargo.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcargo.rsi/meta.json @@ -1,26 +1,30 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatce.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatce.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..29002eaf6b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatce.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatce.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatce.rsi/meta.json index 7752722477..5d9e9636f7 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatce.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatce.rsi/meta.json @@ -1,26 +1,30 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatclown.rsi/equipped-OUTERCLOTHING-body-slim.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/equipped-OUTERCLOTHING-body-slim.png similarity index 100% rename from Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatclown.rsi/equipped-OUTERCLOTHING-body-slim.png rename to Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/equipped-OUTERCLOTHING-body-slim.png diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..781df9000b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/equipped-OUTERCLOTHING.png index 2a8767b214..549dd538b3 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/icon.png index d69cad4462..5b69e6d31a 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/inhand-left.png index a34eafaae9..0232dd6546 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/inhand-right.png index e0b57b4317..fa5c518ce9 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/meta.json index 7863947d1c..07c27d0604 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/meta.json @@ -1,26 +1,34 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-body-slim", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatengi.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatengi.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..015e325023 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatengi.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatengi.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatengi.rsi/meta.json index 7752722477..5d9e9636f7 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatengi.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatengi.rsi/meta.json @@ -1,26 +1,30 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..d279e92da2 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/icon.png new file mode 100644 index 0000000000..6f7573420d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/inhand-left.png new file mode 100644 index 0000000000..85a0b83457 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/inhand-right.png new file mode 100644 index 0000000000..70ade34a8d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/meta.json new file mode 100644 index 0000000000..4010520850 --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd, recolored by Github user PursuitinAshes", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathydro.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathydro.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..334e1e8fe8 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathydro.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathydro.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathydro.rsi/meta.json index 7752722477..5d9e9636f7 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathydro.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathydro.rsi/meta.json @@ -1,26 +1,30 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmed.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmed.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..7b1b9d883c Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmed.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmed.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmed.rsi/meta.json index 7752722477..5d9e9636f7 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmed.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmed.rsi/meta.json @@ -1,26 +1,30 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmime.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmime.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..f713d3c846 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmime.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmime.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmime.rsi/meta.json index 7863947d1c..19fcc6a935 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmime.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmime.rsi/meta.json @@ -1,26 +1,30 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatminer.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatminer.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..438eced1b5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatminer.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatminer.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatminer.rsi/meta.json index 7752722477..5d9e9636f7 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatminer.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatminer.rsi/meta.json @@ -1,26 +1,30 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatparamed.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatparamed.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..a7ff104066 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatparamed.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatparamed.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatparamed.rsi/meta.json index 7752722477..5d9e9636f7 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatparamed.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatparamed.rsi/meta.json @@ -1,26 +1,30 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsci.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsci.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..1634304d13 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsci.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsci.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsci.rsi/meta.json index 7752722477..5d9e9636f7 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsci.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsci.rsi/meta.json @@ -1,26 +1,30 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } \ No newline at end of file diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsec.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsec.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..e67c55f114 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsec.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsec.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsec.rsi/meta.json index 7752722477..5d9e9636f7 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsec.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsec.rsi/meta.json @@ -1,26 +1,30 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } \ No newline at end of file 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 new file mode 100644 index 0000000000..b4f8cacea5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING.png index 28cf03f49c..baeeca8781 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/icon.png index eaf984f437..854ea543e9 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-left.png index df033631e9..464c4bfc5e 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-right.png index 77baaca885..d537128b82 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json index 7863947d1c..ade0905fb8 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json @@ -1,26 +1,30 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 / https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62, recolored by Github user Dutch-VanDerLinde.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..28cf03f49c Binary files /dev/null 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 new file mode 100644 index 0000000000..eaf984f437 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/inhand-left.png new file mode 100644 index 0000000000..df033631e9 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/inhand-right.png new file mode 100644 index 0000000000..77baaca885 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/inhand-right.png differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/meta.json similarity index 100% rename from Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/meta.json rename to Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/meta.json diff --git a/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/equipped-FEET-vox.png new file mode 100644 index 0000000000..73ab1326b8 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/meta.json index 54b1191d42..1abf6951f1 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/jackboots.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/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe. equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET-body-slim.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET-body-slim.png similarity index 100% rename from Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET-body-slim.png rename to Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET-body-slim.png diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET-vox.png new file mode 100644 index 0000000000..0d3d83cbad Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET.png index d38680fd86..16afeda1ba 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET.png and b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/icon-on.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/icon-on.png index 81c024c2da..9b0b7c706b 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/icon-on.png and b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/icon-on.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/icon.png index ed83a21a61..89c3417b16 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/icon.png and b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/meta.json index 8d56bf0c2b..1a77113762 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/tgstation/tgstation/commit/3d319f6157acc1c1cd9ebcb0f6f12641e051cf91", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -15,6 +15,22 @@ "name": "on-equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-body-slim", + "directions": 4 + }, + { + "name": "on-equipped-FEET-body-slim", + "directions": 4 + }, + { + "name": "equipped-FEET-vox", + "directions": 4 + }, + { + "name": "on-equipped-FEET-vox", + "directions": 4 + }, { "name": "icon" }, diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/on-equipped-FEET-body-slim.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/on-equipped-FEET-body-slim.png similarity index 100% rename from Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/on-equipped-FEET-body-slim.png rename to Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/on-equipped-FEET-body-slim.png diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/on-equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/on-equipped-FEET-vox.png new file mode 100644 index 0000000000..9c1af7f061 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/on-equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/on-equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/on-equipped-FEET.png index 03bed4bbc9..ba9fdd9f0e 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/on-equipped-FEET.png and b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/on-equipped-FEET.png differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/equipped-FEET-body-slim.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/equipped-FEET-body-slim.png similarity index 100% rename from Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/equipped-FEET-body-slim.png rename to Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/equipped-FEET-body-slim.png diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/equipped-FEET-vox.png new file mode 100644 index 0000000000..ff7074dbe3 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/equipped-FEET.png index f83edfab43..46c3c07f2a 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/equipped-FEET.png and b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/icon-on.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/icon-on.png index 68fd67a438..8ac7d47e22 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/icon-on.png and b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/icon-on.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/icon.png index ef258167a2..d32bae80d9 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/icon.png and b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/meta.json index ead74d8896..55c1d35a0b 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.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/debf90acfcafa4fb8d6723a37e0b8ac556c0702b", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -15,6 +15,22 @@ "name": "on-equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-body-slim", + "directions": 4 + }, + { + "name": "on-equipped-FEET-body-slim", + "directions": 4 + }, + { + "name": "equipped-FEET-vox", + "directions": 4 + }, + { + "name": "on-equipped-FEET-vox", + "directions": 4 + }, { "name": "icon" }, diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET-body-slim.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET-body-slim.png similarity index 100% rename from Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET-body-slim.png rename to Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET-body-slim.png diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET-vox.png new file mode 100644 index 0000000000..c14f707834 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET.png index 569eda8481..cb52d744c4 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET.png and b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET.png differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET-body-slim.png b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET-body-slim.png similarity index 100% rename from Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET-body-slim.png rename to Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET-body-slim.png diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET-vox.png new file mode 100644 index 0000000000..66083b253d Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET.png index 46b1be28c9..b72bb89dab 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET.png and b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/icon-on.png b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/icon-on.png index 6a94a728a6..974fd780c1 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/icon-on.png and b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/icon-on.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/icon.png index 31ec6b6e46..a489f65b73 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/icon.png and b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/meta.json index 96b3f4109e..1a77113762 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/magboots.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/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -15,6 +15,22 @@ "name": "on-equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-body-slim", + "directions": 4 + }, + { + "name": "on-equipped-FEET-body-slim", + "directions": 4 + }, + { + "name": "equipped-FEET-vox", + "directions": 4 + }, + { + "name": "on-equipped-FEET-vox", + "directions": 4 + }, { "name": "icon" }, diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET-body-slim.png b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET-body-slim.png similarity index 100% rename from Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET-body-slim.png rename to Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET-body-slim.png diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET-vox.png new file mode 100644 index 0000000000..e9d3dffc76 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET.png index cdc6751941..9ca69a7258 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET.png and b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/equipped-FEET.png index a94840421a..80cca57bef 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/equipped-FEET.png and b/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/icon.png index d0337e0323..04a64ba539 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/icon.png and b/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/meta.json index 54b1191d42..a3415d4d27 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/workboots.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/workboots.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/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/equipped-FEET-vox.png new file mode 100644 index 0000000000..02a752334b Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/meta.json index 54b1191d42..1abf6951f1 100644 --- a/Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Misc/slippers.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/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe. equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/equipped-FEET-vox.png new file mode 100644 index 0000000000..a738307297 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/meta.json index 54b1191d42..1abf6951f1 100644 --- a/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Misc/tourist.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/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe. equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/bling.rsi/equipped-FEET-body-slim.png b/Resources/Textures/Clothing/Shoes/Specific/bling.rsi/equipped-FEET-body-slim.png similarity index 100% rename from Resources/Textures/_White/Clothing/Shoes/Specific/bling.rsi/equipped-FEET-body-slim.png rename to Resources/Textures/Clothing/Shoes/Specific/bling.rsi/equipped-FEET-body-slim.png diff --git a/Resources/Textures/Clothing/Shoes/Specific/bling.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Specific/bling.rsi/equipped-FEET.png index c715df8fa0..11b1cc9115 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/bling.rsi/equipped-FEET.png and b/Resources/Textures/Clothing/Shoes/Specific/bling.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/bling.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Specific/bling.rsi/icon.png index 05a48d15a6..dbf004e8d4 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/bling.rsi/icon.png and b/Resources/Textures/Clothing/Shoes/Specific/bling.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/bling.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Specific/bling.rsi/inhand-left.png index 96c6b8fcad..668210159e 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/bling.rsi/inhand-left.png and b/Resources/Textures/Clothing/Shoes/Specific/bling.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/bling.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Specific/bling.rsi/inhand-right.png index a4587cd38e..d743b64a04 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/bling.rsi/inhand-right.png and b/Resources/Textures/Clothing/Shoes/Specific/bling.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/bling.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/bling.rsi/meta.json index 56e6395348..42ec8aba1a 100644 --- a/Resources/Textures/Clothing/Shoes/Specific/bling.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Specific/bling.rsi/meta.json @@ -1,27 +1,31 @@ - -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-FEET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "equipped-FEET-body-slim", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } \ No newline at end of file diff --git a/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/equipped-FEET-vox.png new file mode 100644 index 0000000000..2dc1885cd3 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/equipped-FEET.png index bb5c9be409..a3fa5b613c 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/equipped-FEET.png and b/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/icon.png index 8ac232a0c3..0ca12d72a4 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/icon.png and b/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/inhand-left.png index 4eaae15df2..a350508b9b 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/inhand-left.png and b/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/inhand-right.png index 47856cd166..a6580783d7 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/inhand-right.png and b/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/meta.json index 54b1191d42..86acce1fcb 100644 --- a/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Specific/clown.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/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/equipped-FEET.png index 486cc15dfb..64fd5589cb 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/equipped-FEET.png and b/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/icon.png index c39f640a8e..9d44168b07 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/icon.png and b/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/inhand-left.png index 0bb56ebfb0..f09c0bfdb4 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/inhand-left.png and b/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/inhand-right.png index 28764263f1..35d84581af 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/inhand-right.png and b/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/meta.json index e4431655fb..cb5d4da33a 100644 --- a/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Specific/clown_banana.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by KREKS (ss14 discord) for ss14.", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Shoes/Specific/cluwne.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Specific/cluwne.rsi/equipped-FEET.png index cfa9828674..864d10081d 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/cluwne.rsi/equipped-FEET.png and b/Resources/Textures/Clothing/Shoes/Specific/cluwne.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/cluwne.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Specific/cluwne.rsi/icon.png index da8715a320..d9a09c1980 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/cluwne.rsi/icon.png and b/Resources/Textures/Clothing/Shoes/Specific/cluwne.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/cluwne.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/cluwne.rsi/meta.json index 2db96aba4c..a516795983 100644 --- a/Resources/Textures/Clothing/Shoes/Specific/cluwne.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Specific/cluwne.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github) for ss14.", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/galoshes.rsi/equipped-FEET-body-slim.png b/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/equipped-FEET-body-slim.png similarity index 100% rename from Resources/Textures/_White/Clothing/Shoes/Specific/galoshes.rsi/equipped-FEET-body-slim.png rename to Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/equipped-FEET-body-slim.png diff --git a/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/equipped-FEET.png index cbc8f41f50..0e57494719 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/equipped-FEET.png and b/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/icon.png index 40378b7353..6580f1da7e 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/icon.png and b/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/inhand-left.png index 1ff3a792af..12edf43a23 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/inhand-left.png and b/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/inhand-right.png index 65a7aba6c3..d135a13acc 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/inhand-right.png and b/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/meta.json index 54b1191d42..b249fc906c 100644 --- a/Resources/Textures/Clothing/Shoes/Specific/galoshes.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Specific/galoshes.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/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-body-slim", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/jester.rsi/equipped-FEET-body-slim.png b/Resources/Textures/Clothing/Shoes/Specific/jester.rsi/equipped-FEET-body-slim.png similarity index 100% rename from Resources/Textures/_White/Clothing/Shoes/Specific/jester.rsi/equipped-FEET-body-slim.png rename to Resources/Textures/Clothing/Shoes/Specific/jester.rsi/equipped-FEET-body-slim.png diff --git a/Resources/Textures/Clothing/Shoes/Specific/jester.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Specific/jester.rsi/equipped-FEET.png index 6a1cedcc12..2820099484 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/jester.rsi/equipped-FEET.png and b/Resources/Textures/Clothing/Shoes/Specific/jester.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/jester.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Specific/jester.rsi/icon.png index 2da879fce5..ef3fd539f4 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/jester.rsi/icon.png and b/Resources/Textures/Clothing/Shoes/Specific/jester.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/jester.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Specific/jester.rsi/inhand-left.png index 6e4d419619..667eda570e 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/jester.rsi/inhand-left.png and b/Resources/Textures/Clothing/Shoes/Specific/jester.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/jester.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Specific/jester.rsi/inhand-right.png index 6c1de4c256..ab1b7ec9eb 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/jester.rsi/inhand-right.png and b/Resources/Textures/Clothing/Shoes/Specific/jester.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/jester.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/jester.rsi/meta.json index 30fd407e21..373a49e791 100644 --- a/Resources/Textures/Clothing/Shoes/Specific/jester.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Specific/jester.rsi/meta.json @@ -1,7 +1,8 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/3a72dd925f7d6aeec620fe83bc4f88a3d7e5f693", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 @@ -14,6 +15,10 @@ "name": "equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-body-slim", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/equipped-FEET.png index 3287cf4ea3..2fb1f133a1 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/equipped-FEET.png and b/Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/icon.png index 53d8da0d72..62cbfffdf4 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/icon.png and b/Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/inhand-left.png index 4eaae15df2..a350508b9b 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/inhand-left.png and b/Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/inhand-right.png index 47856cd166..a6580783d7 100644 Binary files a/Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/inhand-right.png and b/Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/meta.json index 3c606364d8..cb5d4da33a 100644 --- a/Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Specific/large_clown.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github)", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/equipped-FEET-vox.png new file mode 100644 index 0000000000..73ab1326b8 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/meta.json index 54b1191d42..1abf6951f1 100644 --- a/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Specific/swat.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/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe. equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/equipped-FEET-vox.png new file mode 100644 index 0000000000..838d02bb45 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/meta.json index 54b1191d42..1abf6951f1 100644 --- a/Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Specific/wizard.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/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe. equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Under/Socks/coder.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Under/Socks/coder.rsi/equipped-FEET.png index 0fea622063..4bb67f166d 100644 Binary files a/Resources/Textures/Clothing/Under/Socks/coder.rsi/equipped-FEET.png and b/Resources/Textures/Clothing/Under/Socks/coder.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Under/Socks/coder.rsi/meta.json b/Resources/Textures/Clothing/Under/Socks/coder.rsi/meta.json index 194b8c4f0f..1bb04ab6eb 100644 --- a/Resources/Textures/Clothing/Under/Socks/coder.rsi/meta.json +++ b/Resources/Textures/Clothing/Under/Socks/coder.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, equipped-FEET modified by Psychpsyo", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/atmosf.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/atmosf.rsi/equipped-INNERCLOTHING.png index 6a867d0ffd..205ff59c34 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/atmosf.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/atmosf.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/atmosf.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/atmosf.rsi/icon.png index 88e3456ff1..5632c57eb3 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/atmosf.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/atmosf.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/atmosf.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/atmosf.rsi/inhand-left.png index 0a44f2f3e9..5f31602b18 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/atmosf.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/atmosf.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/atmosf.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/atmosf.rsi/inhand-right.png index 815b2a813c..c5df8b73fb 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/atmosf.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/atmosf.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/atmosf.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/atmosf.rsi/meta.json index a0169cdcda..1e53c030d7 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/atmosf.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/atmosf.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/tgstation/tgstation/commit/beaea876ea426c0e215cee64619862dc19bd9cd8, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/bartender.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/bartender.rsi/equipped-INNERCLOTHING.png index 2def1780b7..7d0f01c6a1 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/bartender.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/bartender.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/bartender.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/bartender.rsi/icon.png index aab7cc3411..7786d893a5 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/bartender.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/bartender.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/bartender.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/bartender.rsi/inhand-left.png index f367313cf9..7e54e85c9a 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/bartender.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/bartender.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/bartender.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/bartender.rsi/inhand-right.png index 33aac693c4..9498ad18c5 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/bartender.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/bartender.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/bartender.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/bartender.rsi/meta.json index 36ab573091..2966c36de9 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/bartender.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/bartender.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey derivative made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/equipped-INNERCLOTHING.png index dbdb51cef9..032be6c35f 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/icon.png index 67fd943b4c..2575dc3ac1 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/inhand-left.png index 9641f214a5..a221cc4eb4 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/inhand-right.png index 0b3d008747..3e569369b3 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/meta.json index 6eb08f0f32..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "monkey derivative derived by brainfood1183 (github) for ss14 from tgstation at commit https://github.com/tgstation/tgstation/commit/dd97a0e45d904fffadd9d2caad22aedd0d09f3ab then edited by Skarletto (github). Other sprites taken from tgstation at https://github.com/tgstation/tgstation/pull/69842/commits/d8138946b0ed06fced522729ac8eaa0596864329 and edited by Skarletto (github), edited by Emisse for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cargotech.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cargotech.rsi/equipped-INNERCLOTHING.png index a8c6d46508..1165db623a 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cargotech.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cargotech.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cargotech.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cargotech.rsi/icon.png index 664c857ae4..5b7874e83b 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cargotech.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cargotech.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cargotech.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cargotech.rsi/inhand-left.png index 7300529db9..4f271669a8 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cargotech.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cargotech.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cargotech.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cargotech.rsi/inhand-right.png index 72d82e7937..7b512340cf 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cargotech.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cargotech.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cargotech.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cargotech.rsi/meta.json index 12bdb72c4a..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cargotech.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cargotech.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, edited by Flareguy. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING.png index 3263c54ec9..0b9a452a71 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/icon.png index 5f662e0280..38f77ef6fa 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/meta.json index bbcef071e2..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/chef.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/chef.rsi/equipped-INNERCLOTHING.png index 37435795c5..8fd7b18c8f 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/chef.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/chef.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/chef.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/chef.rsi/icon.png index 6969d40be7..3cd2bace43 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/chef.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/chef.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/chef.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/chef.rsi/meta.json index 36ab573091..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/chef.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/chef.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey derivative made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/chemistry.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/chemistry.rsi/equipped-INNERCLOTHING.png index 5608a2451c..f36a0ad781 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/chemistry.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/chemistry.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/chemistry.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/chemistry.rsi/icon.png index c5d3ad90e0..3fb69dcac1 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/chemistry.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/chemistry.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/chemistry.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/chemistry.rsi/meta.json index bbcef071e2..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/chemistry.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/chemistry.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cmo.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cmo.rsi/equipped-INNERCLOTHING.png index 955ee298f6..31d07ff06f 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cmo.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cmo.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cmo.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cmo.rsi/icon.png index 029688868d..944f6fec68 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cmo.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cmo.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cmo.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cmo.rsi/meta.json index bbcef071e2..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/cmo.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/cmo.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective.rsi/equipped-INNERCLOTHING.png index 567a06b8d3..7195121f4b 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective.rsi/icon.png index 0d8ec23948..4de094e187 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective.rsi/meta.json index 36ab573091..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey derivative made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/equipped-INNERCLOTHING.png index 6e576b6e40..098ff6b108 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/icon.png index 737576e156..e948bb7737 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/meta.json index bbcef071e2..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/engineering.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/engineering.rsi/equipped-INNERCLOTHING.png index 0fe314e778..3426f0eb92 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/engineering.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/engineering.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/engineering.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/engineering.rsi/icon.png index 76ea48170d..6190e526fd 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/engineering.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/engineering.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/engineering.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/engineering.rsi/meta.json index 36ab573091..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/engineering.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/engineering.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey derivative made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hop.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hop.rsi/equipped-INNERCLOTHING.png index cf547d1ce9..3359a44239 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hop.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hop.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hop.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hop.rsi/icon.png index 69b9a2ff97..d9e02bac63 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hop.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hop.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hop.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hop.rsi/meta.json index bbcef071e2..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hop.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hop.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/equipped-INNERCLOTHING.png index 0eff0ab3fa..c0a5e94f2b 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/icon.png index 31ba54e8af..a027c8c0ba 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/meta.json index bbcef071e2..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/equipped-INNERCLOTHING.png index b8b3c25e76..839785267b 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/icon.png index 682bc0ea02..ce2cfb87c9 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/meta.json index 36ab573091..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey derivative made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/equipped-INNERCLOTHING.png index f27e553b99..d76f9614fe 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/icon.png index 9f82ea7673..129a24cbd1 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/meta.json index bbcef071e2..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/equipped-INNERCLOTHING.png index f38f8dd3a7..51e0bce937 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/icon.png index a377a731b1..0b415d07ff 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/inhand-left.png index 34e4c4b3c1..37bab77b6c 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/inhand-right.png index a9ba861650..de75bc9b5c 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/meta.json index bbcef071e2..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hydro.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/equipped-INNERCLOTHING.png index 3128383e68..ba9ea65cec 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/icon.png index 5afae7d932..715401b683 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/meta.json index bbcef071e2..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/medical.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/equipped-INNERCLOTHING.png index e6532029e4..5fd9c5ab7c 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/icon.png index ae1f854292..873dee989c 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/inhand-left.png index 59518c35c3..f52eeb1705 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/inhand-right.png index fa96803d56..c4392ea540 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/meta.json index 36ab573091..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/mime.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey derivative made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/olddress.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/olddress.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..145cf97b2e Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/olddress.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/olddress.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/olddress.rsi/icon.png new file mode 100644 index 0000000000..28b2de1692 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/olddress.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/olddress.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/olddress.rsi/inhand-left.png new file mode 100644 index 0000000000..a85d0a11e9 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/olddress.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/olddress.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/olddress.rsi/inhand-right.png new file mode 100644 index 0000000000..4d6da567de Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/olddress.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/olddress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/olddress.rsi/meta.json new file mode 100644 index 0000000000..d4ea50d555 --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/olddress.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "fujiwaranao", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/operative_s.rsi/equipped-INNERCLOTHING-body-slim.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/operative_s.rsi/equipped-INNERCLOTHING-body-slim.png similarity index 100% rename from Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/operative_s.rsi/equipped-INNERCLOTHING-body-slim.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/operative_s.rsi/equipped-INNERCLOTHING-body-slim.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/operative_s.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/operative_s.rsi/equipped-INNERCLOTHING.png index e38db3e03d..05de5d50b1 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/operative_s.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/operative_s.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/operative_s.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/operative_s.rsi/icon.png index 26bcd5c075..5c91d2e37e 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/operative_s.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/operative_s.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/operative_s.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/operative_s.rsi/meta.json index 69bafe6d05..edf3d6834f 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/operative_s.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/operative_s.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/d7e905e4d5ab2b0a8ce210c6ad686aeeebbab426, monkey derivative made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, + { + "name": "equipped-INNERCLOTHING-body-slim", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/paramedic.rsi/equipped-INNERCLOTHING-body-slim.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/equipped-INNERCLOTHING-body-slim.png similarity index 100% rename from Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/paramedic.rsi/equipped-INNERCLOTHING-body-slim.png rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/equipped-INNERCLOTHING-body-slim.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/equipped-INNERCLOTHING.png index b582d02aa8..a13937f764 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/icon.png index 3440af11d7..7f61c958c1 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/meta.json index bbcef071e2..226147ce16 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/paramedic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, + { + "name": "equipped-INNERCLOTHING-body-slim", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/equipped-INNERCLOTHING.png index 8eed62b0f7..b874dae0cc 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/icon.png index bd94c01bba..62605c2522 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-left.png index d91c9c28e7..4f271669a8 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-right.png index d85c9f7b60..7b512340cf 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/meta.json index 12bdb72c4a..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/qm.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, edited by Flareguy. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/equipped-INNERCLOTHING.png index a55307841a..4b685f5b4c 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/icon.png index cf454bc23a..0580e99b2a 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/meta.json index bbcef071e2..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/scientist.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/equipped-INNERCLOTHING.png index 8ffa6e2e94..ded1c3536e 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/icon.png index accf74dc8f..6cfd2a1e48 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/meta.json index 45e0f9141c..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Original sec jumpsuit from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, jumpskirt sprite made by Flareguy for SS14. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/equipped-INNERCLOTHING.png index b3ecbd9712..8d2ae43649 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/icon.png index 18ab875179..b08cd213de 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_physician.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_physician.rsi/equipped-INNERCLOTHING-monkey.png index 4e98c89cc9..830f482ab8 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_physician.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_physician.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_physician.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_physician.rsi/equipped-INNERCLOTHING.png index 311e0aecb9..c92abfde99 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_physician.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_physician.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_physician.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_physician.rsi/icon.png index aaee2537da..65ef81a252 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_physician.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_physician.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_physician.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_physician.rsi/inhand-left.png index e0b2d4759b..4381a0172b 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_physician.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_physician.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_physician.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_physician.rsi/inhand-right.png index a2ecc2b551..3855dc44e1 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_physician.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_physician.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/equipped-INNERCLOTHING.png index 56e7e3567a..793f4c5d9a 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/icon.png index 77db2ff028..e9ffea3990 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/meta.json index bbcef071e2..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/atmos.rsi/equipped-INNERCLOTHING-body-slim.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/equipped-INNERCLOTHING-body-slim.png similarity index 100% rename from Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/atmos.rsi/equipped-INNERCLOTHING-body-slim.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/equipped-INNERCLOTHING-body-slim.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/equipped-INNERCLOTHING.png index def12bafc6..8241820827 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/icon.png index 209d9a8ab3..2929d36092 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/inhand-left.png index 9cfedb2728..5f31602b18 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/inhand-right.png index e5035e20de..c5df8b73fb 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/meta.json index 9f268718cf..d7f1f34316 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/tgstation/tgstation/commit/beaea876ea426c0e215cee64619862dc19bd9cd8, monkey made by brainfood1183 (github)", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, + { + "name": "equipped-INNERCLOTHING-body-slim", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 @@ -27,4 +31,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/equipped-INNERCLOTHING.png index 4b5753f792..827abb6947 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/icon.png index a403b7442f..5749dad9f6 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/inhand-left.png index f367313cf9..7e54e85c9a 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/inhand-right.png index 33aac693c4..9498ad18c5 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/meta.json index b02e5f4b8a..2966c36de9 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github), monkey made by brainfood1183 (github) for ss14, default suit edit by Skarletto (github)", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/equipped-INNERCLOTHING.png index 5ad7eb1c1b..efa8c60bd5 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/icon.png index 0d6dc2631b..e0c9f86274 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/inhand-left.png index 1bccf1eb46..a221cc4eb4 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/inhand-right.png index e0b994af89..3e569369b3 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/meta.json index 6eb08f0f32..6755806893 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/captain.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "monkey derivative derived by brainfood1183 (github) for ss14 from tgstation at commit https://github.com/tgstation/tgstation/commit/dd97a0e45d904fffadd9d2caad22aedd0d09f3ab then edited by Skarletto (github). Other sprites taken from tgstation at https://github.com/tgstation/tgstation/pull/69842/commits/d8138946b0ed06fced522729ac8eaa0596864329 and edited by Skarletto (github), edited by Emisse for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -27,4 +27,4 @@ "directions": 4 } ] -} +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/equipped-INNERCLOTHING-monkey.png index 12e582665b..d831c9a728 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/equipped-INNERCLOTHING.png index 2c4d0d5d46..760cb902bb 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/icon.png index fede092c27..a4f116164b 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/inhand-left.png index 190f71c4a5..2e6a5e61db 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/inhand-right.png index 9885a2bd4a..7061517515 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/meta.json index 12bdb72c4a..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, edited by Flareguy. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING.png index e9165f29cc..4dfc92de50 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/icon.png index e2c37a0c2c..fcbdc143b1 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json index 1d012747b8..e09409d2b7 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/equipped-INNERCLOTHING.png index aef08cee2c..be50ecee1e 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/icon.png index 9fcf7ace5a..11cf6c6f98 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/meta.json index 1fb9cf1b66..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/equipped-INNERCLOTHING.png index de50443a1b..cd40928f64 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/icon.png index cb5599f81c..d35381ba22 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/inhand-left.png index 84e5e83e3f..7f22a4bb37 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/inhand-right.png index 69ad696a10..581766f585 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/meta.json index 1fb9cf1b66..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chef.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chemistry.rsi/equipped-INNERCLOTHING-body-slim.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/equipped-INNERCLOTHING-body-slim.png similarity index 100% rename from Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chemistry.rsi/equipped-INNERCLOTHING-body-slim.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/equipped-INNERCLOTHING-body-slim.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/equipped-INNERCLOTHING.png index d2d87bb1b2..097f3a4be8 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/icon.png index 98cc641cd5..f83d6a7246 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/meta.json index 3f72fb4460..226147ce16 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, + { + "name": "equipped-INNERCLOTHING-body-slim", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/equipped-INNERCLOTHING.png index 3fe3856e33..cb98288e8b 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/icon.png index c9b53df654..345cd67b9d 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/inhand-left.png index 48cbc3898b..955631baa4 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/inhand-right.png index 965b9229cb..3d6828c78d 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/meta.json index 1fb9cf1b66..74cc551bc6 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/equipped-INNERCLOTHING.png index aae16e3130..b1ddfe4427 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/icon.png index 5ba1ea0b03..9db9306570 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/inhand-left.png index 11ce676526..186de2f66c 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/inhand-right.png index d1a4a6d4a3..d4c921e87f 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/meta.json index d1f37efa80..74cc551bc6 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by KREKS (ss14 discord) for ss14.", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/equipped-INNERCLOTHING.png index 18da005b09..ef5f4f9b91 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/icon.png index 714b20859a..8c16453499 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/inhand-left.png index 120eada100..6aff0a7504 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/inhand-right.png index c1c3fa151b..2d931ac04a 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/meta.json index 395146ef50..74cc551bc6 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cluwne.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github) for ss14. In hand sprite scaled down by potato1234_x", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cmo.rsi/equipped-INNERCLOTHING-body-slim.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/equipped-INNERCLOTHING-body-slim.png similarity index 100% rename from Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cmo.rsi/equipped-INNERCLOTHING-body-slim.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/equipped-INNERCLOTHING-body-slim.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/equipped-INNERCLOTHING.png index 23e1e2bfb8..45024ef6d4 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/icon.png index 9381096adc..9ba01fecaf 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/meta.json index 3f72fb4460..226147ce16 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, + { + "name": "equipped-INNERCLOTHING-body-slim", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/equipped-INNERCLOTHING.png index db9842a95e..0e87ed1406 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/icon.png index c08f4aa765..6b4f7b7020 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/meta.json index 1fb9cf1b66..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/equipped-INNERCLOTHING.png index d83f6a8b21..bb4ab105cb 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/icon.png index dfe4f4f8b3..920a65dac4 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/meta.json index 3f72fb4460..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/equipped-INNERCLOTHING.png index f3b13e1ec2..b71c63fd6e 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/icon.png index 51f8d000f6..3c6420e675 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/meta.json index 1fb9cf1b66..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/equipped-INNERCLOTHING.png index 1f0689cf05..abc09c9ecd 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/icon.png index 1432e6bea1..2b14937536 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/meta.json index 1fb9cf1b66..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/equipped-INNERCLOTHING.png index 807f99fc7d..4482c7ecc3 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/icon.png index f65a93f00d..72cd698b80 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/meta.json index 3f72fb4460..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/equipped-INNERCLOTHING.png index 80984c51c1..f385cd626d 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/icon.png index 9400796353..bc816835b3 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/meta.json index 3f72fb4460..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/equipped-INNERCLOTHING.png index d034a9fbb8..871a1ab7fd 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/icon.png index 6dde5c525b..b318f04b3b 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/meta.json index 1fb9cf1b66..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/equipped-INNERCLOTHING.png index 98f4d7093c..3a8fe6889a 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/icon.png index 6c0ef8efe3..5b03cfa5a2 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/meta.json index 3f72fb4460..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/equipped-INNERCLOTHING.png index c9cb8ac622..5649656063 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/icon.png index c947c630e7..b2d7256ef0 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/meta.json index 3f72fb4460..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/equipped-INNERCLOTHING.png index bf66e84ec6..d6c8bd53cd 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/icon.png index 5393fcdf4b..20bfd46815 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/inhand-left.png index 34e4c4b3c1..37bab77b6c 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/inhand-right.png index a9ba861650..de75bc9b5c 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/meta.json index 3f72fb4460..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/equipped-INNERCLOTHING.png index 8f0961dff7..cd0df3bc1b 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/icon.png index a92352defe..add742dcb0 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/inhand-left.png index cfcda5613d..12180adc4d 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/inhand-right.png index e7692240a4..e64e57b59a 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/meta.json index a869e2d92d..9cba773bf5 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester.rsi/meta.json @@ -1,7 +1,8 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/3a72dd925f7d6aeec620fe83bc4f88a3d7e5f693. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, edited by Alekshhh", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/equipped-INNERCLOTHING.png index e77a295d08..7063ddbf8d 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/icon.png index 6987782a00..759a6dc23f 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/inhand-left.png index b7ac8770a2..11559f8567 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/inhand-right.png index ca79d1b1ee..a8a27fa4a2 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/meta.json index 5b9a00d1b2..74cc551bc6 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/jester2.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/3a72dd925f7d6aeec620fe83bc4f88a3d7e5f693. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka based on sprite from TG", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/journalist.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/journalist.rsi/equipped-INNERCLOTHING.png index 379ca3bce8..dc9f300245 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/journalist.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/journalist.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/journalist.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/journalist.rsi/icon.png index 70f76a475b..b6ea0e536e 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/journalist.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/journalist.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/journalist.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/journalist.rsi/meta.json index 5dd83ef6e2..1e53c030d7 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/journalist.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/journalist.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/78a56e1a22ba1d8d6023ed9bdae55a6de7fe8a39 and modified by emisse, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/equipped-INNERCLOTHING.png index 8aa89ef44e..de72d35aca 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/icon.png index 36cb47ba89..8b3720ec10 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/inhand-left.png index 9feaebdb55..dffffbc988 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/inhand-right.png index 6b8fccf1f4..aa45782ecd 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/meta.json index 0a48ac3e37..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/librarian.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/47718914e47c6fbf23d6dc97f073a9daa11b23cb and modified by potato1234x (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/equipped-INNERCLOTHING.png index d87ca22a54..f2ac23c948 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/icon.png index 26920f2469..662450d980 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/meta.json index 3f72fb4460..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/equipped-INNERCLOTHING.png index 436ebe0bdb..3039793515 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/icon.png index 3c6f4de6e5..1337a565e5 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/inhand-left.png index 59518c35c3..f8b8f0cf99 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/inhand-right.png index fa96803d56..08260df4f9 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/meta.json index 1fb9cf1b66..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/mime.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/equipped-INNERCLOTHING.png index 23329b7245..da548fcc06 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/icon.png index c69974d2e7..6692cc9da7 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/inhand-left.png index 4896ed18ac..423a248b3f 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/inhand-right.png index 60005dc4d1..2b8562e09e 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/meta.json index d54d2f9c88..2966c36de9 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/musician.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/4daf5d1a1b45fc3fcc4fd9703222159e6c1f38c8, inhands and icon by peptide, edited further by Ian M. Burton, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/operative.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/operative.rsi/equipped-INNERCLOTHING.png index 412c768774..a017df53e3 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/operative.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/operative.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/operative.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/operative.rsi/icon.png index e648d2e6c5..5f8f62440c 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/operative.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/operative.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/operative.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/operative.rsi/meta.json index bb86428a94..1e53c030d7 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/operative.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/operative.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/d7e905e4d5ab2b0a8ce210c6ad686aeeebbab426, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/equipped-INNERCLOTHING.png index 42ea220dba..0ac333ae6c 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/icon.png index 6f2f21e14b..9d3ca48f20 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/inhand-left.png index ef474f95ad..c6e604ffea 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/inhand-right.png index 79468f3b60..e3ee0522a1 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/meta.json index e5e880415c..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/overalls.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation and modified by Swept at commit https://github.com/tgstation/tgstation/commit/ac792e3226d48e5b3aaccff165ce100f7636a040, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/equipped-INNERCLOTHING.png index 33fafb9ea9..ec9299f9f3 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/icon.png index d5f5151370..7b21801944 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/meta.json index 3f72fb4460..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/psychologist.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/psychologist.rsi/equipped-INNERCLOTHING.png index 2b83e34216..c7acb2b4a0 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/psychologist.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/psychologist.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/psychologist.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/psychologist.rsi/icon.png index e6d91f6afb..31a1a06958 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/psychologist.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/psychologist.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/psychologist.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/psychologist.rsi/meta.json index 5dd83ef6e2..1e53c030d7 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/psychologist.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/psychologist.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/78a56e1a22ba1d8d6023ed9bdae55a6de7fe8a39 and modified by emisse, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING.png index 98d51e2638..2fb1b2e939 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/icon.png index da4d765219..bcea405d4d 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/meta.json index 12bdb72c4a..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/qm.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, edited by Flareguy. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/equipped-INNERCLOTHING.png index 04e9223e76..9188d68ea5 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/icon.png index e21589c6dd..62aad21b71 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/meta.json index 3f72fb4460..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/equipped-INNERCLOTHING.png index b3977c9748..a540681ef2 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/icon.png index a3186ba4c1..b0c3f58dca 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json index 3f72fb4460..c898c984f3 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json @@ -1,7 +1,8 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", + "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/equipped-INNERCLOTHING.png index b5676f523e..e471aaaa03 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/icon.png index 9265834ae3..639815f523 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/meta.json index 3f72fb4460..b8a1c40c2b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_blue.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/meta.json index 913d940881..bfad46e184 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Edit by Nairodian (github) of secred_s taken from tgstation at pull request https://github.com/tgstation/tgstation/pull/2984", + "copyright": "Edit by Nairodian (github) of secred_s taken from tgstation at pull request https://github.com/tgstation/tgstation/pull/2984, jumpskirt sprite made by Flareguy and edited by Dutch-VanDerLinde.", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/equipped-INNERCLOTHING-monkey.png index 5248c1b09f..1c5fc823eb 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/equipped-INNERCLOTHING.png index f67f3c67bf..3e68439c78 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/icon.png index d5d956c4e5..7a4e5b493f 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/inhand-left.png index e0b2d4759b..4381a0172b 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/inhand-right.png index a2ecc2b551..3855dc44e1 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_physician.rsi/inhand-right.png differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING-body-slim.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING-body-slim.png similarity index 100% rename from Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING-body-slim.png rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING-body-slim.png diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING.png index a912ead177..b3fdd7e120 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/icon.png index 331203e531..c1d86b9d8f 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/meta.json index 3f72fb4460..226147ce16 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, + { + "name": "equipped-INNERCLOTHING-body-slim", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_box.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_box.png index 62be184b02..505ae2e08e 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_box.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_box.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_corner_ne.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_corner_ne.png index 2c8159eadd..b4bf78e133 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_corner_ne.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_corner_ne.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_corner_nw.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_corner_nw.png index e7ab801e6d..a776a580eb 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_corner_nw.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_corner_nw.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_corner_se.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_corner_se.png index 01df5da7ac..794977c4cc 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_corner_se.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_corner_se.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_corner_sw.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_corner_sw.png index 83845e0e9d..a1fb31b1de 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_corner_sw.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_corner_sw.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_end_e.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_end_e.png index 732f84b783..cf15bae9a2 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_end_e.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_end_e.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_end_n.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_end_n.png index 1f74d87758..75a011aeea 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_end_n.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_end_n.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_end_s.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_end_s.png index 389a21bd81..80a46cf73e 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_end_s.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_end_s.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_end_w.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_end_w.png index 579c886902..f693611e9d 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_end_w.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_end_w.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_line_s.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_line_s.png index 899702c4e4..c40ab4ad13 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_line_s.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_line_s.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_line_w.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_line_w.png index 46082f3a69..9b458a1695 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_line_w.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/brick_line_w.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/checkerNESW.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/checkerNESW.png index 60007ce20d..2016eeb9d9 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/checkerNESW.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/checkerNESW.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/checkerNWSE.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/checkerNWSE.png index 71f3570ceb..67760f3abd 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/checkerNWSE.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/checkerNWSE.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/diagonal.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/diagonal.png index a1bbd82a13..a413e1118c 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/diagonal.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/diagonal.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/diagonal_checker_a.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/diagonal_checker_a.png index 3d6c6a345f..f557119ca9 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/diagonal_checker_a.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/diagonal_checker_a.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/diagonal_checker_b.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/diagonal_checker_b.png index 4b0ff11b06..24ffe28964 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/diagonal_checker_b.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/diagonal_checker_b.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/fulltile_overlay.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/fulltile_overlay.png index 297359045c..c3d903a8a4 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/fulltile_overlay.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/fulltile_overlay.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/halftile_overlay.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/halftile_overlay.png index b67f78c741..a3c5f0161b 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/halftile_overlay.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/halftile_overlay.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/halftile_overlay_180.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/halftile_overlay_180.png index af1f727641..102be60ca3 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/halftile_overlay_180.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/halftile_overlay_180.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/halftile_overlay_270.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/halftile_overlay_270.png index 4224c17bed..22f1e7acee 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/halftile_overlay_270.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/halftile_overlay_270.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/halftile_overlay_90.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/halftile_overlay_90.png index 941dd97110..cfd4b74d0d 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/halftile_overlay_90.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/halftile_overlay_90.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/herringbone.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/herringbone.png index 917b7dc775..41e6dbb423 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/herringbone.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/herringbone.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/meta.json b/Resources/Textures/Decals/Overlays/greyscale.rsi/meta.json index edf7c3cd2f..6345a4cc34 100644 --- a/Resources/Textures/Decals/Overlays/greyscale.rsi/meta.json +++ b/Resources/Textures/Decals/Overlays/greyscale.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-NC-SA-3.0", - "copyright": "mirrorcult, texturized by aexxie", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Gersoon", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile.png index 8e2bf2a56a..68489323f4 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_checker_a.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_checker_a.png index 76060aa39c..797e3a8903 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_checker_a.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_checker_a.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_checker_b.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_checker_b.png index ed76414523..a88409c429 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_checker_b.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_checker_b.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_diagonal.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_diagonal.png index ac553674f9..8f85790212 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_diagonal.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_diagonal.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_diagonal_a.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_diagonal_a.png index 912fab1d5b..98041353ff 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_diagonal_a.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_diagonal_a.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_diagonal_b.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_diagonal_b.png index e769da5440..a141934ed4 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_diagonal_b.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_diagonal_b.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_inner_ne.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_inner_ne.png index f5788a1136..3697a57bf2 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_inner_ne.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_inner_ne.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_inner_nw.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_inner_nw.png index 4003f8205f..02634c839e 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_inner_nw.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/minitile_inner_nw.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/mono.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/mono.png index bb6e306bdf..54ae01808c 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/mono.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/mono.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/offset.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/offset.png index 03d9b0e3db..cd754a6e50 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/offset.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/offset.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/offset_checker_a.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/offset_checker_a.png index 09839f5be4..f0cf09bbfc 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/offset_checker_a.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/offset_checker_a.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/offset_checker_b.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/offset_checker_b.png index 7c69aa4e0b..83f63f4ac9 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/offset_checker_b.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/offset_checker_b.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement.png index c212958e50..a335e86fef 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_checker_a.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_checker_a.png index ae21ba0051..be478f2a26 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_checker_a.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_checker_a.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_checker_b.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_checker_b.png index 62e212ebc3..9fae1faf8d 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_checker_b.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_checker_b.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical.png index 6305384108..5d218fc2fa 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical_checker_a.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical_checker_a.png index edb48dcced..b8468af9cb 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical_checker_a.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical_checker_a.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical_checker_b.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical_checker_b.png index ee9a1efc28..bbd2e5c856 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical_checker_b.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical_checker_b.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/quartertile_overlay.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/quartertile_overlay.png index c06af9063d..3d0928c319 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/quartertile_overlay.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/quartertile_overlay.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/quartertile_overlay_180.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/quartertile_overlay_180.png index ac1f00b56d..d9224588f2 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/quartertile_overlay_180.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/quartertile_overlay_180.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/quartertile_overlay_270.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/quartertile_overlay_270.png index da651e95a6..40905183c2 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/quartertile_overlay_270.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/quartertile_overlay_270.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/quartertile_overlay_90.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/quartertile_overlay_90.png index b58aa7f8df..391e198ba0 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/quartertile_overlay_90.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/quartertile_overlay_90.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/threequartertile_overlay.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/threequartertile_overlay.png index 4cf4fab39a..c2f6384fd6 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/threequartertile_overlay.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/threequartertile_overlay.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/threequartertile_overlay_180.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/threequartertile_overlay_180.png index 35b5ce4dbc..dd046c86d3 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/threequartertile_overlay_180.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/threequartertile_overlay_180.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/threequartertile_overlay_270.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/threequartertile_overlay_270.png index aa21e477f5..16a7bfc4de 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/threequartertile_overlay_270.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/threequartertile_overlay_270.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/threequartertile_overlay_90.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/threequartertile_overlay_90.png index 3c644d5af4..64a55867ea 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/threequartertile_overlay_90.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/threequartertile_overlay_90.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_box.png b/Resources/Textures/Decals/bricktile.rsi/dark_box.png index d9b23d5676..0a7bd1050b 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_box.png and b/Resources/Textures/Decals/bricktile.rsi/dark_box.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_corner_ne.png b/Resources/Textures/Decals/bricktile.rsi/dark_corner_ne.png index 284559148e..21cbc46c5d 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_corner_ne.png and b/Resources/Textures/Decals/bricktile.rsi/dark_corner_ne.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_corner_nw.png b/Resources/Textures/Decals/bricktile.rsi/dark_corner_nw.png index d249245bd4..0ca57d49d9 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_corner_nw.png and b/Resources/Textures/Decals/bricktile.rsi/dark_corner_nw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_corner_se.png b/Resources/Textures/Decals/bricktile.rsi/dark_corner_se.png index c608bd12e0..7b18f6d1e3 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_corner_se.png and b/Resources/Textures/Decals/bricktile.rsi/dark_corner_se.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_corner_sw.png b/Resources/Textures/Decals/bricktile.rsi/dark_corner_sw.png index 7d47c299ba..c941c46b95 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_corner_sw.png and b/Resources/Textures/Decals/bricktile.rsi/dark_corner_sw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_end_e.png b/Resources/Textures/Decals/bricktile.rsi/dark_end_e.png index 323e75d76f..025808e3d2 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_end_e.png and b/Resources/Textures/Decals/bricktile.rsi/dark_end_e.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_end_n.png b/Resources/Textures/Decals/bricktile.rsi/dark_end_n.png index 3d91cfbdc0..c3082ac7bd 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_end_n.png and b/Resources/Textures/Decals/bricktile.rsi/dark_end_n.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_end_s.png b/Resources/Textures/Decals/bricktile.rsi/dark_end_s.png index 9692018205..a7686510e2 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_end_s.png and b/Resources/Textures/Decals/bricktile.rsi/dark_end_s.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_end_w.png b/Resources/Textures/Decals/bricktile.rsi/dark_end_w.png index dcb96039e9..cd307a8fc1 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_end_w.png and b/Resources/Textures/Decals/bricktile.rsi/dark_end_w.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_inner_ne.png b/Resources/Textures/Decals/bricktile.rsi/dark_inner_ne.png index 7a9da46b87..6248a68824 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_inner_ne.png and b/Resources/Textures/Decals/bricktile.rsi/dark_inner_ne.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_inner_nw.png b/Resources/Textures/Decals/bricktile.rsi/dark_inner_nw.png index d0ccf15f35..69b3ad95d2 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_inner_nw.png and b/Resources/Textures/Decals/bricktile.rsi/dark_inner_nw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_inner_se.png b/Resources/Textures/Decals/bricktile.rsi/dark_inner_se.png index 70b3944d6c..ac69bf030e 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_inner_se.png and b/Resources/Textures/Decals/bricktile.rsi/dark_inner_se.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_inner_sw.png b/Resources/Textures/Decals/bricktile.rsi/dark_inner_sw.png index 9b74f97899..facef918ca 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_inner_sw.png and b/Resources/Textures/Decals/bricktile.rsi/dark_inner_sw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_line_e.png b/Resources/Textures/Decals/bricktile.rsi/dark_line_e.png index f2f3b75fd8..b6b2709934 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_line_e.png and b/Resources/Textures/Decals/bricktile.rsi/dark_line_e.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_line_n.png b/Resources/Textures/Decals/bricktile.rsi/dark_line_n.png index ebf08c0ac2..c8f9bb0e3d 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_line_n.png and b/Resources/Textures/Decals/bricktile.rsi/dark_line_n.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_line_s.png b/Resources/Textures/Decals/bricktile.rsi/dark_line_s.png index 5fc1efc7bb..c7ee329a07 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_line_s.png and b/Resources/Textures/Decals/bricktile.rsi/dark_line_s.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/dark_line_w.png b/Resources/Textures/Decals/bricktile.rsi/dark_line_w.png index 1bd29e1497..63293a953b 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/dark_line_w.png and b/Resources/Textures/Decals/bricktile.rsi/dark_line_w.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/meta.json b/Resources/Textures/Decals/bricktile.rsi/meta.json index 2658bbe3b3..0a4accc77a 100644 --- a/Resources/Textures/Decals/bricktile.rsi/meta.json +++ b/Resources/Textures/Decals/bricktile.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC0-1.0", - "copyright": "Made by github user @Morb0. Modified v2 by ko4erga (discord)", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Gersoon", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_box.png b/Resources/Textures/Decals/bricktile.rsi/steel_box.png index 124905eabf..db2a9d59b2 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_box.png and b/Resources/Textures/Decals/bricktile.rsi/steel_box.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_corner_ne.png b/Resources/Textures/Decals/bricktile.rsi/steel_corner_ne.png index f17f3c1999..41def2b689 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_corner_ne.png and b/Resources/Textures/Decals/bricktile.rsi/steel_corner_ne.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_corner_nw.png b/Resources/Textures/Decals/bricktile.rsi/steel_corner_nw.png index 86fa0e9e00..d57b6cfbcf 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_corner_nw.png and b/Resources/Textures/Decals/bricktile.rsi/steel_corner_nw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_corner_se.png b/Resources/Textures/Decals/bricktile.rsi/steel_corner_se.png index 203dce3f83..daffc02e84 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_corner_se.png and b/Resources/Textures/Decals/bricktile.rsi/steel_corner_se.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_corner_sw.png b/Resources/Textures/Decals/bricktile.rsi/steel_corner_sw.png index 9eb1cfc533..d035b578c6 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_corner_sw.png and b/Resources/Textures/Decals/bricktile.rsi/steel_corner_sw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_end_e.png b/Resources/Textures/Decals/bricktile.rsi/steel_end_e.png index fb05cd35c4..54c3908b6d 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_end_e.png and b/Resources/Textures/Decals/bricktile.rsi/steel_end_e.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_end_n.png b/Resources/Textures/Decals/bricktile.rsi/steel_end_n.png index e1e2e04c39..a9b6f0e329 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_end_n.png and b/Resources/Textures/Decals/bricktile.rsi/steel_end_n.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_end_s.png b/Resources/Textures/Decals/bricktile.rsi/steel_end_s.png index 0807027825..4c6d0c02a9 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_end_s.png and b/Resources/Textures/Decals/bricktile.rsi/steel_end_s.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_end_w.png b/Resources/Textures/Decals/bricktile.rsi/steel_end_w.png index 0eeb92f6f7..c96229f025 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_end_w.png and b/Resources/Textures/Decals/bricktile.rsi/steel_end_w.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_inner_ne.png b/Resources/Textures/Decals/bricktile.rsi/steel_inner_ne.png index 33f2919865..166b8ff67c 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_inner_ne.png and b/Resources/Textures/Decals/bricktile.rsi/steel_inner_ne.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_inner_nw.png b/Resources/Textures/Decals/bricktile.rsi/steel_inner_nw.png index 644f5448cd..c92751f4fb 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_inner_nw.png and b/Resources/Textures/Decals/bricktile.rsi/steel_inner_nw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_inner_se.png b/Resources/Textures/Decals/bricktile.rsi/steel_inner_se.png index 0f9072cc9e..8b88ef7320 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_inner_se.png and b/Resources/Textures/Decals/bricktile.rsi/steel_inner_se.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_inner_sw.png b/Resources/Textures/Decals/bricktile.rsi/steel_inner_sw.png index cca9bc52c4..5230167582 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_inner_sw.png and b/Resources/Textures/Decals/bricktile.rsi/steel_inner_sw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_line_e.png b/Resources/Textures/Decals/bricktile.rsi/steel_line_e.png index 10b910fe16..9211f98291 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_line_e.png and b/Resources/Textures/Decals/bricktile.rsi/steel_line_e.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_line_n.png b/Resources/Textures/Decals/bricktile.rsi/steel_line_n.png index 0a6d337048..19a7df5dbe 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_line_n.png and b/Resources/Textures/Decals/bricktile.rsi/steel_line_n.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_line_s.png b/Resources/Textures/Decals/bricktile.rsi/steel_line_s.png index 60bf358d65..ad153f64cb 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_line_s.png and b/Resources/Textures/Decals/bricktile.rsi/steel_line_s.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/steel_line_w.png b/Resources/Textures/Decals/bricktile.rsi/steel_line_w.png index aff9dabab6..77eb4cfe3d 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/steel_line_w.png and b/Resources/Textures/Decals/bricktile.rsi/steel_line_w.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_box.png b/Resources/Textures/Decals/bricktile.rsi/white_box.png index f95af9e5d6..6abc7c45ae 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_box.png and b/Resources/Textures/Decals/bricktile.rsi/white_box.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_corner_ne.png b/Resources/Textures/Decals/bricktile.rsi/white_corner_ne.png index 90cda6ec33..434606cdfc 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_corner_ne.png and b/Resources/Textures/Decals/bricktile.rsi/white_corner_ne.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_corner_nw.png b/Resources/Textures/Decals/bricktile.rsi/white_corner_nw.png index 3fe0a9634c..8b75637574 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_corner_nw.png and b/Resources/Textures/Decals/bricktile.rsi/white_corner_nw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_corner_se.png b/Resources/Textures/Decals/bricktile.rsi/white_corner_se.png index c4cdab83f1..4b67db2108 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_corner_se.png and b/Resources/Textures/Decals/bricktile.rsi/white_corner_se.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_corner_sw.png b/Resources/Textures/Decals/bricktile.rsi/white_corner_sw.png index a2157c064c..08baa7158a 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_corner_sw.png and b/Resources/Textures/Decals/bricktile.rsi/white_corner_sw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_end_e.png b/Resources/Textures/Decals/bricktile.rsi/white_end_e.png index 6b857400be..57102b1ab6 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_end_e.png and b/Resources/Textures/Decals/bricktile.rsi/white_end_e.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_end_n.png b/Resources/Textures/Decals/bricktile.rsi/white_end_n.png index 739e4dcdfc..8e12b1c83f 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_end_n.png and b/Resources/Textures/Decals/bricktile.rsi/white_end_n.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_end_s.png b/Resources/Textures/Decals/bricktile.rsi/white_end_s.png index 03b4eb7593..194817d193 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_end_s.png and b/Resources/Textures/Decals/bricktile.rsi/white_end_s.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_end_w.png b/Resources/Textures/Decals/bricktile.rsi/white_end_w.png index a982e97bec..3e85371299 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_end_w.png and b/Resources/Textures/Decals/bricktile.rsi/white_end_w.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_inner_ne.png b/Resources/Textures/Decals/bricktile.rsi/white_inner_ne.png index e8d326d08d..2cae1c5981 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_inner_ne.png and b/Resources/Textures/Decals/bricktile.rsi/white_inner_ne.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_inner_nw.png b/Resources/Textures/Decals/bricktile.rsi/white_inner_nw.png index 1b6e902e53..ec77674cf4 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_inner_nw.png and b/Resources/Textures/Decals/bricktile.rsi/white_inner_nw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_inner_se.png b/Resources/Textures/Decals/bricktile.rsi/white_inner_se.png index f41846183f..7f34378d62 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_inner_se.png and b/Resources/Textures/Decals/bricktile.rsi/white_inner_se.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_inner_sw.png b/Resources/Textures/Decals/bricktile.rsi/white_inner_sw.png index dfddc4c38c..aa7c496743 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_inner_sw.png and b/Resources/Textures/Decals/bricktile.rsi/white_inner_sw.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_line_e.png b/Resources/Textures/Decals/bricktile.rsi/white_line_e.png index 1d70a2d6ed..7a43540a3c 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_line_e.png and b/Resources/Textures/Decals/bricktile.rsi/white_line_e.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_line_n.png b/Resources/Textures/Decals/bricktile.rsi/white_line_n.png index cfd681dcbb..a31e768322 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_line_n.png and b/Resources/Textures/Decals/bricktile.rsi/white_line_n.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_line_s.png b/Resources/Textures/Decals/bricktile.rsi/white_line_s.png index c92bae8346..d19998f37a 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_line_s.png and b/Resources/Textures/Decals/bricktile.rsi/white_line_s.png differ diff --git a/Resources/Textures/Decals/bricktile.rsi/white_line_w.png b/Resources/Textures/Decals/bricktile.rsi/white_line_w.png index 4bdf37aac2..d8554cadbd 100644 Binary files a/Resources/Textures/Decals/bricktile.rsi/white_line_w.png and b/Resources/Textures/Decals/bricktile.rsi/white_line_w.png differ diff --git a/Resources/Textures/Decals/markings.rsi/arrows.png b/Resources/Textures/Decals/markings.rsi/arrows.png index 2925a9bb79..87f9c43e36 100644 Binary files a/Resources/Textures/Decals/markings.rsi/arrows.png and b/Resources/Textures/Decals/markings.rsi/arrows.png differ diff --git a/Resources/Textures/Decals/markings.rsi/arrows_greyscale.png b/Resources/Textures/Decals/markings.rsi/arrows_greyscale.png index 707fb41ee3..3ca39b47df 100644 Binary files a/Resources/Textures/Decals/markings.rsi/arrows_greyscale.png and b/Resources/Textures/Decals/markings.rsi/arrows_greyscale.png differ diff --git a/Resources/Textures/Decals/markings.rsi/bot.png b/Resources/Textures/Decals/markings.rsi/bot.png index f745fb8a66..c44929ff05 100644 Binary files a/Resources/Textures/Decals/markings.rsi/bot.png and b/Resources/Textures/Decals/markings.rsi/bot.png differ diff --git a/Resources/Textures/Decals/markings.rsi/bot_greyscale.png b/Resources/Textures/Decals/markings.rsi/bot_greyscale.png index b3e5189bd9..bff50885f3 100644 Binary files a/Resources/Textures/Decals/markings.rsi/bot_greyscale.png and b/Resources/Textures/Decals/markings.rsi/bot_greyscale.png differ diff --git a/Resources/Textures/Decals/markings.rsi/bot_left.png b/Resources/Textures/Decals/markings.rsi/bot_left.png index 8bbf972bcf..a778f3b313 100644 Binary files a/Resources/Textures/Decals/markings.rsi/bot_left.png and b/Resources/Textures/Decals/markings.rsi/bot_left.png differ diff --git a/Resources/Textures/Decals/markings.rsi/bot_left_greyscale.png b/Resources/Textures/Decals/markings.rsi/bot_left_greyscale.png index dc838a22cc..5d120efea3 100644 Binary files a/Resources/Textures/Decals/markings.rsi/bot_left_greyscale.png and b/Resources/Textures/Decals/markings.rsi/bot_left_greyscale.png differ diff --git a/Resources/Textures/Decals/markings.rsi/bot_right.png b/Resources/Textures/Decals/markings.rsi/bot_right.png index fe0534ac4e..68b53d3cb0 100644 Binary files a/Resources/Textures/Decals/markings.rsi/bot_right.png and b/Resources/Textures/Decals/markings.rsi/bot_right.png differ diff --git a/Resources/Textures/Decals/markings.rsi/bot_right_greyscale.png b/Resources/Textures/Decals/markings.rsi/bot_right_greyscale.png index 71cc55563c..9ee5edf18d 100644 Binary files a/Resources/Textures/Decals/markings.rsi/bot_right_greyscale.png and b/Resources/Textures/Decals/markings.rsi/bot_right_greyscale.png differ diff --git a/Resources/Textures/Decals/markings.rsi/box.png b/Resources/Textures/Decals/markings.rsi/box.png index 499964c500..c3bf180007 100644 Binary files a/Resources/Textures/Decals/markings.rsi/box.png and b/Resources/Textures/Decals/markings.rsi/box.png differ diff --git a/Resources/Textures/Decals/markings.rsi/box_greyscale.png b/Resources/Textures/Decals/markings.rsi/box_greyscale.png index 68a14242ed..822ad59787 100644 Binary files a/Resources/Textures/Decals/markings.rsi/box_greyscale.png and b/Resources/Textures/Decals/markings.rsi/box_greyscale.png differ diff --git a/Resources/Textures/Decals/markings.rsi/caution.png b/Resources/Textures/Decals/markings.rsi/caution.png index de18429ba3..2b4f108654 100644 Binary files a/Resources/Textures/Decals/markings.rsi/caution.png and b/Resources/Textures/Decals/markings.rsi/caution.png differ diff --git a/Resources/Textures/Decals/markings.rsi/caution_greyscale.png b/Resources/Textures/Decals/markings.rsi/caution_greyscale.png index 5015249e6c..774ee52264 100644 Binary files a/Resources/Textures/Decals/markings.rsi/caution_greyscale.png and b/Resources/Textures/Decals/markings.rsi/caution_greyscale.png differ diff --git a/Resources/Textures/Decals/markings.rsi/delivery.png b/Resources/Textures/Decals/markings.rsi/delivery.png index 838a7ce637..0126d23e6e 100644 Binary files a/Resources/Textures/Decals/markings.rsi/delivery.png and b/Resources/Textures/Decals/markings.rsi/delivery.png differ diff --git a/Resources/Textures/Decals/markings.rsi/delivery_greyscale.png b/Resources/Textures/Decals/markings.rsi/delivery_greyscale.png index 3b627e7152..f9b34f4e88 100644 Binary files a/Resources/Textures/Decals/markings.rsi/delivery_greyscale.png and b/Resources/Textures/Decals/markings.rsi/delivery_greyscale.png differ diff --git a/Resources/Textures/Decals/markings.rsi/loading_area.png b/Resources/Textures/Decals/markings.rsi/loading_area.png index 4d61201ff8..573b8e1c46 100644 Binary files a/Resources/Textures/Decals/markings.rsi/loading_area.png and b/Resources/Textures/Decals/markings.rsi/loading_area.png differ diff --git a/Resources/Textures/Decals/markings.rsi/loading_area_greyscale.png b/Resources/Textures/Decals/markings.rsi/loading_area_greyscale.png index d3e3cd9fc1..8f6b28aea8 100644 Binary files a/Resources/Textures/Decals/markings.rsi/loading_area_greyscale.png and b/Resources/Textures/Decals/markings.rsi/loading_area_greyscale.png differ diff --git a/Resources/Textures/Decals/markings.rsi/meta.json b/Resources/Textures/Decals/markings.rsi/meta.json index 0fb96db2dc..4dabc6ef5c 100644 --- a/Resources/Textures/Decals/markings.rsi/meta.json +++ b/Resources/Textures/Decals/markings.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "tgstation at 606005645d3a14c4439e5ce14785650121b22678", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Gersoon", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Decals/markings.rsi/standclear.png b/Resources/Textures/Decals/markings.rsi/standclear.png index 3b46ec5702..0e7146b18e 100644 Binary files a/Resources/Textures/Decals/markings.rsi/standclear.png and b/Resources/Textures/Decals/markings.rsi/standclear.png differ diff --git a/Resources/Textures/Decals/markings.rsi/standclear_greyscale.png b/Resources/Textures/Decals/markings.rsi/standclear_greyscale.png index a87b7b7035..fb463c8a9b 100644 Binary files a/Resources/Textures/Decals/markings.rsi/standclear_greyscale.png and b/Resources/Textures/Decals/markings.rsi/standclear_greyscale.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_box.png b/Resources/Textures/Decals/markings.rsi/warn_box.png index 593e5c0af9..ff1e9e472f 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_box.png and b/Resources/Textures/Decals/markings.rsi/warn_box.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_box_greyscale.png b/Resources/Textures/Decals/markings.rsi/warn_box_greyscale.png index f86be9c173..5cecf13b06 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_box_greyscale.png and b/Resources/Textures/Decals/markings.rsi/warn_box_greyscale.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_corner.png b/Resources/Textures/Decals/markings.rsi/warn_corner.png index 9554281555..adf903522d 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_corner.png and b/Resources/Textures/Decals/markings.rsi/warn_corner.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_corner_flipped.png b/Resources/Textures/Decals/markings.rsi/warn_corner_flipped.png index 68d6f1b7b7..746346447d 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_corner_flipped.png and b/Resources/Textures/Decals/markings.rsi/warn_corner_flipped.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_corner_flipped_greyscale.png b/Resources/Textures/Decals/markings.rsi/warn_corner_flipped_greyscale.png index 8b10583222..29dc5ac16d 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_corner_flipped_greyscale.png and b/Resources/Textures/Decals/markings.rsi/warn_corner_flipped_greyscale.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_corner_greyscale.png b/Resources/Textures/Decals/markings.rsi/warn_corner_greyscale.png index 4e930c2b24..d9c213a07b 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_corner_greyscale.png and b/Resources/Textures/Decals/markings.rsi/warn_corner_greyscale.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_corner_greyscale_ne.png b/Resources/Textures/Decals/markings.rsi/warn_corner_greyscale_ne.png index 4fb0ab4c50..6cec77682b 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_corner_greyscale_ne.png and b/Resources/Textures/Decals/markings.rsi/warn_corner_greyscale_ne.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_corner_greyscale_nw.png b/Resources/Textures/Decals/markings.rsi/warn_corner_greyscale_nw.png index 4c7b1beab8..4f975efa93 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_corner_greyscale_nw.png and b/Resources/Textures/Decals/markings.rsi/warn_corner_greyscale_nw.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_corner_greyscale_se.png b/Resources/Textures/Decals/markings.rsi/warn_corner_greyscale_se.png index 7a91a5e402..f444fa087f 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_corner_greyscale_se.png and b/Resources/Textures/Decals/markings.rsi/warn_corner_greyscale_se.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_corner_greyscale_sw.png b/Resources/Textures/Decals/markings.rsi/warn_corner_greyscale_sw.png index 80533dfd52..45b7383b48 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_corner_greyscale_sw.png and b/Resources/Textures/Decals/markings.rsi/warn_corner_greyscale_sw.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_corner_ne.png b/Resources/Textures/Decals/markings.rsi/warn_corner_ne.png index 822b14445f..cafe1736c6 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_corner_ne.png and b/Resources/Textures/Decals/markings.rsi/warn_corner_ne.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_corner_nw.png b/Resources/Textures/Decals/markings.rsi/warn_corner_nw.png index 85048ba7f9..f941e9019f 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_corner_nw.png and b/Resources/Textures/Decals/markings.rsi/warn_corner_nw.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_corner_se.png b/Resources/Textures/Decals/markings.rsi/warn_corner_se.png index 83638b9a77..746346447d 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_corner_se.png and b/Resources/Textures/Decals/markings.rsi/warn_corner_se.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_corner_small_greyscale_ne.png b/Resources/Textures/Decals/markings.rsi/warn_corner_small_greyscale_ne.png index 021a0a6157..22e19f38fe 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_corner_small_greyscale_ne.png and b/Resources/Textures/Decals/markings.rsi/warn_corner_small_greyscale_ne.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_corner_small_greyscale_nw.png b/Resources/Textures/Decals/markings.rsi/warn_corner_small_greyscale_nw.png index bdaff07a19..b56d3dff15 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_corner_small_greyscale_nw.png and b/Resources/Textures/Decals/markings.rsi/warn_corner_small_greyscale_nw.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_corner_small_greyscale_se.png b/Resources/Textures/Decals/markings.rsi/warn_corner_small_greyscale_se.png index 45eb26df70..82fbc96f0a 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_corner_small_greyscale_se.png and b/Resources/Textures/Decals/markings.rsi/warn_corner_small_greyscale_se.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_corner_small_greyscale_sw.png b/Resources/Textures/Decals/markings.rsi/warn_corner_small_greyscale_sw.png index 0ef46e331c..c424330f90 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_corner_small_greyscale_sw.png and b/Resources/Textures/Decals/markings.rsi/warn_corner_small_greyscale_sw.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_corner_small_ne.png b/Resources/Textures/Decals/markings.rsi/warn_corner_small_ne.png index 04e6ab26f1..0b5e73ccf9 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_corner_small_ne.png and b/Resources/Textures/Decals/markings.rsi/warn_corner_small_ne.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_corner_small_nw.png b/Resources/Textures/Decals/markings.rsi/warn_corner_small_nw.png index f6ae326eed..fdb45fc359 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_corner_small_nw.png and b/Resources/Textures/Decals/markings.rsi/warn_corner_small_nw.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_corner_small_se.png b/Resources/Textures/Decals/markings.rsi/warn_corner_small_se.png index a739097ee2..1561f6e8ed 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_corner_small_se.png and b/Resources/Textures/Decals/markings.rsi/warn_corner_small_se.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_corner_small_sw.png b/Resources/Textures/Decals/markings.rsi/warn_corner_small_sw.png index de7707c07f..3ea64c243a 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_corner_small_sw.png and b/Resources/Textures/Decals/markings.rsi/warn_corner_small_sw.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_corner_sw.png b/Resources/Textures/Decals/markings.rsi/warn_corner_sw.png index 7de2b46ae8..adf903522d 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_corner_sw.png and b/Resources/Textures/Decals/markings.rsi/warn_corner_sw.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_end.png b/Resources/Textures/Decals/markings.rsi/warn_end.png index 1f9fe52857..0a62c7facd 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_end.png and b/Resources/Textures/Decals/markings.rsi/warn_end.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_end_e.png b/Resources/Textures/Decals/markings.rsi/warn_end_e.png index 3607f5c6b2..075f157877 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_end_e.png and b/Resources/Textures/Decals/markings.rsi/warn_end_e.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_end_greyscale.png b/Resources/Textures/Decals/markings.rsi/warn_end_greyscale.png index b7e1da2682..ee8ca41eb5 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_end_greyscale.png and b/Resources/Textures/Decals/markings.rsi/warn_end_greyscale.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_end_greyscale_e.png b/Resources/Textures/Decals/markings.rsi/warn_end_greyscale_e.png index 71bdaad4f7..d17c9a366e 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_end_greyscale_e.png and b/Resources/Textures/Decals/markings.rsi/warn_end_greyscale_e.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_end_greyscale_n.png b/Resources/Textures/Decals/markings.rsi/warn_end_greyscale_n.png index 1283d4e1a7..c6f706be75 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_end_greyscale_n.png and b/Resources/Textures/Decals/markings.rsi/warn_end_greyscale_n.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_end_greyscale_s.png b/Resources/Textures/Decals/markings.rsi/warn_end_greyscale_s.png index 40d563517e..2d2b933e12 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_end_greyscale_s.png and b/Resources/Textures/Decals/markings.rsi/warn_end_greyscale_s.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_end_greyscale_w.png b/Resources/Textures/Decals/markings.rsi/warn_end_greyscale_w.png index 07b3062943..59a616ff16 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_end_greyscale_w.png and b/Resources/Textures/Decals/markings.rsi/warn_end_greyscale_w.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_end_n.png b/Resources/Textures/Decals/markings.rsi/warn_end_n.png index a614e90661..d11aa36457 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_end_n.png and b/Resources/Textures/Decals/markings.rsi/warn_end_n.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_end_s.png b/Resources/Textures/Decals/markings.rsi/warn_end_s.png index 4881a4d9d1..0a62c7facd 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_end_s.png and b/Resources/Textures/Decals/markings.rsi/warn_end_s.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_end_w.png b/Resources/Textures/Decals/markings.rsi/warn_end_w.png index a46fb50a3c..fe82e6b579 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_end_w.png and b/Resources/Textures/Decals/markings.rsi/warn_end_w.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_full.png b/Resources/Textures/Decals/markings.rsi/warn_full.png index a417990d20..895a8a30ee 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_full.png and b/Resources/Textures/Decals/markings.rsi/warn_full.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_full_greyscale.png b/Resources/Textures/Decals/markings.rsi/warn_full_greyscale.png index 3de982e501..645211cec8 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_full_greyscale.png and b/Resources/Textures/Decals/markings.rsi/warn_full_greyscale.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_line_e.png b/Resources/Textures/Decals/markings.rsi/warn_line_e.png index a4cc34236d..84df055e78 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_line_e.png and b/Resources/Textures/Decals/markings.rsi/warn_line_e.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_line_greyscale_e.png b/Resources/Textures/Decals/markings.rsi/warn_line_greyscale_e.png index 4a51a3cda2..5d7e24ed39 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_line_greyscale_e.png and b/Resources/Textures/Decals/markings.rsi/warn_line_greyscale_e.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_line_greyscale_n.png b/Resources/Textures/Decals/markings.rsi/warn_line_greyscale_n.png index 20656441b0..b664767b07 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_line_greyscale_n.png and b/Resources/Textures/Decals/markings.rsi/warn_line_greyscale_n.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_line_greyscale_s.png b/Resources/Textures/Decals/markings.rsi/warn_line_greyscale_s.png index a8595a25fa..d199790a4b 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_line_greyscale_s.png and b/Resources/Textures/Decals/markings.rsi/warn_line_greyscale_s.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_line_greyscale_w.png b/Resources/Textures/Decals/markings.rsi/warn_line_greyscale_w.png index 86869ec3c8..ad354ff043 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_line_greyscale_w.png and b/Resources/Textures/Decals/markings.rsi/warn_line_greyscale_w.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_line_n.png b/Resources/Textures/Decals/markings.rsi/warn_line_n.png index 9e879a2617..7fba6e3c88 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_line_n.png and b/Resources/Textures/Decals/markings.rsi/warn_line_n.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_line_s.png b/Resources/Textures/Decals/markings.rsi/warn_line_s.png index 3a516b258c..84f034e6a7 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_line_s.png and b/Resources/Textures/Decals/markings.rsi/warn_line_s.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warn_line_w.png b/Resources/Textures/Decals/markings.rsi/warn_line_w.png index 5056f1dd08..980db3268d 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warn_line_w.png and b/Resources/Textures/Decals/markings.rsi/warn_line_w.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warningline.png b/Resources/Textures/Decals/markings.rsi/warningline.png index 5d736b9937..4a11c2b5dc 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warningline.png and b/Resources/Textures/Decals/markings.rsi/warningline.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warningline_greyscale.png b/Resources/Textures/Decals/markings.rsi/warningline_greyscale.png index 1cfbf4bd02..977154305e 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warningline_greyscale.png and b/Resources/Textures/Decals/markings.rsi/warningline_greyscale.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warninglinecorner.png b/Resources/Textures/Decals/markings.rsi/warninglinecorner.png index fa87b32791..1561f6e8ed 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warninglinecorner.png and b/Resources/Textures/Decals/markings.rsi/warninglinecorner.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warninglinecorner_flipped.png b/Resources/Textures/Decals/markings.rsi/warninglinecorner_flipped.png index 48083acd28..3ea64c243a 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warninglinecorner_flipped.png and b/Resources/Textures/Decals/markings.rsi/warninglinecorner_flipped.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warninglinecorner_flipped_greyscale.png b/Resources/Textures/Decals/markings.rsi/warninglinecorner_flipped_greyscale.png index 631b1b6bbc..60ceb708c0 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warninglinecorner_flipped_greyscale.png and b/Resources/Textures/Decals/markings.rsi/warninglinecorner_flipped_greyscale.png differ diff --git a/Resources/Textures/Decals/markings.rsi/warninglinecorner_greyscale.png b/Resources/Textures/Decals/markings.rsi/warninglinecorner_greyscale.png index 617a1e876d..fde1a5b647 100644 Binary files a/Resources/Textures/Decals/markings.rsi/warninglinecorner_greyscale.png and b/Resources/Textures/Decals/markings.rsi/warninglinecorner_greyscale.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/dark_box.png b/Resources/Textures/Decals/minitile.rsi/dark_box.png index 87053060a3..1923f0bc85 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/dark_box.png and b/Resources/Textures/Decals/minitile.rsi/dark_box.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/dark_corner_ne.png b/Resources/Textures/Decals/minitile.rsi/dark_corner_ne.png index 044d3ee58a..4291c6f46b 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/dark_corner_ne.png and b/Resources/Textures/Decals/minitile.rsi/dark_corner_ne.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/dark_corner_nw.png b/Resources/Textures/Decals/minitile.rsi/dark_corner_nw.png index 92590b4a51..4444b3cd0d 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/dark_corner_nw.png and b/Resources/Textures/Decals/minitile.rsi/dark_corner_nw.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/dark_corner_se.png b/Resources/Textures/Decals/minitile.rsi/dark_corner_se.png index 8fe46845e1..011f10a62b 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/dark_corner_se.png and b/Resources/Textures/Decals/minitile.rsi/dark_corner_se.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/dark_corner_sw.png b/Resources/Textures/Decals/minitile.rsi/dark_corner_sw.png index 48e3191936..8a6f343e18 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/dark_corner_sw.png and b/Resources/Textures/Decals/minitile.rsi/dark_corner_sw.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/dark_end_e.png b/Resources/Textures/Decals/minitile.rsi/dark_end_e.png index 82b0087a03..560c1a12bd 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/dark_end_e.png and b/Resources/Textures/Decals/minitile.rsi/dark_end_e.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/dark_end_n.png b/Resources/Textures/Decals/minitile.rsi/dark_end_n.png index b642ce1bf4..216e58eb86 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/dark_end_n.png and b/Resources/Textures/Decals/minitile.rsi/dark_end_n.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/dark_end_s.png b/Resources/Textures/Decals/minitile.rsi/dark_end_s.png index 114b1ac821..c8d8199407 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/dark_end_s.png and b/Resources/Textures/Decals/minitile.rsi/dark_end_s.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/dark_end_w.png b/Resources/Textures/Decals/minitile.rsi/dark_end_w.png index d9099511d8..8e0aeacbbc 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/dark_end_w.png and b/Resources/Textures/Decals/minitile.rsi/dark_end_w.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/dark_inner_ne.png b/Resources/Textures/Decals/minitile.rsi/dark_inner_ne.png index 7dac62620b..13415f306b 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/dark_inner_ne.png and b/Resources/Textures/Decals/minitile.rsi/dark_inner_ne.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/dark_inner_nw.png b/Resources/Textures/Decals/minitile.rsi/dark_inner_nw.png index e3ef116630..925fb4f0fc 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/dark_inner_nw.png and b/Resources/Textures/Decals/minitile.rsi/dark_inner_nw.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/dark_inner_se.png b/Resources/Textures/Decals/minitile.rsi/dark_inner_se.png index 3ddb20a5f4..1f1e388de7 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/dark_inner_se.png and b/Resources/Textures/Decals/minitile.rsi/dark_inner_se.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/dark_inner_sw.png b/Resources/Textures/Decals/minitile.rsi/dark_inner_sw.png index cc8919b283..7a6c179181 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/dark_inner_sw.png and b/Resources/Textures/Decals/minitile.rsi/dark_inner_sw.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/dark_line_e.png b/Resources/Textures/Decals/minitile.rsi/dark_line_e.png index 544580f150..40e63d2bc5 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/dark_line_e.png and b/Resources/Textures/Decals/minitile.rsi/dark_line_e.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/dark_line_n.png b/Resources/Textures/Decals/minitile.rsi/dark_line_n.png index ba8bb6a176..478bbf00d5 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/dark_line_n.png and b/Resources/Textures/Decals/minitile.rsi/dark_line_n.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/dark_line_s.png b/Resources/Textures/Decals/minitile.rsi/dark_line_s.png index d2419e8cd3..7a24642924 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/dark_line_s.png and b/Resources/Textures/Decals/minitile.rsi/dark_line_s.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/dark_line_w.png b/Resources/Textures/Decals/minitile.rsi/dark_line_w.png index 9f809bd964..ff8343ee78 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/dark_line_w.png and b/Resources/Textures/Decals/minitile.rsi/dark_line_w.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/meta.json b/Resources/Textures/Decals/minitile.rsi/meta.json index 50dd3a3a1b..0a4accc77a 100644 --- a/Resources/Textures/Decals/minitile.rsi/meta.json +++ b/Resources/Textures/Decals/minitile.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC0-1.0", - "copyright": "Made by github user @Morb0", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Gersoon", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Decals/minitile.rsi/steel_box.png b/Resources/Textures/Decals/minitile.rsi/steel_box.png index 65bfc266e9..82ae5966ef 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/steel_box.png and b/Resources/Textures/Decals/minitile.rsi/steel_box.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/steel_corner_ne.png b/Resources/Textures/Decals/minitile.rsi/steel_corner_ne.png index 0eaa625b81..9fb46edbda 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/steel_corner_ne.png and b/Resources/Textures/Decals/minitile.rsi/steel_corner_ne.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/steel_corner_nw.png b/Resources/Textures/Decals/minitile.rsi/steel_corner_nw.png index 8216073046..e7e8337af2 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/steel_corner_nw.png and b/Resources/Textures/Decals/minitile.rsi/steel_corner_nw.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/steel_corner_se.png b/Resources/Textures/Decals/minitile.rsi/steel_corner_se.png index 2535334eab..fbca7ad08e 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/steel_corner_se.png and b/Resources/Textures/Decals/minitile.rsi/steel_corner_se.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/steel_corner_sw.png b/Resources/Textures/Decals/minitile.rsi/steel_corner_sw.png index 81f8f26353..c0b76d2444 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/steel_corner_sw.png and b/Resources/Textures/Decals/minitile.rsi/steel_corner_sw.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/steel_end_e.png b/Resources/Textures/Decals/minitile.rsi/steel_end_e.png index a5bd0f3807..b060f6928e 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/steel_end_e.png and b/Resources/Textures/Decals/minitile.rsi/steel_end_e.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/steel_end_n.png b/Resources/Textures/Decals/minitile.rsi/steel_end_n.png index 5ca7666458..fb08ffee33 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/steel_end_n.png and b/Resources/Textures/Decals/minitile.rsi/steel_end_n.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/steel_end_s.png b/Resources/Textures/Decals/minitile.rsi/steel_end_s.png index 58edc11fa1..c99a666434 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/steel_end_s.png and b/Resources/Textures/Decals/minitile.rsi/steel_end_s.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/steel_end_w.png b/Resources/Textures/Decals/minitile.rsi/steel_end_w.png index b03aa59c9c..b37e4f348a 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/steel_end_w.png and b/Resources/Textures/Decals/minitile.rsi/steel_end_w.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/steel_inner_ne.png b/Resources/Textures/Decals/minitile.rsi/steel_inner_ne.png index b32452a8db..ef4d0e744d 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/steel_inner_ne.png and b/Resources/Textures/Decals/minitile.rsi/steel_inner_ne.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/steel_inner_nw.png b/Resources/Textures/Decals/minitile.rsi/steel_inner_nw.png index 0bda9148f1..a3abc052a2 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/steel_inner_nw.png and b/Resources/Textures/Decals/minitile.rsi/steel_inner_nw.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/steel_inner_se.png b/Resources/Textures/Decals/minitile.rsi/steel_inner_se.png index de8f47511a..d32d25726f 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/steel_inner_se.png and b/Resources/Textures/Decals/minitile.rsi/steel_inner_se.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/steel_inner_sw.png b/Resources/Textures/Decals/minitile.rsi/steel_inner_sw.png index bdee5ab5e0..ba883c4380 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/steel_inner_sw.png and b/Resources/Textures/Decals/minitile.rsi/steel_inner_sw.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/steel_line_e.png b/Resources/Textures/Decals/minitile.rsi/steel_line_e.png index ba161c6f18..78f07c1e0d 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/steel_line_e.png and b/Resources/Textures/Decals/minitile.rsi/steel_line_e.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/steel_line_n.png b/Resources/Textures/Decals/minitile.rsi/steel_line_n.png index f73aa627b9..efe3e1b1b6 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/steel_line_n.png and b/Resources/Textures/Decals/minitile.rsi/steel_line_n.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/steel_line_s.png b/Resources/Textures/Decals/minitile.rsi/steel_line_s.png index fe8804e8c9..061415b925 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/steel_line_s.png and b/Resources/Textures/Decals/minitile.rsi/steel_line_s.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/steel_line_w.png b/Resources/Textures/Decals/minitile.rsi/steel_line_w.png index 37f152f7ff..498380c0fb 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/steel_line_w.png and b/Resources/Textures/Decals/minitile.rsi/steel_line_w.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/white_box.png b/Resources/Textures/Decals/minitile.rsi/white_box.png index b8f0174c49..b7a2f1b9de 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/white_box.png and b/Resources/Textures/Decals/minitile.rsi/white_box.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/white_corner_ne.png b/Resources/Textures/Decals/minitile.rsi/white_corner_ne.png index f0342975d2..69de695318 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/white_corner_ne.png and b/Resources/Textures/Decals/minitile.rsi/white_corner_ne.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/white_corner_nw.png b/Resources/Textures/Decals/minitile.rsi/white_corner_nw.png index 8d751af952..596e762de4 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/white_corner_nw.png and b/Resources/Textures/Decals/minitile.rsi/white_corner_nw.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/white_corner_se.png b/Resources/Textures/Decals/minitile.rsi/white_corner_se.png index 54eea747f0..747b3f4325 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/white_corner_se.png and b/Resources/Textures/Decals/minitile.rsi/white_corner_se.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/white_corner_sw.png b/Resources/Textures/Decals/minitile.rsi/white_corner_sw.png index b57417997e..45ddf9d51e 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/white_corner_sw.png and b/Resources/Textures/Decals/minitile.rsi/white_corner_sw.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/white_end_e.png b/Resources/Textures/Decals/minitile.rsi/white_end_e.png index e256a86235..d72364eb24 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/white_end_e.png and b/Resources/Textures/Decals/minitile.rsi/white_end_e.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/white_end_n.png b/Resources/Textures/Decals/minitile.rsi/white_end_n.png index a8ba557477..13b472012c 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/white_end_n.png and b/Resources/Textures/Decals/minitile.rsi/white_end_n.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/white_end_s.png b/Resources/Textures/Decals/minitile.rsi/white_end_s.png index 55823a7096..33c870789a 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/white_end_s.png and b/Resources/Textures/Decals/minitile.rsi/white_end_s.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/white_end_w.png b/Resources/Textures/Decals/minitile.rsi/white_end_w.png index d570b8c404..7c1bf11eb0 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/white_end_w.png and b/Resources/Textures/Decals/minitile.rsi/white_end_w.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/white_inner_ne.png b/Resources/Textures/Decals/minitile.rsi/white_inner_ne.png index 76733f6c22..b013207c94 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/white_inner_ne.png and b/Resources/Textures/Decals/minitile.rsi/white_inner_ne.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/white_inner_nw.png b/Resources/Textures/Decals/minitile.rsi/white_inner_nw.png index b368cd5731..09606feb76 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/white_inner_nw.png and b/Resources/Textures/Decals/minitile.rsi/white_inner_nw.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/white_inner_se.png b/Resources/Textures/Decals/minitile.rsi/white_inner_se.png index 819ebfa14d..cc9e105eda 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/white_inner_se.png and b/Resources/Textures/Decals/minitile.rsi/white_inner_se.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/white_inner_sw.png b/Resources/Textures/Decals/minitile.rsi/white_inner_sw.png index dbcb0a02d4..0a00776f57 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/white_inner_sw.png and b/Resources/Textures/Decals/minitile.rsi/white_inner_sw.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/white_line_e.png b/Resources/Textures/Decals/minitile.rsi/white_line_e.png index 8b81f03389..02b6215708 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/white_line_e.png and b/Resources/Textures/Decals/minitile.rsi/white_line_e.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/white_line_n.png b/Resources/Textures/Decals/minitile.rsi/white_line_n.png index be0a78eb00..ce0f25c2cf 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/white_line_n.png and b/Resources/Textures/Decals/minitile.rsi/white_line_n.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/white_line_s.png b/Resources/Textures/Decals/minitile.rsi/white_line_s.png index d825870a08..b9ed7b4cda 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/white_line_s.png and b/Resources/Textures/Decals/minitile.rsi/white_line_s.png differ diff --git a/Resources/Textures/Decals/minitile.rsi/white_line_w.png b/Resources/Textures/Decals/minitile.rsi/white_line_w.png index 53b8223cb1..3b79644703 100644 Binary files a/Resources/Textures/Decals/minitile.rsi/white_line_w.png and b/Resources/Textures/Decals/minitile.rsi/white_line_w.png differ diff --git a/Resources/Textures/Decals/wood_trim.rsi/meta.json b/Resources/Textures/Decals/wood_trim.rsi/meta.json index 3f4fd3e9f9..41af33fe94 100644 --- a/Resources/Textures/Decals/wood_trim.rsi/meta.json +++ b/Resources/Textures/Decals/wood_trim.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC0-1.0", - "copyright": "Made by github user @moonheart08", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Gersoon", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Decals/wood_trim.rsi/thin_box.png b/Resources/Textures/Decals/wood_trim.rsi/thin_box.png index dc1386e18d..3c1e3b9bd9 100644 Binary files a/Resources/Textures/Decals/wood_trim.rsi/thin_box.png and b/Resources/Textures/Decals/wood_trim.rsi/thin_box.png differ diff --git a/Resources/Textures/Decals/wood_trim.rsi/thin_corner_ne.png b/Resources/Textures/Decals/wood_trim.rsi/thin_corner_ne.png index b297876ee3..cf98bb4947 100644 Binary files a/Resources/Textures/Decals/wood_trim.rsi/thin_corner_ne.png and b/Resources/Textures/Decals/wood_trim.rsi/thin_corner_ne.png differ diff --git a/Resources/Textures/Decals/wood_trim.rsi/thin_corner_nw.png b/Resources/Textures/Decals/wood_trim.rsi/thin_corner_nw.png index 40f9451965..53af7de963 100644 Binary files a/Resources/Textures/Decals/wood_trim.rsi/thin_corner_nw.png and b/Resources/Textures/Decals/wood_trim.rsi/thin_corner_nw.png differ diff --git a/Resources/Textures/Decals/wood_trim.rsi/thin_corner_se.png b/Resources/Textures/Decals/wood_trim.rsi/thin_corner_se.png index d15d38127d..39d8d3ac70 100644 Binary files a/Resources/Textures/Decals/wood_trim.rsi/thin_corner_se.png and b/Resources/Textures/Decals/wood_trim.rsi/thin_corner_se.png differ diff --git a/Resources/Textures/Decals/wood_trim.rsi/thin_corner_sw.png b/Resources/Textures/Decals/wood_trim.rsi/thin_corner_sw.png index 5f168e30ea..4e87c569db 100644 Binary files a/Resources/Textures/Decals/wood_trim.rsi/thin_corner_sw.png and b/Resources/Textures/Decals/wood_trim.rsi/thin_corner_sw.png differ diff --git a/Resources/Textures/Decals/wood_trim.rsi/thin_end_e.png b/Resources/Textures/Decals/wood_trim.rsi/thin_end_e.png index 982859c26e..737c62f95c 100644 Binary files a/Resources/Textures/Decals/wood_trim.rsi/thin_end_e.png and b/Resources/Textures/Decals/wood_trim.rsi/thin_end_e.png differ diff --git a/Resources/Textures/Decals/wood_trim.rsi/thin_end_n.png b/Resources/Textures/Decals/wood_trim.rsi/thin_end_n.png index b97089ea62..b72281c6fa 100644 Binary files a/Resources/Textures/Decals/wood_trim.rsi/thin_end_n.png and b/Resources/Textures/Decals/wood_trim.rsi/thin_end_n.png differ diff --git a/Resources/Textures/Decals/wood_trim.rsi/thin_end_s.png b/Resources/Textures/Decals/wood_trim.rsi/thin_end_s.png index 36b0869b25..fcaa1a9924 100644 Binary files a/Resources/Textures/Decals/wood_trim.rsi/thin_end_s.png and b/Resources/Textures/Decals/wood_trim.rsi/thin_end_s.png differ diff --git a/Resources/Textures/Decals/wood_trim.rsi/thin_end_w.png b/Resources/Textures/Decals/wood_trim.rsi/thin_end_w.png index 5ee96b16a9..1da6b94033 100644 Binary files a/Resources/Textures/Decals/wood_trim.rsi/thin_end_w.png and b/Resources/Textures/Decals/wood_trim.rsi/thin_end_w.png differ diff --git a/Resources/Textures/Decals/wood_trim.rsi/thin_inner_ne.png b/Resources/Textures/Decals/wood_trim.rsi/thin_inner_ne.png index bdba4f2134..9cf83c6aad 100644 Binary files a/Resources/Textures/Decals/wood_trim.rsi/thin_inner_ne.png and b/Resources/Textures/Decals/wood_trim.rsi/thin_inner_ne.png differ diff --git a/Resources/Textures/Decals/wood_trim.rsi/thin_inner_nw.png b/Resources/Textures/Decals/wood_trim.rsi/thin_inner_nw.png index 5c01b3f12e..303196dab6 100644 Binary files a/Resources/Textures/Decals/wood_trim.rsi/thin_inner_nw.png and b/Resources/Textures/Decals/wood_trim.rsi/thin_inner_nw.png differ diff --git a/Resources/Textures/Decals/wood_trim.rsi/thin_inner_se.png b/Resources/Textures/Decals/wood_trim.rsi/thin_inner_se.png index f7d5d7ff3f..abb424c006 100644 Binary files a/Resources/Textures/Decals/wood_trim.rsi/thin_inner_se.png and b/Resources/Textures/Decals/wood_trim.rsi/thin_inner_se.png differ diff --git a/Resources/Textures/Decals/wood_trim.rsi/thin_inner_sw.png b/Resources/Textures/Decals/wood_trim.rsi/thin_inner_sw.png index 5885cf2b94..1bc0060d29 100644 Binary files a/Resources/Textures/Decals/wood_trim.rsi/thin_inner_sw.png and b/Resources/Textures/Decals/wood_trim.rsi/thin_inner_sw.png differ diff --git a/Resources/Textures/Decals/wood_trim.rsi/thin_line_e.png b/Resources/Textures/Decals/wood_trim.rsi/thin_line_e.png index 68109155fc..daa003935f 100644 Binary files a/Resources/Textures/Decals/wood_trim.rsi/thin_line_e.png and b/Resources/Textures/Decals/wood_trim.rsi/thin_line_e.png differ diff --git a/Resources/Textures/Decals/wood_trim.rsi/thin_line_n.png b/Resources/Textures/Decals/wood_trim.rsi/thin_line_n.png index 2674126eae..4bc15e83a9 100644 Binary files a/Resources/Textures/Decals/wood_trim.rsi/thin_line_n.png and b/Resources/Textures/Decals/wood_trim.rsi/thin_line_n.png differ diff --git a/Resources/Textures/Decals/wood_trim.rsi/thin_line_s.png b/Resources/Textures/Decals/wood_trim.rsi/thin_line_s.png index 21250807b6..a99188dc0a 100644 Binary files a/Resources/Textures/Decals/wood_trim.rsi/thin_line_s.png and b/Resources/Textures/Decals/wood_trim.rsi/thin_line_s.png differ diff --git a/Resources/Textures/Decals/wood_trim.rsi/thin_line_w.png b/Resources/Textures/Decals/wood_trim.rsi/thin_line_w.png index b0b818ca33..64884bcea1 100644 Binary files a/Resources/Textures/Decals/wood_trim.rsi/thin_line_w.png and b/Resources/Textures/Decals/wood_trim.rsi/thin_line_w.png differ diff --git a/Resources/Textures/DeltaV/Objects/Devices/cartridge.rsi/cart-mail.png b/Resources/Textures/DeltaV/Objects/Devices/cartridge.rsi/cart-mail.png new file mode 100644 index 0000000000..5734abb6fd Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Devices/cartridge.rsi/cart-mail.png differ diff --git a/Resources/Textures/DeltaV/Objects/Devices/cartridge.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Devices/cartridge.rsi/meta.json index 293870d3a3..4a4ba3352f 100644 --- a/Resources/Textures/DeltaV/Objects/Devices/cartridge.rsi/meta.json +++ b/Resources/Textures/DeltaV/Objects/Devices/cartridge.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Timfa", + "copyright": "Timfa, plus edits by portfiend", "size": { "x": 32, "y": 32 @@ -9,6 +9,9 @@ "states": [ { "name": "cart-cri" + }, + { + "name": "cart-mail" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/bolted_open_unlit.png b/Resources/Textures/DeltaV/Structures/Doors/Airlocks/Glass/justice.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/bolted_open_unlit.png rename to Resources/Textures/DeltaV/Structures/Doors/Airlocks/Glass/justice.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/DeltaV/Structures/Doors/Airlocks/Glass/justice.rsi/closed_unlit.png b/Resources/Textures/DeltaV/Structures/Doors/Airlocks/Glass/justice.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/DeltaV/Structures/Doors/Airlocks/Glass/justice.rsi/closed_unlit.png and b/Resources/Textures/DeltaV/Structures/Doors/Airlocks/Glass/justice.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/emergency_open_unlit.png b/Resources/Textures/DeltaV/Structures/Doors/Airlocks/Glass/justice.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/emergency_open_unlit.png rename to Resources/Textures/DeltaV/Structures/Doors/Airlocks/Glass/justice.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/DeltaV/Structures/Doors/Airlocks/Glass/justice.rsi/meta.json b/Resources/Textures/DeltaV/Structures/Doors/Airlocks/Glass/justice.rsi/meta.json index e4c020ff61..7d8b2665cf 100644 --- a/Resources/Textures/DeltaV/Structures/Doors/Airlocks/Glass/justice.rsi/meta.json +++ b/Resources/Textures/DeltaV/Structures/Doors/Airlocks/Glass/justice.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 and recolored by leonardo_dabepis (Discord)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 and recolored by leonardo_dabepis (Discord). Modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/open_unlit.png b/Resources/Textures/DeltaV/Structures/Doors/Airlocks/Glass/justice.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/open_unlit.png rename to Resources/Textures/DeltaV/Structures/Doors/Airlocks/Glass/justice.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/bolted_open_unlit.png b/Resources/Textures/DeltaV/Structures/Doors/Airlocks/Standard/justice.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/bolted_open_unlit.png rename to Resources/Textures/DeltaV/Structures/Doors/Airlocks/Standard/justice.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/DeltaV/Structures/Doors/Airlocks/Standard/justice.rsi/closed_unlit.png b/Resources/Textures/DeltaV/Structures/Doors/Airlocks/Standard/justice.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/DeltaV/Structures/Doors/Airlocks/Standard/justice.rsi/closed_unlit.png and b/Resources/Textures/DeltaV/Structures/Doors/Airlocks/Standard/justice.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/emergency_open_unlit.png b/Resources/Textures/DeltaV/Structures/Doors/Airlocks/Standard/justice.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/emergency_open_unlit.png rename to Resources/Textures/DeltaV/Structures/Doors/Airlocks/Standard/justice.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/DeltaV/Structures/Doors/Airlocks/Standard/justice.rsi/meta.json b/Resources/Textures/DeltaV/Structures/Doors/Airlocks/Standard/justice.rsi/meta.json index e4c020ff61..7d8b2665cf 100644 --- a/Resources/Textures/DeltaV/Structures/Doors/Airlocks/Standard/justice.rsi/meta.json +++ b/Resources/Textures/DeltaV/Structures/Doors/Airlocks/Standard/justice.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 and recolored by leonardo_dabepis (Discord)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 and recolored by leonardo_dabepis (Discord). Modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/open_unlit.png b/Resources/Textures/DeltaV/Structures/Doors/Airlocks/Standard/justice.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/open_unlit.png rename to Resources/Textures/DeltaV/Structures/Doors/Airlocks/Standard/justice.rsi/open_unlit.png diff --git a/Resources/Textures/Effects/creampie.rsi/creampie_vox.png b/Resources/Textures/Effects/creampie.rsi/creampie_vox.png new file mode 100644 index 0000000000..dfe199b0c8 Binary files /dev/null and b/Resources/Textures/Effects/creampie.rsi/creampie_vox.png differ diff --git a/Resources/Textures/Effects/creampie.rsi/meta.json b/Resources/Textures/Effects/creampie.rsi/meta.json index 54e0cc73c2..8db8a77945 100644 --- a/Resources/Textures/Effects/creampie.rsi/meta.json +++ b/Resources/Textures/Effects/creampie.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/tgstation/tgstation at 0d9c9a8233dfc3fc55edc538955a761a6328bee0. creampie_moth by MilenVolf, creampie_arachnid by PixelTheKermit (Github)", + "copyright": "Taken from https://github.com/tgstation/tgstation at 0d9c9a8233dfc3fc55edc538955a761a6328bee0. creampie_moth by MilenVolf, creampie_arachnid by PixelTheKermit (Github), creampie_vox by Errant", "size": { "x": 32, "y": 32 @@ -66,6 +66,10 @@ "name": "creampie_standborg", "directions": 4 }, + { + "name": "creampie_vox", + "directions": 4 + }, { "name": "creampie_xeno_crit" }, diff --git a/Resources/Textures/Effects/ssd.rsi/default0.png b/Resources/Textures/Effects/ssd.rsi/default0.png index bfd8c84da9..962a7298cf 100644 Binary files a/Resources/Textures/Effects/ssd.rsi/default0.png and b/Resources/Textures/Effects/ssd.rsi/default0.png differ diff --git a/Resources/Textures/Effects/ssd.rsi/meta.json b/Resources/Textures/Effects/ssd.rsi/meta.json index 6c5e7b24e3..6e9db0d8de 100644 --- a/Resources/Textures/Effects/ssd.rsi/meta.json +++ b/Resources/Textures/Effects/ssd.rsi/meta.json @@ -1,10 +1,10 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Take from https://github.com/Skyrat-SS13/Skyrat-tg/blob/92377cd6203bc4d93a6e289d7b857e19bb6cf338/modular_skyrat/modules/indicators/icons/ssd_indicator.dmi", + "copyright": "Take from https://github.com/Skyrat-SS13/Skyrat-tg/blob/92377cd6203bc4d93a6e289d7b857e19bb6cf338/modular_skyrat/modules/indicators/icons/ssd_indicator.dmi and changed by Macoron", "size": { - "x": 32, - "y": 32 + "x": 8, + "y": 8 }, "states": [ { diff --git a/Resources/Textures/Interface/Actions/flight.rsi/flight_off.png b/Resources/Textures/Interface/Actions/flight.rsi/flight_off.png new file mode 100644 index 0000000000..852dd300e9 Binary files /dev/null and b/Resources/Textures/Interface/Actions/flight.rsi/flight_off.png differ diff --git a/Resources/Textures/Interface/Actions/flight.rsi/flight_on.png b/Resources/Textures/Interface/Actions/flight.rsi/flight_on.png new file mode 100644 index 0000000000..c47b923a68 Binary files /dev/null and b/Resources/Textures/Interface/Actions/flight.rsi/flight_on.png differ diff --git a/Resources/Textures/Interface/Actions/flight.rsi/meta.json b/Resources/Textures/Interface/Actions/flight.rsi/meta.json new file mode 100644 index 0000000000..b4a013190d --- /dev/null +++ b/Resources/Textures/Interface/Actions/flight.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "copyright" : "Made by dootythefrooty (273243513800622090)", + "license" : "CC-BY-SA-3.0", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "flight_off" + }, + { + "name": "flight_on" + } + ] + } \ No newline at end of file diff --git a/Resources/Textures/Interface/Actions/psionics.rsi/healing_word.png b/Resources/Textures/Interface/Actions/psionics.rsi/healing_word.png new file mode 100644 index 0000000000..800e2a46e6 Binary files /dev/null and b/Resources/Textures/Interface/Actions/psionics.rsi/healing_word.png differ diff --git a/Resources/Textures/Interface/Actions/psionics.rsi/meta.json b/Resources/Textures/Interface/Actions/psionics.rsi/meta.json new file mode 100644 index 0000000000..7fc83a4291 --- /dev/null +++ b/Resources/Textures/Interface/Actions/psionics.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by leonardo_dabepis (discord)", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "healing_word" + }, + { + "name": "revivify" + }, + { + "name": "shadeskip" + }, + { + "name": "telekinetic_pulse" + } + ] +} diff --git a/Resources/Textures/Interface/Actions/psionics.rsi/revivify.png b/Resources/Textures/Interface/Actions/psionics.rsi/revivify.png new file mode 100644 index 0000000000..087f40b4c9 Binary files /dev/null and b/Resources/Textures/Interface/Actions/psionics.rsi/revivify.png differ diff --git a/Resources/Textures/Interface/Actions/psionics.rsi/shadeskip.png b/Resources/Textures/Interface/Actions/psionics.rsi/shadeskip.png new file mode 100644 index 0000000000..8114477372 Binary files /dev/null and b/Resources/Textures/Interface/Actions/psionics.rsi/shadeskip.png differ diff --git a/Resources/Textures/Interface/Actions/psionics.rsi/telekinetic_pulse.png b/Resources/Textures/Interface/Actions/psionics.rsi/telekinetic_pulse.png new file mode 100644 index 0000000000..7c690a6adb Binary files /dev/null and b/Resources/Textures/Interface/Actions/psionics.rsi/telekinetic_pulse.png differ diff --git a/Resources/Textures/Interface/Alerts/deflecting.rsi/deflecting0.png b/Resources/Textures/Interface/Alerts/deflecting.rsi/deflecting0.png new file mode 100644 index 0000000000..37404e77f7 Binary files /dev/null and b/Resources/Textures/Interface/Alerts/deflecting.rsi/deflecting0.png differ diff --git a/Resources/Textures/Interface/Alerts/deflecting.rsi/meta.json b/Resources/Textures/Interface/Alerts/deflecting.rsi/meta.json new file mode 100644 index 0000000000..f5d94c891a --- /dev/null +++ b/Resources/Textures/Interface/Alerts/deflecting.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Deflecting icon by Ubaser", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "deflecting0" + } + ] +} diff --git a/Resources/Textures/Interface/Ashen/item_status_left.png b/Resources/Textures/Interface/Ashen/item_status_left.png new file mode 100644 index 0000000000..fb2bf2b9b4 Binary files /dev/null and b/Resources/Textures/Interface/Ashen/item_status_left.png differ diff --git a/Resources/Textures/Interface/Ashen/item_status_left_highlight.png b/Resources/Textures/Interface/Ashen/item_status_left_highlight.png new file mode 100644 index 0000000000..91cd15dd4c Binary files /dev/null and b/Resources/Textures/Interface/Ashen/item_status_left_highlight.png differ diff --git a/Resources/Textures/Interface/Ashen/item_status_right.png b/Resources/Textures/Interface/Ashen/item_status_right.png new file mode 100644 index 0000000000..53f4f362d0 Binary files /dev/null and b/Resources/Textures/Interface/Ashen/item_status_right.png differ diff --git a/Resources/Textures/Interface/Ashen/item_status_right_highlight.png b/Resources/Textures/Interface/Ashen/item_status_right_highlight.png new file mode 100644 index 0000000000..ad16bab6d1 Binary files /dev/null and b/Resources/Textures/Interface/Ashen/item_status_right_highlight.png differ diff --git a/Resources/Textures/Interface/Ashen/template_small.png b/Resources/Textures/Interface/Ashen/template_small.png new file mode 100644 index 0000000000..f3a4379f76 Binary files /dev/null and b/Resources/Textures/Interface/Ashen/template_small.png differ diff --git a/Resources/Textures/Interface/AtmosMonitoring/status_bg.png b/Resources/Textures/Interface/AtmosMonitoring/status_bg.png new file mode 100644 index 0000000000..165a9b9d9f Binary files /dev/null and b/Resources/Textures/Interface/AtmosMonitoring/status_bg.png differ diff --git a/Resources/Textures/Interface/Clockwork/item_status_left.png b/Resources/Textures/Interface/Clockwork/item_status_left.png new file mode 100644 index 0000000000..1ce950362d Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/item_status_left.png differ diff --git a/Resources/Textures/Interface/Clockwork/item_status_left_highlight.png b/Resources/Textures/Interface/Clockwork/item_status_left_highlight.png new file mode 100644 index 0000000000..f715e06276 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/item_status_left_highlight.png differ diff --git a/Resources/Textures/Interface/Clockwork/item_status_right.png b/Resources/Textures/Interface/Clockwork/item_status_right.png new file mode 100644 index 0000000000..5ea5ffcffa Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/item_status_right.png differ diff --git a/Resources/Textures/Interface/Clockwork/item_status_right_highlight.png b/Resources/Textures/Interface/Clockwork/item_status_right_highlight.png new file mode 100644 index 0000000000..315d595c92 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/item_status_right_highlight.png differ diff --git a/Resources/Textures/Interface/Default/item_status_left.png b/Resources/Textures/Interface/Default/item_status_left.png new file mode 100644 index 0000000000..6c980f226e Binary files /dev/null and b/Resources/Textures/Interface/Default/item_status_left.png differ diff --git a/Resources/Textures/Interface/Default/item_status_left_highlight.png b/Resources/Textures/Interface/Default/item_status_left_highlight.png new file mode 100644 index 0000000000..87dea5cf10 Binary files /dev/null and b/Resources/Textures/Interface/Default/item_status_left_highlight.png differ diff --git a/Resources/Textures/Interface/Default/item_status_right.png b/Resources/Textures/Interface/Default/item_status_right.png new file mode 100644 index 0000000000..82ad44b48c Binary files /dev/null and b/Resources/Textures/Interface/Default/item_status_right.png differ diff --git a/Resources/Textures/Interface/Default/item_status_right_highlight.png b/Resources/Textures/Interface/Default/item_status_right_highlight.png new file mode 100644 index 0000000000..0c1c344848 Binary files /dev/null and b/Resources/Textures/Interface/Default/item_status_right_highlight.png differ diff --git a/Resources/Textures/Interface/Emotes/attributions.yml b/Resources/Textures/Interface/Emotes/attributions.yml new file mode 100644 index 0000000000..125651e419 --- /dev/null +++ b/Resources/Textures/Interface/Emotes/attributions.yml @@ -0,0 +1,117 @@ +# Attempted to keep the files in alphabetical order so its easier to audit. +# Finding individual authors is an unfeasible task. If you can reference the author please do so. + +- files: ["beep.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from borg_chest.png and borg_head.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["buzz.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from existing bee texture (0.png) by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["buzztwo.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from existing bee texture (0.png) by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["chime.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from existing desk bell texture (normal.png) by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["chirp.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from existing nymph texture (icon.png) by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["chitter.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from mothroach.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["clap.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by TyAshley (AllenTheGreat) at commit 7f6c7cd82943dbc9a1fe8a79d6a924ac600b3fdb" + source: "https://github.com/TyAshley" + +- files: ["click.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from existing crab.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["cough.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by TyAshley (AllenTheGreat) at commit 7f6c7cd82943dbc9a1fe8a79d6a924ac600b3fdb" + source: "https://github.com/TyAshley" + +- files: ["cry.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from scream.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["deathgasp.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from scream.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["honk.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from existing bikehorn texture (icon.png) by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["laugh.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from scream.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["ping.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by TyAshley (AllenTheGreat) at commit 7f6c7cd82943dbc9a1fe8a79d6a924ac600b3fdb" + source: "https://github.com/TyAshley" + +- files: ["salute.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from scream.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["sigh.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by TyAshley (AllenTheGreat) at commit 7f6c7cd82943dbc9a1fe8a79d6a924ac600b3fdb" + source: "https://github.com/TyAshley" + +- files: ["snap.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by TyAshley (AllenTheGreat) at commit 7f6c7cd82943dbc9a1fe8a79d6a924ac600b3fdb" + source: "https://github.com/TyAshley" + +- files: ["squeak.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from mouse-0.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["squish.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from blue_adult_slime.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["vocal.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by TyAshley (AllenTheGreat) at commit 7f6c7cd82943dbc9a1fe8a79d6a924ac600b3fdb" + source: "https://github.com/TyAshley" + +- files: ["weh.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from plushie_lizard.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["whistle.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from scream.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["yawn.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by TyAshley (AllenTheGreat) at commit 7f6c7cd82943dbc9a1fe8a79d6a924ac600b3fdb" + source: "https://github.com/TyAshley" diff --git a/Resources/Textures/Interface/Emotes/beep.png b/Resources/Textures/Interface/Emotes/beep.png new file mode 100644 index 0000000000..f59b0925ab Binary files /dev/null and b/Resources/Textures/Interface/Emotes/beep.png differ diff --git a/Resources/Textures/Interface/Emotes/buzz.png b/Resources/Textures/Interface/Emotes/buzz.png new file mode 100644 index 0000000000..da7ac363a4 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/buzz.png differ diff --git a/Resources/Textures/Interface/Emotes/buzztwo.png b/Resources/Textures/Interface/Emotes/buzztwo.png new file mode 100644 index 0000000000..460a8868a5 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/buzztwo.png differ diff --git a/Resources/Textures/Interface/Emotes/chime.png b/Resources/Textures/Interface/Emotes/chime.png new file mode 100644 index 0000000000..ca595be5d3 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/chime.png differ diff --git a/Resources/Textures/Interface/Emotes/chirp.png b/Resources/Textures/Interface/Emotes/chirp.png new file mode 100644 index 0000000000..57e8b67143 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/chirp.png differ diff --git a/Resources/Textures/Interface/Emotes/chitter.png b/Resources/Textures/Interface/Emotes/chitter.png new file mode 100644 index 0000000000..f6e1101223 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/chitter.png differ diff --git a/Resources/Textures/Interface/Emotes/clap.png b/Resources/Textures/Interface/Emotes/clap.png new file mode 100644 index 0000000000..a0ef9e1316 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/clap.png differ diff --git a/Resources/Textures/Interface/Emotes/click.png b/Resources/Textures/Interface/Emotes/click.png new file mode 100644 index 0000000000..539aea7b92 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/click.png differ diff --git a/Resources/Textures/Interface/Emotes/cough.png b/Resources/Textures/Interface/Emotes/cough.png new file mode 100644 index 0000000000..cb1c2832ac Binary files /dev/null and b/Resources/Textures/Interface/Emotes/cough.png differ diff --git a/Resources/Textures/Interface/Emotes/cry.png b/Resources/Textures/Interface/Emotes/cry.png new file mode 100644 index 0000000000..2793a11b9d Binary files /dev/null and b/Resources/Textures/Interface/Emotes/cry.png differ diff --git a/Resources/Textures/Interface/Emotes/deathgasp.png b/Resources/Textures/Interface/Emotes/deathgasp.png new file mode 100644 index 0000000000..e27d0bb573 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/deathgasp.png differ diff --git a/Resources/Textures/Interface/Emotes/honk.png b/Resources/Textures/Interface/Emotes/honk.png new file mode 100644 index 0000000000..19441e4a0e Binary files /dev/null and b/Resources/Textures/Interface/Emotes/honk.png differ diff --git a/Resources/Textures/Interface/Emotes/laugh.png b/Resources/Textures/Interface/Emotes/laugh.png new file mode 100644 index 0000000000..a688fdb443 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/laugh.png differ diff --git a/Resources/Textures/Interface/Emotes/ping.png b/Resources/Textures/Interface/Emotes/ping.png new file mode 100644 index 0000000000..7408eb1f28 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/ping.png differ diff --git a/Resources/Textures/Interface/Emotes/salute.png b/Resources/Textures/Interface/Emotes/salute.png new file mode 100644 index 0000000000..5727d8fd85 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/salute.png differ diff --git a/Resources/Textures/Interface/Emotes/sigh.png b/Resources/Textures/Interface/Emotes/sigh.png new file mode 100644 index 0000000000..ff49a56360 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/sigh.png differ diff --git a/Resources/Textures/Interface/Emotes/snap.png b/Resources/Textures/Interface/Emotes/snap.png new file mode 100644 index 0000000000..ae6d81c19d Binary files /dev/null and b/Resources/Textures/Interface/Emotes/snap.png differ diff --git a/Resources/Textures/Interface/Emotes/squeak.png b/Resources/Textures/Interface/Emotes/squeak.png new file mode 100644 index 0000000000..e32a89f598 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/squeak.png differ diff --git a/Resources/Textures/Interface/Emotes/squish.png b/Resources/Textures/Interface/Emotes/squish.png new file mode 100644 index 0000000000..efa1ce6c5e Binary files /dev/null and b/Resources/Textures/Interface/Emotes/squish.png differ diff --git a/Resources/Textures/Interface/Emotes/vocal.png b/Resources/Textures/Interface/Emotes/vocal.png new file mode 100644 index 0000000000..9b129ec466 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/vocal.png differ diff --git a/Resources/Textures/Interface/Emotes/weh.png b/Resources/Textures/Interface/Emotes/weh.png new file mode 100644 index 0000000000..fea5ad3b73 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/weh.png differ diff --git a/Resources/Textures/Interface/Emotes/whistle.png b/Resources/Textures/Interface/Emotes/whistle.png new file mode 100644 index 0000000000..029a52af23 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/whistle.png differ diff --git a/Resources/Textures/Interface/Emotes/yawn.png b/Resources/Textures/Interface/Emotes/yawn.png new file mode 100644 index 0000000000..8130fc9ab4 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/yawn.png differ diff --git a/Resources/Textures/Interface/Minimalist/SlotBackground.png b/Resources/Textures/Interface/Minimalist/SlotBackground.png index eb0ee037fd..85c944357e 100644 Binary files a/Resources/Textures/Interface/Minimalist/SlotBackground.png and b/Resources/Textures/Interface/Minimalist/SlotBackground.png differ diff --git a/Resources/Textures/Interface/Minimalist/item_status_left.png b/Resources/Textures/Interface/Minimalist/item_status_left.png new file mode 100644 index 0000000000..d70eca2fe9 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/item_status_left.png differ diff --git a/Resources/Textures/Interface/Minimalist/item_status_left_highlight.png b/Resources/Textures/Interface/Minimalist/item_status_left_highlight.png new file mode 100644 index 0000000000..b69872cd89 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/item_status_left_highlight.png differ diff --git a/Resources/Textures/Interface/Minimalist/item_status_right.png b/Resources/Textures/Interface/Minimalist/item_status_right.png new file mode 100644 index 0000000000..89171b9b47 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/item_status_right.png differ diff --git a/Resources/Textures/Interface/Minimalist/item_status_right_highlight.png b/Resources/Textures/Interface/Minimalist/item_status_right_highlight.png new file mode 100644 index 0000000000..d1474cee12 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/item_status_right_highlight.png differ diff --git a/Resources/Textures/Interface/Minimalist/template_small.png b/Resources/Textures/Interface/Minimalist/template_small.png new file mode 100644 index 0000000000..85c944357e Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/template_small.png differ diff --git a/Resources/Textures/Interface/Nano/help.png b/Resources/Textures/Interface/Nano/help.png new file mode 100644 index 0000000000..17f5283334 Binary files /dev/null and b/Resources/Textures/Interface/Nano/help.png differ diff --git a/Resources/Textures/Interface/Nano/item_status_left.svg b/Resources/Textures/Interface/Nano/item_status_left.svg deleted file mode 100644 index c97f8de016..0000000000 --- a/Resources/Textures/Interface/Nano/item_status_left.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/Resources/Textures/Interface/Nano/item_status_left.svg.96dpi.png b/Resources/Textures/Interface/Nano/item_status_left.svg.96dpi.png deleted file mode 100644 index e058fa7374..0000000000 Binary files a/Resources/Textures/Interface/Nano/item_status_left.svg.96dpi.png and /dev/null differ diff --git a/Resources/Textures/Interface/Nano/item_status_middle.svg b/Resources/Textures/Interface/Nano/item_status_middle.svg deleted file mode 100644 index a913981db1..0000000000 --- a/Resources/Textures/Interface/Nano/item_status_middle.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/Resources/Textures/Interface/Nano/item_status_middle.svg.96dpi.png b/Resources/Textures/Interface/Nano/item_status_middle.svg.96dpi.png deleted file mode 100644 index ce41106b20..0000000000 Binary files a/Resources/Textures/Interface/Nano/item_status_middle.svg.96dpi.png and /dev/null differ diff --git a/Resources/Textures/Interface/Nano/item_status_right.svg b/Resources/Textures/Interface/Nano/item_status_right.svg deleted file mode 100644 index d898bb2ce0..0000000000 --- a/Resources/Textures/Interface/Nano/item_status_right.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/Resources/Textures/Interface/Nano/item_status_right.svg.96dpi.png b/Resources/Textures/Interface/Nano/item_status_right.svg.96dpi.png deleted file mode 100644 index fb7c4a9e6e..0000000000 Binary files a/Resources/Textures/Interface/Nano/item_status_right.svg.96dpi.png and /dev/null differ diff --git a/Resources/Textures/Interface/Plasmafire/item_status_left.png b/Resources/Textures/Interface/Plasmafire/item_status_left.png new file mode 100644 index 0000000000..d5d25c9809 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/item_status_left.png differ diff --git a/Resources/Textures/Interface/Plasmafire/item_status_left_highlight.png b/Resources/Textures/Interface/Plasmafire/item_status_left_highlight.png new file mode 100644 index 0000000000..afe37513fd Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/item_status_left_highlight.png differ diff --git a/Resources/Textures/Interface/Plasmafire/item_status_right.png b/Resources/Textures/Interface/Plasmafire/item_status_right.png new file mode 100644 index 0000000000..ca97f81c8f Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/item_status_right.png differ diff --git a/Resources/Textures/Interface/Plasmafire/item_status_right_highlight.png b/Resources/Textures/Interface/Plasmafire/item_status_right_highlight.png new file mode 100644 index 0000000000..b95822b737 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/item_status_right_highlight.png differ diff --git a/Resources/Textures/Interface/Retro/item_status_left.png b/Resources/Textures/Interface/Retro/item_status_left.png new file mode 100644 index 0000000000..21b107b84d Binary files /dev/null and b/Resources/Textures/Interface/Retro/item_status_left.png differ diff --git a/Resources/Textures/Interface/Retro/item_status_left_highlight.png b/Resources/Textures/Interface/Retro/item_status_left_highlight.png new file mode 100644 index 0000000000..fdd5a4fe7d Binary files /dev/null and b/Resources/Textures/Interface/Retro/item_status_left_highlight.png differ diff --git a/Resources/Textures/Interface/Retro/item_status_right.png b/Resources/Textures/Interface/Retro/item_status_right.png new file mode 100644 index 0000000000..5e7d54618d Binary files /dev/null and b/Resources/Textures/Interface/Retro/item_status_right.png differ diff --git a/Resources/Textures/Interface/Retro/item_status_right_highlight.png b/Resources/Textures/Interface/Retro/item_status_right_highlight.png new file mode 100644 index 0000000000..c6e12c41e6 Binary files /dev/null and b/Resources/Textures/Interface/Retro/item_status_right_highlight.png differ diff --git a/Resources/Textures/Interface/Retro/template_small.png b/Resources/Textures/Interface/Retro/template_small.png new file mode 100644 index 0000000000..7244b37f5c Binary files /dev/null and b/Resources/Textures/Interface/Retro/template_small.png differ diff --git a/Resources/Textures/Interface/Slimecore/item_status_left.png b/Resources/Textures/Interface/Slimecore/item_status_left.png new file mode 100644 index 0000000000..a7d940f401 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/item_status_left.png differ diff --git a/Resources/Textures/Interface/Slimecore/item_status_left_highlight.png b/Resources/Textures/Interface/Slimecore/item_status_left_highlight.png new file mode 100644 index 0000000000..322355b135 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/item_status_left_highlight.png differ diff --git a/Resources/Textures/Interface/Slimecore/item_status_right.png b/Resources/Textures/Interface/Slimecore/item_status_right.png new file mode 100644 index 0000000000..77b53340a6 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/item_status_right.png differ diff --git a/Resources/Textures/Interface/Slimecore/item_status_right_highlight.png b/Resources/Textures/Interface/Slimecore/item_status_right_highlight.png new file mode 100644 index 0000000000..1e1a631db4 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/item_status_right_highlight.png differ diff --git a/Resources/Textures/Interface/VerbIcons/ATTRIBUTION.txt b/Resources/Textures/Interface/VerbIcons/ATTRIBUTION.txt index 0b8ae856bd..69aa4650b3 100644 --- a/Resources/Textures/Interface/VerbIcons/ATTRIBUTION.txt +++ b/Resources/Textures/Interface/VerbIcons/ATTRIBUTION.txt @@ -7,3 +7,6 @@ https://game-icons.net/1x1/lorc/padlock.html unlock.svg by Delapouite under CC BY 3.0 https://game-icons.net/1x1/delapouite/padlock-open.html + +healing_word.png by LeonardoDaBepis under CC BY 3.0 +revivify.png by LeonardoDaBepis under CC BY 3.0 \ No newline at end of file diff --git a/Resources/Textures/Interface/emotes.svg b/Resources/Textures/Interface/emotes.svg new file mode 100644 index 0000000000..352f7ed294 --- /dev/null +++ b/Resources/Textures/Interface/emotes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Resources/Textures/Interface/emotes.svg.192dpi.png b/Resources/Textures/Interface/emotes.svg.192dpi.png new file mode 100644 index 0000000000..4e1f3c4f48 Binary files /dev/null and b/Resources/Textures/Interface/emotes.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/emotes.svg.192dpi.png.yml b/Resources/Textures/Interface/emotes.svg.192dpi.png.yml new file mode 100644 index 0000000000..dabd6601f7 --- /dev/null +++ b/Resources/Textures/Interface/emotes.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/LobbyScreens/attributions.yml b/Resources/Textures/LobbyScreens/attributions.yml index afe4af7bf2..4dd3dc945b 100644 --- a/Resources/Textures/LobbyScreens/attributions.yml +++ b/Resources/Textures/LobbyScreens/attributions.yml @@ -37,3 +37,8 @@ license: "CC-BY-SA-3.0" copyright: "aserovich on discord" source: "https://github.com/space-wizards/space-station-14" + +- files: ["justaweekaway.webp"] + license: "CC-BY-SA-3.0" + copyright: "plantyfern on discord" + source: "https://github.com/space-wizards/space-station-14" \ No newline at end of file diff --git a/Resources/Textures/LobbyScreens/justaweekaway.webp b/Resources/Textures/LobbyScreens/justaweekaway.webp new file mode 100644 index 0000000000..6e8205043c Binary files /dev/null and b/Resources/Textures/LobbyScreens/justaweekaway.webp differ diff --git a/Resources/Textures/LobbyScreens/justaweekaway.yml b/Resources/Textures/LobbyScreens/justaweekaway.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/LobbyScreens/justaweekaway.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Markers/environment.rsi/base-blue.png b/Resources/Textures/Markers/environment.rsi/base-blue.png new file mode 100644 index 0000000000..ee77bb448a Binary files /dev/null and b/Resources/Textures/Markers/environment.rsi/base-blue.png differ diff --git a/Resources/Textures/Markers/environment.rsi/base-green.png b/Resources/Textures/Markers/environment.rsi/base-green.png new file mode 100644 index 0000000000..a39bca9cdc Binary files /dev/null and b/Resources/Textures/Markers/environment.rsi/base-green.png differ diff --git a/Resources/Textures/Markers/environment.rsi/base-red.png b/Resources/Textures/Markers/environment.rsi/base-red.png new file mode 100644 index 0000000000..e0d68f8b9e Binary files /dev/null and b/Resources/Textures/Markers/environment.rsi/base-red.png differ diff --git a/Resources/Textures/Markers/environment.rsi/fire.png b/Resources/Textures/Markers/environment.rsi/fire.png new file mode 100644 index 0000000000..71abc46e81 Binary files /dev/null and b/Resources/Textures/Markers/environment.rsi/fire.png differ diff --git a/Resources/Textures/Markers/environment.rsi/meta.json b/Resources/Textures/Markers/environment.rsi/meta.json new file mode 100644 index 0000000000..6fc7decc8b --- /dev/null +++ b/Resources/Textures/Markers/environment.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Nuclear14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base-blue" + }, + { + "name": "base-red" + }, + { + "name": "base-green" + }, + { + "name": "fire" + }, + { + "name": "rad" + }, + { + "name": "wall" + }, + { + "name": "weather" + } + ] +} diff --git a/Resources/Textures/Markers/environment.rsi/rad.png b/Resources/Textures/Markers/environment.rsi/rad.png new file mode 100644 index 0000000000..ae01d87143 Binary files /dev/null and b/Resources/Textures/Markers/environment.rsi/rad.png differ diff --git a/Resources/Textures/Markers/environment.rsi/wall.png b/Resources/Textures/Markers/environment.rsi/wall.png new file mode 100644 index 0000000000..2aaeaaf014 Binary files /dev/null and b/Resources/Textures/Markers/environment.rsi/wall.png differ diff --git a/Resources/Textures/Markers/environment.rsi/weather.png b/Resources/Textures/Markers/environment.rsi/weather.png new file mode 100644 index 0000000000..adb9f53a47 Binary files /dev/null and b/Resources/Textures/Markers/environment.rsi/weather.png differ diff --git a/Resources/Textures/Mobs/Aliens/Xenos/rouny.rsi/crit.png b/Resources/Textures/Mobs/Aliens/Xenos/rouny.rsi/crit.png index 23a7ec0af6..72f56385f5 100644 Binary files a/Resources/Textures/Mobs/Aliens/Xenos/rouny.rsi/crit.png and b/Resources/Textures/Mobs/Aliens/Xenos/rouny.rsi/crit.png differ diff --git a/Resources/Textures/Mobs/Aliens/Xenos/rouny.rsi/dead.png b/Resources/Textures/Mobs/Aliens/Xenos/rouny.rsi/dead.png index cd355b6152..8e84643281 100644 Binary files a/Resources/Textures/Mobs/Aliens/Xenos/rouny.rsi/dead.png and b/Resources/Textures/Mobs/Aliens/Xenos/rouny.rsi/dead.png differ diff --git a/Resources/Textures/Mobs/Aliens/Xenos/rouny.rsi/meta.json b/Resources/Textures/Mobs/Aliens/Xenos/rouny.rsi/meta.json index cc020d01c4..f238edbb19 100644 --- a/Resources/Textures/Mobs/Aliens/Xenos/rouny.rsi/meta.json +++ b/Resources/Textures/Mobs/Aliens/Xenos/rouny.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "DakoDragon, discord ID: 56038550335922176", + "copyright": "Created by Fenndragon, discord ID: 190763499276861440", "size": { "x": 64, "y": 64 diff --git a/Resources/Textures/Mobs/Aliens/Xenos/rouny.rsi/running.png b/Resources/Textures/Mobs/Aliens/Xenos/rouny.rsi/running.png index 1438285113..556dc97d7e 100644 Binary files a/Resources/Textures/Mobs/Aliens/Xenos/rouny.rsi/running.png and b/Resources/Textures/Mobs/Aliens/Xenos/rouny.rsi/running.png differ diff --git a/Resources/Textures/Mobs/Aliens/Xenos/rouny.rsi/sleeping.png b/Resources/Textures/Mobs/Aliens/Xenos/rouny.rsi/sleeping.png index 9221665dd8..3bb814f467 100644 Binary files a/Resources/Textures/Mobs/Aliens/Xenos/rouny.rsi/sleeping.png and b/Resources/Textures/Mobs/Aliens/Xenos/rouny.rsi/sleeping.png differ diff --git a/Resources/Textures/Mobs/Animals/patriarch.rsi/meta.json b/Resources/Textures/Mobs/Animals/patriarch.rsi/meta.json new file mode 100644 index 0000000000..c8fa857fee --- /dev/null +++ b/Resources/Textures/Mobs/Animals/patriarch.rsi/meta.json @@ -0,0 +1,24 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "https://gitlab.com/cmdevs/colonial-warfare/-/blob/dev/icons/mob/xenonids/praetorian.dmi edited by Fenndragon", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "patriarch", + "directions": 4 + }, + { + "name": "patriarch_sleeping" + }, + { + "name": "patriarch_crit" + }, + { + "name": "patriarch_dead" + } + ] +} diff --git a/Resources/Textures/Mobs/Animals/patriarch.rsi/patriarch.png b/Resources/Textures/Mobs/Animals/patriarch.rsi/patriarch.png new file mode 100644 index 0000000000..34cb16d555 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/patriarch.rsi/patriarch.png differ diff --git a/Resources/Textures/Mobs/Animals/patriarch.rsi/patriarch_crit.png b/Resources/Textures/Mobs/Animals/patriarch.rsi/patriarch_crit.png new file mode 100644 index 0000000000..add264b5b5 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/patriarch.rsi/patriarch_crit.png differ diff --git a/Resources/Textures/Mobs/Animals/patriarch.rsi/patriarch_dead.png b/Resources/Textures/Mobs/Animals/patriarch.rsi/patriarch_dead.png new file mode 100644 index 0000000000..f190202dcc Binary files /dev/null and b/Resources/Textures/Mobs/Animals/patriarch.rsi/patriarch_dead.png differ diff --git a/Resources/Textures/Mobs/Animals/patriarch.rsi/patriarch_sleeping.png b/Resources/Textures/Mobs/Animals/patriarch.rsi/patriarch_sleeping.png new file mode 100644 index 0000000000..2cf18ada64 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/patriarch.rsi/patriarch_sleeping.png differ diff --git a/Resources/Textures/Mobs/Animals/subject7355.rsi/glow.png b/Resources/Textures/Mobs/Animals/subject7355.rsi/glow.png new file mode 100644 index 0000000000..9fc359cf0c Binary files /dev/null and b/Resources/Textures/Mobs/Animals/subject7355.rsi/glow.png differ diff --git a/Resources/Textures/Mobs/Animals/subject7355.rsi/meta.json b/Resources/Textures/Mobs/Animals/subject7355.rsi/meta.json new file mode 100644 index 0000000000..c49d5687f1 --- /dev/null +++ b/Resources/Textures/Mobs/Animals/subject7355.rsi/meta.json @@ -0,0 +1,28 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "https://gitlab.com/cmdevs/colonial-warfare/-/tree/dev/icons/mob/xenonids", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "subject7355", + "directions": 4 + }, + { + "name": "glow", + "directions": 4 + }, + { + "name": "subject7355_sleeping" + }, + { + "name": "subject7355_crit" + }, + { + "name": "subject7355_dead" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Mobs/Animals/subject7355.rsi/subject7355.png b/Resources/Textures/Mobs/Animals/subject7355.rsi/subject7355.png new file mode 100644 index 0000000000..9b51c99325 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/subject7355.rsi/subject7355.png differ diff --git a/Resources/Textures/Mobs/Animals/subject7355.rsi/subject7355_crit.png b/Resources/Textures/Mobs/Animals/subject7355.rsi/subject7355_crit.png new file mode 100644 index 0000000000..d400295959 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/subject7355.rsi/subject7355_crit.png differ diff --git a/Resources/Textures/Mobs/Animals/subject7355.rsi/subject7355_dead.png b/Resources/Textures/Mobs/Animals/subject7355.rsi/subject7355_dead.png new file mode 100644 index 0000000000..6b28c7da7a Binary files /dev/null and b/Resources/Textures/Mobs/Animals/subject7355.rsi/subject7355_dead.png differ diff --git a/Resources/Textures/Mobs/Animals/subject7355.rsi/subject7355_sleeping.png b/Resources/Textures/Mobs/Animals/subject7355.rsi/subject7355_sleeping.png new file mode 100644 index 0000000000..1060058325 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/subject7355.rsi/subject7355_sleeping.png differ diff --git a/Resources/Textures/Mobs/Customization/eyes.rsi/meta.json b/Resources/Textures/Mobs/Customization/eyes.rsi/meta.json index cb94dfab3e..78339d7b76 100644 --- a/Resources/Textures/Mobs/Customization/eyes.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/eyes.rsi/meta.json @@ -1 +1 @@ -{"version": 1, "license": "CC-BY-SA-3.0","copyright": "Vox_eyes Taken from https://github.com/vgstation-coders/vgstation13 at 02ff588d59b3c560c685d9ca75e882d32a72d8cb and human_eyes taken from https://github.com/tgstation/tgstation/blob/8024397cc81c5f47f74cf4279e35728487d0a1a7/icons/mob/human_parts_greyscale.dmi and modified by DrSmugleaf", "size": {"x": 32, "y": 32}, "states": [{"name": "diona", "directions": 4}, {"name": "eyes", "directions": 4}, {"name":"no_eyes"},{"name": "vox_eyes_s", "directions": 4}]} +{"version": 1, "license": "CC-BY-SA-3.0","copyright": "human_eyes taken from https://github.com/tgstation/tgstation/blob/8024397cc81c5f47f74cf4279e35728487d0a1a7/icons/mob/human_parts_greyscale.dmi and modified by DrSmugleaf", "size": {"x": 32, "y": 32}, "states": [{"name": "diona", "directions": 4}, {"name": "eyes", "directions": 4}, {"name":"no_eyes"}]} diff --git a/Resources/Textures/Mobs/Customization/eyes.rsi/vox_eyes_s.png b/Resources/Textures/Mobs/Customization/eyes.rsi/vox_eyes_s.png deleted file mode 100644 index 807e9374c4..0000000000 Binary files a/Resources/Textures/Mobs/Customization/eyes.rsi/vox_eyes_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json b/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json index 5cb41c258b..8fd4f5e1b9 100644 --- a/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json @@ -667,6 +667,10 @@ "name": "spikyponytail", "directions": 4 }, + { + "name": "spookylong", + "directions": 4 + }, { "name": "stail", "directions": 4 diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/spookylong.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/spookylong.png new file mode 100644 index 0000000000..4e79da275b Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/spookylong.png differ diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-ears.rsi/bullishhorns.png b/Resources/Textures/Mobs/Customization/kemonomimi-ears.rsi/bullishhorns.png new file mode 100644 index 0000000000..cb80732656 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/kemonomimi-ears.rsi/bullishhorns.png differ diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-ears.rsi/bunnyearstone1.png b/Resources/Textures/Mobs/Customization/kemonomimi-ears.rsi/bunnyearstone1.png new file mode 100644 index 0000000000..6a2f37f003 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/kemonomimi-ears.rsi/bunnyearstone1.png differ diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-ears.rsi/bunnyearstone2.png b/Resources/Textures/Mobs/Customization/kemonomimi-ears.rsi/bunnyearstone2.png new file mode 100644 index 0000000000..2da5da89a0 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/kemonomimi-ears.rsi/bunnyearstone2.png differ diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-ears.rsi/foxears.png b/Resources/Textures/Mobs/Customization/kemonomimi-ears.rsi/foxears.png new file mode 100644 index 0000000000..c37755fc3c Binary files /dev/null and b/Resources/Textures/Mobs/Customization/kemonomimi-ears.rsi/foxears.png differ diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-ears.rsi/goathornstone1.png b/Resources/Textures/Mobs/Customization/kemonomimi-ears.rsi/goathornstone1.png new file mode 100644 index 0000000000..74a1bf1c7a Binary files /dev/null and b/Resources/Textures/Mobs/Customization/kemonomimi-ears.rsi/goathornstone1.png differ diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-ears.rsi/goathornstone2.png b/Resources/Textures/Mobs/Customization/kemonomimi-ears.rsi/goathornstone2.png new file mode 100644 index 0000000000..c260f4e98d Binary files /dev/null and b/Resources/Textures/Mobs/Customization/kemonomimi-ears.rsi/goathornstone2.png differ diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-ears.rsi/meta.json b/Resources/Textures/Mobs/Customization/kemonomimi-ears.rsi/meta.json new file mode 100644 index 0000000000..fcee2ae217 --- /dev/null +++ b/Resources/Textures/Mobs/Customization/kemonomimi-ears.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Body parts by @Kilath", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "bullishhorns", + "directions": 4 + }, + { + "name": "bunnyearstone1", + "directions": 4 + }, + { + "name": "bunnyearstone2", + "directions": 4 + }, + { + "name": "foxears", + "directions": 4 + }, + { + "name": "goathornstone1", + "directions": 4 + }, + { + "name": "goathornstone2", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/bunnytail.png b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/bunnytail.png new file mode 100644 index 0000000000..220acb476f Binary files /dev/null and b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/bunnytail.png differ diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/doblefurtailtone1.png b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/doblefurtailtone1.png new file mode 100644 index 0000000000..88852ce600 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/doblefurtailtone1.png differ diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/doblefurtailtone2.png b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/doblefurtailtone2.png new file mode 100644 index 0000000000..138e64bcf8 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/doblefurtailtone2.png differ diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/fluffytail.png b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/fluffytail.png new file mode 100644 index 0000000000..227add91f3 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/fluffytail.png differ diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/foxninetailstone1.png b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/foxninetailstone1.png new file mode 100644 index 0000000000..4faf8ce5b5 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/foxninetailstone1.png differ diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/foxninetailstone2.png b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/foxninetailstone2.png new file mode 100644 index 0000000000..d391c48368 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/foxninetailstone2.png differ diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/foxthreetailstone1.png b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/foxthreetailstone1.png new file mode 100644 index 0000000000..68e03d1d9e Binary files /dev/null and b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/foxthreetailstone1.png differ diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/foxthreetailstone2.png b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/foxthreetailstone2.png new file mode 100644 index 0000000000..b309c9d628 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/foxthreetailstone2.png differ diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/foxtwotailstone1.png b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/foxtwotailstone1.png new file mode 100644 index 0000000000..a87f5316ca Binary files /dev/null and b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/foxtwotailstone1.png differ diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/foxtwotailstone2.png b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/foxtwotailstone2.png new file mode 100644 index 0000000000..07fc4877c8 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/foxtwotailstone2.png differ diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/horsetailculty.png b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/horsetailculty.png new file mode 100644 index 0000000000..b9e788df70 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/horsetailculty.png differ diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/horsetaillong.png b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/horsetaillong.png new file mode 100644 index 0000000000..4f67cbc7cd Binary files /dev/null and b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/horsetaillong.png differ diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/meta.json b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/meta.json new file mode 100644 index 0000000000..29005fb211 --- /dev/null +++ b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/meta.json @@ -0,0 +1,71 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Body parts by @Kilath", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "bunnytail", + "directions": 4 + }, + { + "name": "doblefurtailtone1", + "directions": 4 + }, + { + "name": "doblefurtailtone2", + "directions": 4 + }, + { + "name": "fluffytail", + "directions": 4 + }, + { + "name": "foxninetailstone1", + "directions": 4 + }, + { + "name": "foxninetailstone2", + "directions": 4 + }, + { + "name": "foxthreetailstone1", + "directions": 4 + }, + { + "name": "foxthreetailstone2", + "directions": 4 + }, + { + "name": "foxtwotailstone1", + "directions": 4 + }, + { + "name": "foxtwotailstone2", + "directions": 4 + }, + { + "name": "horsetailculty", + "directions": 4 + }, + { + "name": "horsetaillong", + "directions": 4 + }, + { + "name": "sharktail", + "directions": 4 + }, + { + "name": "tasseltailtone1", + "directions": 4 + }, + { + "name": "tasseltailtone2", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/sharktail.png b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/sharktail.png new file mode 100644 index 0000000000..9ebdb7bf79 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/sharktail.png differ diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/tasseltailtone1.png b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/tasseltailtone1.png new file mode 100644 index 0000000000..d45b14f99b Binary files /dev/null and b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/tasseltailtone1.png differ diff --git a/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/tasseltailtone2.png b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/tasseltailtone2.png new file mode 100644 index 0000000000..edb0e539bd Binary files /dev/null and b/Resources/Textures/Mobs/Customization/kemonomimi-tails.rsi/tasseltailtone2.png differ diff --git a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/frills_axolotl.png b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/frills_axolotl.png index f7f54acdae..d61b60824c 100644 Binary files a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/frills_axolotl.png and b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/frills_axolotl.png differ diff --git a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/frills_neckfull.png b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/frills_neckfull.png new file mode 100644 index 0000000000..dfbe573096 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/frills_neckfull.png differ diff --git a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json index 8eaac10cd9..3770a771d8 100644 --- a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/Skyrat-SS13/Skyrat-tg/tree/40e3cdbb15b8bc0d5ef2fb46133adf805bda5297, while Argali, Ayrshire, Myrsore and Bighorn are drawn by Ubaser, and Kobold Ears are drawn by Pigeonpeas. Body_underbelly made by Nairod(github) for SS14. Large drawn by Ubaser. Wagging tail by SonicDC.", + "copyright": "https://github.com/Skyrat-SS13/Skyrat-tg/tree/40e3cdbb15b8bc0d5ef2fb46133adf805bda5297, while Argali, Ayrshire, Myrsore and Bighorn are drawn by Ubaser, and Kobold Ears are drawn by Pigeonpeas. Body_underbelly made by Nairod(github) for SS14. Large drawn by Ubaser. Wagging tail by SonicDC. Splotch modified from Sharp by KittenColony(github). Frills neckfull come from: https://github.com/Bubberstation/Bubberstation/commit/8bc6b83404803466a560b694bf22ef3c0ac266a2", "size": { "x": 32, "y": 32 @@ -87,391 +87,391 @@ "name": "tail_smooth_wagging_primary", "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, - 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 + ], + [ + 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": "tail_smooth_wagging_secondary", "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, - 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 + ], + [ + 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": "tail_dtiger_wagging", - "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, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] + "name": "tail_dtiger_wagging", + "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, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 ] + ] }, { - "name": "tail_ltiger_wagging", - "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, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] + "name": "tail_ltiger_wagging", + "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, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 ] + ] }, { - "name": "tail_spikes_wagging", - "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, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] + "name": "tail_spikes_wagging", + "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, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 ] + ] }, { "name": "snout_round", @@ -525,19 +525,19 @@ "name": "frills_divinity", "directions": 4 }, - { + { "name": "horns_double", "directions": 4 }, - { + { "name": "frills_axolotl", "directions": 4 }, - { + { "name": "frills_hood_primary", "directions": 4 }, - { + { "name": "frills_hood_secondary", "directions": 4 }, @@ -548,58 +548,70 @@ { "name": "body_tiger", "directions": 4 - }, - { - "name": "head_tiger", - "directions": 4 - }, - { - "name": "l_arm_tiger", - "directions": 4 - }, - { - "name": "l_leg_tiger", - "directions": 4 - }, - { - "name": "r_arm_tiger", - "directions": 4 - }, - { - "name": "horns_argali", - "directions": 4 - }, - { - "name": "horns_ayrshire", - "directions": 4 - }, - { - "name": "horns_myrsore", - "directions": 4 - }, - { - "name": "horns_bighorn", - "directions": 4 - }, - { - "name": "horns_kobold_ears", - "directions": 4 - }, - { - "name": "r_leg_tiger", - "directions": 4 - }, - { - "name": "horns_floppy_kobold_ears", - "directions": 4 - }, + }, + { + "name": "head_tiger", + "directions": 4 + }, + { + "name": "l_arm_tiger", + "directions": 4 + }, + { + "name": "l_leg_tiger", + "directions": 4 + }, + { + "name": "r_arm_tiger", + "directions": 4 + }, + { + "name": "horns_argali", + "directions": 4 + }, + { + "name": "horns_ayrshire", + "directions": 4 + }, + { + "name": "horns_myrsore", + "directions": 4 + }, + { + "name": "horns_bighorn", + "directions": 4 + }, + { + "name": "horns_kobold_ears", + "directions": 4 + }, + { + "name": "r_leg_tiger", + "directions": 4 + }, + { + "name": "horns_floppy_kobold_ears", + "directions": 4 + }, { "name": "body_underbelly", "directions": 4 - }, - { - "name": "body_backspikes", - "directions": 4 - } + }, + { + "name": "body_backspikes", + "directions": 4 + }, + { + "name": "snout_splotch_primary", + "directions": 4 + }, + { + "name": "snout_splotch_secondary", + "directions": 4 + }, + { + "name": "frills_neckfull", + "directions": 4 + } ] -} +} \ No newline at end of file diff --git a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/snout_splotch_primary.png b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/snout_splotch_primary.png new file mode 100644 index 0000000000..850b985e5d Binary files /dev/null and b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/snout_splotch_primary.png differ diff --git a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/snout_splotch_secondary.png b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/snout_splotch_secondary.png new file mode 100644 index 0000000000..5a982ed354 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/snout_splotch_secondary.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/beard_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/beard_s.png new file mode 100644 index 0000000000..92aeea8f36 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/beard_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/colonel_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/colonel_s.png new file mode 100644 index 0000000000..2e657d675a Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/colonel_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/fu_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/fu_s.png new file mode 100644 index 0000000000..87f97eeaee Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/fu_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/mane_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/mane_s.png new file mode 100644 index 0000000000..08b120f500 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/mane_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/meta.json b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/meta.json index c52ad8a2a2..64eebb8883 100644 --- a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/meta.json @@ -1 +1,31 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/vgstation-coders/vgstation13/blob/02ff588d59b3c560c685d9ca75e882d32a72d8cb/icons/mob/human_face.dmi", "states": [{"name": "vox_beard_s", "directions": 4}, {"name": "vox_colonel_s", "directions": 4}, {"name": "vox_fu_s", "directions": 4}, {"name": "vox_neck_s", "directions": 4}, {"name": "vox_ruff_beard_s", "directions": 4}, {"name": "vox_ruff_beard_s2", "directions": 4}]} +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/0f9ef5962f4422836c0a42f289fb24d018918cbc/icons/mob/sprite_accessories/vox/vox_facial_hair.dmi and greyscaled", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "colonel_s", + "directions": 4 + }, + { + "name": "fu_s", + "directions": 4 + }, + { + "name": "neck_s", + "directions": 4 + }, + { + "name": "beard_s", + "directions": 4 + }, + { + "name": "mane_s", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/neck_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/neck_s.png new file mode 100644 index 0000000000..f630e8ce8b Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/neck_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_beard_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_beard_s.png deleted file mode 100644 index 8e922e58de..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_beard_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_colonel_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_colonel_s.png deleted file mode 100644 index 8de4dd6803..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_colonel_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_fu_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_fu_s.png deleted file mode 100644 index e49e84baf0..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_fu_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_neck_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_neck_s.png deleted file mode 100644 index 9009717cee..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_neck_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_ruff_beard_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_ruff_beard_s.png deleted file mode 100644 index 365f134c44..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_ruff_beard_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_ruff_beard_s2.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_ruff_beard_s2.png deleted file mode 100644 index 0858c19f05..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_ruff_beard_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/afro_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/afro_s.png new file mode 100644 index 0000000000..74b09a0635 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/afro_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/braid_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/braid_s.png new file mode 100644 index 0000000000..ff2aa4acbc Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/braid_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/crestedquills_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/crestedquills_s.png new file mode 100644 index 0000000000..f089905438 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/crestedquills_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/emperorquills_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/emperorquills_s.png new file mode 100644 index 0000000000..899918e694 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/emperorquills_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/flowing_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/flowing_s.png new file mode 100644 index 0000000000..98139350d4 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/flowing_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/hawk_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/hawk_s.png new file mode 100644 index 0000000000..c262fc1d91 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/hawk_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/horns_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/horns_s.png new file mode 100644 index 0000000000..8891151c9f Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/horns_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/keelquills_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/keelquills_s.png new file mode 100644 index 0000000000..c3c947bcce Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/keelquills_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/keetquills_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/keetquills_s.png new file mode 100644 index 0000000000..910542dde1 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/keetquills_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/kingly_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/kingly_s.png new file mode 100644 index 0000000000..1d0a1d8d89 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/kingly_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/long_braid_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/long_braid_s.png new file mode 100644 index 0000000000..3df31052db Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/long_braid_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/mange_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/mange_s.png new file mode 100644 index 0000000000..afa934e880 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/mange_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/meta.json b/Resources/Textures/Mobs/Customization/vox_hair.rsi/meta.json index 2f14178424..9b08260bd6 100644 --- a/Resources/Textures/Mobs/Customization/vox_hair.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/vox_hair.rsi/meta.json @@ -1 +1,99 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/vgstation-coders/vgstation13/blob/02ff588d59b3c560c685d9ca75e882d32a72d8cb/icons/mob/human_face.dmi", "states": [{"name": "vox_afro_s", "directions": 4}, {"name": "vox_afro_s2", "directions": 4}, {"name": "vox_bald_s", "directions": 4}, {"name": "vox_cropped_s", "directions": 4}, {"name": "vox_cropped_s2", "directions": 4}, {"name": "vox_horns_s", "directions": 4}, {"name": "vox_horns_s2", "directions": 4}, {"name": "vox_kingly_s", "directions": 4}, {"name": "vox_kingly_s2", "directions": 4}, {"name": "vox_mange_s", "directions": 4}, {"name": "vox_mange_s2", "directions": 4}, {"name": "vox_mohawk_s", "directions": 4}, {"name": "vox_mohawk_s2", "directions": 4}, {"name": "vox_nights_s", "directions": 4}, {"name": "vox_nights_s2", "directions": 4}, {"name": "vox_pony_s", "directions": 4}, {"name": "vox_pony_s2", "directions": 4}, {"name": "vox_rows_s", "directions": 4}, {"name": "vox_rows_s2", "directions": 4}, {"name": "vox_ruff_hawk_s", "directions": 4}, {"name": "vox_ruff_hawk_s2", "directions": 4}, {"name": "vox_shortquills_s", "directions": 4}, {"name": "vox_shortquills_s2", "directions": 4}, {"name": "vox_surf_s", "directions": 4}, {"name": "vox_surf_s2", "directions": 4}, {"name": "vox_yasu_s", "directions": 4}, {"name": "vox_yasu_s2", "directions": 4}]} +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/dcd1f5d88a8c5ba9634fc3fce67a76ada45f71dc/icons/mob/sprite_accessories/vox/vox_hair.dmi and greyscaled", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "crestedquills_s", + "directions": 4 + }, + { + "name": "emperorquills_s", + "directions": 4 + }, + { + "name": "keelquills_s", + "directions": 4 + }, + { + "name": "keetquills_s", + "directions": 4 + }, + { + "name": "shortquills_s", + "directions": 4 + }, + { + "name": "tielquills_s", + "directions": 4 + }, + { + "name": "kingly_s", + "directions": 4 + }, + { + "name": "afro_s", + "directions": 4 + }, + { + "name": "yasu_s", + "directions": 4 + }, + { + "name": "razor_s", + "directions": 4 + }, + { + "name": "razor_clipped_s", + "directions": 4 + }, + { + "name": "mohawk_s", + "directions": 4 + }, + { + "name": "horns_s", + "directions": 4 + }, + { + "name": "nights_s", + "directions": 4 + }, + { + "name": "hawk_s", + "directions": 4 + }, + { + "name": "long_braid_s", + "directions": 4 + }, + { + "name": "short_braid_s", + "directions": 4 + }, + { + "name": "mange_s", + "directions": 4 + }, + { + "name": "ponytail_s", + "directions": 4 + }, + { + "name": "braid_s", + "directions": 4 + }, + { + "name": "surf_s", + "directions": 4 + }, + { + "name": "flowing_s", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/mohawk_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/mohawk_s.png new file mode 100644 index 0000000000..b8466620b8 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/mohawk_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/nights_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/nights_s.png new file mode 100644 index 0000000000..68d2654dcd Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/nights_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/ponytail_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/ponytail_s.png new file mode 100644 index 0000000000..316f08fe9a Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/ponytail_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/razor_clipped_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/razor_clipped_s.png new file mode 100644 index 0000000000..e5ffe57daa Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/razor_clipped_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/razor_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/razor_s.png new file mode 100644 index 0000000000..0b57cec2c1 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/razor_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/short_braid_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/short_braid_s.png new file mode 100644 index 0000000000..6f7a1e86ca Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/short_braid_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/shortquills_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/shortquills_s.png new file mode 100644 index 0000000000..a0d496aeed Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/shortquills_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/surf_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/surf_s.png new file mode 100644 index 0000000000..712ccb542f Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/surf_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/tielquills_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/tielquills_s.png new file mode 100644 index 0000000000..aa121bd331 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/tielquills_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_afro_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_afro_s.png deleted file mode 100644 index 60b9b18c21..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_afro_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_afro_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_afro_s2.png deleted file mode 100644 index 0858c19f05..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_afro_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_bald_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_bald_s.png deleted file mode 100644 index 0858c19f05..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_bald_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_cropped_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_cropped_s.png deleted file mode 100644 index 67574355ee..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_cropped_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_cropped_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_cropped_s2.png deleted file mode 100644 index 0858c19f05..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_cropped_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_horns_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_horns_s.png deleted file mode 100644 index dbb4ae8f28..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_horns_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_horns_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_horns_s2.png deleted file mode 100644 index 0858c19f05..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_horns_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_kingly_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_kingly_s.png deleted file mode 100644 index 3f35429e14..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_kingly_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_kingly_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_kingly_s2.png deleted file mode 100644 index 0858c19f05..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_kingly_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mange_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mange_s.png deleted file mode 100644 index 138c58e690..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mange_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mange_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mange_s2.png deleted file mode 100644 index 0858c19f05..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mange_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mohawk_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mohawk_s.png deleted file mode 100644 index 0a5589b0ba..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mohawk_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mohawk_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mohawk_s2.png deleted file mode 100644 index 0858c19f05..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mohawk_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_nights_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_nights_s.png deleted file mode 100644 index 0a587eafce..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_nights_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_nights_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_nights_s2.png deleted file mode 100644 index 0858c19f05..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_nights_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_pony_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_pony_s.png deleted file mode 100644 index a9ff211389..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_pony_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_pony_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_pony_s2.png deleted file mode 100644 index 0858c19f05..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_pony_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_rows_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_rows_s.png deleted file mode 100644 index cee8b9a103..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_rows_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_rows_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_rows_s2.png deleted file mode 100644 index 0858c19f05..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_rows_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_ruff_hawk_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_ruff_hawk_s.png deleted file mode 100644 index 41c3cb6dec..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_ruff_hawk_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_ruff_hawk_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_ruff_hawk_s2.png deleted file mode 100644 index 0858c19f05..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_ruff_hawk_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_shortquills_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_shortquills_s.png deleted file mode 100644 index c83ef673a5..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_shortquills_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_shortquills_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_shortquills_s2.png deleted file mode 100644 index 0858c19f05..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_shortquills_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_surf_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_surf_s.png deleted file mode 100644 index df2191cacd..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_surf_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_surf_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_surf_s2.png deleted file mode 100644 index 0858c19f05..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_surf_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_yasu_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_yasu_s.png deleted file mode 100644 index 6461305e85..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_yasu_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_yasu_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_yasu_s2.png deleted file mode 100644 index 0858c19f05..0000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_yasu_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/yasu_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/yasu_s.png new file mode 100644 index 0000000000..6ee3de1dad Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/yasu_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_parts.rsi/beak.png b/Resources/Textures/Mobs/Customization/vox_parts.rsi/beak.png new file mode 100644 index 0000000000..23744679b6 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_parts.rsi/beak.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_parts.rsi/l_arm.png b/Resources/Textures/Mobs/Customization/vox_parts.rsi/l_arm.png new file mode 100644 index 0000000000..e35fb3c6bf Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_parts.rsi/l_arm.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_parts.rsi/l_foot.png b/Resources/Textures/Mobs/Customization/vox_parts.rsi/l_foot.png new file mode 100644 index 0000000000..5ab81e3616 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_parts.rsi/l_foot.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_parts.rsi/l_hand.png b/Resources/Textures/Mobs/Customization/vox_parts.rsi/l_hand.png new file mode 100644 index 0000000000..660da8a5d1 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_parts.rsi/l_hand.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_parts.rsi/l_leg.png b/Resources/Textures/Mobs/Customization/vox_parts.rsi/l_leg.png new file mode 100644 index 0000000000..1a81369838 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_parts.rsi/l_leg.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_parts.rsi/meta.json b/Resources/Textures/Mobs/Customization/vox_parts.rsi/meta.json new file mode 100644 index 0000000000..fd5c14b6a3 --- /dev/null +++ b/Resources/Textures/Mobs/Customization/vox_parts.rsi/meta.json @@ -0,0 +1,55 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13 at 02ff588d59b3c560c685d9ca75e882d32a72d8cb, modified by Bhijn, Errant and Flareguy", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "beak", + "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": "tail", + "directions": 4 + }, + { + "name": "tail_stenciled", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Customization/vox_parts.rsi/r_arm.png b/Resources/Textures/Mobs/Customization/vox_parts.rsi/r_arm.png new file mode 100644 index 0000000000..c8c70752f4 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_parts.rsi/r_arm.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_parts.rsi/r_foot.png b/Resources/Textures/Mobs/Customization/vox_parts.rsi/r_foot.png new file mode 100644 index 0000000000..58dbe90b09 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_parts.rsi/r_foot.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_parts.rsi/r_hand.png b/Resources/Textures/Mobs/Customization/vox_parts.rsi/r_hand.png new file mode 100644 index 0000000000..e433456bf2 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_parts.rsi/r_hand.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_parts.rsi/r_leg.png b/Resources/Textures/Mobs/Customization/vox_parts.rsi/r_leg.png new file mode 100644 index 0000000000..d616753129 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_parts.rsi/r_leg.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_parts.rsi/tail.png b/Resources/Textures/Mobs/Customization/vox_parts.rsi/tail.png new file mode 100644 index 0000000000..0e63d3327b Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_parts.rsi/tail.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_parts.rsi/tail_stenciled.png b/Resources/Textures/Mobs/Customization/vox_parts.rsi/tail_stenciled.png new file mode 100644 index 0000000000..50627ac522 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_parts.rsi/tail_stenciled.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/heart_l_arm.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/heart_l_arm.png new file mode 100644 index 0000000000..0ff82bbaf2 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/heart_l_arm.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/heart_r_arm.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/heart_r_arm.png new file mode 100644 index 0000000000..774c96692c Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/heart_r_arm.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/hive_s.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/hive_s.png new file mode 100644 index 0000000000..8361f55864 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/hive_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/meta.json b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/meta.json new file mode 100644 index 0000000000..725fbb6a0d --- /dev/null +++ b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/ef7a4d962915cb36b138eeb59663f0053d4906fe/icons/mob/sprite_accessories/vox/vox_body_markings.dmi and modified by Flareguy", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "heart_l_arm", + "directions": 4 + }, + { + "name": "heart_r_arm", + "directions": 4 + }, + { + "name": "hive_s", + "directions": 4 + }, + { + "name": "nightling_s", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/nightling_s.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/nightling_s.png new file mode 100644 index 0000000000..72b0b30fd5 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/nightling_s.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/displacement.rsi/jumpsuit.png b/Resources/Textures/Mobs/Species/Vox/displacement.rsi/jumpsuit.png new file mode 100644 index 0000000000..2c938634eb Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vox/displacement.rsi/jumpsuit.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/displacement.rsi/meta.json b/Resources/Textures/Mobs/Species/Vox/displacement.rsi/meta.json new file mode 100644 index 0000000000..6ea6c552b9 --- /dev/null +++ b/Resources/Textures/Mobs/Species/Vox/displacement.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by PJB3005", + "size": { + "x": 32, + "y": 32 + }, + "load": { + "srgb": false + }, + "states": [ + { + "name": "jumpsuit", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/eyes.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/eyes.png new file mode 100644 index 0000000000..5069e90b53 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vox/parts.rsi/eyes.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/full.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/full.png new file mode 100644 index 0000000000..6338e4d112 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vox/parts.rsi/full.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/groin.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/groin.png new file mode 100644 index 0000000000..ec0dd8402e Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vox/parts.rsi/groin.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/groin_f.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/groin_f.png deleted file mode 100644 index 15c0ed8d66..0000000000 Binary files a/Resources/Textures/Mobs/Species/Vox/parts.rsi/groin_f.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/groin_m.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/groin_m.png deleted file mode 100644 index 15c0ed8d66..0000000000 Binary files a/Resources/Textures/Mobs/Species/Vox/parts.rsi/groin_m.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/head.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/head.png new file mode 100644 index 0000000000..955e6c7b2a Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vox/parts.rsi/head.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/head_f.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/head_f.png deleted file mode 100644 index 6d92de1b90..0000000000 Binary files a/Resources/Textures/Mobs/Species/Vox/parts.rsi/head_f.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/head_m.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/head_m.png deleted file mode 100644 index 6d92de1b90..0000000000 Binary files a/Resources/Textures/Mobs/Species/Vox/parts.rsi/head_m.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/l_arm.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/l_arm.png index bdd61871c5..258127dbae 100644 Binary files a/Resources/Textures/Mobs/Species/Vox/parts.rsi/l_arm.png and b/Resources/Textures/Mobs/Species/Vox/parts.rsi/l_arm.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/l_foot.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/l_foot.png index d12c19cf0c..3b81ae7059 100644 Binary files a/Resources/Textures/Mobs/Species/Vox/parts.rsi/l_foot.png and b/Resources/Textures/Mobs/Species/Vox/parts.rsi/l_foot.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/l_hand.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/l_hand.png index 0d1048e090..d321880c7b 100644 Binary files a/Resources/Textures/Mobs/Species/Vox/parts.rsi/l_hand.png and b/Resources/Textures/Mobs/Species/Vox/parts.rsi/l_hand.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/l_leg.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/l_leg.png index 20eebad860..918b343f98 100644 Binary files a/Resources/Textures/Mobs/Species/Vox/parts.rsi/l_leg.png and b/Resources/Textures/Mobs/Species/Vox/parts.rsi/l_leg.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/meta.json b/Resources/Textures/Mobs/Species/Vox/parts.rsi/meta.json index 1070da1203..4704e093b4 100644 --- a/Resources/Textures/Mobs/Species/Vox/parts.rsi/meta.json +++ b/Resources/Textures/Mobs/Species/Vox/parts.rsi/meta.json @@ -1,26 +1,25 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/vgstation-coders/vgstation13 at 02ff588d59b3c560c685d9ca75e882d32a72d8cb", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13 at 02ff588d59b3c560c685d9ca75e882d32a72d8cb, and modified by Bhijn, Errant and Flareguy", "size": { "x": 32, "y": 32 }, "states": [ { - "name": "groin_f", + "name": "eyes", "directions": 4 }, { - "name": "groin_m", - "directions": 4 + "name": "full" }, { - "name": "head_f", + "name": "groin", "directions": 4 }, { - "name": "head_m", + "name": "head", "directions": 4 }, { @@ -60,11 +59,7 @@ "directions": 4 }, { - "name": "torso_f", - "directions": 4 - }, - { - "name": "torso_m", + "name": "torso", "directions": 4 }, { diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/r_arm.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/r_arm.png index 0c1f703efd..766cd378ea 100644 Binary files a/Resources/Textures/Mobs/Species/Vox/parts.rsi/r_arm.png and b/Resources/Textures/Mobs/Species/Vox/parts.rsi/r_arm.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/r_foot.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/r_foot.png index 80d3a78759..2511bc5252 100644 Binary files a/Resources/Textures/Mobs/Species/Vox/parts.rsi/r_foot.png and b/Resources/Textures/Mobs/Species/Vox/parts.rsi/r_foot.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/r_hand.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/r_hand.png index d794c608bd..98f8b376a8 100644 Binary files a/Resources/Textures/Mobs/Species/Vox/parts.rsi/r_hand.png and b/Resources/Textures/Mobs/Species/Vox/parts.rsi/r_hand.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/r_leg.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/r_leg.png index 37417e2815..45b1ae82e7 100644 Binary files a/Resources/Textures/Mobs/Species/Vox/parts.rsi/r_leg.png and b/Resources/Textures/Mobs/Species/Vox/parts.rsi/r_leg.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/torso.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/torso.png new file mode 100644 index 0000000000..841d409735 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vox/parts.rsi/torso.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/torso_f.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/torso_f.png deleted file mode 100644 index 75bb51ed37..0000000000 Binary files a/Resources/Textures/Mobs/Species/Vox/parts.rsi/torso_f.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/torso_m.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/torso_m.png deleted file mode 100644 index 75bb51ed37..0000000000 Binary files a/Resources/Textures/Mobs/Species/Vox/parts.rsi/torso_m.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/vox_m.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/vox_m.png index 31f75a7996..8eead3c97b 100644 Binary files a/Resources/Textures/Mobs/Species/Vox/parts.rsi/vox_m.png and b/Resources/Textures/Mobs/Species/Vox/parts.rsi/vox_m.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Materials/materials.rsi/meta.json b/Resources/Textures/Nyanotrasen/Objects/Materials/materials.rsi/meta.json deleted file mode 100644 index 87a4078ff7..0000000000 --- a/Resources/Textures/Nyanotrasen/Objects/Materials/materials.rsi/meta.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "bluespace" - }, - { - "name": "bluespace_2" - }, - { - "name": "bluespace_3" - } - ] -} diff --git a/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-1.png new file mode 100644 index 0000000000..aca8f4931d Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-2.png new file mode 100644 index 0000000000..4715162ebe Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-3.png new file mode 100644 index 0000000000..04bfd58d03 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/icon.png new file mode 100644 index 0000000000..04bfd58d03 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/icon_empty.png new file mode 100644 index 0000000000..4d446abc54 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/meta.json new file mode 100644 index 0000000000..14c43f186f --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/meta.json @@ -0,0 +1,28 @@ +{ + "version": 1, + "size": + { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Glass and fillstates by Hanzdegloker on Github.", + "states": + [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/coffeeglass.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/coffeeglass.rsi/fill-1.png new file mode 100644 index 0000000000..e4e832ce8d Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/coffeeglass.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/coffeeglass.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/coffeeglass.rsi/fill-2.png new file mode 100644 index 0000000000..c778f3c428 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/coffeeglass.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/coffeeglass.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/coffeeglass.rsi/fill-3.png new file mode 100644 index 0000000000..480528bc96 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/coffeeglass.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/coffeeglass.rsi/fill-4.png b/Resources/Textures/Objects/Consumable/Drinks/coffeeglass.rsi/fill-4.png new file mode 100644 index 0000000000..da13e68139 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/coffeeglass.rsi/fill-4.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/coffeeglass.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/coffeeglass.rsi/icon.png new file mode 100644 index 0000000000..08de309039 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/coffeeglass.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/coffeeglass.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/coffeeglass.rsi/icon_empty.png new file mode 100644 index 0000000000..d46a00edd0 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/coffeeglass.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/coffeeglass.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/coffeeglass.rsi/meta.json new file mode 100644 index 0000000000..32c5e0342d --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/coffeeglass.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by borkroman. Fill levels by RumiTiger", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + }, + { + "name": "fill-4" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/fill-1.png new file mode 100644 index 0000000000..a36d304a4d Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/fill-2.png new file mode 100644 index 0000000000..6351e9f3dd Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/fill-3.png new file mode 100644 index 0000000000..bb7bee49d0 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/fill-4.png b/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/fill-4.png new file mode 100644 index 0000000000..1808bdbd04 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/fill-4.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/fill-5.png b/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/fill-5.png new file mode 100644 index 0000000000..734126d866 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/fill-5.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/icon.png new file mode 100644 index 0000000000..2894625a2e Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/icon_empty.png new file mode 100644 index 0000000000..b20279f8f1 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/meta.json new file mode 100644 index 0000000000..ec55ebfa1f --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/colaglass.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by RumiTiger", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + }, + { + "name": "fill-4" + }, + { + "name": "fill-5" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/fill-1.png new file mode 100644 index 0000000000..68731e8fcb Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/fill-2.png new file mode 100644 index 0000000000..716aebbb83 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/fill-3.png new file mode 100644 index 0000000000..74f54a4c83 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/fill-4.png b/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/fill-4.png new file mode 100644 index 0000000000..da44083964 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/fill-4.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/fill-5.png b/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/fill-5.png new file mode 100644 index 0000000000..db2b9315bf Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/fill-5.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/icon.png index 620cf5ea01..6a68486662 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/icon.png and b/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/icon_empty.png new file mode 100644 index 0000000000..af2dcb404c Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/meta.json index db0ac608ed..ec55ebfa1f 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/dr_gibb_glass.rsi/meta.json @@ -1 +1,32 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]} \ No newline at end of file +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by RumiTiger", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + }, + { + "name": "fill-4" + }, + { + "name": "fill-5" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/icon.png index 7a577d477c..e9e2aea716 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/icon.png and b/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/icon_open.png b/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/icon_open.png index b26d37e377..44688ef3e9 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/icon_open.png and b/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/icon_open.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/greenteaglass.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/greenteaglass.rsi/fill-1.png new file mode 100644 index 0000000000..613efd1171 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/greenteaglass.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/greenteaglass.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/greenteaglass.rsi/fill-2.png new file mode 100644 index 0000000000..785703f4df Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/greenteaglass.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/greenteaglass.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/greenteaglass.rsi/fill-3.png new file mode 100644 index 0000000000..1f482c8df9 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/greenteaglass.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/greenteaglass.rsi/fill-4.png b/Resources/Textures/Objects/Consumable/Drinks/greenteaglass.rsi/fill-4.png new file mode 100644 index 0000000000..99c7dffa36 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/greenteaglass.rsi/fill-4.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/greenteaglass.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/greenteaglass.rsi/icon.png new file mode 100644 index 0000000000..9c77c673ff Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/greenteaglass.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/greenteaglass.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/greenteaglass.rsi/icon_empty.png new file mode 100644 index 0000000000..71eb435183 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/greenteaglass.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/greenteaglass.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/greenteaglass.rsi/meta.json new file mode 100644 index 0000000000..32c5e0342d --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/greenteaglass.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by borkroman. Fill levels by RumiTiger", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + }, + { + "name": "fill-4" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/icebucket.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/icebucket.rsi/icon.png new file mode 100644 index 0000000000..228d098060 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/icebucket.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/icebucket.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/icebucket.rsi/meta.json new file mode 100644 index 0000000000..f55a85dc26 --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/icebucket.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Dezzzix; Discord: dezzzix", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + } + ] + } diff --git a/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/fill-1.png new file mode 100644 index 0000000000..2d217ef147 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/fill-2.png new file mode 100644 index 0000000000..d8ca5b63af Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/fill-3.png new file mode 100644 index 0000000000..a65df2aaed Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/fill-4.png b/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/fill-4.png new file mode 100644 index 0000000000..3ae28ff68f Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/fill-4.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/fill-5.png b/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/fill-5.png new file mode 100644 index 0000000000..72c2f4cecf Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/fill-5.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/icon.png new file mode 100644 index 0000000000..999834b142 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/icon_empty.png new file mode 100644 index 0000000000..e10df8d172 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/meta.json new file mode 100644 index 0000000000..ec55ebfa1f --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/icedgreenteaglass.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by RumiTiger", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + }, + { + "name": "fill-4" + }, + { + "name": "fill-5" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/iceglass.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/iceglass.rsi/fill-1.png new file mode 100644 index 0000000000..04c8198fc9 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/iceglass.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/iceglass.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/iceglass.rsi/fill-2.png new file mode 100644 index 0000000000..367a9e178b Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/iceglass.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/iceglass.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/iceglass.rsi/fill-3.png new file mode 100644 index 0000000000..02022cd03b Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/iceglass.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/iceglass.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/iceglass.rsi/icon.png index 61f63fd057..96807c9a5d 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/iceglass.rsi/icon.png and b/Resources/Textures/Objects/Consumable/Drinks/iceglass.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/iceglass.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/iceglass.rsi/icon_empty.png new file mode 100644 index 0000000000..5d1f677b89 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/iceglass.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/iceglass.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/iceglass.rsi/meta.json index db0ac608ed..bdfdb18a0d 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/iceglass.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/iceglass.rsi/meta.json @@ -1 +1,26 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]} \ No newline at end of file +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by borkroman. Fill levels by RumiTiger", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/jigger.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/jigger.rsi/icon.png new file mode 100644 index 0000000000..6c65ca0202 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/jigger.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/jigger.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/jigger.rsi/meta.json new file mode 100644 index 0000000000..f55a85dc26 --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/jigger.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Dezzzix; Discord: dezzzix", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + } + ] + } diff --git a/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/fill-1.png new file mode 100644 index 0000000000..4888127187 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/fill-2.png new file mode 100644 index 0000000000..081ad92014 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/fill-3.png new file mode 100644 index 0000000000..97a8f2c29b Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/fill-4.png b/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/fill-4.png new file mode 100644 index 0000000000..5b8af69ec8 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/fill-4.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/fill-5.png b/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/fill-5.png new file mode 100644 index 0000000000..9b2bc6a3f7 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/fill-5.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/icon.png new file mode 100644 index 0000000000..9ee1bdd517 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/icon_empty.png new file mode 100644 index 0000000000..abbdd77b27 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/meta.json new file mode 100644 index 0000000000..ec55ebfa1f --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/lemonjuiceglass.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by RumiTiger", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + }, + { + "name": "fill-4" + }, + { + "name": "fill-5" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/fill-1.png new file mode 100644 index 0000000000..824ffcf3d6 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/fill-2.png new file mode 100644 index 0000000000..5159ff3671 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/fill-3.png new file mode 100644 index 0000000000..6d2115a95a Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/fill-4.png b/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/fill-4.png new file mode 100644 index 0000000000..90ca019493 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/fill-4.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/fill-5.png b/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/fill-5.png new file mode 100644 index 0000000000..c50860e4d0 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/fill-5.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/fill-6.png b/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/fill-6.png new file mode 100644 index 0000000000..1488e2b629 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/fill-6.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/icon.png new file mode 100644 index 0000000000..5fa26544fd Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/icon_empty.png new file mode 100644 index 0000000000..673679cb4a Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/meta.json new file mode 100644 index 0000000000..5fe156daaa --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/moonshineglass.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by RumiTiger", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + }, + { + "name": "fill-4" + }, + { + "name": "fill-5" + }, + { + "name": "fill-6" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/fill-1.png new file mode 100644 index 0000000000..6a56b31eee Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/fill-2.png new file mode 100644 index 0000000000..0a853551c5 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/fill-3.png new file mode 100644 index 0000000000..92293d8cf2 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/fill-4.png b/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/fill-4.png new file mode 100644 index 0000000000..85f6dea9b6 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/fill-4.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/fill-5.png b/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/fill-5.png new file mode 100644 index 0000000000..598d0be5b6 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/fill-5.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/icon.png new file mode 100644 index 0000000000..64e185065a Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/icon_empty.png new file mode 100644 index 0000000000..fc940737b2 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/meta.json new file mode 100644 index 0000000000..ec55ebfa1f --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/orangejuiceglass.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by RumiTiger", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + }, + { + "name": "fill-4" + }, + { + "name": "fill-5" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-1.png new file mode 100644 index 0000000000..f5afa0bed8 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-2.png new file mode 100644 index 0000000000..79bcdcfb8c Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-3.png new file mode 100644 index 0000000000..772aa80d6a Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/icon.png new file mode 100644 index 0000000000..772aa80d6a Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/icon_empty.png new file mode 100644 index 0000000000..416d1f7717 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/meta.json new file mode 100644 index 0000000000..a26c7355ae --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/meta.json @@ -0,0 +1,28 @@ +{ + "version": 1, + "size": + { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://tgstation13.org/wiki/images/archive/4/4e/20220514022531%21Rubberneck.png. Fill levels by Hanzdegloker on GitHub.", + "states": + [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/fill-1.png new file mode 100644 index 0000000000..077d84804e Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/fill-2.png new file mode 100644 index 0000000000..763d02e7b8 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/fill-3.png new file mode 100644 index 0000000000..ba76b0c22b Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/fill-4.png b/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/fill-4.png new file mode 100644 index 0000000000..ce9f636dbc Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/fill-4.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/fill-5.png b/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/fill-5.png new file mode 100644 index 0000000000..b79be48363 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/fill-5.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/fill-6.png b/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/fill-6.png new file mode 100644 index 0000000000..9abb7c672b Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/fill-6.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/icon.png index 5930cd7536..e5eeaba264 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/icon.png and b/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/icon_empty.png new file mode 100644 index 0000000000..9e12bbbe4d Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/meta.json index db0ac608ed..5fe156daaa 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/space-up_glass.rsi/meta.json @@ -1 +1,35 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]} \ No newline at end of file +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by RumiTiger", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + }, + { + "name": "fill-4" + }, + { + "name": "fill-5" + }, + { + "name": "fill-6" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/fill-1.png new file mode 100644 index 0000000000..53db03fd96 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/fill-2.png new file mode 100644 index 0000000000..601efddc0d Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/fill-3.png new file mode 100644 index 0000000000..4c50ee9fd7 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/fill-4.png b/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/fill-4.png new file mode 100644 index 0000000000..38cf3fdbfc Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/fill-4.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/fill-5.png b/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/fill-5.png new file mode 100644 index 0000000000..06be04566c Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/fill-5.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/icon.png index 812d7fd488..6303745c50 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/icon.png and b/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/icon_empty.png new file mode 100644 index 0000000000..d576502499 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/meta.json index db0ac608ed..ec55ebfa1f 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind_glass.rsi/meta.json @@ -1 +1,32 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]} \ No newline at end of file +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by RumiTiger", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + }, + { + "name": "fill-4" + }, + { + "name": "fill-5" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/fill-1.png new file mode 100644 index 0000000000..6dce3834ee Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/fill-2.png new file mode 100644 index 0000000000..64dfddb473 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/fill-3.png new file mode 100644 index 0000000000..2d281d5189 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/fill-4.png b/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/fill-4.png new file mode 100644 index 0000000000..18ee0e4280 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/fill-4.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/fill-5.png b/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/fill-5.png new file mode 100644 index 0000000000..fe4fdead76 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/fill-5.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/fill-6.png b/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/fill-6.png new file mode 100644 index 0000000000..9a023cdb01 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/fill-6.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/fill-7.png b/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/fill-7.png new file mode 100644 index 0000000000..d7cd6ca7be Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/fill-7.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/icon.png new file mode 100644 index 0000000000..cf2066eb37 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/icon_empty.png new file mode 100644 index 0000000000..5f3bc4f4c7 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/meta.json new file mode 100644 index 0000000000..55fdf44163 --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/sugarglass.rsi/meta.json @@ -0,0 +1,38 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by RumiTiger", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + }, + { + "name": "fill-4" + }, + { + "name": "fill-5" + }, + { + "name": "fill-6" + }, + { + "name": "fill-7" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/fill-1.png new file mode 100644 index 0000000000..05e6af71a7 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/fill-2.png new file mode 100644 index 0000000000..cdf98da4a6 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/fill-3.png new file mode 100644 index 0000000000..1f514088a2 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/fill-4.png b/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/fill-4.png new file mode 100644 index 0000000000..1a8ed41fde Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/fill-4.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/icon.png index 727bc3f2fb..b31ed22db5 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/icon.png and b/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/icon_empty.png new file mode 100644 index 0000000000..abad93afb3 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/meta.json index db0ac608ed..019c918be9 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/teaglass.rsi/meta.json @@ -1 +1,29 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]} \ No newline at end of file +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by RumiTiger", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + }, + { + "name": "fill-4" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/fill-1.png index 202cfe304c..30399627af 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/fill-1.png and b/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/fill-2.png index 8cb7a51424..ed17e56693 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/fill-2.png and b/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/fill-3.png index b17d5ec6b6..a240f84f26 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/fill-3.png and b/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/fill-4.png b/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/fill-4.png deleted file mode 100644 index 642c08ff68..0000000000 Binary files a/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/fill-4.png and /dev/null differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/icon.png index 4cac2a3aa4..b1510211cf 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/icon.png and b/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/icon_empty.png index 72476b77c0..dd4fd594d5 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/icon_empty.png and b/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/meta.json index 20e933bb57..a2e79dfea1 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/tequillaglass.rsi/meta.json @@ -1,31 +1,26 @@ { - "version": 1, - "size": + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by RumiTiger", + "states": [ { - "x": 32, - "y": 32 + "name": "icon" }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi. Fill levels by Tayrtahn on GitHub.", - "states": - [ - { - "name": "icon" - }, - { - "name": "icon_empty" - }, - { - "name": "fill-1" - }, - { - "name": "fill-2" - }, - { - "name": "fill-3" - }, - { - "name": "fill-4" - } - ] + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + } + ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/fill-1.png new file mode 100644 index 0000000000..0082f2b814 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/fill-2.png new file mode 100644 index 0000000000..cd667bfb33 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/fill-3.png new file mode 100644 index 0000000000..0edd69b4db Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/fill-4.png b/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/fill-4.png new file mode 100644 index 0000000000..f3cf6be999 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/fill-4.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/fill-5.png b/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/fill-5.png new file mode 100644 index 0000000000..3e1c0d68c1 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/fill-5.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/icon.png new file mode 100644 index 0000000000..438ed21e51 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/icon_empty.png new file mode 100644 index 0000000000..1a306745d9 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/meta.json new file mode 100644 index 0000000000..ec55ebfa1f --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/tonicglass.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by RumiTiger", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + }, + { + "name": "fill-4" + }, + { + "name": "fill-5" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/watermelonglass.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/watermelonglass.rsi/fill-1.png new file mode 100644 index 0000000000..533f3b8177 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/watermelonglass.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/watermelonglass.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/watermelonglass.rsi/fill-2.png new file mode 100644 index 0000000000..7563af563a Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/watermelonglass.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/watermelonglass.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/watermelonglass.rsi/fill-3.png new file mode 100644 index 0000000000..38c729ef38 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/watermelonglass.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/watermelonglass.rsi/fill-4.png b/Resources/Textures/Objects/Consumable/Drinks/watermelonglass.rsi/fill-4.png new file mode 100644 index 0000000000..010224c48e Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/watermelonglass.rsi/fill-4.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/watermelonglass.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/watermelonglass.rsi/icon.png new file mode 100644 index 0000000000..e551fdb07b Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/watermelonglass.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/watermelonglass.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/watermelonglass.rsi/icon_empty.png new file mode 100644 index 0000000000..ab9ba53863 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/watermelonglass.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/watermelonglass.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/watermelonglass.rsi/meta.json new file mode 100644 index 0000000000..019c918be9 --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/watermelonglass.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by RumiTiger", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + }, + { + "name": "fill-4" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/fill-1.png new file mode 100644 index 0000000000..3aef3bd8ab Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/fill-2.png new file mode 100644 index 0000000000..ce4411ee1e Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/icon.png new file mode 100644 index 0000000000..ce4411ee1e Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/icon_empty.png new file mode 100644 index 0000000000..85097b80cc Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/meta.json new file mode 100644 index 0000000000..9743bd909e --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Hanzdegloker on github", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/lit-equipped-MASK-vox.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/lit-equipped-MASK-vox.png new file mode 100644 index 0000000000..c0723dcde6 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/lit-equipped-MASK-vox.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/meta.json index 6b6687d88c..17b46355b6 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.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/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d | lit-equipped-MASK-vox & unlit-equipped-MASK-vox states taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", "size": { "x": 32, "y": 32 @@ -57,6 +57,56 @@ ] ] }, + { + "name": "unlit-equipped-MASK-vox", + "directions": 4 + }, + { + "name": "lit-equipped-MASK-vox", + "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": "burnt-icon" }, diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/unlit-equipped-MASK-vox.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/unlit-equipped-MASK-vox.png new file mode 100644 index 0000000000..3cbf873967 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/unlit-equipped-MASK-vox.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/lit-equipped-MASK-vox.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/lit-equipped-MASK-vox.png new file mode 100644 index 0000000000..c0723dcde6 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/lit-equipped-MASK-vox.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/meta.json index 6b6687d88c..17b46355b6 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.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/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d | lit-equipped-MASK-vox & unlit-equipped-MASK-vox states taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", "size": { "x": 32, "y": 32 @@ -57,6 +57,56 @@ ] ] }, + { + "name": "unlit-equipped-MASK-vox", + "directions": 4 + }, + { + "name": "lit-equipped-MASK-vox", + "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": "burnt-icon" }, diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/unlit-equipped-MASK-vox.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/unlit-equipped-MASK-vox.png new file mode 100644 index 0000000000..3cbf873967 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/unlit-equipped-MASK-vox.png differ diff --git a/Resources/Textures/Objects/Consumable/TrashDrinks/goldschlagerbottle_empty.rsi/icon.png b/Resources/Textures/Objects/Consumable/TrashDrinks/gildlagerbottle_empty.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Consumable/TrashDrinks/goldschlagerbottle_empty.rsi/icon.png rename to Resources/Textures/Objects/Consumable/TrashDrinks/gildlagerbottle_empty.rsi/icon.png diff --git a/Resources/Textures/Objects/Consumable/TrashDrinks/goldschlagerbottle_empty.rsi/meta.json b/Resources/Textures/Objects/Consumable/TrashDrinks/gildlagerbottle_empty.rsi/meta.json similarity index 100% rename from Resources/Textures/Objects/Consumable/TrashDrinks/goldschlagerbottle_empty.rsi/meta.json rename to Resources/Textures/Objects/Consumable/TrashDrinks/gildlagerbottle_empty.rsi/meta.json diff --git a/Resources/Textures/Objects/Devices/chameleon_projector.rsi/icon.png b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/icon.png new file mode 100644 index 0000000000..ce20b5eeee Binary files /dev/null and b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Devices/chameleon_projector.rsi/inhand-left.png b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/inhand-left.png new file mode 100644 index 0000000000..2d3863145b Binary files /dev/null and b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Devices/chameleon_projector.rsi/inhand-right.png b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/inhand-right.png new file mode 100644 index 0000000000..1704b9c3c1 Binary files /dev/null and b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Devices/chameleon_projector.rsi/meta.json b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/meta.json new file mode 100644 index 0000000000..3eb42e9e6f --- /dev/null +++ b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at ", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Devices/flatpack.rsi/emitter.png b/Resources/Textures/Objects/Devices/flatpack.rsi/emitter.png new file mode 100644 index 0000000000..c663886f9c Binary files /dev/null and b/Resources/Textures/Objects/Devices/flatpack.rsi/emitter.png differ diff --git a/Resources/Textures/Objects/Devices/flatpack.rsi/meta.json b/Resources/Textures/Objects/Devices/flatpack.rsi/meta.json index 2d1ca37141..8f46a0ca53 100644 --- a/Resources/Textures/Objects/Devices/flatpack.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/flatpack.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC0-1.0", - "copyright": "Created by EmoGarbage404 (github) for SS14, solar-assembly-part taken from tgstation and modified at https://tgstation13.org/wiki/Guide_to_construction#Solar_Panels_and_Trackers, ame-part taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1b7952787c06c21ef1623e494dcfe7cb1f46e041; singularity-generator, tesla-generator, radiation-collector, containment-field-generator, tesla-coil, grounding-rod inner icons made by lzk228", + "copyright": "Created by EmoGarbage404 (github) for SS14, solar-assembly-part taken from tgstation and modified at https://tgstation13.org/wiki/Guide_to_construction#Solar_Panels_and_Trackers, ame-part taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1b7952787c06c21ef1623e494dcfe7cb1f46e041; singularity-generator, tesla-generator, radiation-collector, containment-field-generator, tesla-coil, grounding-rod inner icons made by lzk228; emitter made by pigeonpeas", "size": { "x": 32, "y": 32 @@ -39,6 +39,9 @@ }, { "name": "containment-field-generator" + }, + { + "name": "emitter" } ] } diff --git a/Resources/Textures/Objects/Devices/jammer.rsi/jammer-on.png b/Resources/Textures/Objects/Devices/jammer.rsi/jammer-on.png deleted file mode 100644 index 987e571b26..0000000000 Binary files a/Resources/Textures/Objects/Devices/jammer.rsi/jammer-on.png and /dev/null differ diff --git a/Resources/Textures/Objects/Devices/jammer.rsi/jammer_high_charge.png b/Resources/Textures/Objects/Devices/jammer.rsi/jammer_high_charge.png new file mode 100644 index 0000000000..e288427e71 Binary files /dev/null and b/Resources/Textures/Objects/Devices/jammer.rsi/jammer_high_charge.png differ diff --git a/Resources/Textures/Objects/Devices/jammer.rsi/jammer_low_charge.png b/Resources/Textures/Objects/Devices/jammer.rsi/jammer_low_charge.png new file mode 100644 index 0000000000..0950a95df7 Binary files /dev/null and b/Resources/Textures/Objects/Devices/jammer.rsi/jammer_low_charge.png differ diff --git a/Resources/Textures/Objects/Devices/jammer.rsi/jammer_medium_charge.png b/Resources/Textures/Objects/Devices/jammer.rsi/jammer_medium_charge.png new file mode 100644 index 0000000000..7c12da8606 Binary files /dev/null and b/Resources/Textures/Objects/Devices/jammer.rsi/jammer_medium_charge.png differ diff --git a/Resources/Textures/Objects/Devices/jammer.rsi/meta.json b/Resources/Textures/Objects/Devices/jammer.rsi/meta.json index c5cc9f56d2..d837374a87 100644 --- a/Resources/Textures/Objects/Devices/jammer.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/jammer.rsi/meta.json @@ -1,23 +1,33 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/93d9c70530c7299ef0af96fe2178096b2a62e036/icons/obj/device.dmi", + "copyright": "Taken from https://github.com/tgstation/tgstation/commit/c65da5a49477413310c81c460ea4b243a9f864dd with minor edits.", "size": { "x": 32, "y": 32 }, "states": [ { - "name": "jammer" + "name": "jammer", + "directions": 1 }, { - "name": "jammer-on", - "delays": [ - [ - 0.8, - 0.2 - ] + "name": "jammer_high_charge", + "directions": 1 + }, + { + "name": "jammer_medium_charge", + "directions": 1 + }, + { + "name": "jammer_low_charge", + "directions": 1, + "delays": [ + [ + 0.3, + 0.3 ] + ] } ] } diff --git a/Resources/Textures/Objects/Devices/securityhandy.rsi/meta.json b/Resources/Textures/Objects/Devices/securityhandy.rsi/meta.json new file mode 100644 index 0000000000..18a2d93272 --- /dev/null +++ b/Resources/Textures/Objects/Devices/securityhandy.rsi/meta.json @@ -0,0 +1,28 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris and modified by Swept at https://github.com/discordia-space/CEV-Eris/commit/efce5b6c3be75458ce238dcc01510e8f8a653ca6", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "walkietalkie" + }, + { + "name": "walkietalkie-inhand-left", + "directions": 4 + }, + { + "name": "walkietalkie-inhand-right", + "directions": 4 + }, + { + "name": "walkietalkie-off" + }, + { + "name": "walkietalkie-on" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Devices/securityhandy.rsi/walkietalkie-inhand-left.png b/Resources/Textures/Objects/Devices/securityhandy.rsi/walkietalkie-inhand-left.png new file mode 100644 index 0000000000..5815169abf Binary files /dev/null and b/Resources/Textures/Objects/Devices/securityhandy.rsi/walkietalkie-inhand-left.png differ diff --git a/Resources/Textures/Objects/Devices/securityhandy.rsi/walkietalkie-inhand-right.png b/Resources/Textures/Objects/Devices/securityhandy.rsi/walkietalkie-inhand-right.png new file mode 100644 index 0000000000..ed1e606cfb Binary files /dev/null and b/Resources/Textures/Objects/Devices/securityhandy.rsi/walkietalkie-inhand-right.png differ diff --git a/Resources/Textures/Objects/Devices/securityhandy.rsi/walkietalkie-off.png b/Resources/Textures/Objects/Devices/securityhandy.rsi/walkietalkie-off.png new file mode 100644 index 0000000000..2afdf8d962 Binary files /dev/null and b/Resources/Textures/Objects/Devices/securityhandy.rsi/walkietalkie-off.png differ diff --git a/Resources/Textures/Objects/Devices/securityhandy.rsi/walkietalkie-on.png b/Resources/Textures/Objects/Devices/securityhandy.rsi/walkietalkie-on.png new file mode 100644 index 0000000000..dfd79a6441 Binary files /dev/null and b/Resources/Textures/Objects/Devices/securityhandy.rsi/walkietalkie-on.png differ diff --git a/Resources/Textures/Objects/Devices/securityhandy.rsi/walkietalkie.png b/Resources/Textures/Objects/Devices/securityhandy.rsi/walkietalkie.png new file mode 100644 index 0000000000..12aaa3f2f0 Binary files /dev/null and b/Resources/Textures/Objects/Devices/securityhandy.rsi/walkietalkie.png differ diff --git a/Resources/Textures/Objects/Fun/whistle.rsi/meta.json b/Resources/Textures/Objects/Fun/whistle.rsi/meta.json deleted file mode 100644 index 59159ff617..0000000000 --- a/Resources/Textures/Objects/Fun/whistle.rsi/meta.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by Foleps (discord)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "securityWhistle" - } - ] -} diff --git a/Resources/Textures/Objects/Fun/whistles.rsi/equipped-NECK.png b/Resources/Textures/Objects/Fun/whistles.rsi/equipped-NECK.png new file mode 100644 index 0000000000..89fdd599b2 Binary files /dev/null and b/Resources/Textures/Objects/Fun/whistles.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Objects/Fun/whistles.rsi/meta.json b/Resources/Textures/Objects/Fun/whistles.rsi/meta.json new file mode 100644 index 0000000000..4f59ad60e0 --- /dev/null +++ b/Resources/Textures/Objects/Fun/whistles.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "sec and whistle made by Foleps (discord), trench by Firewatchin (discord)", + "size": { + "x": 32, + "y": 32 + }, + + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "whistle" + }, + { + "name": "sec-equipped-NECK", + "directions": 4 + }, + { + "name": "sec" + }, + { + "name": "trench-equipped-NECK", + "directions": 4 + }, + { + "name": "trench" + } + ] +} diff --git a/Resources/Textures/Objects/Fun/whistles.rsi/sec-equipped-NECK.png b/Resources/Textures/Objects/Fun/whistles.rsi/sec-equipped-NECK.png new file mode 100644 index 0000000000..053c457f03 Binary files /dev/null and b/Resources/Textures/Objects/Fun/whistles.rsi/sec-equipped-NECK.png differ diff --git a/Resources/Textures/Objects/Fun/whistle.rsi/securityWhistle.png b/Resources/Textures/Objects/Fun/whistles.rsi/sec.png similarity index 100% rename from Resources/Textures/Objects/Fun/whistle.rsi/securityWhistle.png rename to Resources/Textures/Objects/Fun/whistles.rsi/sec.png diff --git a/Resources/Textures/Clothing/Neck/Misc/whistles.rsi/equipped-NECK.png b/Resources/Textures/Objects/Fun/whistles.rsi/trench-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/whistles.rsi/equipped-NECK.png rename to Resources/Textures/Objects/Fun/whistles.rsi/trench-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/whistles.rsi/icon.png b/Resources/Textures/Objects/Fun/whistles.rsi/trench.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/whistles.rsi/icon.png rename to Resources/Textures/Objects/Fun/whistles.rsi/trench.png diff --git a/Resources/Textures/Objects/Fun/whistles.rsi/whistle.png b/Resources/Textures/Objects/Fun/whistles.rsi/whistle.png new file mode 100644 index 0000000000..35db0ffca4 Binary files /dev/null and b/Resources/Textures/Objects/Fun/whistles.rsi/whistle.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Materials/materials.rsi/bluespace.png b/Resources/Textures/Objects/Materials/materials.rsi/bluespace.png similarity index 100% rename from Resources/Textures/Nyanotrasen/Objects/Materials/materials.rsi/bluespace.png rename to Resources/Textures/Objects/Materials/materials.rsi/bluespace.png diff --git a/Resources/Textures/Nyanotrasen/Objects/Materials/materials.rsi/bluespace_2.png b/Resources/Textures/Objects/Materials/materials.rsi/bluespace_2.png similarity index 100% rename from Resources/Textures/Nyanotrasen/Objects/Materials/materials.rsi/bluespace_2.png rename to Resources/Textures/Objects/Materials/materials.rsi/bluespace_2.png diff --git a/Resources/Textures/Nyanotrasen/Objects/Materials/materials.rsi/bluespace_3.png b/Resources/Textures/Objects/Materials/materials.rsi/bluespace_3.png similarity index 100% rename from Resources/Textures/Nyanotrasen/Objects/Materials/materials.rsi/bluespace_3.png rename to Resources/Textures/Objects/Materials/materials.rsi/bluespace_3.png diff --git a/Resources/Textures/Objects/Materials/materials.rsi/meta.json b/Resources/Textures/Objects/Materials/materials.rsi/meta.json index f0307208e9..016ccddc29 100644 --- a/Resources/Textures/Objects/Materials/materials.rsi/meta.json +++ b/Resources/Textures/Objects/Materials/materials.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 , bear pelt remade by Alekshhh, wood sprite modified by MisterMecky, wood_2 and wood_3 made by MisterMecky based on wood sprite, cardboard sprites made by MisterMecky, bananium, bananium_1 and peel made by brainfood1183 (github) for ss14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 , bear pelt remade by Alekshhh, wood sprite modified by MisterMecky, wood_2 and wood_3 made by MisterMecky based on wood sprite, cardboard sprites made by MisterMecky, bananium, bananium_1 and peel made by brainfood1183 (github) for ss14. Pyrotton sprites are drawn by Ubaser, using the cotton material sprites as a base. Bluespace and Normality taken from tgstation at https://github.com/tgstation/tgstation/commit/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428, reshaded by Aidenkrz", "size": { "x": 32, "y": 32 @@ -66,6 +66,15 @@ { "name": "cotton_3" }, + { + "name": "pyrotton" + }, + { + "name": "pyrotton_2" + }, + { + "name": "pyrotton_3" + }, { "name": "diamond" }, @@ -150,6 +159,24 @@ }, { "name": "bones_3" + }, + { + "name": "bluespace" + }, + { + "name": "bluespace_2" + }, + { + "name": "bluespace_3" + }, + { + "name": "normality" + }, + { + "name": "normality_2" + }, + { + "name": "normality_3" } ] } diff --git a/Resources/Textures/Objects/Materials/materials.rsi/normality.png b/Resources/Textures/Objects/Materials/materials.rsi/normality.png new file mode 100644 index 0000000000..3a91811667 Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/normality.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/normality_2.png b/Resources/Textures/Objects/Materials/materials.rsi/normality_2.png new file mode 100644 index 0000000000..fd672a9b09 Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/normality_2.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/normality_3.png b/Resources/Textures/Objects/Materials/materials.rsi/normality_3.png new file mode 100644 index 0000000000..8895885954 Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/normality_3.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/pyrotton.png b/Resources/Textures/Objects/Materials/materials.rsi/pyrotton.png new file mode 100644 index 0000000000..daa6701c39 Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/pyrotton.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/pyrotton_2.png b/Resources/Textures/Objects/Materials/materials.rsi/pyrotton_2.png new file mode 100644 index 0000000000..fcd2689557 Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/pyrotton_2.png differ diff --git a/Resources/Textures/Objects/Materials/materials.rsi/pyrotton_3.png b/Resources/Textures/Objects/Materials/materials.rsi/pyrotton_3.png new file mode 100644 index 0000000000..072ba2c6d1 Binary files /dev/null and b/Resources/Textures/Objects/Materials/materials.rsi/pyrotton_3.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/bluespace.png b/Resources/Textures/Objects/Materials/ore.rsi/bluespace.png new file mode 100644 index 0000000000..8aa4a33552 Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/bluespace.png differ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/meta.json b/Resources/Textures/Objects/Materials/ore.rsi/meta.json index 98a10750bf..bc5dde9012 100644 --- a/Resources/Textures/Objects/Materials/ore.rsi/meta.json +++ b/Resources/Textures/Objects/Materials/ore.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-NC-SA-3.0", - "copyright": "silver, plasma taken from https://github.com/vgstation-coders/vgstation13 at commit f2ef221849675915a78fd92fe622c32ab740e085, spacequartz taken from https://github.com/goonstation/goonstation at commit b51daf824df46a3a1426475f982c09479818e522 and reshaded by Alekshhh, bananium; uranium; iron; gold; coal by Alekshhh", + "copyright": "silver, plasma taken from https://github.com/vgstation-coders/vgstation13 at commit f2ef221849675915a78fd92fe622c32ab740e085, spacequartz taken from https://github.com/goonstation/goonstation at commit b51daf824df46a3a1426475f982c09479818e522 and reshaded by Alekshhh, bananium; uranium; iron; gold; coal by Alekshhh. Bluespace and Normality taken from tgstation at https://github.com/tgstation/tgstation/commit/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428, reshaded by Aidenkrz", "size": { "x": 32, "y": 32 @@ -33,6 +33,12 @@ }, { "name": "salt" + }, + { + "name": "bluespace" + }, + { + "name": "normality" } ] } diff --git a/Resources/Textures/Objects/Materials/ore.rsi/normality.png b/Resources/Textures/Objects/Materials/ore.rsi/normality.png new file mode 100644 index 0000000000..e0bb3341b6 Binary files /dev/null and b/Resources/Textures/Objects/Materials/ore.rsi/normality.png differ diff --git a/Resources/Textures/Objects/Misc/chopstick.rsi/icon.png b/Resources/Textures/Objects/Misc/chopstick.rsi/icon.png new file mode 100644 index 0000000000..95acfb53cd Binary files /dev/null and b/Resources/Textures/Objects/Misc/chopstick.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Misc/chopstick.rsi/inhand-left.png b/Resources/Textures/Objects/Misc/chopstick.rsi/inhand-left.png new file mode 100644 index 0000000000..48fa05ce34 Binary files /dev/null and b/Resources/Textures/Objects/Misc/chopstick.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Misc/chopstick.rsi/inhand-right.png b/Resources/Textures/Objects/Misc/chopstick.rsi/inhand-right.png new file mode 100644 index 0000000000..51dc3961d5 Binary files /dev/null and b/Resources/Textures/Objects/Misc/chopstick.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Misc/chopstick.rsi/meta.json b/Resources/Textures/Objects/Misc/chopstick.rsi/meta.json new file mode 100644 index 0000000000..78e9149225 --- /dev/null +++ b/Resources/Textures/Objects/Misc/chopstick.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from goonstation at https://github.com/goonstation/goonstation/pull/1179", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "paired" + } + ] + } \ No newline at end of file diff --git a/Resources/Textures/Objects/Misc/chopstick.rsi/paired.png b/Resources/Textures/Objects/Misc/chopstick.rsi/paired.png new file mode 100644 index 0000000000..220dc31ecb Binary files /dev/null and b/Resources/Textures/Objects/Misc/chopstick.rsi/paired.png differ diff --git a/Resources/Textures/Objects/Misc/mail_capsule.rsi/icon-cash.png b/Resources/Textures/Objects/Misc/mail_capsule.rsi/icon-cash.png new file mode 100644 index 0000000000..8ba33c95b5 Binary files /dev/null and b/Resources/Textures/Objects/Misc/mail_capsule.rsi/icon-cash.png differ diff --git a/Resources/Textures/Objects/Misc/mail_capsule.rsi/icon-empty.png b/Resources/Textures/Objects/Misc/mail_capsule.rsi/icon-empty.png new file mode 100644 index 0000000000..085b787410 Binary files /dev/null and b/Resources/Textures/Objects/Misc/mail_capsule.rsi/icon-empty.png differ diff --git a/Resources/Textures/Objects/Misc/mail_capsule.rsi/icon-food.png b/Resources/Textures/Objects/Misc/mail_capsule.rsi/icon-food.png new file mode 100644 index 0000000000..d08489cec8 Binary files /dev/null and b/Resources/Textures/Objects/Misc/mail_capsule.rsi/icon-food.png differ diff --git a/Resources/Textures/Objects/Misc/mail_capsule.rsi/icon-mail.png b/Resources/Textures/Objects/Misc/mail_capsule.rsi/icon-mail.png new file mode 100644 index 0000000000..b35a2acc0f Binary files /dev/null and b/Resources/Textures/Objects/Misc/mail_capsule.rsi/icon-mail.png differ diff --git a/Resources/Textures/Objects/Misc/mail_capsule.rsi/meta.json b/Resources/Textures/Objects/Misc/mail_capsule.rsi/meta.json new file mode 100644 index 0000000000..2e9bfc3617 --- /dev/null +++ b/Resources/Textures/Objects/Misc/mail_capsule.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made for Frontier by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon-empty" + }, + { + "name": "icon-mail" + }, + { + "name": "icon-food" + }, + { + "name": "icon-cash" + }, + { + "name": "spent" + } + ] +} diff --git a/Resources/Textures/Objects/Misc/mail_capsule.rsi/spent.png b/Resources/Textures/Objects/Misc/mail_capsule.rsi/spent.png new file mode 100644 index 0000000000..acd0d0577f Binary files /dev/null and b/Resources/Textures/Objects/Misc/mail_capsule.rsi/spent.png differ diff --git a/Resources/Textures/Objects/Misc/utensils.rsi/bar_spoon-inhand-left.png b/Resources/Textures/Objects/Misc/utensils.rsi/bar_spoon-inhand-left.png new file mode 100644 index 0000000000..fba15fa255 Binary files /dev/null and b/Resources/Textures/Objects/Misc/utensils.rsi/bar_spoon-inhand-left.png differ diff --git a/Resources/Textures/Objects/Misc/utensils.rsi/bar_spoon-inhand-right.png b/Resources/Textures/Objects/Misc/utensils.rsi/bar_spoon-inhand-right.png new file mode 100644 index 0000000000..d2b32fd8b8 Binary files /dev/null and b/Resources/Textures/Objects/Misc/utensils.rsi/bar_spoon-inhand-right.png differ diff --git a/Resources/Textures/Objects/Misc/utensils.rsi/bar_spoon.png b/Resources/Textures/Objects/Misc/utensils.rsi/bar_spoon.png new file mode 100644 index 0000000000..f24ded7e6b Binary files /dev/null and b/Resources/Textures/Objects/Misc/utensils.rsi/bar_spoon.png differ diff --git a/Resources/Textures/Objects/Misc/utensils.rsi/meta.json b/Resources/Textures/Objects/Misc/utensils.rsi/meta.json index 30dd4e8564..77aeb5e3c1 100644 --- a/Resources/Textures/Objects/Misc/utensils.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/utensils.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 and modified by Swept", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432 and modified by Swept; Bar spoon by Dezzzix", "size": { "x": 32, "y": 32 @@ -40,6 +40,17 @@ }, { "name": "plastic_knife" + }, + { + "name": "bar_spoon" + }, + { + "name": "bar_spoon-inhand-left", + "directions": 4 + }, + { + "name": "bar_spoon-inhand-right", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Power/portable_recharger.rsi/charging-equipped-BACKPACK.png b/Resources/Textures/Objects/Power/portable_recharger.rsi/charging-equipped-BACKPACK.png new file mode 100644 index 0000000000..500ad05704 Binary files /dev/null and b/Resources/Textures/Objects/Power/portable_recharger.rsi/charging-equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Power/portable_recharger.rsi/charging-unlit.png b/Resources/Textures/Objects/Power/portable_recharger.rsi/charging-unlit.png new file mode 100644 index 0000000000..6c902b7d7e Binary files /dev/null and b/Resources/Textures/Objects/Power/portable_recharger.rsi/charging-unlit.png differ diff --git a/Resources/Textures/Objects/Power/portable_recharger.rsi/charging.png b/Resources/Textures/Objects/Power/portable_recharger.rsi/charging.png new file mode 100644 index 0000000000..6105bb4ad3 Binary files /dev/null and b/Resources/Textures/Objects/Power/portable_recharger.rsi/charging.png differ diff --git a/Resources/Textures/Objects/Power/portable_recharger.rsi/inhand-left.png b/Resources/Textures/Objects/Power/portable_recharger.rsi/inhand-left.png new file mode 100644 index 0000000000..e3bc6d8299 Binary files /dev/null and b/Resources/Textures/Objects/Power/portable_recharger.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Power/portable_recharger.rsi/inhand-right.png b/Resources/Textures/Objects/Power/portable_recharger.rsi/inhand-right.png new file mode 100644 index 0000000000..8c65192231 Binary files /dev/null and b/Resources/Textures/Objects/Power/portable_recharger.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Power/portable_recharger.rsi/meta.json b/Resources/Textures/Objects/Power/portable_recharger.rsi/meta.json new file mode 100644 index 0000000000..794f491bdb --- /dev/null +++ b/Resources/Textures/Objects/Power/portable_recharger.rsi/meta.json @@ -0,0 +1,92 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprited by Lomovar", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "charging", + "delays": [ + [ + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3 + ] + ] + }, + { + "name": "charging-equipped-BACKPACK", + "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 + ], + [ + 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": "charging-unlit", + "delays": [ + [ + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3 + ] + ] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} + diff --git a/Resources/Textures/Objects/Specific/Chapel/quran.rsi/icon.png b/Resources/Textures/Objects/Specific/Chapel/quran.rsi/icon.png new file mode 100644 index 0000000000..0c710e8850 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chapel/quran.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/quran.rsi/inhand-left.png b/Resources/Textures/Objects/Specific/Chapel/quran.rsi/inhand-left.png new file mode 100644 index 0000000000..f5c0eca315 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chapel/quran.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/quran.rsi/inhand-right.png b/Resources/Textures/Objects/Specific/Chapel/quran.rsi/inhand-right.png new file mode 100644 index 0000000000..bc8b034185 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chapel/quran.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/quran.rsi/meta.json b/Resources/Textures/Objects/Specific/Chapel/quran.rsi/meta.json new file mode 100644 index 0000000000..64d37670f1 --- /dev/null +++ b/Resources/Textures/Objects/Specific/Chapel/quran.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a, modified by Terraspark4941", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker.png b/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker.png index f97ff00c3d..ef30063560 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker.png and b/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker1.png b/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker1.png index ceb623570e..da25f0d1d8 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker1.png and b/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker1.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker2.png b/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker2.png index 40209c2f66..96339835bf 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker2.png and b/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker2.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker3.png b/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker3.png index 62c4528ae1..a3c848d076 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker3.png and b/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker3.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker4.png b/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker4.png index 489b48b78a..fc72c373c9 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker4.png and b/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker4.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker5.png b/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker5.png index ca719e883a..c4bb0acecf 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker5.png and b/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker5.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker6.png b/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker6.png index 581a50d15f..205245bd71 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker6.png and b/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/beaker6.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/meta.json b/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/meta.json index 11326a1093..758f3c6c75 100644 --- a/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Chemistry/beaker.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/740ff31a81313086cf16761f3677cf1e2ab46c93", + "copyright": "Taken from https://github.com/BlueMoon-Labs/MOLOT-BlueMoon-Station/blob/master/icons/obj/chemical.dmi", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Specific/Chemistry/beaker_bluespace.rsi/beakerbluespace.png b/Resources/Textures/Objects/Specific/Chemistry/beaker_bluespace.rsi/beakerbluespace.png index f52a739ad3..48c6908bc9 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/beaker_bluespace.rsi/beakerbluespace.png and b/Resources/Textures/Objects/Specific/Chemistry/beaker_bluespace.rsi/beakerbluespace.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/beaker_bluespace.rsi/meta.json b/Resources/Textures/Objects/Specific/Chemistry/beaker_bluespace.rsi/meta.json index 54a2e31b01..d6fd4083c2 100644 --- a/Resources/Textures/Objects/Specific/Chemistry/beaker_bluespace.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Chemistry/beaker_bluespace.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/740ff31a81313086cf16761f3677cf1e2ab46c93", + "copyright": "Taken from https://github.com/BlueMoon-Labs/MOLOT-BlueMoon-Station/blob/master/icons/obj/chemical.dmi", "size": { "x": 32, "y": 32 @@ -11,8 +11,11 @@ "name": "beakerbluespace", "delays": [ [ - 0.1, - 0.1 + 0.5, + 0.5, + 0.5, + 0.5, + 0.5 ] ] } diff --git a/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge.png b/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge.png index 4e0fb0fc06..d26317aee0 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge.png and b/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge1.png b/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge1.png index 5ecf243047..28c04e26b5 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge1.png and b/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge1.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge2.png b/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge2.png index 05e647f110..6ad07e2b45 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge2.png and b/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge2.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge3.png b/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge3.png index 0a464113d7..3738e53320 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge3.png and b/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge3.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge4.png b/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge4.png index c16054a21a..8b3e347060 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge4.png and b/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge4.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge5.png b/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge5.png index 363e3a1bfc..de8ca3a508 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge5.png and b/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge5.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge6.png b/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge6.png index 64126589da..e087337f9d 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge6.png and b/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/beakerlarge6.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/meta.json b/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/meta.json index 9c3c7d203d..a13bcdd2f6 100644 --- a/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Chemistry/beaker_large.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/blob/2b969adc2dfd3e9621bf3597c5cbffeb3ac8c9f0/icons/obj/chemical.dmi", + "copyright": "Taken from https://github.com/BlueMoon-Labs/MOLOT-BlueMoon-Station/blob/master/icons/obj/chemical.dmi", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/meta.json b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/meta.json index b9de04b6b8..7877d0e136 100644 --- a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/blob/2b969adc2dfd3e9621bf3597c5cbffeb3ac8c9f0/icons/obj/chemical.dmi", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/68aa4de023bbe4447e5802327d0fd4539294c6d6", "size": { "x": 32, "y": 32 @@ -40,6 +40,9 @@ { "name": "pill21" }, + { + "name": "pill22" + }, { "name": "pill7" }, diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill.png index 4fd8b2d079..6273a8cb25 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill.png and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill1.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill1.png index 4fd8b2d079..be3f507d9f 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill1.png and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill1.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill10.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill10.png index ed6257887c..d0c9f05c67 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill10.png and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill10.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill11.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill11.png index 9af8513972..f6e43bb42e 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill11.png and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill11.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill12.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill12.png index 6f92615dbc..771d1d5929 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill12.png and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill12.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill13.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill13.png index b21473b0f8..2ad7275162 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill13.png and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill13.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill14.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill14.png index 60db35224d..a4b25cb6ec 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill14.png and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill14.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill15.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill15.png index d1c570080e..a1e056e964 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill15.png and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill15.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill16.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill16.png index bf9e74d231..afdd91db61 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill16.png and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill16.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill17.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill17.png index b8b86cb130..87e1d5bc1b 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill17.png and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill17.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill18.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill18.png index 15b910be39..23f9d0ae18 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill18.png and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill18.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill19.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill19.png index 54395bb7fb..980313bcd5 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill19.png and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill19.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill2.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill2.png index 632379ff12..3ce9591363 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill2.png and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill2.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill20.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill20.png index 151a91f64a..6b5a7c5a45 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill20.png and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill20.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill21.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill21.png index 92951d3476..f13f0c0364 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill21.png and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill21.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill22.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill22.png new file mode 100644 index 0000000000..1398cdc30e Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill22.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill3.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill3.png index b935e952a1..37f3ed03ea 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill3.png and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill3.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill4.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill4.png index 193cb2161d..9f3e0d3e92 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill4.png and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill4.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill5.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill5.png index 75106cd3d3..98238a5231 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill5.png and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill5.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill6.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill6.png index 58eb10c8ff..caa729871b 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill6.png and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill6.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill7.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill7.png index 5190da4be4..cddf5d5c18 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill7.png and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill7.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill8.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill8.png index 628bcbed8c..a8d5def746 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill8.png and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill8.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill9.png b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill9.png index 7164a824d4..d775803908 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill9.png and b/Resources/Textures/Objects/Specific/Chemistry/pills.rsi/pill9.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills_canister.rsi/meta.json b/Resources/Textures/Objects/Specific/Chemistry/pills_canister.rsi/meta.json index 99b915f2b1..a6b8695adc 100644 --- a/Resources/Textures/Objects/Specific/Chemistry/pills_canister.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Chemistry/pills_canister.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/blob/2b969adc2dfd3e9621bf3597c5cbffeb3ac8c9f0/icons/obj/chemical.dmi", + "copyright": "Taken from https://github.com/BlueMoon-Labs/MOLOT-BlueMoon-Station/blob/master/icons/obj/chemical.dmi", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Specific/Chemistry/pills_canister.rsi/pill_canister.png b/Resources/Textures/Objects/Specific/Chemistry/pills_canister.rsi/pill_canister.png index 8b00bb5040..e06a92dca3 100644 Binary files a/Resources/Textures/Objects/Specific/Chemistry/pills_canister.rsi/pill_canister.png and b/Resources/Textures/Objects/Specific/Chemistry/pills_canister.rsi/pill_canister.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/chili.rsi/produce.png b/Resources/Textures/Objects/Specific/Hydroponics/chili.rsi/produce.png index 5033cdecc7..873f89e181 100644 Binary files a/Resources/Textures/Objects/Specific/Hydroponics/chili.rsi/produce.png and b/Resources/Textures/Objects/Specific/Hydroponics/chili.rsi/produce.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/chilly.rsi/produce.png b/Resources/Textures/Objects/Specific/Hydroponics/chilly.rsi/produce.png index 45ea8a32f5..b2c59dc31a 100644 Binary files a/Resources/Textures/Objects/Specific/Hydroponics/chilly.rsi/produce.png and b/Resources/Textures/Objects/Specific/Hydroponics/chilly.rsi/produce.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/dead.png b/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/dead.png new file mode 100644 index 0000000000..39d4b40f4c Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/dead.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/harvest.png b/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/harvest.png new file mode 100644 index 0000000000..1012ccfe03 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/harvest.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/meta.json new file mode 100644 index 0000000000..4a6e3c94fc --- /dev/null +++ b/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Drawn by Ubaser, using the cotton sprites as a base.", + "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/pyrotton.rsi/produce.png b/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/produce.png new file mode 100644 index 0000000000..72a98653c8 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/produce.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/seed.png b/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/seed.png new file mode 100644 index 0000000000..6528f4f326 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/seed.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/stage-1.png b/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/stage-1.png new file mode 100644 index 0000000000..c86f85f0d2 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/stage-1.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/stage-2.png b/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/stage-2.png new file mode 100644 index 0000000000..7bc634ce83 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/stage-2.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/stage-3.png b/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/stage-3.png new file mode 100644 index 0000000000..31aa7399f5 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pyrotton.rsi/stage-3.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/dead.png b/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/dead.png new file mode 100644 index 0000000000..2eb3c64ca9 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/dead.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/dried.png b/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/dried.png new file mode 100644 index 0000000000..77f23e938c Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/dried.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/harvest.png b/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/harvest.png new file mode 100644 index 0000000000..9702e5b488 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/harvest.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/meta.json new file mode 100644 index 0000000000..e5bfeb99ef --- /dev/null +++ b/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/meta.json @@ -0,0 +1,173 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13 at 1dbcf389b0ec6b2c51b002df5fef8dd1519f8068 and modified by potato1234_x", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "dead" + }, + { + "name": "harvest", + "delays": + [ + [ + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08 + ] + ] + }, + { + "name": "powderpile_rainbow" + }, + { + "name": "produce", + "delays": + [ + [ + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08 + ] + ] + }, + { + "name": "dried" + }, + { + "name": "seed" + }, + { + "name": "stage-1", + "delays": + [ + [ + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08 + ] + ] + }, + { + "name": "stage-2", + "delays": + [ + [ + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08 + ] + ] + }, + { + "name": "stage-3", + "delays": + [ + [ + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08 + ] + ] + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/powderpile_rainbow.png b/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/powderpile_rainbow.png new file mode 100644 index 0000000000..15057f8785 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/powderpile_rainbow.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/produce.png b/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/produce.png new file mode 100644 index 0000000000..400fed1b21 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/produce.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/seed.png b/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/seed.png new file mode 100644 index 0000000000..fa194148f3 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/seed.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/stage-1.png b/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/stage-1.png new file mode 100644 index 0000000000..8a3e17b098 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/stage-1.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/stage-2.png b/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/stage-2.png new file mode 100644 index 0000000000..d30ed1ed26 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/stage-2.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/stage-3.png b/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/stage-3.png new file mode 100644 index 0000000000..f4880b69e0 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi/stage-3.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Specific/Mail/mail.rsi/broken.png b/Resources/Textures/Objects/Specific/Mail/mail.rsi/broken.png similarity index 100% rename from Resources/Textures/Nyanotrasen/Objects/Specific/Mail/mail.rsi/broken.png rename to Resources/Textures/Objects/Specific/Mail/mail.rsi/broken.png diff --git a/Resources/Textures/Nyanotrasen/Objects/Specific/Mail/mail.rsi/fragile.png b/Resources/Textures/Objects/Specific/Mail/mail.rsi/fragile.png similarity index 100% rename from Resources/Textures/Nyanotrasen/Objects/Specific/Mail/mail.rsi/fragile.png rename to Resources/Textures/Objects/Specific/Mail/mail.rsi/fragile.png diff --git a/Resources/Textures/Nyanotrasen/Objects/Specific/Mail/mail.rsi/icon.png b/Resources/Textures/Objects/Specific/Mail/mail.rsi/icon.png similarity index 100% rename from Resources/Textures/Nyanotrasen/Objects/Specific/Mail/mail.rsi/icon.png rename to Resources/Textures/Objects/Specific/Mail/mail.rsi/icon.png diff --git a/Resources/Textures/Nyanotrasen/Objects/Specific/Mail/mail.rsi/locked.png b/Resources/Textures/Objects/Specific/Mail/mail.rsi/locked.png similarity index 100% rename from Resources/Textures/Nyanotrasen/Objects/Specific/Mail/mail.rsi/locked.png rename to Resources/Textures/Objects/Specific/Mail/mail.rsi/locked.png diff --git a/Resources/Textures/Nyanotrasen/Objects/Specific/Mail/mail.rsi/meta.json b/Resources/Textures/Objects/Specific/Mail/mail.rsi/meta.json similarity index 100% rename from Resources/Textures/Nyanotrasen/Objects/Specific/Mail/mail.rsi/meta.json rename to Resources/Textures/Objects/Specific/Mail/mail.rsi/meta.json diff --git a/Resources/Textures/Nyanotrasen/Objects/Specific/Mail/mail.rsi/postmark.png b/Resources/Textures/Objects/Specific/Mail/mail.rsi/postmark.png similarity index 100% rename from Resources/Textures/Nyanotrasen/Objects/Specific/Mail/mail.rsi/postmark.png rename to Resources/Textures/Objects/Specific/Mail/mail.rsi/postmark.png diff --git a/Resources/Textures/Nyanotrasen/Objects/Specific/Mail/mail.rsi/priority.png b/Resources/Textures/Objects/Specific/Mail/mail.rsi/priority.png similarity index 100% rename from Resources/Textures/Nyanotrasen/Objects/Specific/Mail/mail.rsi/priority.png rename to Resources/Textures/Objects/Specific/Mail/mail.rsi/priority.png diff --git a/Resources/Textures/Nyanotrasen/Objects/Specific/Mail/mail.rsi/priority_inactive.png b/Resources/Textures/Objects/Specific/Mail/mail.rsi/priority_inactive.png similarity index 100% rename from Resources/Textures/Nyanotrasen/Objects/Specific/Mail/mail.rsi/priority_inactive.png rename to Resources/Textures/Objects/Specific/Mail/mail.rsi/priority_inactive.png diff --git a/Resources/Textures/Nyanotrasen/Objects/Specific/Mail/mail.rsi/trash.png b/Resources/Textures/Objects/Specific/Mail/mail.rsi/trash.png similarity index 100% rename from Resources/Textures/Nyanotrasen/Objects/Specific/Mail/mail.rsi/trash.png rename to Resources/Textures/Objects/Specific/Mail/mail.rsi/trash.png diff --git a/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/broken.png b/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/broken.png new file mode 100644 index 0000000000..1c798c4075 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/broken.png differ diff --git a/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/fragile.png b/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/fragile.png new file mode 100644 index 0000000000..0917000cbe Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/fragile.png differ diff --git a/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/icon.png b/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/icon.png new file mode 100644 index 0000000000..f3974ab116 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/inhand-left.png b/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/inhand-left.png new file mode 100644 index 0000000000..ccbc87cf3b Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/inhand-right.png b/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/inhand-right.png new file mode 100644 index 0000000000..ccbc87cf3b Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/locked.png b/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/locked.png new file mode 100644 index 0000000000..1cacaf1921 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/locked.png differ diff --git a/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/meta.json b/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/meta.json new file mode 100644 index 0000000000..ac5345ba1a --- /dev/null +++ b/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/meta.json @@ -0,0 +1,40 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation (obj/storage/closet.dmi, obj/service/bureaucracy.dmi), modified by Whatstone (Discord). broken, inhand-left, inhand-right by Whatstone.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "broken" + }, + { + "name": "fragile" + }, + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "locked" + }, + { + "name": "priority" + }, + { + "name": "priority_inactive" + }, + { + "name": "trash" + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/priority.png b/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/priority.png new file mode 100644 index 0000000000..9c5a74ad10 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/priority.png differ diff --git a/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/priority_inactive.png b/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/priority_inactive.png new file mode 100644 index 0000000000..fc03165b57 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/priority_inactive.png differ diff --git a/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/trash.png b/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/trash.png new file mode 100644 index 0000000000..2ef4ee7233 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mail/mail_large.rsi/trash.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/advkit-inhand-left.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/advkit-inhand-left.png index 61870c8756..7a6a2d611a 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/advkit-inhand-left.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/advkit-inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/advkit-inhand-right.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/advkit-inhand-right.png index 66a5d563a5..cb4a3a3e71 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/advkit-inhand-right.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/advkit-inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/advkit.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/advkit.png index 83e9159716..c8ce771d21 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/advkit.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/advkit.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/blackkit-inhand-left.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/blackkit-inhand-left.png index 8356e83334..fe02ca21fe 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/blackkit-inhand-left.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/blackkit-inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/blackkit-inhand-right.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/blackkit-inhand-right.png index d7d751e40c..9c04c70d23 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/blackkit-inhand-right.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/blackkit-inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/blackkit.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/blackkit.png index cfa19a007a..a9426c2497 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/blackkit.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/blackkit.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/brutekit-inhand-left.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/brutekit-inhand-left.png index f276c1dc0a..5c2e4d588b 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/brutekit-inhand-left.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/brutekit-inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/brutekit-inhand-right.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/brutekit-inhand-right.png index b9ffd46359..b7fb5f882f 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/brutekit-inhand-right.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/brutekit-inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/brutekit.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/brutekit.png index 7456850c08..0322a669eb 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/brutekit.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/brutekit.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/burnkit-inhand-left.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/burnkit-inhand-left.png index 4fd9b76b3a..4d25ec52fc 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/burnkit-inhand-left.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/burnkit-inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/burnkit-inhand-right.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/burnkit-inhand-right.png index 49abfc5768..9ef026a95c 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/burnkit-inhand-right.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/burnkit-inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/burnkit.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/burnkit.png index 796eaf83b0..8418f8cec9 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/burnkit.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/burnkit.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/firstaid-inhand-left.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/firstaid-inhand-left.png index 5f1cc9995b..e1491e76a2 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/firstaid-inhand-left.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/firstaid-inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/firstaid-inhand-right.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/firstaid-inhand-right.png index f4db539b21..236193fa08 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/firstaid-inhand-right.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/firstaid-inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/firstaid.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/firstaid.png index 3fe117f2ac..d6129bf7d9 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/firstaid.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/firstaid.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/meta.json b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/meta.json index 244e4e2b5b..7ac92bc1ea 100644 --- a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Medical/firstaidkits.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/tree/727eb0a445bccbdc2d472e158e96b87fc0e997a1. Rad, toxin, o2, fire and adv by peptide", + "copyright": "Taken from https://github.com/BlueMoon-Labs/MOLOT-BlueMoon-Station/blob/master/icons/obj/storage.dmi | Purplekit sprited by PuroSlavKing (Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/o2kit-inhand-left.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/o2kit-inhand-left.png index 1d05275009..4c131fdde6 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/o2kit-inhand-left.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/o2kit-inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/o2kit-inhand-right.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/o2kit-inhand-right.png index a2ec776148..ca5255e5cc 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/o2kit-inhand-right.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/o2kit-inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/o2kit.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/o2kit.png index 59919b8585..3b977a9308 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/o2kit.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/o2kit.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/purplekit-inhand-left.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/purplekit-inhand-left.png index 156ac290e1..c1c4e6272c 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/purplekit-inhand-left.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/purplekit-inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/purplekit-inhand-right.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/purplekit-inhand-right.png index 43b0142c89..2d44b64cd8 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/purplekit-inhand-right.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/purplekit-inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/purplekit.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/purplekit.png index 778a319a01..a2235a0ea0 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/purplekit.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/purplekit.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/radkit-inhand-left.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/radkit-inhand-left.png index bbf7ebadf4..c34fe5336f 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/radkit-inhand-left.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/radkit-inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/radkit-inhand-right.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/radkit-inhand-right.png index a81963b22d..f38420aac6 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/radkit-inhand-right.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/radkit-inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/radkit.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/radkit.png index 0bab485fa9..4f7cb1c4e4 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/radkit.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/radkit.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/toxinkit-inhand-left.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/toxinkit-inhand-left.png index 537bb4e894..865aa6dcba 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/toxinkit-inhand-left.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/toxinkit-inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/toxinkit-inhand-right.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/toxinkit-inhand-right.png index 7fea97fdbc..6022fdf4b5 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/toxinkit-inhand-right.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/toxinkit-inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/toxinkit.png b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/toxinkit.png index e0e563022a..cf2d900c36 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/toxinkit.png and b/Resources/Textures/Objects/Specific/Medical/firstaidkits.rsi/toxinkit.png differ diff --git a/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/meta.json b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/meta.json index 8a3908f419..5644936c97 100644 --- a/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/5ce5a66c814c4a60118d24885389357fd0240002/icons/obj/mining.dmi, ON state sprite by @kilath", + "copyright": "Taken from TGStation at https://github.com/tgstation/tgstation/blob/master/icons/obj/mining.dmi, ON state sprite by PuroSlavKing (Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/orebag_off.png b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/orebag_off.png index cbf6749b58..c16eef6819 100644 Binary files a/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/orebag_off.png and b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/orebag_off.png differ diff --git a/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/orebag_on.png b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/orebag_on.png index 42382c71f4..55c56c739d 100644 Binary files a/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/orebag_on.png and b/Resources/Textures/Objects/Specific/Mining/ore_bag_holding.rsi/orebag_on.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-bomb.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-bomb.png new file mode 100644 index 0000000000..5f876573f3 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-bomb.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json index ce8f8187b7..1b3eba668d 100644 --- a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC0-1.0", - "copyright": "Created by EmoGarbage404 (github) for Space Station 14. icon-construction.png created by deltanedas (github).", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14. icon-construction.png created by deltanedas (github). syndicateborgbomb.png created by Mangohydra (github).", "size": { "x": 32, "y": 32 @@ -112,6 +112,9 @@ { "name": "janitor" }, + { + "name": "icon-bomb" + }, { "name": "medical" }, @@ -124,6 +127,9 @@ { "name": "service" }, + { + "name": "syndicateborgbomb" + }, { "name": "syndicate" } diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/syndicateborgbomb.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/syndicateborgbomb.png new file mode 100644 index 0000000000..c5238b96fc Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/syndicateborgbomb.png differ diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/meta.json b/Resources/Textures/Objects/Storage/boxes.rsi/meta.json index b30927da33..0cba2f59d9 100644 --- a/Resources/Textures/Objects/Storage/boxes.rsi/meta.json +++ b/Resources/Textures/Objects/Storage/boxes.rsi/meta.json @@ -197,6 +197,9 @@ { "name": "shellslug" }, + { + "name": "shelluranium" + }, { "name": "shelltoy" }, diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/shelluranium.png b/Resources/Textures/Objects/Storage/boxes.rsi/shelluranium.png new file mode 100644 index 0000000000..2a4e1dee15 Binary files /dev/null and b/Resources/Textures/Objects/Storage/boxes.rsi/shelluranium.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/emergency.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 0000000000..a37261e3f7 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency.rsi/meta.json index b4d4730957..c71ae8955e 100644 --- a/Resources/Textures/Objects/Tanks/emergency.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/emergency.rsi/meta.json @@ -71,6 +71,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tanks/emergency_clown.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/emergency_clown.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 0000000000..dd19aa5680 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_clown.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_clown.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_clown.rsi/meta.json index 489cf3072a..21d23712e9 100644 --- a/Resources/Textures/Objects/Tanks/emergency_clown.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/emergency_clown.rsi/meta.json @@ -66,6 +66,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tanks/emergency_double.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/emergency_double.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 0000000000..f139bc6db2 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_double.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_double.rsi/meta.json index 6b3765d794..b3ab67fad6 100644 --- a/Resources/Textures/Objects/Tanks/emergency_double.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/emergency_double.rsi/meta.json @@ -71,6 +71,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 0000000000..7e2f947d34 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/meta.json index ce287bf277..74fc108c09 100644 --- a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/meta.json @@ -66,6 +66,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 0000000000..0470c6895f Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/meta.json index a1661aee78..fe19dcec1c 100644 --- a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/meta.json @@ -66,6 +66,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 0000000000..db800b2a3b Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/meta.json index ce287bf277..74fc108c09 100644 --- a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/meta.json @@ -66,6 +66,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 0000000000..db800b2a3b Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_red.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_red.rsi/meta.json index ce3d401ca2..d71cdae541 100644 --- a/Resources/Textures/Objects/Tanks/emergency_red.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/emergency_red.rsi/meta.json @@ -66,6 +66,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 0000000000..0470c6895f Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/meta.json index 6b3765d794..b3ab67fad6 100644 --- a/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/meta.json @@ -71,6 +71,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tanks/plasma.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/plasma.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 0000000000..e282da2e6d Binary files /dev/null and b/Resources/Textures/Objects/Tanks/plasma.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Tanks/plasma.rsi/meta.json b/Resources/Textures/Objects/Tanks/plasma.rsi/meta.json index a88e367a85..2d3199f75c 100644 --- a/Resources/Textures/Objects/Tanks/plasma.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/plasma.rsi/meta.json @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/bar.png b/Resources/Textures/Objects/Tiles/tile.rsi/bar.png index 08d5e64492..03d6de0b7a 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/bar.png and b/Resources/Textures/Objects/Tiles/tile.rsi/bar.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/bcircuit.png b/Resources/Textures/Objects/Tiles/tile.rsi/bcircuit.png index 1bf1436cf7..229d1b2064 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/bcircuit.png and b/Resources/Textures/Objects/Tiles/tile.rsi/bcircuit.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/blue.png b/Resources/Textures/Objects/Tiles/tile.rsi/blue.png index f3be1b6936..287428a784 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/blue.png and b/Resources/Textures/Objects/Tiles/tile.rsi/blue.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/checker-dark.png b/Resources/Textures/Objects/Tiles/tile.rsi/checker-dark.png index 874c43744b..9227d71b5c 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/checker-dark.png and b/Resources/Textures/Objects/Tiles/tile.rsi/checker-dark.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/checker-light.png b/Resources/Textures/Objects/Tiles/tile.rsi/checker-light.png index 28de30553a..6c721c0926 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/checker-light.png and b/Resources/Textures/Objects/Tiles/tile.rsi/checker-light.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/clown.png b/Resources/Textures/Objects/Tiles/tile.rsi/clown.png index 6086d9847c..d3620e483a 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/clown.png and b/Resources/Textures/Objects/Tiles/tile.rsi/clown.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/dark.png b/Resources/Textures/Objects/Tiles/tile.rsi/dark.png index cd05817621..19ccce714f 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/gcircuit.png b/Resources/Textures/Objects/Tiles/tile.rsi/gcircuit.png index 46423b52a7..11b4884645 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/gcircuit.png and b/Resources/Textures/Objects/Tiles/tile.rsi/gcircuit.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/gold.png b/Resources/Textures/Objects/Tiles/tile.rsi/gold.png index a417d1cd2a..00d68eb3fd 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/gold.png and b/Resources/Textures/Objects/Tiles/tile.rsi/gold.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/hydro.png b/Resources/Textures/Objects/Tiles/tile.rsi/hydro.png index ce925dd8e0..8c984b1f6a 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/hydro.png and b/Resources/Textures/Objects/Tiles/tile.rsi/hydro.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/kitchen.png b/Resources/Textures/Objects/Tiles/tile.rsi/kitchen.png index 0145faee28..f1e7f8c42f 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/kitchen.png and b/Resources/Textures/Objects/Tiles/tile.rsi/kitchen.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/laundry.png b/Resources/Textures/Objects/Tiles/tile.rsi/laundry.png index 8664e177fe..d0a7b092f1 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/laundry.png and b/Resources/Textures/Objects/Tiles/tile.rsi/laundry.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/lime.png b/Resources/Textures/Objects/Tiles/tile.rsi/lime.png index f3ad764ade..ab58379b36 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/lime.png and b/Resources/Textures/Objects/Tiles/tile.rsi/lime.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/lino.png b/Resources/Textures/Objects/Tiles/tile.rsi/lino.png index fd9af20467..6fb5c06264 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/lino.png and b/Resources/Textures/Objects/Tiles/tile.rsi/lino.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/meta.json b/Resources/Textures/Objects/Tiles/tile.rsi/meta.json index 11992954f8..10a4a3e3eb 100644 --- a/Resources/Textures/Objects/Tiles/tile.rsi/meta.json +++ b/Resources/Textures/Objects/Tiles/tile.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, additional copyrights see tiles folder.", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, additional copyrights see tiles folder. Edit by Gersoon", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/mime.png b/Resources/Textures/Objects/Tiles/tile.rsi/mime.png index 28194ec574..159a7dc288 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/mime.png and b/Resources/Textures/Objects/Tiles/tile.rsi/mime.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/reinforced.png b/Resources/Textures/Objects/Tiles/tile.rsi/reinforced.png index ff50130028..186aca4e99 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/reinforced.png and b/Resources/Textures/Objects/Tiles/tile.rsi/reinforced.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/rockvault.png b/Resources/Textures/Objects/Tiles/tile.rsi/rockvault.png index 22b4aa03e3..8a29c992d1 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/rockvault.png and b/Resources/Textures/Objects/Tiles/tile.rsi/rockvault.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/showroom.png b/Resources/Textures/Objects/Tiles/tile.rsi/showroom.png index 2f9e90e230..16df4384bd 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/showroom.png and b/Resources/Textures/Objects/Tiles/tile.rsi/showroom.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/shuttleblack.png b/Resources/Textures/Objects/Tiles/tile.rsi/shuttleblack.png index 008eeb40e7..323812de6a 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/shuttleblack.png and b/Resources/Textures/Objects/Tiles/tile.rsi/shuttleblack.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/shuttleblue.png b/Resources/Textures/Objects/Tiles/tile.rsi/shuttleblue.png index 4fc4076aee..db10eef67c 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/shuttleblue.png and b/Resources/Textures/Objects/Tiles/tile.rsi/shuttleblue.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/shuttlegrey.png b/Resources/Textures/Objects/Tiles/tile.rsi/shuttlegrey.png index 4fd7069afe..f95926bc92 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/shuttlegrey.png and b/Resources/Textures/Objects/Tiles/tile.rsi/shuttlegrey.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/shuttleorange.png b/Resources/Textures/Objects/Tiles/tile.rsi/shuttleorange.png index 3433d217e2..6ca2cd0fc7 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/shuttleorange.png and b/Resources/Textures/Objects/Tiles/tile.rsi/shuttleorange.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/shuttlepurple.png b/Resources/Textures/Objects/Tiles/tile.rsi/shuttlepurple.png index 297822ee7f..6d051bacdd 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/shuttlepurple.png and b/Resources/Textures/Objects/Tiles/tile.rsi/shuttlepurple.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/shuttlered.png b/Resources/Textures/Objects/Tiles/tile.rsi/shuttlered.png index 024fef68f1..5a1846c890 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/shuttlered.png and b/Resources/Textures/Objects/Tiles/tile.rsi/shuttlered.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/shuttlewhite.png b/Resources/Textures/Objects/Tiles/tile.rsi/shuttlewhite.png index ba8440cd33..4163bad5e6 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/shuttlewhite.png and b/Resources/Textures/Objects/Tiles/tile.rsi/shuttlewhite.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/silver.png b/Resources/Textures/Objects/Tiles/tile.rsi/silver.png index 8cd484aee4..45344c6c63 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/silver.png and b/Resources/Textures/Objects/Tiles/tile.rsi/silver.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/steel.png b/Resources/Textures/Objects/Tiles/tile.rsi/steel.png index 5ea3049f87..1752b963f9 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.png b/Resources/Textures/Objects/Tiles/tile.rsi/white.png index 28459f0cb7..05e7e6e84d 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/Tiles/tile.rsi/wood-large.png b/Resources/Textures/Objects/Tiles/tile.rsi/wood-large.png index 429d0e1e8d..d043e162a2 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/wood-large.png and b/Resources/Textures/Objects/Tiles/tile.rsi/wood-large.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/wood.png b/Resources/Textures/Objects/Tiles/tile.rsi/wood.png index 61881421e4..b73f89cfba 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/wood.png and b/Resources/Textures/Objects/Tiles/tile.rsi/wood.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/woodpatternfloor.png b/Resources/Textures/Objects/Tiles/tile.rsi/woodpatternfloor.png index bf18a85def..f33fda5338 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/woodpatternfloor.png and b/Resources/Textures/Objects/Tiles/tile.rsi/woodpatternfloor.png differ diff --git a/Resources/Textures/Objects/Tools/jaws_of_life.rsi/inhand-left.png b/Resources/Textures/Objects/Tools/jaws_of_life.rsi/inhand-left.png index 8f0a816c3f..d97b1d9764 100644 Binary files a/Resources/Textures/Objects/Tools/jaws_of_life.rsi/inhand-left.png and b/Resources/Textures/Objects/Tools/jaws_of_life.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Tools/jaws_of_life.rsi/inhand-right.png b/Resources/Textures/Objects/Tools/jaws_of_life.rsi/inhand-right.png index 22750af053..0b0c85a819 100644 Binary files a/Resources/Textures/Objects/Tools/jaws_of_life.rsi/inhand-right.png and b/Resources/Textures/Objects/Tools/jaws_of_life.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Tools/jaws_of_life.rsi/jaws_cutter.png b/Resources/Textures/Objects/Tools/jaws_of_life.rsi/jaws_cutter.png index 42695acd7c..32dd8ae652 100644 Binary files a/Resources/Textures/Objects/Tools/jaws_of_life.rsi/jaws_cutter.png and b/Resources/Textures/Objects/Tools/jaws_of_life.rsi/jaws_cutter.png differ diff --git a/Resources/Textures/Objects/Tools/jaws_of_life.rsi/jaws_pry.png b/Resources/Textures/Objects/Tools/jaws_of_life.rsi/jaws_pry.png index 8877f81e18..ccfecf3dbd 100644 Binary files a/Resources/Textures/Objects/Tools/jaws_of_life.rsi/jaws_pry.png and b/Resources/Textures/Objects/Tools/jaws_of_life.rsi/jaws_pry.png differ diff --git a/Resources/Textures/Objects/Tools/jaws_of_life.rsi/meta.json b/Resources/Textures/Objects/Tools/jaws_of_life.rsi/meta.json index 0d2bf3b7ef..f7989ea0da 100644 --- a/Resources/Textures/Objects/Tools/jaws_of_life.rsi/meta.json +++ b/Resources/Textures/Objects/Tools/jaws_of_life.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "modified from tgstation at commit https://github.com/tgstation/tgstation/commit/f07f847706d85b7cfa4b398e5175732212b69a63 by KingFroozy (Github), inhand for syn made by icekot8", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Tools/jaws_of_life.rsi/syn_jaws_cutter.png b/Resources/Textures/Objects/Tools/jaws_of_life.rsi/syn_jaws_cutter.png index 973b1428b8..40749be79c 100644 Binary files a/Resources/Textures/Objects/Tools/jaws_of_life.rsi/syn_jaws_cutter.png and b/Resources/Textures/Objects/Tools/jaws_of_life.rsi/syn_jaws_cutter.png differ diff --git a/Resources/Textures/Objects/Tools/jaws_of_life.rsi/syn_jaws_pry.png b/Resources/Textures/Objects/Tools/jaws_of_life.rsi/syn_jaws_pry.png index ed36af3d67..5b77cad939 100644 Binary files a/Resources/Textures/Objects/Tools/jaws_of_life.rsi/syn_jaws_pry.png and b/Resources/Textures/Objects/Tools/jaws_of_life.rsi/syn_jaws_pry.png differ diff --git a/Resources/Textures/Objects/Tools/multitool.rsi/green-unlit.png b/Resources/Textures/Objects/Tools/multitool.rsi/green-unlit.png index d0bac8b61e..fccc17e919 100644 Binary files a/Resources/Textures/Objects/Tools/multitool.rsi/green-unlit.png and b/Resources/Textures/Objects/Tools/multitool.rsi/green-unlit.png differ diff --git a/Resources/Textures/Objects/Tools/multitool.rsi/icon.png b/Resources/Textures/Objects/Tools/multitool.rsi/icon.png index 1dcb102e80..bbb1c6bd8f 100644 Binary files a/Resources/Textures/Objects/Tools/multitool.rsi/icon.png and b/Resources/Textures/Objects/Tools/multitool.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Tools/multitool.rsi/meta.json b/Resources/Textures/Objects/Tools/multitool.rsi/meta.json index c5c4ed87cb..f406de0cc5 100644 --- a/Resources/Textures/Objects/Tools/multitool.rsi/meta.json +++ b/Resources/Textures/Objects/Tools/multitool.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/94f27c7b25bbde39c1412e24fb32bf6470fcc394 // Icon Taken from https://github.com/ParadiseSS13/Paradise", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Tools/multitool.rsi/red-unlit.png b/Resources/Textures/Objects/Tools/multitool.rsi/red-unlit.png index 71a6ee8f67..a141fec4bf 100644 Binary files a/Resources/Textures/Objects/Tools/multitool.rsi/red-unlit.png and b/Resources/Textures/Objects/Tools/multitool.rsi/red-unlit.png differ diff --git a/Resources/Textures/Objects/Tools/multitool.rsi/yellow-unlit.png b/Resources/Textures/Objects/Tools/multitool.rsi/yellow-unlit.png index 911fad3088..f890dbd413 100644 Binary files a/Resources/Textures/Objects/Tools/multitool.rsi/yellow-unlit.png and b/Resources/Textures/Objects/Tools/multitool.rsi/yellow-unlit.png differ diff --git a/Resources/Textures/Objects/Tools/t-ray.rsi/meta.json b/Resources/Textures/Objects/Tools/t-ray.rsi/meta.json index e79ca36298..60cbde526a 100644 --- a/Resources/Textures/Objects/Tools/t-ray.rsi/meta.json +++ b/Resources/Textures/Objects/Tools/t-ray.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "/tg/station, 'icons/obj/device.dmi' commit 2b8b045d, redrawn by Ubaser.", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 }, "states": [ { "name": "tray-on" , "delays": [[0.1, 1.0]]}, diff --git a/Resources/Textures/Objects/Tools/t-ray.rsi/tray-off.png b/Resources/Textures/Objects/Tools/t-ray.rsi/tray-off.png index 9ca7ff2ca4..eb108219af 100644 Binary files a/Resources/Textures/Objects/Tools/t-ray.rsi/tray-off.png and b/Resources/Textures/Objects/Tools/t-ray.rsi/tray-off.png differ diff --git a/Resources/Textures/Objects/Tools/t-ray.rsi/tray-on.png b/Resources/Textures/Objects/Tools/t-ray.rsi/tray-on.png index 5c4ba77cfe..5ec22e6031 100644 Binary files a/Resources/Textures/Objects/Tools/t-ray.rsi/tray-on.png and b/Resources/Textures/Objects/Tools/t-ray.rsi/tray-on.png differ diff --git a/Resources/Textures/Objects/Tools/welder.rsi/icon.png b/Resources/Textures/Objects/Tools/welder.rsi/icon.png index c6917c8ba5..dbb9e252b3 100644 Binary files a/Resources/Textures/Objects/Tools/welder.rsi/icon.png and b/Resources/Textures/Objects/Tools/welder.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Tools/welder.rsi/meta.json b/Resources/Textures/Objects/Tools/welder.rsi/meta.json index 407f85d4cf..f9687d4a3d 100644 --- a/Resources/Textures/Objects/Tools/welder.rsi/meta.json +++ b/Resources/Textures/Objects/Tools/welder.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/199fffd989d6f7fd6ea9c5188c875137df4f34b8 // Icon Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/3c5cb36e811725e1479c4c025b04220027230632/icons/obj/tools.dmi", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Tools/welder.rsi/welder_flame.png b/Resources/Textures/Objects/Tools/welder.rsi/welder_flame.png index 6c8ef525cc..86d9efcb69 100644 Binary files a/Resources/Textures/Objects/Tools/welder.rsi/welder_flame.png and b/Resources/Textures/Objects/Tools/welder.rsi/welder_flame.png differ diff --git a/Resources/Textures/Objects/Tools/welder_experimental.rsi/icon.png b/Resources/Textures/Objects/Tools/welder_experimental.rsi/icon.png index d33656a0be..90aeab2241 100644 Binary files a/Resources/Textures/Objects/Tools/welder_experimental.rsi/icon.png and b/Resources/Textures/Objects/Tools/welder_experimental.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Tools/welder_experimental.rsi/meta.json b/Resources/Textures/Objects/Tools/welder_experimental.rsi/meta.json index 1e4258956e..f9687d4a3d 100644 --- a/Resources/Textures/Objects/Tools/welder_experimental.rsi/meta.json +++ b/Resources/Textures/Objects/Tools/welder_experimental.rsi/meta.json @@ -1,22 +1,14 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/199fffd989d6f7fd6ea9c5188c875137df4f34b8 // Icon Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/3c5cb36e811725e1479c4c025b04220027230632/icons/obj/tools.dmi", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 }, "states": [ { - "name": "icon", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] + "name": "icon" }, { "name": "welder_flame", diff --git a/Resources/Textures/Objects/Tools/welder_experimental.rsi/welder_flame.png b/Resources/Textures/Objects/Tools/welder_experimental.rsi/welder_flame.png index c4cac4606a..68e10eb375 100644 Binary files a/Resources/Textures/Objects/Tools/welder_experimental.rsi/welder_flame.png and b/Resources/Textures/Objects/Tools/welder_experimental.rsi/welder_flame.png differ diff --git a/Resources/Textures/Objects/Tools/welder_industrial.rsi/icon.png b/Resources/Textures/Objects/Tools/welder_industrial.rsi/icon.png index c697fae1fa..353825f0c8 100644 Binary files a/Resources/Textures/Objects/Tools/welder_industrial.rsi/icon.png and b/Resources/Textures/Objects/Tools/welder_industrial.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Tools/welder_industrial.rsi/meta.json b/Resources/Textures/Objects/Tools/welder_industrial.rsi/meta.json index 1a92064078..f9687d4a3d 100644 --- a/Resources/Textures/Objects/Tools/welder_industrial.rsi/meta.json +++ b/Resources/Textures/Objects/Tools/welder_industrial.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/782006a07ef7f16f70128489b3e78b210ee4bbbe // Icon Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/3c5cb36e811725e1479c4c025b04220027230632/icons/obj/tools.dmi", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Tools/welder_industrial.rsi/welder_flame.png b/Resources/Textures/Objects/Tools/welder_industrial.rsi/welder_flame.png index c4cac4606a..31c7d12357 100644 Binary files a/Resources/Textures/Objects/Tools/welder_industrial.rsi/welder_flame.png and b/Resources/Textures/Objects/Tools/welder_industrial.rsi/welder_flame.png differ diff --git a/Resources/Textures/Objects/Tools/welder_industrialadv.rsi/icon.png b/Resources/Textures/Objects/Tools/welder_industrialadv.rsi/icon.png index 425cf3c4b3..e01273389d 100644 Binary files a/Resources/Textures/Objects/Tools/welder_industrialadv.rsi/icon.png and b/Resources/Textures/Objects/Tools/welder_industrialadv.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Tools/welder_industrialadv.rsi/meta.json b/Resources/Textures/Objects/Tools/welder_industrialadv.rsi/meta.json index 87568bcddb..f9687d4a3d 100644 --- a/Resources/Textures/Objects/Tools/welder_industrialadv.rsi/meta.json +++ b/Resources/Textures/Objects/Tools/welder_industrialadv.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/782006a07ef7f16f70128489b3e78b210ee4bbbe // Icon Icon Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/3c5cb36e811725e1479c4c025b04220027230632/icons/obj/tools.dmi", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Tools/welder_industrialadv.rsi/welder_flame.png b/Resources/Textures/Objects/Tools/welder_industrialadv.rsi/welder_flame.png index 809abc51ee..31c7d12357 100644 Binary files a/Resources/Textures/Objects/Tools/welder_industrialadv.rsi/welder_flame.png and b/Resources/Textures/Objects/Tools/welder_industrialadv.rsi/welder_flame.png differ diff --git a/Resources/Textures/Objects/Tools/welder_mini.rsi/icon.png b/Resources/Textures/Objects/Tools/welder_mini.rsi/icon.png index 87e7882792..f400317c0a 100644 Binary files a/Resources/Textures/Objects/Tools/welder_mini.rsi/icon.png and b/Resources/Textures/Objects/Tools/welder_mini.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Tools/welder_mini.rsi/meta.json b/Resources/Textures/Objects/Tools/welder_mini.rsi/meta.json index 5f876da9ae..f9687d4a3d 100644 --- a/Resources/Textures/Objects/Tools/welder_mini.rsi/meta.json +++ b/Resources/Textures/Objects/Tools/welder_mini.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/199fffd989d6f7fd6ea9c5188c875137df4f34b8", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Tools/welder_mini.rsi/welder_flame.png b/Resources/Textures/Objects/Tools/welder_mini.rsi/welder_flame.png index f080d7bcaa..d2ef5cc5de 100644 Binary files a/Resources/Textures/Objects/Tools/welder_mini.rsi/welder_flame.png and b/Resources/Textures/Objects/Tools/welder_mini.rsi/welder_flame.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/base.png index d6da03ed28..003858cf9d 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/base.png and b/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/base.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/icon.png b/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/icon.png index d2e461be28..88be89b378 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/icon.png and b/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-0.png b/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-0.png index 32fba189df..042d52f5d7 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-0.png and b/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-0.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-1.png b/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-1.png index b0fa62d39f..5e64562bdc 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-1.png and b/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-2.png b/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-2.png index 4ad441aa0b..df4767bff9 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-2.png and b/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-3.png b/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-3.png index 1678a31534..fcbbc48af1 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-3.png and b/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-4.png b/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-4.png index 5300c65d31..40e557d736 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-4.png and b/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/mag-unshaded-4.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/meta.json index 04e2ac9309..86ecf2bff1 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Battery/antiquelasergun.rsi/meta.json @@ -1,80 +1,80 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "taken from tg station at commit https://github.com/tgstation/tgstation/commit/8b7f8ba6a3327c7381967c550f185dffafd11a57", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "base" - }, - { - "name": "mag-unshaded-0" - }, - { - "name": "mag-unshaded-1" - }, - { - "name": "mag-unshaded-2" - }, - { - "name": "mag-unshaded-3" - }, - { - "name": "mag-unshaded-4" - }, - { - "name": "inhand-left-0", - "directions": 4 - }, - { - "name": "inhand-right-0", - "directions": 4 - }, - { - "name": "inhand-left-1", - "directions": 4 - }, - { - "name": "inhand-right-1", - "directions": 4 - }, - { - "name": "inhand-left-2", - "directions": 4 - }, - { - "name": "inhand-right-2", - "directions": 4 - }, - { - "name": "inhand-left-3", - "directions": 4 - }, - { - "name": "inhand-right-3", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-BELT", - "directions": 4 - }, - { - "name": "equipped-SUITSTORAGE", - "directions": 4 - } - ] -} +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "icon by RiceMar1244 based on icon taken from tg station at commit https://github.com/tgstation/tgstation/commit/8b7f8ba6a3327c7381967c550f185dffafd11a57", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "mag-unshaded-0" + }, + { + "name": "mag-unshaded-1" + }, + { + "name": "mag-unshaded-2" + }, + { + "name": "mag-unshaded-3" + }, + { + "name": "mag-unshaded-4" + }, + { + "name": "inhand-left-0", + "directions": 4 + }, + { + "name": "inhand-right-0", + "directions": 4 + }, + { + "name": "inhand-left-1", + "directions": 4 + }, + { + "name": "inhand-right-1", + "directions": 4 + }, + { + "name": "inhand-left-2", + "directions": 4 + }, + { + "name": "inhand-right-2", + "directions": 4 + }, + { + "name": "inhand-left-3", + "directions": 4 + }, + { + "name": "inhand-right-3", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/laser_cannon.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_cannon.rsi/meta.json index 6657216b76..acbd06c270 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Battery/laser_cannon.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_cannon.rsi/meta.json @@ -1,77 +1,85 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/125c975f1b3bf9826b37029e9ab5a5f89e975a7e, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/125c975f1b3bf9826b37029e9ab5a5f89e975a7e, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244", "size": { "x": 32, "y": 32 }, - "states": [ - { - "name": "icon" - }, - { - "name": "base" - }, - { - "name": "mag-unshaded-1" - }, - { - "name": "mag-unshaded-2" - }, - { - "name": "mag-unshaded-3" - }, - { - "name": "mag-unshaded-4" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "0-inhand-left", - "directions": 4 - }, - { - "name": "0-inhand-right", - "directions": 4 - }, - { - "name": "25-inhand-left", - "directions": 4 - }, - { - "name": "25-inhand-right", - "directions": 4 - }, - { - "name": "50-inhand-left", - "directions": 4 - }, - { - "name": "50-inhand-right", - "directions": 4 - }, - { - "name": "75-inhand-left", - "directions": 4 - }, - { - "name": "75-inhand-right", - "directions": 4 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "equipped-SUITSTORAGE", - "directions": 4 - } - ] + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "mag-unshaded-1" + }, + { + "name": "mag-unshaded-2" + }, + { + "name": "mag-unshaded-3" + }, + { + "name": "mag-unshaded-4" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, + { + "name": "0-inhand-left", + "directions": 4 + }, + { + "name": "0-inhand-right", + "directions": 4 + }, + { + "name": "25-inhand-left", + "directions": 4 + }, + { + "name": "25-inhand-right", + "directions": 4 + }, + { + "name": "50-inhand-left", + "directions": 4 + }, + { + "name": "50-inhand-right", + "directions": 4 + }, + { + "name": "75-inhand-left", + "directions": 4 + }, + { + "name": "75-inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/laser_cannon.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_cannon.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..38327d9708 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_cannon.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/laser_cannon.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_cannon.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..4e0a357b84 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_cannon.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/laser_gun.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_gun.rsi/meta.json index 7ec48da4fe..2b374ec4dd 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Battery/laser_gun.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_gun.rsi/meta.json @@ -1,45 +1,53 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Polaris at https://github.com/PolarisSS13/Polaris/commit/9ded73fb85b9106d6bbf1c9a34d1d2fa27ee0e2e, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", + "copyright": "Taken from Polaris at https://github.com/PolarisSS13/Polaris/commit/9ded73fb85b9106d6bbf1c9a34d1d2fa27ee0e2e, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244", "size": { "x": 32, "y": 32 }, "states": [ - { - "name": "icon" - }, - { - "name": "base" - }, - { - "name": "mag-unshaded-1" - }, - { - "name": "mag-unshaded-2" - }, - { - "name": "mag-unshaded-3" - }, - { - "name": "mag-unshaded-4" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "equipped-SUITSTORAGE", - "directions": 4 - } + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "mag-unshaded-1" + }, + { + "name": "mag-unshaded-2" + }, + { + "name": "mag-unshaded-3" + }, + { + "name": "mag-unshaded-4" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + } ] } diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/laser_gun.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_gun.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..126915fd27 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_gun.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/laser_gun.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_gun.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..93a9303c5e Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_gun.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_carbine.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_carbine.rsi/meta.json index 3b48bfc87c..434d66fcfd 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_carbine.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_carbine.rsi/meta.json @@ -1,45 +1,53 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/27386/commits/4814da0f8e0d88f430c8b335e541e0a7734755a2 backpack sprite by Peptide (copy of pulse rifle), backpack sling sprite edited by Boaz1111", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/27386/commits/4814da0f8e0d88f430c8b335e541e0a7734755a2 backpack sprite by Peptide (copy of pulse rifle), backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244", "size": { "x": 32, "y": 32 }, "states": [ - { - "name": "icon" - }, - { - "name": "base" - }, - { - "name": "mag-unshaded-1" - }, - { - "name": "mag-unshaded-2" - }, - { - "name": "mag-unshaded-3" - }, - { - "name": "mag-unshaded-4" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "equipped-SUITSTORAGE", - "directions": 4 - } + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "mag-unshaded-1" + }, + { + "name": "mag-unshaded-2" + }, + { + "name": "mag-unshaded-3" + }, + { + "name": "mag-unshaded-4" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + } ] } diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_carbine.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_carbine.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..b9df7a2cb2 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_carbine.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_carbine.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_carbine.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..644db232d2 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_carbine.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_rifle.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_rifle.rsi/meta.json index 1a906ef965..023ad90cfa 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_rifle.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_rifle.rsi/meta.json @@ -1,45 +1,53 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/27386/commits/4814da0f8e0d88f430c8b335e541e0a7734755a2, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/27386/commits/4814da0f8e0d88f430c8b335e541e0a7734755a2, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244", "size": { "x": 32, "y": 32 }, "states": [ - { - "name": "icon" - }, - { - "name": "base" - }, - { - "name": "mag-unshaded-1" - }, - { - "name": "mag-unshaded-2" - }, - { - "name": "mag-unshaded-3" - }, - { - "name": "mag-unshaded-4" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "equipped-SUITSTORAGE", - "directions": 4 - } + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "mag-unshaded-1" + }, + { + "name": "mag-unshaded-2" + }, + { + "name": "mag-unshaded-3" + }, + { + "name": "mag-unshaded-4" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + } ] } diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_rifle.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_rifle.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..b9df7a2cb2 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_rifle.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_rifle.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_rifle.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..644db232d2 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_rifle.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/xray.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Battery/xray.rsi/meta.json index 990ba51185..8766242121 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Battery/xray.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Battery/xray.rsi/meta.json @@ -1,54 +1,62 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/167a810bc8534a56c74ffa8f1373acd3b1ac70ee/icons/obj/guns/energy/xray.dmi, backpack sprite by peptide, backpack sling sprite edited by Boaz1111", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/167a810bc8534a56c74ffa8f1373acd3b1ac70ee/icons/obj/guns/energy/xray.dmi, backpack sprite by peptide, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244", "size": { "x": 32, "y": 32 }, - "states": [ - { - "name": "icon" - }, - { - "name": "base" - }, - { - "name": "mag-unshaded-0", - "delays": [ - [ - 0.3, - 0.3 - ] - ] - }, - { - "name": "mag-unshaded-1" - }, - { - "name": "mag-unshaded-2" - }, - { - "name": "mag-unshaded-3" - }, - { - "name": "mag-unshaded-4" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "equipped-SUITSTORAGE", - "directions": 4 - } - ] + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "mag-unshaded-0", + "delays": [ + [ + 0.3, + 0.3 + ] + ] + }, + { + "name": "mag-unshaded-1" + }, + { + "name": "mag-unshaded-2" + }, + { + "name": "mag-unshaded-3" + }, + { + "name": "mag-unshaded-4" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/xray.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Battery/xray.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..9fa2fafdff Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Battery/xray.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/xray.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Battery/xray.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..63615e2df1 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Battery/xray.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/meta.json index a5e32a3b39..d3b991783f 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/pull/6042/commits/64916c98f4847acc4adf3a2416bf78c005fd7dd7, https://github.com/discordia-space/CEV-Eris/blob/master/icons/obj/guns/launcher/grenadelauncher.dmi, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", + "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/pull/6042/commits/64916c98f4847acc4adf3a2416bf78c005fd7dd7, https://github.com/discordia-space/CEV-Eris/blob/master/icons/obj/guns/launcher/grenadelauncher.dmi, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244", "size": { "x": 32, "y": 32 @@ -21,11 +21,19 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, { "name": "equipped-BACKPACK", "directions": 4 }, - { + { "name": "equipped-SUITSTORAGE", "directions": 4 } diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..a1d40617d2 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..146fe9b1c2 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/mail.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/mail.rsi/bolt-open.png new file mode 100644 index 0000000000..87c6d812ec Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Launchers/mail.rsi/bolt-open.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/mail.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/mail.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000..c17a68eb35 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Launchers/mail.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/mail.rsi/equipped-BELT.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/mail.rsi/equipped-BELT.png new file mode 100644 index 0000000000..59dc5f13ed Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Launchers/mail.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/mail.rsi/icon.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/mail.rsi/icon.png new file mode 100644 index 0000000000..dd7b21e167 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Launchers/mail.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/mail.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/mail.rsi/inhand-left.png new file mode 100644 index 0000000000..427389f40d Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Launchers/mail.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/mail.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/mail.rsi/inhand-right.png new file mode 100644 index 0000000000..8e50ef04f9 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Launchers/mail.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/mail.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Launchers/mail.rsi/meta.json new file mode 100644 index 0000000000..464c22d1a7 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Launchers/mail.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/pull/6042/commits/64916c98f4847acc4adf3a2416bf78c005fd7dd7, https://github.com/discordia-space/CEV-Eris/blob/master/icons/obj/guns/launcher/grenadelauncher.dmi, backpack sprite by Peptide, resprited for mail gun by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "bolt-open" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/meta.json index 919d0f87ac..0257e70364 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/pull/6042/commits/64916c98f4847acc4adf3a2416bf78c005fd7dd7, https://github.com/discordia-space/CEV-Eris/raw/e1a3cbe9ba2e6e29b7f1cad1bb456b390aac936d/icons/obj/guns/projectile.dmi, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", + "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/pull/6042/commits/64916c98f4847acc4adf3a2416bf78c005fd7dd7, https://github.com/discordia-space/CEV-Eris/raw/e1a3cbe9ba2e6e29b7f1cad1bb456b390aac936d/icons/obj/guns/projectile.dmi, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244", "size": { "x": 32, "y": 32 @@ -27,13 +27,21 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, { "name": "equipped-BACKPACK", "directions": 4 - }, - { - "name": "equipped-SUITSTORAGE", - "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..2fa1f7811d Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..c358af57c3 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/meta.json index 2f30ef18a8..c45db54aff 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken/modified from tgstation at https://github.com/tgstation/tgstation/pull/41393/commits/1e56473177d0994d163c9edca3d13d6e5b640cc4, https://github.com/tgstation/tgstation/tree/master/icons/obj/weapons/guns backpack sprite by Peptide (copy of carbine), backpack sling sprite edited by Boaz1111", + "copyright": "Taken/modified from tgstation at https://github.com/tgstation/tgstation/pull/41393/commits/1e56473177d0994d163c9edca3d13d6e5b640cc4, https://github.com/tgstation/tgstation/tree/master/icons/obj/weapons/guns backpack sprite by Peptide (copy of carbine), backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244", "size": { "x": 32, "y": 32 @@ -27,11 +27,19 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, { "name": "equipped-BACKPACK", "directions": 4 }, - { + { "name": "equipped-SUITSTORAGE", "directions": 4 } diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..42926b00f4 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..fd58fca837 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/meta.json index 8b1af3c504..2ff87fa291 100644 --- a/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/meta.json @@ -45,11 +45,19 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, { "name": "equipped-BACKPACK", "directions": 4 }, - { + { "name": "equipped-SUITSTORAGE", "directions": 4 } diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..50b0e2a1d4 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..eaf5e92574 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json index 25feebd92c..bd66b2c968 100644 --- a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json @@ -1,42 +1,50 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/56cbafd6ad8c013ccd5472d6c4a0db790f7f872a/icons/obj/guns/projectile/drozd.dmi, sprite modification by Jaсkal 298/TaralGit, backpack sling sprite edited by Boaz1111", + "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/56cbafd6ad8c013ccd5472d6c4a0db790f7f872a/icons/obj/guns/projectile/drozd.dmi, sprite modification by Jaсkal 298/TaralGit, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244", "size": { "x": 32, "y": 32 }, - "states": [ - { - "name": "icon" - }, - { - "name": "base" - }, - { - "name": "bolt-open" - }, - { - "name": "mag-0" - }, - { - "name": "suppressor" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "equipped-SUITSTORAGE", - "directions": 4 - } + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "bolt-open" + }, + { + "name": "mag-0" + }, + { + "name": "suppressor" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + } ] } diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..ee66cf3df9 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..c5d6695605 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/meta.json index f55fd2db20..b3ab88b772 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183(Github) inspired by an image created by rezierré#5003 (Discord)", + "copyright": "Made by brainfood1183(Github) inspired by an image created by rezierré#5003 (Discord), wield sprites by RiceMar1244", "size": { "x": 32, "y": 32 @@ -20,6 +20,14 @@ { "name": "inhand-left", "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..da4a7f4f92 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..ac02c47a84 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/meta.json index 5ef981dec9..8699d00b7d 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.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/1b6831dab1e1a74c0d91f2229adb87abbb089d31, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/1b6831dab1e1a74c0d91f2229adb87abbb089d31, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244", "size": { "x": 32, "y": 32 @@ -27,11 +27,19 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, { "name": "equipped-BACKPACK", "directions": 4 }, - { + { "name": "equipped-SUITSTORAGE", "directions": 4 } diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..9a45848ec5 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..7252681aba Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json index 27d7ebd665..3add3a471b 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json @@ -17,7 +17,7 @@ "name": "equipped-BACKPACK", "directions": 4 }, - { + { "name": "equipped-SUITSTORAGE", "directions": 4 } diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/db-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun_inhands_64x.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/db-inhand-left.png rename to Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun_inhands_64x.rsi/inhand-left.png diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/db-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun_inhands_64x.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/db-inhand-right.png rename to Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun_inhands_64x.rsi/inhand-right.png diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun_inhands_64x.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun_inhands_64x.rsi/meta.json new file mode 100644 index 0000000000..6c1d1581e8 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun_inhands_64x.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-NC-4.0", + "copyright": "Taken from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, wield sprites by RiceMar1244", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun_inhands_64x.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun_inhands_64x.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..27c2e92359 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun_inhands_64x.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun_inhands_64x.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun_inhands_64x.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..78165792c7 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun_inhands_64x.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json index f3a7f48582..42b8d94d6d 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json @@ -17,7 +17,7 @@ "name": "equipped-BACKPACK", "directions": 4 }, - { + { "name": "equipped-SUITSTORAGE", "directions": 4 } diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/enforcer-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer_inhands_64x.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/enforcer-inhand-left.png rename to Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer_inhands_64x.rsi/inhand-left.png diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/enforcer-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer_inhands_64x.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/enforcer-inhand-right.png rename to Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer_inhands_64x.rsi/inhand-right.png diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer_inhands_64x.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer_inhands_64x.rsi/meta.json new file mode 100644 index 0000000000..6c1d1581e8 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer_inhands_64x.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-NC-4.0", + "copyright": "Taken from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, wield sprites by RiceMar1244", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer_inhands_64x.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer_inhands_64x.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..5f5b50d715 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer_inhands_64x.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer_inhands_64x.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer_inhands_64x.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..4810c9c375 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer_inhands_64x.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/improvised-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun_inhands_64x.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/improvised-inhand-left.png rename to Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun_inhands_64x.rsi/inhand-left.png diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/improvised-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun_inhands_64x.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/improvised-inhand-right.png rename to Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun_inhands_64x.rsi/inhand-right.png diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun_inhands_64x.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun_inhands_64x.rsi/meta.json new file mode 100644 index 0000000000..6c1d1581e8 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun_inhands_64x.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-NC-4.0", + "copyright": "Taken from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, wield sprites by RiceMar1244", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun_inhands_64x.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun_inhands_64x.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..26a569bfc2 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun_inhands_64x.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun_inhands_64x.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun_inhands_64x.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..e2380308b4 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/improvised_shotgun_inhands_64x.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/meta.json deleted file mode 100644 index fefe1f6eb7..0000000000 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/meta.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-NC-4.0", - "copyright": "Taken from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, sawn-inhand states modified from db-inhand by Flareguy", - "size": { - "x": 64, - "y": 64 - }, - "states": [ - { - "name": "pump-inhand-left", - "directions": 4 - }, - { - "name": "pump-inhand-right", - "directions": 4 - }, - { - "name": "enforcer-inhand-left", - "directions": 4 - }, - { - "name": "enforcer-inhand-right", - "directions": 4 - }, - { - "name": "db-inhand-left", - "directions": 4 - }, - { - "name": "db-inhand-right", - "directions": 4 - }, - { - "name": "sawn-inhand-left", - "directions": 4 - }, - { - "name": "sawn-inhand-right", - "directions": 4 - }, - { - "name": "improvised-inhand-left", - "directions": 4 - }, - { - "name": "improvised-inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json index 27d7ebd665..3add3a471b 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json @@ -17,7 +17,7 @@ "name": "equipped-BACKPACK", "directions": 4 }, - { + { "name": "equipped-SUITSTORAGE", "directions": 4 } diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/pump-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump_inhands_64x.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/pump-inhand-left.png rename to Resources/Textures/Objects/Weapons/Guns/Shotguns/pump_inhands_64x.rsi/inhand-left.png diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/pump-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump_inhands_64x.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/pump-inhand-right.png rename to Resources/Textures/Objects/Weapons/Guns/Shotguns/pump_inhands_64x.rsi/inhand-right.png diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump_inhands_64x.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump_inhands_64x.rsi/meta.json new file mode 100644 index 0000000000..6c1d1581e8 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump_inhands_64x.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-NC-4.0", + "copyright": "Taken from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, wield sprites by RiceMar1244", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump_inhands_64x.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump_inhands_64x.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..09fbaae551 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump_inhands_64x.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump_inhands_64x.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump_inhands_64x.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..00b475f6b4 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump_inhands_64x.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/sawn-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn_inhands_64x.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/sawn-inhand-left.png rename to Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn_inhands_64x.rsi/inhand-left.png diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/sawn-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn_inhands_64x.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Objects/Weapons/Guns/Shotguns/inhands_64x.rsi/sawn-inhand-right.png rename to Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn_inhands_64x.rsi/inhand-right.png diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn_inhands_64x.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn_inhands_64x.rsi/meta.json new file mode 100644 index 0000000000..852268d187 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/sawn_inhands_64x.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-NC-4.0", + "copyright": "Taken from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, sawn-inhand states modified from db-inhand by Flareguy", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/meta.json index 4f7fc5d6f5..e4f1ef8dd8 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from InterBay13 at https://github.com/AndySok/InterBay13/commit/84824582fe1381d9ea6282b9da407994ab8ab509, backpack sling sprite edited by Boaz1111", + "copyright": "Taken from InterBay13 at https://github.com/AndySok/InterBay13/commit/84824582fe1381d9ea6282b9da407994ab8ab509, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244", "size": { "x": 32, "y": 32 @@ -21,11 +21,19 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, { "name": "equipped-BACKPACK", "directions": 4 }, - { + { "name": "equipped-SUITSTORAGE", "directions": 4 } diff --git a/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..dc8f572764 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..7a478a3976 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/meta.json index da8881c7c5..818c56417d 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.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/pull/13612/commits/c1cf3c42b0cd00023937e46845a7c32d6beefa0e, backpack sling sprite edited by Boaz1111", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/13612/commits/c1cf3c42b0cd00023937e46845a7c32d6beefa0e, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244", "size": { "x": 32, "y": 32 @@ -21,11 +21,19 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, { "name": "equipped-BACKPACK", "directions": 4 }, - { + { "name": "equipped-SUITSTORAGE", "directions": 4 } diff --git a/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..d373352b9f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..03625930c8 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/cane.rsi/cane-empty.png b/Resources/Textures/Objects/Weapons/Melee/cane.rsi/cane-empty.png new file mode 100644 index 0000000000..64cb9ef3aa Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/cane.rsi/cane-empty.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/cane.rsi/cane.png b/Resources/Textures/Objects/Weapons/Melee/cane.rsi/cane.png new file mode 100644 index 0000000000..721847ff28 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/cane.rsi/cane.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/cane.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/cane.rsi/inhand-left.png new file mode 100644 index 0000000000..caa2f23270 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/cane.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/cane.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/cane.rsi/inhand-right.png new file mode 100644 index 0000000000..8f12a08afd Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/cane.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/cane.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/cane.rsi/meta.json new file mode 100644 index 0000000000..913fcb524b --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Melee/cane.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprited by ps3moira#9488 on discord", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "cane-empty" + }, + { + "name": "cane" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Melee/cane.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/cane.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..f6f87a4a90 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/cane.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/cane.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/cane.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..e1f0449b4c Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/cane.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/cane_blade.rsi/icon.png b/Resources/Textures/Objects/Weapons/Melee/cane_blade.rsi/icon.png new file mode 100644 index 0000000000..6581dc96e8 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/cane_blade.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/cane_blade.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/cane_blade.rsi/inhand-left.png new file mode 100644 index 0000000000..f8e57880cb Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/cane_blade.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/cane_blade.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/cane_blade.rsi/inhand-right.png new file mode 100644 index 0000000000..5fa04f7f87 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/cane_blade.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/cane_blade.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/cane_blade.rsi/meta.json new file mode 100644 index 0000000000..a48335cc0d --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Melee/cane_blade.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprited by ps3moira#9488 on discord", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/pflash.rsi/flashing.png b/Resources/Textures/Objects/Weapons/pflash.rsi/flashing.png index 075fc53733..00375942fb 100644 Binary files a/Resources/Textures/Objects/Weapons/pflash.rsi/flashing.png and b/Resources/Textures/Objects/Weapons/pflash.rsi/flashing.png differ diff --git a/Resources/Textures/Objects/Weapons/pflash.rsi/meta.json b/Resources/Textures/Objects/Weapons/pflash.rsi/meta.json index c7b536cf6e..77ccba3611 100644 --- a/Resources/Textures/Objects/Weapons/pflash.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/pflash.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/f349b842c84f500399bd5673e5e34a6bc45b001a", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/pflash.rsi/off.png b/Resources/Textures/Objects/Weapons/pflash.rsi/off.png index b700748403..1db05eebb7 100644 Binary files a/Resources/Textures/Objects/Weapons/pflash.rsi/off.png and b/Resources/Textures/Objects/Weapons/pflash.rsi/off.png differ diff --git a/Resources/Textures/Objects/Weapons/pflash.rsi/on-unlit.png b/Resources/Textures/Objects/Weapons/pflash.rsi/on-unlit.png index 8057f65fe4..67f9704c39 100644 Binary files a/Resources/Textures/Objects/Weapons/pflash.rsi/on-unlit.png and b/Resources/Textures/Objects/Weapons/pflash.rsi/on-unlit.png differ diff --git a/Resources/Textures/Objects/Weapons/pflash.rsi/on.png b/Resources/Textures/Objects/Weapons/pflash.rsi/on.png index 2e04495726..524f313143 100644 Binary files a/Resources/Textures/Objects/Weapons/pflash.rsi/on.png and b/Resources/Textures/Objects/Weapons/pflash.rsi/on.png differ diff --git a/Resources/Textures/Shaders/displacement.swsl b/Resources/Textures/Shaders/displacement.swsl new file mode 100644 index 0000000000..ba5ca57852 --- /dev/null +++ b/Resources/Textures/Shaders/displacement.swsl @@ -0,0 +1,18 @@ +uniform sampler2D displacementMap; +uniform highp float displacementSize; +uniform highp vec4 displacementUV; + +varying highp vec2 displacementUVOut; + +void vertex() { + displacementUVOut = mix(displacementUV.xy, displacementUV.zw, tCoord2); +} + +void fragment() { + highp vec4 displacementSample = texture2D(displacementMap, displacementUVOut); + highp vec2 displacementValue = (displacementSample.xy - vec2(128.0 / 255.0)) / (1.0 - 128.0 / 255.0); + COLOR = zTexture(UV + displacementValue * TEXTURE_PIXEL_SIZE * displacementSize * vec2(1.0, -1.0)); + COLOR.a *= displacementSample.a; +} + + diff --git a/Resources/Textures/Shaders/flap.swsl b/Resources/Textures/Shaders/flap.swsl new file mode 100644 index 0000000000..3082e19b49 --- /dev/null +++ b/Resources/Textures/Shaders/flap.swsl @@ -0,0 +1,35 @@ +preset raw; + +varying highp vec4 VtxModulate; +varying highp vec2 Pos; + +uniform highp float Speed; +uniform highp float Multiplier; +uniform highp float Offset; + +void fragment() { + highp vec4 texColor = zTexture(UV); + lowp vec3 lightSample = texture2D(lightMap, Pos).rgb; + COLOR = texColor * VtxModulate * vec4(lightSample, 1.0); +} + +void vertex() { + vec2 pos = aPos; + + // Apply MVP transformation first + vec2 transformedPos = apply_mvp(pos); + + // Calculate vertical movement in screen space + float verticalOffset = (sin(TIME * Speed) + Offset) * Multiplier; + + // Apply vertical movement after MVP transformation + transformedPos.y += verticalOffset; + + // Assign the final position + VERTEX = transformedPos; + + // Keep the original UV coordinates + UV = mix(modifyUV.xy, modifyUV.zw, tCoord); + Pos = (VERTEX + 1.0) / 2.0; + VtxModulate = zFromSrgb(modulate); +} \ No newline at end of file diff --git a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/pews.rsi/left.png b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/pews.rsi/left.png index 9631b4b171..beb8cd4a0b 100644 Binary files a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/pews.rsi/left.png and b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/pews.rsi/left.png differ diff --git a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/pews.rsi/right.png b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/pews.rsi/right.png index ea0922930f..c1f2949a71 100644 Binary files a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/pews.rsi/right.png and b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/pews.rsi/right.png differ diff --git a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench.rsi/left.png b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench.rsi/left.png index 260c7298f7..b6c1ef00fc 100644 Binary files a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench.rsi/left.png and b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench.rsi/left.png differ diff --git a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench.rsi/right.png b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench.rsi/right.png index b6c1ef00fc..260c7298f7 100644 Binary files a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench.rsi/right.png and b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench.rsi/right.png differ diff --git a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench_white.rsi/left.png b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench_white.rsi/left.png index d456300e10..a412a51871 100644 Binary files a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench_white.rsi/left.png and b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench_white.rsi/left.png differ diff --git a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench_white.rsi/right.png b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench_white.rsi/right.png index a412a51871..d456300e10 100644 Binary files a/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench_white.rsi/right.png and b/Resources/Textures/SimpleStation14/Structures/Furniture/Benches/steel_bench_white.rsi/right.png differ diff --git a/Resources/Textures/Structures/Decoration/statues.rsi/bananium_clown.png b/Resources/Textures/Structures/Decoration/statues.rsi/bananium_clown.png index d0c89280f1..0dce0770fd 100644 Binary files a/Resources/Textures/Structures/Decoration/statues.rsi/bananium_clown.png and b/Resources/Textures/Structures/Decoration/statues.rsi/bananium_clown.png differ diff --git a/Resources/Textures/Structures/Decoration/statues.rsi/meta.json b/Resources/Textures/Structures/Decoration/statues.rsi/meta.json index 280da9df8b..5110ad9f9d 100644 --- a/Resources/Textures/Structures/Decoration/statues.rsi/meta.json +++ b/Resources/Textures/Structures/Decoration/statues.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/tgstation/tgstation/commit/2bb568bf2beddeee5f1f28cbc1e15bdcfb2e2cb0, bananium_clown made by brainfood1183 (github) for ss14", + "copyright": "https://github.com/tgstation/tgstation/commit/2bb568bf2beddeee5f1f28cbc1e15bdcfb2e2cb0, bananium_clown made by brainfood1183 (github) for ss14. Bananium_clown made by Purka", "size": { "x": 32, "y": 64 diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/meta.json index b935f1e5e3..2ce80b4e9e 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise station at commit https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ @@ -192,4 +201,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/meta.json index 588d48b46e..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/meta.json index 588d48b46e..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/centcomm.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/centcomm.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/centcomm.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/centcomm.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/centcomm.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/centcomm.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/centcomm.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/centcomm.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/centcomm.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/centcomm.rsi/meta.json index 6180afd17d..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/centcomm.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/centcomm.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/58e5354cdbc304847c9ef20963320d21f418b58e and edited by Nairod(github) for SS14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/centcomm.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/centcomm.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/meta.json index f686706dd3..e2365e45e9 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/meta.json @@ -1,24 +1,33 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/a406e8388f763e496caac32c3cf11e455b20d28d/icons/obj/doors/airlocks/clockwork/pinion_airlock.dmi and https://github.com/tgstation/tgstation/blob/a406e8388f763e496caac32c3cf11e455b20d28d/icons/obj/doors/airlocks/clockwork/overlays.dmi modified for SS14 by MACMAN2003", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/a406e8388f763e496caac32c3cf11e455b20d28d/icons/obj/doors/airlocks/clockwork/pinion_airlock.dmi and https://github.com/tgstation/tgstation/blob/a406e8388f763e496caac32c3cf11e455b20d28d/icons/obj/doors/airlocks/clockwork/overlays.dmi modified for SS14 by MACMAN2003. modified by WD team", "size": { "x": 32, "y": 32 }, "states": [ { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, { "name": "closed" }, - { - "name": "closed_unlit" - }, + { + "name": "closed_unlit" + }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/meta.json index 588d48b46e..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/meta.json index 588d48b46e..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/external.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/external.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/external.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/external.rsi/closed_unlit.png index 79125cbe2e..b7a5f9ecca 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/external.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/external.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/external.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/external.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/external.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/external.rsi/emergency_unlit.png index 817f2fb3f9..a40cee44be 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/external.rsi/emergency_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/external.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/external.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/external.rsi/meta.json index 603c7588fd..57ba87b56c 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/external.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/external.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,21 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "emergency_open_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + }, + { + "name": "bolted_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/external.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/external.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/firelock.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/firelock.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/firelock.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/firelock.rsi/closed_unlit.png index 1d33d3f366..b7a5f9ecca 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/firelock.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/firelock.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/firelock.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/firelock.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/firelock.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/firelock.rsi/emergency_unlit.png index 817f2fb3f9..a40cee44be 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/firelock.rsi/emergency_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/firelock.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/firelock.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/firelock.rsi/meta.json index 505b597a61..6ad64f839e 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/firelock.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/firelock.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/tgstation/tgstation at 04e43d8c1d5097fdb697addd4395fb849dd341bd", + "copyright": "Taken from https://github.com/tgstation/tgstation at 04e43d8c1d5097fdb697addd4395fb849dd341bd. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,21 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "emergency_open_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + }, + { + "name": "bolted_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/firelock.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/firelock.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/meta.json index 9bb7e9bb72..befffa0c39 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -25,6 +25,15 @@ { "name": "closed_unlit" }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, + { + "name": "open_unlit" + }, { "name": "closed-fill" }, diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/meta.json index 588d48b46e..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/meta.json index 588d48b46e..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/bolted_unlit.png index 9bce6022dc..8936e50021 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/bolted_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/closed_unlit.png index cd5c6b4700..6a4eae111c 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/deny_unlit.png index adfb0cf39c..fb428de951 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/deny_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/deny_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/emergency_unlit.png index c018c3f9fd..2a7eb55f53 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/emergency_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/meta.json index f710aeb1ad..1eed540bc3 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken at https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d", + "copyright": "Taken at https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,21 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/sparks.png index 4d9cab3c5c..77283c6284 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/sparks.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/mining.rsi/sparks.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/meta.json index 588d48b46e..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/meta.json index 588d48b46e..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/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/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle.rsi/closed_unlit.png index 7c80bc210c..e1346fd80c 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle.rsi/meta.json index ded8386db5..b0119eb750 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from CEV-Eris at commit https://github.com/discordia-space/CEV-Eris/commit/14517938186858388656a6aee14bf47af9e9649f - then modified by 20kdc & AJCM-git, glass by Peptide90", + "copyright": "Taken from CEV-Eris at commit https://github.com/discordia-space/CEV-Eris/commit/14517938186858388656a6aee14bf47af9e9649f - then modified by 20kdc & AJCM-git. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,21 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closed_unlit.png index 7c80bc210c..e1346fd80c 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/meta.json index 1081b1b57d..b0119eb750 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from CEV-Eris at commit https://github.com/discordia-space/CEV-Eris/commit/14517938186858388656a6aee14bf47af9e9649f - then modified by 20kdc & AJCM-git, glass by Peptide90, modified by brainfood1183 (github)", + "copyright": "Taken from CEV-Eris at commit https://github.com/discordia-space/CEV-Eris/commit/14517938186858388656a6aee14bf47af9e9649f - then modified by 20kdc & AJCM-git. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,21 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/meta.json index 6b8b84fc12..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24; Edited by Doru991", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/syndicate.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/meta.json index 588d48b46e..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/meta.json index b935f1e5e3..2ce80b4e9e 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise station at commit https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ @@ -192,4 +201,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/meta.json index 588d48b46e..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closed.png index 01ddc9fef0..d92c0ca3df 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closed.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closing.png index 9e9e14d1bd..399f965816 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closing.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/meta.json index 588d48b46e..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/open.png index 3fa424bafa..d0175d0f86 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/open.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/open.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/opening.png index 94b0291a5b..64f8116f45 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/opening.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/centcomm.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/centcomm.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/centcomm.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/centcomm.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/centcomm.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/centcomm.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/centcomm.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/centcomm.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/centcomm.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/centcomm.rsi/meta.json index 6180afd17d..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/centcomm.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/centcomm.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/58e5354cdbc304847c9ef20963320d21f418b58e and edited by Nairod(github) for SS14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/centcomm.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/centcomm.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/meta.json index f686706dd3..c14f55b410 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/meta.json @@ -1,24 +1,33 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/a406e8388f763e496caac32c3cf11e455b20d28d/icons/obj/doors/airlocks/clockwork/pinion_airlock.dmi and https://github.com/tgstation/tgstation/blob/a406e8388f763e496caac32c3cf11e455b20d28d/icons/obj/doors/airlocks/clockwork/overlays.dmi modified for SS14 by MACMAN2003", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/a406e8388f763e496caac32c3cf11e455b20d28d/icons/obj/doors/airlocks/clockwork/pinion_airlock.dmi and https://github.com/tgstation/tgstation/blob/a406e8388f763e496caac32c3cf11e455b20d28d/icons/obj/doors/airlocks/clockwork/overlays.dmi modified for SS14 by MACMAN2003. Modified by WD team", "size": { "x": 32, "y": 32 }, "states": [ { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, { "name": "closed" }, - { - "name": "closed_unlit" - }, + { + "name": "closed_unlit" + }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closed.png index 96349c2a29..c1793a1076 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closed.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closing.png index 2a861fa8a4..7b285ba601 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closing.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/meta.json index 588d48b46e..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/opening.png index edcf9d92cc..ff2693c592 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/opening.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closed.png index b409f80c52..90c3f4cd90 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closed.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closing.png index c27f6aad6f..033682b7e3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closing.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/meta.json index 588d48b46e..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/opening.png index 47dee90e59..38441d5bda 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/opening.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/closed.png index 6699ff8154..296ef6a128 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/closed.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/closed_unlit.png index 79125cbe2e..b7a5f9ecca 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/closing.png index f8d6f1e29e..5ae48c213d 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/closing.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/meta.json index 603c7588fd..54c867a457 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,21 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/opening.png index be4300f51c..b71c4e1e41 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/external.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/assembly.png index ade0a87386..ec0074757c 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/assembly.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/assembly.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/closed.png index 8c90b693a4..419e050645 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/closed.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/closed_unlit.png index 1d33d3f366..b7a5f9ecca 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/closing.png index 4347bf8afe..9e4b1edb57 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/deny.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/deny.png index 225d45a82a..98675fc927 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/deny.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/deny.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/emergency_unlit.png index 817f2fb3f9..a40cee44be 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/emergency_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/frame1.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/frame1.png index 458698515f..d722a8a0f7 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/frame1.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/frame1.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/frame2.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/frame2.png index 67f782bd89..47b5c0067b 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/frame2.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/frame2.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/frame3.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/frame3.png index 5421154834..6a8b30b912 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/frame3.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/frame3.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/frame4.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/frame4.png index 6252d37d1e..1717ef5404 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/frame4.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/frame4.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/locked.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/locked.png index 12ccff5cb0..ec2d03812d 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/locked.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/meta.json index 7c1ec64f62..8fe7116f9b 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/tgstation/tgstation at 04e43d8c1d5097fdb697addd4395fb849dd341bd", + "copyright": "Taken from https://github.com/tgstation/tgstation at 04e43d8c1d5097fdb697addd4395fb849dd341bd. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,21 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/opening.png index 79a05996ad..39e81737fb 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/firelock.rsi/opening.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/meta.json index 588d48b46e..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/bolted_unlit.png index 57f172d54f..cdf10f33eb 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/bolted_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/closed_unlit.png index fdf7952dd8..611f458f91 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/closing_unlit.png index a2f351482b..2f5fdecca2 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/closing_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/deny_unlit.png index ba26f190cb..14762d6697 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/deny_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/deny_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/emergency_unlit.png index 6a122fbcfd..7780d2478d 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/emergency_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/meta.json index 5b0c9b55a7..b7da65f815 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise station at commit https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d", + "copyright": "Taken from paradise station at commit https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "emergency_open_unlit" + }, + { + "name": "bolted_open_unlit" + }, { "name": "closing", "delays": [ @@ -195,4 +204,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/opening_unlit.png index 051f78f757..a32084fafc 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/opening_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch.rsi/opening_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/bolted_unlit.png index 57f172d54f..cdf10f33eb 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/bolted_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/closed_unlit.png index fdf7952dd8..611f458f91 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/closing_unlit.png index a2f351482b..2f5fdecca2 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/closing_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/deny_unlit.png index ba26f190cb..14762d6697 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/deny_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/deny_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/emergency_unlit.png index 6a122fbcfd..7780d2478d 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/emergency_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/meta.json index 5b0c9b55a7..b7da65f815 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise station at commit https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d", + "copyright": "Taken from paradise station at commit https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "emergency_open_unlit" + }, + { + "name": "bolted_open_unlit" + }, { "name": "closing", "delays": [ @@ -195,4 +204,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/opening_unlit.png index 051f78f757..a32084fafc 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/opening_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/opening_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closed.png index 9035162d43..03664aba10 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closed.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closing.png index d207ec7d21..df67d798ac 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closing.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/meta.json index 588d48b46e..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/opening.png index d6d578a3be..39cb944eda 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/opening.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closed.png index b228a1487c..0d20d9f416 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closed.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closing.png index a124e930d2..0c4b9de2d6 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closing.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/meta.json index 588d48b46e..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/opening.png index 2f25dfe043..9f857363bc 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/opening.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/bolted_unlit.png index 9bce6022dc..8936e50021 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/bolted_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/closed_unlit.png index cd5c6b4700..6a4eae111c 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/deny_unlit.png index adfb0cf39c..fb428de951 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/deny_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/deny_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/emergency_unlit.png index c018c3f9fd..2a7eb55f53 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/emergency_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/meta.json index f710aeb1ad..1eed540bc3 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken at https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d", + "copyright": "Taken at https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,21 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/sparks.png index 4d9cab3c5c..77283c6284 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/sparks.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/mining.rsi/sparks.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closed.png index 814fba3422..52ab160fc5 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closed.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closing.png index 891dda16ce..d2c2320b7e 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closing.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/meta.json index 588d48b46e..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/opening.png index eeab16dca7..c2e139bd66 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/opening.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closed.png index 4cfd894f74..d80c06d5bb 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closed.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closing.png index 56ac2b4ead..42eda07286 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closing.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/meta.json index 588d48b46e..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/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/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/opening.png index a9f90c4553..eee04d4977 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/opening.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle.rsi/closed_unlit.png index 7c80bc210c..e1346fd80c 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle.rsi/meta.json index 72a5cbe0d1..b0119eb750 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from CEV-Eris at commit https://github.com/discordia-space/CEV-Eris/commit/14517938186858388656a6aee14bf47af9e9649f - then modified by 20kdc & AJCM-git", + "copyright": "Taken from CEV-Eris at commit https://github.com/discordia-space/CEV-Eris/commit/14517938186858388656a6aee14bf47af9e9649f - then modified by 20kdc & AJCM-git. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,21 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closed_unlit.png index 7c80bc210c..e1346fd80c 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closed_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/meta.json index 712b0ea1fc..b0119eb750 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from CEV-Eris at commit https://github.com/discordia-space/CEV-Eris/commit/14517938186858388656a6aee14bf47af9e9649f - then modified by brainfood1183 (github)", + "copyright": "Taken from CEV-Eris at commit https://github.com/discordia-space/CEV-Eris/commit/14517938186858388656a6aee14bf47af9e9649f - then modified by 20kdc & AJCM-git. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,21 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/open_unlit.png diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed.png index bc5174213c..f079442300 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closing.png index 5311eca045..9885931064 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/closing.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/meta.json index b343ae11db..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24; Edited by @MaloTV on GitHub", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/opening.png index cc155dc10b..c2f3f07d87 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/syndicate.rsi/opening.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closed.png index 9c33e5217d..94c93fd35c 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closed.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closed_unlit.png index c78d01c42d..6801a45ff3 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closing.png index 42838cc43d..60b2c12cef 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closing.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/meta.json index 588d48b46e..f707d4e2fc 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,15 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit" + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/opening.png index c68f20d436..bf27e40cf8 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/assembly.png index 8f42abb532..60f0fb6f95 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/assembly.png and b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/assembly.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/bolted_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/bolted_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/bolted_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/bolted_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/bolted_unlit.png index 847bfd4024..e823208219 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/bolted_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/closed.png index ef026cecb5..cc82dfbd8f 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/closed.png and b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/closed_unlit.png index 585557b6b6..0a1d654364 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/closing.png index 4487612111..6ada60c527 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/closing.png and b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/closing_unlit.png index e1baf64ff7..57fd9e810f 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/closing_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/deny_unlit.png index 21284ae611..0d5ce30da9 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/deny_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/deny_unlit.png differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/emergency_open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/emergency_open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/emergency_open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/emergency_open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/emergency_unlit.png index 539c5523d7..17d0110e71 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/emergency_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/meta.json index 80d3cabc01..8c74a29d04 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tg station at commit https://github.com/tgstation/tgstation/commit/6f450d93a6bfcc94e9c43ef7938e85bda49f7b6f", + "copyright": "Taken from tg station at commit https://github.com/tgstation/tgstation/commit/6f450d93a6bfcc94e9c43ef7938e85bda49f7b6f. modified by WD team", "size": { "x": 32, "y": 32 @@ -19,6 +19,21 @@ { "name": "closed_unlit" }, + { + "name": "open_unlit" + }, + { + "name": "bolted_open_unlit" + }, + { + "name": "emergency_open_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + }, { "name": "closing", "delays": [ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/open_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/open_unlit.png similarity index 100% rename from Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/open_unlit.png rename to Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/open_unlit.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/opening.png index 1e69cc0a90..34468d7acd 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/opening.png and b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/opening_unlit.png index eef8d9c12e..bf7cedb654 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/opening_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/sparks.png index 465d1a3214..fc242d9435 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/sparks.png and b/Resources/Textures/Structures/Doors/Airlocks/highsec/highsec.rsi/sparks.png differ diff --git a/Resources/Textures/Structures/Doors/MineralDoors/bananium_door.rsi/closed.png b/Resources/Textures/Structures/Doors/MineralDoors/bananium_door.rsi/closed.png index c436225a68..0b9c747f3b 100644 Binary files a/Resources/Textures/Structures/Doors/MineralDoors/bananium_door.rsi/closed.png and b/Resources/Textures/Structures/Doors/MineralDoors/bananium_door.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/MineralDoors/bananium_door.rsi/closing.png b/Resources/Textures/Structures/Doors/MineralDoors/bananium_door.rsi/closing.png index f9af31cbea..a46e1c16c3 100644 Binary files a/Resources/Textures/Structures/Doors/MineralDoors/bananium_door.rsi/closing.png and b/Resources/Textures/Structures/Doors/MineralDoors/bananium_door.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/MineralDoors/bananium_door.rsi/meta.json b/Resources/Textures/Structures/Doors/MineralDoors/bananium_door.rsi/meta.json index 9659db663f..56dc2858d7 100644 --- a/Resources/Textures/Structures/Doors/MineralDoors/bananium_door.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/MineralDoors/bananium_door.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Doors/MineralDoors/bananium_door.rsi/open.png b/Resources/Textures/Structures/Doors/MineralDoors/bananium_door.rsi/open.png index c9947c909f..1c17663360 100644 Binary files a/Resources/Textures/Structures/Doors/MineralDoors/bananium_door.rsi/open.png and b/Resources/Textures/Structures/Doors/MineralDoors/bananium_door.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/MineralDoors/bananium_door.rsi/opening.png b/Resources/Textures/Structures/Doors/MineralDoors/bananium_door.rsi/opening.png index 9764a52714..ce2221510c 100644 Binary files a/Resources/Textures/Structures/Doors/MineralDoors/bananium_door.rsi/opening.png and b/Resources/Textures/Structures/Doors/MineralDoors/bananium_door.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/MineralDoors/wood_door.rsi/closed.png b/Resources/Textures/Structures/Doors/MineralDoors/wood_door.rsi/closed.png index 79d97485fd..9053014c7f 100644 Binary files a/Resources/Textures/Structures/Doors/MineralDoors/wood_door.rsi/closed.png and b/Resources/Textures/Structures/Doors/MineralDoors/wood_door.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/MineralDoors/wood_door.rsi/closing.png b/Resources/Textures/Structures/Doors/MineralDoors/wood_door.rsi/closing.png index 90e0ebcb77..cc7b403068 100644 Binary files a/Resources/Textures/Structures/Doors/MineralDoors/wood_door.rsi/closing.png and b/Resources/Textures/Structures/Doors/MineralDoors/wood_door.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/MineralDoors/wood_door.rsi/meta.json b/Resources/Textures/Structures/Doors/MineralDoors/wood_door.rsi/meta.json index e8abf236b6..65c40bbe30 100644 --- a/Resources/Textures/Structures/Doors/MineralDoors/wood_door.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/MineralDoors/wood_door.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from Tgstation https://github.com/tgstation/tgstation/commit/a5eaa18d2192ef9dd7c8d5b8f4ff22bcf304cdd1#diff-4713a9070dd0da77d2f0932685db4d445073695edb05bb49ff96240cbe355036", + "license": "CC-BY-SA-4.0", + "copyright": "Made by @gersoon458", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Doors/MineralDoors/wood_door.rsi/open.png b/Resources/Textures/Structures/Doors/MineralDoors/wood_door.rsi/open.png index 994ea02587..baa9a94355 100644 Binary files a/Resources/Textures/Structures/Doors/MineralDoors/wood_door.rsi/open.png and b/Resources/Textures/Structures/Doors/MineralDoors/wood_door.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/MineralDoors/wood_door.rsi/opening.png b/Resources/Textures/Structures/Doors/MineralDoors/wood_door.rsi/opening.png index 138d9f7250..cb3e9e1eb4 100644 Binary files a/Resources/Textures/Structures/Doors/MineralDoors/wood_door.rsi/opening.png and b/Resources/Textures/Structures/Doors/MineralDoors/wood_door.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/secret_door.rsi/assembly.png b/Resources/Textures/Structures/Doors/secret_door.rsi/assembly.png index 1a84e526a4..e872d82c5d 100644 Binary files a/Resources/Textures/Structures/Doors/secret_door.rsi/assembly.png and b/Resources/Textures/Structures/Doors/secret_door.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/secret_door.rsi/closed.png b/Resources/Textures/Structures/Doors/secret_door.rsi/closed.png index 0f60f5243c..198151d903 100644 Binary files a/Resources/Textures/Structures/Doors/secret_door.rsi/closed.png and b/Resources/Textures/Structures/Doors/secret_door.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/secret_door.rsi/closing.png b/Resources/Textures/Structures/Doors/secret_door.rsi/closing.png index 9dd42badab..96bba25801 100644 Binary files a/Resources/Textures/Structures/Doors/secret_door.rsi/closing.png and b/Resources/Textures/Structures/Doors/secret_door.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/secret_door.rsi/meta.json b/Resources/Textures/Structures/Doors/secret_door.rsi/meta.json index c1f0d5e09e..4b4a274ed0 100644 --- a/Resources/Textures/Structures/Doors/secret_door.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/secret_door.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by Nimfar11 (GitHub) for Space Station 14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -24,12 +24,12 @@ "directions": 1, "delays": [ [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 ] ] }, @@ -47,12 +47,12 @@ "directions": 1, "delays": [ [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 ] ] } diff --git a/Resources/Textures/Structures/Doors/secret_door.rsi/open.png b/Resources/Textures/Structures/Doors/secret_door.rsi/open.png index 5f78166d8c..7ca06de1ed 100644 Binary files a/Resources/Textures/Structures/Doors/secret_door.rsi/open.png and b/Resources/Textures/Structures/Doors/secret_door.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/secret_door.rsi/opening.png b/Resources/Textures/Structures/Doors/secret_door.rsi/opening.png index 127a10b53d..861f6fbbc3 100644 Binary files a/Resources/Textures/Structures/Doors/secret_door.rsi/opening.png and b/Resources/Textures/Structures/Doors/secret_door.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Furniture/Altars/Cults/bananium.rsi/full.png b/Resources/Textures/Structures/Furniture/Altars/Cults/bananium.rsi/full.png index 2974d3f679..be588c81af 100644 Binary files a/Resources/Textures/Structures/Furniture/Altars/Cults/bananium.rsi/full.png and b/Resources/Textures/Structures/Furniture/Altars/Cults/bananium.rsi/full.png differ diff --git a/Resources/Textures/Structures/Furniture/Altars/Cults/bananium.rsi/meta.json b/Resources/Textures/Structures/Furniture/Altars/Cults/bananium.rsi/meta.json index d1b9d3df6b..e01dae89f2 100644 --- a/Resources/Textures/Structures/Furniture/Altars/Cults/bananium.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/Altars/Cults/bananium.rsi/meta.json @@ -4,8 +4,8 @@ "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka", "states": [ { "name": "full" diff --git a/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/full.png b/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/full.png index 1b774e0575..ea0772fd14 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/full.png and b/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/full.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/meta.json b/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/meta.json index 0ebc40b814..215b09c017 100644 --- a/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/Tables/carpet.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/blob/0b3ab17dbad632ddf738b63900ef8df1926bba47/icons/obj/tables.dmi", + "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/0b3ab17dbad632ddf738b63900ef8df1926bba47/icons/obj/tables.dmi and edited by @gersoon458", "states": [ { "name": "full", diff --git a/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_0.png b/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_0.png index f57395c659..10ade24371 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_0.png and b/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_0.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_1.png b/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_1.png index f3631cfc0e..0a45f1126f 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_1.png and b/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_1.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_2.png b/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_2.png index f57395c659..10ade24371 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_2.png and b/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_2.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_3.png b/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_3.png index f3631cfc0e..0a45f1126f 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_3.png and b/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_3.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_4.png b/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_4.png index a8d469a32f..31af0f0c5f 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_4.png and b/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_4.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_5.png b/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_5.png index 6cbcfa1bef..e58f5b5fcf 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_5.png and b/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_5.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_6.png b/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_6.png index a8d469a32f..31af0f0c5f 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_6.png and b/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_6.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_7.png b/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_7.png index 29bd4db74b..1a7600a76e 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_7.png and b/Resources/Textures/Structures/Furniture/Tables/carpet.rsi/state_7.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/full.png b/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/full.png index dc0a62e2c0..12066a6421 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/full.png and b/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/full.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/meta.json b/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/meta.json index 06de008fe0..d013eb2dfb 100644 --- a/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Sprite by Peptide based on wooden table", + "license": "CC-BY-SA-4.0", + "copyright": "Sprite by Peptide based on wooden table and edited by @gersoon458", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_0.png b/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_0.png index 82c6187204..61c6e99762 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_0.png and b/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_0.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_1.png b/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_1.png index 1c8447cb3b..6b0e0dde7d 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_1.png and b/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_1.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_2.png b/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_2.png index 0f50c78e60..05b2fd5dae 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_2.png and b/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_2.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_3.png b/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_3.png index 1c8447cb3b..2c1f4a1550 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_3.png and b/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_3.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_4.png b/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_4.png index 54f65dc055..68abc00e1f 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_4.png and b/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_4.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_5.png b/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_5.png index 5764e73763..a3dd9d17d6 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_5.png and b/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_5.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_6.png b/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_6.png index 54f65dc055..c9f8349688 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_6.png and b/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_6.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_7.png b/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_7.png index bd7ef11086..8630a278db 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_7.png and b/Resources/Textures/Structures/Furniture/Tables/counterwood.rsi/state_7.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/frame.rsi/full.png b/Resources/Textures/Structures/Furniture/Tables/frame.rsi/full.png index 2af9b7ff1b..4eed0b0b08 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/frame.rsi/full.png and b/Resources/Textures/Structures/Furniture/Tables/frame.rsi/full.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/frame.rsi/meta.json b/Resources/Textures/Structures/Furniture/Tables/frame.rsi/meta.json index 0ebc40b814..b20018c9da 100644 --- a/Resources/Textures/Structures/Furniture/Tables/frame.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/Tables/frame.rsi/meta.json @@ -4,8 +4,8 @@ "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/0b3ab17dbad632ddf738b63900ef8df1926bba47/icons/obj/tables.dmi", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "states": [ { "name": "full", diff --git a/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_0.png b/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_0.png index 2ba1f779a2..b0eb81d2c9 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_0.png and b/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_0.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_1.png b/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_1.png index 27684dc258..2a982fa394 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_1.png and b/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_1.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_2.png b/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_2.png index 2ba1f779a2..b0eb81d2c9 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_2.png and b/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_2.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_3.png b/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_3.png index 27684dc258..2a982fa394 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_3.png and b/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_3.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_4.png b/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_4.png index f2df00c177..cc0ad2cf1c 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_4.png and b/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_4.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_5.png b/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_5.png index 682b8d26e1..47e94567e7 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_5.png and b/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_5.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_6.png b/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_6.png index f2df00c177..cc0ad2cf1c 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_6.png and b/Resources/Textures/Structures/Furniture/Tables/frame.rsi/state_6.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/generic.rsi/full.png b/Resources/Textures/Structures/Furniture/Tables/generic.rsi/full.png index 41b2c199d1..f1af4a09e4 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/generic.rsi/full.png and b/Resources/Textures/Structures/Furniture/Tables/generic.rsi/full.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/generic.rsi/meta.json b/Resources/Textures/Structures/Furniture/Tables/generic.rsi/meta.json index 0ebc40b814..b20018c9da 100644 --- a/Resources/Textures/Structures/Furniture/Tables/generic.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/Tables/generic.rsi/meta.json @@ -4,8 +4,8 @@ "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/0b3ab17dbad632ddf738b63900ef8df1926bba47/icons/obj/tables.dmi", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "states": [ { "name": "full", diff --git a/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_0.png b/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_0.png index 47ab5fc187..9e50a5c8ce 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_0.png and b/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_0.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_1.png b/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_1.png index 3e78a2531b..9b3544b36c 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_1.png and b/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_1.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_2.png b/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_2.png index 47ab5fc187..9e50a5c8ce 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_2.png and b/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_2.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_3.png b/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_3.png index 3e78a2531b..9b3544b36c 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_3.png and b/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_3.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_4.png b/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_4.png index f4f9168b07..b3d91efd76 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_4.png and b/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_4.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_5.png b/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_5.png index 0046d10029..9c6be8485b 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_5.png and b/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_5.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_6.png b/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_6.png index f4f9168b07..b3d91efd76 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_6.png and b/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_6.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_7.png b/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_7.png index 165f578dc0..ec0803e869 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_7.png and b/Resources/Textures/Structures/Furniture/Tables/generic.rsi/state_7.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/glass.rsi/full.png b/Resources/Textures/Structures/Furniture/Tables/glass.rsi/full.png index 4c394c4650..cbcbd3a3b1 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/glass.rsi/full.png and b/Resources/Textures/Structures/Furniture/Tables/glass.rsi/full.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/glass.rsi/meta.json b/Resources/Textures/Structures/Furniture/Tables/glass.rsi/meta.json index 0ebc40b814..b20018c9da 100644 --- a/Resources/Textures/Structures/Furniture/Tables/glass.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/Tables/glass.rsi/meta.json @@ -4,8 +4,8 @@ "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/0b3ab17dbad632ddf738b63900ef8df1926bba47/icons/obj/tables.dmi", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "states": [ { "name": "full", diff --git a/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_0.png b/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_0.png index 2ed3dbb4c0..d8d134f0cf 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_0.png and b/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_0.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_1.png b/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_1.png index f63429f102..4d979a5381 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_1.png and b/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_1.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_2.png b/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_2.png index 2ed3dbb4c0..d8d134f0cf 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_2.png and b/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_2.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_3.png b/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_3.png index f63429f102..4d979a5381 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_3.png and b/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_3.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_4.png b/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_4.png index 71d87be2d1..7ba52d1dd5 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_4.png and b/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_4.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_5.png b/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_5.png index 74794bbf34..16c34ffa59 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_5.png and b/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_5.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_6.png b/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_6.png index 71d87be2d1..7ba52d1dd5 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_6.png and b/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_6.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_7.png b/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_7.png index ecdf387b8f..c2e924aaaf 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_7.png and b/Resources/Textures/Structures/Furniture/Tables/glass.rsi/state_7.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/full.png b/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/full.png index 7345eb6591..7f999c5233 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/full.png and b/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/full.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/meta.json b/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/meta.json index 0ebc40b814..b20018c9da 100644 --- a/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/meta.json @@ -4,8 +4,8 @@ "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/0b3ab17dbad632ddf738b63900ef8df1926bba47/icons/obj/tables.dmi", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "states": [ { "name": "full", diff --git a/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_0.png b/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_0.png index a8791e01c1..5ff4a7ceac 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_0.png and b/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_0.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_1.png b/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_1.png index 4e04182a05..dab25bc1cd 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_1.png and b/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_1.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_2.png b/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_2.png index a8791e01c1..5ff4a7ceac 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_2.png and b/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_2.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_3.png b/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_3.png index 4e04182a05..dab25bc1cd 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_3.png and b/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_3.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_4.png b/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_4.png index 230838bfc6..34d673b2ea 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_4.png and b/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_4.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_5.png b/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_5.png index 2da0cebb25..428050b93c 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_5.png and b/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_5.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_6.png b/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_6.png index 230838bfc6..34d673b2ea 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_6.png and b/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_6.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_7.png b/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_7.png index 82880b87ad..aab0092a56 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_7.png and b/Resources/Textures/Structures/Furniture/Tables/plasma.rsi/state_7.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/full.png b/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/full.png index be30ee84c5..c8fe53dcef 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/full.png and b/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/full.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/meta.json b/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/meta.json index 0ebc40b814..b20018c9da 100644 --- a/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/meta.json @@ -4,8 +4,8 @@ "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/0b3ab17dbad632ddf738b63900ef8df1926bba47/icons/obj/tables.dmi", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "states": [ { "name": "full", diff --git a/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_0.png b/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_0.png index 862aff9338..45a10476b9 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_0.png and b/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_0.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_1.png b/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_1.png index 8b97929d64..4a94a4dc54 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_1.png and b/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_1.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_2.png b/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_2.png index 862aff9338..45a10476b9 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_2.png and b/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_2.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_3.png b/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_3.png index 8b97929d64..4a94a4dc54 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_3.png and b/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_3.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_4.png b/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_4.png index 57fdbb30d7..324984a22d 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_4.png and b/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_4.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_5.png b/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_5.png index b3231dc972..320f94b8d0 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_5.png and b/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_5.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_6.png b/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_6.png index 57fdbb30d7..324984a22d 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_6.png and b/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_6.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_7.png b/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_7.png index 495a1103fb..e0c96576ed 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_7.png and b/Resources/Textures/Structures/Furniture/Tables/r_glass.rsi/state_7.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/full.png b/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/full.png index 19dec0a984..2f5453a7b1 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/full.png and b/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/full.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/meta.json b/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/meta.json index 0ebc40b814..b20018c9da 100644 --- a/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/meta.json @@ -4,8 +4,8 @@ "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/0b3ab17dbad632ddf738b63900ef8df1926bba47/icons/obj/tables.dmi", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "states": [ { "name": "full", diff --git a/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_0.png b/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_0.png index 1e061724e1..404478af38 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_0.png and b/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_0.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_1.png b/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_1.png index 428ae7c3e1..c2d558e91e 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_1.png and b/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_1.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_2.png b/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_2.png index 1e061724e1..404478af38 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_2.png and b/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_2.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_3.png b/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_3.png index 428ae7c3e1..c2d558e91e 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_3.png and b/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_3.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_4.png b/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_4.png index a822918179..3c95811c3f 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_4.png and b/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_4.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_5.png b/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_5.png index f57b63ecac..52dd2156eb 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_5.png and b/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_5.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_6.png b/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_6.png index a822918179..3c95811c3f 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_6.png and b/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_6.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_7.png b/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_7.png index 52bb74a0da..ec0803e869 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_7.png and b/Resources/Textures/Structures/Furniture/Tables/reinforced.rsi/state_7.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/wood.rsi/full.png b/Resources/Textures/Structures/Furniture/Tables/wood.rsi/full.png index e4c06d9d8f..f530101571 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/wood.rsi/full.png and b/Resources/Textures/Structures/Furniture/Tables/wood.rsi/full.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/wood.rsi/meta.json b/Resources/Textures/Structures/Furniture/Tables/wood.rsi/meta.json index 667cf5efc1..86fc7ede2c 100644 --- a/Resources/Textures/Structures/Furniture/Tables/wood.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/Tables/wood.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/a138859aec54b20dac65eb76e94e9db1b2202f55 and modified by Swept", + "license": "CC-BY-SA-4.0", + "copyright": "WD EDIT", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_0.png b/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_0.png index 1e93bd9a76..bb0f4224a0 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_0.png and b/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_0.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_1.png b/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_1.png index 7e03504066..8a6f7baebe 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_1.png and b/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_1.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_2.png b/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_2.png index 1e93bd9a76..bb0f4224a0 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_2.png and b/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_2.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_3.png b/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_3.png index 7e03504066..8a6f7baebe 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_3.png and b/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_3.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_4.png b/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_4.png index 9421e66126..7bceedeceb 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_4.png and b/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_4.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_5.png b/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_5.png index 679bcc34ae..74e8bba2aa 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_5.png and b/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_5.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_6.png b/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_6.png index 9421e66126..7bceedeceb 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_6.png and b/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_6.png differ diff --git a/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_7.png b/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_7.png index 87f2e5da7c..cdb9916cca 100644 Binary files a/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_7.png and b/Resources/Textures/Structures/Furniture/Tables/wood.rsi/state_7.png differ diff --git a/Resources/Textures/Structures/Furniture/bookshelf.rsi/base.png b/Resources/Textures/Structures/Furniture/bookshelf.rsi/base.png index 25c64415d8..ddcf2db336 100644 Binary files a/Resources/Textures/Structures/Furniture/bookshelf.rsi/base.png and b/Resources/Textures/Structures/Furniture/bookshelf.rsi/base.png differ diff --git a/Resources/Textures/Structures/Furniture/bookshelf.rsi/book-1.png b/Resources/Textures/Structures/Furniture/bookshelf.rsi/book-1.png index 19dc08d236..070eb14ca8 100644 Binary files a/Resources/Textures/Structures/Furniture/bookshelf.rsi/book-1.png and b/Resources/Textures/Structures/Furniture/bookshelf.rsi/book-1.png differ diff --git a/Resources/Textures/Structures/Furniture/bookshelf.rsi/book-2.png b/Resources/Textures/Structures/Furniture/bookshelf.rsi/book-2.png index 5d7b1e91bf..e1988246b1 100644 Binary files a/Resources/Textures/Structures/Furniture/bookshelf.rsi/book-2.png and b/Resources/Textures/Structures/Furniture/bookshelf.rsi/book-2.png differ diff --git a/Resources/Textures/Structures/Furniture/bookshelf.rsi/book-3.png b/Resources/Textures/Structures/Furniture/bookshelf.rsi/book-3.png index ca1d42fff2..b75ab3368c 100644 Binary files a/Resources/Textures/Structures/Furniture/bookshelf.rsi/book-3.png and b/Resources/Textures/Structures/Furniture/bookshelf.rsi/book-3.png differ diff --git a/Resources/Textures/Structures/Furniture/bookshelf.rsi/book-4.png b/Resources/Textures/Structures/Furniture/bookshelf.rsi/book-4.png index bad2758b34..4000078010 100644 Binary files a/Resources/Textures/Structures/Furniture/bookshelf.rsi/book-4.png and b/Resources/Textures/Structures/Furniture/bookshelf.rsi/book-4.png differ diff --git a/Resources/Textures/Structures/Furniture/bookshelf.rsi/book-5.png b/Resources/Textures/Structures/Furniture/bookshelf.rsi/book-5.png index a087ec4e40..9c861628b0 100644 Binary files a/Resources/Textures/Structures/Furniture/bookshelf.rsi/book-5.png and b/Resources/Textures/Structures/Furniture/bookshelf.rsi/book-5.png differ diff --git a/Resources/Textures/Structures/Furniture/bookshelf.rsi/empty.png b/Resources/Textures/Structures/Furniture/bookshelf.rsi/empty.png index 0eecd1a48a..0745019b29 100644 Binary files a/Resources/Textures/Structures/Furniture/bookshelf.rsi/empty.png and b/Resources/Textures/Structures/Furniture/bookshelf.rsi/empty.png differ diff --git a/Resources/Textures/Structures/Furniture/bookshelf.rsi/meta.json b/Resources/Textures/Structures/Furniture/bookshelf.rsi/meta.json index 4eb86c8056..36b9f54246 100644 --- a/Resources/Textures/Structures/Furniture/bookshelf.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/bookshelf.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/f777c8ddf7a529b002df17909566d5d93b8ad201 and edited by Kit0vras (github)", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/f777c8ddf7a529b002df17909566d5d93b8ad201 and edited by Gersoon", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Furniture/bookshelf.rsi/smooth.png b/Resources/Textures/Structures/Furniture/bookshelf.rsi/smooth.png index 3b7da33eb9..7981de0534 100644 Binary files a/Resources/Textures/Structures/Furniture/bookshelf.rsi/smooth.png and b/Resources/Textures/Structures/Furniture/bookshelf.rsi/smooth.png differ diff --git a/Resources/Textures/Structures/Furniture/chairs.rsi/meta.json b/Resources/Textures/Structures/Furniture/chairs.rsi/meta.json index cbfc417444..67f4612aa8 100644 --- a/Resources/Textures/Structures/Furniture/chairs.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/chairs.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/11402f6ae62facc2e8bcfa1f8ef5353b26663278, meat.png is CC0-1.0 by EmoGarbage404 (github) for Space Station 14. chair.png and its derrivatives taken from shiptest at commit https://github.com/shiptest-ss13/Shiptest/commit/f761c784812e827960a66cd10aac17ebc6edfac3, palette for chair.png, steel-bench.png and chair-greyscale.png taken from paradise equivalent chairs at commit https://github.com/ParadiseSS13/Paradise/commit/5ce5a66c814c4a60118d24885389357fd0240002, steel by SonicHDC, brass chair.png taken from tgstation at https://github.com/tgstation/tgstation/blob/b7e7779c19b76449c290aaf2150fb93545b1a79a/icons/obj/chairs.dmi, wooden bench by Ko4erga (discord)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/11402f6ae62facc2e8bcfa1f8ef5353b26663278, meat.png is CC0-1.0 by EmoGarbage404 (github) for Space Station 14. chair.png and its derrivatives taken from shiptest at commit https://github.com/shiptest-ss13/Shiptest/commit/f761c784812e827960a66cd10aac17ebc6edfac3, palette for chair.png, steel-bench.png and chair-greyscale.png taken from paradise equivalent chairs at commit https://github.com/ParadiseSS13/Paradise/commit/5ce5a66c814c4a60118d24885389357fd0240002, steel by SonicHDC, brass chair.png taken from tgstation at https://github.com/tgstation/tgstation/blob/b7e7779c19b76449c290aaf2150fb93545b1a79a/icons/obj/chairs.dmi, wooden bench by Gersoon", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Furniture/chairs.rsi/wooden.png b/Resources/Textures/Structures/Furniture/chairs.rsi/wooden.png index 5f17a43e64..2697951a39 100644 Binary files a/Resources/Textures/Structures/Furniture/chairs.rsi/wooden.png and b/Resources/Textures/Structures/Furniture/chairs.rsi/wooden.png differ diff --git a/Resources/Textures/Structures/Furniture/furniture.rsi/dresser.png b/Resources/Textures/Structures/Furniture/furniture.rsi/dresser.png index 20ce5dc0e9..ef30e44439 100644 Binary files a/Resources/Textures/Structures/Furniture/furniture.rsi/dresser.png and b/Resources/Textures/Structures/Furniture/furniture.rsi/dresser.png differ diff --git a/Resources/Textures/Structures/Furniture/furniture.rsi/meta.json b/Resources/Textures/Structures/Furniture/furniture.rsi/meta.json index 5afc1b2b0f..6912994f3c 100644 --- a/Resources/Textures/Structures/Furniture/furniture.rsi/meta.json +++ b/Resources/Textures/Structures/Furniture/furniture.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/d5cb4288ec5f7cb9fb5b6f6e798f4c64cd82cd09, Taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/9d7ff729b6b89eee0b3d750327f9fbaff4aeb045, Taken from https://github.com/ParadiseSS13/Paradise", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d5cb4288ec5f7cb9fb5b6f6e798f4c64cd82cd09, Taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/9d7ff729b6b89eee0b3d750327f9fbaff4aeb045, Taken from https://github.com/ParadiseSS13/Paradise. Dresser made by Gersoon", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Machines/artifact_crusher.rsi/icon.png b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/icon.png new file mode 100644 index 0000000000..af5f78e368 Binary files /dev/null and b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Machines/artifact_crusher.rsi/meta.json b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/meta.json index dc0d23c539..279bc73ec7 100644 --- a/Resources/Textures/Structures/Machines/artifact_crusher.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/meta.json @@ -7,6 +7,9 @@ "y": 64 }, "states": [ + { + "name": "icon" + }, { "name": "glass" }, diff --git a/Resources/Textures/Structures/Machines/circuit_imprinter_hypercon.rsi/building.png b/Resources/Textures/Structures/Machines/circuit_imprinter_hypercon.rsi/building.png new file mode 100644 index 0000000000..7987532f39 Binary files /dev/null and b/Resources/Textures/Structures/Machines/circuit_imprinter_hypercon.rsi/building.png differ diff --git a/Resources/Textures/Structures/Machines/circuit_imprinter_hypercon.rsi/icon.png b/Resources/Textures/Structures/Machines/circuit_imprinter_hypercon.rsi/icon.png new file mode 100644 index 0000000000..e56878a7ad Binary files /dev/null and b/Resources/Textures/Structures/Machines/circuit_imprinter_hypercon.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Machines/circuit_imprinter_hypercon.rsi/meta.json b/Resources/Textures/Structures/Machines/circuit_imprinter_hypercon.rsi/meta.json new file mode 100644 index 0000000000..faa9a362b4 --- /dev/null +++ b/Resources/Textures/Structures/Machines/circuit_imprinter_hypercon.rsi/meta.json @@ -0,0 +1,52 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Piksqu for ss14, based on the circuit imprinter sprite taken from tgstation at https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "panel" + }, + { + "name": "unlit" + }, + { + "name": "building", + "delays": [ + [ + 0.16, + 0.16, + 0.16, + 0.16, + 0.16, + 0.16, + 0.16, + 0.16, + 0.16, + 0.16, + 0.16, + 0.16, + 0.16, + 0.16, + 0.16, + 0.16, + 0.16, + 0.16, + 0.16, + 0.16, + 0.16, + 0.16, + 0.16, + 0.16, + 0.18 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Machines/circuit_imprinter_hypercon.rsi/panel.png b/Resources/Textures/Structures/Machines/circuit_imprinter_hypercon.rsi/panel.png new file mode 100644 index 0000000000..e9c369c734 Binary files /dev/null and b/Resources/Textures/Structures/Machines/circuit_imprinter_hypercon.rsi/panel.png differ diff --git a/Resources/Textures/Structures/Machines/circuit_imprinter_hypercon.rsi/unlit.png b/Resources/Textures/Structures/Machines/circuit_imprinter_hypercon.rsi/unlit.png new file mode 100644 index 0000000000..9a9e240fbc Binary files /dev/null and b/Resources/Textures/Structures/Machines/circuit_imprinter_hypercon.rsi/unlit.png differ diff --git a/Resources/Textures/Structures/Machines/computers.rsi/meta.json b/Resources/Textures/Structures/Machines/computers.rsi/meta.json index b6741b195d..e769db399c 100644 --- a/Resources/Textures/Structures/Machines/computers.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/computers.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/bd6873fd4dd6a61d7e46f1d75cd4d90f64c40894. comm_syndie made by Veritius, based on comm.", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bd6873fd4dd6a61d7e46f1d75cd4d90f64c40894. comm_syndie made by Veritius, based on comm. Television edited by Gersoon", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Machines/computers.rsi/television.png b/Resources/Textures/Structures/Machines/computers.rsi/television.png index 988d1d39ea..ed285d0397 100644 Binary files a/Resources/Textures/Structures/Machines/computers.rsi/television.png and b/Resources/Textures/Structures/Machines/computers.rsi/television.png differ diff --git a/Resources/Textures/Structures/Machines/fax_machine.rsi/inserting_hamster.png b/Resources/Textures/Structures/Machines/fax_machine.rsi/inserting_hamster.png new file mode 100644 index 0000000000..5f14e3013f Binary files /dev/null and b/Resources/Textures/Structures/Machines/fax_machine.rsi/inserting_hamster.png differ diff --git a/Resources/Textures/Structures/Machines/fax_machine.rsi/inserting_mothroach.png b/Resources/Textures/Structures/Machines/fax_machine.rsi/inserting_mothroach.png new file mode 100644 index 0000000000..d034322697 Binary files /dev/null and b/Resources/Textures/Structures/Machines/fax_machine.rsi/inserting_mothroach.png differ diff --git a/Resources/Textures/Structures/Machines/fax_machine.rsi/inserting_mouse.png b/Resources/Textures/Structures/Machines/fax_machine.rsi/inserting_mouse.png new file mode 100644 index 0000000000..7fb87053f3 Binary files /dev/null and b/Resources/Textures/Structures/Machines/fax_machine.rsi/inserting_mouse.png differ diff --git a/Resources/Textures/Structures/Machines/fax_machine.rsi/meta.json b/Resources/Textures/Structures/Machines/fax_machine.rsi/meta.json index 1a8856301d..00681ca6da 100644 --- a/Resources/Textures/Structures/Machines/fax_machine.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/fax_machine.rsi/meta.json @@ -40,6 +40,63 @@ ] ] }, + { + "name": "inserting_hamster", + "delays": [ + [ + 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": "inserting_mothroach", + "delays": [ + [ + 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": "inserting_mouse", + "delays": [ + [ + 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": "printing", "delays": [ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/draining.png b/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/draining.png index d69c34fe57..87ce5806aa 100644 Binary files a/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/draining.png and b/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/draining.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/icon-running.png b/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/icon-running.png index c145e2993e..2273bfc9db 100644 Binary files a/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/icon-running.png and b/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/icon-running.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/icon.png b/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/icon.png index 06cf190185..992a4af0c5 100644 Binary files a/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/icon.png and b/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/meta.json b/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/meta.json index 82a7dfe0cb..29b58b49c0 100644 --- a/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/meta.json +++ b/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.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/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a, and modified a bit by Rane", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 @@ -14,13 +14,23 @@ "name": "icon-running", "delays": [ [ - 0.2, - 0.2 + 0.1, + 0.1, + 0.1, + 0.1 ] ] }, { - "name": "unlit" + "name": "unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] }, { "name": "unlit-full" diff --git a/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/unlit-full.png b/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/unlit-full.png index b688c5b73a..832d466993 100644 Binary files a/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/unlit-full.png and b/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/unlit-full.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/unlit.png b/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/unlit.png index 00695432c2..faf2e26cd8 100644 Binary files a/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/unlit.png and b/Resources/Textures/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/unlit.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/Bend-inhand-left.png b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/Bend-inhand-left.png new file mode 100644 index 0000000000..f4f60cdd17 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/Bend-inhand-left.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/Bend-inhand-right.png b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/Bend-inhand-right.png new file mode 100644 index 0000000000..dfd245221f Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/Bend-inhand-right.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/Fourway-inhand-left.png b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/Fourway-inhand-left.png new file mode 100644 index 0000000000..4da2f458e8 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/Fourway-inhand-left.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/Fourway-inhand-right.png b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/Fourway-inhand-right.png new file mode 100644 index 0000000000..a59a797165 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/Fourway-inhand-right.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/TJunction-inhand-left.png b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/TJunction-inhand-left.png new file mode 100644 index 0000000000..8b14c9117a Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/TJunction-inhand-left.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/TJunction-inhand-right.png b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/TJunction-inhand-right.png new file mode 100644 index 0000000000..828920b400 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/TJunction-inhand-right.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/inhand-left.png b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/inhand-left.png new file mode 100644 index 0000000000..7ca777a2e9 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/inhand-left.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/inhand-right.png b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/inhand-right.png new file mode 100644 index 0000000000..6c8c55a515 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/inhand-right.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/meta.json b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/meta.json index ae4ff9b12d..aecb62aee5 100644 --- a/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/meta.json +++ b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/meta.json @@ -5,8 +5,40 @@ "y":32 }, "license":"CC-BY-SA-3.0", - "copyright":"pipeTrinaryConnectors made by Menshin for SS14 based on pipeTJunction, the rest is taken from https://github.com/tgstation/tgstation at commit 57cd1d59ca019dd0e7811ac451f295f818e573da", + "copyright":"Inhand sprites by alzore_(discord) for SS14. pipeTrinaryConnectors made by Menshin for SS14 based on pipeTJunction, the rest is taken from https://github.com/tgstation/tgstation at commit 57cd1d59ca019dd0e7811ac451f295f818e573da.", "states":[ + { + "name": "inhand-left", + "directions":4 + }, + { + "name":"inhand-right", + "directions":4 + }, + { + "name": "Bend-inhand-left", + "directions":4 + }, + { + "name":"Bend-inhand-right", + "directions":4 + }, + { + "name": "TJunction-inhand-left", + "directions":4 + }, + { + "name":"TJunction-inhand-right", + "directions":4 + }, + { + "name": "Fourway-inhand-left", + "directions":4 + }, + { + "name":"Fourway-inhand-right", + "directions":4 + }, { "name":"pipeBroken", "directions":1 @@ -38,6 +70,18 @@ { "name":"pipeTrinaryConnectors", "directions":4 + }, + { + "name":"storageStraight", + "directions":4 + }, + { + "name":"storageBend", + "directions":4 + }, + { + "name":"storageTJunction", + "directions":4 } ] } diff --git a/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/pipeBend.png b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/pipeBend.png index b6408718eb..cda379a65b 100644 Binary files a/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/pipeBend.png and b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/pipeBend.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/storageBend.png b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/storageBend.png new file mode 100644 index 0000000000..39ffe213ef Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/storageBend.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/storageStraight.png b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/storageStraight.png new file mode 100644 index 0000000000..715aeb5824 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/storageStraight.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/storageTJunction.png b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/storageTJunction.png new file mode 100644 index 0000000000..af8376a152 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/pipe.rsi/storageTJunction.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/meta.json b/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/meta.json index 6528705be2..2e06d04472 100644 --- a/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/meta.json +++ b/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/meta.json @@ -4,26 +4,31 @@ "x":32, "y":32 }, - "license":"CC-BY-SA-3.0", - "copyright":"Taken from https://github.com/ParadiseSS13/Paradise/", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "states":[ { - "name":"scrub_off" + "name":"scrub_off", + "directions": 4 }, { - "name":"scrub_welded" + "name":"scrub_welded", + "directions": 4 }, { "name":"scrub_on", - "delays": [[0.1, 0.1, 0.1, 0.1, 0.1]] + "directions": 4, + "delays": [[0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08], [0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08], [0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08], [0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08]] }, { "name": "scrub_purge", - "delays": [[0.1, 0.1, 0.1, 0.1, 0.1]] + "directions": 4, + "delays": [[0.2, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04], [0.2, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04], [0.2, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04], [0.2, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04]] }, { "name": "scrub_wide", - "delays": [[0.1, 0.1, 0.1, 0.1, 0.1, 0.1]] + "directions": 4, + "delays": [[0.2, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04], [0.2, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04], [0.2, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04], [0.2, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04]] } ] } diff --git a/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/scrub_off.png b/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/scrub_off.png index 9752342e2d..efc173d893 100644 Binary files a/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/scrub_off.png and b/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/scrub_off.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/scrub_on.png b/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/scrub_on.png index 5fcf53f314..9bc5d8c0bf 100644 Binary files a/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/scrub_on.png and b/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/scrub_on.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/scrub_purge.png b/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/scrub_purge.png index e0e3e44556..75ba6d6de0 100644 Binary files a/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/scrub_purge.png and b/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/scrub_purge.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/scrub_welded.png b/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/scrub_welded.png index b3a5445f74..96ab7b0825 100644 Binary files a/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/scrub_welded.png and b/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/scrub_welded.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/scrub_wide.png b/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/scrub_wide.png index a93f3259b8..087777a888 100644 Binary files a/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/scrub_wide.png and b/Resources/Textures/Structures/Piping/Atmospherics/scrubber.rsi/scrub_wide.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/meta.json b/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/meta.json index 16ab91ee5c..958ab1dcef 100644 --- a/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/meta.json +++ b/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/meta.json @@ -4,22 +4,26 @@ "x":32, "y":32 }, - "license":"CC-BY-SA-3.0", - "copyright":"Taken from https://github.com/ParadiseSS13/Paradise/", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "states":[ { - "name":"vent_off" + "name":"vent_off", + "directions" : 4 }, { - "name":"vent_welded" + "name":"vent_welded", + "directions" : 4 }, { "name":"vent_out", - "delays":[ [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] ] + "directions" : 4, + "delays":[ [ 0.08, 0.08, 0.08, 0.08 ], [ 0.08, 0.08, 0.08, 0.08 ], [ 0.08, 0.08, 0.08, 0.08 ], [ 0.08, 0.08, 0.08, 0.08 ] ] }, { "name":"vent_in", - "delays":[ [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] ] + "directions" : 4, + "delays":[ [ 0.08, 0.08, 0.08, 0.08 ], [ 0.08, 0.08, 0.08, 0.08 ], [ 0.08, 0.08, 0.08, 0.08 ], [ 0.08, 0.08, 0.08, 0.08 ] ] } ] } diff --git a/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/vent_in.png b/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/vent_in.png index 2a7787aa4b..cf1b050c02 100644 Binary files a/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/vent_in.png and b/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/vent_in.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/vent_off.png b/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/vent_off.png index e7634ef5a2..6208c59db7 100644 Binary files a/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/vent_off.png and b/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/vent_off.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/vent_out.png b/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/vent_out.png index 396d8fb0f9..e038706b0e 100644 Binary files a/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/vent_out.png and b/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/vent_out.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/vent_welded.png b/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/vent_welded.png index b00be657b6..b45ae1cb5f 100644 Binary files a/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/vent_welded.png and b/Resources/Textures/Structures/Piping/Atmospherics/vent.rsi/vent_welded.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/condisposal.png b/Resources/Textures/Structures/Piping/disposal.rsi/condisposal.png index e18913981b..4dfada706c 100644 Binary files a/Resources/Textures/Structures/Piping/disposal.rsi/condisposal.png and b/Resources/Textures/Structures/Piping/disposal.rsi/condisposal.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/conmailing.png b/Resources/Textures/Structures/Piping/disposal.rsi/conmailing.png index e1fa09bad3..0dfa469e0e 100644 Binary files a/Resources/Textures/Structures/Piping/disposal.rsi/conmailing.png and b/Resources/Textures/Structures/Piping/disposal.rsi/conmailing.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/disposal-charging.png b/Resources/Textures/Structures/Piping/disposal.rsi/disposal-charging.png index dffc305975..3d3839faf4 100644 Binary files a/Resources/Textures/Structures/Piping/disposal.rsi/disposal-charging.png and b/Resources/Textures/Structures/Piping/disposal.rsi/disposal-charging.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/disposal-flush.png b/Resources/Textures/Structures/Piping/disposal.rsi/disposal-flush.png index 851429cc89..aa1186005e 100644 Binary files a/Resources/Textures/Structures/Piping/disposal.rsi/disposal-flush.png and b/Resources/Textures/Structures/Piping/disposal.rsi/disposal-flush.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/disposal.png b/Resources/Textures/Structures/Piping/disposal.rsi/disposal.png index 5da3cdfffc..2f44be481a 100644 Binary files a/Resources/Textures/Structures/Piping/disposal.rsi/disposal.png and b/Resources/Textures/Structures/Piping/disposal.rsi/disposal.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/dispover-charge.png b/Resources/Textures/Structures/Piping/disposal.rsi/dispover-charge.png index 3bca7f02a6..32195973bb 100644 Binary files a/Resources/Textures/Structures/Piping/disposal.rsi/dispover-charge.png and b/Resources/Textures/Structures/Piping/disposal.rsi/dispover-charge.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/dispover-full.png b/Resources/Textures/Structures/Piping/disposal.rsi/dispover-full.png index 0a07c0a07e..d20e907766 100644 Binary files a/Resources/Textures/Structures/Piping/disposal.rsi/dispover-full.png and b/Resources/Textures/Structures/Piping/disposal.rsi/dispover-full.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/dispover-handle.png b/Resources/Textures/Structures/Piping/disposal.rsi/dispover-handle.png index 51bfc250a3..5b2077bb4c 100644 Binary files a/Resources/Textures/Structures/Piping/disposal.rsi/dispover-handle.png and b/Resources/Textures/Structures/Piping/disposal.rsi/dispover-handle.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/dispover-ready.png b/Resources/Textures/Structures/Piping/disposal.rsi/dispover-ready.png index 05e78f74ff..1dd29ead10 100644 Binary files a/Resources/Textures/Structures/Piping/disposal.rsi/dispover-ready.png and b/Resources/Textures/Structures/Piping/disposal.rsi/dispover-ready.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/mailing-charging.png b/Resources/Textures/Structures/Piping/disposal.rsi/mailing-charging.png index 0b0ae3554f..bec83a4c5c 100644 Binary files a/Resources/Textures/Structures/Piping/disposal.rsi/mailing-charging.png and b/Resources/Textures/Structures/Piping/disposal.rsi/mailing-charging.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/mailing-flush.png b/Resources/Textures/Structures/Piping/disposal.rsi/mailing-flush.png index 9470340c20..5cf4654016 100644 Binary files a/Resources/Textures/Structures/Piping/disposal.rsi/mailing-flush.png and b/Resources/Textures/Structures/Piping/disposal.rsi/mailing-flush.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/mailing.png b/Resources/Textures/Structures/Piping/disposal.rsi/mailing.png index 5a240b23a3..d51164e862 100644 Binary files a/Resources/Textures/Structures/Piping/disposal.rsi/mailing.png and b/Resources/Textures/Structures/Piping/disposal.rsi/mailing.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/mailover-handle.png b/Resources/Textures/Structures/Piping/disposal.rsi/mailover-handle.png index 5c0567922a..3141edecb7 100644 Binary files a/Resources/Textures/Structures/Piping/disposal.rsi/mailover-handle.png and b/Resources/Textures/Structures/Piping/disposal.rsi/mailover-handle.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/meta.json b/Resources/Textures/Structures/Piping/disposal.rsi/meta.json index c6b024e117..70f584357e 100644 --- a/Resources/Textures/Structures/Piping/disposal.rsi/meta.json +++ b/Resources/Textures/Structures/Piping/disposal.rsi/meta.json @@ -4,8 +4,8 @@ "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/blob/bbe32606902c90f5290b57d905a3f31b84dc6d7d/icons/obj/pipes/disposal.dmi and modified by DrSmugleaf. Signal router sprites based on normal router modified by deltanedas (github). disposal bins by EmoGarbage404 (github)", + "license": "CC-BY-SA-4.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/blob/bbe32606902c90f5290b57d905a3f31b84dc6d7d/icons/obj/pipes/disposal.dmi and modified by DrSmugleaf. Signal router sprites based on normal router modified by deltanedas (github). WD EDIT", "states": [ { "name": "condisposal", @@ -228,18 +228,15 @@ "directions": 1, "delays": [ [ - 0.066, - 0.066, - 0.066, - 0.066, - 0.066, - 0.066, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, 0.5, - 0.066, - 0.066, - 0.066, - 0.066, - 0.066 + 0.1, + 0.1, + 0.1 ] ] }, @@ -248,18 +245,15 @@ "directions": 1, "delays": [ [ - 0.066, - 0.066, - 0.066, - 0.066, - 0.066, - 0.066, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, 0.5, - 0.066, - 0.066, - 0.066, - 0.066, - 0.066 + 0.1, + 0.1, + 0.1 ] ] }, diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/control.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/control.png index 5f2255983d..2c1b6ff57c 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/control.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/control.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/control_critical.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/control_critical.png index 24de7e92b3..f7c9b3e3c2 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/control_critical.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/control_critical.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/control_fuck.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/control_fuck.png index 895ca15c49..388c6478d6 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/control_fuck.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/control_fuck.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/control_on.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/control_on.png index 3bfda8869c..0a991ff963 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/control_on.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/control_on.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/core.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/core.png index 36c0349b82..6110c84a84 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/core.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/core.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/core_strong.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/core_strong.png index a6a1f109d4..19707a8ad5 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/core_strong.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/core_strong.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/core_weak.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/core_weak.png index a8cc73bb9c..748de3ea91 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/core_weak.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/core_weak.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/meta.json b/Resources/Textures/Structures/Power/Generation/ame.rsi/meta.json index d63698143c..66284e5867 100644 --- a/Resources/Textures/Structures/Power/Generation/ame.rsi/meta.json +++ b/Resources/Textures/Structures/Power/Generation/ame.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/b440af09b52ba6bc5248e7934d148e991c928b07", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_0.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_0.png index cd62067877..a8fe6d1de2 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_0.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_0.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_1.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_1.png index 4fa79f44d4..3807a41c11 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_1.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_1.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_10.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_10.png index 8c6ab600e7..ee900bb3a6 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_10.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_10.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_11.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_11.png index 155f3ca3ec..d3ef87f444 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_11.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_11.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_12.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_12.png index 87a8784187..ce52c96d9b 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_12.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_12.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_13.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_13.png index fe6f214f17..f37b7c2e62 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_13.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_13.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_14.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_14.png index 6fad2a5c92..1016aabb5f 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_14.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_14.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_15.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_15.png index cd62067877..a8fe6d1de2 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_15.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_15.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_2.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_2.png index 7c558be6d1..53bcf694c3 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_2.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_2.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_3.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_3.png index 54c89f787a..4ac1325e8a 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_3.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_3.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_4.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_4.png index e9b362b9a4..1c07f92236 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_4.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_4.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_5.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_5.png index ac07397a5d..45014483b6 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_5.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_5.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_6.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_6.png index 960673f636..b56519ec71 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_6.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_6.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_7.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_7.png index 3a6884eb29..1c2b41eced 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_7.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_7.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_8.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_8.png index e91dd03b1b..00bef3f896 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_8.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_8.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_9.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_9.png index 9636902933..3009e25964 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_9.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/shield_9.png differ diff --git a/Resources/Textures/Structures/Power/Generation/ame.rsi/static.png b/Resources/Textures/Structures/Power/Generation/ame.rsi/static.png index de0e6db98d..2c1b6ff57c 100644 Binary files a/Resources/Textures/Structures/Power/Generation/ame.rsi/static.png and b/Resources/Textures/Structures/Power/Generation/ame.rsi/static.png differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/broken.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/broken.png index ded81ca75f..a12fca0425 100644 Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/broken.png and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/meta.json b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/meta.json index 0046666656..6ccde99909 100644 --- a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/meta.json +++ b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/meta.json @@ -1,7 +1,7 @@ { "version":1, - "license":"CC-BY-SA-3.0", - "copyright":"Taken from https://github.com/discordia-space/CEV-Eris/blob/d1e0161af146835f4fb79d21a6200caa9cc842d0/icons/obj/power.dmi and modified.", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size":{"x":32,"y":32}, "states": [ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/normal.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/normal.png index 1e1c620029..21026d8d78 100644 Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/normal.png and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/normal.png differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly.png index 6714f199e4..adb7bb3ff6 100644 Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly.png and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly.png differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker.png index 17abc02d28..c977194da2 100644 Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker.png and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker.png differ diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/static.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/static.png index 455a061b31..1bdecf5e91 100644 Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/static.png and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/static.png differ diff --git a/Resources/Textures/Structures/Power/apc.rsi/base.png b/Resources/Textures/Structures/Power/apc.rsi/base.png index ea2f17c062..29ac8757c2 100644 Binary files a/Resources/Textures/Structures/Power/apc.rsi/base.png and b/Resources/Textures/Structures/Power/apc.rsi/base.png differ diff --git a/Resources/Textures/Structures/Power/apc.rsi/broken.png b/Resources/Textures/Structures/Power/apc.rsi/broken.png index 4bcd2475cd..9b7c7089e6 100644 Binary files a/Resources/Textures/Structures/Power/apc.rsi/broken.png and b/Resources/Textures/Structures/Power/apc.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Power/apc.rsi/display-charging.png b/Resources/Textures/Structures/Power/apc.rsi/display-charging.png index d5e356d943..3afe0fb52a 100644 Binary files a/Resources/Textures/Structures/Power/apc.rsi/display-charging.png and b/Resources/Textures/Structures/Power/apc.rsi/display-charging.png differ diff --git a/Resources/Textures/Structures/Power/apc.rsi/display-full.png b/Resources/Textures/Structures/Power/apc.rsi/display-full.png index 4a9bd7ed64..cae98b8cdd 100644 Binary files a/Resources/Textures/Structures/Power/apc.rsi/display-full.png and b/Resources/Textures/Structures/Power/apc.rsi/display-full.png differ diff --git a/Resources/Textures/Structures/Power/apc.rsi/display-lack.png b/Resources/Textures/Structures/Power/apc.rsi/display-lack.png index d1d2df4858..7e4fda9c33 100644 Binary files a/Resources/Textures/Structures/Power/apc.rsi/display-lack.png and b/Resources/Textures/Structures/Power/apc.rsi/display-lack.png differ diff --git a/Resources/Textures/Structures/Power/apc.rsi/display-remote.png b/Resources/Textures/Structures/Power/apc.rsi/display-remote.png index 07265ab67d..c57bced44f 100644 Binary files a/Resources/Textures/Structures/Power/apc.rsi/display-remote.png and b/Resources/Textures/Structures/Power/apc.rsi/display-remote.png differ diff --git a/Resources/Textures/Structures/Power/apc.rsi/emag-unlit.png b/Resources/Textures/Structures/Power/apc.rsi/emag-unlit.png index 77c2518e63..a1d8ca9da9 100644 Binary files a/Resources/Textures/Structures/Power/apc.rsi/emag-unlit.png and b/Resources/Textures/Structures/Power/apc.rsi/emag-unlit.png differ diff --git a/Resources/Textures/Structures/Power/apc.rsi/frame.png b/Resources/Textures/Structures/Power/apc.rsi/frame.png index e4c9c1b31c..c8ea6446f4 100644 Binary files a/Resources/Textures/Structures/Power/apc.rsi/frame.png and b/Resources/Textures/Structures/Power/apc.rsi/frame.png differ diff --git a/Resources/Textures/Structures/Power/apc.rsi/lock0-locked.png b/Resources/Textures/Structures/Power/apc.rsi/lock0-locked.png index 45562de8a6..e8fb96f079 100644 Binary files a/Resources/Textures/Structures/Power/apc.rsi/lock0-locked.png and b/Resources/Textures/Structures/Power/apc.rsi/lock0-locked.png differ diff --git a/Resources/Textures/Structures/Power/apc.rsi/lock0-unlocked.png b/Resources/Textures/Structures/Power/apc.rsi/lock0-unlocked.png index f6377a36b1..dec67fcf76 100644 Binary files a/Resources/Textures/Structures/Power/apc.rsi/lock0-unlocked.png and b/Resources/Textures/Structures/Power/apc.rsi/lock0-unlocked.png differ diff --git a/Resources/Textures/Structures/Power/apc.rsi/lock1-locked.png b/Resources/Textures/Structures/Power/apc.rsi/lock1-locked.png index f92c04aac4..8704413e8c 100644 Binary files a/Resources/Textures/Structures/Power/apc.rsi/lock1-locked.png and b/Resources/Textures/Structures/Power/apc.rsi/lock1-locked.png differ diff --git a/Resources/Textures/Structures/Power/apc.rsi/lock1-unlocked.png b/Resources/Textures/Structures/Power/apc.rsi/lock1-unlocked.png index 44f9af733f..d9268f28fc 100644 Binary files a/Resources/Textures/Structures/Power/apc.rsi/lock1-unlocked.png and b/Resources/Textures/Structures/Power/apc.rsi/lock1-unlocked.png differ diff --git a/Resources/Textures/Structures/Power/apc.rsi/meta.json b/Resources/Textures/Structures/Power/apc.rsi/meta.json index 867e5ce0ff..442b12fc10 100644 --- a/Resources/Textures/Structures/Power/apc.rsi/meta.json +++ b/Resources/Textures/Structures/Power/apc.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from TauCetiClassic at commit https://github.com/TauCetiStation/TauCetiClassic/commit/fca7f2a0f9154c0c6c4efc2f8f58441fb9b34759", + "license": "CC-BY-SA-4.0", + "copyright": "Taken from CEV-Eris and edited by Gersoon", "size": { "x": 32, "y": 32 @@ -10,7 +10,7 @@ { "name": "base" }, - { + { "name": "static" }, { @@ -74,6 +74,37 @@ "name": "display-lack", "delays": [ [ + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 1, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.5, + 0.7, + 0.7, + 0.7, + 0.7, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, 1, 2 ] @@ -88,7 +119,9 @@ 0.1, 0.1, 0.1, - 0.2 + 0.1, + 0.1, + 0.1 ] ] }, @@ -96,8 +129,39 @@ "name": "display-full", "delays": [ [ + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, 1, - 1 + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.5, + 0.7, + 0.7, + 0.7, + 0.7, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1, + 2 ] ] }, @@ -105,11 +169,39 @@ "name": "display-remote", "delays": [ [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 1, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.5, + 0.7, + 0.7, + 0.7, + 0.7, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 1, + 2 ] ] }, @@ -117,8 +209,14 @@ "name": "emag-unlit", "delays": [ [ - 0.5, - 0.5 + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 ] ] }, diff --git a/Resources/Textures/Structures/Power/apc.rsi/panel.png b/Resources/Textures/Structures/Power/apc.rsi/panel.png index 97f8471f29..712e7d15ee 100644 Binary files a/Resources/Textures/Structures/Power/apc.rsi/panel.png and b/Resources/Textures/Structures/Power/apc.rsi/panel.png differ diff --git a/Resources/Textures/Structures/Power/apc.rsi/sparks-unlit.png b/Resources/Textures/Structures/Power/apc.rsi/sparks-unlit.png index f442757bea..3ca9c9416c 100644 Binary files a/Resources/Textures/Structures/Power/apc.rsi/sparks-unlit.png and b/Resources/Textures/Structures/Power/apc.rsi/sparks-unlit.png differ diff --git a/Resources/Textures/Structures/Specific/barberchair.rsi/barberchair.png b/Resources/Textures/Structures/Specific/barberchair.rsi/barberchair.png new file mode 100644 index 0000000000..244a875dca Binary files /dev/null and b/Resources/Textures/Structures/Specific/barberchair.rsi/barberchair.png differ diff --git a/Resources/Textures/Structures/Specific/barberchair.rsi/meta.json b/Resources/Textures/Structures/Specific/barberchair.rsi/meta.json new file mode 100644 index 0000000000..2e6b70f2fc --- /dev/null +++ b/Resources/Textures/Structures/Specific/barberchair.rsi/meta.json @@ -0,0 +1,15 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from BlueMoon at https://github.com/BlueMoon-Labs/MOLOT-BlueMoon-Station/blob/master/modular_bluemoon/krashly/icons/obj/chairs.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "barberchair", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Specific/barbershop.rsi/barberchair.png b/Resources/Textures/Structures/Specific/barbershop.rsi/barberchair.png deleted file mode 100644 index 7e8fd78ab7..0000000000 Binary files a/Resources/Textures/Structures/Specific/barbershop.rsi/barberchair.png and /dev/null differ diff --git a/Resources/Textures/Structures/Specific/barbershop.rsi/meta.json b/Resources/Textures/Structures/Specific/barbershop.rsi/meta.json index 1226428bcf..6d57cc380d 100644 --- a/Resources/Textures/Structures/Specific/barbershop.rsi/meta.json +++ b/Resources/Textures/Structures/Specific/barbershop.rsi/meta.json @@ -18,9 +18,6 @@ ] ] }, - { - "name": "barberchair" - }, { "name": "dyedispenser" }, diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/antinob-1.png b/Resources/Textures/Structures/Storage/canister.rsi/antinob-1.png similarity index 100% rename from Resources/Textures/_White/Structures/Storage/canister.rsi/antinob-1.png rename to Resources/Textures/Structures/Storage/canister.rsi/antinob-1.png diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/antinob.png b/Resources/Textures/Structures/Storage/canister.rsi/antinob.png similarity index 100% rename from Resources/Textures/_White/Structures/Storage/canister.rsi/antinob.png rename to Resources/Textures/Structures/Storage/canister.rsi/antinob.png diff --git a/Resources/Textures/Structures/Storage/canister.rsi/black-1.png b/Resources/Textures/Structures/Storage/canister.rsi/black-1.png index 2f7fc54a31..634e4a5cef 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/black-1.png and b/Resources/Textures/Structures/Storage/canister.rsi/black-1.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/black.png b/Resources/Textures/Structures/Storage/canister.rsi/black.png index 2b07b2b087..8fdda08039 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/black.png and b/Resources/Textures/Structures/Storage/canister.rsi/black.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/blue-1.png b/Resources/Textures/Structures/Storage/canister.rsi/blue-1.png index 1cb0f83ebf..a91fee8b9b 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/blue-1.png and b/Resources/Textures/Structures/Storage/canister.rsi/blue-1.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/blue.png b/Resources/Textures/Structures/Storage/canister.rsi/blue.png index c39f1ff26e..815035d313 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/blue.png and b/Resources/Textures/Structures/Storage/canister.rsi/blue.png differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/brown-1.png b/Resources/Textures/Structures/Storage/canister.rsi/brown-1.png similarity index 100% rename from Resources/Textures/_White/Structures/Storage/canister.rsi/brown-1.png rename to Resources/Textures/Structures/Storage/canister.rsi/brown-1.png diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/brown.png b/Resources/Textures/Structures/Storage/canister.rsi/brown.png similarity index 100% rename from Resources/Textures/_White/Structures/Storage/canister.rsi/brown.png rename to Resources/Textures/Structures/Storage/canister.rsi/brown.png diff --git a/Resources/Textures/Structures/Storage/canister.rsi/can-connector.png b/Resources/Textures/Structures/Storage/canister.rsi/can-connector.png index 9360a41c58..5e072729eb 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/can-connector.png and b/Resources/Textures/Structures/Storage/canister.rsi/can-connector.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/can-o0.png b/Resources/Textures/Structures/Storage/canister.rsi/can-o0.png index 89f617973f..6f8eecad72 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/can-o0.png and b/Resources/Textures/Structures/Storage/canister.rsi/can-o0.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/can-o1.png b/Resources/Textures/Structures/Storage/canister.rsi/can-o1.png index 6f9566ee13..087193266b 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/can-o1.png and b/Resources/Textures/Structures/Storage/canister.rsi/can-o1.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/can-o2.png b/Resources/Textures/Structures/Storage/canister.rsi/can-o2.png index 1a0a402363..c9fcc6c22c 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/can-o2.png and b/Resources/Textures/Structures/Storage/canister.rsi/can-o2.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/can-o3.png b/Resources/Textures/Structures/Storage/canister.rsi/can-o3.png index 87a68af474..ee96a3f4e5 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/can-o3.png and b/Resources/Textures/Structures/Storage/canister.rsi/can-o3.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/can-oa1.png b/Resources/Textures/Structures/Storage/canister.rsi/can-oa1.png index 8489866f74..d4ac98cbbd 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/can-oa1.png and b/Resources/Textures/Structures/Storage/canister.rsi/can-oa1.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/can-open.png b/Resources/Textures/Structures/Storage/canister.rsi/can-open.png index 61d286efb5..edce30a7e6 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/can-open.png and b/Resources/Textures/Structures/Storage/canister.rsi/can-open.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/darkblue-1.png b/Resources/Textures/Structures/Storage/canister.rsi/darkblue-1.png index 1cb0f83ebf..10902595db 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/darkblue-1.png and b/Resources/Textures/Structures/Storage/canister.rsi/darkblue-1.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/darkblue.png b/Resources/Textures/Structures/Storage/canister.rsi/darkblue.png index f664d0f3bf..e54b882c9d 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/darkblue.png and b/Resources/Textures/Structures/Storage/canister.rsi/darkblue.png differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/darkpurple-1.png b/Resources/Textures/Structures/Storage/canister.rsi/darkpurple-1.png similarity index 100% rename from Resources/Textures/_White/Structures/Storage/canister.rsi/darkpurple-1.png rename to Resources/Textures/Structures/Storage/canister.rsi/darkpurple-1.png diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/darkpurple.png b/Resources/Textures/Structures/Storage/canister.rsi/darkpurple.png similarity index 100% rename from Resources/Textures/_White/Structures/Storage/canister.rsi/darkpurple.png rename to Resources/Textures/Structures/Storage/canister.rsi/darkpurple.png diff --git a/Resources/Textures/Structures/Storage/canister.rsi/frezon-1.png b/Resources/Textures/Structures/Storage/canister.rsi/frezon-1.png index 1cb0f83ebf..46dc9743ff 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/frezon-1.png and b/Resources/Textures/Structures/Storage/canister.rsi/frezon-1.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/frezon.png b/Resources/Textures/Structures/Storage/canister.rsi/frezon.png index c39f1ff26e..467fd7a108 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/frezon.png and b/Resources/Textures/Structures/Storage/canister.rsi/frezon.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/green-1.png b/Resources/Textures/Structures/Storage/canister.rsi/green-1.png index df9958d3e6..b0af7b90a1 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/green-1.png and b/Resources/Textures/Structures/Storage/canister.rsi/green-1.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/green.png b/Resources/Textures/Structures/Storage/canister.rsi/green.png index 75d21b0918..056e879e0c 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/green.png and b/Resources/Textures/Structures/Storage/canister.rsi/green.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/greenys-1.png b/Resources/Textures/Structures/Storage/canister.rsi/greenys-1.png index ecc5294699..913eb3a918 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/greenys-1.png and b/Resources/Textures/Structures/Storage/canister.rsi/greenys-1.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/greenys.png b/Resources/Textures/Structures/Storage/canister.rsi/greenys.png index a414a19281..7cccdf1829 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/greenys.png and b/Resources/Textures/Structures/Storage/canister.rsi/greenys.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/grey-1.png b/Resources/Textures/Structures/Storage/canister.rsi/grey-1.png index d7bef4b366..52bcfb60eb 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/grey-1.png and b/Resources/Textures/Structures/Storage/canister.rsi/grey-1.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/grey.png b/Resources/Textures/Structures/Storage/canister.rsi/grey.png index 6668cd6789..378bceee1f 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/grey.png and b/Resources/Textures/Structures/Storage/canister.rsi/grey.png differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/h2-1.png b/Resources/Textures/Structures/Storage/canister.rsi/h2-1.png similarity index 100% rename from Resources/Textures/_White/Structures/Storage/canister.rsi/h2-1.png rename to Resources/Textures/Structures/Storage/canister.rsi/h2-1.png diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/h2.png b/Resources/Textures/Structures/Storage/canister.rsi/h2.png similarity index 100% rename from Resources/Textures/_White/Structures/Storage/canister.rsi/h2.png rename to Resources/Textures/Structures/Storage/canister.rsi/h2.png diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/halon-1.png b/Resources/Textures/Structures/Storage/canister.rsi/halon-1.png similarity index 100% rename from Resources/Textures/_White/Structures/Storage/canister.rsi/halon-1.png rename to Resources/Textures/Structures/Storage/canister.rsi/halon-1.png diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/halon.png b/Resources/Textures/Structures/Storage/canister.rsi/halon.png similarity index 100% rename from Resources/Textures/_White/Structures/Storage/canister.rsi/halon.png rename to Resources/Textures/Structures/Storage/canister.rsi/halon.png diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/healium-1.png b/Resources/Textures/Structures/Storage/canister.rsi/healium-1.png similarity index 100% rename from Resources/Textures/_White/Structures/Storage/canister.rsi/healium-1.png rename to Resources/Textures/Structures/Storage/canister.rsi/healium-1.png diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/healium.png b/Resources/Textures/Structures/Storage/canister.rsi/healium.png similarity index 100% rename from Resources/Textures/_White/Structures/Storage/canister.rsi/healium.png rename to Resources/Textures/Structures/Storage/canister.rsi/healium.png diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/helium-1.png b/Resources/Textures/Structures/Storage/canister.rsi/helium-1.png similarity index 100% rename from Resources/Textures/_White/Structures/Storage/canister.rsi/helium-1.png rename to Resources/Textures/Structures/Storage/canister.rsi/helium-1.png diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/helium.png b/Resources/Textures/Structures/Storage/canister.rsi/helium.png similarity index 100% rename from Resources/Textures/_White/Structures/Storage/canister.rsi/helium.png rename to Resources/Textures/Structures/Storage/canister.rsi/helium.png diff --git a/Resources/Textures/Structures/Storage/canister.rsi/locked.png b/Resources/Textures/Structures/Storage/canister.rsi/locked.png index 9edd84975f..bb19fb4482 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/locked.png and b/Resources/Textures/Structures/Storage/canister.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/meta.json b/Resources/Textures/Structures/Storage/canister.rsi/meta.json index 7c2915a3a7..72d7527fca 100644 --- a/Resources/Textures/Structures/Storage/canister.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/canister.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/ParadiseSS13/Paradise/", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Omsoyk for WWDP", "size": { "x": 32, "y": 32 @@ -117,6 +117,72 @@ }, { "name": "scrubber-open" + }, + { + "name": "brown" + }, + { + "name": "brown-1" + }, + { + "name": "purple" + }, + { + "name": "purple-1" + }, + { + "name": "helium" + }, + { + "name": "helium-1" + }, + { + "name": "nob" + }, + { + "name": "nob-1" + }, + { + "name": "healium" + }, + { + "name": "healium-1" + }, + { + "name": "proto_nitrate" + }, + { + "name": "proto_nitrate-1" + }, + { + "name": "halon" + }, + { + "name": "halon-1" + }, + { + "name": "darkpurple" + }, + { + "name": "darkpurple-1" + }, + { + "name": "antinob" + }, + { + "name": "antinob-1" + }, + { + "name": "h2" + }, + { + "name": "h2-1" + }, + { + "name": "zauker" + }, + { + "name": "zauker-1" } ] } diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/nob-1.png b/Resources/Textures/Structures/Storage/canister.rsi/nob-1.png similarity index 100% rename from Resources/Textures/_White/Structures/Storage/canister.rsi/nob-1.png rename to Resources/Textures/Structures/Storage/canister.rsi/nob-1.png diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/nob.png b/Resources/Textures/Structures/Storage/canister.rsi/nob.png similarity index 100% rename from Resources/Textures/_White/Structures/Storage/canister.rsi/nob.png rename to Resources/Textures/Structures/Storage/canister.rsi/nob.png diff --git a/Resources/Textures/Structures/Storage/canister.rsi/orange-1.png b/Resources/Textures/Structures/Storage/canister.rsi/orange-1.png index 136b36ca3c..c4617f0bc1 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/orange-1.png and b/Resources/Textures/Structures/Storage/canister.rsi/orange-1.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/orange.png b/Resources/Textures/Structures/Storage/canister.rsi/orange.png index 7681cc2f06..adbd5397a5 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/orange.png and b/Resources/Textures/Structures/Storage/canister.rsi/orange.png differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/proto_nitrate-1.png b/Resources/Textures/Structures/Storage/canister.rsi/proto_nitrate-1.png similarity index 100% rename from Resources/Textures/_White/Structures/Storage/canister.rsi/proto_nitrate-1.png rename to Resources/Textures/Structures/Storage/canister.rsi/proto_nitrate-1.png diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/proto_nitrate.png b/Resources/Textures/Structures/Storage/canister.rsi/proto_nitrate.png similarity index 100% rename from Resources/Textures/_White/Structures/Storage/canister.rsi/proto_nitrate.png rename to Resources/Textures/Structures/Storage/canister.rsi/proto_nitrate.png diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/purple-1.png b/Resources/Textures/Structures/Storage/canister.rsi/purple-1.png similarity index 100% rename from Resources/Textures/_White/Structures/Storage/canister.rsi/purple-1.png rename to Resources/Textures/Structures/Storage/canister.rsi/purple-1.png diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/purple.png b/Resources/Textures/Structures/Storage/canister.rsi/purple.png similarity index 100% rename from Resources/Textures/_White/Structures/Storage/canister.rsi/purple.png rename to Resources/Textures/Structures/Storage/canister.rsi/purple.png diff --git a/Resources/Textures/Structures/Storage/canister.rsi/red-1.png b/Resources/Textures/Structures/Storage/canister.rsi/red-1.png index 84ccd606c9..15bc2fa322 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/red-1.png and b/Resources/Textures/Structures/Storage/canister.rsi/red-1.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/red.png b/Resources/Textures/Structures/Storage/canister.rsi/red.png index 3ee22dae49..9780f27662 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/red.png and b/Resources/Textures/Structures/Storage/canister.rsi/red.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/redws-1.png b/Resources/Textures/Structures/Storage/canister.rsi/redws-1.png index 5f924fffce..97b4dd6ec9 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/redws-1.png and b/Resources/Textures/Structures/Storage/canister.rsi/redws-1.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/redws.png b/Resources/Textures/Structures/Storage/canister.rsi/redws.png index 6306517770..8c1c0261b5 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/redws.png and b/Resources/Textures/Structures/Storage/canister.rsi/redws.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/unlocked.png b/Resources/Textures/Structures/Storage/canister.rsi/unlocked.png index 5ba12d06af..5cd585307a 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/unlocked.png and b/Resources/Textures/Structures/Storage/canister.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/water_vapor-1.png b/Resources/Textures/Structures/Storage/canister.rsi/water_vapor-1.png index 2f7fc54a31..a6b6ad69f5 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/water_vapor-1.png and b/Resources/Textures/Structures/Storage/canister.rsi/water_vapor-1.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/water_vapor.png b/Resources/Textures/Structures/Storage/canister.rsi/water_vapor.png index 993c5ac4ff..feae2da892 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/water_vapor.png and b/Resources/Textures/Structures/Storage/canister.rsi/water_vapor.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/yellow-1.png b/Resources/Textures/Structures/Storage/canister.rsi/yellow-1.png index c12694850d..1ab44ae259 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/yellow-1.png and b/Resources/Textures/Structures/Storage/canister.rsi/yellow-1.png differ diff --git a/Resources/Textures/Structures/Storage/canister.rsi/yellow.png b/Resources/Textures/Structures/Storage/canister.rsi/yellow.png index fc98a45682..66df902d3e 100644 Binary files a/Resources/Textures/Structures/Storage/canister.rsi/yellow.png and b/Resources/Textures/Structures/Storage/canister.rsi/yellow.png differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/zauker-1.png b/Resources/Textures/Structures/Storage/canister.rsi/zauker-1.png similarity index 100% rename from Resources/Textures/_White/Structures/Storage/canister.rsi/zauker-1.png rename to Resources/Textures/Structures/Storage/canister.rsi/zauker-1.png diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/zauker.png b/Resources/Textures/Structures/Storage/canister.rsi/zauker.png similarity index 100% rename from Resources/Textures/_White/Structures/Storage/canister.rsi/zauker.png rename to Resources/Textures/Structures/Storage/canister.rsi/zauker.png diff --git a/Resources/Textures/Structures/Storage/closet.rsi/cabinet.png b/Resources/Textures/Structures/Storage/closet.rsi/cabinet.png index e7b012ff94..471fb3f601 100644 Binary files a/Resources/Textures/Structures/Storage/closet.rsi/cabinet.png and b/Resources/Textures/Structures/Storage/closet.rsi/cabinet.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/cabinet_door.png b/Resources/Textures/Structures/Storage/closet.rsi/cabinet_door.png index e004d3e43d..c6dd42ab55 100644 Binary files a/Resources/Textures/Structures/Storage/closet.rsi/cabinet_door.png and b/Resources/Textures/Structures/Storage/closet.rsi/cabinet_door.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/cabinet_open.png b/Resources/Textures/Structures/Storage/closet.rsi/cabinet_open.png index 4ead750b31..40f609bae5 100644 Binary files a/Resources/Textures/Structures/Storage/closet.rsi/cabinet_open.png and b/Resources/Textures/Structures/Storage/closet.rsi/cabinet_open.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/meta.json b/Resources/Textures/Structures/Storage/closet.rsi/meta.json index d3802637c0..cce12c866f 100644 --- a/Resources/Textures/Structures/Storage/closet.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/closet.rsi/meta.json @@ -4,7 +4,7 @@ "x": 32, "y": 32 }, - "copyright": "Taken from tgstation, brigmedic locker is a resprited CMO locker by PuroSlavKing (Github), CJ and Clerk lockers edited by Timemaster99 (Discord), n2_door state modified by Flareguy from fire_door, using sprites from /vg/station at https://github.com/vgstation-coders/vgstation13/commit/02b9f6894af4419c9f7e699a22c402b086d8067e", + "copyright": "Taken from tgstation, brigmedic locker is a resprited CMO locker by PuroSlavKing (Github), CJ and Clerk lockers edited by Timemaster99 (Discord), n2_door state modified by Flareguy from fire_door, using sprites from /vg/station at https://github.com/vgstation-coders/vgstation13/commit/02b9f6894af4419c9f7e699a22c402b086d8067e. Cabinet and generic edited by Gersoon", "license": "CC-BY-SA-3.0", "states": [ { diff --git a/Resources/Textures/Structures/Storage/glassbox.rsi/DamageOverlay_12.png b/Resources/Textures/Structures/Storage/glassbox.rsi/DamageOverlay_12.png index cce6fe0ba3..a82bb8b233 100644 Binary files a/Resources/Textures/Structures/Storage/glassbox.rsi/DamageOverlay_12.png and b/Resources/Textures/Structures/Storage/glassbox.rsi/DamageOverlay_12.png differ diff --git a/Resources/Textures/Structures/Storage/glassbox.rsi/DamageOverlay_4.png b/Resources/Textures/Structures/Storage/glassbox.rsi/DamageOverlay_4.png index 08b6f66449..054f1f520c 100644 Binary files a/Resources/Textures/Structures/Storage/glassbox.rsi/DamageOverlay_4.png and b/Resources/Textures/Structures/Storage/glassbox.rsi/DamageOverlay_4.png differ diff --git a/Resources/Textures/Structures/Storage/glassbox.rsi/DamageOverlay_8.png b/Resources/Textures/Structures/Storage/glassbox.rsi/DamageOverlay_8.png index 6d980d1c67..e1c2297468 100644 Binary files a/Resources/Textures/Structures/Storage/glassbox.rsi/DamageOverlay_8.png and b/Resources/Textures/Structures/Storage/glassbox.rsi/DamageOverlay_8.png differ diff --git a/Resources/Textures/Structures/Storage/glassbox.rsi/glassbox-empty-open.png b/Resources/Textures/Structures/Storage/glassbox.rsi/base.png similarity index 100% rename from Resources/Textures/Structures/Storage/glassbox.rsi/glassbox-empty-open.png rename to Resources/Textures/Structures/Storage/glassbox.rsi/base.png diff --git a/Resources/Textures/Structures/Storage/glassbox.rsi/glass-4.png b/Resources/Textures/Structures/Storage/glassbox.rsi/glass-broken.png similarity index 100% rename from Resources/Textures/Structures/Storage/glassbox.rsi/glass-4.png rename to Resources/Textures/Structures/Storage/glassbox.rsi/glass-broken.png diff --git a/Resources/Textures/Structures/Storage/glassbox.rsi/glassbox-filled-closed.png b/Resources/Textures/Structures/Storage/glassbox.rsi/glassbox-filled-closed.png deleted file mode 100644 index b558cf5212..0000000000 Binary files a/Resources/Textures/Structures/Storage/glassbox.rsi/glassbox-filled-closed.png and /dev/null differ diff --git a/Resources/Textures/Structures/Storage/glassbox.rsi/glassbox-filled-open.png b/Resources/Textures/Structures/Storage/glassbox.rsi/glassbox-filled-open.png deleted file mode 100644 index 48db8e88e5..0000000000 Binary files a/Resources/Textures/Structures/Storage/glassbox.rsi/glassbox-filled-open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Storage/glassbox.rsi/glassbox.png b/Resources/Textures/Structures/Storage/glassbox.rsi/glassbox.png deleted file mode 100644 index 3a3bf591ca..0000000000 Binary files a/Resources/Textures/Structures/Storage/glassbox.rsi/glassbox.png and /dev/null differ diff --git a/Resources/Textures/Structures/Storage/glassbox.rsi/icon.png b/Resources/Textures/Structures/Storage/glassbox.rsi/icon.png new file mode 100644 index 0000000000..9d1c8c8685 Binary files /dev/null and b/Resources/Textures/Structures/Storage/glassbox.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Storage/glassbox.rsi/meta.json b/Resources/Textures/Structures/Storage/glassbox.rsi/meta.json index 5ce653f37b..33decc4009 100644 --- a/Resources/Textures/Structures/Storage/glassbox.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/glassbox.rsi/meta.json @@ -1,50 +1,44 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/commit/0129a094635aac51e00fdc7aa3b4248affc1f49d Sprite modified and updated by Nimfar11 (Github), Shatter resprite by KREKS", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/commit/0129a094635aac51e00fdc7aa3b4248affc1f49d Sprite modified and updated by Nimfar11 (Github), Shatter resprite by KREKS and modified by MilenVolf (GitHub)", "size": { "x": 32, "y": 32 }, "states": [ { - "name": "glass" - }, - { - "name": "DamageOverlay_4" + "name": "base" }, { - "name": "DamageOverlay_8" + "name": "glass" }, { - "name": "DamageOverlay_12" + "name": "glass-up" }, { - "name": "glass-4" + "name": "glass-broken" }, { - "name": "glass-up" + "name": "caplaser" }, { "name": "locked" }, - { - "name": "caplaser" - }, { "name": "unlocked" }, { - "name": "glassbox" + "name": "icon" }, { - "name": "glassbox-empty-open" + "name": "DamageOverlay_4" }, { - "name": "glassbox-filled-closed" + "name": "DamageOverlay_8" }, { - "name": "glassbox-filled-open" + "name": "DamageOverlay_12" } ] } \ No newline at end of file diff --git a/Resources/Textures/Structures/Storage/suit_storage.rsi/base.png b/Resources/Textures/Structures/Storage/suit_storage.rsi/base.png index 0de3196726..5171b03f46 100644 Binary files a/Resources/Textures/Structures/Storage/suit_storage.rsi/base.png and b/Resources/Textures/Structures/Storage/suit_storage.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/suit_storage.rsi/door.png b/Resources/Textures/Structures/Storage/suit_storage.rsi/door.png index 53ab3f15cc..e2d18e4eb4 100644 Binary files a/Resources/Textures/Structures/Storage/suit_storage.rsi/door.png and b/Resources/Textures/Structures/Storage/suit_storage.rsi/door.png differ diff --git a/Resources/Textures/Structures/Storage/suit_storage.rsi/locked.png b/Resources/Textures/Structures/Storage/suit_storage.rsi/locked.png index 454c035fdd..40b036a2e5 100644 Binary files a/Resources/Textures/Structures/Storage/suit_storage.rsi/locked.png and b/Resources/Textures/Structures/Storage/suit_storage.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/suit_storage.rsi/meta.json b/Resources/Textures/Structures/Storage/suit_storage.rsi/meta.json index 561b5678da..293dab2f6c 100644 --- a/Resources/Textures/Structures/Storage/suit_storage.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/suit_storage.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from /tg/station commit https://github.com/tgstation/tgstation/commit/af7b7043df593807f7a98b7a07880d7a977cda14 and resprited by Alekshhh, welded state drawn by Flareguy for Space Station 14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Storage/suit_storage.rsi/panel.png b/Resources/Textures/Structures/Storage/suit_storage.rsi/panel.png index 9f587b0025..7c4ef0d075 100644 Binary files a/Resources/Textures/Structures/Storage/suit_storage.rsi/panel.png and b/Resources/Textures/Structures/Storage/suit_storage.rsi/panel.png differ diff --git a/Resources/Textures/Structures/Storage/suit_storage.rsi/unlocked.png b/Resources/Textures/Structures/Storage/suit_storage.rsi/unlocked.png index 3ad29d8317..cb906e3cb2 100644 Binary files a/Resources/Textures/Structures/Storage/suit_storage.rsi/unlocked.png and b/Resources/Textures/Structures/Storage/suit_storage.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/suit_storage.rsi/welded.png b/Resources/Textures/Structures/Storage/suit_storage.rsi/welded.png index b01290de40..d8e0281ebb 100644 Binary files a/Resources/Textures/Structures/Storage/suit_storage.rsi/welded.png and b/Resources/Textures/Structures/Storage/suit_storage.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/atmos_door.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/atmos_door.png index 4397628024..673ff2736a 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/atmos_door.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/atmos_door.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/black_door.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/black_door.png index 92632b9f4c..1a29724165 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/black_door.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/black_door.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/blue_door.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/blue_door.png index 362294d066..163d9befe6 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/blue_door.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/blue_door.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/emergency.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/emergency.png index adc1a5f903..1bd0e3d1bd 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/emergency.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/emergency.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/emergency_door.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/emergency_door.png index a4db426752..9a0dcbd874 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/emergency_door.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/emergency_door.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/emergency_open.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/emergency_open.png index 13c48821af..81c00f85e5 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/emergency_open.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/emergency_open.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/fire.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/fire.png index 19da330151..d51cd0bfe2 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/fire.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/fire.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/fire_door.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/fire_door.png index b670493c89..bb7b6e9d58 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/fire_door.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/fire_door.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/fire_open.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/fire_open.png index 3fa1f68bba..ee2b7cfea1 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/fire_open.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/fire_open.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/generic.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/generic.png index 6806e85f43..c3607015d3 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/generic.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/generic.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/generic_door.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/generic_door.png index 07c4d1336d..1e8326a743 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/generic_door.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/generic_door.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/generic_open.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/generic_open.png index 6122db13f8..83448e47e6 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/generic_open.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/generic_open.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/gray_door.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/gray_door.png index c223f60a3c..182f28f1a4 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/gray_door.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/gray_door.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/green_door.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/green_door.png index b9c0977ade..51b2ea29d1 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/green_door.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/green_door.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/locked.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/locked.png index 53f33d7893..579d46f069 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/locked.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/med.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/med.png index 231240bb20..07367feddc 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/med.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/med.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/med_door.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/med_door.png index 479297ff34..1c810b64b5 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/med_door.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/med_door.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/med_open.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/med_open.png index 3e34a349c2..70044b48d2 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/med_open.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/med_open.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/meta.json b/Resources/Textures/Structures/Storage/wall_locker.rsi/meta.json index b6ed63c7a3..ea57bda626 100644 --- a/Resources/Textures/Structures/Storage/wall_locker.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/wall_locker.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from shiptest at commmit https://github.com/shiptest-ss13/Shiptest/commit/440a15fb476a20d77ba28c1fe315c1b659032ce8, edited by Alekshhh", + "copyright": "Taken from shiptest at commmit https://github.com/shiptest-ss13/Shiptest/commit/440a15fb476a20d77ba28c1fe315c1b659032ce8, edited by Alekshhh. WD EDIT", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/mixed_door.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/mixed_door.png index dc9a559e57..25c245e59a 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/mixed_door.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/mixed_door.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/orange_door.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/orange_door.png index 893752ea7e..d205dbcd1d 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/orange_door.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/orange_door.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/pink_door.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/pink_door.png index a9d23ace4b..62e15b974f 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/pink_door.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/pink_door.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/red_door.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/red_door.png index c2e8c6a1ed..f301ca42f5 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/red_door.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/red_door.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/unlocked.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/unlocked.png index 8c761c05ad..fc0dcdb23d 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/unlocked.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/white_door.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/white_door.png index 3d42e08b60..e731b577e7 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/white_door.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/white_door.png differ diff --git a/Resources/Textures/Structures/Storage/wall_locker.rsi/yellow_door.png b/Resources/Textures/Structures/Storage/wall_locker.rsi/yellow_door.png index d321695596..c9ccbeca29 100644 Binary files a/Resources/Textures/Structures/Storage/wall_locker.rsi/yellow_door.png and b/Resources/Textures/Structures/Storage/wall_locker.rsi/yellow_door.png differ diff --git a/Resources/Textures/Structures/Wallmounts/defib_cabinet.rsi/closed.png b/Resources/Textures/Structures/Wallmounts/defib_cabinet.rsi/closed.png index a9b42ec09b..27a1e9b3a4 100644 Binary files a/Resources/Textures/Structures/Wallmounts/defib_cabinet.rsi/closed.png and b/Resources/Textures/Structures/Wallmounts/defib_cabinet.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Wallmounts/defib_cabinet.rsi/frame.png b/Resources/Textures/Structures/Wallmounts/defib_cabinet.rsi/frame.png index f15421658c..aeec87297d 100644 Binary files a/Resources/Textures/Structures/Wallmounts/defib_cabinet.rsi/frame.png and b/Resources/Textures/Structures/Wallmounts/defib_cabinet.rsi/frame.png differ diff --git a/Resources/Textures/Structures/Wallmounts/defib_cabinet.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/defib_cabinet.rsi/meta.json index 30a6ef2a55..0c3d2e1302 100644 --- a/Resources/Textures/Structures/Wallmounts/defib_cabinet.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/defib_cabinet.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC0-1.0", - "copyright": "Created by EmoGarbage404 (github) for Space Station 14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Gersoon based on sprite from Skyrat", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Wallmounts/defib_cabinet.rsi/open.png b/Resources/Textures/Structures/Wallmounts/defib_cabinet.rsi/open.png index aaac1394c6..8bcfa89251 100644 Binary files a/Resources/Textures/Structures/Wallmounts/defib_cabinet.rsi/open.png and b/Resources/Textures/Structures/Wallmounts/defib_cabinet.rsi/open.png differ diff --git a/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/closed.png b/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/closed.png index 417a97c57b..e8f2263461 100644 Binary files a/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/closed.png and b/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher-mini.png b/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher-mini.png index 752f8c0125..c7549a8af1 100644 Binary files a/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher-mini.png and b/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher-mini.png differ diff --git a/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher.png b/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher.png index 42a09a0221..f7771a009c 100644 Binary files a/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher.png and b/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher.png differ diff --git a/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_closed.png b/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_closed.png index f0a2177fec..2a3fc70072 100644 Binary files a/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_closed.png and b/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_closed.png differ diff --git a/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_empty.png b/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_empty.png index 5653c6026a..2dda925792 100644 Binary files a/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_empty.png and b/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_empty.png differ diff --git a/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_full.png b/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_full.png index 740b7d3729..2965af0872 100644 Binary files a/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_full.png and b/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_full.png differ diff --git a/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_mini.png b/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_mini.png index 4e97717d6d..b397135646 100644 Binary files a/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_mini.png and b/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_mini.png differ diff --git a/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/frame.png b/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/frame.png index 5ce24a67e1..a3c89417c3 100644 Binary files a/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/frame.png and b/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/frame.png differ diff --git a/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/meta.json index 0443e6e809..bbd22e7cc9 100644 --- a/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.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/d0d81185f09ca30d3b0856d476544240dba0de53", + "license": "CC-BY-SA-4.0", + "copyright": "Taken from Skyrat", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/open.png b/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/open.png index 52b6fc37f4..d07e73d516 100644 Binary files a/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/open.png and b/Resources/Textures/Structures/Wallmounts/extinguisher_cabinet.rsi/open.png differ diff --git a/Resources/Textures/Structures/Wallmounts/flatscreentv.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/flatscreentv.rsi/meta.json index 437216e96a..287e62a77b 100644 --- a/Resources/Textures/Structures/Wallmounts/flatscreentv.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/flatscreentv.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Created by Peptide90 for SS14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Gersoon", "size": { "x": 64, "y": 32 @@ -11,7 +11,17 @@ "name": "television_wall" }, { - "name": "television_wall_off" + "name": "television_wall_off", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] }, { "name": "television_wallbroken" @@ -20,12 +30,54 @@ "name": "television_wallscreen", "delays": [ [ - 0.7, - 0.7, - 0.7, - 0.7, - 0.7, - 0.7 + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75 ] ] } diff --git a/Resources/Textures/Structures/Wallmounts/flatscreentv.rsi/television_wall.png b/Resources/Textures/Structures/Wallmounts/flatscreentv.rsi/television_wall.png index af87be387a..088971dbe9 100644 Binary files a/Resources/Textures/Structures/Wallmounts/flatscreentv.rsi/television_wall.png and b/Resources/Textures/Structures/Wallmounts/flatscreentv.rsi/television_wall.png differ diff --git a/Resources/Textures/Structures/Wallmounts/flatscreentv.rsi/television_wall_off.png b/Resources/Textures/Structures/Wallmounts/flatscreentv.rsi/television_wall_off.png index af87be387a..4adc1905d4 100644 Binary files a/Resources/Textures/Structures/Wallmounts/flatscreentv.rsi/television_wall_off.png and b/Resources/Textures/Structures/Wallmounts/flatscreentv.rsi/television_wall_off.png differ diff --git a/Resources/Textures/Structures/Wallmounts/flatscreentv.rsi/television_wallscreen.png b/Resources/Textures/Structures/Wallmounts/flatscreentv.rsi/television_wallscreen.png index c23028d3c6..73fce9c8b6 100644 Binary files a/Resources/Textures/Structures/Wallmounts/flatscreentv.rsi/television_wallscreen.png and b/Resources/Textures/Structures/Wallmounts/flatscreentv.rsi/television_wallscreen.png differ diff --git a/Resources/Textures/Structures/Wallmounts/locked_switch.rsi/base.png b/Resources/Textures/Structures/Wallmounts/locked_switch.rsi/base.png index cdee551f6f..5686e219a0 100644 Binary files a/Resources/Textures/Structures/Wallmounts/locked_switch.rsi/base.png and b/Resources/Textures/Structures/Wallmounts/locked_switch.rsi/base.png differ diff --git a/Resources/Textures/Structures/Wallmounts/locked_switch.rsi/locked.png b/Resources/Textures/Structures/Wallmounts/locked_switch.rsi/locked.png index ae53cbd197..129727f625 100644 Binary files a/Resources/Textures/Structures/Wallmounts/locked_switch.rsi/locked.png and b/Resources/Textures/Structures/Wallmounts/locked_switch.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Wallmounts/locked_switch.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/locked_switch.rsi/meta.json index 2279c5b9e4..045c69581c 100644 --- a/Resources/Textures/Structures/Wallmounts/locked_switch.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/locked_switch.rsi/meta.json @@ -4,8 +4,8 @@ "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from CEV-Eris at commit 15748b71a1e6d2c547588c653d7c42f18011f7c5, modified by ThunderBear2006 (github) for Space Station 14, modified further by rosieposieeee (github)", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Gersoon based on sprite from Skyrat", "states": [ { "name": "base", diff --git a/Resources/Textures/Structures/Wallmounts/locked_switch.rsi/unlocked.png b/Resources/Textures/Structures/Wallmounts/locked_switch.rsi/unlocked.png index a20016cd4a..c1f6845844 100644 Binary files a/Resources/Textures/Structures/Wallmounts/locked_switch.rsi/unlocked.png and b/Resources/Textures/Structures/Wallmounts/locked_switch.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 6cee540a6b..5af073007c 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/anomaly.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/anomaly.png index e5b69da718..d2fddaab61 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/anomaly2.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/anomaly2.png index 73d94ac95e..4aae0be536 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/anomaly2.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/anomaly2.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/arcade.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/arcade.png index 9f36d43776..b6ec7ca3d3 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 671e57aa5c..7933d46d39 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 0dfa8a04f5..ea1b2773d4 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/atmos.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/atmos.png index 9441b32827..6b4e590d0f 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/atmos.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/atmos.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/bar.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/bar.png index e5fb2ab766..7d12b55b27 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 d196072a32..be961370c1 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 ae86efe496..0bf97ab83b 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 e34d8cf8f2..2a6c605ecd 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/canisters.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/canisters.png index 8f129cf906..426717c53e 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/canisters.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/canisters.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/cargo.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/cargo.png index bf0176ea97..2b882df631 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 df7ee4cf11..b77ad562bf 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 635f00ec53..4ecdbaf0b7 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 71739f2d4a..d95657df36 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 ecbc9370c1..5a13e043b0 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 d66b76011f..5e2efb0195 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 c3d20f31b8..ece09af2d4 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/court.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/court.png index fbb8c50593..9e01c46afd 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/court.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/court.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/deathsposal.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/deathsposal.png index 28975a1b12..19bb2f1043 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/direction_bridge.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/direction_bridge.png index 7f3e3d70c5..a331f5f6af 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/direction_bridge.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/direction_bridge.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/dock.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/dock.png index 1716f825bb..2518badd61 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 46f7585812..102261a6c4 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/drones.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/drones.png index 3d7e65f7a5..4e1e451845 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/drones.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/drones.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/eng.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/eng.png index 2d12b080fc..1dbf6cb83f 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 2c4f14d707..3574da9ec9 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/eva.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/eva.png index 2db7d42645..16fd8b4aba 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/eva.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/eva.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/examroom.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/examroom.png index afe1ce5986..37ef973fe4 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 21eb2e8613..5976f4ffc5 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/interrogation.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/interrogation.png index 653caf3907..07b412b44d 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 789a53802c..bf791fd392 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/laundromat.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/laundromat.png index 251e0ebd7b..511c15e25c 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 de6e16d4a6..76a849f105 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 f397ffe996..a0995b441e 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/medbay.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/medbay.png index c9c6e1362a..92e9236d9c 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/miner_dock.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/miner_dock.png index a9444f1ed6..491de8cc6f 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/miner_dock.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/miner_dock.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/morgue.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/morgue.png index 1dc0e7d1a9..eb10eb8e55 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 575d943c76..14a2a6f832 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 70d0e6512a..b311266d6f 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 a6fe5ca1f3..87973c1f8a 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 9b0761c1bb..ba469b9031 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 b16670d5b5..6eb6005345 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/rnd.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/rnd.png index 875b57204b..2b7c871630 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 5b3bb6e83d..95542430e2 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 8c51238f89..432a9be049 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 eb3afab2f8..37c91a865f 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 7e27efa2b3..d652a03d8e 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/shield.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/shield.png index bb88d2a770..914d9da132 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/shield.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/shield.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/space.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/space.png index 214650d6db..981b9132da 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 254ada76fd..e3351038f5 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 e1e721de4a..ac8aa75eb0 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 6c28bfde00..25412af5f1 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/toxins2.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/toxins2.png index c2c35212d0..c5bc868816 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/toxins2.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/toxins2.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/virology.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/virology.png index b83297d037..a6bd26cd5f 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/xenolab.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/xenolab.png index 21eb486835..bfc49cda34 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/xenolab.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/xenolab.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/zomlab.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/zomlab.png index 09d54e603d..cad67d6879 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/Textures/Structures/Wallmounts/switch.rsi/dead.png b/Resources/Textures/Structures/Wallmounts/switch.rsi/dead.png index 9454288860..74b90b26c3 100644 Binary files a/Resources/Textures/Structures/Wallmounts/switch.rsi/dead.png and b/Resources/Textures/Structures/Wallmounts/switch.rsi/dead.png differ diff --git a/Resources/Textures/Structures/Wallmounts/switch.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/switch.rsi/meta.json index 0b5805e5f5..754f1f3d45 100644 --- a/Resources/Textures/Structures/Wallmounts/switch.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/switch.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Taken from CEV-Eris at commit 15748b71a1e6d2c547588c653d7c42f18011f7c5, modified by ThunderBear2006 (github) for Space Station 14.", + "copyright": "Taken from Skyrat", "states": [ { "name": "on", diff --git a/Resources/Textures/Structures/Wallmounts/switch.rsi/off.png b/Resources/Textures/Structures/Wallmounts/switch.rsi/off.png index b2437f14a1..8c5f20ff41 100644 Binary files a/Resources/Textures/Structures/Wallmounts/switch.rsi/off.png and b/Resources/Textures/Structures/Wallmounts/switch.rsi/off.png differ diff --git a/Resources/Textures/Structures/Wallmounts/switch.rsi/on.png b/Resources/Textures/Structures/Wallmounts/switch.rsi/on.png index e468246f7b..fa9bffc916 100644 Binary files a/Resources/Textures/Structures/Wallmounts/switch.rsi/on.png and b/Resources/Textures/Structures/Wallmounts/switch.rsi/on.png differ diff --git a/Resources/Textures/Structures/Wallmounts/switch_frame.rsi/caution.png b/Resources/Textures/Structures/Wallmounts/switch_frame.rsi/caution.png deleted file mode 100644 index 56793d71fa..0000000000 Binary files a/Resources/Textures/Structures/Wallmounts/switch_frame.rsi/caution.png and /dev/null differ diff --git a/Resources/Textures/Structures/Wallmounts/switch_frame.rsi/caution_security.png b/Resources/Textures/Structures/Wallmounts/switch_frame.rsi/caution_security.png deleted file mode 100644 index cfcb8b4f55..0000000000 Binary files a/Resources/Textures/Structures/Wallmounts/switch_frame.rsi/caution_security.png and /dev/null differ diff --git a/Resources/Textures/Structures/Wallmounts/switch_frame.rsi/exit.png b/Resources/Textures/Structures/Wallmounts/switch_frame.rsi/exit.png deleted file mode 100644 index faec1fc09b..0000000000 Binary files a/Resources/Textures/Structures/Wallmounts/switch_frame.rsi/exit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Wallmounts/switch_frame.rsi/grey.png b/Resources/Textures/Structures/Wallmounts/switch_frame.rsi/grey.png deleted file mode 100644 index e35e9db9b6..0000000000 Binary files a/Resources/Textures/Structures/Wallmounts/switch_frame.rsi/grey.png and /dev/null differ diff --git a/Resources/Textures/Structures/Wallmounts/switch_frame.rsi/janitor.png b/Resources/Textures/Structures/Wallmounts/switch_frame.rsi/janitor.png deleted file mode 100644 index f24cf205d4..0000000000 Binary files a/Resources/Textures/Structures/Wallmounts/switch_frame.rsi/janitor.png and /dev/null differ diff --git a/Resources/Textures/Structures/Wallmounts/switch_frame.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/switch_frame.rsi/meta.json deleted file mode 100644 index 55198fa3b6..0000000000 --- a/Resources/Textures/Structures/Wallmounts/switch_frame.rsi/meta.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Made by rosieposieeee (github)", - "states": [ - { - "name": "grey", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - },{ - "name": "exit", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "caution", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "caution_security", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "janitor", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Structures/Walls/clown.rsi/clown0.png b/Resources/Textures/Structures/Walls/clown.rsi/clown0.png index 9e1dbd5ca7..8731c00441 100644 Binary files a/Resources/Textures/Structures/Walls/clown.rsi/clown0.png and b/Resources/Textures/Structures/Walls/clown.rsi/clown0.png differ diff --git a/Resources/Textures/Structures/Walls/clown.rsi/clown1.png b/Resources/Textures/Structures/Walls/clown.rsi/clown1.png index 85858c2366..62c9672324 100644 Binary files a/Resources/Textures/Structures/Walls/clown.rsi/clown1.png and b/Resources/Textures/Structures/Walls/clown.rsi/clown1.png differ diff --git a/Resources/Textures/Structures/Walls/clown.rsi/clown2.png b/Resources/Textures/Structures/Walls/clown.rsi/clown2.png index e52ad3c43c..a1d03e2fda 100644 Binary files a/Resources/Textures/Structures/Walls/clown.rsi/clown2.png and b/Resources/Textures/Structures/Walls/clown.rsi/clown2.png differ diff --git a/Resources/Textures/Structures/Walls/clown.rsi/clown3.png b/Resources/Textures/Structures/Walls/clown.rsi/clown3.png index f587368b75..80364d1bb9 100644 Binary files a/Resources/Textures/Structures/Walls/clown.rsi/clown3.png and b/Resources/Textures/Structures/Walls/clown.rsi/clown3.png differ diff --git a/Resources/Textures/Structures/Walls/clown.rsi/clown4.png b/Resources/Textures/Structures/Walls/clown.rsi/clown4.png index 2ae93e9c3e..7f86ddefb4 100644 Binary files a/Resources/Textures/Structures/Walls/clown.rsi/clown4.png and b/Resources/Textures/Structures/Walls/clown.rsi/clown4.png differ diff --git a/Resources/Textures/Structures/Walls/clown.rsi/clown5.png b/Resources/Textures/Structures/Walls/clown.rsi/clown5.png index de5883eac6..1d560a672d 100644 Binary files a/Resources/Textures/Structures/Walls/clown.rsi/clown5.png and b/Resources/Textures/Structures/Walls/clown.rsi/clown5.png differ diff --git a/Resources/Textures/Structures/Walls/clown.rsi/clown6.png b/Resources/Textures/Structures/Walls/clown.rsi/clown6.png index 2dfddc449d..7db200eece 100644 Binary files a/Resources/Textures/Structures/Walls/clown.rsi/clown6.png and b/Resources/Textures/Structures/Walls/clown.rsi/clown6.png differ diff --git a/Resources/Textures/Structures/Walls/clown.rsi/clown7.png b/Resources/Textures/Structures/Walls/clown.rsi/clown7.png index 267bb89fe6..14fa31c384 100644 Binary files a/Resources/Textures/Structures/Walls/clown.rsi/clown7.png and b/Resources/Textures/Structures/Walls/clown.rsi/clown7.png differ diff --git a/Resources/Textures/Structures/Walls/clown.rsi/full.png b/Resources/Textures/Structures/Walls/clown.rsi/full.png index a3f4760a51..8c765acdb8 100644 Binary files a/Resources/Textures/Structures/Walls/clown.rsi/full.png and b/Resources/Textures/Structures/Walls/clown.rsi/full.png differ diff --git a/Resources/Textures/Structures/Walls/clown.rsi/meta.json b/Resources/Textures/Structures/Walls/clown.rsi/meta.json index 76ecabce74..7a5233763b 100644 --- a/Resources/Textures/Structures/Walls/clown.rsi/meta.json +++ b/Resources/Textures/Structures/Walls/clown.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/vgstation-coders/vgstation13/raw/99cc2ab62d65a3a7b554dc7b21ff5f57c835f973/icons/turf/walls.dmi, modified by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Walls/rock.rsi/meta.json b/Resources/Textures/Structures/Walls/rock.rsi/meta.json index aa46326a4b..27935ec089 100644 --- a/Resources/Textures/Structures/Walls/rock.rsi/meta.json +++ b/Resources/Textures/Structures/Walls/rock.rsi/meta.json @@ -198,6 +198,9 @@ }, { "name": "rock_andesite_west" + }, + { + "name": "rock_bluespace" } ] } diff --git a/Resources/Textures/Structures/Walls/rock.rsi/rock_bluespace.png b/Resources/Textures/Structures/Walls/rock.rsi/rock_bluespace.png new file mode 100644 index 0000000000..e3368c34d7 Binary files /dev/null and b/Resources/Textures/Structures/Walls/rock.rsi/rock_bluespace.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/full.png b/Resources/Textures/Structures/Walls/solid.rsi/full.png index b4e991e345..c3f6fbc79f 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/full.png and b/Resources/Textures/Structures/Walls/solid.rsi/full.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/meta.json b/Resources/Textures/Structures/Walls/solid.rsi/meta.json index 246ebe31b9..ec8cb2c6a7 100644 --- a/Resources/Textures/Structures/Walls/solid.rsi/meta.json +++ b/Resources/Textures/Structures/Walls/solid.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/ParadiseSS13/Paradise/ and modified by FoxxoTrystan", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-0.png b/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-0.png index 1e2da3352b..fbf5e0dc10 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-0.png and b/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-0.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-1.png b/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-1.png index 501e4b2ab4..068d688357 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-1.png and b/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-1.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-2.png b/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-2.png index 23367ae824..1b69d47573 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-2.png and b/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-2.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-3.png b/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-3.png index 2b48ffb696..49696566a7 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-3.png and b/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-3.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-4.png b/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-4.png index 515b40760d..0474f78f9e 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-4.png and b/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-4.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-5.png b/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-5.png index bbff6b6584..fbdedd7886 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-5.png and b/Resources/Textures/Structures/Walls/solid.rsi/reinf_construct-5.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/reinf_over0.png b/Resources/Textures/Structures/Walls/solid.rsi/reinf_over0.png index f6b33bcb18..07cdc8bf59 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/reinf_over0.png and b/Resources/Textures/Structures/Walls/solid.rsi/reinf_over0.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/reinf_over1.png b/Resources/Textures/Structures/Walls/solid.rsi/reinf_over1.png index a7800d9dcc..e607dc9aca 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/reinf_over1.png and b/Resources/Textures/Structures/Walls/solid.rsi/reinf_over1.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/reinf_over2.png b/Resources/Textures/Structures/Walls/solid.rsi/reinf_over2.png index f6b33bcb18..07cdc8bf59 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/reinf_over2.png and b/Resources/Textures/Structures/Walls/solid.rsi/reinf_over2.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/reinf_over3.png b/Resources/Textures/Structures/Walls/solid.rsi/reinf_over3.png index a7800d9dcc..e607dc9aca 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/reinf_over3.png and b/Resources/Textures/Structures/Walls/solid.rsi/reinf_over3.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/reinf_over4.png b/Resources/Textures/Structures/Walls/solid.rsi/reinf_over4.png index 9e8e9dd40a..48d4699466 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/reinf_over4.png and b/Resources/Textures/Structures/Walls/solid.rsi/reinf_over4.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/reinf_over5.png b/Resources/Textures/Structures/Walls/solid.rsi/reinf_over5.png index 3c0b42ddbf..3f12cdad39 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/reinf_over5.png and b/Resources/Textures/Structures/Walls/solid.rsi/reinf_over5.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/reinf_over6.png b/Resources/Textures/Structures/Walls/solid.rsi/reinf_over6.png index 9e8e9dd40a..48d4699466 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/reinf_over6.png and b/Resources/Textures/Structures/Walls/solid.rsi/reinf_over6.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/reinf_over7.png b/Resources/Textures/Structures/Walls/solid.rsi/reinf_over7.png index b4bc95f4f0..3a5e0cb5ae 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/reinf_over7.png and b/Resources/Textures/Structures/Walls/solid.rsi/reinf_over7.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/rgeneric.png b/Resources/Textures/Structures/Walls/solid.rsi/rgeneric.png index 1e2da3352b..0328bd2b84 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/rgeneric.png and b/Resources/Textures/Structures/Walls/solid.rsi/rgeneric.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/solid0.png b/Resources/Textures/Structures/Walls/solid.rsi/solid0.png index 3849504b6f..404b6ac1c6 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/solid0.png and b/Resources/Textures/Structures/Walls/solid.rsi/solid0.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/solid1.png b/Resources/Textures/Structures/Walls/solid.rsi/solid1.png index 9ac2271692..258b734263 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/solid1.png and b/Resources/Textures/Structures/Walls/solid.rsi/solid1.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/solid2.png b/Resources/Textures/Structures/Walls/solid.rsi/solid2.png index 3849504b6f..404b6ac1c6 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/solid2.png and b/Resources/Textures/Structures/Walls/solid.rsi/solid2.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/solid3.png b/Resources/Textures/Structures/Walls/solid.rsi/solid3.png index 9ac2271692..258b734263 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/solid3.png and b/Resources/Textures/Structures/Walls/solid.rsi/solid3.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/solid4.png b/Resources/Textures/Structures/Walls/solid.rsi/solid4.png index a5a6dd2856..5af1322d5e 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/solid4.png and b/Resources/Textures/Structures/Walls/solid.rsi/solid4.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/solid5.png b/Resources/Textures/Structures/Walls/solid.rsi/solid5.png index 3c0b42ddbf..773e85c48a 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/solid5.png and b/Resources/Textures/Structures/Walls/solid.rsi/solid5.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/solid6.png b/Resources/Textures/Structures/Walls/solid.rsi/solid6.png index a5a6dd2856..5af1322d5e 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/solid6.png and b/Resources/Textures/Structures/Walls/solid.rsi/solid6.png differ diff --git a/Resources/Textures/Structures/Walls/solid.rsi/solid7.png b/Resources/Textures/Structures/Walls/solid.rsi/solid7.png index b4bc95f4f0..47900fe305 100644 Binary files a/Resources/Textures/Structures/Walls/solid.rsi/solid7.png and b/Resources/Textures/Structures/Walls/solid.rsi/solid7.png differ diff --git a/Resources/Textures/Structures/Walls/solid_diagonal.rsi/meta.json b/Resources/Textures/Structures/Walls/solid_diagonal.rsi/meta.json index e27c76563c..0e1ef87f6d 100644 --- a/Resources/Textures/Structures/Walls/solid_diagonal.rsi/meta.json +++ b/Resources/Textures/Structures/Walls/solid_diagonal.rsi/meta.json @@ -4,14 +4,16 @@ "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Sprited by PuroSlavKing (Github) for Space Station 14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "states": [ { - "name": "state0" + "name": "state0", + "directions": 4 }, { - "name": "state1" + "name": "state1", + "directions": 4 } ] } diff --git a/Resources/Textures/Structures/Walls/solid_diagonal.rsi/state0.png b/Resources/Textures/Structures/Walls/solid_diagonal.rsi/state0.png index 5976a6c5c8..20ef95fb95 100644 Binary files a/Resources/Textures/Structures/Walls/solid_diagonal.rsi/state0.png and b/Resources/Textures/Structures/Walls/solid_diagonal.rsi/state0.png differ diff --git a/Resources/Textures/Structures/Walls/solid_diagonal.rsi/state1.png b/Resources/Textures/Structures/Walls/solid_diagonal.rsi/state1.png index 81e51b9ac6..25200480b6 100644 Binary files a/Resources/Textures/Structures/Walls/solid_diagonal.rsi/state1.png and b/Resources/Textures/Structures/Walls/solid_diagonal.rsi/state1.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/full.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/full.png index 31911eddb8..26d0d7971f 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/full.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/full.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/meta.json b/Resources/Textures/Structures/Walls/solid_rust.rsi/meta.json index 3b1da2fdae..c9e5ce8026 100644 --- a/Resources/Textures/Structures/Walls/solid_rust.rsi/meta.json +++ b/Resources/Textures/Structures/Walls/solid_rust.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/ParadiseSS13/Paradise/ and modified by FoxxoTrystan.", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-0.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-0.png index 81f7b75d7b..19200aaca0 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-0.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-0.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-1.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-1.png index 69acb77115..27ce52b1c6 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-1.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-1.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-2.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-2.png index 63c1502b8a..b75834cfa0 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-2.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-2.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-3.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-3.png index ad5094443b..dd4c9e9ac3 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-3.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-3.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-4.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-4.png index 50b465c63b..3d02e0ca28 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-4.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-4.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-5.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-5.png index c6d8dacab1..1f0edcf86b 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-5.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_construct-5.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over0.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over0.png index ce5adc65b5..f82137acc2 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over0.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over0.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over1.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over1.png index dd8b232de2..66ad1db058 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over1.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over1.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over2.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over2.png index ce5adc65b5..f82137acc2 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over2.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over2.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over3.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over3.png index dd8b232de2..66ad1db058 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over3.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over3.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over4.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over4.png index e6c25bf954..ad489f8e06 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over4.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over4.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over5.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over5.png index d0384e6f2b..6dcf50aa02 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over5.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over5.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over6.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over6.png index e6c25bf954..ad489f8e06 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over6.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over6.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over7.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over7.png index 45a43655f6..593f745dd9 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over7.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/reinf_over7.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/rgeneric.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/rgeneric.png index 81f7b75d7b..53e76c03a6 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/rgeneric.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/rgeneric.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/solid0.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/solid0.png index a82cf05337..b6f86f7f78 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/solid0.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/solid0.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/solid1.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/solid1.png index 88c852b396..bc3162a30d 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/solid1.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/solid1.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/solid2.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/solid2.png index a82cf05337..b6f86f7f78 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/solid2.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/solid2.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/solid3.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/solid3.png index 88c852b396..bc3162a30d 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/solid3.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/solid3.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/solid4.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/solid4.png index ba6ac0281f..35fd2ad1a7 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/solid4.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/solid4.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/solid5.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/solid5.png index d0384e6f2b..a7324792c9 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/solid5.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/solid5.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/solid6.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/solid6.png index ba6ac0281f..35fd2ad1a7 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/solid6.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/solid6.png differ diff --git a/Resources/Textures/Structures/Walls/solid_rust.rsi/solid7.png b/Resources/Textures/Structures/Walls/solid_rust.rsi/solid7.png index 45a43655f6..89fc2ab547 100644 Binary files a/Resources/Textures/Structures/Walls/solid_rust.rsi/solid7.png and b/Resources/Textures/Structures/Walls/solid_rust.rsi/solid7.png differ diff --git a/Resources/Textures/Structures/Walls/wood.rsi/full.png b/Resources/Textures/Structures/Walls/wood.rsi/full.png index c1d1c6ea03..ab68af5459 100644 Binary files a/Resources/Textures/Structures/Walls/wood.rsi/full.png and b/Resources/Textures/Structures/Walls/wood.rsi/full.png differ diff --git a/Resources/Textures/Structures/Walls/wood.rsi/meta.json b/Resources/Textures/Structures/Walls/wood.rsi/meta.json index e7fc90e9cf..11f698d75f 100644 --- a/Resources/Textures/Structures/Walls/wood.rsi/meta.json +++ b/Resources/Textures/Structures/Walls/wood.rsi/meta.json @@ -1 +1 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/vgstation-coders/vgstation13/raw/99cc2ab62d65a3a7b554dc7b21ff5f57c835f973/icons/turf/walls.dmi", "states": [{"name": "full"}, {"name": "wood0", "directions": 4}, {"name": "wood1", "directions": 4}, {"name": "wood2", "directions": 4}, {"name": "wood3", "directions": 4}, {"name": "wood4", "directions": 4}, {"name": "wood5", "directions": 4}, {"name": "wood6", "directions": 4}, {"name": "wood7", "directions": 4}]} \ No newline at end of file +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-4.0", "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/raw/99cc2ab62d65a3a7b554dc7b21ff5f57c835f973/icons/turf/walls.dmi and edited by Gersoon", "states": [{"name": "full"}, {"name": "wood0", "directions": 4}, {"name": "wood1", "directions": 4}, {"name": "wood2", "directions": 4}, {"name": "wood3", "directions": 4}, {"name": "wood4", "directions": 4}, {"name": "wood5", "directions": 4}, {"name": "wood6", "directions": 4}, {"name": "wood7", "directions": 4}]} \ No newline at end of file diff --git a/Resources/Textures/Structures/Walls/wood.rsi/wood0.png b/Resources/Textures/Structures/Walls/wood.rsi/wood0.png index 3909f61bd6..33eca180b9 100644 Binary files a/Resources/Textures/Structures/Walls/wood.rsi/wood0.png and b/Resources/Textures/Structures/Walls/wood.rsi/wood0.png differ diff --git a/Resources/Textures/Structures/Walls/wood.rsi/wood1.png b/Resources/Textures/Structures/Walls/wood.rsi/wood1.png index e83f04687d..347757c79c 100644 Binary files a/Resources/Textures/Structures/Walls/wood.rsi/wood1.png and b/Resources/Textures/Structures/Walls/wood.rsi/wood1.png differ diff --git a/Resources/Textures/Structures/Walls/wood.rsi/wood2.png b/Resources/Textures/Structures/Walls/wood.rsi/wood2.png index 3909f61bd6..33eca180b9 100644 Binary files a/Resources/Textures/Structures/Walls/wood.rsi/wood2.png and b/Resources/Textures/Structures/Walls/wood.rsi/wood2.png differ diff --git a/Resources/Textures/Structures/Walls/wood.rsi/wood3.png b/Resources/Textures/Structures/Walls/wood.rsi/wood3.png index e83f04687d..347757c79c 100644 Binary files a/Resources/Textures/Structures/Walls/wood.rsi/wood3.png and b/Resources/Textures/Structures/Walls/wood.rsi/wood3.png differ diff --git a/Resources/Textures/Structures/Walls/wood.rsi/wood4.png b/Resources/Textures/Structures/Walls/wood.rsi/wood4.png index 66c0976064..d2c55e0c5f 100644 Binary files a/Resources/Textures/Structures/Walls/wood.rsi/wood4.png and b/Resources/Textures/Structures/Walls/wood.rsi/wood4.png differ diff --git a/Resources/Textures/Structures/Walls/wood.rsi/wood5.png b/Resources/Textures/Structures/Walls/wood.rsi/wood5.png index 2bf0e04de3..a551296a4d 100644 Binary files a/Resources/Textures/Structures/Walls/wood.rsi/wood5.png and b/Resources/Textures/Structures/Walls/wood.rsi/wood5.png differ diff --git a/Resources/Textures/Structures/Walls/wood.rsi/wood6.png b/Resources/Textures/Structures/Walls/wood.rsi/wood6.png index 66c0976064..d2c55e0c5f 100644 Binary files a/Resources/Textures/Structures/Walls/wood.rsi/wood6.png and b/Resources/Textures/Structures/Walls/wood.rsi/wood6.png differ diff --git a/Resources/Textures/Structures/Walls/wood.rsi/wood7.png b/Resources/Textures/Structures/Walls/wood.rsi/wood7.png index 2bf0e04de3..a551296a4d 100644 Binary files a/Resources/Textures/Structures/Walls/wood.rsi/wood7.png and b/Resources/Textures/Structures/Walls/wood.rsi/wood7.png differ diff --git a/Resources/Textures/Structures/Windows/directional.rsi/frosted_window.png b/Resources/Textures/Structures/Windows/directional.rsi/frosted_window.png index 4f9bf4c955..a98794a792 100644 Binary files a/Resources/Textures/Structures/Windows/directional.rsi/frosted_window.png and b/Resources/Textures/Structures/Windows/directional.rsi/frosted_window.png differ diff --git a/Resources/Textures/Structures/Windows/directional.rsi/meta.json b/Resources/Textures/Structures/Windows/directional.rsi/meta.json index 5a01452c00..a666874749 100644 --- a/Resources/Textures/Structures/Windows/directional.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/directional.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "tgstation at ff1c30ac123dd28c6b5fee11e7f03654f5daa731, plasma windows from paradise at 44c12c6d9d0e42a9d3a582dff7e9a8d72b6ea68a, uranium windows made via edit by SphiraI(github), clockwork windows from https://github.com/tgstation/tgstation/blob/21b42d49ecf2b87f665b5f122368f6a247676721/icons/obj/smooth_structures/structure_variations.dmi", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Windows/directional.rsi/plasma_reinforced_window.png b/Resources/Textures/Structures/Windows/directional.rsi/plasma_reinforced_window.png index c1269b424e..63bdf7e422 100644 Binary files a/Resources/Textures/Structures/Windows/directional.rsi/plasma_reinforced_window.png and b/Resources/Textures/Structures/Windows/directional.rsi/plasma_reinforced_window.png differ diff --git a/Resources/Textures/Structures/Windows/directional.rsi/plasma_window.png b/Resources/Textures/Structures/Windows/directional.rsi/plasma_window.png index b1d1f4fef5..bc97d3350a 100644 Binary files a/Resources/Textures/Structures/Windows/directional.rsi/plasma_window.png and b/Resources/Textures/Structures/Windows/directional.rsi/plasma_window.png differ diff --git a/Resources/Textures/Structures/Windows/directional.rsi/reinforced_window.png b/Resources/Textures/Structures/Windows/directional.rsi/reinforced_window.png index 865f079317..bedb3ce7b2 100644 Binary files a/Resources/Textures/Structures/Windows/directional.rsi/reinforced_window.png and b/Resources/Textures/Structures/Windows/directional.rsi/reinforced_window.png differ diff --git a/Resources/Textures/Structures/Windows/directional.rsi/tinted_window.png b/Resources/Textures/Structures/Windows/directional.rsi/tinted_window.png index 4f9bf4c955..a98794a792 100644 Binary files a/Resources/Textures/Structures/Windows/directional.rsi/tinted_window.png and b/Resources/Textures/Structures/Windows/directional.rsi/tinted_window.png differ diff --git a/Resources/Textures/Structures/Windows/directional.rsi/window.png b/Resources/Textures/Structures/Windows/directional.rsi/window.png index a510742c94..8c02d08738 100644 Binary files a/Resources/Textures/Structures/Windows/directional.rsi/window.png and b/Resources/Textures/Structures/Windows/directional.rsi/window.png differ diff --git a/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/meta.json index 453a379722..9878974052 100644 --- a/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/meta.json @@ -4,8 +4,8 @@ "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github)", + "license": "CC-BY-SA-4.0", + "copyright": "Made by S_k_R_i_M_e_X", "states": [ { "name": "state0" diff --git a/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state0.png index 84f71e4833..c5e6e288fc 100644 Binary files a/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state0.png and b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state0.png differ diff --git a/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state1.png index 3655b4b9d1..8052a13a19 100644 Binary files a/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state1.png and b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state1.png differ diff --git a/Resources/Textures/Structures/Windows/plasma_window.rsi/full.png b/Resources/Textures/Structures/Windows/plasma_window.rsi/full.png index 41d24e9d2c..83be63e1d4 100644 Binary files a/Resources/Textures/Structures/Windows/plasma_window.rsi/full.png and b/Resources/Textures/Structures/Windows/plasma_window.rsi/full.png differ diff --git a/Resources/Textures/Structures/Windows/plasma_window.rsi/meta.json b/Resources/Textures/Structures/Windows/plasma_window.rsi/meta.json index 888b3527fb..13ee8d61a7 100644 --- a/Resources/Textures/Structures/Windows/plasma_window.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/plasma_window.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/ParadiseSS13/Paradise/ and modified by FoxxoTrystan", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow0.png b/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow0.png index a4adc74bb5..d6161707a9 100644 Binary files a/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow0.png and b/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow0.png differ diff --git a/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow1.png b/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow1.png index b0289b7d65..e83c88efdc 100644 Binary files a/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow1.png and b/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow1.png differ diff --git a/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow2.png b/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow2.png index a4adc74bb5..d6161707a9 100644 Binary files a/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow2.png and b/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow2.png differ diff --git a/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow3.png b/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow3.png index b0289b7d65..e83c88efdc 100644 Binary files a/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow3.png and b/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow3.png differ diff --git a/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow4.png b/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow4.png index 06f4275583..bbb7d68c58 100644 Binary files a/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow4.png and b/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow4.png differ diff --git a/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow5.png b/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow5.png index b6847b9237..c9a4bf6f11 100644 Binary files a/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow5.png and b/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow5.png differ diff --git a/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow6.png b/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow6.png index 06f4275583..bbb7d68c58 100644 Binary files a/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow6.png and b/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow6.png differ diff --git a/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow7.png b/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow7.png index 897abc2b8e..a8b33109a5 100644 Binary files a/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow7.png and b/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow7.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/meta.json index 453a379722..9878974052 100644 --- a/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/meta.json @@ -4,8 +4,8 @@ "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github)", + "license": "CC-BY-SA-4.0", + "copyright": "Made by S_k_R_i_M_e_X", "states": [ { "name": "state0" diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state0.png index 3e5ebf5036..53652e2770 100644 Binary files a/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state0.png and b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state0.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state1.png index 7bd92db59f..801ff6c4ac 100644 Binary files a/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state1.png and b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state1.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/full.png b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/full.png index a1c5c2115f..e58a142310 100644 Binary files a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/full.png and b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/full.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/meta.json b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/meta.json index e716cdf4ed..f2ed39c07a 100644 --- a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/ParadiseSS13/Paradise/ and modified by FoxxoTrystan", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow0.png b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow0.png index 8944626009..a46c49976e 100644 Binary files a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow0.png and b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow0.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow1.png b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow1.png index b4ba2ac007..55e5f01d0b 100644 Binary files a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow1.png and b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow1.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow2.png b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow2.png index 8944626009..a46c49976e 100644 Binary files a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow2.png and b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow2.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow3.png b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow3.png index 7f987f7a8e..55e5f01d0b 100644 Binary files a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow3.png and b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow3.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow4.png b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow4.png index c9bd9b8699..a8ad461cd8 100644 Binary files a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow4.png and b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow4.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow5.png b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow5.png index f16d149ec4..c171da053e 100644 Binary files a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow5.png and b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow5.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow6.png b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow6.png index c9bd9b8699..a8ad461cd8 100644 Binary files a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow6.png and b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow6.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow7.png b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow7.png index 4ad14d62d1..6c8777fc0e 100644 Binary files a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow7.png and b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow7.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_window.rsi/full.png b/Resources/Textures/Structures/Windows/reinforced_window.rsi/full.png index 73b05e9b2a..aaf736ac44 100644 Binary files a/Resources/Textures/Structures/Windows/reinforced_window.rsi/full.png and b/Resources/Textures/Structures/Windows/reinforced_window.rsi/full.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_window.rsi/meta.json b/Resources/Textures/Structures/Windows/reinforced_window.rsi/meta.json index 90c736a41c..3d39d5e41a 100644 --- a/Resources/Textures/Structures/Windows/reinforced_window.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/reinforced_window.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/ParadiseSS13/Paradise/ and modified by FoxxoTrystan", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow0.png b/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow0.png index f339bedb11..6649a73c1e 100644 Binary files a/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow0.png and b/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow0.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow1.png b/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow1.png index defff91bc0..34faa5f891 100644 Binary files a/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow1.png and b/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow1.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow2.png b/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow2.png index f339bedb11..6649a73c1e 100644 Binary files a/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow2.png and b/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow2.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow3.png b/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow3.png index defff91bc0..34faa5f891 100644 Binary files a/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow3.png and b/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow3.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow4.png b/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow4.png index 0324c05f17..10abeec265 100644 Binary files a/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow4.png and b/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow4.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow5.png b/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow5.png index 6770b1a235..834e91e414 100644 Binary files a/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow5.png and b/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow5.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow6.png b/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow6.png index 0324c05f17..10abeec265 100644 Binary files a/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow6.png and b/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow6.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow7.png b/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow7.png index 0e02c2e8de..c261f07dbe 100644 Binary files a/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow7.png and b/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow7.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/meta.json index 453a379722..2e4c8ffa0b 100644 --- a/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/meta.json @@ -4,8 +4,8 @@ "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github)", + "license": "CC-BY-SA-4.0", + "copyright": "Made by PurplePi for S_k_R_i_M_e_X", "states": [ { "name": "state0" diff --git a/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state0.png index cd8aca5579..18ed8298a3 100644 Binary files a/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state0.png and b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state0.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state1.png index 4130608cea..a1e144d39d 100644 Binary files a/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state1.png and b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state1.png differ diff --git a/Resources/Textures/Structures/Windows/tinted_window.rsi/full.png b/Resources/Textures/Structures/Windows/tinted_window.rsi/full.png index 371b38edb2..39d5d7f159 100644 Binary files a/Resources/Textures/Structures/Windows/tinted_window.rsi/full.png and b/Resources/Textures/Structures/Windows/tinted_window.rsi/full.png differ diff --git a/Resources/Textures/Structures/Windows/tinted_window.rsi/meta.json b/Resources/Textures/Structures/Windows/tinted_window.rsi/meta.json index cdbfb466b4..fd8fe626fe 100644 --- a/Resources/Textures/Structures/Windows/tinted_window.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/tinted_window.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/ParadiseSS13/Paradise/ and modified by FoxxoTrystan", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow0.png b/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow0.png index 5539fa6154..8df347bc07 100644 Binary files a/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow0.png and b/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow0.png differ diff --git a/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow1.png b/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow1.png index a7a0cad53a..abce8d1aa6 100644 Binary files a/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow1.png and b/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow1.png differ diff --git a/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow2.png b/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow2.png index 5539fa6154..8df347bc07 100644 Binary files a/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow2.png and b/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow2.png differ diff --git a/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow3.png b/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow3.png index a7a0cad53a..abce8d1aa6 100644 Binary files a/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow3.png and b/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow3.png differ diff --git a/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow4.png b/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow4.png index ea4706b191..b4fa59bba9 100644 Binary files a/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow4.png and b/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow4.png differ diff --git a/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow5.png b/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow5.png index b26c7be0b2..f61e61e226 100644 Binary files a/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow5.png and b/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow5.png differ diff --git a/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow6.png b/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow6.png index ea4706b191..b4fa59bba9 100644 Binary files a/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow6.png and b/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow6.png differ diff --git a/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow7.png b/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow7.png index a422e8c152..537c4bead2 100644 Binary files a/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow7.png and b/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow7.png differ diff --git a/Resources/Textures/Structures/Windows/window.rsi/full.png b/Resources/Textures/Structures/Windows/window.rsi/full.png index 897534dd8f..7790118815 100644 Binary files a/Resources/Textures/Structures/Windows/window.rsi/full.png and b/Resources/Textures/Structures/Windows/window.rsi/full.png differ diff --git a/Resources/Textures/Structures/Windows/window.rsi/meta.json b/Resources/Textures/Structures/Windows/window.rsi/meta.json index 9f6536937a..48c2d9ec25 100644 --- a/Resources/Textures/Structures/Windows/window.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/window.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/ParadiseSS13/Paradise/ and modified by FoxxoTrystan", + "license": "CC-BY-SA-4.0", + "copyright": "Made by WWDP Team", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Windows/window.rsi/window0.png b/Resources/Textures/Structures/Windows/window.rsi/window0.png index 95094714d3..b5c290cafb 100644 Binary files a/Resources/Textures/Structures/Windows/window.rsi/window0.png and b/Resources/Textures/Structures/Windows/window.rsi/window0.png differ diff --git a/Resources/Textures/Structures/Windows/window.rsi/window1.png b/Resources/Textures/Structures/Windows/window.rsi/window1.png index 98f6b07bcb..2347e36561 100644 Binary files a/Resources/Textures/Structures/Windows/window.rsi/window1.png and b/Resources/Textures/Structures/Windows/window.rsi/window1.png differ diff --git a/Resources/Textures/Structures/Windows/window.rsi/window2.png b/Resources/Textures/Structures/Windows/window.rsi/window2.png index 95094714d3..b5c290cafb 100644 Binary files a/Resources/Textures/Structures/Windows/window.rsi/window2.png and b/Resources/Textures/Structures/Windows/window.rsi/window2.png differ diff --git a/Resources/Textures/Structures/Windows/window.rsi/window3.png b/Resources/Textures/Structures/Windows/window.rsi/window3.png index 98f6b07bcb..2347e36561 100644 Binary files a/Resources/Textures/Structures/Windows/window.rsi/window3.png and b/Resources/Textures/Structures/Windows/window.rsi/window3.png differ diff --git a/Resources/Textures/Structures/Windows/window.rsi/window4.png b/Resources/Textures/Structures/Windows/window.rsi/window4.png index 30629fcac2..b2be0ffdad 100644 Binary files a/Resources/Textures/Structures/Windows/window.rsi/window4.png and b/Resources/Textures/Structures/Windows/window.rsi/window4.png differ diff --git a/Resources/Textures/Structures/Windows/window.rsi/window5.png b/Resources/Textures/Structures/Windows/window.rsi/window5.png index df4ef65088..813a561157 100644 Binary files a/Resources/Textures/Structures/Windows/window.rsi/window5.png and b/Resources/Textures/Structures/Windows/window.rsi/window5.png differ diff --git a/Resources/Textures/Structures/Windows/window.rsi/window6.png b/Resources/Textures/Structures/Windows/window.rsi/window6.png index 30629fcac2..b2be0ffdad 100644 Binary files a/Resources/Textures/Structures/Windows/window.rsi/window6.png and b/Resources/Textures/Structures/Windows/window.rsi/window6.png differ diff --git a/Resources/Textures/Structures/Windows/window.rsi/window7.png b/Resources/Textures/Structures/Windows/window.rsi/window7.png index 0e02c2e8de..1a88ef394f 100644 Binary files a/Resources/Textures/Structures/Windows/window.rsi/window7.png and b/Resources/Textures/Structures/Windows/window.rsi/window7.png differ diff --git a/Resources/Textures/Structures/Windows/window_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/window_diagonal.rsi/meta.json index 453a379722..9878974052 100644 --- a/Resources/Textures/Structures/Windows/window_diagonal.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/window_diagonal.rsi/meta.json @@ -4,8 +4,8 @@ "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github)", + "license": "CC-BY-SA-4.0", + "copyright": "Made by S_k_R_i_M_e_X", "states": [ { "name": "state0" diff --git a/Resources/Textures/Structures/Windows/window_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/window_diagonal.rsi/state0.png index 39ffd5be1f..c81cad86d2 100644 Binary files a/Resources/Textures/Structures/Windows/window_diagonal.rsi/state0.png and b/Resources/Textures/Structures/Windows/window_diagonal.rsi/state0.png differ diff --git a/Resources/Textures/Structures/Windows/window_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/window_diagonal.rsi/state1.png index bb5136c8b0..637e143e38 100644 Binary files a/Resources/Textures/Structures/Windows/window_diagonal.rsi/state1.png and b/Resources/Textures/Structures/Windows/window_diagonal.rsi/state1.png differ diff --git a/Resources/Textures/Structures/barricades.rsi/barricade.png b/Resources/Textures/Structures/barricades.rsi/barricade.png index ad31943a51..dc7d33e441 100644 Binary files a/Resources/Textures/Structures/barricades.rsi/barricade.png and b/Resources/Textures/Structures/barricades.rsi/barricade.png differ diff --git a/Resources/Textures/Structures/barricades.rsi/barricade_directional.png b/Resources/Textures/Structures/barricades.rsi/barricade_directional.png index 75d4120265..0873ea69f6 100644 Binary files a/Resources/Textures/Structures/barricades.rsi/barricade_directional.png and b/Resources/Textures/Structures/barricades.rsi/barricade_directional.png differ diff --git a/Resources/Textures/Structures/barricades.rsi/barricade_full.png b/Resources/Textures/Structures/barricades.rsi/barricade_full.png index 7ea5580cfb..9b4b99d030 100644 Binary files a/Resources/Textures/Structures/barricades.rsi/barricade_full.png and b/Resources/Textures/Structures/barricades.rsi/barricade_full.png differ diff --git a/Resources/Textures/Structures/barricades.rsi/meta.json b/Resources/Textures/Structures/barricades.rsi/meta.json index 367f94de64..c42e9a62ff 100644 --- a/Resources/Textures/Structures/barricades.rsi/meta.json +++ b/Resources/Textures/Structures/barricades.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/fa615ead9d02b879b2ed0461f36622affb32088f", + "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/fa615ead9d02b879b2ed0461f36622affb32088f and edited by Gersoon", "size": { "x": 32, "y": 32 @@ -11,13 +11,13 @@ "name": "barricade", "directions": 1 }, - { - "name": "barricade_full", - "directions": 1 - }, - { - "name": "barricade_directional", - "directions": 4 - } + { + "name": "barricade_full", + "directions": 1 + }, + { + "name": "barricade_directional", + "directions": 4 + } ] } \ No newline at end of file diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_0.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_0.png new file mode 100644 index 0000000000..1505c892b8 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_0.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_1.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_1.png new file mode 100644 index 0000000000..e0d5a4d39e Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_1.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_2.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_2.png new file mode 100644 index 0000000000..1505c892b8 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_2.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_3.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_3.png new file mode 100644 index 0000000000..e0d5a4d39e Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_3.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_4.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_4.png new file mode 100644 index 0000000000..38cb411508 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_4.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_5.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_5.png new file mode 100644 index 0000000000..b863e36b8c Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_5.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_6.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_6.png new file mode 100644 index 0000000000..38cb411508 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_6.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_7.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_7.png new file mode 100644 index 0000000000..88ffa378d2 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_7.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_0.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_0.png new file mode 100644 index 0000000000..136a48087b Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_0.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_1.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_1.png new file mode 100644 index 0000000000..06fb688c5b Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_1.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_2.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_2.png new file mode 100644 index 0000000000..136a48087b Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_2.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_3.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_3.png new file mode 100644 index 0000000000..06fb688c5b Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_3.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_4.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_4.png new file mode 100644 index 0000000000..80a85ef238 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_4.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_5.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_5.png new file mode 100644 index 0000000000..4a194d7fb1 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_5.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_6.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_6.png new file mode 100644 index 0000000000..80a85ef238 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_6.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_7.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_7.png new file mode 100644 index 0000000000..88ffa378d2 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_7.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/meta.json b/Resources/Textures/Structures/cargo_pallets.rsi/meta.json index 4751d95b9b..c32fcfefd0 100644 --- a/Resources/Textures/Structures/cargo_pallets.rsi/meta.json +++ b/Resources/Textures/Structures/cargo_pallets.rsi/meta.json @@ -10,8 +10,72 @@ { "name": "cargo_pallet_buy" }, + { + "name": "cargo_pallet_buy_0", + "directions": 4 + }, + { + "name": "cargo_pallet_buy_1", + "directions": 4 + }, + { + "name": "cargo_pallet_buy_2", + "directions": 4 + }, + { + "name": "cargo_pallet_buy_3", + "directions": 4 + }, + { + "name": "cargo_pallet_buy_4", + "directions": 4 + }, + { + "name": "cargo_pallet_buy_5", + "directions": 4 + }, + { + "name": "cargo_pallet_buy_6", + "directions": 4 + }, + { + "name": "cargo_pallet_buy_7", + "directions": 4 + }, { "name": "cargo_pallet_sell" + }, + { + "name": "cargo_pallet_sell_0", + "directions": 4 + }, + { + "name": "cargo_pallet_sell_1", + "directions": 4 + }, + { + "name": "cargo_pallet_sell_2", + "directions": 4 + }, + { + "name": "cargo_pallet_sell_3", + "directions": 4 + }, + { + "name": "cargo_pallet_sell_4", + "directions": 4 + }, + { + "name": "cargo_pallet_sell_5", + "directions": 4 + }, + { + "name": "cargo_pallet_sell_6", + "directions": 4 + }, + { + "name": "cargo_pallet_sell_7", + "directions": 4 } ] } diff --git a/Resources/Textures/Structures/stairs.rsi/meta.json b/Resources/Textures/Structures/stairs.rsi/meta.json index 586e1cd2e4..158b23a7bc 100644 --- a/Resources/Textures/Structures/stairs.rsi/meta.json +++ b/Resources/Textures/Structures/stairs.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/02b9f6894af4419c9f7e699a22c402b086d8067e", + "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/02b9f6894af4419c9f7e699a22c402b086d8067e. Wood edited by Gersoon", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/stairs.rsi/stairs_stage_wood.png b/Resources/Textures/Structures/stairs.rsi/stairs_stage_wood.png index 615933e917..63ec0388c5 100644 Binary files a/Resources/Textures/Structures/stairs.rsi/stairs_stage_wood.png and b/Resources/Textures/Structures/stairs.rsi/stairs_stage_wood.png differ diff --git a/Resources/Textures/Structures/stairs.rsi/stairs_wood.png b/Resources/Textures/Structures/stairs.rsi/stairs_wood.png index 7c5d17a6c8..9cf3a686da 100644 Binary files a/Resources/Textures/Structures/stairs.rsi/stairs_wood.png and b/Resources/Textures/Structures/stairs.rsi/stairs_wood.png differ diff --git a/Resources/Textures/Tiles/Misc/bananium.rsi/bananium.png b/Resources/Textures/Tiles/Misc/bananium.rsi/bananium.png index 4632c6dab4..224d2eed16 100644 Binary files a/Resources/Textures/Tiles/Misc/bananium.rsi/bananium.png and b/Resources/Textures/Tiles/Misc/bananium.rsi/bananium.png differ diff --git a/Resources/Textures/Tiles/Misc/bananium.rsi/meta.json b/Resources/Textures/Tiles/Misc/bananium.rsi/meta.json index 1cfb11ed79..0818d7ee72 100644 --- a/Resources/Textures/Tiles/Misc/bananium.rsi/meta.json +++ b/Resources/Textures/Tiles/Misc/bananium.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github) for ss14", + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Tiles/Misc/floortrap.rsi/floortrap.png b/Resources/Textures/Tiles/Misc/floortrap.rsi/floortrap.png new file mode 100644 index 0000000000..391437064e Binary files /dev/null and b/Resources/Textures/Tiles/Misc/floortrap.rsi/floortrap.png differ diff --git a/Resources/Textures/Tiles/Misc/floortrap.rsi/floortrapspawn.png b/Resources/Textures/Tiles/Misc/floortrap.rsi/floortrapspawn.png new file mode 100644 index 0000000000..764a0fed15 Binary files /dev/null and b/Resources/Textures/Tiles/Misc/floortrap.rsi/floortrapspawn.png differ diff --git a/Resources/Textures/Tiles/Misc/floortrap.rsi/meta.json b/Resources/Textures/Tiles/Misc/floortrap.rsi/meta.json new file mode 100644 index 0000000000..586fad6d23 --- /dev/null +++ b/Resources/Textures/Tiles/Misc/floortrap.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Nimfar11 (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "floortrap" + }, + { + "name": "floortrapspawn" + } + ] +} diff --git a/Resources/Textures/Tiles/Planet/Grass/double_edge.png b/Resources/Textures/Tiles/Planet/Grass/double_edge.png index b41e55af7c..f14bc83cef 100644 Binary files a/Resources/Textures/Tiles/Planet/Grass/double_edge.png and b/Resources/Textures/Tiles/Planet/Grass/double_edge.png differ diff --git a/Resources/Textures/Tiles/Planet/Grass/single_edge.png b/Resources/Textures/Tiles/Planet/Grass/single_edge.png index 437c090770..6b7ccbc780 100644 Binary files a/Resources/Textures/Tiles/Planet/Grass/single_edge.png and b/Resources/Textures/Tiles/Planet/Grass/single_edge.png differ diff --git a/Resources/Textures/Tiles/Planet/Grass/triple_edge.png b/Resources/Textures/Tiles/Planet/Grass/triple_edge.png index 3fd2a39a8f..ac420c1872 100644 Binary files a/Resources/Textures/Tiles/Planet/Grass/triple_edge.png and b/Resources/Textures/Tiles/Planet/Grass/triple_edge.png differ diff --git a/Resources/Textures/Tiles/attributions.yml b/Resources/Textures/Tiles/attributions.yml index 124113a903..1a3d0a9ce2 100644 --- a/Resources/Textures/Tiles/attributions.yml +++ b/Resources/Textures/Tiles/attributions.yml @@ -6,7 +6,7 @@ copyright: "CEV-Eris commit 28e589f0ff72a009adf17db767e90be39054f0f2" source: "https://github.com/discordia-space/CEV-Eris/" -- files: [ "asteroid_red.png", "asteroid_tile.png", "elevator_shaft.png", "freezer.png", "lino.png", "mono.png", "rock_vault.png", "showroom.png"] +- files: [ "asteroid_red.png", "asteroid_tile.png", "elevator_shaft.png", "mono.png"] license: "CC-BY-SA-3.0" copyright: "vgstation13 at roughly commit e4d3ea7f69d21c3667be12b114fa935c4640cb05, asteroid_red and asteroid_tile taken from commit /vg/station at commit 02b9f6894af4419c9f7e699a22c402b086d8067e." source: "https://github.com/vgstation-coders/vgstation13" @@ -16,47 +16,22 @@ copyright: "Taken from /tg/station at commit 6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae." source: "https://github.com/tgstation/tgstation/" -- files: ["steel.png", "dark.png", "hydro.png", "plating.png", "reinforced.png", "steel_dirty.png", "white.png", "bar.png", "laundry.png", "mime.png", "clown.png", "kitchen.png"] +- files: ["reinforced.png", "steel_dirty.png"] license: "CC-BY-SA-3.0" copyright: "TauCetiStation commit 4cd533cf0a4243050364023af9a4fcaca209dce7" source: "https://github.com/TauCetiStation/TauCetiClassic/" -- files: ["cropped_parallax.png", "eighties.png", "gold.png", "grass.png", "ironsand1.png", "ironsand2.png", "ironsand3.png", "ironsand4.png", "junglegrass.png", "lattice.png", "plating.png", "reinforced.png", "silver.png", "snow.png", "wood.png"] +- files: ["cropped_parallax.png", "eighties.png", "grass.png", "ironsand1.png", "ironsand2.png", "ironsand3.png", "ironsand4.png", "junglegrass.png", "lattice.png", "reinforced.png", "snow.png"] license: "CC-BY-SA-3.0" copyright: "tgstation commit 8abb19545828230d92ba18827feeb42a67a55d49, cropped_parallax modified from parallax." source: "https://github.com/tgstation/tgstation/" -- files: ["super_reinforced.png"] - license: "CC-BY-SA-3.0" - copyright: "Modified from reinforced.png by github user @Flareguy" - source: "https://github.com/space-wizards/space-station-14/pull/18676" - - files: ["asteroid_plating.png, snow_plating.png"] license: "CC-BY-SA-3.0" copyright: "Modified from plating.png by github user @Flareguy" source: "https://github.com/space-wizards/space-station-14/" -- files: ["rglass.png"] - license: "CC-BY-SA-3.0" - copyright: "tgstation commit 8abb19545828230d92ba18827feeb42a67a55d49, rglass modified by github user @notquitehadouken." - source: "https://github.com/space-wizards/space-station-14/pull/17948" - -- files: ["glass.png"] - license: "CC0-1.0" - copyright: "Created by github user @notquitehadouken." - source: "https://github.com/space-wizards/space-station-14/pull/17948" - -- files: [ "steel_diagonal.png", "steel_mini.png", "steel_offset.png", "steel_pavement.png", "white_diagonal.png", "white_mini.png", "white_offset.png", "white_pavement.png", "white_plastic.png", "dark_diagonal.png", "dark_mini.png", "dark_offset.png", "dark_pavement.png", "dark_plastic.png" ] - license: "CC0-1.0" - copyright: "Created by github user @morb0" - source: "https://github.com/space-syndicate/space-station-14/pull/489" - -- files: [ "cafeteria.png", "checker_dark.png" ] - license: "CC-BY-SA-3.0" - copyright: "Created by github user @Flareguy, original, unedited base tiles modified from /tg/station at commit 6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae and github user @moonheart08" - source: "https://github.com/space-wizards/space-station-14/" - -- files: [ "bar.png", "lime.png", "blue.png", "kitchen.png", "laundry.png", "mime.png", "steel.png", "steel_dirty.png", "steel_diagonal.png", "steel_mini.png", "steel_offset.png", "steel_pavement.png", "white.png", "white_diagonal.png", "white_mini.png", "white_offset.png", "white_pavement.png", "dark.png", "dark_diagonal.png", "dark_mini.png", "dark_offset.png", "dark_pavement.png", "hydro.png", "plastic.png", "dark_plastic.png", "white_plastic.png", "cafeteria.png", "checker_dark.png", "clown.png" ] +- files: [ "steel_dirty.png"] license: "CC-BY-SA-3.0" copyright: "Created by github user @Flareguy, original, unedited base tiles modified from /tg/station at commit 6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae and github user @moonheart08" source: "https://github.com/space-wizards/space-station-14/" @@ -71,7 +46,7 @@ copyright: "Taken from /tg/station at commit 6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae" source: "https://github.com/space-wizards/space-station-14/pull/18676" -- files: ["shuttleblue.png", "shuttleorange.png", "shuttlepurple.png", "shuttlered.png", "shuttlewhite.png", "shuttlegrey.png", "shuttleblack.png", "green_circuit.png", "blue_circuit.png", "red_circuit.png"] +- files: ["red_circuit.png"] license: "CC-BY-SA-3.0" copyright: "Taken from Paradise Station at https://github.com/ParadiseSS13/Paradise/blob/master/icons/turf/floors.dmi" source: "https://github.com/ParadiseSS13/Paradise" @@ -96,7 +71,7 @@ copyright: "Fortuna commit 2a9408a47e2f83d945335e4feeeeafb552173e6f, grasslight and dirt by Peptide based on grassdark.png and dirt." source: "https://github.com/FortunaSS13/Fortuna" -- files: ["steel_maint.png", "grating_maint.png", "wood_tile.png"] +- files: ["steel_maint.png", "grating_maint.png"] license: "CC-BY-SA-3.0" copyright: "by brainfood for space-station-14, ." source: "https://github.com/space-wizards/space-station-14/pull/12193" @@ -106,11 +81,6 @@ copyright: "Created by EmoGarbage404 (github) for space-station-14." source: "https://github.com/space-wizards/space-station-14/pull/13766" -- files: ["wood_broken.png"] - license: "CC-BY-SA-3.0" - copyright: "taken at https://github.com/ParadiseSS13/Paradise/blob/8b7f4c8b69c74c6de5a755272eb8d3520f3d87c7/icons/turf/floors.dmi" - source: "https://github.com/ParadiseSS13/Paradise" - - files: ["chromite.png"] license: "CC-BY-NC-SA-3.0" copyright: "taken at commit 0587dd16e28108bdf0b0a28e2caae4319845e861, and recolored by TheShuEd" @@ -126,7 +96,12 @@ copyright: "Created by TheShuEd (github) for space-station-14." source: "https://github.com/space-wizards/space-station-14/pull/24927" -- files: ["wood_large.png"] - license: "CC0-1.0" - copyright: "Created by ps3moira (github) for space-station-14." - source: "https://github.com/space-wizards/space-station-14/" +- files: ["dark.png", "dark_offset.png", "dark_mono.png", "dark_mini.png", "dark_herringbone.png", "dark_pavement.png", "dark_pavement_vertical.png", "steel_offset.png", "steel_mono.png", "steel_mini.png", "steel_herringbone.png", "steel_pavement.png", "steel_pavement_vertical.png", "white.png", "white_offset.png", "white_mono.png", "white_mini.png", "white_herringbone.png", "white_pavement.png", "white_pavement_vertical.png", "bar.png", "hydro.png", "lino.png", "silver.png", "steel_burnt.png", "steel_damaged.png", "rock_vault.png"] + license: "CC-BY-SA-4.0" + copyright: "Made by Dosharus and edited by Gersoon" + source: "https://github.com/WWhiteDreamProject/wwdpublic" + +- files: ["blue.png", "lime.png", "cafeteria.png", "checker_dark.png", "clown.png", "freezer.png", "rglass.png", "gold.png", "laundry.png", "mime.png", "plastic.png", "dark_plastic.png", "white_plastic.png", "super_reinforced.png", "wood.png", "wood_broken.png", "wood_large.png", "wood_tile.png", "plating.png", "plating_burnt.png", "plating_damaged.png", "showroom.png", "shuttleblack.png", "shuttlepurple.png", "shuttlegrey.png", "shuttleorange.png", "shuttlewhite.png", "asteroid_coarse.png", "asteroid_coarse_dug.png", "asteroid_grvel.png", "dark_diagonal.png", "dark_diagonal_mini.png", "steel_diagonal.png", "steel_diagonal_mini.png", "white_diagonal.png", "white_diagonal_mini.png", "blue_circuit.png", "green_circuit.png", "kitchen.png", "shuttlered.png", "shuttleblue.png", "steel.png"] + license: "CC-BY-SA-4.0" + copyright: "Made by Gersoon" + source: "https://github.com/WWhiteDreamProject/wwdpublic" \ No newline at end of file diff --git a/Resources/Textures/Tiles/bar.png b/Resources/Textures/Tiles/bar.png index d786d3ed76..a3d8d4600d 100644 Binary files a/Resources/Textures/Tiles/bar.png and b/Resources/Textures/Tiles/bar.png differ diff --git a/Resources/Textures/Tiles/blue.png b/Resources/Textures/Tiles/blue.png index c22f346144..2e881e2f84 100644 Binary files a/Resources/Textures/Tiles/blue.png and b/Resources/Textures/Tiles/blue.png differ diff --git a/Resources/Textures/Tiles/blue_circuit.png b/Resources/Textures/Tiles/blue_circuit.png index 529654b467..9a174ca607 100644 Binary files a/Resources/Textures/Tiles/blue_circuit.png and b/Resources/Textures/Tiles/blue_circuit.png differ diff --git a/Resources/Textures/Tiles/cafeteria.png b/Resources/Textures/Tiles/cafeteria.png index 451b0825f5..ae3c0366ab 100644 Binary files a/Resources/Textures/Tiles/cafeteria.png and b/Resources/Textures/Tiles/cafeteria.png differ diff --git a/Resources/Textures/Tiles/checker_dark.png b/Resources/Textures/Tiles/checker_dark.png index 3eefdfa34d..74186939b6 100644 Binary files a/Resources/Textures/Tiles/checker_dark.png and b/Resources/Textures/Tiles/checker_dark.png differ diff --git a/Resources/Textures/Tiles/clown.png b/Resources/Textures/Tiles/clown.png index d81a759b12..6a5364bc54 100644 Binary files a/Resources/Textures/Tiles/clown.png and b/Resources/Textures/Tiles/clown.png differ diff --git a/Resources/Textures/Tiles/dark.png b/Resources/Textures/Tiles/dark.png index 5574f32a19..5489708a63 100644 Binary files a/Resources/Textures/Tiles/dark.png and b/Resources/Textures/Tiles/dark.png differ diff --git a/Resources/Textures/Tiles/dark_diagonal.png b/Resources/Textures/Tiles/dark_diagonal.png index 22b474995a..8dfd89480e 100644 Binary files a/Resources/Textures/Tiles/dark_diagonal.png and b/Resources/Textures/Tiles/dark_diagonal.png differ diff --git a/Resources/Textures/Tiles/dark_diagonal_mini.png b/Resources/Textures/Tiles/dark_diagonal_mini.png index 12a1e64b42..91d0d88cb2 100644 Binary files a/Resources/Textures/Tiles/dark_diagonal_mini.png and b/Resources/Textures/Tiles/dark_diagonal_mini.png differ diff --git a/Resources/Textures/Tiles/dark_herringbone.png b/Resources/Textures/Tiles/dark_herringbone.png index 88b13a43b3..4a243606a6 100644 Binary files a/Resources/Textures/Tiles/dark_herringbone.png and b/Resources/Textures/Tiles/dark_herringbone.png differ diff --git a/Resources/Textures/Tiles/dark_mini.png b/Resources/Textures/Tiles/dark_mini.png index aeb982b732..5c8ee4a077 100644 Binary files a/Resources/Textures/Tiles/dark_mini.png and b/Resources/Textures/Tiles/dark_mini.png differ diff --git a/Resources/Textures/Tiles/dark_mono.png b/Resources/Textures/Tiles/dark_mono.png index 279a72f409..432c4120fa 100644 Binary files a/Resources/Textures/Tiles/dark_mono.png and b/Resources/Textures/Tiles/dark_mono.png differ diff --git a/Resources/Textures/Tiles/dark_offset.png b/Resources/Textures/Tiles/dark_offset.png index 422811bd8f..6ee0ea78c2 100644 Binary files a/Resources/Textures/Tiles/dark_offset.png and b/Resources/Textures/Tiles/dark_offset.png differ diff --git a/Resources/Textures/Tiles/dark_pavement.png b/Resources/Textures/Tiles/dark_pavement.png index 6ad0bc4209..029c37bc77 100644 Binary files a/Resources/Textures/Tiles/dark_pavement.png and b/Resources/Textures/Tiles/dark_pavement.png differ diff --git a/Resources/Textures/Tiles/dark_pavement_vertical.png b/Resources/Textures/Tiles/dark_pavement_vertical.png index 02f7735dcd..9c69a5e3d9 100644 Binary files a/Resources/Textures/Tiles/dark_pavement_vertical.png and b/Resources/Textures/Tiles/dark_pavement_vertical.png differ diff --git a/Resources/Textures/Tiles/dark_plastic.png b/Resources/Textures/Tiles/dark_plastic.png index 79e0ff407e..8f609f4166 100644 Binary files a/Resources/Textures/Tiles/dark_plastic.png and b/Resources/Textures/Tiles/dark_plastic.png differ diff --git a/Resources/Textures/Tiles/freezer.png b/Resources/Textures/Tiles/freezer.png index c49c56c784..a054e89465 100644 Binary files a/Resources/Textures/Tiles/freezer.png and b/Resources/Textures/Tiles/freezer.png differ diff --git a/Resources/Textures/Tiles/glass.png b/Resources/Textures/Tiles/glass.png index bc782a9c6c..7649ea7e9c 100644 Binary files a/Resources/Textures/Tiles/glass.png and b/Resources/Textures/Tiles/glass.png differ diff --git a/Resources/Textures/Tiles/gold.png b/Resources/Textures/Tiles/gold.png index de8e9b800c..aea19741a2 100644 Binary files a/Resources/Textures/Tiles/gold.png and b/Resources/Textures/Tiles/gold.png differ diff --git a/Resources/Textures/Tiles/green_circuit.png b/Resources/Textures/Tiles/green_circuit.png index c215175c49..7852646218 100644 Binary files a/Resources/Textures/Tiles/green_circuit.png and b/Resources/Textures/Tiles/green_circuit.png differ diff --git a/Resources/Textures/Tiles/hydro.png b/Resources/Textures/Tiles/hydro.png index 0d1c6fef23..adeaa3e2f5 100644 Binary files a/Resources/Textures/Tiles/hydro.png and b/Resources/Textures/Tiles/hydro.png differ diff --git a/Resources/Textures/Tiles/kitchen.png b/Resources/Textures/Tiles/kitchen.png index 38d4181bb0..85e11e61c4 100644 Binary files a/Resources/Textures/Tiles/kitchen.png and b/Resources/Textures/Tiles/kitchen.png differ diff --git a/Resources/Textures/Tiles/laundry.png b/Resources/Textures/Tiles/laundry.png index e89ae3d14c..523904e5af 100644 Binary files a/Resources/Textures/Tiles/laundry.png and b/Resources/Textures/Tiles/laundry.png differ diff --git a/Resources/Textures/Tiles/lime.png b/Resources/Textures/Tiles/lime.png index 3d421f3f7f..82112a618a 100644 Binary files a/Resources/Textures/Tiles/lime.png and b/Resources/Textures/Tiles/lime.png differ diff --git a/Resources/Textures/Tiles/lino.png b/Resources/Textures/Tiles/lino.png index 7528f1378a..4c60cbc539 100644 Binary files a/Resources/Textures/Tiles/lino.png and b/Resources/Textures/Tiles/lino.png differ diff --git a/Resources/Textures/Tiles/mime.png b/Resources/Textures/Tiles/mime.png index bd85fa6111..8ed9cd3f01 100644 Binary files a/Resources/Textures/Tiles/mime.png and b/Resources/Textures/Tiles/mime.png differ diff --git a/Resources/Textures/Tiles/plastic.png b/Resources/Textures/Tiles/plastic.png index 8b004d5164..38d2fb9267 100644 Binary files a/Resources/Textures/Tiles/plastic.png and b/Resources/Textures/Tiles/plastic.png differ diff --git a/Resources/Textures/Tiles/plating.png b/Resources/Textures/Tiles/plating.png index 5bdbadaa6a..5ceab258c7 100644 Binary files a/Resources/Textures/Tiles/plating.png and b/Resources/Textures/Tiles/plating.png differ diff --git a/Resources/Textures/Tiles/plating_burnt.png b/Resources/Textures/Tiles/plating_burnt.png index 899e6c9188..31a7b5e47d 100644 Binary files a/Resources/Textures/Tiles/plating_burnt.png and b/Resources/Textures/Tiles/plating_burnt.png differ diff --git a/Resources/Textures/Tiles/plating_damaged.png b/Resources/Textures/Tiles/plating_damaged.png index 03984d0942..0aaa70bfad 100644 Binary files a/Resources/Textures/Tiles/plating_damaged.png and b/Resources/Textures/Tiles/plating_damaged.png differ diff --git a/Resources/Textures/Tiles/rglass.png b/Resources/Textures/Tiles/rglass.png index 6dd3bb5917..a5333b028e 100644 Binary files a/Resources/Textures/Tiles/rglass.png and b/Resources/Textures/Tiles/rglass.png differ diff --git a/Resources/Textures/Tiles/rock_vault.png b/Resources/Textures/Tiles/rock_vault.png index 4b05bf4a12..40f85f6ead 100644 Binary files a/Resources/Textures/Tiles/rock_vault.png and b/Resources/Textures/Tiles/rock_vault.png differ diff --git a/Resources/Textures/Tiles/showroom.png b/Resources/Textures/Tiles/showroom.png index 0026f2a645..916007485d 100644 Binary files a/Resources/Textures/Tiles/showroom.png and b/Resources/Textures/Tiles/showroom.png differ diff --git a/Resources/Textures/Tiles/shuttleblack.png b/Resources/Textures/Tiles/shuttleblack.png index 8f3981a39f..ba564d7910 100644 Binary files a/Resources/Textures/Tiles/shuttleblack.png and b/Resources/Textures/Tiles/shuttleblack.png differ diff --git a/Resources/Textures/Tiles/shuttleblue.png b/Resources/Textures/Tiles/shuttleblue.png index 98d7ea81d8..37b3593d79 100644 Binary files a/Resources/Textures/Tiles/shuttleblue.png and b/Resources/Textures/Tiles/shuttleblue.png differ diff --git a/Resources/Textures/Tiles/shuttlegrey.png b/Resources/Textures/Tiles/shuttlegrey.png index 8ffd372ab0..72cbd59986 100644 Binary files a/Resources/Textures/Tiles/shuttlegrey.png and b/Resources/Textures/Tiles/shuttlegrey.png differ diff --git a/Resources/Textures/Tiles/shuttleorange.png b/Resources/Textures/Tiles/shuttleorange.png index 904d236f86..6af5d3182c 100644 Binary files a/Resources/Textures/Tiles/shuttleorange.png and b/Resources/Textures/Tiles/shuttleorange.png differ diff --git a/Resources/Textures/Tiles/shuttlepurple.png b/Resources/Textures/Tiles/shuttlepurple.png index 05601b839f..b552204bd5 100644 Binary files a/Resources/Textures/Tiles/shuttlepurple.png and b/Resources/Textures/Tiles/shuttlepurple.png differ diff --git a/Resources/Textures/Tiles/shuttlered.png b/Resources/Textures/Tiles/shuttlered.png index 8757c81aad..d3c1460d9d 100644 Binary files a/Resources/Textures/Tiles/shuttlered.png and b/Resources/Textures/Tiles/shuttlered.png differ diff --git a/Resources/Textures/Tiles/shuttlewhite.png b/Resources/Textures/Tiles/shuttlewhite.png index db7513c5ac..ab9e485a72 100644 Binary files a/Resources/Textures/Tiles/shuttlewhite.png and b/Resources/Textures/Tiles/shuttlewhite.png differ diff --git a/Resources/Textures/Tiles/silver.png b/Resources/Textures/Tiles/silver.png index 630adae28a..11e2606e2c 100644 Binary files a/Resources/Textures/Tiles/silver.png and b/Resources/Textures/Tiles/silver.png differ diff --git a/Resources/Textures/Tiles/steel.png b/Resources/Textures/Tiles/steel.png index e5a1ed2879..9594284ca2 100644 Binary files a/Resources/Textures/Tiles/steel.png and b/Resources/Textures/Tiles/steel.png differ diff --git a/Resources/Textures/Tiles/steel_burnt.png b/Resources/Textures/Tiles/steel_burnt.png index 646c285916..b166292d51 100644 Binary files a/Resources/Textures/Tiles/steel_burnt.png and b/Resources/Textures/Tiles/steel_burnt.png differ diff --git a/Resources/Textures/Tiles/steel_damaged.png b/Resources/Textures/Tiles/steel_damaged.png index c226b12c02..fc174661cb 100644 Binary files a/Resources/Textures/Tiles/steel_damaged.png and b/Resources/Textures/Tiles/steel_damaged.png differ diff --git a/Resources/Textures/Tiles/steel_diagonal.png b/Resources/Textures/Tiles/steel_diagonal.png index b0c1f6927d..796ea41063 100644 Binary files a/Resources/Textures/Tiles/steel_diagonal.png and b/Resources/Textures/Tiles/steel_diagonal.png differ diff --git a/Resources/Textures/Tiles/steel_diagonal_mini.png b/Resources/Textures/Tiles/steel_diagonal_mini.png index 51cbdf8b04..c386140573 100644 Binary files a/Resources/Textures/Tiles/steel_diagonal_mini.png and b/Resources/Textures/Tiles/steel_diagonal_mini.png differ diff --git a/Resources/Textures/Tiles/steel_herringbone.png b/Resources/Textures/Tiles/steel_herringbone.png index 19ae3bb871..04d97ddbf1 100644 Binary files a/Resources/Textures/Tiles/steel_herringbone.png and b/Resources/Textures/Tiles/steel_herringbone.png differ diff --git a/Resources/Textures/Tiles/steel_mini.png b/Resources/Textures/Tiles/steel_mini.png index 8fa958f3fe..d12d6aa655 100644 Binary files a/Resources/Textures/Tiles/steel_mini.png and b/Resources/Textures/Tiles/steel_mini.png differ diff --git a/Resources/Textures/Tiles/steel_mono.png b/Resources/Textures/Tiles/steel_mono.png index a2a72581e0..78239c40aa 100644 Binary files a/Resources/Textures/Tiles/steel_mono.png and b/Resources/Textures/Tiles/steel_mono.png differ diff --git a/Resources/Textures/Tiles/steel_offset.png b/Resources/Textures/Tiles/steel_offset.png index 796fbcd595..add36ee6af 100644 Binary files a/Resources/Textures/Tiles/steel_offset.png and b/Resources/Textures/Tiles/steel_offset.png differ diff --git a/Resources/Textures/Tiles/steel_pavement.png b/Resources/Textures/Tiles/steel_pavement.png index 200471ea99..f1536b8333 100644 Binary files a/Resources/Textures/Tiles/steel_pavement.png and b/Resources/Textures/Tiles/steel_pavement.png differ diff --git a/Resources/Textures/Tiles/steel_pavement_vertical.png b/Resources/Textures/Tiles/steel_pavement_vertical.png index 950a2c0e5f..1a828c6866 100644 Binary files a/Resources/Textures/Tiles/steel_pavement_vertical.png and b/Resources/Textures/Tiles/steel_pavement_vertical.png differ diff --git a/Resources/Textures/Tiles/super_reinforced.png b/Resources/Textures/Tiles/super_reinforced.png index cff37b0ff8..1e60331908 100644 Binary files a/Resources/Textures/Tiles/super_reinforced.png and b/Resources/Textures/Tiles/super_reinforced.png differ diff --git a/Resources/Textures/Tiles/white.png b/Resources/Textures/Tiles/white.png index 048c1fe179..0ebd61d1ae 100644 Binary files a/Resources/Textures/Tiles/white.png and b/Resources/Textures/Tiles/white.png differ diff --git a/Resources/Textures/Tiles/white_diagonal.png b/Resources/Textures/Tiles/white_diagonal.png index e9d52ab7d9..490987b116 100644 Binary files a/Resources/Textures/Tiles/white_diagonal.png and b/Resources/Textures/Tiles/white_diagonal.png differ diff --git a/Resources/Textures/Tiles/white_diagonal_mini.png b/Resources/Textures/Tiles/white_diagonal_mini.png index e4e32c65cd..f389970d61 100644 Binary files a/Resources/Textures/Tiles/white_diagonal_mini.png and b/Resources/Textures/Tiles/white_diagonal_mini.png differ diff --git a/Resources/Textures/Tiles/white_herringbone.png b/Resources/Textures/Tiles/white_herringbone.png index 80d006810b..121e2d9fe8 100644 Binary files a/Resources/Textures/Tiles/white_herringbone.png and b/Resources/Textures/Tiles/white_herringbone.png differ diff --git a/Resources/Textures/Tiles/white_mini.png b/Resources/Textures/Tiles/white_mini.png index 717ec462c4..d51a0e34ad 100644 Binary files a/Resources/Textures/Tiles/white_mini.png and b/Resources/Textures/Tiles/white_mini.png differ diff --git a/Resources/Textures/Tiles/white_mono.png b/Resources/Textures/Tiles/white_mono.png index 763f08b9d2..5360fd4655 100644 Binary files a/Resources/Textures/Tiles/white_mono.png and b/Resources/Textures/Tiles/white_mono.png differ diff --git a/Resources/Textures/Tiles/white_offset.png b/Resources/Textures/Tiles/white_offset.png index 0b6239a324..70bb0ccd34 100644 Binary files a/Resources/Textures/Tiles/white_offset.png and b/Resources/Textures/Tiles/white_offset.png differ diff --git a/Resources/Textures/Tiles/white_pavement.png b/Resources/Textures/Tiles/white_pavement.png index 69da122ba6..15d05f1688 100644 Binary files a/Resources/Textures/Tiles/white_pavement.png and b/Resources/Textures/Tiles/white_pavement.png differ diff --git a/Resources/Textures/Tiles/white_pavement_vertical.png b/Resources/Textures/Tiles/white_pavement_vertical.png index 20d887903c..3ba25b1475 100644 Binary files a/Resources/Textures/Tiles/white_pavement_vertical.png and b/Resources/Textures/Tiles/white_pavement_vertical.png differ diff --git a/Resources/Textures/Tiles/white_plastic.png b/Resources/Textures/Tiles/white_plastic.png index b31ea0e855..e3aa5a59f8 100644 Binary files a/Resources/Textures/Tiles/white_plastic.png and b/Resources/Textures/Tiles/white_plastic.png differ diff --git a/Resources/Textures/Tiles/wood.png b/Resources/Textures/Tiles/wood.png index 1b4a318903..fbe98d47e1 100644 Binary files a/Resources/Textures/Tiles/wood.png and b/Resources/Textures/Tiles/wood.png differ diff --git a/Resources/Textures/Tiles/wood_broken.png b/Resources/Textures/Tiles/wood_broken.png index a025740cf6..9f50b1ea2a 100644 Binary files a/Resources/Textures/Tiles/wood_broken.png and b/Resources/Textures/Tiles/wood_broken.png differ diff --git a/Resources/Textures/Tiles/wood_large.png b/Resources/Textures/Tiles/wood_large.png index 722c462a08..bc12b0c9e3 100644 Binary files a/Resources/Textures/Tiles/wood_large.png and b/Resources/Textures/Tiles/wood_large.png differ diff --git a/Resources/Textures/Tiles/wood_tile.png b/Resources/Textures/Tiles/wood_tile.png index db0209ed5b..5e568e7eaf 100644 Binary files a/Resources/Textures/Tiles/wood_tile.png and b/Resources/Textures/Tiles/wood_tile.png differ diff --git a/Resources/Textures/Tips/tippy.rsi/down.png b/Resources/Textures/Tips/tippy.rsi/down.png new file mode 100644 index 0000000000..bdfcf315b6 Binary files /dev/null and b/Resources/Textures/Tips/tippy.rsi/down.png differ diff --git a/Resources/Textures/Tips/tippy.rsi/left.png b/Resources/Textures/Tips/tippy.rsi/left.png new file mode 100644 index 0000000000..f2293c6111 Binary files /dev/null and b/Resources/Textures/Tips/tippy.rsi/left.png differ diff --git a/Resources/Textures/Tips/tippy.rsi/meta.json b/Resources/Textures/Tips/tippy.rsi/meta.json new file mode 100644 index 0000000000..68942d731c --- /dev/null +++ b/Resources/Textures/Tips/tippy.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "down" + }, + { + "name": "left" + }, + { + "name": "right" + } + ] +} diff --git a/Resources/Textures/Tips/tippy.rsi/right.png b/Resources/Textures/Tips/tippy.rsi/right.png new file mode 100644 index 0000000000..900262932d Binary files /dev/null and b/Resources/Textures/Tips/tippy.rsi/right.png differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/backpack.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Backpacks/backpack.rsi/equipped-BACKPACK.png deleted file mode 100644 index f5f32aa348..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/backpack.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/backpack.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Backpacks/backpack.rsi/icon.png deleted file mode 100644 index 22f7831b46..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/backpack.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/backpack.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Backpacks/backpack.rsi/inhand-left.png deleted file mode 100644 index 70956a4e19..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/backpack.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/backpack.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Backpacks/backpack.rsi/inhand-right.png deleted file mode 100644 index b4c42b207f..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/backpack.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/backpack.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Backpacks/backpack.rsi/meta.json deleted file mode 100644 index fce8c90ce8..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Backpacks/backpack.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/captain.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Backpacks/captain.rsi/equipped-BACKPACK.png deleted file mode 100644 index cc1afccae5..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/captain.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/captain.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Backpacks/captain.rsi/icon.png deleted file mode 100644 index 6050ab8de7..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/captain.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/captain.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Backpacks/captain.rsi/inhand-left.png deleted file mode 100644 index 432b2bb5a5..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/captain.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/captain.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Backpacks/captain.rsi/inhand-right.png deleted file mode 100644 index ceb964c958..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/captain.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/captain.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Backpacks/captain.rsi/meta.json deleted file mode 100644 index fce8c90ce8..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Backpacks/captain.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/chemistry.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Backpacks/chemistry.rsi/equipped-BACKPACK.png deleted file mode 100644 index 5f22d5a11d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/chemistry.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/chemistry.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Backpacks/chemistry.rsi/icon.png deleted file mode 100644 index 528364ad49..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/chemistry.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/chemistry.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Backpacks/chemistry.rsi/inhand-left.png deleted file mode 100644 index d9b52e3dd8..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/chemistry.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/chemistry.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Backpacks/chemistry.rsi/inhand-right.png deleted file mode 100644 index 9461cb38c8..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/chemistry.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/chemistry.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Backpacks/chemistry.rsi/meta.json deleted file mode 100644 index fce8c90ce8..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Backpacks/chemistry.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/clown.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Backpacks/clown.rsi/equipped-BACKPACK.png deleted file mode 100644 index 24efbeba2c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/clown.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/clown.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Backpacks/clown.rsi/icon.png deleted file mode 100644 index fe84ed5b71..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/clown.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/clown.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Backpacks/clown.rsi/inhand-left.png deleted file mode 100644 index a3f3b84ce3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/clown.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/clown.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Backpacks/clown.rsi/inhand-right.png deleted file mode 100644 index cc5279f936..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/clown.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/clown.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Backpacks/clown.rsi/meta.json deleted file mode 100644 index 3916598b11..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Backpacks/clown.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/cluwne.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Backpacks/cluwne.rsi/equipped-BACKPACK.png deleted file mode 100644 index 11ed6a9da4..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/cluwne.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/cluwne.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Backpacks/cluwne.rsi/icon.png deleted file mode 100644 index 1928f42d22..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/cluwne.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/cluwne.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Backpacks/cluwne.rsi/meta.json deleted file mode 100644 index 68b4471db4..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Backpacks/cluwne.rsi/meta.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/engineering.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Backpacks/engineering.rsi/equipped-BACKPACK.png deleted file mode 100644 index cd4dce8756..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/engineering.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/engineering.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Backpacks/engineering.rsi/icon.png deleted file mode 100644 index 6918decb91..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/engineering.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/engineering.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Backpacks/engineering.rsi/inhand-left.png deleted file mode 100644 index c1b5fe8dd8..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/engineering.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/engineering.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Backpacks/engineering.rsi/inhand-right.png deleted file mode 100644 index f1259e2f7c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/engineering.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/engineering.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Backpacks/engineering.rsi/meta.json deleted file mode 100644 index fce8c90ce8..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Backpacks/engineering.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/genetics.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Backpacks/genetics.rsi/equipped-BACKPACK.png deleted file mode 100644 index 28c98751eb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/genetics.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/genetics.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Backpacks/genetics.rsi/icon.png deleted file mode 100644 index b14fab5de0..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/genetics.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/genetics.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Backpacks/genetics.rsi/inhand-left.png deleted file mode 100644 index 098742e0e3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/genetics.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/genetics.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Backpacks/genetics.rsi/inhand-right.png deleted file mode 100644 index 61769e457e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/genetics.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/genetics.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Backpacks/genetics.rsi/meta.json deleted file mode 100644 index cfb4c7b254..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Backpacks/genetics.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/15c87fd15fe205e4fc71997e48311e06ff02a1d4", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/hydroponics.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Backpacks/hydroponics.rsi/equipped-BACKPACK.png deleted file mode 100644 index 6174410417..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/hydroponics.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/hydroponics.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Backpacks/hydroponics.rsi/icon.png deleted file mode 100644 index b79c807ae6..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/hydroponics.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/hydroponics.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Backpacks/hydroponics.rsi/inhand-left.png deleted file mode 100644 index 85031c086a..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/hydroponics.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/hydroponics.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Backpacks/hydroponics.rsi/inhand-right.png deleted file mode 100644 index ddba7a891e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/hydroponics.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/hydroponics.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Backpacks/hydroponics.rsi/meta.json deleted file mode 100644 index fce8c90ce8..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Backpacks/hydroponics.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/medical.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Backpacks/medical.rsi/equipped-BACKPACK.png deleted file mode 100644 index 8d3834833b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/medical.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/medical.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Backpacks/medical.rsi/icon.png deleted file mode 100644 index 99af2a17c7..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/medical.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/medical.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Backpacks/medical.rsi/inhand-left.png deleted file mode 100644 index d57f9cbd9c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/medical.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/medical.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Backpacks/medical.rsi/inhand-right.png deleted file mode 100644 index 81b6f71ba3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/medical.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/medical.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Backpacks/medical.rsi/meta.json deleted file mode 100644 index fce8c90ce8..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Backpacks/medical.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/mime.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Backpacks/mime.rsi/equipped-BACKPACK.png deleted file mode 100644 index 2538c8d433..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/mime.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/mime.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Backpacks/mime.rsi/icon.png deleted file mode 100644 index 5037ee3687..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/mime.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/mime.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Backpacks/mime.rsi/inhand-left.png deleted file mode 100644 index 9d9dbbd30f..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/mime.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/mime.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Backpacks/mime.rsi/inhand-right.png deleted file mode 100644 index e6333b224b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/mime.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/mime.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Backpacks/mime.rsi/meta.json deleted file mode 100644 index fce8c90ce8..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Backpacks/mime.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/science.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Backpacks/science.rsi/equipped-BACKPACK.png deleted file mode 100644 index 23afd82caf..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/science.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/science.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Backpacks/science.rsi/icon.png deleted file mode 100644 index bc9cca02f3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/science.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/science.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Backpacks/science.rsi/inhand-left.png deleted file mode 100644 index af2c3a61a2..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/science.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/science.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Backpacks/science.rsi/inhand-right.png deleted file mode 100644 index 876366f932..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/science.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/science.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Backpacks/science.rsi/meta.json deleted file mode 100644 index fce8c90ce8..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Backpacks/science.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/security.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Backpacks/security.rsi/equipped-BACKPACK.png deleted file mode 100644 index 36b6899627..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/security.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/security.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Backpacks/security.rsi/icon.png deleted file mode 100644 index 19115dfeb3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/security.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/security.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Backpacks/security.rsi/inhand-left.png deleted file mode 100644 index 9fe676d2ff..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/security.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/security.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Backpacks/security.rsi/inhand-right.png deleted file mode 100644 index c3e3536c6e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/security.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/security.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Backpacks/security.rsi/meta.json deleted file mode 100644 index aa3381b0eb..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Backpacks/security.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/virology.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Backpacks/virology.rsi/equipped-BACKPACK.png deleted file mode 100644 index 21003e9eef..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/virology.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/virology.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Backpacks/virology.rsi/icon.png deleted file mode 100644 index ab4b059df1..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/virology.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/virology.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Backpacks/virology.rsi/inhand-left.png deleted file mode 100644 index 8c4c8b76cb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/virology.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/virology.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Backpacks/virology.rsi/inhand-right.png deleted file mode 100644 index 835ed4a33d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Backpacks/virology.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Backpacks/virology.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Backpacks/virology.rsi/meta.json deleted file mode 100644 index fce8c90ce8..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Backpacks/virology.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Duffels/chemistry.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Duffels/chemistry.rsi/equipped-BACKPACK.png deleted file mode 100644 index 2a9c62f4e9..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Duffels/chemistry.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Duffels/chemistry.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Duffels/chemistry.rsi/icon.png deleted file mode 100644 index ce67965c1e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Duffels/chemistry.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Duffels/chemistry.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Duffels/chemistry.rsi/inhand-left.png deleted file mode 100644 index 947881f08d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Duffels/chemistry.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Duffels/chemistry.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Duffels/chemistry.rsi/inhand-right.png deleted file mode 100644 index 45fe1f42b2..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Duffels/chemistry.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Duffels/chemistry.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Duffels/chemistry.rsi/meta.json deleted file mode 100644 index 89236692cc..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Duffels/chemistry.rsi/meta.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Duffels/clown.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Duffels/clown.rsi/equipped-BACKPACK.png deleted file mode 100644 index 614080f172..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Duffels/clown.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Duffels/clown.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Duffels/clown.rsi/icon.png deleted file mode 100644 index 27884859c5..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Duffels/clown.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Duffels/clown.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Duffels/clown.rsi/inhand-left.png deleted file mode 100644 index c9d6c9db60..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Duffels/clown.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Duffels/clown.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Duffels/clown.rsi/inhand-right.png deleted file mode 100644 index e8824368a6..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Duffels/clown.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Duffels/clown.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Duffels/clown.rsi/meta.json deleted file mode 100644 index 3916598b11..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Duffels/clown.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Duffels/science.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Duffels/science.rsi/equipped-BACKPACK.png deleted file mode 100644 index 9be4782b18..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Duffels/science.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Duffels/science.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Duffels/science.rsi/icon.png deleted file mode 100644 index 6655fbb71b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Duffels/science.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Duffels/science.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Duffels/science.rsi/inhand-left.png deleted file mode 100644 index f5fb0af9be..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Duffels/science.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Duffels/science.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Duffels/science.rsi/inhand-right.png deleted file mode 100644 index da549fec4c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Duffels/science.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Duffels/science.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Duffels/science.rsi/meta.json deleted file mode 100644 index 89236692cc..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Duffels/science.rsi/meta.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon", - "directions": 1 - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/captain.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Satchels/captain.rsi/equipped-BACKPACK.png deleted file mode 100644 index ae70111e1e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/captain.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/captain.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Satchels/captain.rsi/icon.png deleted file mode 100644 index 3b0bd0547c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/captain.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/captain.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Satchels/captain.rsi/inhand-left.png deleted file mode 100644 index 32cc456a07..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/captain.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/captain.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Satchels/captain.rsi/inhand-right.png deleted file mode 100644 index 0df9cc21c1..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/captain.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/captain.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Satchels/captain.rsi/meta.json deleted file mode 100644 index fce8c90ce8..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Satchels/captain.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/chemistry.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Satchels/chemistry.rsi/equipped-BACKPACK.png deleted file mode 100644 index 365e30b686..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/chemistry.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/chemistry.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Satchels/chemistry.rsi/icon.png deleted file mode 100644 index 8feb895010..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/chemistry.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/chemistry.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Satchels/chemistry.rsi/inhand-left.png deleted file mode 100644 index 987d684afa..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/chemistry.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/chemistry.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Satchels/chemistry.rsi/inhand-right.png deleted file mode 100644 index 772211909b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/chemistry.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/chemistry.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Satchels/chemistry.rsi/meta.json deleted file mode 100644 index fce8c90ce8..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Satchels/chemistry.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/clown.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Satchels/clown.rsi/equipped-BACKPACK.png deleted file mode 100644 index 722f83d027..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/clown.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/clown.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Satchels/clown.rsi/icon.png deleted file mode 100644 index eaedae5a9b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/clown.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/clown.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Satchels/clown.rsi/inhand-left.png deleted file mode 100644 index f10df92afd..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/clown.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/clown.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Satchels/clown.rsi/inhand-right.png deleted file mode 100644 index 4cb86bd338..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/clown.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/clown.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Satchels/clown.rsi/meta.json deleted file mode 100644 index 3916598b11..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Satchels/clown.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/engineering.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Satchels/engineering.rsi/equipped-BACKPACK.png deleted file mode 100644 index 7a84e0c0e3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/engineering.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/engineering.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Satchels/engineering.rsi/icon.png deleted file mode 100644 index e4b9442f02..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/engineering.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/engineering.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Satchels/engineering.rsi/inhand-left.png deleted file mode 100644 index 09db285b13..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/engineering.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/engineering.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Satchels/engineering.rsi/inhand-right.png deleted file mode 100644 index 5d60aa8c33..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/engineering.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/engineering.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Satchels/engineering.rsi/meta.json deleted file mode 100644 index fce8c90ce8..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Satchels/engineering.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/hydroponics.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Satchels/hydroponics.rsi/equipped-BACKPACK.png deleted file mode 100644 index 9ae968c9d0..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/hydroponics.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/hydroponics.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Satchels/hydroponics.rsi/icon.png deleted file mode 100644 index 684aab50d7..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/hydroponics.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/hydroponics.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Satchels/hydroponics.rsi/inhand-left.png deleted file mode 100644 index 3a99826f69..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/hydroponics.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/hydroponics.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Satchels/hydroponics.rsi/inhand-right.png deleted file mode 100644 index f486b2d0b9..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/hydroponics.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/hydroponics.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Satchels/hydroponics.rsi/meta.json deleted file mode 100644 index fce8c90ce8..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Satchels/hydroponics.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/medical.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Satchels/medical.rsi/equipped-BACKPACK.png deleted file mode 100644 index 8e2fc11935..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/medical.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/medical.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Satchels/medical.rsi/icon.png deleted file mode 100644 index b6840d14b7..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/medical.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/medical.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Satchels/medical.rsi/inhand-left.png deleted file mode 100644 index bb089a8d44..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/medical.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/medical.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Satchels/medical.rsi/inhand-right.png deleted file mode 100644 index 9b292a1d3d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/medical.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/medical.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Satchels/medical.rsi/meta.json deleted file mode 100644 index fce8c90ce8..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Satchels/medical.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/satchel.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Satchels/satchel.rsi/equipped-BACKPACK.png deleted file mode 100644 index 34e981394a..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/satchel.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/satchel.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Satchels/satchel.rsi/icon.png deleted file mode 100644 index 9e72773f76..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/satchel.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/satchel.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Satchels/satchel.rsi/inhand-left.png deleted file mode 100644 index 2f5f5f35cd..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/satchel.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/satchel.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Satchels/satchel.rsi/inhand-right.png deleted file mode 100644 index 7952889f7d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/satchel.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/satchel.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Satchels/satchel.rsi/meta.json deleted file mode 100644 index fce8c90ce8..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Satchels/satchel.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/science.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Satchels/science.rsi/equipped-BACKPACK.png deleted file mode 100644 index 7c1da2349b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/science.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/science.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Satchels/science.rsi/icon.png deleted file mode 100644 index 1b1c1e0ebf..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/science.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/science.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Satchels/science.rsi/inhand-left.png deleted file mode 100644 index b910c8a3dc..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/science.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/science.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Satchels/science.rsi/inhand-right.png deleted file mode 100644 index a3d1c9fe22..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/science.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/science.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Satchels/science.rsi/meta.json deleted file mode 100644 index fce8c90ce8..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Satchels/science.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/security.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Clothing/Back/Satchels/security.rsi/equipped-BACKPACK.png deleted file mode 100644 index db7f22da18..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/security.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/security.rsi/icon.png b/Resources/Textures/_White/Clothing/Back/Satchels/security.rsi/icon.png deleted file mode 100644 index c36b8c036d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/security.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/security.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Back/Satchels/security.rsi/inhand-left.png deleted file mode 100644 index 2311df1b11..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/security.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/security.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Back/Satchels/security.rsi/inhand-right.png deleted file mode 100644 index 6219205405..0000000000 Binary files a/Resources/Textures/_White/Clothing/Back/Satchels/security.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Back/Satchels/security.rsi/meta.json b/Resources/Textures/_White/Clothing/Back/Satchels/security.rsi/meta.json deleted file mode 100644 index fce8c90ce8..0000000000 --- a/Resources/Textures/_White/Clothing/Back/Satchels/security.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Eyes/Goggles/nightvision.rsi/equipped-EYES-off.png b/Resources/Textures/_White/Clothing/Eyes/Goggles/nightvision.rsi/equipped-EYES-off.png new file mode 100644 index 0000000000..b63f30fc71 Binary files /dev/null and b/Resources/Textures/_White/Clothing/Eyes/Goggles/nightvision.rsi/equipped-EYES-off.png differ diff --git a/Resources/Textures/_White/Clothing/Eyes/Goggles/nightvision.rsi/equipped-EYES.png b/Resources/Textures/_White/Clothing/Eyes/Goggles/nightvision.rsi/equipped-EYES.png new file mode 100644 index 0000000000..199c44122b Binary files /dev/null and b/Resources/Textures/_White/Clothing/Eyes/Goggles/nightvision.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/_White/Clothing/Eyes/Goggles/nightvision.rsi/icon.png b/Resources/Textures/_White/Clothing/Eyes/Goggles/nightvision.rsi/icon.png new file mode 100644 index 0000000000..bf770f70f8 Binary files /dev/null and b/Resources/Textures/_White/Clothing/Eyes/Goggles/nightvision.rsi/icon.png differ diff --git a/Resources/Textures/_White/Clothing/Eyes/Goggles/nightvision.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Eyes/Goggles/nightvision.rsi/inhand-left.png new file mode 100644 index 0000000000..995b37471b Binary files /dev/null and b/Resources/Textures/_White/Clothing/Eyes/Goggles/nightvision.rsi/inhand-left.png differ diff --git a/Resources/Textures/_White/Clothing/Eyes/Goggles/nightvision.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Eyes/Goggles/nightvision.rsi/inhand-right.png new file mode 100644 index 0000000000..c3efa67f83 Binary files /dev/null and b/Resources/Textures/_White/Clothing/Eyes/Goggles/nightvision.rsi/inhand-right.png differ diff --git a/Resources/Textures/_White/Clothing/Eyes/Goggles/nightvision.rsi/meta.json b/Resources/Textures/_White/Clothing/Eyes/Goggles/nightvision.rsi/meta.json new file mode 100644 index 0000000000..987b20b9af --- /dev/null +++ b/Resources/Textures/_White/Clothing/Eyes/Goggles/nightvision.rsi/meta.json @@ -0,0 +1,48 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-EYES", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "equipped-EYES-off", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_White/Clothing/Eyes/Goggles/thermal.rsi/equipped-EYES.png b/Resources/Textures/_White/Clothing/Eyes/Goggles/thermal.rsi/equipped-EYES.png new file mode 100644 index 0000000000..9bef0a8c05 Binary files /dev/null and b/Resources/Textures/_White/Clothing/Eyes/Goggles/thermal.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/_White/Clothing/Eyes/Goggles/thermal.rsi/icon.png b/Resources/Textures/_White/Clothing/Eyes/Goggles/thermal.rsi/icon.png new file mode 100644 index 0000000000..3d5f8ef9b6 Binary files /dev/null and b/Resources/Textures/_White/Clothing/Eyes/Goggles/thermal.rsi/icon.png differ diff --git a/Resources/Textures/_White/Clothing/Eyes/Goggles/thermal.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Eyes/Goggles/thermal.rsi/inhand-left.png new file mode 100644 index 0000000000..bf67e35d40 Binary files /dev/null and b/Resources/Textures/_White/Clothing/Eyes/Goggles/thermal.rsi/inhand-left.png differ diff --git a/Resources/Textures/_White/Clothing/Eyes/Goggles/thermal.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Eyes/Goggles/thermal.rsi/inhand-right.png new file mode 100644 index 0000000000..4ede078291 Binary files /dev/null and b/Resources/Textures/_White/Clothing/Eyes/Goggles/thermal.rsi/inhand-right.png differ diff --git a/Resources/Textures/_White/Clothing/Eyes/Goggles/thermal.rsi/meta.json b/Resources/Textures/_White/Clothing/Eyes/Goggles/thermal.rsi/meta.json new file mode 100644 index 0000000000..205508acfa --- /dev/null +++ b/Resources/Textures/_White/Clothing/Eyes/Goggles/thermal.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/black.rsi/equipped-HAND.png b/Resources/Textures/_White/Clothing/Hands/Gloves/Color/black.rsi/equipped-HAND.png deleted file mode 100644 index 5599a2914e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/black.rsi/equipped-HAND.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/black.rsi/icon.png b/Resources/Textures/_White/Clothing/Hands/Gloves/Color/black.rsi/icon.png deleted file mode 100644 index 44e5dfe38a..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/black.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/black.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Hands/Gloves/Color/black.rsi/inhand-left.png deleted file mode 100644 index 8f8953d635..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/black.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/black.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Hands/Gloves/Color/black.rsi/inhand-right.png deleted file mode 100644 index dec3a7db6d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/black.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/black.rsi/meta.json b/Resources/Textures/_White/Clothing/Hands/Gloves/Color/black.rsi/meta.json deleted file mode 100644 index 88e3ebd509..0000000000 --- a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/black.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HAND", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/color.rsi/equipped-HAND.png b/Resources/Textures/_White/Clothing/Hands/Gloves/Color/color.rsi/equipped-HAND.png deleted file mode 100644 index 793a3115b7..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/color.rsi/equipped-HAND.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/color.rsi/icon.png b/Resources/Textures/_White/Clothing/Hands/Gloves/Color/color.rsi/icon.png deleted file mode 100644 index d01ea7d912..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/color.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/color.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Hands/Gloves/Color/color.rsi/inhand-left.png deleted file mode 100644 index b9842fb35b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/color.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/color.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Hands/Gloves/Color/color.rsi/inhand-right.png deleted file mode 100644 index a92a411614..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/color.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/color.rsi/meta.json b/Resources/Textures/_White/Clothing/Hands/Gloves/Color/color.rsi/meta.json deleted file mode 100644 index 7a0bf77e1b..0000000000 --- a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/color.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e and modified by Flareguy for Space Station 14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HAND", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/yellow.rsi/equipped-HAND-vox.png b/Resources/Textures/_White/Clothing/Hands/Gloves/Color/yellow.rsi/equipped-HAND-vox.png deleted file mode 100644 index b7f2122c19..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/yellow.rsi/equipped-HAND-vox.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/yellow.rsi/equipped-HAND.png b/Resources/Textures/_White/Clothing/Hands/Gloves/Color/yellow.rsi/equipped-HAND.png deleted file mode 100644 index f7a0c87185..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/yellow.rsi/equipped-HAND.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/yellow.rsi/icon.png b/Resources/Textures/_White/Clothing/Hands/Gloves/Color/yellow.rsi/icon.png deleted file mode 100644 index e22806c85d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/yellow.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/yellow.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Hands/Gloves/Color/yellow.rsi/inhand-left.png deleted file mode 100644 index 8e8542213f..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/yellow.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/yellow.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Hands/Gloves/Color/yellow.rsi/inhand-right.png deleted file mode 100644 index a99658a193..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/yellow.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/yellow.rsi/meta.json b/Resources/Textures/_White/Clothing/Hands/Gloves/Color/yellow.rsi/meta.json deleted file mode 100644 index 8cfe2998ff..0000000000 --- a/Resources/Textures/_White/Clothing/Hands/Gloves/Color/yellow.rsi/meta.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HAND", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-HAND-vox", - "directions": 4, - "delays": [[1.0], [1.0], [1.0], [1.0]] - } - ] - } diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/captain.rsi/equipped-HAND.png b/Resources/Textures/_White/Clothing/Hands/Gloves/captain.rsi/equipped-HAND.png deleted file mode 100644 index f0733cd45a..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/captain.rsi/equipped-HAND.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/captain.rsi/icon.png b/Resources/Textures/_White/Clothing/Hands/Gloves/captain.rsi/icon.png deleted file mode 100644 index ac1b020d5b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/captain.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/captain.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Hands/Gloves/captain.rsi/inhand-left.png deleted file mode 100644 index 1e397d6bab..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/captain.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/captain.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Hands/Gloves/captain.rsi/inhand-right.png deleted file mode 100644 index d7c09087df..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/captain.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/captain.rsi/meta.json b/Resources/Textures/_White/Clothing/Hands/Gloves/captain.rsi/meta.json deleted file mode 100644 index 23e44f0be0..0000000000 --- a/Resources/Textures/_White/Clothing/Hands/Gloves/captain.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/69842/commits/d8138946b0ed06fced522729ac8eaa0596864329 edited by Skarletto (github)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HAND", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/fingerless.rsi/equipped-HAND.png b/Resources/Textures/_White/Clothing/Hands/Gloves/fingerless.rsi/equipped-HAND.png deleted file mode 100644 index b49db4e5ed..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/fingerless.rsi/equipped-HAND.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/fingerless.rsi/icon.png b/Resources/Textures/_White/Clothing/Hands/Gloves/fingerless.rsi/icon.png deleted file mode 100644 index 70ba03167b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/fingerless.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/fingerless.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Hands/Gloves/fingerless.rsi/inhand-left.png deleted file mode 100644 index 8f8953d635..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/fingerless.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/fingerless.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Hands/Gloves/fingerless.rsi/inhand-right.png deleted file mode 100644 index dec3a7db6d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/fingerless.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/fingerless.rsi/meta.json b/Resources/Textures/_White/Clothing/Hands/Gloves/fingerless.rsi/meta.json deleted file mode 100644 index 74d3de59a4..0000000000 --- a/Resources/Textures/_White/Clothing/Hands/Gloves/fingerless.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/54ecdcc05bcaf335489938b1253a2a733ba12271", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HAND", - "directions": 4 - }, - { - "name": "equipped-HAND-body-slim", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/latex.rsi/equipped-HAND.png b/Resources/Textures/_White/Clothing/Hands/Gloves/latex.rsi/equipped-HAND.png deleted file mode 100644 index 57dd8882d3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/latex.rsi/equipped-HAND.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/latex.rsi/icon.png b/Resources/Textures/_White/Clothing/Hands/Gloves/latex.rsi/icon.png deleted file mode 100644 index 11237e02a9..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/latex.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/latex.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Hands/Gloves/latex.rsi/inhand-left.png deleted file mode 100644 index 5ec31202f1..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/latex.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/latex.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Hands/Gloves/latex.rsi/inhand-right.png deleted file mode 100644 index f9ea9a377a..0000000000 Binary files a/Resources/Textures/_White/Clothing/Hands/Gloves/latex.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Hands/Gloves/latex.rsi/meta.json b/Resources/Textures/_White/Clothing/Hands/Gloves/latex.rsi/meta.json deleted file mode 100644 index 88e3ebd509..0000000000 --- a/Resources/Textures/_White/Clothing/Hands/Gloves/latex.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HAND", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-light.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-light.png deleted file mode 100644 index 42bc45b005..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-light.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-unshaded.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-unshaded.png deleted file mode 100644 index 9cf59b849f..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-unshaded.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head.png deleted file mode 100644 index bdadc8ccee..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/icon-flash.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/icon-flash.png deleted file mode 100644 index a2ec510340..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/icon-flash.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/icon-unshaded.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/icon-unshaded.png deleted file mode 100644 index 4723be70cb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/icon-unshaded.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/icon.png deleted file mode 100644 index fad00b583c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-left-light.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-left-light.png deleted file mode 100644 index 9ee768d5ee..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-left-light.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-left-unshaded.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-left-unshaded.png deleted file mode 100644 index 8a7835b20d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-left-unshaded.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-left.png deleted file mode 100644 index e9ba55de1e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-right-light.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-right-light.png deleted file mode 100644 index 2990605237..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-right-light.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-right-unshaded.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-right-unshaded.png deleted file mode 100644 index 6c80725c0a..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-right-unshaded.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-right.png deleted file mode 100644 index 45d73f73df..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/light-overlay.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/light-overlay.png deleted file mode 100644 index 5347ab016e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/light-overlay.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json deleted file mode 100644 index 73eecc5a3f..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-unshaded" - }, - { - "name": "icon-flash" - }, - { - "name": "light-overlay" - }, - { - "name": "equipped-head", - "directions": 4 - }, - { - "name": "equipped-head-light", - "directions": 4 - }, - { - "name": "equipped-head-unshaded", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-left-unshaded", - "directions": 4 - }, - { - "name": "inhand-left-light", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "inhand-right-unshaded", - "directions": 4 - }, - { - "name": "inhand-right-light", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/capspace.rsi/icon-flash.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/capspace.rsi/icon-flash.png deleted file mode 100644 index 34f5200e3e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/capspace.rsi/icon-flash.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/capspace.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/capspace.rsi/icon.png deleted file mode 100644 index efb3981114..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/capspace.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/capspace.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hardsuits/capspace.rsi/meta.json deleted file mode 100644 index 8a9f40c738..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hardsuits/capspace.rsi/meta.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-flash" - }, - { - "name": "off-equipped-HELMET", - "directions": 4 - }, - { - "name": "on-equipped-HELMET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET.png deleted file mode 100644 index a5791940ea..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET.png deleted file mode 100644 index e81487c03c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/clown.rsi/icon-flash.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/clown.rsi/icon-flash.png deleted file mode 100644 index c3d5d0d893..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/clown.rsi/icon-flash.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/clown.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/clown.rsi/icon.png deleted file mode 100644 index 1dc2a32aac..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/clown.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/clown.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hardsuits/clown.rsi/meta.json deleted file mode 100644 index c022974702..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hardsuits/clown.rsi/meta.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-flash" - }, - { - "name": "off-equipped-HELMET", - "directions": 4 - }, - { - "name": "on-equipped-HELMET", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/clown.rsi/off-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/clown.rsi/off-equipped-HELMET.png deleted file mode 100644 index 8dc14d2960..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/clown.rsi/off-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/clown.rsi/on-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/clown.rsi/on-equipped-HELMET.png deleted file mode 100644 index ccf09a3e26..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/clown.rsi/on-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/cybersun.rsi/equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/cybersun.rsi/equipped-HELMET.png deleted file mode 100644 index 6815576fb6..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/cybersun.rsi/equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/cybersun.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/cybersun.rsi/icon.png deleted file mode 100644 index 8070f6af3a..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/cybersun.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/cybersun.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/cybersun.rsi/inhand-left.png deleted file mode 100644 index ee1c8d1c4b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/cybersun.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/cybersun.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/cybersun.rsi/inhand-right.png deleted file mode 100644 index fa19eea1f7..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/cybersun.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/cybersun.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hardsuits/cybersun.rsi/meta.json deleted file mode 100644 index d30007b497..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hardsuits/cybersun.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from Paradise SS13 at commit https://github.com/ParadiseSS13/Paradise/commit/a67c929b7394f78e7787114457ba42f4df6cc3a1", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/deathsquad.rsi/equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/deathsquad.rsi/equipped-HELMET.png deleted file mode 100644 index 8df1903288..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/deathsquad.rsi/equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/deathsquad.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/deathsquad.rsi/icon.png deleted file mode 100644 index 12355e0a91..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/deathsquad.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/deathsquad.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/deathsquad.rsi/inhand-left.png deleted file mode 100644 index 6be2c34d76..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/deathsquad.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/deathsquad.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/deathsquad.rsi/inhand-right.png deleted file mode 100644 index e3c056ada0..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/deathsquad.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/deathsquad.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hardsuits/deathsquad.rsi/meta.json deleted file mode 100644 index 9e9e8cfd86..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hardsuits/deathsquad.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/icon-flash.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/icon-flash.png deleted file mode 100644 index 31cab844de..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/icon-flash.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/icon.png deleted file mode 100644 index 36dc98d0a5..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json deleted file mode 100644 index 7f278de0f7..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-flash" - }, - { - "name": "off-equipped-HELMET", - "directions": 4 - }, - { - "name": "off-inhand-left", - "directions": 4 - }, - { - "name": "off-inhand-right", - "directions": 4 - }, - { - "name": "on-equipped-HELMET", - "directions": 4 - }, - { - "name": "equipped-HELMET-unshaded", - "directions": 4 - }, - { - "name": "on-inhand-left", - "directions": 4 - }, - { - "name": "on-inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET.png deleted file mode 100644 index 5ef4fd4d56..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/off-inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/off-inhand-left.png deleted file mode 100644 index f7375fd600..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/off-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/off-inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/off-inhand-right.png deleted file mode 100644 index c2adc46cdb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/off-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET.png deleted file mode 100644 index 3e79a88dc4..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/on-inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/on-inhand-left.png deleted file mode 100644 index 7c6e7831c8..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/on-inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/on-inhand-right.png deleted file mode 100644 index 5ee7bc104c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering-white.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/icon-flash.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/icon-flash.png deleted file mode 100644 index 91bbb14be1..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/icon-flash.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/icon.png deleted file mode 100644 index 9f3fd86951..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/meta.json deleted file mode 100644 index 7f278de0f7..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/meta.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-flash" - }, - { - "name": "off-equipped-HELMET", - "directions": 4 - }, - { - "name": "off-inhand-left", - "directions": 4 - }, - { - "name": "off-inhand-right", - "directions": 4 - }, - { - "name": "on-equipped-HELMET", - "directions": 4 - }, - { - "name": "equipped-HELMET-unshaded", - "directions": 4 - }, - { - "name": "on-inhand-left", - "directions": 4 - }, - { - "name": "on-inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET.png deleted file mode 100644 index 140240630c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/off-inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/off-inhand-left.png deleted file mode 100644 index cafca9a938..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/off-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/off-inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/off-inhand-right.png deleted file mode 100644 index 9645b59e2d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/off-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET.png deleted file mode 100644 index 2eed616df6..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/on-inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/on-inhand-left.png deleted file mode 100644 index bff16d72c4..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/on-inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/on-inhand-right.png deleted file mode 100644 index 355977d540..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/engineering.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/icon-flash.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/icon-flash.png deleted file mode 100644 index 4bbe0b81f0..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/icon-flash.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/icon.png deleted file mode 100644 index 94d2848ad0..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/meta.json deleted file mode 100644 index 44896c8046..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/meta.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-flash" - }, - { - "name": "off-equipped-HELMET", - "directions": 4 - }, - { - "name": "off-inhand-left", - "directions": 4 - }, - { - "name": "off-inhand-right", - "directions": 4 - }, - { - "name": "on-equipped-HELMET", - "directions": 4 - }, - { - "name": "on-inhand-left", - "directions": 4 - }, - { - "name": "on-inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET.png deleted file mode 100644 index 3449f02b2e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/off-inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/off-inhand-left.png deleted file mode 100644 index 7115578827..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/off-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/off-inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/off-inhand-right.png deleted file mode 100644 index aa2103ca92..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/off-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET.png deleted file mode 100644 index d2bc595842..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/on-inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/on-inhand-left.png deleted file mode 100644 index 14e6644a94..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/on-inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/on-inhand-right.png deleted file mode 100644 index 82edcbc9d9..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/luxury.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-HELMET.png deleted file mode 100644 index 6028ce3b1a..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/paramedhelm.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/paramedhelm.rsi/icon.png deleted file mode 100644 index d124fb6d68..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/paramedhelm.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/paramedhelm.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/paramedhelm.rsi/inhand-left.png deleted file mode 100644 index 1d3cf91b67..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/paramedhelm.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/paramedhelm.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/paramedhelm.rsi/inhand-right.png deleted file mode 100644 index c9a0ecf18d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/paramedhelm.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/paramedhelm.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hardsuits/paramedhelm.rsi/meta.json deleted file mode 100644 index 12dd393e6e..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hardsuits/paramedhelm.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/icon-flash.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/icon-flash.png deleted file mode 100644 index efe3a347df..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/icon-flash.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/icon.png deleted file mode 100644 index f04ab4ca88..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/meta.json deleted file mode 100644 index 44896c8046..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/meta.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-flash" - }, - { - "name": "off-equipped-HELMET", - "directions": 4 - }, - { - "name": "off-inhand-left", - "directions": 4 - }, - { - "name": "off-inhand-right", - "directions": 4 - }, - { - "name": "on-equipped-HELMET", - "directions": 4 - }, - { - "name": "on-inhand-left", - "directions": 4 - }, - { - "name": "on-inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET.png deleted file mode 100644 index fb5a4df409..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/off-inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/off-inhand-left.png deleted file mode 100644 index b72196c27f..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/off-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/off-inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/off-inhand-right.png deleted file mode 100644 index 0c1a10b800..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/off-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET.png deleted file mode 100644 index 91c6b631c3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/on-inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/on-inhand-left.png deleted file mode 100644 index eef3f232c6..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/on-inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/on-inhand-right.png deleted file mode 100644 index a95b76ac72..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/rd.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/icon-flash.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/icon-flash.png deleted file mode 100644 index 38dd03e125..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/icon-flash.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/icon.png deleted file mode 100644 index 7d9e036e64..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/meta.json deleted file mode 100644 index 44896c8046..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/meta.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-flash" - }, - { - "name": "off-equipped-HELMET", - "directions": 4 - }, - { - "name": "off-inhand-left", - "directions": 4 - }, - { - "name": "off-inhand-right", - "directions": 4 - }, - { - "name": "on-equipped-HELMET", - "directions": 4 - }, - { - "name": "on-inhand-left", - "directions": 4 - }, - { - "name": "on-inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET.png deleted file mode 100644 index 3f096e899e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/off-inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/off-inhand-left.png deleted file mode 100644 index f6c1dc2a0c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/off-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/off-inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/off-inhand-right.png deleted file mode 100644 index bf79ef6721..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/off-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET.png deleted file mode 100644 index 5ffb2bdb63..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/on-inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/on-inhand-left.png deleted file mode 100644 index 5c2ec51b77..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/on-inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/on-inhand-right.png deleted file mode 100644 index 121276d6c3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/salvage.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/icon-flash.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/icon-flash.png deleted file mode 100644 index ded0a7f43e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/icon-flash.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/icon.png deleted file mode 100644 index ea60e98220..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/meta.json deleted file mode 100644 index 44896c8046..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/meta.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-flash" - }, - { - "name": "off-equipped-HELMET", - "directions": 4 - }, - { - "name": "off-inhand-left", - "directions": 4 - }, - { - "name": "off-inhand-right", - "directions": 4 - }, - { - "name": "on-equipped-HELMET", - "directions": 4 - }, - { - "name": "on-inhand-left", - "directions": 4 - }, - { - "name": "on-inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET.png deleted file mode 100644 index 27537e7ce7..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/off-inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/off-inhand-left.png deleted file mode 100644 index c81cf30dc9..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/off-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/off-inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/off-inhand-right.png deleted file mode 100644 index f5b449d7b9..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/off-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET.png deleted file mode 100644 index bc7111e644..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/on-inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/on-inhand-left.png deleted file mode 100644 index 32f699cb47..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/on-inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/on-inhand-right.png deleted file mode 100644 index 71d2a09325..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-red.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-warden.rsi/icon-flash.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/security-warden.rsi/icon-flash.png deleted file mode 100644 index 46a4fe23c9..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-warden.rsi/icon-flash.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-warden.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/security-warden.rsi/icon.png deleted file mode 100644 index 1d638eb8df..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-warden.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-warden.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hardsuits/security-warden.rsi/meta.json deleted file mode 100644 index 56316bc173..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-warden.rsi/meta.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-flash" - }, - { - "name": "off-equipped-HELMET", - "directions": 4 - }, - { - "name": "on-equipped-HELMET", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET.png deleted file mode 100644 index 5cca860649..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET.png deleted file mode 100644 index 0ddb364119..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/icon-flash.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/icon-flash.png deleted file mode 100644 index 1dc8c708fd..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/icon-flash.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/icon.png deleted file mode 100644 index a98172635b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/meta.json deleted file mode 100644 index 44896c8046..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/meta.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-flash" - }, - { - "name": "off-equipped-HELMET", - "directions": 4 - }, - { - "name": "off-inhand-left", - "directions": 4 - }, - { - "name": "off-inhand-right", - "directions": 4 - }, - { - "name": "on-equipped-HELMET", - "directions": 4 - }, - { - "name": "on-inhand-left", - "directions": 4 - }, - { - "name": "on-inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET.png deleted file mode 100644 index aa41174ec2..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/off-inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/off-inhand-left.png deleted file mode 100644 index 68329b89c1..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/off-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/off-inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/off-inhand-right.png deleted file mode 100644 index 38cc8ca8a6..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/off-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET.png deleted file mode 100644 index 4c01c42982..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/on-inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/on-inhand-left.png deleted file mode 100644 index 742af4cd00..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/on-inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/on-inhand-right.png deleted file mode 100644 index 79f70ac121..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/security.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-light.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-light.png deleted file mode 100644 index 72cdd79b46..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-light.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-unshaded.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-unshaded.png deleted file mode 100644 index 54bd9a7443..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-unshaded.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head.png deleted file mode 100644 index 5a7b57a565..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/icon-flash.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/icon-flash.png deleted file mode 100644 index 3c3a81b4e3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/icon-flash.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/icon-unshaded.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/icon-unshaded.png deleted file mode 100644 index 1f2149624c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/icon-unshaded.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/icon.png deleted file mode 100644 index f885166614..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-left-light.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-left-light.png deleted file mode 100644 index 89f23c3f8f..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-left-light.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-left-unshaded.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-left-unshaded.png deleted file mode 100644 index 513c673fab..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-left-unshaded.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-left.png deleted file mode 100644 index 49f5998633..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-right-light.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-right-light.png deleted file mode 100644 index cd634ab3e4..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-right-light.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-right-unshaded.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-right-unshaded.png deleted file mode 100644 index 0f871ad358..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-right-unshaded.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-right.png deleted file mode 100644 index c9874269be..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/light-overlay.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/light-overlay.png deleted file mode 100644 index 8a728db9fb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/light-overlay.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json deleted file mode 100644 index c4becdd5cd..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-unshaded" - }, - { - "name": "icon-flash" - }, - { - "name": "light-overlay" - }, - { - "name": "equipped-head", - "directions": 4 - }, - { - "name": "equipped-head-light", - "directions": 4 - }, - { - "name": "equipped-head-unshaded", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-left-unshaded", - "directions": 4 - }, - { - "name": "inhand-left-light", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "inhand-right-unshaded", - "directions": 4 - }, - { - "name": "inhand-right-light", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET.png deleted file mode 100644 index 2f587c5797..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/icon-flash.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/icon-flash.png deleted file mode 100644 index 699a26c7bc..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/icon-flash.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/icon.png deleted file mode 100644 index b97674fdfb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/meta.json deleted file mode 100644 index e9de1ae57b..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/meta.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-flash" - }, - { - "name": "combat-equipped-HELMET", - "directions": 4 - }, - { - "name": "off-equipped-HELMET", - "directions": 4 - }, - { - "name": "off-inhand-left", - "directions": 4 - }, - { - "name": "off-inhand-right", - "directions": 4 - }, - { - "name": "on-equipped-HELMET", - "directions": 4 - }, - { - "name": "on-inhand-left", - "directions": 4 - }, - { - "name": "on-inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET.png deleted file mode 100644 index 32759d3244..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/off-inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/off-inhand-left.png deleted file mode 100644 index ad32ce8f28..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/off-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/off-inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/off-inhand-right.png deleted file mode 100644 index a0cd6c22b7..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/off-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET.png deleted file mode 100644 index f7f4fc1570..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/on-inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/on-inhand-left.png deleted file mode 100644 index e40883d319..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/on-inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/on-inhand-right.png deleted file mode 100644 index 2b7a0306d4..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndicate.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/icon-flash.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/icon-flash.png deleted file mode 100644 index 2257c4a077..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/icon-flash.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/icon.png deleted file mode 100644 index 972df70f3b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json deleted file mode 100644 index 97f37c327b..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd", - - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-flash" - }, - { - "name": "off-equipped-HELMET", - "directions": 4 - }, - { - "name": "off-inhand-left", - "directions": 4 - }, - { - "name": "off-inhand-right", - "directions": 4 - }, - { - "name": "on-equipped-HELMET", - "directions": 4 - }, - { - "name": "on-inhand-left", - "directions": 4 - }, - { - "name": "on-inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET.png deleted file mode 100644 index 7b2870ea45..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/off-inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/off-inhand-left.png deleted file mode 100644 index ed24b26b91..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/off-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/off-inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/off-inhand-right.png deleted file mode 100644 index e92b71a40c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/off-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET.png deleted file mode 100644 index a14b45c2c6..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/on-inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/on-inhand-left.png deleted file mode 100644 index 97d938f79d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/on-inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/on-inhand-right.png deleted file mode 100644 index 92a54785a5..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndiecommander.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/icon-flash.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/icon-flash.png deleted file mode 100644 index 8f40926b67..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/icon-flash.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/icon.png deleted file mode 100644 index a7298ff039..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json deleted file mode 100644 index 97f37c327b..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd", - - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-flash" - }, - { - "name": "off-equipped-HELMET", - "directions": 4 - }, - { - "name": "off-inhand-left", - "directions": 4 - }, - { - "name": "off-inhand-right", - "directions": 4 - }, - { - "name": "on-equipped-HELMET", - "directions": 4 - }, - { - "name": "on-inhand-left", - "directions": 4 - }, - { - "name": "on-inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET.png deleted file mode 100644 index 68ca980fb8..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/off-inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/off-inhand-left.png deleted file mode 100644 index 9cf29dbeee..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/off-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/off-inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/off-inhand-right.png deleted file mode 100644 index c01c8aba0d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/off-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET.png deleted file mode 100644 index fbbd061014..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/on-inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/on-inhand-left.png deleted file mode 100644 index d603248b3c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/on-inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/on-inhand-right.png deleted file mode 100644 index ac118a95a4..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hardsuits/syndieelite.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hats/captain.rsi/equipped-HELMET-hamster.png b/Resources/Textures/_White/Clothing/Head/Hats/captain.rsi/equipped-HELMET-hamster.png deleted file mode 100644 index 81ed7934ce..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hats/captain.rsi/equipped-HELMET-hamster.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hats/captain.rsi/equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hats/captain.rsi/equipped-HELMET.png deleted file mode 100644 index 51ad84708a..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hats/captain.rsi/equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hats/captain.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hats/captain.rsi/icon.png deleted file mode 100644 index 2e86e9d9b8..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hats/captain.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hats/captain.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hats/captain.rsi/inhand-left.png deleted file mode 100644 index 32a9300b28..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hats/captain.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hats/captain.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hats/captain.rsi/inhand-right.png deleted file mode 100644 index b59da29a4b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hats/captain.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hats/captain.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hats/captain.rsi/meta.json deleted file mode 100644 index ae83b3a1d4..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hats/captain.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/69842/commits/d8138946b0ed06fced522729ac8eaa0596864329 edited by Skarletto (github), edited by Emisse for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "equipped-HELMET-hamster", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "icon" - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hats/centcom.rsi/equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hats/centcom.rsi/equipped-HELMET.png deleted file mode 100644 index b5938fc8b4..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hats/centcom.rsi/equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hats/centcom.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hats/centcom.rsi/icon.png deleted file mode 100644 index c42eefbbf8..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hats/centcom.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hats/centcom.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hats/centcom.rsi/inhand-left.png deleted file mode 100644 index 33c4c42473..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hats/centcom.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hats/centcom.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hats/centcom.rsi/inhand-right.png deleted file mode 100644 index e462534d84..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hats/centcom.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hats/centcom.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hats/centcom.rsi/meta.json deleted file mode 100644 index a470e00944..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hats/centcom.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hats/hobocap.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hats/hobocap.rsi/meta.json index 8500087d57..62a9638a9d 100644 --- a/Resources/Textures/_White/Clothing/Head/Hats/hobocap.rsi/meta.json +++ b/Resources/Textures/_White/Clothing/Head/Hats/hobocap.rsi/meta.json @@ -1,6 +1,6 @@ { "version": 1, - "license": "CC-BY-SA-3.0", + "license": "CC-BY-SA-4.0", "copyright": "Created by omsoyk (Discord)", "size": { "x": 32, diff --git a/Resources/Textures/_White/Clothing/Head/Hats/hobohat.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hats/hobohat.rsi/meta.json index 8500087d57..62a9638a9d 100644 --- a/Resources/Textures/_White/Clothing/Head/Hats/hobohat.rsi/meta.json +++ b/Resources/Textures/_White/Clothing/Head/Hats/hobohat.rsi/meta.json @@ -1,6 +1,6 @@ { "version": 1, - "license": "CC-BY-SA-3.0", + "license": "CC-BY-SA-4.0", "copyright": "Created by omsoyk (Discord)", "size": { "x": 32, diff --git a/Resources/Textures/_White/Clothing/Head/Hats/jester.rsi/equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hats/jester.rsi/equipped-HELMET.png deleted file mode 100644 index e44dfaea7e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hats/jester.rsi/equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hats/jester.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hats/jester.rsi/icon.png deleted file mode 100644 index 51ff8d5b0e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hats/jester.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hats/jester.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hats/jester.rsi/inhand-left.png deleted file mode 100644 index 5526e00dfa..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hats/jester.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hats/jester.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hats/jester.rsi/inhand-right.png deleted file mode 100644 index 50df3746a3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hats/jester.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hats/jester.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hats/jester.rsi/meta.json deleted file mode 100644 index 932914fde8..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hats/jester.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hats/jester2.rsi/equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hats/jester2.rsi/equipped-HELMET.png deleted file mode 100644 index a17a232960..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hats/jester2.rsi/equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hats/jester2.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hats/jester2.rsi/icon.png deleted file mode 100644 index 83ff454a69..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hats/jester2.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hats/jester2.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hats/jester2.rsi/inhand-left.png deleted file mode 100644 index 497bf5c60c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hats/jester2.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hats/jester2.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hats/jester2.rsi/inhand-right.png deleted file mode 100644 index e7b5115386..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hats/jester2.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hats/jester2.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hats/jester2.rsi/meta.json deleted file mode 100644 index 932914fde8..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hats/jester2.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hats/maidhat.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hats/maidhat.rsi/meta.json index 8500087d57..62a9638a9d 100644 --- a/Resources/Textures/_White/Clothing/Head/Hats/maidhat.rsi/meta.json +++ b/Resources/Textures/_White/Clothing/Head/Hats/maidhat.rsi/meta.json @@ -1,6 +1,6 @@ { "version": 1, - "license": "CC-BY-SA-3.0", + "license": "CC-BY-SA-4.0", "copyright": "Created by omsoyk (Discord)", "size": { "x": 32, diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/_White/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-vulpkanin.png deleted file mode 100644 index b7625492dd..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-vulpkanin.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/eva.rsi/equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Helmets/eva.rsi/equipped-HELMET.png deleted file mode 100644 index 785dfd5da3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Helmets/eva.rsi/equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/eva.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Helmets/eva.rsi/icon.png deleted file mode 100644 index b3927b1cba..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Helmets/eva.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/eva.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Head/Helmets/eva.rsi/inhand-left.png deleted file mode 100644 index 801be1333e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Helmets/eva.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/eva.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Head/Helmets/eva.rsi/inhand-right.png deleted file mode 100644 index 3d87b5cdb2..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Helmets/eva.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/eva.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Helmets/eva.rsi/meta.json deleted file mode 100644 index 3c406ff57c..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Helmets/eva.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d modified by Floofers", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-HELMET-vulpkanin", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/_White/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-vulpkanin.png deleted file mode 100644 index c4e6351d9d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-vulpkanin.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET.png deleted file mode 100644 index c64f69b0d8..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/eva_large.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Helmets/eva_large.rsi/icon.png deleted file mode 100644 index 25a7caf089..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Helmets/eva_large.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/eva_large.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Head/Helmets/eva_large.rsi/inhand-left.png deleted file mode 100644 index 077fb62a2c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Helmets/eva_large.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/eva_large.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Head/Helmets/eva_large.rsi/inhand-right.png deleted file mode 100644 index 41261d9815..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Helmets/eva_large.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/eva_large.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Helmets/eva_large.rsi/meta.json deleted file mode 100644 index 3c406ff57c..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Helmets/eva_large.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d modified by Floofers", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-HELMET-vulpkanin", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/_White/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-vulpkanin.png deleted file mode 100644 index 669368c2bb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-vulpkanin.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET.png deleted file mode 100644 index f5054f7fd5..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/eva_syndicate.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Helmets/eva_syndicate.rsi/icon.png deleted file mode 100644 index 93a7db32e6..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Helmets/eva_syndicate.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/eva_syndicate.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Head/Helmets/eva_syndicate.rsi/inhand-left.png deleted file mode 100644 index 5274c94828..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Helmets/eva_syndicate.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/eva_syndicate.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Head/Helmets/eva_syndicate.rsi/inhand-right.png deleted file mode 100644 index 93a06a90a7..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Helmets/eva_syndicate.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json deleted file mode 100644 index 3c406ff57c..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d modified by Floofers", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-HELMET-vulpkanin", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/security.rsi/equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Helmets/security.rsi/equipped-HELMET.png deleted file mode 100644 index 8dc79d4be6..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Helmets/security.rsi/equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/security.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Helmets/security.rsi/icon.png deleted file mode 100644 index b5e41dfe7b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Helmets/security.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/security.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Head/Helmets/security.rsi/inhand-left.png deleted file mode 100644 index af8936df8d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Helmets/security.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/security.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Head/Helmets/security.rsi/inhand-right.png deleted file mode 100644 index 7d352ec1d6..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Helmets/security.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/security.rsi/light-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Helmets/security.rsi/light-equipped-HELMET.png deleted file mode 100644 index e1ed2d59ae..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Helmets/security.rsi/light-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/security.rsi/lighton-equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Helmets/security.rsi/lighton-equipped-HELMET.png deleted file mode 100644 index 634828f1b3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Helmets/security.rsi/lighton-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Helmets/security.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Helmets/security.rsi/meta.json deleted file mode 100644 index db2bbfafd4..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Helmets/security.rsi/meta.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "light-equipped-HELMET", - "directions": 4 - }, - { - "name": "lighton-equipped-HELMET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET.png deleted file mode 100644 index 9605894bfd..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/bio.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/bio.rsi/icon.png deleted file mode 100644 index a5531a4c07..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/bio.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/bio.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/bio.rsi/inhand-left.png deleted file mode 100644 index 22bc4bb8a8..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/bio.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/bio.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/bio.rsi/inhand-right.png deleted file mode 100644 index a59bb1c28c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/bio.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/bio.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/bio.rsi/meta.json deleted file mode 100644 index a470e00944..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/bio.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET.png deleted file mode 100644 index 3917fddcce..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/cmo.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/cmo.rsi/icon.png deleted file mode 100644 index 8f9f67bfc2..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/cmo.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/cmo.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/cmo.rsi/inhand-left.png deleted file mode 100644 index f8a134c204..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/cmo.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/cmo.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/cmo.rsi/inhand-right.png deleted file mode 100644 index 6b7515d083..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/cmo.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/cmo.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/cmo.rsi/meta.json deleted file mode 100644 index a470e00944..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/cmo.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET.png deleted file mode 100644 index 9605894bfd..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/general.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/general.rsi/icon.png deleted file mode 100644 index a5531a4c07..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/general.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/general.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/general.rsi/inhand-left.png deleted file mode 100644 index 22bc4bb8a8..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/general.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/general.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/general.rsi/inhand-right.png deleted file mode 100644 index a59bb1c28c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/general.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/general.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/general.rsi/meta.json deleted file mode 100644 index a470e00944..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/general.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET.png deleted file mode 100644 index d9299375dc..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/janitor.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/janitor.rsi/icon.png deleted file mode 100644 index e1cb49d3bb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/janitor.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/janitor.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/janitor.rsi/inhand-left.png deleted file mode 100644 index 5e6e052dd4..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/janitor.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/janitor.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/janitor.rsi/inhand-right.png deleted file mode 100644 index b71f1b2620..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/janitor.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/janitor.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/janitor.rsi/meta.json deleted file mode 100644 index a470e00944..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/janitor.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET.png deleted file mode 100644 index dd0654a1d6..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/scientist.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/scientist.rsi/icon.png deleted file mode 100644 index d326ea41e4..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/scientist.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/scientist.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/scientist.rsi/inhand-left.png deleted file mode 100644 index 6e23c2f043..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/scientist.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/scientist.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/scientist.rsi/inhand-right.png deleted file mode 100644 index 724799d3db..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/scientist.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/scientist.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/scientist.rsi/meta.json deleted file mode 100644 index a470e00944..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/scientist.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET.png deleted file mode 100644 index ea6cd337e7..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/security.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/security.rsi/icon.png deleted file mode 100644 index cbf20a83fb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/security.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/security.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/security.rsi/inhand-left.png deleted file mode 100644 index e3ac688063..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/security.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/security.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/security.rsi/inhand-right.png deleted file mode 100644 index 742decb6c8..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/security.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/security.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/security.rsi/meta.json deleted file mode 100644 index a470e00944..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/security.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET.png deleted file mode 100644 index ead249371c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/virology.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/virology.rsi/icon.png deleted file mode 100644 index 0ce5c67153..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/virology.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/virology.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/virology.rsi/inhand-left.png deleted file mode 100644 index ab6d8e1d1c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/virology.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/virology.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/virology.rsi/inhand-right.png deleted file mode 100644 index 49535df051..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/virology.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/virology.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hoods/Bio/virology.rsi/meta.json deleted file mode 100644 index a470e00944..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hoods/Bio/virology.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/rad.rsi/equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Hoods/rad.rsi/equipped-HELMET.png deleted file mode 100644 index 38f3e2c455..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/rad.rsi/equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/rad.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Hoods/rad.rsi/icon.png deleted file mode 100644 index f62f3f8493..0000000000 Binary files a/Resources/Textures/_White/Clothing/Head/Hoods/rad.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Head/Hoods/rad.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Hoods/rad.rsi/meta.json deleted file mode 100644 index 920a78a535..0000000000 --- a/Resources/Textures/_White/Clothing/Head/Hoods/rad.rsi/meta.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/discordia-space/CEV-Eris/commit/760f0be7af33a31f5a08a3291864e91539d0ebb7", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HELMET", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Head/Misc/toy_demon.rsi/equipped-HELMET.png b/Resources/Textures/_White/Clothing/Head/Misc/toy_demon.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..e290e81ebc Binary files /dev/null and b/Resources/Textures/_White/Clothing/Head/Misc/toy_demon.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_White/Clothing/Head/Misc/toy_demon.rsi/icon.png b/Resources/Textures/_White/Clothing/Head/Misc/toy_demon.rsi/icon.png new file mode 100644 index 0000000000..bd3168afde Binary files /dev/null and b/Resources/Textures/_White/Clothing/Head/Misc/toy_demon.rsi/icon.png differ diff --git a/Resources/Textures/_White/Clothing/Head/Misc/toy_demon.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Head/Misc/toy_demon.rsi/inhand-left.png new file mode 100644 index 0000000000..aae34f7b62 Binary files /dev/null and b/Resources/Textures/_White/Clothing/Head/Misc/toy_demon.rsi/inhand-left.png differ diff --git a/Resources/Textures/_White/Clothing/Head/Misc/toy_demon.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Head/Misc/toy_demon.rsi/inhand-right.png new file mode 100644 index 0000000000..f28c3a76ae Binary files /dev/null and b/Resources/Textures/_White/Clothing/Head/Misc/toy_demon.rsi/inhand-right.png differ diff --git a/Resources/Textures/_White/Clothing/Head/Misc/toy_demon.rsi/meta.json b/Resources/Textures/_White/Clothing/Head/Misc/toy_demon.rsi/meta.json new file mode 100644 index 0000000000..ae24ca0e1e --- /dev/null +++ b/Resources/Textures/_White/Clothing/Head/Misc/toy_demon.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_White/Clothing/Mask/clown.rsi/equipped-MASK-hamster.png b/Resources/Textures/_White/Clothing/Mask/clown.rsi/equipped-MASK-hamster.png deleted file mode 100644 index 36d659b86e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Mask/clown.rsi/equipped-MASK-hamster.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Mask/clown.rsi/equipped-MASK-reptilian.png b/Resources/Textures/_White/Clothing/Mask/clown.rsi/equipped-MASK-reptilian.png deleted file mode 100644 index f12f011a4f..0000000000 Binary files a/Resources/Textures/_White/Clothing/Mask/clown.rsi/equipped-MASK-reptilian.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Mask/clown.rsi/equipped-MASK.png b/Resources/Textures/_White/Clothing/Mask/clown.rsi/equipped-MASK.png deleted file mode 100644 index 347931e435..0000000000 Binary files a/Resources/Textures/_White/Clothing/Mask/clown.rsi/equipped-MASK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Mask/clown.rsi/icon.png b/Resources/Textures/_White/Clothing/Mask/clown.rsi/icon.png deleted file mode 100644 index 15ad0ed103..0000000000 Binary files a/Resources/Textures/_White/Clothing/Mask/clown.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Mask/clown.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Mask/clown.rsi/inhand-left.png deleted file mode 100644 index d375302bf0..0000000000 Binary files a/Resources/Textures/_White/Clothing/Mask/clown.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Mask/clown.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Mask/clown.rsi/inhand-right.png deleted file mode 100644 index a37a73abd4..0000000000 Binary files a/Resources/Textures/_White/Clothing/Mask/clown.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Mask/clown.rsi/meta.json b/Resources/Textures/_White/Clothing/Mask/clown.rsi/meta.json deleted file mode 100644 index dff35ded7a..0000000000 --- a/Resources/Textures/_White/Clothing/Mask/clown.rsi/meta.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "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 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Mask/clown_banana.rsi/equipped-MASK-hamster.png b/Resources/Textures/_White/Clothing/Mask/clown_banana.rsi/equipped-MASK-hamster.png deleted file mode 100644 index 455b22e99e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Mask/clown_banana.rsi/equipped-MASK-hamster.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Mask/clown_banana.rsi/equipped-MASK-reptilian.png b/Resources/Textures/_White/Clothing/Mask/clown_banana.rsi/equipped-MASK-reptilian.png deleted file mode 100644 index 32c6c92800..0000000000 Binary files a/Resources/Textures/_White/Clothing/Mask/clown_banana.rsi/equipped-MASK-reptilian.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Mask/clown_banana.rsi/equipped-MASK.png b/Resources/Textures/_White/Clothing/Mask/clown_banana.rsi/equipped-MASK.png deleted file mode 100644 index 2b85f049c7..0000000000 Binary files a/Resources/Textures/_White/Clothing/Mask/clown_banana.rsi/equipped-MASK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Mask/clown_banana.rsi/icon.png b/Resources/Textures/_White/Clothing/Mask/clown_banana.rsi/icon.png deleted file mode 100644 index 64bfdd95d7..0000000000 Binary files a/Resources/Textures/_White/Clothing/Mask/clown_banana.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Mask/clown_banana.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Mask/clown_banana.rsi/inhand-left.png deleted file mode 100644 index 72357eecc8..0000000000 Binary files a/Resources/Textures/_White/Clothing/Mask/clown_banana.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Mask/clown_banana.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Mask/clown_banana.rsi/inhand-right.png deleted file mode 100644 index 668ab5fbe3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Mask/clown_banana.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Mask/clown_banana.rsi/meta.json b/Resources/Textures/_White/Clothing/Mask/clown_banana.rsi/meta.json deleted file mode 100644 index dff35ded7a..0000000000 --- a/Resources/Textures/_White/Clothing/Mask/clown_banana.rsi/meta.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "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 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Mask/cluwne.rsi/equipped-MASK-reptilian.png b/Resources/Textures/_White/Clothing/Mask/cluwne.rsi/equipped-MASK-reptilian.png deleted file mode 100644 index 89996e4bc2..0000000000 Binary files a/Resources/Textures/_White/Clothing/Mask/cluwne.rsi/equipped-MASK-reptilian.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Mask/cluwne.rsi/equipped-MASK.png b/Resources/Textures/_White/Clothing/Mask/cluwne.rsi/equipped-MASK.png deleted file mode 100644 index 8d9fbbe589..0000000000 Binary files a/Resources/Textures/_White/Clothing/Mask/cluwne.rsi/equipped-MASK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Mask/cluwne.rsi/icon.png b/Resources/Textures/_White/Clothing/Mask/cluwne.rsi/icon.png deleted file mode 100644 index d833bc78f8..0000000000 Binary files a/Resources/Textures/_White/Clothing/Mask/cluwne.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Mask/cluwne.rsi/meta.json b/Resources/Textures/_White/Clothing/Mask/cluwne.rsi/meta.json deleted file mode 100644 index 2739808bb1..0000000000 --- a/Resources/Textures/_White/Clothing/Mask/cluwne.rsi/meta.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-MASK", - "directions": 4 - }, - { - "name": "equipped-MASK-reptilian", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Mask/sexyclown.rsi/equipped-MASK-reptilian.png b/Resources/Textures/_White/Clothing/Mask/sexyclown.rsi/equipped-MASK-reptilian.png deleted file mode 100644 index 643aca9fd8..0000000000 Binary files a/Resources/Textures/_White/Clothing/Mask/sexyclown.rsi/equipped-MASK-reptilian.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Mask/sexyclown.rsi/equipped-MASK.png b/Resources/Textures/_White/Clothing/Mask/sexyclown.rsi/equipped-MASK.png deleted file mode 100644 index 5439c98c21..0000000000 Binary files a/Resources/Textures/_White/Clothing/Mask/sexyclown.rsi/equipped-MASK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Mask/sexyclown.rsi/icon.png b/Resources/Textures/_White/Clothing/Mask/sexyclown.rsi/icon.png deleted file mode 100644 index b9b17c47eb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Mask/sexyclown.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Mask/sexyclown.rsi/meta.json b/Resources/Textures/_White/Clothing/Mask/sexyclown.rsi/meta.json deleted file mode 100644 index 840929cad6..0000000000 --- a/Resources/Textures/_White/Clothing/Mask/sexyclown.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-MASK", - "directions": 4 - }, - { - "name": "equipped-MASK-reptilian", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Mask/toy_vampire_fangs.rsi/equipped-MASK.png b/Resources/Textures/_White/Clothing/Mask/toy_vampire_fangs.rsi/equipped-MASK.png new file mode 100644 index 0000000000..19ce48978d Binary files /dev/null and b/Resources/Textures/_White/Clothing/Mask/toy_vampire_fangs.rsi/equipped-MASK.png differ diff --git a/Resources/Textures/_White/Clothing/Mask/toy_vampire_fangs.rsi/icon.png b/Resources/Textures/_White/Clothing/Mask/toy_vampire_fangs.rsi/icon.png new file mode 100644 index 0000000000..1b4c8320dc Binary files /dev/null and b/Resources/Textures/_White/Clothing/Mask/toy_vampire_fangs.rsi/icon.png differ diff --git a/Resources/Textures/_White/Clothing/Mask/toy_vampire_fangs.rsi/meta.json b/Resources/Textures/_White/Clothing/Mask/toy_vampire_fangs.rsi/meta.json new file mode 100644 index 0000000000..60dcb32508 --- /dev/null +++ b/Resources/Textures/_White/Clothing/Mask/toy_vampire_fangs.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-MASK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/cap.rsi/equipped-NECK.png b/Resources/Textures/_White/Clothing/Neck/Cloaks/cap.rsi/equipped-NECK.png deleted file mode 100644 index c46b72cdc7..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/Cloaks/cap.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/cap.rsi/icon.png b/Resources/Textures/_White/Clothing/Neck/Cloaks/cap.rsi/icon.png deleted file mode 100644 index 8e1bffd9ca..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/Cloaks/cap.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/cap.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Neck/Cloaks/cap.rsi/inhand-left.png deleted file mode 100644 index 6c2a7c2ef9..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/Cloaks/cap.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/cap.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Neck/Cloaks/cap.rsi/inhand-right.png deleted file mode 100644 index 9767a6693b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/Cloaks/cap.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/cap.rsi/meta.json b/Resources/Textures/_White/Clothing/Neck/Cloaks/cap.rsi/meta.json deleted file mode 100644 index 58f9b41222..0000000000 --- a/Resources/Textures/_White/Clothing/Neck/Cloaks/cap.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da, sprites in hand by PuroSlavKing (Github) and RudeyCoolLeet#3875, colors edited by Skarletto (github)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-NECK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/capcloakformal.rsi/equipped-NECK.png b/Resources/Textures/_White/Clothing/Neck/Cloaks/capcloakformal.rsi/equipped-NECK.png deleted file mode 100644 index 0c04dac35e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/Cloaks/capcloakformal.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/capcloakformal.rsi/icon.png b/Resources/Textures/_White/Clothing/Neck/Cloaks/capcloakformal.rsi/icon.png deleted file mode 100644 index 11b7a67618..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/Cloaks/capcloakformal.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/capcloakformal.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Neck/Cloaks/capcloakformal.rsi/inhand-left.png deleted file mode 100644 index 72fd67c4ca..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/Cloaks/capcloakformal.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/capcloakformal.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Neck/Cloaks/capcloakformal.rsi/inhand-right.png deleted file mode 100644 index 081177e3aa..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/Cloaks/capcloakformal.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/capcloakformal.rsi/meta.json b/Resources/Textures/_White/Clothing/Neck/Cloaks/capcloakformal.rsi/meta.json deleted file mode 100644 index 6e941624d8..0000000000 --- a/Resources/Textures/_White/Clothing/Neck/Cloaks/capcloakformal.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/pull/62603 which was taken from bee station. Bee station does not have a history on the cloaks on their github, sprites in hand by PuroSlavKing (Github) and RudeyCoolLeet#3875 , colors edited by Skarletto (github), edited by Emisse for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-NECK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/ce.rsi/equipped-NECK.png b/Resources/Textures/_White/Clothing/Neck/Cloaks/ce.rsi/equipped-NECK.png deleted file mode 100644 index 09a49bd80a..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/Cloaks/ce.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/ce.rsi/icon.png b/Resources/Textures/_White/Clothing/Neck/Cloaks/ce.rsi/icon.png deleted file mode 100644 index 50b9e5a927..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/Cloaks/ce.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/ce.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Neck/Cloaks/ce.rsi/inhand-left.png deleted file mode 100644 index 1a880b087f..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/Cloaks/ce.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/ce.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Neck/Cloaks/ce.rsi/inhand-right.png deleted file mode 100644 index 315b26bf93..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/Cloaks/ce.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/ce.rsi/meta.json b/Resources/Textures/_White/Clothing/Neck/Cloaks/ce.rsi/meta.json deleted file mode 100644 index fde00d6116..0000000000 --- a/Resources/Textures/_White/Clothing/Neck/Cloaks/ce.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da, sprites in hand by PuroSlavKing (Github) and RudeyCoolLeet#3875", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-NECK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/hos.rsi/equipped-NECK.png b/Resources/Textures/_White/Clothing/Neck/Cloaks/hos.rsi/equipped-NECK.png deleted file mode 100644 index 29ed862b26..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/Cloaks/hos.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/hos.rsi/icon.png b/Resources/Textures/_White/Clothing/Neck/Cloaks/hos.rsi/icon.png deleted file mode 100644 index 2b5c2b5552..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/Cloaks/hos.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/hos.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Neck/Cloaks/hos.rsi/inhand-left.png deleted file mode 100644 index a31bdf536b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/Cloaks/hos.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/hos.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Neck/Cloaks/hos.rsi/inhand-right.png deleted file mode 100644 index a9641cd4c6..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/Cloaks/hos.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/hos.rsi/meta.json b/Resources/Textures/_White/Clothing/Neck/Cloaks/hos.rsi/meta.json deleted file mode 100644 index fde00d6116..0000000000 --- a/Resources/Textures/_White/Clothing/Neck/Cloaks/hos.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da, sprites in hand by PuroSlavKing (Github) and RudeyCoolLeet#3875", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-NECK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/rd.rsi/equipped-NECK.png b/Resources/Textures/_White/Clothing/Neck/Cloaks/rd.rsi/equipped-NECK.png deleted file mode 100644 index 0f3f854c70..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/Cloaks/rd.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/rd.rsi/icon.png b/Resources/Textures/_White/Clothing/Neck/Cloaks/rd.rsi/icon.png deleted file mode 100644 index 64d6970128..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/Cloaks/rd.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/rd.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Neck/Cloaks/rd.rsi/inhand-left.png deleted file mode 100644 index 094adddf3d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/Cloaks/rd.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/rd.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Neck/Cloaks/rd.rsi/inhand-right.png deleted file mode 100644 index afb201b3b2..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/Cloaks/rd.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/rd.rsi/meta.json b/Resources/Textures/_White/Clothing/Neck/Cloaks/rd.rsi/meta.json deleted file mode 100644 index fde00d6116..0000000000 --- a/Resources/Textures/_White/Clothing/Neck/Cloaks/rd.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da, sprites in hand by PuroSlavKing (Github) and RudeyCoolLeet#3875", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-NECK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/vampire.rsi/equipped-NECK.png b/Resources/Textures/_White/Clothing/Neck/Cloaks/vampire.rsi/equipped-NECK.png new file mode 100644 index 0000000000..1ebb38234a Binary files /dev/null and b/Resources/Textures/_White/Clothing/Neck/Cloaks/vampire.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/vampire.rsi/icon.png b/Resources/Textures/_White/Clothing/Neck/Cloaks/vampire.rsi/icon.png new file mode 100644 index 0000000000..f91500c913 Binary files /dev/null and b/Resources/Textures/_White/Clothing/Neck/Cloaks/vampire.rsi/icon.png differ diff --git a/Resources/Textures/_White/Clothing/Neck/Cloaks/vampire.rsi/meta.json b/Resources/Textures/_White/Clothing/Neck/Cloaks/vampire.rsi/meta.json new file mode 100644 index 0000000000..8f7873f8f3 --- /dev/null +++ b/Resources/Textures/_White/Clothing/Neck/Cloaks/vampire.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_White/Clothing/Neck/mantles/capmantle.rsi/equipped-NECK.png b/Resources/Textures/_White/Clothing/Neck/mantles/capmantle.rsi/equipped-NECK.png deleted file mode 100644 index 0b343eae4b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/mantles/capmantle.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/mantles/capmantle.rsi/icon.png b/Resources/Textures/_White/Clothing/Neck/mantles/capmantle.rsi/icon.png deleted file mode 100644 index 24b5fe10dd..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/mantles/capmantle.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/mantles/capmantle.rsi/meta.json b/Resources/Textures/_White/Clothing/Neck/mantles/capmantle.rsi/meta.json deleted file mode 100644 index 4441be48f0..0000000000 --- a/Resources/Textures/_White/Clothing/Neck/mantles/capmantle.rsi/meta.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "made by Emisse (github) for ss14, edited by Skarletto (github)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-NECK", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/Neck/mantles/cemantle.rsi/equipped-NECK.png b/Resources/Textures/_White/Clothing/Neck/mantles/cemantle.rsi/equipped-NECK.png deleted file mode 100644 index 4c700f91d4..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/mantles/cemantle.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/mantles/cemantle.rsi/icon.png b/Resources/Textures/_White/Clothing/Neck/mantles/cemantle.rsi/icon.png deleted file mode 100644 index 26421ad5a8..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/mantles/cemantle.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/mantles/cemantle.rsi/meta.json b/Resources/Textures/_White/Clothing/Neck/mantles/cemantle.rsi/meta.json deleted file mode 100644 index a9b40d83e2..0000000000 --- a/Resources/Textures/_White/Clothing/Neck/mantles/cemantle.rsi/meta.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "made by emisse for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-NECK", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/Neck/mantles/cmomantle.rsi/equipped-NECK.png b/Resources/Textures/_White/Clothing/Neck/mantles/cmomantle.rsi/equipped-NECK.png deleted file mode 100644 index d9694e7e0f..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/mantles/cmomantle.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/mantles/cmomantle.rsi/icon.png b/Resources/Textures/_White/Clothing/Neck/mantles/cmomantle.rsi/icon.png deleted file mode 100644 index 1396487743..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/mantles/cmomantle.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/mantles/cmomantle.rsi/meta.json b/Resources/Textures/_White/Clothing/Neck/mantles/cmomantle.rsi/meta.json deleted file mode 100644 index a9b40d83e2..0000000000 --- a/Resources/Textures/_White/Clothing/Neck/mantles/cmomantle.rsi/meta.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "made by emisse for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-NECK", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/Neck/mantles/hopmantle.rsi/equipped-NECK.png b/Resources/Textures/_White/Clothing/Neck/mantles/hopmantle.rsi/equipped-NECK.png deleted file mode 100644 index 5eaf6241cf..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/mantles/hopmantle.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/mantles/hopmantle.rsi/icon.png b/Resources/Textures/_White/Clothing/Neck/mantles/hopmantle.rsi/icon.png deleted file mode 100644 index b756df1bc1..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/mantles/hopmantle.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/mantles/hopmantle.rsi/meta.json b/Resources/Textures/_White/Clothing/Neck/mantles/hopmantle.rsi/meta.json deleted file mode 100644 index a9b40d83e2..0000000000 --- a/Resources/Textures/_White/Clothing/Neck/mantles/hopmantle.rsi/meta.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "made by emisse for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-NECK", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/Neck/mantles/hosmantle.rsi/equipped-NECK.png b/Resources/Textures/_White/Clothing/Neck/mantles/hosmantle.rsi/equipped-NECK.png deleted file mode 100644 index 69fe2ff2df..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/mantles/hosmantle.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/mantles/hosmantle.rsi/icon.png b/Resources/Textures/_White/Clothing/Neck/mantles/hosmantle.rsi/icon.png deleted file mode 100644 index 5c49e55958..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/mantles/hosmantle.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/mantles/hosmantle.rsi/meta.json b/Resources/Textures/_White/Clothing/Neck/mantles/hosmantle.rsi/meta.json deleted file mode 100644 index a9b40d83e2..0000000000 --- a/Resources/Textures/_White/Clothing/Neck/mantles/hosmantle.rsi/meta.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "made by emisse for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-NECK", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/Neck/mantles/rdmantle.rsi/equipped-NECK.png b/Resources/Textures/_White/Clothing/Neck/mantles/rdmantle.rsi/equipped-NECK.png deleted file mode 100644 index c2258997cb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/mantles/rdmantle.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/mantles/rdmantle.rsi/icon.png b/Resources/Textures/_White/Clothing/Neck/mantles/rdmantle.rsi/icon.png deleted file mode 100644 index d78c6b43ba..0000000000 Binary files a/Resources/Textures/_White/Clothing/Neck/mantles/rdmantle.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Neck/mantles/rdmantle.rsi/meta.json b/Resources/Textures/_White/Clothing/Neck/mantles/rdmantle.rsi/meta.json deleted file mode 100644 index a9b40d83e2..0000000000 --- a/Resources/Textures/_White/Clothing/Neck/mantles/rdmantle.rsi/meta.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "made by emisse for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-NECK", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Armor/captain_carapace.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Armor/captain_carapace.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 3a8ae0290e..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Armor/captain_carapace.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Armor/captain_carapace.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Armor/captain_carapace.rsi/icon.png deleted file mode 100644 index e933cc0fbc..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Armor/captain_carapace.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Armor/captain_carapace.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Armor/captain_carapace.rsi/inhand-left.png deleted file mode 100644 index ba2375db82..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Armor/captain_carapace.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Armor/captain_carapace.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Armor/captain_carapace.rsi/inhand-right.png deleted file mode 100644 index adb8622ebf..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Armor/captain_carapace.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Armor/captain_carapace.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Armor/captain_carapace.rsi/meta.json deleted file mode 100644 index dc636547a9..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Armor/captain_carapace.rsi/meta.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/69842/commits/d8138946b0ed06fced522729ac8eaa0596864329 edited by Skarletto (github), edited by Emisse for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-body-slim", - "directions": 4 - }, - - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/cmo.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/cmo.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index adfdc99fbe..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/cmo.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/cmo.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/cmo.rsi/icon.png deleted file mode 100644 index cd1bcd2e14..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/cmo.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/cmo.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/cmo.rsi/inhand-left.png deleted file mode 100644 index 0362284288..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/cmo.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/cmo.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/cmo.rsi/inhand-right.png deleted file mode 100644 index 65eb36b9b4..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/cmo.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/cmo.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Bio/cmo.rsi/meta.json deleted file mode 100644 index e482264df5..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Bio/cmo.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/general.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/general.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 0867d9794a..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/general.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/general.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/general.rsi/icon.png deleted file mode 100644 index c439c7ab23..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/general.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/general.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/general.rsi/inhand-left.png deleted file mode 100644 index 51abed1325..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/general.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/general.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/general.rsi/inhand-right.png deleted file mode 100644 index 0aaa364525..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/general.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/general.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Bio/general.rsi/meta.json deleted file mode 100644 index e482264df5..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Bio/general.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/janitor.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/janitor.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index fdc219ce20..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/janitor.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/janitor.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/janitor.rsi/icon.png deleted file mode 100644 index 1b9e8be421..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/janitor.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/janitor.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/janitor.rsi/inhand-left.png deleted file mode 100644 index 6011316bd2..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/janitor.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/janitor.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/janitor.rsi/inhand-right.png deleted file mode 100644 index f5743b6a55..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/janitor.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/janitor.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Bio/janitor.rsi/meta.json deleted file mode 100644 index e482264df5..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Bio/janitor.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/scientist.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/scientist.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index c9481ce8c3..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/scientist.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/scientist.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/scientist.rsi/icon.png deleted file mode 100644 index 8e9483e783..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/scientist.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/scientist.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/scientist.rsi/inhand-left.png deleted file mode 100644 index b702994435..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/scientist.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/scientist.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/scientist.rsi/inhand-right.png deleted file mode 100644 index 33d4b9a599..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/scientist.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/scientist.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Bio/scientist.rsi/meta.json deleted file mode 100644 index e482264df5..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Bio/scientist.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 67a4f30ea5..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/security.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/security.rsi/icon.png deleted file mode 100644 index 5522eb9de4..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/security.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/security.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/security.rsi/inhand-left.png deleted file mode 100644 index d1164c39ab..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/security.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/security.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/security.rsi/inhand-right.png deleted file mode 100644 index 22bf56e0b7..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/security.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/security.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Bio/security.rsi/meta.json deleted file mode 100644 index e482264df5..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Bio/security.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/virology.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/virology.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 6fae8df90d..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/virology.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/virology.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/virology.rsi/icon.png deleted file mode 100644 index ad0a604d21..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/virology.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/virology.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/virology.rsi/inhand-left.png deleted file mode 100644 index b6815a0e79..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/virology.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/virology.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Bio/virology.rsi/inhand-right.png deleted file mode 100644 index 644533b009..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Bio/virology.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Bio/virology.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Bio/virology.rsi/meta.json deleted file mode 100644 index e482264df5..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Bio/virology.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index a084bd3d4c..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/icon-open.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/icon-open.png deleted file mode 100644 index 860b3dd1cc..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/icon-open.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/icon.png deleted file mode 100644 index 56d81ce3e0..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/inhand-left.png deleted file mode 100644 index 0d73443474..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/inhand-right.png deleted file mode 100644 index 3562b3caa4..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/meta.json deleted file mode 100644 index 442bfb2920..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/meta.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-open" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "open-equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "open-inhand-left", - "directions": 4 - }, - { - "name": "open-inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/open-equipped-OUTERCLOTHING.png deleted file mode 100644 index 9febdbf7f9..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/open-equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/open-inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/open-inhand-left.png deleted file mode 100644 index 14d79a47c7..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/open-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/open-inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/open-inhand-right.png deleted file mode 100644 index 5de94a636e..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/bomber.rsi/open-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/clownpriest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/clownpriest.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 9ef84f929b..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/clownpriest.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/clownpriest.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/clownpriest.rsi/icon.png deleted file mode 100644 index da14db2967..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/clownpriest.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/clownpriest.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/clownpriest.rsi/inhand-left.png deleted file mode 100644 index fb6baa18e9..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/clownpriest.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/clownpriest.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/clownpriest.rsi/inhand-right.png deleted file mode 100644 index a04d8c4ff8..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/clownpriest.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/clownpriest.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Coats/clownpriest.rsi/meta.json deleted file mode 100644 index 5991bba2cb..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Coats/clownpriest.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-body-slim", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/detective.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/detective.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 83ce2d2787..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/detective.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/detective.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/detective.rsi/icon.png deleted file mode 100644 index 289e1496c2..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/detective.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/detective.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/detective.rsi/inhand-left.png deleted file mode 100644 index 8274ada74a..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/detective.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/detective.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/detective.rsi/inhand-right.png deleted file mode 100644 index 5e5f6f9816..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/detective.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/detective.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Coats/detective.rsi/meta.json deleted file mode 100644 index 18a65e16d7..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Coats/detective.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC0-1.0", - "copyright": "Created by EmoGarbage404", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index c45743726c..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/icon.png deleted file mode 100644 index 3b4410b9a5..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-left.png deleted file mode 100644 index 52b9733ec1..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-right.png deleted file mode 100644 index 83e924a710..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/meta.json deleted file mode 100644 index e482264df5..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/jacket.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Coats/jacket.rsi/meta.json index 2c69bc1918..cf84bad3dd 100644 --- a/Resources/Textures/_White/Clothing/OuterClothing/Coats/jacket.rsi/meta.json +++ b/Resources/Textures/_White/Clothing/OuterClothing/Coats/jacket.rsi/meta.json @@ -1,6 +1,6 @@ { "version": 1, - "license": "CC-BY-SA-3.0", + "license": "CC-BY-SA-4.0", "copyright": "Created by omsoyk (Discord)", "size": { "x": 32, diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 87658bf58d..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/icon-open.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/icon-open.png deleted file mode 100644 index aa1ed9795b..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/icon-open.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/icon.png deleted file mode 100644 index d8d511a106..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/inhand-left.png deleted file mode 100644 index 3c79e71b80..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/inhand-right.png deleted file mode 100644 index 4d242231b3..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/meta.json deleted file mode 100644 index 442bfb2920..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/meta.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-open" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "open-equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "open-inhand-left", - "directions": 4 - }, - { - "name": "open-inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/open-equipped-OUTERCLOTHING.png deleted file mode 100644 index ab0dc88ef3..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/open-equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-left.png deleted file mode 100644 index 6bcdca16c0..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-right.png deleted file mode 100644 index 82c918a782..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat.rsi/open-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 564a71592d..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/icon-open.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/icon-open.png deleted file mode 100644 index 4e3cc76502..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/icon-open.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/icon.png deleted file mode 100644 index 5f98915603..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/inhand-left.png deleted file mode 100644 index 5874b7c2e1..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/inhand-right.png deleted file mode 100644 index c20728e8b2..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/meta.json deleted file mode 100644 index 442bfb2920..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/meta.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-open" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "open-equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "open-inhand-left", - "directions": 4 - }, - { - "name": "open-inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-equipped-OUTERCLOTHING.png deleted file mode 100644 index 6c0cb71f9d..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-inhand-left.png deleted file mode 100644 index 6ae8234f0c..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-inhand-right.png deleted file mode 100644 index 46ab3843f9..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_chem.rsi/open-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index ef6945707c..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/icon-open.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/icon-open.png deleted file mode 100644 index 98f94fc9a4..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/icon-open.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/icon.png deleted file mode 100644 index 178aae3e79..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/meta.json deleted file mode 100644 index 5ed6e84abe..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/meta.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-open" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "open-equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "open-inhand-left", - "directions": 4 - }, - { - "name": "open-inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-equipped-OUTERCLOTHING.png deleted file mode 100644 index cc7fa6b486..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-inhand-left.png deleted file mode 100644 index 31025b7dda..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-inhand-right.png deleted file mode 100644 index 01e8e0fbc1..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_cmo.rsi/open-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 93355862f9..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/icon-open.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/icon-open.png deleted file mode 100644 index 07ec0ff9a8..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/icon-open.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/icon.png deleted file mode 100644 index ddd4a32e1e..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/inhand-left.png deleted file mode 100644 index a37143bc80..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/inhand-right.png deleted file mode 100644 index 50f452331d..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/meta.json deleted file mode 100644 index 6cb239d8c8..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/meta.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Modified from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-open" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "open-equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "open-inhand-left", - "directions": 4 - }, - { - "name": "open-inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-equipped-OUTERCLOTHING.png deleted file mode 100644 index c9820d49e2..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-inhand-left.png deleted file mode 100644 index 0fd1c0d840..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-inhand-right.png deleted file mode 100644 index b2596585fa..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/labcoat_viro.rsi/open-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 8760a37e84..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/warden.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/warden.rsi/icon.png deleted file mode 100644 index 76eb0450fb..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/warden.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/warden.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/warden.rsi/inhand-left.png deleted file mode 100644 index 51b08d9568..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/warden.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/warden.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Coats/warden.rsi/inhand-right.png deleted file mode 100644 index 464ee509bc..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Coats/warden.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Coats/warden.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Coats/warden.rsi/meta.json deleted file mode 100644 index e482264df5..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Coats/warden.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 84ef86445d..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/icon.png deleted file mode 100644 index 8be6636410..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/inhand-left.png deleted file mode 100644 index 5aec0b98c7..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/inhand-right.png deleted file mode 100644 index b329d4672d..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json deleted file mode 100644 index 7066e0e534..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-unshaded", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index eeb9ddc4e0..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/capspace.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/capspace.rsi/icon.png deleted file mode 100644 index 6ddc87d92b..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/capspace.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-left.png deleted file mode 100644 index 210b5a031d..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-right.png deleted file mode 100644 index 15e8194012..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/capspace.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json deleted file mode 100644 index ce5f8f28cb..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/clown.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/clown.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 0e26e157b0..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/clown.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/clown.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/clown.rsi/icon.png deleted file mode 100644 index c734f2445e..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/clown.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/clown.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/clown.rsi/inhand-left.png deleted file mode 100644 index 4ba7d957ee..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/clown.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/clown.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/clown.rsi/inhand-right.png deleted file mode 100644 index 6e55d47115..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/clown.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/clown.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/clown.rsi/meta.json deleted file mode 100644 index b8371e35aa..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/clown.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/cybersun.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/cybersun.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 003645bb30..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/cybersun.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/cybersun.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/cybersun.rsi/icon.png deleted file mode 100644 index 79faa4c531..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/cybersun.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/cybersun.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/cybersun.rsi/inhand-left.png deleted file mode 100644 index 0c126c8819..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/cybersun.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/cybersun.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/cybersun.rsi/inhand-right.png deleted file mode 100644 index 7a40cb38d8..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/cybersun.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/cybersun.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/cybersun.rsi/meta.json deleted file mode 100644 index 4f1d92e87e..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/cybersun.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Sprite made by Gtheglorious based on the sprite made by emisse for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index c76ab01fe2..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/icon.png deleted file mode 100644 index 29c6b2876f..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/inhand-left.png deleted file mode 100644 index ed8c8a628e..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/inhand-right.png deleted file mode 100644 index b0f9bef933..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/meta.json deleted file mode 100644 index ce5f8f28cb..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 508fe626ca..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/icon.png deleted file mode 100644 index c94a6aa352..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/inhand-left.png deleted file mode 100644 index cb32cd1058..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/inhand-right.png deleted file mode 100644 index af40dac726..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/meta.json deleted file mode 100644 index 7066e0e534..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-unshaded", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 74e738732b..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering.rsi/icon.png deleted file mode 100644 index 09f3b36e9a..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering.rsi/inhand-left.png deleted file mode 100644 index c8e07a92f9..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering.rsi/inhand-right.png deleted file mode 100644 index d2ba2e0254..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json deleted file mode 100644 index 7066e0e534..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-unshaded", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 16822d9610..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/luxury.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/luxury.rsi/icon.png deleted file mode 100644 index 97ff15fce7..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/luxury.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/luxury.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/luxury.rsi/inhand-left.png deleted file mode 100644 index 5d513b0fbf..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/luxury.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/luxury.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/luxury.rsi/inhand-right.png deleted file mode 100644 index dc44910e24..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/luxury.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/luxury.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/luxury.rsi/meta.json deleted file mode 100644 index ce5f8f28cb..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/luxury.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 25c630df78..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/paramed.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/paramed.rsi/icon.png deleted file mode 100644 index 6788fa2cb2..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/paramed.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/paramed.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/paramed.rsi/inhand-left.png deleted file mode 100644 index 41ba71312a..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/paramed.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/paramed.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/paramed.rsi/inhand-right.png deleted file mode 100644 index 750412b5d0..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/paramed.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json deleted file mode 100644 index ce5f8f28cb..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 799f08fe75..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/rd.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/rd.rsi/icon.png deleted file mode 100644 index cb64dc3f0f..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/rd.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/rd.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/rd.rsi/inhand-left.png deleted file mode 100644 index 66cc8c046e..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/rd.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/rd.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/rd.rsi/inhand-right.png deleted file mode 100644 index eb83427e67..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/rd.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/rd.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/rd.rsi/meta.json deleted file mode 100644 index ce5f8f28cb..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/rd.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 93c119e4ed..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/salvage.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/salvage.rsi/icon.png deleted file mode 100644 index 434a0e862a..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/salvage.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/salvage.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/salvage.rsi/inhand-left.png deleted file mode 100644 index 93ad2875fb..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/salvage.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/salvage.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/salvage.rsi/inhand-right.png deleted file mode 100644 index aac450b870..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/salvage.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json deleted file mode 100644 index ce5f8f28cb..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 7cc473954b..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-red.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-red.rsi/icon.png deleted file mode 100644 index 0d08bfbd09..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-red.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-left.png deleted file mode 100644 index d2403d9012..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-right.png deleted file mode 100644 index 5162157c69..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-red.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-red.rsi/meta.json deleted file mode 100644 index e482264df5..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-red.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index a834f6aa05..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-warden.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-warden.rsi/icon.png deleted file mode 100644 index 6177793a02..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-warden.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-left.png deleted file mode 100644 index d2403d9012..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-right.png deleted file mode 100644 index 5162157c69..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json deleted file mode 100644 index 54a0ed85fa..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Sprite made by Gtheglorious based on the sprite made by Alekshhh for SS14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 3df3451fba..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security.rsi/icon.png deleted file mode 100644 index 0d920b0a40..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-left.png deleted file mode 100644 index 6fdb2eedd8..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-right.png deleted file mode 100644 index 51b09f7f29..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json deleted file mode 100644 index 32d6d8901a..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Sprite made by Gtheglorious based on the sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/spatio.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/spatio.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index eaf6992676..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/spatio.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/spatio.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/spatio.rsi/icon.png deleted file mode 100644 index 627d3d155a..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/spatio.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/spatio.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/spatio.rsi/inhand-left.png deleted file mode 100644 index 7b242810f3..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/spatio.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/spatio.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/spatio.rsi/inhand-right.png deleted file mode 100644 index a4e25337d9..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/spatio.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/spatio.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/spatio.rsi/meta.json deleted file mode 100644 index d8001fe037..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/spatio.rsi/meta.json +++ /dev/null @@ -1,28 +0,0 @@ - -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Original by Emisse, modified by EmoGarbage404", - - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING-monkey.png deleted file mode 100644 index 4ae13f6dcd..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 7f16c61a2a..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndicate.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndicate.rsi/icon.png deleted file mode 100644 index d94dd3bc29..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndicate.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndicate.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndicate.rsi/inhand-left.png deleted file mode 100644 index 268fde26b1..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndicate.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndicate.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndicate.rsi/inhand-right.png deleted file mode 100644 index 29b67726d8..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndicate.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndicate.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndicate.rsi/meta.json deleted file mode 100644 index e216d7371a..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndicate.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34, equipped-OUTERCLOTHING-monkey made by Dutch-VanDerLinde", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index b7b52f0c41..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/icon.png deleted file mode 100644 index 871fcbd074..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/inhand-left.png deleted file mode 100644 index a27d75760a..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/inhand-right.png deleted file mode 100644 index 11f4011e6e..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 24970c7ac6..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/icon.png deleted file mode 100644 index 0ba07b9c38..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/inhand-left.png deleted file mode 100644 index 3ffcc52ad0..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/inhand-right.png deleted file mode 100644 index a5ae29e366..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json deleted file mode 100644 index c9f0d90ea1..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING-monkey.png deleted file mode 100644 index b817257a16..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index e1f1fa005e..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva.rsi/icon.png deleted file mode 100644 index aaa1191bd4..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva.rsi/inhand-left.png deleted file mode 100644 index ffea0dee65..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva.rsi/inhand-right.png deleted file mode 100644 index a5514767c4..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva.rsi/meta.json deleted file mode 100644 index 3aba71800e..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 94b5262171..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_emergency.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_emergency.rsi/icon.png deleted file mode 100644 index 7f385e6d1f..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_emergency.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_emergency.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_emergency.rsi/inhand-left.png deleted file mode 100644 index 974a3be3a7..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_emergency.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_emergency.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_emergency.rsi/inhand-right.png deleted file mode 100644 index bd076ae1d7..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_emergency.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json deleted file mode 100644 index ce5f8f28cb..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING-monkey.png deleted file mode 100644 index aafe767fba..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index b267c21f14..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_prisoner.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_prisoner.rsi/icon.png deleted file mode 100644 index b5b8d8c351..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_prisoner.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_prisoner.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_prisoner.rsi/inhand-left.png deleted file mode 100644 index 375d486e0f..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_prisoner.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_prisoner.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_prisoner.rsi/inhand-right.png deleted file mode 100644 index 666db5a89e..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_prisoner.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_prisoner.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_prisoner.rsi/meta.json deleted file mode 100644 index 3aba71800e..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_prisoner.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING-monkey.png deleted file mode 100644 index bbc442689d..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index b9bab764ff..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_syndicate.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_syndicate.rsi/icon.png deleted file mode 100644 index f2acf28298..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_syndicate.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_syndicate.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_syndicate.rsi/inhand-left.png deleted file mode 100644 index 688af2beaf..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_syndicate.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_syndicate.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_syndicate.rsi/inhand-right.png deleted file mode 100644 index 9181f8a1d0..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_syndicate.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_syndicate.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_syndicate.rsi/meta.json deleted file mode 100644 index 3aba71800e..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Suits/eva_syndicate.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/fire.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/fire.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 97f06bdea2..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/fire.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/fire.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/fire.rsi/icon.png deleted file mode 100644 index 66b0e591a7..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/fire.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/fire.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/fire.rsi/inhand-left.png deleted file mode 100644 index ad84316953..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/fire.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/fire.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/fire.rsi/inhand-right.png deleted file mode 100644 index 30468f6ee3..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/fire.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/fire.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Suits/fire.rsi/meta.json deleted file mode 100644 index ce5f8f28cb..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Suits/fire.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/rad.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/rad.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 96272297f2..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/rad.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/rad.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/rad.rsi/icon.png deleted file mode 100644 index 13c3b241fa..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/rad.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/rad.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/rad.rsi/inhand-left.png deleted file mode 100644 index 81c7dcb99f..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/rad.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/rad.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Suits/rad.rsi/inhand-right.png deleted file mode 100644 index 76dc0b2e75..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Suits/rad.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Suits/rad.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Suits/rad.rsi/meta.json deleted file mode 100644 index ce5f8f28cb..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Suits/rad.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Vests/detvest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Vests/detvest.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 085b66f501..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Vests/detvest.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Vests/detvest.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Vests/detvest.rsi/icon.png deleted file mode 100644 index fa5e1f9420..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Vests/detvest.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Vests/detvest.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Vests/detvest.rsi/inhand-left.png deleted file mode 100644 index 457d2f0aa7..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Vests/detvest.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Vests/detvest.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Vests/detvest.rsi/inhand-right.png deleted file mode 100644 index 46c4bf259c..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Vests/detvest.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Vests/detvest.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Vests/detvest.rsi/meta.json deleted file mode 100644 index 1bf5021813..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Vests/detvest.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-body-slim", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 9474a31375..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Vests/hazard.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/Vests/hazard.rsi/icon.png deleted file mode 100644 index 36396bc3f0..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Vests/hazard.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Vests/hazard.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/Vests/hazard.rsi/inhand-left.png deleted file mode 100644 index d0ddf4e66a..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Vests/hazard.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Vests/hazard.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/Vests/hazard.rsi/inhand-right.png deleted file mode 100644 index 94b45b9296..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/Vests/hazard.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/Vests/hazard.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/Vests/hazard.rsi/meta.json deleted file mode 100644 index 05ec90135e..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/Vests/hazard.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatcap.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatcap.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 687810dc88..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatcap.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatcap.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatcap.rsi/icon.png deleted file mode 100644 index 407dabf42b..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatcap.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatcap.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatcap.rsi/inhand-left.png deleted file mode 100644 index b663f23d36..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatcap.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatcap.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatcap.rsi/inhand-right.png deleted file mode 100644 index 567058cda9..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatcap.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatcap.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatcap.rsi/meta.json deleted file mode 100644 index c9a1729262..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatcap.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62 , edited by Skarletto (github)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatclown.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatclown.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 549dd538b3..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatclown.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatclown.rsi/icon.png b/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatclown.rsi/icon.png deleted file mode 100644 index 5b69e6d31a..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatclown.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatclown.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatclown.rsi/inhand-left.png deleted file mode 100644 index 0232dd6546..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatclown.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatclown.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatclown.rsi/inhand-right.png deleted file mode 100644 index fa5c518ce9..0000000000 Binary files a/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatclown.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatclown.rsi/meta.json b/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatclown.rsi/meta.json deleted file mode 100644 index 5991bba2cb..0000000000 --- a/Resources/Textures/_White/Clothing/OuterClothing/WinterCoats/coatclown.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-body-slim", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET.png deleted file mode 100644 index 16afeda1ba..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/icon-on.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/icon-on.png deleted file mode 100644 index 9b0b7c706b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/icon-on.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/icon.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/icon.png deleted file mode 100644 index 89c3417b16..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/inhand-left.png deleted file mode 100644 index 758f9af214..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/inhand-right.png deleted file mode 100644 index 73408854d2..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/meta.json b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/meta.json deleted file mode 100644 index 07277a5b74..0000000000 --- a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/meta.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/tgstation/tgstation/commit/3d319f6157acc1c1cd9ebcb0f6f12641e051cf91", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "equipped-FEET", - "directions": 4 - }, - { - "name": "on-equipped-FEET", - "directions": 4 - }, - { - "name": "equipped-FEET-body-slim", - "directions": 4 - }, - { - "name": "on-equipped-FEET-body-slim", - "directions": 4 - }, - { - "name": "icon" - }, - { - "name": "icon-on" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "on-inhand-left", - "directions": 4 - }, - { - "name": "on-inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/on-equipped-FEET.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/on-equipped-FEET.png deleted file mode 100644 index ba9fdd9f0e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/on-equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/on-inhand-left.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/on-inhand-left.png deleted file mode 100644 index d942e801c8..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/on-inhand-right.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/on-inhand-right.png deleted file mode 100644 index d208b01083..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-advanced.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/equipped-FEET.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/equipped-FEET.png deleted file mode 100644 index 46c3c07f2a..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/icon-on.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/icon-on.png deleted file mode 100644 index 8ac7d47e22..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/icon-on.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/icon.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/icon.png deleted file mode 100644 index d32bae80d9..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/inhand-left.png deleted file mode 100644 index 7c279de231..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/inhand-right.png deleted file mode 100644 index c069f28203..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/meta.json b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/meta.json deleted file mode 100644 index 80defebb20..0000000000 --- a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/meta.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/debf90acfcafa4fb8d6723a37e0b8ac556c0702b", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "equipped-FEET", - "directions": 4 - }, - { - "name": "on-equipped-FEET", - "directions": 4 - }, - { - "name": "equipped-FEET-body-slim", - "directions": 4 - }, - { - "name": "on-equipped-FEET-body-slim", - "directions": 4 - }, - { - "name": "icon" - }, - { - "name": "icon-on" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "on-inhand-left", - "directions": 4 - }, - { - "name": "on-inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET.png deleted file mode 100644 index cb52d744c4..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-inhand-left.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-inhand-left.png deleted file mode 100644 index 36ea8a7a3e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-inhand-right.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-inhand-right.png deleted file mode 100644 index 29b824f637..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET.png deleted file mode 100644 index b72bb89dab..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/icon-on.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/icon-on.png deleted file mode 100644 index 974fd780c1..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/icon-on.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/icon.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/icon.png deleted file mode 100644 index a489f65b73..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/inhand-left.png deleted file mode 100644 index f23e4c0e24..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/inhand-right.png deleted file mode 100644 index 678da000f3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/meta.json b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/meta.json deleted file mode 100644 index 20def3a26e..0000000000 --- a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/meta.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "equipped-FEET", - "directions": 4 - }, - { - "name": "on-equipped-FEET", - "directions": 4 - }, - { - "name": "equipped-FEET-body-slim", - "directions": 4 - }, - { - "name": "on-equipped-FEET-body-slim", - "directions": 4 - }, - { - "name": "icon" - }, - { - "name": "icon-on" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "on-inhand-left", - "directions": 4 - }, - { - "name": "on-inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET.png deleted file mode 100644 index 9ca69a7258..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/on-inhand-left.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/on-inhand-left.png deleted file mode 100644 index b92750829f..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/on-inhand-right.png b/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/on-inhand-right.png deleted file mode 100644 index 48f52600af..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/magboots.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/workboots.rsi/equipped-FEET.png b/Resources/Textures/_White/Clothing/Shoes/Boots/workboots.rsi/equipped-FEET.png deleted file mode 100644 index 80cca57bef..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/workboots.rsi/equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/workboots.rsi/icon.png b/Resources/Textures/_White/Clothing/Shoes/Boots/workboots.rsi/icon.png deleted file mode 100644 index 04a64ba539..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/workboots.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/workboots.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Shoes/Boots/workboots.rsi/inhand-left.png deleted file mode 100644 index f7a74b73a5..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/workboots.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/workboots.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Shoes/Boots/workboots.rsi/inhand-right.png deleted file mode 100644 index 3240c04579..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Boots/workboots.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Boots/workboots.rsi/meta.json b/Resources/Textures/_White/Clothing/Shoes/Boots/workboots.rsi/meta.json deleted file mode 100644 index 54b1191d42..0000000000 --- a/Resources/Textures/_White/Clothing/Shoes/Boots/workboots.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-FEET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/bling.rsi/equipped-FEET.png b/Resources/Textures/_White/Clothing/Shoes/Specific/bling.rsi/equipped-FEET.png deleted file mode 100644 index 11b1cc9115..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/bling.rsi/equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/bling.rsi/icon.png b/Resources/Textures/_White/Clothing/Shoes/Specific/bling.rsi/icon.png deleted file mode 100644 index dbf004e8d4..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/bling.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/bling.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Shoes/Specific/bling.rsi/inhand-left.png deleted file mode 100644 index 668210159e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/bling.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/bling.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Shoes/Specific/bling.rsi/inhand-right.png deleted file mode 100644 index d743b64a04..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/bling.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/bling.rsi/meta.json b/Resources/Textures/_White/Clothing/Shoes/Specific/bling.rsi/meta.json deleted file mode 100644 index 42ec8aba1a..0000000000 --- a/Resources/Textures/_White/Clothing/Shoes/Specific/bling.rsi/meta.json +++ /dev/null @@ -1,31 +0,0 @@ - -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-FEET", - "directions": 4 - }, - { - "name": "equipped-FEET-body-slim", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/clown.rsi/equipped-FEET.png b/Resources/Textures/_White/Clothing/Shoes/Specific/clown.rsi/equipped-FEET.png deleted file mode 100644 index a3fa5b613c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/clown.rsi/equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/clown.rsi/icon.png b/Resources/Textures/_White/Clothing/Shoes/Specific/clown.rsi/icon.png deleted file mode 100644 index 0ca12d72a4..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/clown.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/clown.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Shoes/Specific/clown.rsi/inhand-left.png deleted file mode 100644 index a350508b9b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/clown.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/clown.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Shoes/Specific/clown.rsi/inhand-right.png deleted file mode 100644 index a6580783d7..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/clown.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/clown.rsi/meta.json b/Resources/Textures/_White/Clothing/Shoes/Specific/clown.rsi/meta.json deleted file mode 100644 index cb5d4da33a..0000000000 --- a/Resources/Textures/_White/Clothing/Shoes/Specific/clown.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-FEET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/clown_banana.rsi/equipped-FEET.png b/Resources/Textures/_White/Clothing/Shoes/Specific/clown_banana.rsi/equipped-FEET.png deleted file mode 100644 index 64fd5589cb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/clown_banana.rsi/equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/clown_banana.rsi/icon.png b/Resources/Textures/_White/Clothing/Shoes/Specific/clown_banana.rsi/icon.png deleted file mode 100644 index 9d44168b07..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/clown_banana.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/clown_banana.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Shoes/Specific/clown_banana.rsi/inhand-left.png deleted file mode 100644 index f09c0bfdb4..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/clown_banana.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/clown_banana.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Shoes/Specific/clown_banana.rsi/inhand-right.png deleted file mode 100644 index 35d84581af..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/clown_banana.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/clown_banana.rsi/meta.json b/Resources/Textures/_White/Clothing/Shoes/Specific/clown_banana.rsi/meta.json deleted file mode 100644 index cb5d4da33a..0000000000 --- a/Resources/Textures/_White/Clothing/Shoes/Specific/clown_banana.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-FEET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/cluwne.rsi/equipped-FEET.png b/Resources/Textures/_White/Clothing/Shoes/Specific/cluwne.rsi/equipped-FEET.png deleted file mode 100644 index 864d10081d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/cluwne.rsi/equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/cluwne.rsi/icon.png b/Resources/Textures/_White/Clothing/Shoes/Specific/cluwne.rsi/icon.png deleted file mode 100644 index d9a09c1980..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/cluwne.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/cluwne.rsi/meta.json b/Resources/Textures/_White/Clothing/Shoes/Specific/cluwne.rsi/meta.json deleted file mode 100644 index a516795983..0000000000 --- a/Resources/Textures/_White/Clothing/Shoes/Specific/cluwne.rsi/meta.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-FEET", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/galoshes.rsi/equipped-FEET.png b/Resources/Textures/_White/Clothing/Shoes/Specific/galoshes.rsi/equipped-FEET.png deleted file mode 100644 index 0e57494719..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/galoshes.rsi/equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/galoshes.rsi/icon.png b/Resources/Textures/_White/Clothing/Shoes/Specific/galoshes.rsi/icon.png deleted file mode 100644 index 6580f1da7e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/galoshes.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/galoshes.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Shoes/Specific/galoshes.rsi/inhand-left.png deleted file mode 100644 index 12edf43a23..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/galoshes.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/galoshes.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Shoes/Specific/galoshes.rsi/inhand-right.png deleted file mode 100644 index d135a13acc..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/galoshes.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/galoshes.rsi/meta.json b/Resources/Textures/_White/Clothing/Shoes/Specific/galoshes.rsi/meta.json deleted file mode 100644 index e091f44eb9..0000000000 --- a/Resources/Textures/_White/Clothing/Shoes/Specific/galoshes.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-FEET", - "directions": 4 - }, - { - "name": "equipped-FEET-body-slim", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/jester.rsi/equipped-FEET.png b/Resources/Textures/_White/Clothing/Shoes/Specific/jester.rsi/equipped-FEET.png deleted file mode 100644 index 2820099484..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/jester.rsi/equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/jester.rsi/icon.png b/Resources/Textures/_White/Clothing/Shoes/Specific/jester.rsi/icon.png deleted file mode 100644 index ef3fd539f4..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/jester.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/jester.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Shoes/Specific/jester.rsi/inhand-left.png deleted file mode 100644 index 667eda570e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/jester.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/jester.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Shoes/Specific/jester.rsi/inhand-right.png deleted file mode 100644 index ab1b7ec9eb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/jester.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/jester.rsi/meta.json b/Resources/Textures/_White/Clothing/Shoes/Specific/jester.rsi/meta.json deleted file mode 100644 index 373a49e791..0000000000 --- a/Resources/Textures/_White/Clothing/Shoes/Specific/jester.rsi/meta.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-FEET", - "directions": 4 - }, - { - "name": "equipped-FEET-body-slim", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/large_clown.rsi/equipped-FEET.png b/Resources/Textures/_White/Clothing/Shoes/Specific/large_clown.rsi/equipped-FEET.png deleted file mode 100644 index 2fb1f133a1..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/large_clown.rsi/equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/large_clown.rsi/icon.png b/Resources/Textures/_White/Clothing/Shoes/Specific/large_clown.rsi/icon.png deleted file mode 100644 index 62cbfffdf4..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/large_clown.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/large_clown.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Shoes/Specific/large_clown.rsi/inhand-left.png deleted file mode 100644 index a350508b9b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/large_clown.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/large_clown.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Shoes/Specific/large_clown.rsi/inhand-right.png deleted file mode 100644 index a6580783d7..0000000000 Binary files a/Resources/Textures/_White/Clothing/Shoes/Specific/large_clown.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Shoes/Specific/large_clown.rsi/meta.json b/Resources/Textures/_White/Clothing/Shoes/Specific/large_clown.rsi/meta.json deleted file mode 100644 index cb5d4da33a..0000000000 --- a/Resources/Textures/_White/Clothing/Shoes/Specific/large_clown.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-FEET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/atmosf.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/atmosf.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 1103d8bc6c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/atmosf.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/atmosf.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/atmosf.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 205ff59c34..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/atmosf.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/atmosf.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/atmosf.rsi/icon.png deleted file mode 100644 index 5632c57eb3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/atmosf.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/atmosf.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/atmosf.rsi/inhand-left.png deleted file mode 100644 index 5f31602b18..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/atmosf.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/atmosf.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/atmosf.rsi/inhand-right.png deleted file mode 100644 index c5df8b73fb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/atmosf.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/atmosf.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/atmosf.rsi/meta.json deleted file mode 100644 index 1be161f5fb..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/atmosf.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/tgstation/tgstation/commit/beaea876ea426c0e215cee64619862dc19bd9cd8, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/bartender.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/bartender.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index e43a042c0d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/bartender.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/bartender.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/bartender.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 7d0f01c6a1..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/bartender.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/bartender.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/bartender.rsi/icon.png deleted file mode 100644 index 7786d893a5..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/bartender.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/bartender.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/bartender.rsi/inhand-left.png deleted file mode 100644 index 7e54e85c9a..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/bartender.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/bartender.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/bartender.rsi/inhand-right.png deleted file mode 100644 index 9498ad18c5..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/bartender.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/bartender.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/bartender.rsi/meta.json deleted file mode 100644 index 2966c36de9..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/bartender.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/captain.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/captain.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index f7e8abd58d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/captain.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/captain.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/captain.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 032be6c35f..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/captain.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/captain.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/captain.rsi/icon.png deleted file mode 100644 index 2575dc3ac1..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/captain.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/captain.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/captain.rsi/inhand-left.png deleted file mode 100644 index a221cc4eb4..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/captain.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/captain.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/captain.rsi/inhand-right.png deleted file mode 100644 index 3e569369b3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/captain.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/captain.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/captain.rsi/meta.json deleted file mode 100644 index 0b57c04149..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/captain.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "monkey derivative derived by brainfood1183 (github) for ss14 from tgstation at commit https://github.com/tgstation/tgstation/commit/dd97a0e45d904fffadd9d2caad22aedd0d09f3ab then edited by Skarletto (github). Other sprites taken from tgstation at https://github.com/tgstation/tgstation/pull/69842/commits/d8138946b0ed06fced522729ac8eaa0596864329 and edited by Skarletto (github)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cargotech.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cargotech.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 328dba17eb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cargotech.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cargotech.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cargotech.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 1165db623a..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cargotech.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cargotech.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cargotech.rsi/icon.png deleted file mode 100644 index 5b7874e83b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cargotech.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cargotech.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cargotech.rsi/inhand-left.png deleted file mode 100644 index 4f271669a8..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cargotech.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cargotech.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cargotech.rsi/inhand-right.png deleted file mode 100644 index 7b512340cf..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cargotech.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cargotech.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cargotech.rsi/meta.json deleted file mode 100644 index 12bdb72c4a..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cargotech.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, edited by Flareguy. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index c0258cf199..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 0b9a452a71..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/ce.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/ce.rsi/icon.png deleted file mode 100644 index 38f77ef6fa..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/ce.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/ce.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/ce.rsi/inhand-left.png deleted file mode 100644 index 94d9ed8605..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/ce.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/ce.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/ce.rsi/inhand-right.png deleted file mode 100644 index 560879a0f2..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/ce.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/ce.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/ce.rsi/meta.json deleted file mode 100644 index bbcef071e2..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/ce.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chef.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chef.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 7b95c290be..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chef.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chef.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chef.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 8fd7b18c8f..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chef.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chef.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chef.rsi/icon.png deleted file mode 100644 index 3cd2bace43..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chef.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chef.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chef.rsi/inhand-left.png deleted file mode 100644 index 84e5e83e3f..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chef.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chef.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chef.rsi/inhand-right.png deleted file mode 100644 index 69ad696a10..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chef.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chef.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chef.rsi/meta.json deleted file mode 100644 index 36ab573091..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chef.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey derivative made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chemistry.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chemistry.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 1ea3820008..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chemistry.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chemistry.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chemistry.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index f36a0ad781..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chemistry.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chemistry.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chemistry.rsi/icon.png deleted file mode 100644 index 3fb69dcac1..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chemistry.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chemistry.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chemistry.rsi/inhand-left.png deleted file mode 100644 index bad4e867d6..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chemistry.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chemistry.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chemistry.rsi/inhand-right.png deleted file mode 100644 index e6544dfb69..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chemistry.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chemistry.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chemistry.rsi/meta.json deleted file mode 100644 index bbcef071e2..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/chemistry.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cmo.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cmo.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 8ecc76ed92..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cmo.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cmo.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cmo.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 31d07ff06f..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cmo.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cmo.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cmo.rsi/icon.png deleted file mode 100644 index 944f6fec68..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cmo.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cmo.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cmo.rsi/inhand-left.png deleted file mode 100644 index 534669eacd..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cmo.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cmo.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cmo.rsi/inhand-right.png deleted file mode 100644 index 24c4ea8575..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cmo.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cmo.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cmo.rsi/meta.json deleted file mode 100644 index bbcef071e2..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/cmo.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 76d0f3793e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 7195121f4b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective.rsi/icon.png deleted file mode 100644 index 4de094e187..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective.rsi/inhand-left.png deleted file mode 100644 index aed8b4f025..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective.rsi/inhand-right.png deleted file mode 100644 index fd6f60eabb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective.rsi/meta.json deleted file mode 100644 index 36ab573091..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey derivative made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 59399389df..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 098ff6b108..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/icon.png deleted file mode 100644 index e948bb7737..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/inhand-left.png deleted file mode 100644 index 15c30a0491..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/inhand-right.png deleted file mode 100644 index 53512e6969..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/meta.json deleted file mode 100644 index bbcef071e2..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/detective_grey.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/engineering.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/engineering.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index bce4ee2c5b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/engineering.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/engineering.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/engineering.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 3426f0eb92..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/engineering.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/engineering.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/engineering.rsi/icon.png deleted file mode 100644 index 6190e526fd..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/engineering.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/engineering.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/engineering.rsi/inhand-left.png deleted file mode 100644 index cf69e2e3cb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/engineering.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/engineering.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/engineering.rsi/inhand-right.png deleted file mode 100644 index 2ff1950af2..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/engineering.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/engineering.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/engineering.rsi/meta.json deleted file mode 100644 index 36ab573091..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/engineering.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey derivative made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hop.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hop.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index d554bbb656..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hop.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hop.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hop.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 3359a44239..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hop.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hop.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hop.rsi/icon.png deleted file mode 100644 index d9e02bac63..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hop.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hop.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hop.rsi/inhand-left.png deleted file mode 100644 index 1328f0e220..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hop.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hop.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hop.rsi/inhand-right.png deleted file mode 100644 index b2998354a7..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hop.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hop.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hop.rsi/meta.json deleted file mode 100644 index bbcef071e2..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hop.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index b3d41dd754..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index c0a5e94f2b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos.rsi/icon.png deleted file mode 100644 index a027c8c0ba..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos.rsi/inhand-left.png deleted file mode 100644 index f3b0529e93..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos.rsi/inhand-right.png deleted file mode 100644 index d7cfdd2a25..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos.rsi/meta.json deleted file mode 100644 index bbcef071e2..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index da24e1e5f5..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 839785267b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/icon.png deleted file mode 100644 index ce2cfb87c9..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/inhand-left.png deleted file mode 100644 index 2e4a7103ae..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/inhand-right.png deleted file mode 100644 index 8d34f3244e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/meta.json deleted file mode 100644 index 36ab573091..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey derivative made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 7bf700cf1b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index d76f9614fe..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/icon.png deleted file mode 100644 index 129a24cbd1..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/inhand-left.png deleted file mode 100644 index a86cd5b0dc..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/inhand-right.png deleted file mode 100644 index d2d9fe0d74..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/meta.json deleted file mode 100644 index bbcef071e2..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hydro.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hydro.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 26e322a844..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hydro.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hydro.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hydro.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 51e0bce937..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hydro.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hydro.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hydro.rsi/icon.png deleted file mode 100644 index 0b415d07ff..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hydro.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hydro.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hydro.rsi/inhand-left.png deleted file mode 100644 index 37bab77b6c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hydro.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hydro.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hydro.rsi/inhand-right.png deleted file mode 100644 index de75bc9b5c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hydro.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hydro.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hydro.rsi/meta.json deleted file mode 100644 index bbcef071e2..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/hydro.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/medical.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/medical.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index bd2b2275f3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/medical.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/medical.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/medical.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index ba9ea65cec..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/medical.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/medical.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/medical.rsi/icon.png deleted file mode 100644 index 715401b683..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/medical.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/medical.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/medical.rsi/inhand-left.png deleted file mode 100644 index e154ff0120..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/medical.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/medical.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/medical.rsi/inhand-right.png deleted file mode 100644 index a3b9583c23..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/medical.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/medical.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/medical.rsi/meta.json deleted file mode 100644 index bbcef071e2..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/medical.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/mime.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/mime.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 41ae7beb1c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/mime.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/mime.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/mime.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 5fd9c5ab7c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/mime.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/mime.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/mime.rsi/icon.png deleted file mode 100644 index 873dee989c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/mime.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/mime.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/mime.rsi/inhand-left.png deleted file mode 100644 index f52eeb1705..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/mime.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/mime.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/mime.rsi/inhand-right.png deleted file mode 100644 index c4392ea540..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/mime.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/mime.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/mime.rsi/meta.json deleted file mode 100644 index 36ab573091..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/mime.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey derivative made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/operative_s.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/operative_s.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index af77e0b574..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/operative_s.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/operative_s.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/operative_s.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 05de5d50b1..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/operative_s.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/operative_s.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/operative_s.rsi/icon.png deleted file mode 100644 index 5c91d2e37e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/operative_s.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/operative_s.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/operative_s.rsi/inhand-left.png deleted file mode 100644 index ebb3b515aa..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/operative_s.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/operative_s.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/operative_s.rsi/inhand-right.png deleted file mode 100644 index cb143902bd..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/operative_s.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/operative_s.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/operative_s.rsi/meta.json deleted file mode 100644 index 3703cac7d2..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/operative_s.rsi/meta.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d7e905e4d5ab2b0a8ce210c6ad686aeeebbab426, monkey derivative made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-body-slim", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/paramedic.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/paramedic.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 9615f68565..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/paramedic.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/paramedic.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/paramedic.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index a13937f764..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/paramedic.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/paramedic.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/paramedic.rsi/icon.png deleted file mode 100644 index 7f61c958c1..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/paramedic.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/paramedic.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/paramedic.rsi/inhand-left.png deleted file mode 100644 index cf74203965..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/paramedic.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/paramedic.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/paramedic.rsi/inhand-right.png deleted file mode 100644 index 9abbda4ccb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/paramedic.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/paramedic.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/paramedic.rsi/meta.json deleted file mode 100644 index a870478ccb..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/paramedic.rsi/meta.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-body-slim", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/qm.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/qm.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 176108f3e0..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/qm.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/qm.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/qm.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index b874dae0cc..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/qm.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/qm.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/qm.rsi/icon.png deleted file mode 100644 index 62605c2522..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/qm.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-left.png deleted file mode 100644 index 4f271669a8..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-right.png deleted file mode 100644 index 7b512340cf..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/qm.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/qm.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/qm.rsi/meta.json deleted file mode 100644 index 12bdb72c4a..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/qm.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, edited by Flareguy. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/scientist.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/scientist.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index c561710a78..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/scientist.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/scientist.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/scientist.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 4b685f5b4c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/scientist.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/scientist.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/scientist.rsi/icon.png deleted file mode 100644 index 0580e99b2a..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/scientist.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/scientist.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/scientist.rsi/inhand-left.png deleted file mode 100644 index a6f9089cad..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/scientist.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/scientist.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/scientist.rsi/inhand-right.png deleted file mode 100644 index a4c036a457..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/scientist.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/scientist.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/scientist.rsi/meta.json deleted file mode 100644 index bbcef071e2..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/scientist.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/security.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/security.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 9acfc278c0..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/security.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/security.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/security.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index ded1c3536e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/security.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/security.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/security.rsi/icon.png deleted file mode 100644 index 6cfd2a1e48..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/security.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/security.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/security.rsi/inhand-left.png deleted file mode 100644 index 5fc87a93df..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/security.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/security.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/security.rsi/inhand-right.png deleted file mode 100644 index 1cb708b7ad..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/security.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/security.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/security.rsi/meta.json deleted file mode 100644 index 45e0f9141c..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/security.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Original sec jumpsuit from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, jumpskirt sprite made by Flareguy for SS14. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/warden.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/warden.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 8b722ac058..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/warden.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/warden.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/warden.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 793f4c5d9a..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/warden.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/warden.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/warden.rsi/icon.png deleted file mode 100644 index e9ffea3990..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/warden.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/warden.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/warden.rsi/inhand-left.png deleted file mode 100644 index 2ed552361f..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/warden.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/warden.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/warden.rsi/inhand-right.png deleted file mode 100644 index dec63daa28..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/warden.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/warden.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/warden.rsi/meta.json deleted file mode 100644 index bbcef071e2..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpskirt/warden.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/atmos.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/atmos.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 0c91885662..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/atmos.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/atmos.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/atmos.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 8241820827..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/atmos.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/atmos.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/atmos.rsi/icon.png deleted file mode 100644 index 2929d36092..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/atmos.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/atmos.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/atmos.rsi/inhand-left.png deleted file mode 100644 index 5f31602b18..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/atmos.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/atmos.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/atmos.rsi/inhand-right.png deleted file mode 100644 index c5df8b73fb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/atmos.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/atmos.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/atmos.rsi/meta.json deleted file mode 100644 index d17ef03fa6..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/atmos.rsi/meta.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/tgstation/tgstation/commit/beaea876ea426c0e215cee64619862dc19bd9cd8, monkey made by brainfood1183 (github)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-body-slim", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/bartender.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/bartender.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 3f4b091109..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/bartender.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/bartender.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/bartender.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 827abb6947..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/bartender.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/bartender.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/bartender.rsi/icon.png deleted file mode 100644 index 5749dad9f6..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/bartender.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/bartender.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/bartender.rsi/inhand-left.png deleted file mode 100644 index 7e54e85c9a..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/bartender.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/bartender.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/bartender.rsi/inhand-right.png deleted file mode 100644 index 9498ad18c5..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/bartender.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/bartender.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/bartender.rsi/meta.json deleted file mode 100644 index 2966c36de9..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/bartender.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/captain.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/captain.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 368d24a333..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/captain.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/captain.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/captain.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index efa8c60bd5..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/captain.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/captain.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/captain.rsi/icon.png deleted file mode 100644 index e0c9f86274..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/captain.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/captain.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/captain.rsi/inhand-left.png deleted file mode 100644 index a221cc4eb4..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/captain.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/captain.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/captain.rsi/inhand-right.png deleted file mode 100644 index 3e569369b3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/captain.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/captain.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/captain.rsi/meta.json deleted file mode 100644 index b2404c68cd..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/captain.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "monkey derivative derived by brainfood1183 (github) for ss14 from tgstation at commit https://github.com/tgstation/tgstation/commit/dd97a0e45d904fffadd9d2caad22aedd0d09f3ab then edited by Skarletto (github). Other sprites taken from tgstation at https://github.com/tgstation/tgstation/pull/69842/commits/d8138946b0ed06fced522729ac8eaa0596864329 and edited by Skarletto (github)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cargotech.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cargotech.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index d831c9a728..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cargotech.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cargotech.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cargotech.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 760cb902bb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cargotech.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cargotech.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cargotech.rsi/icon.png deleted file mode 100644 index a4f116164b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cargotech.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cargotech.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cargotech.rsi/inhand-left.png deleted file mode 100644 index 2e6a5e61db..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cargotech.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cargotech.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cargotech.rsi/inhand-right.png deleted file mode 100644 index 7061517515..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cargotech.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cargotech.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cargotech.rsi/meta.json deleted file mode 100644 index 12bdb72c4a..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cargotech.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, edited by Flareguy. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index e0881f66bb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 4dfc92de50..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/icon.png deleted file mode 100644 index fcbdc143b1..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-left.png deleted file mode 100644 index 94d9ed8605..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-right.png deleted file mode 100644 index 560879a0f2..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json deleted file mode 100644 index 1d012747b8..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "s" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "s-equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/s-equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/s-equipped-INNERCLOTHING.png deleted file mode 100644 index 213562cf97..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/s-equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/s.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/s.png deleted file mode 100644 index 7282eb27f6..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/ce.rsi/s.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index c1aa7a7592..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index be50ecee1e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/icon.png deleted file mode 100644 index 11cf6c6f98..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/inhand-left.png deleted file mode 100644 index 942a5247ab..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/inhand-right.png deleted file mode 100644 index 65f7b91a71..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/meta.json deleted file mode 100644 index 1fb9cf1b66..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/centcom_official.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chef.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chef.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 26af4f6afb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chef.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chef.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chef.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index cd40928f64..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chef.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chef.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chef.rsi/icon.png deleted file mode 100644 index d35381ba22..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chef.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chef.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chef.rsi/inhand-left.png deleted file mode 100644 index 7f22a4bb37..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chef.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chef.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chef.rsi/inhand-right.png deleted file mode 100644 index 581766f585..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chef.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chef.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chef.rsi/meta.json deleted file mode 100644 index 1fb9cf1b66..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chef.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chemistry.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chemistry.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 411661e87d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chemistry.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chemistry.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chemistry.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 097f3a4be8..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chemistry.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chemistry.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chemistry.rsi/icon.png deleted file mode 100644 index f83d6a7246..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chemistry.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chemistry.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chemistry.rsi/inhand-left.png deleted file mode 100644 index bad4e867d6..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chemistry.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chemistry.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chemistry.rsi/inhand-right.png deleted file mode 100644 index e6544dfb69..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chemistry.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chemistry.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chemistry.rsi/meta.json deleted file mode 100644 index f2706e7fb6..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/chemistry.rsi/meta.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-body-slim", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 5945da7d78..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index cb98288e8b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown.rsi/icon.png deleted file mode 100644 index 345cd67b9d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown.rsi/inhand-left.png deleted file mode 100644 index 955631baa4..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown.rsi/inhand-right.png deleted file mode 100644 index 3d6828c78d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown.rsi/meta.json deleted file mode 100644 index 74cc551bc6..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index d305015c3b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index b1ddfe4427..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/icon.png deleted file mode 100644 index 9db9306570..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/inhand-left.png deleted file mode 100644 index 186de2f66c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/inhand-right.png deleted file mode 100644 index d4c921e87f..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/meta.json deleted file mode 100644 index 74cc551bc6..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/clown_banana.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cluwne.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cluwne.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index bebbe14bbd..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cluwne.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cluwne.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cluwne.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index ef5f4f9b91..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cluwne.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cluwne.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cluwne.rsi/icon.png deleted file mode 100644 index 8c16453499..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cluwne.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cluwne.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cluwne.rsi/inhand-left.png deleted file mode 100644 index 6aff0a7504..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cluwne.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cluwne.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cluwne.rsi/inhand-right.png deleted file mode 100644 index 2d931ac04a..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cluwne.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cluwne.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cluwne.rsi/meta.json deleted file mode 100644 index 74cc551bc6..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cluwne.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cmo.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cmo.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index fc94b595b8..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cmo.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cmo.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cmo.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 45024ef6d4..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cmo.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cmo.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cmo.rsi/icon.png deleted file mode 100644 index 9ba01fecaf..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cmo.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cmo.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cmo.rsi/inhand-left.png deleted file mode 100644 index 534669eacd..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cmo.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cmo.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cmo.rsi/inhand-right.png deleted file mode 100644 index 24c4ea8575..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cmo.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cmo.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cmo.rsi/meta.json deleted file mode 100644 index f2706e7fb6..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/cmo.rsi/meta.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-body-slim", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index c40a7f3bf3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 0e87ed1406..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective.rsi/icon.png deleted file mode 100644 index 6b4f7b7020..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective.rsi/inhand-left.png deleted file mode 100644 index aed8b4f025..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective.rsi/inhand-right.png deleted file mode 100644 index fd6f60eabb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective.rsi/meta.json deleted file mode 100644 index 1fb9cf1b66..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 59791ed5fa..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index bb4ab105cb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/icon.png deleted file mode 100644 index 920a65dac4..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/inhand-left.png deleted file mode 100644 index 15c30a0491..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/inhand-right.png deleted file mode 100644 index 53512e6969..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/meta.json deleted file mode 100644 index 3f72fb4460..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/detective_grey.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index a7424bcb4d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index b71c63fd6e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering.rsi/icon.png deleted file mode 100644 index 3c6420e675..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering.rsi/inhand-left.png deleted file mode 100644 index cf69e2e3cb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering.rsi/inhand-right.png deleted file mode 100644 index 2ff1950af2..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering.rsi/meta.json deleted file mode 100644 index 1fb9cf1b66..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index bd4559830e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index abc09c9ecd..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/icon.png deleted file mode 100644 index 2b14937536..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/inhand-left.png deleted file mode 100644 index cf69e2e3cb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/inhand-right.png deleted file mode 100644 index 2ff1950af2..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/meta.json deleted file mode 100644 index 1fb9cf1b66..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hop.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hop.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 8210e84110..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hop.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hop.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hop.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 4482c7ecc3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hop.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hop.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hop.rsi/icon.png deleted file mode 100644 index 72cd698b80..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hop.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hop.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hop.rsi/inhand-left.png deleted file mode 100644 index 1328f0e220..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hop.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hop.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hop.rsi/inhand-right.png deleted file mode 100644 index b2998354a7..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hop.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hop.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hop.rsi/meta.json deleted file mode 100644 index 3f72fb4460..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hop.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index fa049e89a5..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index f385cd626d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos.rsi/icon.png deleted file mode 100644 index bc816835b3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos.rsi/inhand-left.png deleted file mode 100644 index f3b0529e93..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos.rsi/inhand-right.png deleted file mode 100644 index d7cfdd2a25..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos.rsi/meta.json deleted file mode 100644 index 3f72fb4460..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 0d26aebd26..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 871a1ab7fd..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/icon.png deleted file mode 100644 index b318f04b3b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/inhand-left.png deleted file mode 100644 index 2e4a7103ae..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/inhand-right.png deleted file mode 100644 index 8d34f3244e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/meta.json deleted file mode 100644 index 1fb9cf1b66..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 53892503a0..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 3a8fe6889a..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/icon.png deleted file mode 100644 index 5b03cfa5a2..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/inhand-left.png deleted file mode 100644 index b65924044a..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/inhand-right.png deleted file mode 100644 index b8c0df6b66..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/meta.json deleted file mode 100644 index 3f72fb4460..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_blue.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 24fb0f7d29..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 5649656063..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/icon.png deleted file mode 100644 index b2d7256ef0..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/inhand-left.png deleted file mode 100644 index a86cd5b0dc..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/inhand-right.png deleted file mode 100644 index d2d9fe0d74..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/meta.json deleted file mode 100644 index 3f72fb4460..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hydro.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hydro.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 102ab3dc26..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hydro.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hydro.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hydro.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index d6c8bd53cd..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hydro.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hydro.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hydro.rsi/icon.png deleted file mode 100644 index 20bfd46815..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hydro.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hydro.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hydro.rsi/inhand-left.png deleted file mode 100644 index 37bab77b6c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hydro.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hydro.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hydro.rsi/inhand-right.png deleted file mode 100644 index de75bc9b5c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hydro.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hydro.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hydro.rsi/meta.json deleted file mode 100644 index 3f72fb4460..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/hydro.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 56d9091d22..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index cd0df3bc1b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester.rsi/icon.png deleted file mode 100644 index add742dcb0..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester.rsi/inhand-left.png deleted file mode 100644 index 12180adc4d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester.rsi/inhand-right.png deleted file mode 100644 index e64e57b59a..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester.rsi/meta.json deleted file mode 100644 index 9cba773bf5..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester.rsi/meta.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester2.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester2.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 88a7261570..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester2.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester2.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester2.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 7063ddbf8d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester2.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester2.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester2.rsi/icon.png deleted file mode 100644 index 759a6dc23f..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester2.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester2.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester2.rsi/inhand-left.png deleted file mode 100644 index 11559f8567..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester2.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester2.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester2.rsi/inhand-right.png deleted file mode 100644 index a8a27fa4a2..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester2.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester2.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester2.rsi/meta.json deleted file mode 100644 index 74cc551bc6..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/jester2.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka based on sprite from TG", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/journalist.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/journalist.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index ed5b701f5a..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/journalist.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/journalist.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/journalist.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index dc9f300245..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/journalist.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/journalist.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/journalist.rsi/icon.png deleted file mode 100644 index b6ea0e536e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/journalist.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/journalist.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/journalist.rsi/inhand-left.png deleted file mode 100644 index 2e94292ad3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/journalist.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/journalist.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/journalist.rsi/inhand-right.png deleted file mode 100644 index acf07a848d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/journalist.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/journalist.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/journalist.rsi/meta.json deleted file mode 100644 index 483e615ceb..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/journalist.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/78a56e1a22ba1d8d6023ed9bdae55a6de7fe8a39 and modified by emisse, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/librarian.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/librarian.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 7f424f1d88..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/librarian.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/librarian.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/librarian.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index de72d35aca..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/librarian.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/librarian.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/librarian.rsi/icon.png deleted file mode 100644 index 8b3720ec10..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/librarian.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/librarian.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/librarian.rsi/inhand-left.png deleted file mode 100644 index dffffbc988..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/librarian.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/librarian.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/librarian.rsi/inhand-right.png deleted file mode 100644 index aa45782ecd..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/librarian.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/librarian.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/librarian.rsi/meta.json deleted file mode 100644 index 0a48ac3e37..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/librarian.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/47718914e47c6fbf23d6dc97f073a9daa11b23cb and modified by potato1234x (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/medical.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/medical.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index ad9d4cf8b8..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/medical.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/medical.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/medical.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index f2ac23c948..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/medical.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/medical.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/medical.rsi/icon.png deleted file mode 100644 index 662450d980..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/medical.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/medical.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/medical.rsi/inhand-left.png deleted file mode 100644 index e154ff0120..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/medical.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/medical.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/medical.rsi/inhand-right.png deleted file mode 100644 index a3b9583c23..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/medical.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/medical.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/medical.rsi/meta.json deleted file mode 100644 index 3f72fb4460..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/medical.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/mime.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/mime.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 1a896d0937..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/mime.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/mime.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/mime.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 3039793515..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/mime.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/mime.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/mime.rsi/icon.png deleted file mode 100644 index 1337a565e5..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/mime.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/mime.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/mime.rsi/inhand-left.png deleted file mode 100644 index f8b8f0cf99..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/mime.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/mime.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/mime.rsi/inhand-right.png deleted file mode 100644 index 08260df4f9..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/mime.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/mime.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/mime.rsi/meta.json deleted file mode 100644 index 1fb9cf1b66..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/mime.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/musician.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/musician.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index e7acf1f3ca..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/musician.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/musician.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/musician.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index da548fcc06..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/musician.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/musician.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/musician.rsi/icon.png deleted file mode 100644 index 6692cc9da7..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/musician.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/musician.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/musician.rsi/inhand-left.png deleted file mode 100644 index 423a248b3f..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/musician.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/musician.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/musician.rsi/inhand-right.png deleted file mode 100644 index 2b8562e09e..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/musician.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/musician.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/musician.rsi/meta.json deleted file mode 100644 index 2966c36de9..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/musician.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by WWDP team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/operative.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/operative.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 5e4d0b0867..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/operative.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/operative.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/operative.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index a017df53e3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/operative.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/operative.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/operative.rsi/icon.png deleted file mode 100644 index 5f8f62440c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/operative.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/operative.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/operative.rsi/inhand-left.png deleted file mode 100644 index 81b43846cb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/operative.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/operative.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/operative.rsi/inhand-right.png deleted file mode 100644 index 18756ef6a0..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/operative.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/operative.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/operative.rsi/meta.json deleted file mode 100644 index 1a3bbef77b..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/operative.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d7e905e4d5ab2b0a8ce210c6ad686aeeebbab426, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/overalls.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/overalls.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 22e7771794..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/overalls.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/overalls.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/overalls.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 0ac333ae6c..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/overalls.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/overalls.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/overalls.rsi/icon.png deleted file mode 100644 index 9d3ca48f20..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/overalls.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/overalls.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/overalls.rsi/inhand-left.png deleted file mode 100644 index c6e604ffea..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/overalls.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/overalls.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/overalls.rsi/inhand-right.png deleted file mode 100644 index e3ee0522a1..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/overalls.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/overalls.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/overalls.rsi/meta.json deleted file mode 100644 index e5e880415c..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/overalls.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation and modified by Swept at commit https://github.com/tgstation/tgstation/commit/ac792e3226d48e5b3aaccff165ce100f7636a040, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/paramedic.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/paramedic.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index dca763bcea..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/paramedic.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/paramedic.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/paramedic.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index ec9299f9f3..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/paramedic.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/paramedic.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/paramedic.rsi/icon.png deleted file mode 100644 index 7b21801944..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/paramedic.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/paramedic.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/paramedic.rsi/inhand-left.png deleted file mode 100644 index cf74203965..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/paramedic.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/paramedic.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/paramedic.rsi/inhand-right.png deleted file mode 100644 index 9abbda4ccb..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/paramedic.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/paramedic.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/paramedic.rsi/meta.json deleted file mode 100644 index 3f72fb4460..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/paramedic.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/psychologist.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/psychologist.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index f687086be9..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/psychologist.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/psychologist.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/psychologist.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index c7acb2b4a0..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/psychologist.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/psychologist.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/psychologist.rsi/icon.png deleted file mode 100644 index 31a1a06958..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/psychologist.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/psychologist.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/psychologist.rsi/inhand-left.png deleted file mode 100644 index 3d5d498bba..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/psychologist.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/psychologist.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/psychologist.rsi/inhand-right.png deleted file mode 100644 index 73e19be658..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/psychologist.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/psychologist.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/psychologist.rsi/meta.json deleted file mode 100644 index 483e615ceb..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/psychologist.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/78a56e1a22ba1d8d6023ed9bdae55a6de7fe8a39 and modified by emisse, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index c133a884ad..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 2fb1b2e939..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/qm.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/qm.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/qm.rsi/icon.png deleted file mode 100644 index bcea405d4d..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/qm.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/qm.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/qm.rsi/inhand-left.png deleted file mode 100644 index b3928a4e7a..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/qm.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/qm.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/qm.rsi/inhand-right.png deleted file mode 100644 index 1db2ee5359..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/qm.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/qm.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/qm.rsi/meta.json deleted file mode 100644 index 12bdb72c4a..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/qm.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, edited by Flareguy. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/scientist.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/scientist.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 99678ec7de..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/scientist.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/scientist.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/scientist.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 9188d68ea5..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/scientist.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/scientist.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/scientist.rsi/icon.png deleted file mode 100644 index 62aad21b71..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/scientist.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/scientist.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/scientist.rsi/inhand-left.png deleted file mode 100644 index a6f9089cad..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/scientist.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/scientist.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/scientist.rsi/inhand-right.png deleted file mode 100644 index a4c036a457..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/scientist.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/scientist.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/scientist.rsi/meta.json deleted file mode 100644 index 3f72fb4460..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/scientist.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index f17cb0661b..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index a540681ef2..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security.rsi/icon.png deleted file mode 100644 index b0c3f58dca..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security.rsi/inhand-left.png deleted file mode 100644 index 5fc87a93df..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security.rsi/inhand-right.png deleted file mode 100644 index 1cb708b7ad..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json deleted file mode 100644 index 3f72fb4460..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security_blue.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security_blue.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 0ebd3d2ff2..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security_blue.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security_blue.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security_blue.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index e471aaaa03..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security_blue.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security_blue.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security_blue.rsi/icon.png deleted file mode 100644 index 639815f523..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security_blue.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security_blue.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security_blue.rsi/inhand-left.png deleted file mode 100644 index add6d39bb7..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security_blue.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security_blue.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security_blue.rsi/inhand-right.png deleted file mode 100644 index 92f33253fc..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security_blue.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security_blue.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security_blue.rsi/meta.json deleted file mode 100644 index 3f72fb4460..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/security_blue.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/skeleton.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/skeleton.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..b342141686 Binary files /dev/null and b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/skeleton.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/skeleton.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/skeleton.rsi/icon.png new file mode 100644 index 0000000000..81a9479499 Binary files /dev/null and b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/skeleton.rsi/icon.png differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/skeleton.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/skeleton.rsi/meta.json new file mode 100644 index 0000000000..77fc1c4b2a --- /dev/null +++ b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/skeleton.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by Purka", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 562402ee89..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index b3fdd7e120..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/warden.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/warden.rsi/icon.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/warden.rsi/icon.png deleted file mode 100644 index c1d86b9d8f..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/warden.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/warden.rsi/inhand-left.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/warden.rsi/inhand-left.png deleted file mode 100644 index 2ed552361f..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/warden.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/warden.rsi/inhand-right.png b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/warden.rsi/inhand-right.png deleted file mode 100644 index dec63daa28..0000000000 Binary files a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/warden.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/warden.rsi/meta.json b/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/warden.rsi/meta.json deleted file mode 100644 index f2706e7fb6..0000000000 --- a/Resources/Textures/_White/Clothing/Uniforms/Jumpsuit/warden.rsi/meta.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-body-slim", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_box.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_box.png deleted file mode 100644 index 505ae2e08e..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_box.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_corner_ne.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_corner_ne.png deleted file mode 100644 index b4bf78e133..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_corner_ne.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_corner_nw.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_corner_nw.png deleted file mode 100644 index a776a580eb..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_corner_nw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_corner_se.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_corner_se.png deleted file mode 100644 index 794977c4cc..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_corner_se.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_corner_sw.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_corner_sw.png deleted file mode 100644 index a1fb31b1de..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_corner_sw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_end_e.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_end_e.png deleted file mode 100644 index cf15bae9a2..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_end_e.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_end_n.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_end_n.png deleted file mode 100644 index 75a011aeea..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_end_n.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_end_s.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_end_s.png deleted file mode 100644 index 80a46cf73e..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_end_s.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_end_w.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_end_w.png deleted file mode 100644 index f693611e9d..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_end_w.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_line_e.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_line_e.png deleted file mode 100644 index 6adb13bdfe..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_line_e.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_line_n.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_line_n.png deleted file mode 100644 index c5f88dc6d2..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_line_n.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_line_s.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_line_s.png deleted file mode 100644 index c40ab4ad13..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_line_s.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_line_w.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_line_w.png deleted file mode 100644 index 9b458a1695..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/brick_line_w.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/checkerNESW.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/checkerNESW.png deleted file mode 100644 index 2016eeb9d9..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/checkerNESW.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/checkerNWSE.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/checkerNWSE.png deleted file mode 100644 index 67760f3abd..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/checkerNWSE.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/diagonal.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/diagonal.png deleted file mode 100644 index a413e1118c..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/diagonal.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/diagonal_checker_a.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/diagonal_checker_a.png deleted file mode 100644 index f557119ca9..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/diagonal_checker_a.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/diagonal_checker_b.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/diagonal_checker_b.png deleted file mode 100644 index 24ffe28964..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/diagonal_checker_b.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/fulltile_overlay.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/fulltile_overlay.png deleted file mode 100644 index c3d903a8a4..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/fulltile_overlay.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/halftile_overlay.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/halftile_overlay.png deleted file mode 100644 index a3c5f0161b..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/halftile_overlay.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/halftile_overlay_180.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/halftile_overlay_180.png deleted file mode 100644 index 102be60ca3..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/halftile_overlay_180.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/halftile_overlay_270.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/halftile_overlay_270.png deleted file mode 100644 index 22f1e7acee..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/halftile_overlay_270.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/halftile_overlay_90.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/halftile_overlay_90.png deleted file mode 100644 index cfd4b74d0d..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/halftile_overlay_90.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/herringbone.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/herringbone.png deleted file mode 100644 index 41e6dbb423..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/herringbone.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/meta.json b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/meta.json deleted file mode 100644 index 6345a4cc34..0000000000 --- a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/meta.json +++ /dev/null @@ -1,206 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Gersoon", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "fulltile_overlay" - }, - { - "name": "brick_box" - }, - { - "name": "brick_corner_ne" - }, - { - "name": "brick_corner_nw" - }, - { - "name": "brick_corner_se" - }, - { - "name": "brick_corner_sw" - }, - { - "name": "brick_end_e" - }, - { - "name": "brick_end_n" - }, - { - "name": "brick_end_s" - }, - { - "name": "brick_end_w" - }, - { - "name": "brick_line_e" - }, - { - "name": "brick_line_n" - }, - { - "name": "brick_line_s" - }, - { - "name": "brick_line_w" - }, - { - "name": "halftile_overlay" - }, - { - "name": "halftile_overlay_90" - }, - { - "name": "halftile_overlay_180" - }, - { - "name": "halftile_overlay_270" - }, - { - "name": "quartertile_overlay" - }, - { - "name": "quartertile_overlay_90" - }, - { - "name": "quartertile_overlay_180" - }, - { - "name": "quartertile_overlay_270" - }, - { - "name": "threequartertile_overlay" - }, - { - "name": "threequartertile_overlay_90" - }, - { - "name": "threequartertile_overlay_180" - }, - { - "name": "threequartertile_overlay_270" - }, - { - "name": "checkerNESW" - }, - { - "name": "checkerNWSE" - }, - { - "name": "diagonal" - }, - { - "name": "diagonal_checker_a" - }, - { - "name": "diagonal_checker_b" - }, - { - "name": "herringbone" - }, - { - "name": "minitile" - }, - { - "name": "minitile_checker_a" - }, - { - "name": "minitile_checker_b" - }, - { - "name": "minitile_diagonal" - }, - { - "name": "minitile_diagonal_a" - }, - { - "name": "minitile_diagonal_b" - }, - { - "name": "minitile_box" - }, - { - "name": "minitile_corner_ne" - }, - { - "name": "minitile_corner_nw" - }, - { - "name": "minitile_corner_se" - }, - { - "name": "minitile_corner_sw" - }, - { - "name": "minitile_end_e" - }, - { - "name": "minitile_end_n" - }, - { - "name": "minitile_end_s" - }, - { - "name": "minitile_end_w" - }, - { - "name": "minitile_inner_ne" - }, - { - "name": "minitile_inner_nw" - }, - { - "name": "minitile_inner_se" - }, - { - "name": "minitile_inner_sw" - }, - { - "name": "minitile_line_e" - }, - { - "name": "minitile_line_n" - }, - { - "name": "minitile_line_s" - }, - { - "name": "minitile_line_w" - }, - { - "name": "mono" - }, - { - "name": "offset" - }, - { - "name": "offset_checker_a" - }, - { - "name": "offset_checker_b" - }, - { - "name": "pavement" - }, - { - "name": "pavement_checker_a" - }, - { - "name": "pavement_checker_b" - }, - { - "name": "pavement_vertical" - }, - { - "name": "pavement_vertical_checker_a" - }, - { - "name": "pavement_vertical_checker_b" - } - ] -} diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile.png deleted file mode 100644 index 68489323f4..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_box.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_box.png deleted file mode 100644 index ed71d7326d..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_box.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_checker_a.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_checker_a.png deleted file mode 100644 index 797e3a8903..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_checker_a.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_checker_b.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_checker_b.png deleted file mode 100644 index a88409c429..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_checker_b.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_corner_ne.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_corner_ne.png deleted file mode 100644 index 8028a4feb3..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_corner_ne.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_corner_nw.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_corner_nw.png deleted file mode 100644 index bed2504456..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_corner_nw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_corner_se.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_corner_se.png deleted file mode 100644 index d649e41fe4..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_corner_se.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_corner_sw.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_corner_sw.png deleted file mode 100644 index 3a66d0d68e..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_corner_sw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_diagonal.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_diagonal.png deleted file mode 100644 index 8f85790212..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_diagonal.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_diagonal_a.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_diagonal_a.png deleted file mode 100644 index 98041353ff..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_diagonal_a.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_diagonal_b.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_diagonal_b.png deleted file mode 100644 index a141934ed4..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_diagonal_b.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_end_e.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_end_e.png deleted file mode 100644 index 9cde05e2d5..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_end_e.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_end_n.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_end_n.png deleted file mode 100644 index 47e7f3fbfe..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_end_n.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_end_s.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_end_s.png deleted file mode 100644 index 10fe0971b8..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_end_s.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_end_w.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_end_w.png deleted file mode 100644 index 168e3836a9..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_end_w.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_inner_ne.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_inner_ne.png deleted file mode 100644 index 3697a57bf2..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_inner_ne.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_inner_nw.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_inner_nw.png deleted file mode 100644 index 02634c839e..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_inner_nw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_inner_se.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_inner_se.png deleted file mode 100644 index 9de3dc0ba5..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_inner_se.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_inner_sw.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_inner_sw.png deleted file mode 100644 index 45c5eaf9f8..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_inner_sw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_line_e.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_line_e.png deleted file mode 100644 index 48b8a5f4a1..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_line_e.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_line_n.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_line_n.png deleted file mode 100644 index 586f1bd1a1..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_line_n.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_line_s.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_line_s.png deleted file mode 100644 index 836e504a83..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_line_s.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_line_w.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_line_w.png deleted file mode 100644 index a51a590974..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/minitile_line_w.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/mono.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/mono.png deleted file mode 100644 index 54ae01808c..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/mono.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/offset.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/offset.png deleted file mode 100644 index cd754a6e50..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/offset.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/offset_checker_a.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/offset_checker_a.png deleted file mode 100644 index f0cf09bbfc..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/offset_checker_a.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/offset_checker_b.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/offset_checker_b.png deleted file mode 100644 index 83f63f4ac9..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/offset_checker_b.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/pavement.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/pavement.png deleted file mode 100644 index a335e86fef..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/pavement.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/pavement_checker_a.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/pavement_checker_a.png deleted file mode 100644 index be478f2a26..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/pavement_checker_a.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/pavement_checker_b.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/pavement_checker_b.png deleted file mode 100644 index 9fae1faf8d..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/pavement_checker_b.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/pavement_vertical.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/pavement_vertical.png deleted file mode 100644 index 5d218fc2fa..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/pavement_vertical.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/pavement_vertical_checker_a.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/pavement_vertical_checker_a.png deleted file mode 100644 index b8468af9cb..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/pavement_vertical_checker_a.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/pavement_vertical_checker_b.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/pavement_vertical_checker_b.png deleted file mode 100644 index bbd2e5c856..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/pavement_vertical_checker_b.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/quartertile_overlay.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/quartertile_overlay.png deleted file mode 100644 index 3d0928c319..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/quartertile_overlay.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/quartertile_overlay_180.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/quartertile_overlay_180.png deleted file mode 100644 index d9224588f2..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/quartertile_overlay_180.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/quartertile_overlay_270.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/quartertile_overlay_270.png deleted file mode 100644 index 40905183c2..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/quartertile_overlay_270.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/quartertile_overlay_90.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/quartertile_overlay_90.png deleted file mode 100644 index 391e198ba0..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/quartertile_overlay_90.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/threequartertile_overlay.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/threequartertile_overlay.png deleted file mode 100644 index c2f6384fd6..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/threequartertile_overlay.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/threequartertile_overlay_180.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/threequartertile_overlay_180.png deleted file mode 100644 index dd046c86d3..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/threequartertile_overlay_180.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/threequartertile_overlay_270.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/threequartertile_overlay_270.png deleted file mode 100644 index 16a7bfc4de..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/threequartertile_overlay_270.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/threequartertile_overlay_90.png b/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/threequartertile_overlay_90.png deleted file mode 100644 index 64a55867ea..0000000000 Binary files a/Resources/Textures/_White/Decals/Overlays/greyscale.rsi/threequartertile_overlay_90.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/dark_box.png b/Resources/Textures/_White/Decals/bricktile.rsi/dark_box.png deleted file mode 100644 index 0a7bd1050b..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/dark_box.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/dark_corner_ne.png b/Resources/Textures/_White/Decals/bricktile.rsi/dark_corner_ne.png deleted file mode 100644 index 21cbc46c5d..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/dark_corner_ne.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/dark_corner_nw.png b/Resources/Textures/_White/Decals/bricktile.rsi/dark_corner_nw.png deleted file mode 100644 index 0ca57d49d9..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/dark_corner_nw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/dark_corner_se.png b/Resources/Textures/_White/Decals/bricktile.rsi/dark_corner_se.png deleted file mode 100644 index 7b18f6d1e3..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/dark_corner_se.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/dark_corner_sw.png b/Resources/Textures/_White/Decals/bricktile.rsi/dark_corner_sw.png deleted file mode 100644 index c941c46b95..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/dark_corner_sw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/dark_end_e.png b/Resources/Textures/_White/Decals/bricktile.rsi/dark_end_e.png deleted file mode 100644 index 025808e3d2..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/dark_end_e.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/dark_end_n.png b/Resources/Textures/_White/Decals/bricktile.rsi/dark_end_n.png deleted file mode 100644 index c3082ac7bd..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/dark_end_n.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/dark_end_s.png b/Resources/Textures/_White/Decals/bricktile.rsi/dark_end_s.png deleted file mode 100644 index a7686510e2..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/dark_end_s.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/dark_end_w.png b/Resources/Textures/_White/Decals/bricktile.rsi/dark_end_w.png deleted file mode 100644 index cd307a8fc1..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/dark_end_w.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/dark_inner_ne.png b/Resources/Textures/_White/Decals/bricktile.rsi/dark_inner_ne.png deleted file mode 100644 index 6248a68824..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/dark_inner_ne.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/dark_inner_nw.png b/Resources/Textures/_White/Decals/bricktile.rsi/dark_inner_nw.png deleted file mode 100644 index 69b3ad95d2..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/dark_inner_nw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/dark_inner_se.png b/Resources/Textures/_White/Decals/bricktile.rsi/dark_inner_se.png deleted file mode 100644 index ac69bf030e..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/dark_inner_se.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/dark_inner_sw.png b/Resources/Textures/_White/Decals/bricktile.rsi/dark_inner_sw.png deleted file mode 100644 index facef918ca..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/dark_inner_sw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/dark_line_e.png b/Resources/Textures/_White/Decals/bricktile.rsi/dark_line_e.png deleted file mode 100644 index b6b2709934..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/dark_line_e.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/dark_line_n.png b/Resources/Textures/_White/Decals/bricktile.rsi/dark_line_n.png deleted file mode 100644 index c8f9bb0e3d..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/dark_line_n.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/dark_line_s.png b/Resources/Textures/_White/Decals/bricktile.rsi/dark_line_s.png deleted file mode 100644 index c7ee329a07..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/dark_line_s.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/dark_line_w.png b/Resources/Textures/_White/Decals/bricktile.rsi/dark_line_w.png deleted file mode 100644 index 63293a953b..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/dark_line_w.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/meta.json b/Resources/Textures/_White/Decals/bricktile.rsi/meta.json deleted file mode 100644 index 0a4accc77a..0000000000 --- a/Resources/Textures/_White/Decals/bricktile.rsi/meta.json +++ /dev/null @@ -1,164 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Gersoon", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "steel_box" - }, - { - "name": "steel_corner_ne" - }, - { - "name": "steel_corner_se" - }, - { - "name": "steel_corner_nw" - }, - { - "name": "steel_corner_sw" - }, - { - "name": "steel_end_n" - }, - { - "name": "steel_end_e" - }, - { - "name": "steel_end_s" - }, - { - "name": "steel_end_w" - }, - { - "name": "steel_line_n" - }, - { - "name": "steel_line_e" - }, - { - "name": "steel_line_s" - }, - { - "name": "steel_line_w" - }, - { - "name": "steel_inner_ne" - }, - { - "name": "steel_inner_se" - }, - { - "name": "steel_inner_nw" - }, - { - "name": "steel_inner_sw" - }, - { - "name": "white_box" - }, - { - "name": "white_corner_ne" - }, - { - "name": "white_corner_se" - }, - { - "name": "white_corner_nw" - }, - { - "name": "white_corner_sw" - }, - { - "name": "white_end_n" - }, - { - "name": "white_end_e" - }, - { - "name": "white_end_s" - }, - { - "name": "white_end_w" - }, - { - "name": "white_line_n" - }, - { - "name": "white_line_e" - }, - { - "name": "white_line_s" - }, - { - "name": "white_line_w" - }, - { - "name": "white_inner_ne" - }, - { - "name": "white_inner_se" - }, - { - "name": "white_inner_nw" - }, - { - "name": "white_inner_sw" - }, - { - "name": "dark_box" - }, - { - "name": "dark_corner_ne" - }, - { - "name": "dark_corner_se" - }, - { - "name": "dark_corner_nw" - }, - { - "name": "dark_corner_sw" - }, - { - "name": "dark_end_n" - }, - { - "name": "dark_end_e" - }, - { - "name": "dark_end_s" - }, - { - "name": "dark_end_w" - }, - { - "name": "dark_line_n" - }, - { - "name": "dark_line_e" - }, - { - "name": "dark_line_s" - }, - { - "name": "dark_line_w" - }, - { - "name": "dark_inner_ne" - }, - { - "name": "dark_inner_se" - }, - { - "name": "dark_inner_nw" - }, - { - "name": "dark_inner_sw" - } - ] -} diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/steel_box.png b/Resources/Textures/_White/Decals/bricktile.rsi/steel_box.png deleted file mode 100644 index db2a9d59b2..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/steel_box.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/steel_corner_ne.png b/Resources/Textures/_White/Decals/bricktile.rsi/steel_corner_ne.png deleted file mode 100644 index 41def2b689..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/steel_corner_ne.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/steel_corner_nw.png b/Resources/Textures/_White/Decals/bricktile.rsi/steel_corner_nw.png deleted file mode 100644 index d57b6cfbcf..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/steel_corner_nw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/steel_corner_se.png b/Resources/Textures/_White/Decals/bricktile.rsi/steel_corner_se.png deleted file mode 100644 index daffc02e84..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/steel_corner_se.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/steel_corner_sw.png b/Resources/Textures/_White/Decals/bricktile.rsi/steel_corner_sw.png deleted file mode 100644 index d035b578c6..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/steel_corner_sw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/steel_end_e.png b/Resources/Textures/_White/Decals/bricktile.rsi/steel_end_e.png deleted file mode 100644 index 54c3908b6d..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/steel_end_e.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/steel_end_n.png b/Resources/Textures/_White/Decals/bricktile.rsi/steel_end_n.png deleted file mode 100644 index a9b6f0e329..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/steel_end_n.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/steel_end_s.png b/Resources/Textures/_White/Decals/bricktile.rsi/steel_end_s.png deleted file mode 100644 index 4c6d0c02a9..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/steel_end_s.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/steel_end_w.png b/Resources/Textures/_White/Decals/bricktile.rsi/steel_end_w.png deleted file mode 100644 index c96229f025..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/steel_end_w.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/steel_inner_ne.png b/Resources/Textures/_White/Decals/bricktile.rsi/steel_inner_ne.png deleted file mode 100644 index 166b8ff67c..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/steel_inner_ne.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/steel_inner_nw.png b/Resources/Textures/_White/Decals/bricktile.rsi/steel_inner_nw.png deleted file mode 100644 index c92751f4fb..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/steel_inner_nw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/steel_inner_se.png b/Resources/Textures/_White/Decals/bricktile.rsi/steel_inner_se.png deleted file mode 100644 index 8b88ef7320..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/steel_inner_se.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/steel_inner_sw.png b/Resources/Textures/_White/Decals/bricktile.rsi/steel_inner_sw.png deleted file mode 100644 index 5230167582..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/steel_inner_sw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/steel_line_e.png b/Resources/Textures/_White/Decals/bricktile.rsi/steel_line_e.png deleted file mode 100644 index 9211f98291..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/steel_line_e.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/steel_line_n.png b/Resources/Textures/_White/Decals/bricktile.rsi/steel_line_n.png deleted file mode 100644 index 19a7df5dbe..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/steel_line_n.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/steel_line_s.png b/Resources/Textures/_White/Decals/bricktile.rsi/steel_line_s.png deleted file mode 100644 index ad153f64cb..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/steel_line_s.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/steel_line_w.png b/Resources/Textures/_White/Decals/bricktile.rsi/steel_line_w.png deleted file mode 100644 index 77eb4cfe3d..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/steel_line_w.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/white_box.png b/Resources/Textures/_White/Decals/bricktile.rsi/white_box.png deleted file mode 100644 index 6abc7c45ae..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/white_box.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/white_corner_ne.png b/Resources/Textures/_White/Decals/bricktile.rsi/white_corner_ne.png deleted file mode 100644 index 434606cdfc..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/white_corner_ne.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/white_corner_nw.png b/Resources/Textures/_White/Decals/bricktile.rsi/white_corner_nw.png deleted file mode 100644 index 8b75637574..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/white_corner_nw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/white_corner_se.png b/Resources/Textures/_White/Decals/bricktile.rsi/white_corner_se.png deleted file mode 100644 index 4b67db2108..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/white_corner_se.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/white_corner_sw.png b/Resources/Textures/_White/Decals/bricktile.rsi/white_corner_sw.png deleted file mode 100644 index 08baa7158a..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/white_corner_sw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/white_end_e.png b/Resources/Textures/_White/Decals/bricktile.rsi/white_end_e.png deleted file mode 100644 index 57102b1ab6..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/white_end_e.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/white_end_n.png b/Resources/Textures/_White/Decals/bricktile.rsi/white_end_n.png deleted file mode 100644 index 8e12b1c83f..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/white_end_n.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/white_end_s.png b/Resources/Textures/_White/Decals/bricktile.rsi/white_end_s.png deleted file mode 100644 index 194817d193..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/white_end_s.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/white_end_w.png b/Resources/Textures/_White/Decals/bricktile.rsi/white_end_w.png deleted file mode 100644 index 3e85371299..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/white_end_w.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/white_inner_ne.png b/Resources/Textures/_White/Decals/bricktile.rsi/white_inner_ne.png deleted file mode 100644 index 2cae1c5981..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/white_inner_ne.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/white_inner_nw.png b/Resources/Textures/_White/Decals/bricktile.rsi/white_inner_nw.png deleted file mode 100644 index ec77674cf4..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/white_inner_nw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/white_inner_se.png b/Resources/Textures/_White/Decals/bricktile.rsi/white_inner_se.png deleted file mode 100644 index 7f34378d62..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/white_inner_se.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/white_inner_sw.png b/Resources/Textures/_White/Decals/bricktile.rsi/white_inner_sw.png deleted file mode 100644 index aa7c496743..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/white_inner_sw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/white_line_e.png b/Resources/Textures/_White/Decals/bricktile.rsi/white_line_e.png deleted file mode 100644 index 7a43540a3c..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/white_line_e.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/white_line_n.png b/Resources/Textures/_White/Decals/bricktile.rsi/white_line_n.png deleted file mode 100644 index a31e768322..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/white_line_n.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/white_line_s.png b/Resources/Textures/_White/Decals/bricktile.rsi/white_line_s.png deleted file mode 100644 index d19998f37a..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/white_line_s.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/bricktile.rsi/white_line_w.png b/Resources/Textures/_White/Decals/bricktile.rsi/white_line_w.png deleted file mode 100644 index d8554cadbd..0000000000 Binary files a/Resources/Textures/_White/Decals/bricktile.rsi/white_line_w.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/arrows.png b/Resources/Textures/_White/Decals/markings.rsi/arrows.png deleted file mode 100644 index 87f9c43e36..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/arrows.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/arrows_greyscale.png b/Resources/Textures/_White/Decals/markings.rsi/arrows_greyscale.png deleted file mode 100644 index 3ca39b47df..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/arrows_greyscale.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/bot.png b/Resources/Textures/_White/Decals/markings.rsi/bot.png deleted file mode 100644 index c44929ff05..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/bot.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/bot_greyscale.png b/Resources/Textures/_White/Decals/markings.rsi/bot_greyscale.png deleted file mode 100644 index bff50885f3..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/bot_greyscale.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/bot_left.png b/Resources/Textures/_White/Decals/markings.rsi/bot_left.png deleted file mode 100644 index a778f3b313..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/bot_left.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/bot_left_greyscale.png b/Resources/Textures/_White/Decals/markings.rsi/bot_left_greyscale.png deleted file mode 100644 index 5d120efea3..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/bot_left_greyscale.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/bot_right.png b/Resources/Textures/_White/Decals/markings.rsi/bot_right.png deleted file mode 100644 index 68b53d3cb0..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/bot_right.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/bot_right_greyscale.png b/Resources/Textures/_White/Decals/markings.rsi/bot_right_greyscale.png deleted file mode 100644 index 9ee5edf18d..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/bot_right_greyscale.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/box.png b/Resources/Textures/_White/Decals/markings.rsi/box.png deleted file mode 100644 index c3bf180007..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/box.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/box_greyscale.png b/Resources/Textures/_White/Decals/markings.rsi/box_greyscale.png deleted file mode 100644 index 822ad59787..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/box_greyscale.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/caution.png b/Resources/Textures/_White/Decals/markings.rsi/caution.png deleted file mode 100644 index 2b4f108654..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/caution.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/caution_greyscale.png b/Resources/Textures/_White/Decals/markings.rsi/caution_greyscale.png deleted file mode 100644 index 774ee52264..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/caution_greyscale.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/delivery.png b/Resources/Textures/_White/Decals/markings.rsi/delivery.png deleted file mode 100644 index 0126d23e6e..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/delivery.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/delivery_greyscale.png b/Resources/Textures/_White/Decals/markings.rsi/delivery_greyscale.png deleted file mode 100644 index f9b34f4e88..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/delivery_greyscale.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/hatch_small.png b/Resources/Textures/_White/Decals/markings.rsi/hatch_small.png deleted file mode 100644 index f2e30b78ed..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/hatch_small.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/loading_area.png b/Resources/Textures/_White/Decals/markings.rsi/loading_area.png deleted file mode 100644 index 573b8e1c46..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/loading_area.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/loading_area_greyscale.png b/Resources/Textures/_White/Decals/markings.rsi/loading_area_greyscale.png deleted file mode 100644 index 8f6b28aea8..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/loading_area_greyscale.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/meta.json b/Resources/Textures/_White/Decals/markings.rsi/meta.json deleted file mode 100644 index 0fb96db2dc..0000000000 --- a/Resources/Textures/_White/Decals/markings.rsi/meta.json +++ /dev/null @@ -1,215 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "tgstation at 606005645d3a14c4439e5ce14785650121b22678", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "arrows" - }, - { - "name": "arrows_greyscale" - }, - { - "name": "bot" - }, - { - "name": "bot_greyscale" - }, - { - "name": "bot_left" - }, - { - "name": "bot_left_greyscale" - }, - { - "name": "bot_right" - }, - { - "name": "bot_right_greyscale" - }, - { - "name": "box" - }, - { - "name": "box_greyscale" - }, - { - "name": "caution" - }, - { - "name": "caution_greyscale" - }, - { - "name": "delivery" - }, - { - "name": "delivery_greyscale" - }, - { - "name": "loading_area" - }, - { - "name": "loading_area_greyscale" - }, - { - "name": "standclear" - }, - { - "name": "standclear_greyscale" - }, - { - "name": "warn_box" - }, - { - "name": "warn_box_greyscale" - }, - { - "name": "warn_end" - }, - { - "name": "warn_end_greyscale" - }, - { - "name": "warn_full" - }, - { - "name": "warn_full_greyscale" - }, - { - "name": "warningline" - }, - { - "name": "warningline_greyscale" - }, - { - "name": "warninglinecorner" - }, - { - "name": "warninglinecorner_greyscale" - }, - { - "name": "warninglinecorner_flipped" - }, - { - "name": "warninglinecorner_flipped_greyscale" - }, - { - "name": "warn_corner" - }, - { - "name": "warn_corner_greyscale" - }, - { - "name": "warn_corner_flipped" - }, - { - "name": "warn_corner_flipped_greyscale" - }, - { - "name": "warn_corner_greyscale_ne" - }, - { - "name": "warn_corner_greyscale_nw" - }, - { - "name": "warn_corner_greyscale_se" - }, - { - "name": "warn_corner_greyscale_sw" - }, - { - "name": "warn_corner_ne" - }, - { - "name": "warn_corner_nw" - }, - { - "name": "warn_corner_se" - }, - { - "name": "warn_corner_sw" - }, - { - "name": "warn_corner_small_greyscale_ne" - }, - { - "name": "warn_corner_small_greyscale_nw" - }, - { - "name": "warn_corner_small_greyscale_se" - }, - { - "name": "warn_corner_small_greyscale_sw" - }, - { - "name": "warn_corner_small_ne" - }, - { - "name": "warn_corner_small_nw" - }, - { - "name": "warn_corner_small_se" - }, - { - "name": "warn_corner_small_sw" - }, - { - "name": "warn_end_e" - }, - { - "name": "warn_end_n" - }, - { - "name": "warn_end_s" - }, - { - "name": "warn_end_w" - }, - { - "name": "warn_end_greyscale_e" - }, - { - "name": "warn_end_greyscale_n" - }, - { - "name": "warn_end_greyscale_s" - }, - { - "name": "warn_end_greyscale_w" - }, - { - "name": "warn_line_e" - }, - { - "name": "warn_line_n" - }, - { - "name": "warn_line_s" - }, - { - "name": "warn_line_w" - }, - { - "name": "warn_line_greyscale_e" - }, - { - "name": "warn_line_greyscale_n" - }, - { - "name": "warn_line_greyscale_s" - }, - { - "name": "warn_line_greyscale_w" - }, - { - "name": "hatch_small" - }, - { - "name": "vent_small" - } - ] -} diff --git a/Resources/Textures/_White/Decals/markings.rsi/standclear.png b/Resources/Textures/_White/Decals/markings.rsi/standclear.png deleted file mode 100644 index 0e7146b18e..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/standclear.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/standclear_greyscale.png b/Resources/Textures/_White/Decals/markings.rsi/standclear_greyscale.png deleted file mode 100644 index fb463c8a9b..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/standclear_greyscale.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/vent_small.png b/Resources/Textures/_White/Decals/markings.rsi/vent_small.png deleted file mode 100644 index a518574bd9..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/vent_small.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_box.png b/Resources/Textures/_White/Decals/markings.rsi/warn_box.png deleted file mode 100644 index ff1e9e472f..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_box.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_box_greyscale.png b/Resources/Textures/_White/Decals/markings.rsi/warn_box_greyscale.png deleted file mode 100644 index 5cecf13b06..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_box_greyscale.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_corner.png b/Resources/Textures/_White/Decals/markings.rsi/warn_corner.png deleted file mode 100644 index adf903522d..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_corner.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_flipped.png b/Resources/Textures/_White/Decals/markings.rsi/warn_corner_flipped.png deleted file mode 100644 index 746346447d..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_flipped.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_flipped_greyscale.png b/Resources/Textures/_White/Decals/markings.rsi/warn_corner_flipped_greyscale.png deleted file mode 100644 index 29dc5ac16d..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_flipped_greyscale.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_greyscale.png b/Resources/Textures/_White/Decals/markings.rsi/warn_corner_greyscale.png deleted file mode 100644 index d9c213a07b..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_greyscale.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_greyscale_ne.png b/Resources/Textures/_White/Decals/markings.rsi/warn_corner_greyscale_ne.png deleted file mode 100644 index 6cec77682b..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_greyscale_ne.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_greyscale_nw.png b/Resources/Textures/_White/Decals/markings.rsi/warn_corner_greyscale_nw.png deleted file mode 100644 index 4f975efa93..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_greyscale_nw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_greyscale_se.png b/Resources/Textures/_White/Decals/markings.rsi/warn_corner_greyscale_se.png deleted file mode 100644 index f444fa087f..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_greyscale_se.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_greyscale_sw.png b/Resources/Textures/_White/Decals/markings.rsi/warn_corner_greyscale_sw.png deleted file mode 100644 index 45b7383b48..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_greyscale_sw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_ne.png b/Resources/Textures/_White/Decals/markings.rsi/warn_corner_ne.png deleted file mode 100644 index cafe1736c6..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_ne.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_nw.png b/Resources/Textures/_White/Decals/markings.rsi/warn_corner_nw.png deleted file mode 100644 index f941e9019f..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_nw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_se.png b/Resources/Textures/_White/Decals/markings.rsi/warn_corner_se.png deleted file mode 100644 index 746346447d..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_se.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_greyscale_ne.png b/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_greyscale_ne.png deleted file mode 100644 index 22e19f38fe..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_greyscale_ne.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_greyscale_nw.png b/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_greyscale_nw.png deleted file mode 100644 index b56d3dff15..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_greyscale_nw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_greyscale_se.png b/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_greyscale_se.png deleted file mode 100644 index 82fbc96f0a..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_greyscale_se.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_greyscale_sw.png b/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_greyscale_sw.png deleted file mode 100644 index c424330f90..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_greyscale_sw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_ne.png b/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_ne.png deleted file mode 100644 index 0b5e73ccf9..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_ne.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_nw.png b/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_nw.png deleted file mode 100644 index fdb45fc359..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_nw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_se.png b/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_se.png deleted file mode 100644 index 1561f6e8ed..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_se.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_sw.png b/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_sw.png deleted file mode 100644 index 3ea64c243a..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_small_sw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_sw.png b/Resources/Textures/_White/Decals/markings.rsi/warn_corner_sw.png deleted file mode 100644 index adf903522d..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_corner_sw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_end.png b/Resources/Textures/_White/Decals/markings.rsi/warn_end.png deleted file mode 100644 index 0a62c7facd..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_end.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_end_e.png b/Resources/Textures/_White/Decals/markings.rsi/warn_end_e.png deleted file mode 100644 index 075f157877..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_end_e.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_end_greyscale.png b/Resources/Textures/_White/Decals/markings.rsi/warn_end_greyscale.png deleted file mode 100644 index ee8ca41eb5..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_end_greyscale.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_end_greyscale_e.png b/Resources/Textures/_White/Decals/markings.rsi/warn_end_greyscale_e.png deleted file mode 100644 index d17c9a366e..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_end_greyscale_e.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_end_greyscale_n.png b/Resources/Textures/_White/Decals/markings.rsi/warn_end_greyscale_n.png deleted file mode 100644 index c6f706be75..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_end_greyscale_n.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_end_greyscale_s.png b/Resources/Textures/_White/Decals/markings.rsi/warn_end_greyscale_s.png deleted file mode 100644 index 2d2b933e12..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_end_greyscale_s.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_end_greyscale_w.png b/Resources/Textures/_White/Decals/markings.rsi/warn_end_greyscale_w.png deleted file mode 100644 index 59a616ff16..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_end_greyscale_w.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_end_n.png b/Resources/Textures/_White/Decals/markings.rsi/warn_end_n.png deleted file mode 100644 index d11aa36457..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_end_n.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_end_s.png b/Resources/Textures/_White/Decals/markings.rsi/warn_end_s.png deleted file mode 100644 index 0a62c7facd..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_end_s.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_end_w.png b/Resources/Textures/_White/Decals/markings.rsi/warn_end_w.png deleted file mode 100644 index fe82e6b579..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_end_w.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_full.png b/Resources/Textures/_White/Decals/markings.rsi/warn_full.png deleted file mode 100644 index 895a8a30ee..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_full.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_full_greyscale.png b/Resources/Textures/_White/Decals/markings.rsi/warn_full_greyscale.png deleted file mode 100644 index 645211cec8..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_full_greyscale.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_line_e.png b/Resources/Textures/_White/Decals/markings.rsi/warn_line_e.png deleted file mode 100644 index 84df055e78..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_line_e.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_line_greyscale_e.png b/Resources/Textures/_White/Decals/markings.rsi/warn_line_greyscale_e.png deleted file mode 100644 index 5d7e24ed39..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_line_greyscale_e.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_line_greyscale_n.png b/Resources/Textures/_White/Decals/markings.rsi/warn_line_greyscale_n.png deleted file mode 100644 index b664767b07..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_line_greyscale_n.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_line_greyscale_s.png b/Resources/Textures/_White/Decals/markings.rsi/warn_line_greyscale_s.png deleted file mode 100644 index d199790a4b..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_line_greyscale_s.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_line_greyscale_w.png b/Resources/Textures/_White/Decals/markings.rsi/warn_line_greyscale_w.png deleted file mode 100644 index ad354ff043..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_line_greyscale_w.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_line_n.png b/Resources/Textures/_White/Decals/markings.rsi/warn_line_n.png deleted file mode 100644 index 7fba6e3c88..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_line_n.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_line_s.png b/Resources/Textures/_White/Decals/markings.rsi/warn_line_s.png deleted file mode 100644 index 84f034e6a7..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_line_s.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warn_line_w.png b/Resources/Textures/_White/Decals/markings.rsi/warn_line_w.png deleted file mode 100644 index 980db3268d..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warn_line_w.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warningline.png b/Resources/Textures/_White/Decals/markings.rsi/warningline.png deleted file mode 100644 index 4a11c2b5dc..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warningline.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warningline_greyscale.png b/Resources/Textures/_White/Decals/markings.rsi/warningline_greyscale.png deleted file mode 100644 index 977154305e..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warningline_greyscale.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warninglinecorner.png b/Resources/Textures/_White/Decals/markings.rsi/warninglinecorner.png deleted file mode 100644 index 1561f6e8ed..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warninglinecorner.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warninglinecorner_flipped.png b/Resources/Textures/_White/Decals/markings.rsi/warninglinecorner_flipped.png deleted file mode 100644 index 3ea64c243a..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warninglinecorner_flipped.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warninglinecorner_flipped_greyscale.png b/Resources/Textures/_White/Decals/markings.rsi/warninglinecorner_flipped_greyscale.png deleted file mode 100644 index 60ceb708c0..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warninglinecorner_flipped_greyscale.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/markings.rsi/warninglinecorner_greyscale.png b/Resources/Textures/_White/Decals/markings.rsi/warninglinecorner_greyscale.png deleted file mode 100644 index fde1a5b647..0000000000 Binary files a/Resources/Textures/_White/Decals/markings.rsi/warninglinecorner_greyscale.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/dark_box.png b/Resources/Textures/_White/Decals/minitile.rsi/dark_box.png deleted file mode 100644 index 1923f0bc85..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/dark_box.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/dark_corner_ne.png b/Resources/Textures/_White/Decals/minitile.rsi/dark_corner_ne.png deleted file mode 100644 index 4291c6f46b..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/dark_corner_ne.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/dark_corner_nw.png b/Resources/Textures/_White/Decals/minitile.rsi/dark_corner_nw.png deleted file mode 100644 index 4444b3cd0d..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/dark_corner_nw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/dark_corner_se.png b/Resources/Textures/_White/Decals/minitile.rsi/dark_corner_se.png deleted file mode 100644 index 011f10a62b..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/dark_corner_se.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/dark_corner_sw.png b/Resources/Textures/_White/Decals/minitile.rsi/dark_corner_sw.png deleted file mode 100644 index 8a6f343e18..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/dark_corner_sw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/dark_end_e.png b/Resources/Textures/_White/Decals/minitile.rsi/dark_end_e.png deleted file mode 100644 index 560c1a12bd..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/dark_end_e.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/dark_end_n.png b/Resources/Textures/_White/Decals/minitile.rsi/dark_end_n.png deleted file mode 100644 index 216e58eb86..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/dark_end_n.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/dark_end_s.png b/Resources/Textures/_White/Decals/minitile.rsi/dark_end_s.png deleted file mode 100644 index c8d8199407..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/dark_end_s.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/dark_end_w.png b/Resources/Textures/_White/Decals/minitile.rsi/dark_end_w.png deleted file mode 100644 index 8e0aeacbbc..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/dark_end_w.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/dark_inner_ne.png b/Resources/Textures/_White/Decals/minitile.rsi/dark_inner_ne.png deleted file mode 100644 index 13415f306b..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/dark_inner_ne.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/dark_inner_nw.png b/Resources/Textures/_White/Decals/minitile.rsi/dark_inner_nw.png deleted file mode 100644 index 925fb4f0fc..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/dark_inner_nw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/dark_inner_se.png b/Resources/Textures/_White/Decals/minitile.rsi/dark_inner_se.png deleted file mode 100644 index 1f1e388de7..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/dark_inner_se.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/dark_inner_sw.png b/Resources/Textures/_White/Decals/minitile.rsi/dark_inner_sw.png deleted file mode 100644 index 7a6c179181..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/dark_inner_sw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/dark_line_e.png b/Resources/Textures/_White/Decals/minitile.rsi/dark_line_e.png deleted file mode 100644 index 40e63d2bc5..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/dark_line_e.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/dark_line_n.png b/Resources/Textures/_White/Decals/minitile.rsi/dark_line_n.png deleted file mode 100644 index 478bbf00d5..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/dark_line_n.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/dark_line_s.png b/Resources/Textures/_White/Decals/minitile.rsi/dark_line_s.png deleted file mode 100644 index 7a24642924..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/dark_line_s.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/dark_line_w.png b/Resources/Textures/_White/Decals/minitile.rsi/dark_line_w.png deleted file mode 100644 index ff8343ee78..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/dark_line_w.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/meta.json b/Resources/Textures/_White/Decals/minitile.rsi/meta.json deleted file mode 100644 index 0a4accc77a..0000000000 --- a/Resources/Textures/_White/Decals/minitile.rsi/meta.json +++ /dev/null @@ -1,164 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Gersoon", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "steel_box" - }, - { - "name": "steel_corner_ne" - }, - { - "name": "steel_corner_se" - }, - { - "name": "steel_corner_nw" - }, - { - "name": "steel_corner_sw" - }, - { - "name": "steel_end_n" - }, - { - "name": "steel_end_e" - }, - { - "name": "steel_end_s" - }, - { - "name": "steel_end_w" - }, - { - "name": "steel_line_n" - }, - { - "name": "steel_line_e" - }, - { - "name": "steel_line_s" - }, - { - "name": "steel_line_w" - }, - { - "name": "steel_inner_ne" - }, - { - "name": "steel_inner_se" - }, - { - "name": "steel_inner_nw" - }, - { - "name": "steel_inner_sw" - }, - { - "name": "white_box" - }, - { - "name": "white_corner_ne" - }, - { - "name": "white_corner_se" - }, - { - "name": "white_corner_nw" - }, - { - "name": "white_corner_sw" - }, - { - "name": "white_end_n" - }, - { - "name": "white_end_e" - }, - { - "name": "white_end_s" - }, - { - "name": "white_end_w" - }, - { - "name": "white_line_n" - }, - { - "name": "white_line_e" - }, - { - "name": "white_line_s" - }, - { - "name": "white_line_w" - }, - { - "name": "white_inner_ne" - }, - { - "name": "white_inner_se" - }, - { - "name": "white_inner_nw" - }, - { - "name": "white_inner_sw" - }, - { - "name": "dark_box" - }, - { - "name": "dark_corner_ne" - }, - { - "name": "dark_corner_se" - }, - { - "name": "dark_corner_nw" - }, - { - "name": "dark_corner_sw" - }, - { - "name": "dark_end_n" - }, - { - "name": "dark_end_e" - }, - { - "name": "dark_end_s" - }, - { - "name": "dark_end_w" - }, - { - "name": "dark_line_n" - }, - { - "name": "dark_line_e" - }, - { - "name": "dark_line_s" - }, - { - "name": "dark_line_w" - }, - { - "name": "dark_inner_ne" - }, - { - "name": "dark_inner_se" - }, - { - "name": "dark_inner_nw" - }, - { - "name": "dark_inner_sw" - } - ] -} diff --git a/Resources/Textures/_White/Decals/minitile.rsi/steel_box.png b/Resources/Textures/_White/Decals/minitile.rsi/steel_box.png deleted file mode 100644 index 82ae5966ef..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/steel_box.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/steel_corner_ne.png b/Resources/Textures/_White/Decals/minitile.rsi/steel_corner_ne.png deleted file mode 100644 index 9fb46edbda..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/steel_corner_ne.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/steel_corner_nw.png b/Resources/Textures/_White/Decals/minitile.rsi/steel_corner_nw.png deleted file mode 100644 index e7e8337af2..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/steel_corner_nw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/steel_corner_se.png b/Resources/Textures/_White/Decals/minitile.rsi/steel_corner_se.png deleted file mode 100644 index fbca7ad08e..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/steel_corner_se.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/steel_corner_sw.png b/Resources/Textures/_White/Decals/minitile.rsi/steel_corner_sw.png deleted file mode 100644 index c0b76d2444..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/steel_corner_sw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/steel_end_e.png b/Resources/Textures/_White/Decals/minitile.rsi/steel_end_e.png deleted file mode 100644 index b060f6928e..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/steel_end_e.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/steel_end_n.png b/Resources/Textures/_White/Decals/minitile.rsi/steel_end_n.png deleted file mode 100644 index fb08ffee33..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/steel_end_n.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/steel_end_s.png b/Resources/Textures/_White/Decals/minitile.rsi/steel_end_s.png deleted file mode 100644 index c99a666434..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/steel_end_s.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/steel_end_w.png b/Resources/Textures/_White/Decals/minitile.rsi/steel_end_w.png deleted file mode 100644 index b37e4f348a..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/steel_end_w.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/steel_inner_ne.png b/Resources/Textures/_White/Decals/minitile.rsi/steel_inner_ne.png deleted file mode 100644 index ef4d0e744d..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/steel_inner_ne.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/steel_inner_nw.png b/Resources/Textures/_White/Decals/minitile.rsi/steel_inner_nw.png deleted file mode 100644 index a3abc052a2..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/steel_inner_nw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/steel_inner_se.png b/Resources/Textures/_White/Decals/minitile.rsi/steel_inner_se.png deleted file mode 100644 index d32d25726f..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/steel_inner_se.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/steel_inner_sw.png b/Resources/Textures/_White/Decals/minitile.rsi/steel_inner_sw.png deleted file mode 100644 index ba883c4380..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/steel_inner_sw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/steel_line_e.png b/Resources/Textures/_White/Decals/minitile.rsi/steel_line_e.png deleted file mode 100644 index 78f07c1e0d..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/steel_line_e.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/steel_line_n.png b/Resources/Textures/_White/Decals/minitile.rsi/steel_line_n.png deleted file mode 100644 index efe3e1b1b6..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/steel_line_n.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/steel_line_s.png b/Resources/Textures/_White/Decals/minitile.rsi/steel_line_s.png deleted file mode 100644 index 061415b925..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/steel_line_s.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/steel_line_w.png b/Resources/Textures/_White/Decals/minitile.rsi/steel_line_w.png deleted file mode 100644 index 498380c0fb..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/steel_line_w.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/white_box.png b/Resources/Textures/_White/Decals/minitile.rsi/white_box.png deleted file mode 100644 index b7a2f1b9de..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/white_box.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/white_corner_ne.png b/Resources/Textures/_White/Decals/minitile.rsi/white_corner_ne.png deleted file mode 100644 index 69de695318..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/white_corner_ne.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/white_corner_nw.png b/Resources/Textures/_White/Decals/minitile.rsi/white_corner_nw.png deleted file mode 100644 index 596e762de4..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/white_corner_nw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/white_corner_se.png b/Resources/Textures/_White/Decals/minitile.rsi/white_corner_se.png deleted file mode 100644 index 747b3f4325..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/white_corner_se.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/white_corner_sw.png b/Resources/Textures/_White/Decals/minitile.rsi/white_corner_sw.png deleted file mode 100644 index 45ddf9d51e..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/white_corner_sw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/white_end_e.png b/Resources/Textures/_White/Decals/minitile.rsi/white_end_e.png deleted file mode 100644 index d72364eb24..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/white_end_e.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/white_end_n.png b/Resources/Textures/_White/Decals/minitile.rsi/white_end_n.png deleted file mode 100644 index 13b472012c..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/white_end_n.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/white_end_s.png b/Resources/Textures/_White/Decals/minitile.rsi/white_end_s.png deleted file mode 100644 index 33c870789a..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/white_end_s.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/white_end_w.png b/Resources/Textures/_White/Decals/minitile.rsi/white_end_w.png deleted file mode 100644 index 7c1bf11eb0..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/white_end_w.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/white_inner_ne.png b/Resources/Textures/_White/Decals/minitile.rsi/white_inner_ne.png deleted file mode 100644 index b013207c94..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/white_inner_ne.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/white_inner_nw.png b/Resources/Textures/_White/Decals/minitile.rsi/white_inner_nw.png deleted file mode 100644 index 09606feb76..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/white_inner_nw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/white_inner_se.png b/Resources/Textures/_White/Decals/minitile.rsi/white_inner_se.png deleted file mode 100644 index cc9e105eda..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/white_inner_se.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/white_inner_sw.png b/Resources/Textures/_White/Decals/minitile.rsi/white_inner_sw.png deleted file mode 100644 index 0a00776f57..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/white_inner_sw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/white_line_e.png b/Resources/Textures/_White/Decals/minitile.rsi/white_line_e.png deleted file mode 100644 index 02b6215708..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/white_line_e.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/white_line_n.png b/Resources/Textures/_White/Decals/minitile.rsi/white_line_n.png deleted file mode 100644 index ce0f25c2cf..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/white_line_n.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/white_line_s.png b/Resources/Textures/_White/Decals/minitile.rsi/white_line_s.png deleted file mode 100644 index b9ed7b4cda..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/white_line_s.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/minitile.rsi/white_line_w.png b/Resources/Textures/_White/Decals/minitile.rsi/white_line_w.png deleted file mode 100644 index 3b79644703..0000000000 Binary files a/Resources/Textures/_White/Decals/minitile.rsi/white_line_w.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/wood_trim.rsi/meta.json b/Resources/Textures/_White/Decals/wood_trim.rsi/meta.json deleted file mode 100644 index 41af33fe94..0000000000 --- a/Resources/Textures/_White/Decals/wood_trim.rsi/meta.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Gersoon", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "thin_box" - }, - { - "name": "thin_corner_ne" - }, - { - "name": "thin_corner_se" - }, - { - "name": "thin_corner_nw" - }, - { - "name": "thin_corner_sw" - }, - { - "name": "thin_end_n" - }, - { - "name": "thin_end_e" - }, - { - "name": "thin_end_s" - }, - { - "name": "thin_end_w" - }, - { - "name": "thin_line_n" - }, - { - "name": "thin_line_e" - }, - { - "name": "thin_line_s" - }, - { - "name": "thin_line_w" - }, - { - "name": "thin_inner_ne" - }, - { - "name": "thin_inner_se" - }, - { - "name": "thin_inner_nw" - }, - { - "name": "thin_inner_sw" - } - ] -} diff --git a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_box.png b/Resources/Textures/_White/Decals/wood_trim.rsi/thin_box.png deleted file mode 100644 index 3c1e3b9bd9..0000000000 Binary files a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_box.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_corner_ne.png b/Resources/Textures/_White/Decals/wood_trim.rsi/thin_corner_ne.png deleted file mode 100644 index cf98bb4947..0000000000 Binary files a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_corner_ne.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_corner_nw.png b/Resources/Textures/_White/Decals/wood_trim.rsi/thin_corner_nw.png deleted file mode 100644 index 53af7de963..0000000000 Binary files a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_corner_nw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_corner_se.png b/Resources/Textures/_White/Decals/wood_trim.rsi/thin_corner_se.png deleted file mode 100644 index 39d8d3ac70..0000000000 Binary files a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_corner_se.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_corner_sw.png b/Resources/Textures/_White/Decals/wood_trim.rsi/thin_corner_sw.png deleted file mode 100644 index 4e87c569db..0000000000 Binary files a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_corner_sw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_end_e.png b/Resources/Textures/_White/Decals/wood_trim.rsi/thin_end_e.png deleted file mode 100644 index 737c62f95c..0000000000 Binary files a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_end_e.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_end_n.png b/Resources/Textures/_White/Decals/wood_trim.rsi/thin_end_n.png deleted file mode 100644 index b72281c6fa..0000000000 Binary files a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_end_n.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_end_s.png b/Resources/Textures/_White/Decals/wood_trim.rsi/thin_end_s.png deleted file mode 100644 index fcaa1a9924..0000000000 Binary files a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_end_s.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_end_w.png b/Resources/Textures/_White/Decals/wood_trim.rsi/thin_end_w.png deleted file mode 100644 index 1da6b94033..0000000000 Binary files a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_end_w.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_inner_ne.png b/Resources/Textures/_White/Decals/wood_trim.rsi/thin_inner_ne.png deleted file mode 100644 index 9cf83c6aad..0000000000 Binary files a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_inner_ne.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_inner_nw.png b/Resources/Textures/_White/Decals/wood_trim.rsi/thin_inner_nw.png deleted file mode 100644 index 303196dab6..0000000000 Binary files a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_inner_nw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_inner_se.png b/Resources/Textures/_White/Decals/wood_trim.rsi/thin_inner_se.png deleted file mode 100644 index abb424c006..0000000000 Binary files a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_inner_se.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_inner_sw.png b/Resources/Textures/_White/Decals/wood_trim.rsi/thin_inner_sw.png deleted file mode 100644 index 1bc0060d29..0000000000 Binary files a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_inner_sw.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_line_e.png b/Resources/Textures/_White/Decals/wood_trim.rsi/thin_line_e.png deleted file mode 100644 index daa003935f..0000000000 Binary files a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_line_e.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_line_n.png b/Resources/Textures/_White/Decals/wood_trim.rsi/thin_line_n.png deleted file mode 100644 index 4bc15e83a9..0000000000 Binary files a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_line_n.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_line_s.png b/Resources/Textures/_White/Decals/wood_trim.rsi/thin_line_s.png deleted file mode 100644 index a99188dc0a..0000000000 Binary files a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_line_s.png and /dev/null differ diff --git a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_line_w.png b/Resources/Textures/_White/Decals/wood_trim.rsi/thin_line_w.png deleted file mode 100644 index 64884bcea1..0000000000 Binary files a/Resources/Textures/_White/Decals/wood_trim.rsi/thin_line_w.png and /dev/null differ diff --git a/Resources/Textures/_White/Effects/footprints.rsi/dragging-1.png b/Resources/Textures/_White/Effects/footprints.rsi/dragging-1.png new file mode 100644 index 0000000000..74d2aeb074 Binary files /dev/null and b/Resources/Textures/_White/Effects/footprints.rsi/dragging-1.png differ diff --git a/Resources/Textures/_White/Effects/footprints.rsi/dragging-2.png b/Resources/Textures/_White/Effects/footprints.rsi/dragging-2.png new file mode 100644 index 0000000000..cc45f4f8ae Binary files /dev/null and b/Resources/Textures/_White/Effects/footprints.rsi/dragging-2.png differ diff --git a/Resources/Textures/_White/Effects/footprints.rsi/dragging-3.png b/Resources/Textures/_White/Effects/footprints.rsi/dragging-3.png new file mode 100644 index 0000000000..d0f7274dd3 Binary files /dev/null and b/Resources/Textures/_White/Effects/footprints.rsi/dragging-3.png differ diff --git a/Resources/Textures/_White/Effects/footprints.rsi/dragging-4.png b/Resources/Textures/_White/Effects/footprints.rsi/dragging-4.png new file mode 100644 index 0000000000..5eb34b5d57 Binary files /dev/null and b/Resources/Textures/_White/Effects/footprints.rsi/dragging-4.png differ diff --git a/Resources/Textures/_White/Effects/footprints.rsi/dragging-5.png b/Resources/Textures/_White/Effects/footprints.rsi/dragging-5.png new file mode 100644 index 0000000000..6b1b34d145 Binary files /dev/null and b/Resources/Textures/_White/Effects/footprints.rsi/dragging-5.png differ diff --git a/Resources/Textures/_White/Effects/footprints.rsi/dragging-test.png b/Resources/Textures/_White/Effects/footprints.rsi/dragging-test.png new file mode 100644 index 0000000000..b8c9ba50a7 Binary files /dev/null and b/Resources/Textures/_White/Effects/footprints.rsi/dragging-test.png differ diff --git a/Resources/Textures/_White/Effects/footprints.rsi/footprint-left-bare-diona.png b/Resources/Textures/_White/Effects/footprints.rsi/footprint-left-bare-diona.png new file mode 100644 index 0000000000..fa40e0f297 Binary files /dev/null and b/Resources/Textures/_White/Effects/footprints.rsi/footprint-left-bare-diona.png differ diff --git a/Resources/Textures/_White/Effects/footprints.rsi/footprint-left-bare-dwarf.png b/Resources/Textures/_White/Effects/footprints.rsi/footprint-left-bare-dwarf.png new file mode 100644 index 0000000000..43b88aa164 Binary files /dev/null and b/Resources/Textures/_White/Effects/footprints.rsi/footprint-left-bare-dwarf.png differ diff --git a/Resources/Textures/_White/Effects/footprints.rsi/footprint-left-bare-human.png b/Resources/Textures/_White/Effects/footprints.rsi/footprint-left-bare-human.png new file mode 100644 index 0000000000..f7ab3257c5 Binary files /dev/null and b/Resources/Textures/_White/Effects/footprints.rsi/footprint-left-bare-human.png differ diff --git a/Resources/Textures/_White/Effects/footprints.rsi/footprint-left-bare-lizard.png b/Resources/Textures/_White/Effects/footprints.rsi/footprint-left-bare-lizard.png new file mode 100644 index 0000000000..e53ba99227 Binary files /dev/null and b/Resources/Textures/_White/Effects/footprints.rsi/footprint-left-bare-lizard.png differ diff --git a/Resources/Textures/_White/Effects/footprints.rsi/footprint-left-bare-slime.png b/Resources/Textures/_White/Effects/footprints.rsi/footprint-left-bare-slime.png new file mode 100644 index 0000000000..87561cb161 Binary files /dev/null and b/Resources/Textures/_White/Effects/footprints.rsi/footprint-left-bare-slime.png differ diff --git a/Resources/Textures/_White/Effects/footprints.rsi/footprint-left-bare-spider.png b/Resources/Textures/_White/Effects/footprints.rsi/footprint-left-bare-spider.png new file mode 100644 index 0000000000..4939e72c4b Binary files /dev/null and b/Resources/Textures/_White/Effects/footprints.rsi/footprint-left-bare-spider.png differ diff --git a/Resources/Textures/_White/Effects/footprints.rsi/footprint-right-bare-diona.png b/Resources/Textures/_White/Effects/footprints.rsi/footprint-right-bare-diona.png new file mode 100644 index 0000000000..21f3a11774 Binary files /dev/null and b/Resources/Textures/_White/Effects/footprints.rsi/footprint-right-bare-diona.png differ diff --git a/Resources/Textures/_White/Effects/footprints.rsi/footprint-right-bare-dwarf.png b/Resources/Textures/_White/Effects/footprints.rsi/footprint-right-bare-dwarf.png new file mode 100644 index 0000000000..e493ddbdf6 Binary files /dev/null and b/Resources/Textures/_White/Effects/footprints.rsi/footprint-right-bare-dwarf.png differ diff --git a/Resources/Textures/_White/Effects/footprints.rsi/footprint-right-bare-human.png b/Resources/Textures/_White/Effects/footprints.rsi/footprint-right-bare-human.png new file mode 100644 index 0000000000..4de70b5c1e Binary files /dev/null and b/Resources/Textures/_White/Effects/footprints.rsi/footprint-right-bare-human.png differ diff --git a/Resources/Textures/_White/Effects/footprints.rsi/footprint-right-bare-lizard.png b/Resources/Textures/_White/Effects/footprints.rsi/footprint-right-bare-lizard.png new file mode 100644 index 0000000000..e53ba99227 Binary files /dev/null and b/Resources/Textures/_White/Effects/footprints.rsi/footprint-right-bare-lizard.png differ diff --git a/Resources/Textures/_White/Effects/footprints.rsi/footprint-right-bare-slime.png b/Resources/Textures/_White/Effects/footprints.rsi/footprint-right-bare-slime.png new file mode 100644 index 0000000000..c10fe24f0b Binary files /dev/null and b/Resources/Textures/_White/Effects/footprints.rsi/footprint-right-bare-slime.png differ diff --git a/Resources/Textures/_White/Effects/footprints.rsi/footprint-right-bare-spider.png b/Resources/Textures/_White/Effects/footprints.rsi/footprint-right-bare-spider.png new file mode 100644 index 0000000000..e9f3a88776 Binary files /dev/null and b/Resources/Textures/_White/Effects/footprints.rsi/footprint-right-bare-spider.png differ diff --git a/Resources/Textures/_White/Effects/footprints.rsi/footprint-shoes.png b/Resources/Textures/_White/Effects/footprints.rsi/footprint-shoes.png new file mode 100644 index 0000000000..6cf329a9b6 Binary files /dev/null and b/Resources/Textures/_White/Effects/footprints.rsi/footprint-shoes.png differ diff --git a/Resources/Textures/_White/Effects/footprints.rsi/footprint-suit.png b/Resources/Textures/_White/Effects/footprints.rsi/footprint-suit.png new file mode 100644 index 0000000000..6bc32d343c Binary files /dev/null and b/Resources/Textures/_White/Effects/footprints.rsi/footprint-suit.png differ diff --git a/Resources/Textures/_White/Effects/footprints.rsi/meta.json b/Resources/Textures/_White/Effects/footprints.rsi/meta.json new file mode 100644 index 0000000000..0ce2e096ac --- /dev/null +++ b/Resources/Textures/_White/Effects/footprints.rsi/meta.json @@ -0,0 +1,71 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "IMPERIAL SPACE", + "states": [ + { + "name": "footprint-left-bare-diona" + }, + { + "name": "footprint-left-bare-dwarf" + }, + { + "name": "footprint-left-bare-human" + }, + { + "name": "footprint-left-bare-lizard" + }, + { + "name": "footprint-left-bare-slime" + }, + { + "name": "footprint-left-bare-spider" + }, + { + "name": "footprint-right-bare-diona" + }, + { + "name": "footprint-right-bare-dwarf" + }, + { + "name": "footprint-right-bare-human" + }, + { + "name": "footprint-right-bare-lizard" + }, + { + "name": "footprint-right-bare-slime" + }, + { + "name": "footprint-right-bare-spider" + }, + { + "name": "footprint-shoes" + }, + { + "name": "footprint-suit" + }, + { + "name": "dragging-1" + }, + { + "name": "dragging-2" + }, + { + "name": "dragging-3" + }, + { + "name": "dragging-4" + }, + { + "name": "dragging-5" + }, + { + "name": "dragging-test" + } + ] +} diff --git a/Resources/Textures/_White/Interface/Halloween/SlotBackground.png b/Resources/Textures/_White/Interface/Halloween/SlotBackground.png new file mode 100644 index 0000000000..e80db92d97 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/SlotBackground.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Slots/back.png b/Resources/Textures/_White/Interface/Halloween/Slots/back.png new file mode 100644 index 0000000000..b04d5b08fc Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Slots/back.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Slots/belt.png b/Resources/Textures/_White/Interface/Halloween/Slots/belt.png new file mode 100644 index 0000000000..18f2fd3d70 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Slots/belt.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Slots/ears.png b/Resources/Textures/_White/Interface/Halloween/Slots/ears.png new file mode 100644 index 0000000000..9fe6216fd6 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Slots/ears.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Slots/glasses.png b/Resources/Textures/_White/Interface/Halloween/Slots/glasses.png new file mode 100644 index 0000000000..6c551b5300 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Slots/glasses.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Slots/gloves.png b/Resources/Textures/_White/Interface/Halloween/Slots/gloves.png new file mode 100644 index 0000000000..53d1509e7f Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Slots/gloves.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Slots/hand_l.png b/Resources/Textures/_White/Interface/Halloween/Slots/hand_l.png new file mode 100644 index 0000000000..70a886a025 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Slots/hand_l.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Slots/hand_l_no_letter.png b/Resources/Textures/_White/Interface/Halloween/Slots/hand_l_no_letter.png new file mode 100644 index 0000000000..ab002de6e8 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Slots/hand_l_no_letter.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Slots/hand_m.png b/Resources/Textures/_White/Interface/Halloween/Slots/hand_m.png new file mode 100644 index 0000000000..ab002de6e8 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Slots/hand_m.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Slots/hand_r.png b/Resources/Textures/_White/Interface/Halloween/Slots/hand_r.png new file mode 100644 index 0000000000..22b91c0ac9 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Slots/hand_r.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Slots/hand_r_no_letter.png b/Resources/Textures/_White/Interface/Halloween/Slots/hand_r_no_letter.png new file mode 100644 index 0000000000..d4c0b7eecb Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Slots/hand_r_no_letter.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Slots/head.png b/Resources/Textures/_White/Interface/Halloween/Slots/head.png new file mode 100644 index 0000000000..fc2d16cbf9 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Slots/head.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Slots/id.png b/Resources/Textures/_White/Interface/Halloween/Slots/id.png new file mode 100644 index 0000000000..c0fe3def00 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Slots/id.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Slots/mask.png b/Resources/Textures/_White/Interface/Halloween/Slots/mask.png new file mode 100644 index 0000000000..5d909239bd Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Slots/mask.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Slots/neck.png b/Resources/Textures/_White/Interface/Halloween/Slots/neck.png new file mode 100644 index 0000000000..8a93778855 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Slots/neck.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Slots/pocket.png b/Resources/Textures/_White/Interface/Halloween/Slots/pocket.png new file mode 100644 index 0000000000..7eed517280 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Slots/pocket.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Slots/shoes.png b/Resources/Textures/_White/Interface/Halloween/Slots/shoes.png new file mode 100644 index 0000000000..6642336378 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Slots/shoes.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Slots/suit.png b/Resources/Textures/_White/Interface/Halloween/Slots/suit.png new file mode 100644 index 0000000000..3c3b51f247 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Slots/suit.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Slots/suit_storage.png b/Resources/Textures/_White/Interface/Halloween/Slots/suit_storage.png new file mode 100644 index 0000000000..14c71eb036 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Slots/suit_storage.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Slots/toggle.png b/Resources/Textures/_White/Interface/Halloween/Slots/toggle.png new file mode 100644 index 0000000000..26496158d3 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Slots/toggle.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Slots/uniform.png b/Resources/Textures/_White/Interface/Halloween/Slots/uniform.png new file mode 100644 index 0000000000..5ffeed446e Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Slots/uniform.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Slots/web.png b/Resources/Textures/_White/Interface/Halloween/Slots/web.png new file mode 100644 index 0000000000..f8bc456997 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Slots/web.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Storage/back.png b/Resources/Textures/_White/Interface/Halloween/Storage/back.png new file mode 100644 index 0000000000..e3476ec78c Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Storage/back.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Storage/exit.png b/Resources/Textures/_White/Interface/Halloween/Storage/exit.png new file mode 100644 index 0000000000..e7362d200d Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Storage/exit.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Storage/marked_first.png b/Resources/Textures/_White/Interface/Halloween/Storage/marked_first.png new file mode 100644 index 0000000000..59ec2398c0 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Storage/marked_first.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Storage/marked_second.png b/Resources/Textures/_White/Interface/Halloween/Storage/marked_second.png new file mode 100644 index 0000000000..1ae45fa6b2 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Storage/marked_second.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Storage/piece_bottom.png b/Resources/Textures/_White/Interface/Halloween/Storage/piece_bottom.png new file mode 100644 index 0000000000..0119ba5139 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Storage/piece_bottom.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Storage/piece_bottomLeft.png b/Resources/Textures/_White/Interface/Halloween/Storage/piece_bottomLeft.png new file mode 100644 index 0000000000..e12c48bb92 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Storage/piece_bottomLeft.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Storage/piece_bottomRight.png b/Resources/Textures/_White/Interface/Halloween/Storage/piece_bottomRight.png new file mode 100644 index 0000000000..fb3341bb32 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Storage/piece_bottomRight.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Storage/piece_center.png b/Resources/Textures/_White/Interface/Halloween/Storage/piece_center.png new file mode 100644 index 0000000000..8b19045eb5 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Storage/piece_center.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Storage/piece_left.png b/Resources/Textures/_White/Interface/Halloween/Storage/piece_left.png new file mode 100644 index 0000000000..70171a6ec2 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Storage/piece_left.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Storage/piece_right.png b/Resources/Textures/_White/Interface/Halloween/Storage/piece_right.png new file mode 100644 index 0000000000..a7df2b45a2 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Storage/piece_right.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Storage/piece_top.png b/Resources/Textures/_White/Interface/Halloween/Storage/piece_top.png new file mode 100644 index 0000000000..87f449038e Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Storage/piece_top.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Storage/piece_topLeft.png b/Resources/Textures/_White/Interface/Halloween/Storage/piece_topLeft.png new file mode 100644 index 0000000000..ed8c8b02a6 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Storage/piece_topLeft.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Storage/piece_topRight.png b/Resources/Textures/_White/Interface/Halloween/Storage/piece_topRight.png new file mode 100644 index 0000000000..3e0108b21b Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Storage/piece_topRight.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Storage/sidebar_bottom.png b/Resources/Textures/_White/Interface/Halloween/Storage/sidebar_bottom.png new file mode 100644 index 0000000000..e2eb703488 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Storage/sidebar_bottom.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Storage/sidebar_fat.png b/Resources/Textures/_White/Interface/Halloween/Storage/sidebar_fat.png new file mode 100644 index 0000000000..aa4dd81bbb Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Storage/sidebar_fat.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Storage/sidebar_mid.png b/Resources/Textures/_White/Interface/Halloween/Storage/sidebar_mid.png new file mode 100644 index 0000000000..4e35e48382 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Storage/sidebar_mid.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Storage/sidebar_top.png b/Resources/Textures/_White/Interface/Halloween/Storage/sidebar_top.png new file mode 100644 index 0000000000..eef1fdb9d9 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Storage/sidebar_top.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Storage/tile_blocked.png b/Resources/Textures/_White/Interface/Halloween/Storage/tile_blocked.png new file mode 100644 index 0000000000..d6896f1feb Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Storage/tile_blocked.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Storage/tile_blocked_opaque.png b/Resources/Textures/_White/Interface/Halloween/Storage/tile_blocked_opaque.png new file mode 100644 index 0000000000..d6896f1feb Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Storage/tile_blocked_opaque.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Storage/tile_empty.png b/Resources/Textures/_White/Interface/Halloween/Storage/tile_empty.png new file mode 100644 index 0000000000..9403b6849b Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Storage/tile_empty.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/Storage/tile_empty_opaque.png b/Resources/Textures/_White/Interface/Halloween/Storage/tile_empty_opaque.png new file mode 100644 index 0000000000..c19ca24989 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/Storage/tile_empty_opaque.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/item_status_left.png b/Resources/Textures/_White/Interface/Halloween/item_status_left.png new file mode 100644 index 0000000000..ebec5b3ec9 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/item_status_left.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/item_status_left_highlight.png b/Resources/Textures/_White/Interface/Halloween/item_status_left_highlight.png new file mode 100644 index 0000000000..e930a5c120 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/item_status_left_highlight.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/item_status_right.png b/Resources/Textures/_White/Interface/Halloween/item_status_right.png new file mode 100644 index 0000000000..1a29a3b004 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/item_status_right.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/item_status_right_highlight.png b/Resources/Textures/_White/Interface/Halloween/item_status_right_highlight.png new file mode 100644 index 0000000000..2bdaa399cf Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/item_status_right_highlight.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/slot_highlight.png b/Resources/Textures/_White/Interface/Halloween/slot_highlight.png new file mode 100644 index 0000000000..85a7ea1ad6 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/slot_highlight.png differ diff --git a/Resources/Textures/_White/Interface/Halloween/template_small.png b/Resources/Textures/_White/Interface/Halloween/template_small.png new file mode 100644 index 0000000000..e51d951078 Binary files /dev/null and b/Resources/Textures/_White/Interface/Halloween/template_small.png differ diff --git a/Resources/Textures/_White/Interface/Operative/SlotBackground.png b/Resources/Textures/_White/Interface/Operative/SlotBackground.png new file mode 100644 index 0000000000..a1bbd2e3a2 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/SlotBackground.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/back.png b/Resources/Textures/_White/Interface/Operative/Slots/back.png new file mode 100644 index 0000000000..004b0249b1 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/back.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/belt.png b/Resources/Textures/_White/Interface/Operative/Slots/belt.png new file mode 100644 index 0000000000..e64387c04d Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/belt.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/ears.png b/Resources/Textures/_White/Interface/Operative/Slots/ears.png new file mode 100644 index 0000000000..f8338c7da1 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/ears.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/ears_extra.png b/Resources/Textures/_White/Interface/Operative/Slots/ears_extra.png new file mode 100644 index 0000000000..47a63df4d8 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/ears_extra.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/glasses.png b/Resources/Textures/_White/Interface/Operative/Slots/glasses.png new file mode 100644 index 0000000000..8f24ff7573 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/glasses.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/gloves.png b/Resources/Textures/_White/Interface/Operative/Slots/gloves.png new file mode 100644 index 0000000000..8e2fcb28f6 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/gloves.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/hand_l.png b/Resources/Textures/_White/Interface/Operative/Slots/hand_l.png new file mode 100644 index 0000000000..624c0a5598 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/hand_l.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/hand_l_no_letter.png b/Resources/Textures/_White/Interface/Operative/Slots/hand_l_no_letter.png new file mode 100644 index 0000000000..624c0a5598 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/hand_l_no_letter.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/hand_r.png b/Resources/Textures/_White/Interface/Operative/Slots/hand_r.png new file mode 100644 index 0000000000..83ca6b014c Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/hand_r.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/hand_r_no_letter.png b/Resources/Textures/_White/Interface/Operative/Slots/hand_r_no_letter.png new file mode 100644 index 0000000000..83ca6b014c Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/hand_r_no_letter.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/head.png b/Resources/Textures/_White/Interface/Operative/Slots/head.png new file mode 100644 index 0000000000..4d40fd8110 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/head.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/id.png b/Resources/Textures/_White/Interface/Operative/Slots/id.png new file mode 100644 index 0000000000..3740b186ea Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/id.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/mask.png b/Resources/Textures/_White/Interface/Operative/Slots/mask.png new file mode 100644 index 0000000000..c1f1ae6bdd Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/mask.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/neck.png b/Resources/Textures/_White/Interface/Operative/Slots/neck.png new file mode 100644 index 0000000000..3aee70e156 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/neck.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/pocket.png b/Resources/Textures/_White/Interface/Operative/Slots/pocket.png new file mode 100644 index 0000000000..99dfedd161 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/pocket.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/shoes.png b/Resources/Textures/_White/Interface/Operative/Slots/shoes.png new file mode 100644 index 0000000000..75371d908d Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/shoes.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/socks.png b/Resources/Textures/_White/Interface/Operative/Slots/socks.png new file mode 100644 index 0000000000..6b6747b265 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/socks.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/suit.png b/Resources/Textures/_White/Interface/Operative/Slots/suit.png new file mode 100644 index 0000000000..22e7ab3658 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/suit.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/suit_storage.png b/Resources/Textures/_White/Interface/Operative/Slots/suit_storage.png new file mode 100644 index 0000000000..643b632986 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/suit_storage.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/toggle-alt.png b/Resources/Textures/_White/Interface/Operative/Slots/toggle-alt.png new file mode 100644 index 0000000000..d05dccd28b Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/toggle-alt.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/toggle.png b/Resources/Textures/_White/Interface/Operative/Slots/toggle.png new file mode 100644 index 0000000000..f9925d3cbb Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/toggle.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/underwearb.png b/Resources/Textures/_White/Interface/Operative/Slots/underwearb.png new file mode 100644 index 0000000000..372ec4aafb Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/underwearb.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/underweart.png b/Resources/Textures/_White/Interface/Operative/Slots/underweart.png new file mode 100644 index 0000000000..9224be4365 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/underweart.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/uniform.png b/Resources/Textures/_White/Interface/Operative/Slots/uniform.png new file mode 100644 index 0000000000..63e6535e7a Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/uniform.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/web.png b/Resources/Textures/_White/Interface/Operative/Slots/web.png new file mode 100644 index 0000000000..99dfedd161 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/web.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Slots/wrists.png b/Resources/Textures/_White/Interface/Operative/Slots/wrists.png new file mode 100644 index 0000000000..c66c1de43a Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Slots/wrists.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Storage/piece_bottom.png b/Resources/Textures/_White/Interface/Operative/Storage/piece_bottom.png new file mode 100644 index 0000000000..04d40826a3 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Storage/piece_bottom.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Storage/piece_bottomLeft.png b/Resources/Textures/_White/Interface/Operative/Storage/piece_bottomLeft.png new file mode 100644 index 0000000000..3267c7ad22 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Storage/piece_bottomLeft.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Storage/piece_bottomRight.png b/Resources/Textures/_White/Interface/Operative/Storage/piece_bottomRight.png new file mode 100644 index 0000000000..bda6062294 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Storage/piece_bottomRight.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Storage/piece_center.png b/Resources/Textures/_White/Interface/Operative/Storage/piece_center.png new file mode 100644 index 0000000000..82fe09cb47 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Storage/piece_center.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Storage/piece_left.png b/Resources/Textures/_White/Interface/Operative/Storage/piece_left.png new file mode 100644 index 0000000000..3c0fd69c08 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Storage/piece_left.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Storage/piece_right.png b/Resources/Textures/_White/Interface/Operative/Storage/piece_right.png new file mode 100644 index 0000000000..6b45c1001e Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Storage/piece_right.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Storage/piece_top.png b/Resources/Textures/_White/Interface/Operative/Storage/piece_top.png new file mode 100644 index 0000000000..5520cacb1a Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Storage/piece_top.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Storage/piece_topLeft.png b/Resources/Textures/_White/Interface/Operative/Storage/piece_topLeft.png new file mode 100644 index 0000000000..da293d0205 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Storage/piece_topLeft.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Storage/piece_topRight.png b/Resources/Textures/_White/Interface/Operative/Storage/piece_topRight.png new file mode 100644 index 0000000000..fda84a7faf Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Storage/piece_topRight.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Storage/sidebar_bottom.png b/Resources/Textures/_White/Interface/Operative/Storage/sidebar_bottom.png new file mode 100644 index 0000000000..7289f0d774 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Storage/sidebar_bottom.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Storage/sidebar_mid.png b/Resources/Textures/_White/Interface/Operative/Storage/sidebar_mid.png new file mode 100644 index 0000000000..3c7dce1bd2 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Storage/sidebar_mid.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Storage/sidebar_top.png b/Resources/Textures/_White/Interface/Operative/Storage/sidebar_top.png new file mode 100644 index 0000000000..1c110d5d45 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Storage/sidebar_top.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Storage/tile_blocked.png b/Resources/Textures/_White/Interface/Operative/Storage/tile_blocked.png new file mode 100644 index 0000000000..9a553a3e7b Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Storage/tile_blocked.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Storage/tile_blocked_opaque.png b/Resources/Textures/_White/Interface/Operative/Storage/tile_blocked_opaque.png new file mode 100644 index 0000000000..c198cd3f97 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Storage/tile_blocked_opaque.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Storage/tile_empty.png b/Resources/Textures/_White/Interface/Operative/Storage/tile_empty.png new file mode 100644 index 0000000000..4747becff6 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Storage/tile_empty.png differ diff --git a/Resources/Textures/_White/Interface/Operative/Storage/tile_empty_opaque.png b/Resources/Textures/_White/Interface/Operative/Storage/tile_empty_opaque.png new file mode 100644 index 0000000000..4716384c13 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/Storage/tile_empty_opaque.png differ diff --git a/Resources/Textures/_White/Interface/Operative/slot_highlight.png b/Resources/Textures/_White/Interface/Operative/slot_highlight.png new file mode 100644 index 0000000000..b5add38b54 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/slot_highlight.png differ diff --git a/Resources/Textures/_White/Interface/Operative/template_small.png b/Resources/Textures/_White/Interface/Operative/template_small.png new file mode 100644 index 0000000000..a8d4cf8968 Binary files /dev/null and b/Resources/Textures/_White/Interface/Operative/template_small.png differ diff --git a/Resources/Textures/_White/Mobs/Animals/gondola.rsi/gondola_body_long.png b/Resources/Textures/_White/Mobs/Animals/gondola.rsi/gondola_body_long.png new file mode 100644 index 0000000000..d76d8bcac8 Binary files /dev/null and b/Resources/Textures/_White/Mobs/Animals/gondola.rsi/gondola_body_long.png differ diff --git a/Resources/Textures/_White/Mobs/Animals/gondola.rsi/gondola_body_medium.png b/Resources/Textures/_White/Mobs/Animals/gondola.rsi/gondola_body_medium.png new file mode 100644 index 0000000000..5a31cce922 Binary files /dev/null and b/Resources/Textures/_White/Mobs/Animals/gondola.rsi/gondola_body_medium.png differ diff --git a/Resources/Textures/_White/Mobs/Animals/gondola.rsi/gondola_body_short.png b/Resources/Textures/_White/Mobs/Animals/gondola.rsi/gondola_body_short.png new file mode 100644 index 0000000000..0dbda000c8 Binary files /dev/null and b/Resources/Textures/_White/Mobs/Animals/gondola.rsi/gondola_body_short.png differ diff --git a/Resources/Textures/_White/Mobs/Animals/gondola.rsi/gondola_moustache_large.png b/Resources/Textures/_White/Mobs/Animals/gondola.rsi/gondola_moustache_large.png new file mode 100644 index 0000000000..0956b1687a Binary files /dev/null and b/Resources/Textures/_White/Mobs/Animals/gondola.rsi/gondola_moustache_large.png differ diff --git a/Resources/Textures/_White/Mobs/Animals/gondola.rsi/gondola_moustache_large_short.png b/Resources/Textures/_White/Mobs/Animals/gondola.rsi/gondola_moustache_large_short.png new file mode 100644 index 0000000000..f1455139f9 Binary files /dev/null and b/Resources/Textures/_White/Mobs/Animals/gondola.rsi/gondola_moustache_large_short.png differ diff --git a/Resources/Textures/_White/Mobs/Animals/gondola.rsi/gondola_moustache_small.png b/Resources/Textures/_White/Mobs/Animals/gondola.rsi/gondola_moustache_small.png new file mode 100644 index 0000000000..6150f04e4c Binary files /dev/null and b/Resources/Textures/_White/Mobs/Animals/gondola.rsi/gondola_moustache_small.png differ diff --git a/Resources/Textures/_White/Mobs/Animals/gondola.rsi/gondola_moustache_small_short.png b/Resources/Textures/_White/Mobs/Animals/gondola.rsi/gondola_moustache_small_short.png new file mode 100644 index 0000000000..383ea4e747 Binary files /dev/null and b/Resources/Textures/_White/Mobs/Animals/gondola.rsi/gondola_moustache_small_short.png differ diff --git a/Resources/Textures/_White/Mobs/Animals/gondola.rsi/icon.png b/Resources/Textures/_White/Mobs/Animals/gondola.rsi/icon.png new file mode 100644 index 0000000000..9f6b8b20af Binary files /dev/null and b/Resources/Textures/_White/Mobs/Animals/gondola.rsi/icon.png differ diff --git a/Resources/Textures/_White/Mobs/Animals/gondola.rsi/meta.json b/Resources/Textures/_White/Mobs/Animals/gondola.rsi/meta.json new file mode 100644 index 0000000000..a944406ab8 --- /dev/null +++ b/Resources/Textures/_White/Mobs/Animals/gondola.rsi/meta.json @@ -0,0 +1,42 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from /TG/ station | Edited by PuroSlavKing (Github) ", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "gondola_body_long", + "directions": 4 + }, + { + "name": "gondola_body_medium", + "directions": 4 + }, + { + "name": "gondola_body_short", + "directions": 4 + }, + { + "name": "gondola_moustache_large", + "directions": 4 + }, + { + "name": "gondola_moustache_small", + "directions": 4 + }, + { + "name": "gondola_moustache_large_short", + "directions": 4 + }, + { + "name": "gondola_moustache_small_short", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/bean_brown.png b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/bean_brown.png new file mode 100644 index 0000000000..698d4c9c4a Binary files /dev/null and b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/bean_brown.png differ diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/bean_green.png b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/bean_green.png new file mode 100644 index 0000000000..b74e4f8f7e Binary files /dev/null and b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/bean_green.png differ diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/bean_pink.png b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/bean_pink.png new file mode 100644 index 0000000000..d43e9f9f39 Binary files /dev/null and b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/bean_pink.png differ diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/bean_red.png b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/bean_red.png new file mode 100644 index 0000000000..53815061ba Binary files /dev/null and b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/bean_red.png differ diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/bean_white.png b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/bean_white.png new file mode 100644 index 0000000000..9b898e54ec Binary files /dev/null and b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/bean_white.png differ diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/cotton_candy.png b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/cotton_candy.png new file mode 100644 index 0000000000..f0c312574b Binary files /dev/null and b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/cotton_candy.png differ diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/eye.png b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/eye.png new file mode 100644 index 0000000000..d22144429a Binary files /dev/null and b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/eye.png differ diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/eye_open.png b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/eye_open.png new file mode 100644 index 0000000000..ecedc90874 Binary files /dev/null and b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/eye_open.png differ diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/eye_trash.png b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/eye_trash.png new file mode 100644 index 0000000000..bee4de4cd9 Binary files /dev/null and b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/eye_trash.png differ diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/ghost.png b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/ghost.png new file mode 100644 index 0000000000..ec5394ad25 Binary files /dev/null and b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/ghost.png differ diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/gumbear.png b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/gumbear.png new file mode 100644 index 0000000000..29bb2a1b72 Binary files /dev/null and b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/gumbear.png differ diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/gumbear_greyscale.png b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/gumbear_greyscale.png new file mode 100644 index 0000000000..78db767b16 Binary files /dev/null and b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/gumbear_greyscale.png differ diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/gummybear.png b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/gummybear.png new file mode 100644 index 0000000000..17f371d37d Binary files /dev/null and b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/gummybear.png differ diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/gummybear_greyscale.png b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/gummybear_greyscale.png new file mode 100644 index 0000000000..ea40ffe17c Binary files /dev/null and b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/gummybear_greyscale.png differ diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/lollipop_green.png b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/lollipop_green.png new file mode 100644 index 0000000000..12ae56aa0a Binary files /dev/null and b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/lollipop_green.png differ diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/lollipop_orange.png b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/lollipop_orange.png new file mode 100644 index 0000000000..7b91608eb1 Binary files /dev/null and b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/lollipop_orange.png differ diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/lollipop_pink.png b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/lollipop_pink.png new file mode 100644 index 0000000000..3c80913d7c Binary files /dev/null and b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/lollipop_pink.png differ diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/lollipop_rainbow.png b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/lollipop_rainbow.png new file mode 100644 index 0000000000..fe3cafe558 Binary files /dev/null and b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/lollipop_rainbow.png differ diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/meta.json b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/meta.json new file mode 100644 index 0000000000..f88cd89907 --- /dev/null +++ b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/meta.json @@ -0,0 +1,77 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by Kilath, Purka and Canceredpussy", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "ghost" + }, + { + "name": "scull" + }, + { + "name": "scull_chocolate" + }, + { + "name": "cotton_candy" + }, + { + "name": "eye" + }, + { + "name": "eye_open" + }, + { + "name": "eye_trash" + }, + { + "name": "pumpkin" + }, + { + "name": "gummybear" + }, + { + "name": "gummybear_greyscale" + }, + { + "name": "gumbear" + }, + { + "name": "gumbear_greyscale" + }, + { + "name": "valerabear" + }, + { + "name": "lollipop_pink" + }, + { + "name": "lollipop_green" + }, + { + "name": "lollipop_orange" + }, + { + "name": "lollipop_rainbow" + }, + { + "name": "bean_brown" + }, + { + "name": "bean_pink" + }, + { + "name": "bean_green" + }, + { + "name": "bean_red" + }, + { + "name": "bean_white" + } + ] +} diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/pumpkin.png b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/pumpkin.png new file mode 100644 index 0000000000..70fb9561aa Binary files /dev/null and b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/pumpkin.png differ diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/scull.png b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/scull.png new file mode 100644 index 0000000000..c0caf570f9 Binary files /dev/null and b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/scull.png differ diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/scull_chocolate.png b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/scull_chocolate.png new file mode 100644 index 0000000000..cd0e9f5d48 Binary files /dev/null and b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/scull_chocolate.png differ diff --git a/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/valerabear.png b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/valerabear.png new file mode 100644 index 0000000000..f2b72246ee Binary files /dev/null and b/Resources/Textures/_White/Objects/Consumable/Food/candy.rsi/valerabear.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/icon.png b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/icon.png new file mode 100644 index 0000000000..bf1935eca7 Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/icon.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/meta.json b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/meta.json new file mode 100644 index 0000000000..ea76560025 --- /dev/null +++ b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/e00cae8d065f9cf520688cc0dd0e15ba5bef12a9 and edited by Gersoon", + "size": { + "x": 96, + "y": 96 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "orange01" + }, + { + "name": "orange02" + }, + { + "name": "orange03" + }, + { + "name": "orange04" + }, + { + "name": "orange05" + }, + { + "name": "orange06" + } + ] +} diff --git a/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/orange01.png b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/orange01.png new file mode 100644 index 0000000000..0c40cd4a97 Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/orange01.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/orange02.png b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/orange02.png new file mode 100644 index 0000000000..4164061a52 Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/orange02.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/orange03.png b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/orange03.png new file mode 100644 index 0000000000..d056593fb2 Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/orange03.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/orange04.png b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/orange04.png new file mode 100644 index 0000000000..bf1935eca7 Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/orange04.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/orange05.png b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/orange05.png new file mode 100644 index 0000000000..d25ecafbcd Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/orange05.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/orange06.png b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/orange06.png new file mode 100644 index 0000000000..df3e2b303d Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_trees.rsi/orange06.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Flora/autumn_treeslarge.rsi/meta.json b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_treeslarge.rsi/meta.json new file mode 100644 index 0000000000..c24fb71f2f --- /dev/null +++ b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_treeslarge.rsi/meta.json @@ -0,0 +1,96 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d388dee8b7b6d854f6f0d844988552acf5962b1f and edited by Gersoon", + "size": { + "x": 128, + "y": 160 + }, + "states": [ + { + "name": "orangelarge01", + "delays": [ + [ + 10.0, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3 + ] + ] + }, + { + "name": "orangelarge02", + "delays": [ + [ + 10.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3 + ] + ] + }, + { + "name": "orangelarge03", + "delays": [ + [ + 10.6, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3 + ] + ] + }, + { + "name": "orangelarge04", + "delays": [ + [ + 10.9, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3 + ] + ] + }, + { + "name": "orangelarge05", + "delays": [ + [ + 11.2, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3 + ] + ] + }, + { + "name": "orangelarge06", + "delays": [ + [ + 11.5, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3 + ] + ] + } + + ] +} diff --git a/Resources/Textures/_White/Objects/Decoration/Flora/autumn_treeslarge.rsi/orangelarge01.png b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_treeslarge.rsi/orangelarge01.png new file mode 100644 index 0000000000..edfea44fa8 Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_treeslarge.rsi/orangelarge01.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Flora/autumn_treeslarge.rsi/orangelarge02.png b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_treeslarge.rsi/orangelarge02.png new file mode 100644 index 0000000000..0766dfe801 Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_treeslarge.rsi/orangelarge02.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Flora/autumn_treeslarge.rsi/orangelarge03.png b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_treeslarge.rsi/orangelarge03.png new file mode 100644 index 0000000000..722d477838 Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_treeslarge.rsi/orangelarge03.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Flora/autumn_treeslarge.rsi/orangelarge04.png b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_treeslarge.rsi/orangelarge04.png new file mode 100644 index 0000000000..9d9499671a Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_treeslarge.rsi/orangelarge04.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Flora/autumn_treeslarge.rsi/orangelarge05.png b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_treeslarge.rsi/orangelarge05.png new file mode 100644 index 0000000000..d69ed4bdc1 Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_treeslarge.rsi/orangelarge05.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Flora/autumn_treeslarge.rsi/orangelarge06.png b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_treeslarge.rsi/orangelarge06.png new file mode 100644 index 0000000000..c48749148a Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Flora/autumn_treeslarge.rsi/orangelarge06.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/base.png b/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/base.png new file mode 100644 index 0000000000..3eb7f12603 Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/base.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/base_glow.png b/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/base_glow.png new file mode 100644 index 0000000000..020863079a Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/base_glow.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/base_unwrapped.png b/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/base_unwrapped.png new file mode 100644 index 0000000000..ddebfe8c5c Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/base_unwrapped.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/cloth.png b/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/cloth.png new file mode 100644 index 0000000000..2e2b4c40a3 Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/cloth.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/cloth_glow.png b/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/cloth_glow.png new file mode 100644 index 0000000000..183ce8924f Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/cloth_glow.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/cloth_unwrapped.png b/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/cloth_unwrapped.png new file mode 100644 index 0000000000..9c482c30c4 Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/cloth_unwrapped.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/meta.json b/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/meta.json new file mode 100644 index 0000000000..f77105c87d --- /dev/null +++ b/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/meta.json @@ -0,0 +1,113 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by Gersoon", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "base_glow", + "delays": [ + [ + 1.0, + 0.33, + 0.33, + 0.33, + 1.0, + 1.0, + 0.33, + 0.33, + 0.33, + 1.0 + ] + ] + }, + { + "name": "base_unwrapped", + "delays": [ + [ + 23.0, + 0.33, + 0.33, + 0.34, + 0.33, + 0.33, + 0.34 + ] + ] + }, + { + "name": "cloth" + }, + { + "name": "cloth_glow", + "delays": [ + [ + 1.0, + 0.33, + 0.33, + 0.33, + 1.0, + 1.0, + 0.33, + 0.33, + 0.33, + 1.0 + ] + ] + }, + { + "name": "cloth_unwrapped", + "delays": [ + [ + 23.0, + 0.33, + 0.33, + 0.34, + 0.33, + 0.33, + 0.34 + ] + ] + }, + { + "name": "sweet" + }, + { + "name": "sweet_glow", + "delays": [ + [ + 1.0, + 0.33, + 0.33, + 0.33, + 1.0, + 1.0, + 0.33, + 0.33, + 0.33, + 1.0 + ] + ] + }, + { + "name": "sweet_unwrapped", + "delays": [ + [ + 23.0, + 0.33, + 0.33, + 0.34, + 0.33, + 0.33, + 0.34 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/sweet.png b/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/sweet.png new file mode 100644 index 0000000000..5c77a453dc Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/sweet.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/sweet_glow.png b/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/sweet_glow.png new file mode 100644 index 0000000000..4d0c40944e Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/sweet_glow.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/sweet_unwrapped.png b/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/sweet_unwrapped.png new file mode 100644 index 0000000000..3c7a1e0fbf Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Halloween/present.rsi/sweet_unwrapped.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Halloween/presentsoul.rsi/base.png b/Resources/Textures/_White/Objects/Decoration/Halloween/presentsoul.rsi/base.png new file mode 100644 index 0000000000..e47741ea52 Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Halloween/presentsoul.rsi/base.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Halloween/presentsoul.rsi/base_glow.png b/Resources/Textures/_White/Objects/Decoration/Halloween/presentsoul.rsi/base_glow.png new file mode 100644 index 0000000000..6f60d1142d Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Halloween/presentsoul.rsi/base_glow.png differ diff --git a/Resources/Textures/_White/Objects/Decoration/Halloween/presentsoul.rsi/meta.json b/Resources/Textures/_White/Objects/Decoration/Halloween/presentsoul.rsi/meta.json new file mode 100644 index 0000000000..59e1d00762 --- /dev/null +++ b/Resources/Textures/_White/Objects/Decoration/Halloween/presentsoul.rsi/meta.json @@ -0,0 +1,76 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by Gersoon", + "size": { + "x": 32, + "y": 64 + }, + "states": [ + { + "name": "base", + "delays": [ + [ + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25 + ] + ] + }, + { + "name": "base_glow", + "delays": [ + [ + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25 + ] + ] + }, + { + "name": "nothing" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_White/Objects/Decoration/Halloween/presentsoul.rsi/nothing.png b/Resources/Textures/_White/Objects/Decoration/Halloween/presentsoul.rsi/nothing.png new file mode 100644 index 0000000000..7ee539f29d Binary files /dev/null and b/Resources/Textures/_White/Objects/Decoration/Halloween/presentsoul.rsi/nothing.png differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/bar.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/bar.png deleted file mode 100644 index 03d6de0b7a..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/bar.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/bcircuit.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/bcircuit.png deleted file mode 100644 index 229d1b2064..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/bcircuit.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/blue.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/blue.png deleted file mode 100644 index 287428a784..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/blue.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/checker-dark.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/checker-dark.png deleted file mode 100644 index 9227d71b5c..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/checker-dark.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/checker-light.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/checker-light.png deleted file mode 100644 index 6c721c0926..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/checker-light.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/clown.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/clown.png deleted file mode 100644 index d3620e483a..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/clown.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/dark.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/dark.png deleted file mode 100644 index 19ccce714f..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/dark.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/gcircuit.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/gcircuit.png deleted file mode 100644 index 11b4884645..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/gcircuit.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/gold.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/gold.png deleted file mode 100644 index 00d68eb3fd..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/gold.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/hydro.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/hydro.png deleted file mode 100644 index 8c984b1f6a..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/hydro.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/kitchen.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/kitchen.png deleted file mode 100644 index f1e7f8c42f..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/kitchen.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/laundry.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/laundry.png deleted file mode 100644 index d0a7b092f1..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/laundry.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/lime.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/lime.png deleted file mode 100644 index ab58379b36..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/lime.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/lino.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/lino.png deleted file mode 100644 index 6fb5c06264..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/lino.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/meta.json b/Resources/Textures/_White/Objects/Tiles/tile.rsi/meta.json index a54f311556..6564233cc7 100644 --- a/Resources/Textures/_White/Objects/Tiles/tile.rsi/meta.json +++ b/Resources/Textures/_White/Objects/Tiles/tile.rsi/meta.json @@ -7,54 +7,12 @@ "y": 32 }, "states": [ - { - "name": "bar" - }, - { - "name": "bcircuit" - }, - { - "name": "blue" - }, - { - "name": "checker-dark" - }, - { - "name": "checker-light" - }, - { - "name": "clown" - }, - { - "name": "dark" - }, { "name": "freezer" }, - { - "name": "gcircuit" - }, { "name": "glass-frame" }, - { - "name": "gold" - }, - { - "name": "hydro" - }, - { - "name": "kitchen" - }, - { - "name": "laundry" - }, - { - "name": "lime" - }, - { - "name": "lino" - }, { "name": "lino-dark" }, @@ -64,9 +22,6 @@ { "name": "lino-white" }, - { - "name": "mime" - }, { "name": "plastic-blue" }, @@ -88,54 +43,18 @@ { "name": "plastic-white" }, - { - "name": "reinforced" - }, { "name": "rglass-frame" }, - { - "name": "rockvault" - }, { "name": "shielding" }, { "name": "shielding-mono" }, - { - "name": "showroom" - }, - { - "name": "shuttleblack" - }, - { - "name": "shuttleblue" - }, - { - "name": "shuttlegrey" - }, - { - "name": "shuttleorange" - }, - { - "name": "shuttlepurple" - }, - { - "name": "shuttlered" - }, { "name": "shuttlesyndie" }, - { - "name": "shuttlewhite" - }, - { - "name": "silver" - }, - { - "name": "steel" - }, { "name": "steel-blue" }, @@ -153,18 +72,6 @@ }, { "name": "sterile-dark" - }, - { - "name": "white" - }, - { - "name": "wood" - }, - { - "name": "wood-large" - }, - { - "name": "woodpatternfloor" } ] } diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/mime.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/mime.png deleted file mode 100644 index 159a7dc288..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/mime.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/reinforced.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/reinforced.png deleted file mode 100644 index 186aca4e99..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/reinforced.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/rockvault.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/rockvault.png deleted file mode 100644 index 8a29c992d1..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/rockvault.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/showroom.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/showroom.png deleted file mode 100644 index 16df4384bd..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/showroom.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/shuttleblack.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/shuttleblack.png deleted file mode 100644 index 323812de6a..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/shuttleblack.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/shuttleblue.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/shuttleblue.png deleted file mode 100644 index db10eef67c..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/shuttleblue.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/shuttlegrey.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/shuttlegrey.png deleted file mode 100644 index f95926bc92..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/shuttlegrey.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/shuttleorange.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/shuttleorange.png deleted file mode 100644 index 6ca2cd0fc7..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/shuttleorange.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/shuttlepurple.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/shuttlepurple.png deleted file mode 100644 index 6d051bacdd..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/shuttlepurple.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/shuttlered.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/shuttlered.png deleted file mode 100644 index 5a1846c890..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/shuttlered.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/shuttlewhite.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/shuttlewhite.png deleted file mode 100644 index 4163bad5e6..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/shuttlewhite.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/silver.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/silver.png deleted file mode 100644 index 45344c6c63..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/silver.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/steel.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/steel.png deleted file mode 100644 index 1752b963f9..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/steel.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/white.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/white.png deleted file mode 100644 index 05e7e6e84d..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/white.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/wood-large.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/wood-large.png deleted file mode 100644 index d043e162a2..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/wood-large.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/wood.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/wood.png deleted file mode 100644 index b73f89cfba..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/wood.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tiles/tile.rsi/woodpatternfloor.png b/Resources/Textures/_White/Objects/Tiles/tile.rsi/woodpatternfloor.png deleted file mode 100644 index f33fda5338..0000000000 Binary files a/Resources/Textures/_White/Objects/Tiles/tile.rsi/woodpatternfloor.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/equipped-BELT.png b/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/equipped-BELT.png deleted file mode 100644 index 44eddad1f5..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/equipped-BELT.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/inhand-left.png b/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/inhand-left.png deleted file mode 100644 index d97b1d9764..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/inhand-right.png b/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/inhand-right.png deleted file mode 100644 index 0b0c85a819..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/jaws_cutter.png b/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/jaws_cutter.png deleted file mode 100644 index 32dd8ae652..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/jaws_cutter.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/jaws_pry.png b/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/jaws_pry.png deleted file mode 100644 index ccfecf3dbd..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/jaws_pry.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/meta.json b/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/meta.json deleted file mode 100644 index 0d2bf3b7ef..0000000000 --- a/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/meta.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "modified from tgstation at commit https://github.com/tgstation/tgstation/commit/f07f847706d85b7cfa4b398e5175732212b69a63 by KingFroozy (Github), inhand for syn made by icekot8", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "jaws_cutter" - }, - { - "name": "jaws_pry" - }, - { - "name": "syn_jaws_cutter" - }, - { - "name": "syn_jaws_pry" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "syn_inhand-left", - "directions": 4 - }, - { - "name": "syn_inhand-right", - "directions": 4 - }, - { - "name": "equipped-BELT", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/syn_inhand-left.png b/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/syn_inhand-left.png deleted file mode 100644 index ac011a58f8..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/syn_inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/syn_inhand-right.png b/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/syn_inhand-right.png deleted file mode 100644 index d4c1c58997..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/syn_inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/syn_jaws_cutter.png b/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/syn_jaws_cutter.png deleted file mode 100644 index 40749be79c..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/syn_jaws_cutter.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/syn_jaws_pry.png b/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/syn_jaws_pry.png deleted file mode 100644 index 5b77cad939..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/jaws_of_life.rsi/syn_jaws_pry.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/multitool.rsi/equipped-BELT.png b/Resources/Textures/_White/Objects/Tools/multitool.rsi/equipped-BELT.png deleted file mode 100644 index d63eb66230..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/multitool.rsi/equipped-BELT.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/multitool.rsi/green-inhand-left.png b/Resources/Textures/_White/Objects/Tools/multitool.rsi/green-inhand-left.png deleted file mode 100644 index 7bad24cbcf..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/multitool.rsi/green-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/multitool.rsi/green-inhand-right.png b/Resources/Textures/_White/Objects/Tools/multitool.rsi/green-inhand-right.png deleted file mode 100644 index a7f84f65f5..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/multitool.rsi/green-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/multitool.rsi/green-unlit.png b/Resources/Textures/_White/Objects/Tools/multitool.rsi/green-unlit.png deleted file mode 100644 index fccc17e919..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/multitool.rsi/green-unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/multitool.rsi/icon.png b/Resources/Textures/_White/Objects/Tools/multitool.rsi/icon.png deleted file mode 100644 index bbb1c6bd8f..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/multitool.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/multitool.rsi/inhand-left.png b/Resources/Textures/_White/Objects/Tools/multitool.rsi/inhand-left.png deleted file mode 100644 index 6ea2c1414a..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/multitool.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/multitool.rsi/inhand-right.png b/Resources/Textures/_White/Objects/Tools/multitool.rsi/inhand-right.png deleted file mode 100644 index aa62319792..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/multitool.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/multitool.rsi/meta.json b/Resources/Textures/_White/Objects/Tools/multitool.rsi/meta.json deleted file mode 100644 index bf4315734b..0000000000 --- a/Resources/Textures/_White/Objects/Tools/multitool.rsi/meta.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/94f27c7b25bbde39c1412e24fb32bf6470fcc394", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "green-unlit" - }, - { - "name": "yellow-unlit" - }, - { - "name": "red-unlit" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "green-inhand-left", - "directions": 4 - }, - { - "name": "green-inhand-right", - "directions": 4 - }, - { - "name": "yellow-inhand-left", - "directions": 4 - }, - { - "name": "yellow-inhand-right", - "directions": 4 - }, - { - "name": "red-inhand-left", - "directions": 4 - }, - { - "name": "red-inhand-right", - "directions": 4 - }, - { - "name": "equipped-BELT", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Objects/Tools/multitool.rsi/red-inhand-left.png b/Resources/Textures/_White/Objects/Tools/multitool.rsi/red-inhand-left.png deleted file mode 100644 index 6273a48953..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/multitool.rsi/red-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/multitool.rsi/red-inhand-right.png b/Resources/Textures/_White/Objects/Tools/multitool.rsi/red-inhand-right.png deleted file mode 100644 index 91f633ea38..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/multitool.rsi/red-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/multitool.rsi/red-unlit.png b/Resources/Textures/_White/Objects/Tools/multitool.rsi/red-unlit.png deleted file mode 100644 index a141fec4bf..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/multitool.rsi/red-unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/multitool.rsi/yellow-inhand-left.png b/Resources/Textures/_White/Objects/Tools/multitool.rsi/yellow-inhand-left.png deleted file mode 100644 index 62c6be8d20..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/multitool.rsi/yellow-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/multitool.rsi/yellow-inhand-right.png b/Resources/Textures/_White/Objects/Tools/multitool.rsi/yellow-inhand-right.png deleted file mode 100644 index 66334a3b62..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/multitool.rsi/yellow-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/multitool.rsi/yellow-unlit.png b/Resources/Textures/_White/Objects/Tools/multitool.rsi/yellow-unlit.png deleted file mode 100644 index f890dbd413..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/multitool.rsi/yellow-unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/t-ray.rsi/meta.json b/Resources/Textures/_White/Objects/Tools/t-ray.rsi/meta.json deleted file mode 100644 index e79ca36298..0000000000 --- a/Resources/Textures/_White/Objects/Tools/t-ray.rsi/meta.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "/tg/station, 'icons/obj/device.dmi' commit 2b8b045d, redrawn by Ubaser.", - "size": { "x": 32, "y": 32 }, - "states": [ - { "name": "tray-on" , "delays": [[0.1, 1.0]]}, - { "name": "tray-off" } - ] -} diff --git a/Resources/Textures/_White/Objects/Tools/t-ray.rsi/tray-off.png b/Resources/Textures/_White/Objects/Tools/t-ray.rsi/tray-off.png deleted file mode 100644 index eb108219af..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/t-ray.rsi/tray-off.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/t-ray.rsi/tray-on.png b/Resources/Textures/_White/Objects/Tools/t-ray.rsi/tray-on.png deleted file mode 100644 index 5ec22e6031..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/t-ray.rsi/tray-on.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder.rsi/equipped-BELT.png b/Resources/Textures/_White/Objects/Tools/welder.rsi/equipped-BELT.png deleted file mode 100644 index a635b3af57..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder.rsi/equipped-BELT.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder.rsi/icon.png b/Resources/Textures/_White/Objects/Tools/welder.rsi/icon.png deleted file mode 100644 index dbb9e252b3..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder.rsi/inhand-left-flame.png b/Resources/Textures/_White/Objects/Tools/welder.rsi/inhand-left-flame.png deleted file mode 100644 index cbb49ca3be..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder.rsi/inhand-left-flame.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder.rsi/inhand-left.png b/Resources/Textures/_White/Objects/Tools/welder.rsi/inhand-left.png deleted file mode 100644 index 5e17c0f048..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder.rsi/inhand-right-flame.png b/Resources/Textures/_White/Objects/Tools/welder.rsi/inhand-right-flame.png deleted file mode 100644 index c077bc7377..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder.rsi/inhand-right-flame.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder.rsi/inhand-right.png b/Resources/Textures/_White/Objects/Tools/welder.rsi/inhand-right.png deleted file mode 100644 index c46b69590d..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder.rsi/meta.json b/Resources/Textures/_White/Objects/Tools/welder.rsi/meta.json deleted file mode 100644 index 5f876da9ae..0000000000 --- a/Resources/Textures/_White/Objects/Tools/welder.rsi/meta.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/199fffd989d6f7fd6ea9c5188c875137df4f34b8", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "welder_flame", - "delays": [ - [ - 0.2, - 0.1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "inhand-left-flame", - "directions": 4, - "delays": [ - [ - 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": "inhand-right-flame", - "directions": 4, - "delays": [ - [ - 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": "equipped-BELT", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Objects/Tools/welder.rsi/welder_flame.png b/Resources/Textures/_White/Objects/Tools/welder.rsi/welder_flame.png deleted file mode 100644 index 86d9efcb69..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder.rsi/welder_flame.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/equipped-BELT.png b/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/equipped-BELT.png deleted file mode 100644 index da1b076dea..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/equipped-BELT.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/icon.png b/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/icon.png deleted file mode 100644 index 90aeab2241..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/inhand-left-flame.png b/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/inhand-left-flame.png deleted file mode 100644 index ea0f2325e6..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/inhand-left-flame.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/inhand-left.png b/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/inhand-left.png deleted file mode 100644 index 5b31edc26a..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/inhand-right-flame.png b/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/inhand-right-flame.png deleted file mode 100644 index 10d36469a5..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/inhand-right-flame.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/inhand-right.png b/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/inhand-right.png deleted file mode 100644 index 2d64d9abf1..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/meta.json b/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/meta.json deleted file mode 100644 index c4e24bec81..0000000000 --- a/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/meta.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from ss13", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "welder_flame", - "delays": [ - [ - 0.2, - 0.1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "inhand-left-flame", - "directions": 4, - "delays": [ - [ - 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": "inhand-right-flame", - "directions": 4, - "delays": [ - [ - 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": "equipped-BELT", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/welder_flame.png b/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/welder_flame.png deleted file mode 100644 index 68e10eb375..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_experimental.rsi/welder_flame.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/equipped-BELT.png b/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/equipped-BELT.png deleted file mode 100644 index cdd8229ce2..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/equipped-BELT.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/icon.png b/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/icon.png deleted file mode 100644 index 353825f0c8..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/inhand-left-flame.png b/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/inhand-left-flame.png deleted file mode 100644 index cbb49ca3be..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/inhand-left-flame.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/inhand-left.png b/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/inhand-left.png deleted file mode 100644 index 7d09476c56..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/inhand-right-flame.png b/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/inhand-right-flame.png deleted file mode 100644 index c077bc7377..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/inhand-right-flame.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/inhand-right.png b/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/inhand-right.png deleted file mode 100644 index 19c0f4f76c..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/meta.json b/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/meta.json deleted file mode 100644 index ab4744aaa6..0000000000 --- a/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/meta.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/782006a07ef7f16f70128489b3e78b210ee4bbbe", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "welder_flame", - "delays": [ - [ - 0.2, - 0.1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "inhand-left-flame", - "directions": 4, - "delays": [ - [ - 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": "inhand-right-flame", - "directions": 4, - "delays": [ - [ - 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": "equipped-BELT", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/welder_flame.png b/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/welder_flame.png deleted file mode 100644 index 31c7d12357..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_industrial.rsi/welder_flame.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/equipped-BELT.png b/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/equipped-BELT.png deleted file mode 100644 index 9dc6a32408..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/equipped-BELT.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/icon.png b/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/icon.png deleted file mode 100644 index e01273389d..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/inhand-left-flame.png b/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/inhand-left-flame.png deleted file mode 100644 index cbb49ca3be..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/inhand-left-flame.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/inhand-left.png b/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/inhand-left.png deleted file mode 100644 index 9748b0a745..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/inhand-right-flame.png b/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/inhand-right-flame.png deleted file mode 100644 index c077bc7377..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/inhand-right-flame.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/inhand-right.png b/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/inhand-right.png deleted file mode 100644 index de260aff7a..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/meta.json b/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/meta.json deleted file mode 100644 index ab4744aaa6..0000000000 --- a/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/meta.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/782006a07ef7f16f70128489b3e78b210ee4bbbe", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "welder_flame", - "delays": [ - [ - 0.2, - 0.1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "inhand-left-flame", - "directions": 4, - "delays": [ - [ - 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": "inhand-right-flame", - "directions": 4, - "delays": [ - [ - 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": "equipped-BELT", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/welder_flame.png b/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/welder_flame.png deleted file mode 100644 index 31c7d12357..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_industrialadv.rsi/welder_flame.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/equipped-BELT.png b/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/equipped-BELT.png deleted file mode 100644 index ba82a96d5e..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/equipped-BELT.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/icon.png b/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/icon.png deleted file mode 100644 index f400317c0a..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/inhand-left-flame.png b/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/inhand-left-flame.png deleted file mode 100644 index cbb49ca3be..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/inhand-left-flame.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/inhand-left.png b/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/inhand-left.png deleted file mode 100644 index aaaadd89ee..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/inhand-right-flame.png b/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/inhand-right-flame.png deleted file mode 100644 index c077bc7377..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/inhand-right-flame.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/inhand-right.png b/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/inhand-right.png deleted file mode 100644 index 05c304f0a0..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/meta.json b/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/meta.json deleted file mode 100644 index 5f876da9ae..0000000000 --- a/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/meta.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/199fffd989d6f7fd6ea9c5188c875137df4f34b8", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "welder_flame", - "delays": [ - [ - 0.2, - 0.1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "inhand-left-flame", - "directions": 4, - "delays": [ - [ - 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": "inhand-right-flame", - "directions": 4, - "delays": [ - [ - 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": "equipped-BELT", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/welder_flame.png b/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/welder_flame.png deleted file mode 100644 index d2ef5cc5de..0000000000 Binary files a/Resources/Textures/_White/Objects/Tools/welder_mini.rsi/welder_flame.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Weapons/Guns/crossbow.rsi/crossbow.png b/Resources/Textures/_White/Objects/Weapons/Guns/crossbow.rsi/crossbow.png new file mode 100644 index 0000000000..3dc28e472c Binary files /dev/null and b/Resources/Textures/_White/Objects/Weapons/Guns/crossbow.rsi/crossbow.png differ diff --git a/Resources/Textures/_White/Objects/Weapons/Guns/crossbow.rsi/inhand-left.png b/Resources/Textures/_White/Objects/Weapons/Guns/crossbow.rsi/inhand-left.png new file mode 100644 index 0000000000..385c96238d Binary files /dev/null and b/Resources/Textures/_White/Objects/Weapons/Guns/crossbow.rsi/inhand-left.png differ diff --git a/Resources/Textures/_White/Objects/Weapons/Guns/crossbow.rsi/inhand-right.png b/Resources/Textures/_White/Objects/Weapons/Guns/crossbow.rsi/inhand-right.png new file mode 100644 index 0000000000..93a062d9ee Binary files /dev/null and b/Resources/Textures/_White/Objects/Weapons/Guns/crossbow.rsi/inhand-right.png differ diff --git a/Resources/Textures/_White/Objects/Weapons/Guns/crossbow.rsi/loaded.png b/Resources/Textures/_White/Objects/Weapons/Guns/crossbow.rsi/loaded.png new file mode 100644 index 0000000000..f3e97fa1fa Binary files /dev/null and b/Resources/Textures/_White/Objects/Weapons/Guns/crossbow.rsi/loaded.png differ diff --git a/Resources/Textures/_White/Objects/Weapons/Guns/crossbow.rsi/meta.json b/Resources/Textures/_White/Objects/Weapons/Guns/crossbow.rsi/meta.json new file mode 100644 index 0000000000..f6bcd5b43b --- /dev/null +++ b/Resources/Textures/_White/Objects/Weapons/Guns/crossbow.rsi/meta.json @@ -0,0 +1,31 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from paradise at https://github.com/ParadiseSS13/Paradise at 76d0428022d17f3249585d96ac9b69076206efd4. Edit by Spatison", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "crossbow" + }, + { + "name": "unstrung" + }, + { + "name": "loaded" + }, + { + "name": "stretched" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_White/Objects/Weapons/Guns/crossbow.rsi/stretched.png b/Resources/Textures/_White/Objects/Weapons/Guns/crossbow.rsi/stretched.png new file mode 100644 index 0000000000..86266fa82c Binary files /dev/null and b/Resources/Textures/_White/Objects/Weapons/Guns/crossbow.rsi/stretched.png differ diff --git a/Resources/Textures/_White/Objects/Weapons/Guns/crossbow.rsi/unstrung.png b/Resources/Textures/_White/Objects/Weapons/Guns/crossbow.rsi/unstrung.png new file mode 100644 index 0000000000..4c57580ab2 Binary files /dev/null and b/Resources/Textures/_White/Objects/Weapons/Guns/crossbow.rsi/unstrung.png differ diff --git a/Resources/Textures/_White/Objects/Weapons/Melee/Daggers/betrayal_knife.rsi/icon.png b/Resources/Textures/_White/Objects/Weapons/Melee/Daggers/betrayal_dagger.rsi/icon.png similarity index 100% rename from Resources/Textures/_White/Objects/Weapons/Melee/Daggers/betrayal_knife.rsi/icon.png rename to Resources/Textures/_White/Objects/Weapons/Melee/Daggers/betrayal_dagger.rsi/icon.png diff --git a/Resources/Textures/_White/Objects/Weapons/Melee/Daggers/betrayal_knife.rsi/inhand-left.png b/Resources/Textures/_White/Objects/Weapons/Melee/Daggers/betrayal_dagger.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/_White/Objects/Weapons/Melee/Daggers/betrayal_knife.rsi/inhand-left.png rename to Resources/Textures/_White/Objects/Weapons/Melee/Daggers/betrayal_dagger.rsi/inhand-left.png diff --git a/Resources/Textures/_White/Objects/Weapons/Melee/Daggers/betrayal_knife.rsi/inhand-right.png b/Resources/Textures/_White/Objects/Weapons/Melee/Daggers/betrayal_dagger.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/_White/Objects/Weapons/Melee/Daggers/betrayal_knife.rsi/inhand-right.png rename to Resources/Textures/_White/Objects/Weapons/Melee/Daggers/betrayal_dagger.rsi/inhand-right.png diff --git a/Resources/Textures/_White/Objects/Weapons/Melee/Daggers/betrayal_knife.rsi/meta.json b/Resources/Textures/_White/Objects/Weapons/Melee/Daggers/betrayal_dagger.rsi/meta.json similarity index 100% rename from Resources/Textures/_White/Objects/Weapons/Melee/Daggers/betrayal_knife.rsi/meta.json rename to Resources/Textures/_White/Objects/Weapons/Melee/Daggers/betrayal_dagger.rsi/meta.json diff --git a/Resources/Textures/_White/Objects/Weapons/Melee/Daggers/blood_dagger.rsi/icon.png b/Resources/Textures/_White/Objects/Weapons/Melee/Daggers/blood_dagger.rsi/icon.png new file mode 100644 index 0000000000..4612949044 Binary files /dev/null and b/Resources/Textures/_White/Objects/Weapons/Melee/Daggers/blood_dagger.rsi/icon.png differ diff --git a/Resources/Textures/_White/Objects/Weapons/Melee/Daggers/blood_dagger.rsi/inhand-left.png b/Resources/Textures/_White/Objects/Weapons/Melee/Daggers/blood_dagger.rsi/inhand-left.png new file mode 100644 index 0000000000..e990972857 Binary files /dev/null and b/Resources/Textures/_White/Objects/Weapons/Melee/Daggers/blood_dagger.rsi/inhand-left.png differ diff --git a/Resources/Textures/_White/Objects/Weapons/Melee/Daggers/blood_dagger.rsi/inhand-right.png b/Resources/Textures/_White/Objects/Weapons/Melee/Daggers/blood_dagger.rsi/inhand-right.png new file mode 100644 index 0000000000..e93b1a9810 Binary files /dev/null and b/Resources/Textures/_White/Objects/Weapons/Melee/Daggers/blood_dagger.rsi/inhand-right.png differ diff --git a/Resources/Textures/_White/Objects/Weapons/Melee/Daggers/blood_dagger.rsi/meta.json b/Resources/Textures/_White/Objects/Weapons/Melee/Daggers/blood_dagger.rsi/meta.json new file mode 100644 index 0000000000..e5caaafc3d --- /dev/null +++ b/Resources/Textures/_White/Objects/Weapons/Melee/Daggers/blood_dagger.rsi/meta.json @@ -0,0 +1,84 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.5 + ] + ] + }, + { + "name": "inhand-right", + "directions": 4, + "delays": [ + [ + 0.8, + 0.1, + 0.1, + 0.1 + ], + [ + 0.8, + 0.1, + 0.1, + 0.1 + ], + [ + 0.8, + 0.1, + 0.1, + 0.1 + ], + [ + 0.8, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-left", + "directions": 4, + "delays": [ + [ + 0.8, + 0.1, + 0.1, + 0.1 + ], + [ + 0.8, + 0.1, + 0.1, + 0.1 + ], + [ + 0.8, + 0.1, + 0.1, + 0.1 + ], + [ + 0.8, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/equipped-BACKPACK.png b/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000..4efd16f69c Binary files /dev/null and b/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/inhand-left.png b/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/inhand-left.png new file mode 100644 index 0000000000..0bb135ee5e Binary files /dev/null and b/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/inhand-left.png differ diff --git a/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/inhand-right.png b/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/inhand-right.png new file mode 100644 index 0000000000..27aef7038a Binary files /dev/null and b/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/inhand-right.png differ diff --git a/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/meta.json b/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/meta.json new file mode 100644 index 0000000000..c73764f011 --- /dev/null +++ b/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/meta.json @@ -0,0 +1,37 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from monkestation at https://github.com/Monkestation/MonkeStation/commit/c995c9bda2c23386614ac1cb00aca552f573ba9f, equipped sprite by Aviu, wielded sprites by antohag, spear1 sprite by Spatison", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "spear" + }, + { + "name": "spear1" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/spear.png b/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/spear.png new file mode 100644 index 0000000000..df63e0c8fd Binary files /dev/null and b/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/spear.png differ diff --git a/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/spear1.png b/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/spear1.png new file mode 100644 index 0000000000..c2254b43f8 Binary files /dev/null and b/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/spear1.png differ diff --git a/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/wielded-inhand-left.png b/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..416a73d8ba Binary files /dev/null and b/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/wielded-inhand-right.png b/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..66d78ce7f2 Binary files /dev/null and b/Resources/Textures/_White/Objects/Weapons/Melee/Spear/hardlight_spear.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/_White/Objects/Weapons/pflash.rsi/flashing.png b/Resources/Textures/_White/Objects/Weapons/pflash.rsi/flashing.png deleted file mode 100644 index 00375942fb..0000000000 Binary files a/Resources/Textures/_White/Objects/Weapons/pflash.rsi/flashing.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Weapons/pflash.rsi/meta.json b/Resources/Textures/_White/Objects/Weapons/pflash.rsi/meta.json deleted file mode 100644 index c7b536cf6e..0000000000 --- a/Resources/Textures/_White/Objects/Weapons/pflash.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/f349b842c84f500399bd5673e5e34a6bc45b001a", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "off" - }, - { - "name": "on" - }, - { - "name": "on-unlit" - }, - { - "name": "flashing", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Objects/Weapons/pflash.rsi/off.png b/Resources/Textures/_White/Objects/Weapons/pflash.rsi/off.png deleted file mode 100644 index 1db05eebb7..0000000000 Binary files a/Resources/Textures/_White/Objects/Weapons/pflash.rsi/off.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Weapons/pflash.rsi/on-unlit.png b/Resources/Textures/_White/Objects/Weapons/pflash.rsi/on-unlit.png deleted file mode 100644 index 67f9704c39..0000000000 Binary files a/Resources/Textures/_White/Objects/Weapons/pflash.rsi/on-unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Objects/Weapons/pflash.rsi/on.png b/Resources/Textures/_White/Objects/Weapons/pflash.rsi/on.png deleted file mode 100644 index 524f313143..0000000000 Binary files a/Resources/Textures/_White/Objects/Weapons/pflash.rsi/on.png and /dev/null differ diff --git a/Resources/Textures/_White/Overlays/mindslave.rsi/master.png b/Resources/Textures/_White/Overlays/mindslave.rsi/master.png new file mode 100644 index 0000000000..36e71896de Binary files /dev/null and b/Resources/Textures/_White/Overlays/mindslave.rsi/master.png differ diff --git a/Resources/Textures/_White/Overlays/mindslave.rsi/meta.json b/Resources/Textures/_White/Overlays/mindslave.rsi/meta.json new file mode 100644 index 0000000000..fc1da4fe1a --- /dev/null +++ b/Resources/Textures/_White/Overlays/mindslave.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "@JustNemo", + "size": { + "x": 8, + "y": 8 + }, + "states": [ + { + "name": "slave" + }, + { + "name": "master" + } + ] +} diff --git a/Resources/Textures/_White/Overlays/mindslave.rsi/slave.png b/Resources/Textures/_White/Overlays/mindslave.rsi/slave.png new file mode 100644 index 0000000000..9bd07e8102 Binary files /dev/null and b/Resources/Textures/_White/Overlays/mindslave.rsi/slave.png differ diff --git a/Resources/Textures/_White/Shaders/nightvision.swsl b/Resources/Textures/_White/Shaders/nightvision.swsl new file mode 100644 index 0000000000..8a3e7706ad --- /dev/null +++ b/Resources/Textures/_White/Shaders/nightvision.swsl @@ -0,0 +1,38 @@ +light_mode unshaded; + +uniform sampler2D SCREEN_TEXTURE; +uniform highp vec3 tint; // Colour of the tint +uniform highp float luminance_threshold; // number between 0 and 1 +uniform highp float noise_amount; // number between 0 and 1 + +lowp float rand (lowp vec2 n) { + return 0.5 + 0.5 * fract (sin (dot (n.xy, vec2 (12.9898, 78.233)))* 43758.5453); +} + +void fragment() { + + highp vec4 color = zTextureSpec(SCREEN_TEXTURE, FRAGCOORD.xy * SCREEN_PIXEL_SIZE); + + // convert color to grayscale using luminance + highp float grey = dot(color.rgb, vec3(0.298, 0.5882, 0.1137)); + + // calculate local threshold + highp float threshold = grey * luminance_threshold; + + // amplify low luminance parts + if (grey < threshold) { + grey += (threshold - grey) * 0.5; + if (grey > 1.0) { + grey = 1.0; + } + } + + // apply night vision color tint + color.rgb = mix(color.rgb, tint, grey); + + // add some noise for realism + lowp float noise = rand(FRAGCOORD.xy + TIME) * noise_amount / 10.0; + color.rgb += noise; + + COLOR = color; +} diff --git a/Resources/Textures/_White/Structures/Decoration/statues.rsi/bananium_clown.png b/Resources/Textures/_White/Structures/Decoration/statues.rsi/bananium_clown.png deleted file mode 100644 index 0dce0770fd..0000000000 Binary files a/Resources/Textures/_White/Structures/Decoration/statues.rsi/bananium_clown.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Decoration/statues.rsi/meta.json b/Resources/Textures/_White/Structures/Decoration/statues.rsi/meta.json deleted file mode 100644 index 9b5ca76044..0000000000 --- a/Resources/Textures/_White/Structures/Decoration/statues.rsi/meta.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka", - "size": { - "x": 32, - "y": 64 - }, - "states": [ - { - "name": "bananium_clown" - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/assembly.png deleted file mode 100644 index 3d018bfbbb..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closed.png deleted file mode 100644 index 959b58471a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closing.png deleted file mode 100644 index a2b6ac7e3a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/open.png deleted file mode 100644 index 61f9bb5c08..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/opening.png deleted file mode 100644 index d0f17a5e61..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/atmospherics.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/assembly.png deleted file mode 100644 index 33f6de75d7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/closed.png deleted file mode 100644 index 904395ea40..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/closing.png deleted file mode 100644 index 95c4cf190b..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/open.png deleted file mode 100644 index 862c9940fc..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/opening.png deleted file mode 100644 index 753e1e8a9e..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/basic.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/assembly.png deleted file mode 100644 index bf8945b1f2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/closed.png deleted file mode 100644 index 9aaf1f688f..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/closing.png deleted file mode 100644 index e171ad6aea..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/open.png deleted file mode 100644 index d0175d0f86..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/opening.png deleted file mode 100644 index bdd0150cf1..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/cargo.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/assembly.png deleted file mode 100644 index 7db8f8b6e8..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/closed.png deleted file mode 100644 index 8c3d2ae66c..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/closing.png deleted file mode 100644 index ba55d1eefb..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/open.png deleted file mode 100644 index 4c684bdca1..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/opening.png deleted file mode 100644 index d99926d11e..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/centcomm.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/assembly.png deleted file mode 100644 index fe56e9f4da..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/bolted_unlit.png deleted file mode 100644 index 8937692851..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/closed.png deleted file mode 100644 index 4e0bdad1a1..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/closing.png deleted file mode 100644 index b02200b2ce..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/closing_unlit.png deleted file mode 100644 index f7b9eff2ca..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/deny_unlit.png deleted file mode 100644 index d5e7367a07..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/emergency_unlit.png deleted file mode 100644 index 0303ac66ad..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/meta.json deleted file mode 100644 index e2365e45e9..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/meta.json +++ /dev/null @@ -1,176 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/a406e8388f763e496caac32c3cf11e455b20d28d/icons/obj/doors/airlocks/clockwork/pinion_airlock.dmi and https://github.com/tgstation/tgstation/blob/a406e8388f763e496caac32c3cf11e455b20d28d/icons/obj/doors/airlocks/clockwork/overlays.dmi modified for SS14 by MACMAN2003. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 0.4, - 0.04, - 0.07, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.07, - 0.1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/open.png deleted file mode 100644 index 0c68b4b6c9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/opening.png deleted file mode 100644 index b4801197c2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/opening_unlit.png deleted file mode 100644 index 20421c994c..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/panel_closing.png deleted file mode 100644 index cc06c93bd0..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/panel_open.png deleted file mode 100644 index a8d3a3dc0f..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/panel_opening.png deleted file mode 100644 index 325548cb8a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/sparks.png deleted file mode 100644 index 453cbff2ce..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/welded.png deleted file mode 100644 index 87166f1f3c..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/clockwork_pinion.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/assembly.png deleted file mode 100644 index 211a5ec6b2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/closed.png deleted file mode 100644 index 36df88f44c..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/closing.png deleted file mode 100644 index 5ec7f63312..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/open.png deleted file mode 100644 index c771279653..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/opening.png deleted file mode 100644 index f8dfecba63..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/command.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/assembly.png deleted file mode 100644 index c8eb941bd9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/closed.png deleted file mode 100644 index efddf7ff2e..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/closing.png deleted file mode 100644 index fe9268a1de..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/open.png deleted file mode 100644 index 09fec38bfa..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/opening.png deleted file mode 100644 index d5db1fa7de..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/engineering.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/assembly.png deleted file mode 100644 index 85715a9ca0..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/bolted_unlit.png deleted file mode 100644 index c1984c4f00..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/closed.png deleted file mode 100644 index 2d854b6b48..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/closed_unlit.png deleted file mode 100644 index b7a5f9ecca..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/closing.png deleted file mode 100644 index 54938d9b3b..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/closing_unlit.png deleted file mode 100644 index 351a0f3528..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/deny_unlit.png deleted file mode 100644 index 0eaf4064c7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/emergency_unlit.png deleted file mode 100644 index a40cee44be..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/meta.json deleted file mode 100644 index 57ba87b56c..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/meta.json +++ /dev/null @@ -1,186 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "emergency_open_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.2, - 0.2, - 0.1, - 0.1, - 0.1, - 0.3 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.6 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open" - }, - { - "name": "opening", - "delays": [ - [ - 0.2, - 0.2, - 0.1, - 0.1, - 0.1, - 0.3 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open" - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/open.png deleted file mode 100644 index 1868e6ccac..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/opening.png deleted file mode 100644 index ec42792e4b..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/opening_unlit.png deleted file mode 100644 index 351a0f3528..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/panel_closing.png deleted file mode 100644 index 86838a6000..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/panel_open.png deleted file mode 100644 index 33ef420933..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/panel_opening.png deleted file mode 100644 index bf857f1c12..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/sparks.png deleted file mode 100644 index 834fc74519..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/sparks_broken.png deleted file mode 100644 index 2dba392369..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/sparks_damaged.png deleted file mode 100644 index 2dba392369..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/sparks_open.png deleted file mode 100644 index e5d876f7ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/welded.png deleted file mode 100644 index a0b9e23d40..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/external.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/assembly.png deleted file mode 100644 index 0b14b77aec..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/bolted_unlit.png deleted file mode 100644 index 53bdd1ccf4..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/closed.png deleted file mode 100644 index 602b83df5b..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/closed_unlit.png deleted file mode 100644 index b7a5f9ecca..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/closing.png deleted file mode 100644 index 6718ae08e9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/closing_unlit.png deleted file mode 100644 index d0b97a4029..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/deny.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/deny.png deleted file mode 100644 index a2b151c140..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/deny.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/deny_unlit.png deleted file mode 100644 index c584771ed1..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/emergency_unlit.png deleted file mode 100644 index a40cee44be..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/locked.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/locked.png deleted file mode 100644 index 5c87415ec1..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/locked.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/meta.json deleted file mode 100644 index 6ad64f839e..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/meta.json +++ /dev/null @@ -1,162 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/tgstation/tgstation at 04e43d8c1d5097fdb697addd4395fb849dd341bd. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "emergency_open_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "deny", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "locked" - }, - { - "name": "open" - }, - { - "name": "opening", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.27 - ] - ] - }, - { - "name": "panel_open" - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.2, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "welded_open" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/open.png deleted file mode 100644 index 6fcb5b059b..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/opening.png deleted file mode 100644 index 113ddab7b7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/opening_unlit.png deleted file mode 100644 index 816c648cc4..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/panel_closing.png deleted file mode 100644 index ae69b8aded..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/panel_open.png deleted file mode 100644 index 5f3bfeae15..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/panel_opening.png deleted file mode 100644 index 8271b80b11..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/welded.png deleted file mode 100644 index 54de288e54..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/welded_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/welded_open.png deleted file mode 100644 index d5b1d509b5..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/firelock.rsi/welded_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/assembly-fill.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/assembly-fill.png deleted file mode 100644 index 622e0de7a5..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/assembly-fill.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/assembly-glass.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/assembly-glass.png deleted file mode 100644 index 9ff21ca1b7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/assembly-glass.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/assembly.png deleted file mode 100644 index 26d9dc17c2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closed-fill.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closed-fill.png deleted file mode 100644 index f5764f5f33..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closed-fill.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closed-glass.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closed-glass.png deleted file mode 100644 index 0d743b2d68..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closed-glass.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closed.png deleted file mode 100644 index d5243ea857..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closing-fill.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closing-fill.png deleted file mode 100644 index c27c80657d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closing-fill.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closing-glass.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closing-glass.png deleted file mode 100644 index 64bcb035c6..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closing-glass.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closing-panel.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closing-panel.png deleted file mode 100644 index 64d41f1dba..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closing-panel.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closing.png deleted file mode 100644 index f48efb153a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closing_unlit.png deleted file mode 100644 index b835f51158..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/deny_unlit.png deleted file mode 100644 index a3a6eb30a5..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/meta.json deleted file mode 100644 index befffa0c39..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/meta.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "assembly-fill" - }, - { - "name": "assembly-glass" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "closed-fill" - }, - { - "name": "closed-glass" - }, - { - "name": "panel_closed" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing-fill", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing-glass", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing-panel", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open" - }, - { - "name": "panel_open" - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening-fill", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening-glass", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening-panel", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/open.png deleted file mode 100644 index de9c757173..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/opening-fill.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/opening-fill.png deleted file mode 100644 index e176980142..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/opening-fill.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/opening-glass.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/opening-glass.png deleted file mode 100644 index a48b154c95..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/opening-glass.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/opening-panel.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/opening-panel.png deleted file mode 100644 index 6d3267c174..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/opening-panel.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/opening.png deleted file mode 100644 index 594f26a450..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/opening_unlit.png deleted file mode 100644 index b4ca46e425..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/panel_closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/panel_closed.png deleted file mode 100644 index 7fe48cc120..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/panel_closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/panel_open.png deleted file mode 100644 index 2603c4a720..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/sparks.png deleted file mode 100644 index e76a54328a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/welded.png deleted file mode 100644 index 3f3f14b078..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/glass.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/assembly.png deleted file mode 100644 index 056fcc5c14..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/closed.png deleted file mode 100644 index 04842eb1c7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/closing.png deleted file mode 100644 index fd27f05b3a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/meta.json deleted file mode 100644 index 7d8b2665cf..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 and recolored by leonardo_dabepis (Discord). Modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/open.png deleted file mode 100644 index 10d823bfe8..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/opening.png deleted file mode 100644 index 540ccf3de4..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/justice.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/assembly.png deleted file mode 100644 index 3e2f7aff44..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/closed.png deleted file mode 100644 index b4468aef4e..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/closing.png deleted file mode 100644 index 1ae0abf4c6..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/open.png deleted file mode 100644 index 086bedbc60..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/opening.png deleted file mode 100644 index 296144e387..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/maint.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/assembly.png deleted file mode 100644 index 50662eb45c..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/closed.png deleted file mode 100644 index 821f747fb2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/closing.png deleted file mode 100644 index 64683f81db..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/open.png deleted file mode 100644 index acb4476002..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/opening.png deleted file mode 100644 index 1c15ed06bc..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/medical.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/assembly.png deleted file mode 100644 index 33a9e276c7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/bolted_unlit.png deleted file mode 100644 index 8936e50021..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/closed.png deleted file mode 100644 index b82e16de2a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/closed_unlit.png deleted file mode 100644 index 6a4eae111c..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/closing.png deleted file mode 100644 index e4019d4d07..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/closing_unlit.png deleted file mode 100644 index cec5fc7e85..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/deny_unlit.png deleted file mode 100644 index fb428de951..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/emergency_unlit.png deleted file mode 100644 index 2a7eb55f53..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/meta.json deleted file mode 100644 index 1eed540bc3..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/meta.json +++ /dev/null @@ -1,216 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken at https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.05, - 0.05, - 0.1 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.05, - 0.05, - 0.1 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.05, - 0.05, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.05, - 0.05, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.05, - 0.05, - 0.1 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.05, - 0.05, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/open.png deleted file mode 100644 index a8fcf70b3d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/opening.png deleted file mode 100644 index 460e3187af..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/opening_unlit.png deleted file mode 100644 index b4de9fc9e2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/panel_closing.png deleted file mode 100644 index 42b84b72fe..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/panel_open.png deleted file mode 100644 index c76bdb146b..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/panel_opening.png deleted file mode 100644 index 09c5f5ca81..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/sparks.png deleted file mode 100644 index 77283c6284..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/welded.png deleted file mode 100644 index cf8f37a756..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/mining.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/assembly.png deleted file mode 100644 index f7d8aaf354..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/closed.png deleted file mode 100644 index 82a36b65b9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/closing.png deleted file mode 100644 index ff5532f584..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/open.png deleted file mode 100644 index 8940b5a510..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/opening.png deleted file mode 100644 index 3254710d81..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/science.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/assembly.png deleted file mode 100644 index a59a9fcebb..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/closed.png deleted file mode 100644 index 789b3537c0..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/closing.png deleted file mode 100644 index 90e3917603..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/open.png deleted file mode 100644 index 93c4460f1b..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/opening.png deleted file mode 100644 index 0a6a79329e..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/security.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/assembly.png deleted file mode 100644 index 499ec46a53..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/bolted_unlit.png deleted file mode 100644 index 844bd201f1..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/closed.png deleted file mode 100644 index 119666c833..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/closed_unlit.png deleted file mode 100644 index e1346fd80c..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/closing.png deleted file mode 100644 index 761e9164ce..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/closing_unlit.png deleted file mode 100644 index 51ae8ad362..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/deny_unlit.png deleted file mode 100644 index dfe4d406ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/emergency_unlit.png deleted file mode 100644 index 31f7a5f9f0..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/meta.json deleted file mode 100644 index b0119eb750..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/meta.json +++ /dev/null @@ -1,161 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from CEV-Eris at commit https://github.com/discordia-space/CEV-Eris/commit/14517938186858388656a6aee14bf47af9e9649f - then modified by 20kdc & AJCM-git. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - }, - { - "name": "closing", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "open" - }, - { - "name": "opening", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "panel_open" - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/open.png deleted file mode 100644 index 5b2e45d833..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/opening.png deleted file mode 100644 index 0546c13db5..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/opening_unlit.png deleted file mode 100644 index 51ae8ad362..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/panel_closing.png deleted file mode 100644 index 6afe206992..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/panel_open.png deleted file mode 100644 index d7d4122c08..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/panel_opening.png deleted file mode 100644 index e6c87d740e..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/welded.png deleted file mode 100644 index eed2758c79..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/assembly.png deleted file mode 100644 index 587c560434..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/bolted_unlit.png deleted file mode 100644 index 844bd201f1..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closed.png deleted file mode 100644 index 3c3577610f..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closed_unlit.png deleted file mode 100644 index e1346fd80c..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closing.png deleted file mode 100644 index 607e1c93fe..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closing_unlit.png deleted file mode 100644 index 51ae8ad362..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/deny_unlit.png deleted file mode 100644 index dfe4d406ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/emergency_unlit.png deleted file mode 100644 index 31f7a5f9f0..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/meta.json deleted file mode 100644 index b0119eb750..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/meta.json +++ /dev/null @@ -1,161 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from CEV-Eris at commit https://github.com/discordia-space/CEV-Eris/commit/14517938186858388656a6aee14bf47af9e9649f - then modified by 20kdc & AJCM-git. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - }, - { - "name": "closing", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "open" - }, - { - "name": "opening", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "panel_open" - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/open.png deleted file mode 100644 index d5fc8df3ca..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/opening.png deleted file mode 100644 index 4d6ab7e701..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/opening_unlit.png deleted file mode 100644 index 51ae8ad362..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_closing.png deleted file mode 100644 index 6afe206992..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_open.png deleted file mode 100644 index d7d4122c08..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_opening.png deleted file mode 100644 index e6c87d740e..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/welded.png deleted file mode 100644 index eed2758c79..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/assembly.png deleted file mode 100644 index 891e7fd9ee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/closed.png deleted file mode 100644 index 75cfc05d02..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/closing.png deleted file mode 100644 index b6a10c1cfb..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/open.png deleted file mode 100644 index 5620a500fc..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/opening.png deleted file mode 100644 index 283ac808a2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/syndicate.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/assembly.png deleted file mode 100644 index f162a3d707..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/closed.png deleted file mode 100644 index 35b896703c..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/closing.png deleted file mode 100644 index 1a98e1e5d6..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/open.png deleted file mode 100644 index f334c224c9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/opening.png deleted file mode 100644 index 8707d23a76..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Glass/virology.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/assembly.png deleted file mode 100644 index 0c50656f6b..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closed.png deleted file mode 100644 index 97e3a30040..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closing.png deleted file mode 100644 index 0a679afb71..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/open.png deleted file mode 100644 index 61f9bb5c08..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/opening.png deleted file mode 100644 index bd7937096e..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/atmospherics.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/assembly.png deleted file mode 100644 index 0281682b36..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/closed.png deleted file mode 100644 index d61b8f17f0..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/closing.png deleted file mode 100644 index 247612bd7e..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/open.png deleted file mode 100644 index 862c9940fc..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/opening.png deleted file mode 100644 index cded9299eb..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/basic.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/assembly.png deleted file mode 100644 index 8aac380b7b..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/closed.png deleted file mode 100644 index d92c0ca3df..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/closing.png deleted file mode 100644 index 399f965816..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/open.png deleted file mode 100644 index d0175d0f86..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/opening.png deleted file mode 100644 index 64f8116f45..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/cargo.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/assembly.png deleted file mode 100644 index 814d837908..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/closed.png deleted file mode 100644 index 814d837908..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/closing.png deleted file mode 100644 index ebfb093c0c..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/open.png deleted file mode 100644 index 4c684bdca1..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/opening.png deleted file mode 100644 index 3168c45583..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/centcomm.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/assembly.png deleted file mode 100644 index 18cb58c81b..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/bolted_unlit.png deleted file mode 100644 index 8937692851..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/closed.png deleted file mode 100644 index b070cf3155..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/closing.png deleted file mode 100644 index fc8b201873..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/closing_unlit.png deleted file mode 100644 index f7b9eff2ca..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/deny_unlit.png deleted file mode 100644 index d5e7367a07..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/emergency_unlit.png deleted file mode 100644 index 0303ac66ad..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/meta.json deleted file mode 100644 index c14f55b410..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/meta.json +++ /dev/null @@ -1,176 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/a406e8388f763e496caac32c3cf11e455b20d28d/icons/obj/doors/airlocks/clockwork/pinion_airlock.dmi and https://github.com/tgstation/tgstation/blob/a406e8388f763e496caac32c3cf11e455b20d28d/icons/obj/doors/airlocks/clockwork/overlays.dmi modified for SS14 by MACMAN2003. Modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 0.4, - 0.04, - 0.07, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.07, - 0.1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/open.png deleted file mode 100644 index 0c68b4b6c9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/opening.png deleted file mode 100644 index c629103818..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/opening_unlit.png deleted file mode 100644 index 20421c994c..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/panel_closing.png deleted file mode 100644 index cc06c93bd0..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/panel_open.png deleted file mode 100644 index a8d3a3dc0f..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/panel_opening.png deleted file mode 100644 index 325548cb8a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/sparks.png deleted file mode 100644 index 453cbff2ce..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/welded.png deleted file mode 100644 index 87166f1f3c..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/clockwork_pinion.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/assembly.png deleted file mode 100644 index fa6f3e59cf..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/closed.png deleted file mode 100644 index c1793a1076..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/closing.png deleted file mode 100644 index 7b285ba601..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/open.png deleted file mode 100644 index c771279653..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/opening.png deleted file mode 100644 index ff2693c592..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/command.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/assembly.png deleted file mode 100644 index a7e102b37e..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/closed.png deleted file mode 100644 index 90c3f4cd90..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/closing.png deleted file mode 100644 index 033682b7e3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/open.png deleted file mode 100644 index 09fec38bfa..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/opening.png deleted file mode 100644 index 38441d5bda..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/engineering.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/assembly.png deleted file mode 100644 index 62b788cbc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/bolted_unlit.png deleted file mode 100644 index c1984c4f00..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/closed.png deleted file mode 100644 index 296ef6a128..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/closed_unlit.png deleted file mode 100644 index b7a5f9ecca..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/closing.png deleted file mode 100644 index 5ae48c213d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/closing_unlit.png deleted file mode 100644 index 351a0f3528..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/deny_unlit.png deleted file mode 100644 index 0eaf4064c7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/emergency_unlit.png deleted file mode 100644 index a40cee44be..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/meta.json deleted file mode 100644 index 54c867a457..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/meta.json +++ /dev/null @@ -1,186 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - }, - { - "name": "closing", - "delays": [ - [ - 0.2, - 0.2, - 0.1, - 0.1, - 0.1, - 0.3 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.6 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open" - }, - { - "name": "opening", - "delays": [ - [ - 0.2, - 0.2, - 0.1, - 0.1, - 0.1, - 0.3 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open" - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/open.png deleted file mode 100644 index 1868e6ccac..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/opening.png deleted file mode 100644 index b71c4e1e41..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/opening_unlit.png deleted file mode 100644 index 351a0f3528..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/panel_closing.png deleted file mode 100644 index 86838a6000..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/panel_open.png deleted file mode 100644 index 33ef420933..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/panel_opening.png deleted file mode 100644 index bf857f1c12..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/sparks.png deleted file mode 100644 index 834fc74519..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/sparks_broken.png deleted file mode 100644 index 2dba392369..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/sparks_damaged.png deleted file mode 100644 index 2dba392369..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/sparks_open.png deleted file mode 100644 index e5d876f7ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/welded.png deleted file mode 100644 index a0b9e23d40..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/external.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/assembly.png deleted file mode 100644 index ec0074757c..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/bolted_unlit.png deleted file mode 100644 index 53bdd1ccf4..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/closed.png deleted file mode 100644 index 419e050645..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/closed_unlit.png deleted file mode 100644 index b7a5f9ecca..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/closing.png deleted file mode 100644 index 9e4b1edb57..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/closing_unlit.png deleted file mode 100644 index d0b97a4029..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/deny.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/deny.png deleted file mode 100644 index 98675fc927..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/deny.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/deny_unlit.png deleted file mode 100644 index c584771ed1..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/emergency_unlit.png deleted file mode 100644 index a40cee44be..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/frame1.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/frame1.png deleted file mode 100644 index d722a8a0f7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/frame1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/frame2.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/frame2.png deleted file mode 100644 index 47b5c0067b..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/frame2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/frame3.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/frame3.png deleted file mode 100644 index 6a8b30b912..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/frame3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/frame4.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/frame4.png deleted file mode 100644 index 1717ef5404..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/frame4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/locked.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/locked.png deleted file mode 100644 index ec2d03812d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/locked.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/meta.json deleted file mode 100644 index 8fe7116f9b..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/meta.json +++ /dev/null @@ -1,174 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/tgstation/tgstation at 04e43d8c1d5097fdb697addd4395fb849dd341bd. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - }, - { - "name": "closing", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "deny", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "frame1" - }, - { - "name": "frame2" - }, - { - "name": "frame3" - }, - { - "name": "frame4" - }, - { - "name": "locked" - }, - { - "name": "open" - }, - { - "name": "opening", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.27 - ] - ] - }, - { - "name": "panel_open" - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.2, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "welded_open" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/open.png deleted file mode 100644 index a89b493a8b..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/opening.png deleted file mode 100644 index 39e81737fb..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/opening_unlit.png deleted file mode 100644 index 816c648cc4..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/panel_closing.png deleted file mode 100644 index ae69b8aded..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/panel_open.png deleted file mode 100644 index 5f3bfeae15..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/panel_opening.png deleted file mode 100644 index 8271b80b11..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/welded.png deleted file mode 100644 index 54de288e54..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/welded_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/welded_open.png deleted file mode 100644 index d5b1d509b5..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/firelock.rsi/welded_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/assembly.png deleted file mode 100644 index 4c85a632c5..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/closed.png deleted file mode 100644 index 10168bf762..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/closing.png deleted file mode 100644 index 8c1c28521d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/open.png deleted file mode 100644 index 2523b36382..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/opening.png deleted file mode 100644 index 00f2c629b9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/freezer.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/assembly.png deleted file mode 100644 index 5afd95efb8..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/bolted_unlit.png deleted file mode 100644 index cdf10f33eb..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/closed.png deleted file mode 100644 index 346fea6cdf..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/closed_unlit.png deleted file mode 100644 index 611f458f91..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/closing.png deleted file mode 100644 index 94b84d364b..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/closing_unlit.png deleted file mode 100644 index 2f5fdecca2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/deny_unlit.png deleted file mode 100644 index 14762d6697..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/emergency_unlit.png deleted file mode 100644 index 7780d2478d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/meta.json deleted file mode 100644 index b7da65f815..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/meta.json +++ /dev/null @@ -1,207 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise station at commit https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/open.png deleted file mode 100644 index d0c95a2a03..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/opening.png deleted file mode 100644 index 1446281468..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/opening_unlit.png deleted file mode 100644 index a32084fafc..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/panel_closing.png deleted file mode 100644 index c53b5a692b..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/panel_open.png deleted file mode 100644 index bd90e262c8..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/panel_opening.png deleted file mode 100644 index 02b488b9c9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/sparks_broken.png deleted file mode 100644 index c41fa18ca1..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/sparks_open.png deleted file mode 100644 index 40d559f7a3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/welded.png deleted file mode 100644 index f19a0b8caf..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/assembly.png deleted file mode 100644 index 503e7ecdf2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/bolted_unlit.png deleted file mode 100644 index cdf10f33eb..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/closed.png deleted file mode 100644 index 23f456b33e..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/closed_unlit.png deleted file mode 100644 index 611f458f91..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/closing.png deleted file mode 100644 index 4125893739..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/closing_unlit.png deleted file mode 100644 index 2f5fdecca2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/deny_unlit.png deleted file mode 100644 index 14762d6697..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/emergency_unlit.png deleted file mode 100644 index 7780d2478d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/meta.json deleted file mode 100644 index b7da65f815..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/meta.json +++ /dev/null @@ -1,207 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise station at commit https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/open.png deleted file mode 100644 index 90f190f044..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/opening.png deleted file mode 100644 index f77d4f6d2d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/opening_unlit.png deleted file mode 100644 index a32084fafc..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/panel_closing.png deleted file mode 100644 index c53b5a692b..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/panel_open.png deleted file mode 100644 index bd90e262c8..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/panel_opening.png deleted file mode 100644 index 02b488b9c9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/sparks_broken.png deleted file mode 100644 index c41fa18ca1..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/sparks_open.png deleted file mode 100644 index 40d559f7a3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/welded.png deleted file mode 100644 index f19a0b8caf..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/hatch_maint.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/assembly.png deleted file mode 100644 index 35efd5f6dd..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/closed.png deleted file mode 100644 index 64e00a086d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/closing.png deleted file mode 100644 index 2a33b5d48a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/meta.json deleted file mode 100644 index 7d8b2665cf..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 and recolored by leonardo_dabepis (Discord). Modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/open.png deleted file mode 100644 index 0c731ca796..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/opening.png deleted file mode 100644 index e8e146a32d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/justice.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/assembly.png deleted file mode 100644 index 8382b0bb1f..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/closed.png deleted file mode 100644 index 03664aba10..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/closing.png deleted file mode 100644 index df67d798ac..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/open.png deleted file mode 100644 index 086bedbc60..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/opening.png deleted file mode 100644 index 39cb944eda..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/maint.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/assembly.png deleted file mode 100644 index 0f82d603ae..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/closed.png deleted file mode 100644 index 0d20d9f416..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/closing.png deleted file mode 100644 index 0c4b9de2d6..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/open.png deleted file mode 100644 index acb4476002..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/opening.png deleted file mode 100644 index 9f857363bc..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/medical.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/assembly.png deleted file mode 100644 index 322112c36f..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/bolted_unlit.png deleted file mode 100644 index 8936e50021..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/closed.png deleted file mode 100644 index 406b40544d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/closed_unlit.png deleted file mode 100644 index 6a4eae111c..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/closing.png deleted file mode 100644 index b68a2ba131..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/closing_unlit.png deleted file mode 100644 index cec5fc7e85..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/deny_unlit.png deleted file mode 100644 index fb428de951..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/emergency_unlit.png deleted file mode 100644 index 2a7eb55f53..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/meta.json deleted file mode 100644 index 1eed540bc3..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/meta.json +++ /dev/null @@ -1,216 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken at https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.05, - 0.05, - 0.1 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.05, - 0.05, - 0.1 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.05, - 0.05, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.05, - 0.05, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.05, - 0.05, - 0.1 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.05, - 0.05, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/open.png deleted file mode 100644 index a8fcf70b3d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/opening.png deleted file mode 100644 index 1eeca9f2ec..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/opening_unlit.png deleted file mode 100644 index b4de9fc9e2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/panel_closing.png deleted file mode 100644 index 42b84b72fe..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/panel_open.png deleted file mode 100644 index c76bdb146b..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/panel_opening.png deleted file mode 100644 index 09c5f5ca81..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/sparks.png deleted file mode 100644 index 77283c6284..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/welded.png deleted file mode 100644 index cf8f37a756..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/mining.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/assembly.png deleted file mode 100644 index 0224acaae5..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/closed.png deleted file mode 100644 index 52ab160fc5..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/closing.png deleted file mode 100644 index d2c2320b7e..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/open.png deleted file mode 100644 index 8940b5a510..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/opening.png deleted file mode 100644 index c2e139bd66..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/science.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/assembly.png deleted file mode 100644 index 02eaa98e7d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/closed.png deleted file mode 100644 index d80c06d5bb..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/closing.png deleted file mode 100644 index 42eda07286..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/open.png deleted file mode 100644 index 93c4460f1b..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/opening.png deleted file mode 100644 index eee04d4977..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/security.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/assembly.png deleted file mode 100644 index 8518b527bc..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/bolted_unlit.png deleted file mode 100644 index 844bd201f1..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/closed.png deleted file mode 100644 index 224cc0e31e..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/closed_unlit.png deleted file mode 100644 index e1346fd80c..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/closing.png deleted file mode 100644 index 8aa96e8406..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/closing_unlit.png deleted file mode 100644 index 51ae8ad362..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/deny_unlit.png deleted file mode 100644 index dfe4d406ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/emergency_unlit.png deleted file mode 100644 index 31f7a5f9f0..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/meta.json deleted file mode 100644 index b0119eb750..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/meta.json +++ /dev/null @@ -1,161 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from CEV-Eris at commit https://github.com/discordia-space/CEV-Eris/commit/14517938186858388656a6aee14bf47af9e9649f - then modified by 20kdc & AJCM-git. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - }, - { - "name": "closing", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "open" - }, - { - "name": "opening", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "panel_open" - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/open.png deleted file mode 100644 index 5b2e45d833..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/opening.png deleted file mode 100644 index 078ccd9e58..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/opening_unlit.png deleted file mode 100644 index 51ae8ad362..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/panel_closing.png deleted file mode 100644 index 6afe206992..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/panel_open.png deleted file mode 100644 index d7d4122c08..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/panel_opening.png deleted file mode 100644 index e6c87d740e..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/welded.png deleted file mode 100644 index eed2758c79..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/assembly.png deleted file mode 100644 index 4102c5df32..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/bolted_unlit.png deleted file mode 100644 index 844bd201f1..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closed.png deleted file mode 100644 index 39d2ff3172..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closed_unlit.png deleted file mode 100644 index e1346fd80c..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closing.png deleted file mode 100644 index 042bf6bb10..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closing_unlit.png deleted file mode 100644 index 51ae8ad362..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/deny_unlit.png deleted file mode 100644 index dfe4d406ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/emergency_unlit.png deleted file mode 100644 index 31f7a5f9f0..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/meta.json deleted file mode 100644 index b0119eb750..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/meta.json +++ /dev/null @@ -1,161 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from CEV-Eris at commit https://github.com/discordia-space/CEV-Eris/commit/14517938186858388656a6aee14bf47af9e9649f - then modified by 20kdc & AJCM-git. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - }, - { - "name": "closing", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "open" - }, - { - "name": "opening", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "panel_open" - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/open.png deleted file mode 100644 index bbca39b0aa..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/opening.png deleted file mode 100644 index b844d0a01c..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/opening_unlit.png deleted file mode 100644 index 51ae8ad362..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_closing.png deleted file mode 100644 index 6afe206992..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_open.png deleted file mode 100644 index d7d4122c08..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_opening.png deleted file mode 100644 index e6c87d740e..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/welded.png deleted file mode 100644 index eed2758c79..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/assembly.png deleted file mode 100644 index 2a4287034a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed.png deleted file mode 100644 index f079442300..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/closing.png deleted file mode 100644 index 9885931064..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/open.png deleted file mode 100644 index 1c064b99d4..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/opening.png deleted file mode 100644 index c2f3f07d87..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/syndicate.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/assembly.png deleted file mode 100644 index 867e15f07c..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/closed.png deleted file mode 100644 index 94c93fd35c..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/closed_unlit.png deleted file mode 100644 index 6801a45ff3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/closing.png deleted file mode 100644 index 60b2c12cef..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/meta.json deleted file mode 100644 index f707d4e2fc..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/meta.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/open.png deleted file mode 100644 index f334c224c9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/opening.png deleted file mode 100644 index bf27e40cf8..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/Standard/virology.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/assembly.png deleted file mode 100644 index 60f0fb6f95..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/bolted_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/bolted_unlit.png deleted file mode 100644 index e823208219..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/closed.png deleted file mode 100644 index cc82dfbd8f..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/closed_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/closed_unlit.png deleted file mode 100644 index 0a1d654364..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/closing.png deleted file mode 100644 index 6ada60c527..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/closing_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/closing_unlit.png deleted file mode 100644 index 57fd9e810f..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/deny_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/deny_unlit.png deleted file mode 100644 index 0d5ce30da9..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/emergency_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/emergency_unlit.png deleted file mode 100644 index 17d0110e71..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/meta.json deleted file mode 100644 index 11ea7ab71e..0000000000 --- a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/meta.json +++ /dev/null @@ -1,205 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tg station at commit https://github.com/tgstation/tgstation/commit/6f450d93a6bfcc94e9c43ef7938e85bda49f7b6f. modified by WD team", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "open_unlit" - }, - { - "name": "bolted_open_unlit" - }, - { - "name": "emergency_open_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open" - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open" - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/open.png deleted file mode 100644 index f691a36f78..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/opening.png deleted file mode 100644 index 34468d7acd..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/opening_unlit.png b/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/opening_unlit.png deleted file mode 100644 index bf7cedb654..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/panel_closing.png b/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/panel_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/panel_opening.png b/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/sparks.png b/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/sparks.png deleted file mode 100644 index fc242d9435..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/sparks_broken.png b/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/sparks_broken.png deleted file mode 100644 index e1ff1cbde2..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/sparks_damaged.png b/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/sparks_damaged.png deleted file mode 100644 index c45136360e..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/sparks_open.png b/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/sparks_open.png deleted file mode 100644 index fc1ad6e5e5..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/welded.png b/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/welded.png deleted file mode 100644 index b220fab809..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/Airlocks/highsec/highsec.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/MineralDoors/bananium_door.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/MineralDoors/bananium_door.rsi/closed.png deleted file mode 100644 index 0b9c747f3b..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/MineralDoors/bananium_door.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/MineralDoors/bananium_door.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/MineralDoors/bananium_door.rsi/closing.png deleted file mode 100644 index a46e1c16c3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/MineralDoors/bananium_door.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/MineralDoors/bananium_door.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/MineralDoors/bananium_door.rsi/meta.json deleted file mode 100644 index 56dc2858d7..0000000000 --- a/Resources/Textures/_White/Structures/Doors/MineralDoors/bananium_door.rsi/meta.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "closed", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "closing", - "directions": 1, - "delays": [ - [ - 0.05, - 0.05, - 0.05, - 0.05, - 0.05, - 0.05 - ] - ] - }, - { - "name": "open", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "opening", - "directions": 1, - "delays": [ - [ - 0.05, - 0.05, - 0.05, - 0.05, - 0.05, - 0.05 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/MineralDoors/bananium_door.rsi/open.png b/Resources/Textures/_White/Structures/Doors/MineralDoors/bananium_door.rsi/open.png deleted file mode 100644 index 1c17663360..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/MineralDoors/bananium_door.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/MineralDoors/bananium_door.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/MineralDoors/bananium_door.rsi/opening.png deleted file mode 100644 index ce2221510c..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/MineralDoors/bananium_door.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/MineralDoors/wood_door.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/MineralDoors/wood_door.rsi/closed.png deleted file mode 100644 index 9053014c7f..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/MineralDoors/wood_door.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/MineralDoors/wood_door.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/MineralDoors/wood_door.rsi/closing.png deleted file mode 100644 index cc7b403068..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/MineralDoors/wood_door.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/MineralDoors/wood_door.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/MineralDoors/wood_door.rsi/meta.json deleted file mode 100644 index 65c40bbe30..0000000000 --- a/Resources/Textures/_White/Structures/Doors/MineralDoors/wood_door.rsi/meta.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by @gersoon458", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "closed", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "closing", - "directions": 1, - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "open", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "opening", - "directions": 1, - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/MineralDoors/wood_door.rsi/open.png b/Resources/Textures/_White/Structures/Doors/MineralDoors/wood_door.rsi/open.png deleted file mode 100644 index baa9a94355..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/MineralDoors/wood_door.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/MineralDoors/wood_door.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/MineralDoors/wood_door.rsi/opening.png deleted file mode 100644 index cb3e9e1eb4..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/MineralDoors/wood_door.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/secret_door.rsi/assembly.png b/Resources/Textures/_White/Structures/Doors/secret_door.rsi/assembly.png deleted file mode 100644 index e872d82c5d..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/secret_door.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/secret_door.rsi/closed.png b/Resources/Textures/_White/Structures/Doors/secret_door.rsi/closed.png deleted file mode 100644 index 198151d903..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/secret_door.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/secret_door.rsi/closing.png b/Resources/Textures/_White/Structures/Doors/secret_door.rsi/closing.png deleted file mode 100644 index 96bba25801..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/secret_door.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/secret_door.rsi/meta.json b/Resources/Textures/_White/Structures/Doors/secret_door.rsi/meta.json deleted file mode 100644 index 7e8135f216..0000000000 --- a/Resources/Textures/_White/Structures/Doors/secret_door.rsi/meta.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by Nimfar11 (GitHub) for Space Station 14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "closed", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "closing", - "directions": 1, - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "open", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "opening", - "directions": 1, - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Doors/secret_door.rsi/open.png b/Resources/Textures/_White/Structures/Doors/secret_door.rsi/open.png deleted file mode 100644 index 7ca06de1ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/secret_door.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Doors/secret_door.rsi/opening.png b/Resources/Textures/_White/Structures/Doors/secret_door.rsi/opening.png deleted file mode 100644 index 861f6fbbc3..0000000000 Binary files a/Resources/Textures/_White/Structures/Doors/secret_door.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Altars/Cults/bananium.rsi/full.png b/Resources/Textures/_White/Structures/Furniture/Altars/Cults/bananium.rsi/full.png deleted file mode 100644 index be588c81af..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Altars/Cults/bananium.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Altars/Cults/bananium.rsi/meta.json b/Resources/Textures/_White/Structures/Furniture/Altars/Cults/bananium.rsi/meta.json deleted file mode 100644 index e01dae89f2..0000000000 --- a/Resources/Textures/_White/Structures/Furniture/Altars/Cults/bananium.rsi/meta.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka", - "states": [ - { - "name": "full" - } - ] -} diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/full.png b/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/full.png deleted file mode 100644 index ea0772fd14..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/meta.json b/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/meta.json deleted file mode 100644 index 215b09c017..0000000000 --- a/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/meta.json +++ /dev/null @@ -1,163 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/0b3ab17dbad632ddf738b63900ef8df1926bba47/icons/obj/tables.dmi and edited by @gersoon458", - "states": [ - { - "name": "full", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "state_0", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_1", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_2", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_3", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_4", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_5", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_6", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_7", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_0.png b/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_0.png deleted file mode 100644 index 10ade24371..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_1.png b/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_1.png deleted file mode 100644 index 0a45f1126f..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_2.png b/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_2.png deleted file mode 100644 index 10ade24371..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_3.png b/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_3.png deleted file mode 100644 index 0a45f1126f..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_4.png b/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_4.png deleted file mode 100644 index 31af0f0c5f..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_5.png b/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_5.png deleted file mode 100644 index e58f5b5fcf..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_6.png b/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_6.png deleted file mode 100644 index 31af0f0c5f..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_7.png b/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_7.png deleted file mode 100644 index 1a7600a76e..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/carpet.rsi/state_7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/full.png b/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/full.png deleted file mode 100644 index 12066a6421..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/meta.json b/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/meta.json deleted file mode 100644 index ae28be1940..0000000000 --- a/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/meta.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Sprite by Peptide based on wooden table and edited by @gersoon458", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "full" - }, - { - "name": "state_0", - "directions": 4 - }, - { - "name": "state_1", - "directions": 4 - }, - { - "name": "state_2", - "directions": 4 - }, - { - "name": "state_3", - "directions": 4 - }, - { - "name": "state_4", - "directions": 4 - }, - { - "name": "state_5", - "directions": 4 - }, - { - "name": "state_6", - "directions": 4 - }, - { - "name": "state_7", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_0.png b/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_0.png deleted file mode 100644 index 61c6e99762..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_1.png b/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_1.png deleted file mode 100644 index 6b0e0dde7d..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_2.png b/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_2.png deleted file mode 100644 index 05b2fd5dae..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_3.png b/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_3.png deleted file mode 100644 index 2c1f4a1550..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_4.png b/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_4.png deleted file mode 100644 index 68abc00e1f..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_5.png b/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_5.png deleted file mode 100644 index a3dd9d17d6..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_6.png b/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_6.png deleted file mode 100644 index c9f8349688..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_7.png b/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_7.png deleted file mode 100644 index 8630a278db..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/counterwood.rsi/state_7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/full.png b/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/full.png deleted file mode 100644 index 4eed0b0b08..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/meta.json b/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/meta.json deleted file mode 100644 index 0ebc40b814..0000000000 --- a/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/meta.json +++ /dev/null @@ -1,163 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/0b3ab17dbad632ddf738b63900ef8df1926bba47/icons/obj/tables.dmi", - "states": [ - { - "name": "full", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "state_0", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_1", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_2", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_3", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_4", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_5", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_6", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_7", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_0.png b/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_0.png deleted file mode 100644 index b0eb81d2c9..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_1.png b/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_1.png deleted file mode 100644 index 2a982fa394..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_2.png b/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_2.png deleted file mode 100644 index b0eb81d2c9..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_3.png b/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_3.png deleted file mode 100644 index 2a982fa394..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_4.png b/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_4.png deleted file mode 100644 index cc0ad2cf1c..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_5.png b/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_5.png deleted file mode 100644 index 47e94567e7..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_6.png b/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_6.png deleted file mode 100644 index cc0ad2cf1c..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_7.png b/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_7.png deleted file mode 100644 index 20926e2c5a..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/frame.rsi/state_7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/full.png b/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/full.png deleted file mode 100644 index f1af4a09e4..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/meta.json b/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/meta.json deleted file mode 100644 index 0ebc40b814..0000000000 --- a/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/meta.json +++ /dev/null @@ -1,163 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/0b3ab17dbad632ddf738b63900ef8df1926bba47/icons/obj/tables.dmi", - "states": [ - { - "name": "full", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "state_0", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_1", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_2", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_3", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_4", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_5", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_6", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_7", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_0.png b/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_0.png deleted file mode 100644 index 9e50a5c8ce..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_1.png b/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_1.png deleted file mode 100644 index 9b3544b36c..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_2.png b/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_2.png deleted file mode 100644 index 9e50a5c8ce..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_3.png b/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_3.png deleted file mode 100644 index 9b3544b36c..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_4.png b/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_4.png deleted file mode 100644 index b3d91efd76..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_5.png b/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_5.png deleted file mode 100644 index 9c6be8485b..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_6.png b/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_6.png deleted file mode 100644 index b3d91efd76..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_7.png b/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_7.png deleted file mode 100644 index ec0803e869..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/generic.rsi/state_7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/full.png b/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/full.png deleted file mode 100644 index cbcbd3a3b1..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/meta.json b/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/meta.json deleted file mode 100644 index 0ebc40b814..0000000000 --- a/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/meta.json +++ /dev/null @@ -1,163 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/0b3ab17dbad632ddf738b63900ef8df1926bba47/icons/obj/tables.dmi", - "states": [ - { - "name": "full", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "state_0", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_1", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_2", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_3", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_4", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_5", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_6", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_7", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_0.png b/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_0.png deleted file mode 100644 index d8d134f0cf..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_1.png b/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_1.png deleted file mode 100644 index 4d979a5381..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_2.png b/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_2.png deleted file mode 100644 index d8d134f0cf..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_3.png b/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_3.png deleted file mode 100644 index 4d979a5381..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_4.png b/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_4.png deleted file mode 100644 index 7ba52d1dd5..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_5.png b/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_5.png deleted file mode 100644 index 16c34ffa59..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_6.png b/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_6.png deleted file mode 100644 index 7ba52d1dd5..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_7.png b/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_7.png deleted file mode 100644 index c2e924aaaf..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/glass.rsi/state_7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/full.png b/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/full.png deleted file mode 100644 index 7f999c5233..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/meta.json b/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/meta.json deleted file mode 100644 index 0ebc40b814..0000000000 --- a/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/meta.json +++ /dev/null @@ -1,163 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/0b3ab17dbad632ddf738b63900ef8df1926bba47/icons/obj/tables.dmi", - "states": [ - { - "name": "full", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "state_0", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_1", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_2", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_3", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_4", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_5", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_6", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_7", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_0.png b/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_0.png deleted file mode 100644 index 5ff4a7ceac..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_1.png b/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_1.png deleted file mode 100644 index dab25bc1cd..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_2.png b/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_2.png deleted file mode 100644 index 5ff4a7ceac..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_3.png b/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_3.png deleted file mode 100644 index dab25bc1cd..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_4.png b/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_4.png deleted file mode 100644 index 34d673b2ea..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_5.png b/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_5.png deleted file mode 100644 index 428050b93c..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_6.png b/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_6.png deleted file mode 100644 index 34d673b2ea..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_7.png b/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_7.png deleted file mode 100644 index aab0092a56..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/plasma.rsi/state_7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/full.png b/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/full.png deleted file mode 100644 index c8fe53dcef..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/meta.json b/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/meta.json deleted file mode 100644 index 0ebc40b814..0000000000 --- a/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/meta.json +++ /dev/null @@ -1,163 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/0b3ab17dbad632ddf738b63900ef8df1926bba47/icons/obj/tables.dmi", - "states": [ - { - "name": "full", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "state_0", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_1", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_2", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_3", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_4", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_5", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_6", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_7", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_0.png b/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_0.png deleted file mode 100644 index 45a10476b9..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_1.png b/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_1.png deleted file mode 100644 index 4a94a4dc54..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_2.png b/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_2.png deleted file mode 100644 index 45a10476b9..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_3.png b/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_3.png deleted file mode 100644 index 4a94a4dc54..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_4.png b/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_4.png deleted file mode 100644 index 324984a22d..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_5.png b/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_5.png deleted file mode 100644 index 320f94b8d0..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_6.png b/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_6.png deleted file mode 100644 index 324984a22d..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_7.png b/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_7.png deleted file mode 100644 index e0c96576ed..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/r_glass.rsi/state_7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/full.png b/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/full.png deleted file mode 100644 index 2f5453a7b1..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/meta.json b/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/meta.json deleted file mode 100644 index 0ebc40b814..0000000000 --- a/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/meta.json +++ /dev/null @@ -1,163 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/0b3ab17dbad632ddf738b63900ef8df1926bba47/icons/obj/tables.dmi", - "states": [ - { - "name": "full", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "state_0", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_1", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_2", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_3", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_4", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_5", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_6", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "state_7", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_0.png b/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_0.png deleted file mode 100644 index 404478af38..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_1.png b/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_1.png deleted file mode 100644 index c2d558e91e..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_2.png b/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_2.png deleted file mode 100644 index 404478af38..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_3.png b/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_3.png deleted file mode 100644 index c2d558e91e..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_4.png b/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_4.png deleted file mode 100644 index 3c95811c3f..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_5.png b/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_5.png deleted file mode 100644 index 52dd2156eb..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_6.png b/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_6.png deleted file mode 100644 index 3c95811c3f..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_7.png b/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_7.png deleted file mode 100644 index ec0803e869..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/reinforced.rsi/state_7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/full.png b/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/full.png deleted file mode 100644 index f530101571..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/meta.json b/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/meta.json deleted file mode 100644 index 667cf5efc1..0000000000 --- a/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/meta.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/a138859aec54b20dac65eb76e94e9db1b2202f55 and modified by Swept", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "full" - }, - { - "name": "state_0", - "directions": 4 - }, - { - "name": "state_1", - "directions": 4 - }, - { - "name": "state_2", - "directions": 4 - }, - { - "name": "state_3", - "directions": 4 - }, - { - "name": "state_4", - "directions": 4 - }, - { - "name": "state_5", - "directions": 4 - }, - { - "name": "state_6", - "directions": 4 - }, - { - "name": "state_7", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_0.png b/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_0.png deleted file mode 100644 index bb0f4224a0..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_1.png b/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_1.png deleted file mode 100644 index 8a6f7baebe..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_2.png b/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_2.png deleted file mode 100644 index bb0f4224a0..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_3.png b/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_3.png deleted file mode 100644 index 8a6f7baebe..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_4.png b/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_4.png deleted file mode 100644 index 7bceedeceb..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_5.png b/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_5.png deleted file mode 100644 index 74e8bba2aa..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_6.png b/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_6.png deleted file mode 100644 index 7bceedeceb..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_7.png b/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_7.png deleted file mode 100644 index cdb9916cca..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/Tables/wood.rsi/state_7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/base.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/base.png deleted file mode 100644 index ddcf2db336..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/base.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-0.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-0.png deleted file mode 100644 index 1e189caf15..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-1.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-1.png deleted file mode 100644 index 070eb14ca8..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-10.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-10.png deleted file mode 100644 index 12dbff0c47..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-10.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-11.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-11.png deleted file mode 100644 index 6d809a18f4..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-11.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-12.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-12.png deleted file mode 100644 index 9a7d4725f8..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-12.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-13.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-13.png deleted file mode 100644 index b5a2236e94..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-13.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-14.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-14.png deleted file mode 100644 index 87c2698758..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-14.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-15.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-15.png deleted file mode 100644 index 5a2ef1a6c4..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-15.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-16.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-16.png deleted file mode 100644 index 16abb0b943..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-16.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-17.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-17.png deleted file mode 100644 index 801563ffcb..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-17.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-18.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-18.png deleted file mode 100644 index 8a03273caf..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-18.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-19.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-19.png deleted file mode 100644 index a77135f91f..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-19.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-2.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-2.png deleted file mode 100644 index e1988246b1..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-20.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-20.png deleted file mode 100644 index 56193015d5..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-20.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-3.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-3.png deleted file mode 100644 index b75ab3368c..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-4.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-4.png deleted file mode 100644 index 4000078010..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-5.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-5.png deleted file mode 100644 index 9c861628b0..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-6.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-6.png deleted file mode 100644 index 2809b8eabb..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-7.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-7.png deleted file mode 100644 index 8f9d643199..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-8.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-8.png deleted file mode 100644 index a351a74451..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-8.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-9.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-9.png deleted file mode 100644 index ba308e4b21..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/book-9.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/empty.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/empty.png deleted file mode 100644 index 0745019b29..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/empty.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/meta.json b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/meta.json deleted file mode 100644 index 36b9f54246..0000000000 --- a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/meta.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/f777c8ddf7a529b002df17909566d5d93b8ad201 and edited by Gersoon", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "base" - }, - { - "name": "empty" - }, - { - "name": "smooth", - "directions": 4 - }, - { - "name": "book-0" - }, - { - "name": "book-1" - }, - { - "name": "book-2" - }, - { - "name": "book-3" - }, - { - "name": "book-4" - }, - { - "name": "book-5" - }, - { - "name": "book-6" - }, - { - "name": "book-7" - }, - { - "name": "book-8" - }, - { - "name": "book-9" - }, - { - "name": "book-10" - }, - { - "name": "book-11" - }, - { - "name": "book-12" - }, - { - "name": "book-13" - }, - { - "name": "book-14" - }, - { - "name": "book-15" - }, - { - "name": "book-16" - }, - { - "name": "book-17" - }, - { - "name": "book-18" - }, - { - "name": "book-19" - }, - { - "name": "book-20" - } - ] -} diff --git a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/smooth.png b/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/smooth.png deleted file mode 100644 index 7981de0534..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/bookshelf.rsi/smooth.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/chairs.rsi/meta.json b/Resources/Textures/_White/Structures/Furniture/chairs.rsi/meta.json deleted file mode 100644 index d3677016d9..0000000000 --- a/Resources/Textures/_White/Structures/Furniture/chairs.rsi/meta.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation and edited by Gersoon", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "wooden", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Structures/Furniture/chairs.rsi/wooden.png b/Resources/Textures/_White/Structures/Furniture/chairs.rsi/wooden.png deleted file mode 100644 index 2697951a39..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/chairs.rsi/wooden.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/furniture.rsi/dresser.png b/Resources/Textures/_White/Structures/Furniture/furniture.rsi/dresser.png deleted file mode 100644 index ef30e44439..0000000000 Binary files a/Resources/Textures/_White/Structures/Furniture/furniture.rsi/dresser.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Furniture/furniture.rsi/meta.json b/Resources/Textures/_White/Structures/Furniture/furniture.rsi/meta.json deleted file mode 100644 index 318994b25c..0000000000 --- a/Resources/Textures/_White/Structures/Furniture/furniture.rsi/meta.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Gersoon", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "dresser", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Structures/Holo/eng.rsi/icon.png b/Resources/Textures/_White/Structures/Holo/eng.rsi/icon.png deleted file mode 100644 index 3ba8e7de81..0000000000 Binary files a/Resources/Textures/_White/Structures/Holo/eng.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Holo/eng.rsi/meta.json b/Resources/Textures/_White/Structures/Holo/eng.rsi/meta.json deleted file mode 100644 index 3f6a6d86f5..0000000000 --- a/Resources/Textures/_White/Structures/Holo/eng.rsi/meta.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", - "states": [ - { - "name": "icon", - "delays": [ - [ - 0.3, - 0.3, - 0.3, - 0.3 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Machines/computers.rsi/detective_television.png b/Resources/Textures/_White/Structures/Machines/computers.rsi/detective_television.png deleted file mode 100644 index cdd33d50b0..0000000000 Binary files a/Resources/Textures/_White/Structures/Machines/computers.rsi/detective_television.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Machines/computers.rsi/meta.json b/Resources/Textures/_White/Structures/Machines/computers.rsi/meta.json deleted file mode 100644 index 6e031cfef6..0000000000 --- a/Resources/Textures/_White/Structures/Machines/computers.rsi/meta.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bd6873fd4dd6a61d7e46f1d75cd4d90f64c40894 and edited by Gersoon", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "television" - }, - { - "name": "television_broken" - }, - { - "name": "detective_television" - } - ] -} diff --git a/Resources/Textures/_White/Structures/Machines/computers.rsi/television.png b/Resources/Textures/_White/Structures/Machines/computers.rsi/television.png deleted file mode 100644 index ed285d0397..0000000000 Binary files a/Resources/Textures/_White/Structures/Machines/computers.rsi/television.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Machines/computers.rsi/television_broken.png b/Resources/Textures/_White/Structures/Machines/computers.rsi/television_broken.png deleted file mode 100644 index 3fa49adaa2..0000000000 Binary files a/Resources/Textures/_White/Structures/Machines/computers.rsi/television_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/draining.png b/Resources/Textures/_White/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/draining.png deleted file mode 100644 index 87ce5806aa..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/draining.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/icon-running.png b/Resources/Textures/_White/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/icon-running.png deleted file mode 100644 index 2273bfc9db..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/icon-running.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/icon.png b/Resources/Textures/_White/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/icon.png deleted file mode 100644 index 992a4af0c5..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/meta.json b/Resources/Textures/_White/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/meta.json deleted file mode 100644 index dc2d09cb57..0000000000 --- a/Resources/Textures/_White/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/meta.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a, and modified a bit by Rane", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-running", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "unlit-full" - }, - { - "name": "draining" - } - ] -} diff --git a/Resources/Textures/_White/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/unlit-full.png b/Resources/Textures/_White/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/unlit-full.png deleted file mode 100644 index 832d466993..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/unlit-full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/unlit.png b/Resources/Textures/_White/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/unlit.png deleted file mode 100644 index faf2e26cd8..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/Atmospherics/Portable/portable_scrubber.rsi/unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/Atmospherics/scrubber.rsi/meta.json b/Resources/Textures/_White/Structures/Piping/Atmospherics/scrubber.rsi/meta.json deleted file mode 100644 index 191aa398a9..0000000000 --- a/Resources/Textures/_White/Structures/Piping/Atmospherics/scrubber.rsi/meta.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "version":1, - "size":{ - "x":32, - "y":32 - }, - "license":"CC-BY-SA-3.0", - "copyright":"Taken from https://github.com/tgstation/tgstation at commit 57cd1d59ca019dd0e7811ac451f295f818e573da", - "states":[ - { - "name":"scrub_off", - "directions": 4 - }, - { - "name":"scrub_welded", - "directions": 4 - }, - { - "name":"scrub_on", - "directions": 4, - "delays": [[0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08], [0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08], [0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08], [0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08, 0.08]] - }, - { - "name": "scrub_purge", - "directions": 4, - "delays": [[0.2, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04], [0.2, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04], [0.2, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04], [0.2, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04]] - }, - { - "name": "scrub_wide", - "directions": 4, - "delays": [[0.2, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04], [0.2, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04], [0.2, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04], [0.2, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04]] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Piping/Atmospherics/scrubber.rsi/scrub_off.png b/Resources/Textures/_White/Structures/Piping/Atmospherics/scrubber.rsi/scrub_off.png deleted file mode 100644 index efc173d893..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/Atmospherics/scrubber.rsi/scrub_off.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/Atmospherics/scrubber.rsi/scrub_on.png b/Resources/Textures/_White/Structures/Piping/Atmospherics/scrubber.rsi/scrub_on.png deleted file mode 100644 index 9bc5d8c0bf..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/Atmospherics/scrubber.rsi/scrub_on.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/Atmospherics/scrubber.rsi/scrub_purge.png b/Resources/Textures/_White/Structures/Piping/Atmospherics/scrubber.rsi/scrub_purge.png deleted file mode 100644 index 75ba6d6de0..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/Atmospherics/scrubber.rsi/scrub_purge.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/Atmospherics/scrubber.rsi/scrub_welded.png b/Resources/Textures/_White/Structures/Piping/Atmospherics/scrubber.rsi/scrub_welded.png deleted file mode 100644 index 96ab7b0825..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/Atmospherics/scrubber.rsi/scrub_welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/Atmospherics/scrubber.rsi/scrub_wide.png b/Resources/Textures/_White/Structures/Piping/Atmospherics/scrubber.rsi/scrub_wide.png deleted file mode 100644 index 087777a888..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/Atmospherics/scrubber.rsi/scrub_wide.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/Atmospherics/vent.rsi/meta.json b/Resources/Textures/_White/Structures/Piping/Atmospherics/vent.rsi/meta.json deleted file mode 100644 index 0d11425210..0000000000 --- a/Resources/Textures/_White/Structures/Piping/Atmospherics/vent.rsi/meta.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "version":1, - "size":{ - "x":32, - "y":32 - }, - "license":"CC-BY-SA-3.0", - "copyright":"Taken from https://github.com/BeeStation/BeeStation-Hornet at commit 4ccd79de285e79e504308bcd6fa5908d6b7685f7", - "states":[ - { - "name":"vent_off", - "directions" : 4 - }, - { - "name":"vent_welded", - "directions" : 4 - }, - { - "name":"vent_out", - "directions" : 4, - "delays":[ [ 0.08, 0.08, 0.08, 0.08 ], [ 0.08, 0.08, 0.08, 0.08 ], [ 0.08, 0.08, 0.08, 0.08 ], [ 0.08, 0.08, 0.08, 0.08 ] ] - }, - { - "name":"vent_in", - "directions" : 4, - "delays":[ [ 0.08, 0.08, 0.08, 0.08 ], [ 0.08, 0.08, 0.08, 0.08 ], [ 0.08, 0.08, 0.08, 0.08 ], [ 0.08, 0.08, 0.08, 0.08 ] ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Piping/Atmospherics/vent.rsi/vent_in.png b/Resources/Textures/_White/Structures/Piping/Atmospherics/vent.rsi/vent_in.png deleted file mode 100644 index cf1b050c02..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/Atmospherics/vent.rsi/vent_in.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/Atmospherics/vent.rsi/vent_off.png b/Resources/Textures/_White/Structures/Piping/Atmospherics/vent.rsi/vent_off.png deleted file mode 100644 index 6208c59db7..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/Atmospherics/vent.rsi/vent_off.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/Atmospherics/vent.rsi/vent_out.png b/Resources/Textures/_White/Structures/Piping/Atmospherics/vent.rsi/vent_out.png deleted file mode 100644 index e038706b0e..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/Atmospherics/vent.rsi/vent_out.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/Atmospherics/vent.rsi/vent_welded.png b/Resources/Textures/_White/Structures/Piping/Atmospherics/vent.rsi/vent_welded.png deleted file mode 100644 index b45ae1cb5f..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/Atmospherics/vent.rsi/vent_welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/condisposal.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/condisposal.png deleted file mode 100644 index 4dfada706c..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/condisposal.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/conmailing.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/conmailing.png deleted file mode 100644 index 0dfa469e0e..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/conmailing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-c.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-c.png deleted file mode 100644 index 816f8f4b6e..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-c.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-j1.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-j1.png deleted file mode 100644 index 67a3f19f54..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-j1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-j1s.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-j1s.png deleted file mode 100644 index 6867afa599..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-j1s.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-j2.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-j2.png deleted file mode 100644 index 744974ebb1..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-j2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-j2s.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-j2s.png deleted file mode 100644 index 24cc445556..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-j2s.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-s.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-s.png deleted file mode 100644 index 9efe40f749..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-s.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-t.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-t.png deleted file mode 100644 index f9af2e5386..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-t.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-tagger.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-tagger.png deleted file mode 100644 index e1c4637244..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-tagger.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-y.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-y.png deleted file mode 100644 index 72379282dd..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/conpipe-y.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/disposal-charging.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/disposal-charging.png deleted file mode 100644 index 3d3839faf4..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/disposal-charging.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/disposal-flush.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/disposal-flush.png deleted file mode 100644 index aa1186005e..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/disposal-flush.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/disposal.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/disposal.png deleted file mode 100644 index 2f44be481a..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/disposal.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/dispover-charge.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/dispover-charge.png deleted file mode 100644 index 32195973bb..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/dispover-charge.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/dispover-full.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/dispover-full.png deleted file mode 100644 index d20e907766..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/dispover-full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/dispover-handle.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/dispover-handle.png deleted file mode 100644 index 5b2077bb4c..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/dispover-handle.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/dispover-ready.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/dispover-ready.png deleted file mode 100644 index 1dd29ead10..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/dispover-ready.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/intake-closing.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/intake-closing.png deleted file mode 100644 index b26dd2445e..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/intake-closing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/intake.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/intake.png deleted file mode 100644 index 735b4817d7..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/intake.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/mailing-charging.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/mailing-charging.png deleted file mode 100644 index bec83a4c5c..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/mailing-charging.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/mailing-flush.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/mailing-flush.png deleted file mode 100644 index 5cf4654016..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/mailing-flush.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/mailing.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/mailing.png deleted file mode 100644 index d51164e862..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/mailing.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/mailover-handle.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/mailover-handle.png deleted file mode 100644 index 3141edecb7..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/mailover-handle.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/meta.json b/Resources/Textures/_White/Structures/Piping/disposal.rsi/meta.json deleted file mode 100644 index 87655b6b86..0000000000 --- a/Resources/Textures/_White/Structures/Piping/disposal.rsi/meta.json +++ /dev/null @@ -1,904 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/blob/bbe32606902c90f5290b57d905a3f31b84dc6d7d/icons/obj/pipes/disposal.dmi and modified by DrSmugleaf. Signal router sprites based on normal router modified by deltanedas (github).", - "states": [ - { - "name": "condisposal", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "conmailing", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "conpipe-c", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "conpipe-j1", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "conpipe-j1s", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "conpipe-j2", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "conpipe-j2s", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "conpipe-s", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "conpipe-t", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "conpipe-tagger", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "conpipe-y", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "disposal", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "mailing", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "disposal-charging", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "mailing-charging", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "disposal-flush", - "directions": 1, - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.5, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "mailing-flush", - "directions": 1, - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.5, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "dispover-charge", - "directions": 1, - "delays": [ - [ - 0.4, - 0.4 - ] - ] - }, - { - "name": "dispover-full", - "directions": 1, - "delays": [ - [ - 0.2, - 0.2 - ] - ] - }, - { - "name": "dispover-handle", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "mailover-handle", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "dispover-ready", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] - }, - { - "name": "intake", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "intake-closing", - "directions": 4, - "delays": [ - [ - 0.5, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.5, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.5, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.5, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "outlet", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "outlet-open", - "directions": 4, - "delays": [ - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.1, - 1.5, - 0.1 - ], - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.1, - 1.5, - 0.1 - ], - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.1, - 1.5, - 0.1 - ], - [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.1, - 1.5, - 0.1 - ] - ] - }, - { - "name": "pipe-b", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "pipe-bf", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "pipe-c", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "pipe-cf", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "pipe-d", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "pipe-j1", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "pipe-j1f", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "pipe-j1s", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "pipe-j1sf", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "pipe-j2", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "pipe-j2f", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "pipe-j2s", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "pipe-j2sf", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "pipe-s", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "pipe-sf", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "pipe-t", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "pipe-tagger", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "pipe-tagger-partial", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "pipe-tf", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "pipe-u", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "pipe-y", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "pipe-yf", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "signal-router", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "signal-router-free", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "signal-router-flipped", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "signal-router-flipped-free", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/outlet-open.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/outlet-open.png deleted file mode 100644 index 7fb173d72a..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/outlet-open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/outlet.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/outlet.png deleted file mode 100644 index 8f7302551f..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/outlet.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-b.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-b.png deleted file mode 100644 index 9544c5ed20..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-b.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-bf.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-bf.png deleted file mode 100644 index cb954be2c9..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-bf.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-c.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-c.png deleted file mode 100644 index 13854be256..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-c.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-cf.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-cf.png deleted file mode 100644 index 3910b9de3a..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-cf.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-d.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-d.png deleted file mode 100644 index 6d0bb7a1d2..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-d.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j1.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j1.png deleted file mode 100644 index e2f49dc367..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j1f.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j1f.png deleted file mode 100644 index 4c200b6775..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j1f.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j1s.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j1s.png deleted file mode 100644 index 7ba4abd994..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j1s.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j1sf.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j1sf.png deleted file mode 100644 index b065f00d32..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j1sf.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j2.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j2.png deleted file mode 100644 index 6e5b15a7f1..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j2f.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j2f.png deleted file mode 100644 index 8c7c6d76de..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j2f.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j2s.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j2s.png deleted file mode 100644 index efec527bce..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j2s.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j2sf.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j2sf.png deleted file mode 100644 index 3a6812f8e3..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-j2sf.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-s.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-s.png deleted file mode 100644 index 1c6e7d9203..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-s.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-sf.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-sf.png deleted file mode 100644 index ef25a0dfc4..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-sf.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-t.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-t.png deleted file mode 100644 index 021d067b7b..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-t.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-tagger-partial.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-tagger-partial.png deleted file mode 100644 index 49ab4a3ad9..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-tagger-partial.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-tagger.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-tagger.png deleted file mode 100644 index ce48830a50..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-tagger.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-tf.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-tf.png deleted file mode 100644 index b5730c8a54..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-tf.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-u.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-u.png deleted file mode 100644 index 021d067b7b..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-u.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-y.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-y.png deleted file mode 100644 index 71b8e71f8f..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-y.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-yf.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-yf.png deleted file mode 100644 index a9e37dff62..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/pipe-yf.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/signal-router-flipped-free.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/signal-router-flipped-free.png deleted file mode 100644 index c8f27f8731..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/signal-router-flipped-free.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/signal-router-flipped.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/signal-router-flipped.png deleted file mode 100644 index 8ea007cf87..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/signal-router-flipped.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/signal-router-free.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/signal-router-free.png deleted file mode 100644 index 672aa5658d..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/signal-router-free.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Piping/disposal.rsi/signal-router.png b/Resources/Textures/_White/Structures/Piping/disposal.rsi/signal-router.png deleted file mode 100644 index 2c9d4dd682..0000000000 Binary files a/Resources/Textures/_White/Structures/Piping/disposal.rsi/signal-router.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/control.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/control.png deleted file mode 100644 index 2c1b6ff57c..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/control.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/control_critical.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/control_critical.png deleted file mode 100644 index f7c9b3e3c2..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/control_critical.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/control_fuck.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/control_fuck.png deleted file mode 100644 index 388c6478d6..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/control_fuck.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/control_on.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/control_on.png deleted file mode 100644 index 0a991ff963..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/control_on.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/control_warning.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/control_warning.png deleted file mode 100644 index 7f64302cdc..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/control_warning.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/core.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/core.png deleted file mode 100644 index 6110c84a84..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/core.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/core_strong.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/core_strong.png deleted file mode 100644 index 19707a8ad5..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/core_strong.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/core_weak.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/core_weak.png deleted file mode 100644 index 748de3ea91..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/core_weak.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/meta.json b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/meta.json deleted file mode 100644 index 391b7447f3..0000000000 --- a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/meta.json +++ /dev/null @@ -1,217 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "FrostyDev", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "shield_0" - }, - { - "name": "shield_1" - }, - { - "name": "shield_10" - }, - { - "name": "shield_11" - }, - { - "name": "shield_12" - }, - { - "name": "shield_13" - }, - { - "name": "shield_14" - }, - { - "name": "shield_15" - }, - { - "name": "shield_2" - }, - { - "name": "shield_3" - }, - { - "name": "shield_4" - }, - { - "name": "shield_5" - }, - { - "name": "shield_6" - }, - { - "name": "shield_7" - }, - { - "name": "shield_8" - }, - { - "name": "core" - }, - { - "name": "shield_9" - }, - { - "name": "core_weak", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "core_strong", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "control" - }, - { - "name": "static" - }, - { - "name": "control_warning", - "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 - ] - ] - }, - { - "name": "control_critical", - "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 - ] - ] - }, - { - "name": "control_fuck", - "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 - ] - ] - }, - { - "name": "control_on", - "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 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_0.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_0.png deleted file mode 100644 index a8fe6d1de2..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_1.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_1.png deleted file mode 100644 index 3807a41c11..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_10.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_10.png deleted file mode 100644 index ee900bb3a6..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_10.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_11.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_11.png deleted file mode 100644 index d3ef87f444..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_11.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_12.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_12.png deleted file mode 100644 index ce52c96d9b..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_12.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_13.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_13.png deleted file mode 100644 index f37b7c2e62..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_13.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_14.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_14.png deleted file mode 100644 index 1016aabb5f..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_14.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_15.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_15.png deleted file mode 100644 index a8fe6d1de2..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_15.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_2.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_2.png deleted file mode 100644 index 53bcf694c3..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_3.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_3.png deleted file mode 100644 index 4ac1325e8a..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_4.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_4.png deleted file mode 100644 index 1c07f92236..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_5.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_5.png deleted file mode 100644 index 45014483b6..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_6.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_6.png deleted file mode 100644 index b56519ec71..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_7.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_7.png deleted file mode 100644 index 1c2b41eced..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_8.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_8.png deleted file mode 100644 index 00bef3f896..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_8.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_9.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_9.png deleted file mode 100644 index 3009e25964..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/shield_9.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/static.png b/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/static.png deleted file mode 100644 index 2c1b6ff57c..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/ame.rsi/static.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/solar_panel.rsi/broken.png b/Resources/Textures/_White/Structures/Power/Generation/solar_panel.rsi/broken.png deleted file mode 100644 index a12fca0425..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/solar_panel.rsi/broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/solar_panel.rsi/meta.json b/Resources/Textures/_White/Structures/Power/Generation/solar_panel.rsi/meta.json deleted file mode 100644 index c76db66048..0000000000 --- a/Resources/Textures/_White/Structures/Power/Generation/solar_panel.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version":1, - "license":"CC-BY-SA-3.0", - "copyright":"FrostyDev", - "size":{"x":32,"y":32}, - "states": - [ - { - "name": "normal", - "select": [], - "flags": {}, - "directions": 8 - }, - { - "name": "broken", - "select": [], - "flags": {}, - "directions": 1 - }, - { - "name": "static" - }, - { - "name": "solar_assembly" - }, - { - "name": "solar_tracker" - } - ] -} diff --git a/Resources/Textures/_White/Structures/Power/Generation/solar_panel.rsi/normal.png b/Resources/Textures/_White/Structures/Power/Generation/solar_panel.rsi/normal.png deleted file mode 100644 index 21026d8d78..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/solar_panel.rsi/normal.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/solar_panel.rsi/solar_assembly.png b/Resources/Textures/_White/Structures/Power/Generation/solar_panel.rsi/solar_assembly.png deleted file mode 100644 index adb7bb3ff6..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/solar_panel.rsi/solar_assembly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/solar_panel.rsi/solar_tracker.png b/Resources/Textures/_White/Structures/Power/Generation/solar_panel.rsi/solar_tracker.png deleted file mode 100644 index c977194da2..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/solar_panel.rsi/solar_tracker.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/Generation/solar_panel.rsi/static.png b/Resources/Textures/_White/Structures/Power/Generation/solar_panel.rsi/static.png deleted file mode 100644 index 1bdecf5e91..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/Generation/solar_panel.rsi/static.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/base.png b/Resources/Textures/_White/Structures/Power/apc.rsi/base.png deleted file mode 100644 index 29ac8757c2..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/base.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/broken.png b/Resources/Textures/_White/Structures/Power/apc.rsi/broken.png deleted file mode 100644 index 9b7c7089e6..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/channel0-auto_off.png b/Resources/Textures/_White/Structures/Power/apc.rsi/channel0-auto_off.png deleted file mode 100644 index 0d181878fc..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/channel0-auto_off.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/channel0-auto_on.png b/Resources/Textures/_White/Structures/Power/apc.rsi/channel0-auto_on.png deleted file mode 100644 index c7a0d87ccc..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/channel0-auto_on.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/channel0-manual_off.png b/Resources/Textures/_White/Structures/Power/apc.rsi/channel0-manual_off.png deleted file mode 100644 index 4be0bbfb0b..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/channel0-manual_off.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/channel0-manual_on.png b/Resources/Textures/_White/Structures/Power/apc.rsi/channel0-manual_on.png deleted file mode 100644 index 720dc4976a..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/channel0-manual_on.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/channel1-auto_off.png b/Resources/Textures/_White/Structures/Power/apc.rsi/channel1-auto_off.png deleted file mode 100644 index 7f0a13a7a4..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/channel1-auto_off.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/channel1-auto_on.png b/Resources/Textures/_White/Structures/Power/apc.rsi/channel1-auto_on.png deleted file mode 100644 index 87191be520..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/channel1-auto_on.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/channel1-manual_off.png b/Resources/Textures/_White/Structures/Power/apc.rsi/channel1-manual_off.png deleted file mode 100644 index 031213f74a..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/channel1-manual_off.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/channel1-manual_on.png b/Resources/Textures/_White/Structures/Power/apc.rsi/channel1-manual_on.png deleted file mode 100644 index ac5f1c1bef..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/channel1-manual_on.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/channel2-auto_off.png b/Resources/Textures/_White/Structures/Power/apc.rsi/channel2-auto_off.png deleted file mode 100644 index ff8522d2c5..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/channel2-auto_off.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/channel2-auto_on.png b/Resources/Textures/_White/Structures/Power/apc.rsi/channel2-auto_on.png deleted file mode 100644 index 4e04387ed3..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/channel2-auto_on.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/channel2-manual_off.png b/Resources/Textures/_White/Structures/Power/apc.rsi/channel2-manual_off.png deleted file mode 100644 index 2f9802281e..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/channel2-manual_off.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/channel2-manual_on.png b/Resources/Textures/_White/Structures/Power/apc.rsi/channel2-manual_on.png deleted file mode 100644 index fb9e2180bb..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/channel2-manual_on.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/display-charging.png b/Resources/Textures/_White/Structures/Power/apc.rsi/display-charging.png deleted file mode 100644 index 3afe0fb52a..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/display-charging.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/display-full.png b/Resources/Textures/_White/Structures/Power/apc.rsi/display-full.png deleted file mode 100644 index cae98b8cdd..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/display-full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/display-lack.png b/Resources/Textures/_White/Structures/Power/apc.rsi/display-lack.png deleted file mode 100644 index 7e4fda9c33..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/display-lack.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/display-remote.png b/Resources/Textures/_White/Structures/Power/apc.rsi/display-remote.png deleted file mode 100644 index c57bced44f..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/display-remote.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/emag-unlit.png b/Resources/Textures/_White/Structures/Power/apc.rsi/emag-unlit.png deleted file mode 100644 index a1d8ca9da9..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/emag-unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/frame.png b/Resources/Textures/_White/Structures/Power/apc.rsi/frame.png deleted file mode 100644 index c8ea6446f4..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/frame.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/lock0-locked.png b/Resources/Textures/_White/Structures/Power/apc.rsi/lock0-locked.png deleted file mode 100644 index e8fb96f079..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/lock0-locked.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/lock0-unlocked.png b/Resources/Textures/_White/Structures/Power/apc.rsi/lock0-unlocked.png deleted file mode 100644 index dec67fcf76..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/lock0-unlocked.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/lock1-locked.png b/Resources/Textures/_White/Structures/Power/apc.rsi/lock1-locked.png deleted file mode 100644 index 8704413e8c..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/lock1-locked.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/lock1-unlocked.png b/Resources/Textures/_White/Structures/Power/apc.rsi/lock1-unlocked.png deleted file mode 100644 index d9268f28fc..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/lock1-unlocked.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/meta.json b/Resources/Textures/_White/Structures/Power/apc.rsi/meta.json deleted file mode 100644 index e9907f166b..0000000000 --- a/Resources/Textures/_White/Structures/Power/apc.rsi/meta.json +++ /dev/null @@ -1,234 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from CEV-Eris and edited by Gersoon", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "base" - }, - { - "name": "broken" - }, - { - "name": "frame" - }, - { - "name": "panel" - }, - { - "name": "lock0-unlocked" - }, - { - "name": "lock0-locked" - }, - { - "name": "lock1-unlocked" - }, - { - "name": "lock1-locked" - }, - { - "name": "channel0-auto_off" - }, - { - "name": "channel0-manual_off" - }, - { - "name": "channel0-auto_on" - }, - { - "name": "channel0-manual_on" - }, - { - "name": "channel1-auto_off" - }, - { - "name": "channel1-manual_off" - }, - { - "name": "channel1-auto_on" - }, - { - "name": "channel1-manual_on" - }, - { - "name": "channel2-auto_off" - }, - { - "name": "channel2-manual_off" - }, - { - "name": "channel2-auto_on" - }, - { - "name": "channel2-manual_on" - }, - { - "name": "display-lack", - "delays": [ - [ - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 1, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.5, - 0.7, - 0.7, - 0.7, - 0.7, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 1, - 2 - ] - ] - }, - { - "name": "display-charging", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "display-full", - "delays": [ - [ - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 1, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.5, - 0.7, - 0.7, - 0.7, - 0.7, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 1, - 2 - ] - ] - }, - { - "name": "display-remote", - "delays": [ - [ - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 1, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.5, - 0.7, - 0.7, - 0.7, - 0.7, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 1, - 2 - ] - ] - }, - { - "name": "emag-unlit", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "sparks-unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/panel.png b/Resources/Textures/_White/Structures/Power/apc.rsi/panel.png deleted file mode 100644 index 712e7d15ee..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/panel.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Power/apc.rsi/sparks-unlit.png b/Resources/Textures/_White/Structures/Power/apc.rsi/sparks-unlit.png deleted file mode 100644 index 3ca9c9416c..0000000000 Binary files a/Resources/Textures/_White/Structures/Power/apc.rsi/sparks-unlit.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/black-1.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/black-1.png deleted file mode 100644 index 634e4a5cef..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/black-1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/black.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/black.png deleted file mode 100644 index 8fdda08039..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/black.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/blue-1.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/blue-1.png deleted file mode 100644 index a91fee8b9b..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/blue-1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/blue.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/blue.png deleted file mode 100644 index 815035d313..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/blue.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/can-connector.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/can-connector.png deleted file mode 100644 index 5e072729eb..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/can-connector.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/can-o0.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/can-o0.png deleted file mode 100644 index 6f8eecad72..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/can-o0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/can-o1.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/can-o1.png deleted file mode 100644 index 087193266b..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/can-o1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/can-o2.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/can-o2.png deleted file mode 100644 index c9fcc6c22c..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/can-o2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/can-o3.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/can-o3.png deleted file mode 100644 index ee96a3f4e5..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/can-o3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/can-oa1.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/can-oa1.png deleted file mode 100644 index d4ac98cbbd..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/can-oa1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/can-open.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/can-open.png deleted file mode 100644 index edce30a7e6..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/can-open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/darkblue-1.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/darkblue-1.png deleted file mode 100644 index 10902595db..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/darkblue-1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/darkblue.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/darkblue.png deleted file mode 100644 index e54b882c9d..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/darkblue.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/frezon-1.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/frezon-1.png deleted file mode 100644 index 46dc9743ff..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/frezon-1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/frezon.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/frezon.png deleted file mode 100644 index 467fd7a108..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/frezon.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/green-1.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/green-1.png deleted file mode 100644 index b0af7b90a1..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/green-1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/green.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/green.png deleted file mode 100644 index 056e879e0c..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/green.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/greenys-1.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/greenys-1.png deleted file mode 100644 index 913eb3a918..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/greenys-1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/greenys.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/greenys.png deleted file mode 100644 index 7cccdf1829..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/greenys.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/grey-1.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/grey-1.png deleted file mode 100644 index 52bcfb60eb..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/grey-1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/grey.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/grey.png deleted file mode 100644 index 378bceee1f..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/grey.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/locked.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/locked.png deleted file mode 100644 index bb19fb4482..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/locked.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/meta.json b/Resources/Textures/_White/Structures/Storage/canister.rsi/meta.json deleted file mode 100644 index 72d7527fca..0000000000 --- a/Resources/Textures/_White/Structures/Storage/canister.rsi/meta.json +++ /dev/null @@ -1,188 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Omsoyk for WWDP", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "black" - }, - { - "name": "black-1" - }, - { - "name": "blue" - }, - { - "name": "blue-1" - }, - { - "name": "can-connector" - }, - { - "name": "locked" - }, - { - "name": "unlocked" - }, - { - "name": "can-o0", - "delays": [ - [ - 0.2, - 0.2 - ] - ] - }, - { - "name": "can-o1" - }, - { - "name": "can-o2" - }, - { - "name": "can-o3" - }, - { - "name": "can-oa1" - }, - { - "name": "can-open" - }, - { - "name": "grey" - }, - { - "name": "grey-1" - }, - { - "name": "orange" - }, - { - "name": "orange-1" - }, - { - "name": "red" - }, - { - "name": "red-1" - }, - { - "name": "redws" - }, - { - "name": "redws-1" - }, - { - "name": "yellow" - }, - { - "name": "yellow-1" - }, - { - "name": "green" - }, - { - "name": "green-1" - }, - { - "name": "greenys" - }, - { - "name": "greenys-1" - }, - { - "name": "darkblue" - }, - { - "name": "darkblue-1" - }, - { - "name": "frezon" - }, - { - "name": "frezon-1" - }, - { - "name": "water_vapor" - }, - { - "name": "water_vapor-1" - }, - { - "name": "scrubber-connector" - }, - { - "name": "scrubber-open" - }, - { - "name": "brown" - }, - { - "name": "brown-1" - }, - { - "name": "purple" - }, - { - "name": "purple-1" - }, - { - "name": "helium" - }, - { - "name": "helium-1" - }, - { - "name": "nob" - }, - { - "name": "nob-1" - }, - { - "name": "healium" - }, - { - "name": "healium-1" - }, - { - "name": "proto_nitrate" - }, - { - "name": "proto_nitrate-1" - }, - { - "name": "halon" - }, - { - "name": "halon-1" - }, - { - "name": "darkpurple" - }, - { - "name": "darkpurple-1" - }, - { - "name": "antinob" - }, - { - "name": "antinob-1" - }, - { - "name": "h2" - }, - { - "name": "h2-1" - }, - { - "name": "zauker" - }, - { - "name": "zauker-1" - } - ] -} diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/orange-1.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/orange-1.png deleted file mode 100644 index c4617f0bc1..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/orange-1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/orange.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/orange.png deleted file mode 100644 index adbd5397a5..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/orange.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/red-1.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/red-1.png deleted file mode 100644 index 15bc2fa322..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/red-1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/red.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/red.png deleted file mode 100644 index 9780f27662..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/red.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/redws-1.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/redws-1.png deleted file mode 100644 index 97b4dd6ec9..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/redws-1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/redws.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/redws.png deleted file mode 100644 index 8c1c0261b5..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/redws.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/scrubber-connector.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/scrubber-connector.png deleted file mode 100644 index 261bbdb340..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/scrubber-connector.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/scrubber-open.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/scrubber-open.png deleted file mode 100644 index 4eb9d1e708..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/scrubber-open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/unlocked.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/unlocked.png deleted file mode 100644 index 5cd585307a..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/unlocked.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/water_vapor-1.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/water_vapor-1.png deleted file mode 100644 index a6b6ad69f5..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/water_vapor-1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/water_vapor.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/water_vapor.png deleted file mode 100644 index feae2da892..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/water_vapor.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/yellow-1.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/yellow-1.png deleted file mode 100644 index 1ab44ae259..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/yellow-1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/canister.rsi/yellow.png b/Resources/Textures/_White/Structures/Storage/canister.rsi/yellow.png deleted file mode 100644 index 66df902d3e..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/canister.rsi/yellow.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/closet.rsi/cabinet.png b/Resources/Textures/_White/Structures/Storage/closet.rsi/cabinet.png deleted file mode 100644 index 471fb3f601..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/closet.rsi/cabinet.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/closet.rsi/cabinet_door.png b/Resources/Textures/_White/Structures/Storage/closet.rsi/cabinet_door.png deleted file mode 100644 index c6dd42ab55..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/closet.rsi/cabinet_door.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/closet.rsi/cabinet_open.png b/Resources/Textures/_White/Structures/Storage/closet.rsi/cabinet_open.png deleted file mode 100644 index 40f609bae5..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/closet.rsi/cabinet_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/closet.rsi/generic.png b/Resources/Textures/_White/Structures/Storage/closet.rsi/generic.png deleted file mode 100644 index cd0c0ff2ea..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/closet.rsi/generic.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/closet.rsi/generic_door.png b/Resources/Textures/_White/Structures/Storage/closet.rsi/generic_door.png deleted file mode 100644 index 2649852777..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/closet.rsi/generic_door.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/closet.rsi/locked.png b/Resources/Textures/_White/Structures/Storage/closet.rsi/locked.png deleted file mode 100644 index d90218d19e..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/closet.rsi/locked.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/closet.rsi/meta.json b/Resources/Textures/_White/Structures/Storage/closet.rsi/meta.json deleted file mode 100644 index 96520e3072..0000000000 --- a/Resources/Textures/_White/Structures/Storage/closet.rsi/meta.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "copyright": "Taken from tgstation and edited by Gersoon", - "license": "CC-BY-SA-3.0", - "states": [ - { - "name": "cabinet" - }, - { - "name": "cabinet_door" - }, - { - "name": "cabinet_open" - }, - { - "name": "locked" - }, - { - "name": "unlocked" - }, - { - "name": "welded" - }, - { - "name": "generic" - }, - { - "name": "generic_door" - } - ] -} diff --git a/Resources/Textures/_White/Structures/Storage/closet.rsi/unlocked.png b/Resources/Textures/_White/Structures/Storage/closet.rsi/unlocked.png deleted file mode 100644 index 418607bfaf..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/closet.rsi/unlocked.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/closet.rsi/welded.png b/Resources/Textures/_White/Structures/Storage/closet.rsi/welded.png deleted file mode 100644 index 5ba5dcc896..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/closet.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/suit_storage.rsi/base.png b/Resources/Textures/_White/Structures/Storage/suit_storage.rsi/base.png deleted file mode 100644 index 5171b03f46..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/suit_storage.rsi/base.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/suit_storage.rsi/door.png b/Resources/Textures/_White/Structures/Storage/suit_storage.rsi/door.png deleted file mode 100644 index e2d18e4eb4..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/suit_storage.rsi/door.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/suit_storage.rsi/locked.png b/Resources/Textures/_White/Structures/Storage/suit_storage.rsi/locked.png deleted file mode 100644 index 40b036a2e5..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/suit_storage.rsi/locked.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/suit_storage.rsi/meta.json b/Resources/Textures/_White/Structures/Storage/suit_storage.rsi/meta.json deleted file mode 100644 index 561b5678da..0000000000 --- a/Resources/Textures/_White/Structures/Storage/suit_storage.rsi/meta.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from /tg/station commit https://github.com/tgstation/tgstation/commit/af7b7043df593807f7a98b7a07880d7a977cda14 and resprited by Alekshhh, welded state drawn by Flareguy for Space Station 14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "base" - }, - { - "name": "door" - }, - { - "name": "unlocked" - }, - { - "name": "locked" - }, - { - "name": "panel" - }, - { - "name": "welded" - } - ] -} diff --git a/Resources/Textures/_White/Structures/Storage/suit_storage.rsi/panel.png b/Resources/Textures/_White/Structures/Storage/suit_storage.rsi/panel.png deleted file mode 100644 index 7c4ef0d075..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/suit_storage.rsi/panel.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/suit_storage.rsi/unlocked.png b/Resources/Textures/_White/Structures/Storage/suit_storage.rsi/unlocked.png deleted file mode 100644 index cb906e3cb2..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/suit_storage.rsi/unlocked.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/suit_storage.rsi/welded.png b/Resources/Textures/_White/Structures/Storage/suit_storage.rsi/welded.png deleted file mode 100644 index d8e0281ebb..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/suit_storage.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/atmos_door.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/atmos_door.png deleted file mode 100644 index 673ff2736a..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/atmos_door.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/black_door.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/black_door.png deleted file mode 100644 index 1a29724165..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/black_door.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/blue_door.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/blue_door.png deleted file mode 100644 index 163d9befe6..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/blue_door.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/emergency.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/emergency.png deleted file mode 100644 index 1bd0e3d1bd..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/emergency.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/emergency_door.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/emergency_door.png deleted file mode 100644 index 9a0dcbd874..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/emergency_door.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/emergency_open.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/emergency_open.png deleted file mode 100644 index 81c00f85e5..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/emergency_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/fire.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/fire.png deleted file mode 100644 index d51cd0bfe2..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/fire.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/fire_door.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/fire_door.png deleted file mode 100644 index bb7b6e9d58..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/fire_door.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/fire_open.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/fire_open.png deleted file mode 100644 index ee2b7cfea1..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/fire_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/generic.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/generic.png deleted file mode 100644 index c3607015d3..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/generic.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/generic_door.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/generic_door.png deleted file mode 100644 index 1e8326a743..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/generic_door.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/generic_icon.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/generic_icon.png deleted file mode 100644 index 63e9dcb0fa..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/generic_icon.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/generic_open.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/generic_open.png deleted file mode 100644 index 83448e47e6..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/generic_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/gray_door.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/gray_door.png deleted file mode 100644 index 182f28f1a4..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/gray_door.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/green_door.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/green_door.png deleted file mode 100644 index 51b2ea29d1..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/green_door.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/locked.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/locked.png deleted file mode 100644 index 579d46f069..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/locked.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/med.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/med.png deleted file mode 100644 index 07367feddc..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/med.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/med_door.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/med_door.png deleted file mode 100644 index 1c810b64b5..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/med_door.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/med_open.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/med_open.png deleted file mode 100644 index 70044b48d2..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/med_open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/meta.json b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/meta.json deleted file mode 100644 index b6ed63c7a3..0000000000 --- a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/meta.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from shiptest at commmit https://github.com/shiptest-ss13/Shiptest/commit/440a15fb476a20d77ba28c1fe315c1b659032ce8, edited by Alekshhh", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { "name": "atmos_door" }, - { "name": "black_door" }, - { "name": "blue_door" }, - { "name": "emergency" }, - { "name": "emergency_door" }, - { "name": "emergency_open" }, - { "name": "fire" }, - { "name": "fire_door" }, - { "name": "fire_open" }, - { "name": "generic" }, - { "name": "generic_door" }, - { "name": "generic_icon" }, - { "name": "generic_open" }, - { "name": "gray_door" }, - { "name": "green_door" }, - { "name": "locked" }, - { "name": "med" }, - { "name": "med_door" }, - { "name": "med_open" }, - { "name": "mixed_door" }, - { "name": "orange_door" }, - { "name": "pink_door" }, - { "name": "red_door" }, - { "name": "unlocked" }, - { "name": "welded" }, - { "name": "white_door" }, - { "name": "yellow_door" } - ] -} diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/mixed_door.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/mixed_door.png deleted file mode 100644 index 25c245e59a..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/mixed_door.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/orange_door.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/orange_door.png deleted file mode 100644 index d205dbcd1d..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/orange_door.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/pink_door.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/pink_door.png deleted file mode 100644 index 62e15b974f..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/pink_door.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/red_door.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/red_door.png deleted file mode 100644 index f301ca42f5..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/red_door.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/unlocked.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/unlocked.png deleted file mode 100644 index fc0dcdb23d..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/unlocked.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/welded.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/welded.png deleted file mode 100644 index 355d7fa0cb..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/white_door.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/white_door.png deleted file mode 100644 index e731b577e7..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/white_door.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/yellow_door.png b/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/yellow_door.png deleted file mode 100644 index c9ccbeca29..0000000000 Binary files a/Resources/Textures/_White/Structures/Storage/wall_locker.rsi/yellow_door.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/defib_cabinet.rsi/closed.png b/Resources/Textures/_White/Structures/Wallmounts/defib_cabinet.rsi/closed.png deleted file mode 100644 index 27a1e9b3a4..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/defib_cabinet.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/defib_cabinet.rsi/fill.png b/Resources/Textures/_White/Structures/Wallmounts/defib_cabinet.rsi/fill.png deleted file mode 100644 index ccc4449166..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/defib_cabinet.rsi/fill.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/defib_cabinet.rsi/frame.png b/Resources/Textures/_White/Structures/Wallmounts/defib_cabinet.rsi/frame.png deleted file mode 100644 index aeec87297d..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/defib_cabinet.rsi/frame.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/defib_cabinet.rsi/meta.json b/Resources/Textures/_White/Structures/Wallmounts/defib_cabinet.rsi/meta.json deleted file mode 100644 index 0c3d2e1302..0000000000 --- a/Resources/Textures/_White/Structures/Wallmounts/defib_cabinet.rsi/meta.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Gersoon based on sprite from Skyrat", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "closed" - }, - { - "name": "fill" - }, - { - "name": "frame" - }, - { - "name": "open" - } - ] -} diff --git a/Resources/Textures/_White/Structures/Wallmounts/defib_cabinet.rsi/open.png b/Resources/Textures/_White/Structures/Wallmounts/defib_cabinet.rsi/open.png deleted file mode 100644 index 8bcfa89251..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/defib_cabinet.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/closed.png b/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/closed.png deleted file mode 100644 index e8f2263461..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher-mini.png b/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher-mini.png deleted file mode 100644 index c7549a8af1..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher-mini.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher.png b/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher.png deleted file mode 100644 index f7771a009c..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_closed.png b/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_closed.png deleted file mode 100644 index 2a3fc70072..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_closed.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_empty.png b/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_empty.png deleted file mode 100644 index 2dda925792..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_empty.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_full.png b/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_full.png deleted file mode 100644 index 2965af0872..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_mini.png b/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_mini.png deleted file mode 100644 index b397135646..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/extinguisher_mini.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/frame.png b/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/frame.png deleted file mode 100644 index a3c89417c3..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/frame.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/meta.json b/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/meta.json deleted file mode 100644 index bbd22e7cc9..0000000000 --- a/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/meta.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Taken from Skyrat", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "extinguisher_closed" - }, - { - "name": "extinguisher_empty" - }, - { - "name": "extinguisher_full" - }, - { - "name": "extinguisher_mini" - }, - { - "name": "closed" - }, - { - "name": "extinguisher" - }, - { - "name": "extinguisher-mini" - }, - { - "name": "frame" - }, - { - "name": "open" - } - ] -} diff --git a/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/open.png b/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/open.png deleted file mode 100644 index d07e73d516..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/extinguisher_cabinet.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/flatscreentv.rsi/meta.json b/Resources/Textures/_White/Structures/Wallmounts/flatscreentv.rsi/meta.json deleted file mode 100644 index 287e62a77b..0000000000 --- a/Resources/Textures/_White/Structures/Wallmounts/flatscreentv.rsi/meta.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Gersoon", - "size": { - "x": 64, - "y": 32 - }, - "states": [ - { - "name": "television_wall" - }, - { - "name": "television_wall_off", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "television_wallbroken" - }, - { - "name": "television_wallscreen", - "delays": [ - [ - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Wallmounts/flatscreentv.rsi/television_wall.png b/Resources/Textures/_White/Structures/Wallmounts/flatscreentv.rsi/television_wall.png deleted file mode 100644 index 088971dbe9..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/flatscreentv.rsi/television_wall.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/flatscreentv.rsi/television_wall_off.png b/Resources/Textures/_White/Structures/Wallmounts/flatscreentv.rsi/television_wall_off.png deleted file mode 100644 index 4adc1905d4..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/flatscreentv.rsi/television_wall_off.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/flatscreentv.rsi/television_wallbroken.png b/Resources/Textures/_White/Structures/Wallmounts/flatscreentv.rsi/television_wallbroken.png deleted file mode 100644 index 35c51f62f4..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/flatscreentv.rsi/television_wallbroken.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/flatscreentv.rsi/television_wallscreen.png b/Resources/Textures/_White/Structures/Wallmounts/flatscreentv.rsi/television_wallscreen.png deleted file mode 100644 index 73fce9c8b6..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/flatscreentv.rsi/television_wallscreen.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/locked_switch.rsi/base.png b/Resources/Textures/_White/Structures/Wallmounts/locked_switch.rsi/base.png deleted file mode 100644 index 5686e219a0..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/locked_switch.rsi/base.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/locked_switch.rsi/locked.png b/Resources/Textures/_White/Structures/Wallmounts/locked_switch.rsi/locked.png deleted file mode 100644 index 129727f625..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/locked_switch.rsi/locked.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/locked_switch.rsi/meta.json b/Resources/Textures/_White/Structures/Wallmounts/locked_switch.rsi/meta.json deleted file mode 100644 index 045c69581c..0000000000 --- a/Resources/Textures/_White/Structures/Wallmounts/locked_switch.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Gersoon based on sprite from Skyrat", - "states": [ - { - "name": "base", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "locked", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "unlocked", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Wallmounts/locked_switch.rsi/unlocked.png b/Resources/Textures/_White/Structures/Wallmounts/locked_switch.rsi/unlocked.png deleted file mode 100644 index c1f6845844..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/locked_switch.rsi/unlocked.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/ai.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/ai.png deleted file mode 100644 index 5af073007c..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/ai.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/anomaly.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/anomaly.png deleted file mode 100644 index d2fddaab61..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/anomaly.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/anomaly2.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/anomaly2.png deleted file mode 100644 index 4aae0be536..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/anomaly2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/arcade.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/arcade.png deleted file mode 100644 index b6ec7ca3d3..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/arcade.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/armory.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/armory.png deleted file mode 100644 index 7933d46d39..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/armory.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/ass.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/ass.png deleted file mode 100644 index ea1b2773d4..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/ass.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/atmos.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/atmos.png deleted file mode 100644 index 6b4e590d0f..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/atmos.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/bar.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/bar.png deleted file mode 100644 index 7d12b55b27..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/bar.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/barbershop.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/barbershop.png deleted file mode 100644 index be961370c1..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/barbershop.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/biblio.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/biblio.png deleted file mode 100644 index 0bf97ab83b..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/biblio.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/bridge.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/bridge.png deleted file mode 100644 index 2a6c605ecd..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/bridge.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/canisters.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/canisters.png deleted file mode 100644 index 426717c53e..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/canisters.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/cargo.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/cargo.png deleted file mode 100644 index 2b882df631..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/cargo.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/cargo_dock.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/cargo_dock.png deleted file mode 100644 index b77ad562bf..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/cargo_dock.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/chapel.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/chapel.png deleted file mode 100644 index 4ecdbaf0b7..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/chapel.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/kpp.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/check.png similarity index 100% rename from Resources/Textures/_White/Structures/Wallmounts/signs.rsi/kpp.png rename to Resources/Textures/_White/Structures/Wallmounts/signs.rsi/check.png diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/chem.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/chem.png deleted file mode 100644 index d95657df36..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/chem.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/cloning.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/cloning.png deleted file mode 100644 index 5a13e043b0..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/cloning.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/commander.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/commander.png deleted file mode 100644 index 5e2efb0195..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/commander.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/conference_room.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/conference_room.png deleted file mode 100644 index ece09af2d4..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/conference_room.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/court.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/court.png deleted file mode 100644 index 9e01c46afd..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/court.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/deathsposal.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/deathsposal.png deleted file mode 100644 index 19bb2f1043..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/deathsposal.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/dock.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/dock.png deleted file mode 100644 index 2518badd61..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/dock.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/doors.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/doors.png deleted file mode 100644 index 102261a6c4..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/doors.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/drones.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/drones.png deleted file mode 100644 index 4e1e451845..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/drones.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/eng.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/eng.png deleted file mode 100644 index 1dbf6cb83f..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/eng.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/engine.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/engine.png deleted file mode 100644 index 3574da9ec9..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/engine.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/eva.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/eva.png deleted file mode 100644 index 16fd8b4aba..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/eva.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/examroom.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/examroom.png deleted file mode 100644 index 37ef973fe4..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/examroom.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/gravi.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/gravi.png deleted file mode 100644 index 5976f4ffc5..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/gravi.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/interrogation.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/interrogation.png deleted file mode 100644 index 07b412b44d..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/interrogation.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/janitor.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/janitor.png deleted file mode 100644 index bf791fd392..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/janitor.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/laundromat.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/laundromat.png deleted file mode 100644 index 511c15e25c..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/laundromat.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/law.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/law.png deleted file mode 100644 index 76a849f105..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/law.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/mail.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/mail.png deleted file mode 100644 index a0995b441e..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/mail.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/medbay.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/medbay.png deleted file mode 100644 index 92e9236d9c..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/medbay.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/meta.json b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/meta.json index e0827885b7..749153f8c1 100644 --- a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/meta.json +++ b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/meta.json @@ -4,17 +4,9 @@ "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from CEV-Eris and edited by Gersoon", + "license": "CC-BY-SA-4.0", + "copyright": "Taken from CEV-Eris and edited by Gersoon. Directional taken from ss13", "states": [ - { - "name": "ai", - "delays": [ - [ - 1 - ] - ] - }, { "name": "ame", "delays": [ @@ -23,38 +15,6 @@ ] ] }, - { - "name": "anomaly", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "anomaly2", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "arcade", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "armory", - "delays": [ - [ - 1 - ] - ] - }, { "name": "arrivals", "delays": [ @@ -63,46 +23,6 @@ ] ] }, - { - "name": "barbershop", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "ass", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "atmos", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "bar", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "biblio", - "delays": [ - [ - 1 - ] - ] - }, { "name": "boxing", "delays": [ @@ -111,14 +31,6 @@ ] ] }, - { - "name": "bridge", - "delays": [ - [ - 1 - ] - ] - }, { "name": "brig", "delays": [ @@ -127,14 +39,6 @@ ] ] }, - { - "name": "canisters", - "delays": [ - [ - 1 - ] - ] - }, { "name": "captain", "delays": [ @@ -143,70 +47,6 @@ ] ] }, - { - "name": "cargo", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "cargo_dock", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "chapel", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "chem", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "cloning", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "commander", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "conference_room", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "court", - "delays": [ - [ - 1 - ] - ] - }, { "name": "cryo", "delays": [ @@ -215,30 +55,6 @@ ] ] }, - { - "name": "deathsposal", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "dock", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "doors", - "delays": [ - [ - 1 - ] - ] - }, { "name": "dorms", "delays": [ @@ -247,30 +63,6 @@ ] ] }, - { - "name": "drones", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "eng", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "engine", - "delays": [ - [ - 1 - ] - ] - }, { "name": "equip", "delays": [ @@ -279,14 +71,6 @@ ] ] }, - { - "name": "eva", - "delays": [ - [ - 1 - ] - ] - }, { "name": "evac", "delays": [ @@ -295,14 +79,6 @@ ] ] }, - { - "name": "examroom", - "delays": [ - [ - 1 - ] - ] - }, { "name": "genetics", "delays": [ @@ -311,14 +87,6 @@ ] ] }, - { - "name": "gravi", - "delays": [ - [ - 1 - ] - ] - }, { "name": "gate", "delays": [ @@ -343,22 +111,6 @@ ] ] }, - { - "name": "interrogation", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "janitor", - "delays": [ - [ - 1 - ] - ] - }, { "name": "kitchen", "delays": [ @@ -368,63 +120,7 @@ ] }, { - "name": "kpp", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "laundromat", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "law", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "mail", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "medbay", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "miner_dock", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "morgue", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "news", + "name": "check", "delays": [ [ 1 @@ -447,14 +143,6 @@ ] ] }, - { - "name": "pods", - "delays": [ - [ - 1 - ] - ] - }, { "name": "smes", "delays": [ @@ -463,78 +151,6 @@ ] ] }, - { - "name": "prison", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "psychology", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "reception", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "rnd", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "robo", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "salvage", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "sci", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "security", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "shield", - "delays": [ - [ - 1 - ] - ] - }, { "name": "solar", "delays": [ @@ -543,14 +159,6 @@ ] ] }, - { - "name": "space", - "delays": [ - [ - 1 - ] - ] - }, { "name": "storage", "delays": [ @@ -559,22 +167,6 @@ ] ] }, - { - "name": "surgery", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "telecoms", - "delays": [ - [ - 1 - ] - ] - }, { "name": "theatre", "delays": [ @@ -590,46 +182,6 @@ 1 ] ] - }, - { - "name": "toxins", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "toxins2", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "virology", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "xenolab", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "zomlab", - "delays": [ - [ - 1 - ] - ] } ] -} +} \ No newline at end of file diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/miner_dock.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/miner_dock.png deleted file mode 100644 index 491de8cc6f..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/miner_dock.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/morgue.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/morgue.png deleted file mode 100644 index eb10eb8e55..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/morgue.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/news.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/news.png deleted file mode 100644 index 14a2a6f832..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/news.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/pods.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/pods.png deleted file mode 100644 index b311266d6f..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/pods.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/prison.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/prison.png deleted file mode 100644 index 87973c1f8a..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/prison.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/psychology.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/psychology.png deleted file mode 100644 index ba469b9031..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/psychology.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/reception.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/reception.png deleted file mode 100644 index 6eb6005345..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/reception.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/rnd.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/rnd.png deleted file mode 100644 index 2b7c871630..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/rnd.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/robo.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/robo.png deleted file mode 100644 index 95542430e2..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/robo.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/salvage.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/salvage.png deleted file mode 100644 index 432a9be049..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/salvage.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/sci.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/sci.png deleted file mode 100644 index 37c91a865f..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/sci.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/security.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/security.png deleted file mode 100644 index d652a03d8e..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/security.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/shield.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/shield.png deleted file mode 100644 index 914d9da132..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/shield.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/space.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/space.png deleted file mode 100644 index 981b9132da..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/space.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/surgery.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/surgery.png deleted file mode 100644 index e3351038f5..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/surgery.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/telecoms.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/telecoms.png deleted file mode 100644 index ac8aa75eb0..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/telecoms.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/toxins.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/toxins.png deleted file mode 100644 index 25412af5f1..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/toxins.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/toxins2.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/toxins2.png deleted file mode 100644 index c5bc868816..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/toxins2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/virology.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/virology.png deleted file mode 100644 index a6bd26cd5f..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/virology.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/xenolab.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/xenolab.png deleted file mode 100644 index bfc49cda34..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/xenolab.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/zomlab.png b/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/zomlab.png deleted file mode 100644 index cad67d6879..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/signs.rsi/zomlab.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/switch.rsi/dead.png b/Resources/Textures/_White/Structures/Wallmounts/switch.rsi/dead.png deleted file mode 100644 index 74b90b26c3..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/switch.rsi/dead.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/switch.rsi/meta.json b/Resources/Textures/_White/Structures/Wallmounts/switch.rsi/meta.json deleted file mode 100644 index 754f1f3d45..0000000000 --- a/Resources/Textures/_White/Structures/Wallmounts/switch.rsi/meta.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from Skyrat", - "states": [ - { - "name": "on", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "off", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "dead", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/_White/Structures/Wallmounts/switch.rsi/off.png b/Resources/Textures/_White/Structures/Wallmounts/switch.rsi/off.png deleted file mode 100644 index 8c5f20ff41..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/switch.rsi/off.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Wallmounts/switch.rsi/on.png b/Resources/Textures/_White/Structures/Wallmounts/switch.rsi/on.png deleted file mode 100644 index fa9bffc916..0000000000 Binary files a/Resources/Textures/_White/Structures/Wallmounts/switch.rsi/on.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/clown.rsi/clown0.png b/Resources/Textures/_White/Structures/Walls/clown.rsi/clown0.png deleted file mode 100644 index 8731c00441..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/clown.rsi/clown0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/clown.rsi/clown1.png b/Resources/Textures/_White/Structures/Walls/clown.rsi/clown1.png deleted file mode 100644 index 62c9672324..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/clown.rsi/clown1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/clown.rsi/clown2.png b/Resources/Textures/_White/Structures/Walls/clown.rsi/clown2.png deleted file mode 100644 index a1d03e2fda..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/clown.rsi/clown2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/clown.rsi/clown3.png b/Resources/Textures/_White/Structures/Walls/clown.rsi/clown3.png deleted file mode 100644 index 80364d1bb9..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/clown.rsi/clown3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/clown.rsi/clown4.png b/Resources/Textures/_White/Structures/Walls/clown.rsi/clown4.png deleted file mode 100644 index 7f86ddefb4..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/clown.rsi/clown4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/clown.rsi/clown5.png b/Resources/Textures/_White/Structures/Walls/clown.rsi/clown5.png deleted file mode 100644 index 1d560a672d..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/clown.rsi/clown5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/clown.rsi/clown6.png b/Resources/Textures/_White/Structures/Walls/clown.rsi/clown6.png deleted file mode 100644 index 7db200eece..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/clown.rsi/clown6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/clown.rsi/clown7.png b/Resources/Textures/_White/Structures/Walls/clown.rsi/clown7.png deleted file mode 100644 index 14fa31c384..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/clown.rsi/clown7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/clown.rsi/full.png b/Resources/Textures/_White/Structures/Walls/clown.rsi/full.png deleted file mode 100644 index 8c765acdb8..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/clown.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/clown.rsi/meta.json b/Resources/Textures/_White/Structures/Walls/clown.rsi/meta.json deleted file mode 100644 index 7a5233763b..0000000000 --- a/Resources/Textures/_White/Structures/Walls/clown.rsi/meta.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "clown0", - "directions": 4 - }, - { - "name": "clown1", - "directions": 4 - }, - { - "name": "clown2", - "directions": 4 - }, - { - "name": "clown3", - "directions": 4 - }, - { - "name": "clown4", - "directions": 4 - }, - { - "name": "clown5", - "directions": 4 - }, - { - "name": "clown6", - "directions": 4 - }, - { - "name": "clown7", - "directions": 4 - }, - { - "name": "full" - } - ] -} diff --git a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/full.png b/Resources/Textures/_White/Structures/Walls/shuttle.rsi/full.png deleted file mode 100644 index ac0e4364fc..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/meta.json b/Resources/Textures/_White/Structures/Walls/shuttle.rsi/meta.json deleted file mode 100644 index 9aff20a66c..0000000000 --- a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/meta.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/tgstation/tgstation/blob/9ddb8cf084e292571d4e9c79745db25befbd82fe/icons/turf/walls/shuttle_wall.dmi", - "states": [ - { - "name": "full" - }, - { - "name": "state0", - "directions": 4 - }, - { - "name": "state1", - "directions": 4 - }, - { - "name": "state2", - "directions": 4 - }, - { - "name": "state3", - "directions": 4 - }, - { - "name": "state4", - "directions": 4 - }, - { - "name": "state5", - "directions": 4 - }, - { - "name": "state6", - "directions": 4 - }, - { - "name": "state7", - "directions": 4 - }, - { - "name": "shuttle_construct-0" - }, - { - "name": "shuttle_construct-1" - }, - { - "name": "shuttle_construct-2" - }, - { - "name": "shuttle_construct-3" - }, - { - "name": "shuttle_construct-4" - }, - { - "name": "shuttle_construct-5" - } - ] -} diff --git a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/shuttle_construct-0.png b/Resources/Textures/_White/Structures/Walls/shuttle.rsi/shuttle_construct-0.png deleted file mode 100644 index dde7f67085..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/shuttle_construct-0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/shuttle_construct-1.png b/Resources/Textures/_White/Structures/Walls/shuttle.rsi/shuttle_construct-1.png deleted file mode 100644 index c68cfbac68..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/shuttle_construct-1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/shuttle_construct-2.png b/Resources/Textures/_White/Structures/Walls/shuttle.rsi/shuttle_construct-2.png deleted file mode 100644 index d2f5bc0c3b..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/shuttle_construct-2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/shuttle_construct-3.png b/Resources/Textures/_White/Structures/Walls/shuttle.rsi/shuttle_construct-3.png deleted file mode 100644 index 566ae303a4..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/shuttle_construct-3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/shuttle_construct-4.png b/Resources/Textures/_White/Structures/Walls/shuttle.rsi/shuttle_construct-4.png deleted file mode 100644 index 04bad4aaf2..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/shuttle_construct-4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/shuttle_construct-5.png b/Resources/Textures/_White/Structures/Walls/shuttle.rsi/shuttle_construct-5.png deleted file mode 100644 index 05ea554b3f..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/shuttle_construct-5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state0.png b/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state0.png deleted file mode 100644 index 7ef2d4afca..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state1.png b/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state1.png deleted file mode 100644 index 203350b21f..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state2.png b/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state2.png deleted file mode 100644 index 7ef2d4afca..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state3.png b/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state3.png deleted file mode 100644 index d10265c038..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state4.png b/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state4.png deleted file mode 100644 index 8d27b810d5..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state5.png b/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state5.png deleted file mode 100644 index bdd945cb65..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state6.png b/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state6.png deleted file mode 100644 index 6d1eac9bc9..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state7.png b/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state7.png deleted file mode 100644 index 7a0cceae85..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/shuttle.rsi/state7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/full.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/full.png deleted file mode 100644 index c3f6fbc79f..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/meta.json b/Resources/Textures/_White/Structures/Walls/solid.rsi/meta.json deleted file mode 100644 index fb97402f1b..0000000000 --- a/Resources/Textures/_White/Structures/Walls/solid.rsi/meta.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from ss13", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "full" - }, - { - "name": "solid0", - "directions": 4 - }, - { - "name": "solid1", - "directions": 4 - }, - { - "name": "solid2", - "directions": 4 - }, - { - "name": "solid3", - "directions": 4 - }, - { - "name": "solid4", - "directions": 4 - }, - { - "name": "solid5", - "directions": 4 - }, - { - "name": "solid6", - "directions": 4 - }, - { - "name": "solid7", - "directions": 4 - }, - { - "name": "reinf_construct-0" - }, - { - "name": "reinf_construct-1" - }, - { - "name": "reinf_construct-2" - }, - { - "name": "reinf_construct-3" - }, - { - "name": "reinf_construct-4" - }, - { - "name": "reinf_construct-5" - }, - { - "name": "reinf_cult" - }, - { - "name": "reinf_over0", - "directions": 4 - }, - { - "name": "reinf_over1", - "directions": 4 - }, - { - "name": "reinf_over2", - "directions": 4 - }, - { - "name": "reinf_over3", - "directions": 4 - }, - { - "name": "reinf_over4", - "directions": 4 - }, - { - "name": "reinf_over5", - "directions": 4 - }, - { - "name": "reinf_over6", - "directions": 4 - }, - { - "name": "reinf_over7", - "directions": 4 - }, - { - "name": "rgeneric" - }, - { - "name": "wall_girder" - }, - { - "name": "reinforced_wall_girder" - } - ] -} diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_construct-0.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_construct-0.png deleted file mode 100644 index fbf5e0dc10..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_construct-0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_construct-1.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_construct-1.png deleted file mode 100644 index 068d688357..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_construct-1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_construct-2.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_construct-2.png deleted file mode 100644 index 1b69d47573..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_construct-2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_construct-3.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_construct-3.png deleted file mode 100644 index 49696566a7..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_construct-3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_construct-4.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_construct-4.png deleted file mode 100644 index 0474f78f9e..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_construct-4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_construct-5.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_construct-5.png deleted file mode 100644 index fbdedd7886..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_construct-5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_cult.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_cult.png deleted file mode 100644 index 0d8922c7ee..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_cult.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over0.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over0.png deleted file mode 100644 index 07cdc8bf59..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over1.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over1.png deleted file mode 100644 index e607dc9aca..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over2.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over2.png deleted file mode 100644 index 07cdc8bf59..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over3.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over3.png deleted file mode 100644 index e607dc9aca..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over4.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over4.png deleted file mode 100644 index 48d4699466..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over5.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over5.png deleted file mode 100644 index 3f12cdad39..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over6.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over6.png deleted file mode 100644 index 48d4699466..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over7.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over7.png deleted file mode 100644 index 3a5e0cb5ae..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinf_over7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinforced_wall_girder.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/reinforced_wall_girder.png deleted file mode 100644 index 98f353ccc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/reinforced_wall_girder.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/rgeneric.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/rgeneric.png deleted file mode 100644 index 0328bd2b84..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/rgeneric.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/solid0.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/solid0.png deleted file mode 100644 index 404b6ac1c6..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/solid0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/solid1.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/solid1.png deleted file mode 100644 index 258b734263..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/solid1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/solid2.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/solid2.png deleted file mode 100644 index 404b6ac1c6..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/solid2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/solid3.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/solid3.png deleted file mode 100644 index 258b734263..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/solid3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/solid4.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/solid4.png deleted file mode 100644 index 5af1322d5e..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/solid4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/solid5.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/solid5.png deleted file mode 100644 index 773e85c48a..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/solid5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/solid6.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/solid6.png deleted file mode 100644 index 5af1322d5e..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/solid6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/solid7.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/solid7.png deleted file mode 100644 index 47900fe305..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/solid7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid.rsi/wall_girder.png b/Resources/Textures/_White/Structures/Walls/solid.rsi/wall_girder.png deleted file mode 100644 index 2453b42338..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid.rsi/wall_girder.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_diagonal.rsi/meta.json b/Resources/Textures/_White/Structures/Walls/solid_diagonal.rsi/meta.json deleted file mode 100644 index 79018976fd..0000000000 --- a/Resources/Textures/_White/Structures/Walls/solid_diagonal.rsi/meta.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Sprited by PuroSlavKing (Github) for Space Station 14", - "states": [ - { - "name": "state0", - "directions": 4 - }, - { - "name": "state1", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Structures/Walls/solid_diagonal.rsi/state0.png b/Resources/Textures/_White/Structures/Walls/solid_diagonal.rsi/state0.png deleted file mode 100644 index 20ef95fb95..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_diagonal.rsi/state0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_diagonal.rsi/state1.png b/Resources/Textures/_White/Structures/Walls/solid_diagonal.rsi/state1.png deleted file mode 100644 index 25200480b6..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_diagonal.rsi/state1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/full.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/full.png deleted file mode 100644 index 26d0d7971f..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/meta.json b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/meta.json deleted file mode 100644 index fd2c3022e3..0000000000 --- a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/meta.json +++ /dev/null @@ -1,99 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from ss13", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "full" - }, - { - "name": "solid0", - "directions": 4 - }, - { - "name": "solid1", - "directions": 4 - }, - { - "name": "solid2", - "directions": 4 - }, - { - "name": "solid3", - "directions": 4 - }, - { - "name": "solid4", - "directions": 4 - }, - { - "name": "solid5", - "directions": 4 - }, - { - "name": "solid6", - "directions": 4 - }, - { - "name": "solid7", - "directions": 4 - }, - { - "name": "reinf_construct-0" - }, - { - "name": "reinf_construct-1" - }, - { - "name": "reinf_construct-2" - }, - { - "name": "reinf_construct-3" - }, - { - "name": "reinf_construct-4" - }, - { - "name": "reinf_construct-5" - }, - { - "name": "reinf_over0", - "directions": 4 - }, - { - "name": "reinf_over1", - "directions": 4 - }, - { - "name": "reinf_over2", - "directions": 4 - }, - { - "name": "reinf_over3", - "directions": 4 - }, - { - "name": "reinf_over4", - "directions": 4 - }, - { - "name": "reinf_over5", - "directions": 4 - }, - { - "name": "reinf_over6", - "directions": 4 - }, - { - "name": "reinf_over7", - "directions": 4 - }, - { - "name": "rgeneric" - } - ] -} diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_construct-0.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_construct-0.png deleted file mode 100644 index 19200aaca0..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_construct-0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_construct-1.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_construct-1.png deleted file mode 100644 index 27ce52b1c6..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_construct-1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_construct-2.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_construct-2.png deleted file mode 100644 index b75834cfa0..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_construct-2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_construct-3.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_construct-3.png deleted file mode 100644 index dd4c9e9ac3..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_construct-3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_construct-4.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_construct-4.png deleted file mode 100644 index 3d02e0ca28..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_construct-4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_construct-5.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_construct-5.png deleted file mode 100644 index 1f0edcf86b..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_construct-5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over0.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over0.png deleted file mode 100644 index f82137acc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over1.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over1.png deleted file mode 100644 index 66ad1db058..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over2.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over2.png deleted file mode 100644 index f82137acc2..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over3.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over3.png deleted file mode 100644 index 66ad1db058..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over4.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over4.png deleted file mode 100644 index ad489f8e06..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over5.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over5.png deleted file mode 100644 index 6dcf50aa02..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over6.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over6.png deleted file mode 100644 index ad489f8e06..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over7.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over7.png deleted file mode 100644 index 593f745dd9..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/reinf_over7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/rgeneric.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/rgeneric.png deleted file mode 100644 index 53e76c03a6..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/rgeneric.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid0.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid0.png deleted file mode 100644 index b6f86f7f78..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid1.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid1.png deleted file mode 100644 index bc3162a30d..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid2.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid2.png deleted file mode 100644 index b6f86f7f78..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid3.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid3.png deleted file mode 100644 index bc3162a30d..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid4.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid4.png deleted file mode 100644 index 35fd2ad1a7..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid5.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid5.png deleted file mode 100644 index a7324792c9..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid6.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid6.png deleted file mode 100644 index 35fd2ad1a7..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid7.png b/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid7.png deleted file mode 100644 index 89fc2ab547..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/solid_rust.rsi/solid7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/wood.rsi/full.png b/Resources/Textures/_White/Structures/Walls/wood.rsi/full.png deleted file mode 100644 index ab68af5459..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/wood.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/wood.rsi/meta.json b/Resources/Textures/_White/Structures/Walls/wood.rsi/meta.json deleted file mode 100644 index be05ab81bf..0000000000 --- a/Resources/Textures/_White/Structures/Walls/wood.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/raw/99cc2ab62d65a3a7b554dc7b21ff5f57c835f973/icons/turf/walls.dmi and edited by Gersoon", "states": [{"name": "full"}, {"name": "wood0", "directions": 4}, {"name": "wood1", "directions": 4}, {"name": "wood2", "directions": 4}, {"name": "wood3", "directions": 4}, {"name": "wood4", "directions": 4}, {"name": "wood5", "directions": 4}, {"name": "wood6", "directions": 4}, {"name": "wood7", "directions": 4}]} \ No newline at end of file diff --git a/Resources/Textures/_White/Structures/Walls/wood.rsi/wood0.png b/Resources/Textures/_White/Structures/Walls/wood.rsi/wood0.png deleted file mode 100644 index 33eca180b9..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/wood.rsi/wood0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/wood.rsi/wood1.png b/Resources/Textures/_White/Structures/Walls/wood.rsi/wood1.png deleted file mode 100644 index 347757c79c..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/wood.rsi/wood1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/wood.rsi/wood2.png b/Resources/Textures/_White/Structures/Walls/wood.rsi/wood2.png deleted file mode 100644 index 33eca180b9..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/wood.rsi/wood2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/wood.rsi/wood3.png b/Resources/Textures/_White/Structures/Walls/wood.rsi/wood3.png deleted file mode 100644 index 347757c79c..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/wood.rsi/wood3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/wood.rsi/wood4.png b/Resources/Textures/_White/Structures/Walls/wood.rsi/wood4.png deleted file mode 100644 index d2c55e0c5f..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/wood.rsi/wood4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/wood.rsi/wood5.png b/Resources/Textures/_White/Structures/Walls/wood.rsi/wood5.png deleted file mode 100644 index a551296a4d..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/wood.rsi/wood5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/wood.rsi/wood6.png b/Resources/Textures/_White/Structures/Walls/wood.rsi/wood6.png deleted file mode 100644 index d2c55e0c5f..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/wood.rsi/wood6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Walls/wood.rsi/wood7.png b/Resources/Textures/_White/Structures/Walls/wood.rsi/wood7.png deleted file mode 100644 index a551296a4d..0000000000 Binary files a/Resources/Textures/_White/Structures/Walls/wood.rsi/wood7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/directional.rsi/clock_window.png b/Resources/Textures/_White/Structures/Windows/directional.rsi/clock_window.png deleted file mode 100644 index 8572dd81f5..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/directional.rsi/clock_window.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/directional.rsi/frosted_window.png b/Resources/Textures/_White/Structures/Windows/directional.rsi/frosted_window.png deleted file mode 100644 index a98794a792..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/directional.rsi/frosted_window.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/directional.rsi/meta.json b/Resources/Textures/_White/Structures/Windows/directional.rsi/meta.json deleted file mode 100644 index 6ad5d75a0d..0000000000 --- a/Resources/Textures/_White/Structures/Windows/directional.rsi/meta.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Teken from ss13", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "window", - "directions": 4 - }, - { - "name": "reinforced_window", - "directions": 4 - }, - { - "name": "tinted_window", - "directions": 4 - }, - { - "name": "frosted_window", - "directions": 4 - }, - { - "name": "clock_window", - "directions": 4 - }, - { - "name": "plasma_window", - "directions": 4 - }, - { - "name": "plasma_reinforced_window", - "directions": 4 - }, - { - "name": "uranium_window", - "directions": 4 - }, - { - "name": "uranium_reinforced_window", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Structures/Windows/directional.rsi/plasma_reinforced_window.png b/Resources/Textures/_White/Structures/Windows/directional.rsi/plasma_reinforced_window.png deleted file mode 100644 index 63bdf7e422..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/directional.rsi/plasma_reinforced_window.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/directional.rsi/plasma_window.png b/Resources/Textures/_White/Structures/Windows/directional.rsi/plasma_window.png deleted file mode 100644 index bc97d3350a..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/directional.rsi/plasma_window.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/directional.rsi/reinforced_window.png b/Resources/Textures/_White/Structures/Windows/directional.rsi/reinforced_window.png deleted file mode 100644 index bedb3ce7b2..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/directional.rsi/reinforced_window.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/directional.rsi/tinted_window.png b/Resources/Textures/_White/Structures/Windows/directional.rsi/tinted_window.png deleted file mode 100644 index a98794a792..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/directional.rsi/tinted_window.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/directional.rsi/uranium_reinforced_window.png b/Resources/Textures/_White/Structures/Windows/directional.rsi/uranium_reinforced_window.png deleted file mode 100644 index 2e5990bd0c..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/directional.rsi/uranium_reinforced_window.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/directional.rsi/uranium_window.png b/Resources/Textures/_White/Structures/Windows/directional.rsi/uranium_window.png deleted file mode 100644 index 8a4661a5f2..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/directional.rsi/uranium_window.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/directional.rsi/window.png b/Resources/Textures/_White/Structures/Windows/directional.rsi/window.png deleted file mode 100644 index 8c02d08738..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/directional.rsi/window.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/plasma_diagonal.rsi/meta.json b/Resources/Textures/_White/Structures/Windows/plasma_diagonal.rsi/meta.json deleted file mode 100644 index 9878974052..0000000000 --- a/Resources/Textures/_White/Structures/Windows/plasma_diagonal.rsi/meta.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-4.0", - "copyright": "Made by S_k_R_i_M_e_X", - "states": [ - { - "name": "state0" - }, - { - "name": "state1" - } - ] -} diff --git a/Resources/Textures/_White/Structures/Windows/plasma_diagonal.rsi/state0.png b/Resources/Textures/_White/Structures/Windows/plasma_diagonal.rsi/state0.png deleted file mode 100644 index c5e6e288fc..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/plasma_diagonal.rsi/state0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/plasma_diagonal.rsi/state1.png b/Resources/Textures/_White/Structures/Windows/plasma_diagonal.rsi/state1.png deleted file mode 100644 index 8052a13a19..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/plasma_diagonal.rsi/state1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/full.png b/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/full.png deleted file mode 100644 index 83be63e1d4..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/meta.json b/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/meta.json deleted file mode 100644 index 84355ce18e..0000000000 --- a/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/meta.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Teken from ss13", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "full" - }, - { - "name": "pwindow0", - "directions": 4 - }, - { - "name": "pwindow1", - "directions": 4 - }, - { - "name": "pwindow2", - "directions": 4 - }, - { - "name": "pwindow3", - "directions": 4 - }, - { - "name": "pwindow4", - "directions": 4 - }, - { - "name": "pwindow5", - "directions": 4 - }, - { - "name": "pwindow6", - "directions": 4 - }, - { - "name": "pwindow7", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow0.png b/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow0.png deleted file mode 100644 index d6161707a9..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow1.png b/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow1.png deleted file mode 100644 index e83c88efdc..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow2.png b/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow2.png deleted file mode 100644 index d6161707a9..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow3.png b/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow3.png deleted file mode 100644 index e83c88efdc..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow4.png b/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow4.png deleted file mode 100644 index bbb7d68c58..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow5.png b/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow5.png deleted file mode 100644 index c9a4bf6f11..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow6.png b/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow6.png deleted file mode 100644 index bbb7d68c58..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow7.png b/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow7.png deleted file mode 100644 index a8b33109a5..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/plasma_window.rsi/pwindow7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_diagonal.rsi/meta.json b/Resources/Textures/_White/Structures/Windows/reinforced_plasma_diagonal.rsi/meta.json deleted file mode 100644 index 9878974052..0000000000 --- a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_diagonal.rsi/meta.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-4.0", - "copyright": "Made by S_k_R_i_M_e_X", - "states": [ - { - "name": "state0" - }, - { - "name": "state1" - } - ] -} diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_diagonal.rsi/state0.png b/Resources/Textures/_White/Structures/Windows/reinforced_plasma_diagonal.rsi/state0.png deleted file mode 100644 index 53652e2770..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_diagonal.rsi/state0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_diagonal.rsi/state1.png b/Resources/Textures/_White/Structures/Windows/reinforced_plasma_diagonal.rsi/state1.png deleted file mode 100644 index 801ff6c4ac..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_diagonal.rsi/state1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/full.png b/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/full.png deleted file mode 100644 index e58a142310..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/meta.json b/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/meta.json deleted file mode 100644 index a611cb43cc..0000000000 --- a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/meta.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Teken from ss13", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "full" - }, - { - "name": "rpwindow0", - "directions": 4 - }, - { - "name": "rpwindow1", - "directions": 4 - }, - { - "name": "rpwindow2", - "directions": 4 - }, - { - "name": "rpwindow3", - "directions": 4 - }, - { - "name": "rpwindow4", - "directions": 4 - }, - { - "name": "rpwindow5", - "directions": 4 - }, - { - "name": "rpwindow6", - "directions": 4 - }, - { - "name": "rpwindow7", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow0.png b/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow0.png deleted file mode 100644 index a46c49976e..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow1.png b/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow1.png deleted file mode 100644 index 55e5f01d0b..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow2.png b/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow2.png deleted file mode 100644 index a46c49976e..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow3.png b/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow3.png deleted file mode 100644 index 55e5f01d0b..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow4.png b/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow4.png deleted file mode 100644 index a8ad461cd8..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow5.png b/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow5.png deleted file mode 100644 index c171da053e..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow6.png b/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow6.png deleted file mode 100644 index a8ad461cd8..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow7.png b/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow7.png deleted file mode 100644 index 6c8777fc0e..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/reinforced_plasma_window.rsi/rpwindow7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/full.png b/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/full.png deleted file mode 100644 index aaf736ac44..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/meta.json b/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/meta.json deleted file mode 100644 index fb500382d5..0000000000 --- a/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/meta.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Teken from ss13", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "full" - }, - { - "name": "rwindow0", - "directions": 4 - }, - { - "name": "rwindow1", - "directions": 4 - }, - { - "name": "rwindow2", - "directions": 4 - }, - { - "name": "rwindow3", - "directions": 4 - }, - { - "name": "rwindow4", - "directions": 4 - }, - { - "name": "rwindow5", - "directions": 4 - }, - { - "name": "rwindow6", - "directions": 4 - }, - { - "name": "rwindow7", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow0.png b/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow0.png deleted file mode 100644 index 6649a73c1e..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow1.png b/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow1.png deleted file mode 100644 index 34faa5f891..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow2.png b/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow2.png deleted file mode 100644 index 6649a73c1e..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow3.png b/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow3.png deleted file mode 100644 index 34faa5f891..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow4.png b/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow4.png deleted file mode 100644 index 10abeec265..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow5.png b/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow5.png deleted file mode 100644 index 834e91e414..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow6.png b/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow6.png deleted file mode 100644 index 10abeec265..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow7.png b/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow7.png deleted file mode 100644 index c261f07dbe..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/reinforced_window.rsi/rwindow7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_window_diagonal.rsi/meta.json b/Resources/Textures/_White/Structures/Windows/reinforced_window_diagonal.rsi/meta.json deleted file mode 100644 index 2e4c8ffa0b..0000000000 --- a/Resources/Textures/_White/Structures/Windows/reinforced_window_diagonal.rsi/meta.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-4.0", - "copyright": "Made by PurplePi for S_k_R_i_M_e_X", - "states": [ - { - "name": "state0" - }, - { - "name": "state1" - } - ] -} diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_window_diagonal.rsi/state0.png b/Resources/Textures/_White/Structures/Windows/reinforced_window_diagonal.rsi/state0.png deleted file mode 100644 index 18ed8298a3..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/reinforced_window_diagonal.rsi/state0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/reinforced_window_diagonal.rsi/state1.png b/Resources/Textures/_White/Structures/Windows/reinforced_window_diagonal.rsi/state1.png deleted file mode 100644 index a1e144d39d..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/reinforced_window_diagonal.rsi/state1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/full.png b/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/full.png deleted file mode 100644 index 39d5d7f159..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/meta.json b/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/meta.json deleted file mode 100644 index 0ef79042c1..0000000000 --- a/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/meta.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Teken from ss13", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "full" - }, - { - "name": "twindow0", - "directions": 4 - }, - { - "name": "twindow1", - "directions": 4 - }, - { - "name": "twindow2", - "directions": 4 - }, - { - "name": "twindow3", - "directions": 4 - }, - { - "name": "twindow4", - "directions": 4 - }, - { - "name": "twindow5", - "directions": 4 - }, - { - "name": "twindow6", - "directions": 4 - }, - { - "name": "twindow7", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow0.png b/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow0.png deleted file mode 100644 index 8df347bc07..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow1.png b/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow1.png deleted file mode 100644 index abce8d1aa6..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow2.png b/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow2.png deleted file mode 100644 index 8df347bc07..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow3.png b/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow3.png deleted file mode 100644 index abce8d1aa6..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow4.png b/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow4.png deleted file mode 100644 index b4fa59bba9..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow5.png b/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow5.png deleted file mode 100644 index f61e61e226..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow6.png b/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow6.png deleted file mode 100644 index b4fa59bba9..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow7.png b/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow7.png deleted file mode 100644 index 537c4bead2..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/tinted_window.rsi/twindow7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/window.rsi/full.png b/Resources/Textures/_White/Structures/Windows/window.rsi/full.png deleted file mode 100644 index 7790118815..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/window.rsi/full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/window.rsi/meta.json b/Resources/Textures/_White/Structures/Windows/window.rsi/meta.json deleted file mode 100644 index 58a087eb1e..0000000000 --- a/Resources/Textures/_White/Structures/Windows/window.rsi/meta.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Teken from ss13", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "full" - }, - { - "name": "window0", - "directions": 4 - }, - { - "name": "window1", - "directions": 4 - }, - { - "name": "window2", - "directions": 4 - }, - { - "name": "window3", - "directions": 4 - }, - { - "name": "window4", - "directions": 4 - }, - { - "name": "window5", - "directions": 4 - }, - { - "name": "window6", - "directions": 4 - }, - { - "name": "window7", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_White/Structures/Windows/window.rsi/window0.png b/Resources/Textures/_White/Structures/Windows/window.rsi/window0.png deleted file mode 100644 index b5c290cafb..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/window.rsi/window0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/window.rsi/window1.png b/Resources/Textures/_White/Structures/Windows/window.rsi/window1.png deleted file mode 100644 index 2347e36561..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/window.rsi/window1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/window.rsi/window2.png b/Resources/Textures/_White/Structures/Windows/window.rsi/window2.png deleted file mode 100644 index b5c290cafb..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/window.rsi/window2.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/window.rsi/window3.png b/Resources/Textures/_White/Structures/Windows/window.rsi/window3.png deleted file mode 100644 index 2347e36561..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/window.rsi/window3.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/window.rsi/window4.png b/Resources/Textures/_White/Structures/Windows/window.rsi/window4.png deleted file mode 100644 index b2be0ffdad..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/window.rsi/window4.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/window.rsi/window5.png b/Resources/Textures/_White/Structures/Windows/window.rsi/window5.png deleted file mode 100644 index 813a561157..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/window.rsi/window5.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/window.rsi/window6.png b/Resources/Textures/_White/Structures/Windows/window.rsi/window6.png deleted file mode 100644 index b2be0ffdad..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/window.rsi/window6.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/window.rsi/window7.png b/Resources/Textures/_White/Structures/Windows/window.rsi/window7.png deleted file mode 100644 index 1a88ef394f..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/window.rsi/window7.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/window_diagonal.rsi/meta.json b/Resources/Textures/_White/Structures/Windows/window_diagonal.rsi/meta.json deleted file mode 100644 index 9878974052..0000000000 --- a/Resources/Textures/_White/Structures/Windows/window_diagonal.rsi/meta.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-4.0", - "copyright": "Made by S_k_R_i_M_e_X", - "states": [ - { - "name": "state0" - }, - { - "name": "state1" - } - ] -} diff --git a/Resources/Textures/_White/Structures/Windows/window_diagonal.rsi/state0.png b/Resources/Textures/_White/Structures/Windows/window_diagonal.rsi/state0.png deleted file mode 100644 index c81cad86d2..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/window_diagonal.rsi/state0.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/Windows/window_diagonal.rsi/state1.png b/Resources/Textures/_White/Structures/Windows/window_diagonal.rsi/state1.png deleted file mode 100644 index 637e143e38..0000000000 Binary files a/Resources/Textures/_White/Structures/Windows/window_diagonal.rsi/state1.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/barricades.rsi/barricade.png b/Resources/Textures/_White/Structures/barricades.rsi/barricade.png deleted file mode 100644 index dc7d33e441..0000000000 Binary files a/Resources/Textures/_White/Structures/barricades.rsi/barricade.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/barricades.rsi/barricade_directional.png b/Resources/Textures/_White/Structures/barricades.rsi/barricade_directional.png deleted file mode 100644 index 0873ea69f6..0000000000 Binary files a/Resources/Textures/_White/Structures/barricades.rsi/barricade_directional.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/barricades.rsi/barricade_full.png b/Resources/Textures/_White/Structures/barricades.rsi/barricade_full.png deleted file mode 100644 index 9b4b99d030..0000000000 Binary files a/Resources/Textures/_White/Structures/barricades.rsi/barricade_full.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/barricades.rsi/meta.json b/Resources/Textures/_White/Structures/barricades.rsi/meta.json deleted file mode 100644 index 6f77772bc0..0000000000 --- a/Resources/Textures/_White/Structures/barricades.rsi/meta.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/fa615ead9d02b879b2ed0461f36622affb32088f and edited by Gersoon", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "barricade", - "directions": 1 - }, - { - "name": "barricade_full", - "directions": 1 - }, - { - "name": "barricade_directional", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_White/Structures/stairs.rsi/meta.json b/Resources/Textures/_White/Structures/stairs.rsi/meta.json deleted file mode 100644 index b2e6239d64..0000000000 --- a/Resources/Textures/_White/Structures/stairs.rsi/meta.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/02b9f6894af4419c9f7e699a22c402b086d8067e and edited by Gersoon", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "stairs_wood", - "directions": 4 - }, - { - "name": "stairs_stage_wood" - } - ] -} diff --git a/Resources/Textures/_White/Structures/stairs.rsi/stairs_stage_wood.png b/Resources/Textures/_White/Structures/stairs.rsi/stairs_stage_wood.png deleted file mode 100644 index 63ec0388c5..0000000000 Binary files a/Resources/Textures/_White/Structures/stairs.rsi/stairs_stage_wood.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/stairs.rsi/stairs_wood.png b/Resources/Textures/_White/Structures/stairs.rsi/stairs_wood.png deleted file mode 100644 index 9cf3a686da..0000000000 Binary files a/Resources/Textures/_White/Structures/stairs.rsi/stairs_wood.png and /dev/null differ diff --git a/Resources/Textures/_White/Structures/supermatter.rsi/meta.json b/Resources/Textures/_White/Structures/supermatter.rsi/meta.json deleted file mode 100644 index 3c25e1a830..0000000000 --- a/Resources/Textures/_White/Structures/supermatter.rsi/meta.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "copyright": "Taken from https://github.com/tgstation/tgstation/blob/master/icons/obj/supermatter.dmi", - "license": "CC-BY-SA-3.0", - "size": { - "x": 32, - "y": 48 - }, - "states": [ - { - "name": "supermatter" - } - ] -} diff --git a/Resources/Textures/_White/Structures/supermatter.rsi/supermatter.png b/Resources/Textures/_White/Structures/supermatter.rsi/supermatter.png deleted file mode 100644 index b8fa4defeb..0000000000 Binary files a/Resources/Textures/_White/Structures/supermatter.rsi/supermatter.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/Misc/bananium.rsi/bananium.png b/Resources/Textures/_White/Tiles/Misc/bananium.rsi/bananium.png deleted file mode 100644 index 224d2eed16..0000000000 Binary files a/Resources/Textures/_White/Tiles/Misc/bananium.rsi/bananium.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/Misc/bananium.rsi/meta.json b/Resources/Textures/_White/Tiles/Misc/bananium.rsi/meta.json deleted file mode 100644 index 0818d7ee72..0000000000 --- a/Resources/Textures/_White/Tiles/Misc/bananium.rsi/meta.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Purka", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "bananium" - } - ] -} diff --git a/Resources/Textures/_White/Tiles/Planet/AutumnGrass/attributions.yml b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/attributions.yml new file mode 100644 index 0000000000..a59fa8c94d --- /dev/null +++ b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/attributions.yml @@ -0,0 +1,16 @@ +- files: + - red.png + - red_triple_edge.png + - red_double_edge.png + - red_single_edge.png + - orange.png + - orange_triple_edge.png + - orange_double_edge.png + - orange_single_edge.png + - yellow.png + - yellow_triple_edge.png + - yellow_double_edge.png + - yellow_single_edge.png + license: "CC-BY-SA-3.0" + copyright: "https://github.com/discordia-space/CEV-Eris/commit/026ee3250ac1de938b503e3eb46ad73dd9c3ca82 and edited by Gersoon" + source: "https://github.com/discordia-space/CEV-Eris/commit/026ee3250ac1de938b503e3eb46ad73dd9c3ca82" diff --git a/Resources/Textures/_White/Tiles/Planet/AutumnGrass/orange.png b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/orange.png new file mode 100644 index 0000000000..418f4859f0 Binary files /dev/null and b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/orange.png differ diff --git a/Resources/Textures/_White/Tiles/Planet/AutumnGrass/orange_double_edge.png b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/orange_double_edge.png new file mode 100644 index 0000000000..e1600b15e4 Binary files /dev/null and b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/orange_double_edge.png differ diff --git a/Resources/Textures/_White/Tiles/Planet/AutumnGrass/orange_single_edge.png b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/orange_single_edge.png new file mode 100644 index 0000000000..ea9257ee06 Binary files /dev/null and b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/orange_single_edge.png differ diff --git a/Resources/Textures/_White/Tiles/Planet/AutumnGrass/orange_triple_edge.png b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/orange_triple_edge.png new file mode 100644 index 0000000000..b221012157 Binary files /dev/null and b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/orange_triple_edge.png differ diff --git a/Resources/Textures/_White/Tiles/Planet/AutumnGrass/red.png b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/red.png new file mode 100644 index 0000000000..f03d852f73 Binary files /dev/null and b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/red.png differ diff --git a/Resources/Textures/_White/Tiles/Planet/AutumnGrass/red_double_edge.png b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/red_double_edge.png new file mode 100644 index 0000000000..621c30fe0a Binary files /dev/null and b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/red_double_edge.png differ diff --git a/Resources/Textures/_White/Tiles/Planet/AutumnGrass/red_single_edge.png b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/red_single_edge.png new file mode 100644 index 0000000000..c6bd62f351 Binary files /dev/null and b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/red_single_edge.png differ diff --git a/Resources/Textures/_White/Tiles/Planet/AutumnGrass/red_triple_edge.png b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/red_triple_edge.png new file mode 100644 index 0000000000..e9c4e38ab5 Binary files /dev/null and b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/red_triple_edge.png differ diff --git a/Resources/Textures/_White/Tiles/Planet/AutumnGrass/yellow.png b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/yellow.png new file mode 100644 index 0000000000..6d295787b3 Binary files /dev/null and b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/yellow.png differ diff --git a/Resources/Textures/_White/Tiles/Planet/AutumnGrass/yellow_double_edge.png b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/yellow_double_edge.png new file mode 100644 index 0000000000..4349f77fc7 Binary files /dev/null and b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/yellow_double_edge.png differ diff --git a/Resources/Textures/_White/Tiles/Planet/AutumnGrass/yellow_single_edge.png b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/yellow_single_edge.png new file mode 100644 index 0000000000..fa8d45b849 Binary files /dev/null and b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/yellow_single_edge.png differ diff --git a/Resources/Textures/_White/Tiles/Planet/AutumnGrass/yellow_triple_edge.png b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/yellow_triple_edge.png new file mode 100644 index 0000000000..6ce8252f0c Binary files /dev/null and b/Resources/Textures/_White/Tiles/Planet/AutumnGrass/yellow_triple_edge.png differ diff --git a/Resources/Textures/_White/Tiles/attributions.yml b/Resources/Textures/_White/Tiles/attributions.yml index 55e1810b27..3e8fb648a3 100644 --- a/Resources/Textures/_White/Tiles/attributions.yml +++ b/Resources/Textures/_White/Tiles/attributions.yml @@ -1,12 +1,12 @@ # Attempted to keep the files in alphabetical order so its easier to audit. # Finding individual authors is an unfeasible task. If you can reference the author please do so. -- files: ["dark.png", "dark_offset.png", "dark_mono.png", "dark_mini.png", "dark_herringbone.png", "dark_pavement.png", "dark_pavement_vertical.png", "steel.png", "steel_offset.png", "steel_mono.png", "steel_mini.png", "steel_herringbone.png", "steel_pavement.png", "steel_pavement_vertical.png", "white.png", "white_offset.png", "white_mono.png", "white_mini.png", "white_herringbone.png", "white_pavement.png", "white_pavement_vertical.png", "bar.png", "hydro.png", "lino.png", "rglass_frame.png", "silver.png", "steel_green.png", "steel_blue.png", "steel_red.png", "steel_yellow.png", "steel_burnt.png", "steel_damaged.png", "rock_vault.png"] +- files: ["rglass_frame.png", "glass_frame.png"] license: "CC-BY-SA-4.0" copyright: "Made by Dosharus and edited by Gersoon" source: "https://github.com/WWhiteDreamProject/wwdpublic" -- files: ["blue.png", "lime.png", "cafeteria.png", "checker_dark.png", "clown.png", "freezer.png", "glass.png", "rglass.png", "gold.png", "laundry.png", "lino_dark.png", "lino_grey.png", "lino_white.png", "mime.png", "plastic.png", "dark_plastic.png", "white_plastic.png", "super_reinforced.png", "wood.png", "wood_broken.png", "wood_large.png", "wood_tile.png", "plating.png", "plating_burnt.png", "plating_damaged.png", "plating_diagonal_ne.png", "plating_diagonal_nw.png", "plating_diagonal_se.png", "plating_diagonal_sw.png", "plastic_blue.png", "plastic_green.png", "plastic_red.png", "plastic_yellow.png", "shielding.png", "showroom.png", "shuttleblack.png", "shuttlepurple.png", "shuttlegrey.png", "shuttleorange.png", "shuttlewhite.png", "shuttlesyndie.png", "asteroid_coarse.png", "asteroid_coarse_dug.png", "asteroid_grvel.png", "dark_diagonal.png", "dark_diagonal_mini.png", "steel_diagonal.png", "steel_diagonal_mini.png", "white_diagonal.png", "white_diagonal_mini.png"] +- files: ["lino_dark.png", "lino_grey.png", "lino_white.png", "plastic_blue.png", "plastic_green.png", "plastic_red.png", "plastic_yellow.png", "plating_diagonal_ne.png", "plating_diagonal_nw.png", "plating_diagonal_se.png", "plating_diagonal_sw.png", "shielding.png", "shuttlesyndie.png", "steel_blue.png", "steel_red.png", "steel_yellow.png", "steel_green.png"] license: "CC-BY-SA-4.0" copyright: "Made by Gersoon" source: "https://github.com/WWhiteDreamProject/wwdpublic" diff --git a/Resources/Textures/_White/Tiles/bar.png b/Resources/Textures/_White/Tiles/bar.png deleted file mode 100644 index a3d8d4600d..0000000000 Binary files a/Resources/Textures/_White/Tiles/bar.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/blue.png b/Resources/Textures/_White/Tiles/blue.png deleted file mode 100644 index 2e881e2f84..0000000000 Binary files a/Resources/Textures/_White/Tiles/blue.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/blue_circuit.png b/Resources/Textures/_White/Tiles/blue_circuit.png deleted file mode 100644 index 9a174ca607..0000000000 Binary files a/Resources/Textures/_White/Tiles/blue_circuit.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/cafeteria.png b/Resources/Textures/_White/Tiles/cafeteria.png deleted file mode 100644 index ae3c0366ab..0000000000 Binary files a/Resources/Textures/_White/Tiles/cafeteria.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/checker_dark.png b/Resources/Textures/_White/Tiles/checker_dark.png deleted file mode 100644 index 74186939b6..0000000000 Binary files a/Resources/Textures/_White/Tiles/checker_dark.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/clown.png b/Resources/Textures/_White/Tiles/clown.png deleted file mode 100644 index 6a5364bc54..0000000000 Binary files a/Resources/Textures/_White/Tiles/clown.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/dark.png b/Resources/Textures/_White/Tiles/dark.png deleted file mode 100644 index 5489708a63..0000000000 Binary files a/Resources/Textures/_White/Tiles/dark.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/dark_diagonal.png b/Resources/Textures/_White/Tiles/dark_diagonal.png deleted file mode 100644 index 8dfd89480e..0000000000 Binary files a/Resources/Textures/_White/Tiles/dark_diagonal.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/dark_diagonal_mini.png b/Resources/Textures/_White/Tiles/dark_diagonal_mini.png deleted file mode 100644 index 91d0d88cb2..0000000000 Binary files a/Resources/Textures/_White/Tiles/dark_diagonal_mini.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/dark_herringbone.png b/Resources/Textures/_White/Tiles/dark_herringbone.png deleted file mode 100644 index 4a243606a6..0000000000 Binary files a/Resources/Textures/_White/Tiles/dark_herringbone.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/dark_mini.png b/Resources/Textures/_White/Tiles/dark_mini.png deleted file mode 100644 index 5c8ee4a077..0000000000 Binary files a/Resources/Textures/_White/Tiles/dark_mini.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/dark_mono.png b/Resources/Textures/_White/Tiles/dark_mono.png deleted file mode 100644 index 432c4120fa..0000000000 Binary files a/Resources/Textures/_White/Tiles/dark_mono.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/dark_offset.png b/Resources/Textures/_White/Tiles/dark_offset.png deleted file mode 100644 index 6ee0ea78c2..0000000000 Binary files a/Resources/Textures/_White/Tiles/dark_offset.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/dark_pavement.png b/Resources/Textures/_White/Tiles/dark_pavement.png deleted file mode 100644 index 029c37bc77..0000000000 Binary files a/Resources/Textures/_White/Tiles/dark_pavement.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/dark_pavement_vertical.png b/Resources/Textures/_White/Tiles/dark_pavement_vertical.png deleted file mode 100644 index 9c69a5e3d9..0000000000 Binary files a/Resources/Textures/_White/Tiles/dark_pavement_vertical.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/dark_plastic.png b/Resources/Textures/_White/Tiles/dark_plastic.png deleted file mode 100644 index 8f609f4166..0000000000 Binary files a/Resources/Textures/_White/Tiles/dark_plastic.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/freezer.png b/Resources/Textures/_White/Tiles/freezer.png deleted file mode 100644 index a054e89465..0000000000 Binary files a/Resources/Textures/_White/Tiles/freezer.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/glass.png b/Resources/Textures/_White/Tiles/glass.png deleted file mode 100644 index 7649ea7e9c..0000000000 Binary files a/Resources/Textures/_White/Tiles/glass.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/gold.png b/Resources/Textures/_White/Tiles/gold.png deleted file mode 100644 index aea19741a2..0000000000 Binary files a/Resources/Textures/_White/Tiles/gold.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/green_circuit.png b/Resources/Textures/_White/Tiles/green_circuit.png deleted file mode 100644 index 7852646218..0000000000 Binary files a/Resources/Textures/_White/Tiles/green_circuit.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/hydro.png b/Resources/Textures/_White/Tiles/hydro.png deleted file mode 100644 index adeaa3e2f5..0000000000 Binary files a/Resources/Textures/_White/Tiles/hydro.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/kitchen.png b/Resources/Textures/_White/Tiles/kitchen.png deleted file mode 100644 index 85e11e61c4..0000000000 Binary files a/Resources/Textures/_White/Tiles/kitchen.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/laundry.png b/Resources/Textures/_White/Tiles/laundry.png deleted file mode 100644 index 523904e5af..0000000000 Binary files a/Resources/Textures/_White/Tiles/laundry.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/lime.png b/Resources/Textures/_White/Tiles/lime.png deleted file mode 100644 index 82112a618a..0000000000 Binary files a/Resources/Textures/_White/Tiles/lime.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/lino.png b/Resources/Textures/_White/Tiles/lino.png deleted file mode 100644 index 4c60cbc539..0000000000 Binary files a/Resources/Textures/_White/Tiles/lino.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/mime.png b/Resources/Textures/_White/Tiles/mime.png deleted file mode 100644 index 8ed9cd3f01..0000000000 Binary files a/Resources/Textures/_White/Tiles/mime.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/plastic.png b/Resources/Textures/_White/Tiles/plastic.png deleted file mode 100644 index 38d2fb9267..0000000000 Binary files a/Resources/Textures/_White/Tiles/plastic.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/plating.png b/Resources/Textures/_White/Tiles/plating.png deleted file mode 100644 index 5ceab258c7..0000000000 Binary files a/Resources/Textures/_White/Tiles/plating.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/plating_burnt.png b/Resources/Textures/_White/Tiles/plating_burnt.png deleted file mode 100644 index 31a7b5e47d..0000000000 Binary files a/Resources/Textures/_White/Tiles/plating_burnt.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/plating_damaged.png b/Resources/Textures/_White/Tiles/plating_damaged.png deleted file mode 100644 index 0aaa70bfad..0000000000 Binary files a/Resources/Textures/_White/Tiles/plating_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/rglass.png b/Resources/Textures/_White/Tiles/rglass.png deleted file mode 100644 index a5333b028e..0000000000 Binary files a/Resources/Textures/_White/Tiles/rglass.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/rock_vault.png b/Resources/Textures/_White/Tiles/rock_vault.png deleted file mode 100644 index 40f85f6ead..0000000000 Binary files a/Resources/Textures/_White/Tiles/rock_vault.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/showroom.png b/Resources/Textures/_White/Tiles/showroom.png deleted file mode 100644 index 916007485d..0000000000 Binary files a/Resources/Textures/_White/Tiles/showroom.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/shuttleblack.png b/Resources/Textures/_White/Tiles/shuttleblack.png deleted file mode 100644 index ba564d7910..0000000000 Binary files a/Resources/Textures/_White/Tiles/shuttleblack.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/shuttleblue.png b/Resources/Textures/_White/Tiles/shuttleblue.png deleted file mode 100644 index 37b3593d79..0000000000 Binary files a/Resources/Textures/_White/Tiles/shuttleblue.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/shuttlegrey.png b/Resources/Textures/_White/Tiles/shuttlegrey.png deleted file mode 100644 index 72cbd59986..0000000000 Binary files a/Resources/Textures/_White/Tiles/shuttlegrey.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/shuttleorange.png b/Resources/Textures/_White/Tiles/shuttleorange.png deleted file mode 100644 index 6af5d3182c..0000000000 Binary files a/Resources/Textures/_White/Tiles/shuttleorange.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/shuttlepurple.png b/Resources/Textures/_White/Tiles/shuttlepurple.png deleted file mode 100644 index b552204bd5..0000000000 Binary files a/Resources/Textures/_White/Tiles/shuttlepurple.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/shuttlered.png b/Resources/Textures/_White/Tiles/shuttlered.png deleted file mode 100644 index d3c1460d9d..0000000000 Binary files a/Resources/Textures/_White/Tiles/shuttlered.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/shuttlewhite.png b/Resources/Textures/_White/Tiles/shuttlewhite.png deleted file mode 100644 index ab9e485a72..0000000000 Binary files a/Resources/Textures/_White/Tiles/shuttlewhite.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/silver.png b/Resources/Textures/_White/Tiles/silver.png deleted file mode 100644 index 11e2606e2c..0000000000 Binary files a/Resources/Textures/_White/Tiles/silver.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/steel.png b/Resources/Textures/_White/Tiles/steel.png deleted file mode 100644 index 9594284ca2..0000000000 Binary files a/Resources/Textures/_White/Tiles/steel.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/steel_burnt.png b/Resources/Textures/_White/Tiles/steel_burnt.png deleted file mode 100644 index b166292d51..0000000000 Binary files a/Resources/Textures/_White/Tiles/steel_burnt.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/steel_damaged.png b/Resources/Textures/_White/Tiles/steel_damaged.png deleted file mode 100644 index fc174661cb..0000000000 Binary files a/Resources/Textures/_White/Tiles/steel_damaged.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/steel_diagonal.png b/Resources/Textures/_White/Tiles/steel_diagonal.png deleted file mode 100644 index 796ea41063..0000000000 Binary files a/Resources/Textures/_White/Tiles/steel_diagonal.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/steel_diagonal_mini.png b/Resources/Textures/_White/Tiles/steel_diagonal_mini.png deleted file mode 100644 index c386140573..0000000000 Binary files a/Resources/Textures/_White/Tiles/steel_diagonal_mini.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/steel_herringbone.png b/Resources/Textures/_White/Tiles/steel_herringbone.png deleted file mode 100644 index 04d97ddbf1..0000000000 Binary files a/Resources/Textures/_White/Tiles/steel_herringbone.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/steel_mini.png b/Resources/Textures/_White/Tiles/steel_mini.png deleted file mode 100644 index d12d6aa655..0000000000 Binary files a/Resources/Textures/_White/Tiles/steel_mini.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/steel_mono.png b/Resources/Textures/_White/Tiles/steel_mono.png deleted file mode 100644 index 78239c40aa..0000000000 Binary files a/Resources/Textures/_White/Tiles/steel_mono.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/steel_offset.png b/Resources/Textures/_White/Tiles/steel_offset.png deleted file mode 100644 index add36ee6af..0000000000 Binary files a/Resources/Textures/_White/Tiles/steel_offset.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/steel_pavement.png b/Resources/Textures/_White/Tiles/steel_pavement.png deleted file mode 100644 index f1536b8333..0000000000 Binary files a/Resources/Textures/_White/Tiles/steel_pavement.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/steel_pavement_vertical.png b/Resources/Textures/_White/Tiles/steel_pavement_vertical.png deleted file mode 100644 index 1a828c6866..0000000000 Binary files a/Resources/Textures/_White/Tiles/steel_pavement_vertical.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/super_reinforced.png b/Resources/Textures/_White/Tiles/super_reinforced.png deleted file mode 100644 index 1e60331908..0000000000 Binary files a/Resources/Textures/_White/Tiles/super_reinforced.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/white.png b/Resources/Textures/_White/Tiles/white.png deleted file mode 100644 index 0ebd61d1ae..0000000000 Binary files a/Resources/Textures/_White/Tiles/white.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/white_diagonal.png b/Resources/Textures/_White/Tiles/white_diagonal.png deleted file mode 100644 index 490987b116..0000000000 Binary files a/Resources/Textures/_White/Tiles/white_diagonal.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/white_diagonal_mini.png b/Resources/Textures/_White/Tiles/white_diagonal_mini.png deleted file mode 100644 index f389970d61..0000000000 Binary files a/Resources/Textures/_White/Tiles/white_diagonal_mini.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/white_herringbone.png b/Resources/Textures/_White/Tiles/white_herringbone.png deleted file mode 100644 index 121e2d9fe8..0000000000 Binary files a/Resources/Textures/_White/Tiles/white_herringbone.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/white_mini.png b/Resources/Textures/_White/Tiles/white_mini.png deleted file mode 100644 index d51a0e34ad..0000000000 Binary files a/Resources/Textures/_White/Tiles/white_mini.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/white_mono.png b/Resources/Textures/_White/Tiles/white_mono.png deleted file mode 100644 index 5360fd4655..0000000000 Binary files a/Resources/Textures/_White/Tiles/white_mono.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/white_offset.png b/Resources/Textures/_White/Tiles/white_offset.png deleted file mode 100644 index 70bb0ccd34..0000000000 Binary files a/Resources/Textures/_White/Tiles/white_offset.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/white_pavement.png b/Resources/Textures/_White/Tiles/white_pavement.png deleted file mode 100644 index 15d05f1688..0000000000 Binary files a/Resources/Textures/_White/Tiles/white_pavement.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/white_pavement_vertical.png b/Resources/Textures/_White/Tiles/white_pavement_vertical.png deleted file mode 100644 index 3ba25b1475..0000000000 Binary files a/Resources/Textures/_White/Tiles/white_pavement_vertical.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/white_plastic.png b/Resources/Textures/_White/Tiles/white_plastic.png deleted file mode 100644 index e3aa5a59f8..0000000000 Binary files a/Resources/Textures/_White/Tiles/white_plastic.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/wood.png b/Resources/Textures/_White/Tiles/wood.png deleted file mode 100644 index fbe98d47e1..0000000000 Binary files a/Resources/Textures/_White/Tiles/wood.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/wood_broken.png b/Resources/Textures/_White/Tiles/wood_broken.png deleted file mode 100644 index 9f50b1ea2a..0000000000 Binary files a/Resources/Textures/_White/Tiles/wood_broken.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/wood_large.png b/Resources/Textures/_White/Tiles/wood_large.png deleted file mode 100644 index bc12b0c9e3..0000000000 Binary files a/Resources/Textures/_White/Tiles/wood_large.png and /dev/null differ diff --git a/Resources/Textures/_White/Tiles/wood_tile.png b/Resources/Textures/_White/Tiles/wood_tile.png deleted file mode 100644 index 5e568e7eaf..0000000000 Binary files a/Resources/Textures/_White/Tiles/wood_tile.png and /dev/null differ diff --git a/Resources/engineCommandPerms.yml b/Resources/engineCommandPerms.yml index 51743c6e82..42cc4668a9 100644 --- a/Resources/engineCommandPerms.yml +++ b/Resources/engineCommandPerms.yml @@ -96,6 +96,8 @@ - tp - tpto - respawn + - tippy + - tip - Flags: SERVER Commands: diff --git a/Resources/keybinds.yml b/Resources/keybinds.yml index 9f1f157f8d..87df8c1eec 100644 --- a/Resources/keybinds.yml +++ b/Resources/keybinds.yml @@ -187,11 +187,9 @@ binds: - function: OpenCharacterMenu type: State key: C - # WD EDIT START -- function: OpenEmotionsMenu +- function: OpenEmotesMenu type: State key: Y - # WD EDIT END - function: OpenLanguageMenu type: State key: L @@ -269,6 +267,10 @@ binds: - function: ToggleStanding type: State key: R +- function: ToggleCrawlingUnder + type: State + mod1: Shift + key: R - function: ShowDebugConsole type: State key: Tilde @@ -466,6 +468,9 @@ binds: - function: OpenDecalSpawnWindow type: State key: F8 +- function: OpenScoreboardWindow + type: State + key: F9 - function: OpenSandboxWindow type: State key: B @@ -548,8 +553,6 @@ binds: - function: Hotbar9 type: State key: Num9 - # WD EDIT START - function: LookUp type: State key: Space - # WD EDIT END diff --git a/RobustToolbox b/RobustToolbox index eb63809999..ec794ce4e4 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit eb638099999dce3a43d90772ca976ae010d649c0 +Subproject commit ec794ce4e4693069d3b3ebf7a88ead5ff2f860e0 diff --git a/SpaceStation14.sln.DotSettings b/SpaceStation14.sln.DotSettings index 620de42253..15424a68ec 100644 --- a/SpaceStation14.sln.DotSettings +++ b/SpaceStation14.sln.DotSettings @@ -34,6 +34,7 @@ WARNING WARNING WARNING + SUGGESTION Required Required Required @@ -55,6 +56,7 @@ AL BB CC + FTL GC GD GL diff --git a/Tools/SS14 Aseprite Plugins/Displacement Map Flip.lua b/Tools/SS14 Aseprite Plugins/Displacement Map Flip.lua new file mode 100644 index 0000000000..3291685071 --- /dev/null +++ b/Tools/SS14 Aseprite Plugins/Displacement Map Flip.lua @@ -0,0 +1,78 @@ +local sprite = app.editor.sprite +local cel = app.cel + +if sprite.selection.isEmpty then + print("You need to select something sorry") + return +end + +local diag = Dialog{ + title = "Flip Displacement Map" +} + +diag:check{ + id = "horizontal", + label = "flip horizontal?" +} + +diag:check{ + id = "vertical", + label = "flip vertical?" +} + +diag:button{ + text = "ok", + focus = true, + onclick = function(ev) + local horizontal = diag.data["horizontal"] + local vertical = diag.data["vertical"] + + local selection = sprite.selection + local image = cel.image:clone() + + for x = 0, selection.bounds.width do + for y = 0, selection.bounds.height do + local xSel = x + selection.origin.x + local ySel = y + selection.origin.y + + local xImg = xSel - cel.position.x + local yImg = ySel - cel.position.y + + if xImg < 0 or xImg >= image.width or yImg < 0 or yImg >= image.height then + goto continue + end + + local imgValue = image:getPixel(xImg, yImg) + local color = Color(imgValue) + + if horizontal then + color.red = 128 + -(color.red - 128) + end + + if vertical then + color.green = 128 + -(color.green - 128) + end + + image:drawPixel( + xImg, + yImg, + app.pixelColor.rgba(color.red, color.green, color.blue, color.alpha)) + + ::continue:: + end + end + + cel.image = image + + diag:close() + end +} + +diag:button{ + text = "cancel", + onclick = function(ev) + diag:close() + end +} + +diag:show() diff --git a/Tools/SS14 Aseprite Plugins/Displacement Map Visualizer.lua b/Tools/SS14 Aseprite Plugins/Displacement Map Visualizer.lua new file mode 100644 index 0000000000..468636c07d --- /dev/null +++ b/Tools/SS14 Aseprite Plugins/Displacement Map Visualizer.lua @@ -0,0 +1,171 @@ +-- Displacement Map Visualizer +-- +-- This script will create a little preview window that will test a displacement map. +-- +-- TODO: Handling of sizes != 127 doesn't work properly and rounds differently from the real shader. Ah well. + +local scale = 4 + +-- This script requires UI +if not app.isUIAvailable then + return +end + +local getOffsetPixel = function(x, y, image, rect) + local posX = x - rect.x + local posY = y - rect.y + + if posX < 0 or posX >= image.width or posY < 0 or posY >= image.height then + return image.spec.transparentColor + end + + return image:getPixel(posX, posY) +end + +local pixelValueToColor = function(sprite, value) + return Color(value) +end + +local applyDisplacementMap = function(width, height, size, displacement, displacementRect, target, targetRect) + -- print(Color(displacement:getPixel(17, 15)).red) + local image = target:clone() + image:resize(width, height) + image:clear() + + for x = 0, width - 1 do + for y = 0, height - 1 do + local value = getOffsetPixel(x, y, displacement, displacementRect) + local color = pixelValueToColor(sprite, value) + + if color.alpha ~= 0 then + local offset_x = (color.red - 128) / 127 * size + local offset_y = (color.green - 128) / 127 * size + + local colorValue = getOffsetPixel(x + offset_x, y + offset_y, target, targetRect) + image:drawPixel(x, y, colorValue) + end + end + end + + return image +end + +local dialog = nil + +local sprite = app.editor.sprite +local spriteChanged = sprite.events:on("change", + function(ev) + dialog:repaint() + end) + +local layers = {} +for i,layer in ipairs(sprite.layers) do + table.insert(layers, 1, layer.name) +end + +local findLayer = function(sprite, name) + for i, layer in ipairs(sprite.layers) do + if layer.name == name then + return layer + end + end + + return nil +end + +dialog = Dialog{ + title = "Displacement map preview", + onclose = function(ev) + sprite.events:off(spriteChanged) + end} + +dialog:canvas{ + id = "canvas", + width = sprite.width * scale, + height = sprite.height * scale, + onpaint = function(ev) + local context = ev.context + + local layerDisplacement = findLayer(sprite, dialog.data["displacement-select"]) + local layerTarget = findLayer(sprite, dialog.data["reference-select"]) + local layerBackground = findLayer(sprite, dialog.data["background-select"]) + -- print(layerDisplacement.name) + -- print(layerTarget.name) + + local celDisplacement = layerDisplacement:cel(1) + local celTarget = layerTarget:cel(1) + local celBackground = layerBackground:cel(1) + + -- Draw background + context:drawImage( + -- srcImage + celBackground.image, + -- srcPos + 0, 0, + -- srcSize + celBackground.image.width, celBackground.image.height, + -- dstPos + celBackground.position.x * scale, celBackground.position.y * scale, + -- dstSize + celBackground.image.width * scale, celBackground.image.height * scale) + + -- Apply displacement map and draw + local image = applyDisplacementMap( + sprite.width, sprite.height, + dialog.data["size"], + celDisplacement.image, celDisplacement.bounds, + celTarget.image, celTarget.bounds) + + context:drawImage( + -- srcImage + image, + -- srcPos + 0, 0, + -- srcSize + image.width, image.height, + -- dstPos + 0, 0, + -- dstSize + image.width * scale, image.height * scale) + end +} + +dialog:combobox{ + id = "displacement-select", + label = "displacement layer", + options = layers, + onchange = function(ev) + dialog:repaint() + end +} + +dialog:combobox{ + id = "reference-select", + label = "reference layer", + options = layers, + onchange = function(ev) + dialog:repaint() + end +} + +dialog:combobox{ + id = "background-select", + label = "background layer", + options = layers, + onchange = function(ev) + dialog:repaint() + end +} + +dialog:slider{ + id = "size", + label = "displacement size", + min = 1, + max = 127, + value = 127, + onchange = function(ev) + dialog:repaint() + end +} + +dialog:show{wait = false} diff --git a/Tools/SS14 Aseprite Plugins/Displacement Map.png b/Tools/SS14 Aseprite Plugins/Displacement Map.png new file mode 100644 index 0000000000..50744cef60 Binary files /dev/null and b/Tools/SS14 Aseprite Plugins/Displacement Map.png differ diff --git a/Tools/publish_multi_request.py b/Tools/publish_multi_request.py new file mode 100755 index 0000000000..131d1f7f76 --- /dev/null +++ b/Tools/publish_multi_request.py @@ -0,0 +1,78 @@ +#!/usr/bin/env python3 + +import requests +import os +import subprocess +from typing import Iterable + +PUBLISH_TOKEN = os.environ["PUBLISH_TOKEN"] +VERSION = os.environ["GITHUB_SHA"] + +RELEASE_DIR = "release" + +# +# CONFIGURATION PARAMETERS +# Forks should change these to publish to their own infrastructure. +# +ROBUST_CDN_URL = "https://cdn.simplestation.org/" +FORK_ID = "einstein-engines" + +def main(): + session = requests.Session() + session.headers = { + "Authorization": f"Bearer {PUBLISH_TOKEN}", + } + + print(f"Starting publish on Robust.Cdn for version {VERSION}") + + data = { + "version": VERSION, + "engineVersion": get_engine_version(), + } + headers = { + "Content-Type": "application/json" + } + resp = session.post(f"{ROBUST_CDN_URL}fork/{FORK_ID}/publish/start", json=data, headers=headers) + resp.raise_for_status() + print("Publish successfully started, adding files...") + + for file in get_files_to_publish(): + print(f"Publishing {file}") + with open(file, "rb") as f: + headers = { + "Content-Type": "application/octet-stream", + "Robust-Cdn-Publish-File": os.path.basename(file), + "Robust-Cdn-Publish-Version": VERSION + } + resp = session.post(f"{ROBUST_CDN_URL}fork/{FORK_ID}/publish/file", data=f, headers=headers) + + resp.raise_for_status() + + print("Successfully pushed files, finishing publish...") + + data = { + "version": VERSION + } + headers = { + "Content-Type": "application/json" + } + resp = session.post(f"{ROBUST_CDN_URL}fork/{FORK_ID}/publish/finish", json=data, headers=headers) + resp.raise_for_status() + + print("SUCCESS!") + + +def get_files_to_publish() -> Iterable[str]: + for file in os.listdir(RELEASE_DIR): + yield os.path.join(RELEASE_DIR, file) + + +def get_engine_version() -> str: + proc = subprocess.run(["git", "describe","--tags", "--abbrev=0"], stdout=subprocess.PIPE, cwd="RobustToolbox", check=True, encoding="UTF-8") + tag = proc.stdout.strip() + assert tag.startswith("v") + return tag[1:] # Cut off v prefix. + + +if __name__ == '__main__': + main()